diff --git a/.gitignore b/.gitignore index 259148f..0e3f7f3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,32 +1,62 @@ -# Prerequisites -*.d +# ------------------------------------------------------------------------------ +# Build artifacts +# ------------------------------------------------------------------------------ -# Compiled Object files -*.slo -*.lo +# CMake build directory +build/ +CMakeFiles/ +CMakeCache.txt +cmake_install.cmake +Makefile + +# Object and output files *.o *.obj +*.so +*.a +*.dll +*.dylib +*.lib +*.out +*.exe +*.app +*.slo +*.lo +*.lai +*.la -# Precompiled Headers +# Precompiled headers *.gch *.pch -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files +# Fortran modules *.mod *.smod -# Compiled Static libraries -*.lai -*.la -*.a -*.lib +# Dependency files +*.d -# Executables -*.exe -*.out -*.app +# ------------------------------------------------------------------------------ +# IDE and Editor files +# ------------------------------------------------------------------------------ + +# VSCode +.vscode/ +*.code-workspace + +# JetBrains IDEs (CLion, etc.) +.idea/ + +# Vim +*.swp +*.swo + +# Emacs +*~ + +# ------------------------------------------------------------------------------ +# System files +# ------------------------------------------------------------------------------ + +.DS_Store +Thumbs.db diff --git a/CMakeLists.txt b/CMakeLists.txt index 6c84a63..c6a1ed8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,21 +1,35 @@ cmake_minimum_required(VERSION 3.14) -project(MyProject) +project(ExoskeletonFirmware) # Set C++ standard set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) -# Add source files -# add_library(MyLibrary src/my_library.cpp) +# Enable testing +enable_testing() -# Include GoogleTest +# Add googletest add_subdirectory(googletest) -# Enable testing -enable_testing() +# Motor API library +add_library(motor_api + motors/motor_api.cpp +) +target_include_directories(motor_api PUBLIC motors) +target_link_libraries(motor_api PRIVATE modbus) + +# Add test for motor API +add_executable(motor_api_test + tests/motor_api_test.cpp +) + +target_include_directories(motor_api_test PRIVATE motors) +target_link_libraries(motor_api_test + motor_api + gtest + gtest_main +) -# Add unit tests -add_executable(sampleTest tests/sample_test.cpp) -target_link_libraries(sampleTest PRIVATE gtest gtest_main) +add_test(NAME MotorAPITest COMMAND motor_api_test) -# Register the test with CTest -add_test(NAME sampleTest COMMAND sampleTest) +# add more components later (sensors, control, etc.) diff --git a/motors/README.md b/motors/README.md index 5b004b3..933492a 100644 --- a/motors/README.md +++ b/motors/README.md @@ -1,2 +1,88 @@ -# Motor Control -Submodule of McMaster exoskeleton interfacing and controlling suit motors \ No newline at end of file +# MotorAPI – High-Level Modbus RTU Motor Control + +This C++ library provides a high-level interface to control motors via Modbus RTU using [`libmodbus`](https://libmodbus.org/). It abstracts low-level register operations into simple function calls like `setSpeed()`, `setTorque()`, and `getActualPosition()`. + +## Features + +- Connects to motor over Modbus RTU via serial +- Set motor torque, velocity, and position +- Read actual motor torque, velocity, and position +- Set operation modes (position, velocity, torque) +- Includes safety checks and debug logging +- GTest-compatible for unit testing #TODO + +## Dependencies + +- [libmodbus](https://libmodbus.org/) +- C++17 or later +- GoogleTest (optional for testing) + +## Usage + +### Initialization + +

+Motor motor("/dev/ttyUSB0", 1);
+if (!motor.initializeMotor()) {
+    std::cerr << "Failed to connect to motor.\n";
+}
+
+ +### Set Operation Mode + +

+motor.setOperationMode(PV_MODE);  // PV_MODE, PT_MODE, or PP_MODE
+
+ +### Control Commands + +

+motor.setTargetVelocity(1000);     // in INC/s
+motor.setTorque(500);              // in ‰ (permille)
+motor.setPosition(100000);         // in INC
+
+ +### Read Feedback + +

+int32_t pos = motor.getActualPosition();
+int32_t speed = motor.getActualVelocity();
+int16_t torque = motor.getActualTorque();
+
+ +### Cleanup + +

+motor.stopMotor();
+motor.disconnectMotor();
+
+ +## Running Tests (Optional) + +If hardware is connected and available: + +```bash +mkdir build && cd build +cmake .. +make +./motor_api_test +``` + +## Notes + +- `setTorque()` enforces bounds between -3000‰ and +3000‰. +- `setMaxTorque()` only allows values up to 3000‰. +- All `read*()` functions return zero if a read fails, and error messages are printed to `stderr`. +- The motor must be placed in the correct operation mode (`PP_MODE`, `PV_MODE`, `PT_MODE`) before calling `setPosition()`, `setTargetVelocity()`, or `setTorque()`. +- This API assumes motors follow the Modbus RTU protocol and register map of the EZmotion PRS/SRS R2 series. +- Always verify that your power supply voltage and current limits match the motor specifications. +- Communication defaults: + - Baud rate: `115200` + - Parity: Even (`'E'`) + - Data bits: 8 + - Stop bits: 1 + +## Reference + +This API is designed based on the **PRS SRS R2 Series User Guide** documentation. +Refer to **Section 6: Register Table** in the official User Guide for detailed register definitions and explanations. diff --git a/motors/motor_api.cpp b/motors/motor_api.cpp new file mode 100644 index 0000000..be749fb --- /dev/null +++ b/motors/motor_api.cpp @@ -0,0 +1,333 @@ +/* + * IMPORTANT: libmodbus is a C library, so we have to be careful and use c-style notation while using C++ + * i.e. use C-style string literals instead of std::string + * + * Q: Why use libmodbus over a C++ library? + * A: + * - Most commonly used library for modbus RTU in C/C++. + * - Amazing Reference guide +*/ +#include "motor_api.h" +#include + +Motor::Motor(const std::string& dev, int id) : device(dev), slave_id(id), ctx(nullptr), connected(false) {} + +// Initialize and connect motor +bool Motor::initializeMotor() { + ctx = modbus_new_rtu(device.c_str(), 115200, 'E', 8, 1); + if (!ctx) { + std::cerr << "Failed to create Modbus context for " << device << "\n"; + return false; + } + if (modbus_set_slave(ctx, slave_id) == -1) { + std::cerr << "Invalid slave ID: " << slave_id << "\n"; + modbus_free(ctx); + return false; + } + if (modbus_connect(ctx) == -1) { + std::cerr << "Failed to connect to " << device << ": " << modbus_strerror(errno) << "\n"; + modbus_free(ctx); + return false; + } + connected = true; + std::cout << "Connected to motor on " << device << " (ID: " << slave_id << ")\n"; + clearError(); + writeRegister(REG_CONTROL_WORD, OPERATION_ENABLE); + setOperationMode(PT_MODE); + setMaxTorque(3000); + // Enable motor on startup + + return true; +} + +// Write a register +bool Motor::writeRegister(uint16_t reg, uint16_t value) { + if (!connected) return false; + if (modbus_write_register(ctx, reg, value) == -1) { + std::cerr << "Modbus write error: " << modbus_strerror(errno) << "\n"; + return false; + } + return true; +} + +// Read a register +bool Motor::readRegister(uint16_t reg, uint16_t &value) { + if (!connected) { + std::cerr << "[readRegister] Not connected to motor.\n"; + return false; + } + + if (modbus_read_registers(ctx, reg, 1, &value) == -1) { + std::cerr << "[readRegister] Modbus read error at 0x" + << std::hex << reg << ": " + << modbus_strerror(errno) << "\n"; + return false; + } + + return true; +} + +void Motor::logErrorStatus() { + uint16_t error_status = 0; + if (!readRegister(REG_ERROR_STATUS, error_status)) { + std::cerr << "Failed to read Error Status register.\n"; + return; + } + + std::cout << "=== Motor Error Status (0x20BA) ===\n"; + if (error_status == 0) { + std::cout << "No errors detected.\n"; + return; + } + + if (error_status & (1 << 0)) std::cout << "OCP: Over-current protection triggered.\n"; + if (error_status & (1 << 1)) std::cout << "UVLO: Under-voltage lockout triggered.\n"; + if (error_status & (1 << 2)) std::cout << "LOCK: Rotor lock detected.\n"; + if (error_status & (1 << 3)) std::cout << "VIN_LIMIT: DC link voltage protection active.\n"; + if (error_status & (1 << 4)) std::cout << "OVERLOAD: Overload protection triggered.\n"; + if (error_status & (1 << 5)) std::cout << "POS_LIMIT: Position limit exceeded.\n"; + if (error_status & (1 << 6)) std::cout << "SENSOR_ERR: Position sensor error.\n"; + std::cout << "====================================\n"; +} + + +// Write to a register of data type INT32 +bool Motor::writeRegister32(uint16_t start_addr, int32_t value) { + if (!connected) return false; + uint16_t regs[2] = { + static_cast(value & 0xFFFF), + static_cast((value >> 16) & 0xFFFF) + }; + int rc = modbus_write_registers(ctx, start_addr, 2, regs); + if (rc != 2) { + std::cerr << "Failed to write 32-bit register: " << modbus_strerror(errno) << "\n"; + return false; + } + return true; +} +bool Motor::clearError() { + // Step 1: Make sure bit 7 has a falling edge first + if (!writeRegister(REG_CONTROL_WORD, 0x0000)) return false; + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + + // Step 2: Write 0x0080 to trigger fault reset + if (!writeRegister(REG_CONTROL_WORD, 0x0080)) return false; + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + + // Step 3: Shutdown command (get to "Ready to switch on") + if (!writeRegister(REG_CONTROL_WORD, 0x0006)) return false; + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + return true; +} + +// Read a register of data type INT32 +bool Motor::readRegister32(uint16_t start_addr, int32_t &out) { + if (!connected) { + std::cerr << "[readRegister32] Not connected to motor.\n"; + return false; + } + + uint16_t regs[2]; + if (modbus_read_registers(ctx, start_addr, 2, regs) != 2) { + std::cerr << "[readRegister32] Modbus read error at 0x" + << std::hex << start_addr << ": " + << modbus_strerror(errno) << "\n"; + return false; + } + + out = (static_cast(regs[1]) << 16) | regs[0]; + return true; +} + + +bool Motor::setOTPThreshold(int16_t temperature_C){ + return writeRegister(REG_OTP_THRESHOLD, temperature_C); +} + + + +bool Motor::setMotorAdrress(uint16_t adr){ + return writeRegister(REG_MODBUS_ADDRESS, adr); +} + +bool Motor::getMotorAddress(uint16_t &adr){ + uint16_t address = 0; + if (!readRegister(REG_MODBUS_ADDRESS, address)) { + return false; + } + adr = address; + return true; +} + +bool Motor::getMotorTemperature(int16_t &temperature_C){ + int16_t temp = 0; + if (!readRegister(REG_TEMPERATURE, temp)) { + return false; + } + temperature_C = temp; + return true; +} + +bool Motor::storeParameters(){ + return writeRegister32(REG_RELATED_REGISTERS, STORE_PARAMETERS); +} + +bool Motor::updateControlParameters(){ + return writeRegister32(REG_RELATED_REGISTERS, UPDATE_CONTROL_PARAMETERS); +} + +bool Motor::restoreDefaultParameters(){ + return writeRegister32(REG_RELATED_REGISTERS, RESTORE_DEFAULT_PARAMETERS); +} + +bool Motor::systemReset(){ + return writeRegister32(REG_RELATED_REGISTERS, SYSTEM_RESET); +} + +void Motor::printMotorAddress() { + uint16_t address = 0; + if (getMotorAddress(address)) { + std::cout << "Motor on " << device << " has address: " << address << std::endl; + } else { + std::cerr << "Failed to retrieve motor address for " << device << std::endl; + } +} + +void Motor::printMotorTemperature() { + int16_t temperature = 0; + if (getMotorTemperature(temperature)) { + std::cout << "Motor on " << device << " has temperature: " << temperature << "°C" << std::endl; + } else { + std::cerr << "Failed to retrieve motor temperature for " << device << std::endl; + } +} + +// Read raw current in ‰ (thousandths of rated torque) +int16_t Motor::getActualCurrent() { + uint16_t raw_current; + if (!readRegister(REG_ACTUAL_CURRENT, raw_current)) { + return 0; + } + return static_cast(raw_current); // safe cast to signed +} + +// TODO: DOUBLE CHECK BELOW CONSTANTS +// Get actual current in milliamps +double Motor::getActualCurrent_mA() { + // Ritvik: Current approach causes infinite reccursion + // I'm assuming this is a typo and getActualCurrent() was meant to be called + int16_t current_per_mille = getActualCurrent(); + + // Select rated torque based on motor model (update accordingly) + const double rated_torque = 0.64; // for 200W motor. in Nm + const double torque_constant = 0.056; // 56 mNm/A from user guide + + // Convert current value from per-mille of rated torque to Nm + double actual_torque = (current_per_mille / 1000.0) * rated_torque; + + double current_mA = actual_torque * 1000.0 / torque_constant; + return current_mA; +} + +// Set motor position +bool Motor::setPosition(int32_t position) { + return writeRegister32(REG_TARGET_POSITION, position); +} + +// Get actual motor position +int32_t Motor::getActualPosition() { + int32_t position; + if (!readRegister32(REG_ACTUAL_POSITION, position)) { + return 0; + } + return position; +} + +// Get actual motor position in degrees +double Motor::getDegrees(){ + int32_t actual_position_in_INC = Motor::getActualPosition(); + double degrees = (actual_position_in_INC * 360.0) / 65536.0; + return degrees; +} + +// Set motor target velocity +bool Motor::setTargetVelocity(int32_t velocity) { + return writeRegister32(REG_TARGET_VELOCITY, velocity); +} + +// Get actual motor velocity +int32_t Motor::getActualVelocity() { + int32_t velocity; + if (!readRegister32(REG_ACTUAL_VELOCITY, velocity)) { + return 0; + } + return velocity; +} + +// Set motor target torque +bool Motor::setTargetTorque(int16_t torque_permille) { + if (torque_permille < -3000 || torque_permille > 3000) { + std::cerr << "Torque value " << torque_permille << "‰ out of range [-3000, 3000]\n"; + return false; + } + uint16_t raw = static_cast(*reinterpret_cast(&torque_permille)); + return writeRegister(REG_TARGET_TORQUE, raw); +} + +// Get actual motor torque +int16_t Motor::getActualTorque() { + uint16_t torque = 0; + if (!readRegister(REG_ACTUAL_TORQUE, torque)) { + return 0; + } + return static_cast(torque); +} + +// Set max motor torque +bool Motor::setMaxTorque(uint16_t max_torque) { + if (max_torque > 3000) { + std::cerr << "Max torque exceeds 3000‰ limit.\n"; + return false; + } + return writeRegister(REG_MAX_TORQUE, max_torque); +} + +// Set motor operation mode +bool Motor::setOperationMode(int16_t mode) { + return writeRegister(REG_OP_MODE, static_cast(mode)); +} + +// Get motor status +uint16_t Motor::getStatus() { + uint16_t status = 0; + if (!readRegister(REG_CONTROL_WORD, status)) { + return 0; + } + return status; +} + + + +// Stop motor +bool Motor::stopMotor() { + return writeRegister(REG_CONTROL_WORD, OPERATION_DISABLE); +} + +// Disconnect motor +bool Motor::disconnectMotor() { + std::cout << "Disconnecting motor on " << device << " (ID: " << slave_id << ")\n"; + if (connected) { + stopMotor(); + modbus_close(ctx); + modbus_free(ctx); + ctx = nullptr; + connected = false; + return true; + } + return false; +} + +// Destructor +Motor::~Motor() { + disconnectMotor(); +} \ No newline at end of file diff --git a/motors/motor_api.h b/motors/motor_api.h new file mode 100644 index 0000000..ffedbb6 --- /dev/null +++ b/motors/motor_api.h @@ -0,0 +1,120 @@ +#ifndef MOTOR_API_H +#define MOTOR_API_H + +#include +#include +#include + +// ───────────────────────────────────────────────────────────── +// Control Modes +constexpr int16_t PP_MODE = 1; // Profile Position +constexpr int16_t PV_MODE = 3; // Profile Velocity +constexpr int16_t PT_MODE = 4; // Profile Torque + +// ───────────────────────────────────────────────────────────── +// Control Words +constexpr uint16_t OPERATION_ENABLE = 0x000F; +constexpr uint16_t OPERATION_DISABLE = 0x0006; + +// ───────────────────────────────────────────────────────────── +// Modbus Register Addresses +constexpr uint16_t REG_OP_MODE = 0x6600; +constexpr uint16_t REG_CONTROL_WORD = 0x6400; + +constexpr uint16_t REG_TARGET_TORQUE = 0x6710; +constexpr uint16_t REG_TARGET_VELOCITY = 0x6FF0; +constexpr uint16_t REG_TARGET_POSITION = 0x67A0; + +constexpr uint16_t REG_MAX_TORQUE = 0x6720; +constexpr uint16_t REG_TRQ_SLOPE = 0x6870; + +constexpr uint16_t REG_ACTUAL_TORQUE = 0x6770; +constexpr uint16_t REG_ACTUAL_VELOCITY = 0x66C0; +constexpr uint16_t REG_ACTUAL_POSITION = 0x6640; +constexpr uint16_t REG_ACTUAL_CURRENT = 0x6780; + +constexpr uint16_t REG_RATED_CURRENT = 0x2017; +constexpr uint16_t REG_MODBUS_ADDRESS = 0x3050; + +constexpr uint32_t STORE_PARAMETERS = 0x65766173; +constexpr uint32_t UPDATE_CONTROL_PARAMETERS = 0xAA5555AA; +constexpr uint32_t SYSTEM_RESET = 0x626F6F74; +constexpr uint32_t RESTORE_DEFAULT_PARAMETERS = 0x626F6F74; + +constexpr uint16_t REG_RELATED_REGISTERS= 0x20D0; + +constexpr uint16_t REG_ERROR_STATUS= 0x20BA; + +constexpr uint16_t REG_TEMPERATURE= 0x2400; //Indicates the PCB’s temperature +constexpr uint16_t REG_OTP_THRESHOLD= 0x2410; //Sets the over-temperature protection (OTP) threshold + + +// ───────────────────────────────────────────────────────────── +// Motor Class +class Motor { +public: + // Constructor / Destructor + Motor(const std::string& device, int slave_id); + ~Motor(); + + // Initialization + bool initializeMotor(); + bool disconnectMotor(); + + // Motor Control + bool setOperationMode(int16_t mode); + bool stopMotor(); + + bool setMaxTorque(uint16_t max_torque); + bool setTargetTorque(int16_t torque_permille); + int16_t getActualTorque(); + + bool setTargetVelocity(int32_t velocity); + int32_t getActualVelocity(); + + bool setPosition(int32_t position); + int32_t getActualPosition(); + double getDegrees(); + + // bool setRatedCurrent(uint32_t current_mA); + uint32_t getRatedCurrent(); + int16_t getActualCurrent(); + double getActualCurrent_mA(); + + bool setMotorAdrress(uint16_t adr); + bool getMotorAddress(uint16_t &adr); + void printMotorAddress(); + + bool getMotorTemperature(int16_t &temperature_C); + void printMotorTemperature(); + bool setOTPThreshold(int16_t temperature_C); + + + bool storeParameters(); + bool updateControlParameters(); + bool restoreDefaultParameters(); + bool systemReset(); + + // Status + uint16_t getStatus(); + void logErrorStatus(); + bool isConnected() const { return connected; } + bool clearError(); + + +private: + std::string device; + int slave_id; + modbus_t* ctx; + bool connected; + + // Register Access Helpers + bool writeRegister(uint16_t reg, uint16_t value); + bool readRegister(uint16_t reg, uint16_t &value); + + // For 32-bit register access + bool writeRegister32(uint16_t start_addr, int32_t value); + bool readRegister32(uint16_t start_addr, int32_t &out); +}; + +#endif // MOTOR_API_H \ No newline at end of file diff --git a/sensors/imu_filter.cpp b/sensors/imu_filter.cpp new file mode 100644 index 0000000..c4f7684 --- /dev/null +++ b/sensors/imu_filter.cpp @@ -0,0 +1,153 @@ +#include "one_d_kalman_filter.h" +#include "low_pass_filter.h" +#include +#include +#include +#include +#include +#include +#include + +using json = nlohmann::json; + +// Structure to hold IMU data +struct IMUData { + std::string timestamp; + std::string location; + Eigen::VectorXd measurement; // heading, pitch, roll +}; + +// Read IMU data from JSON file +std::vector read_imu_data(const std::string &filename) { + std::vector imu_data; + std::ifstream file(filename); + std::string line; + + if (!file.is_open()) { + std::cerr << "Failed to open file: " << filename << std::endl; + return imu_data; + } + + while (std::getline(file, line)) { + try { + json entry = json::parse(line); + std::string timestamp = entry["timestamp"]; + + for (const auto &sensor : entry["sensors"]) { + IMUData data; + data.timestamp = timestamp; + data.location = sensor["location"]; + + data.measurement = Eigen::VectorXd(3); + data.measurement << sensor["euler"]["heading"], + sensor["euler"]["pitch"], + sensor["euler"]["roll"]; + + imu_data.push_back(data); + } + } catch (const json::exception &e) { + std::cerr << "JSON parsing error: " << e.what() << std::endl; + continue; + } + } + + return imu_data; +} + +// Apply 1D Kalman filter per Euler component and sensor +void apply_kalman_filter(std::vector &imu_data) { + std::unordered_map> filters; + + std::ofstream diff_file("filtered_differences.txt"); + if (!diff_file.is_open()) { + std::cerr << "Failed to open filtered_differences.txt" << std::endl; + return; + } + + for (auto &data : imu_data) { + auto &filter_array = filters[data.location]; + + // If not initialized yet, construct filters with initial values + if (filter_array[0].update(0) == 0.0 && filter_array[1].update(0) == 0.0 && filter_array[2].update(0) == 0.0) { + filter_array[0] = OneDKalmanFilter(0.01, 1.0, data.measurement(0)); + filter_array[1] = OneDKalmanFilter(0.01, 1.0, data.measurement(1)); + filter_array[2] = OneDKalmanFilter(0.01, 1.0, data.measurement(2)); + } + + Eigen::VectorXd prev = data.measurement; + + data.measurement(0) = filter_array[0].update(data.measurement(0)); + data.measurement(1) = filter_array[1].update(data.measurement(1)); + data.measurement(2) = filter_array[2].update(data.measurement(2)); + + diff_file << "Sensor: " << data.location << "\n"; + diff_file << "Timestamp: " << data.timestamp << "\n"; + diff_file << "Before filtering: H=" << prev(0) + << ", P=" << prev(1) + << ", R=" << prev(2) << "\n"; + diff_file << "After filtering: H=" << data.measurement(0) + << ", P=" << data.measurement(1) + << ", R=" << data.measurement(2) << "\n\n"; + } + + diff_file.close(); + std::cout << "Filtered differences saved to filtered_differences.txt" << std::endl; +} + +// Save filtered IMU data while keeping original format +void save_filtered_data(const std::vector &imu_data, const std::string &filename, const std::string &original_filename) { + std::ofstream file(filename); + if (!file.is_open()) { + std::cerr << "Failed to open file: " << filename << std::endl; + return; + } + + std::ifstream original_file(original_filename); + if (!original_file.is_open()) { + std::cerr << "Failed to open original file: " << original_filename << std::endl; + return; + } + + std::string line; + size_t index = 0; + + while (std::getline(original_file, line)) { + json entry = json::parse(line); + json filtered_entry; + filtered_entry["timestamp"] = entry["timestamp"]; + filtered_entry["sensors"] = json::array(); + + for (size_t i = 0; i < entry["sensors"].size(); ++i) { + json sensor = entry["sensors"][i]; + + if (index < imu_data.size() && imu_data[index].location == sensor["location"]) { + sensor["euler"]["heading"] = imu_data[index].measurement(0); + sensor["euler"]["pitch"] = imu_data[index].measurement(1); + sensor["euler"]["roll"] = imu_data[index].measurement(2); + index++; + } + + filtered_entry["sensors"].push_back(sensor); + } + + file << filtered_entry.dump() << std::endl; + } + + std::cout << "Filtered data saved to " << filename << std::endl; +} + +int main() { + std::string input_file = "C:/Users/Luis/Documents/Exoskeleton/Sensor-logging-branch/Exoskeleton-Embedded/sensors/treadmill_imu_data/imu_data_treadmill_5min_1.9mph.json"; + std::string output_file = "C:/Users/Luis/Documents/Exoskeleton/Sensor-logging-branch/Exoskeleton-Embedded/sensors/treadmill_imu_data/filtered_imu_data.json"; + + std::vector imu_data = read_imu_data(input_file); + if (imu_data.empty()) { + std::cerr << "No IMU data found." << std::endl; + return -1; + } + + apply_kalman_filter(imu_data); + save_filtered_data(imu_data, output_file, input_file); + + return 0; +} diff --git a/sensors/imu_filter_lpf.cpp b/sensors/imu_filter_lpf.cpp new file mode 100644 index 0000000..9b698c8 --- /dev/null +++ b/sensors/imu_filter_lpf.cpp @@ -0,0 +1,147 @@ +#include "low_pass_filter.h" +#include +#include +#include +#include +#include +#include +#include + +using json = nlohmann::json; + +// Structure to hold IMU data +struct IMUData { + std::string timestamp; + std::string location; + Eigen::VectorXd measurement; // heading, pitch, roll +}; + +// Read IMU data from JSON file +std::vector read_imu_data(const std::string &filename) { + std::vector imu_data; + std::ifstream file(filename); + std::string line; + + if (!file.is_open()) { + std::cerr << "Failed to open file: " << filename << std::endl; + return imu_data; + } + + while (std::getline(file, line)) { + try { + json entry = json::parse(line); + std::string timestamp = entry["timestamp"]; + + for (const auto &sensor : entry["sensors"]) { + IMUData data; + data.timestamp = timestamp; + data.location = sensor["location"]; + + data.measurement = Eigen::VectorXd(3); + data.measurement << sensor["euler"]["heading"], + sensor["euler"]["pitch"], + sensor["euler"]["roll"]; + + imu_data.push_back(data); + } + } catch (const json::exception &e) { + std::cerr << "JSON parsing error: " << e.what() << std::endl; + continue; + } + } + + return imu_data; +} + +// Apply low-pass filter per location and Euler component +void apply_low_pass_filter(std::vector &imu_data, double alpha = 0.1) { + std::unordered_map> filters; + + std::ofstream log_file("filtered_differences_lpf.txt"); + if (!log_file.is_open()) { + std::cerr << "Failed to open filtered_differences_lpf.txt" << std::endl; + return; + } + + for (auto &data : imu_data) { + auto &filter_array = filters[data.location]; + + for (int i = 0; i < 3; ++i) { + if (!filter_array[i].is_initialized()) { + filter_array[i] = LowPassFilter(alpha); + filter_array[i].initialize(data.measurement(i)); + } + + double before = data.measurement(i); + double after = filter_array[i].update(data.measurement(i)); + data.measurement(i) = after; + + log_file << "Sensor: " << data.location << ", Timestamp: " << data.timestamp << "\n"; + log_file << "Component " << i << " - Before: " << before << ", After: " << after << "\n"; + } + + log_file << "\n"; + } + + log_file.close(); + std::cout << "LPF differences saved to filtered_differences_lpf.txt\n"; +} + +// Save filtered IMU data while keeping original format +void save_filtered_lpf(const std::vector &imu_data, const std::string &filename, const std::string &original_filename) { + std::ofstream file(filename); + if (!file.is_open()) { + std::cerr << "Failed to open file: " << filename << std::endl; + return; + } + + std::ifstream original_file(original_filename); + if (!original_file.is_open()) { + std::cerr << "Failed to open original file: " << original_filename << std::endl; + return; + } + + std::string line; + size_t index = 0; + + while (std::getline(original_file, line)) { + json entry = json::parse(line); + json filtered_entry; + filtered_entry["timestamp"] = entry["timestamp"]; + filtered_entry["sensors"] = json::array(); + + for (size_t i = 0; i < entry["sensors"].size(); ++i) { + json sensor = entry["sensors"][i]; + + if (index < imu_data.size() && imu_data[index].location == sensor["location"]) { + sensor["euler"]["heading"] = imu_data[index].measurement(0); + sensor["euler"]["pitch"] = imu_data[index].measurement(1); + sensor["euler"]["roll"] = imu_data[index].measurement(2); + index++; + } + + filtered_entry["sensors"].push_back(sensor); + } + + file << filtered_entry.dump() << std::endl; + } + + std::cout << "LPF-filtered data saved to " << filename << std::endl; +} + +// Example usage in main +int main() { + std::string input_file = "sensors/treadmill_imu_data/imu_data_treadmill_5min_1.9mph.json"; + std::string output_file_lpf = "sensors/treadmill_imu_data/filtered_imu_data_lpf.json"; + + std::vector imu_data = read_imu_data(input_file); + if (imu_data.empty()) { + std::cerr << "No IMU data found." << std::endl; + return -1; + } + + apply_low_pass_filter(imu_data, 0.1); // Use smoothing factor alpha = 0.1 + save_filtered_lpf(imu_data, output_file_lpf, input_file); + + return 0; +} diff --git a/sensors/low_pass_filter.h b/sensors/low_pass_filter.h new file mode 100644 index 0000000..3d96a4b --- /dev/null +++ b/sensors/low_pass_filter.h @@ -0,0 +1,35 @@ +#ifndef LOW_PASS_FILTER_H +#define LOW_PASS_FILTER_H + +class LowPassFilter { +public: + // Default constructor required for std::array + LowPassFilter() : alpha(0.5), initialized(false), filtered_value(0.0) {} + + // Constructor with custom alpha + LowPassFilter(double alpha) : alpha(alpha), initialized(false), filtered_value(0.0) {} + + void initialize(double value) { + filtered_value = value; + initialized = true; + } + + double update(double measurement) { + if (!initialized) { + initialize(measurement); + } + filtered_value = alpha * measurement + (1 - alpha) * filtered_value; + return filtered_value; + } + + bool is_initialized() const { + return initialized; + } + +private: + double alpha; + double filtered_value; + bool initialized; +}; + +#endif // LOW_PASS_FILTER_H diff --git a/sensors/normalize_sensor_data.py b/sensors/normalize_sensor_data.py new file mode 100644 index 0000000..ecb21ae --- /dev/null +++ b/sensors/normalize_sensor_data.py @@ -0,0 +1,85 @@ +""" +To get rid of sensor drift that occurs when collecting sensor value. Normalize readings on y axis. +""" + +import sys +import json + +def normalize(data,section_size=100): + if len(data) < section_size: + section_size = len(data) + + total = sum(data[:section_size]) + translation = 0 - total/section_size + new_data = [] + + for i in range(section_size): + new_data.append(data[i] + translation) + + for i in range(section_size, len(data)): + total = total + data[i] - data[i-section_size] + translation = -total/section_size + new_data.append(data[i] + translation) + + return new_data + +def fix_flip(data,diff_max = 200,section_size=100): + new_data = [data[0]] + for i in range(1,len(data)): + diff = data[i]-sum(new_data[-section_size:])/min(section_size,len(new_data)) + if diff > diff_max: + new_data.append(data[i] - 360) + elif diff < -diff_max: + new_data.append(data[i] + 360) + else: + new_data.append(data[i]) + + return new_data + +def strip_data(data): + while data[0] == 0: + data.pop(0) + + while data[-1] == 0: + data.pop() + +def apply_preprocess(sensor_data,f): + sensors = [x["location"] for x in sensor_data[0]["sensors"]] + angle_names = [x for x in sensor_data[0]["sensors"][0]["euler"]] + + for si,sensor in enumerate(sensors): + for angle in angle_names: + data = [x["sensors"][si]["euler"][angle] for x in sensor_data] + data = f(data) + for i in range(len(sensor_data)): + sensor_data[i]["sensors"][si]["euler"][angle] = data[i] + +def process_file(file_path,output_path): + sensor_data = [] + + with open(file_path,"r") as file: + for line in file: + sensor_data.append(json.loads(line)) + + apply_preprocess(sensor_data,fix_flip) + apply_preprocess(sensor_data,normalize) + + print(f"\n\nsensor data: {sensor_data[0]}") + print(f"\n\nsensor data type: {type(sensor_data[0])}\n\n") + + with open(output_path,"w") as file: + for i in range(len(sensor_data)): + file.write(json.dumps(sensor_data[i]) + "\n") + + +def main(): + if len(sys.argv) < 3: + print("Usage: python script.py ",file=sys.stderr) + sys.exit(1) + + file_path = sys.argv[1] + output_path = sys.argv[2] + process_file(file_path,output_path) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/sensors/normalize_sensor_data_c++.cpp b/sensors/normalize_sensor_data_c++.cpp new file mode 100644 index 0000000..87449fb --- /dev/null +++ b/sensors/normalize_sensor_data_c++.cpp @@ -0,0 +1,154 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "nlohmann/json.hpp" +using json = nlohmann::json; + +std::vector normalize(const std::vector& data, int section_size = 100) { + int n = data.size(); + int sec = section_size; + if (n < sec) { + sec = n; + } + double total = 0.0; + for (int i = 0; i < sec; i++) { + total += data[i]; + } + double translation = -total / sec; + std::vector new_data; + new_data.reserve(n); + + for (int i = 0; i < sec; i++) { + new_data.push_back(data[i] + translation); + } + for (int i = sec; i < n; i++) { + total = total + data[i] - data[i - sec]; + translation = -total / sec; + new_data.push_back(data[i] + translation); + } + return new_data; +} + +std::vector fix_flip(const std::vector& data, double diff_max = 200, int section_size = 100) { + std::vector new_data; + if (data.empty()) { + return new_data; + } + new_data.push_back(data[0]); + for (size_t i = 1; i < data.size(); i++) { + int window_size = std::min(section_size, static_cast(new_data.size())); + double sum_window = 0; + for (int j = new_data.size() - window_size; j < new_data.size(); j++) { + sum_window += new_data[j]; + } + double average = sum_window / window_size; + double diff = data[i] - average; + if (diff > diff_max) { + new_data.push_back(data[i] - 360); + } else if (diff < -diff_max) { + new_data.push_back(data[i] + 360); + } else { + new_data.push_back(data[i]); + } + } + return new_data; +} + +void strip_data(std::vector& data) { + while (!data.empty() && data.front() == 0) { + data.erase(data.begin()); + } + while (!data.empty() && data.back() == 0) { + data.pop_back(); + } +} + +void apply_preprocess(std::vector& sensor_data, + const std::function(const std::vector&)>& f) { + if (sensor_data.empty()) { + return; + } + size_t numSensors = sensor_data[0]["sensors"].size(); + + std::vector angle_names; + for (auto& item : sensor_data[0]["sensors"][0]["euler"].items()) { + angle_names.push_back(item.key()); + } + + // For each sensor and each angle, extract the time-series, process it, then update. + for (size_t si = 0; si < numSensors; si++) { + for (const auto& angle : angle_names) { + std::vector data; + data.reserve(sensor_data.size()); + for (auto& snapshot : sensor_data) { + data.push_back(snapshot["sensors"][si]["euler"][angle].get()); + } + std::vector new_data = f(data); + + for (size_t i = 0; i < sensor_data.size(); i++) { + sensor_data[i]["sensors"][si]["euler"][angle] = new_data[i]; + } + } + } +} + +void process_file(const std::string& file_path, const std::string& output_path) { + std::vector sensor_data; + std::ifstream infile(file_path); + if (!infile) { + std::cerr << "Error opening input file: " << file_path << std::endl; + std::exit(EXIT_FAILURE); + } + + std::string line; + while (std::getline(infile, line)) { + if (!line.empty()) { + try { + sensor_data.push_back(json::parse(line)); + } catch (const std::exception& e) { + std::cerr << "Error parsing JSON: " << e.what() << std::endl; + } + } + } + infile.close(); + + apply_preprocess(sensor_data, [](const std::vector& data) { + return fix_flip(data); + }); + apply_preprocess(sensor_data, [](const std::vector& data) { + return normalize(data); + }); + + + // Write processed sensor data back to the output file (one JSON per line). + std::ofstream outfile(output_path); + if (!outfile) { + std::cerr << "Error opening output file: " << output_path << std::endl; + std::exit(EXIT_FAILURE); + } + for (const auto& snapshot : sensor_data) { + outfile << snapshot.dump() << "\n"; + } + outfile.close(); +} + +int main(int argc, char* argv[]) { + if (argc < 3) { + std::cerr << "Usage: " << argv[0] << " \n"; + return EXIT_FAILURE; + } + + std::string file_path = argv[1]; + std::string output_path = argv[2]; + + process_file(file_path, output_path); + + return EXIT_SUCCESS; +} diff --git a/sensors/one_d_kalman_filter.cpp b/sensors/one_d_kalman_filter.cpp new file mode 100644 index 0000000..69b21b2 --- /dev/null +++ b/sensors/one_d_kalman_filter.cpp @@ -0,0 +1,29 @@ +#include "one_d_kalman_filter.h" + +// Default constructor +OneDKalmanFilter::OneDKalmanFilter() + : x(0.0), p(1.0), q(1e-5), r(1e-2), initialized(false) {} + +// Constructor with parameters +OneDKalmanFilter::OneDKalmanFilter(double process_noise, double measurement_noise, double initial_estimate, double initial_error) + : x(initial_estimate), p(initial_error), q(process_noise), r(measurement_noise), initialized(true) {} + +// Initialize manually (for lazy init in loop) +void OneDKalmanFilter::initialize(double initial_estimate) { + x = initial_estimate; + p = 1.0; + initialized = true; +} + +// Main Kalman update step +double OneDKalmanFilter::update(double measurement) { + // Prediction + p += q; + + // Update + double k = p / (p + r); // Kalman gain + x = x + k * (measurement - x); + p = (1 - k) * p; + + return x; +} diff --git a/sensors/one_d_kalman_filter.h b/sensors/one_d_kalman_filter.h new file mode 100644 index 0000000..22a3925 --- /dev/null +++ b/sensors/one_d_kalman_filter.h @@ -0,0 +1,21 @@ +#ifndef ONE_D_KALMAN_FILTER_H +#define ONE_D_KALMAN_FILTER_H + +class OneDKalmanFilter { +public: + bool initialized; + + OneDKalmanFilter(); + OneDKalmanFilter(double process_noise, double measurement_noise, double initial_estimate = 0.0, double initial_error = 1.0); + + void initialize(double initial_estimate); + double update(double measurement); + +private: + double x; // Estimated state + double p; // Estimated error covariance + double q; // Process noise covariance + double r; // Measurement noise covariance +}; + +#endif // ONE_D_KALMAN_FILTER_H diff --git a/sensors/treadmill_imu_data/filtered_imu_data.json b/sensors/treadmill_imu_data/filtered_imu_data.json new file mode 100644 index 0000000..d79f981 --- /dev/null +++ b/sensors/treadmill_imu_data/filtered_imu_data.json @@ -0,0 +1,3069 @@ +{"sensors":[{"euler":{"heading":367.625,"pitch":128.8125,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":107.6875,"roll":37.0},"location":"Left Ankle"},{"euler":{"heading":53.375,"pitch":-3.6875,"roll":13.0},"location":"Right Ankle"},{"euler":{"heading":103.6875,"pitch":-149.125,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":-144.4375,"roll":-50.625},"location":"Right Knee"},{"euler":{"heading":49.375,"pitch":-145.6875,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.599"} +{"sensors":[{"euler":{"heading":272.8827544730638,"pitch":127.6689233084438,"roll":34.017585770204924},"location":"Left Knee"},{"euler":{"heading":76.49830148373371,"pitch":108.40752976875761,"roll":38.482414229795076},"location":"Left Ankle"},{"euler":{"heading":44.8806186885776,"pitch":-2.05684434722542,"roll":13.783561807177396},"location":"Right Ankle"},{"euler":{"heading":75.24822292817564,"pitch":-150.24739934541626,"roll":43.30164303805796},"location":"Right Hip"},{"euler":{"heading":119.16367352310063,"pitch":-140.26556281043386,"roll":-46.66483627183317},"location":"Right Knee"},{"euler":{"heading":37.40807318549159,"pitch":-148.08054011381205,"roll":64.96796569191802},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.699"} +{"sensors":[{"euler":{"heading":177.10518108098802,"pitch":126.44527849393296,"roll":31.636958475720995},"location":"Left Knee"},{"euler":{"heading":69.75174848045694,"pitch":109.88618689675002,"roll":41.040843372715365},"location":"Left Ankle"},{"euler":{"heading":42.44407040017786,"pitch":-0.11865048867227013,"roll":13.839537241004429},"location":"Right Ankle"},{"euler":{"heading":63.681799323472795,"pitch":-151.75130573847588,"roll":44.45208098764059},"location":"Right Hip"},{"euler":{"heading":103.81296203706599,"pitch":-138.51584706729574,"roll":-43.95517844518401},"location":"Right Knee"},{"euler":{"heading":33.77738415446485,"pitch":-150.9207041388567,"roll":65.52581978227094},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.800"} +{"sensors":[{"euler":{"heading":129.4262151669904,"pitch":125.51725830960304,"roll":28.00833718319893},"location":"Left Knee"},{"euler":{"heading":67.37586704101493,"pitch":112.9540834435212,"roll":44.817091098566024},"location":"Left Ankle"},{"euler":{"heading":39.60567639686182,"pitch":1.3092664772929237,"roll":13.595602071971397},"location":"Right Ankle"},{"euler":{"heading":57.8475950977685,"pitch":-152.54506338431446,"roll":45.77238378396818},"location":"Right Hip"},{"euler":{"heading":98.61139999595513,"pitch":-139.46533252199814,"roll":-43.44854688832672},"location":"Right Knee"},{"euler":{"heading":32.025486998530035,"pitch":-152.28735245180923,"roll":65.94383750598058},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.900"} +{"sensors":[{"euler":{"heading":101.74974966413822,"pitch":124.87888691823264,"roll":23.911800770819394},"location":"Left Knee"},{"euler":{"heading":68.1855484552229,"pitch":120.84618765801964,"roll":49.047403724374306},"location":"Left Ankle"},{"euler":{"heading":37.1261346134648,"pitch":2.7051105772684956,"roll":13.124508407453119},"location":"Right Ankle"},{"euler":{"heading":53.78219131505142,"pitch":-153.21749780172328,"roll":47.66269482878393},"location":"Right Hip"},{"euler":{"heading":97.57874736336362,"pitch":-141.38868530193105,"roll":-44.104468084090875},"location":"Right Knee"},{"euler":{"heading":29.073089756567725,"pitch":-148.40107739778358,"roll":65.51163219058908},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.1"} +{"sensors":[{"euler":{"heading":81.51023324574011,"pitch":125.6115452888792,"roll":21.8868464681709},"location":"Left Knee"},{"euler":{"heading":67.60212191558547,"pitch":121.35306704663064,"roll":52.20395170915366},"location":"Left Ankle"},{"euler":{"heading":34.92163064673209,"pitch":3.7067775750570053,"roll":12.32098952613181},"location":"Right Ankle"},{"euler":{"heading":50.933628794894446,"pitch":-153.75510514335107,"roll":49.74599104546673},"location":"Right Hip"},{"euler":{"heading":97.97795352692582,"pitch":-143.68678476572734,"roll":-45.162490195402505},"location":"Right Knee"},{"euler":{"heading":25.744628630989393,"pitch":-143.51502906846918,"roll":64.03315154719428},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.101"} +{"sensors":[{"euler":{"heading":101.68069189615434,"pitch":128.00138323518289,"roll":22.632469441845775},"location":"Left Knee"},{"euler":{"heading":63.72358056457123,"pitch":118.8316790347941,"roll":50.9985006569311},"location":"Left Ankle"},{"euler":{"heading":32.939258815971016,"pitch":4.487773032323214,"roll":11.818479882771321},"location":"Right Ankle"},{"euler":{"heading":48.9428260800328,"pitch":-154.2374042905956,"roll":51.76989036003266},"location":"Right Hip"},{"euler":{"heading":99.07954910533236,"pitch":-146.11122110531355,"roll":-46.515013711138536},"location":"Right Knee"},{"euler":{"heading":22.711934583067084,"pitch":-139.0378486198739,"roll":62.260195375513305},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.201"} +{"sensors":[{"euler":{"heading":108.21633017320568,"pitch":131.79291743703251,"roll":24.754826019737113},"location":"Left Knee"},{"euler":{"heading":57.89361286917837,"pitch":115.73673451008435,"roll":46.777253764056134},"location":"Left Ankle"},{"euler":{"heading":30.986318771170108,"pitch":5.037114420038075,"roll":11.295258844550295},"location":"Right Ankle"},{"euler":{"heading":47.78038412036961,"pitch":-154.65197865539614,"roll":53.45241800000412},"location":"Right Hip"},{"euler":{"heading":100.46291573238953,"pitch":-148.92737808385547,"roll":-47.894861150185825},"location":"Right Knee"},{"euler":{"heading":20.876391378335068,"pitch":-135.70445783557813,"roll":60.89380142163321},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.302"} +{"sensors":[{"euler":{"heading":114.17750756015491,"pitch":135.55870250070973,"roll":26.81771000436461},"location":"Left Knee"},{"euler":{"heading":52.62942513764612,"pitch":113.2005515556697,"roll":42.148732422956925},"location":"Left Ankle"},{"euler":{"heading":28.880991804277617,"pitch":5.324945564898878,"roll":10.846791595288797},"location":"Right Ankle"},{"euler":{"heading":47.095574492998786,"pitch":-155.22571187786815,"roll":54.976409955653786},"location":"Right Hip"},{"euler":{"heading":102.05391509337416,"pitch":-152.3599098164298,"roll":-49.30754228161314},"location":"Right Knee"},{"euler":{"heading":20.14441541269861,"pitch":-133.64672435143817,"roll":60.005938869224345},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.402"} +{"sensors":[{"euler":{"heading":124.65021056212976,"pitch":137.51835250893726,"roll":28.430979632575692},"location":"Left Knee"},{"euler":{"heading":50.37159920365308,"pitch":111.862828777346,"roll":39.54863649600975},"location":"Left Ankle"},{"euler":{"heading":26.309983813397224,"pitch":4.850541928958245,"roll":10.242153835615895},"location":"Right Ankle"},{"euler":{"heading":46.827535525407825,"pitch":-156.30956354786574,"roll":56.2328270559404},"location":"Right Hip"},{"euler":{"heading":103.43251544038462,"pitch":-113.55316843054223,"roll":-50.959565542844956},"location":"Right Knee"},{"euler":{"heading":19.920455405200954,"pitch":-132.24790801629152,"roll":59.45725181151092},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.503"} +{"sensors":[{"euler":{"heading":133.97007421852896,"pitch":138.25736048050723,"roll":29.568595232298982},"location":"Left Knee"},{"euler":{"heading":48.959850675492405,"pitch":110.8928580548746,"roll":38.16872577870506},"location":"Left Ankle"},{"euler":{"heading":22.960406583053643,"pitch":4.054674081956682,"roll":9.724992094331592},"location":"Right Ankle"},{"euler":{"heading":47.22275832521442,"pitch":-155.98611096145984,"roll":56.78165052703492},"location":"Right Hip"},{"euler":{"heading":105.63588662435978,"pitch":-82.455949914525,"roll":-51.611801876731036},"location":"Right Knee"},{"euler":{"heading":19.725269407922543,"pitch":-131.0753071797767,"roll":59.36863370051893},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.603"} +{"sensors":[{"euler":{"heading":142.05193573225867,"pitch":138.28434449684377,"roll":30.422846642673555},"location":"Left Knee"},{"euler":{"heading":48.49637788363386,"pitch":110.11935052497326,"roll":37.42014406886119},"location":"Left Ankle"},{"euler":{"heading":20.804097915607652,"pitch":3.179763208436187,"roll":9.387191654951677},"location":"Right Ankle"},{"euler":{"heading":48.17479846269972,"pitch":-155.01456534764247,"roll":56.38194393043319},"location":"Right Hip"},{"euler":{"heading":106.13419022731739,"pitch":-54.36634401255529,"roll":-52.11371604200374},"location":"Right Knee"},{"euler":{"heading":19.90821736865463,"pitch":-131.02522837842992,"roll":59.57786103111355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.704"} +{"sensors":[{"euler":{"heading":149.3827397840476,"pitch":137.66577495434203,"roll":31.04604410843649},"location":"Left Knee"},{"euler":{"heading":48.80905422539584,"pitch":109.64699459905577,"roll":37.18553702482516},"location":"Left Ankle"},{"euler":{"heading":21.05388346648453,"pitch":2.457636265954329,"roll":9.439926989683602},"location":"Right Ankle"},{"euler":{"heading":49.26223623975542,"pitch":-154.18867739409706,"roll":55.219046565879594},"location":"Right Hip"},{"euler":{"heading":103.91576231931484,"pitch":-65.62388657225266,"roll":-52.439255916648726},"location":"Right Knee"},{"euler":{"heading":20.53887794829103,"pitch":-131.82654436462676,"roll":59.98160040565748},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.804"} +{"sensors":[{"euler":{"heading":156.04066620591044,"pitch":136.6645757807745,"roll":31.226034585463893},"location":"Left Knee"},{"euler":{"heading":49.64048376494159,"pitch":109.45981712882127,"roll":37.430015944160175},"location":"Left Ankle"},{"euler":{"heading":23.38498741251417,"pitch":2.184829947552004,"roll":9.650932521460605},"location":"Right Ankle"},{"euler":{"heading":49.693301028869136,"pitch":-153.82544663937432,"roll":53.99435643017674},"location":"Right Hip"},{"euler":{"heading":99.92216372488669,"pitch":-73.09079185675002,"roll":-51.65344025804156},"location":"Right Knee"},{"euler":{"heading":21.304324858980657,"pitch":-133.33690379547124,"roll":60.50509678047686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.905"} +{"sensors":[{"euler":{"heading":127.64532550818012,"pitch":135.48149796635298,"roll":30.8787124642074},"location":"Left Knee"},{"euler":{"heading":50.92914376167852,"pitch":109.62592917580935,"roll":38.253483636076375},"location":"Left Ankle"},{"euler":{"heading":26.27203123876383,"pitch":2.366487601316475,"roll":10.134086444147576},"location":"Right Ankle"},{"euler":{"heading":48.952285328243676,"pitch":-153.8759278869005,"roll":53.26293982368647},"location":"Right Hip"},{"euler":{"heading":95.85035639374966,"pitch":-79.15764220397445,"roll":-50.128188442116404},"location":"Right Knee"},{"euler":{"heading":21.976678446136475,"pitch":-135.2518297986438,"roll":61.100534374965854},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.6"} +{"sensors":[{"euler":{"heading":105.31311237101909,"pitch":134.2524227086364,"roll":29.762175117825763},"location":"Left Knee"},{"euler":{"heading":52.62044987757574,"pitch":110.34655383922036,"roll":39.956067094619286},"location":"Left Ankle"},{"euler":{"heading":28.07457518123298,"pitch":2.820197727305292,"roll":10.439305513408218},"location":"Right Ankle"},{"euler":{"heading":47.70382328324117,"pitch":-154.1437112357258,"roll":53.057521777330344},"location":"Right Hip"},{"euler":{"heading":93.67334221536963,"pitch":-85.2325913626247,"roll":-49.024460668621785},"location":"Right Knee"},{"euler":{"heading":22.6870454316539,"pitch":-137.39466737831697,"roll":61.696189575997415},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.107"} +{"sensors":[{"euler":{"heading":88.41760137242355,"pitch":133.20050790793658,"roll":27.651309554801657},"location":"Left Knee"},{"euler":{"heading":55.498947930967276,"pitch":113.73743699985852,"roll":42.73136261176756},"location":"Left Ankle"},{"euler":{"heading":28.713604095267765,"pitch":3.2917293097109677,"roll":10.546179889838571},"location":"Right Ankle"},{"euler":{"heading":46.83909505462313,"pitch":-154.30555907430605,"roll":53.26583854396231},"location":"Right Hip"},{"euler":{"heading":93.170697419522,"pitch":-91.23579554996536,"roll":-48.61266313551889},"location":"Right Knee"},{"euler":{"heading":22.43946375897817,"pitch":-137.63828545781283,"roll":61.865344614963035},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.208"} +{"sensors":[{"euler":{"heading":75.6684623508276,"pitch":132.29554732962495,"roll":25.29292884601253},"location":"Left Knee"},{"euler":{"heading":58.15685784117823,"pitch":117.53407641457684,"roll":45.42551504533712},"location":"Left Ankle"},{"euler":{"heading":28.837406012339194,"pitch":3.8110699024028336,"roll":10.44186048780286},"location":"Right Ankle"},{"euler":{"heading":45.68575509581672,"pitch":-154.62409145142738,"roll":53.98095784797785},"location":"Right Hip"},{"euler":{"heading":94.16570492213481,"pitch":-97.25748049997144,"roll":-48.76969735267615},"location":"Right Knee"},{"euler":{"heading":21.22488957883473,"pitch":-135.63643667951197,"roll":61.56093145635221},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.309"} +{"sensors":[{"euler":{"heading":63.435806289969534,"pitch":132.50731661440435,"roll":24.188784792365798},"location":"Left Knee"},{"euler":{"heading":58.34368963131093,"pitch":117.02401195911624,"roll":46.90353170763578},"location":"Left Ankle"},{"euler":{"heading":28.635303387476064,"pitch":4.256114578430022,"roll":10.206619310113272},"location":"Right Ankle"},{"euler":{"heading":44.885315282030994,"pitch":-154.87752898178775,"roll":54.93443919103598},"location":"Right Hip"},{"euler":{"heading":95.54558337670844,"pitch":-103.0404836404178,"roll":-49.21883242499747},"location":"Right Knee"},{"euler":{"heading":19.58861829463782,"pitch":-133.4231479593884,"roll":60.640383900650846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.409"} +{"sensors":[{"euler":{"heading":75.96863912426554,"pitch":133.99769053478823,"roll":24.949545236992456},"location":"Left Knee"},{"euler":{"heading":55.218593053368046,"pitch":115.5735155083158,"roll":45.27464223105769},"location":"Left Ankle"},{"euler":{"heading":28.166594566329113,"pitch":4.65436609422329,"roll":9.947022547539538},"location":"Right Ankle"},{"euler":{"heading":44.57553459102647,"pitch":-155.06750233513858,"roll":55.94107356729061},"location":"Right Hip"},{"euler":{"heading":97.18079607709547,"pitch":-108.79838402082999,"roll":-49.866191547337806},"location":"Right Knee"},{"euler":{"heading":18.35084847802638,"pitch":-131.44870638122313,"roll":59.718446206459184},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.511"} +{"sensors":[{"euler":{"heading":87.33889309112934,"pitch":136.24314461059876,"roll":26.284524478211665},"location":"Left Knee"},{"euler":{"heading":50.888373690496785,"pitch":113.88851871769377,"roll":42.02031587692285},"location":"Left Ankle"},{"euler":{"heading":27.217962584106473,"pitch":4.950456489038032,"roll":9.641034731805755},"location":"Right Ankle"},{"euler":{"heading":44.5362245374362,"pitch":-155.45748855817342,"roll":56.91691108094614},"location":"Right Hip"},{"euler":{"heading":99.01904231205076,"pitch":-114.76059996677911,"roll":-50.72731564659267},"location":"Right Knee"},{"euler":{"heading":17.885039270550386,"pitch":-130.0565468659743,"roll":59.025993662947165},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.612"} +{"sensors":[{"euler":{"heading":102.33201564686445,"pitch":137.9077129465604,"roll":27.67180363829071},"location":"Left Knee"},{"euler":{"heading":47.885018144527535,"pitch":112.94594663679503,"roll":39.34030948638382},"location":"Left Ankle"},{"euler":{"heading":25.668337943386142,"pitch":4.90668915670081,"roll":9.208319609644759},"location":"Right Ankle"},{"euler":{"heading":44.742003888722685,"pitch":-156.14782692514484,"roll":57.763007942723476},"location":"Right Hip"},{"euler":{"heading":100.86888641240364,"pitch":-86.38214223758091,"roll":-51.68899618845724},"location":"Right Knee"},{"euler":{"heading":18.217429375603068,"pitch":-129.18266570803982,"roll":58.65303726891385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.713"} +{"sensors":[{"euler":{"heading":115.95020039099836,"pitch":138.50948387025971,"roll":28.695666770384136},"location":"Left Knee"},{"euler":{"heading":46.907062865446285,"pitch":112.34624125102664,"roll":38.037002809714366},"location":"Left Ankle"},{"euler":{"heading":23.00231581841363,"pitch":4.298684756432923,"roll":8.825194039388958},"location":"Right Ankle"},{"euler":{"heading":45.71330045823463,"pitch":-156.16981499645635,"roll":58.11866185743372},"location":"Right Hip"},{"euler":{"heading":102.88288347231736,"pitch":-62.35334502825586,"roll":-52.396627906122156},"location":"Right Knee"},{"euler":{"heading":18.35873564695087,"pitch":-128.43301148067823,"roll":58.45674363631798},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.813"} +{"sensors":[{"euler":{"heading":127.86060449487411,"pitch":138.3336875758712,"roll":29.557224174239135},"location":"Left Knee"},{"euler":{"heading":47.37892139966618,"pitch":112.13795251770212,"roll":37.44245459354111},"location":"Left Ankle"},{"euler":{"heading":20.26071952619531,"pitch":3.3833988665375587,"roll":8.492297938086239},"location":"Right Ankle"},{"euler":{"heading":46.96044164295336,"pitch":-155.39963178027958,"roll":57.73332861325001},"location":"Right Hip"},{"euler":{"heading":104.32370064162012,"pitch":-40.68222246359633,"roll":-52.9191848071611},"location":"Right Knee"},{"euler":{"heading":18.813367123586698,"pitch":-128.00528706225413,"roll":58.575494637115554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.914"} +{"sensors":[{"euler":{"heading":137.9569655471853,"pitch":137.74218978582104,"roll":30.243428807814414},"location":"Left Knee"},{"euler":{"heading":48.246885997647134,"pitch":111.97430409436816,"roll":37.23747168024169},"location":"Left Ankle"},{"euler":{"heading":19.460942386684806,"pitch":2.5405066654806348,"roll":8.300562848170363},"location":"Right Ankle"},{"euler":{"heading":48.58801890580343,"pitch":-154.53713269824948,"roll":56.712402575213524},"location":"Right Hip"},{"euler":{"heading":103.25585231918778,"pitch":-52.965125673814505,"roll":-53.45627219873403},"location":"Right Knee"},{"euler":{"heading":19.619646860773972,"pitch":-128.4318350849667,"roll":58.96521158658612},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.15"} +{"sensors":[{"euler":{"heading":146.7466725709947,"pitch":136.84260680949964,"roll":30.628201970344502},"location":"Left Knee"},{"euler":{"heading":49.266727204993636,"pitch":111.88073629045962,"roll":37.29269482605008},"location":"Left Ankle"},{"euler":{"heading":21.029815405344067,"pitch":1.9063834626184155,"roll":8.49978250634995},"location":"Right Ankle"},{"euler":{"heading":49.64711899330139,"pitch":-154.06539346227652,"roll":55.40152703346945},"location":"Right Hip"},{"euler":{"heading":99.81304103500993,"pitch":-61.17951212108156,"roll":-53.08833396683746},"location":"Right Knee"},{"euler":{"heading":20.58302855641486,"pitch":-129.7828786695434,"roll":59.478741229539345},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.116"} +{"sensors":[{"euler":{"heading":120.22615148477853,"pitch":135.7252327944331,"roll":30.591943782322968},"location":"Left Knee"},{"euler":{"heading":50.54172400690942,"pitch":111.94010504518867,"roll":37.74398373899876},"location":"Left Ankle"},{"euler":{"heading":23.961286090113703,"pitch":1.7595698712716814,"roll":9.03307971950757},"location":"Right Ankle"},{"euler":{"heading":49.66407243165772,"pitch":-153.80746568913912,"roll":54.452268549826904},"location":"Right Hip"},{"euler":{"heading":95.39483747436947,"pitch":-67.67546417082055,"roll":-51.56392248071105},"location":"Right Knee"},{"euler":{"heading":21.502622631664934,"pitch":-131.63720605788623,"roll":60.08595809880425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.216"} +{"sensors":[{"euler":{"heading":99.06465195037822,"pitch":134.45313827795243,"roll":30.03266818835596},"location":"Left Knee"},{"euler":{"heading":52.32291128846886,"pitch":112.37066092322833,"roll":38.8754235384848},"location":"Left Ankle"},{"euler":{"heading":26.87877290895542,"pitch":2.1715087555219768,"roll":9.400884054316132},"location":"Right Ankle"},{"euler":{"heading":48.59588333068868,"pitch":-153.915648964083,"roll":54.032016232351516},"location":"Right Hip"},{"euler":{"heading":91.91406469109452,"pitch":-74.01304393891662,"roll":-49.81663159107096},"location":"Right Knee"},{"euler":{"heading":22.45771632820923,"pitch":-133.94563244072577,"roll":60.74188706853791},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.318"} +{"sensors":[{"euler":{"heading":82.8259432594585,"pitch":133.14876898777942,"roll":28.57725828952093},"location":"Left Knee"},{"euler":{"heading":54.41154155182064,"pitch":113.81738539976932,"roll":40.9791060310845},"location":"Left Ankle"},{"euler":{"heading":28.209286311750116,"pitch":2.5555329882712385,"roll":9.577703496659804},"location":"Right Ankle"},{"euler":{"heading":47.83423317233895,"pitch":-153.97152681454716,"roll":53.92137797547828},"location":"Right Hip"},{"euler":{"heading":90.65149482746341,"pitch":-80.55007206657841,"roll":-48.92574013220933},"location":"Right Knee"},{"euler":{"heading":23.340807597641973,"pitch":-135.82147131954616,"roll":61.40605277872107},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.418"} +{"sensors":[{"euler":{"heading":70.95080378434945,"pitch":131.97621661101962,"roll":26.26513920787716},"location":"Left Knee"},{"euler":{"heading":57.77451153833926,"pitch":118.08008754756824,"roll":43.79933137684347},"location":"Left Ankle"},{"euler":{"heading":28.70416064936627,"pitch":3.0517770227375323,"roll":9.57625105803551},"location":"Right Ankle"},{"euler":{"heading":46.663629309110135,"pitch":-154.2011382891388,"roll":54.31699259696414},"location":"Right Hip"},{"euler":{"heading":91.12784884903454,"pitch":-86.9460126452542,"roll":-48.67608895080637},"location":"Right Knee"},{"euler":{"heading":22.518075284966113,"pitch":-135.0862028174762,"roll":61.540415176590855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.519"} +{"sensors":[{"euler":{"heading":60.710280502813646,"pitch":131.68017728694892,"roll":24.5513965568477},"location":"Left Knee"},{"euler":{"heading":59.20227485259879,"pitch":118.86594617131911,"roll":46.049843314292346},"location":"Left Ankle"},{"euler":{"heading":28.800202789115147,"pitch":3.5718594451791654,"roll":9.401918788924354},"location":"Right Ankle"},{"euler":{"heading":45.74082131700493,"pitch":-154.45041650886733,"roll":55.11603363941133},"location":"Right Hip"},{"euler":{"heading":92.60588882719524,"pitch":-93.20373680347049,"roll":-48.88002881127698},"location":"Right Knee"},{"euler":{"heading":20.98235174390979,"pitch":-133.29408217919456,"roll":60.97573501066725},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.620"} +{"sensors":[{"euler":{"heading":83.2114476891341,"pitch":132.5573491945951,"roll":24.534568597342542},"location":"Left Knee"},{"euler":{"heading":57.45215875798185,"pitch":117.42390821661739,"roll":45.794667386939},"location":"Left Ankle"},{"euler":{"heading":28.53995791488283,"pitch":4.12547010518525,"roll":9.220478669377414},"location":"Right Ankle"},{"euler":{"heading":45.14575640725023,"pitch":-154.64594361329372,"roll":56.1662720534727},"location":"Right Hip"},{"euler":{"heading":94.50576278037008,"pitch":-99.3971251984495,"roll":-49.32076693830258},"location":"Right Knee"},{"euler":{"heading":19.166047578669396,"pitch":-131.90659916747984,"roll":59.9644412378618},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.721"} +{"sensors":[{"euler":{"heading":92.70543274134558,"pitch":134.6733926495406,"roll":25.7767667113848},"location":"Left Knee"},{"euler":{"heading":53.10595928665994,"pitch":115.46459370663288,"roll":43.09084444230398},"location":"Left Ankle"},{"euler":{"heading":27.791791164865913,"pitch":4.667721794382801,"roll":9.026636516626008},"location":"Right Ankle"},{"euler":{"heading":44.78337233114237,"pitch":-154.9419117812456,"roll":57.175418209402785},"location":"Right Hip"},{"euler":{"heading":96.79264990042877,"pitch":-105.78934700015358,"roll":-49.95166474366599},"location":"Right Knee"},{"euler":{"heading":18.12476479400391,"pitch":-130.58658040587125,"roll":59.181203815265185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.822"} +{"sensors":[{"euler":{"heading":101.30548130390824,"pitch":136.9561778704943,"roll":27.17405520187739},"location":"Left Knee"},{"euler":{"heading":49.255983607013725,"pitch":113.99664746942258,"roll":40.06806355317216},"location":"Left Ankle"},{"euler":{"heading":26.447919999674507,"pitch":5.009142377372219,"roll":8.785827270946504},"location":"Right Ankle"},{"euler":{"heading":44.55799775723979,"pitch":-155.626519180935,"roll":58.17730608280981},"location":"Right Hip"},{"euler":{"heading":99.27157066394696,"pitch":-112.58822158140407,"roll":-50.76639141738721},"location":"Right Knee"},{"euler":{"heading":17.89642464267711,"pitch":-129.77416541893425,"roll":58.627824826314864},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.922"} +{"sensors":[{"euler":{"heading":114.53625826229361,"pitch":138.0679247438713,"roll":28.282907875410412},"location":"Left Knee"},{"euler":{"heading":47.958572061586956,"pitch":113.15735606129634,"roll":38.35853841150397},"location":"Left Ankle"},{"euler":{"heading":24.301185630737606,"pitch":4.502122970562153,"roll":8.407268567989782},"location":"Right Ankle"},{"euler":{"heading":45.01555631489585,"pitch":-155.97174626783615,"roll":58.95238657520009},"location":"Right Hip"},{"euler":{"heading":101.31319676911122,"pitch":-85.7777715709357,"roll":-51.789035832507615},"location":"Right Knee"},{"euler":{"heading":17.935382495225937,"pitch":-129.1228022119653,"roll":58.35364010421748},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.23"} +{"sensors":[{"euler":{"heading":126.42191458813843,"pitch":138.22813867467778,"roll":29.25606319930476},"location":"Left Knee"},{"euler":{"heading":47.79399674880702,"pitch":112.62445845245817,"roll":37.520735296395216},"location":"Left Ankle"},{"euler":{"heading":21.390052719448267,"pitch":3.388712355349837,"roll":7.957721098565065},"location":"Right Ankle"},{"euler":{"heading":46.192822128072166,"pitch":-155.45057459329203,"roll":58.8616738699842},"location":"Right Hip"},{"euler":{"heading":103.16323636197848,"pitch":-62.44537373292987,"roll":-52.52348803675993},"location":"Right Knee"},{"euler":{"heading":18.561812678884856,"pitch":-129.0158577959876,"roll":58.48068729563762},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.124"} +{"sensors":[{"euler":{"heading":136.65922256586083,"pitch":137.77194768624665,"roll":30.1422733460482},"location":"Left Knee"},{"euler":{"heading":48.38457104217599,"pitch":112.32693031758276,"roll":37.15571352842203},"location":"Left Ankle"},{"euler":{"heading":20.30844534151397,"pitch":2.375635595736374,"roll":7.682022206544182},"location":"Right Ankle"},{"euler":{"heading":47.87020310735305,"pitch":-154.53873566425744,"roll":58.04162287437058},"location":"Right Hip"},{"euler":{"heading":102.98957745143399,"pitch":-73.43126662491956,"roll":-53.300910201107264},"location":"Right Knee"},{"euler":{"heading":19.66331868026741,"pitch":-129.85352249467067,"roll":58.851525190645944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.225"} +{"sensors":[{"euler":{"heading":145.612265602716,"pitch":136.93084402256073,"roll":30.694021066295324},"location":"Left Knee"},{"euler":{"heading":49.29024960392116,"pitch":112.17679508393809,"roll":37.12898755917219},"location":"Left Ankle"},{"euler":{"heading":21.43828720410704,"pitch":1.584164634039814,"roll":7.997917820759974},"location":"Right Ankle"},{"euler":{"heading":48.970156036579596,"pitch":-153.98165547893265,"roll":56.84161871976061},"location":"Right Hip"},{"euler":{"heading":100.21361338276367,"pitch":-80.15587367137027,"roll":-53.290112725244775},"location":"Right Knee"},{"euler":{"heading":20.7376442520001,"pitch":-131.15276639013328,"roll":59.34169743211881},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.325"} +{"sensors":[{"euler":{"heading":119.31038833006674,"pitch":135.75942187226914,"roll":29.30716178595383},"location":"Left Knee"},{"euler":{"heading":50.54906003207843,"pitch":112.26110741191778,"roll":37.50937735425204},"location":"Left Ankle"},{"euler":{"heading":24.390750867896692,"pitch":1.5166575895010839,"roll":8.58116914169823},"location":"Right Ankle"},{"euler":{"heading":49.17519486979553,"pitch":-153.69782470177046,"roll":55.84527673911255},"location":"Right Hip"},{"euler":{"heading":96.08572125392926,"pitch":-85.0255928962916,"roll":-51.98334907803009},"location":"Right Knee"},{"euler":{"heading":21.81349585053486,"pitch":-132.86953497475653,"roll":59.95766830289233},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.426"} +{"sensors":[{"euler":{"heading":98.363030020048,"pitch":134.40220832253524,"roll":29.034027019766402},"location":"Left Knee"},{"euler":{"heading":52.251592409025996,"pitch":112.68836076751793,"roll":38.43649103081446},"location":"Left Ankle"},{"euler":{"heading":27.37897410060764,"pitch":1.7649199449868453,"roll":9.013651528700139},"location":"Right Ankle"},{"euler":{"heading":48.23130767562092,"pitch":-153.86340721332277,"roll":55.2532300243831},"location":"Right Hip"},{"euler":{"heading":92.42043364696355,"pitch":-89.46093026811837,"roll":-50.39066682873804},"location":"Right Knee"},{"euler":{"heading":22.926268865065737,"pitch":-135.10678806333354,"roll":60.63985582647416},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.527"} +{"sensors":[{"euler":{"heading":82.10315460133351,"pitch":133.07318536241266,"roll":27.841162170223868},"location":"Left Knee"},{"euler":{"heading":54.03206896929235,"pitch":113.75894269277437,"roll":40.17344173577892},"location":"Left Ankle"},{"euler":{"heading":28.72584562372193,"pitch":2.2512468745810317,"roll":9.3038108021132},"location":"Right Ankle"},{"euler":{"heading":47.52385240885886,"pitch":-153.92993995738667,"roll":54.99715292636555},"location":"Right Hip"},{"euler":{"heading":91.02453395173384,"pitch":-94.3956503568196,"roll":-49.37799329487076},"location":"Right Knee"},{"euler":{"heading":23.84929670573355,"pitch":-136.86916850664937,"roll":61.3760104219758},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.629"} +{"sensors":[{"euler":{"heading":70.25213345719133,"pitch":131.88264442069996,"roll":25.947091300624443},"location":"Left Knee"},{"euler":{"heading":57.82048196585264,"pitch":117.8203164972935,"roll":42.702518264106416},"location":"Left Ankle"},{"euler":{"heading":29.192514486464276,"pitch":3.0302665064163987,"roll":9.34627102650907},"location":"Right Ankle"},{"euler":{"heading":46.77812025569588,"pitch":-153.88902604204796,"roll":55.205590577236144},"location":"Right Hip"},{"euler":{"heading":91.41546248932156,"pitch":-99.53837697029431,"roll":-48.884055944820005},"location":"Right Knee"},{"euler":{"heading":23.130634388552625,"pitch":-136.26901377127936,"roll":61.554342883575686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.730"} +{"sensors":[{"euler":{"heading":60.12046873036111,"pitch":131.542926537257,"roll":24.429642294273677},"location":"Left Knee"},{"euler":{"heading":59.23990804096965,"pitch":119.02090738927501,"roll":44.69340164979824},"location":"Left Ankle"},{"euler":{"heading":29.3189741822078,"pitch":3.717261846784633,"roll":9.224113510016904},"location":"Right Ankle"},{"euler":{"heading":46.054554784314554,"pitch":-153.87579698821077,"roll":55.76885329251292},"location":"Right Hip"},{"euler":{"heading":92.8057098106217,"pitch":-104.70879037487892,"roll":-48.88914142573307},"location":"Right Knee"},{"euler":{"heading":21.739577925726458,"pitch":-134.4295192947954,"roll":61.115026175964864},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.831"} +{"sensors":[{"euler":{"heading":72.29436821076028,"pitch":132.49033939462308,"roll":24.448230527340673},"location":"Left Knee"},{"euler":{"heading":57.47704103502029,"pitch":117.63330010521659,"roll":44.6749995349258},"location":"Left Ankle"},{"euler":{"heading":29.11336323428923,"pitch":4.368584412833336,"roll":9.012489708754803},"location":"Right Ankle"},{"euler":{"heading":45.41453773892824,"pitch":-153.89356172948138,"roll":56.599619549403045},"location":"Right Hip"},{"euler":{"heading":94.82989365199967,"pitch":-109.9697340742672,"roll":-49.28028851153566},"location":"Right Knee"},{"euler":{"heading":19.928762672058372,"pitch":-132.21804742071183,"roll":60.27152132371861},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.931"} +{"sensors":[{"euler":{"heading":83.64760025925422,"pitch":134.6201331833681,"roll":25.749509969834},"location":"Left Knee"},{"euler":{"heading":53.251203448366724,"pitch":115.66419334526817,"roll":42.29755802513715},"location":"Left Ankle"},{"euler":{"heading":28.463439291048946,"pitch":4.987638851443528,"roll":8.785331439883073},"location":"Right Ankle"},{"euler":{"heading":45.03912519862182,"pitch":-153.99883405849826,"roll":57.45834149134416},"location":"Right Hip"},{"euler":{"heading":97.20667538430106,"pitch":-115.46725104135943,"roll":-49.89585073005747},"location":"Right Knee"},{"euler":{"heading":18.564975321570675,"pitch":-130.3538623238337,"roll":59.49641863974193},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.32"} +{"sensors":[{"euler":{"heading":93.8473008677396,"pitch":137.27861337832744,"roll":27.236143369729295},"location":"Left Knee"},{"euler":{"heading":48.84578838798189,"pitch":113.6624918003216,"roll":39.06416679964534},"location":"Left Ankle"},{"euler":{"heading":27.324860898799567,"pitch":5.39316651384816,"roll":8.585740497144014},"location":"Right Ankle"},{"euler":{"heading":44.83875337092904,"pitch":-154.4449210212835,"roll":58.41372048429034},"location":"Right Hip"},{"euler":{"heading":99.62840626360945,"pitch":-121.29184064950071,"roll":-50.72635555469434},"location":"Right Knee"},{"euler":{"heading":18.102291604846613,"pitch":-129.16660397305614,"roll":58.91401735907725},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.132"} +{"sensors":[{"euler":{"heading":107.31771441883907,"pitch":138.9110847972322,"roll":28.539670433710675},"location":"Left Knee"},{"euler":{"heading":46.43364624948611,"pitch":112.35076996203051,"roll":36.90555259956075},"location":"Left Ankle"},{"euler":{"heading":25.4770167819194,"pitch":5.320084273347023,"roll":8.185136794492916},"location":"Right Ankle"},{"euler":{"heading":44.80548591226576,"pitch":-155.276677219978,"roll":59.42682981876533},"location":"Right Hip"},{"euler":{"heading":101.90858222864696,"pitch":-93.51335250919581,"roll":-51.67404429261074},"location":"Right Knee"},{"euler":{"heading":17.996930843935925,"pitch":-128.30045281427525,"roll":58.45839724014378},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.233"} +{"sensors":[{"euler":{"heading":119.4649920681187,"pitch":139.53792830935996,"roll":29.58833914263802},"location":"Left Knee"},{"euler":{"heading":45.4752345352006,"pitch":111.36603836410374,"roll":35.695607029827954},"location":"Left Ankle"},{"euler":{"heading":22.644145747388507,"pitch":4.558274158162183,"roll":7.769141304921656},"location":"Right Ankle"},{"euler":{"heading":45.51546470830877,"pitch":-155.41684336228,"roll":59.766767194935284},"location":"Right Hip"},{"euler":{"heading":104.06096257451985,"pitch":-69.78157820673741,"roll":-52.31749290277943},"location":"Right Knee"},{"euler":{"heading":17.999841184862674,"pitch":-127.60591640860095,"roll":58.444517149778825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.334"} +{"sensors":[{"euler":{"heading":129.9700285979256,"pitch":139.55215767030035,"roll":30.412358033881983},"location":"Left Knee"},{"euler":{"heading":45.356362535158674,"pitch":110.5225762125805,"roll":35.070518561382926},"location":"Left Ankle"},{"euler":{"heading":20.59213289934304,"pitch":3.5419310027750965,"roll":7.571106333534933},"location":"Right Ankle"},{"euler":{"heading":46.75077841148772,"pitch":-154.83016656743158,"roll":59.32517707493743},"location":"Right Hip"},{"euler":{"heading":105.03260332343619,"pitch":-47.202074415497826,"roll":-52.92944336510507},"location":"Right Knee"},{"euler":{"heading":18.465958167038693,"pitch":-127.76232474187638,"roll":58.71735997833835},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.435"} +{"sensors":[{"euler":{"heading":138.9520406855383,"pitch":139.1369373228708,"roll":31.009327332315394},"location":"Left Knee"},{"euler":{"heading":46.025974959563094,"pitch":109.84261015282247,"roll":35.117321935049894},"location":"Left Ankle"},{"euler":{"heading":20.873898553435467,"pitch":2.7293166291838324,"roll":7.742715062442194},"location":"Right Ankle"},{"euler":{"heading":48.14275160809272,"pitch":-154.00202320325516,"roll":58.39643020104595},"location":"Right Hip"},{"euler":{"heading":103.59274602968657,"pitch":-57.891191059396576,"roll":-53.39398024877771},"location":"Right Knee"},{"euler":{"heading":19.29351231519349,"pitch":-128.71842200714454,"roll":59.178289763697826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.536"} +{"sensors":[{"euler":{"heading":147.13290011000188,"pitch":138.3034050893194,"roll":31.25815900054059},"location":"Left Knee"},{"euler":{"heading":47.28174448922745,"pitch":109.43543881113575,"roll":35.67100154303816},"location":"Left Ankle"},{"euler":{"heading":22.85847371673535,"pitch":2.392379920215698,"roll":8.367705553832835},"location":"Right Ankle"},{"euler":{"heading":48.71769351183468,"pitch":-153.55590397118792,"roll":57.37767850487433},"location":"Right Hip"},{"euler":{"heading":100.20808332125638,"pitch":-65.52391696329369,"roll":-52.77382286040451},"location":"Right Knee"},{"euler":{"heading":20.238651589490917,"pitch":-130.08893479326923,"roll":59.74995219924968},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.636"} +{"sensors":[{"euler":{"heading":154.55076107791598,"pitch":137.18054794708976,"roll":31.025503622246397},"location":"Left Knee"},{"euler":{"heading":48.886662046704856,"pitch":109.41185240849914,"roll":36.6595441011027},"location":"Left Ankle"},{"euler":{"heading":25.892479598003447,"pitch":2.3609984653143905,"roll":8.855940383637918},"location":"Right Ankle"},{"euler":{"heading":48.41556532125925,"pitch":-153.46734713823435,"roll":56.640166713595946},"location":"Right Hip"},{"euler":{"heading":96.1882105977894,"pitch":-71.58617501023924,"roll":-51.41000941883402},"location":"Right Knee"},{"euler":{"heading":21.262233513679053,"pitch":-131.87605192871828,"roll":60.4515400067249},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.737"} +{"sensors":[{"euler":{"heading":127.18808740635629,"pitch":135.9445319581653,"roll":30.15502513022013},"location":"Left Knee"},{"euler":{"heading":50.81907878082626,"pitch":109.90182849435175,"roll":38.279396951291844},"location":"Left Ankle"},{"euler":{"heading":28.0140565288361,"pitch":2.451513879029999,"roll":9.196650659559065},"location":"Right Ankle"},{"euler":{"heading":47.72823032497681,"pitch":-153.54774570633643,"roll":56.15118766344437},"location":"Right Hip"},{"euler":{"heading":93.54478174225804,"pitch":-77.51759579247617,"roll":-50.30080408599935},"location":"Right Knee"},{"euler":{"heading":22.415442577919734,"pitch":-134.21850411164635,"roll":61.1517809573141},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.837"} +{"sensors":[{"euler":{"heading":106.06774658094284,"pitch":134.84988777834602,"roll":28.23771221815758},"location":"Left Knee"},{"euler":{"heading":53.316916864115846,"pitch":112.33099305155974,"roll":40.827227527964965},"location":"Left Ankle"},{"euler":{"heading":28.82967871697767,"pitch":2.485853868503562,"roll":9.308745007779962},"location":"Right Ankle"},{"euler":{"heading":47.37947225664366,"pitch":-153.56104029217923,"roll":55.96438542985476},"location":"Right Hip"},{"euler":{"heading":92.6407503043153,"pitch":-83.55062231728743,"roll":-49.82627528875957},"location":"Right Knee"},{"euler":{"heading":22.295478832960832,"pitch":-134.61390442418312,"roll":61.440563694141794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.938"} +{"sensors":[{"euler":{"heading":89.57705113964107,"pitch":133.97829114931955,"roll":26.23525451242729},"location":"Left Knee"},{"euler":{"heading":55.43943295445067,"pitch":114.67175279969699,"roll":43.221854797695826},"location":"Left Ankle"},{"euler":{"heading":29.188353276176315,"pitch":2.415853802280697,"roll":9.267483854488509},"location":"Right Ankle"},{"euler":{"heading":46.71935515133395,"pitch":-153.7989983334373,"roll":56.265047339351874},"location":"Right Hip"},{"euler":{"heading":92.9052873407514,"pitch":-89.37237670895752,"roll":-50.00927474414769},"location":"Right Knee"},{"euler":{"heading":21.335183043955766,"pitch":-133.0215713967386,"roll":61.20839854896362},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.39"} +{"sensors":[{"euler":{"heading":73.98173945980398,"pitch":134.02791983822473,"roll":25.529148848250315},"location":"Left Knee"},{"euler":{"heading":55.49482475042829,"pitch":113.90034249311572,"roll":44.264985642955324},"location":"Left Ankle"},{"euler":{"heading":29.178824924208968,"pitch":2.3108948725360516,"roll":9.176638938666095},"location":"Right Ankle"},{"euler":{"heading":46.41666429242046,"pitch":-153.94297347066055,"roll":56.87599711466772},"location":"Right Hip"},{"euler":{"heading":93.67480358629675,"pitch":-95.04458403801924,"roll":-50.56131916603875},"location":"Right Knee"},{"euler":{"heading":19.93652721654266,"pitch":-131.2358848478236,"roll":60.39782954533735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.140"} +{"sensors":[{"euler":{"heading":91.794977729858,"pitch":135.345147797822,"roll":26.352789795500637},"location":"Left Knee"},{"euler":{"heading":52.61508814105128,"pitch":112.5423753227756,"roll":42.795040651204346},"location":"Left Ankle"},{"euler":{"heading":28.778632816833014,"pitch":2.2515933341336933,"roll":9.029036543841167},"location":"Right Ankle"},{"euler":{"heading":46.353125884520104,"pitch":-154.13865175275492,"roll":57.52395335833886},"location":"Right Hip"},{"euler":{"heading":94.87563217891001,"pitch":-100.8549664976407,"roll":-51.28082766570546},"location":"Right Knee"},{"euler":{"heading":18.62484074080412,"pitch":-129.3644193634967,"roll":59.52168067839329},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.240"} +{"sensors":[{"euler":{"heading":104.57306423266698,"pitch":137.60724029532128,"roll":27.781799055547374},"location":"Left Knee"},{"euler":{"heading":48.556804973157575,"pitch":110.8557955405188,"roll":39.681310843228594},"location":"Left Ankle"},{"euler":{"heading":27.85047988680523,"pitch":2.2871141780056763,"roll":8.663604878378734},"location":"Right Ankle"},{"euler":{"heading":46.52107708773843,"pitch":-154.3573329846133,"roll":58.1875597860046},"location":"Right Hip"},{"euler":{"heading":96.50690784882751,"pitch":-107.0163086961866,"roll":-52.187541647470844},"location":"Right Knee"},{"euler":{"heading":18.133473435721875,"pitch":-128.0574374193736,"roll":58.818060835564374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.341"} +{"sensors":[{"euler":{"heading":115.99888732670983,"pitch":139.3509274856656,"roll":29.098649582986628},"location":"Left Knee"},{"euler":{"heading":45.72734768481241,"pitch":109.888524647073,"roll":36.99458561580174},"location":"Left Ankle"},{"euler":{"heading":26.400853598032114,"pitch":2.194402875214767,"roll":8.267537140711543},"location":"Right Ankle"},{"euler":{"heading":46.74777496370872,"pitch":-154.995169765009,"roll":58.942617982028686},"location":"Right Hip"},{"euler":{"heading":98.35983634731284,"pitch":-113.85194995605295,"roll":-53.132853885980076},"location":"Right Knee"},{"euler":{"heading":18.37323564690835,"pitch":-127.2315105010952,"roll":58.371627986585615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.442"} +{"sensors":[{"euler":{"heading":126.68608769294228,"pitch":139.99531746364752,"roll":30.18321369543699},"location":"Left Knee"},{"euler":{"heading":45.08716790025249,"pitch":109.44133528463118,"roll":35.72279129084233},"location":"Left Ankle"},{"euler":{"heading":23.989167807061165,"pitch":1.450574869841465,"roll":7.855638311482934},"location":"Right Ankle"},{"euler":{"heading":47.36145708565164,"pitch":-155.23344408175993,"roll":59.4355969141833},"location":"Right Hip"},{"euler":{"heading":100.34074617090623,"pitch":-87.4626411730757,"roll":-53.89905962426859},"location":"Right Knee"},{"euler":{"heading":18.41497468510453,"pitch":-126.49604333994137,"roll":58.15791539999224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.543"} +{"sensors":[{"euler":{"heading":136.23937219876706,"pitch":139.87091034526009,"roll":31.03975319228832},"location":"Left Knee"},{"euler":{"heading":45.34182469120421,"pitch":109.1555931973301,"roll":35.01788176674564},"location":"Left Ankle"},{"euler":{"heading":21.199974973446206,"pitch":0.49807360312780835,"roll":7.405632789440633},"location":"Right Ankle"},{"euler":{"heading":48.47036071384,"pitch":-154.71182734547037,"roll":59.150400693680545},"location":"Right Hip"},{"euler":{"heading":102.15296281291224,"pitch":-63.84528191681651,"roll":-54.43779864319763},"location":"Right Knee"},{"euler":{"heading":18.906939250972552,"pitch":-126.22293318610436,"roll":58.35692651870278},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.644"} +{"sensors":[{"euler":{"heading":144.2458956449382,"pitch":139.4194527724634,"roll":31.630506650806137},"location":"Left Knee"},{"euler":{"heading":45.782204390571714,"pitch":108.84352479854985,"roll":34.73080395062906},"location":"Left Ankle"},{"euler":{"heading":20.503584065875913,"pitch":-0.3162561038114101,"roll":7.367046726652803},"location":"Right Ankle"},{"euler":{"heading":49.865845017494046,"pitch":-153.83554673503664,"roll":58.303744730594346},"location":"Right Hip"},{"euler":{"heading":101.78186783977783,"pitch":-73.81846089811074,"roll":-54.99663313911183},"location":"Right Knee"},{"euler":{"heading":19.547571604637966,"pitch":-126.75464408732408,"roll":58.77482027284095},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.744"} +{"sensors":[{"euler":{"heading":151.2594169771018,"pitch":138.70178309795924,"roll":31.90346857660998},"location":"Left Knee"},{"euler":{"heading":46.55301303302074,"pitch":108.5968145129759,"roll":34.839646146489585},"location":"Left Ankle"},{"euler":{"heading":22.06774538885104,"pitch":-0.41102428041316375,"roll":7.659125061254631},"location":"Right Ankle"},{"euler":{"heading":50.5922945061747,"pitch":-153.28638290616982,"roll":57.19279855832666},"location":"Right Hip"},{"euler":{"heading":99.19501755406627,"pitch":-80.26859032620123,"roll":-54.485653970341275},"location":"Right Knee"},{"euler":{"heading":20.214808058456384,"pitch":-127.88381736483362,"roll":59.301594702631796},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.845"} +{"sensors":[{"euler":{"heading":157.63822849257846,"pitch":137.63620925702398,"roll":31.82347112366453},"location":"Left Knee"},{"euler":{"heading":47.68950145481941,"pitch":108.5222062991956,"roll":35.38998011322902},"location":"Left Ankle"},{"euler":{"heading":24.918040182773165,"pitch":-0.22329203910222786,"roll":8.196904483963102},"location":"Right Ankle"},{"euler":{"heading":50.30125971749008,"pitch":-153.06294453405113,"roll":56.3480568095624},"location":"Right Hip"},{"euler":{"heading":95.47761961732725,"pitch":-84.98741875100333,"roll":-53.042301977726446},"location":"Right Knee"},{"euler":{"heading":21.022734072866342,"pitch":-129.5298367000266,"roll":59.98040038470684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.946"} +{"sensors":[{"euler":{"heading":129.3177667774008,"pitch":136.3866234815576,"roll":31.26356638653465},"location":"Left Knee"},{"euler":{"heading":49.39294692324815,"pitch":108.82925112588399,"roll":36.45276935885248},"location":"Left Ankle"},{"euler":{"heading":27.37670990426514,"pitch":0.4043724349564949,"roll":8.493276425272189},"location":"Right Ankle"},{"euler":{"heading":49.25439891389387,"pitch":-153.09857423309253,"roll":55.8036493445556},"location":"Right Hip"},{"euler":{"heading":92.66568524779706,"pitch":-89.58435634125335,"roll":-51.504382614251455},"location":"Right Knee"},{"euler":{"heading":21.957747160938,"pitch":-131.82189620730702,"roll":60.71354050610246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.46"} +{"sensors":[{"euler":{"heading":106.95540144373206,"pitch":135.39264823761684,"roll":29.793780187930807},"location":"Left Knee"},{"euler":{"heading":51.114718129927184,"pitch":109.86214451569491,"roll":38.43111064616832},"location":"Left Ankle"},{"euler":{"heading":28.31971061228193,"pitch":0.9842203912592348,"roll":8.636603847460727},"location":"Right Ankle"},{"euler":{"heading":48.2723789722178,"pitch":-153.19621321724748,"roll":55.620186137702476},"location":"Right Hip"},{"euler":{"heading":91.88527521152179,"pitch":-94.52878905984241,"roll":-50.67161998015018},"location":"Right Knee"},{"euler":{"heading":22.42012416653427,"pitch":-133.76512421934333,"roll":61.2580334527401},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.147"} +{"sensors":[{"euler":{"heading":90.27413544313802,"pitch":134.08299833384422,"roll":27.601736638820995},"location":"Left Knee"},{"euler":{"heading":54.296204183518405,"pitch":113.09167791353272,"roll":41.273582941829766},"location":"Left Ankle"},{"euler":{"heading":28.592432720790388,"pitch":1.6694336015052003,"roll":8.593882766818659},"location":"Right Ankle"},{"euler":{"heading":47.02240404573917,"pitch":-153.41536133072853,"roll":55.95952748168886},"location":"Right Hip"},{"euler":{"heading":92.62558769554921,"pitch":-99.61524718644144,"roll":-50.42937231704992},"location":"Right Knee"},{"euler":{"heading":21.817742195415004,"pitch":-132.84216042364685,"roll":61.50697284512164},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.247"} +{"sensors":[{"euler":{"heading":76.12801785215166,"pitch":133.78972772726326,"roll":26.00465837930776},"location":"Left Knee"},{"euler":{"heading":55.343530888999396,"pitch":113.14835556489386,"roll":43.40570963789201},"location":"Left Ankle"},{"euler":{"heading":28.453073520085407,"pitch":2.277574851539879,"roll":8.436319146552465},"location":"Right Ankle"},{"euler":{"heading":46.16539455582297,"pitch":-153.57799092545372,"roll":56.69465184526905},"location":"Right Hip"},{"euler":{"heading":93.98680881634641,"pitch":-104.61024406658771,"roll":-50.64417699859843},"location":"Right Knee"},{"euler":{"heading":20.50406004395145,"pitch":-131.18059457832825,"roll":61.03662924013378},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.348"} +{"sensors":[{"euler":{"heading":95.60347925680182,"pitch":134.5885665659654,"roll":26.135012248565786},"location":"Left Knee"},{"euler":{"heading":53.74566880212498,"pitch":111.79060133990022,"roll":43.19470224764825},"location":"Left Ankle"},{"euler":{"heading":28.02386505485664,"pitch":2.81003041952838,"roll":8.240235978332679},"location":"Right Ankle"},{"euler":{"heading":45.80255865686172,"pitch":-153.63597053069614,"roll":57.54415201238972},"location":"Right Hip"},{"euler":{"heading":95.45809363941287,"pitch":-109.57004301413494,"roll":-51.10608759600485},"location":"Right Knee"},{"euler":{"heading":19.214387459967696,"pitch":-129.45710921073436,"roll":60.20080034762114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.448"} +{"sensors":[{"euler":{"heading":108.20275757311038,"pitch":136.60154917223906,"roll":27.42419344701414},"location":"Left Knee"},{"euler":{"heading":49.91653063984563,"pitch":110.28257413785882,"roll":40.39971852204654},"location":"Left Ankle"},{"euler":{"heading":27.167078484743847,"pitch":3.214546839735984,"roll":8.027133398472504},"location":"Right Ankle"},{"euler":{"heading":45.761117247233834,"pitch":-153.82517707653602,"roll":58.360405684428635},"location":"Right Hip"},{"euler":{"heading":97.10867811592897,"pitch":-114.69418804404309,"roll":-51.81537926668652},"location":"Right Knee"},{"euler":{"heading":18.43783441632247,"pitch":-128.02242268055352,"roll":59.45637062696737},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.549"} +{"sensors":[{"euler":{"heading":118.40012673294333,"pitch":138.77381977710917,"roll":28.757209712974877},"location":"Left Knee"},{"euler":{"heading":46.40073681056255,"pitch":109.20931888644428,"roll":37.37714733400763},"location":"Left Ankle"},{"euler":{"heading":25.78183220106702,"pitch":3.3665521888533507,"roll":7.75701317415452},"location":"Right Ankle"},{"euler":{"heading":45.8520365264221,"pitch":-154.4601198358157,"roll":59.1703567604147},"location":"Right Hip"},{"euler":{"heading":98.87634641456907,"pitch":-120.3178194942978,"roll":-52.7128478871812},"location":"Right Knee"},{"euler":{"heading":18.354907242052498,"pitch":-127.1760550432325,"roll":58.84815346451758},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.650"} +{"sensors":[{"euler":{"heading":128.4500794338656,"pitch":139.75253062646917,"roll":29.832625608830845},"location":"Left Knee"},{"euler":{"heading":45.11535110952963,"pitch":108.74350892173655,"roll":35.843052219465754},"location":"Left Ankle"},{"euler":{"heading":23.77957914529586,"pitch":2.838222897109154,"roll":7.328283483252133},"location":"Right Ankle"},{"euler":{"heading":46.21780120637279,"pitch":-155.1714057279746,"roll":59.87947980230474},"location":"Right Hip"},{"euler":{"heading":100.63286728155332,"pitch":-92.76078600909389,"roll":-53.768702448854526},"location":"Right Knee"},{"euler":{"heading":18.483201713981824,"pitch":-126.51721396087532,"roll":58.482097812661834},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.750"} +{"sensors":[{"euler":{"heading":137.70750793795224,"pitch":139.82957896090224,"roll":30.651164261663194},"location":"Left Knee"},{"euler":{"heading":45.014127922388134,"pitch":108.53009514171667,"roll":35.001856901370694},"location":"Left Ankle"},{"euler":{"heading":20.731098625305187,"pitch":2.2115182121118586,"roll":6.857102405508703},"location":"Right Ankle"},{"euler":{"heading":47.19505399552975,"pitch":-154.97079607639174,"roll":59.90283491043635},"location":"Right Hip"},{"euler":{"heading":103.12342409659433,"pitch":-69.18659660796219,"roll":-54.183095241445535},"location":"Right Knee"},{"euler":{"heading":18.962803467617466,"pitch":-126.14696711853446,"roll":58.54325388146707},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.851"} +{"sensors":[{"euler":{"heading":145.81661265567456,"pitch":139.35827471843692,"roll":31.24915184575853},"location":"Left Knee"},{"euler":{"heading":45.579285018348266,"pitch":108.42021673528937,"roll":34.662797509536794},"location":"Left Ankle"},{"euler":{"heading":19.465684786048502,"pitch":1.5849757751177513,"roll":6.823133045036512},"location":"Right Ankle"},{"euler":{"heading":48.304383507403784,"pitch":-154.33742577123422,"roll":59.35321845926226},"location":"Right Hip"},{"euler":{"heading":103.70014361883298,"pitch":-45.75621001692892,"roll":-54.635357916192774},"location":"Right Knee"},{"euler":{"heading":19.59925847176515,"pitch":-126.40052589020388,"roll":58.88991273377439},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.951"} +{"sensors":[{"euler":{"heading":152.9497992666898,"pitch":138.49185033683594,"roll":31.677294902404036},"location":"Left Knee"},{"euler":{"heading":47.0646279419152,"pitch":108.56454826403426,"roll":35.01592066914755},"location":"Left Ankle"},{"euler":{"heading":20.468805832557067,"pitch":0.958580135967231,"roll":7.238293331361616},"location":"Right Ankle"},{"euler":{"heading":49.35538868200502,"pitch":-153.72863300860382,"roll":58.27918917695534},"location":"Right Hip"},{"euler":{"heading":101.50886311796194,"pitch":-55.470257100052734,"roll":-54.75327883525499},"location":"Right Knee"},{"euler":{"heading":20.500886821301133,"pitch":-127.55148803148153,"roll":59.364119022603546},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.52"} +{"sensors":[{"euler":{"heading":159.43848319697827,"pitch":137.27978229119245,"roll":31.76150000482429},"location":"Left Knee"},{"euler":{"heading":48.73266848337665,"pitch":108.86161893330025,"roll":35.698116889785474},"location":"Left Ankle"},{"euler":{"heading":23.12131499683259,"pitch":0.8555046153026206,"roll":7.875555119843326},"location":"Right Ankle"},{"euler":{"heading":49.74032596018408,"pitch":-153.43934534277525,"roll":57.18842078984487},"location":"Right Hip"},{"euler":{"heading":97.4138109890693,"pitch":-62.64907581113137,"roll":-53.55795958473726},"location":"Right Knee"},{"euler":{"heading":21.54829512468349,"pitch":-129.19938647168388,"roll":59.971575716205464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.152"} +{"sensors":[{"euler":{"heading":131.15447712673094,"pitch":135.83223898569463,"roll":31.338289075966735},"location":"Left Knee"},{"euler":{"heading":50.74055147859657,"pitch":109.49309463891993,"roll":36.90400483545304},"location":"Left Ankle"},{"euler":{"heading":26.226599897767045,"pitch":1.035718405054188,"roll":8.345181783404584},"location":"Right Ankle"},{"euler":{"heading":49.18155196213477,"pitch":-153.45700573383968,"roll":56.4392241727479},"location":"Right Hip"},{"euler":{"heading":93.34734986770503,"pitch":-69.02015763993072,"roll":-51.846142286958674},"location":"Right Knee"},{"euler":{"heading":22.554544589085143,"pitch":-131.16020798517124,"roll":60.681771433782146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.253"} +{"sensors":[{"euler":{"heading":108.85168817324417,"pitch":134.36186990501034,"roll":30.117047473656086},"location":"Left Knee"},{"euler":{"heading":53.16343917878562,"pitch":110.90278982815944,"roll":38.98210402615949},"location":"Left Ankle"},{"euler":{"heading":27.71093902311995,"pitch":1.5852344635776674,"roll":8.675010254277915},"location":"Right Ankle"},{"euler":{"heading":48.385145888837,"pitch":-153.59189236705274,"roll":55.9991072686385},"location":"Right Hip"},{"euler":{"heading":91.77754700333548,"pitch":-75.7126584790781,"roll":-50.82034885705971},"location":"Right Knee"},{"euler":{"heading":23.408187088657165,"pitch":-133.01774065544114,"roll":61.395753485944844},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.354"} +{"sensors":[{"euler":{"heading":92.02895340358634,"pitch":132.93029942565508,"roll":27.953711466309848},"location":"Left Knee"},{"euler":{"heading":56.63362388490541,"pitch":114.99051894259735,"roll":41.79593755613942},"location":"Left Ankle"},{"euler":{"heading":28.15936959292834,"pitch":2.243001152554436,"roll":8.824831066676998},"location":"Right Ankle"},{"euler":{"heading":47.87573684958261,"pitch":-153.60693234688688,"roll":56.02891873486555},"location":"Right Hip"},{"euler":{"heading":93.2924340246086,"pitch":-82.36901140622379,"roll":-50.403430602086544},"location":"Right Knee"},{"euler":{"heading":22.989430800957876,"pitch":-131.1432807286153,"roll":61.578083892018185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.455"} +{"sensors":[{"euler":{"heading":78.42098517766308,"pitch":132.18187547304962,"roll":25.90698312976869},"location":"Left Knee"},{"euler":{"heading":58.51186749382107,"pitch":116.72745099261182,"roll":44.39561299633184},"location":"Left Ankle"},{"euler":{"heading":28.16388028825878,"pitch":2.8857602661975346,"roll":8.793931530771353},"location":"Right Ankle"},{"euler":{"heading":47.22082098017786,"pitch":-153.69188535429421,"roll":56.53151908858959},"location":"Right Hip"},{"euler":{"heading":94.2533924033117,"pitch":-88.92725665984719,"roll":-50.46612453937977},"location":"Right Knee"},{"euler":{"heading":21.629906006778153,"pitch":-129.58981618271076,"roll":60.999906523146954},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.556"} +{"sensors":[{"euler":{"heading":64.88283669784578,"pitch":132.50940247738464,"roll":25.33913642204206},"location":"Left Knee"},{"euler":{"heading":57.42789064570434,"pitch":115.76051066798428,"roll":44.797933169372996},"location":"Left Ankle"},{"euler":{"heading":27.81085518326752,"pitch":3.520884713954242,"roll":8.664901066615412},"location":"Right Ankle"},{"euler":{"heading":46.80348273470583,"pitch":-153.67957758059475,"roll":57.23006724898273},"location":"Right Hip"},{"euler":{"heading":95.69420791186894,"pitch":-95.3788908595717,"roll":-50.77850298628389},"location":"Right Knee"},{"euler":{"heading":19.999486828262874,"pitch":-127.9106407147184,"roll":60.0129941918663},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.656"} +{"sensors":[{"euler":{"heading":84.1605015540969,"pitch":134.1791397281931,"roll":26.31163321200642},"location":"Left Knee"},{"euler":{"heading":53.52606062242787,"pitch":114.16616818974936,"roll":42.617390654789396},"location":"Left Ankle"},{"euler":{"heading":27.07590054146916,"pitch":4.149100747479768,"roll":8.494636845024951},"location":"Right Ankle"},{"euler":{"heading":46.5866180956217,"pitch":-153.71005774222922,"roll":57.94540035880967},"location":"Right Hip"},{"euler":{"heading":97.48631276042492,"pitch":-101.88863344157576,"roll":-51.293033472522986},"location":"Right Knee"},{"euler":{"heading":18.795298154923515,"pitch":-126.3733608264519,"roll":59.12590716837684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.757"} +{"sensors":[{"euler":{"heading":94.22564653113503,"pitch":136.569948919234,"roll":27.691027181609623},"location":"Left Knee"},{"euler":{"heading":49.21352863153517,"pitch":112.44405798118486,"roll":39.47899173165119},"location":"Left Ankle"},{"euler":{"heading":25.879589721863006,"pitch":4.574870360272147,"roll":8.293006533918511},"location":"Right Ankle"},{"euler":{"heading":46.53390102629731,"pitch":-153.96356019373462,"roll":58.68186706202547},"location":"Right Hip"},{"euler":{"heading":99.46498270695895,"pitch":-108.64120674538731,"roll":-52.061829990243375},"location":"Right Knee"},{"euler":{"heading":18.314660933548776,"pitch":-125.51739236320124,"roll":58.46589165712236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.858"} +{"sensors":[{"euler":{"heading":108.19230747669239,"pitch":137.97827837169942,"roll":28.850026746999124},"location":"Left Knee"},{"euler":{"heading":47.02012636693847,"pitch":111.43867707715982,"roll":37.37040575020383},"location":"Left Ankle"},{"euler":{"heading":23.936911895562684,"pitch":4.222920450052352,"roll":7.896525202799592},"location":"Right Ankle"},{"euler":{"heading":46.72260334487091,"pitch":-154.5021042608255,"roll":59.28287901751282},"location":"Right Hip"},{"euler":{"heading":101.23374818675083,"pitch":-81.86794250247982,"roll":-53.11421326655735},"location":"Right Knee"},{"euler":{"heading":18.063803085061558,"pitch":-124.90931648506347,"roll":58.04107402441484},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.958"} +{"sensors":[{"euler":{"heading":120.73996671660719,"pitch":138.45596928408875,"roll":29.643128296635474},"location":"Left Knee"},{"euler":{"heading":45.919771982360636,"pitch":110.612167288753,"roll":36.21150770803229},"location":"Left Ankle"},{"euler":{"heading":21.01450050743981,"pitch":3.3812626471358653,"roll":7.329673354613886},"location":"Right Ankle"},{"euler":{"heading":47.53109643559723,"pitch":-154.1630215342832,"roll":59.178681166453345},"location":"Right Hip"},{"euler":{"heading":103.40139365046944,"pitch":-59.15159178529551,"roll":-53.73949669911541},"location":"Right Knee"},{"euler":{"heading":18.10215856550372,"pitch":-124.55527895688267,"roll":58.01933093661486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.59"} +{"sensors":[{"euler":{"heading":131.30529645913165,"pitch":138.4482670868044,"roll":30.27755179685539},"location":"Left Knee"},{"euler":{"heading":45.500372932622724,"pitch":109.92967758257157,"roll":35.48984171179652},"location":"Left Ankle"},{"euler":{"heading":19.186437481733613,"pitch":2.5364331810969754,"roll":7.030774341843876},"location":"Right Ankle"},{"euler":{"heading":48.91247191688487,"pitch":-153.4102959339747,"roll":58.35906755706453},"location":"Right Hip"},{"euler":{"heading":103.89801824756316,"pitch":-37.08007904740678,"roll":-54.35286254608314},"location":"Right Knee"},{"euler":{"heading":18.454610602618107,"pitch":-125.00780926404366,"roll":58.261249709567615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.160"} +{"sensors":[{"euler":{"heading":140.5031452040067,"pitch":137.9716182356843,"roll":30.750555566981657},"location":"Left Knee"},{"euler":{"heading":45.810953287730534,"pitch":109.40723459339847,"roll":35.24705039391677},"location":"Left Ankle"},{"euler":{"heading":20.13314290782811,"pitch":1.902764838989273,"roll":7.229987403767087},"location":"Right Ankle"},{"euler":{"heading":49.93057980604988,"pitch":-152.75889984868678,"roll":57.24286524249888},"location":"Right Hip"},{"euler":{"heading":101.93842149070494,"pitch":-48.053445243179766,"roll":-54.527382299143355},"location":"Right Knee"},{"euler":{"heading":19.09397109509284,"pitch":-126.00587813721013,"roll":58.68229644336224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.261"} +{"sensors":[{"euler":{"heading":148.83695023068952,"pitch":137.12413902523747,"roll":30.839682336581202},"location":"Left Knee"},{"euler":{"heading":46.65978690530547,"pitch":109.1960825050717,"roll":35.467307365715975},"location":"Left Ankle"},{"euler":{"heading":23.01294317445095,"pitch":1.923904942173955,"roll":7.499429954099544},"location":"Right Ankle"},{"euler":{"heading":50.13400282467071,"pitch":-152.53213155264405,"roll":56.2150056763721},"location":"Right Hip"},{"euler":{"heading":98.2411575249564,"pitch":-56.28261265148286,"roll":-53.43678622198875},"location":"Right Knee"},{"euler":{"heading":19.766111457986845,"pitch":-127.42030225000754,"roll":59.19408790707407},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.361"} +{"sensors":[{"euler":{"heading":122.0934538352683,"pitch":135.994612440485,"roll":30.510104689008354},"location":"Left Knee"},{"euler":{"heading":48.08608378112447,"pitch":109.36173471374923,"roll":36.21952603483303},"location":"Left Ankle"},{"euler":{"heading":26.102193322329267,"pitch":1.937088786661298,"roll":7.969163497083963},"location":"Right Ankle"},{"euler":{"heading":49.37904268833394,"pitch":-152.67176242867504,"roll":55.52867880220624},"location":"Right Hip"},{"euler":{"heading":94.345826918521,"pitch":-63.08094251618959,"roll":-51.85540224119148},"location":"Right Knee"},{"euler":{"heading":20.60777932590511,"pitch":-129.27092891525334,"roll":59.82960916914748},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.462"} +{"sensors":[{"euler":{"heading":101.11743090335315,"pitch":134.71688375886342,"roll":29.492495850759084},"location":"Left Knee"},{"euler":{"heading":50.08627717112704,"pitch":110.11805066122926,"roll":37.75036896806422},"location":"Left Ankle"},{"euler":{"heading":27.947957589675347,"pitch":2.198721445642344,"roll":8.263416898341235},"location":"Right Ankle"},{"euler":{"heading":48.505233926196084,"pitch":-152.8932358518385,"roll":55.1395057275776},"location":"Right Hip"},{"euler":{"heading":92.26216169414008,"pitch":-69.92223742861796,"roll":-50.75143922933999},"location":"Right Knee"},{"euler":{"heading":21.635818590602,"pitch":-131.32006923805255,"roll":60.53547328660716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.563"} +{"sensors":[{"euler":{"heading":85.32159762555085,"pitch":133.68555038993165,"roll":27.43613320018139},"location":"Left Knee"},{"euler":{"heading":53.26386800675018,"pitch":112.93084228326454,"roll":40.485175435941315},"location":"Left Ankle"},{"euler":{"heading":28.76366636212998,"pitch":2.334396084774889,"roll":8.345374925434266},"location":"Right Ankle"},{"euler":{"heading":47.73030719074172,"pitch":-153.1412040934032,"roll":55.22730548762427},"location":"Right Hip"},{"euler":{"heading":91.76295633373246,"pitch":-76.63594173160891,"roll":-50.34107608786793},"location":"Right Knee"},{"euler":{"heading":21.3360769530495,"pitch":-131.82470037378081,"roll":60.65100504795417},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.664"} +{"sensors":[{"euler":{"heading":73.0895329046814,"pitch":132.871228687608,"roll":25.24838997274641},"location":"Left Knee"},{"euler":{"heading":55.77649629497895,"pitch":115.1966378426973,"roll":43.381950485344944},"location":"Left Ankle"},{"euler":{"heading":29.164028970264106,"pitch":2.4868912223285666,"roll":8.306575854289798},"location":"Right Ankle"},{"euler":{"heading":46.739079569477376,"pitch":-153.55583422126458,"roll":55.818049766523274},"location":"Right Hip"},{"euler":{"heading":92.22816775096679,"pitch":-83.16284878634283,"roll":-50.40375617470677},"location":"Right Knee"},{"euler":{"heading":19.966985687088297,"pitch":-130.12318180374672,"roll":60.23235977874344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.764"} +{"sensors":[{"euler":{"heading":61.45086270173942,"pitch":132.87158743341024,"roll":24.273512662090774},"location":"Left Knee"},{"euler":{"heading":55.901608613097544,"pitch":114.34558960363802,"roll":44.42171817013959},"location":"Left Ankle"},{"euler":{"heading":29.08161921013562,"pitch":2.5238100400574335,"roll":8.099053618360346},"location":"Right Ankle"},{"euler":{"heading":46.2841819341581,"pitch":-153.80022591904955,"roll":56.59635715536598},"location":"Right Hip"},{"euler":{"heading":93.1382147293176,"pitch":-89.42560274936348,"roll":-50.8707000548504},"location":"Right Knee"},{"euler":{"heading":18.400077183415437,"pitch":-128.45272329312778,"roll":59.223335492806065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.865"} +{"sensors":[{"euler":{"heading":81.86764676102322,"pitch":134.23338751546166,"roll":25.103619099071924},"location":"Left Knee"},{"euler":{"heading":52.73413124959985,"pitch":112.8204431879825,"roll":42.64557241499726},"location":"Left Ankle"},{"euler":{"heading":28.639587808363125,"pitch":2.4620920348882755,"roll":7.92910784279377},"location":"Right Ankle"},{"euler":{"heading":46.13763393732142,"pitch":-154.14622133630584,"roll":57.41953426552582},"location":"Right Hip"},{"euler":{"heading":94.24007865775687,"pitch":-95.59201855305261,"roll":-51.5667100869955},"location":"Right Knee"},{"euler":{"heading":17.25383628883269,"pitch":-126.85793271655817,"roll":58.3459664132963},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.966"} +{"sensors":[{"euler":{"heading":96.61104509892705,"pitch":136.5417471570601,"roll":26.687104798811042},"location":"Left Knee"},{"euler":{"heading":48.44024626668398,"pitch":111.08960305762243,"roll":39.2310088566247},"location":"Left Ankle"},{"euler":{"heading":27.641505064113822,"pitch":2.5132604885959937,"roll":7.638586069724442},"location":"Right Ankle"},{"euler":{"heading":46.16627328829469,"pitch":-154.69117096499207,"roll":58.24764102231283},"location":"Right Hip"},{"euler":{"heading":95.73681440017229,"pitch":-102.15877559064404,"roll":-52.464051062648835},"location":"Right Knee"},{"euler":{"heading":17.010896489302393,"pitch":-125.85479924246471,"roll":57.718525616790686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.67"} +{"sensors":[{"euler":{"heading":109.69362583699746,"pitch":138.3451494938533,"roll":28.03672723353502},"location":"Left Knee"},{"euler":{"heading":45.49516746843112,"pitch":110.08821319268827,"roll":36.38501301342133},"location":"Left Ankle"},{"euler":{"heading":25.98598762930866,"pitch":2.2860773941575814,"roll":7.120051928543659},"location":"Right Ankle"},{"euler":{"heading":46.362137078639236,"pitch":-155.6182897613549,"roll":59.09209910911776},"location":"Right Hip"},{"euler":{"heading":97.43796459974584,"pitch":-109.41478335607829,"roll":-53.47817300655001},"location":"Right Knee"},{"euler":{"heading":17.311383487375853,"pitch":-125.18490107117898,"roll":57.34696523180944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.168"} +{"sensors":[{"euler":{"heading":121.5352370923371,"pitch":138.9960275561067,"roll":29.168787321745356},"location":"Left Knee"},{"euler":{"heading":44.68897322616396,"pitch":109.40205684608489,"roll":35.12365530193359},"location":"Left Ankle"},{"euler":{"heading":23.025218705157464,"pitch":1.5513726923950446,"roll":6.502210616601534},"location":"Right Ankle"},{"euler":{"heading":47.19432989749277,"pitch":-155.8032326098111,"roll":59.46978318652727},"location":"Right Hip"},{"euler":{"heading":99.40161405535427,"pitch":-83.59647309865633,"roll":-54.21746744771039},"location":"Right Knee"},{"euler":{"heading":17.414734529957858,"pitch":-124.78086737306042,"roll":57.20694465307355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.269"} +{"sensors":[{"euler":{"heading":131.86728335906852,"pitch":139.00235074217915,"roll":30.038582281451074},"location":"Left Knee"},{"euler":{"heading":44.55204933274749,"pitch":108.88224129970912,"roll":34.27360422156073},"location":"Left Ankle"},{"euler":{"heading":20.30367896550656,"pitch":0.7438693355815504,"roll":6.056102257739909},"location":"Right Ankle"},{"euler":{"heading":48.452423307304514,"pitch":-155.01933355911777,"roll":59.08026725333317},"location":"Right Hip"},{"euler":{"heading":101.17591669646602,"pitch":-60.109276172831684,"roll":-54.69024140897401},"location":"Right Knee"},{"euler":{"heading":17.82635016992477,"pitch":-124.91467319265702,"roll":57.39534482691887},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.369"} +{"sensors":[{"euler":{"heading":140.79088554225558,"pitch":138.55028374666549,"roll":30.694841293994067},"location":"Left Knee"},{"euler":{"heading":45.082029421812855,"pitch":108.53672462797726,"roll":33.956257566404155},"location":"Left Ankle"},{"euler":{"heading":19.77564318203017,"pitch":0.07263275018835558,"roll":6.050765534826569},"location":"Right Ankle"},{"euler":{"heading":49.98789996393395,"pitch":-154.01273746307655,"roll":58.05003892141097},"location":"Right Hip"},{"euler":{"heading":100.98186354775427,"pitch":-70.33670105745594,"roll":-55.1834411675495},"location":"Right Knee"},{"euler":{"heading":18.466591294753332,"pitch":-125.64217212414773,"roll":57.773909216392},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.469"} +{"sensors":[{"euler":{"heading":148.9120283992715,"pitch":137.61208720897122,"roll":31.092478566160082},"location":"Left Knee"},{"euler":{"heading":46.18185099319156,"pitch":108.44405158592524,"roll":34.04365286902588},"location":"Left Ankle"},{"euler":{"heading":21.14471626960409,"pitch":-0.4039557384525541,"roll":6.592904770571385},"location":"Right Ankle"},{"euler":{"heading":50.86464688396318,"pitch":-153.5061746631016,"roll":56.79676436753726},"location":"Right Hip"},{"euler":{"heading":98.11191276550478,"pitch":-76.79694834340431,"roll":-54.601187114502174},"location":"Right Knee"},{"euler":{"heading":19.29997602428458,"pitch":-126.88905323253408,"roll":58.282931311474044},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.570"} +{"sensors":[{"euler":{"heading":121.95278729843886,"pitch":136.39452747086608,"roll":31.053955011540566},"location":"Left Knee"},{"euler":{"heading":47.748258147357824,"pitch":108.56233451963789,"roll":34.72915607957736},"location":"Left Ankle"},{"euler":{"heading":24.132538410797594,"pitch":-0.3655294802391936,"roll":7.226160436691845},"location":"Right Ankle"},{"euler":{"heading":49.269801638197805,"pitch":-153.27372030076603,"roll":55.94213691808804},"location":"Right Hip"},{"euler":{"heading":94.29350921937736,"pitch":-81.57250972902776,"roll":-53.08145355735918},"location":"Right Knee"},{"euler":{"heading":20.214217527105948,"pitch":-128.53456663636157,"roll":58.969454409354064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.671"} +{"sensors":[{"euler":{"heading":100.4612303030503,"pitch":135.0490303956304,"roll":30.484018319697135},"location":"Left Knee"},{"euler":{"heading":49.6431972980461,"pitch":108.94879525738591,"roll":35.99748938268639},"location":"Left Ankle"},{"euler":{"heading":26.68597945104411,"pitch":0.26377224688680967,"roll":7.6267637850134165},"location":"Right Ankle"},{"euler":{"heading":48.451459319502774,"pitch":-153.33686229301424,"roll":55.525524296986404},"location":"Right Hip"},{"euler":{"heading":91.35725441389732,"pitch":-86.53588943169606,"roll":-51.49225346246121},"location":"Right Knee"},{"euler":{"heading":21.25411754374031,"pitch":-130.82022192822788,"roll":59.727414126258076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.772"} +{"sensors":[{"euler":{"heading":83.7676536877771,"pitch":133.98610162403733,"roll":28.88625082198407},"location":"Left Knee"},{"euler":{"heading":51.56338047579246,"pitch":110.30919624531522,"roll":38.34017941314245},"location":"Left Ankle"},{"euler":{"heading":27.754141272261844,"pitch":0.8748288493760032,"roll":7.87035361813522},"location":"Right Ankle"},{"euler":{"heading":47.93597952174356,"pitch":-153.3167089088827,"roll":55.41608076279287},"location":"Right Hip"},{"euler":{"heading":90.41559786430771,"pitch":-91.68705717182159,"roll":-50.57741297545568},"location":"Right Knee"},{"euler":{"heading":21.600235392599576,"pitch":-132.12150975246547,"roll":60.252749677617345},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.873"} +{"sensors":[{"euler":{"heading":71.88256369100506,"pitch":132.614057642779,"roll":26.67947145662984},"location":"Left Knee"},{"euler":{"heading":54.90138072676925,"pitch":113.94209347839664,"roll":41.22696592069025},"location":"Left Ankle"},{"euler":{"heading":28.165017009182133,"pitch":1.510993046781251,"roll":7.876740912481128},"location":"Right Ankle"},{"euler":{"heading":47.020444694110296,"pitch":-153.4887224581058,"roll":55.78078203166834},"location":"Right Hip"},{"euler":{"heading":90.94659288038811,"pitch":-96.85357162876844,"roll":-50.21333061422265},"location":"Right Knee"},{"euler":{"heading":20.896715243416985,"pitch":-130.63551485377667,"roll":60.28815996054525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.974"} +{"sensors":[{"euler":{"heading":61.5268076935648,"pitch":132.27621599868337,"roll":25.080947418421168},"location":"Left Knee"},{"euler":{"heading":56.231439084190455,"pitch":114.22703129041577,"roll":43.14354609291087},"location":"Left Ankle"},{"euler":{"heading":28.19823092463025,"pitch":2.1104234048057,"roll":7.763614463325698},"location":"Right Ankle"},{"euler":{"heading":46.47294623726613,"pitch":-153.55519361734227,"roll":56.48534550140717},"location":"Right Hip"},{"euler":{"heading":92.21965939397242,"pitch":-101.926957410258,"roll":-50.31194370878602},"location":"Right Knee"},{"euler":{"heading":19.422932263214193,"pitch":-128.88064887794985,"roll":59.517585312856625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.75"} +{"sensors":[{"euler":{"heading":73.915555761126,"pitch":134.7945326388442,"roll":25.24566122281296},"location":"Left Knee"},{"euler":{"heading":54.01489837472954,"pitch":113.03420935355548,"roll":42.31538413673965},"location":"Left Ankle"},{"euler":{"heading":28.01139536785275,"pitch":2.6290517660715595,"roll":7.595850774931152},"location":"Right Ankle"},{"euler":{"heading":46.36948294145846,"pitch":-153.57372455931232,"roll":57.33097319286123},"location":"Right Hip"},{"euler":{"heading":93.7555053963562,"pitch":-106.98147175853049,"roll":-50.698441621874885},"location":"Right Knee"},{"euler":{"heading":18.05567706428312,"pitch":-127.21542539255913,"roll":58.54088206007071},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.176"} +{"sensors":[{"euler":{"heading":90.61712344438213,"pitch":136.85331822214744,"roll":26.583768165075472},"location":"Left Knee"},{"euler":{"heading":49.86943667654074,"pitch":111.47922990041681,"roll":39.390018430217},"location":"Left Ankle"},{"euler":{"heading":27.305501009240196,"pitch":3.1161815676798263,"roll":7.3548659799238285},"location":"Right Ankle"},{"euler":{"heading":46.33827507656309,"pitch":-153.76885197572435,"roll":58.167504307453854},"location":"Right Hip"},{"euler":{"heading":95.71460072372257,"pitch":-112.33995642936776,"roll":-51.35732994771445},"location":"Right Knee"},{"euler":{"heading":17.32261499754682,"pitch":-125.98209031266143,"roll":57.799775011354406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.276"} +{"sensors":[{"euler":{"heading":103.98913811708012,"pitch":138.8411134471886,"roll":27.943220479247557},"location":"Left Knee"},{"euler":{"heading":46.617824552695026,"pitch":110.30403474425871,"roll":36.6715842174073},"location":"Left Ankle"},{"euler":{"heading":25.93084425854733,"pitch":3.331051494959852,"roll":6.928719077827869},"location":"Right Ankle"},{"euler":{"heading":46.4137923404979,"pitch":-154.37348006101686,"roll":59.084983770796484},"location":"Right Hip"},{"euler":{"heading":97.7467679850325,"pitch":-118.21130857471812,"roll":-52.27458818470859},"location":"Right Knee"},{"euler":{"heading":17.23962634188623,"pitch":-125.329810131239,"roll":57.33130617232812},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.377"} +{"sensors":[{"euler":{"heading":116.67415893926858,"pitch":139.65289874012808,"roll":29.00094107667642},"location":"Left Knee"},{"euler":{"heading":45.43578969843495,"pitch":109.63896554684892,"roll":35.281896220313136},"location":"Left Ankle"},{"euler":{"heading":23.74701205686219,"pitch":2.865552790557503,"roll":6.531218751368913},"location":"Right Ankle"},{"euler":{"heading":46.873961404414764,"pitch":-154.76006964083643,"roll":59.748719458054694},"location":"Right Hip"},{"euler":{"heading":99.68418846777044,"pitch":-90.88440993310958,"roll":-53.27700622448537},"location":"Right Knee"},{"euler":{"heading":17.17762062897489,"pitch":-124.70985151316688,"roll":57.07386900869914},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.478"} +{"sensors":[{"euler":{"heading":128.01188934138415,"pitch":139.69186202803215,"roll":29.767796240606422},"location":"Left Knee"},{"euler":{"heading":45.306229226808306,"pitch":109.23930146434083,"roll":34.50597210344153},"location":"Left Ankle"},{"euler":{"heading":20.704432728898347,"pitch":1.8022413905352341,"roll":5.975335460845953},"location":"Right Ankle"},{"euler":{"heading":47.89878586184699,"pitch":-154.34888554083165,"roll":59.71316942375039},"location":"Right Hip"},{"euler":{"heading":101.39539770120543,"pitch":-67.06661246353384,"roll":-54.08894440427197},"location":"Right Knee"},{"euler":{"heading":17.459787645929307,"pitch":-124.57098325181806,"roll":57.19169368515654},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.578"} +{"sensors":[{"euler":{"heading":137.8243429791014,"pitch":139.1920412499017,"roll":30.402251290550527},"location":"Left Knee"},{"euler":{"heading":45.889800938572,"pitch":109.02034277956221,"roll":34.27948231779296},"location":"Left Ankle"},{"euler":{"heading":19.455741394467804,"pitch":0.8222414817293052,"roll":5.733924060558013},"location":"Right Ankle"},{"euler":{"heading":49.3621683077351,"pitch":-153.56064376251277,"roll":58.920001707607476},"location":"Right Hip"},{"euler":{"heading":101.31615235271133,"pitch":-77.38132999625262,"roll":-54.81770172033216},"location":"Right Knee"},{"euler":{"heading":18.166450300819072,"pitch":-125.11119927708404,"roll":57.58963037210121},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.678"} +{"sensors":[{"euler":{"heading":146.5305890524668,"pitch":138.26414127432537,"roll":30.792049316926644},"location":"Left Knee"},{"euler":{"heading":46.938378350059125,"pitch":109.03029828949346,"roll":34.389638659491524},"location":"Left Ankle"},{"euler":{"heading":20.591460962112585,"pitch":0.0722060632624405,"roll":6.252695046437322},"location":"Right Ankle"},{"euler":{"heading":50.44147810224457,"pitch":-152.99007080493826,"roll":57.70882347576252},"location":"Right Hip"},{"euler":{"heading":98.58182322513917,"pitch":-83.52223063270053,"roll":-54.55561337158179},"location":"Right Knee"},{"euler":{"heading":19.042330291308197,"pitch":-126.33724544056943,"roll":58.11023666859013},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.779"} +{"sensors":[{"euler":{"heading":120.15744536278602,"pitch":137.0856251769849,"roll":30.728596302685283},"location":"Left Knee"},{"euler":{"heading":48.219069229569925,"pitch":109.20577539581468,"roll":34.89359730626278},"location":"Left Ankle"},{"euler":{"heading":23.423885342021634,"pitch":-0.006006224371552141,"roll":7.013438056337929},"location":"Right Ankle"},{"euler":{"heading":50.40369310051688,"pitch":-152.9256169349705,"roll":56.707983400816545},"location":"Right Hip"},{"euler":{"heading":94.4701856232216,"pitch":-87.8066827430267,"roll":-53.01643378673283},"location":"Right Knee"},{"euler":{"heading":20.003257482594115,"pitch":-127.94606989880391,"roll":58.795351406198414},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.880"} +{"sensors":[{"euler":{"heading":99.16362020981741,"pitch":135.7873483341701,"roll":30.14799218051405},"location":"Left Knee"},{"euler":{"heading":49.93357197551479,"pitch":109.6737162525551,"roll":36.01549138000052},"location":"Left Ankle"},{"euler":{"heading":26.37327393605256,"pitch":0.26210396035928407,"roll":7.493729679867876},"location":"Right Ankle"},{"euler":{"heading":49.42745087030573,"pitch":-153.1645596155876,"roll":56.23041030894546},"location":"Right Hip"},{"euler":{"heading":90.94900325126338,"pitch":-91.75492037186241,"roll":-51.30856723579788},"location":"Right Knee"},{"euler":{"heading":21.051657151791694,"pitch":-130.05583889457395,"roll":59.55798204079209},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.980"} +{"sensors":[{"euler":{"heading":83.06783572695977,"pitch":134.4163748231968,"roll":28.653532837426134},"location":"Left Knee"},{"euler":{"heading":51.943826327235215,"pitch":110.97110449256233,"roll":38.08893012458225},"location":"Left Ankle"},{"euler":{"heading":27.741855950979943,"pitch":0.6949600286513986,"roll":7.791591524798455},"location":"Right Ankle"},{"euler":{"heading":48.63405010702569,"pitch":-153.42239004571198,"roll":56.02418800992681},"location":"Right Hip"},{"euler":{"heading":91.09202455458667,"pitch":-96.14208934863814,"roll":-50.27445781305009},"location":"Right Knee"},{"euler":{"heading":21.83874196337775,"pitch":-131.54279943779378,"roll":60.218340957611396},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.81"} +{"sensors":[{"euler":{"heading":71.36306127831368,"pitch":133.1936509834171,"roll":26.41538298681121},"location":"Left Knee"},{"euler":{"heading":55.61122498480045,"pitch":114.9750452065066,"roll":41.02934323499793},"location":"Left Ankle"},{"euler":{"heading":28.345207645491403,"pitch":1.1817656191882864,"roll":7.900595979105572},"location":"Right Ankle"},{"euler":{"heading":47.62769597197285,"pitch":-153.77460052875975,"roll":56.31320720095291},"location":"Right Hip"},{"euler":{"heading":91.23291147189506,"pitch":-100.62917098191602,"roll":-49.89163157754609},"location":"Right Knee"},{"euler":{"heading":20.98498862562412,"pitch":-130.18914331393034,"roll":60.268914982541986},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.182"} +{"sensors":[{"euler":{"heading":60.94686168774949,"pitch":132.81256618366385,"roll":24.901433421847017},"location":"Left Knee"},{"euler":{"heading":56.71158855709391,"pitch":114.92985656829885,"roll":42.994448785599786},"location":"Left Ankle"},{"euler":{"heading":28.559801895100364,"pitch":1.6222638658911315,"roll":7.8505987025981065},"location":"Right Ankle"},{"euler":{"heading":46.999889457870715,"pitch":-154.00412740271645,"roll":56.92550661378875},"location":"Right Hip"},{"euler":{"heading":92.20439382352711,"pitch":-105.1234267813256,"roll":-49.97328380676546},"location":"Right Knee"},{"euler":{"heading":19.40603079771882,"pitch":-128.47079309048686,"roll":59.54178816617617},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.282"} +{"sensors":[{"euler":{"heading":82.50134542342195,"pitch":133.83515279925265,"roll":25.267528017335696},"location":"Left Knee"},{"euler":{"heading":54.26535685530166,"pitch":113.31940528307585,"roll":42.16857908471937},"location":"Left Ankle"},{"euler":{"heading":28.39662889756627,"pitch":2.038695674105272,"roll":7.745904336880159},"location":"Right Ankle"},{"euler":{"heading":46.824724704946874,"pitch":-154.05724255246983,"roll":57.646029706203976},"location":"Right Hip"},{"euler":{"heading":93.49330304378555,"pitch":-109.6836273811332,"roll":-50.344434255242135},"location":"Right Knee"},{"euler":{"heading":18.083455316174568,"pitch":-126.7137603388118,"roll":58.69357938754016},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.383"} +{"sensors":[{"euler":{"heading":97.4212369445029,"pitch":135.97330869804426,"roll":26.746242264370093},"location":"Left Knee"},{"euler":{"heading":50.05073057614768,"pitch":111.58866390004822,"roll":39.20367043105363},"location":"Left Ankle"},{"euler":{"heading":27.686328186102013,"pitch":2.4333503619168733,"roll":7.484700401069507},"location":"Right Ankle"},{"euler":{"heading":46.94883883978443,"pitch":-154.21826597259744,"roll":58.303958403279275},"location":"Right Hip"},{"euler":{"heading":95.13130065142462,"pitch":-114.49969493894532,"roll":-51.03105219605975},"location":"Right Knee"},{"euler":{"heading":17.45832064467168,"pitch":-125.5519273394982,"roll":58.02118132478998},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.483"} +{"sensors":[{"euler":{"heading":110.01812749995474,"pitch":138.0388694514746,"roll":28.06051270351027},"location":"Left Knee"},{"euler":{"heading":46.69492410802972,"pitch":110.46251192022342,"roll":36.38405640644065},"location":"Left Ankle"},{"euler":{"heading":26.290227595641202,"pitch":2.635885555120627,"roll":7.052148317696003},"location":"Right Ankle"},{"euler":{"heading":47.25854912452708,"pitch":-154.61962028026423,"roll":58.93497353011016},"location":"Right Hip"},{"euler":{"heading":96.88271752796472,"pitch":-119.91589920301976,"roll":-51.985292885743526},"location":"Right Knee"},{"euler":{"heading":17.380468515519844,"pitch":-124.93462107014163,"roll":57.543541843028144},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.584"} +{"sensors":[{"euler":{"heading":121.50961862569197,"pitch":139.01614775583,"roll":29.184364885794473},"location":"Left Knee"},{"euler":{"heading":45.231379887012814,"pitch":109.57428182734704,"roll":34.87308678008982},"location":"Left Ankle"},{"euler":{"heading":24.059110663279306,"pitch":1.8976319222125155,"roll":6.636961487015407},"location":"Right Ankle"},{"euler":{"heading":48.130451559931274,"pitch":-154.68553040954396,"roll":59.155190242434564},"location":"Right Hip"},{"euler":{"heading":98.37622882812138,"pitch":-92.18309391304645,"roll":-53.098464424453155},"location":"Right Knee"},{"euler":{"heading":17.31077796965224,"pitch":-124.41170785724286,"roll":57.361040699899284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.684"} +{"sensors":[{"euler":{"heading":131.73334614174235,"pitch":139.24647869913477,"roll":30.04078741107892},"location":"Left Knee"},{"euler":{"heading":44.687015317300066,"pitch":108.84188824424406,"roll":33.99336324670007},"location":"Left Ankle"},{"euler":{"heading":21.423712721273446,"pitch":1.0215188417169783,"roll":6.243433348342473},"location":"Right Ankle"},{"euler":{"heading":49.43889508323539,"pitch":-154.013898005222,"roll":58.64696724997732},"location":"Right Hip"},{"euler":{"heading":100.14013724175442,"pitch":-67.62939255648962,"roll":-53.85604268719668},"location":"Right Knee"},{"euler":{"heading":17.580707346159574,"pitch":-124.43199725568087,"roll":57.5110012678208},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.785"} +{"sensors":[{"euler":{"heading":140.31855413010416,"pitch":139.1397981253819,"roll":30.613602351261548},"location":"Left Knee"},{"euler":{"heading":44.69313358206881,"pitch":108.19699946646577,"roll":33.62538549468315},"location":"Left Ankle"},{"euler":{"heading":20.82946767220617,"pitch":0.4308864088515346,"roll":6.184604924334078},"location":"Right Ankle"},{"euler":{"heading":50.8253485138064,"pitch":-153.21590473701116,"roll":57.62228470579589},"location":"Right Hip"},{"euler":{"heading":100.03864354054147,"pitch":-77.05228729813743,"roll":-54.452376762447564},"location":"Right Knee"},{"euler":{"heading":17.968193838018387,"pitch":-125.01516085090749,"roll":57.89045446098146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.885"} +{"sensors":[{"euler":{"heading":148.0020968844892,"pitch":138.58547684587805,"roll":30.94167847099864},"location":"Left Knee"},{"euler":{"heading":45.155931897565864,"pitch":107.75614306632357,"roll":33.65507536264878},"location":"Left Ankle"},{"euler":{"heading":22.411867528539574,"pitch":0.15208606789102402,"roll":6.945879693983424},"location":"Right Ankle"},{"euler":{"heading":51.318481843821544,"pitch":-152.8029765126007,"roll":56.53455170285254},"location":"Right Hip"},{"euler":{"heading":97.35149586994035,"pitch":-82.90938678971054,"roll":-54.00506353982121},"location":"Right Knee"},{"euler":{"heading":18.58867804275317,"pitch":-126.02442097213554,"roll":58.43595265794448},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.986"} +{"sensors":[{"euler":{"heading":154.98302897670234,"pitch":137.73311218505685,"roll":30.82832014942584},"location":"Left Knee"},{"euler":{"heading":46.046167107982264,"pitch":107.48801986456472,"roll":34.16945620936145},"location":"Left Ankle"},{"euler":{"heading":25.550580164298914,"pitch":0.27436096788821746,"roll":7.509886800472482},"location":"Right Ankle"},{"euler":{"heading":50.9790954224518,"pitch":-152.76821058785595,"roll":55.76432029139273},"location":"Right Hip"},{"euler":{"heading":93.48657616022841,"pitch":-87.0975576235372,"roll":-52.45880188890022},"location":"Right Knee"},{"euler":{"heading":19.32265152098326,"pitch":-127.42519052819497,"roll":59.10791961018384},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.86"} +{"sensors":[{"euler":{"heading":127.1912547776832,"pitch":136.68834449541737,"roll":30.196612650865763},"location":"Left Knee"},{"euler":{"heading":47.46474640939813,"pitch":107.55455785787063,"roll":35.30078107198392},"location":"Left Ankle"},{"euler":{"heading":28.506999634841996,"pitch":0.5514730910183947,"roll":7.818102315765722},"location":"Right Ankle"},{"euler":{"heading":49.934261508236204,"pitch":-152.9567281510558,"roll":55.305169387789604},"location":"Right Hip"},{"euler":{"heading":90.1852420515747,"pitch":-90.75653226584755,"roll":-50.81587064432249},"location":"Right Knee"},{"euler":{"heading":20.226838891391495,"pitch":-129.4656019805659,"roll":59.8527078338573},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.186"} +{"sensors":[{"euler":{"heading":105.49959050908113,"pitch":135.67756186688243,"roll":28.66780175145506},"location":"Left Knee"},{"euler":{"heading":49.44673004266942,"pitch":108.54817972662511,"roll":37.51355026999365},"location":"Left Ankle"},{"euler":{"heading":29.726760525566313,"pitch":0.9449123280178268,"roll":7.877022472149412},"location":"Right Ankle"},{"euler":{"heading":49.41168986835582,"pitch":-152.97868030518043,"roll":54.98482010004173},"location":"Right Hip"},{"euler":{"heading":88.96844019813145,"pitch":-95.04247768102397,"roll":-49.858355484680466},"location":"Right Knee"},{"euler":{"heading":20.84828036939038,"pitch":-131.04438060967578,"roll":60.44935913676005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.287"} +{"sensors":[{"euler":{"heading":89.36749380729125,"pitch":134.4478285529842,"roll":26.55909133951796},"location":"Left Knee"},{"euler":{"heading":52.205129831004115,"pitch":111.2903287558817,"roll":40.25304811598694},"location":"Left Ankle"},{"euler":{"heading":30.416343413081155,"pitch":1.241472612061509,"roll":7.811431700787041},"location":"Right Ankle"},{"euler":{"heading":48.57358255487223,"pitch":-153.18879410630427,"roll":55.182459238411724},"location":"Right Hip"},{"euler":{"heading":89.08984200387391,"pitch":-99.17042579316644,"roll":-49.63401710321383},"location":"Right Knee"},{"euler":{"heading":19.965913988390092,"pitch":-129.79164430673754,"roll":60.44823103730108},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.387"} +{"sensors":[{"euler":{"heading":75.6413088996794,"pitch":134.1793072071369,"roll":25.025526221257046},"location":"Left Knee"},{"euler":{"heading":53.6254161874245,"pitch":111.36378148522867,"roll":42.16120191128563},"location":"Left Ankle"},{"euler":{"heading":30.790723283605608,"pitch":1.5692756984578333,"roll":7.585611632979164},"location":"Right Ankle"},{"euler":{"heading":48.22622373730827,"pitch":-153.170835081673,"roll":55.706125811318955},"location":"Right Hip"},{"euler":{"heading":89.90862789212073,"pitch":-103.35160123497158,"roll":-49.79962796542788},"location":"Right Knee"},{"euler":{"heading":18.571613598768053,"pitch":-128.1527232988883,"roll":59.68621087242681},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.488"} +{"sensors":[{"euler":{"heading":85.46654861159442,"pitch":135.21457007237893,"roll":25.320363422618417},"location":"Left Knee"},{"euler":{"heading":51.84541782993021,"pitch":110.08660750655405,"roll":41.39675883151249},"location":"Left Ankle"},{"euler":{"heading":30.72865603968871,"pitch":1.907513695200779,"roll":7.422889834865315},"location":"Right Ankle"},{"euler":{"heading":48.04287694680309,"pitch":-153.13674848498854,"roll":56.39400971677734},"location":"Right Hip"},{"euler":{"heading":91.23303272091033,"pitch":-107.71173752857331,"roll":-50.22891456559227},"location":"Right Knee"},{"euler":{"heading":17.33483704197304,"pitch":-126.38432975811439,"roll":58.76481081896979},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.588"} +{"sensors":[{"euler":{"heading":99.53998607711232,"pitch":137.36419639349967,"roll":26.877286012466502},"location":"Left Knee"},{"euler":{"heading":48.04550591707241,"pitch":108.62176860653622,"roll":38.5112148270501},"location":"Left Ankle"},{"euler":{"heading":30.095195301137686,"pitch":2.2849205203745337,"roll":7.1745767055041245},"location":"Right Ankle"},{"euler":{"heading":47.99976833238476,"pitch":-153.21291991037393,"roll":57.147255487114414},"location":"Right Hip"},{"euler":{"heading":93.04872678459424,"pitch":-112.40027965036224,"roll":-50.96219315356403},"location":"Right Knee"},{"euler":{"heading":16.65510297617356,"pitch":-125.09925581896357,"roll":58.067800949041924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.688"} +{"sensors":[{"euler":{"heading":111.66972266686759,"pitch":139.25583190993984,"roll":28.238544001448584},"location":"Left Knee"},{"euler":{"heading":45.094665502582735,"pitch":107.81351415581622,"roll":35.82881427938606},"location":"Left Ankle"},{"euler":{"heading":28.809573657485732,"pitch":2.5075203982846923,"roll":6.676400192526054},"location":"Right Ankle"},{"euler":{"heading":48.07148658324292,"pitch":-153.66234522275514,"roll":58.03098927151341},"location":"Right Hip"},{"euler":{"heading":94.81484455738013,"pitch":-117.40382394442692,"roll":-51.90514813136538},"location":"Right Knee"},{"euler":{"heading":16.704958843732967,"pitch":-124.49528335459759,"roll":57.5678908563193},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.789"} +{"sensors":[{"euler":{"heading":123.09975524782587,"pitch":139.96871406475913,"roll":29.351406277975983},"location":"Left Knee"},{"euler":{"heading":44.11728504178738,"pitch":107.35562899732842,"roll":34.436060400977745},"location":"Left Ankle"},{"euler":{"heading":26.78187761084159,"pitch":2.0133444882498797,"roll":6.189940835734463},"location":"Right Ankle"},{"euler":{"heading":48.510709096535734,"pitch":-154.09280021785617,"roll":58.67607995041955},"location":"Right Hip"},{"euler":{"heading":96.45713501064783,"pitch":-89.17870678110718,"roll":-53.06161527926717},"location":"Right Knee"},{"euler":{"heading":16.93603061753494,"pitch":-124.11523233723159,"roll":57.32956574660014},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.890"} +{"sensors":[{"euler":{"heading":133.47530103378713,"pitch":139.86467459968827,"roll":30.19788431145192},"location":"Left Knee"},{"euler":{"heading":44.30987336201401,"pitch":107.23262020235669,"roll":33.70492450505586},"location":"Left Ankle"},{"euler":{"heading":23.748236243477148,"pitch":1.0132634141310544,"roll":5.6843575034447245},"location":"Right Ankle"},{"euler":{"heading":49.63134338605736,"pitch":-153.63212922500233,"roll":58.463135207305825},"location":"Right Hip"},{"euler":{"heading":98.24773871023555,"pitch":-64.9226881322827,"roll":-54.03078458085661},"location":"Right Knee"},{"euler":{"heading":17.493841005967933,"pitch":-123.94969287193774,"roll":57.50630159748555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.990"} +{"sensors":[{"euler":{"heading":142.23832542419916,"pitch":139.42570403846298,"roll":30.755755421225604},"location":"Left Knee"},{"euler":{"heading":44.913462539830924,"pitch":107.1510391475252,"roll":33.60219677077589},"location":"Left Ankle"},{"euler":{"heading":22.215543227873937,"pitch":0.11426028177829772,"roll":5.423062897759102},"location":"Right Ankle"},{"euler":{"heading":51.40504181503232,"pitch":-152.83477983650792,"roll":57.568900516715956},"location":"Right Hip"},{"euler":{"heading":98.17999369522653,"pitch":-74.91221391718922,"roll":-54.8661445748901},"location":"Right Knee"},{"euler":{"heading":18.218114385285894,"pitch":-124.60846217213245,"roll":57.8862018464077},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.91"} +{"sensors":[{"euler":{"heading":149.83559705689228,"pitch":138.7074439059648,"roll":31.064363933642067},"location":"Left Knee"},{"euler":{"heading":45.81790692481143,"pitch":107.13667156040204,"roll":33.854068846355055},"location":"Left Ankle"},{"euler":{"heading":24.22454974736552,"pitch":-0.5565378647964644,"roll":5.917896758716968},"location":"Right Ankle"},{"euler":{"heading":52.690875536280565,"pitch":-152.29758278270177,"roll":56.284105221430515},"location":"Right Hip"},{"euler":{"heading":95.44913572051692,"pitch":-80.85992687714104,"roll":-54.52810441198476},"location":"Right Knee"},{"euler":{"heading":18.900328250870544,"pitch":-125.80504216400074,"roll":58.325089035766226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.191"} +{"sensors":[{"euler":{"heading":156.87668721668484,"pitch":137.5818836026634,"roll":31.058241319476508},"location":"Left Knee"},{"euler":{"heading":47.28379252856712,"pitch":107.42688137767092,"roll":34.50409845165144},"location":"Left Ankle"},{"euler":{"heading":26.565123081274084,"pitch":-0.43225355235330587,"roll":6.603471892193302},"location":"Right Ankle"},{"euler":{"heading":52.80435617713208,"pitch":-152.08497070739472,"roll":55.21665090033335},"location":"Right Hip"},{"euler":{"heading":91.63166036830945,"pitch":-85.3084508090012,"roll":-52.854799539841856},"location":"Right Knee"},{"euler":{"heading":19.70268183079366,"pitch":-127.27424257302201,"roll":58.906531651804116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.291"} +{"sensors":[{"euler":{"heading":129.00337360992484,"pitch":136.31368921521127,"roll":30.5354593552793},"location":"Left Knee"},{"euler":{"heading":49.13804189702879,"pitch":107.95702385176443,"roll":35.7106060342862},"location":"Left Ankle"},{"euler":{"heading":29.25447195947279,"pitch":-0.15332316198159862,"roll":7.075199054008716},"location":"Right Ankle"},{"euler":{"heading":51.737939015268374,"pitch":-152.28497364229906,"roll":54.69069085236399},"location":"Right Hip"},{"euler":{"heading":88.06596295892857,"pitch":-89.1257234821326,"roll":-50.888824283728496},"location":"Right Knee"},{"euler":{"heading":20.555843216498364,"pitch":-129.23983332346458,"roll":59.569406659695304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.392"} +{"sensors":[{"euler":{"heading":107.19143719479104,"pitch":135.06506149031614,"roll":29.13493899540195},"location":"Left Knee"},{"euler":{"heading":51.20921286189037,"pitch":109.10855632580704,"roll":37.807101665599085},"location":"Left Ankle"},{"euler":{"heading":30.48742273844566,"pitch":0.1882536111194637,"roll":7.305858054795331},"location":"Right Ankle"},{"euler":{"heading":50.626945503972735,"pitch":-152.59674808133866,"roll":54.52391870932971},"location":"Right Hip"},{"euler":{"heading":86.49595864850706,"pitch":-93.2635887667612,"roll":-49.6033228031868},"location":"Right Knee"},{"euler":{"heading":21.301973287453684,"pitch":-130.99466617664734,"roll":60.18706165705288},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.493"} +{"sensors":[{"euler":{"heading":90.89546340704214,"pitch":133.7509048440029,"roll":26.993682804855933},"location":"Left Knee"},{"euler":{"heading":54.09414690844427,"pitch":112.06493841780606,"roll":40.48300361221765},"location":"Left Ankle"},{"euler":{"heading":30.944047879485154,"pitch":0.4259942288520735,"roll":7.377833560794135},"location":"Right Ankle"},{"euler":{"heading":49.55079661797091,"pitch":-152.95615400029422,"roll":54.77729167177245},"location":"Right Hip"},{"euler":{"heading":86.4232835905567,"pitch":-97.36455839645251,"roll":-49.1000336968627},"location":"Right Knee"},{"euler":{"heading":20.652498557773143,"pitch":-130.33524440999253,"roll":60.311954814480586},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.593"} +{"sensors":[{"euler":{"heading":77.11833042731764,"pitch":133.22763169993843,"roll":25.32365228540735},"location":"Left Knee"},{"euler":{"heading":55.49318791708285,"pitch":112.52844045811894,"roll":42.56547806042984},"location":"Left Ankle"},{"euler":{"heading":31.050393202754126,"pitch":0.7005728651059733,"roll":7.282439096572091},"location":"Right Ankle"},{"euler":{"heading":48.71720954750688,"pitch":-153.28731676687585,"roll":55.404898161693055},"location":"Right Hip"},{"euler":{"heading":87.30313593703121,"pitch":-101.5213216818531,"roll":-49.0964633068773},"location":"Right Knee"},{"euler":{"heading":19.395381829053242,"pitch":-128.76351963721882,"roll":59.80665552723116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.693"} +{"sensors":[{"euler":{"heading":96.38461957261545,"pitch":133.96697762802395,"roll":25.35231796324459},"location":"Left Knee"},{"euler":{"heading":53.84442658263152,"pitch":111.19993146176667,"roll":42.33927308297894},"location":"Left Ankle"},{"euler":{"heading":30.947218793248798,"pitch":1.0560477672299875,"roll":7.148556562329511},"location":"Right Ankle"},{"euler":{"heading":48.254645747520335,"pitch":-153.40267316480424,"roll":56.20467063053853},"location":"Right Hip"},{"euler":{"heading":88.65970599219212,"pitch":-105.74046187106377,"roll":-49.40238854637155},"location":"Right Knee"},{"euler":{"heading":18.0331187989093,"pitch":-127.08565683301654,"roll":58.95703249211732},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.794"} +{"sensors":[{"euler":{"heading":108.94342463936218,"pitch":135.91423447139587,"roll":26.632716729227496},"location":"Left Knee"},{"euler":{"heading":49.83092478912041,"pitch":109.51028155492304,"roll":39.643501942201304},"location":"Left Ankle"},{"euler":{"heading":30.375224474423376,"pitch":1.3658175317796262,"roll":6.950120594607555},"location":"Right Ankle"},{"euler":{"heading":48.02453170433182,"pitch":-153.70325144594906,"roll":56.9937631895453},"location":"Right Hip"},{"euler":{"heading":90.36499483273147,"pitch":-110.11117028794939,"roll":-50.04187643634984},"location":"Right Knee"},{"euler":{"heading":17.137675701066755,"pitch":-125.69225205723392,"roll":58.223901627664624},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.895"} +{"sensors":[{"euler":{"heading":118.51312358437782,"pitch":138.2529534989399,"roll":28.106418966536456},"location":"Left Knee"},{"euler":{"heading":46.1998460658618,"pitch":108.06459377035505,"roll":36.633416289010995},"location":"Left Ankle"},{"euler":{"heading":29.229111082399047,"pitch":1.5450502420511463,"roll":6.621928142249605},"location":"Right Ankle"},{"euler":{"heading":48.014473806020064,"pitch":-154.39735408280652,"roll":57.81480891766645},"location":"Right Hip"},{"euler":{"heading":92.08827539048396,"pitch":-114.73793516914462,"roll":-50.99508747095841},"location":"Right Knee"},{"euler":{"heading":17.06441701760434,"pitch":-124.99619902623601,"roll":57.72697839294072},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.996"} +{"sensors":[{"euler":{"heading":128.2572263663726,"pitch":139.4417340722405,"roll":29.27941208768182},"location":"Left Knee"},{"euler":{"heading":44.6892684519521,"pitch":107.32123114770287,"roll":34.99765609377239},"location":"Left Ankle"},{"euler":{"heading":27.34537077779851,"pitch":1.231608844880412,"roll":6.176322280732112},"location":"Right Ankle"},{"euler":{"heading":48.42835525113033,"pitch":-155.0254302604919,"roll":58.462627812991556},"location":"Right Hip"},{"euler":{"heading":93.82628754662265,"pitch":-120.32172669350216,"roll":-52.32135837489254},"location":"Right Knee"},{"euler":{"heading":17.25413580784695,"pitch":-124.59227967518541,"roll":57.41406701748186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.96"} +{"sensors":[{"euler":{"heading":137.10370198535952,"pitch":139.75048730285974,"roll":30.14462917813545},"location":"Left Knee"},{"euler":{"heading":44.21935383639633,"pitch":106.78532291186337,"roll":34.02879391507417},"location":"Left Ankle"},{"euler":{"heading":24.126389525864678,"pitch":0.6626087702409166,"roll":5.523401721844099},"location":"Right Ankle"},{"euler":{"heading":49.45095130262338,"pitch":-154.58900375244716,"roll":58.41862037837841},"location":"Right Hip"},{"euler":{"heading":96.23034575797686,"pitch":-92.9664886302746,"roll":-53.24798371190433},"location":"Right Knee"},{"euler":{"heading":17.50460226787621,"pitch":-124.29218150474284,"roll":57.47574915434832},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.197"} +{"sensors":[{"euler":{"heading":144.57905354883883,"pitch":139.5899176423846,"roll":30.802691100281372},"location":"Left Knee"},{"euler":{"heading":44.191306720270234,"pitch":106.31822882801244,"roll":33.54448497866351},"location":"Left Ankle"},{"euler":{"heading":22.2397999561915,"pitch":0.1655707061737557,"roll":5.23580086896206},"location":"Right Ankle"},{"euler":{"heading":50.805493594945446,"pitch":-153.83142851690667,"roll":57.67130754037834},"location":"Right Hip"},{"euler":{"heading":97.04539631448543,"pitch":-100.78181061369912,"roll":-54.06268265554191},"location":"Right Knee"},{"euler":{"heading":17.893988467868795,"pitch":-124.74001237176502,"roll":57.78126670293615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.298"} +{"sensors":[{"euler":{"heading":151.26466746143672,"pitch":139.00466939421037,"roll":31.249522242847963},"location":"Left Knee"},{"euler":{"heading":44.86394276417024,"pitch":106.06798095351688,"roll":33.575925194278895},"location":"Left Ankle"},{"euler":{"heading":22.591615610723085,"pitch":-0.43876464903697043,"roll":5.593870017591098},"location":"Right Ankle"},{"euler":{"heading":51.67677903822963,"pitch":-153.1518628741586,"roll":56.656200243255014},"location":"Right Hip"},{"euler":{"heading":95.06709692680985,"pitch":-104.58972681807747,"roll":-53.9734856660985},"location":"Right Knee"},{"euler":{"heading":18.49224692105369,"pitch":-125.85273496967547,"roll":58.23013583962852},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.398"} +{"sensors":[{"euler":{"heading":157.51173081562112,"pitch":138.13026499782788,"roll":31.225786458966642},"location":"Left Knee"},{"euler":{"heading":45.82492264761999,"pitch":105.96044404102216,"roll":34.026491503090135},"location":"Left Ankle"},{"euler":{"heading":24.972430167456167,"pitch":-0.45053496464257137,"roll":6.2270338628067154},"location":"Right Ankle"},{"euler":{"heading":51.4924451556167,"pitch":-152.9768936242751,"roll":55.814943947667},"location":"Right Hip"},{"euler":{"heading":91.50315195797516,"pitch":-106.7452835363839,"roll":-52.48968093422136},"location":"Right Knee"},{"euler":{"heading":19.08911582574551,"pitch":-127.24010960517266,"roll":58.773048410052624},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.499"} +{"sensors":[{"euler":{"heading":129.13095631139004,"pitch":137.02393694738979,"roll":30.740574545058955},"location":"Left Knee"},{"euler":{"heading":47.30737291760327,"pitch":106.13067541198538,"roll":35.06440033500018},"location":"Left Ankle"},{"euler":{"heading":27.991993896077375,"pitch":-0.25904517070299327,"roll":6.663225971314857},"location":"Right Ankle"},{"euler":{"heading":50.532950937274244,"pitch":-153.09205246130537,"roll":55.35692278034312},"location":"Right Hip"},{"euler":{"heading":88.04992002737694,"pitch":-108.40447301651317,"roll":-50.60005471034456},"location":"Right Knee"},{"euler":{"heading":19.851315583102082,"pitch":-128.9354631008444,"roll":59.47240223139211},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.599"} +{"sensors":[{"euler":{"heading":106.86189431478228,"pitch":135.86232496059702,"roll":29.463230001719086},"location":"Left Knee"},{"euler":{"heading":49.18707603191074,"pitch":106.84951776128027,"roll":37.05589761958113},"location":"Left Ankle"},{"euler":{"heading":29.525050771713367,"pitch":0.2233851679402225,"roll":6.915237956577346},"location":"Right Ankle"},{"euler":{"heading":49.61057604484521,"pitch":-153.2557098991815,"roll":55.09704883902804},"location":"Right Hip"},{"euler":{"heading":86.58389294328593,"pitch":-110.78573775505325,"roll":-49.30635056720107},"location":"Right Knee"},{"euler":{"heading":20.689434985653882,"pitch":-130.77870222393514,"roll":60.15279253603173},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.700"} +{"sensors":[{"euler":{"heading":90.21540783112921,"pitch":134.69825037856793,"roll":27.33830761580148},"location":"Left Knee"},{"euler":{"heading":51.80822087451779,"pitch":109.42625995813134,"roll":39.797312484836375},"location":"Left Ankle"},{"euler":{"heading":30.15011345753257,"pitch":0.5588541286670206,"roll":6.98869932320026},"location":"Right Ankle"},{"euler":{"heading":48.83155526073889,"pitch":-153.46325251228228,"roll":55.27212161210972},"location":"Right Hip"},{"euler":{"heading":86.66769801607012,"pitch":-113.27936740567084,"roll":-48.831310921653674},"location":"Right Knee"},{"euler":{"heading":20.103390404878485,"pitch":-130.42519877734924,"roll":60.30472677141563},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.801"} +{"sensors":[{"euler":{"heading":76.5971735109126,"pitch":134.10269698731727,"roll":25.534424458507612},"location":"Left Knee"},{"euler":{"heading":53.46095087356897,"pitch":109.98618808282558,"roll":42.004466324268904},"location":"Left Ankle"},{"euler":{"heading":30.418156488830306,"pitch":0.7435054782148349,"roll":6.942211838212816},"location":"Right Ankle"},{"euler":{"heading":48.27098289341335,"pitch":-153.6094354971429,"roll":55.81698559682582},"location":"Right Hip"},{"euler":{"heading":87.41408258710716,"pitch":-115.78549365052288,"roll":-48.92464645617165},"location":"Right Knee"},{"euler":{"heading":19.046842903324553,"pitch":-128.84491710240104,"roll":59.89523997317173},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.902"} +{"sensors":[{"euler":{"heading":96.79023992643276,"pitch":134.53288070853478,"roll":25.293337529646852},"location":"Left Knee"},{"euler":{"heading":52.51931564749927,"pitch":109.10759641212336,"roll":41.992150850274754},"location":"Left Ankle"},{"euler":{"heading":30.411708140157007,"pitch":0.7619591919627433,"roll":6.846638702997964},"location":"Right Ankle"},{"euler":{"heading":47.99629138816686,"pitch":-153.80711122083102,"roll":56.54188643481816},"location":"Right Hip"},{"euler":{"heading":88.32248683911507,"pitch":-118.25536529107166,"roll":-49.35987660502497},"location":"Right Knee"},{"euler":{"heading":17.920149428608276,"pitch":-127.29010813838798,"roll":59.090698118159985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.2"} +{"sensors":[{"euler":{"heading":109.94736590308872,"pitch":136.18254845297335,"roll":26.418823498944267},"location":"Left Knee"},{"euler":{"heading":49.09669855377227,"pitch":107.84884671092641,"roll":39.67422752695},"location":"Left Ankle"},{"euler":{"heading":29.942694244696458,"pitch":0.8083840357466879,"roll":6.676922648087149},"location":"Right Ankle"},{"euler":{"heading":47.920006974536136,"pitch":-154.1346157473095,"roll":57.263229521014765},"location":"Right Hip"},{"euler":{"heading":89.58352901084915,"pitch":-121.10265726972911,"roll":-50.0271896705995},"location":"Right Knee"},{"euler":{"heading":17.11652019563779,"pitch":-125.84752841001915,"roll":58.416196012939395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.103"} +{"sensors":[{"euler":{"heading":119.88211789498584,"pitch":138.31738490525606,"roll":27.859364544484105},"location":"Left Knee"},{"euler":{"heading":45.69378734896148,"pitch":106.81685101405783,"roll":36.68500033540252},"location":"Left Ankle"},{"euler":{"heading":28.863065187878878,"pitch":0.915791103744198,"roll":6.333100975712191},"location":"Right Ankle"},{"euler":{"heading":47.98239684013564,"pitch":-154.57365381421982,"roll":58.10025943874324},"location":"Right Hip"},{"euler":{"heading":91.21059972486633,"pitch":-124.48766265785011,"roll":-50.969907167407065},"location":"Right Knee"},{"euler":{"heading":17.10060268149509,"pitch":-125.09508757471575,"roll":57.94854325080698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.203"} +{"sensors":[{"euler":{"heading":129.76460240687544,"pitch":139.31573190973606,"roll":29.055858698249686},"location":"Left Knee"},{"euler":{"heading":44.63162658515655,"pitch":106.49539051252786,"roll":34.96704421267389},"location":"Left Ankle"},{"euler":{"heading":27.081324645253545,"pitch":0.5492470881631729,"roll":5.837680776772627},"location":"Right Ankle"},{"euler":{"heading":48.41398128177613,"pitch":-155.1136158022311,"roll":58.79226856700302},"location":"Right Hip"},{"euler":{"heading":92.94117905760714,"pitch":-128.94781696402077,"roll":-52.23317496189513},"location":"Right Knee"},{"euler":{"heading":17.31349112800021,"pitch":-124.58069122861141,"roll":57.656172688894834},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.303"} +{"sensors":[{"euler":{"heading":138.77789260363573,"pitch":139.43433062704023,"roll":29.954231902676018},"location":"Left Knee"},{"euler":{"heading":44.31484412183495,"pitch":106.3590869143285,"roll":34.01892990964676},"location":"Left Ankle"},{"euler":{"heading":24.023149686025125,"pitch":-0.07374953007701801,"roll":5.169411003539374},"location":"Right Ankle"},{"euler":{"heading":49.492689680838815,"pitch":-154.60340226755335,"roll":58.800138388111534},"location":"Right Hip"},{"euler":{"heading":95.35104189653504,"pitch":-100.7304055835284,"roll":-53.227641815420085},"location":"Right Knee"},{"euler":{"heading":17.743452183077565,"pitch":-124.41843748358056,"roll":57.75427761889183},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.404"} +{"sensors":[{"euler":{"heading":146.49090199063588,"pitch":139.1195308093618,"roll":30.64229596604018},"location":"Left Knee"},{"euler":{"heading":44.67972028760719,"pitch":106.27142103101212,"roll":33.583121746969105},"location":"Left Ankle"},{"euler":{"heading":22.184993826305433,"pitch":-0.7207179503439147,"roll":4.867921029128888},"location":"Right Ankle"},{"euler":{"heading":50.77427054954523,"pitch":-153.80878552864738,"roll":58.09382267830736},"location":"Right Hip"},{"euler":{"heading":96.48000127216615,"pitch":-107.87258395642762,"roll":-54.18101785570876},"location":"Right Knee"},{"euler":{"heading":18.392769206120718,"pitch":-125.06828933490526,"roll":58.12247978337198},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.505"} +{"sensors":[{"euler":{"heading":153.41272702269643,"pitch":138.35905168991448,"roll":31.116275298482698},"location":"Left Knee"},{"euler":{"heading":45.442214487887696,"pitch":106.29910989522493,"roll":33.5276523362882},"location":"Left Ankle"},{"euler":{"heading":22.74293556305279,"pitch":-1.3061435501142442,"roll":5.207476950207701},"location":"Right Ankle"},{"euler":{"heading":51.69283079615084,"pitch":-153.2146081051168,"roll":56.94339873968405},"location":"Right Hip"},{"euler":{"heading":95.06788607884471,"pitch":-111.04166274559303,"roll":-54.455118619849635},"location":"Right Knee"},{"euler":{"heading":19.215749348318774,"pitch":-126.31625322576326,"roll":58.65185189725414},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.606"} +{"sensors":[{"euler":{"heading":159.7521295536834,"pitch":137.30230401472284,"roll":31.18250361888986},"location":"Left Knee"},{"euler":{"heading":46.53622320778485,"pitch":106.47279754897203,"roll":33.857959136860195},"location":"Left Ankle"},{"euler":{"heading":25.20929162384844,"pitch":-1.3424200526533385,"roll":5.895232328678611},"location":"Right Ankle"},{"euler":{"heading":51.75529123763319,"pitch":-152.98016245142477,"roll":55.902408788457585},"location":"Right Hip"},{"euler":{"heading":91.55730588340816,"pitch":-112.62509671558551,"roll":-53.00873289755375},"location":"Right Knee"},{"euler":{"heading":20.091745048289244,"pitch":-127.91518395111814,"roll":59.33300798930041},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.706"} +{"sensors":[{"euler":{"heading":131.22698588441492,"pitch":136.13799361286357,"roll":30.748971442753554},"location":"Left Knee"},{"euler":{"heading":47.943292807307095,"pitch":106.78454117641417,"roll":34.7038138301427},"location":"Left Ankle"},{"euler":{"heading":28.263224796745437,"pitch":-1.0839256821781684,"roll":6.422440108463796},"location":"Right Ankle"},{"euler":{"heading":50.81356740575137,"pitch":-153.06528380341106,"roll":55.30527076726604},"location":"Right Hip"},{"euler":{"heading":87.73159743730214,"pitch":-113.79631311730947,"roll":-51.01027881993274},"location":"Right Knee"},{"euler":{"heading":20.862517138426995,"pitch":-130.0397815850383,"roll":60.05638469845875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.807"} +{"sensors":[{"euler":{"heading":108.55433980737631,"pitch":135.0071491480303,"roll":29.607570220511306},"location":"Left Knee"},{"euler":{"heading":49.74938369579801,"pitch":107.5660360559761,"roll":36.42045588145167},"location":"Left Ankle"},{"euler":{"heading":29.842259258652824,"pitch":-0.36250534341569285,"roll":6.709247445388607},"location":"Right Ankle"},{"euler":{"heading":49.78089142624144,"pitch":-153.26715945352038,"roll":54.96113060531545},"location":"Right Hip"},{"euler":{"heading":86.05571191146404,"pitch":-115.7598044089453,"roll":-49.641880294633914},"location":"Right Knee"},{"euler":{"heading":21.58280409760014,"pitch":-132.0336207262882,"roll":60.77634863845777},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.907"} +{"sensors":[{"euler":{"heading":91.67846934944615,"pitch":133.84118879171857,"roll":27.504589328283497},"location":"Left Knee"},{"euler":{"heading":53.34473845482772,"pitch":110.8475094969787,"roll":39.32338732206007},"location":"Left Ankle"},{"euler":{"heading":30.386062189384337,"pitch":0.35568832576871956,"roll":6.790413028068857},"location":"Right Ankle"},{"euler":{"heading":48.79859538776819,"pitch":-153.43794108291831,"roll":55.05400766780116},"location":"Right Hip"},{"euler":{"heading":86.09253658164448,"pitch":-118.02403396977967,"roll":-48.99818133460958},"location":"Right Knee"},{"euler":{"heading":20.834880057140474,"pitch":-131.346712180646,"roll":60.964092070225405},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.8"} +{"sensors":[{"euler":{"heading":78.18751698587982,"pitch":133.14880408834418,"roll":25.548146560728995},"location":"Left Knee"},{"euler":{"heading":55.45626793394681,"pitch":112.09269382219944,"roll":41.91450579014937},"location":"Left Ankle"},{"euler":{"heading":30.664858821149235,"pitch":0.9758373400944089,"roll":6.721170358071037},"location":"Right Ankle"},{"euler":{"heading":47.95862061953799,"pitch":-153.61625835363859,"roll":55.560166648217866},"location":"Right Hip"},{"euler":{"heading":87.12150026204408,"pitch":-120.44743325057856,"roll":-48.87350287492403},"location":"Right Knee"},{"euler":{"heading":19.33662983454734,"pitch":-129.53608423215394,"roll":60.450266046017916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.109"} +{"sensors":[{"euler":{"heading":64.19821266490072,"pitch":133.6340549514069,"roll":25.109559166396853},"location":"Left Knee"},{"euler":{"heading":54.34927422689469,"pitch":110.93643195830205,"roll":42.22584910897787},"location":"Left Ankle"},{"euler":{"heading":30.643434278289863,"pitch":1.5667212659374483,"roll":6.605006623044394},"location":"Right Ankle"},{"euler":{"heading":47.401646965254095,"pitch":-153.75383197740211,"roll":56.32138798390411},"location":"Right Hip"},{"euler":{"heading":88.45747513146084,"pitch":-122.96729878316371,"roll":-49.0876763632682},"location":"Right Knee"},{"euler":{"heading":17.87799719281441,"pitch":-127.71933289728499,"roll":59.55725553339433},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.210"} +{"sensors":[{"euler":{"heading":77.02442191297878,"pitch":135.26815319626328,"roll":26.139566193316245},"location":"Left Knee"},{"euler":{"heading":50.63668379149804,"pitch":109.5334409565908,"roll":39.99271079424806},"location":"Left Ankle"},{"euler":{"heading":30.185939121894336,"pitch":2.13706925017955,"roll":6.452330493261943},"location":"Right Ankle"},{"euler":{"heading":47.230972311907905,"pitch":-153.91399076667935,"roll":57.08748719853205},"location":"Right Hip"},{"euler":{"heading":90.16968188691995,"pitch":-125.80632122016895,"roll":-49.566851381162564},"location":"Right Knee"},{"euler":{"heading":16.81446714800144,"pitch":-126.11107173712858,"roll":58.76702849897454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.311"} +{"sensors":[{"euler":{"heading":88.38263232189803,"pitch":137.32944812016387,"roll":27.42236703194241},"location":"Left Knee"},{"euler":{"heading":46.758530426585494,"pitch":108.16283913484966,"roll":37.00885975248913},"location":"Left Ankle"},{"euler":{"heading":29.139522826524438,"pitch":2.6115457735604752,"roll":6.195271515946482},"location":"Right Ankle"},{"euler":{"heading":47.269583321022004,"pitch":-154.1718753084657,"roll":57.88178151474111},"location":"Right Hip"},{"euler":{"heading":92.15427505364741,"pitch":-129.13033593753264,"roll":-50.36905398551201},"location":"Right Knee"},{"euler":{"heading":16.567907210366677,"pitch":-125.27410828716475,"roll":58.20060444012653},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.412"} +{"sensors":[{"euler":{"heading":104.18688912819601,"pitch":138.32070230464373,"roll":28.458290080799085},"location":"Left Knee"},{"euler":{"heading":45.15860921102519,"pitch":107.49336523629205,"roll":35.18280752887748},"location":"Left Ankle"},{"euler":{"heading":27.456320548144827,"pitch":2.5890443753076093,"roll":5.730798256482506},"location":"Right Ankle"},{"euler":{"heading":47.63413519998019,"pitch":-154.49440821768596,"roll":58.57673741560444},"location":"Right Hip"},{"euler":{"heading":94.1300309188502,"pitch":-133.39261392278405,"roll":-51.523009278592845},"location":"Right Knee"},{"euler":{"heading":16.63950835363291,"pitch":-124.88536999271601,"roll":57.848584731508396},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.513"} +{"sensors":[{"euler":{"heading":118.0370293908987,"pitch":138.46260944401325,"roll":29.264874262751555},"location":"Left Knee"},{"euler":{"heading":44.645266690221575,"pitch":107.14916852552174,"roll":34.23794998772511},"location":"Left Ankle"},{"euler":{"heading":24.41343022810615,"pitch":2.039551042335765,"roll":5.138094058508193},"location":"Right Ankle"},{"euler":{"heading":48.544996565153895,"pitch":-154.15605760101522,"roll":58.61700023591895},"location":"Right Hip"},{"euler":{"heading":96.30069127041679,"pitch":-104.65726665643405,"roll":-52.54341343396648},"location":"Right Knee"},{"euler":{"heading":16.88243982778918,"pitch":-124.6762977811532,"roll":57.86893340473239},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.614"} +{"sensors":[{"euler":{"heading":130.06121947419214,"pitch":138.01432283836462,"roll":29.857990111996067},"location":"Left Knee"},{"euler":{"heading":45.5804725334637,"pitch":107.11119765067761,"roll":34.1499166298533},"location":"Left Ankle"},{"euler":{"heading":22.635351875232647,"pitch":1.286679991986174,"roll":4.780130029817407},"location":"Right Ankle"},{"euler":{"heading":49.83183184895522,"pitch":-153.48128348771118,"roll":57.92216022092902},"location":"Right Hip"},{"euler":{"heading":97.00192491357622,"pitch":-111.30699652371045,"roll":-53.50836887704274},"location":"Right Knee"},{"euler":{"heading":17.551031155503455,"pitch":-125.08758961735334,"roll":58.19650240841434},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.714"} +{"sensors":[{"euler":{"heading":140.36440185696495,"pitch":137.24007038845616,"roll":30.198490710792246},"location":"Left Knee"},{"euler":{"heading":46.554303822391155,"pitch":107.11845590570321,"roll":34.367522819444105},"location":"Left Ankle"},{"euler":{"heading":23.260320931780893,"pitch":0.5519179729469118,"roll":4.973459064650287},"location":"Right Ankle"},{"euler":{"heading":50.87360055736223,"pitch":-152.99554866937316,"roll":56.79995627541602},"location":"Right Hip"},{"euler":{"heading":95.15040874373243,"pitch":-114.08397870153554,"roll":-53.685932016965495},"location":"Right Knee"},{"euler":{"heading":18.45519146115233,"pitch":-126.31588164747956,"roll":58.72477843348842},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.815"} +{"sensors":[{"euler":{"heading":115.13830456588389,"pitch":136.22436733839834,"roll":30.137992144052895},"location":"Left Knee"},{"euler":{"heading":47.773792658459925,"pitch":107.27365641036789,"roll":34.94492892511936},"location":"Left Ankle"},{"euler":{"heading":25.965863425079334,"pitch":0.4875262035885512,"roll":5.338647534074678},"location":"Right Ankle"},{"euler":{"heading":50.84074880111214,"pitch":-152.95435494848874,"roll":55.79044720028046},"location":"Right Hip"},{"euler":{"heading":91.53569573685814,"pitch":-115.39584852647312,"roll":-52.336496340744404},"location":"Right Knee"},{"euler":{"heading":19.338204313980228,"pitch":-127.97430079542247,"roll":59.36927085634926},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.917"} +{"sensors":[{"euler":{"heading":94.95882829008914,"pitch":135.0853065796631,"roll":29.66707696512437},"location":"Left Knee"},{"euler":{"heading":49.49169100674791,"pitch":107.80648378227284,"roll":37.649337217790126},"location":"Left Ankle"},{"euler":{"heading":29.049173573987563,"pitch":0.5719470792248322,"roll":5.8593473227848225},"location":"Right Ankle"},{"euler":{"heading":49.767475677309406,"pitch":-153.23812638874642,"roll":55.32286566889382},"location":"Right Hip"},{"euler":{"heading":87.75552022629341,"pitch":-116.13702876492931,"roll":-50.37820748264385},"location":"Right Knee"},{"euler":{"heading":20.20984696317924,"pitch":-129.97436879167523,"roll":60.08325275548579},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.17"} +{"sensors":[{"euler":{"heading":79.44659747091805,"pitch":133.85245842753292,"roll":28.390778565717834},"location":"Left Knee"},{"euler":{"heading":51.63552244166712,"pitch":108.99017229154772,"roll":39.56735650416674},"location":"Left Ankle"},{"euler":{"heading":30.83062110043752,"pitch":0.8861497305846215,"roll":6.181882894140778},"location":"Right Ankle"},{"euler":{"heading":48.85300897106436,"pitch":-153.56030247674767,"roll":55.15541102199722},"location":"Right Hip"},{"euler":{"heading":85.87315940574697,"pitch":-117.46168812959576,"roll":-49.05804407873914},"location":"Right Knee"},{"euler":{"heading":21.208921777411895,"pitch":-131.96253970454322,"roll":60.8482233346428},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.118"} +{"sensors":[{"euler":{"heading":68.54068273583543,"pitch":132.64175993770556,"roll":26.124115426414836},"location":"Left Knee"},{"euler":{"heading":54.90099741333155,"pitch":112.74259626183805,"roll":42.20066580670052},"location":"Left Ankle"},{"euler":{"heading":31.516378396652538,"pitch":1.134792033510568,"roll":6.342940526725949},"location":"Right Ankle"},{"euler":{"heading":48.116135246900235,"pitch":-153.83399566664653,"roll":55.40816640370373},"location":"Right Hip"},{"euler":{"heading":85.69930517696876,"pitch":-119.15379990829052,"roll":-48.529335569429335},"location":"Right Knee"},{"euler":{"heading":20.998424924324546,"pitch":-131.84719695975997,"roll":61.15398115163295},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.219"} +{"sensors":[{"euler":{"heading":59.52175205836193,"pitch":132.06941611810402,"roll":24.16819336334849},"location":"Left Knee"},{"euler":{"heading":56.74836699079219,"pitch":114.04532291135166,"roll":44.55970053680819},"location":"Left Ankle"},{"euler":{"heading":31.816282185723317,"pitch":1.2824932576689605,"roll":6.357880796866185},"location":"Right Ankle"},{"euler":{"heading":47.5187291547023,"pitch":-154.14110688944467,"roll":56.02332344496058},"location":"Right Hip"},{"euler":{"heading":86.30011697740667,"pitch":-121.00005099010212,"roll":-48.52059971805307},"location":"Right Knee"},{"euler":{"heading":19.86887580377604,"pitch":-130.16137435678147,"roll":60.80639647969486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.320"} +{"sensors":[{"euler":{"heading":49.25358728153205,"pitch":132.53843752514825,"roll":23.807366140633345},"location":"Left Knee"},{"euler":{"heading":55.585602750861014,"pitch":112.85195004828947,"roll":44.69670891086135},"location":"Left Ankle"},{"euler":{"heading":31.770523006829436,"pitch":1.422089722027324,"roll":6.240603107262891},"location":"Right Ankle"},{"euler":{"heading":47.19604231292578,"pitch":-154.4011682582674,"roll":56.8177760255983},"location":"Right Hip"},{"euler":{"heading":87.33308401653757,"pitch":-122.98577888584866,"roll":-48.87535862887751},"location":"Right Knee"},{"euler":{"heading":18.545666607894322,"pitch":-128.36243134669982,"roll":59.968688701704956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.421"} +{"sensors":[{"euler":{"heading":71.33950798687015,"pitch":134.24702975407277,"roll":24.955298869898346},"location":"Left Knee"},{"euler":{"heading":51.815456848862794,"pitch":111.24296430723811,"roll":42.400944171347554},"location":"Left Ankle"},{"euler":{"heading":31.28121206180405,"pitch":1.6256960827086204,"roll":6.0750283724994105},"location":"Right Ankle"},{"euler":{"heading":47.0745140625878,"pitch":-154.7375615392686,"roll":57.63772659608778},"location":"Right Hip"},{"euler":{"heading":88.83286013753579,"pitch":-125.40092656327495,"roll":-49.48769119953151},"location":"Right Knee"},{"euler":{"heading":17.527622748648096,"pitch":-126.75244857295502,"roll":59.234449041225226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.522"} +{"sensors":[{"euler":{"heading":88.15113988546912,"pitch":136.5481463486948,"roll":26.493440428217976},"location":"Left Knee"},{"euler":{"heading":47.76532567072559,"pitch":109.6384005186771,"roll":39.170174194630626},"location":"Left Ankle"},{"euler":{"heading":30.214690341107207,"pitch":1.8456062499566919,"roll":5.740899385139198},"location":"Right Ankle"},{"euler":{"heading":47.13553016989007,"pitch":-155.18464281862126,"roll":58.53425743074346},"location":"Right Hip"},{"euler":{"heading":90.6554059482349,"pitch":-128.40084065072355,"roll":-50.404439447201},"location":"Right Knee"},{"euler":{"heading":17.32425215765477,"pitch":-125.87231012439807,"roll":58.75435840747947},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.622"} +{"sensors":[{"euler":{"heading":103.47415630345861,"pitch":137.8039716471676,"roll":27.813922699340406},"location":"Left Knee"},{"euler":{"heading":46.18511251552561,"pitch":108.7869468052543,"roll":37.12663648810566},"location":"Left Ankle"},{"euler":{"heading":28.300994688010302,"pitch":1.6046447155814996,"roll":5.3672107001509985},"location":"Right Ankle"},{"euler":{"heading":47.631388163594615,"pitch":-155.52974244992728,"roll":59.24443561011079},"location":"Right Hip"},{"euler":{"heading":92.58765722981538,"pitch":-132.51253543615056,"roll":-51.67393485346533},"location":"Right Knee"},{"euler":{"heading":17.389599537374966,"pitch":-125.52179284883121,"roll":58.43884251027414},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.723"} +{"sensors":[{"euler":{"heading":117.1680697672206,"pitch":138.07826705673628,"roll":28.919614583107016},"location":"Left Knee"},{"euler":{"heading":45.53332893479556,"pitch":108.26619048006187,"roll":35.93147398502272},"location":"Left Ankle"},{"euler":{"heading":25.122884413329867,"pitch":0.928815941369447,"roll":4.850709893465865},"location":"Right Ankle"},{"euler":{"heading":48.810286137812014,"pitch":-154.93832774699382,"roll":59.209293076525135},"location":"Right Hip"},{"euler":{"heading":94.89510999694485,"pitch":-103.7717259528221,"roll":-52.775107147278064},"location":"Right Knee"},{"euler":{"heading":17.752261896865054,"pitch":-125.39486834569767,"roll":58.52194911081501},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.824"} +{"sensors":[{"euler":{"heading":128.99299782684366,"pitch":137.7616659126606,"roll":29.77149492212266},"location":"Left Knee"},{"euler":{"heading":45.683359628077994,"pitch":107.92576782738224,"roll":35.278063370666274},"location":"Left Ankle"},{"euler":{"heading":23.180580340803843,"pitch":0.14486140549592552,"roll":4.549809799167272},"location":"Right Ankle"},{"euler":{"heading":50.41171442606266,"pitch":-154.09401532511964,"roll":58.38082225218501},"location":"Right Hip"},{"euler":{"heading":95.845091195766,"pitch":-110.60676304002884,"roll":-53.84287420404296},"location":"Right Knee"},{"euler":{"heading":18.483216896865386,"pitch":-125.96967321032176,"roll":58.870634353134975},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.925"} +{"sensors":[{"euler":{"heading":139.15086060533122,"pitch":137.04711927883523,"roll":30.34019975116796},"location":"Left Knee"},{"euler":{"heading":46.30561043608504,"pitch":107.73068869781879,"roll":35.1327064617626},"location":"Left Ankle"},{"euler":{"heading":23.84349547870153,"pitch":-0.6120819773088887,"roll":4.848282334695375},"location":"Right Ankle"},{"euler":{"heading":51.72890746548064,"pitch":-153.52026790044167,"roll":57.06041011853172},"location":"Right Hip"},{"euler":{"heading":94.01294471625422,"pitch":-113.21848787604368,"roll":-54.00050816608199},"location":"Right Knee"},{"euler":{"heading":19.35520620248238,"pitch":-127.27458041332223,"roll":59.37045547530801},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.26"} +{"sensors":[{"euler":{"heading":148.08047422933748,"pitch":136.13895030237384,"roll":30.379181967862422},"location":"Left Knee"},{"euler":{"heading":47.035085099519975,"pitch":107.68496322294571,"roll":35.363840382496726},"location":"Left Ankle"},{"euler":{"heading":26.199608494037566,"pitch":-0.8035606471544275,"roll":5.457245228097477},"location":"Right Ankle"},{"euler":{"heading":51.94535408087128,"pitch":-153.3934884579047,"roll":55.847766163193896},"location":"Right Hip"},{"euler":{"heading":90.28329482293735,"pitch":-114.42838291190236,"roll":-52.59142192010538},"location":"Right Knee"},{"euler":{"heading":20.128643168926427,"pitch":-128.91909241507187,"roll":59.97730915043945},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.127"} +{"sensors":[{"euler":{"heading":121.74753626298512,"pitch":135.11503036974463,"roll":29.920995471503144},"location":"Left Knee"},{"euler":{"heading":48.24474484170252,"pitch":107.85167314711694,"roll":36.179409084630535},"location":"Left Ankle"},{"euler":{"heading":29.18705601231916,"pitch":-0.608215850828058,"roll":6.026116496650399},"location":"Right Ankle"},{"euler":{"heading":50.90379227016863,"pitch":-153.62954204972038,"roll":55.26177132509022},"location":"Right Hip"},{"euler":{"heading":86.66465734319948,"pitch":-115.25564793383239,"roll":-50.59104736328948},"location":"Right Knee"},{"euler":{"heading":20.91056520213884,"pitch":-131.1324978710126,"roll":60.63345145429435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.229"} +{"sensors":[{"euler":{"heading":101.16118589259307,"pitch":134.02204212736098,"roll":28.65621493972964},"location":"Left Knee"},{"euler":{"heading":49.901087370051755,"pitch":108.53760248885467,"roll":37.951880404061626},"location":"Left Ankle"},{"euler":{"heading":30.794886399633175,"pitch":-0.11635190897604958,"roll":6.3565693938480985},"location":"Right Ankle"},{"euler":{"heading":49.84287683134909,"pitch":-153.89664883064282,"roll":54.99311273566183},"location":"Right Hip"},{"euler":{"heading":84.93239960857625,"pitch":-116.77116411850406,"roll":-49.15551266037321},"location":"Right Knee"},{"euler":{"heading":21.788614413094834,"pitch":-133.1412986132867,"roll":61.34013911753455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.329"} +{"sensors":[{"euler":{"heading":85.9281736947441,"pitch":132.90222753853874,"roll":26.524825491888706},"location":"Left Knee"},{"euler":{"heading":53.48084387271615,"pitch":111.93474151555341,"roll":40.78047889792932},"location":"Left Ankle"},{"euler":{"heading":31.552517246553954,"pitch":0.4000672052655762,"roll":6.512900602025523},"location":"Right Ankle"},{"euler":{"heading":48.968255122175705,"pitch":-154.10862056175526,"roll":55.166181807219765},"location":"Right Hip"},{"euler":{"heading":84.8398324691016,"pitch":-118.60625093897673,"roll":-48.46889976925866},"location":"Right Knee"},{"euler":{"heading":21.24120962341421,"pitch":-132.45603783229217,"roll":61.51586917733413},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.431"} +{"sensors":[{"euler":{"heading":73.62781388041225,"pitch":132.16241937577283,"roll":24.649692067576193},"location":"Left Knee"},{"euler":{"heading":55.68067174617057,"pitch":113.12406544082745,"roll":43.161647952077864},"location":"Left Ankle"},{"euler":{"heading":31.857763251763444,"pitch":1.0516665278815842,"roll":6.4581656646549135},"location":"Right Ankle"},{"euler":{"heading":48.22238928469374,"pitch":-154.17557703839634,"roll":55.750849845726165},"location":"Right Hip"},{"euler":{"heading":85.78663150769529,"pitch":-120.79590764731121,"roll":-48.222155256103434},"location":"Right Knee"},{"euler":{"heading":19.913089651781664,"pitch":-130.640955597341,"roll":60.96739132173656},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.533"} +{"sensors":[{"euler":{"heading":60.690654436335194,"pitch":132.6701563161744,"roll":24.29657008680106},"location":"Left Knee"},{"euler":{"heading":54.63408605262896,"pitch":111.95887404653264,"roll":43.25328674046851},"location":"Left Ankle"},{"euler":{"heading":31.709362736384946,"pitch":1.7601886682420378,"roll":6.307567154335067},"location":"Right Ankle"},{"euler":{"heading":47.784089073392906,"pitch":-154.1291487482023,"roll":56.547440225737496},"location":"Right Hip"},{"euler":{"heading":87.2336892869193,"pitch":-123.15777312000883,"roll":-48.313983599543164},"location":"Right Knee"},{"euler":{"heading":18.439181475349553,"pitch":-128.83800961253462,"roll":60.01329869236367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.634"} +{"sensors":[{"euler":{"heading":80.38906476659058,"pitch":134.45539841972948,"roll":25.49309225083072},"location":"Left Knee"},{"euler":{"heading":50.68558286674128,"pitch":110.39917024472423,"roll":39.22800082857633},"location":"Left Ankle"},{"euler":{"heading":31.028993640030784,"pitch":2.4250939257780377,"roll":6.088060008832631},"location":"Right Ankle"},{"euler":{"heading":47.71058410543162,"pitch":-154.11686348360672,"roll":57.37527054522527},"location":"Right Hip"},{"euler":{"heading":89.01306937700355,"pitch":-125.77653624139234,"roll":-48.771631159245054},"location":"Right Knee"},{"euler":{"heading":17.428542223279667,"pitch":-127.31358426107265,"roll":59.20347181852396},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.735"} +{"sensors":[{"euler":{"heading":95.5906336221643,"pitch":136.81398296039202,"roll":26.98007625575183},"location":"Left Knee"},{"euler":{"heading":46.59642847674834,"pitch":109.00566906823292,"roll":36.04340861196258},"location":"Left Ankle"},{"euler":{"heading":29.746580637651153,"pitch":2.8483908938733733,"roll":5.693238311850232},"location":"Right Ankle"},{"euler":{"heading":47.88821062294922,"pitch":-154.2900513901689,"roll":58.21353318451452},"location":"Right Hip"},{"euler":{"heading":90.95753907471804,"pitch":-128.806118871374,"roll":-49.637588409908794},"location":"Right Knee"},{"euler":{"heading":17.326359438520374,"pitch":-126.60598951365222,"roll":58.6906560449309},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.836"} +{"sensors":[{"euler":{"heading":109.3277933375412,"pitch":138.13964549389223,"roll":28.319665715607172},"location":"Left Knee"},{"euler":{"heading":44.82373985251109,"pitch":108.33925534475208,"roll":35.53392822315778},"location":"Left Ankle"},{"euler":{"heading":27.578824440014454,"pitch":2.4406958570110033,"roll":5.27652092175352},"location":"Right Ankle"},{"euler":{"heading":48.43198663207744,"pitch":-154.7380848841736,"roll":58.865040618429845},"location":"Right Hip"},{"euler":{"heading":92.65668427480004,"pitch":-132.57605090889712,"roll":-50.99192107650664},"location":"Right Knee"},{"euler":{"heading":17.4626686681235,"pitch":-126.27486065777894,"roll":58.369309214745904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.936"} +{"sensors":[{"euler":{"heading":121.70537314393674,"pitch":138.53064264556505,"roll":29.276178604817485},"location":"Left Knee"},{"euler":{"heading":44.133263720606344,"pitch":107.90270278817064,"roll":34.49027196950297},"location":"Left Ankle"},{"euler":{"heading":24.293759898790654,"pitch":1.8220798585409208,"roll":4.566506513970579},"location":"Right Ankle"},{"euler":{"heading":49.531213672475836,"pitch":-154.2457577759045,"roll":58.87787861907116},"location":"Right Hip"},{"euler":{"heading":94.66030919237957,"pitch":-103.58544190862504,"roll":-52.22336826149284},"location":"Right Knee"},{"euler":{"heading":17.59805974680722,"pitch":-125.95144917799034,"roll":58.36985055024916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.38"} +{"sensors":[{"euler":{"heading":132.64868379544598,"pitch":138.27207953849555,"roll":30.05846897335003},"location":"Left Knee"},{"euler":{"heading":44.435917531605995,"pitch":107.65630995005294,"roll":33.932338431056486},"location":"Left Ankle"},{"euler":{"heading":22.25793648211427,"pitch":0.8699193555196687,"roll":4.328313089710487},"location":"Right Ankle"},{"euler":{"heading":51.144696486311595,"pitch":-153.34841986602507,"roll":58.08093356913691},"location":"Right Hip"},{"euler":{"heading":95.69445370702687,"pitch":-110.73546463216482,"roll":-53.307947590977555},"location":"Right Knee"},{"euler":{"heading":18.26183142299388,"pitch":-126.4079109505151,"roll":58.65571515717242},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.138"} +{"sensors":[{"euler":{"heading":142.1857494335188,"pitch":137.58032353981832,"roll":30.605820725787478},"location":"Left Knee"},{"euler":{"heading":45.12962821294815,"pitch":107.55226136390141,"roll":33.784196734317455},"location":"Left Ankle"},{"euler":{"heading":22.74320785365791,"pitch":0.055895507039865344,"roll":4.546785252847048},"location":"Right Ankle"},{"euler":{"heading":52.489595680970936,"pitch":-152.6969644606345,"roll":56.75932178494259},"location":"Right Hip"},{"euler":{"heading":94.25821197778967,"pitch":-113.89380565585846,"roll":-53.665099095927495},"location":"Right Knee"},{"euler":{"heading":19.13231886512421,"pitch":-127.52844343971552,"roll":59.09869145198913},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.239"} +{"sensors":[{"euler":{"heading":116.42153620371839,"pitch":136.6273788572588,"roll":30.7146606899695},"location":"Left Knee"},{"euler":{"heading":46.28027790757264,"pitch":107.65430554295718,"roll":34.12577161478412},"location":"Left Ankle"},{"euler":{"heading":25.037100654023092,"pitch":-0.26452285273983467,"roll":5.083357803039124},"location":"Right Ankle"},{"euler":{"heading":52.88330606419113,"pitch":-152.49392369536355,"roll":55.52181106523473},"location":"Right Hip"},{"euler":{"heading":90.83489253833865,"pitch":-115.12269544733155,"roll":-52.5435668393793},"location":"Right Knee"},{"euler":{"heading":19.969924491243262,"pitch":-128.97044751218934,"roll":59.6719435824009},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.340"} +{"sensors":[{"euler":{"heading":95.872794877029,"pitch":135.50943473547076,"roll":30.361303881681824},"location":"Left Knee"},{"euler":{"heading":47.84074061250278,"pitch":108.01418162049018,"roll":35.035330281350056},"location":"Left Ankle"},{"euler":{"heading":28.181688095118353,"pitch":-0.24530544463629525,"roll":5.681849776103941},"location":"Right Ankle"},{"euler":{"heading":52.04634070904163,"pitch":-152.60151724058704,"roll":54.88358837366502},"location":"Right Hip"},{"euler":{"heading":87.22332048680197,"pitch":-115.8006797367784,"roll":-50.7261037220819},"location":"Right Knee"},{"euler":{"heading":20.834114290967058,"pitch":-130.89953836022963,"roll":60.33335253159543},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.442"} +{"sensors":[{"euler":{"heading":79.90957754727086,"pitch":134.28974919422257,"roll":29.322177889793906},"location":"Left Knee"},{"euler":{"heading":49.641632840305554,"pitch":108.80950381646733,"roll":36.67287439511906},"location":"Left Ankle"},{"euler":{"heading":30.292738859719105,"pitch":-0.02577563178754788,"roll":6.056941633477915},"location":"Right Ankle"},{"euler":{"heading":50.8854097813237,"pitch":-152.9247976479011,"roll":54.66279502322885},"location":"Right Hip"},{"euler":{"heading":85.24714499688837,"pitch":-116.9789750478048,"roll":-49.39662794603924},"location":"Right Knee"},{"euler":{"heading":21.785469566833633,"pitch":-133.01373366451566,"roll":61.00913400520858},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.542"} +{"sensors":[{"euler":{"heading":68.36685670727444,"pitch":133.18014083729332,"roll":27.258235536003724},"location":"Left Knee"},{"euler":{"heading":52.822504715640385,"pitch":111.76460671696299,"roll":39.36154470036539},"location":"Left Ankle"},{"euler":{"heading":31.218648388904953,"pitch":0.006402811291442087,"roll":6.20610306324166},"location":"Right Ankle"},{"euler":{"heading":50.20237964984469,"pitch":-153.19354480120106,"roll":54.70081692795623},"location":"Right Hip"},{"euler":{"heading":84.76460842207923,"pitch":-118.32461456760346,"roll":-48.8892194413809},"location":"Right Knee"},{"euler":{"heading":21.369431394445566,"pitch":-133.06593501935973,"roll":61.174733747127696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.643"} +{"sensors":[{"euler":{"heading":59.480493725792456,"pitch":132.38416965555186,"roll":25.182539770758726},"location":"Left Knee"},{"euler":{"heading":55.105952518290394,"pitch":113.77273123082075,"roll":41.84201791360164},"location":"Left Ankle"},{"euler":{"heading":31.911383715374583,"pitch":-0.059604639489157465,"roll":6.204333448302347},"location":"Right Ankle"},{"euler":{"heading":49.399357712299576,"pitch":-153.59725070834162,"roll":55.21679191944897},"location":"Right Hip"},{"euler":{"heading":85.0056559178086,"pitch":-119.7860078456327,"roll":-48.870030895259205},"location":"Right Knee"},{"euler":{"heading":20.27967103315901,"pitch":-131.5138829737347,"roll":60.79544844804604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.744"} +{"sensors":[{"euler":{"heading":50.12943707028838,"pitch":132.61516439009094,"roll":24.416066928774956},"location":"Left Knee"},{"euler":{"heading":54.769927954678174,"pitch":112.77770255117458,"roll":42.63588124589321},"location":"Left Ankle"},{"euler":{"heading":32.2170011079897,"pitch":-0.09555190617152261,"roll":5.947083940044954},"location":"Right Ankle"},{"euler":{"heading":49.09261737744651,"pitch":-153.95066350731904,"roll":55.9096065198209},"location":"Right Hip"},{"euler":{"heading":85.69054056891626,"pitch":-121.42348750615218,"roll":-49.25694857647324},"location":"Right Knee"},{"euler":{"heading":18.971204906995464,"pitch":-129.83598560717604,"roll":59.90527433210294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.846"} +{"sensors":[{"euler":{"heading":72.8354881351056,"pitch":134.05486444655023,"roll":25.303956583871813},"location":"Left Knee"},{"euler":{"heading":51.47457513669569,"pitch":111.41953721004748,"roll":40.80963672787924},"location":"Left Ankle"},{"euler":{"heading":31.997560992733572,"pitch":-0.0032282318266915466,"roll":5.8332114236536405},"location":"Right Ankle"},{"euler":{"heading":48.93063834093575,"pitch":-154.31802040235587,"roll":56.67325926072651},"location":"Right Hip"},{"euler":{"heading":86.93503374922884,"pitch":-123.49378749643806,"roll":-49.90432612461609},"location":"Right Knee"},{"euler":{"heading":17.947396734248027,"pitch":-128.2701356357029,"roll":59.11166857472744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.947"} +{"sensors":[{"euler":{"heading":89.60791379279956,"pitch":136.39209667392598,"roll":26.79704148910804},"location":"Left Knee"},{"euler":{"heading":47.23056386964193,"pitch":109.82195816837739,"roll":37.48053682737867},"location":"Left Ankle"},{"euler":{"heading":31.146063904815236,"pitch":0.18138338979565805,"roll":5.5220852546840105},"location":"Right Ankle"},{"euler":{"heading":48.91097092775287,"pitch":-154.77528396150518,"roll":57.50101166957486},"location":"Right Hip"},{"euler":{"heading":88.6080072433937,"pitch":-126.13409504509163,"roll":-50.840895083778705},"location":"Right Knee"},{"euler":{"heading":17.786868790647507,"pitch":-127.43587716766838,"roll":58.54813250130453},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.47"} +{"sensors":[{"euler":{"heading":104.38158642036942,"pitch":137.84707072185674,"roll":28.142151501612066},"location":"Left Knee"},{"euler":{"heading":44.52846207460835,"pitch":108.82224678013719,"roll":35.026976211740354},"location":"Left Ankle"},{"euler":{"heading":29.634351875664727,"pitch":0.2592542309667417,"roll":5.097867555302465},"location":"Right Ankle"},{"euler":{"heading":49.02566403905064,"pitch":-155.5279328947966,"roll":58.3629850399613},"location":"Right Hip"},{"euler":{"heading":90.50696849005232,"pitch":-129.7123050688524,"roll":-52.02725552830615},"location":"Right Knee"},{"euler":{"heading":17.988365912814647,"pitch":-126.82366485426931,"roll":58.16305421298358},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.148"} +{"sensors":[{"euler":{"heading":117.85161947874374,"pitch":138.30751617925353,"roll":29.157167569940643},"location":"Left Knee"},{"euler":{"heading":43.86176406073042,"pitch":108.25651539422542,"roll":33.9126375761498},"location":"Left Ankle"},{"euler":{"heading":26.922127428172754,"pitch":-0.20536007164784187,"roll":4.725894146720507},"location":"Right Ankle"},{"euler":{"heading":49.85084747086641,"pitch":-155.51338516511206,"roll":58.71490111187109},"location":"Right Hip"},{"euler":{"heading":92.70392910625333,"pitch":-100.76818797847898,"roll":-53.130490066233065},"location":"Right Knee"},{"euler":{"heading":18.129570305682428,"pitch":-126.45399372573465,"roll":58.040528156477166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.249"} +{"sensors":[{"euler":{"heading":129.49917981479683,"pitch":138.1593575742311,"roll":29.89727108527018},"location":"Left Knee"},{"euler":{"heading":44.100653062051094,"pitch":107.87539592996809,"roll":33.362089003313415},"location":"Left Ankle"},{"euler":{"heading":24.14250209888598,"pitch":-1.0419495086086086,"roll":4.4665936787084135},"location":"Right Ankle"},{"euler":{"heading":51.19832652420655,"pitch":-154.85218275614093,"roll":58.260451203873004},"location":"Right Hip"},{"euler":{"heading":94.24714982935774,"pitch":-74.52981530690408,"roll":-54.08716235145934},"location":"Right Knee"},{"euler":{"heading":18.58407084272995,"pitch":-126.73185421965533,"roll":58.1912509169599},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.350"} +{"sensors":[{"euler":{"heading":139.32156425117245,"pitch":137.68641001042397,"roll":30.400503698000538},"location":"Left Knee"},{"euler":{"heading":45.09292633670715,"pitch":107.63754596222951,"roll":33.63085600391348},"location":"Left Ankle"},{"euler":{"heading":23.584741820982703,"pitch":-1.6562710576967055,"roll":4.5113886057776345},"location":"Right Ankle"},{"euler":{"heading":52.56917974311254,"pitch":-153.93283056307402,"roll":57.33198904468815},"location":"Right Hip"},{"euler":{"heading":93.5368951395117,"pitch":-81.91699650390015,"roll":-54.56044095706363},"location":"Right Knee"},{"euler":{"heading":19.188082382928485,"pitch":-127.62537647908697,"roll":58.54761256867366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.450"} +{"sensors":[{"euler":{"heading":147.90514488391113,"pitch":136.94335024268716,"roll":30.57049158179339},"location":"Left Knee"},{"euler":{"heading":46.33346075815365,"pitch":107.53528229895558,"roll":34.1891578685866},"location":"Left Ankle"},{"euler":{"heading":25.173234137568198,"pitch":-1.9505617819373835,"roll":5.2237421803354405},"location":"Right Ankle"},{"euler":{"heading":52.930633484404346,"pitch":-153.42197828729505,"roll":56.33726877774486},"location":"Right Hip"},{"euler":{"heading":90.7199037095373,"pitch":-86.50277907491684,"roll":-53.66289537224679},"location":"Right Knee"},{"euler":{"heading":19.712372909875338,"pitch":-129.10572226474028,"roll":58.935473729930244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.551"} +{"sensors":[{"euler":{"heading":121.33049263594293,"pitch":136.00343513432955,"roll":30.26057538678822},"location":"Left Knee"},{"euler":{"heading":47.854560134304485,"pitch":107.60921507212308,"roll":35.1699759218081},"location":"Left Ankle"},{"euler":{"heading":28.1207401215536,"pitch":-1.9077021275867976,"roll":5.767262947100816},"location":"Right Ankle"},{"euler":{"heading":52.388303037762896,"pitch":-153.3283298670325,"roll":55.67498350351028},"location":"Right Hip"},{"euler":{"heading":87.16483960522085,"pitch":-89.87944944565612,"roll":-51.816245214701425},"location":"Right Knee"},{"euler":{"heading":20.39730964800461,"pitch":-130.95654672864322,"roll":59.4588535495613},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.651"} +{"sensors":[{"euler":{"heading":100.38570357016874,"pitch":134.89133584189085,"roll":29.34399202995981},"location":"Left Knee"},{"euler":{"heading":49.8372527859715,"pitch":108.14579429825105,"roll":36.860110263390695},"location":"Left Ankle"},{"euler":{"heading":30.17149103411108,"pitch":-1.7381227267998867,"roll":6.068831499392192},"location":"Right Ankle"},{"euler":{"heading":51.36754862145109,"pitch":-153.46356612750168,"roll":55.37890875309816},"location":"Right Hip"},{"euler":{"heading":84.97928453291757,"pitch":-93.28568746062555,"roll":-50.35334327611793},"location":"Right Knee"},{"euler":{"heading":21.356470711196035,"pitch":-133.2080064992909,"roll":60.04540774953031},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.752"} +{"sensors":[{"euler":{"heading":84.68678823929828,"pitch":133.96231390697372,"roll":27.36120891451439},"location":"Left Knee"},{"euler":{"heading":52.28113181375962,"pitch":110.14143960367502,"roll":39.441790156928015},"location":"Left Ankle"},{"euler":{"heading":31.053972417984856,"pitch":-1.5608933227878488,"roll":6.1811900608488894},"location":"Right Ankle"},{"euler":{"heading":50.85280263288492,"pitch":-153.55621151112945,"roll":55.330974472278434},"location":"Right Hip"},{"euler":{"heading":84.28963633919444,"pitch":-96.84947726768705,"roll":-49.624130532623774},"location":"Right Knee"},{"euler":{"heading":21.1846362138678,"pitch":-133.4973758936867,"roll":60.37402556780306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.853"} +{"sensors":[{"euler":{"heading":72.39733775209388,"pitch":133.26435249408507,"roll":25.370842736645823},"location":"Left Knee"},{"euler":{"heading":54.47837244171846,"pitch":111.98886645849872,"roll":42.09893456369181},"location":"Left Ankle"},{"euler":{"heading":31.348485061526905,"pitch":-1.4361946977433782,"roll":6.134227832332038},"location":"Right Ankle"},{"euler":{"heading":49.920032724546886,"pitch":-153.81245793094368,"roll":55.79295108416042},"location":"Right Hip"},{"euler":{"heading":84.77132729377058,"pitch":-100.41908968957574,"roll":-49.517197703421026},"location":"Right Knee"},{"euler":{"heading":20.068907865080693,"pitch":-131.850775299946,"roll":60.09468880229553},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.953"} +{"sensors":[{"euler":{"heading":60.039860384978105,"pitch":133.53647136487606,"roll":24.764816818423295},"location":"Left Knee"},{"euler":{"heading":54.27984730452261,"pitch":110.98516854743073,"roll":43.04671794838857},"location":"Left Ankle"},{"euler":{"heading":31.39343654054001,"pitch":-1.4957719407515049,"roll":5.931209576309906},"location":"Right Ankle"},{"euler":{"heading":49.57839858452386,"pitch":-153.9967664690811,"roll":56.425013281322144},"location":"Right Hip"},{"euler":{"heading":85.49272724009045,"pitch":-103.76804916082583,"roll":-49.866334922998604},"location":"Right Knee"},{"euler":{"heading":18.608382411426795,"pitch":-130.09326861615713,"roll":59.28306500822249},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.53"} +{"sensors":[{"euler":{"heading":80.74799145225671,"pitch":134.93014932060916,"roll":25.7265472046985},"location":"Left Knee"},{"euler":{"heading":51.34678178675815,"pitch":109.84508032452908,"roll":41.115994237250185},"location":"Left Ankle"},{"euler":{"heading":31.002180613540304,"pitch":-1.626970902269806,"roll":5.7356128008043115},"location":"Right Ankle"},{"euler":{"heading":49.62566084341588,"pitch":-153.99707405845746,"roll":57.151528609502414},"location":"Right Hip"},{"euler":{"heading":86.44607249254834,"pitch":-107.2027200420673,"roll":-50.497361795840085},"location":"Right Knee"},{"euler":{"heading":17.650318071501157,"pitch":-128.5088899261531,"roll":58.53675624898512},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.154"} +{"sensors":[{"euler":{"heading":95.97370201437096,"pitch":137.1722295273898,"roll":27.256722209204938},"location":"Left Knee"},{"euler":{"heading":47.41130158032976,"pitch":108.39132606361973,"roll":37.876658255040645},"location":"Left Ankle"},{"euler":{"heading":30.087289925891973,"pitch":-1.6743458813314271,"roll":5.463497231334255},"location":"Right Ankle"},{"euler":{"heading":49.74164812843389,"pitch":-154.41946922967136,"roll":57.856496684763954},"location":"Right Hip"},{"euler":{"heading":87.76174822919279,"pitch":-111.00626911565338,"roll":-51.43697135928342},"location":"Right Knee"},{"euler":{"heading":17.383097800517685,"pitch":-127.37249051657469,"roll":58.039799280936045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.255"} +{"sensors":[{"euler":{"heading":109.7246836250491,"pitch":138.57082942137646,"roll":28.653230051049988},"location":"Left Knee"},{"euler":{"heading":44.914262219474715,"pitch":107.55148467320909,"roll":35.462705618607},"location":"Left Ankle"},{"euler":{"heading":28.41071044173984,"pitch":-1.9431360088910594,"roll":4.9853996368695634},"location":"Right Ankle"},{"euler":{"heading":50.00903231168859,"pitch":-155.27730870304453,"roll":58.61331087933876},"location":"Right Hip"},{"euler":{"heading":89.30870138634619,"pitch":-115.5419424830798,"roll":-52.74498932331226},"location":"Right Knee"},{"euler":{"heading":17.7409929742105,"pitch":-126.58794862471655,"roll":57.732802688655084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.355"} +{"sensors":[{"euler":{"heading":122.08385424609128,"pitch":139.02782577281062,"roll":29.750426579953654},"location":"Left Knee"},{"euler":{"heading":44.2073833357203,"pitch":107.04123604970837,"roll":34.265301103824164},"location":"Left Ankle"},{"euler":{"heading":25.628891086175926,"pitch":-2.3528261099914842,"roll":4.332804656712152},"location":"Right Ankle"},{"euler":{"heading":51.01274679491574,"pitch":-155.17958604282575,"roll":58.769000804234906},"location":"Right Hip"},{"euler":{"heading":91.53253946769708,"pitch":-87.81498326028787,"roll":-53.898855642457825},"location":"Right Knee"},{"euler":{"heading":17.956748152089133,"pitch":-125.97316114107808,"roll":57.734438581554905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.456"} +{"sensors":[{"euler":{"heading":132.30459986958695,"pitch":139.05490538645958,"roll":30.55300253071185},"location":"Left Knee"},{"euler":{"heading":44.193395902649,"pitch":106.56168886383489,"roll":33.62175236420239},"location":"Left Ankle"},{"euler":{"heading":23.13710936438887,"pitch":-2.830560009410891,"roll":3.9444281823134326},"location":"Right Ankle"},{"euler":{"heading":52.34588357215907,"pitch":-154.34205048250175,"roll":58.18455320713306},"location":"Right Hip"},{"euler":{"heading":93.09182212226143,"pitch":-62.42233818131148,"roll":-54.687312290226856},"location":"Right Knee"},{"euler":{"heading":18.353384637941623,"pitch":-126.2848701818495,"roll":57.9856217804481},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.558"} +{"sensors":[{"euler":{"heading":140.86953036471485,"pitch":138.8118702109255,"roll":31.077093047585592},"location":"Left Knee"},{"euler":{"heading":44.82403623105519,"pitch":106.18126633520929,"roll":33.73502214014658},"location":"Left Ankle"},{"euler":{"heading":22.945831885358075,"pitch":-3.2390682784312803,"roll":4.086456522470212},"location":"Right Ankle"},{"euler":{"heading":53.556360660493425,"pitch":-153.38799027543448,"roll":57.108732840760645},"location":"Right Hip"},{"euler":{"heading":92.51957038442538,"pitch":-71.06825773238248,"roll":-54.99054083489174},"location":"Right Knee"},{"euler":{"heading":18.761384465694565,"pitch":-127.05444314954849,"roll":58.39127042584422},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.658"} +{"sensors":[{"euler":{"heading":148.8158993881008,"pitch":138.092547897145,"roll":31.283790651887525},"location":"Left Knee"},{"euler":{"heading":45.85170029816262,"pitch":106.0213360062575,"roll":34.22990744062882},"location":"Left Ankle"},{"euler":{"heading":24.721439072191938,"pitch":-3.275780003332219,"roll":4.648981884351243},"location":"Right Ankle"},{"euler":{"heading":53.988639060582265,"pitch":-152.87545812089516,"roll":55.909328113111144},"location":"Right Hip"},{"euler":{"heading":89.92853646553914,"pitch":-76.75736942401925,"roll":-54.05208203275611},"location":"Right Knee"},{"euler":{"heading":19.29164943021594,"pitch":-128.06591185277688,"roll":58.91885508132738},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.759"} +{"sensors":[{"euler":{"heading":155.97041618869653,"pitch":137.1503309887952,"roll":30.971420322352685},"location":"Left Knee"},{"euler":{"heading":47.204446968506275,"pitch":105.93607211360111,"roll":35.17712265587299},"location":"Left Ankle"},{"euler":{"heading":27.863771660752295,"pitch":-2.9582263784928715,"roll":5.193668910815475},"location":"Right Ankle"},{"euler":{"heading":53.52808099763395,"pitch":-152.64354754487277,"roll":55.11533674013354},"location":"Right Hip"},{"euler":{"heading":86.51092366330661,"pitch":-81.08485235788336,"roll":-52.10301214064097},"location":"Right Knee"},{"euler":{"heading":19.83284534071815,"pitch":-129.5102970530051,"roll":59.53299536295929},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.860"} +{"sensors":[{"euler":{"heading":128.29104642102794,"pitch":136.08965662351847,"roll":30.112069356583067},"location":"Left Knee"},{"euler":{"heading":49.007675455332645,"pitch":106.15618432324482,"roll":36.747671012469674},"location":"Left Ankle"},{"euler":{"heading":30.365366457698975,"pitch":-2.492520788740008,"roll":5.531964628182543},"location":"Right Ankle"},{"euler":{"heading":52.2829616461586,"pitch":-152.68340036447694,"roll":54.66441257760495},"location":"Right Hip"},{"euler":{"heading":83.77798442070852,"pitch":-85.32173042698352,"roll":-50.250167755583014},"location":"Right Knee"},{"euler":{"heading":20.632694418017966,"pitch":-131.7744797511117,"roll":60.22545767355627},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.962"} +{"sensors":[{"euler":{"heading":107.02435600484293,"pitch":135.195277208333,"roll":28.210800943579077},"location":"Left Knee"},{"euler":{"heading":51.26299226777016,"pitch":107.66927136086616,"roll":39.3400466809775},"location":"Left Ankle"},{"euler":{"heading":31.34351417059304,"pitch":-1.9165374086692255,"roll":5.624048917393302},"location":"Right Ankle"},{"euler":{"heading":51.530998125338805,"pitch":-152.61839195813008,"roll":54.45257769242069},"location":"Right Hip"},{"euler":{"heading":83.06225550798204,"pitch":-89.80955963891446,"roll":-49.16216050278575},"location":"Right Knee"},{"euler":{"heading":20.811985358281735,"pitch":-133.0503922557028,"roll":60.64396379407396},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.62"} +{"sensors":[{"euler":{"heading":91.34129765844149,"pitch":133.74982764953975,"roll":25.98503939203195},"location":"Left Knee"},{"euler":{"heading":54.28086881014765,"pitch":111.10739316499814,"roll":41.994978812705746},"location":"Left Ankle"},{"euler":{"heading":31.859045682716605,"pitch":-1.3656178645687278,"roll":5.594412850935646},"location":"Right Ankle"},{"euler":{"heading":50.451557221895605,"pitch":-152.70820016194656,"roll":54.78408065500941},"location":"Right Hip"},{"euler":{"heading":83.79013044139643,"pitch":-94.3104372113574,"roll":-48.77812592496778},"location":"Right Knee"},{"euler":{"heading":20.209679823641704,"pitch":-131.74357632681242,"roll":60.618378634149245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.164"} +{"sensors":[{"euler":{"heading":77.28718387342487,"pitch":133.500141124186,"roll":24.654713611082517},"location":"Left Knee"},{"euler":{"heading":55.39042737827867,"pitch":111.34093501111185,"roll":43.636361356781016},"location":"Left Ankle"},{"euler":{"heading":32.114693707830625,"pitch":-0.8908857296070434,"roll":5.448689760521717},"location":"Right Ankle"},{"euler":{"heading":49.91848533993665,"pitch":-152.7062310606566,"roll":55.41698665105199},"location":"Right Hip"},{"euler":{"heading":84.84984763580488,"pitch":-98.55558307698905,"roll":-48.84084883240591},"location":"Right Knee"},{"euler":{"heading":18.806880643935546,"pitch":-130.00221224460168,"roll":59.84611850003255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.265"} +{"sensors":[{"euler":{"heading":87.26008731263084,"pitch":134.6297361481823,"roll":25.186964792242104},"location":"Left Knee"},{"euler":{"heading":53.112247834855175,"pitch":110.20267637685178,"roll":42.6126876973993},"location":"Left Ankle"},{"euler":{"heading":31.907846497698877,"pitch":-0.3067344537361105,"roll":5.269266106726753},"location":"Right Ankle"},{"euler":{"heading":49.648475279175926,"pitch":-152.64499619374035,"roll":56.17399204992682},"location":"Right Hip"},{"euler":{"heading":86.41908921568827,"pitch":-102.97360461284892,"roll":-49.15325345596921},"location":"Right Knee"},{"euler":{"heading":17.1885909068435,"pitch":-128.42054997721368,"roll":58.826272939258985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.365"} +{"sensors":[{"euler":{"heading":96.8289823457208,"pitch":136.84094005831673,"roll":26.613889533425873},"location":"Left Knee"},{"euler":{"heading":48.868753865812955,"pitch":108.80408543371678,"roll":39.47473647913087},"location":"Left Ankle"},{"euler":{"heading":31.19745723444246,"pitch":0.35264624530965416,"roll":5.0058398844032705},"location":"Right Ankle"},{"euler":{"heading":49.474953797576774,"pitch":-152.67282059548745,"roll":57.04329190562264},"location":"Right Hip"},{"euler":{"heading":88.44714595876744,"pitch":-107.60751011052838,"roll":-49.80454968673565},"location":"Right Knee"},{"euler":{"heading":16.53535680060061,"pitch":-127.2568820526455,"roll":58.10558056706958},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.466"} +{"sensors":[{"euler":{"heading":105.09204528731254,"pitch":138.80613152329462,"roll":27.863461016580928},"location":"Left Knee"},{"euler":{"heading":45.57254487149758,"pitch":107.94281626330209,"roll":36.593665472290766},"location":"Left Ankle"},{"euler":{"heading":29.95586213607635,"pitch":0.776889485733352,"roll":4.5296597559925615},"location":"Right Ankle"},{"euler":{"heading":49.433944827726734,"pitch":-153.01309950722336,"roll":58.037985447189534},"location":"Right Hip"},{"euler":{"heading":90.52388813663023,"pitch":-112.63295877657254,"roll":-50.821953563245714},"location":"Right Knee"},{"euler":{"heading":16.541512422220034,"pitch":-126.64386071272659,"roll":57.61991261400276},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.567"} +{"sensors":[{"euler":{"heading":118.0171708887185,"pitch":139.645025699027,"roll":28.90498749555257},"location":"Left Knee"},{"euler":{"heading":44.40155660943492,"pitch":107.47263125193106,"roll":35.15788172196003},"location":"Left Ankle"},{"euler":{"heading":27.65505898017335,"pitch":0.5067927824534189,"roll":4.158229301374593},"location":"Right Ankle"},{"euler":{"heading":49.810592954049504,"pitch":-153.18426733869603,"roll":58.789426152646286},"location":"Right Hip"},{"euler":{"heading":92.6404938952727,"pitch":-118.77964978104515,"roll":-52.12902197090153},"location":"Right Knee"},{"euler":{"heading":16.641677560445416,"pitch":-126.15455136379104,"roll":57.44203732250035},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.667"} +{"sensors":[{"euler":{"heading":129.45042859198747,"pitch":139.69068321695588,"roll":29.740423312260674},"location":"Left Knee"},{"euler":{"heading":44.26320515255393,"pitch":107.24336770464762,"roll":34.298629552971725},"location":"Left Ankle"},{"euler":{"heading":24.55832111612742,"pitch":-0.29646990959044073,"roll":3.7270062177978667},"location":"Right Ankle"},{"euler":{"heading":50.9334991725337,"pitch":-152.63760654400843,"roll":58.530027515151026},"location":"Right Hip"},{"euler":{"heading":94.40924022239007,"pitch":-90.91711782523964,"roll":-53.311755598266366},"location":"Right Knee"},{"euler":{"heading":17.12202827688722,"pitch":-126.1933574459792,"roll":57.59618370825686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.768"} +{"sensors":[{"euler":{"heading":139.48973257004408,"pitch":139.155302727596,"roll":30.353700979132626},"location":"Left Knee"},{"euler":{"heading":44.78012573896854,"pitch":107.20238144786255,"roll":33.96701175125925},"location":"Left Ankle"},{"euler":{"heading":23.259339523933782,"pitch":-0.9579239168741084,"roll":3.58056080895366},"location":"Right Ankle"},{"euler":{"heading":52.3939565504257,"pitch":-151.83973612597356,"roll":57.65915623711616},"location":"Right Hip"},{"euler":{"heading":94.07984080214149,"pitch":-97.24486398919487,"roll":-54.019318016593694},"location":"Right Knee"},{"euler":{"heading":18.050416604502644,"pitch":-126.7932763268389,"roll":58.03293231226001},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.868"} +{"sensors":[{"euler":{"heading":148.2865985321221,"pitch":138.26656934712892,"roll":30.664883043241364},"location":"Left Knee"},{"euler":{"heading":45.73845743614081,"pitch":107.33176261900797,"roll":34.02960283207954},"location":"Left Ankle"},{"euler":{"heading":24.336045560627834,"pitch":-1.4672775489772945,"roll":4.030686155280576},"location":"Right Ankle"},{"euler":{"heading":53.26278553564269,"pitch":-151.45070029610218,"roll":56.44900968019947},"location":"Right Hip"},{"euler":{"heading":91.36066217613781,"pitch":-100.52121705225007,"roll":-53.375387168458154},"location":"Right Knee"},{"euler":{"heading":18.959212642854812,"pitch":-128.05551019338407,"roll":58.55893200709795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.968"} +{"sensors":[{"euler":{"heading":121.8628028481678,"pitch":137.15322066372252,"roll":30.536237711776092},"location":"Left Knee"},{"euler":{"heading":47.004708299656855,"pitch":107.6390862602885,"roll":34.520247397720176},"location":"Left Ankle"},{"euler":{"heading":27.030970111556712,"pitch":-1.3574294247352299,"roll":4.759039974817499},"location":"Right Ankle"},{"euler":{"heading":53.00509661637028,"pitch":-151.36026500461622,"roll":55.65718890887212},"location":"Right Hip"},{"euler":{"heading":87.5824763999997,"pitch":-102.7011266795546,"roll":-51.472851899638705},"location":"Right Knee"},{"euler":{"heading":19.857911843799105,"pitch":-129.71491592508855,"roll":59.20730994308204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.69"} +{"sensors":[{"euler":{"heading":100.71454305281667,"pitch":135.85445911341253,"roll":29.95015045518934},"location":"Left Knee"},{"euler":{"heading":48.70738757629053,"pitch":108.1430974538566,"roll":35.624148583522256},"location":"Left Ankle"},{"euler":{"heading":29.82615684256567,"pitch":-0.9845464440695688,"roll":5.275421811143842},"location":"Right Ankle"},{"euler":{"heading":51.89635975985096,"pitch":-151.65298674344317,"roll":55.202283562057886},"location":"Right Hip"},{"euler":{"heading":84.482956709054,"pitch":-104.92337549383251,"roll":-49.454029768651566},"location":"Right Knee"},{"euler":{"heading":20.90886707113994,"pitch":-131.97152488420068,"roll":59.912917130962576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.170"} +{"sensors":[{"euler":{"heading":84.67066688229716,"pitch":134.59600784751072,"roll":28.31398748522413},"location":"Left Knee"},{"euler":{"heading":50.73768742238037,"pitch":109.52663261119518,"roll":37.70508724259679},"location":"Left Ankle"},{"euler":{"heading":31.098205078735113,"pitch":-0.7065870040774185,"roll":5.564323636883177},"location":"Right Ankle"},{"euler":{"heading":51.018253771881376,"pitch":-151.9594805030675,"roll":55.09386173965159},"location":"Right Hip"},{"euler":{"heading":83.2173692057755,"pitch":-107.3325686738086,"roll":-48.29312238915847},"location":"Right Knee"},{"euler":{"heading":21.805059908159116,"pitch":-133.73404463386058,"roll":60.593020643515715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.271"} +{"sensors":[{"euler":{"heading":73.17486351650109,"pitch":133.24918089326917,"roll":26.024902553344873},"location":"Left Knee"},{"euler":{"heading":54.32637438684974,"pitch":113.34098668028004,"roll":40.503654148082646},"location":"Left Ankle"},{"euler":{"heading":31.66413217408986,"pitch":-0.44912312650276087,"roll":5.6533297779161815},"location":"Right Ankle"},{"euler":{"heading":49.97821493718918,"pitch":-152.39734237355114,"roll":55.47732345212761},"location":"Right Hip"},{"euler":{"heading":83.38800498911284,"pitch":-109.85147007504982,"roll":-47.84906761113167},"location":"Right Knee"},{"euler":{"heading":21.26656579204177,"pitch":-132.74269601373163,"roll":60.732804752641485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.374"} +{"sensors":[{"euler":{"heading":63.131909679326256,"pitch":132.79147012374034,"roll":24.351902257758926},"location":"Left Knee"},{"euler":{"heading":55.855749443613526,"pitch":114.13494810856086,"roll":42.63767198428947},"location":"Left Ankle"},{"euler":{"heading":31.842137895197276,"pitch":-0.23398640306297533,"roll":5.58523652614631},"location":"Right Ankle"},{"euler":{"heading":49.310936812598705,"pitch":-152.7162636686676,"roll":56.17508154889851},"location":"Right Hip"},{"euler":{"heading":84.31844729587287,"pitch":-112.39830002008921,"roll":-47.91693281145543},"location":"Right Knee"},{"euler":{"heading":19.93385125493544,"pitch":-131.12626713132292,"roll":60.139909686876614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.475"} +{"sensors":[{"euler":{"heading":85.3189985491353,"pitch":133.59608711822165,"roll":24.502732119269385},"location":"Left Knee"},{"euler":{"heading":53.73701064583223,"pitch":112.84387004125816,"roll":41.9289749556022},"location":"Left Ankle"},{"euler":{"heading":31.59549848191387,"pitch":0.008247917332432408,"roll":5.4998394091447755},"location":"Right Ankle"},{"euler":{"heading":48.95482005757395,"pitch":-152.98701167760092,"roll":57.01455122797325},"location":"Right Hip"},{"euler":{"heading":85.65104197135629,"pitch":-115.10714388371262,"roll":-48.38262325827689},"location":"Right Knee"},{"euler":{"heading":18.628594974391177,"pitch":-129.3603902314401,"roll":59.347765490179405},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.576"} +{"sensors":[{"euler":{"heading":100.29907777551298,"pitch":135.5905155076441,"roll":25.91151013335478},"location":"Left Knee"},{"euler":{"heading":49.49921512493792,"pitch":111.21781698737536,"roll":38.97496801101445},"location":"Left Ankle"},{"euler":{"heading":30.92387109769569,"pitch":0.3166193312503869,"roll":5.303659533769059},"location":"Right Ankle"},{"euler":{"heading":48.79402881556614,"pitch":-153.374692186269,"roll":57.85740072605366},"location":"Right Hip"},{"euler":{"heading":87.3248091819782,"pitch":-118.17662117899444,"roll":-49.15478808745472},"location":"Right Knee"},{"euler":{"heading":17.898735093268712,"pitch":-128.02408576929608,"roll":58.7558254084729},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.677"} +{"sensors":[{"euler":{"heading":112.27343019683593,"pitch":137.68059881806053,"roll":27.346801554602322},"location":"Left Knee"},{"euler":{"heading":45.97580501642874,"pitch":110.09721525313991,"roll":36.04631251873574},"location":"Left Ankle"},{"euler":{"heading":29.53565495481452,"pitch":0.49458670888505984,"roll":5.031016331758529},"location":"Right Ankle"},{"euler":{"heading":48.82884173583336,"pitch":-153.98708815222412,"roll":58.74492569148352},"location":"Right Hip"},{"euler":{"heading":89.23631093805075,"pitch":-121.8221295990653,"roll":-50.31723479212305},"location":"Right Knee"},{"euler":{"heading":17.80647776844165,"pitch":-127.36781077381018,"roll":58.33315442569347},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.778"} +{"sensors":[{"euler":{"heading":123.73675769637093,"pitch":138.567106128323,"roll":28.52665483893026},"location":"Left Knee"},{"euler":{"heading":44.65445657617212,"pitch":109.35669482210682,"roll":34.62692382966365},"location":"Left Ankle"},{"euler":{"heading":27.19803295466949,"pitch":-0.03403073069207019,"roll":4.665402140599954},"location":"Right Ankle"},{"euler":{"heading":49.41620543348036,"pitch":-154.4163785396126,"roll":59.280486070780555},"location":"Right Hip"},{"euler":{"heading":91.104657175124,"pitch":-126.79743606489221,"roll":-51.880400300314825},"location":"Right Knee"},{"euler":{"heading":17.897406185177584,"pitch":-126.90476065377457,"roll":58.17066636923239},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.878"} +{"sensors":[{"euler":{"heading":134.0444404032935,"pitch":138.7153006613077,"roll":29.356462366716237},"location":"Left Knee"},{"euler":{"heading":44.262193602042174,"pitch":108.79363187651386,"roll":33.746835297271346},"location":"Left Ankle"},{"euler":{"heading":24.083038476453805,"pitch":-0.7977382434936328,"roll":4.090809358292837},"location":"Right Ankle"},{"euler":{"heading":50.70570002379472,"pitch":-153.85952880029544,"roll":59.039773780745044},"location":"Right Hip"},{"euler":{"heading":93.28249556256705,"pitch":-98.34462673551869,"roll":-53.06894812182505},"location":"Right Knee"},{"euler":{"heading":18.29290488505843,"pitch":-126.94949213489267,"roll":58.32684566525099},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.979"} +{"sensors":[{"euler":{"heading":142.8529688083699,"pitch":138.4332266672758,"roll":30.006264288573593},"location":"Left Knee"},{"euler":{"heading":44.440414947988266,"pitch":108.31980209542573,"roll":33.36663665148146},"location":"Left Ankle"},{"euler":{"heading":22.786944311405303,"pitch":-1.5244699844698206,"roll":3.915702511718976},"location":"Right Ankle"},{"euler":{"heading":52.320395701302566,"pitch":-152.98704027633778,"roll":58.12041292896977},"location":"Right Hip"},{"euler":{"heading":93.56748973240236,"pitch":-104.18580807599496,"roll":-53.97202150347836},"location":"Right Knee"},{"euler":{"heading":18.967511937949244,"pitch":-127.72124137502331,"roll":58.71192603047665},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.80"} +{"sensors":[{"euler":{"heading":150.71342076821156,"pitch":137.73803217579382,"roll":30.38022277887855},"location":"Left Knee"},{"euler":{"heading":45.12142007731897,"pitch":108.05156864112045,"roll":33.4031040600964},"location":"Left Ankle"},{"euler":{"heading":23.61631165011154,"pitch":-2.2177432710303955,"roll":4.435017759316395},"location":"Right Ankle"},{"euler":{"heading":53.38685852911652,"pitch":-152.4591406905679,"roll":56.86044405760793},"location":"Right Hip"},{"euler":{"heading":91.20274321574394,"pitch":-106.80784968200106,"roll":-53.67147226698953},"location":"Right Knee"},{"euler":{"heading":19.727965222214454,"pitch":-128.96654633024608,"roll":59.220898961835665},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.181"} +{"sensors":[{"euler":{"heading":123.54072624575073,"pitch":136.74630424104961,"roll":30.367835347198685},"location":"Left Knee"},{"euler":{"heading":46.20815871123622,"pitch":107.99910071717139,"roll":33.84038342769545},"location":"Left Ankle"},{"euler":{"heading":26.174113929366033,"pitch":-2.2921553813360953,"roll":5.184362642801208},"location":"Right Ankle"},{"euler":{"heading":53.5644761347871,"pitch":-152.21332450901164,"roll":55.83923577928779},"location":"Right Hip"},{"euler":{"heading":87.16779776194313,"pitch":-108.31245487182808,"roll":-51.824006233001},"location":"Right Knee"},{"euler":{"heading":20.505201538275415,"pitch":-130.72953966446244,"roll":59.78847142003211},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.282"} +{"sensors":[{"euler":{"heading":101.90412036018915,"pitch":135.61110204378463,"roll":29.8453298133886},"location":"Left Knee"},{"euler":{"heading":47.69250987903147,"pitch":108.17754549007874,"roll":34.81870677665304},"location":"Left Ankle"},{"euler":{"heading":29.27914193547822,"pitch":-1.9908799728117033,"roll":5.69001223163887},"location":"Right Ankle"},{"euler":{"heading":52.538683634358414,"pitch":-152.33571941469583,"roll":55.349177315260086},"location":"Right Hip"},{"euler":{"heading":83.35863768725217,"pitch":-109.68582522561994,"roll":-49.539913576144485},"location":"Right Knee"},{"euler":{"heading":21.3675234739035,"pitch":-133.09177307872673,"roll":60.397178514401375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.382"} +{"sensors":[{"euler":{"heading":85.10366848745117,"pitch":134.6136124050739,"roll":28.415333050364076},"location":"Left Knee"},{"euler":{"heading":49.34190244908141,"pitch":108.80869502012611,"roll":36.59576333686938},"location":"Left Ankle"},{"euler":{"heading":30.739489485138535,"pitch":-1.7182633640154283,"roll":5.9870386369643205},"location":"Right Ankle"},{"euler":{"heading":51.53824255053899,"pitch":-152.57726828223917,"roll":55.11382139119983},"location":"Right Hip"},{"euler":{"heading":81.42281779916769,"pitch":-111.52308459399615,"roll":-47.984391510651626},"location":"Right Knee"},{"euler":{"heading":22.246005653211007,"pitch":-135.73465037175723,"roll":60.977708932031064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.483"} +{"sensors":[{"euler":{"heading":73.17268630006222,"pitch":133.24132958817466,"roll":26.22956847435097},"location":"Left Knee"},{"euler":{"heading":52.91002302586452,"pitch":112.17410108331704,"roll":39.48201866945995},"location":"Left Ankle"},{"euler":{"heading":31.346635007695095,"pitch":-1.3110560830307074,"roll":6.059615277091125},"location":"Right Ankle"},{"euler":{"heading":50.71908248475456,"pitch":-152.70071491063243,"roll":55.400259521407214},"location":"Right Hip"},{"euler":{"heading":81.27058972818499,"pitch":-113.70281657153781,"roll":-47.17731443021672},"location":"Right Knee"},{"euler":{"heading":21.823806837632215,"pitch":-135.92041504026784,"roll":61.20575105781699},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.583"} +{"sensors":[{"euler":{"heading":63.52251728002274,"pitch":132.52871744562924,"roll":24.31712296693747},"location":"Left Knee"},{"euler":{"heading":55.171667107406705,"pitch":113.70926502102765,"roll":42.10560980399167},"location":"Left Ankle"},{"euler":{"heading":31.52271848619713,"pitch":-0.841514133280508,"roll":5.940983533667114},"location":"Right Ankle"},{"euler":{"heading":49.911613043031686,"pitch":-152.88970768723465,"roll":56.09345770332823},"location":"Right Hip"},{"euler":{"heading":82.3052805366146,"pitch":-115.99624832645205,"roll":-46.99992410304915},"location":"Right Knee"},{"euler":{"heading":20.604150688346774,"pitch":-134.34058841793637,"roll":60.80567931660637},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.683"} +{"sensors":[{"euler":{"heading":52.660206239244665,"pitch":133.01944623358688,"roll":23.995636595911062},"location":"Left Knee"},{"euler":{"heading":54.40161814715675,"pitch":112.77972663586876,"roll":42.61280544285292},"location":"Left Ankle"},{"euler":{"heading":31.440973756221652,"pitch":-0.2858405571509207,"roll":5.732566395983989},"location":"Right Ankle"},{"euler":{"heading":49.45259840603769,"pitch":-152.94776169586686,"roll":56.95852776721378},"location":"Right Hip"},{"euler":{"heading":83.8480852313932,"pitch":-118.46390786776739,"roll":-47.19018116668569},"location":"Right Knee"},{"euler":{"heading":19.07636518812489,"pitch":-132.36407437844238,"roll":59.93236791295961},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.784"} +{"sensors":[{"euler":{"heading":74.07533609683999,"pitch":134.79524339149543,"roll":25.208894419533983},"location":"Left Knee"},{"euler":{"heading":50.69143355143464,"pitch":111.25490014039117,"roll":40.426092243782435},"location":"Left Ankle"},{"euler":{"heading":30.904361958438948,"pitch":0.23481053627700188,"roll":5.490467153651171},"location":"Right Ankle"},{"euler":{"heading":49.24917164412078,"pitch":-153.10730885867682,"roll":57.860214261237104},"location":"Right Hip"},{"euler":{"heading":85.74153463700607,"pitch":-121.1784014052462,"roll":-47.760675652748944},"location":"Right Knee"},{"euler":{"heading":18.021611242232726,"pitch":-130.65881038945875,"roll":59.15402080368901},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.885"} +{"sensors":[{"euler":{"heading":90.73606079335195,"pitch":137.12744551335928,"roll":26.711022105735385},"location":"Left Knee"},{"euler":{"heading":46.517984704253564,"pitch":109.89295856918734,"roll":37.07996921379503},"location":"Left Ankle"},{"euler":{"heading":29.787219735965472,"pitch":0.640536351211598,"roll":5.2297804294918935},"location":"Right Ankle"},{"euler":{"heading":49.21340280155436,"pitch":-153.5905616446006,"roll":58.83665120370139},"location":"Right Hip"},{"euler":{"heading":87.82696662656512,"pitch":-124.28866279533844,"roll":-48.74063588995564},"location":"Right Knee"},{"euler":{"heading":17.8773620867731,"pitch":-129.7935245734238,"roll":58.65779966927015},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.986"} +{"sensors":[{"euler":{"heading":105.73337410004747,"pitch":138.5005789450698,"roll":28.040533474877734},"location":"Left Knee"},{"euler":{"heading":44.39090110470088,"pitch":109.201594577394,"roll":35.02123101854046},"location":"Left Ankle"},{"euler":{"heading":27.790458917987436,"pitch":0.36557430634390853,"roll":4.732297974203149},"location":"Right Ankle"},{"euler":{"heading":49.558669692628946,"pitch":-154.4023994272371,"roll":59.60724381336035},"location":"Right Hip"},{"euler":{"heading":89.74854713433349,"pitch":-128.2148333389377,"roll":-50.28136132462286},"location":"Right Knee"},{"euler":{"heading":17.979227418032266,"pitch":-129.31970499953374,"roll":58.32174237638634},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.86"} +{"sensors":[{"euler":{"heading":119.13087567421267,"pitch":138.80967986937586,"roll":29.035489411954007},"location":"Left Knee"},{"euler":{"heading":43.87398074903591,"pitch":108.7067932990868,"roll":34.00256381597727},"location":"Left Ankle"},{"euler":{"heading":24.53838966948296,"pitch":-0.2637316833503577,"roll":4.002709040362205},"location":"Right Ankle"},{"euler":{"heading":50.626154451880396,"pitch":-154.0430746014622,"roll":59.71000309882476},"location":"Right Hip"},{"euler":{"heading":92.19589537411257,"pitch":-99.59152235872688,"roll":-51.59823637343364},"location":"Right Knee"},{"euler":{"heading":18.217212638117,"pitch":-128.91473870613214,"roll":58.36248034941672},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.187"} +{"sensors":[{"euler":{"heading":130.8082269246334,"pitch":138.47106559955438,"roll":29.85851124404716},"location":"Left Knee"},{"euler":{"heading":44.312796532272344,"pitch":108.49092695107844,"roll":33.48507816995699},"location":"Left Ankle"},{"euler":{"heading":22.23826268887508,"pitch":-0.9580264499670389,"roll":3.687350039075211},"location":"Right Ankle"},{"euler":{"heading":52.15419364437975,"pitch":-153.15907160511344,"roll":59.00037088613441},"location":"Right Hip"},{"euler":{"heading":93.12368075767495,"pitch":-106.37830291490499,"roll":-52.68877355638298},"location":"Right Knee"},{"euler":{"heading":18.88175397840457,"pitch":-129.22011456122266,"roll":58.702553814728624},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.287"} +{"sensors":[{"euler":{"heading":140.82741805020203,"pitch":137.77821699021516,"roll":30.38921211414265},"location":"Left Knee"},{"euler":{"heading":45.18934017911389,"pitch":108.37288387168353,"roll":33.456771069759114},"location":"Left Ankle"},{"euler":{"heading":22.376325823486752,"pitch":-1.675456095432613,"roll":3.800325148938829},"location":"Right Ankle"},{"euler":{"heading":53.4588582334092,"pitch":-152.44239363154176,"roll":57.77560223522383},"location":"Right Hip"},{"euler":{"heading":91.74898497875552,"pitch":-109.3863143827628,"roll":-52.979972482972215},"location":"Right Knee"},{"euler":{"heading":19.693418544426542,"pitch":-130.1801519386028,"roll":59.11729335540688},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.388"} +{"sensors":[{"euler":{"heading":115.4282421044042,"pitch":136.81239301625104,"roll":30.542438186099087},"location":"Left Knee"},{"euler":{"heading":46.257826308714755,"pitch":108.35524924535467,"roll":33.74625798429275},"location":"Left Ankle"},{"euler":{"heading":24.492940436226903,"pitch":-2.0689920740514087,"roll":4.467357734503577},"location":"Right Ankle"},{"euler":{"heading":54.02176502471427,"pitch":-152.079264360203,"roll":56.57815999231626},"location":"Right Hip"},{"euler":{"heading":88.12041106834371,"pitch":-110.65753393436756,"roll":-51.537167846509384},"location":"Right Knee"},{"euler":{"heading":20.536367832500698,"pitch":-131.64934190532037,"roll":59.63526821259796},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.489"} +{"sensors":[{"euler":{"heading":95.17244759918697,"pitch":135.62334166841552,"roll":30.270862413910088},"location":"Left Knee"},{"euler":{"heading":47.697505807812334,"pitch":108.54143257067093,"roll":34.50761331902495},"location":"Left Ankle"},{"euler":{"heading":27.742075611266873,"pitch":-2.07431982363711,"roll":5.094720127906487},"location":"Right Ankle"},{"euler":{"heading":53.41251711789434,"pitch":-152.0360524983838,"roll":55.91674119058484},"location":"Right Hip"},{"euler":{"heading":84.11485519067658,"pitch":-111.60568836612443,"roll":-49.42304805174536},"location":"Right Knee"},{"euler":{"heading":21.4465501701548,"pitch":-133.63275912965213,"roll":60.25854875012033},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.590"} +{"sensors":[{"euler":{"heading":79.38964173037827,"pitch":134.35714889331913,"roll":29.31168335106641},"location":"Left Knee"},{"euler":{"heading":49.56002418454395,"pitch":109.1617486010633,"roll":36.02294254658353},"location":"Left Ankle"},{"euler":{"heading":29.974401791873348,"pitch":-1.7997113131649525,"roll":5.478100186266736},"location":"Right Ankle"},{"euler":{"heading":52.35480668121005,"pitch":-152.3001618503358,"roll":55.6273957971699},"location":"Right Hip"},{"euler":{"heading":81.67339879165783,"pitch":-113.05818044387068,"roll":-47.730010119560205},"location":"Right Knee"},{"euler":{"heading":22.3998922400616,"pitch":-135.70098809595135,"roll":60.90577408186986},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.691"} +{"sensors":[{"euler":{"heading":67.96491505927142,"pitch":133.2232932224025,"roll":27.30224705806335},"location":"Left Knee"},{"euler":{"heading":52.50598071733666,"pitch":111.76824293987512,"roll":38.71992979959972},"location":"Left Ankle"},{"euler":{"heading":31.005556806733956,"pitch":-1.5571702234477258,"roll":5.640706710167925},"location":"Right Ankle"},{"euler":{"heading":51.619551299616894,"pitch":-152.5213118979213,"roll":55.7401287419934},"location":"Right Hip"},{"euler":{"heading":81.19633571261538,"pitch":-114.69949624533614,"roll":-46.93524043385756},"location":"Right Knee"},{"euler":{"heading":22.157894773536942,"pitch":-135.96724388492407,"roll":61.104987158924786},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.792"} +{"sensors":[{"euler":{"heading":59.43081380209025,"pitch":132.09622525411413,"roll":25.22831000783982},"location":"Left Knee"},{"euler":{"heading":55.09648593467,"pitch":114.6440364713112,"roll":41.392233347919884},"location":"Left Ankle"},{"euler":{"heading":31.4396391796731,"pitch":-1.236630606369191,"roll":5.633267302965475},"location":"Right Ankle"},{"euler":{"heading":50.86294699871835,"pitch":-152.7570969102257,"roll":56.29398135360623},"location":"Right Hip"},{"euler":{"heading":81.87587235719462,"pitch":-116.66625192674074,"roll":-46.70358837760257},"location":"Right Knee"},{"euler":{"heading":21.115513829983676,"pitch":-134.2046034437002,"roll":60.76800834434347},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.893"} +{"sensors":[{"euler":{"heading":50.61194627391813,"pitch":132.11085306481786,"roll":24.39803019939223},"location":"Left Knee"},{"euler":{"heading":55.16051233711819,"pitch":114.04174955851165,"roll":42.5083118602206},"location":"Left Ankle"},{"euler":{"heading":31.42645627946868,"pitch":-0.7622777590326217,"roll":5.495738801080487},"location":"Right Ankle"},{"euler":{"heading":50.38018229957123,"pitch":-152.85749204679001,"roll":57.10430477516576},"location":"Right Hip"},{"euler":{"heading":83.1100412879847,"pitch":-118.80263858480966,"roll":-46.791237586287686},"location":"Right Knee"},{"euler":{"heading":19.780443535410544,"pitch":-132.27669681000955,"roll":59.9755693880965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.993"} +{"sensors":[{"euler":{"heading":73.21867552832903,"pitch":133.57474446625045,"roll":25.341143365573792},"location":"Left Knee"},{"euler":{"heading":52.16299427470796,"pitch":112.45038099959969,"roll":40.92606936737279},"location":"Left Ankle"},{"euler":{"heading":30.951928140576424,"pitch":-0.20225092157418578,"roll":5.282113072857081},"location":"Right Ankle"},{"euler":{"heading":50.00273101452076,"pitch":-153.04346202579475,"roll":58.00996016555211},"location":"Right Hip"},{"euler":{"heading":84.77456129792664,"pitch":-121.21142623858918,"roll":-47.191595782492875},"location":"Right Knee"},{"euler":{"heading":18.58621920807004,"pitch":-130.4608384529396,"roll":59.18716743425112},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.94"} +{"sensors":[{"euler":{"heading":89.76114390565536,"pitch":135.9754839921595,"roll":26.8663627268419},"location":"Left Knee"},{"euler":{"heading":47.829912553030546,"pitch":110.64178217804026,"roll":37.758307742200515},"location":"Left Ankle"},{"euler":{"heading":30.01047141022369,"pitch":0.2747768685521009,"roll":5.0234100915061495},"location":"Right Ankle"},{"euler":{"heading":49.8125804674035,"pitch":-153.4733351604818,"roll":58.96026192530617},"location":"Right Hip"},{"euler":{"heading":86.77956168578692,"pitch":-123.99155422470604,"roll":-48.06516639212521},"location":"Right Knee"},{"euler":{"heading":18.179139166162578,"pitch":-129.4241348579738,"roll":58.6521213834467},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.194"} +{"sensors":[{"euler":{"heading":104.59623068361921,"pitch":137.54143198041544,"roll":28.25838633062499},"location":"Left Knee"},{"euler":{"heading":44.87057543079806,"pitch":109.42139771189095,"roll":35.22481642135401},"location":"Left Ankle"},{"euler":{"heading":28.353756832709223,"pitch":0.20107627938498135,"roll":4.575285136632146},"location":"Right Ankle"},{"euler":{"heading":50.01954917230993,"pitch":-154.207144488924,"roll":59.65964299848469},"location":"Right Hip"},{"euler":{"heading":88.62933957838605,"pitch":-127.38712828131561,"roll":-49.50367719661647},"location":"Right Knee"},{"euler":{"heading":18.27388462173056,"pitch":-128.89627383759415,"roll":58.36416669804503},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.295"} +{"sensors":[{"euler":{"heading":117.45067512739284,"pitch":138.3222713727844,"roll":29.27423618515979},"location":"Left Knee"},{"euler":{"heading":43.446285110868374,"pitch":108.37060999147008,"roll":33.90140840731592},"location":"Left Ankle"},{"euler":{"heading":25.469296688518984,"pitch":-0.20449608151533366,"roll":4.080608418775241},"location":"Right Ankle"},{"euler":{"heading":50.89650652880692,"pitch":-154.18743988557807,"roll":59.763363123176006},"location":"Right Hip"},{"euler":{"heading":90.68495868845288,"pitch":-132.03520514090792,"roll":-50.817240388320464},"location":"Right Knee"},{"euler":{"heading":18.26822779045129,"pitch":-128.59698478428888,"roll":58.35925190742492},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.396"} +{"sensors":[{"euler":{"heading":128.52879379489454,"pitch":138.54131825377215,"roll":30.01509417284774},"location":"Left Knee"},{"euler":{"heading":42.70219459514688,"pitch":107.50895798531313,"roll":33.01304547376163},"location":"Left Ankle"},{"euler":{"heading":22.970761800310644,"pitch":-0.7498476319292469,"roll":3.745948629948437},"location":"Right Ankle"},{"euler":{"heading":52.11396409400345,"pitch":-153.48589930441054,"roll":59.1437799643053},"location":"Right Hip"},{"euler":{"heading":91.8211290673034,"pitch":-135.6703845200743,"roll":-51.75020275610655},"location":"Right Knee"},{"euler":{"heading":18.6738222091901,"pitch":-128.98014941738745,"roll":58.60450755605688},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.496"} +{"sensors":[{"euler":{"heading":138.07516985949883,"pitch":138.30552086079805,"roll":30.49522825831916},"location":"Left Knee"},{"euler":{"heading":42.491269705047486,"pitch":106.80655955811197,"roll":32.57779706758841},"location":"Left Ankle"},{"euler":{"heading":22.773954835996424,"pitch":-1.4216818873608974,"roll":3.906857322037074},"location":"Right Ankle"},{"euler":{"heading":53.46753547490158,"pitch":-152.74407717906806,"roll":58.036166303735754},"location":"Right Hip"},{"euler":{"heading":90.37330108217222,"pitch":-136.21898093010864,"roll":-51.91070677477634},"location":"Right Knee"},{"euler":{"heading":19.249680088426462,"pitch":-129.83221669263884,"roll":58.98695658607801},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.597"} +{"sensors":[{"euler":{"heading":146.521934753503,"pitch":137.72948991141178,"roll":30.614588322339852},"location":"Left Knee"},{"euler":{"heading":42.84769701408181,"pitch":106.28988287895756,"roll":32.58823255047422},"location":"Left Ankle"},{"euler":{"heading":24.842299867488933,"pitch":-1.6015458127898892,"roll":4.224873508421245},"location":"Right Ankle"},{"euler":{"heading":54.213174476884305,"pitch":-152.3463049761872,"roll":56.825828539388716},"location":"Right Hip"},{"euler":{"heading":87.07723690439637,"pitch":-135.19339339788402,"roll":-50.635014339229606},"location":"Right Knee"},{"euler":{"heading":19.899551119136117,"pitch":-131.16803535902835,"roll":59.45787664204883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.698"} +{"sensors":[{"euler":{"heading":154.1813000679183,"pitch":136.8872072494824,"roll":30.300477428330957},"location":"Left Knee"},{"euler":{"heading":43.72812475979022,"pitch":105.96504241155148,"roll":33.14464366020666},"location":"Left Ankle"},{"euler":{"heading":28.075693192663064,"pitch":-1.52648789141552,"roll":4.726669504327763},"location":"Right Ankle"},{"euler":{"heading":53.78921935015052,"pitch":-152.18256597463653,"roll":56.128959671195425},"location":"Right Hip"},{"euler":{"heading":83.36177555519347,"pitch":-133.73028711354291,"roll":-48.452133828247476},"location":"Right Knee"},{"euler":{"heading":20.67542242121963,"pitch":-132.98915106420614,"roll":60.03263315502218},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.799"} +{"sensors":[{"euler":{"heading":127.11744017067419,"pitch":135.83967189413033,"roll":29.421715546277223},"location":"Left Knee"},{"euler":{"heading":45.221908026550295,"pitch":106.0634926713975,"roll":34.46857865855402},"location":"Left Ankle"},{"euler":{"heading":30.402145501026894,"pitch":-1.3931714650992095,"roll":5.032099504695521},"location":"Right Ankle"},{"euler":{"heading":52.62757821144412,"pitch":-152.34355862924284,"roll":55.72430208939878},"location":"Right Hip"},{"euler":{"heading":81.02705147124796,"pitch":-132.81658492634364,"roll":-46.71471196047908},"location":"Right Knee"},{"euler":{"heading":21.60202506875126,"pitch":-135.39208734818274,"roll":60.63000499864841},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.900"} +{"sensors":[{"euler":{"heading":106.43796287026497,"pitch":134.77287710525394,"roll":27.55639044749559},"location":"Left Knee"},{"euler":{"heading":47.82432750102357,"pitch":107.852935838216,"roll":37.17073727217714},"location":"Left Ankle"},{"euler":{"heading":31.32012104245485,"pitch":-1.4330600592624916,"roll":5.13606157903507},"location":"Right Ankle"},{"euler":{"heading":52.116380481059274,"pitch":-152.3881666405458,"roll":55.60784044867395},"location":"Right Hip"},{"euler":{"heading":80.10230300901613,"pitch":-132.23950150858562,"roll":-45.76087420513675},"location":"Right Knee"},{"euler":{"heading":21.861320463265177,"pitch":-136.5260156715669,"roll":60.98030204831612},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.0"} +{"sensors":[{"euler":{"heading":91.08113598293477,"pitch":133.2665380937115,"roll":25.345317182340143},"location":"Left Knee"},{"euler":{"heading":50.68051325188944,"pitch":110.92281342349735,"roll":40.13309502174752},"location":"Left Ankle"},{"euler":{"heading":31.750711800620373,"pitch":-1.5345526378744951,"roll":5.06961096333637},"location":"Right Ankle"},{"euler":{"heading":51.3410938808466,"pitch":-152.63067177744577,"roll":56.04348020615447},"location":"Right Hip"},{"euler":{"heading":80.46283781222003,"pitch":-131.8718911041188,"roll":-45.58742587614644},"location":"Right Knee"},{"euler":{"heading":21.16399918247852,"pitch":-135.01343279652554,"roll":60.92272273820025},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.101"} +{"sensors":[{"euler":{"heading":77.21685116087828,"pitch":133.08660568013917,"roll":24.06989961904844},"location":"Left Knee"},{"euler":{"heading":51.26528927354884,"pitch":110.56749202554431,"roll":41.58298004351611},"location":"Left Ankle"},{"euler":{"heading":31.990318197857324,"pitch":-1.6977344343446215,"roll":4.890575304805403},"location":"Right Ankle"},{"euler":{"heading":51.057063209882045,"pitch":-152.719311864408,"roll":56.657656147757955},"location":"Right Hip"},{"euler":{"heading":81.22772261719871,"pitch":-131.6581557631588,"roll":-45.87042957004043},"location":"Right Knee"},{"euler":{"heading":19.79636205853772,"pitch":-133.18694556245674,"roll":60.121511894932915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.202"} +{"sensors":[{"euler":{"heading":95.83508563348767,"pitch":134.2139210776203,"roll":24.687507723685105},"location":"Left Knee"},{"euler":{"heading":48.97358988837786,"pitch":109.21148702139574,"roll":40.267118896229434},"location":"Left Ankle"},{"euler":{"heading":31.87735165757504,"pitch":-1.8037764217952235,"roll":4.681007938336239},"location":"Right Ankle"},{"euler":{"heading":51.044475589049995,"pitch":-152.8114106852609,"roll":57.314478880434805},"location":"Right Hip"},{"euler":{"heading":82.35936060734906,"pitch":-131.85119697534367,"roll":-46.48917632465499},"location":"Right Knee"},{"euler":{"heading":18.533854893548906,"pitch":-131.36178886293737,"roll":59.18843040380006},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.303"} +{"sensors":[{"euler":{"heading":108.74911507853656,"pitch":136.33388259618474,"roll":26.15005266429741},"location":"Left Knee"},{"euler":{"heading":45.046017806972685,"pitch":107.71693304441347,"roll":37.15014926796185},"location":"Left Ankle"},{"euler":{"heading":31.095199093582288,"pitch":-1.673809483779081,"roll":4.342742960668399},"location":"Right Ankle"},{"euler":{"heading":51.159020318961964,"pitch":-152.90663922821298,"roll":57.98016509339538},"location":"Right Hip"},{"euler":{"heading":84.0350533171509,"pitch":-132.74525737969904,"roll":-47.411728607536276},"location":"Right Knee"},{"euler":{"heading":17.696310558552664,"pitch":-129.8529374350061,"roll":58.39761598531474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.404"} +{"sensors":[{"euler":{"heading":119.63226426739169,"pitch":138.35919847793008,"roll":27.515090284915658},"location":"Left Knee"},{"euler":{"heading":42.01443061652314,"pitch":106.93529792971034,"roll":34.27022805614107},"location":"Left Ankle"},{"euler":{"heading":29.70566466867315,"pitch":-1.5264791024843216,"roll":3.810733722922547},"location":"Right Ankle"},{"euler":{"heading":51.28848126433732,"pitch":-153.31980108272765,"roll":58.69548880213225},"location":"Right Hip"},{"euler":{"heading":86.02542066894975,"pitch":-134.46390242421347,"roll":-48.66864001774591},"location":"Right Knee"},{"euler":{"heading":17.6110062425831,"pitch":-129.0405289903901,"roll":57.88416818587413},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.505"} +{"sensors":[{"euler":{"heading":130.0534830624649,"pitch":139.22277120185984,"roll":28.649208578787277},"location":"Left Knee"},{"euler":{"heading":40.98877070671123,"pitch":106.56095302120809,"roll":32.84737534191472},"location":"Left Ankle"},{"euler":{"heading":27.12915095571346,"pitch":-1.922295890686459,"roll":3.3055505919127945},"location":"Right Ankle"},{"euler":{"heading":51.82254589376479,"pitch":-153.47962987363147,"roll":59.21197063117826},"location":"Right Hip"},{"euler":{"heading":88.17237304402876,"pitch":-137.54700555215337,"roll":-50.33512020660505},"location":"Right Knee"},{"euler":{"heading":17.64817469913796,"pitch":-128.4302522957669,"roll":57.657374373223526},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.607"} +{"sensors":[{"euler":{"heading":139.56139606998013,"pitch":139.23725195440488,"roll":29.52086596024145},"location":"Left Knee"},{"euler":{"heading":41.112101328744075,"pitch":106.43030340973277,"roll":31.993878837607063},"location":"Left Ankle"},{"euler":{"heading":23.931513049035473,"pitch":-2.59556194182938,"roll":2.7354621219798214},"location":"Right Ankle"},{"euler":{"heading":52.96138372806659,"pitch":-152.92865397134767,"roll":58.94804932887242},"location":"Right Hip"},{"euler":{"heading":90.29890437441426,"pitch":-107.53062127034751,"roll":-51.78362352129743},"location":"Right Knee"},{"euler":{"heading":18.047217263377284,"pitch":-128.37148865683375,"roll":57.707802532106264},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.708"} +{"sensors":[{"euler":{"heading":147.9053237634069,"pitch":138.67366038703568,"roll":30.23231800219538},"location":"Left Knee"},{"euler":{"heading":41.84328691531172,"pitch":106.46071452293681,"roll":31.643687962928464},"location":"Left Ankle"},{"euler":{"heading":22.662875457077426,"pitch":-3.103713382794809,"roll":2.594157653533381},"location":"Right Ankle"},{"euler":{"heading":54.12572989916354,"pitch":-152.1506601504831,"roll":58.1028121422806},"location":"Right Hip"},{"euler":{"heading":90.73213822596294,"pitch":-112.3136810611366,"roll":-52.660330614703234},"location":"Right Knee"},{"euler":{"heading":18.879304026736115,"pitch":-129.04958774213256,"roll":58.032863174604294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.809"} +{"sensors":[{"euler":{"heading":155.11782232538727,"pitch":137.80101665851666,"roll":30.715569918342666},"location":"Left Knee"},{"euler":{"heading":43.03056632899188,"pitch":106.69631854818508,"roll":31.76676173200198},"location":"Left Ankle"},{"euler":{"heading":23.942786356691833,"pitch":-3.4030036517595863,"roll":2.9538099867313568},"location":"Right Ankle"},{"euler":{"heading":54.69859558334553,"pitch":-151.7261023894176,"roll":56.96936900446813},"location":"Right Hip"},{"euler":{"heading":88.56605919774367,"pitch":-114.18039530649853,"roll":-52.2229623362368},"location":"Right Knee"},{"euler":{"heading":19.643850065692362,"pitch":-130.2101510061946,"roll":58.48158044705369},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.909"} +{"sensors":[{"euler":{"heading":127.46214673006368,"pitch":136.60115687057638,"roll":30.796134076276488},"location":"Left Knee"},{"euler":{"heading":44.49022464013029,"pitch":107.13543244859989,"roll":32.30619026727179},"location":"Left Ankle"},{"euler":{"heading":26.64357152141491,"pitch":-3.263597731235536,"roll":3.552734570467595},"location":"Right Ankle"},{"euler":{"heading":54.489892310263095,"pitch":-151.68081318677332,"roll":55.967525787193466},"location":"Right Hip"},{"euler":{"heading":85.05644623132075,"pitch":-114.94801582331681,"roll":-50.50734038876424},"location":"Right Knee"},{"euler":{"heading":20.4838906010531,"pitch":-131.81322938928375,"roll":59.04219152217893},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.10"} +{"sensors":[{"euler":{"heading":105.36467808616383,"pitch":135.2478948082942,"roll":30.405300580357117},"location":"Left Knee"},{"euler":{"heading":46.31559387771128,"pitch":107.80031451654837,"roll":33.44234423615199},"location":"Left Ankle"},{"euler":{"heading":29.372213225112564,"pitch":-2.9412576364555516,"roll":4.0411787312989755},"location":"Right Ankle"},{"euler":{"heading":53.510444461643964,"pitch":-151.93115218953758,"roll":55.38202943944794},"location":"Right Hip"},{"euler":{"heading":81.94496666606751,"pitch":-115.74368672796405,"roll":-48.53280000392634},"location":"Right Knee"},{"euler":{"heading":21.397636562788485,"pitch":-133.90590828958014,"roll":59.67432597261488},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.111"} +{"sensors":[{"euler":{"heading":88.24632536693022,"pitch":134.00552577122514,"roll":29.017161563790335},"location":"Left Knee"},{"euler":{"heading":48.28582882387583,"pitch":108.95486333862752,"roll":35.61786601868704},"location":"Left Ankle"},{"euler":{"heading":30.875149231581698,"pitch":-2.625798887546997,"roll":4.316691065991464},"location":"Right Ankle"},{"euler":{"heading":52.476606636584485,"pitch":-152.258747943793,"roll":55.2030015358705},"location":"Right Hip"},{"euler":{"heading":80.74687542988279,"pitch":-116.96902064786984,"roll":-47.406016765311946},"location":"Right Knee"},{"euler":{"heading":22.10419360401959,"pitch":-135.50820119923154,"roll":60.28200052851667},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.212"} +{"sensors":[{"euler":{"heading":75.70427316417504,"pitch":132.68514184030002,"roll":26.958452633718455},"location":"Left Knee"},{"euler":{"heading":51.718319176728144,"pitch":112.19934961470709,"roll":38.63281560310651},"location":"Left Ankle"},{"euler":{"heading":31.588509827496498,"pitch":-2.352238742760475,"roll":4.453034466501519},"location":"Right Ankle"},{"euler":{"heading":51.51714051073849,"pitch":-152.5967983308493,"roll":55.48095641177459},"location":"Right Hip"},{"euler":{"heading":80.94305054481558,"pitch":-118.37506015541841,"roll":-47.016621302418514},"location":"Right Knee"},{"euler":{"heading":21.51149613520992,"pitch":-135.06152298904846,"roll":60.344354864594536},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.312"} +{"sensors":[{"euler":{"heading":64.74519884678757,"pitch":132.20974155019496,"roll":25.45229668738065},"location":"Left Knee"},{"euler":{"heading":53.25654269398398,"pitch":112.31712857349831,"roll":40.86750781082468},"location":"Left Ankle"},{"euler":{"heading":31.857507399576974,"pitch":-2.0630838320385876,"roll":4.433720828717833},"location":"Right Ankle"},{"euler":{"heading":50.73153069575032,"pitch":-152.89080108596755,"roll":56.13080646255629},"location":"Right Hip"},{"euler":{"heading":81.84089665975772,"pitch":-120.01595933716462,"roll":-47.04476674043928},"location":"Right Knee"},{"euler":{"heading":20.16412649028872,"pitch":-133.5515077908255,"roll":59.824082909860046},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.413"} +{"sensors":[{"euler":{"heading":86.14649742312945,"pitch":133.03402358410426,"roll":25.7124826890725},"location":"Left Knee"},{"euler":{"heading":51.44825969476811,"pitch":110.74118176063584,"roll":40.48772081684537},"location":"Left Ankle"},{"euler":{"heading":31.780496936373734,"pitch":-1.5636224547058262,"roll":4.124924325680532},"location":"Right Ankle"},{"euler":{"heading":50.242852236244275,"pitch":-153.03198539185655,"roll":56.92692534477841},"location":"Right Hip"},{"euler":{"heading":83.3251608377121,"pitch":-122.02990049075453,"roll":-47.37939084227507},"location":"Right Knee"},{"euler":{"heading":18.64473016429451,"pitch":-131.7986876749975,"roll":58.949020865841014},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.515"} +{"sensors":[{"euler":{"heading":100.55451610769381,"pitch":135.14137129958604,"roll":27.20237842616747},"location":"Left Knee"},{"euler":{"heading":47.36954012038734,"pitch":109.12489692143473,"roll":37.736211443605505},"location":"Left Ankle"},{"euler":{"heading":31.253706858672082,"pitch":-0.9987114570777746,"roll":3.839556758276755},"location":"Right Ankle"},{"euler":{"heading":49.97946492314225,"pitch":-153.2013567050271,"roll":57.724602479550974},"location":"Right Hip"},{"euler":{"heading":85.18851325501359,"pitch":-124.38734333534732,"roll":-48.0091757718141},"location":"Right Knee"},{"euler":{"heading":17.549282804102972,"pitch":-130.30178405026868,"roll":58.18098026097352},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.616"} +{"sensors":[{"euler":{"heading":112.22098928856504,"pitch":137.45253864644684,"roll":28.663508792366464},"location":"Left Knee"},{"euler":{"heading":43.613717457967056,"pitch":107.91206397162578,"roll":34.64001780722698},"location":"Left Ankle"},{"euler":{"heading":29.990028651658896,"pitch":-0.5945531112395678,"roll":3.379194299264175},"location":"Right Ankle"},{"euler":{"heading":50.067014367887396,"pitch":-153.62810073591888,"roll":58.48207248485873},"location":"Right Hip"},{"euler":{"heading":87.2314659405744,"pitch":-127.32909645005986,"roll":-49.155747298529576},"location":"Right Knee"},{"euler":{"heading":17.312260849266803,"pitch":-129.54774933599398,"roll":57.628686841674515},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.720"} +{"sensors":[{"euler":{"heading":123.3965537568412,"pitch":138.56882592955392,"roll":29.89052432451662},"location":"Left Knee"},{"euler":{"heading":42.280429101331684,"pitch":107.43291365435437,"roll":32.81932510676218},"location":"Left Ankle"},{"euler":{"heading":27.825721868741464,"pitch":-0.8709335198281583,"roll":2.974514398490799},"location":"Right Ankle"},{"euler":{"heading":50.57865252166158,"pitch":-154.00236015892327,"roll":57.51469269574282},"location":"Right Hip"},{"euler":{"heading":89.11826444066588,"pitch":-131.1503505158129,"roll":-50.69265713858599},"location":"Right Knee"},{"euler":{"heading":17.361945144305533,"pitch":-129.05569195902424,"roll":57.325125442360545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.821"} +{"sensors":[{"euler":{"heading":133.62913971417,"pitch":138.78225525043683,"roll":30.87596863982303},"location":"Left Knee"},{"euler":{"heading":41.96162404344904,"pitch":107.21337354806462,"roll":31.920934417898465},"location":"Left Ankle"},{"euler":{"heading":24.50186455115605,"pitch":-1.4955776438817645,"roll":2.4299704130038866},"location":"Right Ankle"},{"euler":{"heading":51.67534635172119,"pitch":-153.52651103912734,"roll":57.43006074748078},"location":"Right Hip"},{"euler":{"heading":91.37066459712972,"pitch":-101.91486146629913,"roll":-52.00013424330233},"location":"Right Knee"},{"euler":{"heading":17.65232951094795,"pitch":-128.75312888460348,"roll":57.371486909127384},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.922"} +{"sensors":[{"euler":{"heading":142.6972255944294,"pitch":138.3689607462494,"roll":31.666602411931883},"location":"Left Knee"},{"euler":{"heading":42.592382954053406,"pitch":107.21091232882382,"roll":31.571737067829694},"location":"Left Ankle"},{"euler":{"heading":22.81477733949169,"pitch":-2.286724234058885,"roll":2.2998898966671844},"location":"Right Ankle"},{"euler":{"heading":52.995434902159964,"pitch":-152.82244287905172,"roll":56.72922210624899},"location":"Right Hip"},{"euler":{"heading":91.71670986193095,"pitch":-107.55316658192186,"roll":-52.939480077897144},"location":"Right Knee"},{"euler":{"heading":18.28843152367667,"pitch":-129.15116686045957,"roll":57.65125054991675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.23"} +{"sensors":[{"euler":{"heading":150.6394061634996,"pitch":137.58475462351805,"roll":32.16799613372192},"location":"Left Knee"},{"euler":{"heading":43.4536755026832,"pitch":107.25030238623424,"roll":31.57680370009642},"location":"Left Ankle"},{"euler":{"heading":23.656937225952433,"pitch":-2.925324067473935,"roll":2.6578078891596735},"location":"Right Ankle"},{"euler":{"heading":54.01092358032889,"pitch":-152.31020060785553,"roll":55.66698853720342},"location":"Right Hip"},{"euler":{"heading":89.49707683706421,"pitch":-109.90839624140774,"roll":-52.65391695722417},"location":"Right Knee"},{"euler":{"heading":19.035192846019356,"pitch":-130.31395803406326,"roll":58.05303438678733},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.123"} +{"sensors":[{"euler":{"heading":123.45039663020633,"pitch":136.56599005061122,"roll":32.2293045137126},"location":"Left Knee"},{"euler":{"heading":44.5215646649868,"pitch":107.39296100472606,"roll":31.96188805725413},"location":"Left Ankle"},{"euler":{"heading":26.504643487618182,"pitch":-2.7956855343932268,"roll":3.011405498660167},"location":"Right Ankle"},{"euler":{"heading":54.075459916513886,"pitch":-152.12611480103214,"roll":54.741471699269574},"location":"Right Hip"},{"euler":{"heading":85.96144983959951,"pitch":-111.20129648842503,"roll":-50.96269886891259},"location":"Right Knee"},{"euler":{"heading":19.795272891002444,"pitch":-131.8417633978701,"roll":58.58901248860094},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.225"} +{"sensors":[{"euler":{"heading":101.64585403340482,"pitch":135.40037776565597,"roll":31.844828174717573},"location":"Left Knee"},{"euler":{"heading":45.99642721365365,"pitch":107.68851784671702,"roll":32.91676267255909},"location":"Left Ankle"},{"euler":{"heading":29.353584024883535,"pitch":-2.5238008584511316,"roll":3.4978357765991435},"location":"Right Ankle"},{"euler":{"heading":52.92735005813045,"pitch":-152.3935475987186,"roll":54.308275496711566},"location":"Right Hip"},{"euler":{"heading":82.65625609309173,"pitch":-112.25824885548421,"roll":-48.867553545078394},"location":"Right Knee"},{"euler":{"heading":20.649492598249875,"pitch":-133.8484936961002,"roll":59.25831025162229},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.325"} +{"sensors":[{"euler":{"heading":84.60682553549029,"pitch":134.25646464400808,"roll":30.676472665456878},"location":"Left Knee"},{"euler":{"heading":47.697503588966704,"pitch":108.28889709407892,"roll":34.79150721054749},"location":"Left Ankle"},{"euler":{"heading":30.877731585668798,"pitch":-2.099419962395103,"roll":3.765580491228948},"location":"Right Ankle"},{"euler":{"heading":51.61272458089256,"pitch":-152.79011887059758,"roll":54.33245858275038},"location":"Right Hip"},{"euler":{"heading":81.21037228270806,"pitch":-113.83297070391951,"roll":-47.477059904673915},"location":"Right Knee"},{"euler":{"heading":21.57484845042591,"pitch":-135.78918539138022,"roll":59.92933950101596},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.426"} +{"sensors":[{"euler":{"heading":72.1713410717997,"pitch":133.2035302459304,"roll":28.58477335639977},"location":"Left Knee"},{"euler":{"heading":51.01067742783626,"pitch":111.04381974824231,"roll":37.772103267270175},"location":"Left Ankle"},{"euler":{"heading":31.709530408665707,"pitch":-1.5727208830042692,"roll":3.817606166826035},"location":"Right Ankle"},{"euler":{"heading":50.45902167812973,"pitch":-153.18463817692222,"roll":54.764567480623114},"location":"Right Hip"},{"euler":{"heading":81.39985026033315,"pitch":-115.70379533114011,"roll":-46.84309416376073},"location":"Right Knee"},{"euler":{"heading":21.137521978341685,"pitch":-135.44657534955567,"roll":60.12631091941336},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.527"} +{"sensors":[{"euler":{"heading":62.2805000605037,"pitch":132.50045907048985,"roll":26.715828011399786},"location":"Left Knee"},{"euler":{"heading":52.950610554231254,"pitch":111.56283846895867,"roll":40.18974089837133},"location":"Left Ankle"},{"euler":{"heading":31.956598919142888,"pitch":-1.0723427819503524,"roll":3.733886136379189},"location":"Right Ankle"},{"euler":{"heading":49.615441232130635,"pitch":-153.51190232689967,"roll":55.48850928020585},"location":"Right Hip"},{"euler":{"heading":82.39328299616461,"pitch":-117.72959513857589,"roll":-46.73911366672439},"location":"Right Knee"},{"euler":{"heading":19.935205858563023,"pitch":-133.98911168993334,"roll":59.698124069430186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.627"} +{"sensors":[{"euler":{"heading":51.387595669830795,"pitch":133.0890008561502,"roll":26.3742507769987},"location":"Left Knee"},{"euler":{"heading":51.63177024967235,"pitch":110.55804928379082,"roll":40.18358242546533},"location":"Left Ankle"},{"euler":{"heading":31.796234580414854,"pitch":-0.5363288019899981,"roll":3.568950352946912},"location":"Right Ankle"},{"euler":{"heading":49.21603855865976,"pitch":-153.66534811718736,"roll":56.363562554652056},"location":"Right Hip"},{"euler":{"heading":83.79529008898265,"pitch":-119.89562812430118,"roll":-47.00174276375219},"location":"Right Knee"},{"euler":{"heading":18.671321275723606,"pitch":-132.22439107546424,"roll":58.97178592561426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.727"} +{"sensors":[{"euler":{"heading":73.15223010624254,"pitch":134.99492371135005,"roll":27.5752741866811},"location":"Left Knee"},{"euler":{"heading":47.763555974690206,"pitch":109.50020790087883,"roll":37.57991034543997},"location":"Left Ankle"},{"euler":{"heading":31.183358517683175,"pitch":-0.00968595668657335,"roll":3.300797920578475},"location":"Right Ankle"},{"euler":{"heading":49.13276569878927,"pitch":-153.86959577250303,"roll":57.26833729948713},"location":"Right Hip"},{"euler":{"heading":85.52589211103894,"pitch":-122.34907792400185,"roll":-47.61988897630752},"location":"Right Knee"},{"euler":{"heading":17.808867882003906,"pitch":-130.8177892156948,"roll":58.29670471818464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.829"} +{"sensors":[{"euler":{"heading":90.134800615563,"pitch":137.29624064312173,"roll":28.959315719394386},"location":"Left Knee"},{"euler":{"heading":43.90066536300632,"pitch":108.54893890459891,"roll":34.361842763493186},"location":"Left Ankle"},{"euler":{"heading":30.015661813685448,"pitch":0.3895710299473263,"roll":2.8976301615872218},"location":"Right Ankle"},{"euler":{"heading":49.36779266094562,"pitch":-154.24466422948873,"roll":58.116771955433485},"location":"Right Hip"},{"euler":{"heading":87.52554730194711,"pitch":-125.36581472446225,"roll":-48.678639918981574},"location":"Right Knee"},{"euler":{"heading":17.804238285577068,"pitch":-130.08006793417763,"roll":57.810692018025776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.929"} +{"sensors":[{"euler":{"heading":105.37185969146249,"pitch":138.46306760733927,"roll":30.241426947418024},"location":"Left Knee"},{"euler":{"heading":42.3548584264679,"pitch":108.03893244713859,"roll":32.45465059751591},"location":"Left Ankle"},{"euler":{"heading":27.8586008890341,"pitch":0.06713835020332704,"roll":2.4079622441229294},"location":"Right Ankle"},{"euler":{"heading":50.059638320991695,"pitch":-154.70296048123495,"roll":58.67641356411932},"location":"Right Hip"},{"euler":{"heading":89.35905793787849,"pitch":-129.27275558157703,"roll":-50.3263329451461},"location":"Right Knee"},{"euler":{"heading":18.002588036275256,"pitch":-129.78707671226897,"roll":57.57305169723874},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.30"} +{"sensors":[{"euler":{"heading":118.8645946097745,"pitch":138.6568306422544,"roll":31.276725984826932},"location":"Left Knee"},{"euler":{"heading":42.022566693507066,"pitch":107.83903384957405,"roll":31.4660980828007},"location":"Left Ankle"},{"euler":{"heading":24.44555155030353,"pitch":-0.2959666375180169,"roll":1.6378820298193841},"location":"Right Ankle"},{"euler":{"heading":51.34550301355321,"pitch":-154.35071665439023,"roll":58.4931636241457},"location":"Right Hip"},{"euler":{"heading":91.62727912565325,"pitch":-100.13263829695246,"roll":-51.686492533049886},"location":"Right Knee"},{"euler":{"heading":18.45037136123549,"pitch":-129.6468077175719,"roll":57.7087900431977},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.130"} +{"sensors":[{"euler":{"heading":130.51885258868114,"pitch":138.30302960512,"roll":32.05896428387879},"location":"Left Knee"},{"euler":{"heading":43.07629018580011,"pitch":107.83650981920368,"roll":31.439596461912593},"location":"Left Ankle"},{"euler":{"heading":22.346551474700046,"pitch":-1.0288122099976826,"roll":1.3869537075601448},"location":"Right Ankle"},{"euler":{"heading":52.96317184237239,"pitch":-153.66337092144593,"roll":57.5366194065171},"location":"Right Hip"},{"euler":{"heading":92.03384109458312,"pitch":-106.18423486505142,"roll":-52.70918127946932},"location":"Right Knee"},{"euler":{"heading":19.167789007985597,"pitch":-130.20359217672794,"roll":58.0694285945199},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.230"} +{"sensors":[{"euler":{"heading":140.47751781541578,"pitch":137.6618372523796,"roll":32.51708930559161},"location":"Left Knee"},{"euler":{"heading":43.89151536841004,"pitch":107.71531973455973,"roll":31.570193803848934},"location":"Left Ankle"},{"euler":{"heading":22.910890634688865,"pitch":-1.6324928283445104,"roll":1.5939023788760562},"location":"Right Ankle"},{"euler":{"heading":54.263936080537896,"pitch":-153.15436974255846,"roll":56.15382461972817},"location":"Right Hip"},{"euler":{"heading":90.04211830960064,"pitch":-108.68157466253686,"roll":-52.51686900550653},"location":"Right Knee"},{"euler":{"heading":19.957350252080488,"pitch":-131.40301354957518,"roll":58.57412066048574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.331"} +{"sensors":[{"euler":{"heading":149.1726850103231,"pitch":136.7665369681291,"roll":32.58086207058674},"location":"Left Knee"},{"euler":{"heading":44.96924708276206,"pitch":107.69483746161059,"roll":32.05697715646721},"location":"Left Ankle"},{"euler":{"heading":25.650023741688855,"pitch":-1.7804127642149228,"roll":2.102211685637929},"location":"Right Ankle"},{"euler":{"heading":54.48476673429224,"pitch":-152.90187302791142,"roll":55.045255462095284},"location":"Right Hip"},{"euler":{"heading":86.21747935754722,"pitch":-109.90687168019669,"roll":-50.87435943864827},"location":"Right Knee"},{"euler":{"heading":20.698967057597383,"pitch":-133.03530835926009,"roll":59.17943662363848},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.431"} +{"sensors":[{"euler":{"heading":122.62994664124327,"pitch":135.6829179028889,"roll":32.17483446167178},"location":"Left Knee"},{"euler":{"heading":46.523512393766,"pitch":107.88438933009242,"roll":33.07415012010847},"location":"Left Ankle"},{"euler":{"heading":28.71327538738958,"pitch":-1.813191598131699,"roll":2.7464726455779074},"location":"Right Ankle"},{"euler":{"heading":53.51219295326541,"pitch":-152.9884963475774,"roll":54.48209162320618},"location":"Right Hip"},{"euler":{"heading":82.4140494031355,"pitch":-110.7540188792341,"roll":-48.71032839712241},"location":"Right Knee"},{"euler":{"heading":21.579686237916228,"pitch":-135.2733306283176,"roll":59.83418749024667},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.531"} +{"sensors":[{"euler":{"heading":101.66372616362952,"pitch":134.57158124896543,"roll":31.040485513970225},"location":"Left Knee"},{"euler":{"heading":48.33716612506662,"pitch":108.38290201115565,"roll":34.88041542081976},"location":"Left Ankle"},{"euler":{"heading":30.686384800155334,"pitch":-1.4326261220233691,"roll":3.1332531804053754},"location":"Right Ankle"},{"euler":{"heading":52.204554148941796,"pitch":-153.2511841670409,"roll":54.35894369606243},"location":"Right Hip"},{"euler":{"heading":80.2510543339637,"pitch":-112.39454148768623,"roll":-46.98401763687575},"location":"Right Knee"},{"euler":{"heading":22.389997754339372,"pitch":-137.68490619917162,"roll":60.420709924134044},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.632"} +{"sensors":[{"euler":{"heading":86.1315673524946,"pitch":133.39354648645644,"roll":28.991448510203956},"location":"Left Knee"},{"euler":{"heading":51.59983079699443,"pitch":111.12888245491709,"roll":37.71581201564211},"location":"Left Ankle"},{"euler":{"heading":31.50529340887459,"pitch":-1.0406994461490209,"roll":3.2692101725987635},"location":"Right Ankle"},{"euler":{"heading":51.44301692183688,"pitch":-153.34619644521604,"roll":54.538830279420104},"location":"Right Hip"},{"euler":{"heading":79.71067501385502,"pitch":-114.28923573702164,"roll":-46.05806996868897},"location":"Right Knee"},{"euler":{"heading":22.268699331909513,"pitch":-138.3034649270943,"roll":60.61850223035899},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.732"} +{"sensors":[{"euler":{"heading":74.05594592045996,"pitch":132.5534938784967,"roll":26.774662226519556},"location":"Left Knee"},{"euler":{"heading":53.86107083773255,"pitch":112.88832419318736,"roll":40.465796266942604},"location":"Left Ankle"},{"euler":{"heading":31.943947885183928,"pitch":-0.519586151284281,"roll":3.219820345442976},"location":"Right Ankle"},{"euler":{"heading":50.355737078153055,"pitch":-153.54513153268567,"roll":55.18912039068106},"location":"Right Hip"},{"euler":{"heading":80.50483700291622,"pitch":-116.4436501078501,"roll":-45.64231984144206},"location":"Right Knee"},{"euler":{"heading":21.075443713539308,"pitch":-136.70503663703676,"roll":60.5180501005933},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.833"} +{"sensors":[{"euler":{"heading":62.3610667750759,"pitch":132.63163958420463,"roll":25.803231091551332},"location":"Left Knee"},{"euler":{"heading":53.685221811642066,"pitch":111.94769812587158,"roll":41.47380688271543},"location":"Left Ankle"},{"euler":{"heading":31.9523445410908,"pitch":0.029245281170275583,"roll":3.0264960311595805},"location":"Right Ankle"},{"euler":{"heading":49.63788745179588,"pitch":-153.65379924400278,"roll":57.54330806996343},"location":"Right Hip"},{"euler":{"heading":82.08256396064155,"pitch":-118.67850074567458,"roll":-45.7714690605885},"location":"Right Knee"},{"euler":{"heading":19.456314094328338,"pitch":-134.78897941111032,"roll":59.761279018026016},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.934"} +{"sensors":[{"euler":{"heading":82.82695193570628,"pitch":134.08166305435591,"roll":26.58294809439416},"location":"Left Knee"},{"euler":{"heading":50.52696585630741,"pitch":110.51390889273294,"roll":39.793776443564674},"location":"Left Ankle"},{"euler":{"heading":31.661954332604342,"pitch":0.383181783477779,"roll":2.8812882153041883},"location":"Right Ankle"},{"euler":{"heading":49.13334726918846,"pitch":-153.96616102219807,"roll":58.3358596147071},"location":"Right Hip"},{"euler":{"heading":83.80246721778785,"pitch":-120.97424554162676,"roll":-46.286668581100685},"location":"Right Knee"},{"euler":{"heading":18.017611687251446,"pitch":-132.87682775059656,"roll":58.98731611128977},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.34"} +{"sensors":[{"euler":{"heading":97.61649950934037,"pitch":136.475799142488,"roll":28.043548646337676},"location":"Left Knee"},{"euler":{"heading":46.05038150836991,"pitch":108.84789967587818,"roll":36.40673217513918},"location":"Left Ankle"},{"euler":{"heading":30.80587115451869,"pitch":0.6439970273872452,"roll":2.5358622071637043},"location":"Right Ankle"},{"euler":{"heading":49.00560508513256,"pitch":-154.5222935612863,"roll":59.14814467757034},"location":"Right Hip"},{"euler":{"heading":85.62689365823137,"pitch":-123.44399809613178,"roll":-47.24037501253296},"location":"Right Knee"},{"euler":{"heading":17.446025106650332,"pitch":-131.60435805458144,"roll":58.43560905624846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.136"} +{"sensors":[{"euler":{"heading":111.05196849521191,"pitch":138.16062330455915,"roll":29.341428454251446},"location":"Left Knee"},{"euler":{"heading":43.11623197558644,"pitch":107.89922837237066,"roll":33.72832522397837},"location":"Left Ankle"},{"euler":{"heading":29.230950963519717,"pitch":0.535174399420257,"roll":2.1043886686292272},"location":"Right Ankle"},{"euler":{"heading":49.28745491998413,"pitch":-155.44169556961708,"roll":59.930723648195546},"location":"Right Hip"},{"euler":{"heading":87.41799741443194,"pitch":-126.43981500737814,"roll":-48.68005503354887},"location":"Right Knee"},{"euler":{"heading":17.786572476058716,"pitch":-130.89883001085823,"roll":58.174195396700895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.237"} +{"sensors":[{"euler":{"heading":123.23603203069568,"pitch":138.8231090943001,"roll":30.385050778995534},"location":"Left Knee"},{"euler":{"heading":42.330877219184686,"pitch":107.45102557859326,"roll":32.547270818323184},"location":"Left Ankle"},{"euler":{"heading":26.18754228390893,"pitch":0.032422597064329706,"roll":1.5177638652127534},"location":"Right Ankle"},{"euler":{"heading":50.451646553507494,"pitch":-155.5185854654873,"roll":59.97893070911845},"location":"Right Hip"},{"euler":{"heading":89.43746482100269,"pitch":-131.1066612767579,"roll":-50.35139467754372},"location":"Right Knee"},{"euler":{"heading":17.8811077535342,"pitch":-130.35554018921613,"roll":58.03871892071612},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.337"} +{"sensors":[{"euler":{"heading":133.9614386948947,"pitch":138.75075621355322,"roll":31.162929998077697},"location":"Left Knee"},{"euler":{"heading":42.27046975024665,"pitch":107.13463765495102,"roll":31.81150134775499},"location":"Left Ankle"},{"euler":{"heading":23.08323589879266,"pitch":-0.7851687443411255,"roll":1.0999025452907554},"location":"Right Ankle"},{"euler":{"heading":52.100486382307125,"pitch":-154.76176345637623,"roll":59.27344331659908},"location":"Right Hip"},{"euler":{"heading":91.13856498687852,"pitch":-135.61494892482276,"roll":-51.61999065575947},"location":"Right Knee"},{"euler":{"heading":18.398465899511326,"pitch":-130.3692819174451,"roll":58.19555909223274},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.439"} +{"sensors":[{"euler":{"heading":143.18928801865064,"pitch":138.15020820884655,"roll":31.80141513328454},"location":"Left Knee"},{"euler":{"heading":43.00578878698865,"pitch":107.0088694136869,"roll":31.645127731019993},"location":"Left Ankle"},{"euler":{"heading":22.396369202641544,"pitch":-1.489314927450303,"roll":1.1855242454376216},"location":"Right Ankle"},{"euler":{"heading":53.515953015530805,"pitch":-153.88073893026066,"roll":58.09404236352708},"location":"Right Hip"},{"euler":{"heading":90.3911131987336,"pitch":-136.76929471148134,"roll":-52.16743547058138},"location":"Right Knee"},{"euler":{"heading":19.250140332755986,"pitch":-131.16649707112168,"roll":58.5574562367331},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.540"} +{"sensors":[{"euler":{"heading":151.37524356545043,"pitch":137.20845167546847,"roll":32.1294614996464},"location":"Left Knee"},{"euler":{"heading":44.01214812883131,"pitch":107.01397101902526,"roll":31.785900465135988},"location":"Left Ankle"},{"euler":{"heading":24.200195936757495,"pitch":-1.9421747235122573,"roll":1.7326804902781023},"location":"Right Ankle"},{"euler":{"heading":54.09229540039456,"pitch":-153.4640214813377,"roll":56.8187460672755},"location":"Right Hip"},{"euler":{"heading":87.4307039804923,"pitch":-135.75081169997605,"roll":-51.295383886754365},"location":"Right Knee"},{"euler":{"heading":20.149630886867833,"pitch":-132.53591572644717,"roll":59.027615326559555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.641"} +{"sensors":[{"euler":{"heading":124.41556325555234,"pitch":136.0352330471879,"roll":32.01607625499831},"location":"Left Knee"},{"euler":{"heading":45.2998880524315,"pitch":107.2088371784989,"roll":32.341344352779615},"location":"Left Ankle"},{"euler":{"heading":27.205111353955207,"pitch":-1.8941675798166588,"roll":2.5131633059388756},"location":"Right Ankle"},{"euler":{"heading":53.57728284961911,"pitch":-153.36637370552236,"roll":56.003644766223715},"location":"Right Hip"},{"euler":{"heading":83.79388139366183,"pitch":-134.34169658036146,"roll":-49.346951155255},"location":"Right Knee"},{"euler":{"heading":20.9693670760092,"pitch":-134.2388025336531,"roll":59.6135738754802},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.741"} +{"sensors":[{"euler":{"heading":102.93553725150767,"pitch":134.76553098256431,"roll":31.336781933441895},"location":"Left Knee"},{"euler":{"heading":46.99043600985458,"pitch":107.64081493755863,"roll":33.55144329112153},"location":"Left Ankle"},{"euler":{"heading":29.79632958040133,"pitch":-1.5594070383784335,"roll":3.0350982183373114},"location":"Right Ankle"},{"euler":{"heading":52.28757622303863,"pitch":-153.62284250891256,"roll":55.62279837023106},"location":"Right Hip"},{"euler":{"heading":81.22628126121768,"pitch":-133.45901372968706,"roll":-47.58980824293146},"location":"Right Knee"},{"euler":{"heading":21.818925400269904,"pitch":-136.45152212762633,"roll":60.221082162258305},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.842"} +{"sensors":[{"euler":{"heading":86.50705042714267,"pitch":133.57499207440344,"roll":29.65195005902923},"location":"Left Knee"},{"euler":{"heading":48.95729497642677,"pitch":108.9472782199793,"roll":35.81765726416111},"location":"Left Ankle"},{"euler":{"heading":30.966767011861997,"pitch":-1.1910921834678962,"roll":3.281462423234424},"location":"Right Ankle"},{"euler":{"heading":51.38614384526165,"pitch":-153.81924289165218,"roll":55.55166410861167},"location":"Right Hip"},{"euler":{"heading":80.43784606432752,"pitch":-133.26077208626094,"roll":-46.55272702200242},"location":"Right Knee"},{"euler":{"heading":22.181605600563607,"pitch":-137.72248410521223,"roll":60.675676348686494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.943"} +{"sensors":[{"euler":{"heading":74.61903927931806,"pitch":132.12909401434314,"roll":27.443677308529484},"location":"Left Knee"},{"euler":{"heading":51.8638340100306,"pitch":111.8179316496117,"roll":38.59362533988266},"location":"Left Ankle"},{"euler":{"heading":31.58029205911074,"pitch":-0.6318915607073411,"roll":3.296305485549028},"location":"Right Ankle"},{"euler":{"heading":50.45780215580694,"pitch":-154.0147966261782,"roll":55.9331945598245},"location":"Right Hip"},{"euler":{"heading":81.15375163273487,"pitch":-133.50350500495043,"roll":-46.202883525998274},"location":"Right Knee"},{"euler":{"heading":21.634334069588917,"pitch":-136.36362610682545,"roll":60.78976191743747},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.44"} +{"sensors":[{"euler":{"heading":63.731759068117185,"pitch":131.84927511325395,"roll":26.099450169675997},"location":"Left Knee"},{"euler":{"heading":52.793049933338764,"pitch":110.34297867379239,"roll":40.18400698739439},"location":"Left Ankle"},{"euler":{"heading":31.636747625367953,"pitch":-0.05454116207448134,"roll":3.226502295993181},"location":"Right Ankle"},{"euler":{"heading":49.88198153163354,"pitch":-154.0906780973702,"roll":56.60542387591606},"location":"Right Hip"},{"euler":{"heading":82.45337124433786,"pitch":-134.02635866247678,"roll":-46.29059978363725},"location":"Right Knee"},{"euler":{"heading":20.25876074905286,"pitch":-134.50977206906236,"roll":60.126050421959505},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.145"} +{"sensors":[{"euler":{"heading":85.09671765814933,"pitch":132.93971348615892,"roll":26.529942744168245},"location":"Left Knee"},{"euler":{"heading":50.468276259074315,"pitch":109.32343178874493,"roll":39.07256673439231},"location":"Left Ankle"},{"euler":{"heading":31.320309616283954,"pitch":0.3965451334582556,"roll":3.127667283657577},"location":"Right Ankle"},{"euler":{"heading":49.61264069321874,"pitch":-154.17123196478246,"roll":57.39801196708851},"location":"Right Hip"},{"euler":{"heading":83.97528704861276,"pitch":-134.80863190303853,"roll":-46.744526419379326},"location":"Right Knee"},{"euler":{"heading":18.94219297398117,"pitch":-132.71930490714757,"roll":59.29955274101644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.246"} +{"sensors":[{"euler":{"heading":100.56297249670942,"pitch":135.00846998136274,"roll":27.846952735334092},"location":"Left Knee"},{"euler":{"heading":46.299591911476924,"pitch":108.1808928395235,"roll":35.86708832812},"location":"Left Ankle"},{"euler":{"heading":30.52613283426951,"pitch":0.8285031108187011,"roll":2.8836559459532305},"location":"Right Ankle"},{"euler":{"heading":49.540737399740635,"pitch":-154.4581542262807,"roll":58.18060356178794},"location":"Right Hip"},{"euler":{"heading":85.81596080777649,"pitch":-135.9921160724932,"roll":-47.577390160568186},"location":"Right Knee"},{"euler":{"heading":18.268469637361076,"pitch":-131.42614771358473,"roll":58.617073971339636},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.347"} +{"sensors":[{"euler":{"heading":113.36941243431684,"pitch":136.9042174068733,"roll":29.08029940721625},"location":"Left Knee"},{"euler":{"heading":43.11219941440759,"pitch":107.36106889313544,"roll":33.138944726204045},"location":"Left Ankle"},{"euler":{"heading":29.17431545377492,"pitch":1.0647931210820147,"roll":2.425043862777156},"location":"Right Ankle"},{"euler":{"heading":49.61860513697838,"pitch":-155.09828271793174,"roll":58.98387611407775},"location":"Right Hip"},{"euler":{"heading":87.8106176947292,"pitch":-137.80618485558296,"roll":-48.824488336095094},"location":"Right Knee"},{"euler":{"heading":18.26973931479231,"pitch":-130.66622822316415,"roll":58.17787517007467},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.448"} +{"sensors":[{"euler":{"heading":125.21084159378948,"pitch":137.57920317237833,"roll":30.101199151198063},"location":"Left Knee"},{"euler":{"heading":41.810333599274216,"pitch":106.91649601684281,"roll":31.657236637014865},"location":"Left Ankle"},{"euler":{"heading":26.818934259495922,"pitch":0.7673096069539398,"roll":2.081400909708231},"location":"Right Ankle"},{"euler":{"heading":50.11042530398265,"pitch":-155.4872691928171,"roll":59.60372189028927},"location":"Right Hip"},{"euler":{"heading":89.94324641363318,"pitch":-141.0469782378913,"roll":-50.34534669811953},"location":"Right Knee"},{"euler":{"heading":18.27077892528504,"pitch":-130.12722870555726,"roll":58.00637681019516},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.549"} +{"sensors":[{"euler":{"heading":135.67353552833623,"pitch":137.57761428440915,"roll":30.816900119877005},"location":"Left Knee"},{"euler":{"heading":41.44591359254402,"pitch":106.63311925318425,"roll":30.803991139304916},"location":"Left Ankle"},{"euler":{"heading":23.843976570742388,"pitch":0.2484212687175814,"roll":1.7526110428665438},"location":"Right Ankle"},{"euler":{"heading":51.16711095764625,"pitch":-154.9534025237617,"roll":59.47494920110304},"location":"Right Hip"},{"euler":{"heading":92.28397123968539,"pitch":-111.11383086107843,"roll":-51.54911960605},"location":"Right Knee"},{"euler":{"heading":18.646184537486754,"pitch":-130.20430569921768,"roll":58.136566984335104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.650"} +{"sensors":[{"euler":{"heading":144.78140087821373,"pitch":137.0529894684353,"roll":31.405067013521904},"location":"Left Knee"},{"euler":{"heading":41.97986995666384,"pitch":106.54911260313268,"roll":30.48375393235741},"location":"Left Ankle"},{"euler":{"heading":22.829012989274098,"pitch":-0.20327193396175663,"roll":1.716690821877908},"location":"Right Ankle"},{"euler":{"heading":52.43660493411766,"pitch":-154.11360142254702,"roll":58.64498908913405},"location":"Right Hip"},{"euler":{"heading":92.41696188147466,"pitch":-115.8830300384186,"roll":-52.299501175513925},"location":"Right Knee"},{"euler":{"heading":19.26272223878798,"pitch":-130.8150737435889,"roll":58.4802945180031},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.751"} +{"sensors":[{"euler":{"heading":118.62414176826263,"pitch":136.11453555252984,"roll":31.72919881048717},"location":"Left Knee"},{"euler":{"heading":42.98187706811463,"pitch":106.6811828459273,"roll":30.532861799260523},"location":"Left Ankle"},{"euler":{"heading":24.310686583746758,"pitch":-0.5644353949944603,"roll":2.0944137351144745},"location":"Right Ankle"},{"euler":{"heading":53.244198216978425,"pitch":-153.62717048622875,"roll":57.43619018106373},"location":"Right Hip"},{"euler":{"heading":89.99315342607312,"pitch":-117.5826241618991,"roll":-51.9142926921656},"location":"Right Knee"},{"euler":{"heading":19.939956555711316,"pitch":-131.99794513346384,"roll":58.91023114931675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.852"} +{"sensors":[{"euler":{"heading":97.88437167228193,"pitch":134.89079761188293,"roll":31.618216677174164},"location":"Left Knee"},{"euler":{"heading":44.28983462072078,"pitch":107.00283037637276,"roll":30.9756338949161},"location":"Left Ankle"},{"euler":{"heading":27.164784207213344,"pitch":-0.6534309050458487,"roll":2.6977993211265714},"location":"Right Ankle"},{"euler":{"heading":52.99582264779026,"pitch":-153.57345625028606,"roll":56.52073740350249},"location":"Right Hip"},{"euler":{"heading":85.90984812139389,"pitch":-117.97310015570527,"roll":-50.12696269090481},"location":"Right Knee"},{"euler":{"heading":20.791740655243544,"pitch":-133.66877204462486,"roll":59.4835746284453},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.952"} +{"sensors":[{"euler":{"heading":81.4734201215132,"pitch":133.59321780340986,"roll":30.947042178797876},"location":"Left Knee"},{"euler":{"heading":45.93748367443994,"pitch":107.50196697739679,"roll":31.994599322342115},"location":"Left Ankle"},{"euler":{"heading":29.94166898543175,"pitch":-0.5615468030725322,"roll":3.1962254393636824},"location":"Right Ankle"},{"euler":{"heading":51.93632870550187,"pitch":-153.83400757325688,"roll":56.04908545737316},"location":"Right Hip"},{"euler":{"heading":82.5307703559082,"pitch":-118.37399461205473,"roll":-48.19455101251915},"location":"Right Knee"},{"euler":{"heading":21.744828772601302,"pitch":-135.98922351299842,"roll":60.091558468207516},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.53"} +{"sensors":[{"euler":{"heading":69.06468915044493,"pitch":132.5439216330598,"roll":29.2041593461628},"location":"Left Knee"},{"euler":{"heading":47.7503109130893,"pitch":108.44708378092716,"roll":34.13542380576426},"location":"Left Ankle"},{"euler":{"heading":31.276020601766,"pitch":-0.4367860157669706,"roll":3.379699968946763},"location":"Right Ankle"},{"euler":{"heading":51.2769019905724,"pitch":-154.01626620335074,"roll":55.9017288241118},"location":"Right Hip"},{"euler":{"heading":81.15518715926504,"pitch":-119.34912069972275,"roll":-47.09994368281964},"location":"Right Knee"},{"euler":{"heading":22.275513361033696,"pitch":-137.48252083892723,"roll":60.62387196978197},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.154"} +{"sensors":[{"euler":{"heading":60.43832316292794,"pitch":131.3090649131228,"roll":26.877959346455885},"location":"Left Knee"},{"euler":{"heading":50.75070531831338,"pitch":111.25235732270313,"roll":37.01196113172252},"location":"Left Ankle"},{"euler":{"heading":31.934578790054804,"pitch":-0.2109322437767303,"roll":3.4743778067399327},"location":"Right Ankle"},{"euler":{"heading":50.26728481501094,"pitch":-154.35954672417654,"roll":56.285631242317045},"location":"Right Hip"},{"euler":{"heading":81.21792266624895,"pitch":-120.55253460604519,"roll":-46.662374398913514},"location":"Right Knee"},{"euler":{"heading":21.568538258246413,"pitch":-136.61616862976132,"roll":60.730994810787514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.254"} +{"sensors":[{"euler":{"heading":52.51893982463556,"pitch":130.98834506383676,"roll":25.32595254917871},"location":"Left Knee"},{"euler":{"heading":52.1788867585578,"pitch":111.44832823413323,"roll":39.026282614293144},"location":"Left Ankle"},{"euler":{"heading":32.25977444027496,"pitch":0.17774174209746907,"roll":3.3162918100459606},"location":"Right Ankle"},{"euler":{"heading":49.67247837264708,"pitch":-154.56315717502503,"roll":56.96000689222594},"location":"Right Hip"},{"euler":{"heading":82.24432088100531,"pitch":-122.14087969878372,"roll":-46.67665508500294},"location":"Right Knee"},{"euler":{"heading":20.062199827692524,"pitch":-134.91665073290767,"roll":60.11449068510715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.356"} +{"sensors":[{"euler":{"heading":76.0583609020039,"pitch":132.0833903414137,"roll":25.62788356527511},"location":"Left Knee"},{"euler":{"heading":50.179431197383316,"pitch":110.17500236782396,"roll":38.405470489838},"location":"Left Ankle"},{"euler":{"heading":32.29417728587483,"pitch":0.6661852207281176,"roll":3.084064117103226},"location":"Right Ankle"},{"euler":{"heading":49.250849891717074,"pitch":-154.68794612139095,"roll":57.76642776262539},"location":"Right Hip"},{"euler":{"heading":83.71493722529331,"pitch":-124.05375819837262,"roll":-47.01656924122288},"location":"Right Knee"},{"euler":{"heading":18.347241649945246,"pitch":-133.01613557836293,"roll":59.188022393634405},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.457"} +{"sensors":[{"euler":{"heading":92.4846107961363,"pitch":134.36440127665682,"roll":27.066373711187435},"location":"Left Knee"},{"euler":{"heading":45.944179738253936,"pitch":108.64230183730292,"roll":35.40613694473583},"location":"Left Ankle"},{"euler":{"heading":31.751596766408998,"pitch":1.1795092430454253,"roll":2.772856835735738},"location":"Right Ankle"},{"euler":{"heading":49.10181610400926,"pitch":-154.90788006618988,"roll":58.56748160213047},"location":"Right Hip"},{"euler":{"heading":85.59089604180122,"pitch":-126.33758788891042,"roll":-47.6927581624985},"location":"Right Knee"},{"euler":{"heading":17.317590149004307,"pitch":-131.55800031502622,"roll":58.45669986331707},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.557"} +{"sensors":[{"euler":{"heading":105.89278909949185,"pitch":136.69002476009092,"roll":28.51071497717039},"location":"Left Knee"},{"euler":{"heading":42.33367309038758,"pitch":107.51104755295601,"roll":32.30566977356771},"location":"Left Ankle"},{"euler":{"heading":30.463098747694293,"pitch":1.5132065900809941,"roll":2.2653314330409104},"location":"Right Ankle"},{"euler":{"heading":49.170037245497596,"pitch":-155.52900965290368,"roll":59.33989771864311},"location":"Right Hip"},{"euler":{"heading":87.5668818341487,"pitch":-129.02842575878188,"roll":-48.7861945828849},"location":"Right Knee"},{"euler":{"heading":17.069043387940724,"pitch":-130.66663220371603,"roll":57.93763171459166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.658"} +{"sensors":[{"euler":{"heading":118.45878797234788,"pitch":137.79561181041464,"roll":29.7047025480827},"location":"Left Knee"},{"euler":{"heading":40.851830484566946,"pitch":106.78466912530274,"roll":30.683250517168286},"location":"Left Ankle"},{"euler":{"heading":26.637564626062108,"pitch":0.9352554747717116,"roll":1.8952639590257143},"location":"Right Ankle"},{"euler":{"heading":49.683685328563975,"pitch":-156.04943718278355,"roll":59.78318958454107},"location":"Right Hip"},{"euler":{"heading":89.35128545429673,"pitch":-132.99718725304777,"roll":-50.459328325777534},"location":"Right Knee"},{"euler":{"heading":16.96065849365692,"pitch":-130.0205787202716,"roll":57.62251788121748},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.758"} +{"sensors":[{"euler":{"heading":129.5563759495019,"pitch":138.13015552503498,"roll":30.571081070037703},"location":"Left Knee"},{"euler":{"heading":40.26870198688693,"pitch":106.24034823374485,"roll":29.655116530063378},"location":"Left Ankle"},{"euler":{"heading":23.719252543646796,"pitch":0.3587741456006127,"roll":1.530672586484368},"location":"Right Ankle"},{"euler":{"heading":50.77013427128428,"pitch":-155.46209432754713,"roll":59.55411073821661},"location":"Right Hip"},{"euler":{"heading":91.78143833042171,"pitch":-103.5444008496456,"roll":-51.70576650888027},"location":"Right Knee"},{"euler":{"heading":17.121615980877706,"pitch":-129.85809786528287,"roll":57.61086337732643},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.859"} +{"sensors":[{"euler":{"heading":139.04734977208693,"pitch":138.0048136460294,"roll":31.18263148161792},"location":"Left Knee"},{"euler":{"heading":40.231189774564875,"pitch":105.80725890075722,"roll":29.194463010498342},"location":"Left Ankle"},{"euler":{"heading":22.49502209492416,"pitch":-0.10341636588166508,"roll":1.486137705725377},"location":"Right Ankle"},{"euler":{"heading":52.123451472531954,"pitch":-154.5501227276962,"roll":58.71662039120647},"location":"Right Hip"},{"euler":{"heading":92.05305094570707,"pitch":-108.98013369759012,"roll":-52.45908297680507},"location":"Right Knee"},{"euler":{"heading":17.532837253755268,"pitch":-130.26398659791215,"roll":57.838129812139904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.959"} +{"sensors":[{"euler":{"heading":147.39524360228,"pitch":137.45738744698454,"roll":31.53981305644603},"location":"Left Knee"},{"euler":{"heading":40.78311496320419,"pitch":105.49265615587981,"roll":29.187855347044714},"location":"Left Ankle"},{"euler":{"heading":23.793457592005552,"pitch":-0.587039424878856,"roll":1.8976825813930338},"location":"Right Ankle"},{"euler":{"heading":53.0769681193096,"pitch":-153.86758973808094,"roll":57.643694944074475},"location":"Right Hip"},{"euler":{"heading":89.36224632277745,"pitch":-111.0807170690751,"roll":-51.88033505836225},"location":"Right Knee"},{"euler":{"heading":18.11924770263265,"pitch":-131.11283511400634,"roll":58.198355543280094},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.59"} +{"sensors":[{"euler":{"heading":120.776243948614,"pitch":136.48046520492375,"roll":31.547916457804675},"location":"Left Knee"},{"euler":{"heading":41.96035823435725,"pitch":105.51119066134856,"roll":29.65750084692405},"location":"Left Ankle"},{"euler":{"heading":26.9790899791234,"pitch":-0.6798300359745086,"roll":2.299805820991028},"location":"Right Ankle"},{"euler":{"heading":53.20966797640267,"pitch":-153.67804479472278,"roll":56.66688613875994},"location":"Right Hip"},{"euler":{"heading":85.70241807131144,"pitch":-111.98861623816283,"roll":-50.09623527436737},"location":"Right Knee"},{"euler":{"heading":18.85504816493133,"pitch":-132.2971085148703,"roll":58.72050998142138},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.159"} +{"sensors":[{"euler":{"heading":99.61678404683502,"pitch":135.32298846424123,"roll":31.067733798632286},"location":"Left Knee"},{"euler":{"heading":43.54854103830111,"pitch":105.7538837631155,"roll":30.671056809977497},"location":"Left Ankle"},{"euler":{"heading":30.12255998136985,"pitch":-0.6567784102108394,"roll":2.836091039874096},"location":"Right Ankle"},{"euler":{"heading":52.194659333527476,"pitch":-153.91675652531828,"roll":56.074316268373806},"location":"Right Hip"},{"euler":{"heading":82.05771616886855,"pitch":-112.70313603241313,"roll":-47.946770157020836},"location":"Right Knee"},{"euler":{"heading":19.671551853548504,"pitch":-134.04649306993707,"roll":59.341627209958915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.260"} +{"sensors":[{"euler":{"heading":83.21890939926564,"pitch":134.061585533763,"roll":29.735487026330716},"location":"Left Knee"},{"euler":{"heading":45.53859906632556,"pitch":106.50856838860892,"roll":32.563228791348884},"location":"Left Ankle"},{"euler":{"heading":31.67978217929756,"pitch":-0.3148729568920778,"roll":3.131112325210897},"location":"Right Ankle"},{"euler":{"heading":51.42302444254574,"pitch":-154.07925305255742,"roll":55.77592686560267},"location":"Right Hip"},{"euler":{"heading":80.35167937441342,"pitch":-114.15230371613055,"roll":-46.513069196846715},"location":"Right Knee"},{"euler":{"heading":20.625478947132724,"pitch":-135.99807662834667,"roll":59.963113786828856},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.361"} +{"sensors":[{"euler":{"heading":71.71268192573402,"pitch":132.81315792140333,"roll":27.49548659784147},"location":"Left Knee"},{"euler":{"heading":49.21324222661956,"pitch":109.51607897869151,"roll":35.60121166062553},"location":"Left Ankle"},{"euler":{"heading":32.300850174099416,"pitch":0.1847586108027709,"roll":3.2434917355944886},"location":"Right Ankle"},{"euler":{"heading":51.04091355751176,"pitch":-154.06576880449353,"roll":55.785351189781785},"location":"Right Hip"},{"euler":{"heading":80.08438676051631,"pitch":-115.83817381727602,"roll":-45.78649846047608},"location":"Right Knee"},{"euler":{"heading":20.104531039061378,"pitch":-135.80206443735682,"roll":60.037966276458},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.462"} +{"sensors":[{"euler":{"heading":62.333012601971376,"pitch":132.02236942278475,"roll":25.623144033535958},"location":"Left Knee"},{"euler":{"heading":51.27673211717623,"pitch":110.64415791552156,"roll":37.93403511287873},"location":"Left Ankle"},{"euler":{"heading":32.458606819539945,"pitch":0.7022611484617438,"roll":3.0895328355329204},"location":"Right Ankle"},{"euler":{"heading":50.53779173861108,"pitch":-154.0773484749677,"roll":56.23383178998155},"location":"Right Hip"},{"euler":{"heading":81.00108161649898,"pitch":-117.76795657497739,"roll":-45.64033916431242},"location":"Right Knee"},{"euler":{"heading":19.000214392360352,"pitch":-134.10864444680377,"roll":59.58845666562623},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.563"} +{"sensors":[{"euler":{"heading":51.13332750021559,"pitch":132.6861159869953,"roll":25.468742583995713},"location":"Left Knee"},{"euler":{"heading":49.999606879812184,"pitch":109.65541445483768,"roll":37.880856941386256},"location":"Left Ankle"},{"euler":{"heading":32.42725448254404,"pitch":1.2240440662148675,"roll":2.872930264724022},"location":"Right Ankle"},{"euler":{"heading":50.381484371091325,"pitch":-153.9808110929725,"roll":56.89529893588224},"location":"Right Hip"},{"euler":{"heading":82.38187297054694,"pitch":-119.76981712622964,"roll":-45.90047356292847},"location":"Right Knee"},{"euler":{"heading":17.64415774987217,"pitch":-132.2731002119314,"roll":58.70013670396493},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.664"} +{"sensors":[{"euler":{"heading":72.99754337552814,"pitch":134.4876758509787,"roll":26.69644931365017},"location":"Left Knee"},{"euler":{"heading":46.2785097010901,"pitch":108.47535037278467,"roll":35.38921590613894},"location":"Left Ankle"},{"euler":{"heading":31.967575766785522,"pitch":1.6902471170068585,"roll":2.653150766069238},"location":"Right Ankle"},{"euler":{"heading":50.419968682887735,"pitch":-154.0183082819959,"roll":57.56518776262112},"location":"Right Hip"},{"euler":{"heading":84.01781456978792,"pitch":-121.9617505366342,"roll":-46.456909308830994},"location":"Right Knee"},{"euler":{"heading":16.183046903622536,"pitch":-131.22452866437632,"roll":57.64661518916545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.764"} +{"sensors":[{"euler":{"heading":90.41836951555854,"pitch":136.61726831382748,"roll":28.140307763344893},"location":"Left Knee"},{"euler":{"heading":42.63120332897323,"pitch":107.35403202584997,"roll":32.34386611605658},"location":"Left Ankle"},{"euler":{"heading":30.9490981135126,"pitch":2.147774484708607,"roll":2.210520162520605},"location":"Right Ankle"},{"euler":{"heading":50.499042056303196,"pitch":-154.2662696282774,"roll":58.34376738806138},"location":"Right Hip"},{"euler":{"heading":86.08264929293311,"pitch":-124.59916029096607,"roll":-47.47171060342404},"location":"Right Knee"},{"euler":{"heading":15.997393235906037,"pitch":-130.23408525010205,"roll":57.06786420652436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.865"} +{"sensors":[{"euler":{"heading":105.68133459589399,"pitch":137.84868246789063,"roll":29.45870990591963},"location":"Left Knee"},{"euler":{"heading":40.69711230791145,"pitch":106.78527707091989,"roll":30.27786067143544},"location":"Left Ankle"},{"euler":{"heading":29.110412736042015,"pitch":2.0564284492785143,"roll":1.7148698386246737},"location":"Right Ankle"},{"euler":{"heading":50.79565424532353,"pitch":-154.88303397397826,"roll":59.030448764512414},"location":"Right Hip"},{"euler":{"heading":88.0943803186971,"pitch":-127.82992033071356,"roll":-49.02612691974245},"location":"Right Knee"},{"euler":{"heading":16.19615336550342,"pitch":-129.7243026838421,"roll":56.78197917087978},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.967"} +{"sensors":[{"euler":{"heading":119.02286740124347,"pitch":138.19006845560608,"roll":30.390105612129176},"location":"Left Knee"},{"euler":{"heading":40.09445645198762,"pitch":106.24684365620588,"roll":29.323961207514003},"location":"Left Ankle"},{"euler":{"heading":25.86292402533363,"pitch":1.6824516248004135,"roll":1.1593526758959225},"location":"Right Ankle"},{"euler":{"heading":51.60332420565914,"pitch":-154.7336370522484,"roll":59.10484132726667},"location":"Right Hip"},{"euler":{"heading":90.33611424576739,"pitch":-132.72125139707438,"roll":-50.45646073575141},"location":"Right Knee"},{"euler":{"heading":16.3886244804566,"pitch":-129.42353645024917,"roll":56.80271838523822},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.71"} +{"sensors":[{"euler":{"heading":130.42252448763298,"pitch":138.07686328662462,"roll":31.04859783813829},"location":"Left Knee"},{"euler":{"heading":40.153916104924484,"pitch":105.84286298477987,"roll":28.82941042831116},"location":"Left Ankle"},{"euler":{"heading":23.566547584065905,"pitch":1.2548697022210944,"roll":0.9063819601039533},"location":"Right Ankle"},{"euler":{"heading":52.746213403751426,"pitch":-154.0990456606854,"roll":58.47061100374638},"location":"Right Hip"},{"euler":{"heading":91.44037069700445,"pitch":-136.1009208357084,"roll":-51.506976546563344},"location":"Right Knee"},{"euler":{"heading":16.87321153825811,"pitch":-129.91237995693876,"roll":57.053351780757026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.172"} +{"sensors":[{"euler":{"heading":140.3094648572308,"pitch":137.51663806351672,"roll":31.454201198583775},"location":"Left Knee"},{"euler":{"heading":40.71984336697549,"pitch":105.51298278894134,"roll":28.78023936415129},"location":"Left Ankle"},{"euler":{"heading":25.318860022098622,"pitch":0.6182585564861633,"roll":1.1293184432824175},"location":"Right Ankle"},{"euler":{"heading":53.76524413650916,"pitch":-153.39402295801705,"roll":57.45081371851744},"location":"Right Hip"},{"euler":{"heading":89.82966954749509,"pitch":-136.15671913294233,"roll":-51.649000286074624},"location":"Right Knee"},{"euler":{"heading":17.51969381163033,"pitch":-131.05626856274495,"roll":57.41094046179559},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.272"} +{"sensors":[{"euler":{"heading":114.97441605809112,"pitch":136.58758737979102,"roll":31.47639372886477},"location":"Left Knee"},{"euler":{"heading":41.77180944519599,"pitch":105.46418534117007,"roll":29.16975315013248},"location":"Left Ankle"},{"euler":{"heading":27.562213367559938,"pitch":0.35730630035001326,"roll":1.5629151082016841},"location":"Right Ankle"},{"euler":{"heading":53.88024316410568,"pitch":-153.1662917109353,"roll":56.43289964850117},"location":"Right Hip"},{"euler":{"heading":86.41213561602014,"pitch":-134.88140602151392,"roll":-50.26740589213315},"location":"Right Knee"},{"euler":{"heading":18.274954480040577,"pitch":-132.5312976183014,"roll":57.90692746852727},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.372"} +{"sensors":[{"euler":{"heading":94.91381617341479,"pitch":135.425865958206,"roll":31.04463181706502},"location":"Left Knee"},{"euler":{"heading":43.2811966510084,"pitch":105.65189674411846,"roll":30.081073384203453},"location":"Left Ankle"},{"euler":{"heading":30.600020774371764,"pitch":0.22224733681314876,"roll":2.1455157681479755},"location":"Right Ankle"},{"euler":{"heading":52.83885048614206,"pitch":-153.38828552983915,"roll":55.874478339990084},"location":"Right Hip"},{"euler":{"heading":82.5912696576516,"pitch":-133.41825097389,"roll":-48.08382226025781},"location":"Right Knee"},{"euler":{"heading":19.24413423948417,"pitch":-134.55567033434156,"roll":58.52814767101939},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.473"} +{"sensors":[{"euler":{"heading":79.3919056761209,"pitch":134.22007519799774,"roll":29.875105924786048},"location":"Left Knee"},{"euler":{"heading":45.01648708547439,"pitch":106.20225180239805,"roll":31.761828649869},"location":"Left Ankle"},{"euler":{"heading":32.23719516811611,"pitch":0.38541061256192755,"roll":2.48839204945402},"location":"Right Ankle"},{"euler":{"heading":51.724565764414805,"pitch":-153.71401366413033,"roll":55.58915319694031},"location":"Right Hip"},{"euler":{"heading":80.54479477521258,"pitch":-132.7601528898125,"roll":-46.49439684649835},"location":"Right Knee"},{"euler":{"heading":20.32901764058424,"pitch":-136.78581036448497,"roll":59.14972742645452},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.574"} +{"sensors":[{"euler":{"heading":68.19863577287859,"pitch":133.27167257272822,"roll":27.663441412838324},"location":"Left Knee"},{"euler":{"heading":48.030683439296276,"pitch":108.42439358945326,"roll":34.69768541637423},"location":"Left Ankle"},{"euler":{"heading":32.97129039443796,"pitch":0.5746701477992961,"roll":2.6440742530492862},"location":"Right Ankle"},{"euler":{"heading":50.75868288375175,"pitch":-153.99092101219296,"roll":55.69957865850339},"location":"Right Hip"},{"euler":{"heading":80.19494697859746,"pitch":-132.604609098756,"roll":-45.66853208640186},"location":"Right Knee"},{"euler":{"heading":19.808281076730992,"pitch":-137.02616151891206,"roll":59.325734460640895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.674"} +{"sensors":[{"euler":{"heading":59.52705914492406,"pitch":132.4015960579394,"roll":25.549200470176636},"location":"Left Knee"},{"euler":{"heading":50.48086819592264,"pitch":109.90602193393094,"roll":37.58613603435118},"location":"Left Ankle"},{"euler":{"heading":33.25132015160608,"pitch":0.7399810768913762,"roll":2.618478585723163},"location":"Right Ankle"},{"euler":{"heading":49.807295731105356,"pitch":-154.30688595423362,"roll":56.17405428691824},"location":"Right Hip"},{"euler":{"heading":80.90135835825828,"pitch":-132.80868924083734,"roll":-45.42657879514832},"location":"Right Knee"},{"euler":{"heading":18.501997019253135,"pitch":-135.51951007777666,"roll":58.991538306701315},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.775"} +{"sensors":[{"euler":{"heading":50.3815958590078,"pitch":132.51797226246876,"roll":24.801356826379887},"location":"Left Knee"},{"euler":{"heading":50.16840682311296,"pitch":109.05883729238036,"roll":38.40434011044063},"location":"Left Ankle"},{"euler":{"heading":33.391428596307456,"pitch":0.9133480472454959,"roll":2.529919320398175},"location":"Right Ankle"},{"euler":{"heading":49.36123819744513,"pitch":-154.48577921859754,"roll":56.81742653264041},"location":"Right Hip"},{"euler":{"heading":81.99106367930275,"pitch":-133.16577019640224,"roll":-45.582195672113},"location":"Right Knee"},{"euler":{"heading":17.07569460357704,"pitch":-133.76973374190572,"roll":58.24917977170592},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.875"} +{"sensors":[{"euler":{"heading":73.14302570525376,"pitch":133.93124586674475,"roll":25.76555665487263},"location":"Left Knee"},{"euler":{"heading":46.96369121148053,"pitch":107.81661641389105,"roll":36.51688661814406},"location":"Left Ankle"},{"euler":{"heading":33.10186831928419,"pitch":1.218856188654108,"roll":2.354659326304665},"location":"Right Ankle"},{"euler":{"heading":49.25760031192289,"pitch":-154.48713196931885,"roll":57.54228542664774},"location":"Right Hip"},{"euler":{"heading":83.51946112063767,"pitch":-133.93478192567727,"roll":-46.026220194586166},"location":"Right Knee"},{"euler":{"heading":16.05052712776371,"pitch":-132.20424066632367,"roll":57.60121926492071},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.976"} +{"sensors":[{"euler":{"heading":90.15104529258844,"pitch":136.1375499189201,"roll":27.256349042735373},"location":"Left Knee"},{"euler":{"heading":42.99008874147308,"pitch":106.3596244726369,"roll":33.33454070145513},"location":"Left Ankle"},{"euler":{"heading":32.25240999579663,"pitch":1.5488106605587948,"roll":2.0058210815291937},"location":"Right Ankle"},{"euler":{"heading":49.38082749136541,"pitch":-154.5953715769524,"roll":58.328988942633735},"location":"Right Hip"},{"euler":{"heading":85.35949672951739,"pitch":-135.06464893070861,"roll":-46.89174091362115},"location":"Right Knee"},{"euler":{"heading":15.829433112065962,"pitch":-131.40003168260287,"roll":57.169473948990024},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.77"} +{"sensors":[{"euler":{"heading":105.14734851032155,"pitch":137.57512055369617,"roll":28.575603382909062},"location":"Left Knee"},{"euler":{"heading":40.64019414157185,"pitch":105.49901746310178,"roll":31.091063107471868},"location":"Left Ankle"},{"euler":{"heading":30.587789306528016,"pitch":1.6333471646309354,"roll":1.505861511247288},"location":"Right Ankle"},{"euler":{"heading":49.85033484382879,"pitch":-154.8181663604444,"roll":59.07058388616248},"location":"Right Hip"},{"euler":{"heading":87.42497479119453,"pitch":-137.02045072190225,"roll":-48.311076957483465},"location":"Right Knee"},{"euler":{"heading":15.975393492985308,"pitch":-131.00526024261185,"roll":56.88581390976831},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.179"} +{"sensors":[{"euler":{"heading":118.63914794672104,"pitch":138.03170871150326,"roll":29.549387374850426},"location":"Left Knee"},{"euler":{"heading":39.86354738328795,"pitch":105.07699408559458,"roll":29.92306574993914},"location":"Left Ankle"},{"euler":{"heading":27.560113571340686,"pitch":1.2936706067196808,"roll":0.9761715569751956},"location":"Right Ankle"},{"euler":{"heading":50.79362586736539,"pitch":-154.4490182757058,"roll":59.06386959949876},"location":"Right Hip"},{"euler":{"heading":89.40156073610551,"pitch":-140.5916352301692,"roll":-49.856992306345006},"location":"Right Knee"},{"euler":{"heading":16.154358769556143,"pitch":-130.7669475575126,"roll":56.87289462219882},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.279"} +{"sensors":[{"euler":{"heading":130.2331868778275,"pitch":137.90384096270674,"roll":30.228399781348724},"location":"Left Knee"},{"euler":{"heading":40.25022277781236,"pitch":104.87942018526505,"roll":29.508267273220206},"location":"Left Ankle"},{"euler":{"heading":25.877727210637353,"pitch":0.7960559109306151,"roll":0.79413369943693},"location":"Right Ankle"},{"euler":{"heading":52.14268636572299,"pitch":-153.77015753157394,"roll":58.308685248296555},"location":"Right Hip"},{"euler":{"heading":90.1757534645586,"pitch":-142.31894826204763,"roll":-51.04776681145514},"location":"Right Knee"},{"euler":{"heading":16.503035801565385,"pitch":-131.15178041793988,"roll":57.05739943241961},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.380"} +{"sensors":[{"euler":{"heading":140.33873996562102,"pitch":137.28278547555837,"roll":30.68229787983191},"location":"Left Knee"},{"euler":{"heading":41.39917523540845,"pitch":104.908726253603,"roll":29.804746230664282},"location":"Left Ankle"},{"euler":{"heading":26.688064302986493,"pitch":0.13769100743600315,"roll":1.0990914811322718},"location":"Right Ankle"},{"euler":{"heading":53.122444166943914,"pitch":-153.11425620939485,"roll":57.28050990742699},"location":"Right Hip"},{"euler":{"heading":88.22939811579164,"pitch":-141.07576557835765,"roll":-50.94809807527009},"location":"Right Knee"},{"euler":{"heading":17.204703707842825,"pitch":-132.12426338299113,"roll":57.43243900377944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.481"} +{"sensors":[{"euler":{"heading":115.12323794492744,"pitch":136.30463630953588,"roll":30.700628653976835},"location":"Left Knee"},{"euler":{"heading":42.82150616917963,"pitch":105.1314397360453,"roll":30.46541295355158},"location":"Left Ankle"},{"euler":{"heading":29.24812056019684,"pitch":-0.16672691244345544,"roll":1.7555398655289522},"location":"Right Ankle"},{"euler":{"heading":52.97936487144517,"pitch":-153.02015328966536,"roll":56.40959274186451},"location":"Right Hip"},{"euler":{"heading":84.88185873504024,"pitch":-139.04715379171247,"roll":-49.31807564540783},"location":"Right Knee"},{"euler":{"heading":18.028931542642002,"pitch":-133.58687912895388,"roll":57.91449034813583},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.581"} +{"sensors":[{"euler":{"heading":95.23186652323781,"pitch":135.1222681254447,"roll":30.182138028566193},"location":"Left Knee"},{"euler":{"heading":44.78278040442917,"pitch":105.65401422750523,"roll":31.735053567405206},"location":"Left Ankle"},{"euler":{"heading":32.1647442770503,"pitch":-0.2935544108653112,"roll":2.391160801943893},"location":"Right Ankle"},{"euler":{"heading":52.05959517155704,"pitch":-153.26793912973628,"roll":55.835552578158804},"location":"Right Hip"},{"euler":{"heading":81.32044469748013,"pitch":-137.16989638962144,"roll":-47.17723451819212},"location":"Right Knee"},{"euler":{"heading":18.769206776614865,"pitch":-135.3443711227057,"roll":58.45770213319264},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.682"} +{"sensors":[{"euler":{"heading":80.00904341227147,"pitch":133.90968523964918,"roll":28.678485256990236},"location":"Left Knee"},{"euler":{"heading":47.14372367241242,"pitch":106.53115977962337,"roll":34.132434317821996},"location":"Left Ankle"},{"euler":{"heading":33.45299067775265,"pitch":-0.1288879951015897,"roll":2.7285060414470124},"location":"Right Ankle"},{"euler":{"heading":51.35999651535797,"pitch":-153.49809966872783,"roll":55.518258399426266},"location":"Right Hip"},{"euler":{"heading":79.48640876417537,"pitch":-136.154923328104,"roll":-45.65621226978804},"location":"Right Knee"},{"euler":{"heading":19.54775725002423,"pitch":-137.01197082678723,"roll":59.04436586155388},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.783"} +{"sensors":[{"euler":{"heading":69.26280639319393,"pitch":132.64598059279828,"roll":26.44985242498508},"location":"Left Knee"},{"euler":{"heading":50.33726665547287,"pitch":109.54841198064501,"roll":36.96169355760125},"location":"Left Ankle"},{"euler":{"heading":33.877602814314365,"pitch":0.12118477030690136,"roll":2.8494568050428755},"location":"Right Ankle"},{"euler":{"heading":50.602861364117025,"pitch":-153.74798335776964,"roll":55.5819199544616},"location":"Right Hip"},{"euler":{"heading":79.32239636212717,"pitch":-135.65267103349728,"roll":-44.910079752149684},"location":"Right Knee"},{"euler":{"heading":18.984281386665035,"pitch":-136.39846541762515,"roll":59.23634071400361},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.884"} +{"sensors":[{"euler":{"heading":59.79792481557303,"pitch":132.23970389716226,"roll":24.87911618897589},"location":"Left Knee"},{"euler":{"heading":51.560934175086324,"pitch":109.9005252521605,"roll":38.957015508744774},"location":"Left Ankle"},{"euler":{"heading":33.951790616889134,"pitch":0.3950318444047134,"roll":2.774597600367441},"location":"Right Ankle"},{"euler":{"heading":50.13155262053642,"pitch":-153.77790172882086,"roll":56.07353316554109},"location":"Right Hip"},{"euler":{"heading":80.13340709872443,"pitch":-135.55491390662246,"roll":-44.68082110377893},"location":"Right Knee"},{"euler":{"heading":17.845142896664377,"pitch":-134.89207044291427,"roll":58.7917419807721},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.984"} +{"sensors":[{"euler":{"heading":82.38104962047399,"pitch":133.1800419176198,"roll":25.07491978838902},"location":"Left Knee"},{"euler":{"heading":49.631835144197865,"pitch":108.59012948741848,"roll":38.402245488533},"location":"Left Ankle"},{"euler":{"heading":33.780668511229884,"pitch":0.6368839293232911,"roll":2.6771328335792735},"location":"Right Ankle"},{"euler":{"heading":49.82293453561338,"pitch":-153.84064596289997,"roll":56.779975243700385},"location":"Right Hip"},{"euler":{"heading":81.39793787323336,"pitch":-135.69237760849856,"roll":-44.9133234305688},"location":"Right Knee"},{"euler":{"heading":16.561644396544253,"pitch":-133.136580869496,"roll":58.03866251757471},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.87"} +{"sensors":[{"euler":{"heading":97.83998063577772,"pitch":135.27944495814265,"roll":26.464940340835472},"location":"Left Knee"},{"euler":{"heading":45.75145691631949,"pitch":107.23791640409875,"roll":35.7004841025924},"location":"Left Ankle"},{"euler":{"heading":33.19465584643463,"pitch":0.885456391651509,"roll":2.487869165531113},"location":"Right Ankle"},{"euler":{"heading":49.576183692672075,"pitch":-154.0817261929298,"roll":57.59757630299512},"location":"Right Hip"},{"euler":{"heading":83.10515405049163,"pitch":-136.20915538959622,"roll":-45.55771644816391},"location":"Right Knee"},{"euler":{"heading":15.635568687810103,"pitch":-131.71455071822453,"roll":57.369110294799626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.188"} +{"sensors":[{"euler":{"heading":110.12318207168349,"pitch":137.58342336663006,"roll":27.877313294895593},"location":"Left Knee"},{"euler":{"heading":42.11047347060935,"pitch":106.03811371531314,"roll":32.6195796419866},"location":"Left Ankle"},{"euler":{"heading":32.096517324287376,"pitch":1.1757818017523385,"roll":2.1085234223234117},"location":"Right Ankle"},{"euler":{"heading":49.5227770627931,"pitch":-154.67442806515567,"roll":58.491981123525136},"location":"Right Hip"},{"euler":{"heading":84.94891886190831,"pitch":-137.02754787436345,"roll":-46.72345177732224},"location":"Right Knee"},{"euler":{"heading":15.531282748412849,"pitch":-130.96881406785394,"roll":56.828647558828635},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.288"} +{"sensors":[{"euler":{"heading":121.49456696458572,"pitch":138.77049455766826,"roll":29.113717228541702},"location":"Left Knee"},{"euler":{"heading":40.81176226284525,"pitch":105.52913700313897,"roll":30.794885812772264},"location":"Left Ankle"},{"euler":{"heading":30.18071509921838,"pitch":0.9569201123848903,"roll":1.6463567608733145},"location":"Right Ankle"},{"euler":{"heading":50.10330507307499,"pitch":-155.06806183507433,"roll":59.13483714183852},"location":"Right Hip"},{"euler":{"heading":86.92827077619685,"pitch":-138.9274258244142,"roll":-48.5155147695407},"location":"Right Knee"},{"euler":{"heading":15.570744995325002,"pitch":-130.4842654021069,"roll":56.52390083476766},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.390"} +{"sensors":[{"euler":{"heading":131.95288885539048,"pitch":139.07175570325657,"roll":30.036313182904937},"location":"Left Knee"},{"euler":{"heading":40.20616763262597,"pitch":105.17559219821526,"roll":29.762077834506933},"location":"Left Ankle"},{"euler":{"heading":27.274364116380973,"pitch":0.37837793625127525,"roll":1.1865365136689798},"location":"Right Ankle"},{"euler":{"heading":51.35747607193094,"pitch":-154.4432754655023,"roll":58.937706232920405},"location":"Right Hip"},{"euler":{"heading":89.00080533922801,"pitch":-142.12695963090619,"roll":-50.04792829510534},"location":"Right Knee"},{"euler":{"heading":15.840868944889197,"pitch":-130.20633269620953,"roll":56.557299115465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.491"} +{"sensors":[{"euler":{"heading":141.22958830170654,"pitch":138.8092817197821,"roll":30.764131731878155},"location":"Left Knee"},{"euler":{"heading":40.32267409661511,"pitch":104.93891262199963,"roll":29.196124707230123},"location":"Left Ankle"},{"euler":{"heading":25.9231853275818,"pitch":-0.12134923002670106,"roll":1.0439407822722837},"location":"Right Ankle"},{"euler":{"heading":52.94324883136714,"pitch":-153.491476855072,"roll":58.03994516391444},"location":"Right Hip"},{"euler":{"heading":88.92014739445506,"pitch":-142.86993667407933,"roll":-50.82220441842305},"location":"Right Knee"},{"euler":{"heading":16.543616056988185,"pitch":-130.7990719997802,"roll":56.8074967693784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.592"} +{"sensors":[{"euler":{"heading":149.30096427725198,"pitch":138.19127586561544,"roll":31.190849600862176},"location":"Left Knee"},{"euler":{"heading":40.80451445748196,"pitch":104.78420024823683,"roll":29.07045282253891},"location":"Left Ankle"},{"euler":{"heading":26.737175974693958,"pitch":-0.7162272715637003,"roll":1.4440418371703636},"location":"Right Ankle"},{"euler":{"heading":53.950357759741856,"pitch":-152.87992093337024,"roll":56.86491978152745},"location":"Right Hip"},{"euler":{"heading":86.58299724535385,"pitch":-141.467325723468,"roll":-50.31593013839884},"location":"Right Knee"},{"euler":{"heading":17.434125928190397,"pitch":-132.06669986101232,"roll":57.212253619684034},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.693"} +{"sensors":[{"euler":{"heading":122.31881003114457,"pitch":137.28128462033132,"roll":31.196476277964805},"location":"Left Knee"},{"euler":{"heading":41.650888197598235,"pitch":104.78689225991513,"roll":29.384797614949356},"location":"Left Ankle"},{"euler":{"heading":28.991067762139686,"pitch":-1.046431819001484,"roll":2.139020537343911},"location":"Right Ankle"},{"euler":{"heading":54.04370461169548,"pitch":-152.7070389088922,"roll":55.91462944179808},"location":"Right Hip"},{"euler":{"heading":82.99870981601781,"pitch":-139.35984965520868,"roll":-48.54984748263669},"location":"Right Knee"},{"euler":{"heading":18.335688358331947,"pitch":-133.70720525358692,"roll":57.73308600439182},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.794"} +{"sensors":[{"euler":{"heading":100.87389016130894,"pitch":136.23193453156583,"roll":30.672435339375028},"location":"Left Knee"},{"euler":{"heading":42.962210083600795,"pitch":105.00335926863073,"roll":30.293497683953852},"location":"Left Ankle"},{"euler":{"heading":31.752129267810584,"pitch":-1.0776868415816154,"roll":2.6727645209183937},"location":"Right Ankle"},{"euler":{"heading":52.88945823401236,"pitch":-152.97866442237935,"roll":55.54225062159577},"location":"Right Hip"},{"euler":{"heading":79.76068849830669,"pitch":-137.52419077498084,"roll":-46.4404668460987},"location":"Right Knee"},{"euler":{"heading":19.198738150664504,"pitch":-135.732680692416,"roll":58.287608555869475},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.894"} +{"sensors":[{"euler":{"heading":84.46225758601095,"pitch":135.050536790808,"roll":29.330228841179903},"location":"Left Knee"},{"euler":{"heading":44.82069961664201,"pitch":105.7224219408814,"roll":32.16807717911871},"location":"Left Ankle"},{"euler":{"heading":33.025962344894126,"pitch":-0.8978829657627105,"roll":2.9179238447708005},"location":"Right Ankle"},{"euler":{"heading":51.70655025681559,"pitch":-153.37902957829562,"roll":55.42527068967083},"location":"Right Hip"},{"euler":{"heading":78.39358662968436,"pitch":-136.4992967181939,"roll":-45.114381025103285},"location":"Right Knee"},{"euler":{"heading":20.178886527841755,"pitch":-137.69033439825816,"roll":58.87856180725504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.995"} +{"sensors":[{"euler":{"heading":72.71884344661012,"pitch":133.8091054968831,"roll":27.164450411671538},"location":"Left Knee"},{"euler":{"heading":47.96549779581679,"pitch":108.31719942535395,"roll":34.95232874113527},"location":"Left Ankle"},{"euler":{"heading":33.5338977898054,"pitch":-0.6519486128754919,"roll":2.9435672555026255},"location":"Right Ankle"},{"euler":{"heading":50.6606974990975,"pitch":-153.67591164613873,"roll":55.74153530589559},"location":"Right Hip"},{"euler":{"heading":78.70107894371151,"pitch":-135.97023123934878,"roll":-44.58031346816643},"location":"Right Knee"},{"euler":{"heading":19.685353885735484,"pitch":-137.48197900953016,"roll":59.05063691169298},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.95"} +{"sensors":[{"euler":{"heading":62.69906786837177,"pitch":133.2743507126319,"roll":25.45439440645771},"location":"Left Knee"},{"euler":{"heading":49.60704181028744,"pitch":108.62590838929448,"roll":37.03772113406363},"location":"Left Ankle"},{"euler":{"heading":33.68225593379397,"pitch":-0.4769712071032801,"roll":2.8657011091936915},"location":"Right Ankle"},{"euler":{"heading":49.92920586445619,"pitch":-153.9504981380665,"roll":56.4141602706926},"location":"Right Hip"},{"euler":{"heading":79.63656369097454,"pitch":-135.6936335320887,"roll":-44.590509578643605},"location":"Right Knee"},{"euler":{"heading":18.46674275350178,"pitch":-136.11627250148774,"roll":58.70693754489221},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.196"} +{"sensors":[{"euler":{"heading":84.97053345511645,"pitch":134.015197805903,"roll":25.45873263498493},"location":"Left Knee"},{"euler":{"heading":48.13306044142256,"pitch":107.53188537614993,"roll":36.796320609197856},"location":"Left Ankle"},{"euler":{"heading":33.42917703964518,"pitch":-0.3364744362719456,"roll":2.7238982824973164},"location":"Right Ankle"},{"euler":{"heading":49.579964233830566,"pitch":-154.15140215038872,"roll":57.22494229738811},"location":"Right Hip"},{"euler":{"heading":81.01490426459257,"pitch":-135.7406125413136,"roll":-45.0218526261602},"location":"Right Knee"},{"euler":{"heading":17.082500295058242,"pitch":-134.3870181857278,"roll":58.057050019013325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.297"} +{"sensors":[{"euler":{"heading":100.14455170517229,"pitch":135.89246932475928,"roll":26.746844636490803},"location":"Left Knee"},{"euler":{"heading":44.64316798056034,"pitch":106.2149392974864,"roll":34.3781194698099},"location":"Left Ankle"},{"euler":{"heading":32.728495785040714,"pitch":-0.0666550268445747,"roll":2.446951748043877},"location":"Right Ankle"},{"euler":{"heading":49.4664194895281,"pitch":-154.3985935680709,"roll":58.012106515667035},"location":"Right Hip"},{"euler":{"heading":82.80936247332525,"pitch":-136.35387220778665,"roll":-45.80455450307497},"location":"Right Knee"},{"euler":{"heading":16.19284169584425,"pitch":-132.95900112716063,"roll":57.50465483906425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.397"} +{"sensors":[{"euler":{"heading":112.17663095747983,"pitch":138.01922768573942,"roll":28.156182696916126},"location":"Left Knee"},{"euler":{"heading":41.29218731590136,"pitch":105.23729868623586,"roll":31.482457917949553},"location":"Left Ankle"},{"euler":{"heading":31.44134182493683,"pitch":0.22506029330060245,"roll":1.9585374261396167},"location":"Right Ankle"},{"euler":{"heading":49.61126148194761,"pitch":-154.7827942272624,"roll":58.837352643944975},"location":"Right Hip"},{"euler":{"heading":84.91481080868824,"pitch":-137.55683412727527,"roll":-47.01815307299942},"location":"Right Knee"},{"euler":{"heading":16.023249123939703,"pitch":-132.16622992022073,"roll":57.09398582185505},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.498"} +{"sensors":[{"euler":{"heading":123.6456079697571,"pitch":138.9983744114752,"roll":29.264988970858727},"location":"Left Knee"},{"euler":{"heading":40.11796922339878,"pitch":104.80449944121708,"roll":29.884838856473113},"location":"Left Ankle"},{"euler":{"heading":29.04378204661347,"pitch":-0.08172331545623801,"roll":1.4511850946406561},"location":"Right Ankle"},{"euler":{"heading":50.431404246551764,"pitch":-154.76183875608308,"roll":59.34628499373111},"location":"Right Hip"},{"euler":{"heading":87.06681175295786,"pitch":-140.01873044901464,"roll":-48.75245608934498},"location":"Right Knee"},{"euler":{"heading":16.044910217285477,"pitch":-131.62128493355817,"roll":56.91857681443268},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.598"} +{"sensors":[{"euler":{"heading":134.1422210278589,"pitch":139.12932581316898,"roll":30.107796828681316},"location":"Left Knee"},{"euler":{"heading":39.947246646767915,"pitch":104.68040903365812,"roll":29.081286406875808},"location":"Left Ankle"},{"euler":{"heading":25.95105427262661,"pitch":-0.4187772336004558,"roll":0.9207509226087243},"location":"Right Ankle"},{"euler":{"heading":51.62017800888399,"pitch":-154.02943975767081,"roll":59.01607927955811},"location":"Right Hip"},{"euler":{"heading":89.30449238349682,"pitch":-143.21552421783906,"roll":-50.37529143519353},"location":"Right Knee"},{"euler":{"heading":16.42531006185802,"pitch":-131.59785709847046,"roll":57.0333377258256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.699"} +{"sensors":[{"euler":{"heading":143.43838262485266,"pitch":138.65923501828956,"roll":30.745581194701806},"location":"Left Knee"},{"euler":{"heading":41.15704401813536,"pitch":104.83566155948343,"roll":29.210296119099795},"location":"Left Ankle"},{"euler":{"heading":24.780207597878565,"pitch":-0.8426750765463081,"roll":0.7320943333436729},"location":"Right Ankle"},{"euler":{"heading":53.15834889016781,"pitch":-153.13484315952726,"roll":58.00384744338692},"location":"Right Hip"},{"euler":{"heading":89.29960278203458,"pitch":-143.63497525755676,"roll":-51.290841086428834},"location":"Right Knee"},{"euler":{"heading":17.17673380287716,"pitch":-132.29009474916123,"roll":57.333377166045054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.799"} +{"sensors":[{"euler":{"heading":151.65649095580986,"pitch":137.76418227135383,"roll":31.084884067738052},"location":"Left Knee"},{"euler":{"heading":42.397327703481025,"pitch":105.06532531525278,"roll":29.6421350965487},"location":"Left Ankle"},{"euler":{"heading":26.10451774786325,"pitch":-1.3213745922301274,"roll":1.1142972963772375},"location":"Right Ankle"},{"euler":{"heading":53.8827238401935,"pitch":-152.71773529611556,"roll":56.772802777615674},"location":"Right Hip"},{"euler":{"heading":86.85802305615704,"pitch":-141.88610592071527,"roll":-50.793495548536654},"location":"Right Knee"},{"euler":{"heading":17.96441266166886,"pitch":-133.53479534016486,"roll":57.71783622276731},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.900"} +{"sensors":[{"euler":{"heading":124.77069977141784,"pitch":136.6391700430977,"roll":30.963848632575413},"location":"Left Knee"},{"euler":{"heading":43.846878085707225,"pitch":105.48122809098952,"roll":30.443121650969516},"location":"Left Ankle"},{"euler":{"heading":28.85354758550038,"pitch":-1.3978193964393582,"roll":1.757408613538649},"location":"Right Ankle"},{"euler":{"heading":53.50081080719522,"pitch":-152.68513262781534,"roll":55.98585305890107},"location":"Right Hip"},{"euler":{"heading":83.1049944967893,"pitch":-139.64366849689668,"roll":-48.82740652219306},"location":"Right Knee"},{"euler":{"heading":18.882847400855702,"pitch":-135.20806218591204,"roll":58.2381375627924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.1"} +{"sensors":[{"euler":{"heading":103.45224433216032,"pitch":135.37147159509473,"roll":30.25979592141038},"location":"Left Knee"},{"euler":{"heading":45.78287711461015,"pitch":106.15483352880022,"roll":31.89918725956365},"location":"Left Ankle"},{"euler":{"heading":31.37793436208614,"pitch":-1.3243050116542265,"roll":2.2085472491232543},"location":"Right Ankle"},{"euler":{"heading":52.33197653551756,"pitch":-153.01829505081344,"roll":55.67804278915862},"location":"Right Hip"},{"euler":{"heading":79.96067512357808,"pitch":-137.91180813921113,"roll":-46.816474563763414},"location":"Right Knee"},{"euler":{"heading":19.872673066232686,"pitch":-137.23345610912057,"roll":58.79812489279464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.102"} +{"sensors":[{"euler":{"heading":87.45331669078388,"pitch":134.24814409353584,"roll":28.39798279906346},"location":"Left Knee"},{"euler":{"heading":47.78424253673971,"pitch":107.50158044718584,"roll":34.251228267204404},"location":"Left Ankle"},{"euler":{"heading":32.5649939669383,"pitch":-1.1745493702596963,"roll":2.325451283658299},"location":"Right Ankle"},{"euler":{"heading":51.458170618322235,"pitch":-153.32571073194296,"roll":55.619489329369166},"location":"Right Hip"},{"euler":{"heading":78.74163999615996,"pitch":-136.81437016515693,"roll":-45.62703495903924},"location":"Right Knee"},{"euler":{"heading":20.17779009102192,"pitch":-138.1922243727979,"roll":59.19782793450575},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.202"} +{"sensors":[{"euler":{"heading":75.76245013420602,"pitch":133.02358726609745,"roll":26.077126589016054},"location":"Left Knee"},{"euler":{"heading":50.37420757628234,"pitch":110.1411466920076,"roll":36.89082801311941},"location":"Left Ankle"},{"euler":{"heading":33.16240269347282,"pitch":-1.0568751454376075,"roll":2.359891139550548},"location":"Right Ankle"},{"euler":{"heading":50.546504136968224,"pitch":-153.69306313474115,"roll":55.99456791174968},"location":"Right Hip"},{"euler":{"heading":78.90877566059939,"pitch":-135.99373981382945,"roll":-45.18688861959659},"location":"Right Knee"},{"euler":{"heading":19.523932818637384,"pitch":-136.9254244434452,"roll":59.26224387439785},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.303"} +{"sensors":[{"euler":{"heading":64.82850593199163,"pitch":132.67651568710005,"roll":24.77371286637853},"location":"Left Knee"},{"euler":{"heading":51.36525967097791,"pitch":110.00881397147806,"roll":38.54806320150198},"location":"Left Ankle"},{"euler":{"heading":33.5029276151111,"pitch":-0.8849962882137984,"roll":2.254312831502829},"location":"Right Ankle"},{"euler":{"heading":49.94272000159596,"pitch":-154.0016899383936,"roll":56.69663093826785},"location":"Right Hip"},{"euler":{"heading":79.68771938324998,"pitch":-135.47114824270167,"roll":-45.19289208473304},"location":"Right Knee"},{"euler":{"heading":18.22755582300261,"pitch":-135.28566822579455,"roll":58.69627495258938},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.404"} +{"sensors":[{"euler":{"heading":86.05418586759755,"pitch":133.7298800183284,"roll":25.24113648405377},"location":"Left Knee"},{"euler":{"heading":49.049500232885386,"pitch":108.86053117183562,"roll":37.64574974209385},"location":"Left Ankle"},{"euler":{"heading":33.37746813031554,"pitch":-0.6224518566530604,"roll":2.1290511136537305},"location":"Right Ankle"},{"euler":{"heading":49.66831859365009,"pitch":-154.19772433470408,"roll":57.46865234950418},"location":"Right Hip"},{"euler":{"heading":80.94382964466375,"pitch":-135.4560568409936,"roll":-45.56098823573699},"location":"Right Knee"},{"euler":{"heading":16.880708990212955,"pitch":-133.52246423210764,"roll":57.999839243985065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.504"} +{"sensors":[{"euler":{"heading":100.98428265491496,"pitch":135.87804998201963,"roll":26.627236301541146},"location":"Left Knee"},{"euler":{"heading":44.93575919299777,"pitch":107.41719776552839,"roll":34.528434729896716},"location":"Left Ankle"},{"euler":{"heading":32.68615658660796,"pitch":-0.28381171406306743,"roll":1.9146346773453837},"location":"Right Ankle"},{"euler":{"heading":49.5268733275159,"pitch":-154.51185304969704,"roll":58.268305513831336},"location":"Right Hip"},{"euler":{"heading":82.62631519213488,"pitch":-135.80506477271564,"roll":-46.35185795609099},"location":"Right Knee"},{"euler":{"heading":16.229755655219638,"pitch":-132.29559395338524,"roll":57.47072215741639},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.605"} +{"sensors":[{"euler":{"heading":113.31009981291098,"pitch":137.88727382938714,"roll":27.964717788769875},"location":"Left Knee"},{"euler":{"heading":41.81713544671224,"pitch":106.46787979427333,"roll":31.790888371724492},"location":"Left Ankle"},{"euler":{"heading":31.287768383078177,"pitch":-0.019001841976675704,"roll":1.4411851295162605},"location":"Right Ankle"},{"euler":{"heading":49.625089172666335,"pitch":-155.12903752209075,"roll":59.116743193385716},"location":"Right Hip"},{"euler":{"heading":84.5092836671493,"pitch":-136.69162288399986,"roll":-47.63230048021764},"location":"Right Knee"},{"euler":{"heading":16.17832569361214,"pitch":-131.6967260697989,"roll":57.06922629152454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.706"} +{"sensors":[{"euler":{"heading":125.0076984860155,"pitch":138.7125040419605,"roll":29.026338763304263},"location":"Left Knee"},{"euler":{"heading":40.22080425977147,"pitch":105.84667792589227,"roll":30.25310950174799},"location":"Left Ankle"},{"euler":{"heading":28.70400520586254,"pitch":-0.23122536767944443,"roll":1.060334893968552},"location":"Right Ankle"},{"euler":{"heading":50.42489042172647,"pitch":-155.05730976163753,"roll":59.58720792370988},"location":"Right Hip"},{"euler":{"heading":86.62180572793142,"pitch":-139.182314589136,"roll":-49.314128079995236},"location":"Right Knee"},{"euler":{"heading":16.302683510721224,"pitch":-131.33912998323228,"roll":56.890227224869655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.807"} +{"sensors":[{"euler":{"heading":135.22777271546556,"pitch":138.85875822500205,"roll":29.826449819643095},"location":"Left Knee"},{"euler":{"heading":39.371518715949996,"pitch":105.33807560537966,"roll":29.206439568939295},"location":"Left Ankle"},{"euler":{"heading":25.779860904070876,"pitch":-0.8037608349490234,"roll":0.6800411616208399},"location":"Right Ankle"},{"euler":{"heading":51.88832864690867,"pitch":-154.26707756876033,"roll":59.15085012789533},"location":"Right Hip"},{"euler":{"heading":88.5358410182869,"pitch":-142.19707881594357,"roll":-50.942987497791854},"location":"Right Knee"},{"euler":{"heading":16.70771824421392,"pitch":-131.64575280456583,"roll":56.9422865049016},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.907"} +{"sensors":[{"euler":{"heading":143.9348408568416,"pitch":138.6106003024036,"roll":30.383981760726474},"location":"Left Knee"},{"euler":{"heading":39.20525701955003,"pitch":104.94325242477694,"roll":28.75873987217564},"location":"Left Ankle"},{"euler":{"heading":24.967026574128166,"pitch":-1.161310604739492,"roll":0.5202273772110626},"location":"Right Ankle"},{"euler":{"heading":53.48492587666866,"pitch":-153.3142038466395,"roll":58.084181071928924},"location":"Right Hip"},{"euler":{"heading":88.58105227011404,"pitch":-142.4993783206117,"roll":-51.7391367215123},"location":"Right Knee"},{"euler":{"heading":17.229610085173057,"pitch":-132.386942148561,"roll":57.19153410917414},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.8"} +{"sensors":[{"euler":{"heading":151.67654541793848,"pitch":138.01743931018575,"roll":30.632830291616017},"location":"Left Knee"},{"euler":{"heading":39.532856118905116,"pitch":104.70489292088763,"roll":28.716291339153912},"location":"Left Ankle"},{"euler":{"heading":26.477461303453925,"pitch":-1.4135047890979777,"roll":0.8988029374221675},"location":"Right Ankle"},{"euler":{"heading":54.274976179826865,"pitch":-152.85625308136818,"roll":56.83954936838757},"location":"Right Hip"},{"euler":{"heading":85.89512030222384,"pitch":-140.8288060156729,"roll":-50.84837394653859},"location":"Right Knee"},{"euler":{"heading":17.7044970150229,"pitch":-133.50946929341114,"roll":57.541923514627335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.108"} +{"sensors":[{"euler":{"heading":124.50174557716839,"pitch":137.09425771555644,"roll":30.453726207038578},"location":"Left Knee"},{"euler":{"heading":40.41940589615856,"pitch":104.69729311302204,"roll":29.21295840561906},"location":"Left Ankle"},{"euler":{"heading":29.503741203279606,"pitch":-1.6119824832310357,"roll":1.5683584462879767},"location":"Right Ankle"},{"euler":{"heading":53.691189826378405,"pitch":-152.92343476439635,"roll":56.20677369126246},"location":"Right Hip"},{"euler":{"heading":82.06092254667902,"pitch":-138.44913185789176,"roll":-48.59763515857285},"location":"Right Knee"},{"euler":{"heading":18.301419680869156,"pitch":-135.0781297401606,"roll":58.03139607630196},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.211"} +{"sensors":[{"euler":{"heading":103.08339224133807,"pitch":135.97351893216518,"roll":29.697128622203373},"location":"Left Knee"},{"euler":{"heading":41.86469410704578,"pitch":105.0055175403206,"roll":30.417434124297145},"location":"Left Ankle"},{"euler":{"heading":31.868695032192072,"pitch":-1.5478223896418628,"roll":2.013699233788065},"location":"Right Ankle"},{"euler":{"heading":52.58298359028162,"pitch":-153.1685303313902,"roll":55.883893671227796},"location":"Right Hip"},{"euler":{"heading":79.21280568938948,"pitch":-136.77739393617532,"roll":-46.61450549080238},"location":"Right Knee"},{"euler":{"heading":19.24202268649866,"pitch":-137.10399286188635,"roll":58.57537782833539},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.312"} +{"sensors":[{"euler":{"heading":87.14535569441144,"pitch":134.91182787710932,"roll":27.81749549131062},"location":"Left Knee"},{"euler":{"heading":44.21932011596859,"pitch":106.38430405332943,"roll":32.916372090935916},"location":"Left Ankle"},{"euler":{"heading":32.889539268036124,"pitch":-1.329242214120508,"roll":2.166974093448211},"location":"Right Ankle"},{"euler":{"heading":52.062030531130844,"pitch":-153.20006135775296,"roll":55.776032124227136},"location":"Right Hip"},{"euler":{"heading":78.08766816762787,"pitch":-135.74030456368314,"roll":-45.402661025021516},"location":"Right Knee"},{"euler":{"heading":19.22740679300091,"pitch":-137.70646723421171,"roll":58.78818390035794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.413"} +{"sensors":[{"euler":{"heading":74.98710493617959,"pitch":134.07598156091348,"roll":25.730217319817676},"location":"Left Knee"},{"euler":{"heading":46.42671477637471,"pitch":107.92919898803562,"roll":35.54026254350422},"location":"Left Ankle"},{"euler":{"heading":33.398413493113836,"pitch":-1.3395402275552106,"roll":2.1392000805909577},"location":"Right Ankle"},{"euler":{"heading":51.290646893635376,"pitch":-153.42478814926153,"roll":56.142164893084704},"location":"Right Hip"},{"euler":{"heading":78.12360132211843,"pitch":-134.7305245453484,"roll":-44.9719676232984},"location":"Right Knee"},{"euler":{"heading":18.359315017629992,"pitch":-136.31346099368943,"roll":58.55862997013109},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.514"} +{"sensors":[{"euler":{"heading":63.27807675744226,"pitch":134.06875382086022,"roll":24.82246707936436},"location":"Left Knee"},{"euler":{"heading":46.85481574266794,"pitch":107.46030931891178,"roll":36.701712866358136},"location":"Left Ankle"},{"euler":{"heading":33.719954230351604,"pitch":-1.3845304890051544,"roll":1.9357088398411686},"location":"Right Ankle"},{"euler":{"heading":51.093046271003026,"pitch":-153.51517697742037,"roll":56.7350628462975},"location":"Right Hip"},{"euler":{"heading":78.57514019098743,"pitch":-133.9000340791931,"roll":-44.986524816191405},"location":"Right Knee"},{"euler":{"heading":16.97670265949279,"pitch":-134.6784099828373,"roll":57.80394403826365},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.614"} +{"sensors":[{"euler":{"heading":84.16043885390646,"pitch":135.2453298360486,"roll":25.552791799381154},"location":"Left Knee"},{"euler":{"heading":44.74398698984542,"pitch":106.51878097975158,"roll":35.445900960042415},"location":"Left Ankle"},{"euler":{"heading":33.64434889997785,"pitch":-1.3479520562424903,"roll":1.7813012256061989},"location":"Right Ankle"},{"euler":{"heading":50.96692294294137,"pitch":-153.5731863448603,"roll":57.44992065667172},"location":"Right Hip"},{"euler":{"heading":79.61073417701853,"pitch":-133.58255141032927,"roll":-45.3623610222665},"location":"Right Knee"},{"euler":{"heading":15.749496250100613,"pitch":-132.97297138212886,"roll":57.02592262480635},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.715"} +{"sensors":[{"euler":{"heading":98.98778659853603,"pitch":137.45148321326752,"roll":26.992479736041638},"location":"Left Knee"},{"euler":{"heading":41.065581814081554,"pitch":105.07822999568403,"roll":32.52001046871939},"location":"Left Ankle"},{"euler":{"heading":33.05331095964485,"pitch":-1.291071913549125,"roll":1.5583473169013502},"location":"Right Ankle"},{"euler":{"heading":50.869598607421345,"pitch":-153.93483357215945,"roll":58.22162913370157},"location":"Right Hip"},{"euler":{"heading":81.03537224016428,"pitch":-133.59847994435611,"roll":-46.17807044842677},"location":"Right Knee"},{"euler":{"heading":15.113270056272517,"pitch":-131.73297318402905,"roll":56.494324358672266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.816"} +{"sensors":[{"euler":{"heading":111.65753510157715,"pitch":139.31103434728362,"roll":28.34277993104879},"location":"Left Knee"},{"euler":{"heading":38.2201762907208,"pitch":104.20871876807286,"roll":29.937843465939658},"location":"Left Ankle"},{"euler":{"heading":31.85593282540824,"pitch":-1.1801494137584363,"roll":1.0117740392151882},"location":"Right Ankle"},{"euler":{"heading":50.83152670125205,"pitch":-154.60096166970726,"roll":59.14585059175313},"location":"Right Hip"},{"euler":{"heading":82.67154363114317,"pitch":-134.17769750203826,"roll":-47.40964611180368},"location":"Right Knee"},{"euler":{"heading":15.115515815114883,"pitch":-131.00926532852938,"roll":56.11436456572069},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.917"} +{"sensors":[{"euler":{"heading":123.64268969165425,"pitch":140.00677475930783,"roll":29.37438308142142},"location":"Left Knee"},{"euler":{"heading":37.26967272729129,"pitch":103.7489116474229,"roll":28.570390040414203},"location":"Left Ankle"},{"euler":{"heading":29.650787547630866,"pitch":-1.513785864604881,"roll":0.5112481942978965},"location":"Right Ankle"},{"euler":{"heading":51.317595229324986,"pitch":-154.8291700036854,"roll":59.83352286514019},"location":"Right Hip"},{"euler":{"heading":84.73656650751215,"pitch":-136.24759701679397,"roll":-49.195887997729436},"location":"Right Knee"},{"euler":{"heading":15.194643639102686,"pitch":-130.38412666443142,"roll":55.94296233950149},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.18"} +{"sensors":[{"euler":{"heading":134.2230658516644,"pitch":139.95262254224775,"roll":30.260292601622016},"location":"Left Knee"},{"euler":{"heading":37.28212736250862,"pitch":103.52309348719218,"roll":27.77296827941572},"location":"Left Ankle"},{"euler":{"heading":26.67993671061063,"pitch":-1.809739866474093,"roll":0.0583348313235838},"location":"Right Ankle"},{"euler":{"heading":52.197157526243934,"pitch":-154.31034250766004,"roll":59.55209360843986},"location":"Right Hip"},{"euler":{"heading":86.83168589965605,"pitch":-139.16697164341517,"roll":-50.764651302646236},"location":"Right Knee"},{"euler":{"heading":15.622097179904324,"pitch":-130.32975072257997,"roll":56.09107542546466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.118"} +{"sensors":[{"euler":{"heading":143.12407859031788,"pitch":139.55879370845983,"roll":30.877625511517103},"location":"Left Knee"},{"euler":{"heading":37.8036216598118,"pitch":103.30686564658681,"roll":27.568642964436886},"location":"Left Ankle"},{"euler":{"heading":25.579156200502876,"pitch":-2.2023927270969574,"roll":-0.10179226315967019},"location":"Right Ankle"},{"euler":{"heading":53.40485739856377,"pitch":-153.6208920546499,"roll":58.56021714253703},"location":"Right Hip"},{"euler":{"heading":86.76952038827167,"pitch":-139.3651195533018,"roll":-51.53614758965181},"location":"Right Knee"},{"euler":{"heading":16.079111209054638,"pitch":-130.9345311265153,"roll":56.39156787913436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.219"} +{"sensors":[{"euler":{"heading":151.04242069852197,"pitch":138.7862562781268,"roll":31.204367679219384},"location":"Left Knee"},{"euler":{"heading":38.640846846370906,"pitch":103.24200323015951,"roll":27.704800690759622},"location":"Left Ankle"},{"euler":{"heading":26.99650829524086,"pitch":-2.6706553598331397,"roll":0.3716247125467548},"location":"Right Ankle"},{"euler":{"heading":53.888369585825416,"pitch":-153.3002362109736,"roll":57.34759154402564},"location":"Right Hip"},{"euler":{"heading":84.19186359561265,"pitch":-137.68948268025764,"roll":-50.652803524761026},"location":"Right Knee"},{"euler":{"heading":16.750579177695368,"pitch":-132.16549221839315,"roll":56.81210870217744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.319"} +{"sensors":[{"euler":{"heading":123.89929064338699,"pitch":137.75426918367128,"roll":31.11358352820056},"location":"Left Knee"},{"euler":{"heading":39.75442806277671,"pitch":103.29627169087615,"roll":28.25012326524294},"location":"Left Ankle"},{"euler":{"heading":29.934681620374167,"pitch":-2.767382626887171,"roll":1.1210545470358482},"location":"Right Ankle"},{"euler":{"heading":53.4103086155744,"pitch":-153.37869180205047,"roll":56.50001978113234},"location":"Right Hip"},{"euler":{"heading":80.20850913025328,"pitch":-135.6143817174276,"roll":-48.36716058929748},"location":"Right Knee"},{"euler":{"heading":17.573860567064244,"pitch":-133.88577961002966,"roll":57.382895456187306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.420"} +{"sensors":[{"euler":{"heading":102.37607172570222,"pitch":136.6123640142376,"roll":30.45474037300544},"location":"Left Knee"},{"euler":{"heading":41.24292198490038,"pitch":103.54157302006985,"roll":29.409446526186215},"location":"Left Ankle"},{"euler":{"heading":32.48314211004462,"pitch":-2.700330722004755,"roll":1.6802887745296697},"location":"Right Ankle"},{"euler":{"heading":52.364888977171304,"pitch":-153.6577700779627,"roll":56.05411982770755},"location":"Right Hip"},{"euler":{"heading":76.94099754085636,"pitch":-133.89719787760043,"roll":-46.108689415781896},"location":"Right Knee"},{"euler":{"heading":18.64629807945716,"pitch":-136.17369763543007,"roll":57.988565779108264},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.521"} +{"sensors":[{"euler":{"heading":85.98356228234506,"pitch":135.32937956476852,"roll":28.919211017061894},"location":"Left Knee"},{"euler":{"heading":43.34160470941184,"pitch":104.46508637901145,"roll":31.730785083773593},"location":"Left Ankle"},{"euler":{"heading":33.499663400908986,"pitch":-2.354282358424875,"roll":1.9604042000840913},"location":"Right Ankle"},{"euler":{"heading":51.443502136206625,"pitch":-153.88057451653816,"roll":55.86466714699798},"location":"Right Hip"},{"euler":{"heading":75.5854209157551,"pitch":-133.08057916183617,"roll":-44.67147651399885},"location":"Right Knee"},{"euler":{"heading":19.655205509965807,"pitch":-138.13696209996573,"roll":58.61985606654625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.621"} +{"sensors":[{"euler":{"heading":74.45200129404094,"pitch":133.8414469916666,"roll":26.584444859187208},"location":"Left Knee"},{"euler":{"heading":47.05168188383519,"pitch":107.58969403670655,"roll":34.8955165567661},"location":"Left Ankle"},{"euler":{"heading":33.868255928027544,"pitch":-1.8092848211212655,"roll":2.0414597465641906},"location":"Right Ankle"},{"euler":{"heading":50.70096221329891,"pitch":-153.95733324019008,"roll":56.12724359425793},"location":"Right Hip"},{"euler":{"heading":75.75371739599625,"pitch":-132.74592215607342,"roll":-43.953618524437374},"location":"Right Knee"},{"euler":{"heading":19.351689362740782,"pitch":-137.8385588249758,"roll":58.85815768774593},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.722"} +{"sensors":[{"euler":{"heading":64.32031607841266,"pitch":133.2857798023778,"roll":24.8879446835341},"location":"Left Knee"},{"euler":{"heading":48.650724573693374,"pitch":107.84870074151111,"roll":37.05765689577904},"location":"Left Ankle"},{"euler":{"heading":33.843067167019385,"pitch":-1.2210052100563646,"roll":2.0196799685374276},"location":"Right Ankle"},{"euler":{"heading":50.15836971999662,"pitch":-154.00895437337408,"roll":56.82263116445314},"location":"Right Hip"},{"euler":{"heading":76.81898635927385,"pitch":-132.71063821491907,"roll":-43.7796713299828},"location":"Right Knee"},{"euler":{"heading":18.24704637543354,"pitch":-136.43893268981213,"roll":58.52087727685789},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.822"} +{"sensors":[{"euler":{"heading":86.20883010285735,"pitch":134.07904747298812,"roll":25.053181934974845},"location":"Left Knee"},{"euler":{"heading":46.85062309315597,"pitch":106.76321116136229,"roll":36.52303990959483},"location":"Left Ankle"},{"euler":{"heading":33.49545071776089,"pitch":-0.6411231901057755,"roll":1.916737683470098},"location":"Right Ankle"},{"euler":{"heading":49.88056419307557,"pitch":-154.11511812652464,"roll":57.6718464283543},"location":"Right Hip"},{"euler":{"heading":78.20252387749329,"pitch":-132.89274173035204,"roll":-43.97304399860165},"location":"Right Knee"},{"euler":{"heading":17.003683370456088,"pitch":-134.6611494259444,"roll":57.93030587282092},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.923"} +{"sensors":[{"euler":{"heading":101.17630356955016,"pitch":136.00969837347776,"roll":26.40959845329148},"location":"Left Knee"},{"euler":{"heading":43.06397730324289,"pitch":105.44209615830005,"roll":33.83356919426913},"location":"Left Ankle"},{"euler":{"heading":32.657909140144895,"pitch":-0.07478524869327363,"roll":1.7462987761348099},"location":"Right Ankle"},{"euler":{"heading":49.80767532952514,"pitch":-154.32414390578276,"roll":58.51162384801838},"location":"Right Hip"},{"euler":{"heading":79.97745610829136,"pitch":-133.44396765860182,"roll":-44.58797487132936},"location":"Right Knee"},{"euler":{"heading":16.16992363750286,"pitch":-133.70646149489704,"roll":57.33051414365605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.23"} +{"sensors":[{"euler":{"heading":114.47802862386163,"pitch":137.46537618416139,"roll":27.589423495154776},"location":"Left Knee"},{"euler":{"heading":40.43910047975222,"pitch":104.71633141906004,"roll":31.70314485967348},"location":"Left Ankle"},{"euler":{"heading":31.020881792238796,"pitch":0.19986753530103563,"roll":1.3364246287597656},"location":"Right Ankle"},{"euler":{"heading":50.12254838799632,"pitch":-154.60841104607124,"roll":59.229900352799675},"location":"Right Hip"},{"euler":{"heading":82.12042436287615,"pitch":-134.6205233324917,"roll":-45.75083187034507},"location":"Right Knee"},{"euler":{"heading":16.15311653340502,"pitch":-132.96743963888758,"roll":57.073152321845264},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.124"} +{"sensors":[{"euler":{"heading":126.55258277438818,"pitch":138.01563807328333,"roll":28.508385081387583},"location":"Left Knee"},{"euler":{"heading":39.603767190846035,"pitch":104.41632345140752,"roll":30.411524889365683},"location":"Left Ankle"},{"euler":{"heading":28.039580685288154,"pitch":-0.06884776857713493,"roll":0.9239225743093487},"location":"Right Ankle"},{"euler":{"heading":51.1473107874677,"pitch":-154.18787222776632,"roll":59.40422625124644},"location":"Right Hip"},{"euler":{"heading":84.45772457419444,"pitch":-137.01690814732157,"roll":-47.46894664187175},"location":"Right Knee"},{"euler":{"heading":16.234479816915144,"pitch":-132.54842009944483,"roll":56.99485002145825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.224"} +{"sensors":[{"euler":{"heading":137.12887019766322,"pitch":137.88929904269355,"roll":29.28047744220145},"location":"Left Knee"},{"euler":{"heading":40.04940565547003,"pitch":104.4242831765633,"roll":30.152402234313612},"location":"Left Ankle"},{"euler":{"heading":25.70551013518926,"pitch":-0.5438685474490551,"roll":0.6101128218348401},"location":"Right Ankle"},{"euler":{"heading":52.52740811363938,"pitch":-153.4149468286025,"roll":58.759352883062675},"location":"Right Hip"},{"euler":{"heading":86.0207302823941,"pitch":-138.89401697008387,"roll":-48.94039157309122},"location":"Right Knee"},{"euler":{"heading":16.723216825762748,"pitch":-132.7162280623384,"roll":57.17964444908692},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.325"} +{"sensors":[{"euler":{"heading":146.3891988481678,"pitch":137.28151746979833,"roll":29.84238250210186},"location":"Left Knee"},{"euler":{"heading":41.306090086640125,"pitch":104.6336261926763,"roll":30.47084221056986},"location":"Left Ankle"},{"euler":{"heading":25.63742108350916,"pitch":-1.0628826261446882,"roll":0.6709820397290066},"location":"Right Ankle"},{"euler":{"heading":53.72282867949112,"pitch":-152.7512177434644,"roll":57.61696412712107},"location":"Right Hip"},{"euler":{"heading":85.21965997949673,"pitch":-138.35713029619316,"roll":-49.29683496982343},"location":"Right Knee"},{"euler":{"heading":17.587128148953063,"pitch":-133.6528539121285,"roll":57.626289779500695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.426"} +{"sensors":[{"euler":{"heading":120.22597975439052,"pitch":136.42834038281373,"roll":30.023844467742805},"location":"Left Knee"},{"euler":{"heading":42.341007232742385,"pitch":104.82305547071606,"roll":30.978966990993218},"location":"Left Ankle"},{"euler":{"heading":27.698199356314255,"pitch":-1.6217051454509908,"roll":1.047107689677664},"location":"Right Ankle"},{"euler":{"heading":54.11899758493733,"pitch":-152.66192229136314,"roll":56.38110455325911},"location":"Right Hip"},{"euler":{"heading":82.16184021138044,"pitch":-136.4206598651837,"roll":-48.12115419518694},"location":"Right Knee"},{"euler":{"heading":18.502583562798755,"pitch":-135.27921859968978,"roll":58.14340885255182},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.527"} +{"sensors":[{"euler":{"heading":99.41593124631207,"pitch":135.35311101086992,"roll":29.748092113938345},"location":"Left Knee"},{"euler":{"heading":43.80076294583398,"pitch":105.26200414651063,"roll":31.973834127421846},"location":"Left Ankle"},{"euler":{"heading":30.580569185596516,"pitch":-1.9846823332530472,"roll":1.779844719659677},"location":"Right Ankle"},{"euler":{"heading":53.49807633953706,"pitch":-152.84865990522317,"roll":55.64925102044303},"location":"Right Hip"},{"euler":{"heading":78.32040651270921,"pitch":-134.31762288305245,"roll":-45.89797497596243},"location":"Right Knee"},{"euler":{"heading":19.448352606480324,"pitch":-137.43458584992533,"roll":58.700516628477686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.627"} +{"sensors":[{"euler":{"heading":83.26848242020078,"pitch":134.14829575172683,"roll":28.779188458856208},"location":"Left Knee"},{"euler":{"heading":45.81646177997276,"pitch":106.15265839650269,"roll":33.92638405444551},"location":"Left Ankle"},{"euler":{"heading":32.63149445449715,"pitch":-1.8612879650182406,"roll":2.2169585071535898},"location":"Right Ankle"},{"euler":{"heading":52.27622978777874,"pitch":-153.24355580782014,"roll":55.444803684824066},"location":"Right Hip"},{"euler":{"heading":75.92415356009053,"pitch":-133.14590996741535,"roll":-44.02896288945629},"location":"Right Knee"},{"euler":{"heading":20.520012646729505,"pitch":-139.72380649318717,"roll":59.228410801181454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.728"} +{"sensors":[{"euler":{"heading":71.31331949696141,"pitch":133.1591586796968,"roll":26.760952624692585},"location":"Left Knee"},{"euler":{"heading":48.32898338725053,"pitch":108.09414298650654,"roll":36.81091565519056},"location":"Left Ankle"},{"euler":{"heading":33.40710306393503,"pitch":-1.6604518620843938,"roll":2.3746795747877787},"location":"Right Ankle"},{"euler":{"heading":51.656282854768605,"pitch":-153.49981703889952,"roll":55.53923384434757},"location":"Right Hip"},{"euler":{"heading":75.22250947812124,"pitch":-132.4126480707329,"roll":-43.00361488565224},"location":"Right Knee"},{"euler":{"heading":20.32138603637062,"pitch":-139.99978229914987,"roll":59.40287839310968},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.828"} +{"sensors":[{"euler":{"heading":62.267608617285674,"pitch":132.270058502087,"roll":24.589873474625563},"location":"Left Knee"},{"euler":{"heading":50.51108479277847,"pitch":109.53584270234153,"roll":39.61130625643252},"location":"Left Ankle"},{"euler":{"heading":33.661670857584774,"pitch":-1.347923510059198,"roll":2.321202286601556},"location":"Right Ankle"},{"euler":{"heading":50.76222598821073,"pitch":-153.91006066906635,"roll":56.18354025890301},"location":"Right Hip"},{"euler":{"heading":75.67654228964506,"pitch":-132.08207488166153,"roll":-42.5633182558138},"location":"Right Knee"},{"euler":{"heading":19.12426725848939,"pitch":-138.26377318192806,"roll":59.22186723444196},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.929"} +{"sensors":[{"euler":{"heading":53.17252307244736,"pitch":132.29193166913421,"roll":23.677637508625622},"location":"Left Knee"},{"euler":{"heading":49.77697660595709,"pitch":108.45633248826405,"roll":40.13579594356966},"location":"Left Ankle"},{"euler":{"heading":33.501501616097194,"pitch":-0.9283823177991197,"roll":2.159851176439},"location":"Right Ankle"},{"euler":{"heading":50.4106728911146,"pitch":-154.0375222933693,"roll":56.962752227615766},"location":"Right Hip"},{"euler":{"heading":76.9163187723872,"pitch":-132.0267050539613,"roll":-42.6464747260193},"location":"Right Knee"},{"euler":{"heading":17.775458639164817,"pitch":-136.4848160297107,"roll":58.50516113915348},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.29"} +{"sensors":[{"euler":{"heading":68.24630224775082,"pitch":133.77426982820003,"roll":24.552535897970444},"location":"Left Knee"},{"euler":{"heading":45.94758758564707,"pitch":107.09306560355593,"roll":37.77448185383722},"location":"Left Ankle"},{"euler":{"heading":32.942293067382266,"pitch":-0.4238984886281214,"roll":1.9543955018080192},"location":"Right Ankle"},{"euler":{"heading":50.26550898247649,"pitch":-154.22420283208533,"roll":57.804583793940154},"location":"Right Hip"},{"euler":{"heading":78.5497583939978,"pitch":-132.3035941960812,"roll":-43.11411124662157},"location":"Right Knee"},{"euler":{"heading":16.74834461523453,"pitch":-134.89886326828352,"roll":57.84474104000997},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.129"} +{"sensors":[{"euler":{"heading":81.68263276104929,"pitch":136.10252175101257,"roll":26.016029407725778},"location":"Left Knee"},{"euler":{"heading":41.676534285923495,"pitch":105.80002629865055,"roll":34.38927298175405},"location":"Left Ankle"},{"euler":{"heading":31.818539265194016,"pitch":0.07421350901956619,"roll":1.602015168743237},"location":"Right Ankle"},{"euler":{"heading":50.46769554442887,"pitch":-154.452578475355,"roll":58.6138986591902},"location":"Right Hip"},{"euler":{"heading":80.55903673198479,"pitch":-132.96437050616834,"roll":-44.096122796278514},"location":"Right Knee"},{"euler":{"heading":16.39486000035432,"pitch":-133.99290651801127,"roll":57.31254173512266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.230"} +{"sensors":[{"euler":{"heading":98.90307727116787,"pitch":137.40668236219224,"roll":27.227347366716025},"location":"Left Knee"},{"euler":{"heading":39.44575103683363,"pitch":105.33747886390216,"roll":32.11086244576157},"location":"Left Ankle"},{"euler":{"heading":29.78069304723338,"pitch":0.10282580050446322,"roll":1.1464129120304125},"location":"Right Ankle"},{"euler":{"heading":50.9424016767429,"pitch":-154.74840951772748,"roll":59.304610357669176},"location":"Right Hip"},{"euler":{"heading":82.72147340188181,"pitch":-134.13898536077545,"roll":-45.77544648779469},"location":"Right Knee"},{"euler":{"heading":16.444309718634365,"pitch":-133.55362852080913,"roll":56.997436461038454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.331"} +{"sensors":[{"euler":{"heading":113.96035293861866,"pitch":137.83173072883707,"roll":28.174806108791394},"location":"Left Knee"},{"euler":{"heading":38.754741907139184,"pitch":105.21619659895688,"roll":30.881528601486114},"location":"Left Ankle"},{"euler":{"heading":26.71495950019768,"pitch":-0.16260372354638847,"roll":0.6509154777119512},"location":"Right Ankle"},{"euler":{"heading":52.115871145222776,"pitch":-154.32644397097656,"roll":59.305360859280285},"location":"Right Hip"},{"euler":{"heading":85.03904248463589,"pitch":-136.8189887425229,"roll":-47.62201656346929},"location":"Right Knee"},{"euler":{"heading":16.57992401587788,"pitch":-133.36422257562992,"roll":56.94417254887261},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.431"} +{"sensors":[{"euler":{"heading":127.15130340042045,"pitch":137.5326360260929,"roll":28.96673952809858},"location":"Left Knee"},{"euler":{"heading":40.12116936469867,"pitch":105.52262283363088,"roll":30.857126338286033},"location":"Left Ankle"},{"euler":{"heading":24.704146063592283,"pitch":-0.8189558184624086,"roll":0.4284738878553064},"location":"Right Ankle"},{"euler":{"heading":53.43342512061555,"pitch":-153.55222756079883,"roll":58.5985483623137},"location":"Right Hip"},{"euler":{"heading":86.08648652598087,"pitch":-138.31658902246363,"roll":-49.12051788370342},"location":"Right Knee"},{"euler":{"heading":17.267659693670407,"pitch":-133.83492707952144,"roll":57.157568897619875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.531"} +{"sensors":[{"euler":{"heading":104.3848323776146,"pitch":136.7566415356307,"roll":29.53470765210471},"location":"Left Knee"},{"euler":{"heading":41.26972521133448,"pitch":105.92475175673009,"roll":31.001513951920693},"location":"Left Ankle"},{"euler":{"heading":25.144497195621927,"pitch":-1.6863566222340018,"roll":0.5541839561576969},"location":"Right Ankle"},{"euler":{"heading":54.56574464397316,"pitch":-152.98840050156457,"roll":57.35849527901882},"location":"Right Hip"},{"euler":{"heading":84.72653281852128,"pitch":-137.15091976035765,"roll":-49.37659247246751},"location":"Right Knee"},{"euler":{"heading":18.270729678961374,"pitch":-135.04563646048132,"roll":57.54091577928835},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.632"} +{"sensors":[{"euler":{"heading":86.35603747684237,"pitch":135.69179969550467,"roll":29.691929395235},"location":"Left Knee"},{"euler":{"heading":42.6382236318754,"pitch":106.43726088797864,"roll":31.49483047009473},"location":"Left Ankle"},{"euler":{"heading":27.431335891094676,"pitch":-2.2393789949199565,"roll":1.226794780610125},"location":"Right Ankle"},{"euler":{"heading":54.8507934085722,"pitch":-152.82898059711957,"roll":56.22451153326757},"location":"Right Hip"},{"euler":{"heading":81.2289358525709,"pitch":-135.16272139900008,"roll":-47.85444223708823},"location":"Right Knee"},{"euler":{"heading":19.270401515095326,"pitch":-136.71192673788104,"roll":57.96508581785237},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.732"} +{"sensors":[{"euler":{"heading":72.20644660573083,"pitch":134.42504016354633,"roll":29.35262551483184},"location":"Left Knee"},{"euler":{"heading":44.495966787907,"pitch":107.21017362451761,"roll":32.55953228579099},"location":"Left Ankle"},{"euler":{"heading":30.558256823568744,"pitch":-2.41874854589791,"roll":1.8770407062316248},"location":"Right Ankle"},{"euler":{"heading":53.81784050166167,"pitch":-153.11278764752203,"roll":55.71563966607448},"location":"Right Hip"},{"euler":{"heading":77.28900660048645,"pitch":-133.2625800220367,"roll":-45.460438820498695},"location":"Right Knee"},{"euler":{"heading":20.350525257140198,"pitch":-138.77262489162476,"roll":58.491594097553666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.833"} +{"sensors":[{"euler":{"heading":61.3996123669483,"pitch":133.27878103322345,"roll":28.153801746084774},"location":"Left Knee"},{"euler":{"heading":46.540271924095144,"pitch":108.13548478698645,"roll":34.59905510415911},"location":"Left Ankle"},{"euler":{"heading":32.2267801213466,"pitch":-2.3194620469104565,"roll":2.1741119653746477},"location":"Right Ankle"},{"euler":{"heading":52.954223867801176,"pitch":-153.45283188112563,"roll":55.504877115719964},"location":"Right Hip"},{"euler":{"heading":75.06180851658269,"pitch":-132.22689982197107,"roll":-43.746008171483545},"location":"Right Knee"},{"euler":{"heading":21.52624946991415,"pitch":-140.7740413696202,"roll":59.0988150859427},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.934"} +{"sensors":[{"euler":{"heading":53.83517475251203,"pitch":132.42586424955454,"roll":26.01075123785445},"location":"Left Knee"},{"euler":{"heading":49.09405226308938,"pitch":110.20939978296771,"roll":37.44338015428012},"location":"Left Ankle"},{"euler":{"heading":32.87358295117922,"pitch":-2.324745090364612,"roll":2.3180728840825053},"location":"Right Ankle"},{"euler":{"heading":52.34222043404395,"pitch":-153.7308028954241,"roll":55.69466302441266},"location":"Right Hip"},{"euler":{"heading":74.57587537541502,"pitch":-131.4680978488236,"roll":-42.92593544184685},"location":"Right Knee"},{"euler":{"heading":20.848026266047523,"pitch":-140.40314536356752,"roll":59.20237615344504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.34"} +{"sensors":[{"euler":{"heading":47.7187105020907,"pitch":131.8264950294563,"roll":24.11317539536564},"location":"Left Knee"},{"euler":{"heading":50.34679643807257,"pitch":110.22515249069153,"roll":39.78527200863595},"location":"Left Ankle"},{"euler":{"heading":33.07024717428037,"pitch":-2.264127200866317,"roll":2.299706841049151},"location":"Right Ankle"},{"euler":{"heading":51.674644078052225,"pitch":-154.09529278351914,"roll":56.300403019849036},"location":"Right Hip"},{"euler":{"heading":75.0519540712543,"pitch":-131.00145323622576,"roll":-42.70111382985412},"location":"Right Knee"},{"euler":{"heading":19.39495639701571,"pitch":-138.56336798246028,"roll":58.80262544974946},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.135"} +{"sensors":[{"euler":{"heading":40.02922252204877,"pitch":132.31267897848036,"roll":23.787308290678357},"location":"Left Knee"},{"euler":{"heading":48.810114413458734,"pitch":108.81847820135799,"roll":39.57383099475179},"location":"Left Ankle"},{"euler":{"heading":32.89239309064215,"pitch":-2.1438771995205887,"roll":2.1998535597003466},"location":"Right Ankle"},{"euler":{"heading":51.46691582206417,"pitch":-154.21702483263454,"roll":57.050662504675465},"location":"Right Hip"},{"euler":{"heading":76.10764124078258,"pitch":-130.78728392280505,"roll":-42.97330296602245},"location":"Right Knee"},{"euler":{"heading":18.0446610708686,"pitch":-136.74996659059562,"roll":58.04851069741481},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.238"} +{"sensors":[{"euler":{"heading":64.11954543245923,"pitch":134.1438167011371,"roll":25.062000481444173},"location":"Left Knee"},{"euler":{"heading":44.67435196188327,"pitch":107.35536385009303,"roll":36.68927893746863},"location":"Left Ankle"},{"euler":{"heading":32.21763398291094,"pitch":-1.9042692024578736,"roll":2.002483276729479},"location":"Right Ankle"},{"euler":{"heading":51.4454608437244,"pitch":-154.43419266729535,"roll":57.77117076791162},"location":"Right Hip"},{"euler":{"heading":77.55467688823394,"pitch":-131.0334402127352,"roll":-43.57037328162461},"location":"Right Knee"},{"euler":{"heading":17.040110963510358,"pitch":-135.28147878571207,"roll":57.45531066640353},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.339"} +{"sensors":[{"euler":{"heading":83.1431291972647,"pitch":136.20504850918834,"roll":26.465140597202254},"location":"Left Knee"},{"euler":{"heading":40.77669773200073,"pitch":106.26924044226026,"roll":33.365682754766375},"location":"Left Ankle"},{"euler":{"heading":30.927923817836575,"pitch":-1.544766514460981,"roll":1.4909505996221426},"location":"Right Ankle"},{"euler":{"heading":51.61814337485862,"pitch":-154.75555388871803,"roll":58.44692196932002},"location":"Right Hip"},{"euler":{"heading":79.5361793160385,"pitch":-131.89232882048384,"roll":-44.68139686187804},"location":"Right Knee"},{"euler":{"heading":16.60997673688076,"pitch":-134.3510163794455,"roll":57.0077183564055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.440"} +{"sensors":[{"euler":{"heading":100.27134407765301,"pitch":137.07733942924344,"roll":27.5921197359736},"location":"Left Knee"},{"euler":{"heading":39.30944192010268,"pitch":105.67882474198666,"roll":31.392726926062764},"location":"Left Ankle"},{"euler":{"heading":28.58772409791055,"pitch":-1.790211023443722,"roll":1.0756398894972794},"location":"Right Ankle"},{"euler":{"heading":52.22326963719683,"pitch":-154.98689257279506,"roll":58.97515808369568},"location":"Right Hip"},{"euler":{"heading":81.65209187054866,"pitch":-133.37106201598453,"roll":-46.53096809325623},"location":"Right Knee"},{"euler":{"heading":16.465869069138865,"pitch":-133.7706576723978,"roll":56.792953073916536},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.541"} +{"sensors":[{"euler":{"heading":115.46713329954098,"pitch":137.04025598395484,"roll":28.546496688248588},"location":"Left Knee"},{"euler":{"heading":38.94634284015556,"pitch":105.42400174742717,"roll":30.285213435673874},"location":"Left Ankle"},{"euler":{"heading":25.46467367793278,"pitch":-2.3987526381741975,"roll":0.6047106562948852},"location":"Right Ankle"},{"euler":{"heading":53.354894274987785,"pitch":-154.41738988395016,"roll":58.73970886411452},"location":"Right Hip"},{"euler":{"heading":83.9612935965989,"pitch":-136.14194996885593,"roll":-48.35323169614901},"location":"Right Knee"},{"euler":{"heading":16.984021784016342,"pitch":-133.75680199767626,"roll":56.955335779563626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.641"} +{"sensors":[{"euler":{"heading":128.55152212623636,"pitch":136.51323956577343,"roll":29.225784071084334},"location":"Left Knee"},{"euler":{"heading":40.11752869337249,"pitch":105.37772330666367,"roll":30.252137222236605},"location":"Left Ankle"},{"euler":{"heading":24.328451930027835,"pitch":-3.1099300851150153,"roll":0.29748468212106977},"location":"Right Ankle"},{"euler":{"heading":54.8522168231939,"pitch":-153.56912386704101,"roll":57.80132920313416},"location":"Right Hip"},{"euler":{"heading":84.28250423300464,"pitch":-136.46732952367154,"roll":-49.47896554515451},"location":"Right Knee"},{"euler":{"heading":17.812565578914885,"pitch":-134.65389640929357,"roll":57.239013918341826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.742"} +{"sensors":[{"euler":{"heading":105.54916586251278,"pitch":135.66180116298304,"roll":29.561024836336692},"location":"Left Knee"},{"euler":{"heading":41.147838081166825,"pitch":105.37746425232977,"roll":30.477855608822807},"location":"Left Ankle"},{"euler":{"heading":25.591933317911685,"pitch":-4.032886291201214,"roll":0.810209468664904},"location":"Right Ankle"},{"euler":{"heading":55.59665297135906,"pitch":-153.0750332394732,"roll":56.6430568377745},"location":"Right Hip"},{"euler":{"heading":81.90579456622055,"pitch":-134.68684501319865,"roll":-48.886435683702274},"location":"Right Knee"},{"euler":{"heading":18.645554330648274,"pitch":-136.07802147020178,"roll":57.596777425899234},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.843"} +{"sensors":[{"euler":{"heading":87.36884553770152,"pitch":134.6238169287748,"roll":29.394696547713178},"location":"Left Knee"},{"euler":{"heading":42.40762581522464,"pitch":105.55558906921763,"roll":31.139891238489913},"location":"Left Ankle"},{"euler":{"heading":28.725164088136054,"pitch":-4.005976754823608,"roll":1.416848732854143},"location":"Right Ankle"},{"euler":{"heading":55.09442395013171,"pitch":-153.0024973245669,"roll":55.93979288294292},"location":"Right Hip"},{"euler":{"heading":78.23560807844127,"pitch":-132.8973697241593,"roll":-46.602349737842296},"location":"Right Knee"},{"euler":{"heading":19.387057686206465,"pitch":-137.7293405108322,"roll":58.05725078305111},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.944"} +{"sensors":[{"euler":{"heading":73.00600620067983,"pitch":133.51810225040242,"roll":28.655604769861927},"location":"Left Knee"},{"euler":{"heading":44.14068493426288,"pitch":105.8951290054961,"roll":32.535622002061636},"location":"Left Ankle"},{"euler":{"heading":31.2549781719187,"pitch":-3.71408814294657,"roll":1.8230941014131676},"location":"Right Ankle"},{"euler":{"heading":53.98759838464588,"pitch":-153.21034553357717,"roll":55.60663754572812},"location":"Right Hip"},{"euler":{"heading":75.21857277911947,"pitch":-131.58132882114887,"roll":-44.351232753039014},"location":"Right Knee"},{"euler":{"heading":20.26768397382314,"pitch":-139.67542133594034,"roll":58.61066372336897},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.45"} +{"sensors":[{"euler":{"heading":62.518024883858146,"pitch":132.5770216707669,"roll":26.84531997603925},"location":"Left Knee"},{"euler":{"heading":45.77374292085041,"pitch":106.70177607218518,"roll":34.77361443587214},"location":"Left Ankle"},{"euler":{"heading":32.494044110956985,"pitch":-3.5748168725879093,"roll":1.9469377984317826},"location":"Right Ankle"},{"euler":{"heading":53.39048681797939,"pitch":-153.41625812079306,"roll":55.537040581278575},"location":"Right Hip"},{"euler":{"heading":74.03241402078018,"pitch":-130.59261666554153,"roll":-43.06930716392288},"location":"Right Knee"},{"euler":{"heading":20.637966665680466,"pitch":-140.50296807755268,"roll":58.96874591796176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.146"} +{"sensors":[{"euler":{"heading":55.34546046107684,"pitch":131.49359431053105,"roll":24.624598234895377},"location":"Left Knee"},{"euler":{"heading":48.03241169667552,"pitch":108.54940873277305,"roll":37.51810023645843},"location":"Left Ankle"},{"euler":{"heading":33.05080126034567,"pitch":-3.5082468471879427,"roll":1.9400947209690855},"location":"Right Ankle"},{"euler":{"heading":52.628088369263224,"pitch":-153.72743474930581,"roll":55.96752455537418},"location":"Right Hip"},{"euler":{"heading":74.08378143732331,"pitch":-129.87036959766476,"roll":-42.521691331643964},"location":"Right Knee"},{"euler":{"heading":19.781818742453375,"pitch":-138.99257760309357,"roll":58.86470342285791},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.247"} +{"sensors":[{"euler":{"heading":48.390526565060746,"pitch":131.41096934451602,"roll":23.352340621387366},"location":"Left Knee"},{"euler":{"heading":48.615456697465106,"pitch":108.1760996582798,"roll":38.877853898609104},"location":"Left Ankle"},{"euler":{"heading":33.21535333209705,"pitch":-3.4836811359995443,"roll":1.7793245925107604},"location":"Right Ankle"},{"euler":{"heading":52.20003250444981,"pitch":-153.95550295670208,"roll":56.61865231044792},"location":"Right Hip"},{"euler":{"heading":74.81549670613641,"pitch":-129.3000605324906,"roll":-42.51962794541385},"location":"Right Knee"},{"euler":{"heading":18.38520476690181,"pitch":-137.2037460634124,"roll":58.14630066153807},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.348"} +{"sensors":[{"euler":{"heading":72.76720025244903,"pitch":132.6738982871845,"roll":24.085768930673463},"location":"Left Knee"},{"euler":{"heading":46.11425418748336,"pitch":106.9524507445004,"roll":37.522052283618414},"location":"Left Ankle"},{"euler":{"heading":33.05876831502377,"pitch":-3.4257803904314525,"roll":1.6041211718611355},"location":"Right Ankle"},{"euler":{"heading":52.17653274955664,"pitch":-154.15593088604209,"roll":57.33863835633833},"location":"Right Hip"},{"euler":{"heading":75.91997551633419,"pitch":-129.02181437757258,"roll":-42.94582298751415},"location":"Right Knee"},{"euler":{"heading":17.21787753995621,"pitch":-135.46617083189975,"roll":57.40705629248439},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.449"} +{"sensors":[{"euler":{"heading":90.3724522011431,"pitch":134.83928412392922,"roll":25.65311668800508},"location":"Left Knee"},{"euler":{"heading":42.04486771462098,"pitch":105.61927964848131,"roll":34.190582292822256},"location":"Left Ankle"},{"euler":{"heading":32.25279160516329,"pitch":-3.3020437572882972,"roll":1.2969512723480845},"location":"Right Ankle"},{"euler":{"heading":52.35348632750751,"pitch":-154.48592581482455,"roll":58.02580763153181},"location":"Right Hip"},{"euler":{"heading":77.37128986008874,"pitch":-129.06730174759437,"roll":-43.83682740746851},"location":"Right Knee"},{"euler":{"heading":16.773367738216315,"pitch":-134.35167099569875,"roll":56.89271048456088},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.550"} +{"sensors":[{"euler":{"heading":106.0301825445591,"pitch":136.19226642433853,"roll":27.02975345885378},"location":"Left Knee"},{"euler":{"heading":39.15875659089714,"pitch":104.91827749692597,"roll":31.43761166037871},"location":"Left Ankle"},{"euler":{"heading":30.69511730507934,"pitch":-3.2079134845878694,"roll":0.7336261196410025},"location":"Right Ankle"},{"euler":{"heading":52.77185987436523,"pitch":-154.98072515332356,"roll":58.67139121353374},"location":"Right Hip"},{"euler":{"heading":79.23738952728341,"pitch":-129.8516255880023,"roll":-45.368402631537904},"location":"Right Knee"},{"euler":{"heading":16.932590669322902,"pitch":-133.62856263537228,"roll":56.6115963178047},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.650"} +{"sensors":[{"euler":{"heading":119.86141732922736,"pitch":136.67338293608103,"roll":28.120859766085697},"location":"Left Knee"},{"euler":{"heading":38.240321710244366,"pitch":104.67634842347645,"roll":30.022617824352903},"location":"Left Ankle"},{"euler":{"heading":27.647993619227325,"pitch":-3.4972917270000545,"roll":0.003910846068915341},"location":"Right Ankle"},{"euler":{"heading":53.679227901392856,"pitch":-154.8220353657811,"roll":58.81561094354817},"location":"Right Hip"},{"euler":{"heading":81.47284150199856,"pitch":-132.07144882060373,"roll":-47.408270720483635},"location":"Right Knee"},{"euler":{"heading":16.825149926324823,"pitch":-133.00396643951592,"roll":56.505855804808604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.751"} +{"sensors":[{"euler":{"heading":131.69771370669787,"pitch":136.57365559108902,"roll":29.001159133759405},"location":"Left Knee"},{"euler":{"heading":38.16607330302058,"pitch":104.50499529524797,"roll":29.182177930693456},"location":"Left Ankle"},{"euler":{"heading":25.099504307650314,"pitch":-3.9256115001341225,"roll":-0.43641393698106745},"location":"Right Ankle"},{"euler":{"heading":54.891859152259585,"pitch":-154.2087616296572,"roll":58.21483894533446},"location":"Right Hip"},{"euler":{"heading":82.89300090917163,"pitch":-133.58070570105556,"roll":-49.03412013457279},"location":"Right Knee"},{"euler":{"heading":17.177130327531255,"pitch":-133.27112797531413,"roll":56.65393146241514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.853"} +{"sensors":[{"euler":{"heading":141.71625216082944,"pitch":136.0969698064946,"roll":29.64908740218867},"location":"Left Knee"},{"euler":{"heading":39.10409046906278,"pitch":104.39155927333492,"roll":29.152957654004567},"location":"Left Ankle"},{"euler":{"heading":25.046099252411967,"pitch":-4.432093540735162,"roll":-0.2997751733055262},"location":"Right Ankle"},{"euler":{"heading":55.85503375674715,"pitch":-153.5765365107272,"roll":57.20153603433486},"location":"Right Hip"},{"euler":{"heading":81.67770282998417,"pitch":-132.97849781521177,"roll":-49.131944689029645},"location":"Right Knee"},{"euler":{"heading":17.780432799300442,"pitch":-134.28576578189208,"roll":56.9543900480977},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.954"} +{"sensors":[{"euler":{"heading":116.28681527025601,"pitch":135.29701964732166,"roll":29.87271777961965},"location":"Left Knee"},{"euler":{"heading":40.02671589741617,"pitch":104.37809345850445,"roll":29.447563565512922},"location":"Left Ankle"},{"euler":{"heading":27.047557073972165,"pitch":-4.533678059346662,"roll":0.4837949848212059},"location":"Right Ankle"},{"euler":{"heading":55.82917292560349,"pitch":-153.36711552192466,"roll":57.81256754286194},"location":"Right Hip"},{"euler":{"heading":78.42340119441951,"pitch":-131.5952865326374,"roll":-47.35363709666641},"location":"Right Knee"},{"euler":{"heading":18.488447278114197,"pitch":-135.70329208664458,"roll":57.37490022484328},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.54"} +{"sensors":[{"euler":{"heading":96.1073133661325,"pitch":134.31751645682084,"roll":29.563778879244616},"location":"Left Knee"},{"euler":{"heading":41.26967581467942,"pitch":104.47886942310137,"roll":30.231386875901897},"location":"Left Ankle"},{"euler":{"heading":30.00620684271104,"pitch":-4.536419744202407,"roll":1.0798672479538016},"location":"Right Ankle"},{"euler":{"heading":54.64271781117004,"pitch":-153.63540437533405,"roll":57.319100585120104},"location":"Right Hip"},{"euler":{"heading":74.86698642921472,"pitch":-129.96909873512269,"roll":-44.882421269894024},"location":"Right Knee"},{"euler":{"heading":19.36543414055452,"pitch":-137.59239768983824,"roll":57.90998740204261},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.155"} +{"sensors":[{"euler":{"heading":80.34535864233601,"pitch":133.36579004703214,"roll":28.511337776635436},"location":"Left Knee"},{"euler":{"heading":42.947339182358874,"pitch":104.70680115726479,"roll":31.88595296715165},"location":"Left Ankle"},{"euler":{"heading":31.75692627763204,"pitch":-3.968151094665152,"roll":1.375480571011394},"location":"Right Ankle"},{"euler":{"heading":53.28480466494951,"pitch":-153.98518780971582,"roll":57.122277553407294},"location":"Right Hip"},{"euler":{"heading":72.82301282021133,"pitch":-129.38345276082813,"roll":-42.90787319124496},"location":"Right Knee"},{"euler":{"heading":20.172689639178767,"pitch":-139.3553100385398,"roll":58.47146345236503},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.255"} +{"sensors":[{"euler":{"heading":69.09228286417671,"pitch":132.46297938435077,"roll":26.48885467960194},"location":"Left Knee"},{"euler":{"heading":45.498179023262125,"pitch":106.44099496218419,"roll":34.3522137306678},"location":"Left Ankle"},{"euler":{"heading":32.48886713757339,"pitch":-3.3171968807390746,"roll":1.422997317717685},"location":"Right Ankle"},{"euler":{"heading":52.37508732443848,"pitch":-154.21251850784554,"roll":57.24738798601591},"location":"Right Hip"},{"euler":{"heading":72.71302536848225,"pitch":-129.06754738857998,"roll":-41.88215322028838},"location":"Right Knee"},{"euler":{"heading":19.33545203792212,"pitch":-138.82210535849202,"roll":58.56930291120467},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.356"} +{"sensors":[{"euler":{"heading":60.0269094090675,"pitch":132.00276697290982,"roll":24.700377282727434},"location":"Left Knee"},{"euler":{"heading":46.813913905478955,"pitch":106.88061526830195,"roll":36.2390437893403},"location":"Left Ankle"},{"euler":{"heading":32.80875005526721,"pitch":-2.7697817889833583,"roll":1.3173613470191152},"location":"Right Ankle"},{"euler":{"heading":51.52914153090318,"pitch":-154.424169698677,"roll":57.77676883211439},"location":"Right Hip"},{"euler":{"heading":73.41963898476061,"pitch":-128.96599702653936,"roll":-41.44746531426705},"location":"Right Knee"},{"euler":{"heading":17.954321813327862,"pitch":-137.28730228270834,"roll":58.09303117494462},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.457"} +{"sensors":[{"euler":{"heading":49.75044387479551,"pitch":132.6327063728955,"roll":24.431613489165102},"location":"Left Knee"},{"euler":{"heading":45.52500375465709,"pitch":106.01206620334378,"roll":35.93687530923706},"location":"Left Ankle"},{"euler":{"heading":32.82096691841236,"pitch":-2.268494207494194,"roll":1.1861021440510477},"location":"Right Ankle"},{"euler":{"heading":51.163473959195066,"pitch":-154.46705489591318,"roll":58.49360467146528},"location":"Right Hip"},{"euler":{"heading":74.59274420365239,"pitch":-129.04057524821602,"roll":-41.47029859501809},"location":"Right Knee"},{"euler":{"heading":16.526188514068863,"pitch":-135.57150531047125,"roll":57.32318221590697},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.558"} +{"sensors":[{"euler":{"heading":72.09710677206176,"pitch":134.4155655917596,"roll":25.621234967705263},"location":"Left Knee"},{"euler":{"heading":41.96072571513047,"pitch":104.887255265892,"roll":33.338835301523126},"location":"Left Ankle"},{"euler":{"heading":32.331564232244915,"pitch":-1.7613837994704382,"roll":0.9840946557975498},"location":"Right Ankle"},{"euler":{"heading":51.06026090278364,"pitch":-154.56531371834132,"roll":59.177923403270505},"location":"Right Hip"},{"euler":{"heading":76.17753877492828,"pitch":-129.4409964492786,"roll":-41.92496731821886},"location":"Right Knee"},{"euler":{"heading":15.523303143272434,"pitch":-134.17944669716746,"roll":56.67412754001464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.658"} +{"sensors":[{"euler":{"heading":89.40166355067159,"pitch":136.54012692214346,"roll":27.09008409905905},"location":"Left Knee"},{"euler":{"heading":38.51316637423707,"pitch":103.69108265240068,"roll":30.29233265490049},"location":"Left Ankle"},{"euler":{"heading":31.12822531866577,"pitch":-1.243059153208572,"roll":0.498092425314671},"location":"Right Ankle"},{"euler":{"heading":51.17194531659113,"pitch":-154.868256752391,"roll":59.88632598345766},"location":"Right Hip"},{"euler":{"heading":78.20643967511107,"pitch":-130.23138976371024,"roll":-42.990369553162786},"location":"Right Knee"},{"euler":{"heading":15.284781845064822,"pitch":-133.3538150073349,"roll":56.25328275297434},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.759"} +{"sensors":[{"euler":{"heading":105.14017693681244,"pitch":137.4875590715306,"roll":28.223013919835143},"location":"Left Knee"},{"euler":{"heading":37.17663546048422,"pitch":103.02486739906308,"roll":28.599838399394248},"location":"Left Ankle"},{"euler":{"heading":29.102503897600567,"pitch":-1.225883477848185,"roll":0.010758658098686924},"location":"Right Ankle"},{"euler":{"heading":51.69739984902678,"pitch":-155.24345258356038,"roll":60.40249036339048},"location":"Right Hip"},{"euler":{"heading":80.22441997165471,"pitch":-131.2973701255526,"roll":-44.89378408811682},"location":"Right Knee"},{"euler":{"heading":15.36296501750645,"pitch":-132.90398684873978,"roll":56.021103484045824},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.863"} +{"sensors":[{"euler":{"heading":119.15051763339699,"pitch":137.6195392815927,"roll":29.016306882501606},"location":"Left Knee"},{"euler":{"heading":36.78383170889906,"pitch":102.73118181612675,"roll":27.7579982121826},"location":"Left Ankle"},{"euler":{"heading":26.32612757930267,"pitch":-1.3173571744853472,"roll":-0.4599440606527177},"location":"Right Ankle"},{"euler":{"heading":52.98376574352927,"pitch":-154.56631033698423,"roll":60.07882873306076},"location":"Right Hip"},{"euler":{"heading":82.31074748897932,"pitch":-133.6234246343819,"roll":-46.63397238682186},"location":"Right Knee"},{"euler":{"heading":15.694520156682236,"pitch":-132.6634171720839,"roll":56.07260378538215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.965"} +{"sensors":[{"euler":{"heading":131.24048127297135,"pitch":137.1979418907521,"roll":29.66279422251371},"location":"Left Knee"},{"euler":{"heading":38.23390609823823,"pitch":102.79242497063217,"roll":28.018830918297194},"location":"Left Ankle"},{"euler":{"heading":25.24189520957333,"pitch":-1.4358012886070517,"roll":-0.7015666836889232},"location":"Right Ankle"},{"euler":{"heading":54.51861064922388,"pitch":-153.74549542696306,"roll":59.02495601428162},"location":"Right Hip"},{"euler":{"heading":82.41974242880231,"pitch":-134.02191010167326,"roll":-47.46546195648493},"location":"Right Knee"},{"euler":{"heading":16.37622336820141,"pitch":-133.14133265907282,"roll":56.32729089138715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.65"} +{"sensors":[{"euler":{"heading":107.49523444458296,"pitch":136.43594923092903,"roll":29.99808158457313},"location":"Left Knee"},{"euler":{"heading":39.37366296207271,"pitch":102.91324075870001,"roll":28.427265854669926},"location":"Left Ankle"},{"euler":{"heading":26.53010952060456,"pitch":-1.83429848915562,"roll":-0.45052567132277965},"location":"Right Ankle"},{"euler":{"heading":55.52563705999049,"pitch":-153.31786177524546,"roll":57.64921601439231},"location":"Right Hip"},{"euler":{"heading":80.26166108477955,"pitch":-132.55133492201065,"roll":-46.78503700850201},"location":"Right Knee"},{"euler":{"heading":17.18410413275722,"pitch":-134.2039890807203,"roll":56.694492981641496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.166"} +{"sensors":[{"euler":{"heading":88.66501898416297,"pitch":135.45512098987444,"roll":29.92692038221154},"location":"Left Knee"},{"euler":{"heading":40.66955840125854,"pitch":103.17119664493688,"roll":29.153566906986246},"location":"Left Ankle"},{"euler":{"heading":29.64197442790188,"pitch":-1.9570763696644846,"roll":-0.05689630221798203},"location":"Right Ankle"},{"euler":{"heading":55.416775887425224,"pitch":-153.25789866056078,"roll":56.57675709572209},"location":"Right Hip"},{"euler":{"heading":76.58023738473548,"pitch":-130.7925859426919,"roll":-44.62355744855092},"location":"Right Knee"},{"euler":{"heading":18.000174017834077,"pitch":-135.77792707837298,"roll":57.12783523130804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.266"} +{"sensors":[{"euler":{"heading":73.87706175776637,"pitch":134.35356288428048,"roll":29.3393413128233},"location":"Left Knee"},{"euler":{"heading":42.37867470117439,"pitch":103.6721533406708,"roll":30.44098123644027},"location":"Left Ankle"},{"euler":{"heading":32.05322393688048,"pitch":-1.7530737098360747,"roll":0.4954842554329252},"location":"Right Ankle"},{"euler":{"heading":54.06723526219631,"pitch":-153.64359229660454,"roll":56.12355751123457},"location":"Right Hip"},{"euler":{"heading":73.2626809947546,"pitch":-129.64109058692287,"roll":-42.245571621832354},"location":"Right Knee"},{"euler":{"heading":18.858620991581198,"pitch":-137.7788391862677,"roll":57.638861985753294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.368"} +{"sensors":[{"euler":{"heading":63.01126783973197,"pitch":133.1011421797282,"roll":27.85046112921497},"location":"Left Knee"},{"euler":{"heading":44.432081097760786,"pitch":104.69620610164645,"roll":32.747429441928745},"location":"Left Ankle"},{"euler":{"heading":33.11197502495388,"pitch":-1.5090237108732105,"roll":0.6564371211111163},"location":"Right Ankle"},{"euler":{"heading":53.30111540805614,"pitch":-153.89152662601856,"roll":55.93344488392082},"location":"Right Hip"},{"euler":{"heading":71.88396366451224,"pitch":-129.0450292087692,"roll":-40.78344719563277},"location":"Right Knee"},{"euler":{"heading":19.662586664857166,"pitch":-139.1732431523954,"roll":58.19045697440531},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.469"} +{"sensors":[{"euler":{"heading":55.50556964159598,"pitch":132.05703751132245,"roll":25.58763318291344},"location":"Left Knee"},{"euler":{"heading":46.21447824017006,"pitch":106.31250160793921,"roll":35.35171870506199},"location":"Left Ankle"},{"euler":{"heading":33.77673879928746,"pitch":-1.5378918691969015,"roll":0.8258605884935446},"location":"Right Ankle"},{"euler":{"heading":52.38844254306386,"pitch":-154.33585260375418,"roll":56.22515070006224},"location":"Right Hip"},{"euler":{"heading":71.95007825395453,"pitch":-128.55323058368947,"roll":-40.173844156183286},"location":"Right Knee"},{"euler":{"heading":18.876163126811207,"pitch":-138.47305303436414,"roll":58.24962876867854},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.569"} +{"sensors":[{"euler":{"heading":48.90806878255741,"pitch":131.61165905838556,"roll":23.88488441059137},"location":"Left Knee"},{"euler":{"heading":47.36474707551044,"pitch":106.09847038054599,"roll":37.22075993013678},"location":"Left Ankle"},{"euler":{"heading":34.13674211469375,"pitch":-1.569959253835843,"roll":0.8602615092952784},"location":"Right Ankle"},{"euler":{"heading":51.73032661325919,"pitch":-154.72602149228078,"roll":56.90527955683398},"location":"Right Hip"},{"euler":{"heading":72.59874356984389,"pitch":-128.28657349314508,"roll":-40.0205651690555},"location":"Right Knee"},{"euler":{"heading":17.59014717023525,"pitch":-137.05468784040337,"roll":57.7443129340501},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.670"} +{"sensors":[{"euler":{"heading":40.200451252787374,"pitch":132.26096664535336,"roll":23.848272311065433},"location":"Left Knee"},{"euler":{"heading":45.92846289114122,"pitch":104.97733086772631,"roll":36.73008085676862},"location":"Left Ankle"},{"euler":{"heading":34.06290336316205,"pitch":-1.4146716946914164,"roll":0.7724838927243352},"location":"Right Ankle"},{"euler":{"heading":51.41143839142567,"pitch":-154.9839506737577,"roll":57.71096105311907},"location":"Right Hip"},{"euler":{"heading":73.80168978282687,"pitch":-128.39605528730576,"roll":-40.25047590626173},"location":"Right Knee"},{"euler":{"heading":16.323127636380015,"pitch":-135.34912768359365,"roll":57.013581078091214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.770"} +{"sensors":[{"euler":{"heading":63.95059133359615,"pitch":134.20403903688288,"roll":25.25390737948427},"location":"Left Knee"},{"euler":{"heading":42.08299184822153,"pitch":103.82015228062514,"roll":33.81877492830633},"location":"Left Ankle"},{"euler":{"heading":33.41980412704422,"pitch":-1.072015393302333,"roll":0.6098218083546942},"location":"Right Ankle"},{"euler":{"heading":51.186004909725426,"pitch":-155.3481411296844,"roll":58.55890831240098},"location":"Right Hip"},{"euler":{"heading":75.57144143327211,"pitch":-128.91723947559245,"roll":-40.91630508952324},"location":"Right Knee"},{"euler":{"heading":15.553232270168083,"pitch":-134.05551172379768,"roll":56.45343026250902},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.871"} +{"sensors":[{"euler":{"heading":83.17125837926214,"pitch":136.2595421999453,"roll":26.68040951990327},"location":"Left Knee"},{"euler":{"heading":38.72029328757408,"pitch":103.02869844413132,"roll":30.815797676483655},"location":"Left Ankle"},{"euler":{"heading":32.02522026252525,"pitch":-0.6430480933806433,"roll":0.11185979229499193},"location":"Right Ankle"},{"euler":{"heading":51.191670065290204,"pitch":-155.9155003018392,"roll":59.42726488440268},"location":"Right Hip"},{"euler":{"heading":77.68638660383411,"pitch":-129.87636128374416,"roll":-42.101437470761574},"location":"Right Knee"},{"euler":{"heading":15.434139241538425,"pitch":-133.33679426060908,"roll":56.059524594394276},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.972"} +{"sensors":[{"euler":{"heading":100.70460244712912,"pitch":137.06719633568633,"roll":27.780965911576295},"location":"Left Knee"},{"euler":{"heading":37.524589979399174,"pitch":102.78221089431806,"roll":29.12107131263023},"location":"Left Ankle"},{"euler":{"heading":29.664548455994307,"pitch":-0.8494170367209095,"roll":-0.32684301059519744},"location":"Right Ankle"},{"euler":{"heading":51.862183142281225,"pitch":-156.0246085586292,"roll":60.010878646056845},"location":"Right Hip"},{"euler":{"heading":79.82832762351322,"pitch":-131.42795708141068,"roll":-44.053739754953185},"location":"Right Knee"},{"euler":{"heading":15.514985228583203,"pitch":-132.79346027724566,"roll":55.86955778567535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.73"} +{"sensors":[{"euler":{"heading":116.07753300664635,"pitch":137.0072965208878,"roll":28.6757617327693},"location":"Left Knee"},{"euler":{"heading":37.43734556125847,"pitch":102.77914683550938,"roll":28.235594192840793},"location":"Left Ankle"},{"euler":{"heading":26.51879020626051,"pitch":-1.2858580706062077,"roll":-0.8367750884336871},"location":"Right Ankle"},{"euler":{"heading":53.17219789252026,"pitch":-155.3920650633419,"roll":59.72446904978201},"location":"Right Hip"},{"euler":{"heading":81.98048219969196,"pitch":-133.78915197723964,"roll":-45.99274335776949},"location":"Right Knee"},{"euler":{"heading":16.02113459852032,"pitch":-132.83688858275002,"roll":55.98898162835397},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.173"} +{"sensors":[{"euler":{"heading":129.07509796963996,"pitch":136.50125129192875,"roll":29.360588711201085},"location":"Left Knee"},{"euler":{"heading":38.83440091000791,"pitch":102.99635062711722,"roll":28.367761311834958},"location":"Left Ankle"},{"euler":{"heading":25.256959774955664,"pitch":-1.7996888376631976,"roll":-1.0603876122252538},"location":"Right Ankle"},{"euler":{"heading":54.83342199265893,"pitch":-154.46297376129112,"roll":58.6924141529784},"location":"Right Hip"},{"euler":{"heading":81.81043903644114,"pitch":-133.9637868771581,"roll":-46.87928448116439},"location":"Right Knee"},{"euler":{"heading":16.79228760671708,"pitch":-133.74420068708096,"roll":56.23973267027488},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.274"} +{"sensors":[{"euler":{"heading":105.96003326786715,"pitch":135.6806798108688,"roll":29.712732733697212},"location":"Left Knee"},{"euler":{"heading":39.96641768710575,"pitch":103.21667415548936,"roll":28.68355119551576},"location":"Left Ankle"},{"euler":{"heading":26.530553755025004,"pitch":-2.520289720897924,"roll":-0.674143557434205},"location":"Right Ankle"},{"euler":{"heading":55.74178709049147,"pitch":-153.98492596187344,"roll":57.33641655645159},"location":"Right Hip"},{"euler":{"heading":79.3109207538138,"pitch":-132.44523289608276,"roll":-46.1178775444479},"location":"Right Knee"},{"euler":{"heading":17.49505053831069,"pitch":-135.2132433292204,"roll":56.496357577014955},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.374"} +{"sensors":[{"euler":{"heading":87.72309924292975,"pitch":134.6408997467535,"roll":29.567645088914357},"location":"Left Knee"},{"euler":{"heading":41.2619208593561,"pitch":103.58250803886827,"roll":29.397363740027988},"location":"Left Ankle"},{"euler":{"heading":30.80761846072289,"pitch":-2.7145548143489546,"roll":0.15692897926830296},"location":"Right Ankle"},{"euler":{"heading":55.58781398848856,"pitch":-153.9090708794714,"roll":56.34127512279727},"location":"Right Hip"},{"euler":{"heading":75.52828809038559,"pitch":-130.67874094083166,"roll":-43.841502247759735},"location":"Right Knee"},{"euler":{"heading":18.225050056669204,"pitch":-136.89926186204895,"roll":56.912875595846906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.474"} +{"sensors":[{"euler":{"heading":73.45064674546838,"pitch":133.5097788361607,"roll":28.847773440315777},"location":"Left Knee"},{"euler":{"heading":43.03611435539009,"pitch":104.16919023043697,"roll":30.762657144357554},"location":"Left Ankle"},{"euler":{"heading":33.39409699222667,"pitch":-2.5990203824026814,"roll":0.7305865770650491},"location":"Right Ankle"},{"euler":{"heading":54.4510386849287,"pitch":-154.1733687327678,"roll":55.922366357856724},"location":"Right Hip"},{"euler":{"heading":72.27054929478258,"pitch":-129.34187993041326,"roll":-41.46062036189196},"location":"Right Knee"},{"euler":{"heading":19.102202322585658,"pitch":-138.97186631483987,"roll":57.35517075449342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.575"} +{"sensors":[{"euler":{"heading":62.84642423012595,"pitch":132.51003694442264,"roll":27.138114769176248},"location":"Left Knee"},{"euler":{"heading":44.94661073744963,"pitch":105.06272808933021,"roll":33.09795903043778},"location":"Left Ankle"},{"euler":{"heading":34.37040372270481,"pitch":-2.387460617061368,"roll":0.9880815052080598},"location":"Right Ankle"},{"euler":{"heading":53.775896536857644,"pitch":-154.32929096666598,"roll":55.68004833183022},"location":"Right Hip"},{"euler":{"heading":70.827849700584,"pitch":-128.72077317400385,"roll":-39.9542582105808},"location":"Right Knee"},{"euler":{"heading":19.606382564607994,"pitch":-140.2349477455812,"roll":57.773228543554715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.675"} +{"sensors":[{"euler":{"heading":55.70353310115556,"pitch":131.40920027056052,"roll":24.847923792818293},"location":"Left Knee"},{"euler":{"heading":47.78916422559824,"pitch":107.53595436363557,"roll":36.13858349605429},"location":"Left Ankle"},{"euler":{"heading":34.65256084313073,"pitch":-2.154408304527698,"roll":1.1140667111840843},"location":"Right Ankle"},{"euler":{"heading":53.11013003921631,"pitch":-154.48821703310063,"roll":55.90667886086813},"location":"Right Hip"},{"euler":{"heading":70.75239606789286,"pitch":-128.32521776278637,"roll":-39.18571940370359},"location":"Right Knee"},{"euler":{"heading":18.907432270070185,"pitch":-139.11866175693137,"roll":57.86019854451076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.776"} +{"sensors":[{"euler":{"heading":49.1712312764339,"pitch":131.0492285150951,"roll":23.25121166425104},"location":"Left Knee"},{"euler":{"heading":49.21295715557631,"pitch":107.53253420760016,"roll":38.2300396504471},"location":"Left Ankle"},{"euler":{"heading":34.56254417323406,"pitch":-1.9791969207789935,"roll":1.067544278443349},"location":"Right Ankle"},{"euler":{"heading":52.77903223317817,"pitch":-154.5963534241266,"roll":56.52792271214443},"location":"Right Hip"},{"euler":{"heading":71.5289030908113,"pitch":-128.06241445116927,"roll":-39.01347486171218},"location":"Right Knee"},{"euler":{"heading":17.55035192669728,"pitch":-137.33567239482426,"roll":57.308692922844074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.876"} +{"sensors":[{"euler":{"heading":74.30418186779802,"pitch":131.9720136456698,"roll":23.447291556351992},"location":"Left Knee"},{"euler":{"heading":47.38232220806826,"pitch":106.30470602324478,"roll":37.63740761481271},"location":"Left Ankle"},{"euler":{"heading":34.19751854878492,"pitch":-1.8325431214846422,"roll":0.960048904630951},"location":"Right Ankle"},{"euler":{"heading":52.638726479250785,"pitch":-154.75365642562664,"roll":57.31004717260359},"location":"Right Hip"},{"euler":{"heading":72.70572918604545,"pitch":-127.96135235939934,"roll":-39.26189598672104},"location":"Right Knee"},{"euler":{"heading":16.231090258241064,"pitch":-135.51420398985056,"roll":56.565891617851285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.977"} +{"sensors":[{"euler":{"heading":91.76767314295223,"pitch":134.05553351359026,"roll":24.950522964008236},"location":"Left Knee"},{"euler":{"heading":43.2912461904835,"pitch":105.00342505517682,"roll":34.544667377315406},"location":"Left Ankle"},{"euler":{"heading":33.35761297280049,"pitch":-1.6522772924188853,"roll":0.77359940551564},"location":"Right Ankle"},{"euler":{"heading":52.55357081942874,"pitch":-155.09219114295126,"roll":58.13073294963113},"location":"Right Hip"},{"euler":{"heading":74.29357040680293,"pitch":-128.17905978763403,"roll":-39.962310681459634},"location":"Right Knee"},{"euler":{"heading":15.483817473183208,"pitch":-134.19299454405584,"roll":56.066163150112175},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.77"} +{"sensors":[{"euler":{"heading":105.76949532741166,"pitch":136.244069405434,"roll":26.45344698426332},"location":"Left Knee"},{"euler":{"heading":39.59070446973151,"pitch":103.98050633586595,"roll":31.413186586687495},"location":"Left Ankle"},{"euler":{"heading":31.956462290545815,"pitch":-1.4118702371746579,"roll":0.4503079022501664},"location":"Right Ankle"},{"euler":{"heading":52.608696918344535,"pitch":-155.64228038425992,"roll":59.01009313149046},"location":"Right Hip"},{"euler":{"heading":76.2833487468878,"pitch":-128.839791808361,"roll":-41.149012091978},"location":"Right Knee"},{"euler":{"heading":15.365411866402454,"pitch":-133.41958188495465,"roll":55.7388227739631},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.178"} +{"sensors":[{"euler":{"heading":118.86318631452795,"pitch":137.2256093106208,"roll":27.676663399025564},"location":"Left Knee"},{"euler":{"heading":37.98163347604577,"pitch":103.54240790502283,"roll":29.637852418870565},"location":"Left Ankle"},{"euler":{"heading":29.685538502803993,"pitch":-1.664011186541415,"roll":0.050753940788127616},"location":"Right Ankle"},{"euler":{"heading":53.18296648634693,"pitch":-156.02708158456883,"roll":59.63339032358952},"location":"Right Hip"},{"euler":{"heading":78.4179282245727,"pitch":-130.09165558573258,"roll":-43.05517169067556},"location":"Right Knee"},{"euler":{"heading":15.595453404287689,"pitch":-132.8505368124152,"roll":55.692323545731476},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.278"} +{"sensors":[{"euler":{"heading":130.71389462964103,"pitch":137.34683562551047,"roll":28.557599758093367},"location":"Left Knee"},{"euler":{"heading":37.53214281839465,"pitch":103.42541301152417,"roll":28.73888838241284},"location":"Left Ankle"},{"euler":{"heading":26.345726989697695,"pitch":-1.910003170643431,"roll":-0.5902219395602601},"location":"Right Ankle"},{"euler":{"heading":54.675770692060475,"pitch":-155.38241222763543,"roll":59.39477988978149},"location":"Right Hip"},{"euler":{"heading":80.46298494861817,"pitch":-132.4372786741109,"roll":-44.89296885112222},"location":"Right Knee"},{"euler":{"heading":16.152420236678275,"pitch":-132.65072341203384,"roll":55.983184779860935},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.379"} +{"sensors":[{"euler":{"heading":140.982045867491,"pitch":136.91550730293665,"roll":29.152596655550532},"location":"Left Knee"},{"euler":{"heading":38.0440058875229,"pitch":103.4622346310995,"roll":28.579422068340204},"location":"Left Ankle"},{"euler":{"heading":24.514779732469204,"pitch":-2.3347356456434523,"roll":-0.9145768115031462},"location":"Right Ankle"},{"euler":{"heading":56.26668621646126,"pitch":-154.58503591854026,"roll":58.35246949523514},"location":"Right Hip"},{"euler":{"heading":80.85328871205391,"pitch":-132.96048679856762,"roll":-46.09815701308742},"location":"Right Knee"},{"euler":{"heading":16.786823298881632,"pitch":-132.95743247088188,"roll":56.42473709048745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.479"} +{"sensors":[{"euler":{"heading":115.49539811593392,"pitch":136.28145144083766,"roll":27.913347540202036},"location":"Left Knee"},{"euler":{"heading":38.617696807179776,"pitch":103.45393644362287,"roll":28.720499740868483},"location":"Left Ankle"},{"euler":{"heading":25.001334865953506,"pitch":-3.0579480116269533,"roll":-0.3638437690550913},"location":"Right Ankle"},{"euler":{"heading":57.39096688000944,"pitch":-154.02403327445907,"roll":57.03475441537441},"location":"Right Hip"},{"euler":{"heading":78.72340226609681,"pitch":-131.59087942779274,"roll":-45.648867070753596},"location":"Right Knee"},{"euler":{"heading":17.42517798517232,"pitch":-134.01380115308862,"roll":56.85995861775852},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.580"} +{"sensors":[{"euler":{"heading":95.17987240702865,"pitch":135.41044471198296,"roll":27.933480963925607},"location":"Left Knee"},{"euler":{"heading":39.59873076065835,"pitch":103.5296619273084,"roll":29.234602406318746},"location":"Left Ankle"},{"euler":{"heading":27.658942574212507,"pitch":-3.444826014679056,"roll":0.366367833010391},"location":"Right Ankle"},{"euler":{"heading":57.43756643767633,"pitch":-153.7958254214167,"roll":56.038582031235705},"location":"Right Hip"},{"euler":{"heading":75.03533797965085,"pitch":-129.79269693470732,"roll":-43.559793741738645},"location":"Right Knee"},{"euler":{"heading":18.221346255151254,"pitch":-135.62366668538724,"roll":57.34890465317969},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.680"} +{"sensors":[{"euler":{"heading":79.19358069573094,"pitch":134.43204258630308,"roll":27.404730895946535},"location":"Left Knee"},{"euler":{"heading":40.95491389830006,"pitch":103.72303549035593,"roll":30.294331858160348},"location":"Left Ankle"},{"euler":{"heading":30.732730311647465,"pitch":-3.5392540500768455,"roll":0.9438838066800364},"location":"Right Ankle"},{"euler":{"heading":56.203426273170756,"pitch":-154.00549735621823,"roll":55.654412230634854},"location":"Right Hip"},{"euler":{"heading":71.979883127831,"pitch":-128.27258194818805,"roll":-41.25921712413466},"location":"Right Knee"},{"euler":{"heading":19.140786807314594,"pitch":-137.7581589535938,"roll":57.86862873423531},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.781"} +{"sensors":[{"euler":{"heading":67.31091996569683,"pitch":133.57049211697935,"roll":25.89773991809923},"location":"Left Knee"},{"euler":{"heading":42.80851862177971,"pitch":104.42120147915578,"roll":32.436370845616565},"location":"Left Ankle"},{"euler":{"heading":32.2091155168286,"pitch":-3.559301242119307,"roll":1.1870341601222516},"location":"Right Ankle"},{"euler":{"heading":55.145351194605844,"pitch":-154.33791164754066,"roll":55.45541924292239},"location":"Right Hip"},{"euler":{"heading":70.67308686755598,"pitch":-127.38458300625973,"roll":-39.90281020781236},"location":"Right Knee"},{"euler":{"heading":19.733100420497355,"pitch":-139.28532689295315,"roll":58.33891410263328},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.881"} +{"sensors":[{"euler":{"heading":59.28771363753232,"pitch":132.570920186764,"roll":23.731484810289913},"location":"Left Knee"},{"euler":{"heading":45.72339543454069,"pitch":106.43821115897178,"roll":35.45669452896618},"location":"Left Ankle"},{"euler":{"heading":32.95424411428271,"pitch":-3.5001524474803016,"roll":1.270312779830215},"location":"Right Ankle"},{"euler":{"heading":53.91633671190708,"pitch":-154.75166590018088,"roll":55.76881598037151},"location":"Right Hip"},{"euler":{"heading":70.80998096571253,"pitch":-126.8426484298184,"roll":-39.26996215589633},"location":"Right Knee"},{"euler":{"heading":18.72581394603139,"pitch":-138.08101428511458,"roll":58.47908884614007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.982"} +{"sensors":[{"euler":{"heading":51.897868614704585,"pitch":132.29068975886085,"roll":22.30042692905555},"location":"Left Knee"},{"euler":{"heading":47.37287523710194,"pitch":106.4619247405232,"roll":37.58328878003075},"location":"Left Ankle"},{"euler":{"heading":33.231417368426065,"pitch":-3.4347395620695367,"roll":1.18514622150788},"location":"Right Ankle"},{"euler":{"heading":53.17755984003629,"pitch":-155.07849935083664,"roll":56.39722871977467},"location":"Right Hip"},{"euler":{"heading":71.62956131080581,"pitch":-126.53656987399697,"roll":-39.1669930277785},"location":"Right Knee"},{"euler":{"heading":17.217338505191336,"pitch":-136.2421530595937,"roll":57.94005502430074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.82"} +{"sensors":[{"euler":{"heading":66.36432819627564,"pitch":133.27374021418885,"roll":22.759364065979785},"location":"Left Knee"},{"euler":{"heading":45.62596222455628,"pitch":105.11001650850183,"roll":37.04623356285708},"location":"Left Ankle"},{"euler":{"heading":33.14921052951198,"pitch":-3.327986611293215,"roll":1.0783545872842166},"location":"Right Ankle"},{"euler":{"heading":52.69750160504222,"pitch":-155.3623521797542,"roll":57.17394951319043},"location":"Right Hip"},{"euler":{"heading":72.80598394941079,"pitch":-126.49741932184678,"roll":-39.4483732102052},"location":"Right Knee"},{"euler":{"heading":15.9346380022574,"pitch":-134.35823698260734,"roll":57.27988283162925},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.183"} +{"sensors":[{"euler":{"heading":84.95737363986709,"pitch":135.32855836582192,"roll":24.399378213959807},"location":"Left Knee"},{"euler":{"heading":41.67478132727624,"pitch":103.79158351959298,"roll":33.9859474804311},"location":"Left Ankle"},{"euler":{"heading":32.51115012783973,"pitch":-3.1005917589176324,"roll":0.8449794235979209},"location":"Right Ankle"},{"euler":{"heading":52.51251621382666,"pitch":-155.79756275916776,"roll":57.95407380084075},"location":"Right Hip"},{"euler":{"heading":74.34593235933511,"pitch":-126.7057505754696,"roll":-40.17861173459646},"location":"Right Knee"},{"euler":{"heading":15.306481073911032,"pitch":-133.05186388620692,"roll":56.83708746547937},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.284"} +{"sensors":[{"euler":{"heading":100.66290884130402,"pitch":137.17602148586664,"roll":25.895276759325988},"location":"Left Knee"},{"euler":{"heading":38.35037911352573,"pitch":102.9017770546674,"roll":30.996794490748016},"location":"Left Ankle"},{"euler":{"heading":31.14447328594964,"pitch":-2.9067184393777894,"roll":0.3365386729835296},"location":"Right Ankle"},{"euler":{"heading":52.59291737502684,"pitch":-156.50052996258364,"roll":58.71349659510902},"location":"Right Hip"},{"euler":{"heading":76.201371196292,"pitch":-127.26287340749056,"roll":-41.49931552251793},"location":"Right Knee"},{"euler":{"heading":15.267771477522546,"pitch":-132.35132934615436,"roll":56.53748320358007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.385"} +{"sensors":[{"euler":{"heading":114.55706742195436,"pitch":138.0570189068736,"roll":27.070518843586985},"location":"Left Knee"},{"euler":{"heading":36.864986200668625,"pitch":102.31064443472664,"roll":29.344303895293237},"location":"Left Ankle"},{"euler":{"heading":28.77097987330057,"pitch":-3.3614899122995627,"roll":-0.1473179213941524},"location":"Right Ankle"},{"euler":{"heading":53.193827444021174,"pitch":-156.58371385666015,"roll":59.03207028268493},"location":"Right Hip"},{"euler":{"heading":78.22595363567092,"pitch":-128.55178057985958,"roll":-43.598074224403376},"location":"Right Knee"},{"euler":{"heading":14.998263797384359,"pitch":-131.61041756234428,"roll":56.40906615667532},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.486"} +{"sensors":[{"euler":{"heading":126.6410808863572,"pitch":138.31913383085396,"roll":27.91993504184572},"location":"Left Knee"},{"euler":{"heading":36.22544294685867,"pitch":101.84708695061252,"roll":28.306795025784066},"location":"Left Ankle"},{"euler":{"heading":25.894152764787606,"pitch":-3.749220053851206,"roll":-0.6029836178556204},"location":"Right Ankle"},{"euler":{"heading":54.26254679107834,"pitch":-155.89204020589997,"roll":58.57123091255421},"location":"Right Hip"},{"euler":{"heading":80.43659313279744,"pitch":-130.76445469972475,"roll":-45.53880582189582},"location":"Right Knee"},{"euler":{"heading":15.0035128931882,"pitch":-131.49289856312282,"roll":56.57229422963156},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.586"} +{"sensors":[{"euler":{"heading":136.91001228145961,"pitch":138.21148725099252,"roll":28.528027284694307},"location":"Left Knee"},{"euler":{"heading":36.349824160702894,"pitch":101.51085964273048,"roll":27.962509868860884},"location":"Left Ankle"},{"euler":{"heading":25.310311544921014,"pitch":-4.123848626434487,"roll":-0.6229138473590659},"location":"Right Ankle"},{"euler":{"heading":55.464604943442936,"pitch":-155.1353651894866,"roll":57.541862166351045},"location":"Right Hip"},{"euler":{"heading":80.3501092046247,"pitch":-130.88793115763022,"roll":-46.27233256640281},"location":"Right Knee"},{"euler":{"heading":15.28724030538849,"pitch":-131.9335268508745,"roll":56.90429978120584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.687"} +{"sensors":[{"euler":{"heading":145.96624061307352,"pitch":137.733580855751,"roll":28.84640780308186},"location":"Left Knee"},{"euler":{"heading":36.85000297338925,"pitch":101.30174085324825,"roll":27.977966729906793},"location":"Left Ankle"},{"euler":{"heading":26.77043327751865,"pitch":-4.593637452994306,"roll":0.02492623847142561},"location":"Right Ankle"},{"euler":{"heading":56.18131000150382,"pitch":-154.74198889850888,"roll":56.33692789114044},"location":"Right Hip"},{"euler":{"heading":77.78821236462309,"pitch":-129.45982725268206,"roll":-45.32490427066454},"location":"Right Knee"},{"euler":{"heading":15.804930766254797,"pitch":-133.08134916766838,"roll":57.264176406824994},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.788"} +{"sensors":[{"euler":{"heading":119.97478693583085,"pitch":136.86118250494417,"roll":28.795619864973187},"location":"Left Knee"},{"euler":{"heading":37.860024908390436,"pitch":101.33843616198318,"roll":28.46757786811429},"location":"Left Ankle"},{"euler":{"heading":29.832805949726396,"pitch":-4.751198811036401,"roll":0.8013904306316392},"location":"Right Ankle"},{"euler":{"heading":55.900132406568275,"pitch":-154.61195418620093,"roll":55.57360481412172},"location":"Right Hip"},{"euler":{"heading":74.0377385133328,"pitch":-127.84057970098026,"roll":-42.999109034682384},"location":"Right Knee"},{"euler":{"heading":16.656877298567444,"pitch":-134.7026251232205,"roll":57.72061656422459},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.889"} +{"sensors":[{"euler":{"heading":99.50752022223462,"pitch":135.8042321361391,"roll":28.16702297843266},"location":"Left Knee"},{"euler":{"heading":39.33506829558673,"pitch":101.63323436776234,"roll":29.606215776926867},"location":"Left Ankle"},{"euler":{"heading":32.12624227161416,"pitch":-4.382475701586651,"roll":1.2780718374134723},"location":"Right Ankle"},{"euler":{"heading":54.89701450818188,"pitch":-154.6904841673233,"roll":55.23961124264111},"location":"Right Hip"},{"euler":{"heading":70.93118277804237,"pitch":-126.91638594000686,"roll":-40.662687891739075},"location":"Right Knee"},{"euler":{"heading":17.74089518342043,"pitch":-136.85338770668224,"roll":58.22281750161566},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.989"} +{"sensors":[{"euler":{"heading":84.21149028656343,"pitch":134.61595709138743,"roll":26.45077695038313},"location":"Left Knee"},{"euler":{"heading":41.58920635025519,"pitch":102.8393485216976,"roll":31.94450852063064},"location":"Left Ankle"},{"euler":{"heading":33.029074974653994,"pitch":-3.929921196687138,"roll":1.42997950427521},"location":"Right Ankle"},{"euler":{"heading":54.2421312830081,"pitch":-154.67830968339294,"roll":55.1335839351552},"location":"Right Hip"},{"euler":{"heading":69.69550601508566,"pitch":-126.63301964739873,"roll":-39.22628369676725},"location":"Right Knee"},{"euler":{"heading":18.52147230530887,"pitch":-138.32393455734828,"roll":58.69508253689273},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.90"} +{"sensors":[{"euler":{"heading":73.30424136984891,"pitch":133.51693538705652,"roll":24.172461161797088},"location":"Left Knee"},{"euler":{"heading":44.32668826876572,"pitch":105.04250368640348,"roll":34.73813641859481},"location":"Left Ankle"},{"euler":{"heading":33.35808717895171,"pitch":-3.324220752186206,"roll":1.4188042755976622},"location":"Right Ankle"},{"euler":{"heading":53.04003916032352,"pitch":-154.84565252499496,"roll":55.542993614999766},"location":"Right Hip"},{"euler":{"heading":70.22356990680487,"pitch":-126.79872539251755,"roll":-38.550774639207646},"location":"Right Knee"},{"euler":{"heading":17.775351323187152,"pitch":-137.2110743204191,"roll":58.80137678588152},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.191"} +{"sensors":[{"euler":{"heading":63.19622697085317,"pitch":133.24184025901326,"roll":22.812416284376233},"location":"Left Knee"},{"euler":{"heading":45.6228315590217,"pitch":104.96117152744814,"roll":36.51691192021146},"location":"Left Ankle"},{"euler":{"heading":33.44912278346771,"pitch":-2.71073913135104,"roll":1.2362781686009277},"location":"Right Ankle"},{"euler":{"heading":52.36492344076475,"pitch":-154.89006135462787,"roll":56.21666891978169},"location":"Right Hip"},{"euler":{"heading":71.45261926560346,"pitch":-127.0616292364039,"roll":-38.40325732265608},"location":"Right Knee"},{"euler":{"heading":16.37964767238588,"pitch":-135.52630975764,"roll":58.243575964168166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.291"} +{"sensors":[{"euler":{"heading":75.86511458750103,"pitch":134.24142813444922,"roll":23.24048639669468},"location":"Left Knee"},{"euler":{"heading":43.80063807089363,"pitch":103.96010809453537,"roll":35.6948507231081},"location":"Left Ankle"},{"euler":{"heading":33.25612379388082,"pitch":-2.1318336713362585,"roll":1.0235523823039505},"location":"Right Ankle"},{"euler":{"heading":51.94888150293819,"pitch":-154.99564418166315,"roll":57.02245606532972},"location":"Right Hip"},{"euler":{"heading":73.0475489917392,"pitch":-127.44221175561306,"roll":-38.68594411296078},"location":"Right Knee"},{"euler":{"heading":15.076323743015204,"pitch":-133.75805067988279,"roll":57.489132981918665},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.392"} +{"sensors":[{"euler":{"heading":87.68309567128856,"pitch":136.18041381768066,"roll":24.63853866893793},"location":"Left Knee"},{"euler":{"heading":40.06130175317163,"pitch":102.91752866723249,"roll":32.75122421262166},"location":"Left Ankle"},{"euler":{"heading":32.55707343846815,"pitch":-1.5485434718020246,"roll":0.7299918902342273},"location":"Right Ankle"},{"euler":{"heading":51.74496889438366,"pitch":-155.26954267921352,"roll":57.87049892399668},"location":"Right Hip"},{"euler":{"heading":75.0015142389159,"pitch":-128.03034900493287,"roll":-39.44709149237402},"location":"Right Knee"},{"euler":{"heading":14.377772607037702,"pitch":-132.4136453367255,"roll":56.8896906362143},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.492"} +{"sensors":[{"euler":{"heading":102.80554744661949,"pitch":138.0360238686847,"roll":26.141413632801815},"location":"Left Knee"},{"euler":{"heading":36.946029495321895,"pitch":102.3665148297385,"roll":29.784399255474078},"location":"Left Ankle"},{"euler":{"heading":31.033442551908415,"pitch":-1.1336995518281592,"roll":0.25627055025199397},"location":"Right Ankle"},{"euler":{"heading":51.82176308596382,"pitch":-155.90383159906932,"roll":58.76272323199251},"location":"Right Hip"},{"euler":{"heading":77.13055122577033,"pitch":-128.7706255111169,"roll":-40.81954516338837},"location":"Right Knee"},{"euler":{"heading":14.584634999180667,"pitch":-131.83921967024986,"roll":56.56130127131021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.592"} +{"sensors":[{"euler":{"heading":116.84058994820177,"pitch":138.66874501667806,"roll":27.334859119541836},"location":"Left Knee"},{"euler":{"heading":36.11344187922866,"pitch":102.25436113605521,"roll":28.348307891770354},"location":"Left Ankle"},{"euler":{"heading":28.555216569553583,"pitch":-1.4539186192965106,"roll":-0.20211462234412686},"location":"Right Ankle"},{"euler":{"heading":52.40782915692973,"pitch":-156.20429968424486,"roll":59.356043697870135},"location":"Right Hip"},{"euler":{"heading":79.33159307021127,"pitch":-129.96961565088412,"roll":-43.05431065912461},"location":"Right Knee"},{"euler":{"heading":14.890755775068127,"pitch":-131.46806889105875,"roll":56.40683730207797},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.693"} +{"sensors":[{"euler":{"heading":129.20048231888293,"pitch":138.6289119296402,"roll":28.14129404680633},"location":"Left Knee"},{"euler":{"heading":36.061922657394774,"pitch":102.27772751382138,"roll":27.39959775675794},"location":"Left Ankle"},{"euler":{"heading":25.681814161804716,"pitch":-2.2609186361833173,"roll":-0.7774192469922894},"location":"Right Ankle"},{"euler":{"heading":53.63680817570332,"pitch":-155.60817085326374,"roll":59.12597991732315},"location":"Right Hip"},{"euler":{"heading":81.16353026445461,"pitch":-131.93445747540585,"roll":-45.31430656638336},"location":"Right Knee"},{"euler":{"heading":15.278149207059819,"pitch":-131.47705164292856,"roll":56.53460554891418},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.794"} +{"sensors":[{"euler":{"heading":139.67152183037186,"pitch":138.17669642826903,"roll":28.793727915436225},"location":"Left Knee"},{"euler":{"heading":36.596433614334494,"pitch":102.39399608869826,"roll":27.034594132045473},"location":"Left Ankle"},{"euler":{"heading":24.54786347421483,"pitch":-3.00304345467852,"roll":-1.0601857591791148},"location":"Right Ankle"},{"euler":{"heading":55.160336616024104,"pitch":-154.7714833496512,"roll":58.05573133057358},"location":"Right Hip"},{"euler":{"heading":81.32582422125357,"pitch":-132.09527020114908,"roll":-46.46157908819043},"location":"Right Knee"},{"euler":{"heading":15.797486984881349,"pitch":-132.22239805651455,"roll":56.74534477321203},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.895"} +{"sensors":[{"euler":{"heading":114.70771723287694,"pitch":137.27998266607145,"roll":29.193849219275474},"location":"Left Knee"},{"euler":{"heading":37.68807444012917,"pitch":102.7607981598865,"roll":27.084811136543475},"location":"Left Ankle"},{"euler":{"heading":25.89049340290466,"pitch":-3.5497222476315966,"roll":-0.7809764428623969},"location":"Right Ankle"},{"euler":{"heading":56.062972195340876,"pitch":-154.37704944455533,"roll":56.59382952439738},"location":"Right Hip"},{"euler":{"heading":78.94384521101846,"pitch":-130.77229464595325,"roll":-45.775578190127774},"location":"Right Knee"},{"euler":{"heading":16.454587186947855,"pitch":-133.50326482824042,"roll":57.025217059591235},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.996"} +{"sensors":[{"euler":{"heading":94.96892761754611,"pitch":136.09401435026786,"roll":29.175409327417466},"location":"Left Knee"},{"euler":{"heading":38.992134980953026,"pitch":103.21755967276253,"roll":27.52264155554349},"location":"Left Ankle"},{"euler":{"heading":28.494000149490425,"pitch":-3.634172037054566,"roll":-0.0527022811117831},"location":"Right Ankle"},{"euler":{"heading":55.78540161737493,"pitch":-154.3530732608088,"roll":55.51474862601969},"location":"Right Hip"},{"euler":{"heading":75.07314903901347,"pitch":-129.1471048883407,"roll":-43.52581878518727},"location":"Right Knee"},{"euler":{"heading":17.18881526564943,"pitch":-135.1022420123715,"roll":57.44493513001823},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.96"} +{"sensors":[{"euler":{"heading":79.33596063673396,"pitch":134.86033787213833,"roll":28.59986461224517},"location":"Left Knee"},{"euler":{"heading":40.67821031904788,"pitch":103.74383262720853,"roll":28.578752536283186},"location":"Left Ankle"},{"euler":{"heading":31.416474541429533,"pitch":-3.4906121647866657,"roll":0.5468417815948978},"location":"Right Ankle"},{"euler":{"heading":54.22043291632844,"pitch":-154.80105711190959,"roll":55.04961166950441},"location":"Right Hip"},{"euler":{"heading":71.39253078908213,"pitch":-127.84892510068671,"roll":-40.889591498147205},"location":"Right Knee"},{"euler":{"heading":17.95052371968664,"pitch":-137.17931922469415,"roll":57.87229001273166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.197"} +{"sensors":[{"euler":{"heading":67.56424258108083,"pitch":133.66672577362755,"roll":27.14565524634013},"location":"Left Knee"},{"euler":{"heading":42.849492876618285,"pitch":104.58865298057007,"roll":30.79480625852139},"location":"Left Ankle"},{"euler":{"heading":32.828417620961886,"pitch":-3.3190912608036616,"roll":0.8218154190698604},"location":"Right Ankle"},{"euler":{"heading":53.26603017396065,"pitch":-155.14102815027337,"roll":54.89031436510856},"location":"Right Hip"},{"euler":{"heading":69.65708572856593,"pitch":-127.17958571201852,"roll":-39.1819001951427},"location":"Right Knee"},{"euler":{"heading":18.568264461556204,"pitch":-138.80911170908593,"roll":58.31250056418194},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.297"} +{"sensors":[{"euler":{"heading":59.43568084185258,"pitch":132.47964039563396,"roll":24.90825475128986},"location":"Left Knee"},{"euler":{"heading":46.08988233651466,"pitch":106.81565553906457,"roll":34.03073672136408},"location":"Left Ankle"},{"euler":{"heading":33.52672638400392,"pitch":-3.1698315770519754,"roll":0.9219995201534842},"location":"Right Ankle"},{"euler":{"heading":52.15757433254885,"pitch":-155.59729216072193,"roll":55.221794814226314},"location":"Right Hip"},{"euler":{"heading":69.3300418128264,"pitch":-126.78200294728536,"roll":-38.24307427166434},"location":"Right Knee"},{"euler":{"heading":17.86717245818047,"pitch":-137.78684110879033,"roll":58.4968050468359},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.398"} +{"sensors":[{"euler":{"heading":52.79785929849936,"pitch":131.83948387809627,"roll":22.996647648594838},"location":"Left Knee"},{"euler":{"heading":47.821587002389705,"pitch":106.94615213636946,"roll":36.47133432631132},"location":"Left Ankle"},{"euler":{"heading":33.765563608912466,"pitch":-2.8683015956189273,"roll":0.8402396953634794},"location":"Right Ankle"},{"euler":{"heading":51.52345605199664,"pitch":-155.84963078694912,"roll":55.89035228412978},"location":"Right Hip"},{"euler":{"heading":70.04323436997319,"pitch":-126.71950559318914,"roll":-37.857288085518576},"location":"Right Knee"},{"euler":{"heading":16.573736869808407,"pitch":-135.99379900658354,"roll":58.00959374139726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.499"} +{"sensors":[{"euler":{"heading":44.58041430733842,"pitch":132.47306495448896,"roll":22.88400569591833},"location":"Left Knee"},{"euler":{"heading":46.43926499920414,"pitch":105.98218926760082,"roll":36.36704560906518},"location":"Left Ankle"},{"euler":{"heading":33.57467827206585,"pitch":-2.292243941354712,"roll":0.6592417303080426},"location":"Right Ankle"},{"euler":{"heading":51.182599925774674,"pitch":-155.89366118472407,"roll":56.70934435131269},"location":"Right Hip"},{"euler":{"heading":71.36441380141494,"pitch":-127.03156236766826,"roll":-37.84113700713176},"location":"Right Knee"},{"euler":{"heading":15.318478072419245,"pitch":-134.13945289713462,"roll":57.241736454092106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.600"} +{"sensors":[{"euler":{"heading":61.82940497629117,"pitch":134.35434435754848,"roll":24.161390168802313},"location":"Left Knee"},{"euler":{"heading":42.596360977885105,"pitch":104.63429868164566,"roll":33.51405461070708},"location":"Left Ankle"},{"euler":{"heading":32.94275695706245,"pitch":-1.5926244978055988,"roll":0.3943909529599006},"location":"Right Ankle"},{"euler":{"heading":50.986741608961964,"pitch":-156.01673750107219,"roll":57.616898475460594},"location":"Right Hip"},{"euler":{"heading":73.1477403751599,"pitch":-127.63498137748125,"roll":-38.31403752392535},"location":"Right Knee"},{"euler":{"heading":14.510649923383061,"pitch":-132.84794631217034,"roll":56.612319915183974},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.701"} +{"sensors":[{"euler":{"heading":76.57117167286269,"pitch":136.57390896740898,"roll":25.673982000771208},"location":"Left Knee"},{"euler":{"heading":38.9087723724376,"pitch":103.59298531120541,"roll":30.379540549490866},"location":"Left Ankle"},{"euler":{"heading":31.587052100249064,"pitch":-1.0071187602207936,"roll":-0.04146106642693165},"location":"Right Ankle"},{"euler":{"heading":50.99878695433629,"pitch":-156.3659184973623,"roll":58.5689183520753},"location":"Right Hip"},{"euler":{"heading":75.26191006283352,"pitch":-128.41881250600034,"roll":-39.395937254519154},"location":"Right Knee"},{"euler":{"heading":14.342661650773843,"pitch":-132.24409841453948,"roll":56.20329988125628},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.802"} +{"sensors":[{"euler":{"heading":95.0329198238636,"pitch":137.7024321386979,"roll":26.858384116426087},"location":"Left Knee"},{"euler":{"heading":37.351924528766254,"pitch":103.06689832750692,"roll":28.696586572686172},"location":"Left Ankle"},{"euler":{"heading":29.365229919945364,"pitch":-1.2977616622510428,"roll":-0.5190870032039742},"location":"Right Ankle"},{"euler":{"heading":51.6329069704058,"pitch":-156.59864937190008,"roll":59.097440185307},"location":"Right Hip"},{"euler":{"heading":77.37348957985496,"pitch":-129.24104260442175,"roll":-41.41535019173241},"location":"Right Knee"},{"euler":{"heading":14.401308188368558,"pitch":-131.88199603737576,"roll":56.01154707483959},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.903"} +{"sensors":[{"euler":{"heading":111.04712047928666,"pitch":138.03394894707316,"roll":27.8112139207796},"location":"Left Knee"},{"euler":{"heading":36.8203426691695,"pitch":102.82272232439148,"roll":27.589894995238044},"location":"Left Ankle"},{"euler":{"heading":26.05967744170997,"pitch":-1.5964290266434915,"roll":-1.1890911149443162},"location":"Right Ankle"},{"euler":{"heading":53.17471665757029,"pitch":-155.81637536706884,"roll":58.74334335313236},"location":"Right Hip"},{"euler":{"heading":79.72076057290913,"pitch":-131.31086172887916,"roll":-43.31995562996565},"location":"Right Knee"},{"euler":{"heading":14.782265136144549,"pitch":-131.92889300085253,"roll":56.081792351725845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.4"} +{"sensors":[{"euler":{"heading":124.68271754063645,"pitch":137.81074317407035,"roll":28.596116865238248},"location":"Left Knee"},{"euler":{"heading":36.97366947834308,"pitch":102.68500785124589,"roll":27.04032074711169},"location":"Left Ankle"},{"euler":{"heading":24.42325005823489,"pitch":-1.9380293727817532,"roll":-1.480259833800182},"location":"Right Ankle"},{"euler":{"heading":54.829539047105186,"pitch":-154.89448404147018,"roll":57.63814934821588},"location":"Right Hip"},{"euler":{"heading":80.28122805033655,"pitch":-131.97094671547595,"roll":-44.3834564783143},"location":"Right Knee"},{"euler":{"heading":15.623324647006884,"pitch":-132.70260173200145,"roll":56.359386626567485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.105"} +{"sensors":[{"euler":{"heading":102.26843205222195,"pitch":137.1450358381923,"roll":29.086379596287863},"location":"Left Knee"},{"euler":{"heading":37.68779875678782,"pitch":102.72091676244135,"roll":26.917579086723187},"location":"Left Ankle"},{"euler":{"heading":25.342562002377164,"pitch":-2.4849473175790924,"roll":-1.232434695391841},"location":"Right Ankle"},{"euler":{"heading":55.8872404294988,"pitch":-154.42295132130639,"roll":56.210024687905296},"location":"Right Hip"},{"euler":{"heading":78.13609346917355,"pitch":-130.84410195847585,"roll":-43.83568375513259},"location":"Right Knee"},{"euler":{"heading":16.59735802100188,"pitch":-133.94967978181228,"roll":56.788933996373245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.206"} +{"sensors":[{"euler":{"heading":84.61718589636179,"pitch":136.13837294231305,"roll":29.18517828115003},"location":"Left Knee"},{"euler":{"heading":38.77193286967308,"pitch":102.96744091569937,"roll":27.228630058454904},"location":"Left Ankle"},{"euler":{"heading":28.461526051347498,"pitch":-2.7182462001278362,"roll":-0.6811919846569362},"location":"Right Ankle"},{"euler":{"heading":55.98634048175754,"pitch":-154.2757025726499,"roll":55.11394542604206},"location":"Right Hip"},{"euler":{"heading":74.19178641373516,"pitch":-129.24180807397894,"roll":-41.59804273588073},"location":"Right Knee"},{"euler":{"heading":17.64459840302787,"pitch":-135.6369885460297,"roll":57.361925242464466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.306"} +{"sensors":[{"euler":{"heading":70.8005127553544,"pitch":135.00154708617222,"roll":28.733555755105083},"location":"Left Knee"},{"euler":{"heading":40.29576861185747,"pitch":103.44616270591548,"roll":28.146240246462288},"location":"Left Ankle"},{"euler":{"heading":31.42555663110933,"pitch":-2.828282315082073,"roll":0.03164488066953308},"location":"Right Ankle"},{"euler":{"heading":54.688172127613,"pitch":-154.60024953671257,"roll":54.752333226507076},"location":"Right Hip"},{"euler":{"heading":70.45684096054066,"pitch":-127.91083842268745,"roll":-39.050070073138905},"location":"Right Knee"},{"euler":{"heading":18.61503852786685,"pitch":-137.7404870351657,"roll":57.96364504770627},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.407"} +{"sensors":[{"euler":{"heading":60.581372494081144,"pitch":133.75883062645497,"roll":27.373644566886146},"location":"Left Knee"},{"euler":{"heading":42.27475648941818,"pitch":104.27768173395062,"roll":30.207241514953566},"location":"Left Ankle"},{"euler":{"heading":33.00232263951537,"pitch":-2.6603124101394635,"roll":0.3675171983920599},"location":"Right Ankle"},{"euler":{"heading":53.47660060776928,"pitch":-155.02472076385456,"roll":54.74616597089437},"location":"Right Hip"},{"euler":{"heading":68.55800669291554,"pitch":-127.3247891484441,"roll":-37.327113258210055},"location":"Right Knee"},{"euler":{"heading":19.540430608946277,"pitch":-139.3109531677496,"roll":58.5854153025278},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.508"} +{"sensors":[{"euler":{"heading":53.78351283190065,"pitch":132.77701485596103,"roll":25.156173758871343},"location":"Left Knee"},{"euler":{"heading":45.666851271943024,"pitch":106.82558548155626,"roll":33.3504313375999},"location":"Left Ankle"},{"euler":{"heading":33.906931928019944,"pitch":-2.383469169209337,"roll":0.4930804594000623},"location":"Right Ankle"},{"euler":{"heading":52.425114095535676,"pitch":-155.4385407367515,"roll":55.12108506288062},"location":"Right Hip"},{"euler":{"heading":68.47173425327327,"pitch":-127.15715153070536,"roll":-36.362583338191456},"location":"Right Knee"},{"euler":{"heading":18.663181036925714,"pitch":-138.26472616834917,"roll":58.73781348436818},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.608"} +{"sensors":[{"euler":{"heading":48.09258131159879,"pitch":132.01939100173888,"roll":23.470686300102454},"location":"Left Knee"},{"euler":{"heading":48.034068545749555,"pitch":107.59723071717085,"roll":35.67738371039675},"location":"Left Ankle"},{"euler":{"heading":34.31468779765675,"pitch":-1.9486560836495777,"roll":0.43428560392690196},"location":"Right Ankle"},{"euler":{"heading":51.796025086074756,"pitch":-155.64652750356407,"roll":55.828949078139125},"location":"Right Hip"},{"euler":{"heading":69.26316407937999,"pitch":-127.27299927132135,"roll":-35.93570232330089},"location":"Right Knee"},{"euler":{"heading":17.30874213064245,"pitch":-136.44406121000986,"roll":58.23362157773785},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.709"} +{"sensors":[{"euler":{"heading":40.16887891871973,"pitch":132.73098334900527,"roll":23.30700615006605},"location":"Left Knee"},{"euler":{"heading":46.803494498574864,"pitch":106.7675292007738,"roll":35.53565863869715},"location":"Left Ankle"},{"euler":{"heading":34.30373001582071,"pitch":-1.3768453302278694,"roll":0.2205602986644103},"location":"Right Ankle"},{"euler":{"heading":51.45334161390124,"pitch":-155.68015154720698,"roll":56.707289889110285},"location":"Right Hip"},{"euler":{"heading":70.56516979439397,"pitch":-127.6869830010612,"roll":-35.89425617379365},"location":"Right Knee"},{"euler":{"heading":15.944080807001457,"pitch":-134.50526679022985,"roll":57.45634427522769},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.810"} +{"sensors":[{"euler":{"heading":58.22913523787166,"pitch":134.6650172840138,"roll":24.5441527377549},"location":"Left Knee"},{"euler":{"heading":42.817302694704345,"pitch":105.49951121315898,"roll":32.821206337257074},"location":"Left Ankle"},{"euler":{"heading":33.77751603280653,"pitch":-0.7464671852660912,"roll":-0.03823278746753378},"location":"Right Ankle"},{"euler":{"heading":51.32733075970037,"pitch":-155.79975672067116,"roll":57.609094136191615},"location":"Right Hip"},{"euler":{"heading":72.35657818058102,"pitch":-128.35885194197573,"roll":-36.30859596539374},"location":"Right Knee"},{"euler":{"heading":15.076400527181665,"pitch":-133.05411072713952,"roll":56.8540756450656},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.911"} +{"sensors":[{"euler":{"heading":73.78974336018457,"pitch":136.8312479254922,"roll":25.984662464478497},"location":"Left Knee"},{"euler":{"heading":39.226421283978986,"pitch":104.57803502736046,"roll":29.835833720717517},"location":"Left Ankle"},{"euler":{"heading":32.49647360862383,"pitch":-0.2355067883897889,"roll":-0.557782967391665},"location":"Right Ankle"},{"euler":{"heading":51.50358266832554,"pitch":-156.06256245954737,"roll":58.490512708490954},"location":"Right Hip"},{"euler":{"heading":74.40007624834482,"pitch":-129.16894986150157,"roll":-37.31966963233889},"location":"Right Knee"},{"euler":{"heading":15.061545854506637,"pitch":-132.4068702251281,"roll":56.469621077182765},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.12"} +{"sensors":[{"euler":{"heading":93.05870005078944,"pitch":137.83422151887717,"roll":27.086003356655308},"location":"Left Knee"},{"euler":{"heading":37.879553953341414,"pitch":104.29118249317744,"roll":28.06785773824033},"location":"Left Ankle"},{"euler":{"heading":30.258495947437137,"pitch":-0.5044242970610086,"roll":-1.0100750541198682},"location":"Right Ankle"},{"euler":{"heading":51.957053534846104,"pitch":-156.58574358893657,"roll":59.1929614859027},"location":"Right Hip"},{"euler":{"heading":76.54891484221231,"pitch":-130.0506199702245,"roll":-39.17986890770919},"location":"Right Knee"},{"euler":{"heading":15.25746863157378,"pitch":-132.08873726841563,"roll":56.28820633352364},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.112"} +{"sensors":[{"euler":{"heading":109.94192794284318,"pitch":137.95700672117778,"roll":27.898274746076943},"location":"Left Knee"},{"euler":{"heading":37.377216525314665,"pitch":104.23375724311778,"roll":27.181497247939326},"location":"Left Ankle"},{"euler":{"heading":27.058621531580982,"pitch":-1.0034092765039426,"roll":-1.6868817344369376},"location":"Right Ankle"},{"euler":{"heading":52.92288574696293,"pitch":-156.25059531744884,"roll":59.22216850059876},"location":"Right Hip"},{"euler":{"heading":79.02181844863023,"pitch":-131.97208441944983,"roll":-41.43981171161489},"location":"Right Knee"},{"euler":{"heading":15.732991291294404,"pitch":-131.9970618359556,"roll":56.49860303346648},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.213"} +{"sensors":[{"euler":{"heading":124.15828678784405,"pitch":137.62221391894403,"roll":28.520318038117},"location":"Left Knee"},{"euler":{"heading":37.709066641294115,"pitch":104.28286479508508,"roll":26.8015685713707},"location":"Left Ankle"},{"euler":{"heading":25.253075002257386,"pitch":-1.55005327068442,"roll":-2.0912214652835237},"location":"Right Ankle"},{"euler":{"heading":54.39741848310785,"pitch":-155.51332054263605,"roll":58.43409005591124},"location":"Right Hip"},{"euler":{"heading":80.10727061379572,"pitch":-132.67034087879543,"roll":-43.12211386761656},"location":"Right Knee"},{"euler":{"heading":16.372051645426872,"pitch":-132.77617662723094,"roll":56.83167314670274},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.315"} +{"sensors":[{"euler":{"heading":102.17791125965178,"pitch":136.85553426128376,"roll":28.910775589463064},"location":"Left Knee"},{"euler":{"heading":38.533698762456424,"pitch":104.54133206944135,"roll":26.814499037912675},"location":"Left Ankle"},{"euler":{"heading":25.873389068825382,"pitch":-2.15765864241409,"roll":-1.916075417064329},"location":"Right Ankle"},{"euler":{"heading":55.56314712219315,"pitch":-154.95913981809198,"roll":57.12050144183141},"location":"Right Hip"},{"euler":{"heading":78.83789099280402,"pitch":-131.6493802276567,"roll":-43.25318517844653},"location":"Right Knee"},{"euler":{"heading":17.19257894595637,"pitch":-134.13516202333955,"roll":57.222239605755256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.416"} +{"sensors":[{"euler":{"heading":84.78087987529072,"pitch":135.8883007955654,"roll":28.877645901190462},"location":"Left Knee"},{"euler":{"heading":39.59535163731867,"pitch":104.81682981785501,"roll":27.20075387510051},"location":"Left Ankle"},{"euler":{"heading":28.230292219266346,"pitch":-2.493434526129767,"roll":-1.0679344387151242},"location":"Right Ankle"},{"euler":{"heading":55.65557485216694,"pitch":-154.80844864150245,"roll":55.96753968790957},"location":"Right Hip"},{"euler":{"heading":75.36094822123164,"pitch":-130.0358826944939,"roll":-41.54657890071354},"location":"Right Knee"},{"euler":{"heading":18.001167877993893,"pitch":-135.81671741905095,"roll":57.706450228577516},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.517"} +{"sensors":[{"euler":{"heading":70.85725620725427,"pitch":134.90011449296034,"roll":28.413660215430216},"location":"Left Knee"},{"euler":{"heading":40.904584614817225,"pitch":105.08990209494034,"roll":28.126961090497655},"location":"Left Ankle"},{"euler":{"heading":31.236222622177955,"pitch":-2.464332528202978,"roll":-0.3955977267255746},"location":"Right Ankle"},{"euler":{"heading":54.24492767061038,"pitch":-155.18933371455344,"roll":55.6733620914003},"location":"Right Hip"},{"euler":{"heading":71.59845390675405,"pitch":-128.65910329500198,"roll":-39.021337654146244},"location":"Right Knee"},{"euler":{"heading":18.912942531803132,"pitch":-138.0695878266165,"roll":58.19810812229508},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.618"} +{"sensors":[{"euler":{"heading":60.43163881889853,"pitch":133.89296849044254,"roll":27.0841790654622},"location":"Left Knee"},{"euler":{"heading":42.61273106127684,"pitch":105.61642785126931,"roll":30.17196036432592},"location":"Left Ankle"},{"euler":{"heading":32.906749236208434,"pitch":-2.366655164078841,"roll":-0.04286521980438507},"location":"Right Ankle"},{"euler":{"heading":53.2206880681338,"pitch":-155.59938550860605,"roll":55.627144497866446},"location":"Right Hip"},{"euler":{"heading":69.51653935579716,"pitch":-127.90675046119244,"roll":-37.259496854969186},"location":"Right Knee"},{"euler":{"heading":19.754627543594747,"pitch":-139.67414665594865,"roll":58.69055955822185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.719"} +{"sensors":[{"euler":{"heading":53.571731447995475,"pitch":132.809213251754,"roll":24.935860794047052},"location":"Left Knee"},{"euler":{"heading":45.806842406583534,"pitch":107.77538994349963,"roll":33.36606876465906},"location":"Left Ankle"},{"euler":{"heading":33.763278146013604,"pitch":-2.1355819686367363,"roll":0.11579032909016018},"location":"Right Ankle"},{"euler":{"heading":52.197737264966875,"pitch":-156.00015769586113,"roll":55.9896042676944},"location":"Right Hip"},{"euler":{"heading":68.94742375339601,"pitch":-127.58268358939172,"roll":-36.20032871043715},"location":"Right Knee"},{"euler":{"heading":18.903963636719443,"pitch":-138.40906636800065,"roll":58.82106528569692},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.820"} +{"sensors":[{"euler":{"heading":47.95484679170887,"pitch":133.80833758413573,"roll":23.09297136016816},"location":"Left Knee"},{"euler":{"heading":47.42336560371949,"pitch":107.8799902643244,"roll":35.863947549502214},"location":"Left Ankle"},{"euler":{"heading":34.173283007494085,"pitch":-1.819474055661932,"roll":0.08693986020044366},"location":"Right Ankle"},{"euler":{"heading":51.70497410773786,"pitch":-156.1785019237531,"roll":56.614850461363375},"location":"Right Hip"},{"euler":{"heading":69.48618950862162,"pitch":-127.56292770415587,"roll":-35.75321030861169},"location":"Right Knee"},{"euler":{"heading":17.49400404489195,"pitch":-136.574671059432,"roll":58.28517282746799},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.921"} +{"sensors":[{"euler":{"heading":40.22851596547554,"pitch":134.40920960357147,"roll":22.92954946858117},"location":"Left Knee"},{"euler":{"heading":46.11914706091784,"pitch":106.62505565730753,"roll":35.79960052913732},"location":"Left Ankle"},{"euler":{"heading":34.15227608247456,"pitch":-1.4561468841410876,"roll":-0.10563482353915034},"location":"Right Ankle"},{"euler":{"heading":51.533367170578025,"pitch":-156.26259217177991,"roll":57.394651234084115},"location":"Right Hip"},{"euler":{"heading":70.56942354335503,"pitch":-127.6996290941669,"roll":-35.75885023587878},"location":"Right Knee"},{"euler":{"heading":16.11955429036028,"pitch":-134.67101484890313,"roll":57.43759333249357},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.21"} +{"sensors":[{"euler":{"heading":58.402817446651106,"pitch":136.24305547329502,"roll":24.30961713086333},"location":"Left Knee"},{"euler":{"heading":42.292631606594945,"pitch":105.18628591807636,"roll":33.11949385219667},"location":"Left Ankle"},{"euler":{"heading":33.64756041012352,"pitch":-1.1689983348246245,"roll":-0.3096173936305433},"location":"Right Ankle"},{"euler":{"heading":51.52959767336168,"pitch":-156.5408238007161,"roll":58.207289056364765},"location":"Right Hip"},{"euler":{"heading":71.97956145769027,"pitch":-127.97790477332491,"roll":-36.23957827536717},"location":"Right Knee"},{"euler":{"heading":15.19629679304132,"pitch":-133.20409201466438,"roll":56.78360061568644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.122"} +{"sensors":[{"euler":{"heading":78.20663034400931,"pitch":138.4553705067167,"roll":25.909179114227737},"location":"Left Knee"},{"euler":{"heading":38.57684478852552,"pitch":103.96761334475191,"roll":29.856043738895288},"location":"Left Ankle"},{"euler":{"heading":32.4495191630667,"pitch":-0.9151100764796891,"roll":-0.7676802883291904},"location":"Right Ankle"},{"euler":{"heading":51.788104748586,"pitch":-157.04823689546058,"roll":59.002077845441875},"location":"Right Hip"},{"euler":{"heading":73.71087567989323,"pitch":-128.39023280604476,"roll":-37.328560936170206},"location":"Right Knee"},{"euler":{"heading":15.15971678592615,"pitch":-132.53069393913324,"roll":56.39395936422774},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.222"} +{"sensors":[{"euler":{"heading":95.99747721570597,"pitch":139.55949779409002,"roll":27.249567351515353},"location":"Left Knee"},{"euler":{"heading":37.276337737478855,"pitch":103.48317889769625,"roll":27.97912974279681},"location":"Left Ankle"},{"euler":{"heading":30.267612159730152,"pitch":-1.2442318354880113,"roll":-1.2237871392741},"location":"Right Ankle"},{"euler":{"heading":52.493230591921225,"pitch":-157.4241480524337,"roll":59.49534072328871},"location":"Right Hip"},{"euler":{"heading":75.69922340425639,"pitch":-129.01898639462618,"roll":-39.31871119466951},"location":"Right Knee"},{"euler":{"heading":15.201108807567602,"pitch":-132.16511041554799,"roll":56.12461701313726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.323"} +{"sensors":[{"euler":{"heading":111.31965725408158,"pitch":139.9046112208433,"roll":28.272201418373115},"location":"Left Knee"},{"euler":{"heading":36.66927267274297,"pitch":103.04482623961755,"roll":26.922850267440705},"location":"Left Ankle"},{"euler":{"heading":26.905562570412382,"pitch":-1.3101789155432353,"roll":-1.8505379360498844},"location":"Right Ankle"},{"euler":{"heading":53.73051600780965,"pitch":-156.6346922415077,"roll":59.24013570882122},"location":"Right Hip"},{"euler":{"heading":78.32609202808463,"pitch":-131.19316290543986,"roll":-41.297907793813955},"location":"Right Knee"},{"euler":{"heading":15.205274011522917,"pitch":-131.98888099432352,"roll":56.10681752186285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.424"} +{"sensors":[{"euler":{"heading":124.25783182297326,"pitch":139.77694299568216,"roll":29.078651346948977},"location":"Left Knee"},{"euler":{"heading":36.552708149249355,"pitch":102.60060938294878,"roll":26.329713059779177},"location":"Left Ankle"},{"euler":{"heading":24.94344595584947,"pitch":-1.5898291668153068,"roll":-2.0906771929056855},"location":"Right Ankle"},{"euler":{"heading":55.17761141028185,"pitch":-155.75981004716817,"roll":58.20659052229894},"location":"Right Hip"},{"euler":{"heading":79.25223581527906,"pitch":-131.99524075114476,"roll":-42.60131824578746},"location":"Right Knee"},{"euler":{"heading":15.476223319015942,"pitch":-132.46556329873343,"roll":56.310687587868486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.525"} +{"sensors":[{"euler":{"heading":135.4342351635072,"pitch":139.26902889734126,"roll":29.588411406932913},"location":"Left Knee"},{"euler":{"heading":36.84371024035031,"pitch":102.25810169634231,"roll":26.125935209619204},"location":"Left Ankle"},{"euler":{"heading":25.560412067869322,"pitch":-2.1936508595291397,"roll":-1.8264033042047423},"location":"Right Ankle"},{"euler":{"heading":56.166296392344144,"pitch":-155.2237991811014,"roll":56.80762724638369},"location":"Right Hip"},{"euler":{"heading":77.62054767124698,"pitch":-130.87203033352057,"roll":-42.38953989637097},"location":"Right Knee"},{"euler":{"heading":16.019122927456205,"pitch":-133.37252584599318,"roll":56.76270337280047},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.626"} +{"sensors":[{"euler":{"heading":111.03014577528565,"pitch":138.4467663229536,"roll":29.66918089309616},"location":"Left Knee"},{"euler":{"heading":37.486263352813694,"pitch":102.05519056391833,"roll":26.36365855280841},"location":"Left Ankle"},{"euler":{"heading":28.259401758936455,"pitch":-2.5854560626329453,"roll":-1.0938079158134821},"location":"Right Ankle"},{"euler":{"heading":56.072143816122406,"pitch":-155.10738537948913,"roll":55.77955254786353},"location":"Right Hip"},{"euler":{"heading":73.86478299994188,"pitch":-129.1660095349309,"roll":-40.34891627507764},"location":"Right Knee"},{"euler":{"heading":16.606335916327144,"pitch":-134.65100233870555,"roll":57.33224449728906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.727"} +{"sensors":[{"euler":{"heading":91.67830666996755,"pitch":135.94291035530415,"roll":29.272587885951136},"location":"Left Knee"},{"euler":{"heading":38.63664243932686,"pitch":102.00832341246901,"roll":27.2208617048401},"location":"Left Ankle"},{"euler":{"heading":31.480033863499735,"pitch":-2.827029981520732,"roll":-0.38928345321738644},"location":"Right Ankle"},{"euler":{"heading":55.01407603179488,"pitch":-155.28147488996598,"roll":55.42002290665703},"location":"Right Hip"},{"euler":{"heading":70.24854399902813,"pitch":-127.610383216444,"roll":-37.78896990174131},"location":"Right Knee"},{"euler":{"heading":17.324957574625394,"pitch":-136.26565254179766,"roll":57.942732988723044},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.828"} +{"sensors":[{"euler":{"heading":76.78429118500617,"pitch":134.99709178357625,"roll":28.128940151392463},"location":"Left Knee"},{"euler":{"heading":40.517930182288474,"pitch":102.29290641442486,"roll":29.197475613823055},"location":"Left Ankle"},{"euler":{"heading":33.189615920802794,"pitch":-2.6413432818405838,"roll":-0.031206283447694882},"location":"Right Ankle"},{"euler":{"heading":53.92180959694519,"pitch":-155.56980091705466,"roll":55.278998030838835},"location":"Right Hip"},{"euler":{"heading":68.26260190844306,"pitch":-126.97562572114813,"roll":-35.97788937540132},"location":"Right Knee"},{"euler":{"heading":18.0263250477105,"pitch":-137.85156073039664,"roll":58.578383116770205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.929"} +{"sensors":[{"euler":{"heading":66.33106272115371,"pitch":133.81425221040362,"roll":26.148777906245957},"location":"Left Knee"},{"euler":{"heading":44.05594989109061,"pitch":104.18537807692738,"roll":32.49022710763446},"location":"Left Ankle"},{"euler":{"heading":33.91760007903692,"pitch":-2.2830701710338337,"roll":0.14417613290548234},"location":"Right Ankle"},{"euler":{"heading":53.11664264846663,"pitch":-155.65234072461544,"roll":55.49621597747935},"location":"Right Hip"},{"euler":{"heading":67.96826360324891,"pitch":-126.82336632431674,"roll":-34.975235658506456},"location":"Right Knee"},{"euler":{"heading":17.61962821012095,"pitch":-137.38411108684952,"roll":58.784958003341615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.30"} +{"sensors":[{"euler":{"heading":58.14652506231876,"pitch":133.15415638534145,"roll":24.309415979175657},"location":"Left Knee"},{"euler":{"heading":46.27511149196535,"pitch":104.32232200002957,"roll":35.20221702947454},"location":"Left Ankle"},{"euler":{"heading":34.353149406163816,"pitch":-1.7686279179924143,"roll":0.07100831327973602},"location":"Right Ankle"},{"euler":{"heading":52.35630260163671,"pitch":-155.73891955466894,"roll":56.061380156538114},"location":"Right Hip"},{"euler":{"heading":68.53582155748248,"pitch":-127.0066372023857,"roll":-34.44251367846339},"location":"Right Knee"},{"euler":{"heading":16.400774448220325,"pitch":-135.5104724940902,"roll":58.359515784748446},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.131"} +{"sensors":[{"euler":{"heading":48.28807622635015,"pitch":133.74591364878899,"roll":24.05406111861483},"location":"Left Knee"},{"euler":{"heading":45.392988923882584,"pitch":103.25717761847575,"roll":35.3970122247624},"location":"Left Ankle"},{"euler":{"heading":34.44223787604049,"pitch":-1.1485439459256002,"roll":-0.14977742141853184},"location":"Right Ankle"},{"euler":{"heading":51.96560399977728,"pitch":-155.65079396681725,"roll":56.78086890397711},"location":"Right Hip"},{"euler":{"heading":69.68424776665195,"pitch":-127.41028675740979,"roll":-34.323130600225134},"location":"Right Knee"},{"euler":{"heading":15.057950478233712,"pitch":-133.58914193658708,"roll":57.50486442176352},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.232"} +{"sensors":[{"euler":{"heading":64.73443773478053,"pitch":135.58340241822307,"roll":25.279597236944117},"location":"Left Knee"},{"euler":{"heading":41.83479619313642,"pitch":102.04365209292887,"roll":32.93950626518418},"location":"Left Ankle"},{"euler":{"heading":34.06928534604102,"pitch":-0.53988295233179,"roll":-0.39712339131723695},"location":"Right Ankle"},{"euler":{"heading":51.82405964037115,"pitch":-155.66023093298296,"roll":57.57460372341463},"location":"Right Hip"},{"euler":{"heading":71.20721803838248,"pitch":-127.94200779345987,"roll":-34.65505659211196},"location":"Right Knee"},{"euler":{"heading":13.500658992543805,"pitch":-132.59374125136003,"roll":56.53531655142794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.332"} +{"sensors":[{"euler":{"heading":83.39689942204896,"pitch":137.8168497436744,"roll":26.769054015532863},"location":"Left Knee"},{"euler":{"heading":38.23169619059161,"pitch":101.11797700938644,"roll":29.77046645615604},"location":"Left Ankle"},{"euler":{"heading":33.145600229354734,"pitch":-0.09019101785708311,"roll":-0.8349716695672483},"location":"Right Ankle"},{"euler":{"heading":52.1005535767573,"pitch":-155.73416859233458,"roll":58.346342348695835},"location":"Right Hip"},{"euler":{"heading":73.02497396385307,"pitch":-128.4647660608075,"roll":-35.61533729610415},"location":"Right Knee"},{"euler":{"heading":13.462174412079591,"pitch":-132.0081292826805,"roll":56.050387149743216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.433"} +{"sensors":[{"euler":{"heading":100.3245528620884,"pitch":139.01738811454962,"roll":28.003865489434588},"location":"Left Knee"},{"euler":{"heading":36.80348059884984,"pitch":100.95217645736868,"roll":27.723333763702307},"location":"Left Ankle"},{"euler":{"heading":31.140773264662883,"pitch":-0.18268183391659282,"roll":-1.3619664322251253},"location":"Right Ankle"},{"euler":{"heading":52.71339150513015,"pitch":-155.9199790900752,"roll":58.91981793737508},"location":"Right Hip"},{"euler":{"heading":75.07220944511018,"pitch":-128.98535944974947,"roll":-37.5068642842618},"location":"Right Knee"},{"euler":{"heading":13.609022508363925,"pitch":-131.63874691265636,"roll":55.795891155877655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.534"} +{"sensors":[{"euler":{"heading":115.04696659945473,"pitch":139.40217906702313,"roll":28.92502046666237},"location":"Left Knee"},{"euler":{"heading":35.94321523001723,"pitch":100.8080929775479,"roll":26.489246401706875},"location":"Left Ankle"},{"euler":{"heading":27.828591695437225,"pitch":-0.6409288485820026,"roll":-2.1658227784857353},"location":"Right Ankle"},{"euler":{"heading":53.92861944574281,"pitch":-155.45791177064874,"roll":58.67774232964805},"location":"Right Hip"},{"euler":{"heading":77.30734253578632,"pitch":-130.35417288430443,"roll":-39.75353760135741},"location":"Right Knee"},{"euler":{"heading":13.990855104496763,"pitch":-131.60176739292288,"roll":55.86286945473494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.635"} +{"sensors":[{"euler":{"heading":127.66646709779856,"pitch":139.25096096981122,"roll":29.6218085732213},"location":"Left Knee"},{"euler":{"heading":36.25547849000999,"pitch":100.81445750283807,"roll":26.032480649912756},"location":"Left Ankle"},{"euler":{"heading":25.764619578253022,"pitch":-1.2339443804316774,"roll":-2.5662204332507206},"location":"Right Ankle"},{"euler":{"heading":55.512232209777,"pitch":-154.68902541915514,"roll":57.6858041541909},"location":"Right Hip"},{"euler":{"heading":77.99596800339324,"pitch":-130.59991167461442,"roll":-41.12656714828234},"location":"Right Knee"},{"euler":{"heading":14.701834827564262,"pitch":-132.3114690000288,"roll":56.10778098446131},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.735"} +{"sensors":[{"euler":{"heading":138.44519838239572,"pitch":138.74551840965398,"roll":30.04422899869759},"location":"Left Knee"},{"euler":{"heading":36.65979199651891,"pitch":100.77265414217037,"roll":25.95210193152153},"location":"Left Ankle"},{"euler":{"heading":26.339803669434374,"pitch":-2.109431890612714,"roll":-2.3815619910063157},"location":"Right Ankle"},{"euler":{"heading":56.630533381120124,"pitch":-154.19541978104468,"roll":56.324490025659706},"location":"Right Hip"},{"euler":{"heading":76.16385481130627,"pitch":-129.25271336912425,"roll":-40.7934808465205},"location":"Right Knee"},{"euler":{"heading":15.575304321134766,"pitch":-133.58980821282614,"roll":56.4839733222376},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.836"} +{"sensors":[{"euler":{"heading":113.69765962662434,"pitch":137.95521880668952,"roll":30.051912333894123},"location":"Left Knee"},{"euler":{"heading":37.53781175500905,"pitch":100.84778816776672,"roll":26.378775072801165},"location":"Left Ankle"},{"euler":{"heading":29.200777439081865,"pitch":-2.5924827232892405,"roll":-1.8280241731586764},"location":"Right Ankle"},{"euler":{"heading":56.862486781051096,"pitch":-154.06386964477858,"roll":55.20563164222746},"location":"Right Hip"},{"euler":{"heading":72.48179463468267,"pitch":-127.56993320270936,"roll":-38.77388545009551},"location":"Right Knee"},{"euler":{"heading":16.486695339192536,"pitch":-135.18649827187457,"roll":56.955177160948466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.937"} +{"sensors":[{"euler":{"heading":94.0586592469799,"pitch":136.97850285636756,"roll":29.58918549019036},"location":"Left Knee"},{"euler":{"heading":39.02962336446714,"pitch":101.16547799521857,"roll":27.490188494849153},"location":"Left Ankle"},{"euler":{"heading":32.07247201262565,"pitch":-2.958239691719281,"roll":-1.0833839844880826},"location":"Right Ankle"},{"euler":{"heading":55.69093452561984,"pitch":-154.2837157394873,"roll":54.876914951894854},"location":"Right Hip"},{"euler":{"heading":68.80105333335408,"pitch":-126.11857105980094,"roll":-36.203240455261295},"location":"Right Knee"},{"euler":{"heading":17.369683383813197,"pitch":-137.059365462518,"roll":57.4826280008646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.38"} +{"sensors":[{"euler":{"heading":79.05436788460358,"pitch":135.81526747631506,"roll":28.427312048478313},"location":"Left Knee"},{"euler":{"heading":41.10129606962484,"pitch":101.8988456743687,"roll":29.56008886641302},"location":"Left Ankle"},{"euler":{"heading":33.68064893729789,"pitch":-3.0395011368886915,"roll":-0.7306242473195705},"location":"Right Ankle"},{"euler":{"heading":54.45818466890138,"pitch":-154.7026253736523,"roll":54.81133440838918},"location":"Right Hip"},{"euler":{"heading":66.78013275257082,"pitch":-125.3938550821954,"roll":-34.42409616632158},"location":"Right Knee"},{"euler":{"heading":18.544516408866595,"pitch":-139.05134168895069,"roll":58.06097535038517},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.138"} +{"sensors":[{"euler":{"heading":68.4454472690174,"pitch":134.727012925286,"roll":26.38904066178632},"location":"Left Knee"},{"euler":{"heading":44.420648397084264,"pitch":104.10228648469243,"roll":32.55080795981794},"location":"Left Ankle"},{"euler":{"heading":34.43261822100548,"pitch":-2.8454937503793216,"roll":-0.601670596569262},"location":"Right Ankle"},{"euler":{"heading":53.585552509154454,"pitch":-154.96278010908821,"roll":55.138437204480695},"location":"Right Hip"},{"euler":{"heading":66.39770102160684,"pitch":-125.18397572715793,"roll":-33.4206142166198},"location":"Right Knee"},{"euler":{"heading":18.014196192050633,"pitch":-138.88593450896673,"roll":58.14435468928676},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.239"} +{"sensors":[{"euler":{"heading":59.91345266447861,"pitch":134.09305165328342,"roll":24.556550296958754},"location":"Left Knee"},{"euler":{"heading":46.335913925066144,"pitch":104.92489955807663,"roll":34.959769751656964},"location":"Left Ankle"},{"euler":{"heading":34.69161139108206,"pitch":-2.6461600708806188,"roll":-0.6455069576132465},"location":"Right Ankle"},{"euler":{"heading":52.75213609821874,"pitch":-155.19224233799173,"roll":55.7614162918975},"location":"Right Hip"},{"euler":{"heading":66.91690940561381,"pitch":-125.23781874194657,"roll":-32.98226771132346},"location":"Right Knee"},{"euler":{"heading":16.83086181771561,"pitch":-137.2380441530055,"roll":57.83335757956792},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.339"} +{"sensors":[{"euler":{"heading":50.06182653473618,"pitch":134.666840269107,"roll":24.42631949428412},"location":"Left Knee"},{"euler":{"heading":45.252524045693434,"pitch":103.98079426202965,"roll":35.07655749573388},"location":"Left Ankle"},{"euler":{"heading":34.65397179544075,"pitch":-2.412280223481189,"roll":-0.9586575389043123},"location":"Right Ankle"},{"euler":{"heading":52.426454109402904,"pitch":-155.29880676067935,"roll":56.52727500142485},"location":"Right Hip"},{"euler":{"heading":67.94251273280986,"pitch":-125.39950078899703,"roll":-32.98989980152349},"location":"Right Knee"},{"euler":{"heading":15.546847621555584,"pitch":-135.41397201167055,"roll":57.088210051028796},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.441"} +{"sensors":[{"euler":{"heading":72.19748855542332,"pitch":136.44050719613406,"roll":25.72346010089332},"location":"Left Knee"},{"euler":{"heading":41.731674319672955,"pitch":102.93624706465796,"roll":32.64358945962693},"location":"Left Ankle"},{"euler":{"heading":34.141582618190114,"pitch":-2.1471404097070375,"roll":-1.301472771817236},"location":"Right Ankle"},{"euler":{"heading":52.3738171274227,"pitch":-155.46657794245317,"roll":57.27973453719926},"location":"Right Hip"},{"euler":{"heading":69.39464230116259,"pitch":-125.73010738025918,"roll":-33.47243049960128},"location":"Right Knee"},{"euler":{"heading":14.424154509899411,"pitch":-134.00122689538355,"roll":56.36043685439043},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.541"} +{"sensors":[{"euler":{"heading":88.9368877438123,"pitch":138.81239887852578,"roll":27.34310838025757},"location":"Left Knee"},{"euler":{"heading":37.94511965413735,"pitch":101.67596103389893,"roll":29.30055825444621},"location":"Left Ankle"},{"euler":{"heading":32.90753177559351,"pitch":-1.8715501542902675,"roll":-1.8078728840166216},"location":"Right Ankle"},{"euler":{"heading":52.65770994339867,"pitch":-155.70162421037745,"roll":58.03790541744832},"location":"Right Hip"},{"euler":{"heading":71.17222985901785,"pitch":-126.136280582543,"roll":-34.55115372598948},"location":"Right Knee"},{"euler":{"heading":14.355073607493107,"pitch":-133.16282181217323,"roll":55.96348656172035},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.642"} +{"sensors":[{"euler":{"heading":104.21265071289068,"pitch":140.10254025195022,"roll":28.755179974814858},"location":"Left Knee"},{"euler":{"heading":36.057535588474245,"pitch":101.05874668432766,"roll":27.084094468576232},"location":"Left Ankle"},{"euler":{"heading":30.5058903108484,"pitch":-2.133471856018609,"roll":-2.3909531851450847},"location":"Right Ankle"},{"euler":{"heading":53.318223219654456,"pitch":-156.08078033385738,"roll":58.55748673841999},"location":"Right Hip"},{"euler":{"heading":73.32331760011763,"pitch":-126.65244928123428,"roll":-36.58552824658168},"location":"Right Knee"},{"euler":{"heading":14.61361154415355,"pitch":-132.73710717398842,"roll":55.72914759475639},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.743"} +{"sensors":[{"euler":{"heading":117.70140449088815,"pitch":140.55057480547708,"roll":29.711881757463097},"location":"Left Knee"},{"euler":{"heading":35.23136604136669,"pitch":100.60131503119545,"roll":25.952431848014395},"location":"Left Ankle"},{"euler":{"heading":27.076883229577604,"pitch":-2.4893844287727664,"roll":-3.0434194782139103},"location":"Right Ankle"},{"euler":{"heading":54.59626891348978,"pitch":-155.66286988489585,"roll":58.439057472070985},"location":"Right Hip"},{"euler":{"heading":75.67915665336504,"pitch":-128.23723530591482,"roll":-38.83066396802284},"location":"Right Knee"},{"euler":{"heading":14.706395971600935,"pitch":-132.33999799229693,"roll":55.73113117817813},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.844"} +{"sensors":[{"euler":{"heading":129.2216059487451,"pitch":140.53387326580574,"roll":30.39327282136424},"location":"Left Knee"},{"euler":{"heading":35.26833623412821,"pitch":100.3181932960874,"roll":25.35053538718569},"location":"Left Ankle"},{"euler":{"heading":24.88158266510068,"pitch":-2.769823692451681,"roll":-3.348445200147363},"location":"Right Ankle"},{"euler":{"heading":56.076738786987214,"pitch":-154.8685416011536,"roll":57.63034748089547},"location":"Right Hip"},{"euler":{"heading":76.92440471816647,"pitch":-129.11835507468933,"roll":-40.49956756412406},"location":"Right Knee"},{"euler":{"heading":14.960726988064636,"pitch":-132.69410070532217,"roll":55.85183222584728},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.945"} +{"sensors":[{"euler":{"heading":139.0764511502134,"pitch":140.1858232318887,"roll":30.83148738478058},"location":"Left Knee"},{"euler":{"heading":35.75639607453951,"pitch":100.00849572533069,"roll":25.418260965426835},"location":"Left Ankle"},{"euler":{"heading":25.283836783346285,"pitch":-3.3505781123355947,"roll":-3.1191042261033624},"location":"Right Ankle"},{"euler":{"heading":57.04518828845491,"pitch":-154.22111742490225,"roll":56.4883397385225},"location":"Right Hip"},{"euler":{"heading":75.70263149838749,"pitch":-128.38176902740412,"roll":-40.59473362152552},"location":"Right Knee"},{"euler":{"heading":15.531636711339587,"pitch":-133.62094080297535,"roll":56.222645131199286},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.46"} +{"sensors":[{"euler":{"heading":147.9125323116097,"pitch":139.45470989666083,"roll":30.948587363750494},"location":"Left Knee"},{"euler":{"heading":36.60191701008459,"pitch":99.83527364904634,"roll":25.83626261071914},"location":"Left Ankle"},{"euler":{"heading":28.015106295441495,"pitch":-3.751236853253953,"roll":-2.5429702216769425},"location":"Right Ankle"},{"euler":{"heading":57.06526369055523,"pitch":-154.0633415717762,"roll":55.49658254689771},"location":"Right Hip"},{"euler":{"heading":72.29439533420285,"pitch":-126.87101698788697,"roll":-38.79023919093872},"location":"Right Knee"},{"euler":{"heading":16.3023076574461,"pitch":-135.04820076336316,"roll":56.67709064032891},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.146"} +{"sensors":[{"euler":{"heading":121.6338068348309,"pitch":138.47804235636565,"roll":30.626486067481647},"location":"Left Knee"},{"euler":{"heading":38.07306392646511,"pitch":99.9520134599234,"roll":26.886321643549444},"location":"Left Ankle"},{"euler":{"heading":31.065973930607107,"pitch":-4.167290731314384,"roll":-1.6827583849402468},"location":"Right Ankle"},{"euler":{"heading":55.8748039603231,"pitch":-154.40808935947697,"roll":55.08668140585099},"location":"Right Hip"},{"euler":{"heading":68.59410322236998,"pitch":-125.44452204201588,"roll":-36.24776508589924},"location":"Right Knee"},{"euler":{"heading":17.212761643942045,"pitch":-136.9461141089593,"roll":57.254775669313716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.247"} +{"sensors":[{"euler":{"heading":101.21075174410414,"pitch":137.25539770510707,"roll":29.55618933323774},"location":"Left Knee"},{"euler":{"heading":40.02080086630174,"pitch":100.38464032468019,"roll":28.90070395738263},"location":"Left Ankle"},{"euler":{"heading":32.749513870790246,"pitch":-4.395134826105921,"roll":-1.3146003580593768},"location":"Right Ankle"},{"euler":{"heading":54.67413514489293,"pitch":-154.9519100380805,"roll":54.88818599993794},"location":"Right Hip"},{"euler":{"heading":66.56906507456463,"pitch":-124.43909708248246,"roll":-34.607072777903},"location":"Right Knee"},{"euler":{"heading":18.285232292089216,"pitch":-138.68132451851488,"roll":57.890469299834},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.348"} +{"sensors":[{"euler":{"heading":86.21846107995556,"pitch":136.0420414936805,"roll":27.541330350628666},"location":"Left Knee"},{"euler":{"heading":42.721432961373,"pitch":102.07813596218243,"roll":31.847131451589842},"location":"Left Ankle"},{"euler":{"heading":33.72965892266585,"pitch":-4.660758345391333,"roll":-1.034971103368634},"location":"Right Ankle"},{"euler":{"heading":53.75642721520361,"pitch":-155.44399981706485,"roll":55.07123621904444},"location":"Right Hip"},{"euler":{"heading":66.07030103938179,"pitch":-123.84441439780778,"roll":-33.77048972862347},"location":"Right Knee"},{"euler":{"heading":17.6948791034545,"pitch":-138.2003420432235,"roll":58.067357012592765},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.449"} +{"sensors":[{"euler":{"heading":73.87144618171475,"pitch":135.38405846131357,"roll":25.819204901121665},"location":"Left Knee"},{"euler":{"heading":44.302504960513744,"pitch":102.18960943734221,"roll":34.031710342827154},"location":"Left Ankle"},{"euler":{"heading":34.258716469010636,"pitch":-4.8892238328840945,"roll":-0.8830117893073629},"location":"Right Ankle"},{"euler":{"heading":53.05257142656619,"pitch":-155.93684205520609,"roll":55.65899064159437},"location":"Right Hip"},{"euler":{"heading":66.29211620067316,"pitch":-123.43709762482338,"roll":-33.441548725506436},"location":"Right Knee"},{"euler":{"heading":16.599131872755688,"pitch":-136.6117233094477,"roll":57.71612183987525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.550"} +{"sensors":[{"euler":{"heading":94.46923775460533,"pitch":135.88854792386687,"roll":25.81262179030235},"location":"Left Knee"},{"euler":{"heading":43.25463378146513,"pitch":101.14303463558208,"roll":33.8681705931114},"location":"Left Ankle"},{"euler":{"heading":34.32924444459053,"pitch":-4.988941021486631,"roll":-0.9595386675772993},"location":"Right Ankle"},{"euler":{"heading":52.714067381191455,"pitch":-156.27578717668032,"roll":56.44053789073807},"location":"Right Hip"},{"euler":{"heading":67.15744858893541,"pitch":-123.27066728727878,"roll":-33.60168689663715},"location":"Right Knee"},{"euler":{"heading":15.434396395044061,"pitch":-134.9245188885886,"roll":57.035634120536315},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.651"} +{"sensors":[{"euler":{"heading":107.9993694010479,"pitch":137.62923431228762,"roll":27.162195035494243},"location":"Left Knee"},{"euler":{"heading":39.98284311050365,"pitch":100.04143718197246,"roll":31.389626961000413},"location":"Left Ankle"},{"euler":{"heading":33.917313371657414,"pitch":-4.942430544968559,"roll":-1.0585124706394162},"location":"Right Ankle"},{"euler":{"heading":52.53797086847509,"pitch":-156.7251775528801,"roll":57.25475605600822},"location":"Right Hip"},{"euler":{"heading":68.59130933253402,"pitch":-123.3994980809012,"roll":-34.2400524694666},"location":"Right Knee"},{"euler":{"heading":14.587727796360596,"pitch":-133.38591904136882,"roll":56.47933081863556},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.752"} +{"sensors":[{"euler":{"heading":118.19792087424668,"pitch":139.88804842050862,"roll":28.656874381712026},"location":"Left Knee"},{"euler":{"heading":36.60235818617935,"pitch":98.90194171722379,"roll":28.23722253213736},"location":"Left Ankle"},{"euler":{"heading":32.81902528366827,"pitch":-4.751711683318135,"roll":-1.5345163939212245},"location":"Right Ankle"},{"euler":{"heading":52.595923695557005,"pitch":-157.38746793240978,"roll":58.09853731905751},"location":"Right Hip"},{"euler":{"heading":70.44311801100066,"pitch":-123.70037839165435,"roll":-35.471677405551674},"location":"Right Knee"},{"euler":{"heading":14.5781868499842,"pitch":-132.57037322402104,"roll":56.13052382312648},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.852"} +{"sensors":[{"euler":{"heading":128.44503680363184,"pitch":140.9688531779631,"roll":29.86073978116489},"location":"Left Knee"},{"euler":{"heading":35.2850758856502,"pitch":98.61400412255756,"roll":26.306213010204313},"location":"Left Ankle"},{"euler":{"heading":30.8139209799022,"pitch":-4.9120721654046555,"roll":-2.084146633607875},"location":"Right Ankle"},{"euler":{"heading":53.11900001688221,"pitch":-157.88568776166778,"roll":58.707475957092065},"location":"Right Hip"},{"euler":{"heading":72.58957954066504,"pitch":-124.2758481751114,"roll":-37.537393335417306},"location":"Right Knee"},{"euler":{"heading":14.814132346075572,"pitch":-132.09399967433785,"roll":55.95163914118414},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.953"} +{"sensors":[{"euler":{"heading":137.6795978073326,"pitch":141.2512454752733,"roll":30.712275273498147},"location":"Left Knee"},{"euler":{"heading":34.62265811161319,"pitch":98.36534718436347,"roll":25.218819764557555},"location":"Left Ankle"},{"euler":{"heading":27.329098404670592,"pitch":-5.158248598741009,"roll":-2.8728134131713974},"location":"Right Ankle"},{"euler":{"heading":54.552051325309264,"pitch":-157.27230440397508,"roll":58.53316182465719},"location":"Right Hip"},{"euler":{"heading":74.90595881130666,"pitch":-125.87267712013353,"roll":-39.840615655136666},"location":"Right Knee"},{"euler":{"heading":15.042996106087582,"pitch":-131.97804242543197,"roll":56.021637847961614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.54"} +{"sensors":[{"euler":{"heading":145.6272912577797,"pitch":141.10843961657633,"roll":31.28066805937481},"location":"Left Knee"},{"euler":{"heading":34.680747232314864,"pitch":98.22357802473896,"roll":24.710489326418895},"location":"Left Ankle"},{"euler":{"heading":25.076205559507525,"pitch":-5.422624671427743,"roll":-3.2119039465998998},"location":"Right Ankle"},{"euler":{"heading":55.93946324452632,"pitch":-156.43189432440462,"roll":57.70955485666136},"location":"Right Hip"},{"euler":{"heading":75.78001471471947,"pitch":-126.40203046237163,"roll":-41.24103375473002},"location":"Right Knee"},{"euler":{"heading":15.373076885558381,"pitch":-132.4795369783551,"roll":56.221720008554186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.154"} +{"sensors":[{"euler":{"heading":152.65209573009307,"pitch":140.62844500427155,"roll":31.598797374276934},"location":"Left Knee"},{"euler":{"heading":35.44769276326148,"pitch":98.14880241397137,"roll":24.969896003961484},"location":"Left Ankle"},{"euler":{"heading":25.740459177695797,"pitch":-5.8580471423970435,"roll":-2.8825906038032807},"location":"Right Ankle"},{"euler":{"heading":56.67713899655161,"pitch":-155.74871718718086,"roll":56.68486397893792},"location":"Right Hip"},{"euler":{"heading":74.02838806928497,"pitch":-125.48982712538557,"roll":-40.80193390398888},"location":"Right Knee"},{"euler":{"heading":15.839541818524694,"pitch":-133.42084212617087,"roll":56.58707390555402},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.255"} +{"sensors":[{"euler":{"heading":159.14121609804167,"pitch":139.8373913846126,"roll":31.529946205524936},"location":"Left Knee"},{"euler":{"heading":36.49778376685575,"pitch":98.21788190267897,"roll":25.62079817517339},"location":"Left Ankle"},{"euler":{"heading":28.51978498048357,"pitch":-5.883441012146862,"roll":-2.2635565553874937},"location":"Right Ankle"},{"euler":{"heading":56.478530566765805,"pitch":-155.55264406308189,"roll":55.85277166297636},"location":"Right Hip"},{"euler":{"heading":70.69760495499288,"pitch":-124.2422802184004,"roll":-38.745862565392095},"location":"Right Knee"},{"euler":{"heading":16.370115486296534,"pitch":-134.6768866136315,"roll":57.03657969407503},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.356"} +{"sensors":[{"euler":{"heading":130.91702045870954,"pitch":138.90161029673834,"roll":30.926621505109573},"location":"Left Knee"},{"euler":{"heading":37.95807320262771,"pitch":98.40524167050226,"roll":26.86971247432128},"location":"Left Ankle"},{"euler":{"heading":31.532712054832157,"pitch":-6.060997290223467,"roll":-1.5428847666969814},"location":"Right Ankle"},{"euler":{"heading":55.346825058974034,"pitch":-155.76166737512705,"roll":55.462495828664736},"location":"Right Hip"},{"euler":{"heading":67.4412310036331,"pitch":-122.94693750014734,"roll":-36.290844090121084},"location":"Right Knee"},{"euler":{"heading":17.006689084655267,"pitch":-136.3069104999608,"roll":57.53845120150929},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.456"} +{"sensors":[{"euler":{"heading":108.97830552470613,"pitch":137.74568931542083,"roll":29.572126182979023},"location":"Left Knee"},{"euler":{"heading":40.02771681692327,"pitch":98.81259115996184,"roll":29.093760500896174},"location":"Left Ankle"},{"euler":{"heading":32.911702154622645,"pitch":-5.751984238963069,"roll":-1.2593758983168917},"location":"Right Ankle"},{"euler":{"heading":54.27155313575264,"pitch":-156.004315129533,"roll":55.25797764322179},"location":"Right Hip"},{"euler":{"heading":65.67860233075166,"pitch":-122.64877437751814,"roll":-34.5449836656138},"location":"Right Knee"},{"euler":{"heading":17.991648845727546,"pitch":-138.15048756393315,"roll":58.05798060481474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.557"} +{"sensors":[{"euler":{"heading":92.7449942377485,"pitch":136.55703784429878,"roll":27.436845056316194},"location":"Left Knee"},{"euler":{"heading":42.78060350279116,"pitch":100.61401069823188,"roll":32.05155004458179},"location":"Left Ankle"},{"euler":{"heading":33.45223228616288,"pitch":-5.615053413051058,"roll":-1.1276872490088823},"location":"Right Ankle"},{"euler":{"heading":53.355449814728615,"pitch":-156.31306064958352,"roll":55.50692169071062},"location":"Right Hip"},{"euler":{"heading":65.51360503924536,"pitch":-122.37897399866411,"roll":-33.714306838296125},"location":"Right Knee"},{"euler":{"heading":17.27613406981019,"pitch":-137.72594622014975,"roll":58.19515258726457},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.657"} +{"sensors":[{"euler":{"heading":79.48290323978739,"pitch":135.79061274803036,"roll":25.581971379319185},"location":"Left Knee"},{"euler":{"heading":44.517422348595666,"pitch":101.01339166546497,"roll":34.36531632369305},"location":"Left Ankle"},{"euler":{"heading":33.793747537383766,"pitch":-5.50303873651612,"roll":-1.2344471618756585},"location":"Right Ankle"},{"euler":{"heading":52.67668910840536,"pitch":-156.6756710828558,"roll":56.15430179635954},"location":"Right Hip"},{"euler":{"heading":66.02059866064363,"pitch":-122.14078366742001,"roll":-33.45610861209377},"location":"Right Knee"},{"euler":{"heading":16.178974897862368,"pitch":-136.3667588883497,"roll":57.80797963998484},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.758"} +{"sensors":[{"euler":{"heading":65.81773243011813,"pitch":135.98888992273444,"roll":25.288799092339957},"location":"Left Knee"},{"euler":{"heading":43.781381053660105,"pitch":100.47109479061392,"roll":34.455417096995376},"location":"Left Ankle"},{"euler":{"heading":33.72260670197739,"pitch":-5.3481716787368105,"roll":-1.4202311607104139},"location":"Right Ankle"},{"euler":{"heading":52.43007658047579,"pitch":-156.99784291933338,"roll":56.92440445629378},"location":"Right Hip"},{"euler":{"heading":66.92323970872606,"pitch":-122.03821201769246,"roll":-33.63864300564206},"location":"Right Knee"},{"euler":{"heading":15.13793478428845,"pitch":-134.73852853467326,"roll":57.16037110794089},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.859"} +{"sensors":[{"euler":{"heading":85.20542261598047,"pitch":137.46438305854124,"roll":26.53956824022091},"location":"Left Knee"},{"euler":{"heading":40.64006489084005,"pitch":99.59988417577898,"roll":32.170714607201624},"location":"Left Ankle"},{"euler":{"heading":33.13522428524325,"pitch":-5.083184877655958,"roll":-1.606178394022118},"location":"Right Ankle"},{"euler":{"heading":52.24598643506502,"pitch":-157.46772741370273,"roll":57.7996103894894},"location":"Right Hip"},{"euler":{"heading":68.3341409735914,"pitch":-122.23077225405935,"roll":-34.255657208616164},"location":"Right Knee"},{"euler":{"heading":14.422274352657938,"pitch":-133.36625369593935,"roll":56.60409282509275},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.960"} +{"sensors":[{"euler":{"heading":99.78991039197331,"pitch":139.69726147604896,"roll":28.093474911757056},"location":"Left Knee"},{"euler":{"heading":37.04536573949462,"pitch":98.71642248072934,"roll":28.84293904734421},"location":"Left Ankle"},{"euler":{"heading":31.833823752514228,"pitch":-4.712608157639472,"roll":-2.190608944903748},"location":"Right Ankle"},{"euler":{"heading":52.3330659301748,"pitch":-158.10099994902396,"roll":58.6629061180593},"location":"Right Hip"},{"euler":{"heading":70.2087676093327,"pitch":-122.67849936363777,"roll":-35.45012589936755},"location":"Right Knee"},{"euler":{"heading":14.418932520655206,"pitch":-132.57635977353422,"roll":56.25530846870086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.63"} +{"sensors":[{"euler":{"heading":113.68767924776816,"pitch":140.70703521235933,"roll":29.35093364182874},"location":"Left Knee"},{"euler":{"heading":35.65375529364779,"pitch":98.70178061676015,"roll":26.884037327281064},"location":"Left Ankle"},{"euler":{"heading":29.377036435113002,"pitch":-4.864797744308462,"roll":-2.7491721233508226},"location":"Right Ankle"},{"euler":{"heading":52.94538951929706,"pitch":-158.52539979325337,"roll":59.28355760198118},"location":"Right Hip"},{"euler":{"heading":72.4333655337026,"pitch":-123.42251900137961,"roll":-37.553563760317026},"location":"Right Knee"},{"euler":{"heading":14.636172614325956,"pitch":-132.063744908056,"roll":56.046717734215044},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.164"} +{"sensors":[{"euler":{"heading":126.1373125665329,"pitch":140.812192464027,"roll":30.274745633880574},"location":"Left Knee"},{"euler":{"heading":35.275305557627895,"pitch":98.90850794101998,"roll":25.902201894387165},"location":"Left Ankle"},{"euler":{"heading":25.94449314333385,"pitch":-5.0797993075231975,"roll":-3.4567424822229764},"location":"Right Ankle"},{"euler":{"heading":54.219649395726414,"pitch":-157.90467164708076,"roll":59.10795151663597},"location":"Right Hip"},{"euler":{"heading":74.80183218366659,"pitch":-125.08863020222327,"roll":-39.78390417815016},"location":"Right Knee"},{"euler":{"heading":14.950790640879832,"pitch":-131.8139235660965,"roll":56.155234558235456},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.265"} +{"sensors":[{"euler":{"heading":136.640214714848,"pitch":140.52090164482163,"roll":30.920430238326208},"location":"Left Knee"},{"euler":{"heading":36.26745369698136,"pitch":99.16691403616937,"roll":25.93528616204577},"location":"Left Ankle"},{"euler":{"heading":24.495405894091817,"pitch":-5.3575831705391055,"roll":-3.6570525017945292},"location":"Right Ankle"},{"euler":{"heading":55.65540229270739,"pitch":-156.92087337612597,"roll":58.32479264601257},"location":"Right Hip"},{"euler":{"heading":75.22507664359611,"pitch":-123.89113773649608,"roll":-40.94001403238897},"location":"Right Knee"},{"euler":{"heading":15.469993072517202,"pitch":-132.51533444902987,"roll":56.36638957268057},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.366"} +{"sensors":[{"euler":{"heading":145.70371350710215,"pitch":139.91249199991418,"roll":31.29066307071697},"location":"Left Knee"},{"euler":{"heading":37.020370432669814,"pitch":99.37101273356406,"roll":26.161418442893122},"location":"Left Ankle"},{"euler":{"heading":25.728635041179086,"pitch":-5.840809862568383,"roll":-3.243777284055878},"location":"Right Ankle"},{"euler":{"heading":56.4386048921044,"pitch":-156.19118214476103,"roll":57.30103039781537},"location":"Right Hip"},{"euler":{"heading":73.04487300481584,"pitch":-123.03347833781854,"roll":-40.22633797046036},"location":"Right Knee"},{"euler":{"heading":15.972404455070752,"pitch":-133.57214051770652,"roll":56.67041932769484},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.467"} +{"sensors":[{"euler":{"heading":119.61119733786481,"pitch":138.95173104899942,"roll":31.286794999287856},"location":"Left Knee"},{"euler":{"heading":38.04708405879592,"pitch":99.70432924887642,"roll":26.794102057045674},"location":"Left Ankle"},{"euler":{"heading":28.52793931329926,"pitch":-6.058093271161929,"roll":-2.4001355369185475},"location":"Right Ankle"},{"euler":{"heading":56.14647702746602,"pitch":-156.06598042093904,"roll":56.58273922041118},"location":"Right Hip"},{"euler":{"heading":69.6782728209114,"pitch":-121.81745095839635,"roll":-37.97531722995034},"location":"Right Knee"},{"euler":{"heading":16.663207804181425,"pitch":-134.96242544805978,"roll":57.082270351321526},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.567"} +{"sensors":[{"euler":{"heading":98.91849338334256,"pitch":137.83265948839684,"roll":30.754162499379568},"location":"Left Knee"},{"euler":{"heading":39.62497419878775,"pitch":100.16646236250615,"roll":28.03842145319949},"location":"Left Ankle"},{"euler":{"heading":31.21239689434713,"pitch":-6.147692075248027,"roll":-1.7437606823694691},"location":"Right Ankle"},{"euler":{"heading":55.09872121447771,"pitch":-156.26778980536037,"roll":56.2538220468683},"location":"Right Hip"},{"euler":{"heading":66.70767319614092,"pitch":-120.83005893340048,"roll":-35.688721741562006},"location":"Right Knee"},{"euler":{"heading":17.526102212435458,"pitch":-136.83282631809163,"roll":57.54412369281065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.669"} +{"sensors":[{"euler":{"heading":83.10493845433743,"pitch":136.62384437110995,"roll":29.3328380199866},"location":"Left Knee"},{"euler":{"heading":41.35690168464204,"pitch":100.7273224827197,"roll":30.10967897598706},"location":"Left Ankle"},{"euler":{"heading":32.4056708388202,"pitch":-5.996900802778627,"roll":-1.5184325072875382},"location":"Right Ankle"},{"euler":{"heading":54.24081990017259,"pitch":-156.5395817021845,"roll":56.110771091999425},"location":"Right Hip"},{"euler":{"heading":65.21470807521206,"pitch":-120.52517795244349,"roll":-34.1309349261915},"location":"Right Knee"},{"euler":{"heading":17.757014600765608,"pitch":-137.70485299929155,"roll":57.85502773400882},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.769"} +{"sensors":[{"euler":{"heading":71.54207364151316,"pitch":135.47056462130135,"roll":27.303553467883308},"location":"Left Knee"},{"euler":{"heading":43.42304054771516,"pitch":102.14446289412251,"roll":32.74490766431453},"location":"Left Ankle"},{"euler":{"heading":33.18652708854147,"pitch":-5.96746907555608,"roll":-1.379937041134579},"location":"Right Ankle"},{"euler":{"heading":53.25299647592951,"pitch":-157.0114411057152,"roll":56.49262430365275},"location":"Right Hip"},{"euler":{"heading":65.06837054606628,"pitch":-120.3206424424903,"roll":-33.33964445290418},"location":"Right Knee"},{"euler":{"heading":16.804586348235006,"pitch":-136.5617032329179,"roll":57.76180267228034},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.870"} +{"sensors":[{"euler":{"heading":61.051819661684256,"pitch":135.07502904864342,"roll":26.055889905163717},"location":"Left Knee"},{"euler":{"heading":44.35973872201255,"pitch":101.82156487618055,"roll":34.26144551628605},"location":"Left Ankle"},{"euler":{"heading":33.695094564496536,"pitch":-5.9705635772055015,"roll":-1.3913580207284402},"location":"Right Ankle"},{"euler":{"heading":52.84844865439614,"pitch":-157.42057899743318,"roll":57.153255062376516},"location":"Right Hip"},{"euler":{"heading":65.5074084537612,"pitch":-120.09394620359905,"roll":-33.105195341631706},"location":"Right Knee"},{"euler":{"heading":15.590731679724378,"pitch":-135.2835378863189,"roll":57.16614918167245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.971"} +{"sensors":[{"euler":{"heading":83.3839561192631,"pitch":135.77538352341602,"roll":26.407291839692856},"location":"Left Knee"},{"euler":{"heading":42.77830965196565,"pitch":101.15482812673365,"roll":33.433959002806276},"location":"Left Ankle"},{"euler":{"heading":33.77857183095675,"pitch":-5.949582484133852,"roll":-1.4730362720089636},"location":"Right Ankle"},{"euler":{"heading":52.78474418340969,"pitch":-157.8502507553583,"roll":57.92345729279921},"location":"Right Hip"},{"euler":{"heading":66.31279028438716,"pitch":-119.93043158010676,"roll":-33.32111033265181},"location":"Right Knee"},{"euler":{"heading":14.656281880323805,"pitch":-133.8237472297957,"roll":56.52608695328551},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.72"} +{"sensors":[{"euler":{"heading":98.994096607548,"pitch":137.61006897332567,"roll":27.85487514104241},"location":"Left Knee"},{"euler":{"heading":39.20638443845692,"pitch":100.24830396976674,"roll":30.50920448923354},"location":"Left Ankle"},{"euler":{"heading":33.186993779295726,"pitch":-5.799800448191347,"roll":-1.8561008824202145},"location":"Right Ankle"},{"euler":{"heading":52.95850472189017,"pitch":-158.29255778944656,"roll":58.73335494099226},"location":"Right Hip"},{"euler":{"heading":67.61432927020309,"pitch":-119.99650234685366,"roll":-34.02778288260065},"location":"Right Knee"},{"euler":{"heading":14.295436324465323,"pitch":-132.77035788861818,"roll":56.04203551640392},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.173"} +{"sensors":[{"euler":{"heading":112.49504479731768,"pitch":139.17510519099608,"roll":29.13503065568598},"location":"Left Knee"},{"euler":{"heading":36.246024132598954,"pitch":99.79067661751766,"roll":27.690253099477975},"location":"Left Ankle"},{"euler":{"heading":31.680017406083525,"pitch":-5.5869774176280975,"roll":-2.398921653223957},"location":"Right Ankle"},{"euler":{"heading":53.243467043807854,"pitch":-158.89493086062086,"roll":59.50782829195819},"location":"Right Hip"},{"euler":{"heading":69.4291367295261,"pitch":-120.4427331325824,"roll":-35.35688894567615},"location":"Right Knee"},{"euler":{"heading":14.30913237420267,"pitch":-132.13227343036073,"roll":55.687263741412316},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.273"} +{"sensors":[{"euler":{"heading":125.00620678404464,"pitch":139.65190885609795,"roll":30.109106940564683},"location":"Left Knee"},{"euler":{"heading":35.42137210098666,"pitch":99.90571340991582,"roll":26.2274455357777},"location":"Left Ankle"},{"euler":{"heading":28.75169412643557,"pitch":-5.572758389939573,"roll":-2.997122177779006},"location":"Right Ankle"},{"euler":{"heading":54.142668335290814,"pitch":-158.76818347897054,"roll":59.83407554557697},"location":"Right Hip"},{"euler":{"heading":71.8425670825682,"pitch":-121.63129685591014,"roll":-37.52864904080329},"location":"Right Knee"},{"euler":{"heading":14.367909145741823,"pitch":-131.52516016829048,"roll":55.538653524909996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.374"} +{"sensors":[{"euler":{"heading":136.13618337788455,"pitch":139.35802907972047,"roll":30.90134468049981},"location":"Left Knee"},{"euler":{"heading":35.76279552256416,"pitch":100.33085394807034,"roll":25.575607188866012},"location":"Left Ankle"},{"euler":{"heading":25.759455463871415,"pitch":-5.803649558704986,"roll":-3.473020540255748},"location":"Right Ankle"},{"euler":{"heading":55.57453436170586,"pitch":-157.88060294108334,"roll":59.386125101741335},"location":"Right Hip"},{"euler":{"heading":73.61654075817054,"pitch":-122.97433739084462,"roll":-39.547328394947996},"location":"Right Knee"},{"euler":{"heading":14.921386650004315,"pitch":-131.65356357695723,"roll":55.68360930195101},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.475"} +{"sensors":[{"euler":{"heading":111.62273612874264,"pitch":138.5748628309147,"roll":31.457697561411337},"location":"Left Knee"},{"euler":{"heading":37.46328116888406,"pitch":100.98903717637651,"roll":25.901352287828335},"location":"Left Ankle"},{"euler":{"heading":25.140568465944362,"pitch":-6.238498912742146,"roll":-3.564766573608003},"location":"Right Ankle"},{"euler":{"heading":56.937194542814055,"pitch":-156.91693012677837,"roll":58.35058330085528},"location":"Right Hip"},{"euler":{"heading":73.01199202685288,"pitch":-122.64384131763438,"roll":-40.09573989403666},"location":"Right Knee"},{"euler":{"heading":15.86208865056144,"pitch":-132.51886138192702,"roll":56.02286193882638},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.576"} +{"sensors":[{"euler":{"heading":92.09217531209988,"pitch":137.49164083015134,"roll":31.65791672914962},"location":"Left Knee"},{"euler":{"heading":38.724840189467656,"pitch":101.57272016119988,"roll":26.34474360025098},"location":"Left Ankle"},{"euler":{"heading":26.97627567216004,"pitch":-6.679545716892979,"roll":-3.0651451256147513},"location":"Right Ankle"},{"euler":{"heading":57.96375959514418,"pitch":-156.30057484154227,"roll":57.015211722217906},"location":"Right Hip"},{"euler":{"heading":70.25777128967437,"pitch":-121.41731566836856,"roll":-38.760829044095},"location":"Right Knee"},{"euler":{"heading":16.822584264220367,"pitch":-133.82503487156484,"roll":56.48442119329534},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.676"} +{"sensors":[{"euler":{"heading":76.69510422788123,"pitch":136.20824954890213,"roll":31.387246684810005},"location":"Left Knee"},{"euler":{"heading":40.078849948086884,"pitch":102.20789588485432,"roll":27.144292959435994},"location":"Left Ankle"},{"euler":{"heading":29.888388632596772,"pitch":-6.834880365658201,"roll":-2.1552614418849716},"location":"Right Ankle"},{"euler":{"heading":57.32987364721356,"pitch":-156.34927168229632,"roll":57.673693854513104},"location":"Right Hip"},{"euler":{"heading":66.6114163770417,"pitch":-120.23017417668376,"roll":-36.18548073123954},"location":"Right Knee"},{"euler":{"heading":17.757669713286404,"pitch":-135.44096616641787,"roll":57.06854327314913},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.777"} +{"sensors":[{"euler":{"heading":64.7954908628286,"pitch":134.91019868780648,"roll":30.428887192524712},"location":"Left Knee"},{"euler":{"heading":41.85338611209612,"pitch":102.90750202744621,"roll":28.682292392604936},"location":"Left Ankle"},{"euler":{"heading":31.93988631427942,"pitch":-6.594939130189989,"roll":-1.5340708317656127},"location":"Right Ankle"},{"euler":{"heading":56.06173976545627,"pitch":-156.70843754390725,"roll":57.104257631190265},"location":"Right Hip"},{"euler":{"heading":64.20842510772627,"pitch":-119.72076365097755,"roll":-34.12859637636742},"location":"Right Knee"},{"euler":{"heading":18.850308576059724,"pitch":-137.4382598090304,"roll":57.74573347631645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.878"} +{"sensors":[{"euler":{"heading":56.40168527824608,"pitch":133.71778889071905,"roll":28.455864354234308},"location":"Left Knee"},{"euler":{"heading":43.93657699139436,"pitch":104.18265141362697,"roll":31.114418583774185},"location":"Left Ankle"},{"euler":{"heading":32.84081507476638,"pitch":-6.140009981092416,"roll":-1.524884538929089},"location":"Right Ankle"},{"euler":{"heading":55.34443974100983,"pitch":-156.83724262938898,"roll":56.99326990256247},"location":"Right Hip"},{"euler":{"heading":63.358576316453025,"pitch":-119.65220106491769,"roll":-32.9035209009501},"location":"Right Knee"},{"euler":{"heading":18.823437400855614,"pitch":-137.75328883628958,"roll":58.049350017836304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.979"} +{"sensors":[{"euler":{"heading":50.43253320014094,"pitch":132.69826005877164,"roll":26.20679116487029},"location":"Left Knee"},{"euler":{"heading":46.15953316931846,"pitch":105.89536123053246,"roll":33.826485416383385},"location":"Left Ankle"},{"euler":{"heading":33.41797125316096,"pitch":-5.61539508696342,"roll":-1.3857753237696633},"location":"Right Ankle"},{"euler":{"heading":54.51930296018892,"pitch":-156.99541229452757,"roll":57.35657386757625},"location":"Right Hip"},{"euler":{"heading":63.69125927401091,"pitch":-119.95876956215047,"roll":-32.27655055202808},"location":"Right Knee"},{"euler":{"heading":17.885857937987762,"pitch":-136.21908661918752,"roll":57.97331190976091},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.79"} +{"sensors":[{"euler":{"heading":43.81491348548007,"pitch":132.7150724318904,"roll":25.16452726024298},"location":"Left Knee"},{"euler":{"heading":46.80846165595896,"pitch":105.49508875930694,"roll":34.78234958208948},"location":"Left Ankle"},{"euler":{"heading":33.581390104693014,"pitch":-4.938543684512487,"roll":-1.545273627765446},"location":"Right Ankle"},{"euler":{"heading":54.045822325254754,"pitch":-157.03152054539237,"roll":57.93502149144362},"location":"Right Hip"},{"euler":{"heading":64.67709663077581,"pitch":-120.47993336755928,"roll":-32.1075563193862},"location":"Right Knee"},{"euler":{"heading":16.386896061056742,"pitch":-134.6167941938392,"roll":57.179179390742775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.183"} +{"sensors":[{"euler":{"heading":60.84589528277516,"pitch":134.1749952817855,"roll":25.90987599323005},"location":"Left Knee"},{"euler":{"heading":44.010431322396826,"pitch":104.47296302949023,"roll":33.04324250461918},"location":"Left Ankle"},{"euler":{"heading":33.364424131910134,"pitch":-4.225007489310893,"roll":-1.8025605128812316},"location":"Right Ankle"},{"euler":{"heading":53.8186602047916,"pitch":-157.1533736160603,"roll":58.61896763605402},"location":"Right Hip"},{"euler":{"heading":66.10261117363356,"pitch":-121.11204481247229,"roll":-32.38269979881445},"location":"Right Knee"},{"euler":{"heading":15.022805639502408,"pitch":-132.92910740549803,"roll":56.38329966652941},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.284"} +{"sensors":[{"euler":{"heading":80.3556524961232,"pitch":136.48296414996315,"roll":27.333432246682886},"location":"Left Knee"},{"euler":{"heading":39.828799319780714,"pitch":103.20918439544138,"roll":29.816772332922813},"location":"Left Ankle"},{"euler":{"heading":32.485226331027846,"pitch":-3.519893292769593,"roll":-2.2137322318242747},"location":"Right Ankle"},{"euler":{"heading":53.704003800361356,"pitch":-157.41226811347087,"roll":59.35081430186732},"location":"Right Hip"},{"euler":{"heading":68.09621868263939,"pitch":-121.9515655485577,"roll":-33.24998226905212},"location":"Right Knee"},{"euler":{"heading":14.542037809200382,"pitch":-132.00838306878654,"roll":55.84148716767979},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.385"} +{"sensors":[{"euler":{"heading":97.81654728085441,"pitch":137.8520054372234,"roll":28.520502593006768},"location":"Left Knee"},{"euler":{"heading":37.249117289757244,"pitch":102.61259090668885,"roll":27.616602106972735},"location":"Left Ankle"},{"euler":{"heading":30.760583144438883,"pitch":-3.1672277950735013,"roll":-2.710642733174472},"location":"Right Ankle"},{"euler":{"heading":53.96089641152582,"pitch":-157.7594961368585,"roll":59.9119738811035},"location":"Right Hip"},{"euler":{"heading":70.43607393884244,"pitch":-122.87175024595727,"roll":-34.93250601309582},"location":"Right Knee"},{"euler":{"heading":14.404033863108623,"pitch":-131.4665626363037,"roll":55.54740969207525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.486"} +{"sensors":[{"euler":{"heading":113.25500790662798,"pitch":138.2822549420896,"roll":29.392512506069146},"location":"Left Knee"},{"euler":{"heading":36.212977143405396,"pitch":102.364068400544,"roll":26.303487971146478},"location":"Left Ankle"},{"euler":{"heading":27.600526747334186,"pitch":-3.264281108957849,"roll":-3.0294878941442205},"location":"Right Ankle"},{"euler":{"heading":55.14627025093951,"pitch":-157.12244490188968,"roll":59.736042822473344},"location":"Right Hip"},{"euler":{"heading":72.80378824414365,"pitch":-124.45945651397318,"roll":-37.06140119484519},"location":"Right Knee"},{"euler":{"heading":14.594247071697094,"pitch":-131.273548211348,"roll":55.53695454119257},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.586"} +{"sensors":[{"euler":{"heading":126.57971296690808,"pitch":138.07110092642523,"roll":30.110228852712837},"location":"Left Knee"},{"euler":{"heading":36.86280424531131,"pitch":102.3948348062057,"roll":26.161657856729228},"location":"Left Ankle"},{"euler":{"heading":25.48275532608631,"pitch":-3.310485080568805,"roll":-3.240713934952752},"location":"Right Ankle"},{"euler":{"heading":56.75300097053368,"pitch":-156.02875135271427,"roll":58.875300892520706},"location":"Right Hip"},{"euler":{"heading":73.67231475683182,"pitch":-125.42645304488957,"roll":-38.411090549084705},"location":"Right Knee"},{"euler":{"heading":15.249399279310609,"pitch":-131.95501856625827,"roll":55.69990785679698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.687"} +{"sensors":[{"euler":{"heading":103.77412737253842,"pitch":137.46386138639542,"roll":30.587258566808494},"location":"Left Knee"},{"euler":{"heading":37.98941272831195,"pitch":102.57725255813476,"roll":26.34842062491319},"location":"Left Ankle"},{"euler":{"heading":25.859310607706508,"pitch":-3.6614498993960867,"roll":-3.021620889104388},"location":"Right Ankle"},{"euler":{"heading":57.90212171386414,"pitch":-155.3304153906068,"roll":57.51974213203497},"location":"Right Hip"},{"euler":{"heading":72.1836994953642,"pitch":-124.67244981747574,"roll":-38.19362636398095},"location":"Right Knee"},{"euler":{"heading":16.10688380237247,"pitch":-133.05917933194024,"roll":56.11489909401703},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.787"} +{"sensors":[{"euler":{"heading":85.74303204144482,"pitch":136.52794046471627,"roll":30.709754870161596},"location":"Left Knee"},{"euler":{"heading":38.983222214103584,"pitch":102.8314974499944,"roll":26.78495644239395},"location":"Left Ankle"},{"euler":{"heading":28.468467710870108,"pitch":-4.074154139189833,"roll":-2.496377132866585},"location":"Right Ankle"},{"euler":{"heading":58.236599144750144,"pitch":-155.03144580930913,"roll":56.23962302426005},"location":"Right Hip"},{"euler":{"heading":69.03259796900973,"pitch":-123.27673417344288,"roll":-36.528357459566465},"location":"Right Knee"},{"euler":{"heading":17.01707695929853,"pitch":-134.5755486541671,"roll":56.621211089889435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.887"} +{"sensors":[{"euler":{"heading":71.69857311771996,"pitch":135.36594764365037,"roll":30.321192881860668},"location":"Left Knee"},{"euler":{"heading":40.42715494274013,"pitch":103.31126023653181,"roll":27.768552279003515},"location":"Left Ankle"},{"euler":{"heading":31.003178305461798,"pitch":-4.162225154457966,"roll":-1.836792611635722},"location":"Right Ankle"},{"euler":{"heading":57.226282452891866,"pitch":-155.1770872197343,"roll":55.64013406331619},"location":"Right Hip"},{"euler":{"heading":65.5012302641787,"pitch":-122.06729363975398,"roll":-34.07619321764589},"location":"Right Knee"},{"euler":{"heading":17.95259196514354,"pitch":-136.39357153468174,"roll":57.22799288724278},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.988"} +{"sensors":[{"euler":{"heading":61.120508185489854,"pitch":134.1123488398294,"roll":29.155085677988783},"location":"Left Knee"},{"euler":{"heading":42.81634293001755,"pitch":103.91185423888642,"roll":29.86548108592926},"location":"Left Ankle"},{"euler":{"heading":32.63864380533441,"pitch":-4.1705747297913005,"roll":-1.5372163976852908},"location":"Right Ankle"},{"euler":{"heading":56.095825561253534,"pitch":-155.54074149966476,"roll":55.45438990040238},"location":"Right Hip"},{"euler":{"heading":63.4420933150891,"pitch":-121.50203342093468,"roll":-32.2972436720246},"location":"Right Knee"},{"euler":{"heading":18.968293549435245,"pitch":-137.99703797718024,"roll":57.93163261167386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.89"} +{"sensors":[{"euler":{"heading":53.98714424173072,"pitch":133.01961567776968,"roll":27.017858343459555},"location":"Left Knee"},{"euler":{"heading":45.40281005029209,"pitch":105.72166730738886,"roll":32.58339215572715},"location":"Left Ankle"},{"euler":{"heading":33.50808186655766,"pitch":-4.112731668566451,"roll":-1.41477003829375},"location":"Right Ankle"},{"euler":{"heading":55.05724784931333,"pitch":-155.91736565557812,"roll":55.69059555487574},"location":"Right Hip"},{"euler":{"heading":62.90946391106704,"pitch":-121.26997299461895,"roll":-31.335555094061245},"location":"Right Knee"},{"euler":{"heading":18.272004837140795,"pitch":-137.64654658959626,"roll":58.01542505325651},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.190"} +{"sensors":[{"euler":{"heading":48.235533256871854,"pitch":132.4410548984941,"roll":25.185004821960707},"location":"Left Knee"},{"euler":{"heading":46.59313851170633,"pitch":106.3248385225142,"roll":34.70982492017854},"location":"Left Ankle"},{"euler":{"heading":33.863258343251346,"pitch":-4.000937847794452,"roll":-1.3812603783878061},"location":"Right Ankle"},{"euler":{"heading":54.33171301420212,"pitch":-156.29978062141024,"roll":56.26699592991803},"location":"Right Hip"},{"euler":{"heading":63.460268602770185,"pitch":-121.24429183457114,"roll":-31.024205983626963},"location":"Right Knee"},{"euler":{"heading":17.09546302309765,"pitch":-136.2116778347313,"roll":57.60967682788592},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.291"} +{"sensors":[{"euler":{"heading":40.77938834797165,"pitch":132.98768504039413,"roll":24.923648640152617},"location":"Left Knee"},{"euler":{"heading":45.56420948564135,"pitch":105.37836090942102,"roll":34.83255272397743},"location":"Left Ankle"},{"euler":{"heading":33.803303304328125,"pitch":-3.8224894063977377,"roll":-1.5471334738340297},"location":"Right Ankle"},{"euler":{"heading":53.86249734443107,"pitch":-156.68149023919614,"roll":57.038269184437326},"location":"Right Hip"},{"euler":{"heading":64.5057976445446,"pitch":-121.36968628345107,"roll":-31.140809543788812},"location":"Right Knee"},{"euler":{"heading":15.52569049433843,"pitch":-134.58630893893317,"roll":56.80851791429464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.391"} +{"sensors":[{"euler":{"heading":64.86457715838225,"pitch":134.75461286408034,"roll":26.131863697203457},"location":"Left Knee"},{"euler":{"heading":41.9809367095555,"pitch":104.14141721753204,"roll":32.476303391354264},"location":"Left Ankle"},{"euler":{"heading":33.272642266512726,"pitch":-3.5123831684829634,"roll":-1.8042434412376605},"location":"Right Ankle"},{"euler":{"heading":53.54964775843194,"pitch":-157.17552244995605,"roll":57.84319066802006},"location":"Right Hip"},{"euler":{"heading":65.96829705858873,"pitch":-121.73880082296662,"roll":-31.656547425394972},"location":"Right Knee"},{"euler":{"heading":45.988305172133536,"pitch":-134.53648165448865,"roll":55.15610119061439},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.492"} +{"sensors":[{"euler":{"heading":83.81261343624087,"pitch":136.97177380922864,"roll":27.575920540999938},"location":"Left Knee"},{"euler":{"heading":37.99463742828301,"pitch":102.94484869871572,"roll":29.125404029871937},"location":"Left Ankle"},{"euler":{"heading":32.1009194435625,"pitch":-3.1425961479037965,"roll":-2.268762840361646},"location":"Right Ankle"},{"euler":{"heading":53.51940854909668,"pitch":-157.80686442153723,"roll":58.65477836500893},"location":"Right Hip"},{"euler":{"heading":67.9327346634586,"pitch":-122.30467036801983,"roll":-32.73559246645308},"location":"Right Knee"},{"euler":{"heading":40.18787504966751,"pitch":-133.51041842874758,"roll":54.903439772106125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.593"} +{"sensors":[{"euler":{"heading":101.11083711421094,"pitch":138.02677827274417,"roll":28.698307053884694},"location":"Left Knee"},{"euler":{"heading":36.181314994539576,"pitch":102.45068912159142,"roll":27.270429618098067},"location":"Left Ankle"},{"euler":{"heading":29.892999476127816,"pitch":-3.2419925453032166,"roll":-2.7544932517453447},"location":"Right Ankle"},{"euler":{"heading":54.011890480774895,"pitch":-158.19979080863536,"roll":59.25242177031242},"location":"Right Hip"},{"euler":{"heading":70.21303378830295,"pitch":-122.91778184634902,"roll":-34.79403941961294},"location":"Right Knee"},{"euler":{"heading":35.44443451384126,"pitch":-133.0219121514168,"roll":54.656976828449075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.693"} +{"sensors":[{"euler":{"heading":116.26152481738949,"pitch":138.20259022033727,"roll":29.541512716233132},"location":"Left Knee"},{"euler":{"heading":35.58241940391952,"pitch":102.30674712447039,"roll":26.228057418196297},"location":"Left Ankle"},{"euler":{"heading":26.533431730736066,"pitch":-3.4330040977514544,"roll":-3.3248153633586894},"location":"Right Ankle"},{"euler":{"heading":55.479344212636526,"pitch":-157.63976272983447,"roll":59.06788686327869},"location":"Right Hip"},{"euler":{"heading":72.49631175261263,"pitch":-124.26329705703813,"roll":-37.07284830059864},"location":"Right Knee"},{"euler":{"heading":32.05991642882428,"pitch":-132.90686691488068,"roll":54.79662241809668},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.794"} +{"sensors":[{"euler":{"heading":128.8987583438626,"pitch":137.9811783822437,"roll":30.161821122785145},"location":"Left Knee"},{"euler":{"heading":36.536754101468766,"pitch":102.31918498155282,"roll":26.31337901130419},"location":"Left Ankle"},{"euler":{"heading":24.531730093903747,"pitch":-3.748533074135963,"roll":-3.5555108626881093},"location":"Right Ankle"},{"euler":{"heading":56.98410441290352,"pitch":-156.68116389896255,"roll":58.294484447303034},"location":"Right Hip"},{"euler":{"heading":73.2184128824971,"pitch":-124.749547400634,"roll":-38.510628364145774},"location":"Right Knee"},{"euler":{"heading":29.348129796881,"pitch":-133.55187410802682,"roll":55.00027323102792},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.894"} +{"sensors":[{"euler":{"heading":105.63134203872717,"pitch":137.34087556384978,"roll":30.56259943473641},"location":"Left Knee"},{"euler":{"heading":37.53219338301518,"pitch":102.46123645616298,"roll":26.592724853716696},"location":"Left Ankle"},{"euler":{"heading":25.05088564910626,"pitch":-4.265914378569809,"roll":-3.270800937912046},"location":"Right Ankle"},{"euler":{"heading":57.99027873024665,"pitch":-155.8613141680665,"roll":57.17253503454742},"location":"Right Hip"},{"euler":{"heading":71.5088344480611,"pitch":-123.88752084873757,"roll":-38.27775034452773},"location":"Right Knee"},{"euler":{"heading":27.47254970922568,"pitch":-134.71221988171155,"roll":55.3569656973446},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.995"} +{"sensors":[{"euler":{"heading":87.29938922561828,"pitch":136.3928724284509,"roll":30.550699360768302},"location":"Left Knee"},{"euler":{"heading":38.62074212923722,"pitch":102.69084552493055,"roll":27.243833555426228},"location":"Left Ankle"},{"euler":{"heading":27.865983314742696,"pitch":-4.6092283667004414,"roll":-2.769416409960562},"location":"Right Ankle"},{"euler":{"heading":58.10664155420243,"pitch":-155.61291311158348,"roll":56.0562407425415},"location":"Right Hip"},{"euler":{"heading":68.36705836117426,"pitch":-122.54269028111676,"roll":-36.40828400145943},"location":"Right Knee"},{"euler":{"heading":26.109240704846673,"pitch":-136.21403123358277,"roll":55.810524588346915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.96"} +{"sensors":[{"euler":{"heading":72.9075182949103,"pitch":135.29129040478196,"roll":30.034580132428953},"location":"Left Knee"},{"euler":{"heading":40.23737218272107,"pitch":103.06508166239931,"roll":28.48698943125099},"location":"Left Ankle"},{"euler":{"heading":30.75362235308191,"pitch":-4.919884638498079,"roll":-2.036296587814453},"location":"Right Ankle"},{"euler":{"heading":57.01880309022067,"pitch":-155.75675025885974,"roll":55.5871568516796},"location":"Right Hip"},{"euler":{"heading":65.05141208279996,"pitch":-121.31984130868383,"roll":-33.848635585406626},"location":"Right Knee"},{"euler":{"heading":25.302120778793103,"pitch":-138.08427935339205,"roll":56.39335264630787},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.197"} +{"sensors":[{"euler":{"heading":62.09850055975051,"pitch":134.13397297933224,"roll":28.72332302290792},"location":"Left Knee"},{"euler":{"heading":42.34584770954384,"pitch":103.57018722994394,"roll":30.640428420215958},"location":"Left Ankle"},{"euler":{"heading":32.23216720513996,"pitch":-4.731310454441459,"roll":-1.8544846490322904},"location":"Right Ankle"},{"euler":{"heading":55.93188699353076,"pitch":-155.99392044594367,"roll":55.370780296149356},"location":"Right Hip"},{"euler":{"heading":63.10350921801796,"pitch":-120.98620574036434,"roll":-32.08538713417307},"location":"Right Knee"},{"euler":{"heading":24.81961109435392,"pitch":-139.77067495911197,"roll":57.00991884508112},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.298"} +{"sensors":[{"euler":{"heading":54.80575925153842,"pitch":133.068909360806,"roll":26.543932770527956},"location":"Left Knee"},{"euler":{"heading":44.93433477137106,"pitch":105.46006380699886,"roll":33.60566929696422},"location":"Left Ankle"},{"euler":{"heading":32.8958298123701,"pitch":-4.483385375826594,"roll":-1.76725655584311},"location":"Right Ankle"},{"euler":{"heading":55.0775931274791,"pitch":-156.20258452986377,"roll":55.555486231470624},"location":"Right Hip"},{"euler":{"heading":62.96516884941715,"pitch":-120.8745570733935,"roll":-31.179523238581893},"location":"Right Knee"},{"euler":{"heading":23.015494785479973,"pitch":-139.31686487587027,"roll":57.169498621545316},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.399"} +{"sensors":[{"euler":{"heading":48.92365025489118,"pitch":132.42026113992176,"roll":24.637255229709368},"location":"Left Knee"},{"euler":{"heading":45.94201262239878,"pitch":105.42819088850229,"roll":35.724037642470385},"location":"Left Ankle"},{"euler":{"heading":33.10629880277382,"pitch":-4.110411460387957,"roll":-1.8845211797806498},"location":"Right Ankle"},{"euler":{"heading":54.574293395408205,"pitch":-156.28438392186342,"roll":56.08528579412677},"location":"Right Hip"},{"euler":{"heading":63.62478589786221,"pitch":-120.98161474397145,"roll":-30.81167295474593},"location":"Right Knee"},{"euler":{"heading":20.90213840827919,"pitch":-137.8955211454294,"roll":56.77287539050636},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.499"} +{"sensors":[{"euler":{"heading":41.59846602152574,"pitch":132.98670520935335,"roll":24.24369914880293},"location":"Left Knee"},{"euler":{"heading":44.44248286455932,"pitch":104.36486635243975,"roll":35.36384354468444},"location":"Left Ankle"},{"euler":{"heading":32.96352927800519,"pitch":-3.701572968073822,"roll":-2.192771474707567},"location":"Right Ankle"},{"euler":{"heading":54.41784035277918,"pitch":-156.31083969209547,"roll":56.743047443422626},"location":"Right Hip"},{"euler":{"heading":64.61672299542832,"pitch":-121.1795587915849,"roll":-30.871204703594007},"location":"Right Knee"},{"euler":{"heading":18.868513828086492,"pitch":-136.18132047756657,"roll":56.07509837884541},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.599"} +{"sensors":[{"euler":{"heading":65.93951798048465,"pitch":134.84290585374006,"roll":25.421469426191145},"location":"Left Knee"},{"euler":{"heading":40.604679491452835,"pitch":103.26594840456613,"roll":32.4814306043343},"location":"Left Ankle"},{"euler":{"heading":32.41856759831898,"pitch":-3.290008052077455,"roll":-2.4895354072514047},"location":"Right Ankle"},{"euler":{"heading":54.277846157256924,"pitch":-156.58448177942628,"roll":57.47498164248818},"location":"Right Hip"},{"euler":{"heading":66.07695853750248,"pitch":-121.57270450155232,"roll":-31.34124503310773},"location":"Right Knee"},{"euler":{"heading":17.411470011726234,"pitch":-134.67774547546566,"roll":55.5150410424523},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.700"} +{"sensors":[{"euler":{"heading":84.6035941919417,"pitch":137.16462877997859,"roll":26.933102469587386},"location":"Left Knee"},{"euler":{"heading":36.93910321405578,"pitch":102.39641640082709,"roll":29.147879439987157},"location":"Left Ankle"},{"euler":{"heading":31.193518272074922,"pitch":-2.8403042174992033,"roll":-3.09100692077152},"location":"Right Ankle"},{"euler":{"heading":54.28212521546565,"pitch":-157.11746845046886,"roll":58.268087425690815},"location":"Right Hip"},{"euler":{"heading":68.06332371697125,"pitch":-122.11275679285701,"roll":-32.47406442012303},"location":"Right Knee"},{"euler":{"heading":16.82486550525408,"pitch":-133.88794745995443,"roll":55.16283711468903},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.800"} +{"sensors":[{"euler":{"heading":101.66931167795728,"pitch":138.3677565429014,"roll":28.17609007759059},"location":"Left Knee"},{"euler":{"heading":35.33488065667293,"pitch":102.11494970907525,"roll":27.106462520258052},"location":"Left Ankle"},{"euler":{"heading":28.918153391544763,"pitch":-2.813878112985959,"roll":-3.6471541187459136},"location":"Right Ankle"},{"euler":{"heading":54.624511438176285,"pitch":-157.7721687270913,"roll":58.90251477642441},"location":"Right Hip"},{"euler":{"heading":70.3080693473172,"pitch":-122.62521788258339,"roll":-34.47415490155772},"location":"Right Knee"},{"euler":{"heading":16.69532752638365,"pitch":-133.452708377337,"roll":55.05816763251079},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.901"} +{"sensors":[{"euler":{"heading":116.72474848730359,"pitch":138.60625788112395,"roll":29.134369972917817},"location":"Left Knee"},{"euler":{"heading":34.87746927811992,"pitch":102.12185104983855,"roll":25.99050806339515},"location":"Left Ankle"},{"euler":{"heading":25.592541439388064,"pitch":-3.0337234021571158,"roll":-4.447663239071841},"location":"Right Ankle"},{"euler":{"heading":56.02257473622413,"pitch":-157.47873985511572,"roll":58.81666312873801},"location":"Right Hip"},{"euler":{"heading":72.70492353215616,"pitch":-124.06396160135377,"roll":-36.85473646384301},"location":"Right Knee"},{"euler":{"heading":16.91030858254809,"pitch":-133.314519606294,"roll":55.23099366970532},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.2"} +{"sensors":[{"euler":{"heading":129.80717775688052,"pitch":138.16808795959682,"roll":29.90636864600172},"location":"Left Knee"},{"euler":{"heading":35.4660811763583,"pitch":102.38374412890134,"roll":25.557403526624505},"location":"Left Ankle"},{"euler":{"heading":23.03005731423246,"pitch":-3.547757229383763,"roll":-4.82719614963816},"location":"Right Ankle"},{"euler":{"heading":57.70833043007083,"pitch":-156.58302077362345,"roll":58.0255411975452},"location":"Right Hip"},{"euler":{"heading":73.53191136249907,"pitch":-124.46810348502218,"roll":-38.62836570287672},"location":"Right Knee"},{"euler":{"heading":17.50845167757881,"pitch":-133.92074886897757,"roll":55.547902949425506},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.103"} +{"sensors":[{"euler":{"heading":106.71403739558123,"pitch":137.34948207641264,"roll":30.456298314963604},"location":"Left Knee"},{"euler":{"heading":36.637691639486775,"pitch":102.6980136483558,"roll":25.66490386547575},"location":"Left Ankle"},{"euler":{"heading":22.87601370658538,"pitch":-4.0961279356301885,"roll":-4.8376887947970975},"location":"Right Ankle"},{"euler":{"heading":59.035117580774305,"pitch":-155.7725068998674,"roll":56.738925146492825},"location":"Right Hip"},{"euler":{"heading":72.3184402697464,"pitch":-123.73391949323374,"roll":-38.8182953845982},"location":"Right Knee"},{"euler":{"heading":18.241968202475572,"pitch":-135.1232944589119,"roll":55.977353641598704},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.204"} +{"sensors":[{"euler":{"heading":88.3523676136979,"pitch":136.30553532520526,"roll":30.59125220205495},"location":"Left Knee"},{"euler":{"heading":37.858598541357516,"pitch":103.03589607290336,"roll":26.077279547015674},"location":"Left Ankle"},{"euler":{"heading":25.383654246152688,"pitch":-4.633952074595887,"roll":-4.240761950329293},"location":"Right Ankle"},{"euler":{"heading":59.770716299599776,"pitch":-155.2887960152879,"roll":55.360667272467246},"location":"Right Hip"},{"euler":{"heading":69.26777502786892,"pitch":-122.31452062822088,"roll":-37.1768391950648},"location":"Right Knee"},{"euler":{"heading":18.86635196169977,"pitch":-136.70490852616769,"roll":56.449187176913824},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.304"} +{"sensors":[{"euler":{"heading":73.8826566928334,"pitch":135.12308162231867,"roll":30.225853386057764},"location":"Left Knee"},{"euler":{"heading":39.27444731158661,"pitch":103.42487176490589,"roll":26.943888556758118},"location":"Left Ankle"},{"euler":{"heading":28.637859718589063,"pitch":-4.870912814129721,"roll":-3.3379539603446093},"location":"Right Ankle"},{"euler":{"heading":58.862915590129994,"pitch":-155.2791602397375,"roll":54.61292191152199},"location":"Right Hip"},{"euler":{"heading":65.60461336853612,"pitch":-121.17877466007226,"roll":-34.585699179551696},"location":"Right Knee"},{"euler":{"heading":19.54406531465012,"pitch":-138.68303998002708,"roll":57.00693435171028},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.405"} +{"sensors":[{"euler":{"heading":62.71263827766131,"pitch":133.93420258318963,"roll":29.175830881504094},"location":"Left Knee"},{"euler":{"heading":41.09961719070178,"pitch":103.96709601850249,"roll":28.63174821080693},"location":"Left Ankle"},{"euler":{"heading":30.832720299798073,"pitch":-4.794012608264059,"roll":-2.8182908911274467},"location":"Right Ankle"},{"euler":{"heading":57.19214137235994,"pitch":-155.73417506120046,"roll":54.41193037955446},"location":"Right Hip"},{"euler":{"heading":63.36621998209359,"pitch":-120.73370658560596,"roll":-32.57397838273787},"location":"Right Knee"},{"euler":{"heading":20.39029634073432,"pitch":-140.90700929018627,"roll":57.60675079199634},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.506"} +{"sensors":[{"euler":{"heading":55.041075700562416,"pitch":132.9416498766184,"roll":27.078247314472137},"location":"Left Knee"},{"euler":{"heading":43.69394620281701,"pitch":105.71814644841979,"roll":31.675103790900593},"location":"Left Ankle"},{"euler":{"heading":31.85103444569795,"pitch":-4.6471385293783785,"roll":-2.6334354967390707},"location":"Right Ankle"},{"euler":{"heading":56.18677703430144,"pitch":-156.0270004808098,"roll":54.56894068590953},"location":"Right Hip"},{"euler":{"heading":62.92462790805502,"pitch":-120.53906134381057,"roll":-31.514621745531453},"location":"Right Knee"},{"euler":{"heading":19.828729471309757,"pitch":-141.05259709953694,"roll":57.82846312854517},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.607"} +{"sensors":[{"euler":{"heading":49.43142841014631,"pitch":132.01378713069698,"roll":24.94832922327692},"location":"Left Knee"},{"euler":{"heading":45.81817996190799,"pitch":106.26219950874702,"roll":34.68460863670437},"location":"Left Ankle"},{"euler":{"heading":32.48863380360737,"pitch":-4.466673374800229,"roll":-2.579125302160434},"location":"Right Ankle"},{"euler":{"heading":55.20900781512267,"pitch":-156.4287129805627,"roll":55.13907754799996},"location":"Right Hip"},{"euler":{"heading":63.33594279159173,"pitch":-120.5829080975147,"roll":-31.019770320396308},"location":"Right Knee"},{"euler":{"heading":18.489013604264358,"pitch":-139.29372805567948,"roll":57.60696825512645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.708"} +{"sensors":[{"euler":{"heading":43.161678591256795,"pitch":132.00653032334193,"roll":24.126846642244836},"location":"Left Knee"},{"euler":{"heading":45.874978184325585,"pitch":105.39302411843026,"roll":35.410211207452605},"location":"Left Ankle"},{"euler":{"heading":32.755051233061366,"pitch":-4.1369063405182,"roll":-2.7023952816785646},"location":"Right Ankle"},{"euler":{"heading":54.67595029036958,"pitch":-156.6376346119159,"roll":55.8452300295154},"location":"Right Hip"},{"euler":{"heading":64.29103896141793,"pitch":-120.84850562187867,"roll":-30.958436593978423},"location":"Right Knee"},{"euler":{"heading":16.86292333838567,"pitch":-137.3157262968655,"roll":56.8298482248007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.808"} +{"sensors":[{"euler":{"heading":67.84967733179943,"pitch":133.51601726315707,"roll":25.10764673838683},"location":"Left Knee"},{"euler":{"heading":42.532659161480844,"pitch":104.19630274329138,"roll":33.33194938356588},"location":"Left Ankle"},{"euler":{"heading":32.5451313841839,"pitch":-3.7196022171757237,"roll":-2.84961105975317},"location":"Right Ankle"},{"euler":{"heading":54.346498909040506,"pitch":-156.91586220373748,"roll":56.626897194284744},"location":"Right Hip"},{"euler":{"heading":65.72110919213185,"pitch":-121.290978661653,"roll":-31.342889997623153},"location":"Right Knee"},{"euler":{"heading":15.543373021515295,"pitch":-135.4307568790477,"roll":56.12665167672296},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.908"} +{"sensors":[{"euler":{"heading":86.36382573224769,"pitch":135.8688354410685,"roll":26.678858678590068},"location":"Left Knee"},{"euler":{"heading":38.39287940018642,"pitch":103.01829447361291,"roll":29.887766148591773},"location":"Left Ankle"},{"euler":{"heading":31.677648249476064,"pitch":-3.193361425422967,"roll":-3.381158559185167},"location":"Right Ankle"},{"euler":{"heading":54.219431861111644,"pitch":-157.34598264629489,"roll":57.465005098709135},"location":"Right Hip"},{"euler":{"heading":67.60548604853186,"pitch":-121.82810356337934,"roll":-32.29124837119554},"location":"Right Knee"},{"euler":{"heading":15.200144809834608,"pitch":-134.33746171521832,"roll":55.710323027473855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.10"} +{"sensors":[{"euler":{"heading":102.69441580530707,"pitch":137.3973659034392,"roll":28.05304674459295},"location":"Left Knee"},{"euler":{"heading":35.906919015838575,"pitch":102.39824222041668,"roll":27.448975644157677},"location":"Left Ankle"},{"euler":{"heading":29.712894098566863,"pitch":-3.0441711672049223,"roll":-3.9097051051952683},"location":"Right Ankle"},{"euler":{"heading":54.54939695767226,"pitch":-157.75302383818507,"roll":58.12231782452483},"location":"Right Hip"},{"euler":{"heading":69.85590336578835,"pitch":-122.367642269349,"roll":-34.08875283295837},"location":"Right Knee"},{"euler":{"heading":15.240156536972638,"pitch":-133.7108299335613,"roll":55.50006622195138},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.110"} +{"sensors":[{"euler":{"heading":117.13604047729363,"pitch":137.94815195758488,"roll":29.08248420360363},"location":"Left Knee"},{"euler":{"heading":34.94751805051273,"pitch":102.05714877148603,"roll":26.145861654903946},"location":"Left Ankle"},{"euler":{"heading":26.445414720706818,"pitch":-3.0756412341108086,"roll":-4.625786007188582},"location":"Right Ankle"},{"euler":{"heading":55.741094699638516,"pitch":-157.24143974021146,"roll":58.01555742903855},"location":"Right Hip"},{"euler":{"heading":72.18605783019021,"pitch":-123.75954415675095,"roll":-36.35736304636518},"location":"Right Knee"},{"euler":{"heading":15.243191557297441,"pitch":-133.29243914182197,"roll":55.48222399972358},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.211"} +{"sensors":[{"euler":{"heading":129.54346711872304,"pitch":137.92930276808093,"roll":29.859418506445028},"location":"Left Knee"},{"euler":{"heading":35.006195271393196,"pitch":101.93280634659196,"roll":25.531510506410996},"location":"Left Ankle"},{"euler":{"heading":23.93052948383684,"pitch":-3.4132737097684407,"roll":-4.952703157596581},"location":"Right Ankle"},{"euler":{"heading":57.15680827216138,"pitch":-156.3742391212568,"roll":57.22929692354201},"location":"Right Hip"},{"euler":{"heading":73.67186891714678,"pitch":-124.58503402922085,"roll":-38.26748450727688},"location":"Right Knee"},{"euler":{"heading":15.501324856422718,"pitch":-133.46676135046602,"roll":55.65632886143802},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.311"} +{"sensors":[{"euler":{"heading":140.00586517815157,"pitch":137.620926532717,"roll":30.318689381796336},"location":"Left Knee"},{"euler":{"heading":35.696333339020654,"pitch":101.79651075467069,"roll":25.605802071049997},"location":"Left Ankle"},{"euler":{"heading":23.946256561596787,"pitch":-3.9209293817153283,"roll":-4.820460190704277},"location":"Right Ankle"},{"euler":{"heading":58.33977422822807,"pitch":-155.61331212400785,"roll":56.08382193078134},"location":"Right Hip"},{"euler":{"heading":72.76597458939905,"pitch":-124.02997687248431,"roll":-38.56308667605052},"location":"Right Knee"},{"euler":{"heading":15.908879271132564,"pitch":-134.22497724256615,"roll":55.974395317595445},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.412"} +{"sensors":[{"euler":{"heading":114.89824289382067,"pitch":136.9911114129066,"roll":30.478623923164502},"location":"Left Knee"},{"euler":{"heading":36.52301116978381,"pitch":101.67912557791941,"roll":25.97029203756357},"location":"Left Ankle"},{"euler":{"heading":26.349147540233506,"pitch":-4.42191150084234,"roll":-4.177609754870245},"location":"Right Ankle"},{"euler":{"heading":58.666292236564416,"pitch":-155.28743201301916,"roll":55.00569300396551},"location":"Right Hip"},{"euler":{"heading":69.84824671400992,"pitch":-122.71321234008305,"roll":-37.08859457796318},"location":"Right Knee"},{"euler":{"heading":16.59335753014648,"pitch":-135.5650517456529,"roll":56.38705718701773},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.512"} +{"sensors":[{"euler":{"heading":94.9644065146223,"pitch":136.16555917942418,"roll":30.16555601677164},"location":"Left Knee"},{"euler":{"heading":37.740917067636246,"pitch":101.6799221941664,"roll":26.84707822579468},"location":"Left Ankle"},{"euler":{"heading":29.46407641807891,"pitch":-4.988198579820123,"roll":-3.3224262659139665},"location":"Right Ankle"},{"euler":{"heading":57.9823956051272,"pitch":-155.295761910948,"roll":54.51763623229842},"location":"Right Hip"},{"euler":{"heading":66.36527771651471,"pitch":-121.12931462794604,"roll":-34.654481515348394},"location":"Right Knee"},{"euler":{"heading":17.397565192934124,"pitch":-137.30083883704498,"roll":56.90315201126895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.613"} +{"sensors":[{"euler":{"heading":79.48683676080756,"pitch":135.1926158480513,"roll":29.23423013960881},"location":"Left Knee"},{"euler":{"heading":39.49319115358279,"pitch":101.9184553372863,"roll":28.484693878789706},"location":"Left Ankle"},{"euler":{"heading":31.81838162656004,"pitch":-5.227133493925159,"roll":-2.709115345445428},"location":"Right Ankle"},{"euler":{"heading":56.67331303038462,"pitch":-155.61840073202023,"roll":54.48623204896074},"location":"Right Hip"},{"euler":{"heading":63.92365273483093,"pitch":-120.2727799015468,"roll":-32.60649126609241},"location":"Right Knee"},{"euler":{"heading":18.472221081722896,"pitch":-139.4125323105261,"roll":57.44744235473552},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.714"} +{"sensors":[{"euler":{"heading":68.54984939191566,"pitch":134.13980975408379,"roll":27.285669345911707},"location":"Left Knee"},{"euler":{"heading":41.78407555738413,"pitch":103.39470324991474,"roll":30.96534315128392},"location":"Left Ankle"},{"euler":{"heading":33.044537858073745,"pitch":-5.247144591401156,"roll":-2.481137497711826},"location":"Right Ankle"},{"euler":{"heading":55.94032018375535,"pitch":-155.84495017655658,"roll":54.65401033768095},"location":"Right Hip"},{"euler":{"heading":62.95893639537755,"pitch":-119.88416796967633,"roll":-31.324065461332378},"location":"Right Knee"},{"euler":{"heading":18.448461389948438,"pitch":-138.42204098695112,"roll":57.696199509194905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.815"} +{"sensors":[{"euler":{"heading":60.385382004092286,"pitch":133.1812064500338,"roll":25.260871710249337},"location":"Left Knee"},{"euler":{"heading":43.65984920290263,"pitch":104.72457788741904,"roll":33.35865354587301},"location":"Left Ankle"},{"euler":{"heading":33.745302551259066,"pitch":-5.1820178280652245,"roll":-2.536439560379728},"location":"Right Ankle"},{"euler":{"heading":55.167732521142064,"pitch":-156.10345689146803,"roll":55.20416434053784},"location":"Right Hip"},{"euler":{"heading":63.13811285382189,"pitch":-119.80006156055028,"roll":-30.704653304904284},"location":"Right Knee"},{"euler":{"heading":17.578827990167515,"pitch":-137.13932507773237,"roll":57.594301739465756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.916"} +{"sensors":[{"euler":{"heading":51.839443745963216,"pitch":133.1461332777436,"roll":24.481002241010284},"location":"Left Knee"},{"euler":{"heading":43.697513092256635,"pitch":104.26920747690201,"roll":34.04391887772374},"location":"Left Ankle"},{"euler":{"heading":34.188291148275766,"pitch":-5.176594011619478,"roll":-2.7648402473498725},"location":"Right Ankle"},{"euler":{"heading":54.814568045854124,"pitch":-156.355209098164,"roll":55.86845360025198},"location":"Right Hip"},{"euler":{"heading":63.83179064346862,"pitch":-119.70017453653661,"roll":-30.607896676141188},"location":"Right Knee"},{"euler":{"heading":16.27224235075131,"pitch":-135.71703388386655,"roll":56.94918337816608},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.17"} +{"sensors":[{"euler":{"heading":74.96691256949279,"pitch":134.44020003822257,"roll":25.398386775337183},"location":"Left Knee"},{"euler":{"heading":41.08863565894988,"pitch":103.23289684070944,"roll":32.32749250240208},"location":"Left Ankle"},{"euler":{"heading":34.13483819362382,"pitch":-5.124123674303675,"roll":-2.941787798677108},"location":"Right Ankle"},{"euler":{"heading":54.751319049239996,"pitch":-156.654357087321,"roll":56.546841395071304},"location":"Right Hip"},{"euler":{"heading":64.94079625304589,"pitch":-119.66924233412112,"roll":-30.966242085885618},"location":"Right Knee"},{"euler":{"heading":15.113231843161438,"pitch":-134.22195226202453,"roll":56.288142851545416},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.117"} +{"sensors":[{"euler":{"heading":91.97143378249905,"pitch":136.71699601701414,"roll":26.941942092211235},"location":"Left Knee"},{"euler":{"heading":37.37698314832152,"pitch":102.07518879086255,"roll":29.09776430233906},"location":"Left Ankle"},{"euler":{"heading":33.401415288487044,"pitch":-4.8982853450324635,"roll":-3.428895147271597},"location":"Right Ankle"},{"euler":{"heading":54.776819839056586,"pitch":-157.00233764645384,"roll":57.31527560204666},"location":"Right Hip"},{"euler":{"heading":66.58606697912884,"pitch":-119.86717424473154,"roll":-31.83152291020752},"location":"Right Knee"},{"euler":{"heading":14.633914608775504,"pitch":-133.1841914668367,"roll":55.79105398303599},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.218"} +{"sensors":[{"euler":{"heading":106.82218515219759,"pitch":138.44427472907208,"roll":28.291104369021145},"location":"Left Knee"},{"euler":{"heading":34.771893586566186,"pitch":101.39027139394446,"roll":26.496310356956627},"location":"Left Ankle"},{"euler":{"heading":30.45249290431691,"pitch":-4.729601714951266,"roll":-4.0420803684139655},"location":"Right Ankle"},{"euler":{"heading":55.053348085682956,"pitch":-157.61448196321533,"roll":58.058175026028735},"location":"Right Hip"},{"euler":{"heading":68.61097792014772,"pitch":-120.15329343500834,"roll":-33.357657416541684},"location":"Right Knee"},{"euler":{"heading":14.806254405444736,"pitch":-132.48890519887175,"roll":55.49582865256223},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.319"} +{"sensors":[{"euler":{"heading":120.4266738918465,"pitch":139.01437981533275,"roll":29.375185614185792},"location":"Left Knee"},{"euler":{"heading":33.893309009705355,"pitch":101.17478762934894,"roll":25.08762342724552},"location":"Left Ankle"},{"euler":{"heading":27.70498125291259,"pitch":-4.939627867039752,"roll":-4.644498854226725},"location":"Right Ankle"},{"euler":{"heading":55.86240925881128,"pitch":-157.56792002965753,"roll":58.367742435250925},"location":"Right Hip"},{"euler":{"heading":70.97646439226324,"pitch":-120.85214832375804,"roll":-35.79688325398537},"location":"Right Knee"},{"euler":{"heading":14.899803581575465,"pitch":-132.02028128872414,"roll":55.43082706780567},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.422"} +{"sensors":[{"euler":{"heading":132.04758431740953,"pitch":139.01301193652125,"roll":30.20156571728698},"location":"Left Knee"},{"euler":{"heading":33.61387768273221,"pitch":100.94412989530723,"roll":24.175601496827042},"location":"Left Ankle"},{"euler":{"heading":24.741884801431794,"pitch":-5.052386298695976,"roll":-5.17772171333519},"location":"Right Ankle"},{"euler":{"heading":57.363156037814306,"pitch":-156.758842612993,"roll":57.74417551008683},"location":"Right Hip"},{"euler":{"heading":72.82414251541582,"pitch":-121.98393053610098,"roll":-37.891117079126566},"location":"Right Knee"},{"euler":{"heading":15.333120002123538,"pitch":-132.5474844111888,"roll":55.5563132900489},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.523"} +{"sensors":[{"euler":{"heading":141.80653068284565,"pitch":138.68478225779447,"roll":30.770977248862593},"location":"Left Knee"},{"euler":{"heading":34.19958676206063,"pitch":100.80081184407469,"roll":23.98053818944467},"location":"Left Ankle"},{"euler":{"heading":23.94471895489099,"pitch":-5.362504360154012,"roll":-5.273776794063709},"location":"Right Ankle"},{"euler":{"heading":58.669254859001185,"pitch":-155.8662053166298,"roll":56.6686288844214},"location":"Right Hip"},{"euler":{"heading":72.15509144509228,"pitch":-121.74764683766927,"roll":-38.44844285982069},"location":"Right Knee"},{"euler":{"heading":15.979239087122863,"pitch":-133.69635713919618,"roll":55.854167181514335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.626"} +{"sensors":[{"euler":{"heading":116.11103230521577,"pitch":138.03105694424875,"roll":31.018684709879164},"location":"Left Knee"},{"euler":{"heading":34.958594174232466,"pitch":100.69490814177601,"roll":24.14291279848379},"location":"Left Ankle"},{"euler":{"heading":25.64039694237316,"pitch":-5.803645771042189,"roll":-4.748327957534871},"location":"Right Ankle"},{"euler":{"heading":59.054976769330466,"pitch":-155.48654222230914,"roll":55.5289249341483},"location":"Right Hip"},{"euler":{"heading":69.55019672243901,"pitch":-120.63609815649872,"roll":-37.228613858361385},"location":"Right Knee"},{"euler":{"heading":16.514225995228994,"pitch":-135.0926618959924,"roll":56.248539204883826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.726"} +{"sensors":[{"euler":{"heading":95.79096854544211,"pitch":137.10657997324174,"roll":30.8326027919881},"location":"Left Knee"},{"euler":{"heading":36.20432591404319,"pitch":100.73582059623058,"roll":24.884372297835895},"location":"Left Ankle"},{"euler":{"heading":29.1453457387564,"pitch":-5.9828472575793725,"roll":-4.040995403273403},"location":"Right Ankle"},{"euler":{"heading":58.44333745861858,"pitch":-155.37486154751957,"roll":54.91380676684639},"location":"Right Hip"},{"euler":{"heading":65.87747709667964,"pitch":-119.457871535818,"roll":-34.656330012535165},"location":"Right Knee"},{"euler":{"heading":17.1365772270792,"pitch":-136.6236821147962,"roll":56.831318309986855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.828"} +{"sensors":[{"euler":{"heading":79.86041415928702,"pitch":136.03817680465917,"roll":30.10536298542846},"location":"Left Knee"},{"euler":{"heading":37.9972196918368,"pitch":100.99281763870887,"roll":26.38764358742577},"location":"Left Ankle"},{"euler":{"heading":31.711983292961225,"pitch":-5.847736835528274,"roll":-3.4306743411610765},"location":"Right Ankle"},{"euler":{"heading":56.890208410309384,"pitch":-155.69592132945817,"roll":54.7258107398564},"location":"Right Hip"},{"euler":{"heading":62.97727381921451,"pitch":-118.93869193183737,"roll":-32.28711731347133},"location":"Right Knee"},{"euler":{"heading":17.967204347042934,"pitch":-138.63332145519252,"roll":57.44784021253898},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.928"} +{"sensors":[{"euler":{"heading":68.04122701301944,"pitch":135.06546009649992,"roll":28.40687297464884},"location":"Left Knee"},{"euler":{"heading":40.01815276613114,"pitch":101.74260962079974,"roll":28.889415376559953},"location":"Left Ankle"},{"euler":{"heading":33.052543940806444,"pitch":-5.642244475106518,"roll":-3.235128479857251},"location":"Right Ankle"},{"euler":{"heading":55.850375040687695,"pitch":-155.98049501706808,"roll":54.823236663312635},"location":"Right Hip"},{"euler":{"heading":61.71436307157964,"pitch":-118.81372708932543,"roll":-30.77942370323332},"location":"Right Knee"},{"euler":{"heading":18.23709469885054,"pitch":-139.71457586485386,"roll":57.88680936475086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.28"} +{"sensors":[{"euler":{"heading":59.99864909437652,"pitch":133.83449983953207,"roll":26.144624163575372},"location":"Left Knee"},{"euler":{"heading":42.529014855903114,"pitch":103.36638161120037,"roll":31.932041618109608},"location":"Left Ankle"},{"euler":{"heading":33.7637485382952,"pitch":-5.2779403307373824,"roll":-3.123582287208094},"location":"Right Ankle"},{"euler":{"heading":54.689804617939984,"pitch":-156.3866313454307,"roll":55.3929648708878},"location":"Right Hip"},{"euler":{"heading":61.798010965162625,"pitch":-119.02764143698722,"roll":-30.003734784732515},"location":"Right Knee"},{"euler":{"heading":17.156058254377346,"pitch":-138.16027498564583,"roll":57.89163130747367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.129"} +{"sensors":[{"euler":{"heading":52.48592709722232,"pitch":133.6064854168285,"roll":24.83478973942456},"location":"Left Knee"},{"euler":{"heading":43.43151631130591,"pitch":102.9391392858862,"roll":33.44861429019781},"location":"Left Ankle"},{"euler":{"heading":34.048816704091124,"pitch":-4.966126512545465,"roll":-3.212896761376026},"location":"Right Ankle"},{"euler":{"heading":54.048686820899455,"pitch":-156.61739191191214,"roll":56.08685695587029},"location":"Right Hip"},{"euler":{"heading":62.639391760014036,"pitch":-119.29255089049828,"roll":-29.741785978201865},"location":"Right Knee"},{"euler":{"heading":15.563415188223113,"pitch":-136.39710839889736,"roll":57.24795603233354},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.230"} +{"sensors":[{"euler":{"heading":76.05511134737941,"pitch":134.70218321779183,"roll":25.37963773104291},"location":"Left Knee"},{"euler":{"heading":41.34051708772497,"pitch":101.92828105298634,"roll":32.27633144242351},"location":"Left Ankle"},{"euler":{"heading":33.94334767209132,"pitch":-4.737481728088536,"roll":-3.424511970869911},"location":"Right Ankle"},{"euler":{"heading":53.85073218881052,"pitch":-156.9272716271085,"roll":56.87526591624008},"location":"Right Hip"},{"euler":{"heading":63.88122704403574,"pitch":-119.5025343147979,"roll":-30.004160871808878},"location":"Right Knee"},{"euler":{"heading":14.229634248560851,"pitch":-134.5043975149738,"roll":56.49904170406486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.331"} +{"sensors":[{"euler":{"heading":93.00513713521083,"pitch":136.8470425298497,"roll":26.87741408830626},"location":"Left Knee"},{"euler":{"heading":37.577278079231384,"pitch":100.91845570864382,"roll":29.122813625678358},"location":"Left Ankle"},{"euler":{"heading":33.286240212149885,"pitch":-4.387899377953737,"roll":-3.8954267583667255},"location":"Right Ankle"},{"euler":{"heading":53.86700638115156,"pitch":-157.37414267202783,"roll":57.65407591962837},"location":"Right Hip"},{"euler":{"heading":65.57580548611627,"pitch":-119.8530663880741,"roll":-30.770709752606034},"location":"Right Knee"},{"euler":{"heading":13.654777636433167,"pitch":-132.99981637301482,"roll":55.9581098681723},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.432"} +{"sensors":[{"euler":{"heading":107.25835410138353,"pitch":138.8948878044251,"roll":28.25055050932252},"location":"Left Knee"},{"euler":{"heading":34.5613404767731,"pitch":100.48625983887355,"roll":26.138477177477796},"location":"Left Ankle"},{"euler":{"heading":31.898022352147283,"pitch":-4.029953868235504,"roll":-4.488014426899089},"location":"Right Ankle"},{"euler":{"heading":54.12408928460458,"pitch":-158.16495013918072,"roll":58.459871911808726},"location":"Right Hip"},{"euler":{"heading":67.55785522436656,"pitch":-120.27132435482683,"roll":-32.14805110760662},"location":"Right Knee"},{"euler":{"heading":13.790507048410706,"pitch":-132.14370954276492,"roll":55.587540283427096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.532"} +{"sensors":[{"euler":{"heading":120.45681663135495,"pitch":139.72533904584037,"roll":29.386051898212934},"location":"Left Knee"},{"euler":{"heading":33.465260125774904,"pitch":100.35082479529312,"roll":24.54385271898237},"location":"Left Ankle"},{"euler":{"heading":29.46527402405259,"pitch":-4.116284123206049,"roll":-4.988560393960754},"location":"Right Ankle"},{"euler":{"heading":54.726978788054524,"pitch":-158.78540718575292,"roll":59.07011047064154},"location":"Right Hip"},{"euler":{"heading":69.8347392219,"pitch":-120.81031887095644,"roll":-34.32184096291519},"location":"Right Knee"},{"euler":{"heading":13.961095218796125,"pitch":-131.45227411466863,"roll":55.44247094546117},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.633"} +{"sensors":[{"euler":{"heading":132.0544292366982,"pitch":139.79308330103666,"roll":30.199507731647344},"location":"Left Knee"},{"euler":{"heading":33.2633917244979,"pitch":100.32339792163812,"roll":23.707338165251482},"location":"Left Ankle"},{"euler":{"heading":26.02863259994593,"pitch":-4.140894450799122,"roll":-5.625796501283753},"location":"Right Ankle"},{"euler":{"heading":55.92811566159229,"pitch":-158.26479731674542,"roll":58.94453506512668},"location":"Right Hip"},{"euler":{"heading":72.24601765141297,"pitch":-122.41575940897252,"roll":-36.72880199197574},"location":"Right Knee"},{"euler":{"heading":14.344530238781273,"pitch":-131.1536033469995,"roll":55.62630262098377},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.734"} +{"sensors":[{"euler":{"heading":141.74079160379722,"pitch":139.53333677758613,"roll":30.73344318320666},"location":"Left Knee"},{"euler":{"heading":33.817484320624764,"pitch":100.33425187293919,"roll":23.497365294515003},"location":"Left Ankle"},{"euler":{"heading":24.100565194571544,"pitch":-4.353413566845194,"roll":-5.839751808599419},"location":"Right Ankle"},{"euler":{"heading":57.32777675423425,"pitch":-157.4013201177688,"roll":58.21853832506509},"location":"Right Hip"},{"euler":{"heading":73.00752703842424,"pitch":-123.06586601193533,"roll":-38.27065312526493},"location":"Right Knee"},{"euler":{"heading":14.72983010546685,"pitch":-131.58488991234756,"roll":55.94128001329825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.835"} +{"sensors":[{"euler":{"heading":150.1951615920369,"pitch":138.929689549268,"roll":31.020392915029753},"location":"Left Knee"},{"euler":{"heading":34.56844011378303,"pitch":100.36785457346278,"roll":23.622467380757595},"location":"Left Ankle"},{"euler":{"heading":24.751356069476852,"pitch":-4.8013650463608215,"roll":-5.4804410250359},"location":"Right Ankle"},{"euler":{"heading":58.30734911337746,"pitch":-156.65565296570955,"roll":57.097867973638195},"location":"Right Hip"},{"euler":{"heading":71.11618496740579,"pitch":-122.26292929116961,"roll":-37.917915348562005},"location":"Right Knee"},{"euler":{"heading":15.277180212420753,"pitch":-132.71831382972928,"roll":56.28574828197852},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.936"} +{"sensors":[{"euler":{"heading":123.69901634592316,"pitch":137.94351145231974,"roll":30.95305465672266},"location":"Left Knee"},{"euler":{"heading":35.66489181378844,"pitch":100.55283881792631,"roll":24.12805944394434},"location":"Left Ankle"},{"euler":{"heading":27.29373690309683,"pitch":-5.05807248575802,"roll":-4.655903811367095},"location":"Right Ankle"},{"euler":{"heading":58.27113351532727,"pitch":-156.3970888769371,"roll":56.137309070557215},"location":"Right Hip"},{"euler":{"heading":67.73045609161034,"pitch":-121.01913010009011,"roll":-35.8329753612301},"location":"Right Knee"},{"euler":{"heading":16.02856057043813,"pitch":-134.35034226298302,"roll":56.72824580119077},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.37"} +{"sensors":[{"euler":{"heading":102.71149319022727,"pitch":136.71226093536762,"roll":30.422442642743555},"location":"Left Knee"},{"euler":{"heading":37.21664910571149,"pitch":100.9164216021374,"roll":25.209814402015088},"location":"Left Ankle"},{"euler":{"heading":30.076981849971016,"pitch":-5.242798189026547,"roll":-3.9157459434352413},"location":"Right Ankle"},{"euler":{"heading":57.11781708243319,"pitch":-156.585237518187,"roll":55.68429479181151},"location":"Right Hip"},{"euler":{"heading":64.4528738412895,"pitch":-119.94120967099776,"roll":-33.37561559567547},"location":"Right Knee"},{"euler":{"heading":17.042125596960112,"pitch":-136.44543611168785,"roll":57.31295531473666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.138"} +{"sensors":[{"euler":{"heading":86.5970875453543,"pitch":135.3603207228379,"roll":29.115907295555758},"location":"Left Knee"},{"euler":{"heading":39.254170963415056,"pitch":101.60213705976676,"roll":27.2766587991665},"location":"Left Ankle"},{"euler":{"heading":31.345197473968526,"pitch":-5.077014647281575,"roll":-3.6621670685674452},"location":"Right Ankle"},{"euler":{"heading":56.24482653942375,"pitch":-156.75548853461876,"roll":55.45867799730565},"location":"Right Hip"},{"euler":{"heading":62.76205945075214,"pitch":-119.62575548479964,"roll":-31.782214594145433},"location":"Right Knee"},{"euler":{"heading":18.133625068107154,"pitch":-138.27583593765348,"roll":57.95500522627226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.238"} +{"sensors":[{"euler":{"heading":74.91868326296904,"pitch":134.1964367937694,"roll":26.922953725365662},"location":"Left Knee"},{"euler":{"heading":42.616904305790925,"pitch":103.65544302520463,"roll":30.490534307171195},"location":"Left Ankle"},{"euler":{"heading":32.00905666026236,"pitch":-4.671353024208315,"roll":-3.551616016850953},"location":"Right Ankle"},{"euler":{"heading":55.37544483892477,"pitch":-156.92738035926658,"roll":55.73609290025865},"location":"Right Hip"},{"euler":{"heading":62.57262930839839,"pitch":-119.68513669559984,"roll":-30.905189962768592},"location":"Right Knee"},{"euler":{"heading":17.41616527598434,"pitch":-137.8631520700937,"roll":58.000902503975254},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.339"} +{"sensors":[{"euler":{"heading":65.13644222091027,"pitch":133.67239961111065,"roll":25.182362304983766},"location":"Left Knee"},{"euler":{"heading":44.28826070306956,"pitch":103.55147690521164,"roll":32.8219953187893},"location":"Left Ankle"},{"euler":{"heading":32.273194377998074,"pitch":-4.161592548418382,"roll":-3.671557507364386},"location":"Right Ankle"},{"euler":{"heading":54.734939744413,"pitch":-157.04724914176737,"roll":56.37356372772753},"location":"Right Hip"},{"euler":{"heading":63.39849987275893,"pitch":-120.0064081164037,"roll":-30.616943378998364},"location":"Right Knee"},{"euler":{"heading":15.948804454250261,"pitch":-136.4017334281743,"roll":57.424121813896726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.440"} +{"sensors":[{"euler":{"heading":87.19217460020798,"pitch":134.4526713330754,"roll":25.33148371840334},"location":"Left Knee"},{"euler":{"heading":43.052720755096146,"pitch":102.63100279463465,"roll":32.63084223338535},"location":"Left Ankle"},{"euler":{"heading":32.29922020858903,"pitch":-3.623033999009974,"roll":-3.9941206473895967},"location":"Right Ankle"},{"euler":{"heading":54.40669002477263,"pitch":-157.17355133855568,"roll":57.146590344041975},"location":"Right Hip"},{"euler":{"heading":64.65141662750308,"pitch":-120.43980600133037,"roll":-30.760397147401264},"location":"Right Knee"},{"euler":{"heading":14.47979217443383,"pitch":-134.5918168954276,"roll":56.622777883662934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.541"} +{"sensors":[{"euler":{"heading":102.26683973494085,"pitch":136.44885152262296,"roll":26.77438764612888},"location":"Left Knee"},{"euler":{"heading":39.38945479636066,"pitch":101.58405763756588,"roll":29.966788676160313},"location":"Left Ankle"},{"euler":{"heading":31.84490552036386,"pitch":-3.0584167904890056,"roll":-4.39301553110777},"location":"Right Ankle"},{"euler":{"heading":54.18548197414837,"pitch":-157.53159666128408,"roll":57.98877024675559},"location":"Right Hip"},{"euler":{"heading":66.43830287242321,"pitch":-121.05195332833175,"roll":-31.413391958126947},"location":"Right Knee"},{"euler":{"heading":13.598013137249753,"pitch":-133.07297468410079,"roll":55.99278665423827},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.642"} +{"sensors":[{"euler":{"heading":114.56834191480485,"pitch":138.54646530093754,"roll":28.18705098753477},"location":"Left Knee"},{"euler":{"heading":35.80139117919633,"pitch":100.92802313041355,"roll":26.80704424516341},"location":"Left Ankle"},{"euler":{"heading":29.118571331466413,"pitch":-2.5177822117565203,"roll":-4.991777875068282},"location":"Right Ankle"},{"euler":{"heading":54.14109913944954,"pitch":-158.17662956228253,"roll":58.91730646538865},"location":"Right Hip"},{"euler":{"heading":68.71591052079235,"pitch":-121.78422941731489,"roll":-32.711762295604395},"location":"Right Knee"},{"euler":{"heading":13.434872342121638,"pitch":-132.1742368294775,"roll":55.5832465971846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.742"} +{"sensors":[{"euler":{"heading":126.44222666196345,"pitch":139.35060712957772,"roll":29.3404833787271},"location":"Left Knee"},{"euler":{"heading":34.26063590327793,"pitch":100.82785438729772,"roll":25.09531462791147},"location":"Left Ankle"},{"euler":{"heading":27.040829876134893,"pitch":-2.5577078336136534,"roll":-5.5098017672863495},"location":"Right Ankle"},{"euler":{"heading":54.592273748024965,"pitch":-158.80192091226678,"roll":59.65644551907981},"location":"Right Hip"},{"euler":{"heading":71.12778147481855,"pitch":-122.4409024928479,"roll":-34.88543693674918},"location":"Right Knee"},{"euler":{"heading":13.65801129480739,"pitch":-131.60474895570354,"roll":55.379132619554646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.843"} +{"sensors":[{"euler":{"heading":137.4368463442071,"pitch":139.1626776555283,"roll":30.312851912227323},"location":"Left Knee"},{"euler":{"heading":34.24163646092111,"pitch":101.19500287504754,"roll":24.259850071732426},"location":"Left Ankle"},{"euler":{"heading":23.829469307509626,"pitch":-2.8851556073477163,"roll":-6.192579751615415},"location":"Right Ankle"},{"euler":{"heading":55.90699893642011,"pitch":-158.26190425344333,"roll":59.522657498818766},"location":"Right Hip"},{"euler":{"heading":73.50689969378607,"pitch":-123.87934327581534,"roll":-37.434981094343044},"location":"Right Knee"},{"euler":{"heading":14.203380990359022,"pitch":-131.18455849345912,"roll":55.557098733140414},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.944"} +{"sensors":[{"euler":{"heading":112.72338938946837,"pitch":138.49321911767854,"roll":31.050036581891064},"location":"Left Knee"},{"euler":{"heading":35.87887525756112,"pitch":101.78287461934893,"roll":24.50861600460528},"location":"Left Ankle"},{"euler":{"heading":22.145314696567134,"pitch":-3.3776500887235454,"roll":-6.572596228529374},"location":"Right Ankle"},{"euler":{"heading":57.86340001171251,"pitch":-157.28574141204524,"roll":58.50979991005369},"location":"Right Hip"},{"euler":{"heading":73.97453749251144,"pitch":-124.00378158213121,"roll":-39.05234437857968},"location":"Right Knee"},{"euler":{"heading":14.92935855919201,"pitch":-131.791259681614,"roll":55.79542483316025},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.45"} +{"sensors":[{"euler":{"heading":92.93988123017724,"pitch":137.51288839073882,"roll":31.509010850558862},"location":"Left Knee"},{"euler":{"heading":37.136210287752306,"pitch":102.34455164796023,"roll":24.852624249989816},"location":"Left Ankle"},{"euler":{"heading":23.108781945758754,"pitch":-4.0789442987877145,"roll":-6.280315752037508},"location":"Right Ankle"},{"euler":{"heading":59.0669634627334,"pitch":-156.6818654430618,"roll":57.0284860961774},"location":"Right Hip"},{"euler":{"heading":72.0268782225763,"pitch":-122.89164933387241,"roll":-38.80360751109705},"location":"Right Knee"},{"euler":{"heading":15.73187396575424,"pitch":-132.9288339212899,"roll":56.112150411107464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.145"} +{"sensors":[{"euler":{"heading":77.2762440620784,"pitch":136.28098370555617,"roll":31.591388000828484},"location":"Left Knee"},{"euler":{"heading":38.43919898666949,"pitch":102.9598147302702,"roll":25.467119426661604},"location":"Left Ankle"},{"euler":{"heading":26.329298694090568,"pitch":-4.535168723141316,"roll":-5.480760746970682},"location":"Right Ankle"},{"euler":{"heading":59.279549909709594,"pitch":-156.40891727917995,"roll":55.783207065235395},"location":"Right Hip"},{"euler":{"heading":68.33938865807075,"pitch":-121.43941050720622,"roll":-36.69981450976843},"location":"Right Knee"},{"euler":{"heading":16.531660086324607,"pitch":-134.54678195488358,"roll":56.464145877021856},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.246"} +{"sensors":[{"euler":{"heading":65.17620260181518,"pitch":134.89277970675812,"roll":31.10112480689465},"location":"Left Knee"},{"euler":{"heading":40.18384977801568,"pitch":103.74247264956756,"roll":26.653363405667847},"location":"Left Ankle"},{"euler":{"heading":29.210011899623865,"pitch":-4.6566747611855375,"roll":-4.602685351168244},"location":"Right Ankle"},{"euler":{"heading":57.967288554281325,"pitch":-156.71484689705508,"roll":55.26875179014373},"location":"Right Hip"},{"euler":{"heading":64.66609239512617,"pitch":-120.36907339816663,"roll":-34.04703589300403},"location":"Right Knee"},{"euler":{"heading":17.32326616288512,"pitch":-136.44483026452565,"roll":56.92534518466522},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.347"} +{"sensors":[{"euler":{"heading":56.13671679448934,"pitch":133.54744889067845,"roll":29.70624864130472},"location":"Left Knee"},{"euler":{"heading":41.62425855402578,"pitch":104.3555553733881,"roll":28.392640472538297},"location":"Left Ankle"},{"euler":{"heading":31.02176842187855,"pitch":-4.55259147240348,"roll":-4.218363034883911},"location":"Right Ankle"},{"euler":{"heading":56.6014903174337,"pitch":-157.2057060583389,"roll":55.17184310559696},"location":"Right Hip"},{"euler":{"heading":62.942587877173885,"pitch":-120.09615301503264,"roll":-32.36003954996345},"location":"Right Knee"},{"euler":{"heading":17.96548704539374,"pitch":-137.8293896499092,"roll":57.419961943257896},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.448"} +{"sensors":[{"euler":{"heading":50.04316337421996,"pitch":132.52628771507383,"roll":27.463084204286396},"location":"Left Knee"},{"euler":{"heading":44.30188120628572,"pitch":106.14099732896179,"roll":31.446850542331223},"location":"Left Ankle"},{"euler":{"heading":32.03555337951312,"pitch":-4.274104562023731,"roll":-3.983560193790766},"location":"Right Ankle"},{"euler":{"heading":55.3642700616797,"pitch":-157.6855441259458,"roll":55.51221500098243},"location":"Right Hip"},{"euler":{"heading":62.59559432651629,"pitch":-120.15835015845961,"roll":-31.36265098089456},"location":"Right Knee"},{"euler":{"heading":16.975283358001796,"pitch":-136.9419321874105,"roll":57.44541148003017},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.549"} +{"sensors":[{"euler":{"heading":45.047823187337805,"pitch":131.92331102827717,"roll":25.593823915139534},"location":"Left Knee"},{"euler":{"heading":45.74520694634003,"pitch":105.94922574034752,"roll":33.77652166104791},"location":"Left Ankle"},{"euler":{"heading":32.47919439907704,"pitch":-3.8675306990589005,"roll":-3.9494521833339733},"location":"Right Ankle"},{"euler":{"heading":54.51770408220575,"pitch":-158.06028455857933,"roll":56.135310350411636},"location":"Right Hip"},{"euler":{"heading":63.38757706637292,"pitch":-120.51784149225854,"roll":-30.99521660772995},"location":"Right Knee"},{"euler":{"heading":15.391615670194428,"pitch":-135.3660040557593,"roll":56.85012813878146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.649"} +{"sensors":[{"euler":{"heading":37.98499029140767,"pitch":132.72727728224817,"roll":25.275742926122092},"location":"Left Knee"},{"euler":{"heading":44.10892467106828,"pitch":104.77093942080215,"roll":33.57780363854186},"location":"Left Ankle"},{"euler":{"heading":32.55112710738247,"pitch":-3.3034369915163695,"roll":-4.23368999874444},"location":"Right Ankle"},{"euler":{"heading":54.07423970382638,"pitch":-158.36965129868224,"roll":56.871547724420125},"location":"Right Hip"},{"euler":{"heading":64.59491058458839,"pitch":-121.04527670017163,"roll":-31.072960626649063},"location":"Right Knee"},{"euler":{"heading":14.017621299524759,"pitch":-133.62488466063178,"roll":56.06771346636602},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.750"} +{"sensors":[{"euler":{"heading":62.90351900368556,"pitch":134.70328090993078,"roll":26.52775404079578},"location":"Left Knee"},{"euler":{"heading":40.135367255688145,"pitch":103.68690157259496,"roll":30.811779836293773},"location":"Left Ankle"},{"euler":{"heading":32.09278376708316,"pitch":-2.691932424293217,"roll":-4.253077409211091},"location":"Right Ankle"},{"euler":{"heading":53.84787363092445,"pitch":-158.85767531858684,"roll":57.68043795863157},"location":"Right Hip"},{"euler":{"heading":66.26123901854288,"pitch":-121.70089890378487,"roll":-31.589207323580776},"location":"Right Knee"},{"euler":{"heading":13.326603667322175,"pitch":-132.3347638780281,"roll":55.50241331157301},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.851"} +{"sensors":[{"euler":{"heading":82.90844746248204,"pitch":136.85398111173285,"roll":27.809300386459462},"location":"Left Knee"},{"euler":{"heading":36.26945610252972,"pitch":102.8129982773328,"roll":27.488421380395778},"location":"Left Ankle"},{"euler":{"heading":30.956493365310834,"pitch":-2.1861596422992484,"roll":-4.532214129194239},"location":"Right Ankle"},{"euler":{"heading":53.81115802846979,"pitch":-159.59654147284138,"roll":58.566960570634656},"location":"Right Hip"},{"euler":{"heading":68.4104075249665,"pitch":-122.38333471078519,"roll":-32.78167362378864},"location":"Right Knee"},{"euler":{"heading":13.272095641073012,"pitch":-131.72027934316986,"roll":55.12762936523119},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.952"} +{"sensors":[{"euler":{"heading":100.81640507504568,"pitch":137.8250656744341,"roll":28.85597889114539},"location":"Left Knee"},{"euler":{"heading":34.40607464589999,"pitch":102.50974018995304,"roll":25.557297818115693},"location":"Left Ankle"},{"euler":{"heading":28.581390274034842,"pitch":-2.2814120656934516,"roll":-4.8620869895719885},"location":"Right Ankle"},{"euler":{"heading":54.44696978712364,"pitch":-159.89056866155758,"roll":59.08972333004985},"location":"Right Hip"},{"euler":{"heading":70.70522203472628,"pitch":-123.07219755637274,"roll":-34.93680734004835},"location":"Right Knee"},{"euler":{"heading":13.298808220245826,"pitch":-131.16424760174334,"roll":54.97280124886342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.53"} +{"sensors":[{"euler":{"heading":116.44256102683669,"pitch":137.96655774859278,"roll":29.672295417030583},"location":"Left Knee"},{"euler":{"heading":33.896987549775595,"pitch":102.57421203899985,"roll":24.51736384118726},"location":"Left Ankle"},{"euler":{"heading":25.078987861977243,"pitch":-2.4627285317170933,"roll":-5.350830563790466},"location":"Right Ankle"},{"euler":{"heading":56.16257859234201,"pitch":-159.07458054945212,"roll":58.72446994788285},"location":"Right Hip"},{"euler":{"heading":72.82797125926183,"pitch":-124.3732974465781,"roll":-37.19014481849589},"location":"Right Knee"},{"euler":{"heading":13.701180138761295,"pitch":-131.08917048521053,"roll":55.118075910901794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.153"} +{"sensors":[{"euler":{"heading":95.64625236666011,"pitch":137.5119502531558,"roll":30.32772559036014},"location":"Left Knee"},{"euler":{"heading":35.16266964937366,"pitch":102.99521477345684,"roll":24.62867295199153},"location":"Left Ankle"},{"euler":{"heading":23.138692584919195,"pitch":-3.0667500471807365,"roll":-5.507707677729337},"location":"Right Ankle"},{"euler":{"heading":58.08455896983725,"pitch":-157.9794947854443,"roll":57.63296188941465},"location":"Right Hip"},{"euler":{"heading":72.98462417600408,"pitch":-124.27238917224373,"roll":-38.533532753204454},"location":"Right Knee"},{"euler":{"heading":14.393305590803141,"pitch":-131.77034383406328,"roll":55.35654686926825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.254"} +{"sensors":[{"euler":{"heading":79.12955402510094,"pitch":136.65468918850425,"roll":30.760284713764694},"location":"Left Knee"},{"euler":{"heading":36.335750844261,"pitch":103.41184150138808,"roll":24.872081175274467},"location":"Left Ankle"},{"euler":{"heading":23.749744753740586,"pitch":-3.922470059526825,"roll":-5.168091950959699},"location":"Right Ankle"},{"euler":{"heading":59.49775109606059,"pitch":-157.33340681144125,"roll":56.05075268751245},"location":"Right Hip"},{"euler":{"heading":71.10932274393932,"pitch":-122.89094803537971,"roll":-38.227132263885004},"location":"Right Knee"},{"euler":{"heading":15.334571534594604,"pitch":-133.10015753605046,"roll":55.72096598690943},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.354"} +{"sensors":[{"euler":{"heading":66.1586130874696,"pitch":135.49253002022448,"roll":30.830650072649696},"location":"Left Knee"},{"euler":{"heading":37.635150978790804,"pitch":103.87207095105914,"roll":25.45499897533032},"location":"Left Ankle"},{"euler":{"heading":26.586579497540487,"pitch":-4.548157081886144,"roll":-4.3851575338371385},"location":"Right Ankle"},{"euler":{"heading":60.04844988658576,"pitch":-156.96875428761405,"roll":54.67850408871819},"location":"Right Hip"},{"euler":{"heading":67.58214992757878,"pitch":-121.17123707663025,"roll":-36.207902963582924},"location":"Right Knee"},{"euler":{"heading":16.46199751780921,"pitch":-134.8563864223633,"roll":56.264750838857836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.455"} +{"sensors":[{"euler":{"heading":56.2276765114129,"pitch":134.17338230909928,"roll":30.35924424616586},"location":"Left Knee"},{"euler":{"heading":39.32335568892996,"pitch":104.46688033893925,"roll":26.559161604597783},"location":"Left Ankle"},{"euler":{"heading":29.599032368936808,"pitch":-4.8646227548865015,"roll":-3.379434310888875},"location":"Right Ankle"},{"euler":{"heading":59.018979856066174,"pitch":-157.02523430217627,"roll":54.15022744560489},"location":"Right Hip"},{"euler":{"heading":63.72501953872882,"pitch":-119.9004882545646,"roll":-33.399776935075224},"location":"Right Knee"},{"euler":{"heading":17.658616831073953,"pitch":-137.0817020885909,"roll":56.905440889776855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.555"} +{"sensors":[{"euler":{"heading":48.80967341388108,"pitch":132.9083747295857,"roll":29.130064333000682},"location":"Left Knee"},{"euler":{"heading":41.3655850062903,"pitch":105.11212406742781,"roll":28.563047838245797},"location":"Left Ankle"},{"euler":{"heading":31.227337112046182,"pitch":-4.812102120908679,"roll":-2.7725911198368562},"location":"Right Ankle"},{"euler":{"heading":57.605301388622046,"pitch":-157.4449507324037,"roll":54.01703091909797},"location":"Right Hip"},{"euler":{"heading":61.4942733820493,"pitch":-119.35109538499603,"roll":-31.370070131520485},"location":"Right Knee"},{"euler":{"heading":18.995125874069984,"pitch":-139.49961569408754,"roll":57.64570865542225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.657"} +{"sensors":[{"euler":{"heading":44.04973357146662,"pitch":132.07880220140186,"roll":26.888201614742027},"location":"Left Knee"},{"euler":{"heading":44.22682166350818,"pitch":106.80181625452101,"roll":31.65455568928179},"location":"Left Ankle"},{"euler":{"heading":32.126583799199274,"pitch":-4.485148049845713,"roll":-2.5029032982774364},"location":"Right Ankle"},{"euler":{"heading":56.560743849704586,"pitch":-157.74150736322923,"roll":54.33051215828157},"location":"Right Hip"},{"euler":{"heading":60.928146083668814,"pitch":-119.29986154102353,"roll":-30.217149405958324},"location":"Right Knee"},{"euler":{"heading":18.430717190555047,"pitch":-139.58288655788343,"roll":57.869660435875744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.757"} +{"sensors":[{"euler":{"heading":40.58036218077228,"pitch":131.29841615711564,"roll":24.758525683035003},"location":"Left Knee"},{"euler":{"heading":45.630240506156696,"pitch":107.17738692524281,"roll":34.4519840972106},"location":"Left Ankle"},{"euler":{"heading":32.52400346908841,"pitch":-4.0287721534526035,"roll":-2.4669552765156433},"location":"Right Ankle"},{"euler":{"heading":55.461703666157895,"pitch":-158.16443206589238,"roll":55.00061851456129},"location":"Right Hip"},{"euler":{"heading":61.34450719887092,"pitch":-119.58049323174176,"roll":-29.62574355382514},"location":"Right Knee"},{"euler":{"heading":16.84491683668448,"pitch":-137.76762846305462,"roll":57.50750459647626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.858"} +{"sensors":[{"euler":{"heading":35.88470870020239,"pitch":131.57918533986532,"roll":23.93726222608869},"location":"Left Knee"},{"euler":{"heading":44.88280518852252,"pitch":105.99523271365697,"roll":34.9975745999355},"location":"Left Ankle"},{"euler":{"heading":32.58781672492409,"pitch":-3.5325746718680797,"roll":-2.618731343840733},"location":"Right Ankle"},{"euler":{"heading":54.924474530322,"pitch":-158.46983709011178,"roll":55.76155905419194},"location":"Right Hip"},{"euler":{"heading":62.50587567685997,"pitch":-119.95333600724302,"roll":-29.578110362339288},"location":"Right Knee"},{"euler":{"heading":15.183801475456107,"pitch":-135.64942204299385,"roll":56.66850234743933},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.958"} +{"sensors":[{"euler":{"heading":54.858003421588926,"pitch":133.25417489797792,"roll":24.876643448791928},"location":"Left Knee"},{"euler":{"heading":41.31598807874268,"pitch":104.56286706418753,"roll":32.79209618768995},"location":"Left Ankle"},{"euler":{"heading":32.22389541541423,"pitch":-3.030070168392703,"roll":-2.886866492316423},"location":"Right Ankle"},{"euler":{"heading":54.60349805364515,"pitch":-158.99589340541013,"roll":56.60469318256983},"location":"Right Hip"},{"euler":{"heading":64.06916960226835,"pitch":-120.39772768003579,"roll":-30.01063288433935},"location":"Right Knee"},{"euler":{"heading":14.07338495373287,"pitch":-133.85161599582864,"roll":55.95092727523976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.59"} +{"sensors":[{"euler":{"heading":71.5407607698169,"pitch":135.70918980954877,"roll":26.31525156068795},"location":"Left Knee"},{"euler":{"heading":37.1826393732242,"pitch":103.3499893920859,"roll":29.27441498576124},"location":"Left Ankle"},{"euler":{"heading":31.16491766923347,"pitch":-2.569421058977972,"roll":-3.4029794563862263},"location":"Right Ankle"},{"euler":{"heading":54.54282332461388,"pitch":-159.72755688256368,"roll":57.51625693335546},"location":"Right Hip"},{"euler":{"heading":65.99128618276933,"pitch":-120.88308093635484,"roll":-31.00843311275752},"location":"Right Knee"},{"euler":{"heading":13.889504649654404,"pitch":-132.84908340906628,"roll":55.53942378072385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.160"} +{"sensors":[{"euler":{"heading":91.09238410421594,"pitch":137.2053440891748,"roll":27.581340342451167},"location":"Left Knee"},{"euler":{"heading":34.89219457426049,"pitch":102.94808760582907,"roll":27.006930307675493},"location":"Left Ankle"},{"euler":{"heading":28.9125711720732,"pitch":-2.794684383467422,"roll":-3.875942522643173},"location":"Right Ankle"},{"euler":{"heading":54.87958791832384,"pitch":-160.52041769625507,"roll":58.222202101009},"location":"Right Hip"},{"euler":{"heading":68.05857367042584,"pitch":-121.17363231145542,"roll":-32.77338727767908},"location":"Right Knee"},{"euler":{"heading":14.071880884590184,"pitch":-132.20351019181896,"roll":55.33947844509034},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.260"} +{"sensors":[{"euler":{"heading":107.8622312930568,"pitch":137.82195866440563,"roll":28.560523914187012},"location":"Left Knee"},{"euler":{"heading":33.93830355831112,"pitch":102.66765100235648,"roll":25.621014386474027},"location":"Left Ankle"},{"euler":{"heading":25.504736417461093,"pitch":-2.921230552688887,"roll":-4.517946088564686},"location":"Right Ankle"},{"euler":{"heading":56.213595156458496,"pitch":-160.10230393086223,"roll":58.17728391299527},"location":"Right Hip"},{"euler":{"heading":70.44686739735715,"pitch":-122.36995830652575,"roll":-35.08388723017121},"location":"Right Knee"},{"euler":{"heading":14.072577655806297,"pitch":-131.73825322895547,"roll":55.36663866072259},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.361"} +{"sensors":[{"euler":{"heading":122.27707421575154,"pitch":137.8151136020688,"roll":29.315765957352532},"location":"Left Knee"},{"euler":{"heading":33.76962532240979,"pitch":102.50307052325667,"roll":24.83066760375326},"location":"Left Ankle"},{"euler":{"heading":23.035451657366668,"pitch":-3.047629642683804,"roll":-4.80161373420777},"location":"Right Ankle"},{"euler":{"heading":57.87068304896522,"pitch":-158.96890913662128,"roll":57.280514266358956},"location":"Right Hip"},{"euler":{"heading":71.97433754129376,"pitch":-123.29790588645601,"roll":-36.83571852043801},"location":"Right Knee"},{"euler":{"heading":14.382304167727002,"pitch":-132.07230786653827,"roll":55.56957449166051},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.461"} +{"sensors":[{"euler":{"heading":100.38192823429657,"pitch":137.27978729728062,"roll":29.88620481524923},"location":"Left Knee"},{"euler":{"heading":34.648159370828004,"pitch":102.49683313234819,"roll":24.769486335630987},"location":"Left Ankle"},{"euler":{"heading":22.898266511716606,"pitch":-3.328473642557441,"roll":-4.7015790597960425},"location":"Right Ankle"},{"euler":{"heading":59.28101257248922,"pitch":-158.06817989383546,"roll":55.78533938570886},"location":"Right Hip"},{"euler":{"heading":70.76961637695732,"pitch":-122.80583361763577,"roll":-36.99403316632163},"location":"Right Knee"},{"euler":{"heading":15.040188815488717,"pitch":-133.0642412670871,"roll":55.9256199885902},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.562"} +{"sensors":[{"euler":{"heading":83.12008109349019,"pitch":136.33759517847255,"roll":30.12889657062747},"location":"Left Knee"},{"euler":{"heading":35.7896189305434,"pitch":102.6100952252288,"roll":25.023280927275664},"location":"Left Ankle"},{"euler":{"heading":24.985703285038454,"pitch":-3.41613376540477,"roll":-4.159216796612881},"location":"Right Ankle"},{"euler":{"heading":59.91854708140268,"pitch":-157.60985090738487,"roll":54.23619774734756},"location":"Right Hip"},{"euler":{"heading":67.7380061821485,"pitch":-121.6828046159378,"roll":-35.37747708737714},"location":"Right Knee"},{"euler":{"heading":15.917746580426758,"pitch":-134.58607438075137,"roll":56.426155914104235},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.663"} +{"sensors":[{"euler":{"heading":69.59252090221514,"pitch":135.2293807836481,"roll":29.84315114373306},"location":"Left Knee"},{"euler":{"heading":37.11068976574832,"pitch":102.80176288471094,"roll":25.74044855330218},"location":"Left Ankle"},{"euler":{"heading":28.00880721786733,"pitch":-3.4419474572966133,"roll":-3.1809314762867666},"location":"Right Ankle"},{"euler":{"heading":59.2158262699748,"pitch":-157.45076865780925,"roll":53.40516761829476},"location":"Right Hip"},{"euler":{"heading":63.9299234686966,"pitch":-120.61309589178967,"roll":-32.666181178417304},"location":"Right Knee"},{"euler":{"heading":16.701688302898923,"pitch":-136.49822092431847,"roll":57.01582047409479},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.763"} +{"sensors":[{"euler":{"heading":59.16420793638854,"pitch":134.202803966167,"roll":28.883040928728764},"location":"Left Knee"},{"euler":{"heading":38.66800573132858,"pitch":102.99897940353331,"roll":27.132559117771905},"location":"Left Ankle"},{"euler":{"heading":30.597082258159354,"pitch":-3.227493318830163,"roll":-2.444338161305557},"location":"Right Ankle"},{"euler":{"heading":57.51083078934377,"pitch":-157.6992093979483,"roll":53.18232154389696},"location":"Right Hip"},{"euler":{"heading":61.14480673268768,"pitch":-120.12671304404525,"roll":-30.27225015747446},"location":"Right Knee"},{"euler":{"heading":17.64084430944576,"pitch":-138.99541936053208,"roll":57.61479162268238},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.864"} +{"sensors":[{"euler":{"heading":51.73728920538733,"pitch":133.3987316484365,"roll":26.96194167369093},"location":"Left Knee"},{"euler":{"heading":40.846821100281595,"pitch":103.87898201593823,"roll":29.87262687161644},"location":"Left Ankle"},{"euler":{"heading":31.800781657754122,"pitch":-2.8312986543604435,"roll":-2.1285863777110112},"location":"Right Ankle"},{"euler":{"heading":56.536899194896996,"pitch":-157.7694392338615,"roll":53.30172029659533},"location":"Right Hip"},{"euler":{"heading":60.065308333737825,"pitch":-120.07898762987786,"roll":-28.801642630030297},"location":"Right Knee"},{"euler":{"heading":17.70233261378359,"pitch":-140.071955773318,"roll":57.96059053592851},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.964"} +{"sensors":[{"euler":{"heading":47.42189263140376,"pitch":132.1063424229786,"roll":24.539876458712634},"location":"Left Knee"},{"euler":{"heading":43.6593709614039,"pitch":105.92973435701494,"roll":32.95252196412857},"location":"Left Ankle"},{"euler":{"heading":32.44748687577354,"pitch":-2.490627899304173,"roll":-2.074737455201554},"location":"Right Ankle"},{"euler":{"heading":55.46001561173742,"pitch":-158.01134769081176,"roll":53.8437687087592},"location":"Right Hip"},{"euler":{"heading":60.41209490276653,"pitch":-120.23199724357754,"roll":-28.107074444577556},"location":"Right Knee"},{"euler":{"heading":16.510109876892727,"pitch":-138.572838772552,"roll":57.821651975164535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.65"} +{"sensors":[{"euler":{"heading":43.43660725469596,"pitch":131.78112530425648,"roll":22.80005338769086},"location":"Left Knee"},{"euler":{"heading":45.17750310683737,"pitch":106.02559798517046,"roll":35.055731899604616},"location":"Left Ankle"},{"euler":{"heading":32.846211633620314,"pitch":-2.2953242680832924,"roll":-2.180588905449431},"location":"Right Ankle"},{"euler":{"heading":55.03605319805018,"pitch":-158.16484624081403,"roll":54.58395772818849},"location":"Right Hip"},{"euler":{"heading":61.308410051590386,"pitch":-120.26343629249392,"roll":-27.972037536302956},"location":"Right Knee"},{"euler":{"heading":14.802646365558713,"pitch":-136.62773970480663,"roll":56.976547711735144},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.166"} +{"sensors":[{"euler":{"heading":60.262654403889215,"pitch":132.69374188610306,"roll":22.884471677441528},"location":"Left Knee"},{"euler":{"heading":43.47762077442543,"pitch":105.22649175730875,"roll":34.50346210566145},"location":"Left Ankle"},{"euler":{"heading":32.83974980256964,"pitch":-2.118598879543245,"roll":-2.4071680124639956},"location":"Right Ankle"},{"euler":{"heading":55.08130354032042,"pitch":-158.27401671510805,"roll":55.36669716974201},"location":"Right Hip"},{"euler":{"heading":62.57144429409931,"pitch":-120.3394471653215,"roll":-28.283853459890935},"location":"Right Knee"},{"euler":{"heading":13.487811415743257,"pitch":-134.6595822672945,"roll":56.03347469672466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.267"} +{"sensors":[{"euler":{"heading":75.50234909133457,"pitch":134.7026621038437,"roll":24.304499206828233},"location":"Left Knee"},{"euler":{"heading":39.344972164565185,"pitch":104.20613506585605,"roll":31.340229117544787},"location":"Left Ankle"},{"euler":{"heading":32.29938117627386,"pitch":-1.9111220188123779,"roll":-2.7667717978085187},"location":"Right Ankle"},{"euler":{"heading":55.29671369980365,"pitch":-158.3846929717997,"roll":56.170103504965454},"location":"Right Hip"},{"euler":{"heading":64.32499757357819,"pitch":-120.58064143087745,"roll":-29.10703091179644},"location":"Right Knee"},{"euler":{"heading":12.791725684055574,"pitch":-133.02727834303735,"roll":55.394142503119554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.368"} +{"sensors":[{"euler":{"heading":92.689278079557,"pitch":137.07339755158793,"roll":25.922383955186984},"location":"Left Knee"},{"euler":{"heading":35.73524231079263,"pitch":103.33040218604816,"roll":28.002273810741052},"location":"Left Ankle"},{"euler":{"heading":31.10187386761805,"pitch":-1.5628580724410344,"roll":-3.4251055280348908},"location":"Right Ankle"},{"euler":{"heading":55.43741945717004,"pitch":-158.86534084609937,"roll":57.1705700259095},"location":"Right Hip"},{"euler":{"heading":66.45640607381682,"pitch":-121.03075910805016,"roll":-30.39292666653852},"location":"Right Knee"},{"euler":{"heading":12.947098977926416,"pitch":-132.11505142642233,"roll":55.017767193737214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.469"} +{"sensors":[{"euler":{"heading":108.72981357027504,"pitch":138.19602406364365,"roll":27.267461390631972},"location":"Left Knee"},{"euler":{"heading":34.19458266689403,"pitch":103.24546493527126,"roll":25.956871692262894},"location":"Left Ankle"},{"euler":{"heading":28.96202120582354,"pitch":-1.7768550852661544,"roll":-4.104049620267553},"location":"Right Ankle"},{"euler":{"heading":55.96880071111678,"pitch":-159.47862635755848,"roll":58.00452355563326},"location":"Right Hip"},{"euler":{"heading":68.93287386149522,"pitch":-121.38455160769384,"roll":-32.66232890587635},"location":"Right Knee"},{"euler":{"heading":13.32996668890036,"pitch":-131.4857951756398,"roll":54.861499092613975},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.570"} +{"sensors":[{"euler":{"heading":123.10041048076984,"pitch":138.2784475194806,"roll":28.377572902764214},"location":"Left Knee"},{"euler":{"heading":33.884341454389684,"pitch":103.46587271501113,"roll":24.78974866738474},"location":"Left Ankle"},{"euler":{"heading":25.497663590052586,"pitch":-1.7743004973756467,"roll":-5.128635434709313},"location":"Right Ankle"},{"euler":{"heading":57.33136309019304,"pitch":-158.8028944545739,"roll":58.02787448324974},"location":"Right Hip"},{"euler":{"heading":71.70971173939253,"pitch":-122.89969645569403,"roll":-35.29254927373125},"location":"Right Knee"},{"euler":{"heading":14.023958039998362,"pitch":-131.07692018244228,"roll":55.082759747437045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.670"} +{"sensors":[{"euler":{"heading":100.97878606894872,"pitch":137.88335114827314,"roll":29.209671222848936},"location":"Left Knee"},{"euler":{"heading":34.183229897701054,"pitch":103.70693137526409,"roll":24.167655585679977},"location":"Left Ankle"},{"euler":{"heading":22.809684051954935,"pitch":-2.2892306776843854,"roll":-5.6871485308547145},"location":"Right Ankle"},{"euler":{"heading":59.19019112958572,"pitch":-157.7336528091424,"roll":57.1215361664668},"location":"Right Hip"},{"euler":{"heading":72.84188449460356,"pitch":-123.40864366287535,"roll":-37.34557821504297},"location":"Right Knee"},{"euler":{"heading":14.776501935952263,"pitch":-131.55711838119842,"roll":55.41376976744668},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.771"} +{"sensors":[{"euler":{"heading":83.36503002348489,"pitch":137.02048714056946,"roll":29.802092949333545},"location":"Left Knee"},{"euler":{"heading":35.349482109958736,"pitch":104.1153091932147,"roll":24.193324514536886},"location":"Left Ankle"},{"euler":{"heading":22.713408243206665,"pitch":-2.951373316338257,"roll":-5.681236656706454},"location":"Right Ankle"},{"euler":{"heading":60.682470958118785,"pitch":-156.95637253574733,"roll":55.564195066061615},"location":"Right Hip"},{"euler":{"heading":71.63454087216095,"pitch":-122.5909361676799,"roll":-37.71104072506147},"location":"Right Knee"},{"euler":{"heading":15.70778535933879,"pitch":-132.77641837003972,"roll":55.832198637596406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.871"} +{"sensors":[{"euler":{"heading":69.65039743536653,"pitch":135.86514862400475,"roll":29.963606225044757},"location":"Left Knee"},{"euler":{"heading":36.60761883523689,"pitch":104.53834787170699,"roll":24.513817069703236},"location":"Left Ankle"},{"euler":{"heading":24.917575843588992,"pitch":-3.431623535689882,"roll":-5.063520463927264},"location":"Right Ankle"},{"euler":{"heading":61.17902052037363,"pitch":-156.60380413748334,"roll":54.02419914860486},"location":"Right Hip"},{"euler":{"heading":68.51160379717237,"pitch":-121.18513858035372,"roll":-36.11545897238738},"location":"Right Knee"},{"euler":{"heading":16.684350282799617,"pitch":-134.50993515064926,"roll":56.34756656945758},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.972"} +{"sensors":[{"euler":{"heading":58.955948950663206,"pitch":134.61757113448851,"roll":29.574677876911082},"location":"Left Knee"},{"euler":{"heading":38.08962318991334,"pitch":104.96276218227932,"roll":25.32700986641539},"location":"Left Ankle"},{"euler":{"heading":28.16111031009788,"pitch":-3.8661899903984054,"roll":-4.028939865924827},"location":"Right Ankle"},{"euler":{"heading":60.55705654030974,"pitch":-156.39773462543653,"roll":53.23117129258558},"location":"Right Hip"},{"euler":{"heading":64.65846927218102,"pitch":-119.83577837972842,"roll":-33.31612667132898},"location":"Right Knee"},{"euler":{"heading":17.626647957541763,"pitch":-136.79198819755905,"roll":56.92687101185567},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.73"} +{"sensors":[{"euler":{"heading":50.865220675989576,"pitch":133.44705220295418,"roll":28.432020393650077},"location":"Left Knee"},{"euler":{"heading":39.98085180450161,"pitch":105.47760088238664,"roll":27.002206366270176},"location":"Left Ankle"},{"euler":{"heading":30.347233483318625,"pitch":-3.736231274162141,"roll":-3.3543672020060242},"location":"Right Ankle"},{"euler":{"heading":58.94791120303543,"pitch":-156.6868920695066,"roll":53.00109537460124},"location":"Right Hip"},{"euler":{"heading":61.90186254598874,"pitch":-119.37577533868044,"roll":-30.991166403798726},"location":"Right Knee"},{"euler":{"heading":18.665739106581714,"pitch":-139.26718735245086,"roll":57.58186593208451},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.173"} +{"sensors":[{"euler":{"heading":45.780375883615534,"pitch":132.34626164008642,"roll":26.292230896395214},"location":"Left Knee"},{"euler":{"heading":43.11678486211823,"pitch":107.32277695991912,"roll":30.081665834710698},"location":"Left Ankle"},{"euler":{"heading":31.287049757629763,"pitch":-3.458111564838898,"roll":-3.0471738988946377},"location":"Right Ankle"},{"euler":{"heading":57.957336679216645,"pitch":-156.71667643696375,"roll":53.20907694399262},"location":"Right Hip"},{"euler":{"heading":60.95272364912969,"pitch":-119.31624850841615,"roll":-29.701874944696023},"location":"Right Knee"},{"euler":{"heading":17.98860174433448,"pitch":-139.5747084033007,"roll":57.71676582464152},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.274"} +{"sensors":[{"euler":{"heading":42.437362978205506,"pitch":131.45125392321532,"roll":24.017106173577258},"location":"Left Knee"},{"euler":{"heading":45.387218040439215,"pitch":108.90325119270157,"roll":33.15951203503912},"location":"Left Ankle"},{"euler":{"heading":31.77714083736749,"pitch":-3.1886120482941993,"roll":-2.9653974863404873},"location":"Right Ankle"},{"euler":{"heading":56.99167734376964,"pitch":-156.84469779838633,"roll":53.83722704694676},"location":"Right Hip"},{"euler":{"heading":61.16249082341139,"pitch":-119.3991262385715,"roll":-29.100031459252023},"location":"Right Knee"},{"euler":{"heading":16.441296039261122,"pitch":-137.80184540815142,"roll":57.38104468845227},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.375"} +{"sensors":[{"euler":{"heading":38.326741604741564,"pitch":131.54507050431516,"roll":22.8501986559873},"location":"Left Knee"},{"euler":{"heading":45.979895721131996,"pitch":108.57357188091973,"roll":34.74362621581507},"location":"Left Ankle"},{"euler":{"heading":31.96439580326832,"pitch":-2.9625845751022872,"roll":-3.0281421239852158},"location":"Right Ankle"},{"euler":{"heading":56.48637130144787,"pitch":-156.84758029295043,"roll":54.673163263418026},"location":"Right Hip"},{"euler":{"heading":62.04173956357367,"pitch":-119.45628430824272,"roll":-29.007281667769938},"location":"Right Knee"},{"euler":{"heading":14.615504902818623,"pitch":-135.75767310296084,"roll":56.453001698702984},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.476"} +{"sensors":[{"euler":{"heading":56.39974860728867,"pitch":132.9914382361896,"roll":23.44114333660619},"location":"Left Knee"},{"euler":{"heading":43.52819759228785,"pitch":107.26455099198922,"roll":33.61462407311485},"location":"Left Ankle"},{"euler":{"heading":31.743165584380662,"pitch":-2.817511023894213,"roll":-3.174097797219019},"location":"Right Ankle"},{"euler":{"heading":56.32827549417865,"pitch":-156.98098535815623,"roll":55.572268495482234},"location":"Right Hip"},{"euler":{"heading":63.320526387443294,"pitch":-119.4961146057498,"roll":-29.416815225697917},"location":"Right Knee"},{"euler":{"heading":13.29890834488843,"pitch":-133.93173375929297,"roll":55.60134811069417},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.577"} +{"sensors":[{"euler":{"heading":72.50587466132231,"pitch":135.22768833965785,"roll":24.87956120932993},"location":"Left Knee"},{"euler":{"heading":39.291259485769636,"pitch":105.92547261477328,"roll":30.417035581024745},"location":"Left Ankle"},{"euler":{"heading":31.062616682640872,"pitch":-2.64462042956211,"roll":-3.4191302932673606},"location":"Right Ankle"},{"euler":{"heading":56.24638928099763,"pitch":-157.45841873434048,"roll":56.540424410706585},"location":"Right Hip"},{"euler":{"heading":65.01563417184077,"pitch":-119.68673404751969,"roll":-30.36408677534118},"location":"Right Knee"},{"euler":{"heading":13.00566112878527,"pitch":-132.64215051823822,"roll":55.17553584594262},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.678"} +{"sensors":[{"euler":{"heading":91.35348592508004,"pitch":136.8588250233861,"roll":26.377344845715257},"location":"Left Knee"},{"euler":{"heading":36.250121344700105,"pitch":105.37370310988933,"roll":27.68414075057349},"location":"Left Ankle"},{"euler":{"heading":29.65520499571914,"pitch":-2.6070821919912586,"roll":-3.985681934398703},"location":"Right Ankle"},{"euler":{"heading":56.34580955261202,"pitch":-158.49091236781956,"roll":57.53539072250363},"location":"Right Hip"},{"euler":{"heading":67.15269533320684,"pitch":-119.74031467729915,"roll":-32.11899064385336},"location":"Right Knee"},{"euler":{"heading":13.710854540909276,"pitch":-131.9686993150982,"roll":55.12911147417754},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.778"} +{"sensors":[{"euler":{"heading":108.20087263864194,"pitch":137.4667850443491,"roll":27.530511471366164},"location":"Left Knee"},{"euler":{"heading":35.068008436379266,"pitch":105.18357663251491,"roll":26.150570932106447},"location":"Left Ankle"},{"euler":{"heading":27.046217477296477,"pitch":-2.834708311764705,"roll":-4.736152699805292},"location":"Right Ankle"},{"euler":{"heading":57.27144844483311,"pitch":-158.62257359583384,"roll":58.03737533076585},"location":"Right Hip"},{"euler":{"heading":69.75269766610273,"pitch":-120.57952436774804,"roll":-34.72955233000849},"location":"Right Knee"},{"euler":{"heading":13.949383601336798,"pitch":-131.38903664322558,"roll":55.1643922162569},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.879"} +{"sensors":[{"euler":{"heading":88.80284200195683,"pitch":137.26780415522214,"roll":28.43724113639526},"location":"Left Knee"},{"euler":{"heading":34.95027466941956,"pitch":105.29096537975987,"roll":25.262287663316116},"location":"Left Ankle"},{"euler":{"heading":23.869552515190886,"pitch":-3.1952595128611176,"roll":-5.415234992209934},"location":"Right Ankle"},{"euler":{"heading":58.83197708705096,"pitch":-157.87369564680736,"roll":57.528468857364125},"location":"Right Hip"},{"euler":{"heading":71.93508450265657,"pitch":-121.5350994534427,"roll":-37.18096415381293},"location":"Right Knee"},{"euler":{"heading":14.584643699386127,"pitch":-131.40553733150384,"roll":55.440074493053366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.980"} +{"sensors":[{"euler":{"heading":73.2289117182927,"pitch":136.6656344663944,"roll":29.16853859843909},"location":"Left Knee"},{"euler":{"heading":35.65054561125507,"pitch":105.46542777990508,"roll":24.987634649630998},"location":"Left Ankle"},{"euler":{"heading":22.427837703376824,"pitch":-3.7355443835242754,"roll":-5.714618330502756},"location":"Right Ankle"},{"euler":{"heading":60.680485765219075,"pitch":-156.9879688874341,"roll":56.22373839003007},"location":"Right Hip"},{"euler":{"heading":72.27136539863785,"pitch":-121.28205770049486,"roll":-38.394428630820926},"location":"Right Knee"},{"euler":{"heading":15.473403045868436,"pitch":-132.2944286137195,"roll":55.85005582060897},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.81"} +{"sensors":[{"euler":{"heading":60.95261923676234,"pitch":135.76402766483375,"roll":29.592459141536047},"location":"Left Knee"},{"euler":{"heading":36.562809227445534,"pitch":105.65896630358904,"roll":24.98286559499673},"location":"Left Ankle"},{"euler":{"heading":23.797900161883017,"pitch":-4.36117677335815,"roll":-5.385046782149174},"location":"Right Ankle"},{"euler":{"heading":61.73625396318596,"pitch":-156.51943404383894,"roll":54.603167542473486},"location":"Right Hip"},{"euler":{"heading":68.51579326007206,"pitch":-119.99482176760786,"roll":-37.5424014937008},"location":"Right Knee"},{"euler":{"heading":16.415149301645908,"pitch":-133.91327132646194,"roll":56.30427201309661},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.182"} +{"sensors":[{"euler":{"heading":51.50722575046999,"pitch":134.62119422064094,"roll":29.595554588158347},"location":"Left Knee"},{"euler":{"heading":37.73188652038086,"pitch":105.94705533515123,"roll":25.37688580707229},"location":"Left Ankle"},{"euler":{"heading":26.655735631202127,"pitch":-4.850006931822947,"roll":-4.444732478302683},"location":"Right Ankle"},{"euler":{"heading":61.55434166785514,"pitch":-156.3392261532367,"roll":53.48158121249196},"location":"Right Hip"},{"euler":{"heading":64.9591649809876,"pitch":-118.55060459410271,"roll":-35.06512008363589},"location":"Right Knee"},{"euler":{"heading":17.382445257961,"pitch":-135.86563697757808,"roll":56.88174953916709},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.283"} +{"sensors":[{"euler":{"heading":44.28464434486708,"pitch":133.44438533569578,"roll":29.039496664073774},"location":"Left Knee"},{"euler":{"heading":39.355000183649764,"pitch":106.32664607253056,"roll":26.44091648438907},"location":"Left Ankle"},{"euler":{"heading":29.631876105086782,"pitch":-5.090196700414403,"roll":-3.540357730629685},"location":"Right Ankle"},{"euler":{"heading":60.014190095450495,"pitch":-156.61611328828965,"roll":53.28119283902492},"location":"Right Hip"},{"euler":{"heading":61.85675179010883,"pitch":-117.70750246115455,"roll":-32.46677141701045},"location":"Right Knee"},{"euler":{"heading":18.346880050653134,"pitch":-138.28032252940767,"roll":57.493474174978466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.383"} +{"sensors":[{"euler":{"heading":39.28043465179276,"pitch":132.39141091935414,"roll":27.56130325641177},"location":"Left Knee"},{"euler":{"heading":41.13584725617313,"pitch":106.78308911547755,"roll":28.604683466452606},"location":"Left Ankle"},{"euler":{"heading":31.159104605329667,"pitch":-4.950819978613112,"roll":-3.239253323488474},"location":"Right Ankle"},{"euler":{"heading":58.5153033666737,"pitch":-157.03907547730068,"roll":53.41496769798204},"location":"Right Hip"},{"euler":{"heading":60.178568866241804,"pitch":-117.44400619317358,"roll":-30.644722843027168},"location":"Right Knee"},{"euler":{"heading":19.148448819869913,"pitch":-140.01941323478525,"roll":58.09457101352588},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.484"} +{"sensors":[{"euler":{"heading":36.812007514308185,"pitch":131.06999153956258,"roll":25.29030958445869},"location":"Left Knee"},{"euler":{"heading":44.13383756682595,"pitch":108.55758849531078,"roll":31.876535267925878},"location":"Left Ankle"},{"euler":{"heading":32.02909794392619,"pitch":-4.794974918481546,"roll":-3.067861679177933},"location":"Right Ankle"},{"euler":{"heading":57.29396185930465,"pitch":-157.4931471125641,"roll":53.981915305665105},"location":"Right Hip"},{"euler":{"heading":59.95191889400319,"pitch":-117.47905913779529,"roll":-29.655925643658403},"location":"Right Knee"},{"euler":{"heading":18.193594085948618,"pitch":-138.83445033530805,"roll":58.198535798085715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.588"} +{"sensors":[{"euler":{"heading":35.04056499271113,"pitch":130.62338083570012,"roll":23.217508085480354},"location":"Left Knee"},{"euler":{"heading":45.75624568863179,"pitch":108.49265731795502,"roll":34.397199657955575},"location":"Left Ankle"},{"euler":{"heading":32.497689925968444,"pitch":-4.3923610721104085,"roll":-3.1149141108507425},"location":"Right Ankle"},{"euler":{"heading":56.45445207402694,"pitch":-157.83862683509705,"roll":54.8219239856853},"location":"Right Hip"},{"euler":{"heading":60.80676697857424,"pitch":-117.82587897782888,"roll":-29.2189763877189},"location":"Right Knee"},{"euler":{"heading":16.3772765471764,"pitch":-136.9417544871711,"roll":57.50188502672997},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.688"} +{"sensors":[{"euler":{"heading":31.265494511802892,"pitch":131.27751869713876,"roll":22.80442734268407},"location":"Left Knee"},{"euler":{"heading":44.33199425562775,"pitch":107.31618488060188,"roll":34.33563484099192},"location":"Left Ankle"},{"euler":{"heading":32.51276345597296,"pitch":-3.861577223008494,"roll":-3.210998452241593},"location":"Right Ankle"},{"euler":{"heading":55.992984069248735,"pitch":-158.07395382687832,"roll":55.76633144188408},"location":"Right Hip"},{"euler":{"heading":62.029902726580005,"pitch":-118.3180668363392,"roll":-29.21003689116988},"location":"Right Knee"},{"euler":{"heading":14.670101349902572,"pitch":-134.93778111036505,"roll":56.54451118636105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.790"} +{"sensors":[{"euler":{"heading":51.37306127485354,"pitch":133.2487431141501,"roll":23.958584932497967},"location":"Left Knee"},{"euler":{"heading":40.40125069439957,"pitch":105.87706991178803,"roll":31.681826941064173},"location":"Left Ankle"},{"euler":{"heading":32.079207574116694,"pitch":-3.3039951470340045,"roll":-3.4049583153739262},"location":"Right Ankle"},{"euler":{"heading":55.73404072386252,"pitch":-158.55443419997604,"roll":56.73386305734404},"location":"Right Hip"},{"euler":{"heading":63.64971693277954,"pitch":-118.82883374706901,"roll":-29.70729891151149},"location":"Right Knee"},{"euler":{"heading":13.652767852488495,"pitch":-133.38008377246376,"roll":55.826840148437775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.891"} +{"sensors":[{"euler":{"heading":68.71702048780222,"pitch":135.73994656947346,"roll":25.53803105773218},"location":"Left Knee"},{"euler":{"heading":36.33258317328693,"pitch":104.5926865649619,"roll":28.133017939253737},"location":"Left Ankle"},{"euler":{"heading":31.15940826778904,"pitch":-2.8529607911393886,"roll":-3.931240911433607},"location":"Right Ankle"},{"euler":{"heading":55.6230884253238,"pitch":-159.4113257563265,"roll":57.79960814732245},"location":"Right Hip"},{"euler":{"heading":65.65378410314605,"pitch":-119.25534214952982,"roll":-30.840969297645586},"location":"Right Knee"},{"euler":{"heading":13.65211936417836,"pitch":-132.60671018797822,"roll":55.462812277916385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.992"} +{"sensors":[{"euler":{"heading":89.17864425887547,"pitch":137.0131987326501,"roll":26.889943494441056},"location":"Left Knee"},{"euler":{"heading":34.17833356413347,"pitch":104.1320263833326,"roll":25.819530567951343},"location":"Left Ankle"},{"euler":{"heading":29.25288792234351,"pitch":-3.1998851113129168,"roll":-4.478804608087001},"location":"Right Ankle"},{"euler":{"heading":56.07920910591133,"pitch":-160.2283227236032,"roll":58.54399793671267},"location":"Right Hip"},{"euler":{"heading":67.81789918231536,"pitch":-119.26077928559592,"roll":-33.038024978542595},"location":"Right Knee"},{"euler":{"heading":14.085595839158474,"pitch":-132.2160597017831,"roll":55.32960768174245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.93"} +{"sensors":[{"euler":{"heading":106.88979396205308,"pitch":137.29731797015413,"roll":27.887333676409646},"location":"Left Knee"},{"euler":{"heading":33.65700563237415,"pitch":104.14919392203619,"roll":24.65952679918366},"location":"Left Ankle"},{"euler":{"heading":25.6407000176014,"pitch":-3.525698897846137,"roll":-5.497468421670038},"location":"Right Ankle"},{"euler":{"heading":57.78442912817642,"pitch":-159.48127601229555,"roll":58.32578156197779},"location":"Right Hip"},{"euler":{"heading":70.2022409286029,"pitch":-120.30018274096895,"roll":-35.47198398097114},"location":"Right Knee"},{"euler":{"heading":14.565377363099907,"pitch":-131.95174942695505,"roll":55.47066769781033},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.200"} +{"sensors":[{"euler":{"heading":87.89580082824273,"pitch":136.88853593355216,"roll":28.74823004177936},"location":"Left Knee"},{"euler":{"heading":34.7818681814234,"pitch":104.5273921649803,"roll":24.59678936387254},"location":"Left Ankle"},{"euler":{"heading":23.170559735024067,"pitch":-4.070222593535641,"roll":-5.830646464764906},"location":"Right Ankle"},{"euler":{"heading":59.715739104416016,"pitch":-158.36533929698803,"roll":57.26625339748688},"location":"Right Hip"},{"euler":{"heading":70.74549943726711,"pitch":-120.31324503451975,"roll":-36.85396037119655},"location":"Right Knee"},{"euler":{"heading":15.303049792573239,"pitch":-132.40818263832048,"roll":55.711270235698656},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.300"} +{"sensors":[{"euler":{"heading":72.81916462370476,"pitch":136.13219426077245,"roll":29.313202633128736},"location":"Left Knee"},{"euler":{"heading":35.83370117463705,"pitch":104.83988779145781,"roll":24.718379050898587},"location":"Left Ankle"},{"euler":{"heading":23.270486393431483,"pitch":-4.71158120574254,"roll":-5.710014131254438},"location":"Right Ankle"},{"euler":{"heading":61.118734373022605,"pitch":-157.6409307405679,"roll":55.66541954365643},"location":"Right Hip"},{"euler":{"heading":69.25214862510057,"pitch":-119.30247186721134,"roll":-36.51113392209448},"location":"Right Knee"},{"euler":{"heading":16.043797246763994,"pitch":-133.3741112850343,"roll":56.107344704642415},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.401"} +{"sensors":[{"euler":{"heading":60.96789191340844,"pitch":135.13269822656653,"roll":29.497440331528917},"location":"Left Knee"},{"euler":{"heading":37.099221798036794,"pitch":105.18211037208272,"roll":25.173230370583948},"location":"Left Ankle"},{"euler":{"heading":25.647194974685835,"pitch":-5.024391786959196,"roll":-5.137122944440557},"location":"Right Ankle"},{"euler":{"heading":61.62541214193833,"pitch":-157.22324379648472,"roll":54.17524773189957},"location":"Right Hip"},{"euler":{"heading":66.0555524816476,"pitch":-118.16787203651363,"roll":-34.46488898621516},"location":"Right Knee"},{"euler":{"heading":16.846515604064678,"pitch":-134.91403049840596,"roll":56.60248469596807},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.502"} +{"sensors":[{"euler":{"heading":51.739707383473686,"pitch":134.00830279256485,"roll":29.20636374625171},"location":"Left Knee"},{"euler":{"heading":38.729959463382144,"pitch":105.55717744028455,"roll":26.155563525810173},"location":"Left Ankle"},{"euler":{"heading":28.5563811978545,"pitch":-5.301500978422163,"roll":-4.2085017610646585},"location":"Right Ankle"},{"euler":{"heading":60.76203820623873,"pitch":-157.11877344103732,"roll":53.51053877413908},"location":"Right Hip"},{"euler":{"heading":62.79608983048006,"pitch":-117.15309154142761,"roll":-31.85823887204124},"location":"Right Knee"},{"euler":{"heading":17.610796054738145,"pitch":-136.9198317019597,"roll":57.17537599434232},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.603"} +{"sensors":[{"euler":{"heading":44.397711052727125,"pitch":132.92546700263273,"roll":28.41384341996497},"location":"Left Knee"},{"euler":{"heading":40.487322522354994,"pitch":105.92034751338234,"roll":27.989756228396256},"location":"Left Ankle"},{"euler":{"heading":30.664935546494274,"pitch":-5.314437874738092,"roll":-3.594137284984104},"location":"Right Ankle"},{"euler":{"heading":59.22276550423843,"pitch":-157.4998654298628,"roll":53.47386442833172},"location":"Right Hip"},{"euler":{"heading":60.703940214292004,"pitch":-116.81153680121417,"roll":-29.778975604881964},"location":"Right Knee"},{"euler":{"heading":18.444673819080002,"pitch":-138.9369716817246,"roll":57.80673189750234},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.703"} +{"sensors":[{"euler":{"heading":40.032942694772274,"pitch":131.9931983437132,"roll":26.483868772728453},"location":"Left Knee"},{"euler":{"heading":43.09152976811782,"pitch":107.28939989568822,"roll":30.9039314017787},"location":"Left Ankle"},{"euler":{"heading":31.737433703602303,"pitch":-5.201292689712489,"roll":-3.335479562917465},"location":"Right Ankle"},{"euler":{"heading":58.12293400434781,"pitch":-157.77336238150755,"roll":53.83901433756755},"location":"Right Hip"},{"euler":{"heading":59.98970207633269,"pitch":-116.85919088640978,"roll":-28.49797816372294},"location":"Right Knee"},{"euler":{"heading":17.492492424554936,"pitch":-138.57435817293916,"roll":57.89646020215158},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.804"} +{"sensors":[{"euler":{"heading":37.226019818092986,"pitch":131.23879128258002,"roll":24.440217432055146},"location":"Left Knee"},{"euler":{"heading":45.06332850829231,"pitch":107.68398759444501,"roll":33.826270655096444},"location":"Left Ankle"},{"euler":{"heading":32.34805517917753,"pitch":-5.027566740104635,"roll":-3.3154577109181345},"location":"Right Ankle"},{"euler":{"heading":57.216447866911096,"pitch":-158.0446241874605,"roll":54.54992907806906},"location":"Right Hip"},{"euler":{"heading":60.37396981234643,"pitch":-117.06878049392135,"roll":-27.933366266529294},"location":"Right Knee"},{"euler":{"heading":15.74376219701405,"pitch":-136.72423949432303,"roll":57.329614577884655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.906"} +{"sensors":[{"euler":{"heading":33.37004383779733,"pitch":131.48956043112784,"roll":23.530326870180865},"location":"Left Knee"},{"euler":{"heading":44.79317264466609,"pitch":106.84008802924339,"roll":34.657303789864294},"location":"Left Ankle"},{"euler":{"heading":32.62210968618396,"pitch":-4.745514997808915,"roll":-3.5054262028428376},"location":"Right Ankle"},{"euler":{"heading":56.67041316008489,"pitch":-158.22468385143196,"roll":55.41913979903597},"location":"Right Hip"},{"euler":{"heading":61.26530265398485,"pitch":-117.38328436646106,"roll":-27.749454951281425},"location":"Right Knee"},{"euler":{"heading":13.919513495217206,"pitch":-134.65772290751357,"roll":56.29944833617109},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.7"} +{"sensors":[{"euler":{"heading":52.57902219913319,"pitch":133.19091147456075,"roll":24.371675711527214},"location":"Left Knee"},{"euler":{"heading":41.700385736808855,"pitch":105.42842581339653,"roll":32.75767776254724},"location":"Left Ankle"},{"euler":{"heading":32.46006022142081,"pitch":-4.454621559751595,"roll":-3.6892145720425322},"location":"Right Ankle"},{"euler":{"heading":56.43735161347961,"pitch":-158.55408396736962,"roll":56.34835430095198},"location":"Right Hip"},{"euler":{"heading":62.548038619309935,"pitch":-117.73326946652146,"roll":-28.088389333525296},"location":"Right Knee"},{"euler":{"heading":12.610125188712022,"pitch":-132.8650725488819,"roll":55.40294842355892},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.108"} +{"sensors":[{"euler":{"heading":69.54988197608313,"pitch":135.72923331345055,"roll":25.947498454378398},"location":"Left Knee"},{"euler":{"heading":37.36658698772662,"pitch":104.07970416420424,"roll":29.17787222676855},"location":"Left Ankle"},{"euler":{"heading":31.76257007260776,"pitch":-4.114110338189131,"roll":-4.08738708427063},"location":"Right Ankle"},{"euler":{"heading":56.25841168914043,"pitch":-159.2921026871038,"roll":57.367536574575965},"location":"Right Hip"},{"euler":{"heading":64.22854403354424,"pitch":-118.09752472223335,"roll":-28.977722756186004},"location":"Right Knee"},{"euler":{"heading":12.358451926735542,"pitch":-131.69479129510844,"roll":54.930610529709384},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.208"} +{"sensors":[{"euler":{"heading":88.64180227225236,"pitch":137.6218165670917,"roll":27.444764873252744},"location":"Left Knee"},{"euler":{"heading":34.41260807186219,"pitch":103.61433362481075,"roll":26.402329407873502},"location":"Left Ankle"},{"euler":{"heading":30.216435451013105,"pitch":-3.9665135258371595,"roll":-4.637933311286442},"location":"Right Ankle"},{"euler":{"heading":56.379434717749994,"pitch":-160.33447181397577,"roll":58.29571452156899},"location":"Right Hip"},{"euler":{"heading":66.20501609960147,"pitch":-118.30822407270192,"roll":-30.614801473667985},"location":"Right Knee"},{"euler":{"heading":13.020397047948633,"pitch":-131.12929348701843,"roll":54.81830504519086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.310"} +{"sensors":[{"euler":{"heading":105.48114318766794,"pitch":138.47229838102797,"roll":28.662861865524143},"location":"Left Knee"},{"euler":{"heading":33.47427496293506,"pitch":103.37159065036381,"roll":24.93123871713145},"location":"Left Ankle"},{"euler":{"heading":27.297666593758986,"pitch":-4.189675306140449,"roll":-5.302577484867001},"location":"Right Ankle"},{"euler":{"heading":57.54273830584478,"pitch":-160.2491474401598,"roll":58.49945169808658},"location":"Right Hip"},{"euler":{"heading":68.45949718237068,"pitch":-118.97450527376003,"roll":-33.053347733234965},"location":"Right Knee"},{"euler":{"heading":13.36620183801456,"pitch":-130.81378376536688,"roll":54.835588763589875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.410"} +{"sensors":[{"euler":{"heading":120.0420671120632,"pitch":138.52844126398074,"roll":29.616454785868747},"location":"Left Knee"},{"euler":{"heading":33.300499601426345,"pitch":103.29462596537927,"roll":24.319467635977773},"location":"Left Ankle"},{"euler":{"heading":23.980313854902576,"pitch":-4.748327296902033,"roll":-5.9039974332962295},"location":"Right Ankle"},{"euler":{"heading":59.60107723002469,"pitch":-159.149346629541,"roll":57.77417632522297},"location":"Right Hip"},{"euler":{"heading":70.29357321317634,"pitch":-119.67253144952825,"roll":-35.37883362259993},"location":"Right Knee"},{"euler":{"heading":14.041736725235518,"pitch":-131.24766910378608,"roll":55.00580636783011},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.511"} +{"sensors":[{"euler":{"heading":132.38070723749922,"pitch":138.15118141069703,"roll":30.36043110160641},"location":"Left Knee"},{"euler":{"heading":34.25809443569518,"pitch":103.34388869251416,"roll":24.26529707153952},"location":"Left Ankle"},{"euler":{"heading":22.61959919684815,"pitch":-5.253837560632638,"roll":-6.21039505112716},"location":"Right Ankle"},{"euler":{"heading":61.40534904350532,"pitch":-158.00553159463556,"roll":56.428237031310935},"location":"Right Hip"},{"euler":{"heading":69.94632199141225,"pitch":-119.37074464293656,"roll":-36.26431978541818},"location":"Right Knee"},{"euler":{"heading":14.838621564975664,"pitch":-132.2645384336877,"roll":55.30846472633068},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.611"} +{"sensors":[{"euler":{"heading":108.83907644389001,"pitch":137.38769153026732,"roll":30.819605653922},"location":"Left Knee"},{"euler":{"heading":35.149187576404664,"pitch":103.43602776756043,"roll":24.412474629384953},"location":"Left Ankle"},{"euler":{"heading":23.73493788104902,"pitch":-5.859893890551606,"roll":-5.928787702880903},"location":"Right Ankle"},{"euler":{"heading":62.508130451750205,"pitch":-157.31534971782682,"roll":54.81199449695215},"location":"Right Hip"},{"euler":{"heading":67.83678363028717,"pitch":-118.27721283076139,"roll":-35.5614113174004},"location":"Right Knee"},{"euler":{"heading":15.621906768340688,"pitch":-133.73164644926808,"roll":55.707184192183476},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.712"} +{"sensors":[{"euler":{"heading":90.17558157016131,"pitch":136.32227418487355,"roll":30.896218728249767},"location":"Left Knee"},{"euler":{"heading":36.44361789011774,"pitch":103.67398011848763,"roll":24.985604697647066},"location":"Left Ankle"},{"euler":{"heading":26.87172102753106,"pitch":-6.039690086732637,"roll":-5.180507698931089},"location":"Right Ankle"},{"euler":{"heading":62.73332159424528,"pitch":-156.7978368754154,"roll":53.67648882684337},"location":"Right Hip"},{"euler":{"heading":64.11187256484831,"pitch":-117.16285168680491,"roll":-33.04070444597639},"location":"Right Knee"},{"euler":{"heading":16.524853372020594,"pitch":-135.5942736154365,"roll":56.24633472865655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.814"} +{"sensors":[{"euler":{"heading":75.50035374740135,"pitch":135.17390004500677,"roll":30.37695853515516},"location":"Left Knee"},{"euler":{"heading":38.21098762313093,"pitch":104.03792996118175,"roll":26.283051111535524},"location":"Left Ankle"},{"euler":{"heading":29.886013710595954,"pitch":-6.244000337143966,"roll":-4.223978313676357},"location":"Right Ankle"},{"euler":{"heading":61.401654411612455,"pitch":-156.84084885736036,"roll":53.356489652173515},"location":"Right Hip"},{"euler":{"heading":60.62791199990883,"pitch":-116.45175944088056,"roll":-30.37927993112212},"location":"Right Knee"},{"euler":{"heading":17.400927139379792,"pitch":-137.82074151147788,"roll":56.82932353438869},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.915"} +{"sensors":[{"euler":{"heading":64.51877677501798,"pitch":134.08720244460383,"roll":28.866664093337846},"location":"Left Knee"},{"euler":{"heading":39.848357872440886,"pitch":104.4564387178369,"roll":28.37265541052469},"location":"Left Ankle"},{"euler":{"heading":31.462317120878808,"pitch":-6.268352285098134,"roll":-3.768664937564811},"location":"Right Ankle"},{"euler":{"heading":60.448028853539775,"pitch":-156.96894894222814,"roll":53.39986760092916},"location":"Right Hip"},{"euler":{"heading":58.85729488531644,"pitch":-116.26015316873442,"roll":-28.726077283735826},"location":"Right Knee"},{"euler":{"heading":18.100419459530713,"pitch":-139.02090967824446,"roll":57.42225395932081},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.17"} +{"sensors":[{"euler":{"heading":57.25121276545478,"pitch":132.6579787969008,"roll":26.70336507093419},"location":"Left Knee"},{"euler":{"heading":43.06775205161741,"pitch":106.40469807421674,"roll":31.696305400829942},"location":"Left Ankle"},{"euler":{"heading":32.32493048118285,"pitch":-6.070411373841867,"roll":-3.4577334404246987},"location":"Right Ankle"},{"euler":{"heading":59.45317021462156,"pitch":-157.13242597750445,"roll":53.87312668219365},"location":"Right Hip"},{"euler":{"heading":58.6857566664699,"pitch":-116.3543122713233,"roll":-27.78899432577535},"location":"Right Knee"},{"euler":{"heading":17.454374943837244,"pitch":-138.2817025014461,"roll":57.49504792923019},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.118"} +{"sensors":[{"euler":{"heading":51.04489107126799,"pitch":132.04247500622088,"roll":25.00149792704098},"location":"Left Knee"},{"euler":{"heading":44.84171888082316,"pitch":106.5088885844432,"roll":34.097372067568784},"location":"Left Ankle"},{"euler":{"heading":32.7399172840805,"pitch":-5.712940347625574,"roll":-3.4023009673735305},"location":"Right Ankle"},{"euler":{"heading":58.74559658583877,"pitch":-157.22684450394627,"roll":54.62241364193728},"location":"Right Hip"},{"euler":{"heading":59.52627711823933,"pitch":-116.73677987778947,"roll":-27.458293074298115},"location":"Right Knee"},{"euler":{"heading":14.315404353999938,"pitch":-136.48914920886196,"roll":56.78802738740527},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.219"} +{"sensors":[{"euler":{"heading":42.78836738176753,"pitch":132.728090258869,"roll":24.924066437745427},"location":"Left Knee"},{"euler":{"heading":43.41076678404732,"pitch":105.46761422446733,"roll":33.86813317517759},"location":"Left Ankle"},{"euler":{"heading":32.74082549011711,"pitch":-5.28245818766647,"roll":-3.4472664259686017},"location":"Right Ankle"},{"euler":{"heading":58.23757976356533,"pitch":-157.38957047453022,"roll":55.52634642778497},"location":"Right Hip"},{"euler":{"heading":60.838751645765385,"pitch":-117.20771674312246,"roll":-27.58116659481685},"location":"Right Knee"},{"euler":{"heading":13.059131651198308,"pitch":-134.48066741285317,"roll":55.86883266116018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.320"} +{"sensors":[{"euler":{"heading":66.39656615026695,"pitch":134.894266396159,"roll":26.411671210127082},"location":"Left Knee"},{"euler":{"heading":39.53993511050383,"pitch":104.25190685606519,"roll":30.818843570609612},"location":"Left Ankle"},{"euler":{"heading":32.27783513361111,"pitch":-4.779964764741683,"roll":-3.8090011604805594},"location":"Right Ankle"},{"euler":{"heading":58.04159252689533,"pitch":-157.6854498404415,"roll":56.451308215129586},"location":"Right Hip"},{"euler":{"heading":62.53171634697412,"pitch":-117.70519946736604,"roll":-28.19770292926268},"location":"Right Knee"},{"euler":{"heading":12.571519929175963,"pitch":-133.08535913222588,"roll":55.22138079784841},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.421"} +{"sensors":[{"euler":{"heading":85.65558980278459,"pitch":137.1040881175884,"roll":27.88261915469892},"location":"Left Knee"},{"euler":{"heading":35.77597160533495,"pitch":103.49667139837402,"roll":27.50075848515927},"location":"Left Ankle"},{"euler":{"heading":31.14368506767198,"pitch":-4.47390368004635,"roll":-4.314685135295767},"location":"Right Ankle"},{"euler":{"heading":58.11298538906425,"pitch":-158.1731600868186,"roll":57.36557208372815},"location":"Right Hip"},{"euler":{"heading":64.68485867703785,"pitch":-118.12563264816689,"roll":-29.546317206897577},"location":"Right Knee"},{"euler":{"heading":12.760849438928874,"pitch":-132.42920082049557,"roll":54.87927535506967},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.522"} +{"sensors":[{"euler":{"heading":102.91118422200097,"pitch":138.14056088522207,"roll":29.1304089840918},"location":"Left Knee"},{"euler":{"heading":33.900939849460975,"pitch":103.18188672731004,"roll":25.51495358814166},"location":"Left Ankle"},{"euler":{"heading":28.45523317700255,"pitch":-4.779596779233066,"roll":-4.843609652943311},"location":"Right Ankle"},{"euler":{"heading":58.76597254889215,"pitch":-158.11507109370825,"roll":57.82425760052055},"location":"Right Hip"},{"euler":{"heading":67.23262986942792,"pitch":-118.5655252316822,"roll":-31.937870258387903},"location":"Right Knee"},{"euler":{"heading":12.874255081183243,"pitch":-131.85924074746333,"roll":54.748071894540075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.623"} +{"sensors":[{"euler":{"heading":117.86049852126091,"pitch":138.35905703929092,"roll":30.176268596599662},"location":"Left Knee"},{"euler":{"heading":33.65579765172203,"pitch":103.17053007419013,"roll":24.574172524757998},"location":"Left Ankle"},{"euler":{"heading":25.11243264417317,"pitch":-5.079992076705239,"roll":-5.512470111065296},"location":"Right Ankle"},{"euler":{"heading":60.45997270807659,"pitch":-157.14693043754966,"roll":57.34156924220265},"location":"Right Hip"},{"euler":{"heading":69.5743903644244,"pitch":-119.70673652042453,"roll":-34.34568462501665},"location":"Right Knee"},{"euler":{"heading":13.305994031617118,"pitch":-131.80128676889842,"roll":54.88499738075698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.724"} +{"sensors":[{"euler":{"heading":130.6420037211504,"pitch":138.00980046241077,"roll":31.04535189597086},"location":"Left Knee"},{"euler":{"heading":34.572793321371115,"pitch":103.38023010387352,"roll":24.44821071666226},"location":"Left Ankle"},{"euler":{"heading":23.469287824807918,"pitch":-5.399374755930717,"roll":-5.8323305043804226},"location":"Right Ankle"},{"euler":{"heading":62.12050233726653,"pitch":-156.1163060875612,"roll":56.114070662410334},"location":"Right Hip"},{"euler":{"heading":69.85686170139512,"pitch":-119.77030503177622,"roll":-35.608878463910216},"location":"Right Knee"},{"euler":{"heading":14.051891715407159,"pitch":-132.49200911093268,"roll":55.175366454233334},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.825"} +{"sensors":[{"euler":{"heading":107.332193598667,"pitch":137.36677497087425,"roll":31.522607717891127},"location":"Left Knee"},{"euler":{"heading":35.33551898849902,"pitch":103.49269343549298,"roll":24.500699629185025},"location":"Left Ankle"},{"euler":{"heading":24.222576233957987,"pitch":-5.979696256256295,"roll":-5.598577131890581},"location":"Right Ankle"},{"euler":{"heading":63.26611110797669,"pitch":-155.5642194863384,"roll":54.44447887265366},"location":"Right Hip"},{"euler":{"heading":67.97756471705411,"pitch":-118.73388999076188,"roll":-35.188295182519845},"location":"Right Knee"},{"euler":{"heading":14.668577231128683,"pitch":-133.63426830730174,"roll":55.55107503709437},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.925"} +{"sensors":[{"euler":{"heading":88.84067731416812,"pitch":136.49359715550568,"roll":31.562074313853728},"location":"Left Knee"},{"euler":{"heading":36.34053761884856,"pitch":103.71336485393302,"roll":24.952476456382783},"location":"Left Ankle"},{"euler":{"heading":26.955897473789953,"pitch":-6.243221183720051,"roll":-4.834145921754466},"location":"Right Ankle"},{"euler":{"heading":63.41935371082191,"pitch":-155.27273584679384,"roll":53.11206610032197},"location":"Right Hip"},{"euler":{"heading":64.51846403833696,"pitch":-117.59986869808687,"roll":-33.071690026956475},"location":"Right Knee"},{"euler":{"heading":15.274588886858396,"pitch":-135.14349479660635,"roll":56.03373175328511},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.25"} +{"sensors":[{"euler":{"heading":74.25870291128234,"pitch":135.4716133143842,"roll":31.086490197352656},"location":"Left Knee"},{"euler":{"heading":37.86499207427506,"pitch":104.04978699624785,"roll":26.033097809575178},"location":"Left Ankle"},{"euler":{"heading":29.877648293671356,"pitch":-6.1546864037405244,"roll":-3.8867829430347918},"location":"Right Ankle"},{"euler":{"heading":61.856361221500215,"pitch":-155.47865886795645,"roll":52.70307021051322},"location":"Right Hip"},{"euler":{"heading":60.824086578594404,"pitch":-116.89476770404993,"roll":-30.27652124341701},"location":"Right Knee"},{"euler":{"heading":15.961040412044323,"pitch":-137.0917963809586,"roll":56.58343663185105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.128"} +{"sensors":[{"euler":{"heading":63.341591121904045,"pitch":134.34470514721497,"roll":28.260187010642667},"location":"Left Knee"},{"euler":{"heading":39.79097878495252,"pitch":104.34826170090189,"roll":28.027572744444463},"location":"Left Ankle"},{"euler":{"heading":31.877584367898717,"pitch":-6.003229796319025,"roll":-3.481381173114859},"location":"Right Ankle"},{"euler":{"heading":60.19608499196187,"pitch":-156.01576662757225,"roll":52.79671401742556},"location":"Right Hip"},{"euler":{"heading":58.792000726208364,"pitch":-116.70263745879959,"roll":-28.323937511770023},"location":"Right Knee"},{"euler":{"heading":16.784699705886347,"pitch":-138.70613323853843,"roll":57.19975702920113},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.228"} +{"sensors":[{"euler":{"heading":55.99601436600213,"pitch":133.20014257142898,"roll":26.208086842018034},"location":"Left Knee"},{"euler":{"heading":42.69972350584953,"pitch":106.140342774125,"roll":31.17001762199653},"location":"Left Ankle"},{"euler":{"heading":32.92654438451163,"pitch":-5.818618025874464,"roll":-3.2156134445218605},"location":"Right Ankle"},{"euler":{"heading":58.91394162927395,"pitch":-156.4898914382172,"roll":53.25600434477889},"location":"Right Hip"},{"euler":{"heading":58.31124726871228,"pitch":-116.78443181593835,"roll":-27.20513168617842},"location":"Right Knee"},{"euler":{"heading":15.729026516913988,"pitch":-137.88390830116353,"roll":57.228317618371165},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.329"} +{"sensors":[{"euler":{"heading":50.22522176074963,"pitch":132.57468264736372,"roll":24.416590925669677},"location":"Left Knee"},{"euler":{"heading":44.50470566412456,"pitch":106.32318783025525,"roll":33.787615986083864},"location":"Left Ankle"},{"euler":{"heading":33.49411162588739,"pitch":-5.467262899366922,"roll":-3.1832126171889326},"location":"Right Ankle"},{"euler":{"heading":58.07815511993712,"pitch":-156.8297355488951,"roll":53.96887009674408},"location":"Right Hip"},{"euler":{"heading":58.892637313475376,"pitch":-117.16760148764713,"roll":-26.698103325427525},"location":"Right Knee"},{"euler":{"heading":14.204713317623876,"pitch":-135.9983983831302,"roll":56.659630621396765},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.430"} +{"sensors":[{"euler":{"heading":42.60473827145776,"pitch":133.07292961433947,"roll":24.174822287179325},"location":"Left Knee"},{"euler":{"heading":43.68178903196737,"pitch":105.29363293240847,"roll":34.063467226636945},"location":"Left Ankle"},{"euler":{"heading":33.58428068241464,"pitch":-4.947189942661478,"roll":-3.356034375219465},"location":"Right Ankle"},{"euler":{"heading":57.566227960819624,"pitch":-157.04212709308942,"roll":54.81606500886828},"location":"Right Hip"},{"euler":{"heading":60.08806106898937,"pitch":-117.75213447916366,"roll":-26.637641608690767},"location":"Right Knee"},{"euler":{"heading":11.99346750139896,"pitch":-134.27441152605834,"roll":55.562399783554746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.531"} +{"sensors":[{"euler":{"heading":66.32944514220812,"pitch":134.98632655278587,"roll":25.543449006976925},"location":"Left Knee"},{"euler":{"heading":40.10073036535585,"pitch":103.9636787531259,"roll":31.661470939472853},"location":"Left Ankle"},{"euler":{"heading":33.21815824320668,"pitch":-4.434971732019678,"roll":-3.524307092248755},"location":"Right Ankle"},{"euler":{"heading":57.3194764836301,"pitch":-157.2818773692009,"roll":55.737248569286486},"location":"Right Hip"},{"euler":{"heading":61.48304426683883,"pitch":-118.3524075069512,"roll":-26.933704457814525},"location":"Right Knee"},{"euler":{"heading":10.830940375267625,"pitch":-132.85116085958254,"roll":54.777628710363125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.632"} +{"sensors":[{"euler":{"heading":84.73856158938452,"pitch":137.55005482401953,"roll":27.192111442850717},"location":"Left Knee"},{"euler":{"heading":35.93788476580212,"pitch":102.78996289949102,"roll":27.965965610143424},"location":"Left Ankle"},{"euler":{"heading":32.26439375165438,"pitch":-3.906079854841978,"roll":-4.06301787571383},"location":"Right Ankle"},{"euler":{"heading":57.27201464205264,"pitch":-157.77230556967535,"roll":56.73727322884944},"location":"Right Hip"},{"euler":{"heading":63.35058251433188,"pitch":-118.87179837931512,"roll":-27.855588190077395},"location":"Right Knee"},{"euler":{"heading":10.94327449979233,"pitch":-132.00324956582537,"roll":54.41233676642546},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.733"} +{"sensors":[{"euler":{"heading":101.26258107221639,"pitch":139.07918272959694,"roll":28.65421845503661},"location":"Left Knee"},{"euler":{"heading":33.462764636418704,"pitch":102.26297436094637,"roll":25.430556773681715},"location":"Left Ankle"},{"euler":{"heading":30.454914209765366,"pitch":-3.891232770828655,"roll":-4.65749937515511},"location":"Right Ankle"},{"euler":{"heading":57.71472285553843,"pitch":-158.3884957469217,"roll":57.57082692922151},"location":"Right Hip"},{"euler":{"heading":65.58126708939946,"pitch":-119.08613400767109,"roll":-29.706425407822174},"location":"Right Knee"},{"euler":{"heading":11.475206322276287,"pitch":-131.5154252260207,"roll":54.24826180360393},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.833"} +{"sensors":[{"euler":{"heading":116.09445253078242,"pitch":139.52349385799187,"roll":29.804828730697704},"location":"Left Knee"},{"euler":{"heading":32.494403737137716,"pitch":102.07743563955198,"roll":23.96867157221623},"location":"Left Ankle"},{"euler":{"heading":26.922183208893745,"pitch":-3.865907399277056,"roll":-5.51053217238186},"location":"Right Ankle"},{"euler":{"heading":59.14736722897826,"pitch":-157.92347797043286,"roll":57.57598013835233},"location":"Right Hip"},{"euler":{"heading":67.87742848319833,"pitch":-119.94001012228802,"roll":-32.058966948699265},"location":"Right Knee"},{"euler":{"heading":12.005876439009548,"pitch":-131.1631847528255,"roll":54.319770840879855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.934"} +{"sensors":[{"euler":{"heading":128.72628789248657,"pitch":139.38451693124807,"roll":30.727081141200145},"location":"Left Knee"},{"euler":{"heading":32.49223680528086,"pitch":102.04034304226529,"roll":23.216597618307933},"location":"Left Ankle"},{"euler":{"heading":24.06525877297669,"pitch":-4.16998302099871,"roll":-5.949483064428666},"location":"Right Ankle"},{"euler":{"heading":61.123031404977496,"pitch":-156.77142213598472,"roll":56.77802661972366},"location":"Right Hip"},{"euler":{"heading":69.16893746765331,"pitch":-120.46295841794999,"roll":-33.96180146937865},"location":"Right Knee"},{"euler":{"heading":12.684146163035425,"pitch":-131.64112234867824,"roll":54.48554781616036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.36"} +{"sensors":[{"euler":{"heading":139.58646264119847,"pitch":138.75935433346112,"roll":31.44269821064896},"location":"Left Knee"},{"euler":{"heading":33.53089135791954,"pitch":102.17324748885315,"roll":23.195993786766962},"location":"Left Ankle"},{"euler":{"heading":23.872268219941464,"pitch":-4.778070699834114,"roll":-5.912671330620208},"location":"Right Ankle"},{"euler":{"heading":62.62179692009364,"pitch":-155.8359710601155,"roll":55.39010391348471},"location":"Right Hip"},{"euler":{"heading":67.86019117822694,"pitch":-119.57468585206001,"roll":-34.07245063884254},"location":"Right Knee"},{"euler":{"heading":13.560559283264471,"pitch":-132.69190816083903,"roll":54.84958634404061},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.137"} +{"sensors":[{"euler":{"heading":114.85804724382689,"pitch":137.81910589874204,"roll":31.787031573416908},"location":"Left Knee"},{"euler":{"heading":34.57753572176786,"pitch":102.34107187131579,"roll":23.462724659011172},"location":"Left Ankle"},{"euler":{"heading":25.854558510468028,"pitch":-5.322368778044578,"roll":-5.457244468864967},"location":"Right Ankle"},{"euler":{"heading":63.24256310789841,"pitch":-155.44134807421682,"roll":53.91423086431919},"location":"Right Hip"},{"euler":{"heading":64.91581924578624,"pitch":-118.24177776621858,"roll":-32.39492733533368},"location":"Right Knee"},{"euler":{"heading":14.44463400149598,"pitch":-134.15997981783372,"roll":55.33357373356658},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.238"} +{"sensors":[{"euler":{"heading":95.20497851101881,"pitch":136.65914252659974,"roll":31.617040334433224},"location":"Left Knee"},{"euler":{"heading":36.00527651456717,"pitch":102.65345527832018,"roll":24.215379233447702},"location":"Left Ankle"},{"euler":{"heading":29.01749030781125,"pitch":-5.618695392467198,"roll":-4.599241980052263},"location":"Right Ankle"},{"euler":{"heading":62.94228394710698,"pitch":-155.13777133766985,"roll":53.090046579399065},"location":"Right Hip"},{"euler":{"heading":61.143495280455895,"pitch":-117.15456861050495,"roll":-29.569010628056237},"location":"Right Knee"},{"euler":{"heading":15.36470856591293,"pitch":-135.99969772860894,"roll":55.93204516625682},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.338"} +{"sensors":[{"euler":{"heading":79.79083238569127,"pitch":135.40738012053188,"roll":30.886524659335567},"location":"Left Knee"},{"euler":{"heading":38.02448810508462,"pitch":103.0907012363131,"roll":25.800124358957497},"location":"Left Ankle"},{"euler":{"heading":29.88315619511875,"pitch":-5.369592197589,"roll":-3.9833802168686816},"location":"Right Ankle"},{"euler":{"heading":61.174416946945485,"pitch":-155.48732961494412,"roll":52.97446536834077},"location":"Right Hip"},{"euler":{"heading":58.50656392078432,"pitch":-116.91394359380658,"roll":-27.20215887100436},"location":"Right Knee"},{"euler":{"heading":16.498564301354477,"pitch":-138.12220130366293,"roll":56.59843851069854},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.439"} +{"sensors":[{"euler":{"heading":68.22206583779484,"pitch":134.5184491282239,"roll":28.965094014695588},"location":"Left Knee"},{"euler":{"heading":40.03453480546631,"pitch":103.83118204881947,"roll":28.44696348320629},"location":"Left Ankle"},{"euler":{"heading":31.454032082706533,"pitch":-5.274981692398885,"roll":-3.812547251367085},"location":"Right Ankle"},{"euler":{"heading":60.10144376004984,"pitch":-155.73823780451175,"roll":53.27415972934903},"location":"Right Hip"},{"euler":{"heading":57.54839954598847,"pitch":-116.76755170452564,"roll":-25.773890617456306},"location":"Right Knee"},{"euler":{"heading":16.285465074372866,"pitch":-138.56836560117972,"roll":56.82688685998051},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.539"} +{"sensors":[{"euler":{"heading":60.14077441879271,"pitch":133.48221062989015,"roll":26.780541238456454},"location":"Left Knee"},{"euler":{"heading":42.114366302926214,"pitch":104.94712275356015,"roll":31.418717081745452},"location":"Left Ankle"},{"euler":{"heading":32.42516223820336,"pitch":-5.177480388886196,"roll":-3.7055272193654107},"location":"Right Ankle"},{"euler":{"heading":58.97319156737831,"pitch":-156.07823921696684,"roll":53.92584537554079},"location":"Right Hip"},{"euler":{"heading":57.643761131582785,"pitch":-116.83722579148153,"roll":-25.040345186671278},"location":"Right Knee"},{"euler":{"heading":15.022988365212369,"pitch":-136.87339496368995,"roll":56.6114872366093},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.639"} +{"sensors":[{"euler":{"heading":52.18018231623492,"pitch":133.42444976610096,"roll":25.61830101899145},"location":"Left Knee"},{"euler":{"heading":42.7055575338943,"pitch":104.35167662755043,"roll":32.79386986635686},"location":"Left Ankle"},{"euler":{"heading":32.88144001339189,"pitch":-5.077363274015807,"roll":-3.7811013806325544},"location":"Right Ankle"},{"euler":{"heading":58.40015305515797,"pitch":-156.33239025298207,"roll":54.69984401180968},"location":"Right Hip"},{"euler":{"heading":58.572022083750745,"pitch":-116.90621744397552,"roll":-24.92354650909486},"location":"Right Knee"},{"euler":{"heading":13.472032052621278,"pitch":-134.95915858794706,"roll":55.82799203089932},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.742"} +{"sensors":[{"euler":{"heading":75.60857270336804,"pitch":134.727713538081,"roll":26.296703328091272},"location":"Left Knee"},{"euler":{"heading":40.37154845410614,"pitch":103.22428681311135,"roll":31.45200253350438},"location":"Left Ankle"},{"euler":{"heading":32.862649453792905,"pitch":-5.105675944351204,"roll":-3.926775554808683},"location":"Right Ankle"},{"euler":{"heading":58.144980822215594,"pitch":-156.79423218883508,"roll":55.50128631779246},"location":"Right Hip"},{"euler":{"heading":59.86715882273907,"pitch":-116.84974011844363,"roll":-25.341045367458158},"location":"Right Knee"},{"euler":{"heading":12.297235641294941,"pitch":-133.16161541422755,"roll":55.05957366926551},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.842"} +{"sensors":[{"euler":{"heading":92.53844155203883,"pitch":137.11390189296796,"roll":27.78453289109439},"location":"Left Knee"},{"euler":{"heading":36.41527854862317,"pitch":102.09117902196103,"roll":28.127196019722017},"location":"Left Ankle"},{"euler":{"heading":32.3121860780391,"pitch":-4.91726429969198,"roll":-4.468818710539321},"location":"Right Ankle"},{"euler":{"heading":58.096569382656256,"pitch":-157.31321167617224,"roll":56.40485071565161},"location":"Right Hip"},{"euler":{"heading":61.551872669269464,"pitch":-116.96510380754806,"roll":-26.19445428935856},"location":"Right Knee"},{"euler":{"heading":11.983352154884624,"pitch":-131.8977271596705,"roll":54.56044619589265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.943"} +{"sensors":[{"euler":{"heading":107.03080226626275,"pitch":139.2136511905518,"roll":29.12488747538517},"location":"Left Knee"},{"euler":{"heading":33.30074053495736,"pitch":101.59499039950236,"roll":25.047317774657493},"location":"Left Ankle"},{"euler":{"heading":29.501180141276276,"pitch":-4.72299406753655,"roll":-5.06631559059442},"location":"Right Ankle"},{"euler":{"heading":58.14610976321597,"pitch":-158.22872135201723,"roll":57.341369773132904},"location":"Right Hip"},{"euler":{"heading":63.632860824686,"pitch":-117.15272784145391,"roll":-27.674174361323047},"location":"Right Knee"},{"euler":{"heading":12.26142238543355,"pitch":-131.22969078657266,"roll":54.25148556743747},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.44"} +{"sensors":[{"euler":{"heading":120.55587220342721,"pitch":140.03756132022718,"roll":30.254506627703858},"location":"Left Knee"},{"euler":{"heading":32.14176219791878,"pitch":101.52650136892875,"roll":23.330568079530217},"location":"Left Ankle"},{"euler":{"heading":25.796438954053,"pitch":-4.779070773364463,"roll":-5.7437177018909376},"location":"Right Ankle"},{"euler":{"heading":58.97739928655891,"pitch":-158.605299862013,"roll":57.76074037946926},"location":"Right Hip"},{"euler":{"heading":66.05615387389525,"pitch":-117.09063715646633,"roll":-30.190307086310497},"location":"Right Knee"},{"euler":{"heading":12.584230908202944,"pitch":-130.6727637823268,"roll":54.16216463860167},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.144"} +{"sensors":[{"euler":{"heading":132.45658244248415,"pitch":140.03993361019468,"roll":31.258834923429742},"location":"Left Knee"},{"euler":{"heading":31.983517916402274,"pitch":101.59532411975661,"roll":22.276529905553886},"location":"Left Ankle"},{"euler":{"heading":23.036485070517937,"pitch":-4.788196033563051,"roll":-6.469642835048712},"location":"Right Ankle"},{"euler":{"heading":60.5320184601581,"pitch":-157.77483076884246,"roll":57.34354716808059},"location":"Right Hip"},{"euler":{"heading":68.5516400291315,"pitch":-118.34242052016533,"roll":-32.69301457184575},"location":"Right Knee"},{"euler":{"heading":13.217155246407083,"pitch":-130.73361864011594,"roll":54.32509796870644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.245"} +{"sensors":[{"euler":{"heading":142.57542535705394,"pitch":139.58429154927143,"roll":32.05466572354757},"location":"Left Knee"},{"euler":{"heading":32.6981813541896,"pitch":101.78839687949424,"roll":21.923233100584525},"location":"Left Ankle"},{"euler":{"heading":22.078660217262325,"pitch":-5.129390481001034,"roll":-6.799522477276493},"location":"Right Ankle"},{"euler":{"heading":62.29245416515534,"pitch":-156.7142039869497,"roll":56.18720412972284},"location":"Right Hip"},{"euler":{"heading":68.97781769152893,"pitch":-118.49415233122456,"roll":-34.09558259772365},"location":"Right Knee"},{"euler":{"heading":14.032658383802143,"pitch":-131.54373875246299,"roll":54.65089150719671},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.346"} +{"sensors":[{"euler":{"heading":117.02003188222321,"pitch":138.8509457921837,"roll":32.49536372260665},"location":"Left Knee"},{"euler":{"heading":33.443870301633595,"pitch":101.95121299278024,"roll":21.888918392538525},"location":"Left Ankle"},{"euler":{"heading":23.648736093296456,"pitch":-5.640269292440597,"roll":-6.479710351455762},"location":"Right Ankle"},{"euler":{"heading":63.2701630013449,"pitch":-156.14685954806302,"roll":54.67712413804637},"location":"Right Hip"},{"euler":{"heading":66.7702892176065,"pitch":-117.50778752479582,"roll":-33.37899870340276},"location":"Right Knee"},{"euler":{"heading":14.634993077365852,"pitch":-132.7167490164575,"roll":55.028928267484886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.447"} +{"sensors":[{"euler":{"heading":96.74928747984767,"pitch":137.82469572799764,"roll":32.50175005575522},"location":"Left Knee"},{"euler":{"heading":34.42899397690661,"pitch":102.24717392657608,"roll":22.285930017294174},"location":"Left Ankle"},{"euler":{"heading":26.807084405575296,"pitch":-6.007425874832062,"roll":-5.464992799109247},"location":"Right Ankle"},{"euler":{"heading":63.12540601551834,"pitch":-155.78806170286228,"roll":53.72091661375679},"location":"Right Hip"},{"euler":{"heading":63.20890156748305,"pitch":-116.37743828868378,"roll":-31.07183896922036},"location":"Right Knee"},{"euler":{"heading":15.175746526991025,"pitch":-134.06949684415738,"roll":55.54341823152308},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.549"} +{"sensors":[{"euler":{"heading":80.71048303903392,"pitch":136.66420062378356,"roll":31.930834050003032},"location":"Left Knee"},{"euler":{"heading":35.8777053886321,"pitch":102.65766898259645,"roll":23.299159780783732},"location":"Left Ankle"},{"euler":{"heading":29.975776698155805,"pitch":-6.143461564403559,"roll":-4.564636097623668},"location":"Right Ankle"},{"euler":{"heading":61.66918493852844,"pitch":-155.99252685316222,"roll":53.34912878833714},"location":"Right Hip"},{"euler":{"heading":60.037193024944244,"pitch":-115.69349596998562,"roll":-28.57392139872374},"location":"Right Knee"},{"euler":{"heading":15.737421012877146,"pitch":-135.87025947975715,"roll":56.08031106935588},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.650"} +{"sensors":[{"euler":{"heading":68.64808286814167,"pitch":135.48330075809514,"roll":30.462977165025837},"location":"Left Knee"},{"euler":{"heading":37.640603548331015,"pitch":102.99938919032637,"roll":25.399122359114145},"location":"Left Ankle"},{"euler":{"heading":31.827135030507876,"pitch":-6.189267870516432,"roll":-4.189878521237157},"location":"Right Ankle"},{"euler":{"heading":60.25091102289394,"pitch":-156.41535457692504,"roll":53.369425708197745},"location":"Right Hip"},{"euler":{"heading":58.4330679106014,"pitch":-115.4967304522403,"roll":-26.9438206502822},"location":"Right Knee"},{"euler":{"heading":16.23893662128093,"pitch":-136.96464702405916,"roll":56.63747570936162},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.751"} +{"sensors":[{"euler":{"heading":60.21611254686295,"pitch":134.38500736187126,"roll":28.2667351386998},"location":"Left Knee"},{"euler":{"heading":40.380139696229755,"pitch":104.28363374017772,"roll":28.601348530534345},"location":"Left Ankle"},{"euler":{"heading":33.021978597540915,"pitch":-6.27233400869744,"roll":-3.9042774986725504},"location":"Right Ankle"},{"euler":{"heading":58.91127066248099,"pitch":-156.91686699892273,"roll":53.78612749590019},"location":"Right Hip"},{"euler":{"heading":58.23732985372741,"pitch":-115.43758839148302,"roll":-26.12276694690444},"location":"Right Knee"},{"euler":{"heading":15.044343994916773,"pitch":-135.92758113906277,"roll":56.648179573728605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.852"} +{"sensors":[{"euler":{"heading":53.19311831286689,"pitch":133.83114180338893,"roll":26.439933769589363},"location":"Left Knee"},{"euler":{"heading":42.26655044196805,"pitch":104.1436922579322,"roll":31.047119807890496},"location":"Left Ankle"},{"euler":{"heading":33.67926859240952,"pitch":-6.157248643020415,"roll":-3.80636755692327},"location":"Right Ankle"},{"euler":{"heading":58.07002282762357,"pitch":-157.25176693844404,"roll":54.478291862595555},"location":"Right Hip"},{"euler":{"heading":58.939129352108736,"pitch":-115.63377513481838,"roll":-25.873276445728095},"location":"Right Knee"},{"euler":{"heading":13.465736788384897,"pitch":-134.32329161164947,"roll":56.033607933388325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.953"} +{"sensors":[{"euler":{"heading":44.089544811829775,"pitch":134.48335234185708,"roll":26.231616490632224},"location":"Left Knee"},{"euler":{"heading":41.12386245269763,"pitch":102.89934486508908,"roll":31.024801616971708},"location":"Left Ankle"},{"euler":{"heading":33.88451969477793,"pitch":-5.892587457944993,"roll":-3.925857057558075},"location":"Right Ankle"},{"euler":{"heading":57.48822555728385,"pitch":-157.4775205482471,"roll":55.31269991473173},"location":"Right Hip"},{"euler":{"heading":60.10829277652906,"pitch":-116.03722131918663,"roll":-26.04585431976889},"location":"Right Knee"},{"euler":{"heading":11.899690782683372,"pitch":-132.46138377434625,"roll":55.16834137597129},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.54"} +{"sensors":[{"euler":{"heading":67.05768788921749,"pitch":136.48850461808482,"roll":27.505661051908653},"location":"Left Knee"},{"euler":{"heading":37.51284234575255,"pitch":101.60689730744497,"roll":28.400561703225343},"location":"Left Ankle"},{"euler":{"heading":33.47588423356561,"pitch":-5.4450163806341685,"roll":-4.158831588857372},"location":"Right Ankle"},{"euler":{"heading":57.10103020267916,"pitch":-157.83043205411468,"roll":56.17475050323429},"location":"Right Hip"},{"euler":{"heading":61.76120350228013,"pitch":-116.62226609880815,"roll":-26.68358565449317},"location":"Right Knee"},{"euler":{"heading":10.849281022469206,"pitch":-130.92522246536853,"roll":54.510234692402875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.154"} +{"sensors":[{"euler":{"heading":85.3051194164301,"pitch":138.885557087575,"roll":28.89037922101215},"location":"Left Knee"},{"euler":{"heading":33.658401578510244,"pitch":100.49090149148483,"roll":24.902289265711026},"location":"Left Ankle"},{"euler":{"heading":32.45163828033018,"pitch":-4.974622083273589,"roll":-4.643128586716191},"location":"Right Ankle"},{"euler":{"heading":57.04558860502154,"pitch":-158.39353049307795,"roll":57.043978211118414},"location":"Right Hip"},{"euler":{"heading":63.780479451428924,"pitch":-117.15760384704105,"roll":-27.932472607193198},"location":"Right Knee"},{"euler":{"heading":10.827495033959444,"pitch":-130.1713362967356,"roll":54.134706737819904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.255"} +{"sensors":[{"euler":{"heading":102.62421945277578,"pitch":139.9071457566476,"roll":29.99474349174373},"location":"Left Knee"},{"euler":{"heading":31.97682598240477,"pitch":100.46798575590428,"roll":22.72965609394183},"location":"Left Ankle"},{"euler":{"heading":30.44770651932739,"pitch":-4.911637771765917,"roll":-5.134864639051706},"location":"Right Ankle"},{"euler":{"heading":57.41636461909599,"pitch":-159.0992593885403,"roll":57.72350516389466},"location":"Right Hip"},{"euler":{"heading":66.04028176876541,"pitch":-117.60040048038138,"roll":-29.984081967573786},"location":"Right Knee"},{"euler":{"heading":11.1069220715474,"pitch":-129.7269757960013,"roll":53.91380700308076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.356"} +{"sensors":[{"euler":{"heading":117.87523500209691,"pitch":139.92786912454787,"roll":30.88703966017368},"location":"Left Knee"},{"euler":{"heading":31.34311717546293,"pitch":100.5661560303484,"roll":21.584146935124902},"location":"Left Ankle"},{"euler":{"heading":26.928172175088886,"pitch":-4.7654652236266815,"roll":-5.990050563784161},"location":"Right Ankle"},{"euler":{"heading":58.724712602435446,"pitch":-158.55473966085503,"roll":57.577392792529814},"location":"Right Hip"},{"euler":{"heading":68.48513619819248,"pitch":-118.8750363391479,"roll":-32.42911760233498},"location":"Right Knee"},{"euler":{"heading":11.686489774238243,"pitch":-129.3367756684736,"roll":54.0765841033926},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.457"} +{"sensors":[{"euler":{"heading":130.5292184754606,"pitch":139.58990272629674,"roll":31.46853453552067},"location":"Left Knee"},{"euler":{"heading":31.41876785941522,"pitch":100.6193160193563,"roll":21.041064778391586},"location":"Left Ankle"},{"euler":{"heading":24.48633406558005,"pitch":-4.769939403059188,"roll":-6.383387306264441},"location":"Right Ankle"},{"euler":{"heading":60.43213441664504,"pitch":-157.61017395040892,"roll":56.61283628183086},"location":"Right Hip"},{"euler":{"heading":69.55951234314682,"pitch":-119.52901672095025,"roll":-34.21945257186654},"location":"Right Knee"},{"euler":{"heading":12.095640791782436,"pitch":-129.6555130590614,"roll":54.34278319720399},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.558"} +{"sensors":[{"euler":{"heading":141.08053615450734,"pitch":139.0522183580006,"roll":31.780683681784733},"location":"Left Knee"},{"euler":{"heading":32.08713193431141,"pitch":100.57823955420857,"roll":21.08472095553752},"location":"Left Ankle"},{"euler":{"heading":24.466747129398257,"pitch":-4.702644285042908,"roll":-6.364753541540632},"location":"Right Ankle"},{"euler":{"heading":61.758825840147175,"pitch":-156.7197881337272,"roll":55.24657260121785},"location":"Right Hip"},{"euler":{"heading":68.3880792261332,"pitch":-119.23493643409317,"roll":-34.33531923842654},"location":"Right Knee"},{"euler":{"heading":12.501996889157537,"pitch":-130.51468011207487,"roll":54.72634750594618},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.658"} +{"sensors":[{"euler":{"heading":116.09328361850228,"pitch":138.25057986925054,"roll":31.736147745586162},"location":"Left Knee"},{"euler":{"heading":32.907871858875325,"pitch":100.61835948370556,"roll":21.421489723402903},"location":"Left Ankle"},{"euler":{"heading":26.376989037407558,"pitch":-4.671477147993464,"roll":-5.610674166945324},"location":"Right Ankle"},{"euler":{"heading":62.33382287181624,"pitch":-156.24703742528652,"roll":53.87947787890482},"location":"Right Hip"},{"euler":{"heading":65.4729048624322,"pitch":-118.4278075178584,"roll":-32.70413427137262},"location":"Right Knee"},{"euler":{"heading":13.066587814782093,"pitch":-131.7617982684483,"roll":55.25772982606956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.759"} +{"sensors":[{"euler":{"heading":96.1807168585465,"pitch":137.27549425901518,"roll":31.285622060837028},"location":"Left Knee"},{"euler":{"heading":34.11497049799965,"pitch":100.70817077664915,"roll":22.213738613611397},"location":"Left Ankle"},{"euler":{"heading":29.516599543646084,"pitch":-4.952430778834593,"roll":-4.666732998595083},"location":"Right Ankle"},{"euler":{"heading":61.62745890337065,"pitch":-156.205702086612,"roll":53.11210723762009},"location":"Right Hip"},{"euler":{"heading":61.91473767841318,"pitch":-117.33479291178205,"roll":-30.05094473762268},"location":"Right Knee"},{"euler":{"heading":13.736960014307442,"pitch":-133.5145417079508,"roll":55.881251827412385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.859"} +{"sensors":[{"euler":{"heading":80.64327364661374,"pitch":136.23264028554135,"roll":30.22991406575858},"location":"Left Knee"},{"euler":{"heading":35.78110661321107,"pitch":100.88456369933174,"roll":23.85809287918792},"location":"Left Ankle"},{"euler":{"heading":31.93273119583739,"pitch":-5.087752564998438,"roll":-4.03850584991549},"location":"Right Ankle"},{"euler":{"heading":60.02055063935188,"pitch":-156.45367353472113,"roll":52.98253689292329},"location":"Right Hip"},{"euler":{"heading":59.304524966588644,"pitch":-116.75003215320665,"roll":-27.745264573221473},"location":"Right Knee"},{"euler":{"heading":14.755539340690792,"pitch":-135.8080471717033,"roll":56.56436749949497},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.960"} +{"sensors":[{"euler":{"heading":69.43728557360492,"pitch":135.1700815624573,"roll":28.186638916277207},"location":"Left Knee"},{"euler":{"heading":39.785053627721936,"pitch":102.03109832447237,"roll":26.903698670856077},"location":"Left Ankle"},{"euler":{"heading":33.102495314655435,"pitch":-5.103186339593201,"roll":-3.7673041408991264},"location":"Right Ankle"},{"euler":{"heading":59.21611236499097,"pitch":-156.52347871997213,"roll":53.067432376347305},"location":"Right Hip"},{"euler":{"heading":58.18393325512033,"pitch":-116.53005271257396,"roll":-26.318841200736728},"location":"Right Knee"},{"euler":{"heading":14.840442219125013,"pitch":-136.52785296906464,"roll":56.944689541641246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.61"} +{"sensors":[{"euler":{"heading":61.617364927524456,"pitch":134.00051288818298,"roll":25.790761854616708},"location":"Left Knee"},{"euler":{"heading":42.07061469314174,"pitch":103.43717800550117,"roll":30.147106674341874},"location":"Left Ankle"},{"euler":{"heading":33.709523746625166,"pitch":-5.188495669063273,"roll":-3.7240409324833252},"location":"Right Ankle"},{"euler":{"heading":58.25422849654045,"pitch":-156.80662007448427,"roll":53.61987679339731},"location":"Right Hip"},{"euler":{"heading":58.44356489617115,"pitch":-116.40234249054639,"roll":-25.711816616936723},"location":"Right Knee"},{"euler":{"heading":13.923039537709393,"pitch":-135.08049370509826,"roll":56.866716637950944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.162"} +{"sensors":[{"euler":{"heading":53.977798465332675,"pitch":133.73887056431022,"roll":24.419463633022094},"location":"Left Knee"},{"euler":{"heading":42.7945852237194,"pitch":102.94374810247038,"roll":31.84536175892854},"location":"Left Ankle"},{"euler":{"heading":34.04603465731131,"pitch":-5.277580570470541,"roll":-3.9286507459468987},"location":"Right Ankle"},{"euler":{"heading":57.74606849484491,"pitch":-157.05688232211799,"roll":54.446761897661766},"location":"Right Hip"},{"euler":{"heading":59.25068176237155,"pitch":-116.24516354006131,"roll":-25.632214501545324},"location":"Right Knee"},{"euler":{"heading":12.61895761607336,"pitch":-133.4022053055394,"roll":56.183794215442155},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.262"} +{"sensors":[{"euler":{"heading":77.79389575595249,"pitch":134.76252216221621,"roll":24.926530489002463},"location":"Left Knee"},{"euler":{"heading":40.59902222741832,"pitch":101.90272491813614,"roll":30.83153349071673},"location":"Left Ankle"},{"euler":{"heading":33.85189012088002,"pitch":-5.376027200452359,"roll":-4.0602892982604075},"location":"Right Ankle"},{"euler":{"heading":57.57969056113703,"pitch":-157.37846331494538,"roll":55.325786388615036},"location":"Right Hip"},{"euler":{"heading":60.47040708669321,"pitch":-116.10888153260012,"roll":-26.05364506390174},"location":"Right Knee"},{"euler":{"heading":11.551176764214143,"pitch":-131.71115003796078,"roll":55.45287389024544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.362"} +{"sensors":[{"euler":{"heading":95.11256228485004,"pitch":136.79462619967475,"roll":26.336611869597895},"location":"Left Knee"},{"euler":{"heading":36.565861979805184,"pitch":100.93694775249014,"roll":27.62520212244871},"location":"Left Ankle"},{"euler":{"heading":33.11622994722374,"pitch":-5.221351489884159,"roll":-4.333983741761839},"location":"Right Ankle"},{"euler":{"heading":57.46129641376534,"pitch":-157.87753970773707,"roll":56.28171704928305},"location":"Right Hip"},{"euler":{"heading":62.18255376368086,"pitch":-116.30066464449887,"roll":-26.958174147745947},"location":"Right Knee"},{"euler":{"heading":11.229792578937364,"pitch":-130.47822165192585,"roll":54.981732147896196},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.464"} +{"sensors":[{"euler":{"heading":109.66762188682263,"pitch":138.56208280765065,"roll":27.7433561366015},"location":"Left Knee"},{"euler":{"heading":33.50132708289936,"pitch":100.56839121234798,"roll":24.77143523639143},"location":"Left Ankle"},{"euler":{"heading":31.669638518725755,"pitch":-5.004100295112142,"roll":-4.962142710570905},"location":"Right Ankle"},{"euler":{"heading":57.51893341352703,"pitch":-158.8285473379618,"roll":57.265621032909536},"location":"Right Hip"},{"euler":{"heading":64.26222266019407,"pitch":-116.48609501808916,"roll":-28.52576873360108},"location":"Right Knee"},{"euler":{"heading":11.638463320789402,"pitch":-129.91548909137535,"roll":54.70404041760794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.564"} +{"sensors":[{"euler":{"heading":123.12512345226985,"pitch":139.1447626401219,"roll":28.861705966765797},"location":"Left Knee"},{"euler":{"heading":32.40112716607205,"pitch":100.59755734934946,"roll":23.235506844395605},"location":"Left Ankle"},{"euler":{"heading":29.12964090032616,"pitch":-5.152342945441573,"roll":-5.619727720834903},"location":"Right Ankle"},{"euler":{"heading":58.26767282547238,"pitch":-159.16590337071736,"roll":57.84082992283119},"location":"Right Hip"},{"euler":{"heading":66.82712288461421,"pitch":-116.921425184908,"roll":-31.109526300955398},"location":"Right Knee"},{"euler":{"heading":11.996863707966536,"pitch":-129.4716848055947,"roll":54.672740473557184},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.665"} +{"sensors":[{"euler":{"heading":135.04185247390743,"pitch":138.91696103083765,"roll":29.784493242248534},"location":"Left Knee"},{"euler":{"heading":32.40991674323567,"pitch":100.9568862867482,"roll":22.339144053576103},"location":"Left Ankle"},{"euler":{"heading":26.021355408188693,"pitch":-5.256757487109012,"roll":-6.280158392163346},"location":"Right Ankle"},{"euler":{"heading":59.60012205989477,"pitch":-158.48424737171536,"roll":57.5111431218519},"location":"Right Hip"},{"euler":{"heading":68.91536976926439,"pitch":-117.76718798294533,"roll":-33.60802743714787},"location":"Right Knee"},{"euler":{"heading":12.694602471579651,"pitch":-129.63490159208175,"roll":54.9000661620431},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.766"} +{"sensors":[{"euler":{"heading":110.83371471806919,"pitch":138.35411057446487,"roll":30.44114122145531},"location":"Left Knee"},{"euler":{"heading":33.20189424568194,"pitch":101.30581531750755,"roll":22.193922157099887},"location":"Left Ankle"},{"euler":{"heading":24.481051633429185,"pitch":-5.363130218894104,"roll":-6.6756251882218525},"location":"Right Ankle"},{"euler":{"heading":60.95866887950098,"pitch":-157.62962154149926,"roll":56.49343552967407},"location":"Right Hip"},{"euler":{"heading":68.90703013248975,"pitch":-117.7298811316691,"roll":-34.64412547731583},"location":"Right Knee"},{"euler":{"heading":13.349144515208602,"pitch":-130.37117784919448,"roll":55.26629081797805},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.866"} +{"sensors":[{"euler":{"heading":91.48774259693381,"pitch":137.54159053504938,"roll":30.738060231712566},"location":"Left Knee"},{"euler":{"heading":34.12384870959402,"pitch":101.60371657857213,"roll":22.401397016721717},"location":"Left Ankle"},{"euler":{"heading":25.62175686626759,"pitch":-5.59018102058033,"roll":-6.349762859485205},"location":"Right Ankle"},{"euler":{"heading":61.67270991951922,"pitch":-157.11788546212253,"roll":55.12663922104687},"location":"Right Hip"},{"euler":{"heading":66.71827374927096,"pitch":-116.93512371592954,"roll":-33.7683459471561},"location":"Right Knee"},{"euler":{"heading":13.968317131735649,"pitch":-131.5070951870384,"roll":55.7225298421817},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.967"} +{"sensors":[{"euler":{"heading":76.26559376530389,"pitch":136.4793694817039,"roll":30.62028984877365},"location":"Left Knee"},{"euler":{"heading":35.205735936077616,"pitch":101.93273308165524,"roll":22.945854303907655},"location":"Left Ankle"},{"euler":{"heading":28.279904274688576,"pitch":-5.730235248616262,"roll":-5.442531474145415},"location":"Right Ankle"},{"euler":{"heading":61.35367918378289,"pitch":-156.93425769566127,"roll":54.04443730283546},"location":"Right Hip"},{"euler":{"heading":63.1960378969878,"pitch":-115.93653807905503,"roll":-31.3765871258052},"location":"Right Knee"},{"euler":{"heading":14.707161990598307,"pitch":-133.2067782381835,"roll":56.29589247063576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.69"} +{"sensors":[{"euler":{"heading":64.43786285797268,"pitch":135.31010635636062,"roll":29.954863447734006},"location":"Left Knee"},{"euler":{"heading":36.727731930132535,"pitch":102.32557683752742,"roll":24.092503972693635},"location":"Left Ankle"},{"euler":{"heading":31.08659507497852,"pitch":-5.767787214789135,"roll":-4.627545711170361},"location":"Right Ankle"},{"euler":{"heading":59.85583318047257,"pitch":-157.17237842453977,"roll":53.671601135227114},"location":"Right Hip"},{"euler":{"heading":59.90775411313921,"pitch":-115.26480982027905,"roll":-28.683211797240304},"location":"Right Knee"},{"euler":{"heading":15.633173965013107,"pitch":-135.4938878322439,"roll":56.91578425339197},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.169"} +{"sensors":[{"euler":{"heading":55.68674301756338,"pitch":134.37692075466984,"roll":28.318252154720724},"location":"Left Knee"},{"euler":{"heading":38.56252604097723,"pitch":102.79401220661721,"roll":26.420210435458635},"location":"Left Ankle"},{"euler":{"heading":32.48696898296502,"pitch":-5.813657668356463,"roll":-4.20518670934093},"location":"Right Ankle"},{"euler":{"heading":58.801812431429674,"pitch":-157.4354103986499,"roll":53.6671682058748},"location":"Right Hip"},{"euler":{"heading":58.261685087257405,"pitch":-115.07315119333558,"roll":-26.9238086557019},"location":"Right Knee"},{"euler":{"heading":16.1714151753189,"pitch":-137.0283586185314,"roll":57.42320111007256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.270"} +{"sensors":[{"euler":{"heading":50.245474869403466,"pitch":133.22334836411514,"roll":26.05848808460477},"location":"Left Knee"},{"euler":{"heading":42.14571112135317,"pitch":105.10255021435341,"roll":29.82851637207687},"location":"Left Ankle"},{"euler":{"heading":33.2471486124717,"pitch":-5.884891236723762,"roll":-3.965691957563664},"location":"Right Ankle"},{"euler":{"heading":57.79014870374962,"pitch":-157.7804370139656,"roll":54.11500033795063},"location":"Right Hip"},{"euler":{"heading":58.091056477699716,"pitch":-115.00079430792124,"roll":-25.997643054528044},"location":"Right Knee"},{"euler":{"heading":15.607369501596398,"pitch":-136.22898978563663,"roll":57.56724867381996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.370"} +{"sensors":[{"euler":{"heading":45.45128792336553,"pitch":132.6908059128038,"roll":24.30500396887566},"location":"Left Knee"},{"euler":{"heading":43.682471856682284,"pitch":105.09279513321478,"roll":32.16944401950568},"location":"Left Ankle"},{"euler":{"heading":33.5842080961927,"pitch":-5.878005025978921,"roll":-3.9273383540604794},"location":"Right Ankle"},{"euler":{"heading":57.42553354405626,"pitch":-157.9559009240855,"roll":54.81749785457005},"location":"Right Hip"},{"euler":{"heading":58.629111027773156,"pitch":-115.02449997993534,"roll":-25.61142226326886},"location":"Right Knee"},{"euler":{"heading":14.432092605753473,"pitch":-134.75655209006476,"roll":57.04955519336787},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.471"} +{"sensors":[{"euler":{"heading":37.827831551104666,"pitch":133.3979830452768,"roll":24.32355295112131},"location":"Left Knee"},{"euler":{"heading":42.11674874577841,"pitch":103.82356278727262,"roll":31.7668806748582},"location":"Left Ankle"},{"euler":{"heading":33.59265318995424,"pitch":-5.824211404507618,"roll":-4.017484594186811},"location":"Right Ankle"},{"euler":{"heading":57.3410181243219,"pitch":-158.13845507393938,"roll":55.613693655563765},"location":"Right Hip"},{"euler":{"heading":59.48584103882074,"pitch":-115.05189595937208,"roll":-25.684057535895352},"location":"Right Knee"},{"euler":{"heading":13.160621171797905,"pitch":-133.06746145799664,"roll":56.28384188368539},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.572"} +{"sensors":[{"euler":{"heading":62.68565798457663,"pitch":135.25667807097525,"roll":25.648305140000105},"location":"Left Knee"},{"euler":{"heading":38.15934794368693,"pitch":102.60966768534709,"roll":28.93530847329748},"location":"Left Ankle"},{"euler":{"heading":33.159615259371485,"pitch":-5.644738129369197,"roll":-4.194180602227515},"location":"Right Ankle"},{"euler":{"heading":57.277762298655965,"pitch":-158.52956546421734,"roll":56.47683877607187},"location":"Right Hip"},{"euler":{"heading":60.793752012894174,"pitch":-115.213427973738,"roll":-26.171900225133783},"location":"Right Knee"},{"euler":{"heading":12.315736903171103,"pitch":-131.634170362481,"roll":55.66231068431914},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.673"} +{"sensors":[{"euler":{"heading":82.42685240940628,"pitch":137.5033691015952,"roll":27.096743300456723},"location":"Left Knee"},{"euler":{"heading":34.407736037423206,"pitch":101.75500187282957,"roll":25.629925903559545},"location":"Left Ankle"},{"euler":{"heading":32.12133389851474,"pitch":-5.375321698305402,"roll":-4.69889625844082},"location":"Right Ankle"},{"euler":{"heading":57.279476266359275,"pitch":-159.25802588940422,"roll":57.43623651303914},"location":"Right Hip"},{"euler":{"heading":62.59594092636697,"pitch":-115.44877388219054,"roll":-27.24353952469139},"location":"Right Knee"},{"euler":{"heading":12.533578653979234,"pitch":-130.9971501167744,"roll":55.31987897385749},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.773"} +{"sensors":[{"euler":{"heading":100.1545367290023,"pitch":138.62671175686904,"roll":28.365781740554937},"location":"Left Knee"},{"euler":{"heading":32.85197375364108,"pitch":101.58211214899177,"roll":23.578326197335684},"location":"Left Ankle"},{"euler":{"heading":30.04051157723854,"pitch":-5.3871817120257655,"roll":-5.22099926109463},"location":"Right Ankle"},{"euler":{"heading":57.55436381191204,"pitch":-160.13122264792327,"roll":58.24491853890399},"location":"Right Hip"},{"euler":{"heading":64.77311753817635,"pitch":-115.66767783708825,"roll":-29.116925978234697},"location":"Right Knee"},{"euler":{"heading":12.94975954633527,"pitch":-130.71204644577637,"roll":55.1467631284699},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.874"} +{"sensors":[{"euler":{"heading":115.33581972441576,"pitch":138.9892126911506,"roll":29.258454770257593},"location":"Left Knee"},{"euler":{"heading":31.988343522391165,"pitch":101.28892647130841,"roll":22.346142053529736},"location":"Left Ankle"},{"euler":{"heading":26.73744878459644,"pitch":-5.380077619996541,"roll":-5.919358946044084},"location":"Right Ankle"},{"euler":{"heading":58.83770619065738,"pitch":-159.79769349212134,"roll":58.197839451508},"location":"Right Hip"},{"euler":{"heading":67.41191166566571,"pitch":-116.81700779008189,"roll":-31.584996682586947},"location":"Right Knee"},{"euler":{"heading":13.41537946613103,"pitch":-130.78700046613986,"roll":55.29927091077764},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.975"} +{"sensors":[{"euler":{"heading":128.2894247162659,"pitch":138.78809837387163,"roll":29.99486865618345},"location":"Left Knee"},{"euler":{"heading":31.810336411605896,"pitch":101.09497374981753,"roll":21.593833095279255},"location":"Left Ankle"},{"euler":{"heading":24.30044342382051,"pitch":-5.236907228831808,"roll":-6.212404685926932},"location":"Right Ankle"},{"euler":{"heading":60.17982560101023,"pitch":-158.85379804792623,"roll":57.45963776670316},"location":"Right Hip"},{"euler":{"heading":68.56779642428276,"pitch":-117.64892205416149,"roll":-33.3248318210327},"location":"Right Knee"},{"euler":{"heading":13.969042468535688,"pitch":-131.47313648398602,"roll":55.59779470802176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.75"} +{"sensors":[{"euler":{"heading":105.08485786956678,"pitch":138.32074027441385,"roll":30.375856462753628},"location":"Left Knee"},{"euler":{"heading":32.09264653276228,"pitch":100.9254160734481,"roll":21.376821462597526},"location":"Left Ankle"},{"euler":{"heading":24.368047843744172,"pitch":-5.363004137756498,"roll":-6.001949862806531},"location":"Right Ankle"},{"euler":{"heading":61.15390004696063,"pitch":-158.0234718147035,"roll":56.28630631158642},"location":"Right Hip"},{"euler":{"heading":67.39175877955445,"pitch":-117.33154516659204,"roll":-33.36527591088216},"location":"Right Knee"},{"euler":{"heading":14.404545206789908,"pitch":-132.48639416980862,"roll":55.99277291243501},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.177"} +{"sensors":[{"euler":{"heading":86.7805848938276,"pitch":137.55895704317317,"roll":30.393610914670862},"location":"Left Knee"},{"euler":{"heading":32.6983561316204,"pitch":100.88494840265551,"roll":21.537171501938662},"location":"Left Ankle"},{"euler":{"heading":26.997720469755787,"pitch":-5.596012240524383,"roll":-5.341835236074957},"location":"Right Ankle"},{"euler":{"heading":61.14885460933798,"pitch":-157.6585752951411,"roll":55.289986303441644},"location":"Right Hip"},{"euler":{"heading":64.47281423359418,"pitch":-116.38442958450426,"roll":-31.5826086271163},"location":"Right Knee"},{"euler":{"heading":15.088126292076712,"pitch":-133.9442887910479,"roll":56.54042868991761},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.278"} +{"sensors":[{"euler":{"heading":72.4767765675554,"pitch":136.5783183088234,"roll":29.975669019235255},"location":"Left Knee"},{"euler":{"heading":33.830458404716175,"pitch":100.99696290647151,"roll":22.241127172887644},"location":"Left Ankle"},{"euler":{"heading":30.24483014395252,"pitch":-5.973324079149393,"roll":-4.453193888163338},"location":"Right Ankle"},{"euler":{"heading":60.06267742309081,"pitch":-157.69105329355028,"roll":55.00080784352928},"location":"Right Hip"},{"euler":{"heading":61.21477071725004,"pitch":-115.35499437718636,"roll":-28.970705748910312},"location":"Right Knee"},{"euler":{"heading":16.02834142533283,"pitch":-135.95910229212163,"roll":57.15489490676502},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.378"} +{"sensors":[{"euler":{"heading":61.73391908901743,"pitch":135.38775206877455,"roll":28.812703207718844},"location":"Left Knee"},{"euler":{"heading":35.554093729872434,"pitch":101.44314988150255,"roll":23.841258950537107},"location":"Left Ankle"},{"euler":{"heading":32.31497454085416,"pitch":-6.0888224688812,"roll":-3.916623322181021},"location":"Right Ankle"},{"euler":{"heading":59.04846527027332,"pitch":-157.85123859260716,"roll":54.92938730599721},"location":"Right Hip"},{"euler":{"heading":59.08216593374107,"pitch":-115.00017895309863,"roll":-26.97586900083688},"location":"Right Knee"},{"euler":{"heading":17.196524159392773,"pitch":-137.91899889145202,"roll":57.84170684039228},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.480"} +{"sensors":[{"euler":{"heading":54.49534972660321,"pitch":134.30449304179015,"roll":26.713990286582078},"location":"Left Knee"},{"euler":{"heading":38.56469220055575,"pitch":102.89921280466943,"roll":26.83495829974513},"location":"Left Ankle"},{"euler":{"heading":33.30251490285787,"pitch":-6.205224698548382,"roll":-3.710523447714744},"location":"Right Ankle"},{"euler":{"heading":58.30126377497325,"pitch":-158.02591281570653,"roll":55.1917525608056},"location":"Right Hip"},{"euler":{"heading":58.643959145414186,"pitch":-114.80991208625407,"roll":-25.925845010928565},"location":"Right Knee"},{"euler":{"heading":16.738047690683892,"pitch":-137.86130573172625,"roll":57.9994518478075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.580"} +{"sensors":[{"euler":{"heading":48.88946365726439,"pitch":133.64532555688086,"roll":24.77330011494816},"location":"Left Knee"},{"euler":{"heading":40.64926724938116,"pitch":103.33686232763735,"roll":29.442812002354813},"location":"Left Ankle"},{"euler":{"heading":34.03382287261956,"pitch":-6.286772944707922,"roll":-3.607263114451556},"location":"Right Ankle"},{"euler":{"heading":57.56460454734697,"pitch":-158.29098670418202,"roll":55.779933490995646},"location":"Right Hip"},{"euler":{"heading":58.974811590465,"pitch":-114.7863770308541,"roll":-25.45727438861534},"location":"Right Knee"},{"euler":{"heading":15.447070285310016,"pitch":-136.28115657013439,"roll":57.72601984007109},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.681"} +{"sensors":[{"euler":{"heading":41.784505147198644,"pitch":133.9406574710326,"roll":24.247896622482994},"location":"Left Knee"},{"euler":{"heading":40.32876512103649,"pitch":102.38329564339674,"roll":30.078454614236414},"location":"Left Ankle"},{"euler":{"heading":34.31157042716315,"pitch":-6.176259383992814,"roll":-3.7635283325107056},"location":"Right Ankle"},{"euler":{"heading":57.335983157323184,"pitch":-158.26330661665168,"roll":56.49646829241738},"location":"Right Hip"},{"euler":{"heading":59.84618928074781,"pitch":-114.99100243544736,"roll":-25.401885582831717},"location":"Right Knee"},{"euler":{"heading":14.068972785383655,"pitch":-134.6135066693126,"roll":56.98513749800303},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.782"} +{"sensors":[{"euler":{"heading":66.7696116822683,"pitch":135.33155910069488,"roll":25.258799002063032},"location":"Left Knee"},{"euler":{"heading":37.37905928298626,"pitch":101.34207768689164,"roll":27.942571496044017},"location":"Left Ankle"},{"euler":{"heading":34.08120113420693,"pitch":-5.987078802768413,"roll":-3.9406006796346515},"location":"Right Ankle"},{"euler":{"heading":57.40443644089366,"pitch":-158.32149390201377,"roll":57.21618646824267},"location":"Right Hip"},{"euler":{"heading":61.053132913724376,"pitch":-115.2712877863676,"roll":-25.797663704622526},"location":"Right Knee"},{"euler":{"heading":13.077330134267012,"pitch":-133.02125752845802,"roll":56.35634868427797},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.882"} +{"sensors":[{"euler":{"heading":85.7945704631352,"pitch":137.49978338772615,"roll":26.77401544161513},"location":"Left Knee"},{"euler":{"heading":33.584531998703824,"pitch":100.3226165081528,"roll":24.594880878471063},"location":"Left Ankle"},{"euler":{"heading":33.36344263049391,"pitch":-5.685097241859503,"roll":-4.380258491849174},"location":"Right Ankle"},{"euler":{"heading":57.56750145186952,"pitch":-158.61790373895056,"roll":57.99823827646257},"location":"Right Hip"},{"euler":{"heading":62.742923340564595,"pitch":-115.53680163039807,"roll":-26.76221484103427},"location":"Right Knee"},{"euler":{"heading":12.949084592238849,"pitch":-132.16905641759288,"roll":55.95978727847085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.983"} +{"sensors":[{"euler":{"heading":102.38883351907617,"pitch":138.9088418996695,"roll":28.156987650829944},"location":"Left Knee"},{"euler":{"heading":31.15534227543086,"pitch":100.04817002543318,"roll":22.07693552528503},"location":"Left Ankle"},{"euler":{"heading":31.753149841077555,"pitch":-5.388060422876062,"roll":-4.998070271043604},"location":"Right Ankle"},{"euler":{"heading":57.837760979935105,"pitch":-159.30228914690656,"roll":58.72967869794023},"location":"Right Hip"},{"euler":{"heading":64.81023227151944,"pitch":-115.84245687458863,"roll":-28.378176578766546},"location":"Right Knee"},{"euler":{"heading":13.254303508626116,"pitch":-131.5822254072254,"roll":55.76147205127704},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.84"} +{"sensors":[{"euler":{"heading":117.36145464524208,"pitch":139.31584891761048,"roll":29.18248304686836},"location":"Left Knee"},{"euler":{"heading":30.45645613977158,"pitch":100.07925970126212,"roll":20.862719591919234},"location":"Left Ankle"},{"euler":{"heading":28.78779365376976,"pitch":-5.244130668210293,"roll":-5.699800135907226},"location":"Right Ankle"},{"euler":{"heading":58.653579948405174,"pitch":-159.33893229925005,"roll":58.98131468039087},"location":"Right Hip"},{"euler":{"heading":67.21043417144655,"pitch":-116.40441145344259,"roll":-30.857067685867623},"location":"Right Knee"},{"euler":{"heading":13.533942961825865,"pitch":-131.3247008016011,"roll":55.79010731141086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.185"} +{"sensors":[{"euler":{"heading":130.16798875714724,"pitch":139.08366335477612,"roll":30.009358043779674},"location":"Left Knee"},{"euler":{"heading":30.50252092871271,"pitch":100.16089974271321,"roll":20.06721654325999},"location":"Left Ankle"},{"euler":{"heading":25.628490411561316,"pitch":-5.1852359117060045,"roll":-6.364504540246327},"location":"Right Ankle"},{"euler":{"heading":60.070680388497415,"pitch":-158.4743483234705,"roll":58.465850356735224},"location":"Right Hip"},{"euler":{"heading":69.48487285970143,"pitch":-117.35880821857708,"roll":-33.266623083279256},"location":"Right Knee"},{"euler":{"heading":14.030450283461498,"pitch":-131.85267257977284,"roll":55.98248725811066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.285"} +{"sensors":[{"euler":{"heading":106.82516451185204,"pitch":138.48117412235294,"roll":30.567326777183776},"location":"Left Knee"},{"euler":{"heading":31.04558987552023,"pitch":100.29422685782426,"roll":19.763557193663047},"location":"Left Ankle"},{"euler":{"heading":24.397186508588106,"pitch":-5.34597458875691,"roll":-6.549807456358187},"location":"Right Ankle"},{"euler":{"heading":61.37368806267947,"pitch":-157.56121106321348,"roll":57.28598262185316},"location":"Right Hip"},{"euler":{"heading":69.55764317670064,"pitch":-117.22360638518606,"roll":-34.1568379572716},"location":"Right Knee"},{"euler":{"heading":14.656966317713875,"pitch":-132.91900653844718,"roll":56.31114507559689},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.386"} +{"sensors":[{"euler":{"heading":88.27094445394502,"pitch":137.6149500194961,"roll":30.751172166702517},"location":"Left Knee"},{"euler":{"heading":31.78751951666648,"pitch":100.4624337024998,"roll":19.815775335283217},"location":"Left Ankle"},{"euler":{"heading":25.856298882513467,"pitch":-5.8540867767155556,"roll":-6.075390223719228},"location":"Right Ankle"},{"euler":{"heading":61.91145694342565,"pitch":-157.12732621672518,"roll":55.88541248628586},"location":"Right Hip"},{"euler":{"heading":67.14397946142454,"pitch":-116.15001639592185,"roll":-33.02420092564689},"location":"Right Knee"},{"euler":{"heading":15.366152113242778,"pitch":-134.41898324860134,"roll":56.757172034421124},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.486"} +{"sensors":[{"euler":{"heading":73.76842503765042,"pitch":136.49224288230715,"roll":30.477576513765452},"location":"Left Knee"},{"euler":{"heading":32.8825259208948,"pitch":100.7216554214194,"roll":20.356486762988585},"location":"Left Ankle"},{"euler":{"heading":29.10809493688876,"pitch":-6.248466448585261,"roll":-5.2477662825576},"location":"Right Ankle"},{"euler":{"heading":61.370805757269196,"pitch":-156.9665816297121,"roll":55.075860162574095},"location":"Right Hip"},{"euler":{"heading":63.479206884876575,"pitch":-115.02397357241155,"roll":-30.435689998355613},"location":"Right Knee"},{"euler":{"heading":16.273824586645425,"pitch":-136.3470243230765,"roll":57.31534871179489},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.587"} +{"sensors":[{"euler":{"heading":62.66072267663448,"pitch":135.3395910986058,"roll":29.54629624928867},"location":"Left Knee"},{"euler":{"heading":34.44499042146209,"pitch":101.06917953939555,"roll":21.678106125583245},"location":"Left Ankle"},{"euler":{"heading":31.74688076096936,"pitch":-6.349682557139714,"roll":-4.510760619468112},"location":"Right Ankle"},{"euler":{"heading":60.262246703257574,"pitch":-157.03515893343427,"roll":54.85461289609028},"location":"Right Hip"},{"euler":{"heading":60.383370183426734,"pitch":-114.53417786309741,"roll":-28.075575048178052},"location":"Right Knee"},{"euler":{"heading":17.302400581549488,"pitch":-138.51972278965874,"roll":57.90366318301255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.688"} +{"sensors":[{"euler":{"heading":54.849934572611915,"pitch":134.3025305335138,"roll":27.53237834551832},"location":"Left Knee"},{"euler":{"heading":36.8479977872957,"pitch":101.93061375410755,"roll":24.42573183911021},"location":"Left Ankle"},{"euler":{"heading":32.95626648937392,"pitch":-6.482887644628535,"roll":-4.384885556291921},"location":"Right Ankle"},{"euler":{"heading":59.80045783341663,"pitch":-157.0674862883744,"roll":54.85060691013565},"location":"Right Hip"},{"euler":{"heading":59.061345231688534,"pitch":-114.20988008487988,"roll":-26.665293378522612},"location":"Right Knee"},{"euler":{"heading":17.407379336487026,"pitch":-139.4750411881797,"roll":58.156584827766096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.788"} +{"sensors":[{"euler":{"heading":49.79216402675466,"pitch":133.19765166030504,"roll":25.198737769600946},"location":"Left Knee"},{"euler":{"heading":40.33757634311741,"pitch":103.50677532788035,"roll":28.1902310100338},"location":"Left Ankle"},{"euler":{"heading":33.72058851204904,"pitch":-6.633148146680049,"roll":-4.223421887692396},"location":"Right Ankle"},{"euler":{"heading":59.13697084568466,"pitch":-157.2691524272734,"roll":55.23937229641896},"location":"Right Hip"},{"euler":{"heading":58.88255940513513,"pitch":-113.9699388761207,"roll":-25.91235171350117},"location":"Right Knee"},{"euler":{"heading":16.46479760744311,"pitch":-138.15755710083812,"roll":58.100072554879794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.889"} +{"sensors":[{"euler":{"heading":44.420188354763866,"pitch":133.01238144808892,"roll":23.812412101419923},"location":"Left Knee"},{"euler":{"heading":41.756075005105906,"pitch":103.09590459933797,"roll":30.461078735010958},"location":"Left Ankle"},{"euler":{"heading":34.04914916752148,"pitch":-6.5967012091232,"roll":-4.208114205681989},"location":"Right Ankle"},{"euler":{"heading":58.932590959957345,"pitch":-157.26733055412345,"roll":55.799242172481314},"location":"Right Hip"},{"euler":{"heading":59.31880991287716,"pitch":-113.9787437458074,"roll":-25.629369176374603},"location":"Right Knee"},{"euler":{"heading":14.890396188956053,"pitch":-136.3054694383207,"roll":57.3414444003718},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.990"} +{"sensors":[{"euler":{"heading":61.28798591547007,"pitch":134.10514026648934,"roll":24.34749814886083},"location":"Left Knee"},{"euler":{"heading":39.992448808234876,"pitch":101.91555608002268,"roll":29.86430504735468},"location":"Left Ankle"},{"euler":{"heading":33.92578396991481,"pitch":-6.456705746438516,"roll":-4.30722351057075},"location":"Right Ankle"},{"euler":{"heading":58.86631516254049,"pitch":-157.3310803703708,"roll":56.44854185322724},"location":"Right Hip"},{"euler":{"heading":60.25270619118096,"pitch":-114.1115625130411,"roll":-25.831094018004457},"location":"Right Knee"},{"euler":{"heading":13.387246954140824,"pitch":-134.35607731951552,"roll":56.452840230675946},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.92"} +{"sensors":[{"euler":{"heading":81.3240572004706,"pitch":136.29490262745753,"roll":25.824550550878353},"location":"Left Knee"},{"euler":{"heading":36.05136440439261,"pitch":100.68696481567902,"roll":26.845106131263567},"location":"Left Ankle"},{"euler":{"heading":33.28374968725434,"pitch":-6.110050959156801,"roll":-4.753623507962108},"location":"Right Ankle"},{"euler":{"heading":58.87744699592202,"pitch":-157.5136174504108,"roll":57.16687372021763},"location":"Right Hip"},{"euler":{"heading":61.62380082052835,"pitch":-114.4219967493502,"roll":-26.524926255416563},"location":"Right Knee"},{"euler":{"heading":12.608313383233241,"pitch":-132.90127697031616,"roll":55.815233076738735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.193"} +{"sensors":[{"euler":{"heading":98.22897630625818,"pitch":138.29419993757014,"roll":27.178934381274505},"location":"Left Knee"},{"euler":{"heading":32.741174496055095,"pitch":100.06275842460124,"roll":23.827733510567576},"location":"Left Ankle"},{"euler":{"heading":31.99110803505787,"pitch":-5.677465529001025,"roll":-5.341864276754814},"location":"Right Ankle"},{"euler":{"heading":58.916288267042304,"pitch":-158.0711810080915,"roll":57.92983516925254},"location":"Right Hip"},{"euler":{"heading":63.45988851899948,"pitch":-114.82775241324173,"roll":-27.84835874730677},"location":"Right Knee"},{"euler":{"heading":12.481819882479028,"pitch":-132.10805146166874,"roll":55.35123909841126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.294"} +{"sensors":[{"euler":{"heading":113.59270434177573,"pitch":139.14611971971013,"roll":28.261795172524646},"location":"Left Knee"},{"euler":{"heading":32.05219920960692,"pitch":100.08056976485106,"roll":22.494535516448412},"location":"Left Ankle"},{"euler":{"heading":29.470148787982417,"pitch":-5.827052747853875,"roll":-5.874148688315068},"location":"Right Ankle"},{"euler":{"heading":59.43560668248477,"pitch":-158.34383937854508,"roll":58.34673581930903},"location":"Right Hip"},{"euler":{"heading":65.75400103325777,"pitch":-115.04033260306035,"roll":-30.240906658949623},"location":"Right Knee"},{"euler":{"heading":12.461481449065653,"pitch":-131.4497345438708,"roll":55.19297604649229},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.396"} +{"sensors":[{"euler":{"heading":126.8621637464725,"pitch":139.3046340138492,"roll":29.087070917294714},"location":"Left Knee"},{"euler":{"heading":31.874511993739933,"pitch":100.11452272561924,"roll":21.51407956717843},"location":"Left Ankle"},{"euler":{"heading":26.09207712755557,"pitch":-5.623527959658219,"roll":-6.7779164280114585},"location":"Right Ankle"},{"euler":{"heading":60.64560463962164,"pitch":-157.72849153740833,"roll":58.00459660514155},"location":"Right Hip"},{"euler":{"heading":68.02480815522613,"pitch":-116.01152641755945,"roll":-32.572332250633856},"location":"Right Knee"},{"euler":{"heading":12.652914128834892,"pitch":-131.28210212038783,"roll":55.25785352185309},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.496"} +{"sensors":[{"euler":{"heading":104.10052268405303,"pitch":138.88921073153833,"roll":29.76249867975835},"location":"Left Knee"},{"euler":{"heading":32.484075963786196,"pitch":100.41278475669127,"roll":21.072787485326344},"location":"Left Ankle"},{"euler":{"heading":24.59841157616911,"pitch":-5.706902294106812,"roll":-7.013073184906378},"location":"Right Ankle"},{"euler":{"heading":61.92766971773901,"pitch":-156.87441323048157,"roll":56.96373051936186},"location":"Right Hip"},{"euler":{"heading":68.46321402236329,"pitch":-116.26607819578959,"roll":-33.70100540698298},"location":"Right Knee"},{"euler":{"heading":13.136650917042974,"pitch":-131.600095020348,"roll":55.53653591449384},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.597"} +{"sensors":[{"euler":{"heading":86.17080747153774,"pitch":137.9722815628242,"roll":30.171535969828003},"location":"Left Knee"},{"euler":{"heading":33.6074435765508,"pitch":100.92643224788475,"roll":21.113426042450353},"location":"Left Ankle"},{"euler":{"heading":25.68812452097288,"pitch":-6.049884494544141,"roll":-6.70861891042487},"location":"Right Ankle"},{"euler":{"heading":62.632595360042856,"pitch":-156.404789744647,"roll":55.54030682128999},"location":"Right Hip"},{"euler":{"heading":66.4321666025662,"pitch":-115.56894776674571,"roll":-32.97439317615717},"location":"Right Knee"},{"euler":{"heading":13.782436990601578,"pitch":-132.32779163463445,"roll":55.967067894977966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.698"} +{"sensors":[{"euler":{"heading":72.10828824848384,"pitch":136.77991144471818,"roll":30.184945162199043},"location":"Left Knee"},{"euler":{"heading":35.01477097496568,"pitch":101.52796113689256,"roll":21.554479778382007},"location":"Left Ankle"},{"euler":{"heading":28.92283149251536,"pitch":-6.3186233865639405,"roll":-5.939665292315247},"location":"Right Ankle"},{"euler":{"heading":62.71632717262903,"pitch":-156.1700890002039,"roll":54.34146580578024},"location":"Right Hip"},{"euler":{"heading":63.02717206188427,"pitch":-114.53385089698615,"roll":-30.681940280690526},"location":"Right Knee"},{"euler":{"heading":14.495510458002528,"pitch":-133.43810954463666,"roll":56.52311416786375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.799"} +{"sensors":[{"euler":{"heading":61.1646624131324,"pitch":135.41559067514183,"roll":29.691727658213146},"location":"Left Knee"},{"euler":{"heading":36.72594802693556,"pitch":102.21495702022804,"roll":22.524327843932504},"location":"Left Ankle"},{"euler":{"heading":31.821108944924582,"pitch":-6.448837667607031,"roll":-5.000100714574235},"location":"Right Ankle"},{"euler":{"heading":61.447192474003586,"pitch":-156.36199506414596,"roll":53.83930459540988},"location":"Right Hip"},{"euler":{"heading":59.5197840317768,"pitch":-113.81124861063458,"roll":-27.929791718976695},"location":"Right Knee"},{"euler":{"heading":15.406366152884143,"pitch":-135.0670658505298,"roll":57.19868050350335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.899"} +{"sensors":[{"euler":{"heading":53.19095460779718,"pitch":134.09781650559094,"roll":28.32390474920075},"location":"Left Knee"},{"euler":{"heading":38.65024499733887,"pitch":102.8722743195055,"roll":24.48991048298284},"location":"Left Ankle"},{"euler":{"heading":33.641301745697376,"pitch":-6.388306096627747,"roll":-4.536357139492263},"location":"Right Ankle"},{"euler":{"heading":60.09292506610844,"pitch":-156.77345838366077,"roll":53.765411118883634},"location":"Right Hip"},{"euler":{"heading":57.54567999799321,"pitch":-113.62111780500531,"roll":-26.004245298664372},"location":"Right Knee"},{"euler":{"heading":16.437548566055398,"pitch":-136.83238788846901,"roll":57.91699918139704},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.0"} +{"sensors":[{"euler":{"heading":48.23165258591118,"pitch":132.94701265445894,"roll":26.117110745085476},"location":"Left Knee"},{"euler":{"heading":42.25915246029379,"pitch":105.00689903640792,"roll":27.784570670799788},"location":"Left Ankle"},{"euler":{"heading":34.62632247322063,"pitch":-6.202735818902547,"roll":-4.229687980647562},"location":"Right Ankle"},{"euler":{"heading":59.05539608444065,"pitch":-157.11605474889575,"roll":54.025538672826706},"location":"Right Hip"},{"euler":{"heading":57.047003606329035,"pitch":-113.75228386621346,"roll":-24.868287708913407},"location":"Right Knee"},{"euler":{"heading":15.890677614859904,"pitch":-136.55701190395925,"roll":58.115144471735306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.102"} +{"sensors":[{"euler":{"heading":44.44446566239594,"pitch":132.22078023390543,"roll":24.179690924653872},"location":"Left Knee"},{"euler":{"heading":44.500685031037136,"pitch":105.55321106744982,"roll":30.254530109722523},"location":"Left Ankle"},{"euler":{"heading":35.05830198786002,"pitch":-5.963474207886995,"roll":-4.148385853177626},"location":"Right Ankle"},{"euler":{"heading":58.3842277171396,"pitch":-157.39038981588,"roll":54.581968225155244},"location":"Right Hip"},{"euler":{"heading":57.41752322061973,"pitch":-114.02555076428906,"roll":-24.33979383660722},"location":"Right Knee"},{"euler":{"heading":14.895931976499174,"pitch":-135.0474258223534,"roll":57.800980674058565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.202"} +{"sensors":[{"euler":{"heading":38.24007057008791,"pitch":132.77052806321714,"roll":23.847496535433088},"location":"Left Knee"},{"euler":{"heading":43.32772379221699,"pitch":104.85254837688665,"roll":30.218427337648954},"location":"Left Ankle"},{"euler":{"heading":35.16824872966744,"pitch":-5.556722495005306,"roll":-4.288848658677599},"location":"Right Ankle"},{"euler":{"heading":57.95358194415672,"pitch":-157.62673816577652,"roll":55.34706099515972},"location":"Right Hip"},{"euler":{"heading":58.27381788472715,"pitch":-114.46901832157585,"roll":-24.242072590557125},"location":"Right Knee"},{"euler":{"heading":13.647427878730708,"pitch":-133.2295956196017,"roll":57.11242076473927},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.303"} +{"sensors":[{"euler":{"heading":57.351375370064396,"pitch":134.63540192651575,"roll":25.07484617074998},"location":"Left Knee"},{"euler":{"heading":39.46004898432627,"pitch":103.8142552517092,"roll":27.575768792331296},"location":"Left Ankle"},{"euler":{"heading":34.73508593082069,"pitch":-5.057866239361476,"roll":-4.493238949867009},"location":"Right Ankle"},{"euler":{"heading":57.84472726855965,"pitch":-157.8703304354472,"roll":56.158280527581425},"location":"Right Hip"},{"euler":{"heading":59.68244262679768,"pitch":-115.04271498315354,"roll":-24.676834141261374},"location":"Right Knee"},{"euler":{"heading":12.880802316099642,"pitch":-131.9057329847032,"roll":56.54881313930018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.404"} +{"sensors":[{"euler":{"heading":73.80230737762375,"pitch":136.86984811042143,"roll":26.506490879431567},"location":"Left Knee"},{"euler":{"heading":35.81163116214524,"pitch":103.02336236963087,"roll":24.494837250636298},"location":"Left Ankle"},{"euler":{"heading":33.54212432976057,"pitch":-4.48161218602235,"roll":-5.005178549835571},"location":"Right Ankle"},{"euler":{"heading":57.93395640787531,"pitch":-158.34639923727343,"roll":57.0350202482377},"location":"Right Hip"},{"euler":{"heading":61.63249424726586,"pitch":-115.63912779366544,"roll":-25.765840025302168},"location":"Right Knee"},{"euler":{"heading":12.75844129144428,"pitch":-131.2012632123841,"roll":56.0982717214869},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.504"} +{"sensors":[{"euler":{"heading":93.70513537022524,"pitch":137.92265763283643,"roll":27.5998100377159},"location":"Left Knee"},{"euler":{"heading":34.56628577128659,"pitch":102.86061672021404,"roll":22.81280629937802},"location":"Left Ankle"},{"euler":{"heading":31.23952507492432,"pitch":-4.412017633912841,"roll":-5.5575995496517105},"location":"Right Ankle"},{"euler":{"heading":58.476696431844054,"pitch":-158.81285387721212,"roll":57.650000942677906},"location":"Right Hip"},{"euler":{"heading":64.02586560389727,"pitch":-115.91126803906631,"roll":-27.803573758916812},"location":"Right Knee"},{"euler":{"heading":12.860392677408797,"pitch":-130.65893099416135,"roll":55.892728480080066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.605"} +{"sensors":[{"euler":{"heading":110.91712654748302,"pitch":138.07864751006008,"roll":28.464275836288483},"location":"Left Knee"},{"euler":{"heading":34.218418088049994,"pitch":102.80847715997186,"roll":21.974488787790897},"location":"Left Ankle"},{"euler":{"heading":27.92728549259714,"pitch":-4.82466786800498,"roll":-6.1644870821834346},"location":"Right Ankle"},{"euler":{"heading":59.70587197643857,"pitch":-158.37881275817037,"roll":57.54060719273736},"location":"Right Hip"},{"euler":{"heading":66.72871890726809,"pitch":-116.63909088234367,"roll":-30.43819414401706},"location":"Right Knee"},{"euler":{"heading":13.276807587690648,"pitch":-130.46545346704428,"roll":56.069401288494205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.705"} +{"sensors":[{"euler":{"heading":91.09230611705904,"pitch":137.7798460982615,"roll":29.139493856004883},"location":"Left Knee"},{"euler":{"heading":34.54000578686727,"pitch":102.85047698567861,"roll":21.643978312957948},"location":"Left Ankle"},{"euler":{"heading":25.619508261794284,"pitch":-5.132666396921072,"roll":-6.517449333968703},"location":"Right Ankle"},{"euler":{"heading":61.1641629480306,"pitch":-157.5461070025875,"roll":56.69845606181401},"location":"Right Hip"},{"euler":{"heading":67.93705524906963,"pitch":-116.90528933130787,"roll":-32.12065017101026},"location":"Right Knee"},{"euler":{"heading":13.796126889717778,"pitch":-130.9919267741449,"roll":56.40168203086845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.806"} +{"sensors":[{"euler":{"heading":75.24026450831242,"pitch":137.20031215103486,"roll":29.54239604746648},"location":"Left Knee"},{"euler":{"heading":35.290836668219605,"pitch":102.93009873460512,"roll":21.761079154884282},"location":"Left Ankle"},{"euler":{"heading":25.685908996053197,"pitch":-5.607561741374665,"roll":-6.307703700621606},"location":"Right Ankle"},{"euler":{"heading":62.3225381556782,"pitch":-156.87584662375644,"roll":55.40133680541346},"location":"Right Hip"},{"euler":{"heading":66.63749628986268,"pitch":-116.26031483771621,"roll":-31.99026718044131},"location":"Right Knee"},{"euler":{"heading":14.465102579070587,"pitch":-132.30660772386963,"roll":56.78558890027732},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.907"} +{"sensors":[{"euler":{"heading":63.009738928496986,"pitch":136.23595356119577,"roll":29.615652125861946},"location":"Left Knee"},{"euler":{"heading":36.416912628691264,"pitch":103.1923963148227,"roll":22.22970455337963},"location":"Left Ankle"},{"euler":{"heading":27.714119975606913,"pitch":-6.013501472748878,"roll":-5.380691958993819},"location":"Right Ankle"},{"euler":{"heading":62.52190574887167,"pitch":-156.66173501429955,"roll":54.19193407132735},"location":"Right Hip"},{"euler":{"heading":63.439053397938004,"pitch":-115.2307954207556,"roll":-29.999514960343102},"location":"Right Knee"},{"euler":{"heading":15.316069830999393,"pitch":-134.001580898812,"roll":57.31133588738741},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.7"} +{"sensors":[{"euler":{"heading":53.65532709990758,"pitch":135.0839000486744,"roll":29.19442450040695},"location":"Left Knee"},{"euler":{"heading":37.9275278488438,"pitch":103.57837554877054,"roll":23.248282759736927},"location":"Left Ankle"},{"euler":{"heading":31.003831197275908,"pitch":-6.267865374008231,"roll":-4.446737214983466},"location":"Right Ankle"},{"euler":{"heading":61.51986742207368,"pitch":-156.8009279818894,"roll":53.73372359364564},"location":"Right Hip"},{"euler":{"heading":59.79163363562735,"pitch":-114.34082611136552,"roll":-27.11608690241109},"location":"Right Knee"},{"euler":{"heading":16.32794219066523,"pitch":-136.1417412603172,"roll":57.92381330870684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.108"} +{"sensors":[{"euler":{"heading":46.86990514119407,"pitch":133.86307630794133,"roll":28.064157359422556},"location":"Left Knee"},{"euler":{"heading":39.94325323840329,"pitch":104.22490391937015,"roll":25.18661639727273},"location":"Left Ankle"},{"euler":{"heading":32.93049846597888,"pitch":-6.313728392685941,"roll":-3.9286167624034305},"location":"Right Ankle"},{"euler":{"heading":60.24755615611505,"pitch":-157.11713007324315,"roll":53.610420425441184},"location":"Right Hip"},{"euler":{"heading":57.53045785151838,"pitch":-114.11815521017067,"roll":-24.97067870811915},"location":"Right Knee"},{"euler":{"heading":17.51318063001333,"pitch":-138.36963910796635,"roll":58.57315378508585},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.208"} +{"sensors":[{"euler":{"heading":42.80628127242708,"pitch":132.76432863791095,"roll":25.93557957410203},"location":"Left Knee"},{"euler":{"heading":43.19301473451742,"pitch":106.17735208251821,"roll":28.426893104601632},"location":"Left Ankle"},{"euler":{"heading":33.84812237324392,"pitch":-6.27793969618785,"roll":-3.721376012871815},"location":"Right Ankle"},{"euler":{"heading":59.49710915593473,"pitch":-157.39730815770605,"roll":53.8317836883949},"location":"Right Hip"},{"euler":{"heading":56.992922576072786,"pitch":-114.10691570502254,"roll":-23.808187599558273},"location":"Right Knee"},{"euler":{"heading":17.00921627791688,"pitch":-138.44149275388213,"roll":58.72671834281616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.309"} +{"sensors":[{"euler":{"heading":39.996232254116464,"pitch":132.03763809730737,"roll":23.80734212533095},"location":"Left Knee"},{"euler":{"heading":44.920502598155814,"pitch":106.29722355484247,"roll":31.15679828378498},"location":"Left Ankle"},{"euler":{"heading":34.391386058583585,"pitch":-6.203938243288667,"roll":-3.7122082521673625},"location":"Right Ankle"},{"euler":{"heading":58.75779251246036,"pitch":-157.66867024661585,"roll":54.4720425523554},"location":"Right Hip"},{"euler":{"heading":57.37324173216539,"pitch":-114.24537804750668,"roll":-23.26757482259519},"location":"Right Knee"},{"euler":{"heading":15.82962613393305,"pitch":-136.91911419192058,"roll":58.449503550344936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.409"} +{"sensors":[{"euler":{"heading":35.76314221220373,"pitch":132.37888561838813,"roll":23.219247313051522},"location":"Left Knee"},{"euler":{"heading":43.79632141733292,"pitch":105.15123235420278,"roll":31.41536700994546},"location":"Left Ankle"},{"euler":{"heading":34.550835004345494,"pitch":-6.071577788966275,"roll":-3.88821711030631},"location":"Right Ankle"},{"euler":{"heading":58.37241723503985,"pitch":-157.90827373036853,"roll":55.277318531524145},"location":"Right Hip"},{"euler":{"heading":58.29106801899723,"pitch":-114.46579409243839,"roll":-23.21834055798089},"location":"Right Knee"},{"euler":{"heading":14.334646635053382,"pitch":-135.14321616111837,"roll":57.6397998767887},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.510"} +{"sensors":[{"euler":{"heading":62.10091982886047,"pitch":133.98374905752814,"roll":24.316109262681735},"location":"Left Knee"},{"euler":{"heading":40.0993844353179,"pitch":103.94183955602993,"roll":28.991786898598566},"location":"Left Ankle"},{"euler":{"heading":34.24143886270855,"pitch":-5.868573805807604,"roll":-4.196115830130358},"location":"Right Ankle"},{"euler":{"heading":58.22928630024176,"pitch":-158.2558817191371,"roll":56.08922700273407},"location":"Right Hip"},{"euler":{"heading":59.67278578738765,"pitch":-114.73064146215057,"roll":-23.685086154548607},"location":"Right Knee"},{"euler":{"heading":13.235410515718486,"pitch":-133.56003152242047,"roll":56.91900981724691},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.611"} +{"sensors":[{"euler":{"heading":77.76851818755414,"pitch":136.33963674598223,"roll":25.813983452917693},"location":"Left Knee"},{"euler":{"heading":36.12108725608009,"pitch":102.82370892292427,"roll":25.532399132478698},"location":"Left Ankle"},{"euler":{"heading":33.310340571103076,"pitch":-5.577865023487942,"roll":-4.623358398837747},"location":"Right Ankle"},{"euler":{"heading":58.236942307383686,"pitch":-158.83201706052142,"roll":57.01415258791635},"location":"Right Hip"},{"euler":{"heading":61.523517008117665,"pitch":-114.99407647697738,"roll":-24.74358052835293},"location":"Right Knee"},{"euler":{"heading":13.096356558633264,"pitch":-132.66847019266538,"roll":56.4570346998226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.711"} +{"sensors":[{"euler":{"heading":96.37002429859287,"pitch":137.7401479642325,"roll":27.187208400552674},"location":"Left Knee"},{"euler":{"heading":34.118121783166735,"pitch":102.56699444720459,"roll":23.234428424943026},"location":"Left Ankle"},{"euler":{"heading":31.54914662706904,"pitch":-5.582348734450828,"roll":-5.253717164088055},"location":"Right Ankle"},{"euler":{"heading":58.57614826456598,"pitch":-159.692230107038,"roll":57.7202979312656},"location":"Right Hip"},{"euler":{"heading":63.722604085174666,"pitch":-115.02436648975912,"roll":-26.664525542412385},"location":"Right Knee"},{"euler":{"heading":13.392725556587187,"pitch":-132.1054761773915,"roll":56.205473542848395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.811"} +{"sensors":[{"euler":{"heading":112.6354006942519,"pitch":138.2404909787218,"roll":28.15037597389895},"location":"Left Knee"},{"euler":{"heading":33.35205606413888,"pitch":102.32875460833368,"roll":22.100355913758545},"location":"Left Ankle"},{"euler":{"heading":28.228365742012123,"pitch":-5.3604842430735244,"roll":-6.1392144050131625},"location":"Right Ankle"},{"euler":{"heading":59.638670337772005,"pitch":-159.45991315866712,"roll":57.79446702971576},"location":"Right Hip"},{"euler":{"heading":66.49824463012267,"pitch":-115.96140723380051,"roll":-29.264810417271782},"location":"Right Knee"},{"euler":{"heading":13.486759477549688,"pitch":-131.65549000012433,"roll":56.22159973385722},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.912"} +{"sensors":[{"euler":{"heading":126.34586340941826,"pitch":138.19383306264265,"roll":28.944633307881556},"location":"Left Knee"},{"euler":{"heading":33.31933305316305,"pitch":102.27370062137472,"roll":21.371427342875723},"location":"Left Ankle"},{"euler":{"heading":25.325009447166345,"pitch":-5.266740131346023,"roll":-6.61348687070792},"location":"Right Ankle"},{"euler":{"heading":60.996177474910525,"pitch":-158.59571150332192,"roll":57.10652673030633},"location":"Right Hip"},{"euler":{"heading":68.11100692790949,"pitch":-116.7498589739471,"roll":-31.261024938907006},"location":"Right Knee"},{"euler":{"heading":13.712387039821254,"pitch":-131.8963472537961,"roll":56.39076992040993},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.12"} +{"sensors":[{"euler":{"heading":104.01665906700138,"pitch":137.5927545606015,"roll":29.574157360593755},"location":"Left Knee"},{"euler":{"heading":34.17839032341662,"pitch":102.51520371417028,"roll":21.27069696201012},"location":"Left Ankle"},{"euler":{"heading":25.141562999784203,"pitch":-5.140296267569012,"roll":-6.674035132466304},"location":"Right Ankle"},{"euler":{"heading":62.09581221957406,"pitch":-157.81966227063324,"roll":55.79437101389931},"location":"Right Hip"},{"euler":{"heading":67.08908373074956,"pitch":-116.60718500608063,"roll":-31.349155806802948},"location":"Right Knee"},{"euler":{"heading":14.354919328153793,"pitch":-132.708823742334,"roll":56.763824188228156},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.113"} +{"sensors":[{"euler":{"heading":86.54209279769543,"pitch":136.51377591807102,"roll":29.88814975911079},"location":"Left Knee"},{"euler":{"heading":35.33362885657853,"pitch":102.92398368805257,"roll":21.51248577766838},"location":"Left Ankle"},{"euler":{"heading":27.19706637744233,"pitch":-5.614465821172558,"roll":-6.051058676495259},"location":"Right Ankle"},{"euler":{"heading":62.312481569745266,"pitch":-157.54549680952715,"roll":54.44651070180268},"location":"Right Hip"},{"euler":{"heading":64.17742177352017,"pitch":-115.50899774568008,"roll":-29.776107713494664},"location":"Right Knee"},{"euler":{"heading":15.190180059857477,"pitch":-133.967200539144,"roll":57.29758684949695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.214"} +{"sensors":[{"euler":{"heading":72.81657718604887,"pitch":135.24611496118047,"roll":29.720430275849537},"location":"Left Knee"},{"euler":{"heading":36.677872515425335,"pitch":103.37116749791804,"roll":22.165281907602875},"location":"Left Ankle"},{"euler":{"heading":30.455616816234595,"pitch":-5.966241033885171,"roll":-5.029554120296492},"location":"Right Ankle"},{"euler":{"heading":61.3840629788798,"pitch":-157.54711423669417,"roll":53.809505643805664},"location":"Right Hip"},{"euler":{"heading":60.26541208668356,"pitch":-114.52716607798288,"roll":-26.89609532961736},"location":"Right Knee"},{"euler":{"heading":16.11190293883014,"pitch":-135.77769410277622,"roll":57.911372146972916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.316"} +{"sensors":[{"euler":{"heading":62.19645200030355,"pitch":133.92068092520327,"roll":28.96224371777207},"location":"Left Knee"},{"euler":{"heading":38.444412207616864,"pitch":103.91850036572144,"roll":23.511034924770147},"location":"Left Ankle"},{"euler":{"heading":32.97508166280325,"pitch":-6.046741352005376,"roll":-4.331141794985387},"location":"Right Ankle"},{"euler":{"heading":59.80936770720405,"pitch":-157.946913416988,"roll":53.637376560629846},"location":"Right Hip"},{"euler":{"heading":57.52005151856545,"pitch":-114.155972834291,"roll":-24.515965588720924},"location":"Right Knee"},{"euler":{"heading":17.21738177431162,"pitch":-138.0996749841136,"roll":58.544060165021264},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.417"} +{"sensors":[{"euler":{"heading":54.60058701806867,"pitch":132.9472503881628,"roll":27.11684461033243},"location":"Left Knee"},{"euler":{"heading":40.85399281143601,"pitch":104.99046307664037,"roll":26.316170426601282},"location":"Left Ankle"},{"euler":{"heading":34.1521658891146,"pitch":-5.947170162570472,"roll":-4.020212499281337},"location":"Right Ankle"},{"euler":{"heading":59.18588339396481,"pitch":-158.0768147341437,"roll":53.63619924126564},"location":"Right Hip"},{"euler":{"heading":56.223402506246735,"pitch":-114.18869839158549,"roll":-23.016229342272663},"location":"Right Knee"},{"euler":{"heading":17.230750492841153,"pitch":-138.8214662466908,"roll":58.849024941672155},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.517"} +{"sensors":[{"euler":{"heading":49.724740597008086,"pitch":131.8523862805658,"roll":24.85840349429124},"location":"Left Knee"},{"euler":{"heading":43.89711014796525,"pitch":106.48958779679775,"roll":29.841388698163158},"location":"Left Ankle"},{"euler":{"heading":34.72357086373479,"pitch":-5.619258369830011,"roll":-3.9885632487479232},"location":"Right Ankle"},{"euler":{"heading":58.401890969184635,"pitch":-158.20624981388744,"roll":54.03941483269724},"location":"Right Hip"},{"euler":{"heading":56.190245931238834,"pitch":-114.56313877494617,"roll":-22.200178382965746},"location":"Right Knee"},{"euler":{"heading":16.088307106042315,"pitch":-137.11431004529214,"roll":58.68502720361694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.618"} +{"sensors":[{"euler":{"heading":44.82277081118497,"pitch":131.6642875649175,"roll":23.397436560274556},"location":"Left Knee"},{"euler":{"heading":44.676562700981776,"pitch":105.86632095637037,"roll":31.62817825761223},"location":"Left Ankle"},{"euler":{"heading":35.036858634108725,"pitch":-5.358211006527541,"roll":-4.179901012763404},"location":"Right Ankle"},{"euler":{"heading":58.1464038243208,"pitch":-158.19852093168112,"roll":54.64803218501035},"location":"Right Hip"},{"euler":{"heading":56.79329997193581,"pitch":-114.89006993080974,"roll":-21.91359758685788},"location":"Right Knee"},{"euler":{"heading":14.112446875735984,"pitch":-135.33767994703845,"roll":57.75779443894802},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.718"} +{"sensors":[{"euler":{"heading":61.58194814495903,"pitch":132.90906493925934,"roll":23.87687220171491},"location":"Left Knee"},{"euler":{"heading":42.413467479160296,"pitch":104.41649148963775,"roll":30.43286909382528},"location":"Left Ankle"},{"euler":{"heading":34.93665986061887,"pitch":-5.187394137146442,"roll":-4.299530018296985},"location":"Right Ankle"},{"euler":{"heading":58.13935168858739,"pitch":-158.29854279601068,"roll":55.32955162688576},"location":"Right Hip"},{"euler":{"heading":57.79243110920001,"pitch":-115.14428463261844,"roll":-22.08233991549486},"location":"Right Knee"},{"euler":{"heading":44.438752538993356,"pitch":-135.20448793882895,"roll":55.4978360967043},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.819"} +{"sensors":[{"euler":{"heading":76.85606951498808,"pitch":135.0282993360818,"roll":25.26195078489745},"location":"Left Knee"},{"euler":{"heading":38.34284784198475,"pitch":103.15808470641105,"roll":27.300132490944463},"location":"Left Ankle"},{"euler":{"heading":34.224414606351296,"pitch":-4.907974749047896,"roll":-4.657482244191359},"location":"Right Ankle"},{"euler":{"heading":58.29410071338663,"pitch":-158.47822970264957,"roll":56.06514773749565},"location":"Right Hip"},{"euler":{"heading":59.359627352710476,"pitch":-115.48727802559567,"roll":-22.841452020861503},"location":"Right Knee"},{"euler":{"heading":37.896510136364206,"pitch":-133.79977936337895,"roll":54.94512832887128},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.923"} +{"sensors":[{"euler":{"heading":95.05810809874075,"pitch":137.01728541774446,"roll":26.64607064364116},"location":"Left Knee"},{"euler":{"heading":35.18818816162168,"pitch":102.5841879944602,"roll":24.364326983377307},"location":"Left Ankle"},{"euler":{"heading":32.88617490260165,"pitch":-4.649189800816548,"roll":-5.231087212705469},"location":"Right Ankle"},{"euler":{"heading":58.504043352452,"pitch":-159.02726890182825,"roll":56.87940301606254},"location":"Right Hip"},{"euler":{"heading":61.37411876135681,"pitch":-115.74413643021933,"roll":-24.27746240697023},"location":"Right Knee"},{"euler":{"heading":33.30072858462016,"pitch":-133.38481787931525,"roll":54.617410765402134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.23"} +{"sensors":[{"euler":{"heading":111.29961160852912,"pitch":137.87176544148278,"roll":27.785565363978932},"location":"Left Knee"},{"euler":{"heading":33.90123332577848,"pitch":102.26107831402223,"roll":22.81956227119756},"location":"Left Ankle"},{"euler":{"heading":30.1495207920622,"pitch":-4.825247976599789,"roll":-5.869034205812264},"location":"Right Ankle"},{"euler":{"heading":59.29425614863812,"pitch":-159.18519825549816,"roll":57.29515571313285},"location":"Right Hip"},{"euler":{"heading":63.7845815003655,"pitch":-115.81603789331658,"roll":-26.688644942702297},"location":"Right Knee"},{"euler":{"heading":29.50203582825876,"pitch":-132.98554834355159,"roll":54.540843691648426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.123"} +{"sensors":[{"euler":{"heading":91.18550808486297,"pitch":137.9553074353353,"roll":28.703704893114146},"location":"Left Knee"},{"euler":{"heading":33.370663183892475,"pitch":102.05788403107371,"roll":21.778461639126682},"location":"Left Ankle"},{"euler":{"heading":26.85048664102215,"pitch":-4.95483209403262,"roll":-6.6008745391825006},"location":"Right Ankle"},{"euler":{"heading":60.619046591376645,"pitch":-158.44225375585413,"roll":56.9281965144243},"location":"Right Hip"},{"euler":{"heading":66.15065605916953,"pitch":-116.43401334431216,"roll":-29.132057463285772},"location":"Right Knee"},{"euler":{"heading":26.819732500823264,"pitch":-133.1831182078119,"roll":54.6974817444959},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.224"} +{"sensors":[{"euler":{"heading":74.89446133641219,"pitch":137.6622934308977,"roll":29.368037857728616},"location":"Left Knee"},{"euler":{"heading":33.358349772969774,"pitch":101.86807328081264,"roll":21.205004696090523},"location":"Left Ankle"},{"euler":{"heading":25.48693529977668,"pitch":-5.280175299220629,"roll":-6.888544237677828},"location":"Right Ankle"},{"euler":{"heading":61.9475411702313,"pitch":-157.55595071933047,"roll":55.99566821090857},"location":"Right Hip"},{"euler":{"heading":66.50059818599286,"pitch":-116.31543885969678,"roll":-30.231268032948467},"location":"Right Knee"},{"euler":{"heading":24.837496542956615,"pitch":-133.93858909360864,"roll":54.99379761299365},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.325"} +{"sensors":[{"euler":{"heading":61.959650985961595,"pitch":137.099886979605,"roll":29.731363895989116},"location":"Left Knee"},{"euler":{"heading":33.776329714443115,"pitch":101.70820887860626,"roll":21.04281625741216},"location":"Left Ankle"},{"euler":{"heading":26.825873000566386,"pitch":-6.002632406277112,"roll":-6.358123464653494},"location":"Right Ankle"},{"euler":{"heading":62.44078031680591,"pitch":-157.08094910928062,"roll":54.9021436693241},"location":"Right Hip"},{"euler":{"heading":64.33171836847615,"pitch":-115.34607415830256,"roll":-29.317472535867285},"location":"Right Knee"},{"euler":{"heading":23.50576398110664,"pitch":-135.46048424522417,"roll":55.35705137959385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.426"} +{"sensors":[{"euler":{"heading":52.11775117142462,"pitch":136.18075317210193,"roll":29.72124603868246},"location":"Left Knee"},{"euler":{"heading":34.701211380682146,"pitch":101.76569202437751,"roll":21.353844668300592},"location":"Left Ankle"},{"euler":{"heading":30.276535545112992,"pitch":-6.5017878391910475,"roll":-5.569002929865058},"location":"Right Ankle"},{"euler":{"heading":61.85177761774156,"pitch":-157.0256863705903,"roll":54.22774186846679},"location":"Right Hip"},{"euler":{"heading":60.7841402730985,"pitch":-114.2608344316765,"roll":-26.83780624487252},"location":"Right Knee"},{"euler":{"heading":22.73638942692415,"pitch":-137.31917915677772,"roll":55.84627396581858},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.526"} +{"sensors":[{"euler":{"heading":44.83210435312613,"pitch":135.03395059228598,"roll":29.141341109927605},"location":"Left Knee"},{"euler":{"heading":36.09465139364176,"pitch":102.03768347245396,"roll":22.330887517795965},"location":"Left Ankle"},{"euler":{"heading":33.06626241870547,"pitch":-6.644305154086256,"roll":-4.664697580430264},"location":"Right Ankle"},{"euler":{"heading":60.55499570723508,"pitch":-157.31456303013294,"roll":53.98015625131431},"location":"Right Hip"},{"euler":{"heading":57.3799813663349,"pitch":-113.56420281528472,"roll":-24.160010559826933},"location":"Right Knee"},{"euler":{"heading":22.45125422516298,"pitch":-139.48858108500815,"roll":56.42570136703697},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.627"} +{"sensors":[{"euler":{"heading":40.043795612125216,"pitch":133.74058929059177,"roll":27.594006681067608},"location":"Left Knee"},{"euler":{"heading":38.2046836955885,"pitch":102.80104351848044,"roll":24.487285073851538},"location":"Left Ankle"},{"euler":{"heading":34.559761819275515,"pitch":-6.481945446981533,"roll":-4.244749817559633},"location":"Right Ankle"},{"euler":{"heading":59.74884032430973,"pitch":-157.5105619361208,"roll":53.92259081012686},"location":"Right Hip"},{"euler":{"heading":55.496346533522114,"pitch":-113.49269714363425,"roll":-22.36714258844745},"location":"Right Knee"},{"euler":{"heading":22.36641852424272,"pitch":-141.17218936579442,"roll":57.02135447340511},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.728"} +{"sensors":[{"euler":{"heading":37.65107770858726,"pitch":132.6594384961527,"roll":25.33179271364247},"location":"Left Knee"},{"euler":{"heading":41.32357782165746,"pitch":104.71652237008772,"roll":27.687070081534742},"location":"Left Ankle"},{"euler":{"heading":35.27728634784247,"pitch":-6.109108504661929,"roll":-4.132288395912266},"location":"Right Ankle"},{"euler":{"heading":58.95201910269562,"pitch":-157.7176429995863,"roll":54.26289158017726},"location":"Right Hip"},{"euler":{"heading":55.2322695305437,"pitch":-113.7549853627006,"roll":-21.392859573890128},"location":"Right Knee"},{"euler":{"heading":20.650104933419634,"pitch":-140.53749787298744,"roll":57.150119898500876},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.828"} +{"sensors":[{"euler":{"heading":34.9547047595183,"pitch":132.35295184810596,"roll":23.873357128058625},"location":"Left Knee"},{"euler":{"heading":42.34938086343432,"pitch":104.51162116020609,"roll":29.417195495870118},"location":"Left Ankle"},{"euler":{"heading":35.472404344324005,"pitch":-5.771737647388944,"roll":-4.2386106250388735},"location":"Right Ankle"},{"euler":{"heading":58.40659829471391,"pitch":-157.89908018542437,"roll":54.957266261542735},"location":"Right Hip"},{"euler":{"heading":55.81866009832764,"pitch":-114.09933897261303,"roll":-21.016606303050633},"location":"Right Knee"},{"euler":{"heading":18.40055555896121,"pitch":-138.94653375532923,"roll":56.636433914513816},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.930"} +{"sensors":[{"euler":{"heading":53.74574406183069,"pitch":133.37169678041565,"roll":24.20645063302762},"location":"Left Knee"},{"euler":{"heading":40.51391884219283,"pitch":103.60088363188619,"roll":28.40842466428331},"location":"Left Ankle"},{"euler":{"heading":35.37057321112259,"pitch":-5.573474703808916,"roll":-4.400217344271967},"location":"Right Ankle"},{"euler":{"heading":58.17998471543469,"pitch":-158.23567209419184,"roll":55.76394783422208},"location":"Right Hip"},{"euler":{"heading":56.79225658694,"pitch":-114.33364697314893,"roll":-21.09231562887135},"location":"Right Knee"},{"euler":{"heading":16.368377146337682,"pitch":-137.03128536536178,"roll":55.987307733350164},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.30"} +{"sensors":[{"euler":{"heading":70.60626279143642,"pitch":135.5182670509255,"roll":25.578014016517564},"location":"Left Knee"},{"euler":{"heading":36.76966357168552,"pitch":102.57463948069358,"roll":25.319630489218305},"location":"Left Ankle"},{"euler":{"heading":34.829405303582796,"pitch":-5.304891892917754,"roll":-4.712919850399661},"location":"Right Ankle"},{"euler":{"heading":58.03010561018653,"pitch":-158.7423861830928,"roll":56.64252657582568},"location":"Right Hip"},{"euler":{"heading":58.24342016607542,"pitch":-114.67051790350523,"roll":-21.67211956658299},"location":"Right Knee"},{"euler":{"heading":15.084931371477326,"pitch":-135.5360371339792,"roll":55.465328013376116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.131"} +{"sensors":[{"euler":{"heading":84.85753516765926,"pitch":137.72223852736897,"roll":26.973685538378003},"location":"Left Knee"},{"euler":{"heading":33.513621605336944,"pitch":101.88977433686244,"roll":22.280900006490942},"location":"Left Ankle"},{"euler":{"heading":33.750149696783765,"pitch":-5.073748616202333,"roll":-5.22179824471605},"location":"Right Ankle"},{"euler":{"heading":58.127361144713305,"pitch":-159.53383636072846,"roll":57.53265550516004},"location":"Right Hip"},{"euler":{"heading":60.222357232207095,"pitch":-114.9337268595336,"roll":-22.951823768117208},"location":"Right Knee"},{"euler":{"heading":14.53345321439497,"pitch":-134.62892234568253,"roll":55.111907726001455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.232"} +{"sensors":[{"euler":{"heading":102.69769072328836,"pitch":138.71774570837485,"roll":28.123633070779874},"location":"Left Knee"},{"euler":{"heading":32.52415475244636,"pitch":101.66244723953652,"roll":20.96404766103933},"location":"Left Ankle"},{"euler":{"heading":31.558488708618956,"pitch":-5.2986002821484846,"roll":-5.872519465424606},"location":"Right Ankle"},{"euler":{"heading":58.67667317230674,"pitch":-160.15487497999888,"roll":58.159751760847556},"location":"Right Hip"},{"euler":{"heading":62.69883303640404,"pitch":-114.91030454873294,"roll":-25.251295271002647},"location":"Right Knee"},{"euler":{"heading":14.31971580716367,"pitch":-133.962674779048,"roll":55.012082897948225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.333"} +{"sensors":[{"euler":{"heading":118.08402588865846,"pitch":138.9348449697871,"roll":28.985832705191097},"location":"Left Knee"},{"euler":{"heading":32.05286290947686,"pitch":101.5399789213319,"roll":19.974601251389682},"location":"Left Ankle"},{"euler":{"heading":27.807952879296494,"pitch":-5.317758414594394,"roll":-6.954801413519773},"location":"Right Ankle"},{"euler":{"heading":59.97662825014096,"pitch":-159.5931742082691,"roll":58.02564923459633},"location":"Right Hip"},{"euler":{"heading":65.30326355714278,"pitch":-115.53714881435728,"roll":-27.87305272031673},"location":"Right Knee"},{"euler":{"heading":14.40035607957398,"pitch":-133.74030364809397,"roll":55.195238049545424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.433"} +{"sensors":[{"euler":{"heading":96.76436031144358,"pitch":138.6853946091511,"roll":29.670890744681728},"location":"Left Knee"},{"euler":{"heading":32.11881304302245,"pitch":101.48266816095011,"roll":19.453830234520666},"location":"Left Ankle"},{"euler":{"heading":25.539634771343763,"pitch":-5.58479705136407,"roll":-7.404998997278084},"location":"Right Ankle"},{"euler":{"heading":61.498818733799254,"pitch":-158.66278833736902,"roll":57.1551944401576},"location":"Right Hip"},{"euler":{"heading":65.89593374602218,"pitch":-115.49794319055049,"roll":-29.264439938992528},"location":"Right Knee"},{"euler":{"heading":14.722032474271545,"pitch":-134.21685062267497,"roll":55.545275117959804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.534"} +{"sensors":[{"euler":{"heading":79.8429191288219,"pitch":138.10890004483304,"roll":30.07080630955776},"location":"Left Knee"},{"euler":{"heading":32.9813747770415,"pitch":101.58538708038316,"roll":19.60090951281813},"location":"Left Ankle"},{"euler":{"heading":25.953445896290958,"pitch":-6.260441115146937,"roll":-7.11082527146196},"location":"Right Ankle"},{"euler":{"heading":62.45386656427292,"pitch":-157.96953804042468,"roll":55.91569821075105},"location":"Right Hip"},{"euler":{"heading":64.06254147571069,"pitch":-114.6598504695062,"roll":-28.704207424334115},"location":"Right Knee"},{"euler":{"heading":15.032983215590875,"pitch":-135.21881563531775,"roll":55.87985086042363},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.635"} +{"sensors":[{"euler":{"heading":66.57624704111888,"pitch":137.27808848455265,"roll":30.028399019146228},"location":"Left Knee"},{"euler":{"heading":34.18704522228988,"pitch":101.73778794685285,"roll":20.179895957989892},"location":"Left Ankle"},{"euler":{"heading":28.278006739210014,"pitch":-6.889650512951117,"roll":-6.2025415750460535},"location":"Right Ankle"},{"euler":{"heading":62.46891400043683,"pitch":-157.72867811939787,"roll":54.91896042354093},"location":"Right Hip"},{"euler":{"heading":60.807496140111375,"pitch":-113.60421587199289,"roll":-26.51474492653038},"location":"Right Knee"},{"euler":{"heading":15.477839186607763,"pitch":-136.55353095318998,"roll":56.28961564871076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.736"} +{"sensors":[{"euler":{"heading":56.272369354954144,"pitch":136.2706595813167,"roll":29.5262917243102},"location":"Left Knee"},{"euler":{"heading":35.66770739759521,"pitch":101.92325415377732,"roll":21.250774664083448},"location":"Left Ankle"},{"euler":{"heading":31.346634910427376,"pitch":-7.46495172350809,"roll":-5.196353758058882},"location":"Right Ankle"},{"euler":{"heading":61.46458722113738,"pitch":-157.8139406683524,"roll":54.62345861814093},"location":"Right Hip"},{"euler":{"heading":57.61908150677465,"pitch":-112.69656089418577,"roll":-23.885516347054267},"location":"Right Knee"},{"euler":{"heading":16.151242765786172,"pitch":-138.2725780361963,"roll":56.82092489931359},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.837"} +{"sensors":[{"euler":{"heading":48.82248663482289,"pitch":135.0677422003531,"roll":28.28122143282084},"location":"Left Knee"},{"euler":{"heading":37.61729011341445,"pitch":102.31699959192426,"roll":23.230488412775692},"location":"Left Ankle"},{"euler":{"heading":33.35981846214841,"pitch":-7.842840068341388,"roll":-4.618816705556062},"location":"Right Ankle"},{"euler":{"heading":60.261745864251594,"pitch":-158.24781108138734,"roll":54.54631624286734},"location":"Right Hip"},{"euler":{"heading":55.73968392812459,"pitch":-112.24980090558724,"roll":-21.987962848534497},"location":"Right Knee"},{"euler":{"heading":16.964218415700795,"pitch":-139.9232258215371,"roll":57.367091782765655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.938"} +{"sensors":[{"euler":{"heading":44.33370917343776,"pitch":133.84251016605756,"roll":26.239010981674333},"location":"Left Knee"},{"euler":{"heading":39.98649630093876,"pitch":103.29160201881172,"roll":26.020693726306988},"location":"Left Ankle"},{"euler":{"heading":34.44935203696787,"pitch":-8.083711584262314,"roll":-4.274577048807248},"location":"Right Ankle"},{"euler":{"heading":59.395766828602895,"pitch":-158.658245528106,"roll":54.75594148831666},"location":"Right Hip"},{"euler":{"heading":55.211537541174934,"pitch":-112.10118715384567,"roll":-20.94273373993088},"location":"Right Knee"},{"euler":{"heading":16.268406543403117,"pitch":-139.5084121180199,"roll":57.54620328001146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.39"} +{"sensors":[{"euler":{"heading":40.11133479368693,"pitch":133.31646838050418,"roll":24.789401251104433},"location":"Left Knee"},{"euler":{"heading":41.23079874542709,"pitch":103.34709770625116,"roll":27.79637221656788},"location":"Left Ankle"},{"euler":{"heading":34.93718001860723,"pitch":-8.1292562949507,"roll":-4.159278314114796},"location":"Right Ankle"},{"euler":{"heading":58.6807588332482,"pitch":-158.97612966149617,"roll":55.32612583653916},"location":"Right Hip"},{"euler":{"heading":55.52820061742502,"pitch":-112.2164131938204,"roll":-20.478501886212374},"location":"Right Knee"},{"euler":{"heading":14.937677167222745,"pitch":-138.0688474711155,"roll":57.19698035445517},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.140"} +{"sensors":[{"euler":{"heading":33.11660123144522,"pitch":134.07709026439838,"roll":24.934285900749543},"location":"Left Knee"},{"euler":{"heading":40.02014186801601,"pitch":102.4103933052884,"roll":27.43524260568828},"location":"Left Ankle"},{"euler":{"heading":35.033402347909835,"pitch":-7.968328109397023,"roll":-4.370048666597411},"location":"Right Ankle"},{"euler":{"heading":58.22016252836221,"pitch":-159.2399938610082,"roll":56.10366497855144},"location":"Right Hip"},{"euler":{"heading":56.24527268508636,"pitch":-112.5228188249249,"roll":-20.421093816376164},"location":"Right Knee"},{"euler":{"heading":13.342726260733752,"pitch":-136.25492484332005,"roll":56.54804000553967},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.241"} +{"sensors":[{"euler":{"heading":59.16699028351735,"pitch":135.83551342312725,"roll":26.165270319709226},"location":"Left Knee"},{"euler":{"heading":36.722077982406006,"pitch":101.52117568401555,"roll":23.44615592492416},"location":"Left Ankle"},{"euler":{"heading":34.69007224470296,"pitch":-7.834598820183878,"roll":-4.584550736239126},"location":"Right Ankle"},{"euler":{"heading":58.06894846711389,"pitch":-159.75224214980125,"roll":56.86074853895877},"location":"Right Hip"},{"euler":{"heading":57.39126942679803,"pitch":-112.75251518329239,"roll":-20.886388447929203},"location":"Right Knee"},{"euler":{"heading":12.36971942894841,"pitch":-134.74434823167002,"roll":55.96677536430284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.342"} +{"sensors":[{"euler":{"heading":80.01545044450162,"pitch":137.88445540308007,"roll":27.499133823927416},"location":"Left Knee"},{"euler":{"heading":33.67085372842205,"pitch":100.83545097204848,"roll":20.775889407887757},"location":"Left Ankle"},{"euler":{"heading":33.71929824721288,"pitch":-7.749262364912261,"roll":-5.123476155393559},"location":"Right Ankle"},{"euler":{"heading":58.284017093592695,"pitch":-160.4476298574003,"roll":57.67661135246787},"location":"Right Hip"},{"euler":{"heading":59.06682845143523,"pitch":-112.79389308004092,"roll":-22.020858878755316},"location":"Right Knee"},{"euler":{"heading":12.238896952546853,"pitch":-133.9422693265484,"roll":55.57160024442124},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.442"} +{"sensors":[{"euler":{"heading":98.77461419852611,"pitch":138.75157087159894,"roll":28.55748097580284},"location":"Left Knee"},{"euler":{"heading":32.36752147703032,"pitch":100.60140076531519,"roll":19.370334080888085},"location":"Left Ankle"},{"euler":{"heading":31.521336960189473,"pitch":-7.981199529700405,"roll":-5.694370642827868},"location":"Right Ankle"},{"euler":{"heading":58.82277881486827,"pitch":-160.7974394052791,"roll":58.26623258891962},"location":"Right Hip"},{"euler":{"heading":61.3186798773918,"pitch":-112.69459283225439,"roll":-24.141349501052776},"location":"Right Knee"},{"euler":{"heading":12.107998421386649,"pitch":-133.12136319271977,"roll":55.36264881756589},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.544"} +{"sensors":[{"euler":{"heading":80.93005389743797,"pitch":138.81087451879347,"roll":29.295176555374876},"location":"Left Knee"},{"euler":{"heading":31.966228908155152,"pitch":100.54419256444038,"roll":18.645450396039195},"location":"Left Ankle"},{"euler":{"heading":28.122360910445742,"pitch":-8.357542303237434,"roll":-6.401208680635465},"location":"Right Ankle"},{"euler":{"heading":60.209220235395165,"pitch":-160.22217720371847,"roll":57.943641853508026},"location":"Right Hip"},{"euler":{"heading":63.82242250950472,"pitch":-113.12792558363917,"roll":-26.749784302661418},"location":"Right Knee"},{"euler":{"heading":12.458607534159007,"pitch":-132.83633437781103,"roll":55.48272987529683},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.644"} +{"sensors":[{"euler":{"heading":66.4437988900399,"pitch":138.53159968427218,"roll":29.814066209918625},"location":"Left Knee"},{"euler":{"heading":32.36892382910267,"pitch":100.56376998068934,"roll":18.548380131739155},"location":"Left Ankle"},{"euler":{"heading":26.730485020404192,"pitch":-8.602960577834335,"roll":-6.731652808838778},"location":"Right Ankle"},{"euler":{"heading":61.83789748764608,"pitch":-159.34491831679816,"roll":56.91451939134461},"location":"Right Hip"},{"euler":{"heading":63.000900657630666,"pitch":-112.93145213615549,"roll":-28.004264729366316},"location":"Right Knee"},{"euler":{"heading":12.876482660135691,"pitch":-133.26807459098103,"roll":55.7340756147395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.745"} +{"sensors":[{"euler":{"heading":55.16510927292703,"pitch":137.8983911587036,"roll":30.069565452123427},"location":"Left Knee"},{"euler":{"heading":33.17427460002513,"pitch":100.71822717208069,"roll":18.82915274139996},"location":"Left Ankle"},{"euler":{"heading":27.903543228644306,"pitch":-8.902322457312238,"roll":-6.317226550336699},"location":"Right Ankle"},{"euler":{"heading":62.529363418062196,"pitch":-158.7175772264977,"roll":55.72764389529354},"location":"Right Hip"},{"euler":{"heading":61.29970124454721,"pitch":-112.18291867819832,"roll":-27.165570672435422},"location":"Right Knee"},{"euler":{"heading":13.468341276656872,"pitch":-134.2830028505054,"roll":56.10419949328832},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.846"} +{"sensors":[{"euler":{"heading":46.744637688290304,"pitch":136.90329970346906,"roll":29.89647943046632},"location":"Left Knee"},{"euler":{"heading":34.35093669410087,"pitch":101.01851494102144,"roll":19.523169642597594},"location":"Left Ankle"},{"euler":{"heading":30.707087370422716,"pitch":-9.220770022349514,"roll":-5.377418333126244},"location":"Right Ankle"},{"euler":{"heading":62.16806697676883,"pitch":-158.4769038277427,"roll":54.92715398886635},"location":"Right Hip"},{"euler":{"heading":58.20045773692389,"pitch":-111.31533956307814,"roll":-24.70629934197037},"location":"Right Knee"},{"euler":{"heading":14.297782307015776,"pitch":-135.73646382463016,"roll":56.61152928784519},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.947"} +{"sensors":[{"euler":{"heading":40.634745366025484,"pitch":135.69371024885857,"roll":29.186944594148702},"location":"Left Knee"},{"euler":{"heading":36.117002859587586,"pitch":101.53399547192694,"roll":20.935948846494362},"location":"Left Ankle"},{"euler":{"heading":33.3533993987489,"pitch":-9.384073827521375,"roll":-4.604298298349713},"location":"Right Ankle"},{"euler":{"heading":61.11718377743759,"pitch":-158.53855392555934,"roll":54.660599309320496},"location":"Right Hip"},{"euler":{"heading":55.18123062337982,"pitch":-110.77999176376656,"roll":-22.10046631703501},"location":"Right Knee"},{"euler":{"heading":15.16123225227969,"pitch":-137.4559453553844,"roll":57.15383368200644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.47"} +{"sensors":[{"euler":{"heading":36.75563535247406,"pitch":134.45649551377792,"roll":27.59960029167081},"location":"Left Knee"},{"euler":{"heading":38.27649282008065,"pitch":102.27392510822266,"roll":23.50446929310816},"location":"Left Ankle"},{"euler":{"heading":34.5867834978322,"pitch":-9.2583592202975,"roll":-4.3565646259260715},"location":"Right Ankle"},{"euler":{"heading":60.20915930162737,"pitch":-158.7191910227205,"roll":54.65721292779911},"location":"Right Hip"},{"euler":{"heading":53.59494159919148,"pitch":-110.83064656818799,"roll":-20.33704371759815},"location":"Right Knee"},{"euler":{"heading":16.01091150652751,"pitch":-138.83944741861728,"roll":57.64455141298777},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.147"} +{"sensors":[{"euler":{"heading":35.07764183495135,"pitch":133.14077558226677,"roll":25.313073001980374},"location":"Left Knee"},{"euler":{"heading":41.18617990272414,"pitch":103.9422806763119,"roll":26.83341642098761},"location":"Left Ankle"},{"euler":{"heading":35.16266959337006,"pitch":-9.22189220437926,"roll":-4.245357444604039},"location":"Right Ankle"},{"euler":{"heading":59.44188862296118,"pitch":-158.9658793368348,"roll":55.052484286315575},"location":"Right Hip"},{"euler":{"heading":53.44353425155461,"pitch":-110.94188122214739,"roll":-19.41318631676808},"location":"Right Knee"},{"euler":{"heading":15.67214442461525,"pitch":-138.04021282600422,"roll":57.83294143029786},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.248"} +{"sensors":[{"euler":{"heading":31.819040060546858,"pitch":132.63986909087893,"roll":23.73156666741882},"location":"Left Knee"},{"euler":{"heading":42.61737928550029,"pitch":103.91804468435762,"roll":28.989573415324404},"location":"Left Ankle"},{"euler":{"heading":35.43206403966652,"pitch":-9.153222264765125,"roll":-4.251744374947115},"location":"Right Ankle"},{"euler":{"heading":59.05740584257709,"pitch":-159.15937490620104,"roll":55.70742086885927},"location":"Right Hip"},{"euler":{"heading":53.93787407364399,"pitch":-111.03064407308169,"roll":-19.064726004214773},"location":"Right Knee"},{"euler":{"heading":14.574309856260871,"pitch":-136.60356844685742,"roll":57.337536408103404},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.348"} +{"sensors":[{"euler":{"heading":26.838175824396494,"pitch":133.35783689218633,"roll":23.947351211180433},"location":"Left Knee"},{"euler":{"heading":41.13169126797388,"pitch":103.1053882253505,"roll":28.568448402125124},"location":"Left Ankle"},{"euler":{"heading":35.27214422991154,"pitch":-8.89488939623035,"roll":-4.340758055765602},"location":"Right Ankle"},{"euler":{"heading":58.8436619918974,"pitch":-159.38797199323884,"roll":56.45463465829688},"location":"Right Hip"},{"euler":{"heading":54.824208897061716,"pitch":-111.25959605532886,"roll":-19.129912639593627},"location":"Right Knee"},{"euler":{"heading":13.348412192525856,"pitch":-134.90524914141935,"roll":56.6276632145656},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.449"} +{"sensors":[{"euler":{"heading":53.92515219398331,"pitch":135.23818674043486,"roll":25.379233252696398},"location":"Left Knee"},{"euler":{"heading":37.62626810836163,"pitch":102.07871557505607,"roll":25.910330053230282},"location":"Left Ankle"},{"euler":{"heading":34.665577454640335,"pitch":-8.42331811672662,"roll":-4.581827622970346},"location":"Right Ankle"},{"euler":{"heading":58.68053937586467,"pitch":-159.76723772128418,"roll":57.21994940866668},"location":"Right Hip"},{"euler":{"heading":56.209868027750424,"pitch":-111.69269068781401,"roll":-19.682358934100783},"location":"Right Knee"},{"euler":{"heading":12.600296753368823,"pitch":-133.5825134018336,"roll":56.06260565227611},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.550"} +{"sensors":[{"euler":{"heading":76.18717314159963,"pitch":137.1418089152793,"roll":26.79381377920496},"location":"Left Knee"},{"euler":{"heading":34.589562843824204,"pitch":101.43507984642972,"roll":23.160237162717415},"location":"Left Ankle"},{"euler":{"heading":33.40197655872237,"pitch":-7.89553478879437,"roll":-5.245863538150905},"location":"Right Ankle"},{"euler":{"heading":58.683716831512434,"pitch":-160.39580059245986,"roll":58.06109634370518},"location":"Right Hip"},{"euler":{"heading":58.14111543072436,"pitch":-112.07269661193074,"roll":-20.98487034709195},"location":"Right Knee"},{"euler":{"heading":12.576326104305327,"pitch":-133.00391478908747,"roll":55.72371306758455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.651"} +{"sensors":[{"euler":{"heading":95.5686812363683,"pitch":138.02606080439386,"roll":27.925199752923533},"location":"Left Knee"},{"euler":{"heading":33.143540726914324,"pitch":101.03697445258939,"roll":21.480308480598005},"location":"Left Ankle"},{"euler":{"heading":30.940467696881115,"pitch":-7.857909572872894,"roll":-5.888350242075944},"location":"Right Ankle"},{"euler":{"heading":59.197614984325554,"pitch":-160.47111093682778,"roll":58.50118263052353},"location":"Right Hip"},{"euler":{"heading":60.596378913730256,"pitch":-112.1490156591191,"roll":-23.275252989107674},"location":"Right Knee"},{"euler":{"heading":12.372394426734276,"pitch":-132.5219724775952,"roll":55.58947153464399},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.752"} +{"sensors":[{"euler":{"heading":112.00304310139552,"pitch":138.30895653832687,"roll":28.776548803096176},"location":"Left Knee"},{"euler":{"heading":32.50056239204751,"pitch":100.68862941852153,"roll":20.483369954133348},"location":"Left Ankle"},{"euler":{"heading":27.71214417649075,"pitch":-7.704957300214518,"roll":-6.5410641399011205},"location":"Right Ankle"},{"euler":{"heading":60.3556123753605,"pitch":-159.73069555379772,"roll":58.12651575262052},"location":"Right Hip"},{"euler":{"heading":63.15965957857321,"pitch":-112.97312893105541,"roll":-25.7579893870209},"location":"Right Knee"},{"euler":{"heading":12.431337081754714,"pitch":-132.73985872943982,"roll":55.676085483864725},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.853"} +{"sensors":[{"euler":{"heading":125.76269131980237,"pitch":138.24389522598594,"roll":29.356663497354777},"location":"Left Knee"},{"euler":{"heading":32.77670896348281,"pitch":100.44476437011825,"roll":20.247139581017553},"location":"Left Ankle"},{"euler":{"heading":26.180568932638174,"pitch":-7.578445215804851,"roll":-6.834423297961234},"location":"Right Ankle"},{"euler":{"heading":61.47024798670989,"pitch":-158.82289982137436,"roll":57.16323173179916},"location":"Right Hip"},{"euler":{"heading":63.64134731132604,"pitch":-113.14809896046725,"roll":-26.904673768497258},"location":"Right Knee"},{"euler":{"heading":12.735247491052522,"pitch":-133.5969477147631,"roll":55.92092890137599},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.954"} +{"sensors":[{"euler":{"heading":103.33701793833549,"pitch":137.8520856390011,"roll":29.620001291162538},"location":"Left Knee"},{"euler":{"heading":33.25846570210144,"pitch":100.18247981205319,"roll":20.34253660012257},"location":"Left Ankle"},{"euler":{"heading":27.268968000808638,"pitch":-7.8028501180802765,"roll":-6.4875100038029645},"location":"Right Ankle"},{"euler":{"heading":62.026191949405536,"pitch":-158.19765323873304,"roll":55.976478724261874},"location":"Right Hip"},{"euler":{"heading":61.53872349856177,"pitch":-112.54542560370373,"roll":-26.057617371078354},"location":"Right Knee"},{"euler":{"heading":13.180284153529715,"pitch":-134.97298224718543,"roll":56.21977060700367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.54"} +{"sensors":[{"euler":{"heading":85.84291600154475,"pitch":137.09921129764643,"roll":29.47778940999191},"location":"Left Knee"},{"euler":{"heading":34.2296224325012,"pitch":100.14728551130023,"roll":20.957991363700867},"location":"Left Ankle"},{"euler":{"heading":30.175607252319566,"pitch":-8.05941629014604,"roll":-5.674190969327079},"location":"Right Ankle"},{"euler":{"heading":61.6787817291794,"pitch":-157.98265633825267,"roll":55.1285371936519},"location":"Right Hip"},{"euler":{"heading":58.372387666727185,"pitch":-111.72065204468302,"roll":-23.668068166214386},"location":"Right Knee"},{"euler":{"heading":13.79438260644548,"pitch":-136.5807853670998,"roll":56.65070832452999},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.155"} +{"sensors":[{"euler":{"heading":72.27976383541579,"pitch":136.15636053384384,"roll":28.819973044449146},"location":"Left Knee"},{"euler":{"heading":35.83931164610781,"pitch":100.38892321633122,"roll":22.281845724319485},"location":"Left Ankle"},{"euler":{"heading":33.01334898101387,"pitch":-8.261850086996853,"roll":-4.908512306428058},"location":"Right Ankle"},{"euler":{"heading":60.353893786560576,"pitch":-158.1805013042914,"roll":54.84877126008753},"location":"Right Hip"},{"euler":{"heading":55.28038950859205,"pitch":-111.20025669579383,"roll":-21.113434339875983},"location":"Right Knee"},{"euler":{"heading":14.624197667662619,"pitch":-138.55883341153393,"roll":57.117942124404266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.256"} +{"sensors":[{"euler":{"heading":62.33360465508892,"pitch":135.04755014757856,"roll":27.32698995823537},"location":"Left Knee"},{"euler":{"heading":37.66861987015563,"pitch":100.86916868894991,"roll":24.59748637535822},"location":"Left Ankle"},{"euler":{"heading":34.373748971377985,"pitch":-8.230996310279503,"roll":-4.649676223092866},"location":"Right Ankle"},{"euler":{"heading":59.54850644575929,"pitch":-158.2762919766471,"roll":54.785867883069045},"location":"Right Hip"},{"euler":{"heading":53.545336018294066,"pitch":-111.2644415999579,"roll":-19.426067157380896},"location":"Right Knee"},{"euler":{"heading":15.49389917660766,"pitch":-140.1227981003987,"roll":57.54073034552259},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.357"} +{"sensors":[{"euler":{"heading":55.83060529505341,"pitch":133.98476218655625,"roll":25.102066550981565},"location":"Left Knee"},{"euler":{"heading":40.0166344344,"pitch":102.11229268522439,"roll":27.685718263238545},"location":"Left Ankle"},{"euler":{"heading":35.20226823042932,"pitch":-8.321983649130576,"roll":-4.528422746830952},"location":"Right Ankle"},{"euler":{"heading":58.71664225045707,"pitch":-158.5116032593513,"roll":55.097557257524706},"location":"Right Hip"},{"euler":{"heading":53.41480787138944,"pitch":-111.35224745823797,"roll":-18.588866330760272},"location":"Right Knee"},{"euler":{"heading":14.612667378365401,"pitch":-139.17175833620144,"roll":57.55469179745268},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.458"} +{"sensors":[{"euler":{"heading":50.06600376378306,"pitch":133.6354385325975,"roll":23.469288497127593},"location":"Left Knee"},{"euler":{"heading":41.26736643140576,"pitch":101.90541570073604,"roll":29.469480037793403},"location":"Left Ankle"},{"euler":{"heading":35.56555758999859,"pitch":-8.469714208329053,"roll":-4.543554958126258},"location":"Right Ankle"},{"euler":{"heading":58.48141082845432,"pitch":-158.6294056526765,"roll":55.68875320096625},"location":"Right Hip"},{"euler":{"heading":54.02731378980977,"pitch":-111.36630240724432,"roll":-18.35449123829602},"location":"Right Knee"},{"euler":{"heading":13.237131906735199,"pitch":-137.57991331770256,"roll":56.96684909740588},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.559"} +{"sensors":[{"euler":{"heading":66.04751547590416,"pitch":134.5559682496073,"roll":23.822983076215596},"location":"Left Knee"},{"euler":{"heading":39.544732301341924,"pitch":101.11179649568035,"roll":28.628149564310938},"location":"Left Ankle"},{"euler":{"heading":35.57169844693801,"pitch":-8.555829448624568,"roll":-4.753442870571115},"location":"Right Ankle"},{"euler":{"heading":58.60390490129909,"pitch":-158.6943849491655,"roll":56.31289129076667},"location":"Right Hip"},{"euler":{"heading":55.046074729467946,"pitch":-111.37307507269983,"roll":-18.606145052830687},"location":"Right Knee"},{"euler":{"heading":12.069227812888284,"pitch":-135.88978951220287,"roll":56.21494850627171},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.660"} +{"sensors":[{"euler":{"heading":85.9583729468911,"pitch":136.44719740605726,"roll":25.22507847350299},"location":"Left Knee"},{"euler":{"heading":35.96420407627078,"pitch":100.3163812564788,"roll":25.643305535364302},"location":"Left Ankle"},{"euler":{"heading":34.96435988868904,"pitch":-8.425667216591476,"roll":-5.145505670913256},"location":"Right Ankle"},{"euler":{"heading":58.775546605717565,"pitch":-158.89587047810494,"roll":56.96089260020071},"location":"Right Hip"},{"euler":{"heading":56.55800014224062,"pitch":-111.5575627175808,"roll":-19.362992696365716},"location":"Right Knee"},{"euler":{"heading":11.380488060605666,"pitch":-134.39016513994162,"roll":55.635642629796045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.761"} +{"sensors":[{"euler":{"heading":102.24352535541817,"pitch":138.27148438141015,"roll":26.63648703848417},"location":"Left Knee"},{"euler":{"heading":32.871948173861114,"pitch":99.65608290607486,"roll":22.579730796751136},"location":"Left Ankle"},{"euler":{"heading":33.72985359582897,"pitch":-8.117636812779292,"roll":-5.862937292984699},"location":"Right Ankle"},{"euler":{"heading":59.034992798128386,"pitch":-159.39329101585932,"roll":57.719666756711916},"location":"Right Hip"},{"euler":{"heading":58.47967339411272,"pitch":-111.78395406587038,"roll":-20.695883797802082},"location":"Right Knee"},{"euler":{"heading":11.39918885142425,"pitch":-133.52665295181214,"roll":55.230349332083975},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.862"} +{"sensors":[{"euler":{"heading":117.41489040075983,"pitch":138.8758620588796,"roll":27.753112168021588},"location":"Left Knee"},{"euler":{"heading":31.74310502040761,"pitch":99.68285268517621,"roll":20.848007200179744},"location":"Left Ankle"},{"euler":{"heading":31.494307822357896,"pitch":-8.177790311621946,"roll":-6.595357594711931},"location":"Right Ankle"},{"euler":{"heading":59.68143451335648,"pitch":-159.79583200278606,"roll":58.30519235119446},"location":"Right Hip"},{"euler":{"heading":60.89737103454615,"pitch":-111.64398211266833,"roll":-22.995920339900266},"location":"Right Knee"},{"euler":{"heading":11.842563187379731,"pitch":-133.04254767436487,"roll":55.05980467926103},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.962"} +{"sensors":[{"euler":{"heading":96.53157420946141,"pitch":138.64985836591123,"roll":28.650557574396874},"location":"Left Knee"},{"euler":{"heading":31.770058700096442,"pitch":99.98650544942356,"roll":19.92310689892455},"location":"Left Ankle"},{"euler":{"heading":28.011049867587325,"pitch":-7.952792255286589,"roll":-7.608879622159891},"location":"Right Ankle"},{"euler":{"heading":60.87661473692549,"pitch":-159.2028867823923,"roll":58.139418877265},"location":"Right Hip"},{"euler":{"heading":63.42394752093313,"pitch":-112.19509004964706,"roll":-25.62413438673935},"location":"Right Knee"},{"euler":{"heading":12.502862990142967,"pitch":-132.9433754081883,"roll":55.22652968488789},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.63"} +{"sensors":[{"euler":{"heading":79.8306733516909,"pitch":137.99350987723258,"roll":29.325891481180655},"location":"Left Knee"},{"euler":{"heading":32.452057489745094,"pitch":100.36828880538421,"roll":19.567757584144406},"location":"Left Ankle"},{"euler":{"heading":25.908070822529403,"pitch":-8.040517195044892,"roll":-8.109818912199744},"location":"Right Ankle"},{"euler":{"heading":62.206000147228536,"pitch":-158.33340820291875,"roll":57.2819229849377},"location":"Right Hip"},{"euler":{"heading":64.35120652235244,"pitch":-112.2003133543899,"roll":-27.21161386354939},"location":"Right Knee"},{"euler":{"heading":13.275382744137024,"pitch":-133.6562534252366,"roll":55.51413706269911},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.163"} +{"sensors":[{"euler":{"heading":66.67323574940973,"pitch":137.01909679943626,"roll":29.705117305468264},"location":"Left Knee"},{"euler":{"heading":33.396922348685685,"pitch":100.83266120186434,"roll":19.549421533993062},"location":"Left Ankle"},{"euler":{"heading":26.516714467664848,"pitch":-8.5836313013696,"roll":-7.897231937554067},"location":"Right Ankle"},{"euler":{"heading":62.91994508768069,"pitch":-157.7606697799125,"roll":56.060098250713665},"location":"Right Hip"},{"euler":{"heading":62.66692374589904,"pitch":-111.3845873406638,"roll":-26.721804809051715},"location":"Right Knee"},{"euler":{"heading":14.116006841030861,"pitch":-134.90774035411198,"roll":55.88140134835639},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.264"} +{"sensors":[{"euler":{"heading":56.52419752435322,"pitch":135.85794523134007,"roll":29.608316538687724},"location":"Left Knee"},{"euler":{"heading":34.420279582471125,"pitch":101.28258674847952,"roll":19.889548156578538},"location":"Left Ankle"},{"euler":{"heading":29.220780347191422,"pitch":-8.98590210635878,"roll":-6.961703829373744},"location":"Right Ankle"},{"euler":{"heading":62.565163819985,"pitch":-157.64074866546522,"roll":55.15069465056506},"location":"Right Hip"},{"euler":{"heading":59.17130533584931,"pitch":-110.46809797164588,"roll":-24.334473209831508},"location":"Right Knee"},{"euler":{"heading":14.941051007962393,"pitch":-136.47418714302805,"roll":56.36236233807927},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.365"} +{"sensors":[{"euler":{"heading":48.75519911396623,"pitch":134.6407795021054,"roll":28.97970094357545},"location":"Left Knee"},{"euler":{"heading":35.71004674616599,"pitch":101.74322093118903,"roll":20.75617917731826},"location":"Left Ankle"},{"euler":{"heading":32.16613937102194,"pitch":-9.225055472322639,"roll":-5.978425684151684},"location":"Right Ankle"},{"euler":{"heading":61.09155308879713,"pitch":-158.00785964753513,"roll":54.8093679144079},"location":"Right Hip"},{"euler":{"heading":55.72051134828249,"pitch":-109.84687534915926,"roll":-21.62132273374444},"location":"Right Knee"},{"euler":{"heading":15.860353882491285,"pitch":-138.49210187332582,"roll":56.89269687315545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.465"} +{"sensors":[{"euler":{"heading":43.398708696671,"pitch":133.46210756878912,"roll":27.423961292434196},"location":"Left Knee"},{"euler":{"heading":37.521160758028124,"pitch":102.18381855370355,"roll":22.747269437357307},"location":"Left Ankle"},{"euler":{"heading":33.709781206972664,"pitch":-9.096631550859396,"roll":-5.52268925227069},"location":"Right Ankle"},{"euler":{"heading":59.997923077842124,"pitch":-158.34599453370367,"roll":54.678869086093265},"location":"Right Hip"},{"euler":{"heading":53.792746454664574,"pitch":-109.80793355101302,"roll":-19.820244323555777},"location":"Right Knee"},{"euler":{"heading":16.696312377932003,"pitch":-139.878109858234,"roll":57.39041929983303},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.566"} +{"sensors":[{"euler":{"heading":40.38024095187083,"pitch":132.41339263403057,"roll":25.18981349458116},"location":"Left Knee"},{"euler":{"heading":40.12776207189508,"pitch":103.37917558327483,"roll":25.809362607905605},"location":"Left Ankle"},{"euler":{"heading":34.53970599829475,"pitch":-8.915025561048651,"roll":-5.122195328158966},"location":"Right Ankle"},{"euler":{"heading":58.99544448317086,"pitch":-158.6995268261955,"roll":54.965064867022704},"location":"Right Hip"},{"euler":{"heading":53.13581734874345,"pitch":-110.04023493142458,"roll":-18.755297580814414},"location":"Right Knee"},{"euler":{"heading":15.543694224564534,"pitch":-138.9325101211104,"roll":57.39489784776282},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.667"} +{"sensors":[{"euler":{"heading":37.52227786659764,"pitch":132.0589673879405,"roll":23.50707136620098},"location":"Left Knee"},{"euler":{"heading":41.48320907959483,"pitch":103.11123953819396,"roll":27.813229721129645},"location":"Left Ankle"},{"euler":{"heading":34.981435205253504,"pitch":-8.643679289629326,"roll":-4.9203216631574325},"location":"Right Ankle"},{"euler":{"heading":58.47188148689234,"pitch":-158.86485138874394,"roll":55.56291883114942},"location":"Right Hip"},{"euler":{"heading":53.4540488126995,"pitch":-110.44663381271867,"roll":-18.326731499976532},"location":"Right Knee"},{"euler":{"heading":14.035127516377024,"pitch":-137.45260318475334,"roll":56.78658368897225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.768"} +{"sensors":[{"euler":{"heading":55.437843889120465,"pitch":132.88570118702316,"roll":23.553961164029122},"location":"Left Knee"},{"euler":{"heading":39.91171386967257,"pitch":102.12562743558483,"roll":27.301863850861917},"location":"Left Ankle"},{"euler":{"heading":34.998294754878216,"pitch":-8.368418272989885,"roll":-4.939791673979044},"location":"Right Ankle"},{"euler":{"heading":58.28694629043464,"pitch":-159.02039477280312,"roll":56.35360490376545},"location":"Right Hip"},{"euler":{"heading":54.27942061171904,"pitch":-110.82626464738651,"roll":-18.378885498261248},"location":"Right Knee"},{"euler":{"heading":12.639391438996412,"pitch":-135.67946482374427,"roll":56.05183083074967},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.869"} +{"sensors":[{"euler":{"heading":77.24740421925829,"pitch":134.91797844460484,"roll":24.975701942098866},"location":"Left Knee"},{"euler":{"heading":36.26468818324861,"pitch":101.12675607011249,"roll":24.46696387741349},"location":"Left Ankle"},{"euler":{"heading":34.453240419092204,"pitch":-7.90531036464221,"roll":-5.1773859836018605},"location":"Right Ankle"},{"euler":{"heading":58.17713870710268,"pitch":-159.41084502476815,"roll":57.15825663976836},"location":"Right Hip"},{"euler":{"heading":55.638944515166266,"pitch":-111.30057989624041,"roll":-18.949265422377344},"location":"Right Knee"},{"euler":{"heading":11.894899875366486,"pitch":-134.37226149213672,"roll":55.511822740923506},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.970"} +{"sensors":[{"euler":{"heading":95.88388367478282,"pitch":136.54290441219445,"roll":26.303816892952568},"location":"Left Knee"},{"euler":{"heading":33.48659330481939,"pitch":100.68069095233395,"roll":21.931460080855608},"location":"Left Ankle"},{"euler":{"heading":32.96057638308725,"pitch":-7.49814617518752,"roll":-5.665863303731645},"location":"Right Ankle"},{"euler":{"heading":58.378548451449035,"pitch":-160.07925503101478,"roll":57.95770963364833},"location":"Right Hip"},{"euler":{"heading":57.66769857511063,"pitch":-111.66437756020062,"roll":-20.35718414420944},"location":"Right Knee"},{"euler":{"heading":11.927404220232624,"pitch":-133.64124915481992,"roll":55.18370618433517},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.73"} +{"sensors":[{"euler":{"heading":112.21951336003818,"pitch":137.21064289476297,"roll":27.35696232215376},"location":"Left Knee"},{"euler":{"heading":32.38311785706334,"pitch":100.5802684328661,"roll":20.439762414249284},"location":"Left Ankle"},{"euler":{"heading":30.329346795416363,"pitch":-7.337799214299557,"roll":-6.179217948378124},"location":"Right Ankle"},{"euler":{"heading":59.14393859989724,"pitch":-160.10738774811327,"roll":58.32439626646789},"location":"Right Hip"},{"euler":{"heading":60.20874570987634,"pitch":-111.93411592353002,"roll":-22.73700192541399},"location":"Right Knee"},{"euler":{"heading":11.924292204160007,"pitch":-133.1997506911127,"roll":55.0770515335352},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.174"} +{"sensors":[{"euler":{"heading":91.95655855626428,"pitch":137.29762104305365,"roll":28.1137322230082},"location":"Left Knee"},{"euler":{"heading":31.97305389945349,"pitch":100.5310157510899,"roll":19.583422904517814},"location":"Left Ankle"},{"euler":{"heading":27.396063586748955,"pitch":-7.359173859006472,"roll":-6.619958542015258},"location":"Right Ankle"},{"euler":{"heading":60.371115286700544,"pitch":-159.26482942969378,"roll":57.954655562404916},"location":"Right Hip"},{"euler":{"heading":62.53905524621722,"pitch":-112.564640441608,"roll":-25.169869184166906},"location":"Right Knee"},{"euler":{"heading":12.224954777589051,"pitch":-133.6147568787062,"roll":55.20646408775527},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.274"} +{"sensors":[{"euler":{"heading":75.90035099977713,"pitch":136.93042733002875,"roll":28.643936447887402},"location":"Left Knee"},{"euler":{"heading":32.84419142675615,"pitch":100.61724499453678,"roll":19.65872161396078},"location":"Left Ankle"},{"euler":{"heading":26.314152794422327,"pitch":-7.509312010015645,"roll":-6.798797339011129},"location":"Right Ankle"},{"euler":{"heading":61.643465059396476,"pitch":-158.33595079211935,"roll":56.89475888392565},"location":"Right Hip"},{"euler":{"heading":62.74675216690242,"pitch":-112.46336660267127,"roll":-26.229811071091447},"location":"Right Knee"},{"euler":{"heading":12.91108972816186,"pitch":-134.63832416602446,"roll":55.51976143442119},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.375"} +{"sensors":[{"euler":{"heading":63.342131259310165,"pitch":136.20577258716756,"roll":28.88589273231422},"location":"Left Knee"},{"euler":{"heading":33.75367303338303,"pitch":100.79634191752481,"roll":20.018177613084145},"location":"Left Ankle"},{"euler":{"heading":27.7766819315682,"pitch":-7.918652431795922,"roll":-6.3244761937059915},"location":"Right Ankle"},{"euler":{"heading":62.14424066867339,"pitch":-157.92349381134238,"roll":55.55518510639562},"location":"Right Hip"},{"euler":{"heading":60.62192543592585,"pitch":-111.67018013021404,"roll":-25.256701091160416},"location":"Right Knee"},{"euler":{"heading":13.72854450343345,"pitch":-136.18283668782422,"roll":55.90432662502711},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.476"} +{"sensors":[{"euler":{"heading":53.83236465504534,"pitch":135.1814414975346,"roll":28.664880179941346},"location":"Left Knee"},{"euler":{"heading":35.03343326477124,"pitch":101.11892556551669,"roll":20.836900921070715},"location":"Left Ankle"},{"euler":{"heading":30.6983384010296,"pitch":-8.235546609284626,"roll":-5.306689355633045},"location":"Right Ankle"},{"euler":{"heading":61.57924473990093,"pitch":-157.80591999647993,"roll":54.777045636429094},"location":"Right Hip"},{"euler":{"heading":57.30661311121829,"pitch":-110.82164869134675,"roll":-22.657964219012637},"location":"Right Knee"},{"euler":{"heading":14.683250345730611,"pitch":-138.0738881092346,"roll":56.40688808008861},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.577"} +{"sensors":[{"euler":{"heading":46.69381668615245,"pitch":134.1475342856579,"roll":27.84063412892333},"location":"Left Knee"},{"euler":{"heading":36.81257238090678,"pitch":101.54162023687593,"roll":22.404140997904122},"location":"Left Ankle"},{"euler":{"heading":33.25705613782466,"pitch":-8.034781027757093,"roll":-4.540297409321749},"location":"Right Ankle"},{"euler":{"heading":60.18915870182375,"pitch":-158.08003006947231,"roll":54.631785539415326},"location":"Right Hip"},{"euler":{"heading":54.27693769989633,"pitch":-110.66620042459093,"roll":-20.139963375603102},"location":"Right Knee"},{"euler":{"heading":15.702774750684029,"pitch":-140.28445925209294,"roll":56.91515118456054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.678"} +{"sensors":[{"euler":{"heading":42.3707801643919,"pitch":133.35466479959655,"roll":25.7927720496959},"location":"Left Knee"},{"euler":{"heading":38.94709461336051,"pitch":102.29866049087066,"roll":25.13621046946178},"location":"Left Ankle"},{"euler":{"heading":34.50195243348321,"pitch":-7.710425873548376,"roll":-4.411612661315412},"location":"Right Ankle"},{"euler":{"heading":59.270934155500605,"pitch":-158.31617482791285,"roll":54.74410091035025},"location":"Right Hip"},{"euler":{"heading":52.878288772477454,"pitch":-110.83469515849164,"roll":-18.53330692738041},"location":"Right Knee"},{"euler":{"heading":15.550639153487035,"pitch":-140.76275123591216,"roll":57.268050263659006},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.778"} +{"sensors":[{"euler":{"heading":39.93690980409579,"pitch":132.4350765023396,"roll":23.511650542089157},"location":"Left Knee"},{"euler":{"heading":41.253698000497664,"pitch":103.39391357578052,"roll":28.250485269028456},"location":"Left Ankle"},{"euler":{"heading":35.21211616308107,"pitch":-7.405034362828578,"roll":-4.307059655168793},"location":"Right Ankle"},{"euler":{"heading":58.275335288187364,"pitch":-158.68443433283784,"roll":55.30946628500463},"location":"Right Hip"},{"euler":{"heading":52.79728662422795,"pitch":-111.21902884128525,"roll":-17.697795541252795},"location":"Right Knee"},{"euler":{"heading":14.373751243490581,"pitch":-138.92443821999697,"roll":57.206880157504045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.880"} +{"sensors":[{"euler":{"heading":36.5231308917423,"pitch":132.4174711144956,"roll":22.345261991018816},"location":"Left Knee"},{"euler":{"heading":41.780866886656625,"pitch":102.79758366103202,"roll":29.60596924595817},"location":"Left Ankle"},{"euler":{"heading":35.573621066488435,"pitch":-7.122747888113786,"roll":-4.301631859923083},"location":"Right Ankle"},{"euler":{"heading":57.95360055671721,"pitch":-158.90470233624885,"roll":55.993465243584225},"location":"Right Hip"},{"euler":{"heading":53.39683660759747,"pitch":-111.51329504388218,"roll":-17.42927733564679},"location":"Right Knee"},{"euler":{"heading":12.934492099455323,"pitch":-136.9875104356108,"roll":56.54510747534941},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.981"} +{"sensors":[{"euler":{"heading":55.27967258452539,"pitch":133.65005503868568,"roll":23.02585588585686},"location":"Left Knee"},{"euler":{"heading":39.41821761141884,"pitch":101.73479251204508,"roll":28.240358791596734},"location":"Left Ankle"},{"euler":{"heading":35.39994158397474,"pitch":-6.712735894074812,"roll":-4.445353073858643},"location":"Right Ankle"},{"euler":{"heading":57.87446904662024,"pitch":-159.181306362125,"roll":56.73725031468857},"location":"Right Hip"},{"euler":{"heading":54.541731317134506,"pitch":-111.87469411889043,"roll":-17.697598358999464},"location":"Right Knee"},{"euler":{"heading":11.827371977145969,"pitch":-135.10403598786857,"roll":55.9046687145853},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.82"} +{"sensors":[{"euler":{"heading":71.7968434051262,"pitch":135.7939277320903,"roll":24.47999671443616},"location":"Left Knee"},{"euler":{"heading":35.4622783757033,"pitch":100.50556044513091,"roll":24.935684872249304},"location":"Left Ankle"},{"euler":{"heading":34.746436557950595,"pitch":-6.2466013370040825,"roll":-4.724035509114826},"location":"Right Ankle"},{"euler":{"heading":57.916691789875685,"pitch":-159.6277936031907,"roll":57.56486088714512},"location":"Right Hip"},{"euler":{"heading":56.16882553804556,"pitch":-112.231441673204,"roll":-18.475473052037465},"location":"Right Knee"},{"euler":{"heading":11.396487841126262,"pitch":-133.83967966412786,"roll":55.4678390239258},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.182"} +{"sensors":[{"euler":{"heading":91.70039989682655,"pitch":137.22851355483692,"roll":25.81959374065295},"location":"Left Knee"},{"euler":{"heading":32.59771403425941,"pitch":100.11264120508513,"roll":22.153453568439218},"location":"Left Ankle"},{"euler":{"heading":33.313605905915175,"pitch":-5.836698408549957,"roll":-5.422106371208269},"location":"Right Ankle"},{"euler":{"heading":58.23663849181434,"pitch":-160.26962108521957,"roll":58.37319814470594},"location":"Right Hip"},{"euler":{"heading":58.380994035691174,"pitch":-112.47696464514695,"roll":-20.023586158101814},"location":"Right Knee"},{"euler":{"heading":11.6441564515321,"pitch":-133.1177119782814,"roll":55.250921952204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.283"} +{"sensors":[{"euler":{"heading":109.09134679704857,"pitch":137.7596898297286,"roll":26.90691024418736},"location":"Left Knee"},{"euler":{"heading":31.756374711616086,"pitch":100.13165275735692,"roll":20.801162094476698},"location":"Left Ankle"},{"euler":{"heading":30.39843060072703,"pitch":-5.852232459694628,"roll":-6.190515372349269},"location":"Right Ankle"},{"euler":{"heading":59.12286780205182,"pitch":-160.2499187081492,"roll":58.694416157707394},"location":"Right Hip"},{"euler":{"heading":61.090056634414324,"pitch":-112.5921167263223,"roll":-22.637277880896605},"location":"Right Knee"},{"euler":{"heading":11.716150471277615,"pitch":-132.69034310190244,"roll":55.21516240583284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.385"} +{"sensors":[{"euler":{"heading":89.97191403354807,"pitch":137.5447370109936,"roll":27.75405377482817},"location":"Left Knee"},{"euler":{"heading":31.769033293505423,"pitch":100.3688322192637,"roll":19.95800692934896},"location":"Left Ankle"},{"euler":{"heading":27.518027714873444,"pitch":-6.00303091077172,"roll":-6.808540528111102},"location":"Right Ankle"},{"euler":{"heading":60.50844053866389,"pitch":-159.38785683565436,"roll":58.20624303363605},"location":"Right Hip"},{"euler":{"heading":62.903953210414,"pitch":-112.71415089763073,"roll":-24.87749092241145},"location":"Right Knee"},{"euler":{"heading":12.304231474415973,"pitch":-132.88032249600082,"roll":55.42061678845128},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.485"} +{"sensors":[{"euler":{"heading":74.77473207447613,"pitch":136.86271633725946,"roll":28.425487921244756},"location":"Left Knee"},{"euler":{"heading":32.41554604220961,"pitch":100.74397330919172,"roll":19.65879082813067},"location":"Left Ankle"},{"euler":{"heading":26.901532114312857,"pitch":-6.26433613104544,"roll":-6.9932217088873125},"location":"Right Ankle"},{"euler":{"heading":62.0293909762559,"pitch":-158.3402596884684,"roll":57.092687578470255},"location":"Right Hip"},{"euler":{"heading":62.38560107490891,"pitch":-112.30733481468997,"roll":-25.358823891097224},"location":"Right Knee"},{"euler":{"heading":13.1543606295597,"pitch":-133.78944826034612,"roll":55.71948818379657},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.586"} +{"sensors":[{"euler":{"heading":62.8128660168972,"pitch":135.8947996771243,"roll":28.75362248857956},"location":"Left Knee"},{"euler":{"heading":33.25406597051431,"pitch":101.07748382458837,"roll":19.661521785864636},"location":"Left Ankle"},{"euler":{"heading":28.85810354654364,"pitch":-6.762378248054001,"roll":-6.369609192855957},"location":"Right Ankle"},{"euler":{"heading":62.92991568975653,"pitch":-157.7728148260571,"roll":55.76995769505524},"location":"Right Hip"},{"euler":{"heading":59.54738001794933,"pitch":-111.2971238565817,"roll":-23.725403045792007},"location":"Right Knee"},{"euler":{"heading":14.064476526898307,"pitch":-135.2125695772463,"roll":56.085054382952336},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.687"} +{"sensors":[{"euler":{"heading":53.50601839035077,"pitch":134.81087024694554,"roll":28.574918670937638},"location":"Left Knee"},{"euler":{"heading":34.13089501511479,"pitch":101.33765202486794,"roll":20.086109802710233},"location":"Left Ankle"},{"euler":{"heading":31.99403146320594,"pitch":-7.189262917049976,"roll":-5.282130697904389},"location":"Right Ankle"},{"euler":{"heading":62.513874661832375,"pitch":-157.66362903028954,"roll":55.01895046033689},"location":"Right Hip"},{"euler":{"heading":55.95115188777174,"pitch":-110.29977483031331,"roll":-20.945338861446064},"location":"Right Knee"},{"euler":{"heading":14.881022120211934,"pitch":-136.95810527691162,"roll":56.50502574028685},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.787"} +{"sensors":[{"euler":{"heading":46.515784335719985,"pitch":133.75276052013356,"roll":27.68788650996475},"location":"Left Knee"},{"euler":{"heading":35.43148182539666,"pitch":101.65036074449884,"roll":21.272925446725935},"location":"Left Ankle"},{"euler":{"heading":34.5082180446737,"pitch":-7.37934506364816,"roll":-4.4645671233837465},"location":"Right Ankle"},{"euler":{"heading":61.210080887997854,"pitch":-157.96911044320802,"roll":54.82689795533099},"location":"Right Hip"},{"euler":{"heading":53.12547037851773,"pitch":-109.89075908508042,"roll":-18.566470141050054},"location":"Right Knee"},{"euler":{"heading":15.75769452621314,"pitch":-139.042948177325,"roll":56.95044573888032},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.888"} +{"sensors":[{"euler":{"heading":42.225007470476484,"pitch":132.84881116713245,"roll":25.761570073291306},"location":"Left Knee"},{"euler":{"heading":37.40603295026189,"pitch":102.37922114332085,"roll":23.880734712015524},"location":"Left Ankle"},{"euler":{"heading":35.865284969612176,"pitch":-7.355150509314537,"roll":-4.242015983322432},"location":"Right Ankle"},{"euler":{"heading":60.32684050756525,"pitch":-158.22769703768873,"roll":54.91470796530279},"location":"Right Hip"},{"euler":{"heading":51.65009382255862,"pitch":-109.93682246432803,"roll":-17.008421884392696},"location":"Right Knee"},{"euler":{"heading":15.904763402064546,"pitch":-139.9425494940469,"roll":57.246479657643526},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.989"} +{"sensors":[{"euler":{"heading":39.82944189691798,"pitch":131.9000531580905,"roll":23.51314318937185},"location":"Left Knee"},{"euler":{"heading":39.97404247251693,"pitch":103.43113905671264,"roll":26.942022623972484},"location":"Left Ankle"},{"euler":{"heading":36.601895503987365,"pitch":-7.297585614334371,"roll":-4.040635003094342},"location":"Right Ankle"},{"euler":{"heading":59.21125394645769,"pitch":-158.68166198460773,"roll":55.469789664790135},"location":"Right Hip"},{"euler":{"heading":51.41114225396379,"pitch":-110.2460429112666,"roll":-16.163387070791007},"location":"Right Knee"},{"euler":{"heading":14.746942097835648,"pitch":-138.46168756312258,"roll":57.205197376572535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.90"} +{"sensors":[{"euler":{"heading":36.42919097920195,"pitch":131.86794344026555,"roll":22.35850326559177},"location":"Left Knee"},{"euler":{"heading":40.67363326298747,"pitch":102.75992437951571,"roll":28.29712254782817},"location":"Left Ankle"},{"euler":{"heading":36.818586408783816,"pitch":-7.019574885812851,"roll":-4.143785138814707},"location":"Right Ankle"},{"euler":{"heading":58.67831257763272,"pitch":-158.92002963029765,"roll":56.19799095061008},"location":"Right Hip"},{"euler":{"heading":51.88730873224259,"pitch":-110.72204393888612,"roll":-15.844634199643341},"location":"Right Knee"},{"euler":{"heading":13.121154210568351,"pitch":-136.7709193580559,"roll":56.5138582307063},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.190"} +{"sensors":[{"euler":{"heading":55.16113753346619,"pitch":133.1528011415885,"roll":23.085400046205496},"location":"Left Knee"},{"euler":{"heading":38.28569424106259,"pitch":101.75422333535408,"roll":26.81820372856906},"location":"Left Ankle"},{"euler":{"heading":36.562005228252744,"pitch":-6.666939676553675,"roll":-4.27874027928619},"location":"Right Ankle"},{"euler":{"heading":58.46786245711623,"pitch":-159.1476131875371,"roll":56.96393768315519},"location":"Right Hip"},{"euler":{"heading":52.81821631784748,"pitch":-111.1824919440109,"roll":-16.008046049861502},"location":"Right Knee"},{"euler":{"heading":11.766179635234746,"pitch":-134.98533711876865,"roll":55.82882959091431},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.291"} +{"sensors":[{"euler":{"heading":76.96138428150138,"pitch":135.22506892068938,"roll":24.640892278396784},"location":"Left Knee"},{"euler":{"heading":34.57658663145318,"pitch":100.67177560347083,"roll":23.625030968131814},"location":"Left Ankle"},{"euler":{"heading":35.68009707668859,"pitch":-6.205161481101279,"roll":-4.6505607427283575},"location":"Right Ankle"},{"euler":{"heading":58.479850664815714,"pitch":-159.50218056723398,"roll":57.75214871450436},"location":"Right Hip"},{"euler":{"heading":54.30576996134577,"pitch":-111.62292109906893,"roll":-16.744498815283144},"location":"Right Knee"},{"euler":{"heading":11.221532158373751,"pitch":-133.79767039954538,"roll":55.321925091873815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.392"} +{"sensors":[{"euler":{"heading":96.16098731801658,"pitch":136.53540816478542,"roll":25.947348203776254},"location":"Left Knee"},{"euler":{"heading":32.116268214828935,"pitch":100.27493577470388,"roll":21.211233127238405},"location":"Left Ankle"},{"euler":{"heading":34.03052365702683,"pitch":-5.924051975795371,"roll":-5.296167810008447},"location":"Right Ankle"},{"euler":{"heading":58.97718182128404,"pitch":-159.9181446745757,"roll":58.37025631102607},"location":"Right Hip"},{"euler":{"heading":56.47502647822602,"pitch":-111.77175154493983,"roll":-18.397817634322347},"location":"Right Knee"},{"euler":{"heading":11.417668623023784,"pitch":-133.09753476458428,"roll":55.15455991729285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.493"} +{"sensors":[{"euler":{"heading":112.86852236145103,"pitch":136.96010211474928,"roll":27.01656676635114},"location":"Left Knee"},{"euler":{"heading":31.445401707691943,"pitch":100.21905599247131,"roll":20.01991399070539},"location":"Left Ankle"},{"euler":{"heading":30.848699996292577,"pitch":-5.693464220740543,"roll":-5.981431784984405},"location":"Right Ankle"},{"euler":{"heading":60.03243455947312,"pitch":-159.67028292821863,"roll":58.477723091288645},"location":"Right Hip"},{"euler":{"heading":58.76845310611834,"pitch":-112.00154942823262,"roll":-20.738098312210745},"location":"Right Knee"},{"euler":{"heading":11.613936791609454,"pitch":-132.74342893556326,"roll":55.157693340090134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.593"} +{"sensors":[{"euler":{"heading":92.77334118306489,"pitch":136.92228024460763,"roll":27.710591845918586},"location":"Left Knee"},{"euler":{"heading":31.484682399720647,"pitch":100.19227300065658,"roll":19.453215449681636},"location":"Left Ankle"},{"euler":{"heading":27.952106187599988,"pitch":-5.877201411029699,"roll":-6.375588388125511},"location":"Right Ankle"},{"euler":{"heading":61.3958801882929,"pitch":-158.8752494793087,"roll":57.93881918677299},"location":"Right Hip"},{"euler":{"heading":60.19446494257407,"pitch":-112.0608551152257,"roll":-22.713072590262495},"location":"Right Knee"},{"euler":{"heading":12.08974225752788,"pitch":-132.98186631248635,"roll":55.4577940774524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.693"} +{"sensors":[{"euler":{"heading":76.42644433876475,"pitch":136.73347817870678,"roll":28.07700430852083},"location":"Left Knee"},{"euler":{"heading":32.02814184301569,"pitch":100.0491315863828,"roll":19.469556441626754},"location":"Left Ankle"},{"euler":{"heading":27.369915938104423,"pitch":-6.287218227983693,"roll":-6.333915264388011},"location":"Right Ankle"},{"euler":{"heading":62.607392900672366,"pitch":-158.12611698707548,"roll":56.922046095653},"location":"Right Hip"},{"euler":{"heading":59.524981819804196,"pitch":-111.47837143767993,"roll":-23.043577226512905},"location":"Right Knee"},{"euler":{"heading":12.705252942572828,"pitch":-133.98240295880746,"roll":55.86608983092466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.794"} +{"sensors":[{"euler":{"heading":63.56481014335169,"pitch":136.3664407430247,"roll":28.045898049188114},"location":"Left Knee"},{"euler":{"heading":32.88929737472468,"pitch":99.83042687362362,"roll":19.92429576211097},"location":"Left Ankle"},{"euler":{"heading":28.92056909778629,"pitch":-6.812810225422842,"roll":-5.505480379397953},"location":"Right Ankle"},{"euler":{"heading":63.0524098838438,"pitch":-157.7336204306305,"roll":55.85930608253079},"location":"Right Hip"},{"euler":{"heading":57.056475408415636,"pitch":-110.54107024850452,"roll":-21.523378502304304},"location":"Right Knee"},{"euler":{"heading":13.49460718455057,"pitch":-135.60120054951042,"roll":56.33661671230195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.894"} +{"sensors":[{"euler":{"heading":53.81849873030555,"pitch":135.72516171836222,"roll":27.607524544340855},"location":"Left Knee"},{"euler":{"heading":34.129488268798475,"pitch":99.70387012108006,"roll":20.87680103393491},"location":"Left Ankle"},{"euler":{"heading":32.27109987796298,"pitch":-7.318131863232628,"roll":-4.601272299996556},"location":"Right Ankle"},{"euler":{"heading":62.28123554714093,"pitch":-157.6222176910464,"roll":55.432736816329225},"location":"Right Hip"},{"euler":{"heading":53.86998476309166,"pitch":-109.70482037706073,"roll":-18.72686004115447},"location":"Right Knee"},{"euler":{"heading":14.485757417138053,"pitch":-137.7081033690229,"roll":56.869400298021326},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.995"} +{"sensors":[{"euler":{"heading":46.819205357468725,"pitch":134.88923608308224,"roll":26.55092213875276},"location":"Left Knee"},{"euler":{"heading":35.82866559381053,"pitch":99.80932845180871,"roll":22.57698769098089},"location":"Left Ankle"},{"euler":{"heading":34.521050285357205,"pitch":-7.614861513846139,"roll":-4.0565610942660735},"location":"Right Ankle"},{"euler":{"heading":61.08499461905747,"pitch":-157.87218527814633,"roll":55.18943230124971},"location":"Right Hip"},{"euler":{"heading":51.53437385673053,"pitch":-109.39996208875694,"roll":-16.416336562477596},"location":"Right Knee"},{"euler":{"heading":15.59457552525428,"pitch":-140.024813448232,"roll":57.464463731563264},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.95"} +{"sensors":[{"euler":{"heading":42.71720588394974,"pitch":133.9663591951812,"roll":24.542509505231365},"location":"Left Knee"},{"euler":{"heading":38.706277035870045,"pitch":101.02247290023236,"roll":25.70878666797612},"location":"Left Ankle"},{"euler":{"heading":35.465565768249654,"pitch":-7.782294550002327,"roll":-3.8490402653957627},"location":"Right Ankle"},{"euler":{"heading":60.598974387563494,"pitch":-157.94379671982242,"roll":55.260592182723485},"location":"Right Hip"},{"euler":{"heading":50.591063342404404,"pitch":-109.24300957380635,"roll":-15.05092897946584},"location":"Right Knee"},{"euler":{"heading":15.563115975580518,"pitch":-140.59914791036337,"roll":57.723492344126605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.195"} +{"sensors":[{"euler":{"heading":40.52377349335672,"pitch":132.941021055287,"roll":22.314920740755863},"location":"Left Knee"},{"euler":{"heading":41.50836021067114,"pitch":102.7742009162193,"roll":28.982626275773942},"location":"Left Ankle"},{"euler":{"heading":35.95355924721346,"pitch":-8.011089530761197,"roll":-3.857454990747699},"location":"Right Ankle"},{"euler":{"heading":59.98104517125498,"pitch":-158.204791280265,"roll":55.83033413400342},"location":"Right Hip"},{"euler":{"heading":50.7342590984533,"pitch":-109.17827615369647,"roll":-14.403991140953611},"location":"Right Knee"},{"euler":{"heading":14.592053018596355,"pitch":-139.13906141304562,"roll":57.559545269371355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.296"} +{"sensors":[{"euler":{"heading":37.43171638784673,"pitch":132.738545655986,"roll":21.250480403412958},"location":"Left Knee"},{"euler":{"heading":42.55418825017067,"pitch":102.75406288308243,"roll":30.54194954723507},"location":"Left Ankle"},{"euler":{"heading":36.16287793038676,"pitch":-8.30135471355362,"roll":-4.1742252624177505},"location":"Right Ankle"},{"euler":{"heading":59.99827247528878,"pitch":-158.36961506203087,"roll":56.47667619433558},"location":"Right Hip"},{"euler":{"heading":51.4579290045443,"pitch":-108.91161472830872,"roll":-14.323944361829845},"location":"Right Knee"},{"euler":{"heading":13.351049659203387,"pitch":-137.4195299190985,"roll":56.86422534596792},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.396"} +{"sensors":[{"euler":{"heading":64.78105952459572,"pitch":133.82168123700382,"roll":22.1125043104516},"location":"Left Knee"},{"euler":{"heading":40.42002137113995,"pitch":101.87971618102385,"roll":29.319171037054847},"location":"Left Ankle"},{"euler":{"heading":35.85269792186346,"pitch":-8.4926647520022,"roll":-4.371683172362757},"location":"Right Ankle"},{"euler":{"heading":60.268026400800466,"pitch":-158.59010368589642,"roll":57.120988092843916},"location":"Right Hip"},{"euler":{"heading":52.543929665293554,"pitch":-108.71193660356703,"roll":-14.715246020940334},"location":"Right Knee"},{"euler":{"heading":12.453823617619161,"pitch":-135.67331888039732,"roll":56.19343052266119},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.496"} +{"sensors":[{"euler":{"heading":84.86789242979519,"pitch":135.91355615594532,"roll":23.814050942203394},"location":"Left Knee"},{"euler":{"heading":36.77601473175877,"pitch":100.76749502911831,"roll":26.244812413938995},"location":"Left Ankle"},{"euler":{"heading":34.986356184764425,"pitch":-8.45174536353267,"roll":-4.722771835106554},"location":"Right Ankle"},{"euler":{"heading":60.530517773486935,"pitch":-159.01554003630565,"roll":57.8288613323696},"location":"Right Hip"},{"euler":{"heading":54.06929373482854,"pitch":-108.66204961257318,"roll":-15.646019979718533},"location":"Right Knee"},{"euler":{"heading":12.135347449215567,"pitch":-134.3904814116642,"roll":55.74102300278639},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.597"} +{"sensors":[{"euler":{"heading":102.40890585703899,"pitch":137.188129643625,"roll":25.31212093001425},"location":"Left Knee"},{"euler":{"heading":34.107407382966926,"pitch":100.13562820777068,"roll":23.623425220791134},"location":"Left Ankle"},{"euler":{"heading":33.30791137488709,"pitch":-8.283921660986273,"roll":-5.504197210817374},"location":"Right Ankle"},{"euler":{"heading":60.88218749783178,"pitch":-159.73344401398168,"roll":58.55263249194492},"location":"Right Hip"},{"euler":{"heading":56.031697082283365,"pitch":-108.61690811770508,"roll":-17.189800437841132},"location":"Right Knee"},{"euler":{"heading":12.552344579727711,"pitch":-133.5328844458351,"roll":55.575408325494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.697"} +{"sensors":[{"euler":{"heading":117.86540507873275,"pitch":137.6101865900773,"roll":26.53094505178977},"location":"Left Knee"},{"euler":{"heading":33.39679089357742,"pitch":99.98003920213047,"roll":22.440458804507482},"location":"Left Ankle"},{"euler":{"heading":30.42943977068598,"pitch":-8.21529648177568,"roll":-6.437211248321064},"location":"Right Ankle"},{"euler":{"heading":61.59819643256866,"pitch":-159.70529236274345,"roll":58.81516467330311},"location":"Right Hip"},{"euler":{"heading":58.51841632619491,"pitch":-108.43931862867855,"roll":-19.72822796401219},"location":"Right Knee"},{"euler":{"heading":12.721367453269336,"pitch":-133.04224109038185,"roll":55.58012572966187},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.798"} +{"sensors":[{"euler":{"heading":96.84694736668936,"pitch":137.51647079256784,"roll":27.396016319151933},"location":"Left Knee"},{"euler":{"heading":33.147876115789934,"pitch":99.86897712662797,"roll":21.601888973576884},"location":"Left Ankle"},{"euler":{"heading":27.495855528351452,"pitch":-8.295886650341599,"roll":-7.132839707725927},"location":"Right Ankle"},{"euler":{"heading":62.67197899072459,"pitch":-158.99610825845528,"roll":58.398739662833364},"location":"Right Hip"},{"euler":{"heading":60.76262509153075,"pitch":-108.65317670620554,"roll":-22.203546998521816},"location":"Right Knee"},{"euler":{"heading":13.038122426053818,"pitch":-133.09767598618805,"roll":55.82220669605762},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.898"} +{"sensors":[{"euler":{"heading":79.9402678574923,"pitch":137.11656839895014,"roll":27.988547905760605},"location":"Left Knee"},{"euler":{"heading":33.306728732862574,"pitch":99.80415166813144,"roll":21.277095488881606},"location":"Left Ankle"},{"euler":{"heading":26.806088553123843,"pitch":-8.624458913212038,"roll":-7.179656417126464},"location":"Right Ankle"},{"euler":{"heading":63.72955020421988,"pitch":-158.19980723854633,"roll":57.350107287561144},"location":"Right Hip"},{"euler":{"heading":60.78686195019701,"pitch":-108.46024655528129,"roll":-22.986801135312692},"location":"Right Knee"},{"euler":{"heading":13.505566818319238,"pitch":-133.86127455664993,"roll":56.14827526663301},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.999"} +{"sensors":[{"euler":{"heading":66.79864345669476,"pitch":136.37420700143193,"roll":28.23934020550937},"location":"Left Knee"},{"euler":{"heading":33.965929460541616,"pitch":99.89412541689826,"roll":21.435041338444538},"location":"Left Ankle"},{"euler":{"heading":28.63726708001885,"pitch":-8.933666380461162,"roll":-6.461020314918232},"location":"Right Ankle"},{"euler":{"heading":64.03068413351853,"pitch":-157.77651967218694,"roll":56.10396060400046},"location":"Right Hip"},{"euler":{"heading":58.16104517121779,"pitch":-107.89922387439655,"roll":-21.590909384815046},"location":"Right Knee"},{"euler":{"heading":13.983434697684944,"pitch":-135.01002455967097,"roll":56.52656089660067},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.99"} +{"sensors":[{"euler":{"heading":56.69227960184302,"pitch":135.45870506137348,"roll":27.990651297450714},"location":"Left Knee"},{"euler":{"heading":34.88023667601697,"pitch":100.04093880369017,"roll":22.017915365514746},"location":"Left Ankle"},{"euler":{"heading":31.57539850089482,"pitch":-9.124280897165674,"roll":-5.442135343215731},"location":"Right Ankle"},{"euler":{"heading":63.36762019927721,"pitch":-157.6491455303505,"roll":55.297400138136986},"location":"Right Hip"},{"euler":{"heading":54.48308520385657,"pitch":-107.27860758741343,"roll":-18.841474822345177},"location":"Right Knee"},{"euler":{"heading":14.56496223886628,"pitch":-136.45972603429513,"roll":57.00560421086981},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.200"} +{"sensors":[{"euler":{"heading":49.09496499446505,"pitch":134.51732932708643,"roll":27.129470986675443},"location":"Left Knee"},{"euler":{"heading":36.32447141648372,"pitch":100.33430988434756,"roll":23.4133584592392},"location":"Left Ankle"},{"euler":{"heading":34.147605909898296,"pitch":-8.898427612081983,"roll":-4.728257491760239},"location":"Right Ankle"},{"euler":{"heading":61.8675096474102,"pitch":-157.86682507072135,"roll":55.03724297589412},"location":"Right Hip"},{"euler":{"heading":51.32888822023857,"pitch":-107.25210506239978,"roll":-16.27034570137282},"location":"Right Knee"},{"euler":{"heading":15.195694352085477,"pitch":-138.336328993474,"roll":57.49853164348047},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.301"} +{"sensors":[{"euler":{"heading":44.289275313401355,"pitch":133.73090026992634,"roll":25.244383167836567},"location":"Left Knee"},{"euler":{"heading":38.6009458458752,"pitch":101.22997667191628,"roll":26.102933967143603},"location":"Left Ankle"},{"euler":{"heading":35.27275076670247,"pitch":-8.48597283630426,"roll":-4.534130594591743},"location":"Right Ankle"},{"euler":{"heading":60.87703307234071,"pitch":-157.90921986359407,"roll":54.9920830873552},"location":"Right Hip"},{"euler":{"heading":49.667757859717675,"pitch":-107.61456858352342,"roll":-14.603724183598434},"location":"Right Knee"},{"euler":{"heading":15.30191089088883,"pitch":-139.35665517353354,"roll":57.778100779074045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.402"} +{"sensors":[{"euler":{"heading":41.787200993167716,"pitch":132.7041789114316,"roll":23.00353649458072},"location":"Left Knee"},{"euler":{"heading":40.84542030798941,"pitch":102.49823191319683,"roll":28.8398745035068},"location":"Left Ankle"},{"euler":{"heading":35.837299688088166,"pitch":-8.100862173643016,"roll":-4.45954023296495},"location":"Right Ankle"},{"euler":{"heading":59.82227432287332,"pitch":-158.13188639142447,"roll":55.35549994807297},"location":"Right Hip"},{"euler":{"heading":49.348054970486565,"pitch":-108.13874794205059,"roll":-13.660444131871776},"location":"Right Knee"},{"euler":{"heading":14.407905118907395,"pitch":-138.2525730057894,"roll":57.69219338793132},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.502"} +{"sensors":[{"euler":{"heading":38.626732749386186,"pitch":132.55990494832432,"roll":21.695232408687744},"location":"Left Knee"},{"euler":{"heading":41.250374406777354,"pitch":102.20708002877524,"roll":29.984714877290006},"location":"Left Ankle"},{"euler":{"heading":36.09146596095895,"pitch":-7.811838208951016,"roll":-4.52284204138},"location":"Right Ankle"},{"euler":{"heading":59.4699354674367,"pitch":-158.26202809168973,"roll":55.99350280468211},"location":"Right Hip"},{"euler":{"heading":49.89484443103834,"pitch":-108.48226801228607,"roll":-13.383588360922142},"location":"Right Knee"},{"euler":{"heading":12.956511947687515,"pitch":-136.81356380398032,"roll":56.98425532260007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.603"} +{"sensors":[{"euler":{"heading":56.799959026789274,"pitch":133.6124712517333,"roll":22.170121473777183},"location":"Left Knee"},{"euler":{"heading":38.971960333562805,"pitch":101.35503848993652,"roll":28.684146503896486},"location":"Left Ankle"},{"euler":{"heading":35.94285856994305,"pitch":-7.6335419330744685,"roll":-4.693083115051198},"location":"Right Ankle"},{"euler":{"heading":59.38358125696118,"pitch":-158.50464153296082,"roll":56.65999530368729},"location":"Right Hip"},{"euler":{"heading":50.937085805935325,"pitch":-108.7039311482952,"roll":-13.644364929183936},"location":"Right Knee"},{"euler":{"heading":10.810918278356185,"pitch":-135.73141662227246,"roll":55.8680352006323},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.705"} +{"sensors":[{"euler":{"heading":72.96436328302568,"pitch":135.55183333312434,"roll":23.65215620292522},"location":"Left Knee"},{"euler":{"heading":35.38225817034501,"pitch":100.19760234048387,"roll":25.70586638568764},"location":"Left Ankle"},{"euler":{"heading":35.214757623056876,"pitch":-7.347354616439754,"roll":-5.019543940948071},"location":"Right Ankle"},{"euler":{"heading":59.52690559826133,"pitch":-158.77768415817104,"roll":57.32848613958544},"location":"Right Hip"},{"euler":{"heading":52.49796351152996,"pitch":-108.99963351775978,"roll":-14.457029986195876},"location":"Right Knee"},{"euler":{"heading":10.177771668195225,"pitch":-134.49061507136295,"roll":55.28605757954712},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.805"} +{"sensors":[{"euler":{"heading":92.16290336382673,"pitch":137.18186228775772,"roll":25.183462338047516},"location":"Left Knee"},{"euler":{"heading":32.65704503767622,"pitch":99.51887628707951,"roll":23.01684023895895},"location":"Left Ankle"},{"euler":{"heading":33.82191814216103,"pitch":-6.969484693503806,"roll":-5.707340509391004},"location":"Right Ankle"},{"euler":{"heading":59.76911087232969,"pitch":-159.4944329272022,"roll":58.076074219838205},"location":"Right Hip"},{"euler":{"heading":54.531062538731135,"pitch":-109.18991822329929,"roll":-15.92960848835668},"location":"Right Knee"},{"euler":{"heading":10.313335754489941,"pitch":-133.8077974352899,"roll":54.9556356858257},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.908"} +{"sensors":[{"euler":{"heading":109.14899751857864,"pitch":137.8126011827627,"roll":26.366962637358714},"location":"Left Knee"},{"euler":{"heading":31.674158104643016,"pitch":99.21981530057987,"roll":21.558637944838015},"location":"Left Ankle"},{"euler":{"heading":31.444838712163964,"pitch":-7.002113997769631,"roll":-6.424835404900351},"location":"Right Ankle"},{"euler":{"heading":60.50845127968522,"pitch":-159.73277479949897,"roll":58.43744673825543},"location":"Right Hip"},{"euler":{"heading":56.92108932973164,"pitch":-109.05294611466115,"roll":-18.28470098660547},"location":"Right Knee"},{"euler":{"heading":10.561077555489652,"pitch":-133.3682920022682,"roll":54.85284030053082},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.9"} +{"sensors":[{"euler":{"heading":89.65645461629498,"pitch":137.7531384815275,"roll":27.301140487708025},"location":"Left Knee"},{"euler":{"heading":31.51146458164716,"pitch":99.07999923479821,"roll":20.649373256171884},"location":"Left Ankle"},{"euler":{"heading":28.226192842039527,"pitch":-6.752209983718922,"roll":-7.311890959389961},"location":"Right Ankle"},{"euler":{"heading":61.49432208489708,"pitch":-159.0863748144149,"roll":58.08667865500112},"location":"Right Hip"},{"euler":{"heading":59.484462031084576,"pitch":-109.52353422949778,"roll":-20.825991720726734},"location":"Right Knee"},{"euler":{"heading":11.150373266838912,"pitch":-133.66619548119309,"roll":54.985745007925956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.110"} +{"sensors":[{"euler":{"heading":74.14187986821169,"pitch":137.3247777848408,"roll":27.950259591366127},"location":"Left Knee"},{"euler":{"heading":31.824149374615086,"pitch":99.02482685284392,"roll":20.224937910827332},"location":"Left Ankle"},{"euler":{"heading":26.91062741446028,"pitch":-6.948194910758389,"roll":-7.5913783526247},"location":"Right Ankle"},{"euler":{"heading":62.58692678840286,"pitch":-158.28148719541358,"roll":57.12718413498242},"location":"Right Hip"},{"euler":{"heading":59.93649858511475,"pitch":-109.40833469291077,"roll":-21.87702777116615},"location":"Right Knee"},{"euler":{"heading":11.876645563648939,"pitch":-134.44111206290884,"roll":55.290311701722075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.210"} +{"sensors":[{"euler":{"heading":62.044984402041756,"pitch":136.59828233147547,"roll":28.234420602150536},"location":"Left Knee"},{"euler":{"heading":32.47256564441782,"pitch":99.10569950713025,"roll":20.197595401987943},"location":"Left Ankle"},{"euler":{"heading":28.342363697512916,"pitch":-7.529817705288581,"roll":-7.089225461228935},"location":"Right Ankle"},{"euler":{"heading":62.875128947661764,"pitch":-157.81475798379077,"roll":56.056820997121974},"location":"Right Hip"},{"euler":{"heading":57.898776033975224,"pitch":-108.76901581715754,"roll":-20.76506235403855},"location":"Right Knee"},{"euler":{"heading":12.572386755937512,"pitch":-135.54065037601356,"roll":55.67886735737776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.311"} +{"sensors":[{"euler":{"heading":52.859441840658384,"pitch":135.63173870501427,"roll":28.0575433624569},"location":"Left Knee"},{"euler":{"heading":33.485058094792294,"pitch":99.33345715469322,"roll":20.648478457030954},"location":"Left Ankle"},{"euler":{"heading":31.327986626053658,"pitch":-7.895590371043058,"roll":-6.093816830726843},"location":"Right Ankle"},{"euler":{"heading":62.088515649406105,"pitch":-157.83832442375197,"roll":55.4568851418762},"location":"Right Hip"},{"euler":{"heading":54.559659594526515,"pitch":-108.07755125473354,"roll":-18.159584809788615},"location":"Right Knee"},{"euler":{"heading":13.409597726671329,"pitch":-136.93393080363828,"roll":56.20287560768239},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.412"} +{"sensors":[{"euler":{"heading":45.95664162553013,"pitch":134.5371610835418,"roll":27.32674202455281},"location":"Left Knee"},{"euler":{"heading":34.956179029652276,"pitch":99.67034614151531,"roll":21.847197210540713},"location":"Left Ankle"},{"euler":{"heading":33.86773633813763,"pitch":-8.054155019432802,"roll":-5.347674366737339},"location":"Right Ankle"},{"euler":{"heading":60.796399009754595,"pitch":-158.21636756534758,"roll":55.223174134459825},"location":"Right Hip"},{"euler":{"heading":51.85532124222665,"pitch":-107.83236189274687,"roll":-15.855460882246101},"location":"Right Knee"},{"euler":{"heading":14.321026843983368,"pitch":-138.67030014916187,"roll":56.778107843659626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.513"} +{"sensors":[{"euler":{"heading":41.71367426199859,"pitch":133.54075976528148,"roll":25.541794966094045},"location":"Left Knee"},{"euler":{"heading":36.9336212339647,"pitch":100.29028989378646,"roll":24.44199607246938},"location":"Left Ankle"},{"euler":{"heading":35.400312324685274,"pitch":-8.150073757030622,"roll":-4.9935552580724085},"location":"Right Ankle"},{"euler":{"heading":60.12486031321758,"pitch":-158.5168322292337,"roll":55.23167125044946},"location":"Right Hip"},{"euler":{"heading":50.70522202021822,"pitch":-107.90776153085176,"roll":-14.424500402087011},"location":"Right Knee"},{"euler":{"heading":14.448992016075021,"pitch":-139.0227094334044,"roll":57.132152544621576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.613"} +{"sensors":[{"euler":{"heading":39.28591136469879,"pitch":132.6629222751671,"roll":23.391563171200886},"location":"Left Knee"},{"euler":{"heading":39.15917012676035,"pitch":101.16636284902941,"roll":27.497456502293236},"location":"Left Ankle"},{"euler":{"heading":36.405480946934645,"pitch":-8.189305771212497,"roll":-4.696902932481329},"location":"Right Ankle"},{"euler":{"heading":59.384755318650484,"pitch":-158.90167606025452,"roll":55.72092999642939},"location":"Right Hip"},{"euler":{"heading":50.47101364165613,"pitch":-108.07705901386095,"roll":-13.63501107392772},"location":"Right Knee"},{"euler":{"heading":13.50145030977583,"pitch":-137.37964429629807,"roll":57.054183160269886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.714"} +{"sensors":[{"euler":{"heading":36.03765654219882,"pitch":132.52257284636534,"roll":22.30199630577227},"location":"Left Knee"},{"euler":{"heading":39.60808106631184,"pitch":100.57384275653806,"roll":28.603525670244487},"location":"Left Ankle"},{"euler":{"heading":36.83612161288096,"pitch":-8.123735613510712,"roll":-4.559266403927255},"location":"Right Ankle"},{"euler":{"heading":59.13547661555252,"pitch":-159.1785679603985,"roll":56.33606196344878},"location":"Right Hip"},{"euler":{"heading":50.921337300632224,"pitch":-108.3372676242278,"roll":-13.414082389240068},"location":"Right Knee"},{"euler":{"heading":12.327268585717368,"pitch":-135.69073514296315,"roll":56.371263922322896},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.814"} +{"sensors":[{"euler":{"heading":54.91783856356231,"pitch":133.65003405453962,"roll":22.95103399980379},"location":"Left Knee"},{"euler":{"heading":36.97326850312584,"pitch":99.53828025125644,"roll":27.00628066352417},"location":"Left Ankle"},{"euler":{"heading":36.73094103240394,"pitch":-7.945496659478404,"roll":-4.5595739995013655},"location":"Right Ankle"},{"euler":{"heading":59.10378140703375,"pitch":-159.42912054014647,"roll":57.01158570256828},"location":"Right Hip"},{"euler":{"heading":51.78352235305627,"pitch":-108.64406760231633,"roll":-13.62439575445124},"location":"Right Knee"},{"euler":{"heading":11.318287412646098,"pitch":-133.9246710361266,"roll":55.735471400729296},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.915"} +{"sensors":[{"euler":{"heading":71.8275660235863,"pitch":135.71067443733355,"roll":24.382565716339318},"location":"Left Knee"},{"euler":{"heading":33.28199748986668,"pitch":98.60717085611067,"roll":23.741709330714954},"location":"Left Ankle"},{"euler":{"heading":36.002726064774656,"pitch":-7.522619136616494,"roll":-4.886844254350972},"location":"Right Ankle"},{"euler":{"heading":59.11944655830964,"pitch":-159.80447201587793,"roll":57.76553768167223},"location":"Right Hip"},{"euler":{"heading":53.238587292004254,"pitch":-109.10004248512645,"roll":-14.421124454781639},"location":"Right Knee"},{"euler":{"heading":10.890470341877837,"pitch":-132.83195478763025,"roll":55.24339289986893},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.17"} +{"sensors":[{"euler":{"heading":91.58881346790132,"pitch":137.33748425956958,"roll":25.683868397661524},"location":"Left Knee"},{"euler":{"heading":30.77683058260287,"pitch":98.33538270136103,"roll":21.18007039434947},"location":"Left Ankle"},{"euler":{"heading":34.59790260857243,"pitch":-7.128077189874186,"roll":-5.408904641428785},"location":"Right Ankle"},{"euler":{"heading":59.29874178050163,"pitch":-160.5305632072815,"roll":58.513168421448995},"location":"Right Hip"},{"euler":{"heading":55.13153917293641,"pitch":-109.44724440893175,"roll":-15.84361069920707},"location":"Right Knee"},{"euler":{"heading":11.075251878102653,"pitch":-132.15233908342086,"roll":55.01809971006867},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.118"} +{"sensors":[{"euler":{"heading":75.15928895930867,"pitch":137.75722447508048,"roll":26.72464268762487},"location":"Left Knee"},{"euler":{"heading":30.21192956331575,"pitch":98.42833090815205,"roll":20.045223378960497},"location":"Left Ankle"},{"euler":{"heading":31.85429225529807,"pitch":-6.949425243729064,"roll":-5.97642899689339},"location":"Right Ankle"},{"euler":{"heading":60.03413396713808,"pitch":-160.5217105769503,"roll":58.856743618536484},"location":"Right Hip"},{"euler":{"heading":57.58517286247421,"pitch":-109.7495281615798,"roll":-18.26039149904806},"location":"Right Knee"},{"euler":{"heading":11.309785104692816,"pitch":-131.91787145793566,"roll":54.945034285081285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.218"} +{"sensors":[{"euler":{"heading":62.31917893704777,"pitch":137.57223271113043,"roll":27.47021825289617},"location":"Left Knee"},{"euler":{"heading":30.332029373334912,"pitch":98.65512480698334,"roll":19.37504705475802},"location":"Left Ankle"},{"euler":{"heading":28.721976261386157,"pitch":-6.948290855849834,"roll":-6.549420718559744},"location":"Right Ankle"},{"euler":{"heading":61.35565450806827,"pitch":-159.71108352324566,"roll":58.44825402939228},"location":"Right Hip"},{"euler":{"heading":59.8022912120568,"pitch":-110.11223681019288,"roll":-20.679143211187505},"location":"Right Knee"},{"euler":{"heading":11.822867265898589,"pitch":-132.12782438828282,"roll":55.15240335361566},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.319"} +{"sensors":[{"euler":{"heading":52.09703096071678,"pitch":137.0778463550112,"roll":27.948675849128147},"location":"Left Knee"},{"euler":{"heading":30.983280575454906,"pitch":98.913852722494,"roll":19.250191118588923},"location":"Left Ankle"},{"euler":{"heading":27.441425796337263,"pitch":-7.155350143343954,"roll":-6.77064126624762},"location":"Right Ankle"},{"euler":{"heading":62.50905777382164,"pitch":-158.87649707517767,"roll":57.406802219111185},"location":"Right Hip"},{"euler":{"heading":60.10755715670593,"pitch":-109.90536514081255,"roll":-21.643077985042837},"location":"Right Knee"},{"euler":{"heading":12.451064145425406,"pitch":-132.87666447910127,"roll":55.51840568438464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.420"} +{"sensors":[{"euler":{"heading":44.29789690402365,"pitch":136.29755123553832,"roll":28.13191728367358},"location":"Left Knee"},{"euler":{"heading":32.03971141867468,"pitch":99.26687531769522,"roll":19.535547704365577},"location":"Left Ankle"},{"euler":{"heading":28.669965295124648,"pitch":-7.56863462195621,"roll":-6.263326619427474},"location":"Right Ankle"},{"euler":{"heading":63.05512749620085,"pitch":-158.46612844001177,"roll":56.05419220501478},"location":"Right Hip"},{"euler":{"heading":57.87236999194701,"pitch":-109.2484928206011,"roll":-20.517695177326015},"location":"Right Knee"},{"euler":{"heading":13.203243368590547,"pitch":-134.27959874475107,"roll":55.96255291683981},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.521"} +{"sensors":[{"euler":{"heading":38.57784891794915,"pitch":135.26448970914035,"roll":27.905337587919174},"location":"Left Knee"},{"euler":{"heading":33.28521552614011,"pitch":99.68144158804591,"roll":20.20398599319231},"location":"Left Ankle"},{"euler":{"heading":31.417867227357185,"pitch":-8.144745905979601,"roll":-5.2097394764734535},"location":"Right Ankle"},{"euler":{"heading":62.55694487583904,"pitch":-158.3861161627868,"roll":55.13940510937916},"location":"Right Hip"},{"euler":{"heading":54.51425712568684,"pitch":-108.35089473980831,"roll":-17.85845941735676},"location":"Right Knee"},{"euler":{"heading":14.074775122063471,"pitch":-135.9236333781151,"roll":56.54875521478511},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.622"} +{"sensors":[{"euler":{"heading":34.583935564206726,"pitch":134.10972169777236,"roll":27.093889890469246},"location":"Left Knee"},{"euler":{"heading":35.04225107307854,"pitch":100.22304088772894,"roll":21.694689977819905},"location":"Left Ankle"},{"euler":{"heading":34.14347093542223,"pitch":-8.113141040097608,"roll":-4.393116803619642},"location":"Right Ankle"},{"euler":{"heading":61.114549964431475,"pitch":-158.67043350458658,"roll":54.894277211918926},"location":"Right Hip"},{"euler":{"heading":51.37819298625027,"pitch":-108.25806282883067,"roll":-15.279769330485907},"location":"Right Knee"},{"euler":{"heading":15.097540365489962,"pitch":-137.9939194923419,"roll":57.192155909720604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.723"} +{"sensors":[{"euler":{"heading":32.907066119207094,"pitch":133.07074621100537,"roll":25.17056956726771},"location":"Left Knee"},{"euler":{"heading":37.80671345817421,"pitch":101.65842450839102,"roll":24.547753690915922},"location":"Left Ankle"},{"euler":{"heading":35.44177897519684,"pitch":-7.941855201657835,"roll":-4.100073370548139},"location":"Right Ankle"},{"euler":{"heading":60.29618235276639,"pitch":-158.8741974128227,"roll":54.83299039240647},"location":"Right Hip"},{"euler":{"heading":49.67840201011342,"pitch":-108.46538161968213,"roll":-13.570634237364473},"location":"Right Knee"},{"euler":{"heading":15.34639397405181,"pitch":-138.83278627504112,"roll":57.661392318910956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.826"} +{"sensors":[{"euler":{"heading":32.88363208122084,"pitch":131.80955657469124,"roll":22.972416252746175},"location":"Left Knee"},{"euler":{"heading":40.5696580774334,"pitch":103.73015736516359,"roll":27.41479470683861},"location":"Left Ankle"},{"euler":{"heading":36.17189495199597,"pitch":-7.632284917029321,"roll":-3.9181399779080586},"location":"Right Ankle"},{"euler":{"heading":59.346674388651394,"pitch":-159.21315629339236,"roll":55.259103394303885},"location":"Right Hip"},{"euler":{"heading":49.130848699510096,"pitch":-108.92646337740136,"roll":-12.517541019349046},"location":"Right Knee"},{"euler":{"heading":14.759429122807825,"pitch":-137.4872170218491,"roll":57.77683665487978},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.927"} +{"sensors":[{"euler":{"heading":31.598093792775998,"pitch":131.58391487810937,"roll":21.714634938415728},"location":"Left Knee"},{"euler":{"heading":41.22672105304321,"pitch":103.57746689604882,"roll":28.867609606159636},"location":"Left Ankle"},{"euler":{"heading":36.54379142597735,"pitch":-7.257037559598596,"roll":-3.9021456756290958},"location":"Right Ankle"},{"euler":{"heading":58.99133514685564,"pitch":-159.3771843539372,"roll":55.906275965568724},"location":"Right Hip"},{"euler":{"heading":49.306769947798614,"pitch":-109.4090831527507,"roll":-12.010521283273222},"location":"Right Knee"},{"euler":{"heading":13.541604798971619,"pitch":-135.71673132991037,"roll":57.23326082645972},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.27"} +{"sensors":[{"euler":{"heading":51.217331053652245,"pitch":132.83039239038928,"roll":22.235240800364974},"location":"Left Knee"},{"euler":{"heading":38.934757070512454,"pitch":102.41670818469011,"roll":27.64357924640106},"location":"Left Ankle"},{"euler":{"heading":36.46780016443919,"pitch":-6.715345118572287,"roll":-4.000633674948773},"location":"Right Ankle"},{"euler":{"heading":58.75389153272714,"pitch":-159.53155456564468,"roll":56.670245525187696},"location":"Right Hip"},{"euler":{"heading":49.9799464520584,"pitch":-110.00631706545614,"roll":-11.961957986036554},"location":"Right Knee"},{"euler":{"heading":12.229350269863216,"pitch":-133.9422490301956,"roll":56.52141622424284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.127"} +{"sensors":[{"euler":{"heading":68.65490713677748,"pitch":135.02845419876374,"roll":23.734862289145568},"location":"Left Knee"},{"euler":{"heading":34.852390338873036,"pitch":101.21773386459627,"roll":24.37783801185531},"location":"Left Ankle"},{"euler":{"heading":35.834829070727686,"pitch":-6.028985977163411,"roll":-4.208659163483567},"location":"Right Ankle"},{"euler":{"heading":58.65459788301621,"pitch":-159.8377089364605,"roll":57.49233930777074},"location":"Right Hip"},{"euler":{"heading":51.26241547551712,"pitch":-110.63591876316538,"roll":-12.494709108118556},"location":"Right Knee"},{"euler":{"heading":11.64239292104871,"pitch":-132.847860676385,"roll":56.05564501296684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.229"} +{"sensors":[{"euler":{"heading":89.51423091046983,"pitch":136.5893634002496,"roll":25.01454340171496},"location":"Left Knee"},{"euler":{"heading":31.842690148609776,"pitch":100.59654587776434,"roll":21.618945308996402},"location":"Left Ankle"},{"euler":{"heading":34.335577273296934,"pitch":-5.431697926019295,"roll":-4.7714506239199315},"location":"Right Ankle"},{"euler":{"heading":58.91217888570426,"pitch":-160.19797470336687,"roll":58.26001271392462},"location":"Right Hip"},{"euler":{"heading":53.25780362207698,"pitch":-111.11050472653376,"roll":-13.844797234280843},"location":"Right Knee"},{"euler":{"heading":11.833612646911275,"pitch":-132.32130992395423,"roll":55.800648865272386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.330"} +{"sensors":[{"euler":{"heading":107.48561855718425,"pitch":137.28835432094417,"roll":26.035752872966025},"location":"Left Knee"},{"euler":{"heading":31.01925582694602,"pitch":100.30793250038101,"roll":20.466131582089076},"location":"Left Ankle"},{"euler":{"heading":31.60977401942289,"pitch":-5.3311796182582025,"roll":-5.245034744855806},"location":"Right Ankle"},{"euler":{"heading":59.71167138383164,"pitch":-160.1018533760539,"roll":58.53254440596476},"location":"Right Hip"},{"euler":{"heading":55.89043693590352,"pitch":-111.4329301999484,"roll":-16.26146516506552},"location":"Right Knee"},{"euler":{"heading":11.758316152104905,"pitch":-132.13616734430377,"roll":55.64719820533332},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.430"} +{"sensors":[{"euler":{"heading":88.69281735181234,"pitch":137.2668699462872,"roll":26.85874964335097},"location":"Left Knee"},{"euler":{"heading":30.814708006756334,"pitch":100.33214821391901,"roll":19.637010245440777},"location":"Left Ankle"},{"euler":{"heading":28.581218073383088,"pitch":-5.2699496447961,"roll":-5.762748827589461},"location":"Right Ankle"},{"euler":{"heading":60.93109919153308,"pitch":-159.2954933600844,"roll":58.01815216628451},"location":"Right Hip"},{"euler":{"heading":58.23628405930782,"pitch":-111.98033320316364,"roll":-18.507700823733664},"location":"Right Knee"},{"euler":{"heading":12.273358303927226,"pitch":-132.49182350894512,"roll":55.87100829246776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.530"} +{"sensors":[{"euler":{"heading":73.54904988103586,"pitch":136.97989042804542,"roll":27.35970129761488},"location":"Left Knee"},{"euler":{"heading":30.944489856353556,"pitch":100.24109956475384,"roll":19.27320400676018},"location":"Left Ankle"},{"euler":{"heading":27.516422989817247,"pitch":-5.49991893369947,"roll":-5.856661018332277},"location":"Right Ankle"},{"euler":{"heading":62.21494011336105,"pitch":-158.5539476624692,"roll":56.85709045634317},"location":"Right Hip"},{"euler":{"heading":58.44481252404884,"pitch":-111.75033700837017,"roll":-19.44632688795535},"location":"Right Knee"},{"euler":{"heading":12.891269406381715,"pitch":-133.50924890059986,"roll":56.204325230239064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.631"} +{"sensors":[{"euler":{"heading":61.81522408440412,"pitch":136.32187420332426,"roll":27.575187659923678},"location":"Left Knee"},{"euler":{"heading":31.657176470505533,"pitch":100.29545398657169,"roll":19.360176341776892},"location":"Left Ankle"},{"euler":{"heading":29.212942832647574,"pitch":-6.040949638843599,"roll":-5.305491903567296},"location":"Right Ankle"},{"euler":{"heading":62.71917935536228,"pitch":-158.27533174461527,"roll":55.53299050029432},"location":"Right Hip"},{"euler":{"heading":56.148252739361006,"pitch":-110.85850880698302,"roll":-18.280206936764166},"location":"Right Knee"},{"euler":{"heading":13.700425030380181,"pitch":-135.01847723596546,"roll":56.6545681108948},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.733"} +{"sensors":[{"euler":{"heading":53.022087493516175,"pitch":135.31622549462992,"roll":27.342113749955445},"location":"Left Knee"},{"euler":{"heading":32.82930894579417,"pitch":100.57055963793995,"roll":19.97989843392999},"location":"Left Ankle"},{"euler":{"heading":32.27862817514677,"pitch":-6.441335226026941,"roll":-4.2360031760029635},"location":"Right Ankle"},{"euler":{"heading":62.341323981599885,"pitch":-158.19563306528266,"roll":54.76290759812468},"location":"Right Hip"},{"euler":{"heading":52.77555988473311,"pitch":-109.92071892595352,"roll":-15.726796533873685},"location":"Right Knee"},{"euler":{"heading":14.565101229961305,"pitch":-136.66951510960823,"roll":57.2165596708648},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.834"} +{"sensors":[{"euler":{"heading":46.59516685627053,"pitch":134.18031735119717,"roll":26.51289898466549},"location":"Left Knee"},{"euler":{"heading":34.56788503387649,"pitch":101.03947226774902,"roll":21.31950480907226},"location":"Left Ankle"},{"euler":{"heading":35.19903420829243,"pitch":-6.589603091032418,"roll":-3.4703899393902313},"location":"Right Ankle"},{"euler":{"heading":60.93205450431434,"pitch":-158.57535909597226,"roll":54.46441438269614},"location":"Right Hip"},{"euler":{"heading":49.633502974382665,"pitch":-109.39912815346403,"roll":-13.071451254171613},"location":"Right Knee"},{"euler":{"heading":15.463347000889812,"pitch":-138.72830235855884,"roll":57.76076367328314},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.934"} +{"sensors":[{"euler":{"heading":42.56943524981933,"pitch":133.33082160997483,"roll":24.632954760798707},"location":"Left Knee"},{"euler":{"heading":37.019967453075935,"pitch":101.87995115386529,"roll":24.208257982070634},"location":"Left Ankle"},{"euler":{"heading":36.53199471880311,"pitch":-6.741602909818065,"roll":-3.1818865205545435},"location":"Right Ankle"},{"euler":{"heading":60.093247500910536,"pitch":-158.87140125663532,"roll":54.39051046266285},"location":"Right Hip"},{"euler":{"heading":47.94069573921918,"pitch":-109.35521581138546,"roll":-11.358351171311911},"location":"Right Knee"},{"euler":{"heading":15.848056506421866,"pitch":-140.06806056024624,"roll":58.1580753904618},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.35"} +{"sensors":[{"euler":{"heading":40.735716286572156,"pitch":132.0984000902363,"roll":22.33136401458848},"location":"Left Knee"},{"euler":{"heading":39.735221464556915,"pitch":103.44309608066321,"roll":27.39296826672474},"location":"Left Ankle"},{"euler":{"heading":37.26075756264367,"pitch":-6.837526604338922,"roll":-3.07540496512972},"location":"Right Ankle"},{"euler":{"heading":59.19240216903961,"pitch":-159.32358696618647,"roll":54.76358941137902},"location":"Right Hip"},{"euler":{"heading":47.583165244412186,"pitch":-109.45222270275622,"roll":-10.41463097774004},"location":"Right Knee"},{"euler":{"heading":15.051283703447009,"pitch":-137.42186972002642,"roll":58.250054018497416},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.136"} +{"sensors":[{"euler":{"heading":38.395980829139575,"pitch":131.77393848529658,"roll":20.843242670852288},"location":"Left Knee"},{"euler":{"heading":40.85264126300726,"pitch":103.28204044809817,"roll":29.15107009324589},"location":"Left Ankle"},{"euler":{"heading":37.63154609283778,"pitch":-6.8232553353073815,"roll":-3.0860679965752604},"location":"Right Ankle"},{"euler":{"heading":58.81150945347293,"pitch":-159.66141485392012,"roll":55.410335250619625},"location":"Right Hip"},{"euler":{"heading":47.84333327506913,"pitch":-109.59945489738735,"roll":-9.98874424282184},"location":"Right Knee"},{"euler":{"heading":13.6676141657115,"pitch":-135.85974064426628,"roll":57.709025886273444},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.236"} +{"sensors":[{"euler":{"heading":32.6454845772935,"pitch":132.64562155937298,"roll":21.20298204170641},"location":"Left Knee"},{"euler":{"heading":38.94950755901905,"pitch":102.37530584423408,"roll":28.215176880804865},"location":"Left Ankle"},{"euler":{"heading":37.52492111002135,"pitch":-6.542802776581248,"roll":-3.2502947061918723},"location":"Right Ankle"},{"euler":{"heading":58.695830065913704,"pitch":-159.89576319871358,"roll":56.156082748195026},"location":"Right Hip"},{"euler":{"heading":48.51414726115719,"pitch":-109.9407674078072,"roll":-9.97197902297531},"location":"Right Knee"},{"euler":{"heading":12.39197967783365,"pitch":-134.0954358251752,"roll":57.005431938474075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.336"} +{"sensors":[{"euler":{"heading":53.28777623819393,"pitch":134.61155675845285,"roll":22.681890911894204},"location":"Left Knee"},{"euler":{"heading":35.30442078686035,"pitch":101.23377768715513,"roll":25.31123399951649},"location":"Left Ankle"},{"euler":{"heading":36.95010146554085,"pitch":-6.063106555936231,"roll":-3.5950945144386925},"location":"Right Ankle"},{"euler":{"heading":58.76758052328872,"pitch":-160.1613269441037,"roll":56.93196130284816},"location":"Right Hip"},{"euler":{"heading":49.68172101247718,"pitch":-110.42797182100357,"roll":-10.521612817570274},"location":"Right Knee"},{"euler":{"heading":11.591249166192442,"pitch":-132.74271797689042,"roll":56.42822038629227},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.437"} +{"sensors":[{"euler":{"heading":70.73068507843257,"pitch":136.47371683184318,"roll":24.162806074159697},"location":"Left Knee"},{"euler":{"heading":32.21281218527805,"pitch":100.62295414820072,"roll":22.4516614609153},"location":"Left Ankle"},{"euler":{"heading":35.83140123807509,"pitch":-5.581478939864324,"roll":-4.234087187110382},"location":"Right Ankle"},{"euler":{"heading":58.97496240993435,"pitch":-160.60376941812646,"roll":57.76483123824197},"location":"Right Hip"},{"euler":{"heading":51.487908113836795,"pitch":-110.83910441429357,"roll":-11.678891886525188},"location":"Right Knee"},{"euler":{"heading":11.417181816076777,"pitch":-132.1072627630794,"roll":56.00104095994588},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.538"} +{"sensors":[{"euler":{"heading":91.82624230512778,"pitch":137.2669429300597,"roll":25.336380683714907},"location":"Left Knee"},{"euler":{"heading":30.96559288856875,"pitch":100.32588337852941,"roll":20.898589063374246},"location":"Left Ankle"},{"euler":{"heading":33.56582588426486,"pitch":-5.609400107807017,"roll":-4.895530038379116},"location":"Right Ankle"},{"euler":{"heading":59.51337554466068,"pitch":-160.92089027960452,"roll":58.357951180189595},"location":"Right Hip"},{"euler":{"heading":53.983459741551144,"pitch":-110.84251897908305,"roll":-13.831912092275712},"location":"Right Knee"},{"euler":{"heading":11.381671197305426,"pitch":-131.76412217420716,"roll":55.775020249027556},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.639"} +{"sensors":[{"euler":{"heading":75.68068735096134,"pitch":137.37829208000215,"roll":26.243741101901946},"location":"Left Knee"},{"euler":{"heading":30.562683084660602,"pitch":100.23543067134185,"roll":19.87969755198023},"location":"Left Ankle"},{"euler":{"heading":30.331463892610817,"pitch":-5.521704431985431,"roll":-5.76753734070259},"location":"Right Ankle"},{"euler":{"heading":60.459578778779274,"pitch":-160.39333789948907,"roll":58.33579171735066},"location":"Right Hip"},{"euler":{"heading":56.78186875443137,"pitch":-111.24394434442323,"roll":-16.45789148800308},"location":"Right Knee"},{"euler":{"heading":11.578516831159096,"pitch":-131.80439595685058,"roll":55.838038583647176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.740"} +{"sensors":[{"euler":{"heading":63.04336475132271,"pitch":136.99747923325882,"roll":26.910210932902686},"location":"Left Knee"},{"euler":{"heading":30.773803971386016,"pitch":100.26059780808677,"roll":19.379844857359004},"location":"Left Ankle"},{"euler":{"heading":28.68198351024624,"pitch":-5.787178642634027,"roll":-6.045298560830881},"location":"Right Ankle"},{"euler":{"heading":61.62077394803287,"pitch":-159.55925044097162,"roll":57.5844673340216},"location":"Right Hip"},{"euler":{"heading":57.85441493228296,"pitch":-111.1375048509684,"roll":-18.10280196094686},"location":"Right Knee"},{"euler":{"heading":12.167755969850045,"pitch":-132.56022092147958,"roll":56.10314807091812},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.841"} +{"sensors":[{"euler":{"heading":53.12994627791355,"pitch":136.33778987481415,"roll":27.287361183547755},"location":"Left Knee"},{"euler":{"heading":31.404458209639554,"pitch":100.37255053726179,"roll":19.319930914447944},"location":"Left Ankle"},{"euler":{"heading":29.566826442673747,"pitch":-6.29493848275663,"roll":-5.719942927109176},"location":"Right Ankle"},{"euler":{"heading":62.57155928324011,"pitch":-158.91152102408296,"roll":56.363589630314145},"location":"Right Hip"},{"euler":{"heading":56.55663198011715,"pitch":-110.46449556656495,"roll":-17.760085705529406},"location":"Right Knee"},{"euler":{"heading":12.923708483145697,"pitch":-134.02298339397325,"roll":56.43221865324746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.942"} +{"sensors":[{"euler":{"heading":45.65494329219998,"pitch":135.4198068034604,"roll":27.277861896254695},"location":"Left Knee"},{"euler":{"heading":32.390516512751816,"pitch":100.67599423100098,"roll":19.68188781431107},"location":"Left Ankle"},{"euler":{"heading":32.592168918676244,"pitch":-6.647382170487733,"roll":-4.9201855746796355},"location":"Right Ankle"},{"euler":{"heading":62.244234058412445,"pitch":-158.80697673492094,"roll":55.437207051608276},"location":"Right Hip"},{"euler":{"heading":53.13372159113159,"pitch":-109.56418616428635,"roll":-15.40478448475841},"location":"Right Knee"},{"euler":{"heading":13.732931418596557,"pitch":-135.73899100354322,"roll":56.8845644203146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.42"} +{"sensors":[{"euler":{"heading":40.06355139737941,"pitch":134.3810610333264,"roll":26.775805695191817},"location":"Left Knee"},{"euler":{"heading":33.91728219583304,"pitch":101.14082271099521,"roll":20.69312396899468},"location":"Left Ankle"},{"euler":{"heading":35.610339024548004,"pitch":-6.746323297862297,"roll":-3.9705833883121944},"location":"Right Ankle"},{"euler":{"heading":60.80499492035749,"pitch":-159.1998924382172,"roll":55.08646176852757},"location":"Right Hip"},{"euler":{"heading":49.55815631540854,"pitch":-109.05867462006125,"roll":-12.548203578794658},"location":"Right Knee"},{"euler":{"heading":14.538209656488505,"pitch":-137.79711467112756,"roll":57.37116983068754},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.143"} +{"sensors":[{"euler":{"heading":36.68033265849234,"pitch":133.26871195245053,"roll":25.35242240848597},"location":"Left Knee"},{"euler":{"heading":35.91650502866701,"pitch":101.69817649343486,"roll":22.85668096425735},"location":"Left Ankle"},{"euler":{"heading":37.118473572907085,"pitch":-6.7169465057498545,"roll":-3.4561398779782024},"location":"Right Ankle"},{"euler":{"heading":59.858414484751535,"pitch":-159.52570552777922,"roll":55.012838715686684},"location":"Right Hip"},{"euler":{"heading":47.49255698170418,"pitch":-109.01742135566647,"roll":-10.664901008166067},"location":"Right Knee"},{"euler":{"heading":15.203515904995943,"pitch":-139.3562487966358,"roll":57.83526816986049},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.243"} +{"sensors":[{"euler":{"heading":35.62240544901208,"pitch":132.27406560634572,"roll":23.077517280400258},"location":"Left Knee"},{"euler":{"heading":39.485691476278056,"pitch":103.62938587039642,"roll":26.31264729022953},"location":"Left Ankle"},{"euler":{"heading":37.88959849784804,"pitch":-6.565512718606,"roll":-3.210609148485408},"location":"Right Ankle"},{"euler":{"heading":58.84554315391447,"pitch":-159.93943182508465,"roll":55.4158983522419},"location":"Right Hip"},{"euler":{"heading":46.609808342073684,"pitch":-109.33681076222524,"roll":-9.519606364207599},"location":"Right Knee"},{"euler":{"heading":14.368956565383199,"pitch":-138.66243151146878,"roll":57.86282888759546},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.343"} +{"sensors":[{"euler":{"heading":34.81562888261117,"pitch":131.69508152796155,"roll":21.155754400454022},"location":"Left Knee"},{"euler":{"heading":41.724427061195854,"pitch":103.89056220024156,"roll":29.05936540121399},"location":"Left Ankle"},{"euler":{"heading":38.16427628602623,"pitch":-6.202562368963507,"roll":-3.2321921230320085},"location":"Right Ankle"},{"euler":{"heading":58.36103305761062,"pitch":-160.1711150576822,"roll":56.09571827635346},"location":"Right Hip"},{"euler":{"heading":46.65395940433722,"pitch":-109.89930242707722,"roll":-8.952937086130444},"location":"Right Knee"},{"euler":{"heading":12.900839684145962,"pitch":-137.1190361674311,"roll":57.269455901385115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.445"} +{"sensors":[{"euler":{"heading":31.111043608861674,"pitch":132.25321925229423,"roll":20.885290047462856},"location":"Left Knee"},{"euler":{"heading":40.65024588303511,"pitch":102.9140513969397,"roll":29.19046034739112},"location":"Left Ankle"},{"euler":{"heading":38.13353393091735,"pitch":-5.660106568572516,"roll":-3.4360265551306557},"location":"Right Ankle"},{"euler":{"heading":58.166457179597955,"pitch":-160.2975251341306,"roll":56.9189561500434},"location":"Right Hip"},{"euler":{"heading":47.183570778586585,"pitch":-110.5212479610423,"roll":-8.814726559181327},"location":"Right Knee"},{"euler":{"heading":11.508497342737504,"pitch":-135.36573772767082,"roll":56.441207400647826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.545"} +{"sensors":[{"euler":{"heading":51.763838807591036,"pitch":134.13757553775116,"roll":22.263622576102165},"location":"Left Knee"},{"euler":{"heading":37.22017053822631,"pitch":101.73911103406644,"roll":26.847727541003618},"location":"Left Ankle"},{"euler":{"heading":37.64462812954471,"pitch":-5.0503456814016205,"roll":-3.709650867129832},"location":"Right Ankle"},{"euler":{"heading":58.227115045446084,"pitch":-160.50109007626955,"roll":57.753063199583},"location":"Right Hip"},{"euler":{"heading":48.30687167717014,"pitch":-111.16726528134376,"roll":-9.200959753426234},"location":"Right Knee"},{"euler":{"heading":10.618151875829627,"pitch":-133.91001843289945,"roll":55.76308966539639},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.645"} +{"sensors":[{"euler":{"heading":69.6671913124913,"pitch":136.4847758019,"roll":23.831887942159696},"location":"Left Knee"},{"euler":{"heading":33.44848876056267,"pitch":100.86618662547885,"roll":23.503113639630165},"location":"Left Ankle"},{"euler":{"heading":36.51303975617174,"pitch":-4.397518021448956,"roll":-4.3318010680670405},"location":"Right Ankle"},{"euler":{"heading":58.520539252248035,"pitch":-160.83986891737652,"roll":58.60889611071422},"location":"Right Hip"},{"euler":{"heading":50.11248006084637,"pitch":-111.69832248584912,"roll":-10.269834767622465},"location":"Right Knee"},{"euler":{"heading":10.507449973640997,"pitch":-133.04461770182647,"roll":55.2862199021344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.746"} +{"sensors":[{"euler":{"heading":90.6165722376219,"pitch":137.74068391106877,"roll":25.250972187638826},"location":"Left Knee"},{"euler":{"heading":32.1200509005725,"pitch":101.01565768762453,"roll":21.66571739930931},"location":"Left Ankle"},{"euler":{"heading":34.27258344832126,"pitch":-4.252688613456893,"roll":-5.001784816903986},"location":"Right Ankle"},{"euler":{"heading":59.212638051385866,"pitch":-161.26532760012287,"roll":59.252521215240385},"location":"Right Hip"},{"euler":{"heading":52.643229680893896,"pitch":-111.73891015109014,"roll":-12.307188501685587},"location":"Right Knee"},{"euler":{"heading":10.81514298790422,"pitch":-132.70743621951786,"roll":54.99145441322922},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.846"} +{"sensors":[{"euler":{"heading":74.4286172866318,"pitch":138.10423386832161,"roll":26.3567069262959},"location":"Left Knee"},{"euler":{"heading":31.4722801971368,"pitch":101.11523848090675,"roll":20.609524710556265},"location":"Left Ankle"},{"euler":{"heading":30.743687600005867,"pitch":-4.2583781669348735,"roll":-5.911247102697328},"location":"Right Ankle"},{"euler":{"heading":60.49276470633571,"pitch":-160.69906533914542,"roll":59.22850015434424},"location":"Right Hip"},{"euler":{"heading":55.35155261895369,"pitch":-111.9599414541638,"roll":-14.941465034662006},"location":"Right Knee"},{"euler":{"heading":11.174097228842863,"pitch":-132.44989156039068,"roll":55.045775080113536},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.947"} +{"sensors":[{"euler":{"heading":61.76252292356743,"pitch":137.8505610171761,"roll":27.226461966503738},"location":"Left Knee"},{"euler":{"heading":31.506690477495482,"pitch":101.26479973523087,"roll":19.998630111059107},"location":"Left Ankle"},{"euler":{"heading":28.419035761281457,"pitch":-4.632135574725655,"roll":-6.44287678597685},"location":"Right Ankle"},{"euler":{"heading":61.98088377614216,"pitch":-159.73482535219003,"roll":58.40414756584854},"location":"Right Hip"},{"euler":{"heading":56.57625810690592,"pitch":-111.71404910003298,"roll":-16.730625455656895},"location":"Right Knee"},{"euler":{"heading":11.741492719598254,"pitch":-132.9600092697776,"roll":55.261397111250865},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.47"} +{"sensors":[{"euler":{"heading":51.992014775169416,"pitch":137.16917539683294,"roll":27.79945055193848},"location":"Left Knee"},{"euler":{"heading":32.230466569361,"pitch":101.59632913847558,"roll":19.933362037781624},"location":"Left Ankle"},{"euler":{"heading":28.38838527829499,"pitch":-5.31516718041402,"roll":-6.424529396760494},"location":"Right Ankle"},{"euler":{"heading":63.18151812087055,"pitch":-158.999050694092,"roll":57.0874619211763},"location":"Right Hip"},{"euler":{"heading":55.61709410595346,"pitch":-110.96241485843044,"roll":-16.67301538144297},"location":"Right Knee"},{"euler":{"heading":12.49145029308954,"pitch":-133.93289852746452,"roll":55.646757957445715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.149"} +{"sensors":[{"euler":{"heading":44.711315606453105,"pitch":136.24939584167075,"roll":27.913652724509465},"location":"Left Knee"},{"euler":{"heading":33.203593330064,"pitch":101.97955613983099,"roll":20.260747580395254},"location":"Left Ankle"},{"euler":{"heading":30.46198228735006,"pitch":-5.9986238417626225,"roll":-5.6053107723687425},"location":"Right Ankle"},{"euler":{"heading":63.54033890939848,"pitch":-158.66620376983866,"roll":55.79495566612003},"location":"Right Hip"},{"euler":{"heading":52.85788953956839,"pitch":-109.96717846137827,"roll":-14.754058867333084},"location":"Right Knee"},{"euler":{"heading":13.248202117395792,"pitch":-135.29481168791187,"roll":56.13220345855049},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.250"} +{"sensors":[{"euler":{"heading":39.30874600270022,"pitch":135.1198448637612,"roll":27.612710505942403},"location":"Left Knee"},{"euler":{"heading":34.58897391264463,"pitch":102.46901608554347,"roll":21.068287054415045},"location":"Left Ankle"},{"euler":{"heading":33.61049631166192,"pitch":-6.4327622052071245,"roll":-4.525137721173633},"location":"Right Ankle"},{"euler":{"heading":62.87694645144659,"pitch":-158.66822957207106,"roll":55.071297039471084},"location":"Right Hip"},{"euler":{"heading":47.887595580661056,"pitch":-109.23308246239178,"roll":-11.882089185849765},"location":"Right Knee"},{"euler":{"heading":14.052134220205073,"pitch":-137.0919771894501,"roll":56.67254122383656},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.351"} +{"sensors":[{"euler":{"heading":35.628291369956095,"pitch":133.9253284134141,"roll":26.680466246250518},"location":"Left Knee"},{"euler":{"heading":36.46054016449936,"pitch":103.0664941903167,"roll":22.661079004354804},"location":"Left Ankle"},{"euler":{"heading":35.96851977086256,"pitch":-6.611572116265563,"roll":-3.7439111987585485},"location":"Right Ankle"},{"euler":{"heading":61.56087144104623,"pitch":-159.00894520455122,"roll":54.83859322446983},"location":"Right Hip"},{"euler":{"heading":45.40532145587396,"pitch":-109.03849659026844,"roll":-9.574635469765736},"location":"Right Knee"},{"euler":{"heading":15.013603635942445,"pitch":-139.21759330323846,"roll":57.22687778521709},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.452"} +{"sensors":[{"euler":{"heading":33.946488047623475,"pitch":133.05252601401597,"roll":24.671621354857965},"location":"Left Knee"},{"euler":{"heading":39.09880378351816,"pitch":104.2195039221911,"roll":25.665972649261143},"location":"Left Ankle"},{"euler":{"heading":37.05503311904199,"pitch":-6.725810287500406,"roll":-3.387771938104658},"location":"Right Ankle"},{"euler":{"heading":60.99456711681942,"pitch":-159.16861759849485,"roll":54.931236030500635},"location":"Right Hip"},{"euler":{"heading":44.24679833665519,"pitch":-109.07050645086264,"roll":-8.134716639317048},"location":"Right Knee"},{"euler":{"heading":14.986346598114183,"pitch":-140.01140190163574,"roll":57.466889589025406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.552"} +{"sensors":[{"euler":{"heading":33.776326773311744,"pitch":131.96548349359395,"roll":22.396078990021316},"location":"Left Knee"},{"euler":{"heading":41.4849328403987,"pitch":105.63144276593084,"roll":28.68229140182417},"location":"Left Ankle"},{"euler":{"heading":37.56416937290321,"pitch":-6.638931717665245,"roll":-3.333049239879481},"location":"Right Ankle"},{"euler":{"heading":60.174159297809524,"pitch":-159.44984324375892,"roll":55.514472037192085},"location":"Right Hip"},{"euler":{"heading":44.18999701658771,"pitch":-109.46808044860892,"roll":-7.360902353733585},"location":"Right Knee"},{"euler":{"heading":14.137630805700706,"pitch":-138.58344346704473,"roll":57.458148599039276},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.653"} +{"sensors":[{"euler":{"heading":31.966367465777505,"pitch":131.94498564307946,"roll":21.312027865303047},"location":"Left Knee"},{"euler":{"heading":41.6551004167559,"pitch":104.92333829115388,"roll":29.82428593298928},"location":"Left Ankle"},{"euler":{"heading":37.61838581597482,"pitch":-6.4473566201643875,"roll":-3.438110032258418},"location":"Right Ankle"},{"euler":{"heading":59.85318342221872,"pitch":-159.62702832235792,"roll":56.29787599205656},"location":"Right Hip"},{"euler":{"heading":44.88070630309656,"pitch":-109.86350709658097,"roll":-7.106595163433569},"location":"Right Knee"},{"euler":{"heading":12.764938173604634,"pitch":-136.85136670300136,"roll":56.8200364869757},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.756"} +{"sensors":[{"euler":{"heading":51.75668543945335,"pitch":133.19278817275472,"roll":22.04929092236616},"location":"Left Knee"},{"euler":{"heading":38.75043593913586,"pitch":103.55131936162483,"roll":28.26549419973355},"location":"Left Ankle"},{"euler":{"heading":37.294169107650895,"pitch":-6.190770782139233,"roll":-3.6520830774255693},"location":"Right Ankle"},{"euler":{"heading":59.75089203199308,"pitch":-159.82897583754345,"roll":57.131610166930514},"location":"Right Hip"},{"euler":{"heading":46.017007843666,"pitch":-110.26888127650508,"roll":-7.3342676117605645},"location":"Right Knee"},{"euler":{"heading":11.50423687168807,"pitch":-135.13542091540594,"roll":56.17128104830251},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.856"} +{"sensors":[{"euler":{"heading":69.15598299450104,"pitch":135.17801788191008,"roll":23.51903841779594},"location":"Left Knee"},{"euler":{"heading":34.7787573970979,"pitch":102.19090747324641,"roll":25.04760889099758},"location":"Left Ankle"},{"euler":{"heading":36.547130903811734,"pitch":-5.875358345209531,"roll":-3.8278660304971317},"location":"Right Ankle"},{"euler":{"heading":59.80982333645643,"pitch":-160.23763480078912,"roll":57.98116036544628},"location":"Right Hip"},{"euler":{"heading":47.69651906345295,"pitch":-110.61785834632441,"roll":-8.140758806156597},"location":"Right Knee"},{"euler":{"heading":11.102178631900827,"pitch":-133.95725871723133,"roll":55.72098049544782},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.957"} +{"sensors":[{"euler":{"heading":90.24555788667263,"pitch":136.45121569903577,"roll":24.884648143143366},"location":"Left Knee"},{"euler":{"heading":31.984540035568802,"pitch":101.67334157439423,"roll":22.39147289897269},"location":"Left Ankle"},{"euler":{"heading":35.09122315663807,"pitch":-5.649402567964738,"roll":-4.236630564051488},"location":"Right Ankle"},{"euler":{"heading":60.17912283578659,"pitch":-160.94035733894646,"roll":58.79745962860276},"location":"Right Hip"},{"euler":{"heading":49.8980987738682,"pitch":-110.71960792516884,"roll":-9.69098504062704},"location":"Right Knee"},{"euler":{"heading":11.450738853733013,"pitch":-133.3192312551053,"roll":55.515655206739176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.58"} +{"sensors":[{"euler":{"heading":74.5231667524142,"pitch":136.78284822113895,"roll":25.852815506874556},"location":"Left Knee"},{"euler":{"heading":31.00460559161058,"pitch":101.43093078097068,"roll":21.016539854765227},"location":"Left Ankle"},{"euler":{"heading":32.50198019332813,"pitch":-5.890838888145705,"roll":-4.790815939568086},"location":"Right Ankle"},{"euler":{"heading":61.290066698899224,"pitch":-160.96386676529525,"roll":59.036702647689616},"location":"Right Hip"},{"euler":{"heading":52.56876474706601,"pitch":-110.46685074111464,"roll":-12.199573343434114},"location":"Right Knee"},{"euler":{"heading":11.736139582335463,"pitch":-132.96187248759176,"roll":55.567673775029185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.159"} +{"sensors":[{"euler":{"heading":62.184767764942244,"pitch":136.5419112317349,"roll":26.568362719845894},"location":"Left Knee"},{"euler":{"heading":30.76704056433911,"pitch":101.34832137069233,"roll":20.194514050358404},"location":"Left Ankle"},{"euler":{"heading":29.442552280960566,"pitch":-6.436300516488611,"roll":-5.405245319322713},"location":"Right Ankle"},{"euler":{"heading":62.7764011590295,"pitch":-160.20035925302383,"roll":58.510024240343185},"location":"Right Hip"},{"euler":{"heading":54.92197173989441,"pitch":-110.26786360258798,"roll":-14.71923529985335},"location":"Right Knee"},{"euler":{"heading":12.344379767191873,"pitch":-133.2152022844124,"roll":55.870392308870585},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.259"} +{"sensors":[{"euler":{"heading":52.278295313471126,"pitch":136.01473735823757,"roll":27.04937494656381},"location":"Left Knee"},{"euler":{"heading":31.125436188672115,"pitch":101.25573425125106,"roll":19.896581458201275},"location":"Left Ankle"},{"euler":{"heading":28.340588649867136,"pitch":-7.054726610085315,"roll":-5.658016463483211},"location":"Right Ankle"},{"euler":{"heading":64.24311311035358,"pitch":-159.23005087498842,"roll":57.43891531307204},"location":"Right Hip"},{"euler":{"heading":55.29110445587965,"pitch":-109.7964850265464,"roll":-15.72691877788888},"location":"Right Knee"},{"euler":{"heading":13.06832785533028,"pitch":-134.23516001797364,"roll":56.24538499539648},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.360"} +{"sensors":[{"euler":{"heading":44.80897972292729,"pitch":135.21666424666543,"roll":27.16952961871344},"location":"Left Knee"},{"euler":{"heading":31.811280437227104,"pitch":101.27302470391807,"roll":19.959926907529923},"location":"Left Ankle"},{"euler":{"heading":29.441870702401477,"pitch":-7.88186381283054,"roll":-4.977110705916472},"location":"Right Ankle"},{"euler":{"heading":65.02193841148697,"pitch":-158.50662100390824,"roll":56.16053954252097},"location":"Right Hip"},{"euler":{"heading":53.262789331879155,"pitch":-108.83486861467497,"roll":-14.688685543266969},"location":"Right Knee"},{"euler":{"heading":13.75027537285271,"pitch":-135.65155488444697,"roll":56.691722069095405},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.461"} +{"sensors":[{"euler":{"heading":39.305478967780374,"pitch":134.20318770401914,"roll":26.879918976290348},"location":"Left Knee"},{"euler":{"heading":32.96143441290805,"pitch":101.42541247895974,"roll":20.522597773912796},"location":"Left Ankle"},{"euler":{"heading":32.40662098841258,"pitch":-8.190366889581238,"roll":-4.010202905635289},"location":"Right Ankle"},{"euler":{"heading":64.73217172743873,"pitch":-158.1433274164079,"roll":55.30697985618247},"location":"Right Hip"},{"euler":{"heading":49.758961762412845,"pitch":-108.07768673379263,"roll":-12.060746799065782},"location":"Right Knee"},{"euler":{"heading":14.49890309866411,"pitch":-137.34938683339448,"roll":57.20261690070435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.562"} +{"sensors":[{"euler":{"heading":35.48887424999967,"pitch":133.09586819446804,"roll":25.999545530808884},"location":"Left Knee"},{"euler":{"heading":34.61067083805834,"pitch":101.6941011465032,"roll":21.84030645480108},"location":"Left Ankle"},{"euler":{"heading":34.786592820651755,"pitch":-8.297109714152587,"roll":-3.3136313631089043},"location":"Right Ankle"},{"euler":{"heading":63.31774017389301,"pitch":-158.33183386629716,"roll":54.956731809658784},"location":"Right Hip"},{"euler":{"heading":46.46791473754158,"pitch":-107.8146485615012,"roll":-9.46875944841712},"location":"Right Knee"},{"euler":{"heading":15.52210488819148,"pitch":-139.56942302735328,"roll":57.8076002842791},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.663"} +{"sensors":[{"euler":{"heading":33.82638815458575,"pitch":132.24251505744365,"roll":23.996020093109365},"location":"Left Knee"},{"euler":{"heading":36.91231303980934,"pitch":102.49608974210015,"roll":24.578448182290565},"location":"Left Ankle"},{"euler":{"heading":35.84946031931898,"pitch":-8.27479248339983,"roll":-3.034094283987217},"location":"Right Ankle"},{"euler":{"heading":62.78386246450102,"pitch":-158.28243227278796,"roll":54.87166807853966},"location":"Right Hip"},{"euler":{"heading":44.73634886620512,"pitch":-107.87984256361214,"roll":-7.8427169146696905},"location":"Right Knee"},{"euler":{"heading":15.699972248744132,"pitch":-140.5319043098881,"roll":58.135058288635214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.763"} +{"sensors":[{"euler":{"heading":33.89202018661956,"pitch":131.19090761269948,"roll":21.618275632129198},"location":"Left Knee"},{"euler":{"heading":39.81354276211012,"pitch":104.16709314721987,"roll":27.62687392343798},"location":"Left Ankle"},{"euler":{"heading":36.33923537744842,"pitch":-8.100020179275754,"roll":-2.9832886068969726},"location":"Right Ankle"},{"euler":{"heading":61.92460713841416,"pitch":-158.4398704611982,"roll":55.29410186856158},"location":"Right Hip"},{"euler":{"heading":44.400590611078805,"pitch":-108.28960814113282,"roll":-6.965882312397106},"location":"Right Knee"},{"euler":{"heading":14.8230169379219,"pitch":-139.13766743105154,"roll":58.16382803283002},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.864"} +{"sensors":[{"euler":{"heading":32.74480748279936,"pitch":131.00033361986232,"roll":20.30500230235301},"location":"Left Knee"},{"euler":{"heading":40.66112242802463,"pitch":103.99662042642312,"roll":29.071405419074562},"location":"Left Ankle"},{"euler":{"heading":36.37165358699654,"pitch":-7.834857539725368,"roll":-3.115675044574143},"location":"Right Ankle"},{"euler":{"heading":61.625330735104995,"pitch":-158.41586374076857,"roll":55.93199990507022},"location":"Right Hip"},{"euler":{"heading":44.78560126500471,"pitch":-108.71984787629764,"roll":-6.630245220241168},"location":"Right Knee"},{"euler":{"heading":13.557998586735378,"pitch":-137.46583100051907,"roll":57.565603756908565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.965"} +{"sensors":[{"euler":{"heading":52.22760266097578,"pitch":132.09423848698273,"roll":20.864574436845114},"location":"Left Knee"},{"euler":{"heading":38.13276300011267,"pitch":103.05163799599417,"roll":27.774481229904595},"location":"Left Ankle"},{"euler":{"heading":36.00580727839951,"pitch":-7.41655924687379,"roll":-3.3246478470462772},"location":"Right Ankle"},{"euler":{"heading":61.4337913118434,"pitch":-158.44170311873287,"roll":56.68163186170472},"location":"Right Hip"},{"euler":{"heading":45.68943302226403,"pitch":-109.23995785793761,"roll":-6.766488344410472},"location":"Right Knee"},{"euler":{"heading":12.230882870116508,"pitch":-135.62009065308803,"roll":56.85781690510432},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.66"} +{"sensors":[{"euler":{"heading":69.58318665405649,"pitch":134.11856926542396,"roll":22.33405715067727},"location":"Left Knee"},{"euler":{"heading":34.243280931727575,"pitch":101.91711748723093,"roll":24.609248799234372},"location":"Left Ankle"},{"euler":{"heading":35.18306565000178,"pitch":-6.859692317792506,"roll":-3.6980466643106005},"location":"Right Ankle"},{"euler":{"heading":61.31857619482392,"pitch":-158.58399068035013,"roll":57.484806597045186},"location":"Right Hip"},{"euler":{"heading":47.17265292998116,"pitch":-109.84138918586916,"roll":-7.460520883858906},"location":"Right Knee"},{"euler":{"heading":11.495015121878684,"pitch":-134.2590822085985,"roll":56.288701913830494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.167"} +{"sensors":[{"euler":{"heading":84.21009138870834,"pitch":135.9324998136496,"roll":23.752935050365423},"location":"Left Knee"},{"euler":{"heading":31.088303804094892,"pitch":101.34830684033267,"roll":21.63809331933743},"location":"Left Ankle"},{"euler":{"heading":33.70084386729556,"pitch":-6.332016081396021,"roll":-4.244011715032882},"location":"Right Ankle"},{"euler":{"heading":61.331253720176534,"pitch":-159.10513345190745,"roll":58.34832147369158},"location":"Right Hip"},{"euler":{"heading":49.27890791250847,"pitch":-110.24292202270065,"roll":-8.843587700302677},"location":"Right Knee"},{"euler":{"heading":11.427565100141557,"pitch":-133.45560173507124,"roll":55.910466017030444},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.268"} +{"sensors":[{"euler":{"heading":69.38513823007187,"pitch":136.58101398692372,"roll":24.876318994728628},"location":"Left Knee"},{"euler":{"heading":30.00322950196592,"pitch":101.23788518022087,"roll":20.09701314392719},"location":"Left Ankle"},{"euler":{"heading":31.149508076689955,"pitch":-6.4015033071553935,"roll":-4.904510496357375},"location":"Right Ankle"},{"euler":{"heading":61.98967259501432,"pitch":-157.7277118871433,"roll":58.8027026457944},"location":"Right Hip"},{"euler":{"heading":52.09149848477869,"pitch":-109.98794708693788,"roll":-11.313878456522183},"location":"Right Knee"},{"euler":{"heading":11.372337096077183,"pitch":-132.89502089234657,"roll":55.73467839385258},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.369"} +{"sensors":[{"euler":{"heading":58.16800547150493,"pitch":136.40089361666375,"roll":25.791770899443335},"location":"Left Knee"},{"euler":{"heading":29.97089614730021,"pitch":101.45901398356848,"roll":19.18409801744202},"location":"Left Ankle"},{"euler":{"heading":28.127063823517197,"pitch":-6.58328671845195,"roll":-5.793499456186234},"location":"Right Ankle"},{"euler":{"heading":63.129261319922634,"pitch":-157.2482621246539,"roll":58.36368185422591},"location":"Right Hip"},{"euler":{"heading":54.58469441467373,"pitch":-109.9118046202498,"roll":-13.816721840354578},"location":"Right Knee"},{"euler":{"heading":11.87408476806448,"pitch":-132.94662417513382,"roll":55.8788232434006},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.469"} +{"sensors":[{"euler":{"heading":49.48283527131989,"pitch":135.6612123431121,"roll":26.495289053063566},"location":"Left Knee"},{"euler":{"heading":30.669749161885953,"pitch":101.83746715545023,"roll":18.869320326733483},"location":"Left Ankle"},{"euler":{"heading":27.108890140752774,"pitch":-7.086660531460071,"roll":-6.2055331074403774},"location":"Right Ankle"},{"euler":{"heading":64.66877669969406,"pitch":-156.61822483184275,"roll":57.16975165967996},"location":"Right Hip"},{"euler":{"heading":54.87820007535316,"pitch":-109.35538997465513,"roll":-14.797295995961715},"location":"Right Knee"},{"euler":{"heading":12.784321053750464,"pitch":-133.64730253823336,"roll":56.24112332269061},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.570"} +{"sensors":[{"euler":{"heading":42.864887938462516,"pitch":134.65895596608783,"roll":26.834619716050355},"location":"Left Knee"},{"euler":{"heading":31.973242083930913,"pitch":102.2988261513521,"roll":19.167125986373865},"location":"Left Ankle"},{"euler":{"heading":28.409576079094883,"pitch":-7.779963254714052,"roll":-5.6568494081602925},"location":"Right Ankle"},{"euler":{"heading":65.31101821688571,"pitch":-156.41078355237022,"roll":55.75645675482705},"location":"Right Hip"},{"euler":{"heading":52.91875836885329,"pitch":-108.38222492656777,"roll":-13.829657133064643},"location":"Right Knee"},{"euler":{"heading":13.654472989520851,"pitch":-134.88775030428997,"roll":56.64624863431018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.671"} +{"sensors":[{"euler":{"heading":37.97525227529758,"pitch":133.5082815361699,"roll":26.707664119698098},"location":"Left Knee"},{"euler":{"heading":33.40320442858901,"pitch":102.75791556213048,"roll":19.834938516637845},"location":"Left Ankle"},{"euler":{"heading":31.388965358242046,"pitch":-8.15166738271407,"roll":-4.631226824489757},"location":"Right Ankle"},{"euler":{"heading":64.94508872559425,"pitch":-156.45494210572934,"roll":54.875937028282266},"location":"Right Hip"},{"euler":{"heading":49.42970712498353,"pitch":-107.53730397348578,"roll":-11.265597476486272},"location":"Right Knee"},{"euler":{"heading":14.491803903399148,"pitch":-136.43826272226573,"roll":57.18525035334802},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.772"} +{"sensors":[{"euler":{"heading":34.56615470180354,"pitch":132.33626815390147,"roll":25.99230909459139},"location":"Left Knee"},{"euler":{"heading":35.2637117175113,"pitch":103.29224028099578,"roll":21.212115423094797},"location":"Left Ankle"},{"euler":{"heading":34.107915501338695,"pitch":-8.166966572884027,"roll":-3.8399085843995935},"location":"Right Ankle"},{"euler":{"heading":63.47424045635955,"pitch":-156.95863407476173,"roll":54.5964184352458},"location":"Right Hip"},{"euler":{"heading":46.287501014693234,"pitch":-107.28405251574085,"roll":-8.844373565076978},"location":"Right Knee"},{"euler":{"heading":15.409276537650051,"pitch":-138.47743068315526,"roll":57.720542036905584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.874"} +{"sensors":[{"euler":{"heading":32.850890015145815,"pitch":131.40653922088424,"roll":24.251065557746806},"location":"Left Knee"},{"euler":{"heading":37.32217073793525,"pitch":103.90058886275996,"roll":23.754365545658064},"location":"Left Ankle"},{"euler":{"heading":35.46022868562344,"pitch":-8.115412044926728,"roll":-3.5043641180434415},"location":"Right Ankle"},{"euler":{"heading":62.5374503444373,"pitch":-157.37279523117877,"roll":54.593191946739616},"location":"Right Hip"},{"euler":{"heading":44.60051692240538,"pitch":-107.45917250153649,"roll":-7.206381998283634},"location":"Right Knee"},{"euler":{"heading":15.75027590161954,"pitch":-139.68647503518523,"roll":58.080062680743296},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.974"} +{"sensors":[{"euler":{"heading":32.8673616867416,"pitch":130.30960245227476,"roll":21.991747299802316},"location":"Left Knee"},{"euler":{"heading":39.83997780088299,"pitch":105.03370848023332,"roll":26.899018006183887},"location":"Left Ankle"},{"euler":{"heading":36.18700155472469,"pitch":-7.902293023966815,"roll":-3.4028787520592947},"location":"Right Ankle"},{"euler":{"heading":61.57421247329299,"pitch":-157.81890303138698,"roll":55.054006372316785},"location":"Right Hip"},{"euler":{"heading":44.212082564879616,"pitch":-107.93868082400468,"roll":-6.348461551917683},"location":"Right Knee"},{"euler":{"heading":15.066345973097675,"pitch":-138.646143700809,"roll":58.15568103121062},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.74"} +{"sensors":[{"euler":{"heading":31.876091685103415,"pitch":130.2504250050432,"roll":20.541877277184},"location":"Left Knee"},{"euler":{"heading":40.52818941066869,"pitch":104.30517443364097,"roll":28.555474122115246},"location":"Left Ankle"},{"euler":{"heading":36.455090466181844,"pitch":-7.655939164637037,"roll":-3.429953326061371},"location":"Right Ankle"},{"euler":{"heading":61.041162585178796,"pitch":-158.15123117042967,"roll":55.75636062753463},"location":"Right Hip"},{"euler":{"heading":44.60152454473076,"pitch":-108.42608372332245,"roll":-6.065611253803272},"location":"Right Knee"},{"euler":{"heading":13.50753321456076,"pitch":-137.03889934963334,"roll":57.51661458481955},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.175"} +{"sensors":[{"euler":{"heading":51.36766642488978,"pitch":131.31459464103904,"roll":20.977846468582282},"location":"Left Knee"},{"euler":{"heading":38.35685481772307,"pitch":103.16437221389923,"roll":27.491932393633434},"location":"Left Ankle"},{"euler":{"heading":36.43084376126308,"pitch":-7.409238466460503,"roll":-3.585249201036254},"location":"Right Ankle"},{"euler":{"heading":60.878186070173186,"pitch":-158.45789192879994,"roll":56.5286455643633},"location":"Right Hip"},{"euler":{"heading":45.46736751345053,"pitch":-108.84334122938033,"roll":-6.255565139973007},"location":"Right Knee"},{"euler":{"heading":12.070655726081267,"pitch":-135.2991692260365,"roll":56.730253517461826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.276"} +{"sensors":[{"euler":{"heading":68.89690772687108,"pitch":133.2822922117798,"roll":22.454390112103617},"location":"Left Knee"},{"euler":{"heading":34.510001373743634,"pitch":102.02507317907741,"roll":24.38924924470662},"location":"Left Ankle"},{"euler":{"heading":35.85807697681605,"pitch":-6.9838646937570035,"roll":-4.12410817878136},"location":"Right Ankle"},{"euler":{"heading":60.93499092179177,"pitch":-158.85428775892385,"roll":57.28692003306842},"location":"Right Hip"},{"euler":{"heading":46.84813855116009,"pitch":-109.30414145445795,"roll":-6.97441797888437},"location":"Right Knee"},{"euler":{"heading":11.304368235264477,"pitch":-134.20055540456252,"roll":56.04842152339513},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.376"} +{"sensors":[{"euler":{"heading":89.63509172998931,"pitch":135.0865939351315,"roll":23.879657271095212},"location":"Left Knee"},{"euler":{"heading":31.526670592509674,"pitch":101.36870425631311,"roll":21.599544511096713},"location":"Left Ankle"},{"euler":{"heading":34.43784694011424,"pitch":-6.628681106107481,"roll":-4.790067467012724},"location":"Right Ankle"},{"euler":{"heading":61.219314977131276,"pitch":-159.58753084690372,"roll":57.98495431735078},"location":"Right Hip"},{"euler":{"heading":48.92996158715151,"pitch":-109.6081472492378,"roll":-8.486959602960393},"location":"Right Knee"},{"euler":{"heading":11.247682407297171,"pitch":-133.38480636583262,"roll":55.6514251266238},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.477"} +{"sensors":[{"euler":{"heading":73.39906043021742,"pitch":134.4124822400013,"roll":25.032603927462286},"location":"Left Knee"},{"euler":{"heading":30.261093519517043,"pitch":101.0125846810432,"roll":20.020514134699532},"location":"Left Ankle"},{"euler":{"heading":31.640004542205777,"pitch":-6.658057479292642,"roll":-5.493747659510001},"location":"Right Ankle"},{"euler":{"heading":62.09421242614463,"pitch":-159.7813449411134,"roll":58.170690073060534},"location":"Right Hip"},{"euler":{"heading":51.51446154149143,"pitch":-109.4730082905036,"roll":-10.943612118126534},"location":"Right Knee"},{"euler":{"heading":10.969401116016513,"pitch":-132.6644913136309,"roll":55.46460690219387},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.578"} +{"sensors":[{"euler":{"heading":60.85412451115448,"pitch":134.70023681838663,"roll":25.9094080096521},"location":"Left Knee"},{"euler":{"heading":29.801535235093205,"pitch":100.81519241267262,"roll":19.03758697139546},"location":"Left Ankle"},{"euler":{"heading":28.55840833140452,"pitch":-6.857053348345893,"roll":-6.094818482862689},"location":"Right Ankle"},{"euler":{"heading":63.339709879461786,"pitch":-159.06492634124197,"roll":57.649102045200245},"location":"Right Hip"},{"euler":{"heading":53.65442850931388,"pitch":-109.63609918059196,"roll":-13.24981006119988},"location":"Right Knee"},{"euler":{"heading":11.104208463943374,"pitch":-132.6131722445169,"roll":55.557153282210265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.679"} +{"sensors":[{"euler":{"heading":51.04607868892323,"pitch":134.55039253894938,"roll":26.542282866109836},"location":"Left Knee"},{"euler":{"heading":30.067342637494274,"pitch":100.725756682778,"roll":18.62378528766786},"location":"Left Ankle"},{"euler":{"heading":27.53341824375969,"pitch":-7.251150825320736,"roll":-6.305775264140239},"location":"Right Ankle"},{"euler":{"heading":64.59138883001197,"pitch":-158.2204618532147,"roll":56.52314619923099},"location":"Right Hip"},{"euler":{"heading":53.87274175642385,"pitch":-109.33777799074011,"roll":-13.945429121037357},"location":"Right Knee"},{"euler":{"heading":11.57725233807942,"pitch":-133.1731562754228,"roll":55.86087257711018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.779"} +{"sensors":[{"euler":{"heading":43.60384694619494,"pitch":134.01646657414176,"roll":26.859307323427565},"location":"Left Knee"},{"euler":{"heading":30.606032059666195,"pitch":100.7280628264371,"roll":18.55850245322758},"location":"Left Ankle"},{"euler":{"heading":29.000936838312338,"pitch":-8.023931344178491,"roll":-5.753501345149005},"location":"Right Ankle"},{"euler":{"heading":65.11091103845223,"pitch":-157.76548298013017,"roll":55.26648451032279},"location":"Right Hip"},{"euler":{"heading":51.67337335519256,"pitch":-108.5089756642072,"roll":-12.68426964788169},"location":"Right Knee"},{"euler":{"heading":12.267790833894491,"pitch":-134.30412916952747,"roll":56.242716135000265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.880"} +{"sensors":[{"euler":{"heading":38.29493633710745,"pitch":133.19444774054853,"roll":26.741893935596426},"location":"Left Knee"},{"euler":{"heading":31.61785990149931,"pitch":100.96201659566854,"roll":18.980999560805373},"location":"Left Ankle"},{"euler":{"heading":32.00396766914677,"pitch":-8.425935795313956,"roll":-4.742465984007053},"location":"Right Ankle"},{"euler":{"heading":64.75151464852661,"pitch":-157.60943216464807,"roll":54.474190508668144},"location":"Right Hip"},{"euler":{"heading":48.37431539146941,"pitch":-107.8481927086656,"roll":-9.973516658658525},"location":"Right Knee"},{"euler":{"heading":13.112632457689772,"pitch":-135.73774458133386,"roll":56.772541390562075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.980"} +{"sensors":[{"euler":{"heading":34.55442751147517,"pitch":132.24253761754593,"roll":26.100571801025918},"location":"Left Knee"},{"euler":{"heading":33.076546040365585,"pitch":101.32234822143872,"roll":20.023235810175468},"location":"Left Ankle"},{"euler":{"heading":34.6887677203113,"pitch":-8.492434223238487,"roll":-3.98218328091049},"location":"Right Ankle"},{"euler":{"heading":63.256289137432105,"pitch":-157.97357681879137,"roll":54.23883332958598},"location":"Right Hip"},{"euler":{"heading":45.132027343468096,"pitch":-107.73183659769644,"roll":-7.479006682658976},"location":"Right Knee"},{"euler":{"heading":14.161106313099168,"pitch":-137.67708066226797,"roll":57.3827638277417},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.81"} +{"sensors":[{"euler":{"heading":32.59753019197015,"pitch":131.58331832991036,"roll":24.414428166535313},"location":"Left Knee"},{"euler":{"heading":34.74059595852429,"pitch":101.60084086843702,"roll":22.24457055665284},"location":"Left Ankle"},{"euler":{"heading":36.20336869059871,"pitch":-8.46937268666946,"roll":-3.8055188662252406},"location":"Right Ankle"},{"euler":{"heading":62.57896842481762,"pitch":-158.16039485816384,"roll":54.25178617348437},"location":"Right Hip"},{"euler":{"heading":43.30958850137898,"pitch":-107.88219708050536,"roll":-5.810372228190884},"location":"Right Knee"},{"euler":{"heading":14.817455100562169,"pitch":-138.99198478570193,"roll":57.798196827863265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.182"} +{"sensors":[{"euler":{"heading":32.28535656022266,"pitch":130.8560104578617,"roll":22.270366820888782},"location":"Left Knee"},{"euler":{"heading":36.89978943395167,"pitch":102.44737268644785,"roll":25.063162845463022},"location":"Left Ankle"},{"euler":{"heading":37.19381938918386,"pitch":-8.4901220303301,"roll":-3.6159331020858363},"location":"Right Ankle"},{"euler":{"heading":61.50119189490322,"pitch":-158.65048845777514,"roll":54.75696741184996},"location":"Right Hip"},{"euler":{"heading":42.92915009525592,"pitch":-108.23823091618075,"roll":-4.906887873579414},"location":"Right Knee"},{"euler":{"heading":14.035014477871036,"pitch":-138.3268727785291,"roll":57.763885570257045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.283"} +{"sensors":[{"euler":{"heading":31.215241987415453,"pitch":130.70323883837057,"roll":20.924789905779292},"location":"Left Knee"},{"euler":{"heading":37.84728223926461,"pitch":102.006480783797,"roll":26.579153236276856},"location":"Left Ankle"},{"euler":{"heading":37.63024495819287,"pitch":-8.455389825684508,"roll":-3.628686205289017},"location":"Right Ankle"},{"euler":{"heading":61.02893587640303,"pitch":-158.95721986662872,"roll":55.4281243987722},"location":"Right Hip"},{"euler":{"heading":43.32513915137471,"pitch":-108.57823298388779,"roll":-4.57091731518954},"location":"Right Knee"},{"euler":{"heading":12.7938768813966,"pitch":-136.84512397089588,"roll":57.197760482258055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.385"} +{"sensors":[{"euler":{"heading":26.736176925303837,"pitch":131.6113737489607,"roll":21.32433456326016},"location":"Left Knee"},{"euler":{"heading":36.2211840326834,"pitch":101.12001346387505,"roll":25.650101109243515},"location":"Left Ankle"},{"euler":{"heading":37.660597817731926,"pitch":-8.412070904049196,"roll":-3.7769682458805622},"location":"Right Ankle"},{"euler":{"heading":61.08220592883153,"pitch":-159.16937509029248,"roll":56.136507859277934},"location":"Right Hip"},{"euler":{"heading":44.20823347423196,"pitch":-108.80860338233104,"roll":-4.74253053981408},"location":"Right Knee"},{"euler":{"heading":11.492260008253668,"pitch":-135.23678755992398,"roll":56.38822261791757},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.485"} +{"sensors":[{"euler":{"heading":54.85828321048897,"pitch":133.45571530824483,"roll":22.79764509192727},"location":"Left Knee"},{"euler":{"heading":32.820769545825954,"pitch":100.18112920325638,"roll":22.74640324802393},"location":"Left Ankle"},{"euler":{"heading":37.01363094451102,"pitch":-8.23018530849562,"roll":-4.208410350094987},"location":"Right Ankle"},{"euler":{"heading":61.35769038683502,"pitch":-159.4505286792084,"roll":56.83101416698599},"location":"Right Hip"},{"euler":{"heading":45.549622133241186,"pitch":-109.03489573746745,"roll":-5.426951448308815},"location":"Right Knee"},{"euler":{"heading":10.87834091477529,"pitch":-134.02520163710585,"roll":55.756762209352054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.586"} +{"sensors":[{"euler":{"heading":77.49818809919046,"pitch":135.4278247093988,"roll":24.356728761198347},"location":"Left Knee"},{"euler":{"heading":29.858154652501824,"pitch":99.58720446247136,"roll":19.77409157713426},"location":"Left Ankle"},{"euler":{"heading":35.66344272394627,"pitch":-7.9288594906915275,"roll":-4.818787939871778},"location":"Right Ankle"},{"euler":{"heading":61.71999883523386,"pitch":-160.04976539706672,"roll":57.51890869259671},"location":"Right Hip"},{"euler":{"heading":47.40300376903591,"pitch":-109.23371674235526,"roll":-6.73592255558729},"location":"Right Knee"},{"euler":{"heading":10.934523548738357,"pitch":-133.29747680330223,"roll":55.32211149821553},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.687"} +{"sensors":[{"euler":{"heading":97.5933880702134,"pitch":134.72125346349182,"roll":25.60698141225281},"location":"Left Knee"},{"euler":{"heading":28.87113326130827,"pitch":99.46000299231748,"roll":18.249801116179107},"location":"Left Ankle"},{"euler":{"heading":33.19048933157124,"pitch":-7.941572033711862,"roll":-5.519736099629324},"location":"Right Ankle"},{"euler":{"heading":62.29608605501424,"pitch":-160.6633434603751,"roll":58.105695459393715},"location":"Right Hip"},{"euler":{"heading":50.020432536680275,"pitch":-109.15797668686551,"roll":-9.03809572159856},"location":"Right Knee"},{"euler":{"heading":11.17077567195545,"pitch":-132.72815635188087,"roll":55.1071661307596},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.787"} +{"sensors":[{"euler":{"heading":80.71197599538372,"pitch":134.85478474324634,"roll":26.50643688012182},"location":"Left Knee"},{"euler":{"heading":28.823960600955992,"pitch":99.5351513960318,"roll":17.45314881346733},"location":"Left Ankle"},{"euler":{"heading":29.72092804478261,"pitch":-7.756880145501025,"roll":-6.451272001547238},"location":"Right Ankle"},{"euler":{"heading":63.33853517264721,"pitch":-160.2316338928225,"roll":57.95295380410728},"location":"Right Hip"},{"euler":{"heading":52.704603344065276,"pitch":-109.60073785384662,"roll":-11.73364153002381},"location":"Right Knee"},{"euler":{"heading":11.447452958909057,"pitch":-132.40918761554659,"roll":55.186151575282224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.889"} +{"sensors":[{"euler":{"heading":67.12730654760878,"pitch":134.67834848926924,"roll":27.130081872847043},"location":"Left Knee"},{"euler":{"heading":29.1836712889869,"pitch":99.57342477559001,"roll":17.124668302026805},"location":"Left Ankle"},{"euler":{"heading":27.849140198556995,"pitch":-7.8454052865463035,"roll":-6.907750627967327},"location":"Right Ankle"},{"euler":{"heading":64.70338782619869,"pitch":-159.37131136195887,"roll":57.03590638821205},"location":"Right Hip"},{"euler":{"heading":53.98682209292589,"pitch":-109.66249886483916,"roll":-13.483118069448645},"location":"Right Knee"},{"euler":{"heading":11.888027093450951,"pitch":-132.87561482352453,"roll":55.41814684138627},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.989"} +{"sensors":[{"euler":{"heading":57.995872107851504,"pitch":134.16792257041124,"roll":27.486316917485883},"location":"Left Knee"},{"euler":{"heading":29.97166253985593,"pitch":99.74479947823961,"roll":17.19009823862672},"location":"Left Ankle"},{"euler":{"heading":28.59357517595674,"pitch":-8.436805936059253,"roll":-6.553862077263776},"location":"Right Ankle"},{"euler":{"heading":65.44042799902783,"pitch":-158.7711861734133,"roll":55.80775742543907},"location":"Right Hip"},{"euler":{"heading":52.80126573646281,"pitch":-108.93360425820694,"roll":-13.229075733973984},"location":"Right Knee"},{"euler":{"heading":12.355784250412817,"pitch":-133.83275086583305,"roll":55.72319849787667},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.89"} +{"sensors":[{"euler":{"heading":49.79968134832327,"pitch":133.34338711223717,"roll":27.44600136627941},"location":"Left Knee"},{"euler":{"heading":31.05682167878608,"pitch":100.07823140437004,"roll":17.64169446074948},"location":"Left Ankle"},{"euler":{"heading":31.063999007748695,"pitch":-8.936277799193107,"roll":-5.549926770655492},"location":"Right Ankle"},{"euler":{"heading":65.14022892809523,"pitch":-158.57892099637544,"roll":54.82723280463268},"location":"Right Hip"},{"euler":{"heading":49.874527279739624,"pitch":-108.0778505425885,"roll":-11.132372562128673},"location":"Right Knee"},{"euler":{"heading":12.952814373635698,"pitch":-134.97232356747085,"roll":56.207317906160704},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.190"} +{"sensors":[{"euler":{"heading":43.62372700030357,"pitch":132.4248716041103,"roll":26.898224373133523},"location":"Left Knee"},{"euler":{"heading":32.48042648157972,"pitch":100.43939872077699,"roll":18.62108215931476},"location":"Left Ankle"},{"euler":{"heading":34.002356714625094,"pitch":-9.251495364983416,"roll":-4.617709501260635},"location":"Right Ankle"},{"euler":{"heading":63.74103657806603,"pitch":-158.8448977934242,"roll":54.44533165985155},"location":"Right Hip"},{"euler":{"heading":46.699281732132064,"pitch":-107.46402363822453,"roll":-8.40872035626852},"location":"Right Knee"},{"euler":{"heading":13.602185291706919,"pitch":-136.59207995948825,"roll":56.740510415478845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.291"} +{"sensors":[{"euler":{"heading":39.53000216645213,"pitch":131.55805796628485,"roll":25.47508663448706},"location":"Left Knee"},{"euler":{"heading":34.40707191365262,"pitch":100.74837410152188,"roll":20.654750050766516},"location":"Left Ankle"},{"euler":{"heading":35.540265879907366,"pitch":-9.197845349896514,"roll":-4.226012706247779},"location":"Right Ankle"},{"euler":{"heading":62.52403571993048,"pitch":-159.18664379800296,"roll":54.367297674716596},"location":"Right Hip"},{"euler":{"heading":44.52151099007043,"pitch":-107.54473488593393,"roll":-6.461397117196542},"location":"Right Knee"},{"euler":{"heading":14.086327028567995,"pitch":-137.84967138428564,"roll":57.25865487469146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.392"} +{"sensors":[{"euler":{"heading":37.49792303997867,"pitch":130.74991867762913,"roll":23.40254415591231},"location":"Left Knee"},{"euler":{"heading":37.46498868549017,"pitch":101.67005144659637,"roll":24.040745424779125},"location":"Left Ankle"},{"euler":{"heading":36.46062168872538,"pitch":-9.07200978920592,"roll":-3.978591575516468},"location":"Right Ankle"},{"euler":{"heading":61.44432244094557,"pitch":-159.53749839392472,"roll":54.69502227708867},"location":"Right Hip"},{"euler":{"heading":43.70149452210415,"pitch":-107.94476040178316,"roll":-5.311679534494525},"location":"Right Knee"},{"euler":{"heading":13.192609999211088,"pitch":-136.89488623953082,"roll":57.29350342615144},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.493"} +{"sensors":[{"euler":{"heading":35.44761387710614,"pitch":130.50616880085877,"roll":21.901706499163417},"location":"Left Knee"},{"euler":{"heading":39.19591760443738,"pitch":101.38633647295991,"roll":26.183125571430892},"location":"Left Ankle"},{"euler":{"heading":36.934778560590836,"pitch":-8.833292866318471,"roll":-3.9449562044853295},"location":"Right Ankle"},{"euler":{"heading":60.809957308595024,"pitch":-159.87281389665557,"roll":55.31856402151211},"location":"Right Hip"},{"euler":{"heading":43.64837792736771,"pitch":-108.44347559698569,"roll":-4.735062741753409},"location":"Right Knee"},{"euler":{"heading":11.789015711122781,"pitch":-135.2283084280283,"roll":56.760232787661195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.594"} +{"sensors":[{"euler":{"heading":30.302708631498675,"pitch":131.4449405986369,"roll":22.095361197082628},"location":"Left Knee"},{"euler":{"heading":37.89024941961799,"pitch":100.33293864253334,"roll":25.684135848251557},"location":"Left Ankle"},{"euler":{"heading":36.9365726934294,"pitch":-8.438924643395763,"roll":-4.134496777560459},"location":"Right Ankle"},{"euler":{"heading":60.421336599404185,"pitch":-160.10488884687362,"roll":56.11465840345865},"location":"Right Hip"},{"euler":{"heading":44.13401849613476,"pitch":-108.98987547013058,"roll":-4.617577494812969},"location":"Right Knee"},{"euler":{"heading":10.574355858539755,"pitch":-133.48245139587482,"roll":56.03393186449302},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.695"} +{"sensors":[{"euler":{"heading":51.36951385481717,"pitch":133.45969209656457,"roll":23.501273184991934},"location":"Left Knee"},{"euler":{"heading":34.19928907533114,"pitch":99.31434681467599,"roll":22.89016127998183},"location":"Left Ankle"},{"euler":{"heading":36.44458119470397,"pitch":-7.90965674583185,"roll":-4.401132240383697},"location":"Right Ankle"},{"euler":{"heading":60.323110769606586,"pitch":-160.48730160663555,"roll":56.924203983789},"location":"Right Hip"},{"euler":{"heading":45.2629333006197,"pitch":-109.51997094371647,"roll":-5.093908169902246},"location":"Right Knee"},{"euler":{"heading":9.829496619245909,"pitch":-132.03941095301556,"roll":55.47184518194228},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.796"} +{"sensors":[{"euler":{"heading":69.29081070361266,"pitch":135.66923551097116,"roll":24.9220805953332},"location":"Left Knee"},{"euler":{"heading":30.760963246627043,"pitch":98.64829668276651,"roll":19.803104407923456},"location":"Left Ankle"},{"euler":{"heading":35.14399764225983,"pitch":-7.299938648014061,"roll":-5.112083327850011},"location":"Right Ankle"},{"euler":{"heading":60.575620794449094,"pitch":-160.91062638156652,"roll":57.65674160395724},"location":"Right Hip"},{"euler":{"heading":47.05530242144121,"pitch":-109.93424274288343,"roll":-6.274036687224013},"location":"Right Knee"},{"euler":{"heading":9.760629682084573,"pitch":-131.2568266905352,"roll":55.05240656556018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.897"} +{"sensors":[{"euler":{"heading":90.64727474104512,"pitch":136.73518298363228,"roll":26.10666358203201},"location":"Left Knee"},{"euler":{"heading":29.503336414040415,"pitch":98.58068220378003,"roll":18.192819796977336},"location":"Left Ankle"},{"euler":{"heading":32.872183803744505,"pitch":-7.182227393175963,"roll":-5.743514633348262},"location":"Right Ankle"},{"euler":{"heading":60.98451618594665,"pitch":-161.41853388040204,"roll":58.30770602491849},"location":"Right Hip"},{"euler":{"heading":49.593047670405824,"pitch":-109.94644320445904,"roll":-8.406115635985408},"location":"Right Knee"},{"euler":{"heading":9.924217891281197,"pitch":-130.8459510761243,"roll":54.839335628285575},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.997"} +{"sensors":[{"euler":{"heading":74.70940469067295,"pitch":136.88522514174016,"roll":27.047766436838945},"location":"Left Knee"},{"euler":{"heading":29.19297516072885,"pitch":98.68596816028324,"roll":17.264845762473044},"location":"Left Ankle"},{"euler":{"heading":29.436518596065326,"pitch":-6.802229261598676,"roll":-6.641873004460478},"location":"Right Ankle"},{"euler":{"heading":62.03275620030861,"pitch":-160.92687749831654,"roll":58.266544898061085},"location":"Right Hip"},{"euler":{"heading":52.1346847007004,"pitch":-110.44499832318834,"roll":-10.912075580564963},"location":"Right Knee"},{"euler":{"heading":10.33759319643676,"pitch":-130.74764412314556,"roll":54.98541558182087},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.99"} +{"sensors":[{"euler":{"heading":62.194571802241015,"pitch":136.5513152490262,"roll":27.72693303493911},"location":"Left Knee"},{"euler":{"heading":29.48582000713521,"pitch":98.82880125937552,"roll":16.81159018110678},"location":"Left Ankle"},{"euler":{"heading":27.426016208908656,"pitch":-6.749698496178168,"roll":-6.872134958535711},"location":"Right Ankle"},{"euler":{"heading":63.20615528220309,"pitch":-160.09554489570093,"roll":57.50397169014395},"location":"Right Hip"},{"euler":{"heading":52.925642568425545,"pitch":-110.45023035340341,"roll":-12.430547520416699},"location":"Right Knee"},{"euler":{"heading":10.99711105606803,"pitch":-131.37807083381534,"roll":55.31379484274265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.200"} +{"sensors":[{"euler":{"heading":52.60142415252785,"pitch":135.81516105230295,"roll":28.121517581327247},"location":"Left Knee"},{"euler":{"heading":30.31418650194995,"pitch":99.13046129213673,"roll":16.847348573297694},"location":"Left Ankle"},{"euler":{"heading":27.92012979649642,"pitch":-7.058883173116333,"roll":-6.575142114217375},"location":"Right Ankle"},{"euler":{"heading":63.97073801617151,"pitch":-159.45625358688466,"roll":56.344258896889016},"location":"Right Hip"},{"euler":{"heading":51.444857876736876,"pitch":-109.87232454007092,"roll":-12.032873263734716},"location":"Right Knee"},{"euler":{"heading":11.876006093099496,"pitch":-132.51927778465833,"roll":55.78335097316703},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.300"} +{"sensors":[{"euler":{"heading":45.448111643380614,"pitch":134.77447908583602,"roll":28.09212230801536},"location":"Left Knee"},{"euler":{"heading":31.37889707787652,"pitch":99.53422270553149,"roll":17.29587698485129},"location":"Left Ankle"},{"euler":{"heading":30.239098516562372,"pitch":-7.659703293442861,"roll":-5.569182545754306},"location":"Right Ankle"},{"euler":{"heading":63.84172345477322,"pitch":-159.2761104246971,"roll":55.35431676883579},"location":"Right Hip"},{"euler":{"heading":48.71039423836373,"pitch":-108.88565797752318,"roll":-10.12724775763689},"location":"Right Knee"},{"euler":{"heading":12.756167694472403,"pitch":-133.92053658599133,"roll":56.37470922677496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.401"} +{"sensors":[{"euler":{"heading":40.10822894386531,"pitch":133.6484873739057,"roll":27.5601721098047},"location":"Left Knee"},{"euler":{"heading":32.80359454250632,"pitch":100.01253719082392,"roll":18.29626992858155},"location":"Left Ankle"},{"euler":{"heading":33.54690547625527,"pitch":-7.983394064642402,"roll":-4.575680496022841},"location":"Right Ankle"},{"euler":{"heading":62.5054077949152,"pitch":-159.60061859186558,"roll":55.094690724162035},"location":"Right Hip"},{"euler":{"heading":45.323974029189685,"pitch":-108.24849622255178,"roll":-7.1841066663427275},"location":"Right Knee"},{"euler":{"heading":13.53629612774773,"pitch":-135.66412536304676,"roll":57.004939494623144},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.502"} +{"sensors":[{"euler":{"heading":36.71096927709179,"pitch":132.5166446908721,"roll":26.198918104446427},"location":"Left Knee"},{"euler":{"heading":34.7014081067798,"pitch":100.51075043188068,"roll":20.289491866658143},"location":"Left Ankle"},{"euler":{"heading":35.39920990112137,"pitch":-8.1692782392693,"roll":-4.0274584010252115},"location":"Right Ankle"},{"euler":{"heading":61.39339807056676,"pitch":-160.04883594315805,"roll":54.9905583544421},"location":"Right Hip"},{"euler":{"heading":43.18137947190096,"pitch":-108.08217065581232,"roll":-5.121407711663423},"location":"Right Knee"},{"euler":{"heading":14.347478357179842,"pitch":-137.42021462243113,"roll":57.67034407939006},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.602"} +{"sensors":[{"euler":{"heading":35.540475141611374,"pitch":131.35572637941175,"roll":23.98023221466789},"location":"Left Knee"},{"euler":{"heading":37.73571737678116,"pitch":102.01389062657708,"roll":23.59727155209153},"location":"Left Ankle"},{"euler":{"heading":36.25000028552032,"pitch":-8.147230352343882,"roll":-3.7810888102156572},"location":"Right Ankle"},{"euler":{"heading":60.49477633912663,"pitch":-160.47225257675197,"roll":55.264940640910034},"location":"Right Hip"},{"euler":{"heading":42.318821534093985,"pitch":-108.30027586827444,"roll":-3.8970160574151542},"location":"Right Knee"},{"euler":{"heading":13.792885417110343,"pitch":-136.89867182177485,"roll":57.891952417060864},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.704"} +{"sensors":[{"euler":{"heading":34.71881789835839,"pitch":130.8284274025943,"roll":21.996379877529158},"location":"Left Knee"},{"euler":{"heading":39.56027734387414,"pitch":102.13742074189669,"roll":26.28718826425848},"location":"Left Ankle"},{"euler":{"heading":36.70881421728089,"pitch":-7.966756463113304,"roll":-3.7721861819463935},"location":"Right Ankle"},{"euler":{"heading":60.04436061368255,"pitch":-160.74837619889433,"roll":55.8580501759374},"location":"Right Hip"},{"euler":{"heading":42.21303610748698,"pitch":-108.72950083672728,"roll":-3.2587738659802756},"location":"Right Knee"},{"euler":{"heading":12.756145176961294,"pitch":-135.26740575279644,"roll":57.55740259280694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.804"} +{"sensors":[{"euler":{"heading":31.23391533997742,"pitch":131.25497445854154,"roll":21.681622937362807},"location":"Left Knee"},{"euler":{"heading":38.86635184501768,"pitch":101.21471653818429,"roll":26.670095729035896},"location":"Left Ankle"},{"euler":{"heading":36.81100641237629,"pitch":-7.702379908918074,"roll":-3.8711459527156604},"location":"Right Ankle"},{"euler":{"heading":59.91931832262207,"pitch":-160.9803976601558,"roll":56.57904474904586},"location":"Right Hip"},{"euler":{"heading":42.655551494294116,"pitch":-109.16545827453365,"roll":-3.091470639211623},"location":"Right Knee"},{"euler":{"heading":11.580271482374638,"pitch":-133.4048687458327,"roll":56.903903644707476},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.905"} +{"sensors":[{"euler":{"heading":59.18311973096908,"pitch":132.80028124561412,"roll":22.859352901897335},"location":"Left Knee"},{"euler":{"heading":35.52170774505643,"pitch":100.14197219492247,"roll":24.341190720626997},"location":"Left Ankle"},{"euler":{"heading":36.43094727539153,"pitch":-7.32641007847655,"roll":-4.097434258347558},"location":"Right Ankle"},{"euler":{"heading":59.983402444845446,"pitch":-161.33898078860085,"roll":57.320634383994005},"location":"Right Hip"},{"euler":{"heading":43.61835867922101,"pitch":-109.6075077560716,"roll":-3.4335426515674503},"location":"Right Knee"},{"euler":{"heading":10.760154769629493,"pitch":-131.76706788731352,"roll":56.360131194041344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.7"} +{"sensors":[{"euler":{"heading":81.00963297628441,"pitch":134.86446529895036,"roll":24.38284008244351},"location":"Left Knee"},{"euler":{"heading":31.956719052619007,"pitch":99.30801464894536,"roll":21.1636672472337},"location":"Left Ankle"},{"euler":{"heading":35.38848243183204,"pitch":-6.867298196354161,"roll":-4.736204363062481},"location":"Right Ankle"},{"euler":{"heading":60.321249219984956,"pitch":-161.87748479937005,"roll":58.07491466950803},"location":"Right Hip"},{"euler":{"heading":45.2093206788753,"pitch":-109.84103870171839,"roll":-4.432730774739606},"location":"Right Knee"},{"euler":{"heading":10.813971631796777,"pitch":-131.04011677582423,"roll":56.0345536687675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.107"} +{"sensors":[{"euler":{"heading":100.36153975977116,"pitch":135.864279092277,"roll":25.64844481897177},"location":"Left Knee"},{"euler":{"heading":30.55970895993122,"pitch":99.23115231851179,"roll":19.227764050791215},"location":"Left Ankle"},{"euler":{"heading":33.12587545079361,"pitch":-7.0226088280303385,"roll":-5.4390629714969405},"location":"Right Ankle"},{"euler":{"heading":61.05566647713969,"pitch":-162.15667789131808,"roll":58.48395995104619},"location":"Right Hip"},{"euler":{"heading":47.74267730302795,"pitch":-109.54105857878015,"roll":-6.543768653185301},"location":"Right Knee"},{"euler":{"heading":10.881818050201781,"pitch":-130.59634790653132,"roll":55.89452467838665},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.208"} +{"sensors":[{"euler":{"heading":82.67532488396047,"pitch":136.17445491419826,"roll":26.55584669875849},"location":"Left Knee"},{"euler":{"heading":29.83795546445361,"pitch":99.00107820543474,"roll":18.18350510202714},"location":"Left Ankle"},{"euler":{"heading":29.775037807054563,"pitch":-6.776700552473521,"roll":-6.461507205159666},"location":"Right Ankle"},{"euler":{"heading":62.54285736032787,"pitch":-161.4818447729474,"roll":58.26550937738994},"location":"Right Hip"},{"euler":{"heading":50.33422870073351,"pitch":-109.76901988198537,"roll":-9.006907827128028},"location":"Right Knee"},{"euler":{"heading":11.121675159746212,"pitch":-130.51583912796093,"roll":55.99373762447437},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.308"} +{"sensors":[{"euler":{"heading":68.58031647310632,"pitch":136.0746255973715,"roll":27.174791586341225},"location":"Left Knee"},{"euler":{"heading":29.63342948686531,"pitch":98.85828825826813,"roll":17.59529966168023},"location":"Left Ankle"},{"euler":{"heading":27.691304753562818,"pitch":-7.017918277057396,"roll":-6.863504440025217},"location":"Right Ankle"},{"euler":{"heading":63.89730970507321,"pitch":-160.55015849064898,"roll":57.455472212309594},"location":"Right Hip"},{"euler":{"heading":51.29090785801906,"pitch":-109.54723423513417,"roll":-10.49257762643185},"location":"Right Knee"},{"euler":{"heading":11.585608741885526,"pitch":-130.9721211191422,"roll":56.327270559361374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.409"} +{"sensors":[{"euler":{"heading":57.41983868235508,"pitch":135.7048630782242,"roll":27.48515646960955},"location":"Left Knee"},{"euler":{"heading":29.83457291264005,"pitch":98.73502650130749,"roll":17.431656290593573},"location":"Left Ankle"},{"euler":{"heading":28.23247268882767,"pitch":-7.569127411315608,"roll":-6.561387265483492},"location":"Right Ankle"},{"euler":{"heading":64.83391988323599,"pitch":-159.74277063899675,"roll":56.34199008146233},"location":"Right Hip"},{"euler":{"heading":50.034995191411,"pitch":-108.9660462427443,"roll":-9.958205993043036},"location":"Right Knee"},{"euler":{"heading":12.096273819497558,"pitch":-131.89035046949382,"roll":56.77770889042402},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.510"} +{"sensors":[{"euler":{"heading":49.072377581425116,"pitch":134.95410265622945,"roll":27.40927946017708},"location":"Left Knee"},{"euler":{"heading":30.516510693006992,"pitch":98.79590393043509,"roll":17.729477554158965},"location":"Left Ankle"},{"euler":{"heading":30.655367841189566,"pitch":-8.073848127310258,"roll":-5.592407971672667},"location":"Right Ankle"},{"euler":{"heading":64.70307382213096,"pitch":-159.43430233498745,"roll":55.405771542909065},"location":"Right Hip"},{"euler":{"heading":47.01497721911245,"pitch":-108.17855017735748,"roll":-7.679183517353641},"location":"Right Knee"},{"euler":{"heading":12.781944669852905,"pitch":-133.13145955054682,"roll":57.37554915433592},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.610"} +{"sensors":[{"euler":{"heading":42.86174285757831,"pitch":133.97154757200965,"roll":26.918503404093393},"location":"Left Knee"},{"euler":{"heading":31.823989362634585,"pitch":99.03529493518876,"roll":18.617280586087222},"location":"Left Ankle"},{"euler":{"heading":33.71533242313391,"pitch":-8.41165117211238,"roll":-4.662094988969035},"location":"Right Ankle"},{"euler":{"heading":63.57334429913004,"pitch":-159.58918451082758,"roll":55.034235329647416},"location":"Right Hip"},{"euler":{"heading":43.626612430786196,"pitch":-107.6383785348194,"roll":-4.737047348592121},"location":"Right Knee"},{"euler":{"heading":13.664417824229872,"pitch":-134.8906561427964,"roll":58.10082444611291},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.711"} +{"sensors":[{"euler":{"heading":38.787184230897246,"pitch":132.9278799653046,"roll":25.67179585290764},"location":"Left Knee"},{"euler":{"heading":33.655550843816116,"pitch":99.42432781036948,"roll":20.556185179923116},"location":"Left Ankle"},{"euler":{"heading":35.245797627566404,"pitch":-8.402219424601707,"roll":-4.20077764404511},"location":"Right Ankle"},{"euler":{"heading":62.5710340015747,"pitch":-159.7828413003855,"roll":54.86451008313412},"location":"Right Hip"},{"euler":{"heading":41.23272273403556,"pitch":-107.75006674758095,"roll":-2.7347107995007685},"location":"Right Knee"},{"euler":{"heading":14.601016952783336,"pitch":-136.6251966794327,"roll":58.78683452046743},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.815"} +{"sensors":[{"euler":{"heading":37.17507929228621,"pitch":131.864585005787,"roll":23.497307118553415},"location":"Left Knee"},{"euler":{"heading":36.897206516030614,"pitch":100.89407179683081,"roll":23.796978531378613},"location":"Left Ankle"},{"euler":{"heading":35.85684764059074,"pitch":-8.239106873131734,"roll":-4.050881918609303},"location":"Right Ankle"},{"euler":{"heading":61.91086673145526,"pitch":-159.87484219622138,"roll":55.02603124148609},"location":"Right Hip"},{"euler":{"heading":40.02766253540868,"pitch":-108.05327108700988,"roll":-1.4281975063833507},"location":"Right Knee"},{"euler":{"heading":14.125334002119944,"pitch":-136.0722643613518,"roll":59.04492417500646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.915"} +{"sensors":[{"euler":{"heading":36.36638598644998,"pitch":131.09268574027226,"roll":21.398869687672534},"location":"Left Knee"},{"euler":{"heading":39.02828356592742,"pitch":101.26086666628886,"roll":26.65814797666852},"location":"Left Ankle"},{"euler":{"heading":36.00640157350313,"pitch":-7.966658930304165,"roll":-4.147112009667567},"location":"Right Ankle"},{"euler":{"heading":61.405994338092725,"pitch":-159.93431028352632,"roll":55.47539840104027},"location":"Right Hip"},{"euler":{"heading":39.96248324371093,"pitch":-108.59517198035657,"roll":-0.8226610277880716},"location":"Right Knee"},{"euler":{"heading":13.00457248445296,"pitch":-134.32341508599535,"roll":58.70176823183724},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.16"} +{"sensors":[{"euler":{"heading":33.742277275983376,"pitch":131.28006416802918,"roll":20.724779324064368},"location":"Left Knee"},{"euler":{"heading":38.47831838217799,"pitch":100.37398213963709,"roll":27.059275696357524},"location":"Left Ankle"},{"euler":{"heading":35.93266101871643,"pitch":-7.589330809067445,"roll":-4.341203758041574},"location":"Right Ankle"},{"euler":{"heading":61.34932383171307,"pitch":-159.88705124407073,"roll":56.066324080926584},"location":"Right Hip"},{"euler":{"heading":40.47986404275554,"pitch":-109.1271417468698,"roll":-0.690897693100378},"location":"Right Knee"},{"euler":{"heading":11.765847567306999,"pitch":-132.51500327181415,"roll":57.95130220686357},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.117"} +{"sensors":[{"euler":{"heading":53.73398552153671,"pitch":132.75164060696505,"roll":21.755716657722537},"location":"Left Knee"},{"euler":{"heading":35.4239627519292,"pitch":99.26825174559434,"roll":24.758748357779993},"location":"Left Ankle"},{"euler":{"heading":35.46205610706123,"pitch":-7.0576461519763924,"roll":-4.6060121583452185},"location":"Right Ankle"},{"euler":{"heading":61.26130492967663,"pitch":-160.09399063723367,"roll":56.74372538458092},"location":"Right Hip"},{"euler":{"heading":41.402900715786465,"pitch":-109.72146877569408,"roll":-0.9878398689733928},"location":"Right Knee"},{"euler":{"heading":10.614838883942804,"pitch":-130.813218106495,"roll":57.26627889633526},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.217"} +{"sensors":[{"euler":{"heading":71.20305628907245,"pitch":134.83234221250405,"roll":23.19393730593686},"location":"Left Knee"},{"euler":{"heading":31.83506840573484,"pitch":98.45795371295253,"roll":21.636629668706},"location":"Left Ankle"},{"euler":{"heading":34.398960250792555,"pitch":-6.427905265823066,"roll":-5.077497677540294},"location":"Right Ankle"},{"euler":{"heading":61.22490699464805,"pitch":-160.5309478569468,"roll":57.54693878602607},"location":"Right Hip"},{"euler":{"heading":42.88400966467339,"pitch":-110.27115110752186,"roll":-1.8570115134875729},"location":"Right Knee"},{"euler":{"heading":10.338268686053828,"pitch":-129.87379119219221,"roll":56.84261352633858},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.317"} +{"sensors":[{"euler":{"heading":92.27247241225298,"pitch":136.0968052473468,"roll":24.50129263483383},"location":"Left Knee"},{"euler":{"heading":30.0617659324868,"pitch":98.27170351878215,"roll":19.655735958825037},"location":"Left Ankle"},{"euler":{"heading":32.190804310580326,"pitch":-6.113716660129074,"roll":-5.759781401311877},"location":"Right Ankle"},{"euler":{"heading":61.53993224738591,"pitch":-160.97390201621562,"roll":58.20834819147538},"location":"Right Hip"},{"euler":{"heading":45.23823911659599,"pitch":-110.47722487688407,"roll":-3.654205569094483},"location":"Right Knee"},{"euler":{"heading":10.212883539954907,"pitch":-129.41611749294793,"roll":56.51870236783811},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.418"} +{"sensors":[{"euler":{"heading":76.2541458416873,"pitch":136.5037681893761,"roll":25.464309508017728},"location":"Left Knee"},{"euler":{"heading":29.507529257018536,"pitch":98.18045935890224,"roll":18.523203754716572},"location":"Left Ankle"},{"euler":{"heading":28.860769889052683,"pitch":-5.906704220139033,"roll":-6.680373627883935},"location":"Right Ankle"},{"euler":{"heading":62.45780372613743,"pitch":-160.51859589789407,"roll":58.22420093175786},"location":"Right Hip"},{"euler":{"heading":48.09334760750152,"pitch":-110.52695381967963,"roll":-6.303034591596755},"location":"Right Knee"},{"euler":{"heading":10.330194701457145,"pitch":-129.28140942692735,"roll":56.51097799893353},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.518"} +{"sensors":[{"euler":{"heading":63.524802551891106,"pitch":136.34883174245041,"roll":26.294102322918828},"location":"Left Knee"},{"euler":{"heading":29.636361020098697,"pitch":98.19301971458387,"roll":17.8432314303056},"location":"Left Ankle"},{"euler":{"heading":26.698945569193782,"pitch":-6.034485126384301,"roll":-7.323144746789825},"location":"Right Ankle"},{"euler":{"heading":63.72659765277992,"pitch":-159.6844838972985,"roll":57.48943692082445},"location":"Right Hip"},{"euler":{"heading":49.884139017409154,"pitch":-110.4114289948434,"roll":-8.259941195892164},"location":"Right Knee"},{"euler":{"heading":10.854311101131021,"pitch":-129.93835075382594,"roll":56.75963663781938},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.619"} +{"sensors":[{"euler":{"heading":53.583600098960936,"pitch":135.8043526945661,"roll":26.819039471364423},"location":"Left Knee"},{"euler":{"heading":30.205582321490347,"pitch":98.26978365126743,"roll":17.667894184320513},"location":"Left Ankle"},{"euler":{"heading":26.985922616978815,"pitch":-6.8100400300776585,"roll":-7.250788474602648},"location":"Right Ankle"},{"euler":{"heading":64.7060316566812,"pitch":-159.02484165764838,"roll":56.301380208250514},"location":"Right Hip"},{"euler":{"heading":49.58468070209691,"pitch":-109.7004720823809,"roll":-8.467081307223461},"location":"Right Knee"},{"euler":{"heading":11.634230186012035,"pitch":-131.1689485039539,"roll":57.17489148702844},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.720"} +{"sensors":[{"euler":{"heading":46.21069908127695,"pitch":134.94305810098396,"roll":26.883815788517236},"location":"Left Knee"},{"euler":{"heading":31.129448787809856,"pitch":98.49976873029226,"roll":17.937298029054897},"location":"Left Ankle"},{"euler":{"heading":29.105561626572246,"pitch":-7.493984411201948,"roll":-6.352972019902088},"location":"Right Ankle"},{"euler":{"heading":64.8540073098319,"pitch":-158.75493975385524,"roll":55.20850137488924},"location":"Right Hip"},{"euler":{"heading":47.05054112591314,"pitch":-108.80149666294109,"roll":-6.752018792176914},"location":"Right Knee"},{"euler":{"heading":12.504694077440549,"pitch":-132.8056728099702,"roll":57.68738732644326},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.820"} +{"sensors":[{"euler":{"heading":40.833704933976925,"pitch":133.90804586061057,"roll":26.42518850032973},"location":"Left Knee"},{"euler":{"heading":32.48638571044546,"pitch":98.9040716481883,"roll":18.81127746214767},"location":"Left Ankle"},{"euler":{"heading":32.33339194395639,"pitch":-7.821548562897464,"roll":-5.290857365222726},"location":"Right Ankle"},{"euler":{"heading":63.9882485474052,"pitch":-158.7841963982716,"roll":54.76060554899547},"location":"Right Hip"},{"euler":{"heading":43.54277127395504,"pitch":-108.1782860540757,"roll":-3.9396962489164586},"location":"Right Knee"},{"euler":{"heading":13.318499189777576,"pitch":-134.73260191583228,"roll":58.270038191588135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.921"} +{"sensors":[{"euler":{"heading":37.54280052966167,"pitch":132.75745800440515,"roll":25.160009107016272},"location":"Left Knee"},{"euler":{"heading":34.44167786184988,"pitch":99.52556351036733,"roll":20.731728118285407},"location":"Left Ankle"},{"euler":{"heading":34.20344588825367,"pitch":-7.683945743722405,"roll":-4.6924400492157625},"location":"Right Ankle"},{"euler":{"heading":62.76212445592167,"pitch":-159.11982600308133,"roll":54.55745623778323},"location":"Right Hip"},{"euler":{"heading":40.724120922351574,"pitch":-108.17916252996281,"roll":-1.692161049309243},"location":"Right Knee"},{"euler":{"heading":14.163201154834528,"pitch":-136.4702867332294,"roll":58.93400651398437},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.21"} +{"sensors":[{"euler":{"heading":36.42371812107857,"pitch":131.82333526546284,"roll":22.903407279219334},"location":"Left Knee"},{"euler":{"heading":37.45765215230439,"pitch":100.92027907490944,"roll":24.056893191022155},"location":"Left Ankle"},{"euler":{"heading":35.074714867383015,"pitch":-7.4107996914025325,"roll":-4.4541578224883125},"location":"Right Ankle"},{"euler":{"heading":62.025714233218245,"pitch":-159.3165133307028,"roll":54.700623408229305},"location":"Right Hip"},{"euler":{"heading":39.212884317227534,"pitch":-108.48911162756018,"roll":-0.2886250682629581},"location":"Right Knee"},{"euler":{"heading":13.570655753795961,"pitch":-136.23530090048123,"roll":59.09486213739762},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.121"} +{"sensors":[{"euler":{"heading":35.769008203696536,"pitch":131.13859418500377,"roll":20.849573908968026},"location":"Left Knee"},{"euler":{"heading":39.90929268150197,"pitch":101.15378421137295,"roll":27.036025657552717},"location":"Left Ankle"},{"euler":{"heading":35.473007651019685,"pitch":-7.086347636894026,"roll":-4.45257324842388},"location":"Right Ankle"},{"euler":{"heading":61.286000272550886,"pitch":-159.5836704059805,"roll":55.2403980387641},"location":"Right Hip"},{"euler":{"heading":38.85539096522819,"pitch":-109.04900629972738,"roll":0.4284860531355179},"location":"Right Knee"},{"euler":{"heading":12.37798862000482,"pitch":-134.5720130166572,"roll":58.66372154272654},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.222"} +{"sensors":[{"euler":{"heading":32.90237185072357,"pitch":131.4940194966129,"roll":20.26935241681192},"location":"Left Knee"},{"euler":{"heading":39.43155468023031,"pitch":100.35437489399234,"roll":27.585512328654186},"location":"Left Ankle"},{"euler":{"heading":35.54348111906066,"pitch":-6.786813751131179,"roll":-4.581936174555879},"location":"Right Ankle"},{"euler":{"heading":61.078658900945534,"pitch":-159.7124533404757,"roll":55.91313118600826},"location":"Right Hip"},{"euler":{"heading":39.25827679133419,"pitch":-109.53780511202201,"roll":0.6017574252028295},"location":"Right Knee"},{"euler":{"heading":11.014989079124984,"pitch":-132.7815704970822,"roll":57.79796855362021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.322"} +{"sensors":[{"euler":{"heading":53.12950618421492,"pitch":132.99875122022118,"roll":21.361448122356503},"location":"Left Knee"},{"euler":{"heading":36.180690360237016,"pitch":99.44670478922993,"roll":25.419231307812087},"location":"Left Ankle"},{"euler":{"heading":35.232575645010044,"pitch":-6.4682105418933915,"roll":-4.8178996148990665},"location":"Right Ankle"},{"euler":{"heading":61.21804400894398,"pitch":-159.86465765411532,"roll":56.557542490852185},"location":"Right Hip"},{"euler":{"heading":40.212416565773765,"pitch":-109.92659920682733,"roll":0.25914053116652364},"location":"Right Knee"},{"euler":{"heading":9.994091467008108,"pitch":-131.1852249129712,"roll":57.05618740341305},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.422"} +{"sensors":[{"euler":{"heading":70.74972642183184,"pitch":135.0559464479556,"roll":22.908517225713112},"location":"Left Knee"},{"euler":{"heading":32.466566759435906,"pitch":98.66699388572277,"roll":22.20455769153571},"location":"Left Ankle"},{"euler":{"heading":34.288350898427645,"pitch":-5.995609901752811,"roll":-5.221666895336253},"location":"Right Ankle"},{"euler":{"heading":61.552148765063635,"pitch":-160.0915631586453,"roll":57.211997912084016},"location":"Right Hip"},{"euler":{"heading":41.76655516107953,"pitch":-110.26651867845436,"roll":-0.6751422580026742},"location":"Right Knee"},{"euler":{"heading":9.907290378749543,"pitch":-130.2758092640852,"roll":56.575217971185026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.523"} +{"sensors":[{"euler":{"heading":91.82994272104122,"pitch":136.23968607111547,"roll":24.30247619370357},"location":"Left Knee"},{"euler":{"heading":30.56100017129566,"pitch":98.47274937667507,"roll":20.04478841270816},"location":"Left Ankle"},{"euler":{"heading":32.421284105435376,"pitch":-5.746324589328204,"roll":-5.925908379253848},"location":"Right Ankle"},{"euler":{"heading":62.122978755306946,"pitch":-160.55847783018612,"roll":57.78636238956684},"location":"Right Hip"},{"euler":{"heading":44.144909361916746,"pitch":-110.1995489565992,"roll":-2.501527227593346},"location":"Right Knee"},{"euler":{"heading":10.097811277995705,"pitch":-129.77989362712057,"roll":56.27079748638104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.623"} +{"sensors":[{"euler":{"heading":75.73127970845236,"pitch":136.65089340880226,"roll":25.260624234843707},"location":"Left Knee"},{"euler":{"heading":29.660653478208864,"pitch":98.29698236139411,"roll":18.815794548048036},"location":"Left Ankle"},{"euler":{"heading":29.447822103887475,"pitch":-5.5623696761598485,"roll":-6.8782602509979},"location":"Right Ankle"},{"euler":{"heading":63.27408410398433,"pitch":-160.31510282622128,"roll":57.729395651487025},"location":"Right Hip"},{"euler":{"heading":46.97815401749826,"pitch":-110.24001995390583,"roll":-5.063809535822019},"location":"Right Knee"},{"euler":{"heading":10.247864274404453,"pitch":-129.48572992463247,"roll":56.250983204241976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.723"} +{"sensors":[{"euler":{"heading":62.948047642995114,"pitch":136.60681314694736,"roll":25.97305052012696},"location":"Left Knee"},{"euler":{"heading":29.36934866188276,"pitch":98.19738824595991,"roll":18.042591163395436},"location":"Left Ankle"},{"euler":{"heading":27.155842050462606,"pitch":-5.651561687554197,"roll":-7.454644959334419},"location":"Right Ankle"},{"euler":{"heading":64.62088882351674,"pitch":-159.63709016352598,"roll":56.97035626275159},"location":"Right Hip"},{"euler":{"heading":48.751043342943376,"pitch":-109.91992269335462,"roll":-7.1207614039845275},"location":"Right Knee"},{"euler":{"heading":10.685828807865212,"pitch":-129.83786051421194,"roll":56.464920751453306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.824"} +{"sensors":[{"euler":{"heading":52.80814312125767,"pitch":136.28155125064444,"roll":26.42745746666648},"location":"Left Knee"},{"euler":{"heading":29.523218899855678,"pitch":98.10726801298532,"roll":17.711547763020246},"location":"Left Ankle"},{"euler":{"heading":27.145997881940477,"pitch":-6.297073540035829,"roll":-7.405451585429259},"location":"Right Ankle"},{"euler":{"heading":65.70581513272062,"pitch":-159.02951871008923,"roll":55.772223981041456},"location":"Right Hip"},{"euler":{"heading":48.59150481864846,"pitch":-109.17843128036756,"roll":-7.454101827003536},"location":"Right Knee"},{"euler":{"heading":11.33575376263629,"pitch":-130.74508016363842,"roll":56.902265118733716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.924"} +{"sensors":[{"euler":{"heading":45.34388875832776,"pitch":135.46404279599918,"roll":26.64244383630437},"location":"Left Knee"},{"euler":{"heading":30.26751967532366,"pitch":98.34676707179777,"roll":17.79249452816527},"location":"Left Ankle"},{"euler":{"heading":29.195013925171253,"pitch":-7.08332158710939,"roll":-6.629664889714768},"location":"Right Ankle"},{"euler":{"heading":65.92827715488605,"pitch":-158.84835151639683,"roll":54.533485940936416},"location":"Right Hip"},{"euler":{"heading":46.40974371932556,"pitch":-108.23399002951324,"roll":-5.918633212698598},"location":"Right Knee"},{"euler":{"heading":12.224630062524701,"pitch":-132.12485953128973,"roll":57.4466398277835},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.24"} +{"sensors":[{"euler":{"heading":39.85642274606493,"pitch":134.48054215675938,"roll":26.37324564968935},"location":"Left Knee"},{"euler":{"heading":31.435811253221946,"pitch":98.69428056904039,"roll":18.400818924687286},"location":"Left Ankle"},{"euler":{"heading":32.376908850146755,"pitch":-7.794777850054046,"roll":-5.487722078774593},"location":"Right Ankle"},{"euler":{"heading":65.25430451769492,"pitch":-158.88655829705996,"roll":53.88226206247998},"location":"Right Hip"},{"euler":{"heading":43.35102428484202,"pitch":-107.41506052469373,"roll":-3.191531715282309},"location":"Right Knee"},{"euler":{"heading":13.059456542404176,"pitch":-133.81928556600005,"roll":58.02841054946034},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.125"} +{"sensors":[{"euler":{"heading":36.23725179455082,"pitch":133.38251117227233,"roll":25.457835158140412},"location":"Left Knee"},{"euler":{"heading":33.10584403486369,"pitch":99.16926017780202,"roll":19.765783654845738},"location":"Left Ankle"},{"euler":{"heading":34.79199109243637,"pitch":-8.058057203609225,"roll":-4.6981641011767055},"location":"Right Ankle"},{"euler":{"heading":63.84038685375013,"pitch":-159.22434134948105,"roll":53.59025118581242},"location":"Right Hip"},{"euler":{"heading":40.70980608023563,"pitch":-107.26856238744931,"roll":-0.8903141484707247},"location":"Right Knee"},{"euler":{"heading":14.034331625067416,"pitch":-136.0243492178012,"roll":58.62023876048788},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.225"} +{"sensors":[{"euler":{"heading":34.58184625292305,"pitch":132.59107075869957,"roll":23.48205864687955},"location":"Left Knee"},{"euler":{"heading":35.51963919254856,"pitch":99.91415869237558,"roll":22.653701740824904},"location":"Left Ankle"},{"euler":{"heading":35.943060032704246,"pitch":-8.123878208125333,"roll":-4.411774913466853},"location":"Right Ankle"},{"euler":{"heading":63.06317230404708,"pitch":-159.46459443154086,"roll":53.522212972571275},"location":"Right Hip"},{"euler":{"heading":39.27845233925414,"pitch":-107.47488240860642,"roll":0.5201805154253432},"location":"Right Knee"},{"euler":{"heading":14.249918129971432,"pitch":-137.17542267927436,"roll":58.97741013042185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.326"} +{"sensors":[{"euler":{"heading":34.54626029743768,"pitch":131.48252574957723,"roll":21.16509534361543},"location":"Left Knee"},{"euler":{"heading":38.120309329429745,"pitch":101.06382340373541,"roll":26.004124989499225},"location":"Left Ankle"},{"euler":{"heading":36.40398410520181,"pitch":-7.779157076339554,"roll":-4.36071424170652},"location":"Right Ankle"},{"euler":{"heading":62.093852653469995,"pitch":-159.68199345791606,"roll":54.00166988277446},"location":"Right Hip"},{"euler":{"heading":38.7247734536652,"pitch":-108.13720086371211,"roll":1.326822682236426},"location":"Right Knee"},{"euler":{"heading":13.308722291338356,"pitch":-135.612955628543,"roll":58.97361368237956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.426"} +{"sensors":[{"euler":{"heading":33.36373287707095,"pitch":131.38906306431272,"roll":19.829532369567495},"location":"Left Knee"},{"euler":{"heading":39.36388435867824,"pitch":100.6891431347916,"roll":27.668418734713793},"location":"Left Ankle"},{"euler":{"heading":36.501958773602645,"pitch":-7.473172822940451,"roll":-4.463143402945291},"location":"Right Ankle"},{"euler":{"heading":61.7936353159359,"pitch":-159.73602503591167,"roll":54.625768335750394},"location":"Right Hip"},{"euler":{"heading":39.008639932694116,"pitch":-108.67706325122211,"roll":1.5454366202676644},"location":"Right Knee"},{"euler":{"heading":11.848416483247036,"pitch":-133.7413294471044,"roll":58.262686763990565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.526"} +{"sensors":[{"euler":{"heading":52.66303440573857,"pitch":134.09878559263365,"roll":20.41055231382297},"location":"Left Knee"},{"euler":{"heading":37.29650757671145,"pitch":99.50587061468974,"roll":26.540625390161797},"location":"Left Ankle"},{"euler":{"heading":36.249243098083035,"pitch":-7.22602183588716,"roll":-4.621227382069611},"location":"Right Ankle"},{"euler":{"heading":61.7023956863553,"pitch":-159.89787770910874,"roll":55.34507747028915},"location":"Right Hip"},{"euler":{"heading":39.84154556536159,"pitch":-109.12395411788137,"roll":1.285466237508904},"location":"Right Knee"},{"euler":{"heading":10.557594761964168,"pitch":-131.81587456282884,"roll":57.49453525315256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.627"} +{"sensors":[{"euler":{"heading":70.01106138214901,"pitch":135.97999644504588,"roll":21.905387923811553},"location":"Left Knee"},{"euler":{"heading":33.52882936709518,"pitch":98.51839110746072,"roll":23.439255631362894},"location":"Left Ankle"},{"euler":{"heading":35.424007786406165,"pitch":-6.758623454638199,"roll":-4.9485781713363535},"location":"Right Ankle"},{"euler":{"heading":61.77037616035341,"pitch":-160.15134969661597,"roll":56.144595070112835},"location":"Right Hip"},{"euler":{"heading":41.13589447208466,"pitch":-109.64724067818507,"roll":0.5448743691463057},"location":"Right Knee"},{"euler":{"heading":9.952514727027932,"pitch":-130.31139072911284,"roll":56.942141477804846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.728"} +{"sensors":[{"euler":{"heading":84.80419236088747,"pitch":137.46228087984716,"roll":23.305589874024506},"location":"Left Knee"},{"euler":{"heading":30.46169449062417,"pitch":98.21937627363445,"roll":20.454544200179175},"location":"Left Ankle"},{"euler":{"heading":34.08837686913903,"pitch":-6.353522230805465,"roll":-5.631234737829757},"location":"Right Ankle"},{"euler":{"heading":61.927108727744994,"pitch":-160.79688171471906,"roll":57.046417849336095},"location":"Right Hip"},{"euler":{"heading":42.98643185586936,"pitch":-109.97211695468859,"roll":-0.8268150550720462},"location":"Right Knee"},{"euler":{"heading":10.134840924928387,"pitch":-129.53860625739284,"roll":56.668215806919875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.829"} +{"sensors":[{"euler":{"heading":70.04994668534036,"pitch":137.94743882569438,"roll":24.459636878135356},"location":"Left Knee"},{"euler":{"heading":29.347475098124537,"pitch":98.2817424294483,"roll":18.901197582290578},"location":"Left Ankle"},{"euler":{"heading":31.59761644267417,"pitch":-6.367455917170802,"roll":-6.355969188920525},"location":"Right Ankle"},{"euler":{"heading":62.53106579245322,"pitch":-160.9767266315862,"roll":57.59491596400505},"location":"Right Hip"},{"euler":{"heading":45.577750522584026,"pitch":-109.82019132899288,"roll":-3.1916857706413215},"location":"Right Knee"},{"euler":{"heading":10.224676340223894,"pitch":-129.01174676932192,"roll":56.55708936943957},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.930"} +{"sensors":[{"euler":{"heading":58.629115601207666,"pitch":137.76218885935398,"roll":25.331491329952396},"location":"Left Knee"},{"euler":{"heading":29.029684239899332,"pitch":98.4749180848921,"roll":17.893948550984746},"location":"Left Ankle"},{"euler":{"heading":28.303724619783804,"pitch":-6.463298469433788,"roll":-7.13661479198941},"location":"Right Ankle"},{"euler":{"heading":63.70929555348913,"pitch":-160.34279259324947,"roll":57.354020093027145},"location":"Right Hip"},{"euler":{"heading":48.2821595612334,"pitch":-109.81945969192256,"roll":-5.908293183375315},"location":"Right Knee"},{"euler":{"heading":10.66089724508312,"pitch":-129.0819730502861,"roll":56.74190859157118},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.30"} +{"sensors":[{"euler":{"heading":49.604743513650064,"pitch":137.16649863273085,"roll":26.013395157849892},"location":"Left Knee"},{"euler":{"heading":29.340226964417315,"pitch":98.73295222791076,"roll":17.41652146168831},"location":"Left Ankle"},{"euler":{"heading":27.00978219506198,"pitch":-6.906742463788001,"roll":-7.504119008451143},"location":"Right Ankle"},{"euler":{"heading":65.01291132835316,"pitch":-159.57891163690024,"roll":56.42854781580902},"location":"Right Hip"},{"euler":{"heading":49.20639497146284,"pitch":-109.46207919437458,"roll":-7.314164078622237},"location":"Right Knee"},{"euler":{"heading":11.404519440633843,"pitch":-129.82922943843053,"roll":57.12912328167992},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.131"} +{"sensors":[{"euler":{"heading":42.77445643007166,"pitch":136.27075493503813,"roll":26.36289409427822},"location":"Left Knee"},{"euler":{"heading":30.84895891629068,"pitch":99.18047196764667,"roll":17.935758806733794},"location":"Left Ankle"},{"euler":{"heading":28.292754755764886,"pitch":-7.724175416409799,"roll":-7.1291728078268894},"location":"Right Ankle"},{"euler":{"heading":65.72953734997142,"pitch":-159.22657733144706,"roll":55.12143171450974},"location":"Right Hip"},{"euler":{"heading":47.834737785882375,"pitch":-108.58578087980517,"roll":-6.445990870274041},"location":"Right Knee"},{"euler":{"heading":12.215536940640785,"pitch":-131.16533226714353,"roll":57.60435566469437},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.231"} +{"sensors":[{"euler":{"heading":37.806082133111175,"pitch":135.15106279028515,"roll":26.28675666851275},"location":"Left Knee"},{"euler":{"heading":32.4469707542122,"pitch":99.65081981091514,"roll":18.81582996585304},"location":"Left Ankle"},{"euler":{"heading":31.01388272811017,"pitch":-8.428178277456006,"roll":-6.082401728110407},"location":"Right Ankle"},{"euler":{"heading":65.52558403918572,"pitch":-159.12773518136976,"roll":54.081342313314316},"location":"Right Hip"},{"euler":{"heading":44.84479978806596,"pitch":-107.62042645295865,"roll":-4.120567896198679},"location":"Right Knee"},{"euler":{"heading":13.099573565132157,"pitch":-132.84996302839048,"roll":58.212740833054205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.332"} +{"sensors":[{"euler":{"heading":34.296841606599955,"pitch":133.9951938904763,"roll":25.65900289284395},"location":"Left Knee"},{"euler":{"heading":34.38562370828,"pitch":100.14182423614885,"roll":20.313730724178036},"location":"Left Ankle"},{"euler":{"heading":34.03861055874508,"pitch":-8.73822100199629,"roll":-5.105478127558621},"location":"Right Ankle"},{"euler":{"heading":64.23492415046874,"pitch":-159.3474513795168,"roll":53.663378406100804},"location":"Right Hip"},{"euler":{"heading":41.55240814144268,"pitch":-107.16307282427142,"roll":-1.2791324557983987},"location":"Right Knee"},{"euler":{"heading":13.983945092696633,"pitch":-134.9569835670029,"roll":58.86432363934037},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.433"} +{"sensors":[{"euler":{"heading":32.57092367096388,"pitch":132.90171446858594,"roll":24.115933695885424},"location":"Left Knee"},{"euler":{"heading":36.799388387439805,"pitch":100.77637174768907,"roll":22.959275543996895},"location":"Left Ankle"},{"euler":{"heading":35.52238802685514,"pitch":-8.59070878768027,"roll":-4.685218302898378},"location":"Right Ankle"},{"euler":{"heading":62.952211554806475,"pitch":-159.68300916679448,"roll":53.57054804886582},"location":"Right Hip"},{"euler":{"heading":39.23710114820399,"pitch":-107.43293530050428,"roll":0.7153168205855924},"location":"Right Knee"},{"euler":{"heading":14.684286302209536,"pitch":-136.8576286336621,"roll":59.40636222103368},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.533"} +{"sensors":[{"euler":{"heading":32.74514108739384,"pitch":131.6387680407105,"roll":21.84568861526337},"location":"Left Knee"},{"euler":{"heading":39.81620510216769,"pitch":102.41476804127356,"roll":26.16767026364529},"location":"Left Ankle"},{"euler":{"heading":36.154663248648866,"pitch":-8.237252279179637,"roll":-4.554638581444942},"location":"Right Ankle"},{"euler":{"heading":62.074341804769546,"pitch":-159.92719396950727,"roll":53.86110255238622},"location":"Right Hip"},{"euler":{"heading":38.060712535569166,"pitch":-108.07546274050205,"roll":1.9195681952240087},"location":"Right Knee"},{"euler":{"heading":14.062718086690808,"pitch":-136.44310954989984,"roll":59.552011582787},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.634"} +{"sensors":[{"euler":{"heading":32.69159496595007,"pitch":131.16777905467296,"roll":19.99354087998552},"location":"Left Knee"},{"euler":{"heading":41.127036343769355,"pitch":102.26235241886837,"roll":28.339593848266514},"location":"Left Ankle"},{"euler":{"heading":36.541572741360405,"pitch":-7.982816677326897,"roll":-4.549441090648303},"location":"Right Ankle"},{"euler":{"heading":61.49228508843103,"pitch":-160.14220540429187,"roll":54.52235369219034},"location":"Right Hip"},{"euler":{"heading":37.977392353775976,"pitch":-108.69254165364451,"roll":2.450406335226204},"location":"Right Knee"},{"euler":{"heading":12.620365414445331,"pitch":-134.873014729357,"roll":59.0714393751702},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.734"} +{"sensors":[{"euler":{"heading":51.61328277851461,"pitch":131.82958415424267,"roll":19.827686689821025},"location":"Left Knee"},{"euler":{"heading":39.55468163907805,"pitch":101.23858448478293,"roll":27.980298090667336},"location":"Left Ankle"},{"euler":{"heading":36.519491276509754,"pitch":-7.669349935521486,"roll":-4.681480086093622},"location":"Right Ankle"},{"euler":{"heading":61.289181836047874,"pitch":-160.2713655092633,"roll":55.27528136712169},"location":"Right Hip"},{"euler":{"heading":38.432356950855166,"pitch":-109.2271397528303,"roll":2.5324129278208014},"location":"Right Knee"},{"euler":{"heading":11.118322011482606,"pitch":-133.06583006059444,"roll":58.23824595054524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.835"} +{"sensors":[{"euler":{"heading":68.67590128746697,"pitch":133.50453577516876,"roll":21.116373811388865},"location":"Left Knee"},{"euler":{"heading":35.799936662057696,"pitch":100.13978847447015,"roll":25.247330726545826},"location":"Left Ankle"},{"euler":{"heading":36.067403540729174,"pitch":-7.165725311009873,"roll":-4.985263418721603},"location":"Right Ankle"},{"euler":{"heading":61.2715138056039,"pitch":-160.48930949892312,"roll":56.04576647007348},"location":"Right Hip"},{"euler":{"heading":39.38157630505066,"pitch":-109.82979040201002,"roll":2.130994039831087},"location":"Right Knee"},{"euler":{"heading":10.120317512425581,"pitch":-131.46028023055422,"roll":57.53781775403527},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.936"} +{"sensors":[{"euler":{"heading":83.47315242998049,"pitch":135.5433448246953,"roll":22.651083743714047},"location":"Left Knee"},{"euler":{"heading":32.11913420185351,"pitch":99.34765580809365,"roll":22.03117321677959},"location":"Left Ankle"},{"euler":{"heading":35.084867911680405,"pitch":-6.602992402389292,"roll":-5.581195997194001},"location":"Right Ankle"},{"euler":{"heading":61.45324239315873,"pitch":-160.83515427415423,"roll":56.879701313061474},"location":"Right Hip"},{"euler":{"heading":40.87223298940659,"pitch":-110.3216061866003,"roll":1.1910652527813785},"location":"Right Knee"},{"euler":{"heading":9.945245742895413,"pitch":-130.6317155032641,"roll":57.03481450277784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.37"} +{"sensors":[{"euler":{"heading":68.47852272747383,"pitch":136.5855957933258,"roll":23.944679591503863},"location":"Left Knee"},{"euler":{"heading":30.49649915500963,"pitch":99.30863976885217,"roll":20.214889041864943},"location":"Left Ankle"},{"euler":{"heading":33.180486902381496,"pitch":-6.379164183710116,"roll":-6.3344716100764735},"location":"Right Ankle"},{"euler":{"heading":61.934978788893105,"pitch":-161.16593651499673,"roll":57.55107386245414},"location":"Right Hip"},{"euler":{"heading":43.28184257768021,"pitch":-110.4455914213994,"roll":-0.7117723310613411},"location":"Right Knee"},{"euler":{"heading":10.09916255055047,"pitch":-130.2446316960268,"roll":56.78179985573976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.137"} +{"sensors":[{"euler":{"heading":57.03327938592117,"pitch":136.72608619074654,"roll":24.913081776017147},"location":"Left Knee"},{"euler":{"heading":29.85159772913864,"pitch":99.47547558649079,"roll":18.999440906245212},"location":"Left Ankle"},{"euler":{"heading":29.944605064004325,"pitch":-6.349041527943204,"roll":-7.402536934573008},"location":"Right Ankle"},{"euler":{"heading":63.00718909215726,"pitch":-160.77559743668854,"roll":57.51648892715695},"location":"Right Hip"},{"euler":{"heading":46.11689787983424,"pitch":-110.2605171892484,"roll":-3.414578396056121},"location":"Right Knee"},{"euler":{"heading":10.391658077853887,"pitch":-130.0489472039551,"roll":56.82039205030675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.238"} +{"sensors":[{"euler":{"heading":48.351582333694886,"pitch":136.31218945635615,"roll":25.587224319099032},"location":"Left Knee"},{"euler":{"heading":29.870521447960865,"pitch":99.75129262008322,"roll":18.339564943810764},"location":"Left Ankle"},{"euler":{"heading":27.491263703661293,"pitch":-6.987658741263252,"roll":-7.929049864292442},"location":"Right Ankle"},{"euler":{"heading":64.49748040156545,"pitch":-159.97054595337784,"roll":56.79553819683068},"location":"Right Hip"},{"euler":{"heading":48.0815196046586,"pitch":-109.68282190298348,"roll":-5.557069556224105},"location":"Right Knee"},{"euler":{"heading":11.059215244740397,"pitch":-130.5615328682236,"roll":57.06934423981494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.339"} +{"sensors":[{"euler":{"heading":41.83160373256191,"pitch":135.551219621016,"roll":25.965372108063928},"location":"Left Knee"},{"euler":{"heading":30.468656315327348,"pitch":100.11977873234211,"roll":18.19430301018382},"location":"Left Ankle"},{"euler":{"heading":27.497929764011097,"pitch":-7.809285154550475,"roll":-7.828783453196495},"location":"Right Ankle"},{"euler":{"heading":65.50964352976013,"pitch":-159.32530923632686,"roll":55.643762008117065},"location":"Right Hip"},{"euler":{"heading":47.96006520691469,"pitch":-109.0292830680362,"roll":-6.045101351873646},"location":"Right Knee"},{"euler":{"heading":11.849567935791661,"pitch":-131.5128740862834,"roll":57.48486471566628},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.440"} +{"sensors":[{"euler":{"heading":37.08163783606976,"pitch":134.53564506260554,"roll":26.01028323694539},"location":"Left Knee"},{"euler":{"heading":31.4340331007296,"pitch":100.57806409201334,"roll":18.44930410217201},"location":"Left Ankle"},{"euler":{"heading":29.82800320764148,"pitch":-8.338723344945068,"roll":-7.084071038071548},"location":"Right Ankle"},{"euler":{"heading":65.55362098639173,"pitch":-159.08627845378948,"roll":54.536150055628525},"location":"Right Hip"},{"euler":{"heading":45.26251904743763,"pitch":-108.23577160457769,"roll":-4.304781263297613},"location":"Right Knee"},{"euler":{"heading":12.776137313532978,"pitch":-133.0931012676231,"roll":58.015436836879616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.541"} +{"sensors":[{"euler":{"heading":33.65610494713315,"pitch":133.42642711087612,"roll":25.62880535694332},"location":"Left Knee"},{"euler":{"heading":32.84873985774567,"pitch":101.05220816883751,"roll":19.26268838226351},"location":"Left Ankle"},{"euler":{"heading":32.97248878177447,"pitch":-8.579986463857852,"roll":-6.041590260683865},"location":"Right Ankle"},{"euler":{"heading":64.31733384842485,"pitch":-159.2861569894197,"roll":54.0392507516752},"location":"Right Hip"},{"euler":{"heading":41.668514524695546,"pitch":-107.64853962487716,"roll":-1.416096002609347},"location":"Right Knee"},{"euler":{"heading":13.796404842558987,"pitch":-135.28400883741907,"roll":58.61444447892737},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.643"} +{"sensors":[{"euler":{"heading":31.707406660096133,"pitch":132.29787197016657,"roll":24.504780231860806},"location":"Left Knee"},{"euler":{"heading":34.696755888183546,"pitch":101.51692117308976,"roll":21.080745533614873},"location":"Left Ankle"},{"euler":{"heading":35.125073291180854,"pitch":-8.637776141580613,"roll":-5.288525229848028},"location":"Right Ankle"},{"euler":{"heading":63.07319629401509,"pitch":-159.6691625541357,"roll":53.863103105909566},"location":"Right Hip"},{"euler":{"heading":39.1181378534499,"pitch":-107.58090203604137,"roll":0.7162333805670245},"location":"Right Knee"},{"euler":{"heading":14.833939239196575,"pitch":-137.44486572428767,"roll":59.23970587249034},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.744"} +{"sensors":[{"euler":{"heading":31.705157075957906,"pitch":131.37179547113118,"roll":22.33428823018029},"location":"Left Knee"},{"euler":{"heading":38.02322821882098,"pitch":103.0610915298731,"roll":24.319202583341827},"location":"Left Ankle"},{"euler":{"heading":36.00175629848438,"pitch":-8.60683427399324,"roll":-4.981649831577405},"location":"Right Ankle"},{"euler":{"heading":62.43499751240169,"pitch":-159.88493797668085,"roll":53.995031564743826},"location":"Right Hip"},{"euler":{"heading":37.7671103683027,"pitch":-107.7991279258602,"roll":2.0036318742346646},"location":"Right Knee"},{"euler":{"heading":14.268488054626424,"pitch":-137.40254790697657,"roll":59.39526309877179},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.845"} +{"sensors":[{"euler":{"heading":32.25028342026659,"pitch":130.58137438779335,"roll":20.233522035466105},"location":"Left Knee"},{"euler":{"heading":40.31887797788841,"pitch":103.69737342617513,"roll":27.13069550643657},"location":"Left Ankle"},{"euler":{"heading":36.42826331296477,"pitch":-8.430203058563762,"roll":-4.912051698437409},"location":"Right Ankle"},{"euler":{"heading":61.84109735619366,"pitch":-160.06235185612297,"roll":54.542472488101794},"location":"Right Hip"},{"euler":{"heading":37.47539768474934,"pitch":-108.30575109134828,"roll":2.5918718471863462},"location":"Right Knee"},{"euler":{"heading":13.098005635661178,"pitch":-135.74118658757936,"roll":59.000945269945625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.946"} +{"sensors":[{"euler":{"heading":30.544430915445744,"pitch":130.91846149765428,"roll":19.622722815358664},"location":"Left Knee"},{"euler":{"heading":39.82043044177687,"pitch":102.8046380737884,"roll":27.385801949632302},"location":"Left Ankle"},{"euler":{"heading":36.64074471484342,"pitch":-8.080124029774915,"roll":-5.009597388110388},"location":"Right Ankle"},{"euler":{"heading":61.729366937787965,"pitch":-160.08020187116756,"roll":55.20430674979266},"location":"Right Hip"},{"euler":{"heading":37.72405888345495,"pitch":-108.89497853546204,"roll":2.76149177358972},"location":"Right Knee"},{"euler":{"heading":11.747225607405957,"pitch":-133.8097999851817,"roll":58.132840438216704},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.47"} +{"sensors":[{"euler":{"heading":51.12748303254792,"pitch":132.5255055919904,"roll":22.298327862846662},"location":"Left Knee"},{"euler":{"heading":36.582335715412015,"pitch":101.48552764653734,"roll":25.339588592607544},"location":"Left Ankle"},{"euler":{"heading":36.41044333604134,"pitch":-7.537424551599119,"roll":-5.264332665116352},"location":"Right Ankle"},{"euler":{"heading":61.81624142203558,"pitch":-160.13797105828678,"roll":55.9161449238238},"location":"Right Hip"},{"euler":{"heading":38.44490416435295,"pitch":-109.54706191739606,"roll":2.469078545982879},"location":"Right Knee"},{"euler":{"heading":10.552028782546449,"pitch":-132.07402699788244,"roll":57.32947808800011},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.147"} +{"sensors":[{"euler":{"heading":68.94994874795941,"pitch":134.74067911802643,"roll":23.791948199731213},"location":"Left Knee"},{"euler":{"heading":32.60518369324365,"pitch":100.22649911189555,"roll":22.001694215688488},"location":"Left Ankle"},{"euler":{"heading":35.66301390224708,"pitch":-7.0047321655763435,"roll":-5.780211034690991},"location":"Right Ankle"},{"euler":{"heading":62.02411623010488,"pitch":-160.38644010755718,"roll":56.738628775791625},"location":"Right Hip"},{"euler":{"heading":39.90314640534868,"pitch":-110.01820976603841,"roll":1.5326613424050577},"location":"Right Knee"},{"euler":{"heading":10.173878998849933,"pitch":-131.05628288952715,"roll":56.7690041321154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.250"} +{"sensors":[{"euler":{"heading":90.3741226519978,"pitch":135.97224444421616,"roll":25.11970678811995},"location":"Left Knee"},{"euler":{"heading":29.99673449611221,"pitch":99.97308640424167,"roll":19.575847543254465},"location":"Left Ankle"},{"euler":{"heading":34.16516866305089,"pitch":-6.748633790894028,"roll":-6.52644597290677},"location":"Right Ankle"},{"euler":{"heading":62.592659506470476,"pitch":-160.8431405552111,"roll":57.43531145453111},"location":"Right Hip"},{"euler":{"heading":42.31594162094971,"pitch":-110.04025879395799,"roll":-0.2778190827203153},"location":"Right Knee"},{"euler":{"heading":10.464726439290663,"pitch":-130.52179660558045,"roll":56.46398567674341},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.352"} +{"sensors":[{"euler":{"heading":74.8484118237814,"pitch":136.28404068570504,"roll":26.0595689089655},"location":"Left Knee"},{"euler":{"heading":29.24025051356696,"pitch":99.8686310207191,"roll":18.415242872703967},"location":"Left Ankle"},{"euler":{"heading":31.14919702398091,"pitch":-6.7428184438053504,"roll":-7.469234213899284},"location":"Right Ankle"},{"euler":{"heading":63.72405657345469,"pitch":-160.67375726133557,"roll":57.50686333122745},"location":"Right Hip"},{"euler":{"heading":45.30223800185904,"pitch":-109.7272731829134,"roll":-3.0873033004593466},"location":"Right Knee"},{"euler":{"heading":10.643418929346554,"pitch":-130.22840313163454,"roll":56.40795846020027},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.453"} +{"sensors":[{"euler":{"heading":62.724562224502215,"pitch":135.9478653412297,"roll":26.832737719798043},"location":"Left Knee"},{"euler":{"heading":29.30455263229789,"pitch":100.00003363708844,"roll":17.60879824343505},"location":"Left Ankle"},{"euler":{"heading":28.28138713210438,"pitch":-7.14778250716115,"roll":-8.167761798825472},"location":"Right Ankle"},{"euler":{"heading":65.32226301652881,"pitch":-159.90217454725212,"roll":56.79277354258619},"location":"Right Hip"},{"euler":{"heading":47.77714075215012,"pitch":-109.38460722746511,"roll":-5.587918397840001},"location":"Right Knee"},{"euler":{"heading":11.152395909884161,"pitch":-130.48610575985376,"roll":56.61290905606024},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.554"} +{"sensors":[{"euler":{"heading":53.2553561129699,"pitch":135.25722365465333,"roll":27.312382525767156},"location":"Left Knee"},{"euler":{"heading":30.130093127848568,"pitch":100.27351458803398,"roll":17.527105127538167},"location":"Left Ankle"},{"euler":{"heading":27.93679619667038,"pitch":-7.650966470924034,"roll":-8.300436161384269},"location":"Right Ankle"},{"euler":{"heading":66.48818532205622,"pitch":-159.20398857864117,"roll":55.58775257278233},"location":"Right Hip"},{"euler":{"heading":47.853527518175724,"pitch":-108.81888911649038,"roll":-6.28110146665274},"location":"Right Knee"},{"euler":{"heading":11.818848625330492,"pitch":-131.3673329766092,"roll":56.97077766355597},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.654"} +{"sensors":[{"euler":{"heading":46.120292493070686,"pitch":134.26961543960334,"roll":27.43129985296002},"location":"Left Knee"},{"euler":{"heading":31.311395931132633,"pitch":100.67555868306518,"roll":17.851518673676527},"location":"Left Ankle"},{"euler":{"heading":29.84251872079927,"pitch":-8.18357409849882,"roll":-7.623818664037189},"location":"Right Ankle"},{"euler":{"heading":66.62238877926407,"pitch":-158.95866249132996,"roll":54.35467174574754},"location":"Right Hip"},{"euler":{"heading":45.81737932767581,"pitch":-107.92648520879054,"roll":-4.880995650593016},"location":"Right Knee"},{"euler":{"heading":12.566679839386913,"pitch":-132.77115490070543,"roll":57.46701796876243},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.755"} +{"sensors":[{"euler":{"heading":40.75373481075964,"pitch":133.19164884262767,"roll":27.05733526119668},"location":"Left Knee"},{"euler":{"heading":32.61158260200682,"pitch":100.99179590394077,"roll":18.61475170879089},"location":"Left Ankle"},{"euler":{"heading":33.09138960529929,"pitch":-8.77253300427766,"roll":-6.500267897728271},"location":"Right Ankle"},{"euler":{"heading":65.5967206672726,"pitch":-159.0993367939522,"roll":53.768020014642275},"location":"Right Hip"},{"euler":{"heading":42.76492673891528,"pitch":-107.0535727693225,"roll":-2.1812556538283823},"location":"Right Knee"},{"euler":{"heading":13.286018757172666,"pitch":-134.54678952178764,"roll":58.04090491374542},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.856"} +{"sensors":[{"euler":{"heading":36.983860547459514,"pitch":132.16866127309203,"roll":26.0471242606145},"location":"Left Knee"},{"euler":{"heading":34.32421255773808,"pitch":101.31362292959545,"roll":20.143670635875853},"location":"Left Ankle"},{"euler":{"heading":35.58509292052496,"pitch":-8.907131629339416,"roll":-5.810586729677119},"location":"Right Ankle"},{"euler":{"heading":63.91861636351551,"pitch":-159.64280099814368,"roll":53.78414178502533},"location":"Right Hip"},{"euler":{"heading":40.00398836064729,"pitch":-107.06631258669069,"roll":0.19627340254187198},"location":"Right Knee"},{"euler":{"heading":14.273348287459568,"pitch":-136.83128210714185,"roll":58.661271137461654},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.960"} +{"sensors":[{"euler":{"heading":35.20505929888489,"pitch":131.54619600507465,"roll":23.973674516098573},"location":"Left Knee"},{"euler":{"heading":36.82639400361124,"pitch":101.98533587243611,"roll":23.162110865721985},"location":"Left Ankle"},{"euler":{"heading":36.88971632371631,"pitch":-8.957582879215188,"roll":-5.459995579593688},"location":"Right Ankle"},{"euler":{"heading":63.10939061825538,"pitch":-159.9680995988647,"roll":53.94736266384067},"location":"Right Hip"},{"euler":{"heading":38.39137356561961,"pitch":-107.36916060346658,"roll":1.7352735077395505},"location":"Right Knee"},{"euler":{"heading":14.195921791675717,"pitch":-137.77479937276726,"roll":58.9015784608953},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.60"} +{"sensors":[{"euler":{"heading":35.0922183039364,"pitch":130.52515401011536,"roll":21.64561813737424},"location":"Left Knee"},{"euler":{"heading":38.91679458955865,"pitch":103.00337840000756,"roll":26.232304738752383},"location":"Left Ankle"},{"euler":{"heading":37.54176900645138,"pitch":-8.854602267301075,"roll":-5.374621382614171},"location":"Right Ankle"},{"euler":{"heading":62.23276638821531,"pitch":-160.3159619641839,"roll":54.499338087677565},"location":"Right Hip"},{"euler":{"heading":37.82007509483803,"pitch":-107.9107390693248,"roll":2.580908046672727},"location":"Right Knee"},{"euler":{"heading":13.264510148568716,"pitch":-136.25044158280775,"roll":58.83959711064367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.161"} +{"sensors":[{"euler":{"heading":33.85237984933304,"pitch":130.38007385390708,"roll":20.47243123687884},"location":"Left Knee"},{"euler":{"heading":38.03625818042945,"pitch":102.6641744954434,"roll":27.29225275604195},"location":"Left Ankle"},{"euler":{"heading":37.82596611009605,"pitch":-8.583058449361527,"roll":-5.541126012015337},"location":"Right Ankle"},{"euler":{"heading":62.073846343541646,"pitch":-160.46426533569309,"roll":55.16527550584312},"location":"Right Hip"},{"euler":{"heading":37.95277260143685,"pitch":-108.4245811563694,"roll":2.8883129790799553},"location":"Right Knee"},{"euler":{"heading":11.943012396790603,"pitch":-134.37762767594396,"roll":58.07602012432798},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.264"} +{"sensors":[{"euler":{"heading":53.586325083303905,"pitch":131.59243395909948,"roll":21.123092244257304},"location":"Left Knee"},{"euler":{"heading":35.543574259467924,"pitch":101.65569103628647,"roll":25.659219177141207},"location":"Left Ankle"},{"euler":{"heading":37.60087770089337,"pitch":-8.176821910086995,"roll":-5.733409054899628},"location":"Right Ankle"},{"euler":{"heading":62.09235547527067,"pitch":-160.64007851392216,"roll":55.89271713915601},"location":"Right Hip"},{"euler":{"heading":38.572721630381935,"pitch":-108.9489971312105,"roll":2.7384138924017156},"location":"Right Knee"},{"euler":{"heading":10.682612253550976,"pitch":-132.52838704763428,"roll":57.26022687916666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.365"} +{"sensors":[{"euler":{"heading":70.92162877783602,"pitch":133.68828008459417,"roll":22.55014754896103},"location":"Left Knee"},{"euler":{"heading":31.653576719058233,"pitch":100.481545952068,"roll":22.29091996580836},"location":"Left Ankle"},{"euler":{"heading":36.851771333285186,"pitch":-7.690322437447702,"roll":-6.133322878017611},"location":"Right Ankle"},{"euler":{"heading":62.27397934554875,"pitch":-160.91212832213282,"roll":56.73526548018219},"location":"Right Hip"},{"euler":{"heading":39.835389285732504,"pitch":-109.3938015392473,"roll":2.0082431823193434},"location":"Right Knee"},{"euler":{"heading":41.826602851290815,"pitch":-132.36516342611444,"roll":55.945341063338695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.465"} +{"sensors":[{"euler":{"heading":92.07771171943891,"pitch":135.2399311687845,"roll":23.853344944400927},"location":"Left Knee"},{"euler":{"heading":28.78355228941282,"pitch":100.08496578117776,"roll":19.403553259962198},"location":"Left Ankle"},{"euler":{"heading":35.20986563955657,"pitch":-7.30360895779242,"roll":-6.845968079689379},"location":"Right Ankle"},{"euler":{"heading":62.678340999788745,"pitch":-161.33071333463994,"roll":57.521447706503324},"location":"Right Hip"},{"euler":{"heading":41.897798400457496,"pitch":-109.56442696536861,"roll":0.4557337605679401},"location":"Right Knee"},{"euler":{"heading":35.710122366597034,"pitch":-132.0093806720409,"roll":55.42735341957493},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.566"} +{"sensors":[{"euler":{"heading":76.1422384603029,"pitch":135.87109157363605,"roll":24.88988840632608},"location":"Left Knee"},{"euler":{"heading":28.217171710813098,"pitch":100.03526626450991,"roll":18.241502146796343},"location":"Left Ankle"},{"euler":{"heading":32.20078891788616,"pitch":-7.286618794618826,"roll":-7.591893191753826},"location":"Right Ankle"},{"euler":{"heading":63.56234548921172,"pitch":-161.1803481020214,"roll":57.79289164576665},"location":"Right Hip"},{"euler":{"heading":44.73394110033475,"pitch":-109.23130643603452,"roll":-2.161936078727209},"location":"Right Knee"},{"euler":{"heading":30.577103371961613,"pitch":-131.77662133903698,"roll":55.11321730821223},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.666"} +{"sensors":[{"euler":{"heading":63.861235059223034,"pitch":135.7644478251699,"roll":25.732705830341988},"location":"Left Knee"},{"euler":{"heading":28.347950674531067,"pitch":100.28755979165125,"roll":17.445639282899553},"location":"Left Ankle"},{"euler":{"heading":29.07703104141473,"pitch":-7.211791743158605,"roll":-8.320370004345344},"location":"Right Ankle"},{"euler":{"heading":65.0352761593222,"pitch":-160.26545105177323,"roll":57.36074943243356},"location":"Right Hip"},{"euler":{"heading":47.06806225786963,"pitch":-109.24497527509469,"roll":-4.566272124549319},"location":"Right Knee"},{"euler":{"heading":26.95683317747105,"pitch":-131.9940653682997,"roll":55.17379121208198},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.767"} +{"sensors":[{"euler":{"heading":54.23957035607819,"pitch":135.15665209935324,"roll":26.406170698312096},"location":"Left Knee"},{"euler":{"heading":29.1268521084912,"pitch":100.65854129966786,"roll":17.147599653084747},"location":"Left Ankle"},{"euler":{"heading":28.09480802711147,"pitch":-7.429457375047481,"roll":-8.527707137610923},"location":"Right Ankle"},{"euler":{"heading":66.35427102669514,"pitch":-159.30084143670732,"roll":56.31573087486384},"location":"Right Hip"},{"euler":{"heading":47.31455197556143,"pitch":-108.86495356376922,"roll":-5.380420445885459},"location":"Right Knee"},{"euler":{"heading":24.47412981725968,"pitch":-132.91020727366248,"roll":55.39507164152443},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.867"} +{"sensors":[{"euler":{"heading":47.05101749950836,"pitch":134.160774822784,"roll":26.72425219972453},"location":"Left Knee"},{"euler":{"heading":30.234295053389417,"pitch":101.15475652650974,"roll":17.25246540006752},"location":"Left Ankle"},{"euler":{"heading":29.549781793578486,"pitch":-7.995026653330286,"roll":-7.924595428356172},"location":"Right Ankle"},{"euler":{"heading":67.04187227908486,"pitch":-158.78470869340535,"roll":55.0015105533993},"location":"Right Hip"},{"euler":{"heading":45.32255897396274,"pitch":-108.01573024010251,"roll":-4.202733916983813},"location":"Right Knee"},{"euler":{"heading":22.803958784942537,"pitch":-134.25049770736408,"roll":55.7974432465737},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.968"} +{"sensors":[{"euler":{"heading":41.56931919720459,"pitch":132.9326383751621,"roll":26.720756149593416},"location":"Left Knee"},{"euler":{"heading":31.72370827313609,"pitch":101.79996447018502,"roll":17.828925718536773},"location":"Left Ankle"},{"euler":{"heading":32.57226747100637,"pitch":-8.435452506667016,"roll":-6.772433295810269},"location":"Right Ankle"},{"euler":{"heading":66.87955190283976,"pitch":-158.54359472672215,"roll":54.06200825764658},"location":"Right Hip"},{"euler":{"heading":41.97926868632516,"pitch":-107.21161737309716,"roll":-1.508060438472874},"location":"Right Knee"},{"euler":{"heading":21.70990872012428,"pitch":-135.84379280602934,"roll":56.32800789754059},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.69"} +{"sensors":[{"euler":{"heading":37.687331997252244,"pitch":131.6310784673468,"roll":26.123061898630088},"location":"Left Knee"},{"euler":{"heading":33.716128180317256,"pitch":102.48486728815793,"roll":19.13533090046455},"location":"Left Ankle"},{"euler":{"heading":35.39784858938318,"pitch":-8.34052235233805,"roll":-5.872557879181225},"location":"Right Ankle"},{"euler":{"heading":65.3970593257283,"pitch":-158.84860377815494,"roll":53.770734961058785},"location":"Right Hip"},{"euler":{"heading":38.40349787869185,"pitch":-107.01312805829481,"roll":1.3226727387899144},"location":"Right Knee"},{"euler":{"heading":20.885445414507416,"pitch":-137.7076426740079,"roll":56.8972822418321},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.170"} +{"sensors":[{"euler":{"heading":35.44812372606123,"pitch":130.53656365093093,"roll":24.500177279215826},"location":"Left Knee"},{"euler":{"heading":35.88259710836935,"pitch":102.97382201130021,"roll":21.71461168286812},"location":"Left Ankle"},{"euler":{"heading":36.920705406388045,"pitch":-8.42703634260763,"roll":-5.415001498740883},"location":"Right Ankle"},{"euler":{"heading":64.70043778742354,"pitch":-159.0175833301502,"roll":53.703364165649866},"location":"Right Hip"},{"euler":{"heading":36.367456793800464,"pitch":-107.10700417474636,"roll":3.152859805776978},"location":"Right Knee"},{"euler":{"heading":19.835821380875803,"pitch":-138.94235058935712,"roll":57.329170101816},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.270"} +{"sensors":[{"euler":{"heading":35.0415362710211,"pitch":129.4450942414286,"roll":22.22310759582744},"location":"Left Knee"},{"euler":{"heading":38.87528756112369,"pitch":104.03457694737679,"roll":25.249490722003237},"location":"Left Ankle"},{"euler":{"heading":37.691994293555744,"pitch":-8.309125544734997,"roll":-5.2209465153493655},"location":"Right Ankle"},{"euler":{"heading":63.89817783607371,"pitch":-159.27750425266603,"roll":54.02884700741075},"location":"Right Hip"},{"euler":{"heading":35.67537902943788,"pitch":-107.60812186657509,"roll":4.143076017014284},"location":"Right Knee"},{"euler":{"heading":17.918125612606108,"pitch":-137.74093703752013,"roll":57.37514682066773},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.371"} +{"sensors":[{"euler":{"heading":33.88222514766519,"pitch":129.21845015012056,"roll":20.77501067359532},"location":"Left Knee"},{"euler":{"heading":40.06529401619961,"pitch":103.38324928701785,"roll":27.294724989441775},"location":"Left Ankle"},{"euler":{"heading":37.907353257593144,"pitch":-8.024071773611269,"roll":-5.253436763926194},"location":"Right Ankle"},{"euler":{"heading":63.54449895369811,"pitch":-159.28083322040055,"roll":54.638469623279654},"location":"Right Hip"},{"euler":{"heading":35.75079973584719,"pitch":-108.22209408289817,"roll":4.569418686182495},"location":"Right Knee"},{"euler":{"heading":15.509630039021573,"pitch":-136.07711301660004,"roll":56.655750631946105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.471"} +{"sensors":[{"euler":{"heading":29.07447781966971,"pitch":130.32727854505893,"roll":21.153131223111103},"location":"Left Knee"},{"euler":{"heading":38.286992571163346,"pitch":101.99720789800935,"roll":26.63648668974994},"location":"Left Ankle"},{"euler":{"heading":37.79236886838335,"pitch":-7.75424310497709,"roll":-5.431469070724322},"location":"Right Ankle"},{"euler":{"heading":63.36192260865732,"pitch":-159.39086105755814,"roll":55.37440647170308},"location":"Right Hip"},{"euler":{"heading":36.46653796636884,"pitch":-108.77171693242694,"roll":4.443909086610321},"location":"Right Knee"},{"euler":{"heading":13.168947423609524,"pitch":-134.25051351418875,"roll":55.78481056748253},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.572"} +{"sensors":[{"euler":{"heading":50.64326926704445,"pitch":132.39483979001528,"roll":22.63678214852804},"location":"Left Knee"},{"euler":{"heading":34.506306011241016,"pitch":100.83813850995345,"roll":23.71624797625254},"location":"Left Ankle"},{"euler":{"heading":37.323665395928515,"pitch":-7.420902253043459,"roll":-5.776870604551419},"location":"Right Ankle"},{"euler":{"heading":63.33133544938957,"pitch":-159.63905519587334,"roll":56.135462306816045},"location":"Right Hip"},{"euler":{"heading":37.70656748566115,"pitch":-109.30472879701968,"roll":3.8368780451718867},"location":"Right Knee"},{"euler":{"heading":11.615062821881995,"pitch":-132.79386429848765,"roll":55.085898223043},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.672"} +{"sensors":[{"euler":{"heading":68.89235758061761,"pitch":134.6521694283851,"roll":24.151714816505425},"location":"Left Knee"},{"euler":{"heading":30.905332840910894,"pitch":100.07470027291461,"roll":20.431703519203264},"location":"Left Ankle"},{"euler":{"heading":36.26212643599851,"pitch":-7.024145501667759,"roll":-6.392626533211387},"location":"Right Ankle"},{"euler":{"heading":63.43708748453013,"pitch":-160.19657711305103,"roll":56.972755455579204},"location":"Right Hip"},{"euler":{"heading":39.5720812906304,"pitch":-109.63840525900058,"roll":2.5147007931585765},"location":"Right Knee"},{"euler":{"heading":10.913493340474364,"pitch":-132.01680171949005,"roll":54.608047859039225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.773"} +{"sensors":[{"euler":{"heading":90.5707246796895,"pitch":135.73757623369045,"roll":25.492813094531456},"location":"Left Knee"},{"euler":{"heading":29.56209300378747,"pitch":99.91301641707696,"roll":18.73189692872826},"location":"Left Ankle"},{"euler":{"heading":34.16820612564878,"pitch":-7.182371968534227,"roll":-7.104386725408787},"location":"Right Ankle"},{"euler":{"heading":63.97552051466822,"pitch":-160.653502340373,"roll":57.569877853069556},"location":"Right Hip"},{"euler":{"heading":42.348076555714435,"pitch":-109.3279740883735,"roll":0.12328871679727182},"location":"Right Knee"},{"euler":{"heading":10.529298859973817,"pitch":-131.48012577113923,"roll":54.377793432817406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.874"} +{"sensors":[{"euler":{"heading":75.05100650249993,"pitch":135.95873442555268,"roll":26.53392558242764},"location":"Left Knee"},{"euler":{"heading":28.985436764382,"pitch":100.02830626083447,"roll":17.556448072560713},"location":"Left Ankle"},{"euler":{"heading":30.789020330015443,"pitch":-6.956938082442584,"roll":-7.914909398312157},"location":"Right Ankle"},{"euler":{"heading":65.05253680684041,"pitch":-160.06220560276412,"roll":57.444324575283076},"location":"Right Hip"},{"euler":{"heading":45.168026745487026,"pitch":-109.62971280571173,"roll":-2.605444696607803},"location":"Right Knee"},{"euler":{"heading":10.46442375950565,"pitch":-131.29176646166385,"roll":54.44887139921799},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.975"} +{"sensors":[{"euler":{"heading":62.78343098874852,"pitch":135.73673812041744,"roll":27.267916559333244},"location":"Left Knee"},{"euler":{"heading":29.01267710629271,"pitch":100.22180878154954,"roll":16.938711768864884},"location":"Left Ankle"},{"euler":{"heading":28.67613053311857,"pitch":-6.818346961031464,"roll":-8.2143237086991},"location":"Right Ankle"},{"euler":{"heading":66.28516971928838,"pitch":-159.2061093095257,"roll":56.62322293607893},"location":"Right Hip"},{"euler":{"heading":46.41278881363534,"pitch":-109.58764734707316,"roll":-4.373061257431738},"location":"Right Knee"},{"euler":{"heading":10.595608634483213,"pitch":-131.6147853495375,"roll":54.72127384642561},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.75"} +{"sensors":[{"euler":{"heading":53.3392296385212,"pitch":134.9770002798979,"roll":27.85479770272952},"location":"Left Knee"},{"euler":{"heading":29.87326984335371,"pitch":100.6228260797648,"roll":16.867252807966786},"location":"Left Ankle"},{"euler":{"heading":29.09830003678392,"pitch":-7.008040613264578,"roll":-7.932342647207855},"location":"Right Ankle"},{"euler":{"heading":67.07447181846852,"pitch":-158.5325193389783,"roll":55.45216637735931},"location":"Right Hip"},{"euler":{"heading":45.25601604418415,"pitch":-109.03234159867984,"roll":-2.607489316052664},"location":"Right Knee"},{"euler":{"heading":11.24999096805006,"pitch":-132.59673277520716,"roll":55.158013876042496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.175"} +{"sensors":[{"euler":{"heading":46.295983581323576,"pitch":133.87930621617093,"roll":27.993461520016513},"location":"Left Knee"},{"euler":{"heading":31.029765615059024,"pitch":101.07487625312694,"roll":17.236598831647903},"location":"Left Ankle"},{"euler":{"heading":31.364306327204226,"pitch":-7.381830130821908,"roll":-6.96969340501819},"location":"Right Ankle"},{"euler":{"heading":66.8289553709478,"pitch":-158.40457447930646,"roll":54.44006894339953},"location":"Right Hip"},{"euler":{"heading":42.400408018027356,"pitch":-108.32771880708174,"roll":-0.7066565790467609},"location":"Right Knee"},{"euler":{"heading":11.869032814152845,"pitch":-133.7052489106903,"roll":55.73751358074153},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.276"} +{"sensors":[{"euler":{"heading":41.00460601898088,"pitch":132.7076709859072,"roll":27.58980257403162},"location":"Left Knee"},{"euler":{"heading":32.52367139003284,"pitch":101.51365172713676,"roll":18.171286913596933},"location":"Left Ankle"},{"euler":{"heading":34.52767747780413,"pitch":-7.642773950584798,"roll":-5.955928713919951},"location":"Right Ankle"},{"euler":{"heading":65.64695101426629,"pitch":-158.63362820657804,"roll":53.958254655373295},"location":"Right Hip"},{"euler":{"heading":39.17638845199121,"pitch":-107.933880816109,"roll":1.952718196647151},"location":"Right Knee"},{"euler":{"heading":12.36995829340381,"pitch":-135.13637968415662,"roll":56.35701334322048},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.377"} +{"sensors":[{"euler":{"heading":37.29034384810329,"pitch":131.55236254353008,"roll":26.55272189235623},"location":"Left Knee"},{"euler":{"heading":34.88837886916634,"pitch":101.96419648702748,"roll":20.2477415427012},"location":"Left Ankle"},{"euler":{"heading":36.35684294204953,"pitch":-7.450833360977268,"roll":-5.359644921618112},"location":"Right Ankle"},{"euler":{"heading":64.10837760730594,"pitch":-159.06086959797682,"roll":53.7779211417019},"location":"Right Hip"},{"euler":{"heading":36.584127216691556,"pitch":-108.25527170235144,"roll":3.9429486206778295},"location":"Right Knee"},{"euler":{"heading":13.023873140774974,"pitch":-136.94861601769,"roll":56.988926930611015},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.477"} +{"sensors":[{"euler":{"heading":35.711655718216385,"pitch":130.62585887905388,"roll":24.47279436593436},"location":"Left Knee"},{"euler":{"heading":37.9244806783731,"pitch":103.19233566380132,"roll":23.48220372534066},"location":"Left Ankle"},{"euler":{"heading":37.09950755643774,"pitch":-7.021502877178406,"roll":-5.141129190189655},"location":"Right Ankle"},{"euler":{"heading":63.14586076476506,"pitch":-159.32856353288972,"roll":53.941733758728006},"location":"Right Hip"},{"euler":{"heading":35.27609369538633,"pitch":-108.80173853341849,"roll":5.077984077107759},"location":"Right Knee"},{"euler":{"heading":12.447525377412193,"pitch":-137.08430068271008,"roll":57.168339484171085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.578"} +{"sensors":[{"euler":{"heading":35.304878439100115,"pitch":129.74587165000523,"roll":22.23400132577494},"location":"Left Knee"},{"euler":{"heading":39.99426598716247,"pitch":103.750734588248,"roll":26.355480176623995},"location":"Left Ankle"},{"euler":{"heading":37.42222576492653,"pitch":-6.5616687306719506,"roll":-5.228774516580607},"location":"Right Ankle"},{"euler":{"heading":62.3755889491519,"pitch":-159.61835556411776,"roll":54.494244631724534},"location":"Right Hip"},{"euler":{"heading":35.084982806283385,"pitch":-109.48052728614145,"roll":5.581862303459994},"location":"Right Knee"},{"euler":{"heading":11.262175544020018,"pitch":-135.66129837250406,"roll":56.86695143795691},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.678"} +{"sensors":[{"euler":{"heading":33.5211545875536,"pitch":129.9246235876748,"roll":21.165367826221594},"location":"Left Knee"},{"euler":{"heading":39.85190387978892,"pitch":103.06100902629757,"roll":27.17184414268912},"location":"Left Ankle"},{"euler":{"heading":37.47243600681485,"pitch":-6.145576271472215,"roll":-5.349699741500335},"location":"Right Ankle"},{"euler":{"heading":62.036211302102615,"pitch":-159.8151827671309,"roll":55.220119640723006},"location":"Right Hip"},{"euler":{"heading":35.52897748915301,"pitch":-110.10069161934912,"roll":5.609747003970562},"location":"Right Knee"},{"euler":{"heading":9.744644094879241,"pitch":-133.95748751239339,"roll":56.065100527650245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.779"} +{"sensors":[{"euler":{"heading":54.78360918399321,"pitch":131.40028474596633,"roll":22.023597445277883},"location":"Left Knee"},{"euler":{"heading":36.75673882263266,"pitch":101.79480033129572,"roll":25.336233349300247},"location":"Left Ankle"},{"euler":{"heading":37.127103102471644,"pitch":-5.650158422521571,"roll":-5.601809346793822},"location":"Right Ankle"},{"euler":{"heading":61.817782331927155,"pitch":-160.1003023350344,"roll":56.04935976720387},"location":"Right Hip"},{"euler":{"heading":36.45732407433906,"pitch":-110.74509717547622,"roll":5.195026410398005},"location":"Right Knee"},{"euler":{"heading":8.531817541351042,"pitch":-132.31468129781084,"roll":55.31574439212696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.880"} +{"sensors":[{"euler":{"heading":71.97330738213104,"pitch":133.61547927996318,"roll":23.51362495358073},"location":"Left Knee"},{"euler":{"heading":32.57557084570943,"pitch":100.54796941001104,"roll":21.891642602419928},"location":"Left Ankle"},{"euler":{"heading":36.21414228983334,"pitch":-5.100796928200357,"roll":-6.103421196226197},"location":"Right Ankle"},{"euler":{"heading":61.86485461961103,"pitch":-160.51882323211686,"roll":56.90673402857583},"location":"Right Hip"},{"euler":{"heading":38.055741618336356,"pitch":-111.24496939663213,"roll":4.189553472861589},"location":"Right Knee"},{"euler":{"heading":8.103560709353111,"pitch":-131.2859355831991,"roll":54.810084621600105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.981"} +{"sensors":[{"euler":{"heading":92.84964539662849,"pitch":134.97786038344526,"roll":24.873804326665947},"location":"Left Knee"},{"euler":{"heading":29.639550302019142,"pitch":100.14507071286681,"roll":19.089819585597727},"location":"Left Ankle"},{"euler":{"heading":34.27160414218207,"pitch":-4.615584018407711,"roll":-6.842692023538346},"location":"Right Ankle"},{"euler":{"heading":62.236334584212585,"pitch":-161.12939935882846,"roll":57.70038655310341},"location":"Right Hip"},{"euler":{"heading":40.38117175960878,"pitch":-111.41786185346014,"roll":2.4236017723012533},"location":"Right Knee"},{"euler":{"heading":8.394997706782872,"pitch":-130.7117676818162,"roll":54.54872084885754},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.83"} +{"sensors":[{"euler":{"heading":76.98238267814992,"pitch":135.33073956251613,"roll":25.914346899072815},"location":"Left Knee"},{"euler":{"heading":29.19749140608254,"pitch":100.2501770250905,"roll":18.082463823814848},"location":"Left Ankle"},{"euler":{"heading":31.260127508435136,"pitch":-4.4321751766002455,"roll":-7.630545923551508},"location":"Right Ankle"},{"euler":{"heading":63.23610296506348,"pitch":-161.09925433204677,"roll":58.02615264002543},"location":"Right Hip"},{"euler":{"heading":43.40294925038135,"pitch":-111.17002701043961,"roll":-0.3099176665828356},"location":"Right Knee"},{"euler":{"heading":8.681188462675966,"pitch":-130.41219383931292,"roll":54.47868789805544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.184"} +{"sensors":[{"euler":{"heading":64.75722999319498,"pitch":134.94255953004168,"roll":26.7310564803815},"location":"Left Knee"},{"euler":{"heading":29.299268059948805,"pitch":100.57715210487305,"roll":17.283893545112466},"location":"Left Ankle"},{"euler":{"heading":28.37221689151021,"pitch":-4.688329927811769,"roll":-8.301838129437215},"location":"Right Ankle"},{"euler":{"heading":64.7146413685769,"pitch":-160.3763758566616,"roll":57.530204339451274},"location":"Right Hip"},{"euler":{"heading":46.21011458342911,"pitch":-110.7139004402155,"roll":-3.2174187386323023},"location":"Right Knee"},{"euler":{"heading":9.444653519219642,"pitch":-130.6999758517912,"roll":54.706636899774686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.284"} +{"sensors":[{"euler":{"heading":55.00293656666076,"pitch":134.31782094219668,"roll":27.208483091069613},"location":"Left Knee"},{"euler":{"heading":29.792828898882277,"pitch":100.77789878373184,"roll":17.03691181172373},"location":"Left Ankle"},{"euler":{"heading":27.577160047880433,"pitch":-5.431414433903619,"roll":-8.493102182987588},"location":"Right Ankle"},{"euler":{"heading":66.24036830112158,"pitch":-159.60335498737743,"roll":56.397722705594255},"location":"Right Hip"},{"euler":{"heading":47.10552589034004,"pitch":-110.00389749322946,"roll":-4.581993474309133},"location":"Right Knee"},{"euler":{"heading":10.31948079310235,"pitch":-131.72138199856744,"roll":55.06153496107371},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.384"} +{"sensors":[{"euler":{"heading":47.59877191914569,"pitch":133.40768272162333,"roll":27.337283843881067},"location":"Left Knee"},{"euler":{"heading":30.94606473479117,"pitch":101.14385398674968,"roll":17.384173728287255},"location":"Left Ankle"},{"euler":{"heading":29.262674269394104,"pitch":-6.181102083437164,"roll":-7.857610421601555},"location":"Right Ankle"},{"euler":{"heading":66.78808554607106,"pitch":-159.21896897200094,"roll":55.105429455745515},"location":"Right Hip"},{"euler":{"heading":45.216807027739506,"pitch":-109.01660567902539,"roll":-3.6823977079709977},"location":"Right Knee"},{"euler":{"heading":11.124968022976413,"pitch":-133.03801726846592,"roll":55.53130606256551},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.485"} +{"sensors":[{"euler":{"heading":42.14267137730674,"pitch":132.30469186997198,"roll":27.025770286255064},"location":"Left Knee"},{"euler":{"heading":32.34217635592602,"pitch":101.5760679592308,"roll":18.138355146256483},"location":"Left Ankle"},{"euler":{"heading":32.24205922208751,"pitch":-6.687061832729918,"roll":-6.741546770712921},"location":"Right Ankle"},{"euler":{"heading":66.07722084095063,"pitch":-159.19813956562496,"roll":54.352237034083934},"location":"Right Hip"},{"euler":{"heading":41.827280724505776,"pitch":-108.15890176735127,"roll":-1.162072630830783},"location":"Right Knee"},{"euler":{"heading":11.945023392095663,"pitch":-134.65152455230205,"roll":56.11691353051157},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.585"} +{"sensors":[{"euler":{"heading":38.341096671873224,"pitch":131.15204493881504,"roll":26.119632131047055},"location":"Left Knee"},{"euler":{"heading":34.139294863692214,"pitch":102.04445661040688,"roll":19.534232030482055},"location":"Left Ankle"},{"euler":{"heading":34.79453720923667,"pitch":-6.817900281069488,"roll":-5.981351507709238},"location":"Right Ankle"},{"euler":{"heading":64.74605683695678,"pitch":-159.45872101319944,"roll":54.086863516392896},"location":"Right Hip"},{"euler":{"heading":38.58226099048938,"pitch":-107.78706779173379,"roll":1.42171740878848},"location":"Right Knee"},{"euler":{"heading":12.967256981648505,"pitch":-136.81309338120843,"roll":56.730049440488685},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.686"} +{"sensors":[{"euler":{"heading":36.310417446248884,"pitch":130.32307453148437,"roll":24.158191233479467},"location":"Left Knee"},{"euler":{"heading":36.389608831954476,"pitch":102.55746944203625,"roll":22.3549968323122},"location":"Left Ankle"},{"euler":{"heading":36.03432440470623,"pitch":-6.805495964507561,"roll":-5.650188217179538},"location":"Right Ankle"},{"euler":{"heading":63.917694741092546,"pitch":-159.62911628704984,"roll":54.0667100159272},"location":"Right Hip"},{"euler":{"heading":36.555444987685725,"pitch":-107.97973687250571,"roll":3.070068938194974},"location":"Right Knee"},{"euler":{"heading":13.483214115647463,"pitch":-138.18045768922204,"roll":57.1837906152749},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.787"} +{"sensors":[{"euler":{"heading":36.03890150002247,"pitch":129.2043507968251,"roll":21.741239024932273},"location":"Left Knee"},{"euler":{"heading":39.28448289852457,"pitch":103.7232282676332,"roll":25.75167028497144},"location":"Left Ankle"},{"euler":{"heading":36.680851732421615,"pitch":-6.669420147501797,"roll":-5.594284421376175},"location":"Right Ankle"},{"euler":{"heading":63.14430784056264,"pitch":-159.86059172287338,"roll":54.4586998416272},"location":"Right Hip"},{"euler":{"heading":35.85903009520547,"pitch":-108.45134370316676,"roll":3.9373638565388607},"location":"Right Knee"},{"euler":{"heading":12.948484725591346,"pitch":-137.12880813916448,"roll":57.41006515989214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.888"} +{"sensors":[{"euler":{"heading":35.2161084701125,"pitch":128.88170125443474,"roll":20.124948738469428},"location":"Left Knee"},{"euler":{"heading":40.19225694433069,"pitch":103.35122054631893,"roll":27.535103686228307},"location":"Left Ankle"},{"euler":{"heading":36.96646998903955,"pitch":-6.3798199185191695,"roll":-5.680440545122048},"location":"Right Ankle"},{"euler":{"heading":62.76670771964914,"pitch":-160.06410276830238,"roll":55.11661235453083},"location":"Right Hip"},{"euler":{"heading":36.02007918020246,"pitch":-109.0623935071812,"roll":4.240587495962335},"location":"Right Knee"},{"euler":{"heading":11.737758894534112,"pitch":-135.4280879099651,"roll":56.93705028705421},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.988"} +{"sensors":[{"euler":{"heading":30.891987555975707,"pitch":129.95716447794348,"roll":20.380601842519628},"location":"Left Knee"},{"euler":{"heading":37.94505160617957,"pitch":102.25360065468782,"roll":26.473499693870785},"location":"Left Ankle"},{"euler":{"heading":36.80794360219394,"pitch":-6.028588274372511,"roll":-5.877307226784771},"location":"Right Ankle"},{"euler":{"heading":62.64777899736931,"pitch":-160.2839266871541,"roll":55.86651898918509},"location":"Right Hip"},{"euler":{"heading":36.752422064896244,"pitch":-109.60937193864417,"roll":4.057178323352757},"location":"Right Knee"},{"euler":{"heading":10.419425988306747,"pitch":-133.71673463879017,"roll":56.17609369018306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.89"} +{"sensors":[{"euler":{"heading":52.04226463794504,"pitch":132.04804217940855,"roll":21.878286488753982},"location":"Left Knee"},{"euler":{"heading":33.899333203629624,"pitch":100.9333998503231,"roll":23.259609109228286},"location":"Left Ankle"},{"euler":{"heading":36.16090060671471,"pitch":-5.603751975750511,"roll":-6.275423362776757},"location":"Right Ankle"},{"euler":{"heading":62.734704825897,"pitch":-160.57796479484986,"roll":56.622379812833856},"location":"Right Hip"},{"euler":{"heading":38.06550053310588,"pitch":-110.09242847424703,"roll":3.332357017388247},"location":"Right Knee"},{"euler":{"heading":9.595624673643925,"pitch":-132.5070562485302,"roll":55.535085491199986},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.190"} +{"sensors":[{"euler":{"heading":75.56104424300713,"pitch":134.0827126856265,"roll":23.394027305704476},"location":"Left Knee"},{"euler":{"heading":30.41428947718324,"pitch":100.0301031180024,"roll":19.99472115828118},"location":"Left Ankle"},{"euler":{"heading":34.935501517416974,"pitch":-5.171765735899765,"roll":-6.87348103732777},"location":"Right Ankle"},{"euler":{"heading":62.93073105936013,"pitch":-161.15913385452802,"roll":57.371737818467054},"location":"Right Hip"},{"euler":{"heading":39.390350667642686,"pitch":-110.27983137441453,"roll":2.3494923623171364},"location":"Right Knee"},{"euler":{"heading":9.337268591378256,"pitch":-131.77511218577573,"roll":55.07395929959455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.290"} +{"sensors":[{"euler":{"heading":62.2200735752791,"pitch":134.9131330227428,"roll":24.61695070512998},"location":"Left Knee"},{"euler":{"heading":29.320550540187153,"pitch":99.8013178715666,"roll":18.56834947810023},"location":"Left Ankle"},{"euler":{"heading":32.642014328410966,"pitch":-5.250551455647254,"roll":-7.575171828080662},"location":"Right Ankle"},{"euler":{"heading":63.58469765776314,"pitch":-161.6790739451282,"roll":57.87145397358648},"location":"Right Hip"},{"euler":{"heading":41.83066664763015,"pitch":-109.82515028788161,"roll":0.28295172145946124},"location":"Right Knee"},{"euler":{"heading":9.363539218576143,"pitch":-131.2792628583309,"roll":54.82316631443693},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.391"} +{"sensors":[{"euler":{"heading":52.2358599809005,"pitch":134.93328685242295,"roll":25.497621921922086},"location":"Left Knee"},{"euler":{"heading":28.787662059231764,"pitch":99.78454564779146,"roll":17.46791113664529},"location":"Left Ankle"},{"euler":{"heading":29.135095236433028,"pitch":-5.2742802289649635,"roll":-8.56683279451125},"location":"Right Ankle"},{"euler":{"heading":64.9227813227853,"pitch":-161.09723532585883,"roll":57.59236183077815},"location":"Right Hip"},{"euler":{"heading":44.35792708284858,"pitch":-109.62775177866565,"roll":-2.181540164511769},"location":"Right Knee"},{"euler":{"heading":9.605025961469066,"pitch":-131.0148856957911,"roll":54.87565945071792},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.492"} +{"sensors":[{"euler":{"heading":44.4115699539871,"pitch":134.565078555114,"roll":26.08643359111856},"location":"Left Knee"},{"euler":{"heading":28.773450394813374,"pitch":99.79315011098737,"roll":16.864542209693383},"location":"Left Ankle"},{"euler":{"heading":27.084086169574615,"pitch":-5.616798416229524,"roll":-9.047990555257245},"location":"Right Ankle"},{"euler":{"heading":66.38701183760303,"pitch":-160.26158806343742,"roll":56.626381391483825},"location":"Right Hip"},{"euler":{"heading":45.196566486474175,"pitch":-109.15781071369555,"roll":-3.4900747705194854},"location":"Right Knee"},{"euler":{"heading":10.028676732249696,"pitch":-131.47125838213313,"roll":55.077737179711406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.593"} +{"sensors":[{"euler":{"heading":38.49256505829741,"pitch":133.8573416630895,"roll":26.446820675151056},"location":"Left Knee"},{"euler":{"heading":29.72495373449489,"pitch":100.02091245735457,"roll":16.990388466269216},"location":"Left Ankle"},{"euler":{"heading":27.717446853178224,"pitch":-6.40830450514218,"roll":-8.722378845775781},"location":"Right Ankle"},{"euler":{"heading":67.27676618607998,"pitch":-159.6897362179721,"roll":55.30639169435822},"location":"Right Hip"},{"euler":{"heading":43.76671399950359,"pitch":-108.2272216078835,"roll":-2.7716366847823175},"location":"Right Knee"},{"euler":{"heading":10.63715505566918,"pitch":-132.5025306451178,"roll":55.385443740590915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.694"} +{"sensors":[{"euler":{"heading":34.038480623290674,"pitch":133.0147877285043,"roll":26.49349650764083},"location":"Left Knee"},{"euler":{"heading":30.985613546362018,"pitch":100.29835261977469,"roll":17.60366944786339},"location":"Left Ankle"},{"euler":{"heading":30.673618014090714,"pitch":-6.89265164179828,"roll":-7.904553853903304},"location":"Right Ankle"},{"euler":{"heading":67.0837733923562,"pitch":-159.53494549970668,"roll":54.19520022090214},"location":"Right Hip"},{"euler":{"heading":40.5329306009577,"pitch":-107.3078657190476,"roll":-0.23093214168945675},"location":"Right Knee"},{"euler":{"heading":11.200774825574106,"pitch":-133.75080451858753,"roll":55.81251242945837},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.794"} +{"sensors":[{"euler":{"heading":30.884941689687544,"pitch":132.0740224425057,"roll":26.07199831059106},"location":"Left Knee"},{"euler":{"heading":32.52319157018891,"pitch":100.56129192363912,"roll":18.69368981003153},"location":"Left Ankle"},{"euler":{"heading":33.92052548869993,"pitch":-7.348761217742207,"roll":-6.896985557522192},"location":"Right Ankle"},{"euler":{"heading":65.59994750383632,"pitch":-159.7932148471982,"roll":53.84369458821604},"location":"Right Hip"},{"euler":{"heading":37.070605144896724,"pitch":-106.73161171520329,"roll":2.9063764548692004},"location":"Right Knee"},{"euler":{"heading":11.8881877667277,"pitch":-135.45703127670146,"roll":56.34164362557917},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.895"} +{"sensors":[{"euler":{"heading":29.242186062669322,"pitch":131.1097865360898,"roll":24.893923875127477},"location":"Left Knee"},{"euler":{"heading":34.40047076809357,"pitch":100.82300037723307,"roll":20.595599444285334},"location":"Left Ankle"},{"euler":{"heading":36.00834024767019,"pitch":-7.505835178062452,"roll":-6.3122540359967845},"location":"Right Ankle"},{"euler":{"heading":64.1174536453347,"pitch":-160.21716618710667,"roll":53.680203899617425},"location":"Right Hip"},{"euler":{"heading":34.473469151297344,"pitch":-106.78686866796932,"roll":5.2339523603743405},"location":"Right Knee"},{"euler":{"heading":12.885048187988229,"pitch":-137.5776481870407,"roll":56.95123802566795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.995"} +{"sensors":[{"euler":{"heading":29.32991868828016,"pitch":130.40968741611,"roll":22.75181299860122},"location":"Left Knee"},{"euler":{"heading":37.536872673825215,"pitch":101.89215690185877,"roll":23.93965905413784},"location":"Left Ankle"},{"euler":{"heading":37.0044037751958,"pitch":-7.511225414827847,"roll":-6.044738590255731},"location":"Right Ankle"},{"euler":{"heading":63.11762036904172,"pitch":-160.511609574537,"roll":53.96032739889125},"location":"Right Hip"},{"euler":{"heading":33.17928010609506,"pitch":-107.21142368768177,"roll":6.668298028052415},"location":"Right Knee"},{"euler":{"heading":12.262511966349571,"pitch":-137.69511336939604,"roll":57.09856388763026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.97"} +{"sensors":[{"euler":{"heading":29.972503598059124,"pitch":129.81780232365423,"roll":20.641056330985812},"location":"Left Knee"},{"euler":{"heading":39.552041516669156,"pitch":101.89647016053145,"roll":26.79320133345656},"location":"Left Ankle"},{"euler":{"heading":37.47515166052192,"pitch":-7.47448575237855,"roll":-6.022646912478651},"location":"Right Ankle"},{"euler":{"heading":62.38219228212144,"pitch":-160.89100490255507,"roll":54.5645773219276},"location":"Right Hip"},{"euler":{"heading":32.96383321315122,"pitch":-107.69666317386684,"roll":7.389506836552708},"location":"Right Knee"},{"euler":{"heading":10.95610876708676,"pitch":-136.07726547469372,"roll":56.8097585472159},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.198"} +{"sensors":[{"euler":{"heading":28.74478567086694,"pitch":130.11456332169442,"roll":19.88447490559687},"location":"Left Knee"},{"euler":{"heading":38.877444281575194,"pitch":100.99074105444737,"roll":27.246880496975074},"location":"Left Ankle"},{"euler":{"heading":37.48009982653194,"pitch":-7.387733178843505,"roll":-6.288031469743868},"location":"Right Ankle"},{"euler":{"heading":62.20808671737143,"pitch":-161.08567758901663,"roll":55.230254170648855},"location":"Right Hip"},{"euler":{"heading":33.45329998653527,"pitch":-108.03467406219478,"roll":7.584322026425853},"location":"Right Knee"},{"euler":{"heading":9.648614950713016,"pitch":-134.31604985357427,"roll":56.08469179765773},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.298"} +{"sensors":[{"euler":{"heading":23.809683235190846,"pitch":131.56621116998457,"roll":22.434110576329033},"location":"Left Knee"},{"euler":{"heading":35.590243296216684,"pitch":99.91552113110666,"roll":25.071194649335887},"location":"Left Ankle"},{"euler":{"heading":37.00852676958927,"pitch":-7.166545554138139,"roll":-6.498444803590116},"location":"Right Ankle"},{"euler":{"heading":62.42224772867708,"pitch":-161.23805082087523,"roll":55.91584286780254},"location":"Right Hip"},{"euler":{"heading":34.32969945537684,"pitch":-108.35242230639123,"roll":7.320652672440426},"location":"Right Knee"},{"euler":{"heading":8.661274749898263,"pitch":-132.710479115744,"roll":55.39292512033646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.399"} +{"sensors":[{"euler":{"heading":52.25993291697258,"pitch":133.66455173624772,"roll":23.980212977044456},"location":"Left Knee"},{"euler":{"heading":31.78691419730368,"pitch":98.87123772759763,"roll":21.729104687212033},"location":"Left Ankle"},{"euler":{"heading":35.98625535038052,"pitch":-6.799929771522273,"roll":-6.932600198026807},"location":"Right Ankle"},{"euler":{"heading":62.799742989812444,"pitch":-161.51267163627807,"roll":56.59566806986706},"location":"Right Hip"},{"euler":{"heading":35.760731297209105,"pitch":-108.61616354315848,"roll":6.463752852358128},"location":"Right Knee"},{"euler":{"heading":8.358192820775557,"pitch":-131.78677054754323,"roll":54.86803292381433},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.499"} +{"sensors":[{"euler":{"heading":76.67862939640607,"pitch":134.86174152032615,"roll":25.36140658466048},"location":"Left Knee"},{"euler":{"heading":29.534822094154766,"pitch":98.52082246369274,"roll":19.31729745715829},"location":"Left Ankle"},{"euler":{"heading":34.007721566173416,"pitch":-6.723836514422734,"roll":-7.604886052737997},"location":"Right Ankle"},{"euler":{"heading":63.417991693376216,"pitch":-161.98114555010508,"roll":57.10975472303447},"location":"Right Hip"},{"euler":{"heading":38.10368420673428,"pitch":-108.45053549697415,"roll":4.701444495334682},"location":"Right Knee"},{"euler":{"heading":8.466748125925252,"pitch":-131.26008568122853,"roll":54.55359436235895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.600"} +{"sensors":[{"euler":{"heading":63.39674461260186,"pitch":135.26133834293046,"roll":26.302058261712467},"location":"Left Knee"},{"euler":{"heading":28.600443608366167,"pitch":98.292920038774,"roll":17.991037499428668},"location":"Left Ankle"},{"euler":{"heading":30.82408436160496,"pitch":-6.559856700494918,"roll":-8.462923688154389},"location":"Right Ankle"},{"euler":{"heading":64.69115773940987,"pitch":-161.62622062078327,"roll":56.96257223823423},"location":"Right Hip"},{"euler":{"heading":40.860379862702686,"pitch":-108.34227995912255,"roll":2.1139092101765735},"location":"Right Knee"},{"euler":{"heading":8.573469013982836,"pitch":-130.95591559280126,"roll":54.494988434211855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.702"} +{"sensors":[{"euler":{"heading":52.979340557903676,"pitch":135.14135363147827,"roll":27.064050907032357},"location":"Left Knee"},{"euler":{"heading":28.45963282607663,"pitch":98.28289196581129,"roll":17.14765637409022},"location":"Left Ankle"},{"euler":{"heading":28.64538784762049,"pitch":-6.453092606935022,"roll":-8.948020486911531},"location":"Right Ankle"},{"euler":{"heading":65.97143701105327,"pitch":-160.7997067496904,"roll":56.211078482995056},"location":"Right Hip"},{"euler":{"heading":42.60031748906166,"pitch":-108.1373066836431,"roll":0.11139555164727621},"location":"Right Knee"},{"euler":{"heading":8.904609573015415,"pitch":-131.2989916531233,"roll":54.6262619267286},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.803"} +{"sensors":[{"euler":{"heading":44.96682326908102,"pitch":134.65228276845085,"roll":27.539527986984435},"location":"Left Knee"},{"euler":{"heading":28.778344567966883,"pitch":98.31543496586966,"roll":16.812563961368944},"location":"Left Ankle"},{"euler":{"heading":29.031510806141945,"pitch":-7.040194816121848,"roll":-8.679480883367292},"location":"Right Ankle"},{"euler":{"heading":66.81758781992716,"pitch":-160.15883048331347,"roll":55.02571936460691},"location":"Right Hip"},{"euler":{"heading":42.17004053702211,"pitch":-107.45242563464444,"roll":0.04134598225593007},"location":"Right Knee"},{"euler":{"heading":9.40761409806809,"pitch":-132.01965885598298,"roll":54.93529788245765},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.904"} +{"sensors":[{"euler":{"heading":39.08394794104844,"pitch":133.84112566046448,"roll":27.636838119902595},"location":"Left Knee"},{"euler":{"heading":29.461422235075176,"pitch":98.49946031379204,"roll":16.883901568528092},"location":"Left Ankle"},{"euler":{"heading":31.68417375843294,"pitch":-7.648737972572552,"roll":-7.824119403458731},"location":"Right Ankle"},{"euler":{"heading":66.82075949295022,"pitch":-159.97130782490626,"roll":53.911500286501855},"location":"Right Hip"},{"euler":{"heading":39.76065380140032,"pitch":-106.553264383698,"roll":1.8745130045139407},"location":"Right Knee"},{"euler":{"heading":10.039450035375827,"pitch":-133.1176707191486,"roll":55.39329604570971},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.5"} +{"sensors":[{"euler":{"heading":34.873477430981914,"pitch":132.86337219652822,"roll":27.261157639403827},"location":"Left Knee"},{"euler":{"heading":30.520131322542674,"pitch":98.76705049444813,"roll":17.50731210796098},"location":"Left Ankle"},{"euler":{"heading":34.77769396557985,"pitch":-8.300463738344767,"roll":-6.699350967811149},"location":"Right Ankle"},{"euler":{"heading":65.80076354414993,"pitch":-160.07510739541905,"roll":53.43834889735715},"location":"Right Hip"},{"euler":{"heading":36.84849197165133,"pitch":-105.876377851924,"roll":4.585619606137915},"location":"Right Knee"},{"euler":{"heading":10.931350990409372,"pitch":-134.73549158995027,"roll":55.98608639811732},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.107"} +{"sensors":[{"euler":{"heading":32.19883877110391,"pitch":131.8359400715985,"roll":26.249393973868287},"location":"Left Knee"},{"euler":{"heading":32.023149081708745,"pitch":99.1043111020212,"roll":18.939435681472577},"location":"Left Ankle"},{"euler":{"heading":36.70424355188984,"pitch":-8.533475684103541,"roll":-6.008567961122162},"location":"Right Ankle"},{"euler":{"heading":64.48402205881004,"pitch":-160.38306411432418,"roll":53.27774484023369},"location":"Right Hip"},{"euler":{"heading":34.46401704892546,"pitch":-105.90597332198365,"roll":6.6999498692962245},"location":"Right Knee"},{"euler":{"heading":12.036192897662904,"pitch":-136.68693260176053,"roll":56.62950315172517},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.208"} +{"sensors":[{"euler":{"heading":31.55462754226964,"pitch":131.0489297303435,"roll":24.132922108168568},"location":"Left Knee"},{"euler":{"heading":34.45477051977078,"pitch":100.21210634975749,"roll":21.78110859385209},"location":"Left Ankle"},{"euler":{"heading":37.58609925520046,"pitch":-8.530291312265216,"roll":-5.763995321934411},"location":"Right Ankle"},{"euler":{"heading":63.71503156643974,"pitch":-160.5784921676466,"roll":53.3464493059507},"location":"Right Hip"},{"euler":{"heading":33.236939118861756,"pitch":-106.25974544454361,"roll":7.977006715456374},"location":"Right Knee"},{"euler":{"heading":11.727993488398463,"pitch":-136.93074418802834,"roll":56.83121524896025},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.309"} +{"sensors":[{"euler":{"heading":31.94272546631449,"pitch":130.11086199670726,"roll":21.908623467139897},"location":"Left Knee"},{"euler":{"heading":36.909513489709134,"pitch":101.04805404753947,"roll":24.69729543432045},"location":"Left Ankle"},{"euler":{"heading":38.01684166751684,"pitch":-8.307433471488128,"roll":-5.756718710404138},"location":"Right Ankle"},{"euler":{"heading":62.88918784035193,"pitch":-160.83261914174815,"roll":53.848571028850046},"location":"Right Hip"},{"euler":{"heading":32.89808350493144,"pitch":-106.96036470943903,"roll":8.615341865545599},"location":"Right Knee"},{"euler":{"heading":10.619515851252928,"pitch":-135.31426316058244,"roll":56.573786734562105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.410"} +{"sensors":[{"euler":{"heading":30.887133561289424,"pitch":130.10626156554403,"roll":20.8352696652611},"location":"Left Knee"},{"euler":{"heading":37.31422129177021,"pitch":100.46084276293523,"roll":25.540597326901},"location":"Left Ankle"},{"euler":{"heading":38.04848647219188,"pitch":-7.951196967220602,"roll":-5.940384129922915},"location":"Right Ankle"},{"euler":{"heading":62.56970635761136,"pitch":-160.91988492430843,"roll":54.552631382215715},"location":"Right Hip"},{"euler":{"heading":33.143815969519075,"pitch":-107.66568131290822,"roll":8.788674515907138},"location":"Right Knee"},{"euler":{"heading":9.254106886714148,"pitch":-133.6137374598111,"roll":55.79982309379097},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.510"} +{"sensors":[{"euler":{"heading":25.718413344134937,"pitch":131.40412111953492,"roll":21.701118615628896},"location":"Left Knee"},{"euler":{"heading":34.63726994030508,"pitch":99.5252089875772,"roll":23.78881506810249},"location":"Left Ankle"},{"euler":{"heading":37.67011628528368,"pitch":-7.498050664913088,"roll":-6.2195392355832695},"location":"Right Ankle"},{"euler":{"heading":62.55781818896709,"pitch":-161.0226307866049,"roll":55.31456950949245},"location":"Right Hip"},{"euler":{"heading":33.95144282047208,"pitch":-108.32768595999961,"roll":8.463948993941946},"location":"Right Knee"},{"euler":{"heading":8.148002134413284,"pitch":-131.95606798117223,"roll":55.045974915348204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.612"} +{"sensors":[{"euler":{"heading":53.67416635303752,"pitch":133.4881539510832,"roll":23.34072804990552},"location":"Left Knee"},{"euler":{"heading":30.935276963760746,"pitch":98.38725722855415,"roll":20.491422364479934},"location":"Left Ankle"},{"euler":{"heading":36.75388581228948,"pitch":-7.0107208701520465,"roll":-6.650498962297902},"location":"Right Ankle"},{"euler":{"heading":62.62537316857955,"pitch":-161.3236887235823,"roll":56.16455163769271},"location":"Right Hip"},{"euler":{"heading":35.46885110091575,"pitch":-108.82564723709521,"roll":7.539910353848335},"location":"Right Knee"},{"euler":{"heading":7.747675920362971,"pitch":-131.02683371418013,"roll":54.51841448426424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.712"} +{"sensors":[{"euler":{"heading":77.7830944192564,"pitch":134.81508440555388,"roll":24.77680730369494},"location":"Left Knee"},{"euler":{"heading":28.421330924679896,"pitch":97.82723234405587,"roll":17.923865418131882},"location":"Left Ankle"},{"euler":{"heading":35.16538892770998,"pitch":-6.700545051804718,"roll":-7.373400905539277},"location":"Right Ankle"},{"euler":{"heading":63.00173372369471,"pitch":-161.82203023748022,"roll":56.90989805177678},"location":"Right Hip"},{"euler":{"heading":37.7755134067332,"pitch":-108.9789746053977,"roll":5.817919981424265},"location":"Right Knee"},{"euler":{"heading":7.889568556160311,"pitch":-130.4773128578706,"roll":54.20156150385152},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.813"} +{"sensors":[{"euler":{"heading":64.30702467357278,"pitch":135.28451786641645,"roll":25.850357940836616},"location":"Left Knee"},{"euler":{"heading":27.670882333159575,"pitch":97.68908885564161,"roll":16.67070249815582},"location":"Left Ankle"},{"euler":{"heading":32.26544166444233,"pitch":-6.443655914468563,"roll":-8.033482165459326},"location":"Right Ankle"},{"euler":{"heading":63.660670484572535,"pitch":-161.8984126734862,"roll":57.245460911851566},"location":"Right Hip"},{"euler":{"heading":40.63329112376952,"pitch":-108.85612318432977,"roll":3.1776878213772055},"location":"Right Knee"},{"euler":{"heading":7.857117400657112,"pitch":-130.18815089695465,"roll":54.05753652143608},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.914"} +{"sensors":[{"euler":{"heading":53.58793480140514,"pitch":135.3228515104299,"roll":26.595865467701962},"location":"Left Knee"},{"euler":{"heading":27.43691553467669,"pitch":97.55814094816049,"roll":15.822121369078825},"location":"Left Ankle"},{"euler":{"heading":29.516413635132118,"pitch":-6.5560311784274194,"roll":-8.482140556451931},"location":"Right Ankle"},{"euler":{"heading":64.63421464055241,"pitch":-161.31354539766608,"roll":56.91295546535375},"location":"Right Hip"},{"euler":{"heading":42.9554004715872,"pitch":-108.61416122739296,"roll":0.6756466947015691},"location":"Right Knee"},{"euler":{"heading":8.14564773403947,"pitch":-130.5150808997131,"roll":54.20664136252922},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.15"} +{"sensors":[{"euler":{"heading":45.40568649413344,"pitch":134.96514836641106,"roll":27.032644344313066},"location":"Left Knee"},{"euler":{"heading":27.85771046104115,"pitch":97.53477437213347,"roll":15.619065677904363},"location":"Left Ankle"},{"euler":{"heading":28.734003472823936,"pitch":-6.89552905910181,"roll":-8.59085497184498},"location":"Right Ankle"},{"euler":{"heading":65.60376545229977,"pitch":-160.58217311663103,"roll":55.98187696544163},"location":"Right Hip"},{"euler":{"heading":43.32285170032565,"pitch":-108.14551296255225,"roll":-0.25069374978871484},"location":"Right Knee"},{"euler":{"heading":8.720778590128804,"pitch":-131.39949716617355,"roll":54.53775776881594},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.116"} +{"sensors":[{"euler":{"heading":39.5919213605536,"pitch":134.13017525045413,"roll":27.142499898449792},"location":"Left Knee"},{"euler":{"heading":28.85624072531116,"pitch":97.80495061336858,"roll":15.8990596381249},"location":"Left Ankle"},{"euler":{"heading":30.30502132308991,"pitch":-7.488106996284731,"roll":-8.035244098395514},"location":"Right Ankle"},{"euler":{"heading":65.77932060425847,"pitch":-160.3424894080153,"roll":54.77670347016375},"location":"Right Hip"},{"euler":{"heading":41.471519005104064,"pitch":-107.34094513944704,"roll":0.8492541534128818},"location":"Right Knee"},{"euler":{"heading":9.441398026559806,"pitch":-132.52677532357623,"roll":54.99790005861943},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.217"} +{"sensors":[{"euler":{"heading":35.39642104879317,"pitch":133.11898065920064,"roll":26.819788610318028},"location":"Left Knee"},{"euler":{"heading":30.191077977362866,"pitch":98.15644189795644,"roll":16.64587972745905},"location":"Left Ankle"},{"euler":{"heading":33.44035969234693,"pitch":-8.06593315679347,"roll":-6.943900211225136},"location":"Right Ankle"},{"euler":{"heading":65.03126882727933,"pitch":-160.32774605267127,"roll":54.13801538895691},"location":"Right Hip"},{"euler":{"heading":38.37419799027536,"pitch":-106.58913053724318,"roll":3.5033104250441447},"location":"Right Knee"},{"euler":{"heading":10.298979276401424,"pitch":-134.1116254584264,"roll":55.562904039591146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.319"} +{"sensors":[{"euler":{"heading":32.597297895587836,"pitch":132.03750726108728,"roll":25.933244445961293},"location":"Left Knee"},{"euler":{"heading":31.932079791083478,"pitch":98.53989598537997,"roll":18.07076737460126},"location":"Left Ankle"},{"euler":{"heading":35.87082924631777,"pitch":-8.368817266808728,"roll":-6.283362245447492},"location":"Right Ankle"},{"euler":{"heading":63.705327935238856,"pitch":-160.58788930852492,"roll":53.90491030378996},"location":"Right Hip"},{"euler":{"heading":35.38032624222305,"pitch":-106.39040215789754,"roll":6.005970030521635},"location":"Right Knee"},{"euler":{"heading":11.244923478848705,"pitch":-136.18781007117525,"roll":56.127669829568305},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.420"} +{"sensors":[{"euler":{"heading":31.649018440507643,"pitch":131.19565101092027,"roll":23.870627509928497},"location":"Left Knee"},{"euler":{"heading":34.2018438554621,"pitch":99.30899087391028,"roll":21.113978444357524},"location":"Left Ankle"},{"euler":{"heading":37.183129991151404,"pitch":-8.559655242766132,"roll":-5.99481389853496},"location":"Right Ankle"},{"euler":{"heading":63.237960975129205,"pitch":-160.71627092024474,"roll":53.854502627489516},"location":"Right Hip"},{"euler":{"heading":33.808852855958484,"pitch":-106.46622602793198,"roll":7.569018036757124},"location":"Right Knee"},{"euler":{"heading":11.472493256397797,"pitch":-137.1509204106505,"roll":56.48413431963583},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.521"} +{"sensors":[{"euler":{"heading":32.18648124405885,"pitch":130.10093904395868,"roll":21.61777185348169},"location":"Left Knee"},{"euler":{"heading":37.195877946196056,"pitch":100.62323766400097,"roll":24.57519590572786},"location":"Left Ankle"},{"euler":{"heading":37.90686725668668,"pitch":-8.613433618685567,"roll":-5.8645104583199705},"location":"Right Ankle"},{"euler":{"heading":62.5342348074433,"pitch":-161.01079946986545,"roll":54.284514587326484},"location":"Right Hip"},{"euler":{"heading":33.30096746381422,"pitch":-106.86777438514952,"roll":8.412631691525162},"location":"Right Knee"},{"euler":{"heading":10.701632614135418,"pitch":-135.91183074796734,"roll":56.39646392689329},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.622"} +{"sensors":[{"euler":{"heading":31.44343898303817,"pitch":130.02593884142203,"roll":20.43534321332223},"location":"Left Knee"},{"euler":{"heading":38.22051595712898,"pitch":100.25479623343192,"roll":26.29218211181448},"location":"Left Ankle"},{"euler":{"heading":38.16652531163915,"pitch":-8.679932253661704,"roll":-5.8892895056469365},"location":"Right Ankle"},{"euler":{"heading":62.481211661479485,"pitch":-161.11084240073293,"roll":54.887652767474854},"location":"Right Hip"},{"euler":{"heading":33.539095298489855,"pitch":-107.2430161014651,"roll":8.70037205334593},"location":"Right Knee"},{"euler":{"heading":9.220273772799397,"pitch":-134.22580516855209,"roll":55.62747748911903},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.723"} +{"sensors":[{"euler":{"heading":26.613868379452175,"pitch":131.2719860120448,"roll":21.154930599903725},"location":"Left Knee"},{"euler":{"heading":36.30681101080339,"pitch":99.31498138762247,"roll":25.313139091501327},"location":"Left Ankle"},{"euler":{"heading":38.02835989341159,"pitch":-8.704433365434769,"roll":-6.0246722928727205},"location":"Right Ankle"},{"euler":{"heading":62.59237436573266,"pitch":-161.20136875560775,"roll":55.52854239727048},"location":"Right Hip"},{"euler":{"heading":34.281042410551215,"pitch":-107.57661767117206,"roll":8.497007141084202},"location":"Right Knee"},{"euler":{"heading":7.882487312793794,"pitch":-132.4980221816308,"roll":54.759226905160794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.823"} +{"sensors":[{"euler":{"heading":54.77597302971886,"pitch":133.32102572439666,"roll":22.703808743599765},"location":"Left Knee"},{"euler":{"heading":32.55794359500245,"pitch":98.32782428035377,"roll":22.20962771861919},"location":"Left Ankle"},{"euler":{"heading":37.28502759193659,"pitch":-8.494736813554201,"roll":-6.503895260424121},"location":"Right Ankle"},{"euler":{"heading":63.06389395434603,"pitch":-161.25950256754552,"roll":56.108467451038806},"location":"Right Hip"},{"euler":{"heading":35.578203579137295,"pitch":-107.87848541759074,"roll":7.7244018455284476},"location":"Right Knee"},{"euler":{"heading":7.203280755391889,"pitch":-131.1248442604708,"roll":54.09842005034308},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.924"} +{"sensors":[{"euler":{"heading":78.23340914229748,"pitch":135.11569761775968,"roll":24.22425612719743},"location":"Left Knee"},{"euler":{"heading":29.440812592088033,"pitch":97.9815387172305,"roll":19.19919716373167},"location":"Left Ankle"},{"euler":{"heading":36.004568154642705,"pitch":-8.096901862994324,"roll":-7.24074286936712},"location":"Right Ankle"},{"euler":{"heading":63.51537206191017,"pitch":-161.59748117107625,"roll":56.75213333178315},"location":"Right Hip"},{"euler":{"heading":37.53211386945696,"pitch":-108.06840371145938,"roll":6.252400577401383},"location":"Right Knee"},{"euler":{"heading":7.348693468223081,"pitch":-130.39358623751775,"roll":53.71450347046693},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.25"} +{"sensors":[{"euler":{"heading":64.6281794155444,"pitch":135.78840226757526,"roll":25.415766535745345},"location":"Left Knee"},{"euler":{"heading":28.34510950214335,"pitch":97.99518546056002,"roll":17.670140412761054},"location":"Left Ankle"},{"euler":{"heading":33.63627107477108,"pitch":-8.069848157968154,"roll":-8.032349367092701},"location":"Right Ankle"},{"euler":{"heading":64.18230722400781,"pitch":-161.9805985854204,"roll":57.20971908575641},"location":"Right Hip"},{"euler":{"heading":40.243746004778515,"pitch":-107.75274081733355,"roll":3.8978304038439155},"location":"Right Knee"},{"euler":{"heading":7.473702546152493,"pitch":-129.77945153792612,"roll":53.50384900063092},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.126"} +{"sensors":[{"euler":{"heading":54.36813771628194,"pitch":135.63611656428657,"roll":26.33341130382211},"location":"Left Knee"},{"euler":{"heading":28.214893693283937,"pitch":98.16211205670047,"roll":16.797831521520255},"location":"Left Ankle"},{"euler":{"heading":30.157277340281134,"pitch":-7.926461782056037,"roll":-9.016193201536876},"location":"Right Ankle"},{"euler":{"heading":65.3288690756148,"pitch":-161.5187101488525,"roll":56.9281760386633},"location":"Right Hip"},{"euler":{"heading":43.10017534861031,"pitch":-107.68708171344245,"roll":1.0716375424009517},"location":"Right Knee"},{"euler":{"heading":7.897106454162781,"pitch":-129.67557973308314,"roll":53.622389017211866},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.229"} +{"sensors":[{"euler":{"heading":46.34178116910833,"pitch":135.0940361082576,"roll":26.997296571485215},"location":"Left Knee"},{"euler":{"heading":28.566061818329857,"pitch":98.40233938775714,"roll":16.359274095268265},"location":"Left Ankle"},{"euler":{"heading":28.396672368654535,"pitch":-8.076144482258709,"roll":-9.484332126743434},"location":"Right Ankle"},{"euler":{"heading":66.51737558650744,"pitch":-160.82727466310217,"roll":56.066993374382115},"location":"Right Hip"},{"euler":{"heading":44.113212972800184,"pitch":-107.31256712265187,"roll":-0.47501164766014825},"location":"Right Knee"},{"euler":{"heading":8.58267164571843,"pitch":-130.1285570269129,"roll":53.997191767012595},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.330"} +{"sensors":[{"euler":{"heading":40.31677750375438,"pitch":134.2765290940307,"roll":27.30670973132238},"location":"Left Knee"},{"euler":{"heading":29.329222505095366,"pitch":98.74456657278029,"roll":16.438059019831478},"location":"Left Ankle"},{"euler":{"heading":29.428338913803042,"pitch":-8.687213237146487,"roll":-9.117213459320986},"location":"Right Ankle"},{"euler":{"heading":66.99111757803729,"pitch":-160.39186176792785,"roll":54.97857464743411},"location":"Right Hip"},{"euler":{"heading":42.68941548284617,"pitch":-106.59912382282107,"roll":0.18254048345754803},"location":"Right Knee"},{"euler":{"heading":9.316425596203668,"pitch":-131.04974134661398,"roll":54.50875535555861},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.431"} +{"sensors":[{"euler":{"heading":35.900752852109584,"pitch":133.31086568105943,"roll":27.158627839596498},"location":"Left Knee"},{"euler":{"heading":30.25136302232269,"pitch":99.08396596164765,"roll":16.907685145352865},"location":"Left Ankle"},{"euler":{"heading":32.53822855765941,"pitch":-9.180701048172917,"roll":-8.19643147178688},"location":"Right Ankle"},{"euler":{"heading":66.36831470686603,"pitch":-161.85874877651992,"roll":54.273121125254676},"location":"Right Hip"},{"euler":{"heading":39.57949606170398,"pitch":-105.90003899260894,"roll":2.6859867664831802},"location":"Right Knee"},{"euler":{"heading":10.006402143096263,"pitch":-132.28757899816435,"roll":55.12028918824225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.532"} +{"sensors":[{"euler":{"heading":32.87944745711338,"pitch":132.21113923521406,"roll":26.49549984779453},"location":"Left Knee"},{"euler":{"heading":31.642558585468045,"pitch":99.46836900923415,"roll":17.96284073039562},"location":"Left Ankle"},{"euler":{"heading":35.24512610425592,"pitch":-9.425105410489504,"roll":-7.333512260854237},"location":"Right Ankle"},{"euler":{"heading":64.90116986942883,"pitch":-162.0267632863373,"roll":54.05689065558077},"location":"Right Hip"},{"euler":{"heading":36.432621369375546,"pitch":-105.5587746258637,"roll":5.462589372775852},"location":"Right Knee"},{"euler":{"heading":10.898346104714374,"pitch":-134.03787004776422,"roll":55.83417421863692},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.632"} +{"sensors":[{"euler":{"heading":31.43414412130269,"pitch":131.18035233598113,"roll":24.896640173759216},"location":"Left Knee"},{"euler":{"heading":33.721026596244016,"pitch":99.91727597650878,"roll":20.255318937980668},"location":"Left Ankle"},{"euler":{"heading":36.4983910213526,"pitch":-9.372776676240038,"roll":-7.040193397639218},"location":"Right Ankle"},{"euler":{"heading":63.91984966242765,"pitch":-162.07772519942228,"roll":54.039588321161126},"location":"Right Hip"},{"euler":{"heading":34.18890103825323,"pitch":-105.79694130671899,"roll":7.338919957105163},"location":"Right Knee"},{"euler":{"heading":11.539489231096379,"pitch":-135.40168841578028,"roll":56.414752607361855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.733"} +{"sensors":[{"euler":{"heading":31.78462069670216,"pitch":130.19411119149848,"roll":22.629419449448648},"location":"Left Knee"},{"euler":{"heading":37.56318467574079,"pitch":101.48281569008839,"roll":23.970630238971214},"location":"Left Ankle"},{"euler":{"heading":37.215406969035726,"pitch":-9.188683633417497,"roll":-6.899627928489503},"location":"Right Ankle"},{"euler":{"heading":62.9023146752416,"pitch":-162.2724720550835,"roll":54.4698299416992},"location":"Right Hip"},{"euler":{"heading":33.14247119778265,"pitch":-106.4583504723876,"roll":8.45412459392394},"location":"Right Knee"},{"euler":{"heading":10.47705938668675,"pitch":-134.32304900249767,"roll":56.40502583606507},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.834"} +{"sensors":[{"euler":{"heading":31.80405169046295,"pitch":129.854599767896,"roll":20.87513330079664},"location":"Left Knee"},{"euler":{"heading":39.442788987362086,"pitch":101.32392704039928,"roll":26.5536875437016},"location":"Left Ankle"},{"euler":{"heading":37.51712407726461,"pitch":-9.033993042175695,"roll":-6.897285198713594},"location":"Right Ankle"},{"euler":{"heading":62.5566733651761,"pitch":-162.40113117030933,"roll":55.138574319948496},"location":"Right Hip"},{"euler":{"heading":33.11799865558494,"pitch":-106.98549945130068,"roll":8.922222482963338},"location":"Right Knee"},{"euler":{"heading":9.03639345965996,"pitch":-132.7108671635489,"roll":55.78980294555423},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.935"} +{"sensors":[{"euler":{"heading":28.627331573210842,"pitch":130.6056490989166,"roll":20.898901851061886},"location":"Left Knee"},{"euler":{"heading":37.979426593243296,"pitch":100.43698920820398,"roll":26.251315139132014},"location":"Left Ankle"},{"euler":{"heading":37.37177941251933,"pitch":-8.89401738135565,"roll":-7.031907396260296},"location":"Right Ankle"},{"euler":{"heading":62.636326403357536,"pitch":-162.44620790575885,"roll":55.88044651673275},"location":"Right Hip"},{"euler":{"heading":33.70438194236069,"pitch":-107.34359727226115,"roll":8.87016798696985},"location":"Right Knee"},{"euler":{"heading":7.874613696365452,"pitch":-131.09746599803032,"roll":55.019072010060796},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.36"} +{"sensors":[{"euler":{"heading":57.04290648454278,"pitch":132.3910821388567,"roll":22.30566609606234},"location":"Left Knee"},{"euler":{"heading":34.23069009424724,"pitch":99.48578857750869,"roll":23.433114223189268},"location":"Left Ankle"},{"euler":{"heading":36.75336551955592,"pitch":-8.547380512287745,"roll":-7.373700049831016},"location":"Right Ankle"},{"euler":{"heading":62.73721806968629,"pitch":-162.70102779470412,"roll":56.652818408280126},"location":"Right Hip"},{"euler":{"heading":34.8087692370037,"pitch":-107.78653721840986,"roll":8.264206254257601},"location":"Right Knee"},{"euler":{"heading":7.202779154490804,"pitch":-129.90507833553968,"roll":54.46434417762673},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.138"} +{"sensors":[{"euler":{"heading":79.64961901285277,"pitch":134.4109569185685,"roll":23.816424306954676},"location":"Left Knee"},{"euler":{"heading":30.810455597082182,"pitch":98.7439769850541,"roll":20.38358860912277},"location":"Left Ankle"},{"euler":{"heading":35.59897036908805,"pitch":-8.073194142514119,"roll":-7.9980810079339655},"location":"Right Ankle"},{"euler":{"heading":62.932788900627415,"pitch":-163.19914680464407,"roll":57.45278871350608},"location":"Right Hip"},{"euler":{"heading":36.58105525957926,"pitch":-108.11599884526329,"roll":6.984613746424304},"location":"Right Knee"},{"euler":{"heading":6.944001839570463,"pitch":-129.21256145191776,"roll":54.02778317082502},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.239"} +{"sensors":[{"euler":{"heading":65.60346597308265,"pitch":135.15664528002878,"roll":25.028893762711242},"location":"Left Knee"},{"euler":{"heading":29.442790466894007,"pitch":98.60186254092211,"roll":18.68835894571489},"location":"Left Ankle"},{"euler":{"heading":32.92961367107739,"pitch":-7.9532707105762706,"roll":-8.747372312437982},"location":"Right Ankle"},{"euler":{"heading":63.663671615045885,"pitch":-163.281273209987,"roll":57.93884960093584},"location":"Right Hip"},{"euler":{"heading":39.30449694884579,"pitch":-107.87309746685074,"roll":4.649571466645513},"location":"Right Knee"},{"euler":{"heading":7.029380638163997,"pitch":-128.75833410389018,"roll":53.83489045492313},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.340"} +{"sensors":[{"euler":{"heading":55.11913882245914,"pitch":135.07040071850932,"roll":26.00117569600601},"location":"Left Knee"},{"euler":{"heading":29.143400205392062,"pitch":98.74080556524702,"roll":17.665684327366364},"location":"Left Ankle"},{"euler":{"heading":29.60244826112282,"pitch":-7.856645600990748,"roll":-9.585910645894979},"location":"Right Ankle"},{"euler":{"heading":65.09446064989594,"pitch":-162.57675204877995,"roll":57.57011214760867},"location":"Right Hip"},{"euler":{"heading":42.146814712044815,"pitch":-107.79004413844217,"roll":1.9183379087119024},"location":"Right Knee"},{"euler":{"heading":7.616530468344781,"pitch":-128.78132255340103,"roll":53.95166671711127},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.441"} +{"sensors":[{"euler":{"heading":46.83779390141267,"pitch":134.66536824489444,"roll":26.678828927069265},"location":"Left Knee"},{"euler":{"heading":29.433337472652482,"pitch":98.88436756809423,"roll":17.192134931660895},"location":"Left Ankle"},{"euler":{"heading":28.037503847131795,"pitch":-7.965407098983422,"roll":-10.106870780879664},"location":"Right Ankle"},{"euler":{"heading":66.44434837624149,"pitch":-161.75494387173896,"roll":56.5884122848199},"location":"Right Hip"},{"euler":{"heading":43.33260232576059,"pitch":-107.47113363886348,"roll":0.3981619495904496},"location":"Right Knee"},{"euler":{"heading":8.311319181883453,"pitch":-129.42043622126718,"roll":54.27731102853194},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.541"} +{"sensors":[{"euler":{"heading":40.568334188536234,"pitch":133.97781784207132,"roll":27.012590989108983},"location":"Left Knee"},{"euler":{"heading":30.015565632286446,"pitch":99.05589039998536,"roll":17.090623804552518},"location":"Left Ankle"},{"euler":{"heading":29.080744352401048,"pitch":-8.604845661684546,"roll":-9.7578221716603},"location":"Right Ankle"},{"euler":{"heading":66.9015964399859,"pitch":-161.24317713072335,"roll":55.40877647133854},"location":"Right Hip"},{"euler":{"heading":42.192939721344935,"pitch":-106.72477078868076,"roll":0.9310363570382616},"location":"Right Knee"},{"euler":{"heading":9.028844111592438,"pitch":-130.53383193744133,"roll":54.738447063689804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.641"} +{"sensors":[{"euler":{"heading":36.12456311348591,"pitch":133.0346240060117,"roll":26.86870588929368},"location":"Left Knee"},{"euler":{"heading":30.819285332203926,"pitch":99.26460490448588,"roll":17.44466698723578},"location":"Left Ankle"},{"euler":{"heading":32.27145443363141,"pitch":-9.272637295351739,"roll":-8.829610098959545},"location":"Right Ankle"},{"euler":{"heading":66.62200681617139,"pitch":-160.97628731258325,"roll":54.531603266515575},"location":"Right Hip"},{"euler":{"heading":39.44646640158751,"pitch":-105.89482764817951,"roll":3.1908681074176233},"location":"Right Knee"},{"euler":{"heading":9.723368276884273,"pitch":-131.91587035325665,"roll":55.29840495244333},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.742"} +{"sensors":[{"euler":{"heading":33.14593736119278,"pitch":131.93739379745767,"roll":26.17964893178285},"location":"Left Knee"},{"euler":{"heading":32.226478904431794,"pitch":99.6020981486133,"roll":18.48441406220846},"location":"Left Ankle"},{"euler":{"heading":35.169379126088614,"pitch":-9.615311766548063,"roll":-7.817280206173223},"location":"Right Ankle"},{"euler":{"heading":65.31103315039235,"pitch":-161.1806834393151,"roll":54.106480167001216},"location":"Right Hip"},{"euler":{"heading":36.36531398245849,"pitch":-105.59567616352946,"roll":5.8362096088225925},"location":"Right Knee"},{"euler":{"heading":10.63092643872295,"pitch":-133.7134107739464,"roll":55.99534673466629},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.842"} +{"sensors":[{"euler":{"heading":31.860431530260392,"pitch":130.89102975826867,"roll":24.539490860008716},"location":"Left Knee"},{"euler":{"heading":34.22886645320684,"pitch":100.03828414193903,"roll":20.768894800664846},"location":"Left Ankle"},{"euler":{"heading":36.48987724704267,"pitch":-9.42003820743094,"roll":-7.454161724413811},"location":"Right Ankle"},{"euler":{"heading":64.35651549842828,"pitch":-161.34780047757025,"roll":53.92988263597172},"location":"Right Hip"},{"euler":{"heading":34.264586591135796,"pitch":-105.91356689521957,"roll":7.575929367754823},"location":"Right Knee"},{"euler":{"heading":11.427541838135415,"pitch":-135.23889007277984,"roll":56.649773214729045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.942"} +{"sensors":[{"euler":{"heading":32.329859512722656,"pitch":129.8371854794433,"roll":22.23490024482182},"location":"Left Knee"},{"euler":{"heading":37.20611340444274,"pitch":101.49124273362827,"roll":23.971618243174643},"location":"Left Ankle"},{"euler":{"heading":37.13114690083505,"pitch":-8.999582417833585,"roll":-7.297998780973701},"location":"Right Ankle"},{"euler":{"heading":63.681973025664206,"pitch":-161.4395674443683,"roll":54.18031015730837},"location":"Right Hip"},{"euler":{"heading":33.28767675247206,"pitch":-106.64711636760799,"roll":8.567518273283016},"location":"Right Knee"},{"euler":{"heading":10.973982438412122,"pitch":-134.56812714230898,"roll":56.891174277165476},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.43"} +{"sensors":[{"euler":{"heading":32.35750817420375,"pitch":129.5494625092199,"roll":20.476525551363626},"location":"Left Knee"},{"euler":{"heading":38.145662432426384,"pitch":101.07590423427887,"roll":26.00166795511709},"location":"Left Ankle"},{"euler":{"heading":37.317335257819835,"pitch":-8.512106915195499,"roll":-7.335050054041773},"location":"Right Ankle"},{"euler":{"heading":63.325853537919315,"pitch":-161.4036989331444,"roll":54.72201708425202},"location":"Right Hip"},{"euler":{"heading":33.11204134494213,"pitch":-107.42384784851484,"roll":8.983212444058237},"location":"Right Knee"},{"euler":{"heading":9.704867046618325,"pitch":-133.08721026263882,"roll":56.43184701331948},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.144"} +{"sensors":[{"euler":{"heading":29.009157445599325,"pitch":130.35926453627934,"roll":20.49659447932835},"location":"Left Knee"},{"euler":{"heading":36.63196602211744,"pitch":100.06987216920442,"roll":25.508048758284357},"location":"Left Ankle"},{"euler":{"heading":37.208192545560046,"pitch":-7.946151021620457,"roll":-7.552881363971989},"location":"Right Ankle"},{"euler":{"heading":63.23640374984263,"pitch":-161.3474611807588,"roll":55.39649871835992},"location":"Right Hip"},{"euler":{"heading":33.473582413233984,"pitch":-108.16236465364653,"roll":8.943192205644335},"location":"Right Knee"},{"euler":{"heading":8.267381140409892,"pitch":-131.4439547968077,"roll":55.62382291647009},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.244"} +{"sensors":[{"euler":{"heading":50.34602740360701,"pitch":132.14435365802242,"roll":21.81677672158501},"location":"Left Knee"},{"euler":{"heading":33.24629700407139,"pitch":98.95145305900715,"roll":22.68326199972187},"location":"Left Ankle"},{"euler":{"heading":36.684819155573145,"pitch":-7.3270161010425525,"roll":-7.886733562877399},"location":"Right Ankle"},{"euler":{"heading":63.25234197549802,"pitch":-161.4927681917491,"roll":56.13761710736361},"location":"Right Hip"},{"euler":{"heading":34.41765037566509,"pitch":-108.83063010531468,"roll":8.413518356554514},"location":"Right Knee"},{"euler":{"heading":7.268728480513769,"pitch":-129.96295918656793,"roll":54.910497971655246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.345"} +{"sensors":[{"euler":{"heading":68.72031995924874,"pitch":134.19958908046857,"roll":23.308642112221595},"location":"Left Knee"},{"euler":{"heading":29.909310688977502,"pitch":98.39721216639263,"roll":19.580214559814706},"location":"Left Ankle"},{"euler":{"heading":35.70931329464331,"pitch":-6.731104495735385,"roll":-8.551491862431755},"location":"Right Ankle"},{"euler":{"heading":63.455642021186556,"pitch":-161.8442292667183,"roll":56.927142819906564},"location":"Right Hip"},{"euler":{"heading":36.088393642397385,"pitch":-109.2985847827005,"roll":7.256464621976146},"location":"Right Knee"},{"euler":{"heading":7.110961920466938,"pitch":-129.33033477536432,"roll":54.431496620008836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.446"} +{"sensors":[{"euler":{"heading":56.48809924206407,"pitch":135.27453978744623,"roll":24.557523694384606},"location":"Left Knee"},{"euler":{"heading":28.586027848772098,"pitch":98.33564615956487,"roll":17.860335560566202},"location":"Left Ankle"},{"euler":{"heading":33.614493100227186,"pitch":-6.50103493179621,"roll":-9.307593078815747},"location":"Right Ankle"},{"euler":{"heading":63.96098641088293,"pitch":-162.07902332762873,"roll":57.57022126916921},"location":"Right Hip"},{"euler":{"heading":38.782200002791946,"pitch":-109.31774438953019,"roll":5.121484238557027},"location":"Right Knee"},{"euler":{"heading":7.082853063161218,"pitch":-128.99570101684563,"roll":54.11696638702815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.547"} +{"sensors":[{"euler":{"heading":47.54252566285622,"pitch":135.4030022097924,"roll":25.5805899762724},"location":"Left Knee"},{"euler":{"heading":28.370540218777144,"pitch":98.61881914885981,"roll":16.81535637252557},"location":"Left Ankle"},{"euler":{"heading":30.12755494328494,"pitch":-6.334467870537966,"roll":-10.27714499190541},"location":"Right Ankle"},{"euler":{"heading":65.18926898913122,"pitch":-161.6018269375148,"roll":57.349510401980545},"location":"Right Hip"},{"euler":{"heading":41.94508023325722,"pitch":-109.12105036581706,"roll":2.196727324435468},"location":"Right Knee"},{"euler":{"heading":7.571134017129114,"pitch":-128.9723287267896,"roll":54.21285550580776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.648"} +{"sensors":[{"euler":{"heading":40.8243211727611,"pitch":134.9247138919083,"roll":26.39337631308057},"location":"Left Knee"},{"euler":{"heading":28.72917686899609,"pitch":99.01774271260211,"roll":16.268116358970055},"location":"Left Ankle"},{"euler":{"heading":28.003726629842078,"pitch":-6.504792099642303,"roll":-10.833421743256924},"location":"Right Ankle"},{"euler":{"heading":66.52197734076621,"pitch":-160.87275843561196,"roll":56.430412416394624},"location":"Right Hip"},{"euler":{"heading":43.51225019720865,"pitch":-108.66958269509114,"roll":0.3230776745848578},"location":"Right Knee"},{"euler":{"heading":8.422781307835901,"pitch":-129.61705417780902,"roll":54.55527140744655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.748"} +{"sensors":[{"euler":{"heading":35.69801706064217,"pitch":134.22438386989566,"roll":26.831581031855468},"location":"Left Knee"},{"euler":{"heading":29.33198416255706,"pitch":99.29548439674448,"roll":16.153432196894254},"location":"Left Ankle"},{"euler":{"heading":28.39910376524733,"pitch":-7.12264824435902,"roll":-10.771978487829266},"location":"Right Ankle"},{"euler":{"heading":67.19108064096218,"pitch":-160.42707359250335,"roll":55.14095486797997},"location":"Right Hip"},{"euler":{"heading":43.02374557877926,"pitch":-107.92217831678909,"roll":0.21505593689625574},"location":"Right Knee"},{"euler":{"heading":9.185507562331933,"pitch":-130.8544340091675,"roll":54.984021175625436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.849"} +{"sensors":[{"euler":{"heading":32.04162785125268,"pitch":133.34096976640413,"roll":26.8178753349425},"location":"Left Knee"},{"euler":{"heading":30.15849934246087,"pitch":99.5765324629707,"roll":16.43015704467741},"location":"Left Ankle"},{"euler":{"heading":31.11879710368725,"pitch":-7.705512102012453,"roll":-9.979161871992995},"location":"Right Ankle"},{"euler":{"heading":67.05523131504515,"pitch":-160.23187025213463,"roll":54.063336482594345},"location":"Right Hip"},{"euler":{"heading":40.48344778684395,"pitch":-107.10318333869617,"roll":2.067370659012947},"location":"Right Knee"},{"euler":{"heading":9.875425369583938,"pitch":-132.34866256088438,"roll":55.52061884614261},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.949"} +{"sensors":[{"euler":{"heading":29.576912742112338,"pitch":132.30377805564538,"roll":26.288231628153465},"location":"Left Knee"},{"euler":{"heading":31.47139698393999,"pitch":99.9378613910457,"roll":17.286979840482054},"location":"Left Ankle"},{"euler":{"heading":34.29098294823078,"pitch":-8.155642081583352,"roll":-8.88720749460992},"location":"Right Ankle"},{"euler":{"heading":65.62413974312148,"pitch":-160.47735245554026,"roll":53.70653845485594},"location":"Right Hip"},{"euler":{"heading":37.11926828514248,"pitch":-106.68314180564741,"roll":4.926600304752785},"location":"Right Knee"},{"euler":{"heading":10.571126083680257,"pitch":-134.20610388618903,"roll":56.16669601094981},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.50"} +{"sensors":[{"euler":{"heading":28.676524538264786,"pitch":131.18688989674465,"roll":24.95284593989343},"location":"Left Knee"},{"euler":{"heading":33.25983305236347,"pitch":100.36588916262694,"roll":19.13245280688219},"location":"Left Ankle"},{"euler":{"heading":36.228436103837076,"pitch":-8.34297709990867,"roll":-8.28557018768624},"location":"Right Ankle"},{"euler":{"heading":64.37507452934655,"pitch":-160.86595179695317,"roll":53.5739306556111},"location":"Right Hip"},{"euler":{"heading":34.644111245045934,"pitch":-106.7608453776478,"roll":7.10956503515701},"location":"Right Knee"},{"euler":{"heading":11.497483525263728,"pitch":-136.1662857086498,"roll":56.852385365462304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.151"} +{"sensors":[{"euler":{"heading":29.592083180499294,"pitch":130.23569871304417,"roll":22.68622395408822},"location":"Left Knee"},{"euler":{"heading":36.45428706850829,"pitch":101.85308273614153,"roll":22.33031936053449},"location":"Left Ankle"},{"euler":{"heading":37.25596171310359,"pitch":-8.512491889233072,"roll":-7.937358734207712},"location":"Right Ankle"},{"euler":{"heading":63.6674426017756,"pitch":-161.1521872724795,"roll":53.822546235565824},"location":"Right Hip"},{"euler":{"heading":33.66382950806681,"pitch":-107.09275093884905,"roll":8.294149502016365},"location":"Right Knee"},{"euler":{"heading":10.918289770532652,"pitch":-136.00183510300732,"roll":56.99722396376689},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.251"} +{"sensors":[{"euler":{"heading":30.716295976171228,"pitch":129.63658305189853,"roll":20.593597054460925},"location":"Left Knee"},{"euler":{"heading":38.65967629885678,"pitch":102.17621422581311,"roll":25.218043800168854},"location":"Left Ankle"},{"euler":{"heading":37.81192379279874,"pitch":-8.731279981305903,"roll":-7.764958251030017},"location":"Right Ankle"},{"euler":{"heading":63.29017481223034,"pitch":-161.42903054360048,"roll":54.33288704379372},"location":"Right Hip"},{"euler":{"heading":33.640011192087606,"pitch":-107.30984970271285,"roll":8.83097277780055},"location":"Right Knee"},{"euler":{"heading":9.891132948347854,"pitch":-134.50344301791,"roll":56.62887896135351},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.352"} +{"sensors":[{"euler":{"heading":29.371637979847378,"pitch":129.92680128853127,"roll":20.05556126348642},"location":"Left Knee"},{"euler":{"heading":38.25973746157496,"pitch":101.60653825236702,"roll":25.73832539440982},"location":"Left Ankle"},{"euler":{"heading":37.993660785224044,"pitch":-8.929255873191792,"roll":-7.8051525019309125},"location":"Right Ankle"},{"euler":{"heading":63.39149458457295,"pitch":-161.62008604392463,"roll":54.96115033591143},"location":"Right Hip"},{"euler":{"heading":34.11991462135682,"pitch":-107.42900796450112,"roll":8.948121708719288},"location":"Right Knee"},{"euler":{"heading":8.699324915420947,"pitch":-132.82653875133457,"roll":55.873455907300674},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.453"} +{"sensors":[{"euler":{"heading":24.287277374791508,"pitch":131.42009121606858,"roll":21.203665681549193},"location":"Left Knee"},{"euler":{"heading":35.042848473892825,"pitch":100.59759212871222,"roll":23.664523579830405},"location":"Left Ankle"},{"euler":{"heading":37.73818591757027,"pitch":-9.013274401837096,"roll":-7.996101276056436},"location":"Right Ankle"},{"euler":{"heading":63.759829869325394,"pitch":-161.8108033275579,"roll":55.583157899997786},"location":"Right Hip"},{"euler":{"heading":35.13117101745022,"pitch":-107.51305007544129,"roll":8.519049170629884},"location":"Right Knee"},{"euler":{"heading":7.776981569512438,"pitch":-131.23780618079311,"roll":55.172056489451},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.553"} +{"sensors":[{"euler":{"heading":52.81745508984041,"pitch":133.55611266203977,"roll":22.9024859026117},"location":"Left Knee"},{"euler":{"heading":31.16034868647917,"pitch":99.54193454338579,"roll":20.26599324948923},"location":"Left Ankle"},{"euler":{"heading":36.94636322812989,"pitch":-8.958503906788577,"roll":-8.567221673702383},"location":"Right Ankle"},{"euler":{"heading":64.3349065485005,"pitch":-162.06661295119267,"roll":56.205450119316936},"location":"Right Hip"},{"euler":{"heading":36.65478764102561,"pitch":-107.52369930327976,"roll":7.554097284788473},"location":"Right Knee"},{"euler":{"heading":7.657915761846889,"pitch":-130.32338874290838,"roll":54.71573686519428},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.654"} +{"sensors":[{"euler":{"heading":77.21241694118933,"pitch":134.84090670369366,"roll":24.4813231360633},"location":"Left Knee"},{"euler":{"heading":28.766142711029875,"pitch":99.10393806671871,"roll":17.76744269110125},"location":"Left Ankle"},{"euler":{"heading":35.40622353211652,"pitch":-8.790037298342314,"roll":-9.256428209160518},"location":"Right Ankle"},{"euler":{"heading":64.97224731820741,"pitch":-162.56562754738704,"roll":56.84583583893192},"location":"Right Hip"},{"euler":{"heading":38.72277571885802,"pitch":-107.40253875643883,"roll":5.902101073145071},"location":"Right Knee"},{"euler":{"heading":8.018213495681554,"pitch":-129.71593157451412,"roll":54.44551199254826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.754"} +{"sensors":[{"euler":{"heading":64.08945749855378,"pitch":135.17708705274836,"roll":25.695942526437396},"location":"Left Knee"},{"euler":{"heading":28.01266692311967,"pitch":99.07026973573899,"roll":16.451870471726043},"location":"Left Ankle"},{"euler":{"heading":32.42101962189554,"pitch":-8.6613772933726,"roll":-10.159503485004489},"location":"Right Ankle"},{"euler":{"heading":65.99350708408062,"pitch":-162.47615042533667,"roll":57.021023998553076},"location":"Right Hip"},{"euler":{"heading":41.527814621889206,"pitch":-107.0669819074776,"roll":3.200353424706976},"location":"Right Knee"},{"euler":{"heading":8.301334271034039,"pitch":-129.3267820276936,"roll":54.409078006642574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.855"} +{"sensors":[{"euler":{"heading":53.820017262342766,"pitch":135.005663662468,"roll":26.57504496001445},"location":"Left Knee"},{"euler":{"heading":27.883236996761035,"pitch":99.0279134868701,"roll":15.570597953478734},"location":"Left Ankle"},{"euler":{"heading":29.364371238328243,"pitch":-8.860057365370531,"roll":-10.911275411842407},"location":"Right Ankle"},{"euler":{"heading":67.32317399670481,"pitch":-161.83038058332792,"roll":56.41854802237973},"location":"Right Hip"},{"euler":{"heading":43.955374177033725,"pitch":-106.63254810987895,"roll":0.5713047741942243},"location":"Right Knee"},{"euler":{"heading":8.66989532773048,"pitch":-129.66430598545068,"roll":54.55446902950176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.956"} +{"sensors":[{"euler":{"heading":45.86325420249247,"pitch":134.4462659904292,"roll":27.21594484498633},"location":"Left Knee"},{"euler":{"heading":28.413407830237933,"pitch":99.12632844820538,"roll":15.28445287036842},"location":"Left Ankle"},{"euler":{"heading":28.502495787309243,"pitch":-9.372775237925932,"roll":-10.901879408498097},"location":"Right Ankle"},{"euler":{"heading":68.25138050538791,"pitch":-161.1033521641937,"roll":55.31452360984173},"location":"Right Hip"},{"euler":{"heading":44.11190253909287,"pitch":-106.13242425616004,"roll":-0.24403992365355176},"location":"Right Knee"},{"euler":{"heading":9.352172405945593,"pitch":-130.52263661202744,"roll":54.941677970457064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.57"} +{"sensors":[{"euler":{"heading":39.91901483897484,"pitch":133.64876090475389,"roll":27.456996643881027},"location":"Left Knee"},{"euler":{"heading":29.174503048405246,"pitch":99.26888946263226,"roll":15.358464542865555},"location":"Left Ankle"},{"euler":{"heading":30.222478620485585,"pitch":-10.22316585837389,"roll":-10.263174591170928},"location":"Right Ankle"},{"euler":{"heading":68.21472375849531,"pitch":-160.8022007240983,"roll":54.06581651322432},"location":"Right Hip"},{"euler":{"heading":41.99868681685848,"pitch":-105.21614065038676,"roll":0.9920171101915936},"location":"Right Knee"},{"euler":{"heading":9.952437285109859,"pitch":-131.7808885222103,"roll":55.44663168932226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.157"} +{"sensors":[{"euler":{"heading":35.63451829324102,"pitch":132.71308735368797,"roll":27.187603184105452},"location":"Left Knee"},{"euler":{"heading":30.213858514667894,"pitch":99.40977998693202,"roll":15.91889639352371},"location":"Left Ankle"},{"euler":{"heading":33.20035989661211,"pitch":-10.564600988529318,"roll":-9.13231291079029},"location":"Right Ankle"},{"euler":{"heading":67.3523661869521,"pitch":-160.75561798092858,"roll":53.32233757725245},"location":"Right Hip"},{"euler":{"heading":38.603701959067045,"pitch":-104.6902291399047,"roll":3.739508603917785},"location":"Right Knee"},{"euler":{"heading":10.497441280590696,"pitch":-133.3772380046079,"roll":56.004621954676466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.258"} +{"sensors":[{"euler":{"heading":32.893321888658015,"pitch":131.6821151398372,"roll":26.283906609986683},"location":"Left Knee"},{"euler":{"heading":31.873443471023293,"pitch":99.69184630930643,"roll":17.347539889725734},"location":"Left Ankle"},{"euler":{"heading":35.60297398445004,"pitch":-10.391987211084238,"roll":-8.37061789494194},"location":"Right Ankle"},{"euler":{"heading":65.79608975994213,"pitch":-160.96316933774597,"roll":53.14304254978546},"location":"Right Hip"},{"euler":{"heading":35.27692376744324,"pitch":-104.83265691364296,"roll":6.338606028525502},"location":"Right Knee"},{"euler":{"heading":11.229064722228772,"pitch":-135.2795235540443,"roll":56.6165489767965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.359"} +{"sensors":[{"euler":{"heading":32.08165240637552,"pitch":130.86812022985046,"roll":24.289003192558045},"location":"Left Knee"},{"euler":{"heading":34.49271503522303,"pitch":100.50594001136236,"roll":20.263352765980862},"location":"Left Ankle"},{"euler":{"heading":37.02326347177684,"pitch":-10.170394921893905,"roll":-8.073769361179588},"location":"Right Ankle"},{"euler":{"heading":64.84880424205338,"pitch":-161.13314146507096,"roll":53.24239648324072},"location":"Right Hip"},{"euler":{"heading":33.35557795000126,"pitch":-105.29447348342143,"roll":8.00080882911782},"location":"Right Knee"},{"euler":{"heading":11.06117251305377,"pitch":-135.91286304396058,"roll":56.89678233801355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.460"} +{"sensors":[{"euler":{"heading":32.81420561304222,"pitch":129.7510568342722,"roll":21.97256835145278},"location":"Left Knee"},{"euler":{"heading":37.13083226142683,"pitch":101.7598348767574,"roll":23.484439316977387},"location":"Left Ankle"},{"euler":{"heading":37.698679726280574,"pitch":-9.862866044703443,"roll":-7.8824475201316915},"location":"Right Ankle"},{"euler":{"heading":63.84130089823719,"pitch":-161.45935892812182,"roll":53.79008806852106},"location":"Right Hip"},{"euler":{"heading":32.644451700403074,"pitch":-106.069078245431,"roll":8.904418648049887},"location":"Right Knee"},{"euler":{"heading":10.174593795181652,"pitch":-134.57156710961985,"roll":56.746077604227594},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.561"} +{"sensors":[{"euler":{"heading":32.516277926744074,"pitch":129.63205015052887,"roll":20.512632109553163},"location":"Left Knee"},{"euler":{"heading":38.11969416055934,"pitch":101.46163395370917,"roll":25.06142604590535},"location":"Left Ankle"},{"euler":{"heading":38.01984281981902,"pitch":-9.554864289843609,"roll":-7.887684382983557},"location":"Right Ankle"},{"euler":{"heading":63.48603756392687,"pitch":-161.6594200584814,"roll":54.45214914793849},"location":"Right Hip"},{"euler":{"heading":32.722111450794465,"pitch":-106.71054571366206,"roll":9.258338658846496},"location":"Right Knee"},{"euler":{"heading":8.812516194473428,"pitch":-132.89412785175935,"roll":56.00923257653248},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.662"} +{"sensors":[{"euler":{"heading":27.819299653049352,"pitch":130.80260510729636,"roll":21.117851858692283},"location":"Left Knee"},{"euler":{"heading":36.05778962053512,"pitch":100.41890937917144,"roll":23.92597444965804},"location":"Left Ankle"},{"euler":{"heading":37.932037659950524,"pitch":-9.07996602631392,"roll":-8.035110472624014},"location":"Right Ankle"},{"euler":{"heading":63.468632484825875,"pitch":-161.82855977417924,"roll":55.199864409417344},"location":"Right Hip"},{"euler":{"heading":33.23754254888942,"pitch":-107.32072017714614,"roll":9.18620175309499},"location":"Right Knee"},{"euler":{"heading":7.625904852509354,"pitch":-131.22167687421114,"roll":55.21762841451378},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.763"} +{"sensors":[{"euler":{"heading":55.86999437602434,"pitch":132.86062279584812,"roll":22.676202422376182},"location":"Left Knee"},{"euler":{"heading":32.1578500013039,"pitch":99.29701466972698,"roll":20.710659392539718},"location":"Left Ankle"},{"euler":{"heading":37.342901127810215,"pitch":-8.412430118116111,"roll":-8.51928581676432},"location":"Right Ankle"},{"euler":{"heading":63.53761553181054,"pitch":-162.14807870107074,"roll":56.01319539032585},"location":"Right Hip"},{"euler":{"heading":34.2957248842496,"pitch":-107.96203145675092,"roll":8.573958563532535},"location":"Right Knee"},{"euler":{"heading":7.12398808511008,"pitch":-130.07692673804848,"roll":54.65590353484554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.864"} +{"sensors":[{"euler":{"heading":79.3075518534053,"pitch":134.58612963702288,"roll":24.145768086516654},"location":"Left Knee"},{"euler":{"heading":29.226177239778213,"pitch":98.72179287110261,"roll":17.961724235175396},"location":"Left Ankle"},{"euler":{"heading":35.938994097708374,"pitch":-7.707323281503678,"roll":-9.242778784989781},"location":"Right Ankle"},{"euler":{"heading":63.77840331159347,"pitch":-162.60961733604813,"roll":56.75510363276089},"location":"Right Hip"},{"euler":{"heading":36.17286571963276,"pitch":-108.41154128321101,"roll":7.199502507592561},"location":"Right Knee"},{"euler":{"heading":7.105409487777841,"pitch":-129.46318771051932,"roll":54.28435476586123},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.964"} +{"sensors":[{"euler":{"heading":65.44823321695172,"pitch":135.29137347681532,"roll":25.320963433316976},"location":"Left Knee"},{"euler":{"heading":28.092077311201212,"pitch":98.47477315186022,"roll":16.52660076948365},"location":"Left Ankle"},{"euler":{"heading":33.11884511402054,"pitch":-7.455734673219578,"roll":-9.891504233441857},"location":"Right Ankle"},{"euler":{"heading":64.68899699725281,"pitch":-162.5456822269002,"roll":57.03999291601025},"location":"Right Hip"},{"euler":{"heading":39.172412258947574,"pitch":-108.18808891443537,"roll":4.612151953866893},"location":"Right Knee"},{"euler":{"heading":7.113978583084798,"pitch":-129.10402571166364,"roll":54.13839938848054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.66"} +{"sensors":[{"euler":{"heading":54.890964181838335,"pitch":135.29338313568482,"roll":26.188173262882177},"location":"Left Knee"},{"euler":{"heading":27.69855521553574,"pitch":98.42961039283487,"roll":15.632274229869886},"location":"Left Ankle"},{"euler":{"heading":29.799007913106497,"pitch":-7.239969026914238,"roll":-10.555808723331012},"location":"Right Ankle"},{"euler":{"heading":66.05884741208634,"pitch":-161.82789979383702,"roll":56.50111090689999},"location":"Right Hip"},{"euler":{"heading":41.961374913243816,"pitch":-108.14641574063269,"roll":1.9142044622830046},"location":"Right Knee"},{"euler":{"heading":7.620400789310347,"pitch":-129.34383319413632,"roll":54.321429309018576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.167"} +{"sensors":[{"euler":{"heading":46.62123821698841,"pitch":134.9265925532677,"roll":26.794530596377754},"location":"Left Knee"},{"euler":{"heading":27.953034593247637,"pitch":98.45414212159397,"roll":15.280809119547495},"location":"Left Ankle"},{"euler":{"heading":28.412477749742084,"pitch":-7.407391835898212,"roll":-10.835874688796276},"location":"Right Ankle"},{"euler":{"heading":67.2339872028894,"pitch":-161.0832714367397,"roll":55.4130139369073},"location":"Right Hip"},{"euler":{"heading":42.86566311718465,"pitch":-107.71631642109975,"roll":0.7511401543274681},"location":"Right Knee"},{"euler":{"heading":8.260980427849628,"pitch":-130.0661801565293,"roll":54.70702490470821},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.269"} +{"sensors":[{"euler":{"heading":40.480198245209905,"pitch":134.24391974660966,"roll":27.06377877754288},"location":"Left Knee"},{"euler":{"heading":28.62513602414621,"pitch":98.6428088850209,"roll":15.32544086544075},"location":"Left Ankle"},{"euler":{"heading":29.589913033141677,"pitch":-8.111802172206346,"roll":-10.352081255862597},"location":"Right Ankle"},{"euler":{"heading":67.40546446508112,"pitch":-160.8197020200162,"roll":54.15493795561273},"location":"Right Hip"},{"euler":{"heading":41.49550910377051,"pitch":-107.00013834649732,"roll":1.4763592272763737},"location":"Right Knee"},{"euler":{"heading":8.86277533472918,"pitch":-131.11814953124744,"roll":55.19862813240369},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.369"} +{"sensors":[{"euler":{"heading":36.07023342230726,"pitch":133.38837383248645,"roll":26.86151667473732},"location":"Left Knee"},{"euler":{"heading":29.66296716615747,"pitch":98.88487242877741,"roll":15.841451629850933},"location":"Left Ankle"},{"euler":{"heading":32.82510326815207,"pitch":-8.778932068352951,"roll":-9.397066872262055},"location":"Right Ankle"},{"euler":{"heading":66.70163617740484,"pitch":-160.86063408178708,"roll":53.319747042661646},"location":"Right Hip"},{"euler":{"heading":38.75650482185849,"pitch":-106.23912581051754,"roll":3.7675514889004544},"location":"Right Knee"},{"euler":{"heading":9.498211729579946,"pitch":-132.4981125501543,"roll":55.78020971675868},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.470"} +{"sensors":[{"euler":{"heading":33.04199919321418,"pitch":132.33478219839387,"roll":26.113690514467393},"location":"Left Knee"},{"euler":{"heading":31.273741546495913,"pitch":99.24065177215718,"roll":17.069376286339658},"location":"Left Ankle"},{"euler":{"heading":35.63459680181131,"pitch":-9.144788980251827,"roll":-8.408046697295221},"location":"Right Ankle"},{"euler":{"heading":65.2454368166101,"pitch":-161.2008831731632,"roll":53.069354748116105},"location":"Right Hip"},{"euler":{"heading":35.824155425711155,"pitch":-105.98451198914246,"roll":6.215348645680274},"location":"Right Knee"},{"euler":{"heading":10.422787273430238,"pitch":-134.37700930263057,"roll":56.461046396486566},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.571"} +{"sensors":[{"euler":{"heading":31.828834840550588,"pitch":131.44086646251804,"roll":24.307392810918657},"location":"Left Knee"},{"euler":{"heading":33.335805301185474,"pitch":99.68149378572414,"roll":19.613313842902617},"location":"Left Ankle"},{"euler":{"heading":37.12644519916597,"pitch":-9.392609475227278,"roll":-7.875770754321511},"location":"Right Ankle"},{"euler":{"heading":64.62979721131545,"pitch":-161.3660787133122,"roll":52.99141369163376},"location":"Right Hip"},{"euler":{"heading":34.10686132236404,"pitch":-106.10489143743243,"roll":7.740643604616243},"location":"Right Knee"},{"euler":{"heading":11.138211564658508,"pitch":-135.69073115261983,"roll":57.047392002062914},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.672"} +{"sensors":[{"euler":{"heading":32.44073025306413,"pitch":130.28715654911707,"roll":21.965427428308608},"location":"Left Knee"},{"euler":{"heading":35.93979822333526,"pitch":100.81167357481196,"roll":22.908125910982612},"location":"Left Ankle"},{"euler":{"heading":37.854508503351546,"pitch":-9.432551528633278,"roll":-7.620049208575713},"location":"Right Ankle"},{"euler":{"heading":63.86411864007132,"pitch":-161.62257557781336,"roll":53.29544115233448},"location":"Right Hip"},{"euler":{"heading":33.52119523984162,"pitch":-106.62404602610314,"roll":8.532259544893506},"location":"Right Knee"},{"euler":{"heading":10.612227666685973,"pitch":-134.6618855706513,"roll":57.19151653214659},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.772"} +{"sensors":[{"euler":{"heading":32.37100001609271,"pitch":129.96852073124762,"roll":20.3753736984537},"location":"Left Knee"},{"euler":{"heading":37.50714055718654,"pitch":100.80580688082021,"roll":24.843145096474892},"location":"Left Ankle"},{"euler":{"heading":38.15338055976149,"pitch":-9.367623867729824,"roll":-7.644301382716776},"location":"Right Ankle"},{"euler":{"heading":63.671189319448985,"pitch":-161.77143889136673,"roll":53.855922790476065},"location":"Right Hip"},{"euler":{"heading":33.725362868379136,"pitch":-107.09381607503488,"roll":8.761057855510622},"location":"Right Knee"},{"euler":{"heading":9.390826712116668,"pitch":-133.05908908295845,"roll":56.63227554325109},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.873"} +{"sensors":[{"euler":{"heading":28.43161909628433,"pitch":130.8870925682168,"roll":20.61909576297199},"location":"Left Knee"},{"euler":{"heading":35.94862170285205,"pitch":99.74817880631583,"roll":24.198136760749478},"location":"Left Ankle"},{"euler":{"heading":38.13055782978589,"pitch":-9.249419369270854,"roll":-7.7494808774109485},"location":"Right Ankle"},{"euler":{"heading":63.673742308455545,"pitch":-161.9596493624433,"roll":54.55333850046742},"location":"Right Hip"},{"euler":{"heading":34.439503400778705,"pitch":-107.49511805422384,"roll":8.51624836531345},"location":"Right Knee"},{"euler":{"heading":8.19454979413948,"pitch":-131.39472741165707,"roll":55.86463877436371},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.973"} +{"sensors":[{"euler":{"heading":56.751860554669136,"pitch":132.66953455059317,"roll":22.117874924125523},"location":"Left Knee"},{"euler":{"heading":32.3003304269515,"pitch":98.80304813512117,"roll":21.248252358565523},"location":"Left Ankle"},{"euler":{"heading":37.618410070698516,"pitch":-8.999771681545836,"roll":-8.189483023029556},"location":"Right Ankle"},{"euler":{"heading":63.95526215135751,"pitch":-162.1953547110004,"roll":55.2319750564497},"location":"Right Hip"},{"euler":{"heading":35.624716957985655,"pitch":-107.82851967583863,"roll":7.8012658260370475},"location":"Right Knee"},{"euler":{"heading":7.500414327345008,"pitch":-130.01948478218443,"roll":55.271093622815755},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.74"} +{"sensors":[{"euler":{"heading":79.53616238372229,"pitch":134.63914033587238,"roll":23.717840447074853},"location":"Left Knee"},{"euler":{"heading":28.986121599146998,"pitch":98.16779932733914,"roll":18.13307740822111},"location":"Left Ankle"},{"euler":{"heading":36.319158517173975,"pitch":-8.690637403910335,"roll":-8.795715765693313},"location":"Right Ankle"},{"euler":{"heading":64.38196544254636,"pitch":-162.69995868020828,"roll":55.95307190021554},"location":"Right Hip"},{"euler":{"heading":37.52263651222496,"pitch":-107.96968318838321,"roll":6.357624723501296},"location":"Right Knee"},{"euler":{"heading":7.479025267280004,"pitch":-129.38742868573166,"roll":54.87075148283143},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.175"} +{"sensors":[{"euler":{"heading":65.4748959634377,"pitch":135.5295913810181,"roll":24.99319545341977},"location":"Left Knee"},{"euler":{"heading":27.717160786374286,"pitch":97.95564227785067,"roll":16.461677603252234},"location":"Left Ankle"},{"euler":{"heading":33.99492754930838,"pitch":-8.708174881478012,"roll":-9.498858664219322},"location":"Right Ankle"},{"euler":{"heading":65.20102893315405,"pitch":-162.90685931604045,"roll":56.39154338854541},"location":"Right Hip"},{"euler":{"heading":40.337056184633056,"pitch":-107.55639553909302,"roll":3.8563030359209756},"location":"Right Knee"},{"euler":{"heading":7.645816464602272,"pitch":-128.95818425909496,"roll":54.69874170162043},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.276"} +{"sensors":[{"euler":{"heading":54.71065515032271,"pitch":135.722971654776,"roll":25.915365416990905},"location":"Left Knee"},{"euler":{"heading":27.147816362298435,"pitch":97.8350103426201,"roll":15.33571456982918},"location":"Left Ankle"},{"euler":{"heading":30.819553942205115,"pitch":-8.521903648668898,"roll":-10.224294763736745},"location":"Right Ankle"},{"euler":{"heading":66.6088953691792,"pitch":-162.2260636320339,"roll":56.13432147219976},"location":"Right Hip"},{"euler":{"heading":43.19441354474166,"pitch":-107.61642930169329,"roll":0.9983886163717157},"location":"Right Knee"},{"euler":{"heading":8.067759680557002,"pitch":-129.09890405352124,"roll":54.8403597185897},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.377"} +{"sensors":[{"euler":{"heading":46.30713276563901,"pitch":135.46989449620537,"roll":26.58929072890335},"location":"Left Knee"},{"euler":{"heading":27.169152995361458,"pitch":97.79125189467182,"roll":14.774647369097094},"location":"Left Ankle"},{"euler":{"heading":29.319443414222484,"pitch":-8.549546603914763,"roll":-10.53589596874121},"location":"Right Ankle"},{"euler":{"heading":67.86272509756245,"pitch":-161.3959975099096,"roll":55.27731047013155},"location":"Right Hip"},{"euler":{"heading":44.11903141329529,"pitch":-107.32592451516017,"roll":-0.5353474676930021},"location":"Right Knee"},{"euler":{"heading":8.64511332183527,"pitch":-129.6305188068659,"roll":55.19442802242957},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.477"} +{"sensors":[{"euler":{"heading":39.90196243335682,"pitch":134.92578997856288,"roll":26.967241950796847},"location":"Left Knee"},{"euler":{"heading":27.644412094181682,"pitch":97.84678088764275,"roll":14.67123256043912},"location":"Left Ankle"},{"euler":{"heading":30.35631675824848,"pitch":-9.258270401877148,"roll":-10.110364526262588},"location":"Right Ankle"},{"euler":{"heading":68.46724266726723,"pitch":-160.87675836019233,"roll":54.162940038237615},"location":"Right Hip"},{"euler":{"heading":43.00333561197368,"pitch":-106.58742936391613,"roll":-0.08608697084066746},"location":"Right Knee"},{"euler":{"heading":9.29026377324644,"pitch":-130.63475081912796,"roll":55.645612374205925},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.578"} +{"sensors":[{"euler":{"heading":35.234110806648786,"pitch":134.17184982528164,"roll":26.94063151955486},"location":"Left Knee"},{"euler":{"heading":28.414053412649213,"pitch":97.93269953522982,"roll":15.011662533885087},"location":"Left Ankle"},{"euler":{"heading":33.577485260552905,"pitch":-9.935248749597994,"roll":-9.172398120081413},"location":"Right Ankle"},{"euler":{"heading":68.0644795413887,"pitch":-160.78146617434373,"roll":53.30320669730809},"location":"Right Hip"},{"euler":{"heading":40.37755651398578,"pitch":-105.76460550810593,"roll":2.0683580975480207},"location":"Right Knee"},{"euler":{"heading":9.990926178681349,"pitch":-132.04286117993695,"roll":56.17872930981325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.678"} +{"sensors":[{"euler":{"heading":32.066062835991985,"pitch":133.2042534043357,"roll":26.43498248602262},"location":"Left Knee"},{"euler":{"heading":29.781453028152587,"pitch":98.17096848399777,"roll":16.009364816970557},"location":"Left Ankle"},{"euler":{"heading":36.553857043499015,"pitch":-10.458649970465597,"roll":-8.091788697793074},"location":"Right Ankle"},{"euler":{"heading":66.75372177636437,"pitch":-161.01628526189577,"roll":53.00088003321417},"location":"Right Hip"},{"euler":{"heading":37.329830007846894,"pitch":-105.29948216567102,"roll":4.802642353185346},"location":"Right Knee"},{"euler":{"heading":10.88567440196922,"pitch":-133.79859507003113,"roll":56.83354745959387},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.779"} +{"sensors":[{"euler":{"heading":30.54222399300718,"pitch":132.12655905824155,"roll":25.139144902467915},"location":"Left Knee"},{"euler":{"heading":31.792874482025937,"pitch":98.49953296244804,"roll":18.202292502477817},"location":"Left Ankle"},{"euler":{"heading":38.09316555459512,"pitch":-10.658778540366907,"roll":-7.577706157098623},"location":"Right Ankle"},{"euler":{"heading":65.66263882836677,"pitch":-161.33578273928583,"roll":52.8521636295413},"location":"Right Hip"},{"euler":{"heading":35.28619825565689,"pitch":-105.31855640901566,"roll":6.664461347156531},"location":"Right Knee"},{"euler":{"heading":11.731254113932476,"pitch":-135.3278618345928,"roll":57.437966699217},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.879"} +{"sensors":[{"euler":{"heading":30.959192548696922,"pitch":131.06220068838059,"roll":22.908309010993786},"location":"Left Knee"},{"euler":{"heading":35.045057227928446,"pitch":99.80754506648066,"roll":21.565929481611164},"location":"Left Ankle"},{"euler":{"heading":39.002776530989216,"pitch":-10.715018435582975,"roll":-7.27899429142704},"location":"Right Ankle"},{"euler":{"heading":64.8406049947591,"pitch":-161.60110681357563,"roll":53.09214824243058},"location":"Right Hip"},{"euler":{"heading":34.30847580291381,"pitch":-105.76982367295,"roll":7.74869888464785},"location":"Right Knee"},{"euler":{"heading":11.026466566258918,"pitch":-134.6783620103381,"roll":57.49737538072321},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.980"} +{"sensors":[{"euler":{"heading":31.425457406369276,"pitch":130.39040939894423,"roll":21.12154820693757},"location":"Left Knee"},{"euler":{"heading":36.98261337506159,"pitch":100.01610217095991,"roll":23.908054456013407},"location":"Left Ankle"},{"euler":{"heading":39.52758862204465,"pitch":-10.759963207531591,"roll":-7.181111289744891},"location":"Right Ankle"},{"euler":{"heading":64.42911812584393,"pitch":-161.8649731864943,"roll":53.62440564177808},"location":"Right Hip"},{"euler":{"heading":34.17973748885029,"pitch":-106.14843763549743,"roll":8.254173801123128},"location":"Right Knee"},{"euler":{"heading":9.896473683707521,"pitch":-133.21668558556442,"roll":56.96254736133179},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.82"} +{"sensors":[{"euler":{"heading":28.680002752281034,"pitch":130.89429472905096,"roll":21.086204712743612},"location":"Left Knee"},{"euler":{"heading":35.81045949306355,"pitch":99.32491476890311,"roll":23.67304315615631},"location":"Left Ankle"},{"euler":{"heading":39.60653103872116,"pitch":-10.616328075233797,"roll":-7.28873455252848},"location":"Right Ankle"},{"euler":{"heading":64.50836466102882,"pitch":-161.93727067782604,"roll":54.26061009574869},"location":"Right Hip"},{"euler":{"heading":34.53211538501994,"pitch":-106.58616089637235,"roll":8.301339229603213},"location":"Right Knee"},{"euler":{"heading":8.810713440914204,"pitch":-131.60867625072888,"roll":56.16349351151976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.183"} +{"sensors":[{"euler":{"heading":57.4011348924211,"pitch":132.49769237774152,"roll":22.475151787641366},"location":"Left Knee"},{"euler":{"heading":32.40717974267214,"pitch":98.59840628493956,"roll":21.004975239445518},"location":"Left Ankle"},{"euler":{"heading":39.201489700959584,"pitch":-10.20098145777083,"roll":-7.558534081912517},"location":"Right Ankle"},{"euler":{"heading":64.62081409839494,"pitch":-162.0799798750387,"roll":54.95520180314241},"location":"Right Hip"},{"euler":{"heading":35.34382909204533,"pitch":-107.1368237644163,"roll":7.868393440516812},"location":"Right Knee"},{"euler":{"heading":7.90980352578328,"pitch":-130.2190270622567,"roll":55.41072305870653},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.284"} +{"sensors":[{"euler":{"heading":80.14507650081245,"pitch":134.5193164820445,"roll":23.95195176247695},"location":"Left Knee"},{"euler":{"heading":28.901195780979997,"pitch":97.85777255709945,"roll":17.75241870024649},"location":"Left Ankle"},{"euler":{"heading":38.20396784256979,"pitch":-9.611113580447435,"roll":-8.254512331485072},"location":"Right Ankle"},{"euler":{"heading":64.85557495774333,"pitch":-162.34585594633722,"roll":55.73235321914959},"location":"Right Hip"},{"euler":{"heading":36.918091454382996,"pitch":-107.53997994813193,"roll":6.7631946710417985},"location":"Right Knee"},{"euler":{"heading":7.629928159109701,"pitch":-129.4847552152559,"roll":54.84846598894599},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.385"} +{"sensors":[{"euler":{"heading":66.07454440646347,"pitch":135.46872822292227,"roll":25.19909164058808},"location":"Left Knee"},{"euler":{"heading":27.49899092871502,"pitch":97.98426277635006,"roll":15.712948106788716},"location":"Left Ankle"},{"euler":{"heading":36.18030058784979,"pitch":-9.303278528613212,"roll":-9.04480901020108},"location":"Right Ankle"},{"euler":{"heading":65.36289819677941,"pitch":-162.6815654990716,"roll":56.316672014882634},"location":"Right Hip"},{"euler":{"heading":39.413993203263125,"pitch":-107.50050501294572,"roll":4.687027168463253},"location":"Right Knee"},{"euler":{"heading":7.6564147426283595,"pitch":-129.1532681473114,"roll":54.51210750015007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.485"} +{"sensors":[{"euler":{"heading":55.409732406772534,"pitch":135.58466379311906,"roll":26.119511668290237},"location":"Left Knee"},{"euler":{"heading":26.86810889174684,"pitch":97.98575977852182,"roll":14.604700139685733},"location":"Left Ankle"},{"euler":{"heading":32.51381007521759,"pitch":-8.887984186729648,"roll":-10.027467622066766},"location":"Right Ankle"},{"euler":{"heading":66.34904344214931,"pitch":-162.23623194626325,"roll":56.22115023031995},"location":"Right Hip"},{"euler":{"heading":42.31375912456694,"pitch":-107.39938674403288,"roll":1.8630510254675814},"location":"Right Knee"},{"euler":{"heading":7.832679926464557,"pitch":-129.085180758148,"roll":54.45744800653348},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.586"} +{"sensors":[{"euler":{"heading":47.194637763047446,"pitch":135.1307120846586,"roll":26.85725189070279},"location":"Left Knee"},{"euler":{"heading":27.04714436145922,"pitch":98.21898137578678,"roll":13.994264477116186},"location":"Left Ankle"},{"euler":{"heading":30.24296448921609,"pitch":-8.79162414500761,"roll":-10.548041837509667},"location":"Right Ankle"},{"euler":{"heading":67.5964508551618,"pitch":-161.47059694789735,"roll":55.451004571383095},"location":"Right Hip"},{"euler":{"heading":43.60603830357144,"pitch":-107.14141872910848,"roll":0.14599376760927685},"location":"Right Knee"},{"euler":{"heading":8.44073966091871,"pitch":-129.54675724741486,"roll":54.7052533741463},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.688"} +{"sensors":[{"euler":{"heading":40.97942370481929,"pitch":134.30377096341502,"roll":27.328619480454087},"location":"Left Knee"},{"euler":{"heading":27.75259732493292,"pitch":98.54297863165196,"roll":13.858067992947506},"location":"Left Ankle"},{"euler":{"heading":30.529854657810986,"pitch":-9.358414183296613,"roll":-10.353222017520135},"location":"Right Ankle"},{"euler":{"heading":68.32650660777385,"pitch":-160.93237091721576,"roll":54.326056809283806},"location":"Right Hip"},{"euler":{"heading":42.72598479747652,"pitch":-106.42641998398936,"roll":0.4234261953977658},"location":"Right Knee"},{"euler":{"heading":9.235883687944389,"pitch":-130.61841014771682,"roll":55.10784550419903},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.788"} +{"sensors":[{"euler":{"heading":36.46116276002992,"pitch":133.25228186301823,"roll":27.374648577119906},"location":"Left Knee"},{"euler":{"heading":28.609650898543116,"pitch":98.85993690432679,"roll":14.079655030858628},"location":"Left Ankle"},{"euler":{"heading":33.07748467969478,"pitch":-9.936686747274678,"roll":-9.576458347754375},"location":"Right Ankle"},{"euler":{"heading":67.99680747070947,"pitch":-160.88529635982914,"roll":53.34379146101704},"location":"Right Hip"},{"euler":{"heading":40.2574775074847,"pitch":-105.5356778261556,"roll":2.434278941631555},"location":"Right Knee"},{"euler":{"heading":10.059360669124768,"pitch":-131.9210593763997,"roll":55.65050031799219},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.889"} +{"sensors":[{"euler":{"heading":33.32047455422836,"pitch":132.06300327632036,"roll":26.940674549694407},"location":"Left Knee"},{"euler":{"heading":29.846483113809736,"pitch":99.2359241603941,"roll":14.821186612796952},"location":"Left Ankle"},{"euler":{"heading":36.156347729721944,"pitch":-10.53724017782815,"roll":-8.421740882096765},"location":"Right Ankle"},{"euler":{"heading":66.78154626559487,"pitch":-161.1102386090885,"roll":53.049494789688595},"location":"Right Hip"},{"euler":{"heading":37.219618833343375,"pitch":-104.94964382864482,"roll":5.2348252351231075},"location":"Right Knee"},{"euler":{"heading":10.989270948920375,"pitch":-133.6764890383049,"roll":56.337730286533564},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.989"} +{"sensors":[{"euler":{"heading":31.55149901375063,"pitch":130.81444080131055,"roll":25.84049066059535},"location":"Left Knee"},{"euler":{"heading":31.489402587676526,"pitch":99.65343465716802,"roll":16.312632512876093},"location":"Left Ankle"},{"euler":{"heading":38.1244038204145,"pitch":-10.706111629893169,"roll":-7.72169366741045},"location":"Right Ankle"},{"euler":{"heading":65.48328103054037,"pitch":-161.49808778076047,"roll":52.979388217825324},"location":"Right Hip"},{"euler":{"heading":34.75005939470627,"pitch":-105.03766826224177,"roll":7.32901701684306},"location":"Right Knee"},{"euler":{"heading":12.303594078437072,"pitch":-135.90108150628427,"roll":57.08443901802918},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.89"} +{"sensors":[{"euler":{"heading":31.589390680809508,"pitch":129.8927335011287,"roll":23.673736076315794},"location":"Left Knee"},{"euler":{"heading":33.988012935813636,"pitch":100.89329910588943,"roll":19.19609410489062},"location":"Left Ankle"},{"euler":{"heading":39.14131523373591,"pitch":-10.478419510367104,"roll":-7.421175616302002},"location":"Right Ankle"},{"euler":{"heading":64.89588748515804,"pitch":-161.65879298629503,"roll":53.2072706016811},"location":"Right Hip"},{"euler":{"heading":33.3998065874163,"pitch":-105.62861583406332,"roll":8.629468206403292},"location":"Right Knee"},{"euler":{"heading":12.41662058514205,"pitch":-136.65959988081408,"roll":57.35583622132195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.190"} +{"sensors":[{"euler":{"heading":32.684626400942875,"pitch":128.70793038618453,"roll":21.415828471635322},"location":"Left Knee"},{"euler":{"heading":36.18250504805762,"pitch":101.97360439230675,"roll":22.06091486575516},"location":"Left Ankle"},{"euler":{"heading":39.539953730812236,"pitch":-10.052410203883294,"roll":-7.434619087274086},"location":"Right Ankle"},{"euler":{"heading":64.29007883222798,"pitch":-161.93500788940472,"roll":53.80586599469027},"location":"Right Hip"},{"euler":{"heading":32.948204903416986,"pitch":-106.35954471579382,"roll":9.277081699555504},"location":"Right Knee"},{"euler":{"heading":11.867073341961092,"pitch":-135.54453604429776,"roll":57.33387794378027},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.291"} +{"sensors":[{"euler":{"heading":32.065350767378234,"pitch":128.69409633204629,"roll":20.341789294266086},"location":"Left Knee"},{"euler":{"heading":36.594096114397026,"pitch":101.61345150740883,"roll":23.0301507941214},"location":"Left Ankle"},{"euler":{"heading":39.551257192406865,"pitch":-9.613417230828784,"roll":-7.696486669296735},"location":"Right Ankle"},{"euler":{"heading":64.08536344299829,"pitch":-162.1671119485386,"roll":54.54371519921463},"location":"Right Hip"},{"euler":{"heading":33.178910008184815,"pitch":-106.96149096844943,"roll":9.38152109221747},"location":"Right Knee"},{"euler":{"heading":10.58476159273078,"pitch":-133.8637228067936,"roll":56.65407929949215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.391"} +{"sensors":[{"euler":{"heading":27.467916910768118,"pitch":129.9360381497409,"roll":21.123783758707553},"location":"Left Knee"},{"euler":{"heading":33.98223384843127,"pitch":100.51466814655838,"roll":21.398268413404065},"location":"Left Ankle"},{"euler":{"heading":39.168122151267426,"pitch":-9.210238122459279,"roll":-7.927498810389069},"location":"Right Ankle"},{"euler":{"heading":64.07826601191327,"pitch":-162.632785354959,"roll":55.318392092950205},"location":"Right Hip"},{"euler":{"heading":33.950451242851614,"pitch":-107.39916159357045,"roll":9.006346393562374},"location":"Right Knee"},{"euler":{"heading":9.439681212266478,"pitch":-132.27739841350126,"roll":55.914094988110044},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.492"} +{"sensors":[{"euler":{"heading":56.04007125775637,"pitch":131.97541772291828,"roll":22.622116974632533},"location":"Left Knee"},{"euler":{"heading":30.297863898201037,"pitch":99.34799254609835,"roll":18.23315135180882},"location":"Left Ankle"},{"euler":{"heading":38.29555268182371,"pitch":-8.762177088588427,"roll":-8.308949860660457},"location":"Right Ankle"},{"euler":{"heading":64.25675917942124,"pitch":-163.23846615125072,"roll":56.156119982950756},"location":"Right Hip"},{"euler":{"heading":35.378859583894844,"pitch":-107.71790983552454,"roll":8.018821627905218},"location":"Right Knee"},{"euler":{"heading":8.977715258366315,"pitch":-131.35326945994615,"roll":55.405024932437634},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.593"} +{"sensors":[{"euler":{"heading":46.016345852533576,"pitch":133.27977847960622,"roll":24.037374436536656},"location":"Left Knee"},{"euler":{"heading":27.988597417746313,"pitch":98.80953863432481,"roll":15.957701258436536},"location":"Left Ankle"},{"euler":{"heading":36.51688368953797,"pitch":-8.505370516185495,"roll":-9.01083386693534},"location":"Right Ankle"},{"euler":{"heading":64.7655729548745,"pitch":-163.81625814717134,"roll":56.83687007367815},"location":"Right Hip"},{"euler":{"heading":37.71371906621859,"pitch":-107.7031264870465,"roll":6.07291562920629},"location":"Right Knee"},{"euler":{"heading":8.754036038523068,"pitch":-130.82620419740113,"roll":55.02166912519226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.694"} +{"sensors":[{"euler":{"heading":38.76612497566858,"pitch":133.7704063367896,"roll":25.032630876888632},"location":"Left Knee"},{"euler":{"heading":27.05496707530698,"pitch":98.46499249185327,"roll":14.713210322038181},"location":"Left Ankle"},{"euler":{"heading":33.19368486932223,"pitch":-8.041125651636442,"roll":-9.871872901564272},"location":"Right Ankle"},{"euler":{"heading":65.92535257090854,"pitch":-163.42351035057834,"roll":56.83455187232105},"location":"Right Hip"},{"euler":{"heading":40.70754544539646,"pitch":-107.78487432541144,"roll":3.3430286442045403},"location":"Right Knee"},{"euler":{"heading":8.660067352182876,"pitch":-130.59897889700795,"roll":54.936373544623194},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.795"} +{"sensors":[{"euler":{"heading":33.222042350513874,"pitch":133.81602764658098,"roll":25.75485439731105},"location":"Left Knee"},{"euler":{"heading":26.760190873768657,"pitch":98.27807273438917,"roll":13.91409340814069},"location":"Left Ankle"},{"euler":{"heading":30.34780184804443,"pitch":-7.9599245781307975,"roll":-10.34779497642149},"location":"Right Ankle"},{"euler":{"heading":67.26142384820034,"pitch":-162.50926374090264,"roll":56.16063442825635},"location":"Right Hip"},{"euler":{"heading":42.71298914017578,"pitch":-107.58536175635955,"roll":1.0333452514734365},"location":"Right Knee"},{"euler":{"heading":8.81499289183876,"pitch":-130.97600853266644,"roll":55.06133215869193},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.896"} +{"sensors":[{"euler":{"heading":29.330592088570484,"pitch":133.35790339248254,"roll":26.271634386371105},"location":"Left Knee"},{"euler":{"heading":27.184702895995553,"pitch":98.3229647787071,"roll":13.642835807694},"location":"Left Ankle"},{"euler":{"heading":29.91414907306791,"pitch":-8.5166503584743,"roll":-10.273093853063996},"location":"Right Ankle"},{"euler":{"heading":67.99273378448069,"pitch":-161.8008909211016,"roll":55.06330810336514},"location":"Right Hip"},{"euler":{"heading":41.11485159049235,"pitch":-107.02432811698122,"roll":0.7329079058647975},"location":"Right Knee"},{"euler":{"heading":9.298564211746749,"pitch":-131.75118071015115,"roll":55.40032578403228},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.996"} +{"sensors":[{"euler":{"heading":26.804206014271667,"pitch":132.5271866386792,"roll":26.41820910763767},"location":"Left Knee"},{"euler":{"heading":28.007917485595886,"pitch":98.5538363147571,"roll":13.79571717608411},"location":"Left Ankle"},{"euler":{"heading":32.23446308544773,"pitch":-9.216612793970834,"roll":-9.48611644582008},"location":"Right Ankle"},{"euler":{"heading":67.93160041468057,"pitch":-161.54040169840158,"roll":53.99902116802819},"location":"Right Hip"},{"euler":{"heading":39.20582224188773,"pitch":-106.2312879928552,"roll":2.339766848271759},"location":"Right Knee"},{"euler":{"heading":9.962050722911966,"pitch":-132.93418461222316,"roll":55.91515843402781},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.97"} +{"sensors":[{"euler":{"heading":25.46687669605558,"pitch":131.50200760059175,"roll":26.027653849131838},"location":"Left Knee"},{"euler":{"heading":29.288386069226192,"pitch":98.92326951978329,"roll":14.540477093809775},"location":"Left Ankle"},{"euler":{"heading":35.37690295556472,"pitch":-9.719194589694883,"roll":-8.417281745637476},"location":"Right Ankle"},{"euler":{"heading":66.96596710433172,"pitch":-161.57817564335653,"roll":53.553216207597025},"location":"Right Hip"},{"euler":{"heading":36.32879811338862,"pitch":-105.7217715154726,"roll":5.024452137180708},"location":"Right Knee"},{"euler":{"heading":10.58260175205665,"pitch":-134.27813951108837,"roll":56.499923820829245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.198"} +{"sensors":[{"euler":{"heading":25.162598826117932,"pitch":130.44355187079802,"roll":24.883524215220884},"location":"Left Knee"},{"euler":{"heading":31.103777029142904,"pitch":99.37646657247294,"roll":16.129969156458888},"location":"Left Ankle"},{"euler":{"heading":37.581320213368606,"pitch":-10.04317156360369,"roll":-7.646315014479537},"location":"Right Ankle"},{"euler":{"heading":65.83047976326404,"pitch":-161.84422334205303,"roll":53.41735725228949},"location":"Right Hip"},{"euler":{"heading":34.17523436122643,"pitch":-105.7422926707305,"roll":7.079202567194729},"location":"Right Knee"},{"euler":{"heading":11.286903407924108,"pitch":-135.93420356918728,"roll":57.07662590682522},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.300"} +{"sensors":[{"euler":{"heading":26.41167395990576,"pitch":129.5333441206985,"roll":22.760238528401626},"location":"Left Knee"},{"euler":{"heading":33.76738807201107,"pitch":100.22056074738686,"roll":19.19727519945172},"location":"Left Ankle"},{"euler":{"heading":38.68474835472001,"pitch":-10.253095946422592,"roll":-7.305404890863283},"location":"Right Ankle"},{"euler":{"heading":65.18017342796676,"pitch":-162.0374008131838,"roll":53.54412478968268},"location":"Right Hip"},{"euler":{"heading":33.095609091833346,"pitch":-106.04623651861324,"roll":8.355854875799112},"location":"Right Knee"},{"euler":{"heading":10.918280921728892,"pitch":-136.16043883159583,"roll":57.24175079449256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.400"} +{"sensors":[{"euler":{"heading":28.397555148977947,"pitch":128.63243081270332,"roll":20.470321154222933},"location":"Left Knee"},{"euler":{"heading":36.20399810994698,"pitch":101.03192299076089,"roll":22.38303022044549},"location":"Left Ankle"},{"euler":{"heading":39.2077344227398,"pitch":-10.460887211575564,"roll":-7.18717366010067},"location":"Right Ankle"},{"euler":{"heading":64.66553923438715,"pitch":-162.30138190679565,"roll":53.991770801876456},"location":"Right Hip"},{"euler":{"heading":33.186643551680724,"pitch":-106.3866661155382,"roll":8.863027202223803},"location":"Right Knee"},{"euler":{"heading":10.051649008785608,"pitch":-134.64695957919199,"roll":56.939324810735435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.501"} +{"sensors":[{"euler":{"heading":28.751296664312736,"pitch":128.68523172583426,"roll":19.42677021041417},"location":"Left Knee"},{"euler":{"heading":36.68303830145595,"pitch":100.4284102488042,"roll":23.71996056159053},"location":"Left Ankle"},{"euler":{"heading":39.37436130810009,"pitch":-10.64296704122101,"roll":-7.323946778493604},"location":"Right Ankle"},{"euler":{"heading":64.61276639190757,"pitch":-162.48674405086592,"roll":54.60492028890385},"location":"Right Hip"},{"euler":{"heading":33.87949446070937,"pitch":-106.5817515287762,"roll":8.852275498431494},"location":"Right Knee"},{"euler":{"heading":8.69995852252469,"pitch":-132.95045800329956,"roll":56.09491754325064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.601"} +{"sensors":[{"euler":{"heading":23.571256816952136,"pitch":129.92207148087985,"roll":20.25418864044743},"location":"Left Knee"},{"euler":{"heading":34.465285839973085,"pitch":99.45424446045928,"roll":22.319725461730894},"location":"Left Ankle"},{"euler":{"heading":39.058951840313064,"pitch":-10.754218772669132,"roll":-7.519053056150852},"location":"Right Ankle"},{"euler":{"heading":64.80736835110596,"pitch":-162.69014548118454,"roll":55.2489235931695},"location":"Right Hip"},{"euler":{"heading":35.05916671281984,"pitch":-106.71666230393899,"roll":8.343140709267853},"location":"Right Knee"},{"euler":{"heading":7.628867675734309,"pitch":-131.3380470083375,"roll":55.2832719902121},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.701"} +{"sensors":[{"euler":{"heading":52.73652938778888,"pitch":131.9806155552127,"roll":21.88280448513083},"location":"Left Knee"},{"euler":{"heading":30.622042649340695,"pitch":98.40627750326708,"roll":19.019392409326297},"location":"Left Ankle"},{"euler":{"heading":38.17049230481572,"pitch":-10.581403541172998,"roll":-8.082044859882908},"location":"Right Ankle"},{"euler":{"heading":65.10939560552436,"pitch":-162.92770613492453,"roll":55.92084574771607},"location":"Right Hip"},{"euler":{"heading":36.6017759027301,"pitch":-106.95170054698352,"roll":7.353304948724838},"location":"Right Knee"},{"euler":{"heading":7.185867117760633,"pitch":-130.28329740184193,"roll":54.739084001020686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.802"} +{"sensors":[{"euler":{"heading":77.09264729620513,"pitch":133.63525501828283,"roll":23.404060835651787},"location":"Left Knee"},{"euler":{"heading":27.635722631977412,"pitch":97.85038862424412,"roll":16.068675126754652},"location":"Left Ankle"},{"euler":{"heading":36.72958569358934,"pitch":-10.264504039259993,"roll":-8.894692801001147},"location":"Right Ankle"},{"euler":{"heading":65.38047642176971,"pitch":-163.57667630651332,"roll":56.701265280814965},"location":"Right Hip"},{"euler":{"heading":38.643697919752526,"pitch":-107.10492771926506,"roll":5.7441903228752915},"location":"Right Knee"},{"euler":{"heading":8.850488644703365,"pitch":-129.62614615052888,"roll":54.41313046529136},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.903"} +{"sensors":[{"euler":{"heading":64.1102963966343,"pitch":134.24664619566684,"roll":24.596303258207534},"location":"Left Knee"},{"euler":{"heading":26.70063520261358,"pitch":97.66842524312081,"roll":14.706612272572482},"location":"Left Ankle"},{"euler":{"heading":33.962375800049315,"pitch":-10.167999421684597,"roll":-9.760834437841591},"location":"Right Ankle"},{"euler":{"heading":66.09589763050779,"pitch":-163.84881193713332,"roll":57.16963516179075},"location":"Right Hip"},{"euler":{"heading":41.40955803781715,"pitch":-106.77389986650002,"roll":3.18231538232414},"location":"Right Knee"},{"euler":{"heading":8.727152025438153,"pitch":-129.23364681991268,"roll":54.290597155290115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.3"} +{"sensors":[{"euler":{"heading":54.10461897235841,"pitch":134.18751214980952,"roll":25.52055571514004},"location":"Left Knee"},{"euler":{"heading":26.446283093257282,"pitch":97.67023972788058,"roll":13.729763768917142},"location":"Left Ankle"},{"euler":{"heading":30.638322607290903,"pitch":-10.027167029716512,"roll":-10.502967265697482},"location":"Right Ankle"},{"euler":{"heading":67.25243326598432,"pitch":-163.23893638937213,"roll":56.79678017286472},"location":"Right Hip"},{"euler":{"heading":44.17364711930337,"pitch":-106.75973577831749,"roll":0.31717029425433196},"location":"Right Knee"},{"euler":{"heading":8.887757671835425,"pitch":-129.3541085673581,"roll":54.43536804464287},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.104"} +{"sensors":[{"euler":{"heading":46.26869969261189,"pitch":133.7178316918206,"roll":26.237982576758316},"location":"Left Knee"},{"euler":{"heading":26.82660531886997,"pitch":97.80862368525464,"roll":13.26795474420396},"location":"Left Ankle"},{"euler":{"heading":29.248340394413088,"pitch":-10.066199921497475,"roll":-10.811841001190174},"location":"Right Ankle"},{"euler":{"heading":68.34803607061058,"pitch":-162.43142697770355,"roll":55.81135445472966},"location":"Right Hip"},{"euler":{"heading":44.974334562292334,"pitch":-106.57450512684298,"roll":-1.1636555653192926},"location":"Right Knee"},{"euler":{"heading":9.263019012091624,"pitch":-130.00413439419575,"roll":54.75661745838707},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.204"} +{"sensors":[{"euler":{"heading":40.405571161271226,"pitch":132.95394701622286,"roll":26.601789498226662},"location":"Left Knee"},{"euler":{"heading":27.946574578213077,"pitch":98.12409372342626,"roll":13.492168490247218},"location":"Left Ankle"},{"euler":{"heading":30.45862098918446,"pitch":-10.696050574821562,"roll":-10.1817010803327},"location":"Right Ankle"},{"euler":{"heading":68.65058368703606,"pitch":-161.9979972169761,"roll":54.58673005423813},"location":"Right Hip"},{"euler":{"heading":43.43611805233756,"pitch":-105.84209030242515,"roll":-0.5059946191235273},"location":"Right Knee"},{"euler":{"heading":9.683243432113285,"pitch":-130.9609356376188,"roll":55.207831352543735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.305"} +{"sensors":[{"euler":{"heading":36.229105229619385,"pitch":131.92978958388355,"roll":26.54454431916398},"location":"Left Knee"},{"euler":{"heading":29.2559944865889,"pitch":98.52251554367447,"roll":14.105280147199373},"location":"Left Ankle"},{"euler":{"heading":33.35209585659727,"pitch":-11.20058835003777,"roll":-8.987245869833997},"location":"Right Ankle"},{"euler":{"heading":68.20270835270692,"pitch":-161.81982850285652,"roll":53.71641025922024},"location":"Right Hip"},{"euler":{"heading":40.30385615417696,"pitch":-105.14367453529188,"roll":1.8964798983585776},"location":"Right Knee"},{"euler":{"heading":10.235408494667357,"pitch":-132.11804131095883,"roll":55.80042809654756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.406"} +{"sensors":[{"euler":{"heading":33.403950252676275,"pitch":130.7711880500751,"roll":25.981448127690726},"location":"Left Knee"},{"euler":{"heading":30.881059685120533,"pitch":98.97221713370867,"roll":15.284326906068078},"location":"Left Ankle"},{"euler":{"heading":36.20878514009929,"pitch":-11.579843009651693,"roll":-7.953975579019884},"location":"Right Ankle"},{"euler":{"heading":67.05120791228659,"pitch":-161.9261469168132,"roll":53.19047310221894},"location":"Right Hip"},{"euler":{"heading":37.192195234699405,"pitch":-104.71978128032637,"roll":4.6054969009196025},"location":"Right Knee"},{"euler":{"heading":10.943168872080363,"pitch":-133.7298816216202,"roll":56.49123211972219},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.507"} +{"sensors":[{"euler":{"heading":31.988457897030546,"pitch":129.68118124340444,"roll":24.639573350234972},"location":"Left Knee"},{"euler":{"heading":32.84186390128211,"pitch":99.35535966458681,"roll":17.41542699856485},"location":"Left Ankle"},{"euler":{"heading":37.67387898197638,"pitch":-11.435505874253051,"roll":-7.393549424262705},"location":"Right Ankle"},{"euler":{"heading":66.09646999520352,"pitch":-161.96289872370517,"roll":53.02372167265047},"location":"Right Hip"},{"euler":{"heading":34.78705805834791,"pitch":-105.0258665224648,"roll":6.539577109264333},"location":"Right Knee"},{"euler":{"heading":11.736713369845582,"pitch":-135.47377051441526,"roll":57.146050002210444},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.608"} +{"sensors":[{"euler":{"heading":32.33361713228437,"pitch":128.70080655679112,"roll":22.432477933193557},"location":"Left Knee"},{"euler":{"heading":36.046656000655915,"pitch":100.79599239479462,"roll":20.681500576285607},"location":"Left Ankle"},{"euler":{"heading":38.42165283874703,"pitch":-11.061141185042398,"roll":-7.1658632220423835},"location":"Right Ankle"},{"euler":{"heading":65.30878632475844,"pitch":-162.08533413218342,"roll":53.277113378191636},"location":"Right Hip"},{"euler":{"heading":33.69763989580811,"pitch":-105.58821019574538,"roll":7.695147326373558},"location":"Right Knee"},{"euler":{"heading":11.203350520107868,"pitch":-135.5059921303013,"roll":57.2272819291186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.708"} +{"sensors":[{"euler":{"heading":33.10969366952665,"pitch":128.12284593215634,"roll":20.3639886040047},"location":"Left Knee"},{"euler":{"heading":37.844338508621355,"pitch":100.96403129290363,"roll":23.196936395646393},"location":"Left Ankle"},{"euler":{"heading":38.73666387406675,"pitch":-10.847239367771081,"roll":-7.17386672648062},"location":"Right Ankle"},{"euler":{"heading":64.8005738718015,"pitch":-162.3625914954354,"roll":53.83339313679521},"location":"Right Hip"},{"euler":{"heading":33.72120286921939,"pitch":-105.99599074138762,"roll":8.15220856204165},"location":"Right Knee"},{"euler":{"heading":10.065087302248868,"pitch":-134.27474345135468,"roll":56.81327145020885},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.809"} +{"sensors":[{"euler":{"heading":31.450255547254475,"pitch":128.7354175228899,"roll":19.812122453224383},"location":"Left Knee"},{"euler":{"heading":36.73601547247617,"pitch":100.29563305192882,"roll":23.19603875924683},"location":"Left Ankle"},{"euler":{"heading":38.64382141565398,"pitch":-10.522888176465282,"roll":-7.3297415887657},"location":"Right Ankle"},{"euler":{"heading":64.6698248367978,"pitch":-162.49456862117609,"roll":54.52700667071174},"location":"Right Hip"},{"euler":{"heading":34.19233958545973,"pitch":-106.42443427067656,"roll":8.167456272570298},"location":"Right Knee"},{"euler":{"heading":8.699071167275575,"pitch":-132.72066444279878,"roll":56.02247215217149},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.911"} +{"sensors":[{"euler":{"heading":59.43754785529471,"pitch":130.46688919826207,"roll":21.06661827584435},"location":"Left Knee"},{"euler":{"heading":33.182859889699884,"pitch":99.16168376300124,"roll":20.751705077271037},"location":"Left Ankle"},{"euler":{"heading":38.09812280995847,"pitch":-10.00941448486272,"roll":-7.666984018506725},"location":"Right Ankle"},{"euler":{"heading":64.6935644375792,"pitch":-162.63182735599838,"roll":55.20220273232164},"location":"Right Hip"},{"euler":{"heading":35.035894500679944,"pitch":-106.95480952563102,"roll":7.74130078170182},"location":"Right Knee"},{"euler":{"heading":7.574633341616825,"pitch":-131.25496400243804,"roll":55.29500696040928},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.12"} +{"sensors":[{"euler":{"heading":76.06337673696531,"pitch":132.70547452704767,"roll":22.671459583461996},"location":"Left Knee"},{"euler":{"heading":29.298509532488872,"pitch":98.12965600408039,"roll":17.368662844281502},"location":"Left Ankle"},{"euler":{"heading":36.93786847335967,"pitch":-9.384261632280186,"roll":-8.227794516233923},"location":"Right Ankle"},{"euler":{"heading":64.83190854921334,"pitch":-162.95816982357223,"roll":55.91424105085054},"location":"Right Hip"},{"euler":{"heading":36.48759571889781,"pitch":-107.41689695297194,"roll":6.713590075335957},"location":"Right Knee"},{"euler":{"heading":7.087952335662766,"pitch":-130.29729727474512,"roll":54.76753860596336},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.112"} +{"sensors":[{"euler":{"heading":62.75028902466552,"pitch":133.88093561097452,"roll":23.93933595059254},"location":"Left Knee"},{"euler":{"heading":27.146545925067016,"pitch":98.08759594869257,"roll":15.098158153631221},"location":"Left Ankle"},{"euler":{"heading":34.85229973485493,"pitch":-8.943427856109365,"roll":-9.01468741741769},"location":"Right Ankle"},{"euler":{"heading":65.21866870725742,"pitch":-163.4496641409501,"roll":56.62394516374405},"location":"Right Hip"},{"euler":{"heading":38.92476169031514,"pitch":-107.54370827630179,"roll":4.784828589012163},"location":"Right Knee"},{"euler":{"heading":6.998614456420731,"pitch":-129.69826736284733,"roll":54.37347994430301},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.213"} +{"sensors":[{"euler":{"heading":52.8840308856834,"pitch":134.15980044473793,"roll":24.884465218037437},"location":"Left Knee"},{"euler":{"heading":26.454675847951393,"pitch":98.04953685279168,"roll":14.024610802358698},"location":"Left Ankle"},{"euler":{"heading":31.563186503844566,"pitch":-8.538583050876355,"roll":-9.95264888246033},"location":"Right Ankle"},{"euler":{"heading":66.33796403101435,"pitch":-163.09178857059447,"roll":56.665662658323555},"location":"Right Hip"},{"euler":{"heading":41.87750505083608,"pitch":-107.65251137477138,"roll":2.04667401549048},"location":"Right Knee"},{"euler":{"heading":7.19300354160604,"pitch":-129.388087121886,"roll":54.32606207849633},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.313"} +{"sensors":[{"euler":{"heading":45.35846311589547,"pitch":133.78788098250416,"roll":25.698071984299737},"location":"Left Knee"},{"euler":{"heading":26.661063376163682,"pitch":98.32425412182934,"roll":13.40395770888337},"location":"Left Ankle"},{"euler":{"heading":29.10787649076713,"pitch":-8.517076918302436,"roll":-10.510066762786781},"location":"Right Ankle"},{"euler":{"heading":67.4625275853472,"pitch":-162.39934681330132,"roll":55.960248326576114},"location":"Right Hip"},{"euler":{"heading":43.64716955565803,"pitch":-107.41802736008492,"roll":-0.07429536047940832},"location":"Right Knee"},{"euler":{"heading":7.786176568556027,"pitch":-129.60681859249917,"roll":54.56852959939212},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.414"} +{"sensors":[{"euler":{"heading":39.55325491007528,"pitch":133.1481296413081,"roll":26.196472165473775},"location":"Left Knee"},{"euler":{"heading":27.311623176134137,"pitch":98.62040139307155,"roll":13.29418757186627},"location":"Left Ankle"},{"euler":{"heading":29.225891465252413,"pitch":-9.032694241006876,"roll":-10.491273239892328},"location":"Right Ankle"},{"euler":{"heading":68.52600637726049,"pitch":-161.7133204479084,"roll":54.79280409962238},"location":"Right Hip"},{"euler":{"heading":43.19367047822134,"pitch":-106.8550754692257,"roll":-0.23369663356276746},"location":"Right Knee"},{"euler":{"heading":8.557240760504355,"pitch":-130.44683647235172,"roll":54.99601818309669},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.515"} +{"sensors":[{"euler":{"heading":35.311253232800794,"pitch":132.32547698397056,"roll":26.266962380412537},"location":"Left Knee"},{"euler":{"heading":28.16534744083812,"pitch":98.84676052488149,"roll":13.563468383211287},"location":"Left Ankle"},{"euler":{"heading":31.67091850854735,"pitch":-9.772747656792333,"roll":-9.677596227877078},"location":"Right Ankle"},{"euler":{"heading":68.58821981275528,"pitch":-161.5265597434941,"roll":53.641287991692366},"location":"Right Hip"},{"euler":{"heading":40.818777260319514,"pitch":-105.98301056803857,"roll":1.5483447969614506},"location":"Right Knee"},{"euler":{"heading":9.29560281519053,"pitch":-131.61717394293422,"roll":55.53741994683754},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.615"} +{"sensors":[{"euler":{"heading":32.367039275127134,"pitch":131.3373214839182,"roll":25.902685070279155},"location":"Left Knee"},{"euler":{"heading":29.34594585300228,"pitch":99.0991497229265,"roll":14.282758488250934},"location":"Left Ankle"},{"euler":{"heading":34.85007488818964,"pitch":-10.484020702508685,"roll":-8.441914337784954},"location":"Right Ankle"},{"euler":{"heading":67.75330926985995,"pitch":-161.60132224906926,"roll":52.96197352869945},"location":"Right Hip"},{"euler":{"heading":37.77433537934393,"pitch":-105.33658815549057,"roll":4.343985892488301},"location":"Right Knee"},{"euler":{"heading":10.108258625231066,"pitch":-133.13397183993874,"roll":56.1759536006288},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.716"} +{"sensors":[{"euler":{"heading":30.74704601899124,"pitch":130.2885862004997,"roll":24.895294541794474},"location":"Left Knee"},{"euler":{"heading":31.061727302827215,"pitch":99.43454595541985,"roll":15.742188014939375},"location":"Left Ankle"},{"euler":{"heading":37.0726649686091,"pitch":-10.860095112202456,"roll":-7.650768510351162},"location":"Right Ankle"},{"euler":{"heading":66.61784205066262,"pitch":-161.78193382197747,"roll":52.6445441821576},"location":"Right Hip"},{"euler":{"heading":35.29938561814747,"pitch":-105.25700777247641,"roll":6.61804361913893},"location":"Right Knee"},{"euler":{"heading":11.011472619056844,"pitch":-135.08912460242422,"roll":56.819145174282454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.816"} +{"sensors":[{"euler":{"heading":30.78207275751813,"pitch":129.29204931809994,"roll":22.91952189416035},"location":"Left Knee"},{"euler":{"heading":33.63188757247528,"pitch":100.16609979634366,"roll":18.69774901817962},"location":"Left Ankle"},{"euler":{"heading":38.18502768962896,"pitch":-10.837731707998081,"roll":-7.244036364431518},"location":"Right Ankle"},{"euler":{"heading":66.19347388081549,"pitch":-161.7372789662906,"roll":52.54161481375906},"location":"Right Hip"},{"euler":{"heading":33.683125685214016,"pitch":-105.60116900081672,"roll":8.063415096782954},"location":"Right Knee"},{"euler":{"heading":11.477539099168759,"pitch":-136.2994346943455,"roll":57.21090335573392},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.918"} +{"sensors":[{"euler":{"heading":32.09493905936275,"pitch":128.01575354861444,"roll":20.52527308789312},"location":"Left Knee"},{"euler":{"heading":36.62218282752349,"pitch":101.30368924509342,"roll":22.305575808456858},"location":"Left Ankle"},{"euler":{"heading":38.513188922522744,"pitch":-10.680753545538211,"roll":-7.197041193813391},"location":"Right Ankle"},{"euler":{"heading":66.02436091594743,"pitch":-161.70281720788992,"roll":52.82897628138812},"location":"Right Hip"},{"euler":{"heading":33.3763814225476,"pitch":-106.04338868687739,"roll":8.741093117326969},"location":"Right Knee"},{"euler":{"heading":11.050591986830671,"pitch":-135.24241277358234,"roll":57.250294266708806},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.18"} +{"sensors":[{"euler":{"heading":32.278116408641765,"pitch":127.81805984196342,"roll":19.0068155434425},"location":"Left Knee"},{"euler":{"heading":37.834009327829094,"pitch":100.7694496813711,"roll":24.297912525436423},"location":"Left Ankle"},{"euler":{"heading":38.60352775258344,"pitch":-10.419801766068094,"roll":-7.499344277283724},"location":"Right Ankle"},{"euler":{"heading":66.08803186437335,"pitch":-161.5586727767258,"roll":53.39815850824171},"location":"Right Hip"},{"euler":{"heading":33.63651601120056,"pitch":-106.56244841227246,"roll":8.920299612544705},"location":"Right Knee"},{"euler":{"heading":9.827047937349391,"pitch":-133.68546391060357,"roll":56.548719975063875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.119"} +{"sensors":[{"euler":{"heading":28.664722096451218,"pitch":128.81039733551847,"roll":19.463955902397007},"location":"Left Knee"},{"euler":{"heading":35.94872265188509,"pitch":99.94120177231216,"roll":23.312379092351332},"location":"Left Ankle"},{"euler":{"heading":38.35050516860143,"pitch":-10.017204390806777,"roll":-7.731273650163923},"location":"Right Ankle"},{"euler":{"heading":66.1282749520951,"pitch":-161.59470868678082,"roll":54.097501856499434},"location":"Right Hip"},{"euler":{"heading":34.25974015402607,"pitch":-107.13914815900932,"roll":8.707904723621153},"location":"Right Knee"},{"euler":{"heading":8.593344409861345,"pitch":-132.0031355360599,"roll":55.70579711635473},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.220"} +{"sensors":[{"euler":{"heading":57.19837326418691,"pitch":130.7784941746194,"roll":21.09045357552491},"location":"Left Knee"},{"euler":{"heading":32.03881954848501,"pitch":98.87663957694241,"roll":20.167322860966067},"location":"Left Ankle"},{"euler":{"heading":37.61419817496027,"pitch":-9.42698236976883,"roll":-8.178953064477023},"location":"Right Ankle"},{"euler":{"heading":66.30985863891138,"pitch":-161.72244160567615,"roll":54.82544514529466},"location":"Right Hip"},{"euler":{"heading":35.44780046993903,"pitch":-107.69666123307597,"roll":7.962800272968634},"location":"Right Knee"},{"euler":{"heading":8.06475922768112,"pitch":-130.83755697427367,"roll":55.09168991939117},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.321"} +{"sensors":[{"euler":{"heading":47.125285575012605,"pitch":132.41668857250775,"roll":22.56223078440806},"location":"Left Knee"},{"euler":{"heading":28.991973159794526,"pitch":98.57921823114962,"roll":17.4046741649164},"location":"Left Ankle"},{"euler":{"heading":36.17896774621232,"pitch":-9.142608092606393,"roll":-9.041835696427567},"location":"Right Ankle"},{"euler":{"heading":66.82120292819585,"pitch":-162.06394563031293,"roll":55.53170534652908},"location":"Right Hip"},{"euler":{"heading":37.466957099560474,"pitch":-107.88009430781618,"roll":6.444340142539828},"location":"Right Knee"},{"euler":{"heading":8.196758482554376,"pitch":-130.18118959299005,"roll":54.68463231220356},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.422"} +{"sensors":[{"euler":{"heading":39.911935913111876,"pitch":133.01914432787552,"roll":23.72159138006013},"location":"Left Knee"},{"euler":{"heading":27.66844426922623,"pitch":98.48844829636677,"roll":15.867962045487502},"location":"Left Ankle"},{"euler":{"heading":33.26182750647531,"pitch":-9.242003353766911,"roll":-9.929652222561455},"location":"Right Ankle"},{"euler":{"heading":67.89982021946267,"pitch":-161.92706603950674,"roll":55.73082983710596},"location":"Right Hip"},{"euler":{"heading":40.410372094875775,"pitch":-107.3861491794503,"roll":3.8455900431404326},"location":"Right Knee"},{"euler":{"heading":8.132425407072503,"pitch":-129.67643872198556,"roll":54.49465525683643},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.522"} +{"sensors":[{"euler":{"heading":34.58234793478532,"pitch":132.96381545657061,"roll":24.68743358278686},"location":"Left Knee"},{"euler":{"heading":27.31601309812764,"pitch":98.67979699521854,"roll":14.857929234403496},"location":"Left Ankle"},{"euler":{"heading":30.28469081238861,"pitch":-9.189256265506343,"roll":-10.614109118455326},"location":"Right Ankle"},{"euler":{"heading":69.1218734129726,"pitch":-161.20867634676748,"roll":55.191630403636836},"location":"Right Hip"},{"euler":{"heading":42.93339792024482,"pitch":-107.21862000117315,"roll":1.2740694621110258},"location":"Right Knee"},{"euler":{"heading":8.371069628735388,"pitch":-129.6061472337142,"roll":54.608124519955176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.622"} +{"sensors":[{"euler":{"heading":30.539533735906353,"pitch":132.58675782055093,"roll":25.353314354526603},"location":"Left Knee"},{"euler":{"heading":27.53279398847637,"pitch":98.87672489451562,"roll":14.377983172163074},"location":"Left Ankle"},{"euler":{"heading":29.78518482696103,"pitch":-9.492299889674445,"roll":-10.745941880424668},"location":"Right Ankle"},{"euler":{"heading":70.2116688462623,"pitch":-160.52295157175618,"roll":54.07946497375953},"location":"Right Hip"},{"euler":{"heading":43.19782049811985,"pitch":-106.80543348748334,"roll":0.42160086627654036},"location":"Right Knee"},{"euler":{"heading":8.774557023370363,"pitch":-130.08356521149864,"roll":54.91294048746504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.724"} +{"sensors":[{"euler":{"heading":27.68707057631884,"pitch":131.98397422731236,"roll":25.646697273400978},"location":"Left Knee"},{"euler":{"heading":28.025395248550602,"pitch":99.01330288939488,"roll":14.276629168548045},"location":"Left Ankle"},{"euler":{"heading":31.492719386023463,"pitch":-10.19457866161556,"roll":-9.76535215089118},"location":"Right Ankle"},{"euler":{"heading":70.42622708665988,"pitch":-160.25322946223605,"roll":52.87689904205153},"location":"Right Hip"},{"euler":{"heading":41.25023744095203,"pitch":-105.97970792929898,"roll":1.6359560252808403},"location":"Right Knee"},{"euler":{"heading":9.200056982991796,"pitch":-131.11009960372618,"roll":55.28983108944535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.824"} +{"sensors":[{"euler":{"heading":25.95789823703542,"pitch":131.12937437993628,"roll":25.50789124662622},"location":"Left Knee"},{"euler":{"heading":28.98165023077024,"pitch":99.27363098850357,"roll":14.672431681727579},"location":"Left Ankle"},{"euler":{"heading":34.67443910335167,"pitch":-10.835998527796113,"roll":-8.455924101613618},"location":"Right Ankle"},{"euler":{"heading":69.66254853487145,"pitch":-160.3004847208791,"roll":52.133554942914365},"location":"Right Hip"},{"euler":{"heading":38.16923165695175,"pitch":-105.20874821991448,"roll":4.262739803721293},"location":"Right Knee"},{"euler":{"heading":9.649526114384061,"pitch":-132.30652383503866,"roll":55.79733861577199},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.924"} +{"sensors":[{"euler":{"heading":25.130639270605243,"pitch":130.11231066380503,"roll":24.88882859958536},"location":"Left Knee"},{"euler":{"heading":30.49590360253108,"pitch":99.66377339570262,"roll":15.732129811271607},"location":"Left Ankle"},{"euler":{"heading":37.16666688491388,"pitch":-11.047794306611172,"roll":-7.532648828776578},"location":"Right Ankle"},{"euler":{"heading":68.09789076701506,"pitch":-160.68807266888126,"roll":51.72251492863074},"location":"Right Hip"},{"euler":{"heading":35.18277349444323,"pitch":-104.94513344922868,"roll":6.7228852869249},"location":"Right Knee"},{"euler":{"heading":10.392105328090977,"pitch":-133.99555968227625,"roll":56.40520221883839},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.25"} +{"sensors":[{"euler":{"heading":25.547217135906337,"pitch":129.25739343816792,"roll":23.300116019712654},"location":"Left Knee"},{"euler":{"heading":32.28868621696566,"pitch":99.84438961578353,"roll":17.897921686454495},"location":"Left Ankle"},{"euler":{"heading":38.71383973530913,"pitch":-11.126482183649996,"roll":-6.935012349158563},"location":"Right Ankle"},{"euler":{"heading":67.01294584869123,"pitch":-160.9852835749627,"roll":51.766746597263115},"location":"Right Hip"},{"euler":{"heading":33.314159655130304,"pitch":-105.14060246953471,"roll":8.342588245423043},"location":"Right Knee"},{"euler":{"heading":11.05958145274561,"pitch":-135.51203551109003,"roll":56.89578976786036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.125"} +{"sensors":[{"euler":{"heading":27.499489002535924,"pitch":128.27571438009764,"roll":20.994514687037977},"location":"Left Knee"},{"euler":{"heading":35.575878794582096,"pitch":100.95907395174731,"roll":21.320238453829177},"location":"Left Ankle"},{"euler":{"heading":39.3920777191931,"pitch":-10.942036654724214,"roll":-6.73905383518246},"location":"Right Ankle"},{"euler":{"heading":66.08892228985151,"pitch":-161.35529254638953,"roll":52.15159857401845},"location":"Right Hip"},{"euler":{"heading":32.5629759848535,"pitch":-105.6028522804536,"roll":9.213686324047266},"location":"Right Knee"},{"euler":{"heading":10.547845417007355,"pitch":-135.07093786991388,"roll":56.92353868093122},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.225"} +{"sensors":[{"euler":{"heading":29.00288215080498,"pitch":127.83331553757445,"roll":19.205498882397755},"location":"Left Knee"},{"euler":{"heading":37.209163726747335,"pitch":100.79055311781883,"roll":23.70951599857165},"location":"Left Ankle"},{"euler":{"heading":39.53719201296502,"pitch":-10.608667878893794,"roll":-6.853055933098975},"location":"Right Ankle"},{"euler":{"heading":65.90308234181853,"pitch":-161.44634683072573,"roll":52.73765384144524},"location":"Right Hip"},{"euler":{"heading":32.65539922396885,"pitch":-106.22921638099189,"roll":9.484679502686472},"location":"Right Knee"},{"euler":{"heading":9.522415132781948,"pitch":-133.7562222334515,"roll":56.34222660323669},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.326"} +{"sensors":[{"euler":{"heading":27.207697236901026,"pitch":128.50315522261766,"roll":19.221622662983922},"location":"Left Knee"},{"euler":{"heading":35.94839621238073,"pitch":99.91273528502819,"roll":23.326922040535358},"location":"Left Ankle"},{"euler":{"heading":39.29929298067476,"pitch":-10.229721782749651,"roll":-7.069174435188828},"location":"Right Ankle"},{"euler":{"heading":66.05412748431017,"pitch":-161.48117712238292,"roll":53.42848395311507},"location":"Right Hip"},{"euler":{"heading":33.266152957218004,"pitch":-106.81383356820993,"roll":9.307777635099557},"location":"Right Knee"},{"euler":{"heading":7.886122715502686,"pitch":-132.5427875888305,"roll":55.28113410547918},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.426"} +{"sensors":[{"euler":{"heading":56.3918078974687,"pitch":130.3161739074132,"roll":20.71659426839702},"location":"Left Knee"},{"euler":{"heading":32.62119240725728,"pitch":98.85682626966344,"roll":20.703669483187607},"location":"Left Ankle"},{"euler":{"heading":38.6288769032358,"pitch":-9.77980736721394,"roll":-7.496601678938548},"location":"Right Ankle"},{"euler":{"heading":66.23725615809792,"pitch":-161.69105341396238,"roll":54.15466913391184},"location":"Right Hip"},{"euler":{"heading":34.47372905351847,"pitch":-107.33689378348679,"roll":8.594789934898458},"location":"Right Knee"},{"euler":{"heading":7.14085903529974,"pitch":-131.37343712861843,"roll":54.540954330837884},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.526"} +{"sensors":[{"euler":{"heading":79.8299371163083,"pitch":132.3015571734332,"roll":22.39634873577457},"location":"Left Knee"},{"euler":{"heading":29.49260065042092,"pitch":98.22835243627581,"roll":17.747313473590147},"location":"Left Ankle"},{"euler":{"heading":37.34866811424037,"pitch":-9.295402026247706,"roll":-8.353049241716892},"location":"Right Ankle"},{"euler":{"heading":66.57745155995053,"pitch":-162.07716039124978,"roll":54.930682158513356},"location":"Right Hip"},{"euler":{"heading":36.41374026081473,"pitch":-107.67940116888632,"roll":7.188625758266312},"location":"Right Knee"},{"euler":{"heading":7.047879711871029,"pitch":-130.72554726569896,"roll":54.03170740533357},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.626"} +{"sensors":[{"euler":{"heading":66.1197193117181,"pitch":133.2062848676953,"roll":23.73795746181142},"location":"Left Knee"},{"euler":{"heading":28.292388585720936,"pitch":98.02232589227111,"roll":16.029375126076907},"location":"Left Ankle"},{"euler":{"heading":34.84383418958604,"pitch":-9.37431746876944,"roll":-9.18748037314522},"location":"Right Ankle"},{"euler":{"heading":67.38513556156988,"pitch":-162.14710951415543,"roll":55.43073654550844},"location":"Right Hip"},{"euler":{"heading":39.339913531835414,"pitch":-107.4126327265164,"roll":4.7390519298070926},"location":"Right Knee"},{"euler":{"heading":7.144162264564481,"pitch":-130.1095613373201,"roll":53.844386704553536},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.727"} +{"sensors":[{"euler":{"heading":55.59535426039345,"pitch":133.41852903305966,"roll":24.73791468802825},"location":"Left Knee"},{"euler":{"heading":27.761499638543484,"pitch":97.82995229956585,"roll":15.0337144464129},"location":"Left Ankle"},{"euler":{"heading":31.490856540776537,"pitch":-9.344655856383083,"roll":-10.055497153147348},"location":"Right Ankle"},{"euler":{"heading":68.68855956247855,"pitch":-161.4256241259295,"roll":55.169786383164826},"location":"Right Hip"},{"euler":{"heading":42.27688400107634,"pitch":-107.32581860961697,"roll":1.8922910125781054},"location":"Right Knee"},{"euler":{"heading":7.579716770854079,"pitch":-130.0694127855399,"roll":53.930533098620145},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.828"} +{"sensors":[{"euler":{"heading":47.33473411863042,"pitch":133.18846664750163,"roll":25.494118370543326},"location":"Left Knee"},{"euler":{"heading":28.159151416203073,"pitch":97.73911253658218,"roll":14.691624827801482},"location":"Left Ankle"},{"euler":{"heading":29.91666770907469,"pitch":-9.436721955026186,"roll":-10.496116062530623},"location":"Right Ankle"},{"euler":{"heading":69.91632501539401,"pitch":-160.60630136551094,"roll":54.32129239945487},"location":"Right Hip"},{"euler":{"heading":43.27857961160384,"pitch":-107.04512221962214,"roll":0.3567568395491614},"location":"Right Knee"},{"euler":{"heading":8.251449628505096,"pitch":-130.53248920197075,"roll":54.24629712860421},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.929"} +{"sensors":[{"euler":{"heading":40.87415806556083,"pitch":132.73058600824078,"roll":25.893013470846324},"location":"Left Knee"},{"euler":{"heading":28.639326255257167,"pitch":97.54989836174528,"roll":14.70312306912528},"location":"Left Ankle"},{"euler":{"heading":30.89883112661846,"pitch":-10.019436113575198,"roll":-10.092204603396201},"location":"Right Ankle"},{"euler":{"heading":70.62435264492721,"pitch":-160.07300238556238,"roll":53.2205741128357},"location":"Right Hip"},{"euler":{"heading":42.047635752453324,"pitch":-106.33333836483087,"roll":0.8519527514959435},"location":"Right Knee"},{"euler":{"heading":8.938205833370553,"pitch":-131.55793688799602,"roll":54.68660212807964},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.30"} +{"sensors":[{"euler":{"heading":36.18472152573277,"pitch":132.0665583088845,"roll":25.814010941734953},"location":"Left Knee"},{"euler":{"heading":29.41299257645447,"pitch":97.4203003238888,"roll":15.123753767146752},"location":"Left Ankle"},{"euler":{"heading":33.55201613007743,"pitch":-10.683461708595436,"roll":-9.04300481361837},"location":"Right Ankle"},{"euler":{"heading":70.19932790566361,"pitch":-160.00660496309914,"roll":52.361303642680355},"location":"Right Hip"},{"euler":{"heading":39.3691088240632,"pitch":-105.52279428023601,"roll":3.042018324579163},"location":"Right Knee"},{"euler":{"heading":9.72049744523814,"pitch":-132.8544480155447,"roll":55.28716360802744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.131"} +{"sensors":[{"euler":{"heading":32.993054544185874,"pitch":131.18032142669958,"roll":25.3025707579181},"location":"Left Knee"},{"euler":{"heading":30.843140936025808,"pitch":97.48138951796965,"roll":16.217808917633473},"location":"Left Ankle"},{"euler":{"heading":36.70541686838281,"pitch":-11.25459538258522,"roll":-7.950922689017967},"location":"Right Ankle"},{"euler":{"heading":68.9595219702844,"pitch":-160.25567958667753,"roll":51.95238028159527},"location":"Right Hip"},{"euler":{"heading":36.31386429779272,"pitch":-105.0509466738679,"roll":5.87987837866071},"location":"Right Knee"},{"euler":{"heading":10.503724344820474,"pitch":-134.43785484925527,"roll":55.94355756889786},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.231"} +{"sensors":[{"euler":{"heading":31.37258748180107,"pitch":130.3308252977954,"roll":24.007438214421022},"location":"Left Knee"},{"euler":{"heading":32.75730830236525,"pitch":97.57233945296987,"roll":18.349291220966574},"location":"Left Ankle"},{"euler":{"heading":38.40156710985184,"pitch":-11.533587705469598,"roll":-7.34322447919776},"location":"Right Ankle"},{"euler":{"heading":67.77195630463285,"pitch":-160.55835000522535,"roll":51.6893712605452},"location":"Right Hip"},{"euler":{"heading":34.10949880073209,"pitch":-105.13527998984068,"roll":7.930545453303374},"location":"Right Knee"},{"euler":{"heading":11.269881134091378,"pitch":-136.17385092024574,"roll":56.58507456644351},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.332"} +{"sensors":[{"euler":{"heading":31.75799941806291,"pitch":129.30054388644479,"roll":21.842638679980144},"location":"Left Knee"},{"euler":{"heading":35.90013296959333,"pitch":98.68912130895077,"roll":21.65138249748737},"location":"Left Ankle"},{"euler":{"heading":39.154225157703934,"pitch":-11.809822135901797,"roll":-7.0905988953336045},"location":"Right Ankle"},{"euler":{"heading":67.12062544745947,"pitch":-160.802502385709,"roll":51.861607178107015},"location":"Right Hip"},{"euler":{"heading":33.37472211366414,"pitch":-105.34238787342406,"roll":9.007307683829195},"location":"Right Knee"},{"euler":{"heading":10.916233717769364,"pitch":-136.13947744215267,"roll":56.737505160777324},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.432"} +{"sensors":[{"euler":{"heading":32.9296985879079,"pitch":128.4693381435544,"roll":19.640007919784527},"location":"Left Knee"},{"euler":{"heading":38.18809960557708,"pitch":99.16459169192586,"roll":24.562073599880375},"location":"Left Ankle"},{"euler":{"heading":39.59808682343083,"pitch":-12.012217326706763,"roll":-7.058199451991074},"location":"Right Ankle"},{"euler":{"heading":66.75973037469299,"pitch":-160.99964855955665,"roll":52.35039639435366},"location":"Right Hip"},{"euler":{"heading":33.45085283457895,"pitch":-105.58330240435122,"roll":9.404948151735004},"location":"Right Knee"},{"euler":{"heading":10.038082145174917,"pitch":-134.74095298512637,"roll":56.35819404349343},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.533"} +{"sensors":[{"euler":{"heading":31.956859609750286,"pitch":128.59710631034525,"roll":18.895416839675867},"location":"Left Knee"},{"euler":{"heading":37.748759520539636,"pitch":98.61980254160204,"roll":25.049629386267565},"location":"Left Ankle"},{"euler":{"heading":39.58696588984736,"pitch":-12.100234768806292,"roll":-7.231022462360025},"location":"Right Ankle"},{"euler":{"heading":66.83283895627302,"pitch":-161.0294085284178,"roll":52.94726757274916},"location":"Right Hip"},{"euler":{"heading":34.036375656489355,"pitch":-105.82508118981501,"roll":9.348591567528457},"location":"Right Knee"},{"euler":{"heading":8.843427987636392,"pitch":-133.0711821395682,"roll":55.52744964153538},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.634"} +{"sensors":[{"euler":{"heading":26.980748858741197,"pitch":129.9433992182588,"roll":20.052809675934668},"location":"Left Knee"},{"euler":{"heading":34.59473375623976,"pitch":97.78795388216719,"roll":22.880816419896856},"location":"Left Ankle"},{"euler":{"heading":39.131962009840116,"pitch":-11.864778254559965,"roll":-7.6371086175304},"location":"Right Ankle"},{"euler":{"heading":67.17212964124526,"pitch":-161.02066573682345,"roll":53.534923887858405},"location":"Right Hip"},{"euler":{"heading":34.94980855949624,"pitch":-106.2222200158754,"roll":8.869533750120928},"location":"Right Knee"},{"euler":{"heading":7.9068636227606115,"pitch":-131.4710685010565,"roll":54.74600319787628},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.735"} +{"sensors":[{"euler":{"heading":55.510381821599466,"pitch":132.0355863389773,"roll":21.79570660087675},"location":"Left Knee"},{"euler":{"heading":30.692362615932268,"pitch":96.96983637769792,"roll":19.408203481411615},"location":"Left Ankle"},{"euler":{"heading":38.16487456795623,"pitch":-11.431743140797822,"roll":-8.307776547663435},"location":"Right Ankle"},{"euler":{"heading":67.54506540517242,"pitch":-161.1138248321931,"roll":54.21531213242827},"location":"Right Hip"},{"euler":{"heading":36.45872579772568,"pitch":-106.56374511922469,"roll":7.805843662146769},"location":"Right Knee"},{"euler":{"heading":7.675083430714791,"pitch":-130.41555585069193,"roll":54.2113057072711},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.837"} +{"sensors":[{"euler":{"heading":45.72532410420487,"pitch":133.2866610997712,"roll":23.34308405371119},"location":"Left Knee"},{"euler":{"heading":28.460245227154598,"pitch":97.01432284327878,"roll":16.937742339171297},"location":"Left Ankle"},{"euler":{"heading":36.44555643849567,"pitch":-11.09340822705319,"roll":-9.241639162553586},"location":"Right Ankle"},{"euler":{"heading":67.98716687633123,"pitch":-161.57267655615144,"roll":54.96177526603461},"location":"Right Hip"},{"euler":{"heading":38.6989825712274,"pitch":-106.54579075448575,"roll":5.969376790171697},"location":"Right Knee"},{"euler":{"heading":7.990653210820531,"pitch":-129.80527660098463,"roll":53.929611732930205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.938"} +{"sensors":[{"euler":{"heading":38.84293799030567,"pitch":133.61611094241982,"roll":24.511400349774767},"location":"Left Knee"},{"euler":{"heading":27.750307782472373,"pitch":97.17348368975806,"roll":15.701095301033986},"location":"Left Ankle"},{"euler":{"heading":33.33742265333281,"pitch":-10.935890086161129,"roll":-10.294753935884126},"location":"Right Ankle"},{"euler":{"heading":68.88423676372166,"pitch":-161.5954897425347,"roll":55.23295023391815},"location":"Right Hip"},{"euler":{"heading":41.544004664358766,"pitch":-106.16093522464821,"roll":3.1898858529214222},"location":"Right Knee"},{"euler":{"heading":8.207424248438388,"pitch":-129.3719562697528,"roll":53.94819802658956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.39"} +{"sensors":[{"euler":{"heading":33.9745924472301,"pitch":133.22456621019197,"roll":25.414002651130772},"location":"Left Knee"},{"euler":{"heading":27.935956462248456,"pitch":97.57315260093603,"roll":14.980419826666875},"location":"Left Ankle"},{"euler":{"heading":30.376314574113987,"pitch":-10.983605690075686,"roll":-11.02176955888881},"location":"Right Ankle"},{"euler":{"heading":70.13599837009727,"pitch":-161.06321921737816,"roll":54.693549097867724},"location":"Right Hip"},{"euler":{"heading":43.70109172306176,"pitch":-105.640275125982,"roll":0.6926296970702057},"location":"Right Knee"},{"euler":{"heading":8.937829746038613,"pitch":-129.41386295771804,"roll":54.27417229692545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.140"} +{"sensors":[{"euler":{"heading":30.232154051018018,"pitch":132.67407198849773,"roll":25.891862444471037},"location":"Left Knee"},{"euler":{"heading":28.741949236865487,"pitch":97.84562342377413,"roll":15.071462003476618},"location":"Left Ankle"},{"euler":{"heading":29.652120496087047,"pitch":-11.18136034909632,"roll":-11.263456343852678},"location":"Right Ankle"},{"euler":{"heading":71.42253294044036,"pitch":-160.36754980995724,"roll":53.62281830571438},"location":"Right Hip"},{"euler":{"heading":43.69561057693838,"pitch":-105.09185377947294,"roll":0.026267281229132244},"location":"Right Knee"},{"euler":{"heading":9.690462967225466,"pitch":-130.05820465283517,"roll":54.74749751892904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.241"} +{"sensors":[{"euler":{"heading":27.589966424554216,"pitch":131.9738030274969,"roll":25.95565678961256},"location":"Left Knee"},{"euler":{"heading":29.752668389412644,"pitch":98.05055832748701,"roll":15.504616950094738},"location":"Left Ankle"},{"euler":{"heading":31.205407228666637,"pitch":-11.574334686046049,"roll":-10.530903472530033},"location":"Right Ankle"},{"euler":{"heading":71.75656381782599,"pitch":-159.98181351319045,"roll":52.47558146791974},"location":"Right Hip"},{"euler":{"heading":41.366507339781286,"pitch":-104.32211682008767,"roll":1.40902528437637},"location":"Right Knee"},{"euler":{"heading":10.449405608939923,"pitch":-131.2060576186924,"roll":55.35415694482036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.342"} +{"sensors":[{"euler":{"heading":25.967569078070607,"pitch":131.01315517749057,"roll":25.65071893763004},"location":"Left Knee"},{"euler":{"heading":31.222337349950127,"pitch":98.35490496694038,"roll":16.449481675178983},"location":"Left Ankle"},{"euler":{"heading":34.50458660684352,"pitch":-12.042888214698587,"roll":-9.380519410823606},"location":"Right Ankle"},{"euler":{"heading":70.9301860247715,"pitch":-161.46392509952625,"roll":51.800139209824465},"location":"Right Hip"},{"euler":{"heading":37.8779883274977,"pitch":-103.67910879751281,"roll":4.3368252901327535},"location":"Right Knee"},{"euler":{"heading":11.26702216589468,"pitch":-132.63711146387314,"roll":56.15281086033771},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.444"} +{"sensors":[{"euler":{"heading":25.36447943435773,"pitch":129.97742026580727,"roll":24.738640359332695},"location":"Left Knee"},{"euler":{"heading":33.317496831740165,"pitch":98.7492068085288,"roll":18.249770129116776},"location":"Left Ankle"},{"euler":{"heading":37.081099615059294,"pitch":-12.104206860477941,"roll":-8.55954192528683},"location":"Right Ankle"},{"euler":{"heading":69.80765071943944,"pitch":-161.40790364538617,"roll":51.54566680122433},"location":"Right Hip"},{"euler":{"heading":34.52813224103348,"pitch":-103.74530539385076,"roll":7.003954471660308},"location":"Right Knee"},{"euler":{"heading":12.09700901476825,"pitch":-134.39577041830856,"roll":56.94089126831454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.546"} +{"sensors":[{"euler":{"heading":26.142966124744195,"pitch":129.1174985558847,"roll":22.872894350554418},"location":"Left Knee"},{"euler":{"heading":36.067494651526374,"pitch":99.65296901954439,"roll":21.513765880748146},"location":"Left Ankle"},{"euler":{"heading":38.227605814661615,"pitch":-12.195364420601763,"roll":-8.220940777386064},"location":"Right Ankle"},{"euler":{"heading":69.10255111298768,"pitch":-161.38099245819308,"roll":51.594830518930664},"location":"Right Hip"},{"euler":{"heading":32.69490580574319,"pitch":-103.95383773470925,"roll":8.697990975487405},"location":"Right Knee"},{"euler":{"heading":12.515007803889192,"pitch":-135.5234030823111,"roll":57.4637557450295},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.648"} +{"sensors":[{"euler":{"heading":28.248881158768967,"pitch":127.85780691403518,"roll":20.56631529246041},"location":"Left Knee"},{"euler":{"heading":38.66401770231702,"pitch":100.61344830371418,"roll":24.82993805620717},"location":"Left Ankle"},{"euler":{"heading":38.66101268959692,"pitch":-12.022202397130497,"roll":-8.193978495553388},"location":"Right Ankle"},{"euler":{"heading":68.23389625247422,"pitch":-161.50527388616396,"roll":52.061434383079295},"location":"Right Hip"},{"euler":{"heading":31.960806687949297,"pitch":-104.51114252555828,"roll":9.654187549611072},"location":"Right Knee"},{"euler":{"heading":12.161663763555948,"pitch":-134.29644349553635,"roll":57.710961089510064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.748"} +{"sensors":[{"euler":{"heading":29.18842148024325,"pitch":127.72270032966057,"roll":19.097461380112282},"location":"Left Knee"},{"euler":{"heading":39.52369741411801,"pitch":100.29350054626482,"roll":26.284879630175077},"location":"Left Ankle"},{"euler":{"heading":38.66511261523523,"pitch":-11.657426630815685,"roll":-8.365776150244535},"location":"Right Ankle"},{"euler":{"heading":67.81990798343273,"pitch":-161.4512644395446,"roll":52.715519588366696},"location":"Right Hip"},{"euler":{"heading":31.98398443323548,"pitch":-105.2116288932312,"roll":10.043801389368328},"location":"Right Knee"},{"euler":{"heading":10.992440521348671,"pitch":-132.5381598127793,"roll":57.173651669105695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.849"} +{"sensors":[{"euler":{"heading":26.426203340164836,"pitch":128.78356196561558,"roll":19.545979060926445},"location":"Left Knee"},{"euler":{"heading":37.08847979727649,"pitch":99.55214441490871,"roll":24.87252380135853},"location":"Left Ankle"},{"euler":{"heading":38.37120424870191,"pitch":-11.119264363994176,"roll":-8.794715717109078},"location":"Right Ankle"},{"euler":{"heading":67.76630960721644,"pitch":-161.34888486871114,"roll":53.41440052675683},"location":"Right Hip"},{"euler":{"heading":32.51425880134092,"pitch":-105.89304401082266,"roll":9.968291094143},"location":"Right Knee"},{"euler":{"heading":9.916175656317336,"pitch":-130.83417188330768,"roll":56.425860229967995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.949"} +{"sensors":[{"euler":{"heading":55.716249703382985,"pitch":130.79582867054756,"roll":21.158728979876017},"location":"Left Knee"},{"euler":{"heading":32.88881714646323,"pitch":98.54242719317465,"roll":21.47204338904407},"location":"Left Ankle"},{"euler":{"heading":37.64898248198889,"pitch":-10.525279203593543,"roll":-9.325539824103467},"location":"Right Ankle"},{"euler":{"heading":68.00185277365662,"pitch":-161.2859706846812,"roll":54.11814416189391},"location":"Right Hip"},{"euler":{"heading":33.71539155767174,"pitch":-106.43829587704299,"roll":9.305432947530953},"location":"Right Knee"},{"euler":{"heading":9.409485541631206,"pitch":-129.64899413006603,"roll":55.8383820074792},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.49"} +{"sensors":[{"euler":{"heading":79.33029857409684,"pitch":132.6939676612877,"roll":22.766698879206384},"location":"Left Knee"},{"euler":{"heading":29.479864497016845,"pitch":98.08060262274172,"roll":18.323689719140674},"location":"Left Ankle"},{"euler":{"heading":36.165831945419406,"pitch":-9.874835990386497,"roll":-10.186369017228907},"location":"Right Ankle"},{"euler":{"heading":68.37901979717209,"pitch":-161.41334574381978,"roll":54.826287930129304},"location":"Right Hip"},{"euler":{"heading":35.67985350336088,"pitch":-106.77710270382842,"roll":7.920848524121058},"location":"Right Knee"},{"euler":{"heading":9.398889148005107,"pitch":-128.9689466212616,"roll":55.419748449907544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.151"} +{"sensors":[{"euler":{"heading":66.05544366169292,"pitch":133.47813303178552,"roll":24.031460923383808},"location":"Left Knee"},{"euler":{"heading":28.323577390599368,"pitch":98.0194275359331,"roll":16.895751468392966},"location":"Left Ankle"},{"euler":{"heading":33.72669653700818,"pitch":-9.77972666981568,"roll":-11.036655592006014},"location":"Right Ankle"},{"euler":{"heading":68.96727320201511,"pitch":-161.65345572048548,"roll":55.425452424303025},"location":"Right Hip"},{"euler":{"heading":38.53092209027647,"pitch":-106.56643879442665,"roll":5.633489059501393},"location":"Right Knee"},{"euler":{"heading":9.431829985850634,"pitch":-128.4189869625259,"roll":55.243077836026536},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.252"} +{"sensors":[{"euler":{"heading":56.036185961149066,"pitch":133.49210374067727,"roll":24.99160804047334},"location":"Left Knee"},{"euler":{"heading":27.79892761313001,"pitch":98.2256652599082,"roll":15.770114345781067},"location":"Left Ankle"},{"euler":{"heading":30.45129399197236,"pitch":-9.604485001593797,"roll":-12.002253874271469},"location":"Right Ankle"},{"euler":{"heading":70.04941051679413,"pitch":-161.13350710906914,"roll":55.30174698891224},"location":"Right Hip"},{"euler":{"heading":41.323162619548,"pitch":-106.51850165592789,"roll":2.9156759545390596},"location":"Right Knee"},{"euler":{"heading":9.732286058539737,"pitch":-128.19482632408642,"roll":55.35075184355346},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.353"} +{"sensors":[{"euler":{"heading":48.16536593554669,"pitch":133.05884741522968,"roll":25.771241623618387},"location":"Left Knee"},{"euler":{"heading":28.0233287874277,"pitch":98.5668626346877,"roll":15.137998362140276},"location":"Left Ankle"},{"euler":{"heading":28.80388149510256,"pitch":-9.98693617710647,"roll":-12.418211008286965},"location":"Right Ankle"},{"euler":{"heading":71.31001774744756,"pitch":-160.377643802826,"roll":54.458536185746965},"location":"Right Hip"},{"euler":{"heading":42.39065804976394,"pitch":-105.93410154026981,"roll":1.3244095221212147},"location":"Right Knee"},{"euler":{"heading":10.28150985119695,"pitch":-128.70542586368157,"roll":55.65626913633077},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.454"} +{"sensors":[{"euler":{"heading":42.31527786501448,"pitch":132.15550810833216,"roll":26.310244009547734},"location":"Left Knee"},{"euler":{"heading":28.956176984168664,"pitch":99.10747063312205,"roll":15.107035355839505},"location":"Left Ankle"},{"euler":{"heading":29.940120530090475,"pitch":-10.743232940396629,"roll":-12.081163337591551},"location":"Right Ankle"},{"euler":{"heading":71.83090511425303,"pitch":-159.90176770142594,"roll":53.33881728704227},"location":"Right Hip"},{"euler":{"heading":41.07090362808553,"pitch":-105.0545192902408,"roll":1.882135546347165},"location":"Right Knee"},{"euler":{"heading":10.980916612410416,"pitch":-129.73225888612527,"roll":56.09919273392327},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.555"} +{"sensors":[{"euler":{"heading":38.0959816798077,"pitch":130.98138042512107,"roll":26.411528840059262},"location":"Left Knee"},{"euler":{"heading":30.1421089091564,"pitch":99.70961418272998,"roll":15.47735331385699},"location":"Left Ankle"},{"euler":{"heading":32.874040478888,"pitch":-11.374079264481221,"roll":-10.914107694896234},"location":"Right Ankle"},{"euler":{"heading":71.0505096732515,"pitch":-159.94678388690267,"roll":52.48613486703659},"location":"Right Hip"},{"euler":{"heading":38.18886194046995,"pitch":-104.33589623221687,"roll":4.301196980733229},"location":"Right Knee"},{"euler":{"heading":11.577371334418324,"pitch":-130.9230080328546,"roll":56.69023310280001},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.656"} +{"sensors":[{"euler":{"heading":35.17035895421823,"pitch":129.71085577934636,"roll":25.98593719574589},"location":"Left Knee"},{"euler":{"heading":31.642281051389457,"pitch":100.33771318089114,"roll":16.38913964447135},"location":"Left Ankle"},{"euler":{"heading":36.04327560910891,"pitch":-11.938971073587345,"roll":-9.644037054711747},"location":"Right Ankle"},{"euler":{"heading":69.21057059935734,"pitch":-160.46908782873422,"roll":52.059391637851604},"location":"Right Hip"},{"euler":{"heading":35.05615936617004,"pitch":-103.80453828898074,"roll":7.18574637685056},"location":"Right Knee"},{"euler":{"heading":12.244107037473576,"pitch":-132.48205717739827,"roll":57.409355339026476},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.757"} +{"sensors":[{"euler":{"heading":33.63693187006897,"pitch":128.51362723037886,"roll":24.756596240884008},"location":"Left Knee"},{"euler":{"heading":33.68512750590417,"pitch":100.85850184987497,"roll":18.302183666590935},"location":"Left Ankle"},{"euler":{"heading":37.972367415430185,"pitch":-12.194479365628236,"roll":-8.928789241573927},"location":"Right Ankle"},{"euler":{"heading":67.94184280194058,"pitch":-160.8465827268806,"roll":51.881328091859984},"location":"Right Hip"},{"euler":{"heading":32.93105868701608,"pitch":-103.93014710620912,"roll":9.159755321045276},"location":"Right Knee"},{"euler":{"heading":13.063513652954208,"pitch":-134.18412196725674,"roll":58.17303197348556},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.859"} +{"sensors":[{"euler":{"heading":33.766620126080554,"pitch":127.73944095012577,"roll":22.496751877137637},"location":"Left Knee"},{"euler":{"heading":36.689556857308176,"pitch":101.78159391672693,"roll":21.63253727603915},"location":"Left Ankle"},{"euler":{"heading":39.016827991535585,"pitch":-12.366229375092596,"roll":-8.54317285627623},"location":"Right Ankle"},{"euler":{"heading":67.09325971228924,"pitch":-161.2832933742683,"roll":52.08881189943042},"location":"Right Hip"},{"euler":{"heading":32.059043487009035,"pitch":-104.3351274680404,"roll":10.297948287512762},"location":"Right Knee"},{"euler":{"heading":12.408639293971564,"pitch":-134.05364653464568,"roll":58.30520501109103},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.959"} +{"sensors":[{"euler":{"heading":34.39599579918098,"pitch":127.0507896946205,"roll":20.39836726355311},"location":"Left Knee"},{"euler":{"heading":38.786916560881394,"pitch":101.65373708777457,"roll":24.461786721926035},"location":"Left Ankle"},{"euler":{"heading":39.59260171118899,"pitch":-12.468133909698349,"roll":-8.420159889225994},"location":"Right Ankle"},{"euler":{"heading":66.52329226621274,"pitch":-161.66062603252885,"roll":52.615441360522205},"location":"Right Hip"},{"euler":{"heading":31.892006695841424,"pitch":-104.8204902570177,"roll":10.852246126992856},"location":"Right Knee"},{"euler":{"heading":11.218445046161163,"pitch":-132.4789821996771,"roll":57.883782105088805},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.60"} +{"sensors":[{"euler":{"heading":32.9255951661283,"pitch":127.39078617103304,"roll":19.795668384479477},"location":"Left Knee"},{"euler":{"heading":37.98342196113613,"pitch":100.87216817589243,"roll":24.72701529244552},"location":"Left Ankle"},{"euler":{"heading":39.78461514513145,"pitch":-12.239298171743883,"roll":-8.60016859460881},"location":"Right Ankle"},{"euler":{"heading":66.46088446281675,"pitch":-161.8058697995464,"roll":53.27627977154094},"location":"Right Hip"},{"euler":{"heading":31.463917080291324,"pitch":-105.42020625439378,"roll":11.43705073446882},"location":"Right Knee"},{"euler":{"heading":9.95259522359159,"pitch":-130.83413130464388,"roll":57.00304117978182},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.161"} +{"sensors":[{"euler":{"heading":27.7977297038091,"pitch":129.05991595488737,"roll":21.057674706728214},"location":"Left Knee"},{"euler":{"heading":34.47771910966483,"pitch":99.83795402648872,"roll":22.33918804639904},"location":"Left Ankle"},{"euler":{"heading":39.430539079339006,"pitch":-11.746855649589344,"roll":-8.828452369793812},"location":"Right Ankle"},{"euler":{"heading":66.57625363507,"pitch":-161.9432425721827,"roll":53.96343559462431},"location":"Right Hip"},{"euler":{"heading":31.571186458044046,"pitch":-106.06394454390959,"roll":11.466820008933825},"location":"Right Knee"},{"euler":{"heading":8.92800938790057,"pitch":-129.41114510651317,"roll":56.20608066627265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.261"} +{"sensors":[{"euler":{"heading":56.53009799422002,"pitch":131.15885535299546,"roll":22.675257385906754},"location":"Left Knee"},{"euler":{"heading":30.626277689349408,"pitch":99.00318964694569,"roll":18.995386463783532},"location":"Left Ankle"},{"euler":{"heading":38.427185068937845,"pitch":-11.015881918013188,"roll":-9.516590586162552},"location":"Right Ankle"},{"euler":{"heading":66.82529578539878,"pitch":-162.16267269251333,"roll":54.71602254136611},"location":"Right Hip"},{"euler":{"heading":32.538924035530535,"pitch":-106.59293951025495,"roll":10.792211183940953},"location":"Right Knee"},{"euler":{"heading":8.582540158410229,"pitch":-128.58130904644028,"roll":55.60978241951511},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.362"} +{"sensors":[{"euler":{"heading":47.22614104543636,"pitch":132.23768085262066,"roll":23.960608410245918},"location":"Left Knee"},{"euler":{"heading":28.70340034267434,"pitch":98.70562085086478,"roll":16.914967657907617},"location":"Left Ankle"},{"euler":{"heading":36.43441430026614,"pitch":-10.681433924897645,"roll":-10.365191398077615},"location":"Right Ankle"},{"euler":{"heading":67.3740390679942,"pitch":-162.41473730837862,"roll":55.349457252535316},"location":"Right Hip"},{"euler":{"heading":34.722508489927755,"pitch":-106.60787987708692,"roll":9.081892560480414},"location":"Right Knee"},{"euler":{"heading":8.406685868177382,"pitch":-128.0206609207768,"roll":55.19505845704165},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.462"} +{"sensors":[{"euler":{"heading":40.35718002706337,"pitch":132.57178993745765,"roll":24.88587821375628},"location":"Left Knee"},{"euler":{"heading":27.818606157539147,"pitch":98.50175664714861,"roll":15.67454175192518},"location":"Left Ankle"},{"euler":{"heading":33.019143486320026,"pitch":-10.569050114976088,"roll":-11.287647122178774},"location":"Right Ankle"},{"euler":{"heading":68.64974722755267,"pitch":-162.00667638163657,"roll":55.17947308331969},"location":"Right Hip"},{"euler":{"heading":37.29520566044384,"pitch":-106.32413366152566,"roll":6.636526411509173},"location":"Right Knee"},{"euler":{"heading":8.506454180126976,"pitch":-127.79277386261533,"roll":55.18244884415876},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.563"} +{"sensors":[{"euler":{"heading":34.88151494470755,"pitch":132.4876719261559,"roll":25.622061569808416},"location":"Left Knee"},{"euler":{"heading":28.158347710543637,"pitch":98.40646462425316,"roll":15.200149794399678},"location":"Left Ankle"},{"euler":{"heading":30.858871393005668,"pitch":-10.610044189163046,"roll":-11.795362398221236},"location":"Right Ankle"},{"euler":{"heading":69.93805328659451,"pitch":-161.239096607951,"roll":54.38951072924615},"location":"Right Hip"},{"euler":{"heading":38.38507968769946,"pitch":-105.98414447585374,"roll":5.2382826710425885},"location":"Right Knee"},{"euler":{"heading":8.909190976545306,"pitch":-128.35945453410662,"roll":55.432632255141854},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.667"} +{"sensors":[{"euler":{"heading":30.742874203228883,"pitch":132.15590740631464,"roll":26.02067669851097},"location":"Left Knee"},{"euler":{"heading":28.72190248866774,"pitch":98.23105763325103,"roll":15.216782406564285},"location":"Left Ankle"},{"euler":{"heading":31.331423938510262,"pitch":-11.06331023887134,"roll":-11.57107092156854},"location":"Right Ankle"},{"euler":{"heading":70.70159680586643,"pitch":-160.66938426043387,"roll":53.37742810130099},"location":"Right Hip"},{"euler":{"heading":37.37496891035443,"pitch":-105.39706727664611,"roll":5.6615141222983745},"location":"Right Knee"},{"euler":{"heading":9.38758411577701,"pitch":-129.38352620654118,"roll":55.81954029450497},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.768"} +{"sensors":[{"euler":{"heading":28.127049679348847,"pitch":131.41574919641369,"roll":26.060326982541437},"location":"Left Knee"},{"euler":{"heading":29.62923859668366,"pitch":98.26258606252641,"roll":15.642059068800958},"location":"Left Ankle"},{"euler":{"heading":34.048910034517995,"pitch":-11.47940469859163,"roll":-10.630897008844624},"location":"Right Ankle"},{"euler":{"heading":70.31013780118629,"pitch":-160.5997638272672,"roll":52.5389087534715},"location":"Right Hip"},{"euler":{"heading":34.63350225538516,"pitch":-104.60424221478057,"roll":7.899421693240971},"location":"Right Knee"},{"euler":{"heading":10.082502584004775,"pitch":-130.75013590516397,"roll":56.35989358075813},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.869"} +{"sensors":[{"euler":{"heading":26.674871103023644,"pitch":130.47251432780592,"roll":25.59679969604167},"location":"Left Knee"},{"euler":{"heading":31.12127317059273,"pitch":98.49325581161862,"roll":16.686810467909886},"location":"Left Ankle"},{"euler":{"heading":37.05876528554232,"pitch":-12.058058664489407,"roll":-9.358040224956168},"location":"Right Ankle"},{"euler":{"heading":69.18699506694037,"pitch":-160.8161954906674,"roll":52.09525479721065},"location":"Right Hip"},{"euler":{"heading":31.47321498118563,"pitch":-103.94628765129565,"roll":10.982713238060084},"location":"Right Knee"},{"euler":{"heading":10.877422755814006,"pitch":-132.4683168803242,"roll":57.06287687725702},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.970"} +{"sensors":[{"euler":{"heading":26.371679708067916,"pitch":129.47631721951745,"roll":24.45203787646198},"location":"Left Knee"},{"euler":{"heading":33.22285497691556,"pitch":98.88628765514875,"roll":18.595319806669515},"location":"Left Ankle"},{"euler":{"heading":39.118950556430285,"pitch":-12.117934222416121,"roll":-8.568927608337445},"location":"Right Ankle"},{"euler":{"heading":67.88686733602982,"pitch":-161.12499995381665,"roll":51.81865484901081},"location":"Right Hip"},{"euler":{"heading":28.665598833724236,"pitch":-103.89788926566558,"roll":13.493277456965567},"location":"Right Knee"},{"euler":{"heading":11.867185058039752,"pitch":-134.65325863235552,"roll":57.77627794163113},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.70"} +{"sensors":[{"euler":{"heading":27.49084767867105,"pitch":128.67595351301995,"roll":22.346016063456236},"location":"Left Knee"},{"euler":{"heading":35.97811138900856,"pitch":99.86618967567492,"roll":21.731320250213557},"location":"Left Ankle"},{"euler":{"heading":39.84863347676315,"pitch":-11.886739356649484,"roll":-8.259160186185238},"location":"Right Ankle"},{"euler":{"heading":67.28605816583,"pitch":-161.21417957255906,"roll":51.91319429145141},"location":"Right Hip"},{"euler":{"heading":26.943420640828105,"pitch":-104.27621161394515,"roll":15.134821842372867},"location":"Right Knee"},{"euler":{"heading":11.738242744650472,"pitch":-135.29860906309534,"roll":58.06509832802466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.171"} +{"sensors":[{"euler":{"heading":29.19794710346238,"pitch":127.77931042057747,"roll":20.107392184181293},"location":"Left Knee"},{"euler":{"heading":37.87739386988428,"pitch":100.51506628802657,"roll":24.676024433478798},"location":"Left Ankle"},{"euler":{"heading":40.16072228835055,"pitch":-11.433779271894801,"roll":-8.293960669928802},"location":"Right Ankle"},{"euler":{"heading":66.6276476606019,"pitch":-161.41972744711597,"roll":52.46247467142248},"location":"Right Hip"},{"euler":{"heading":26.199177472916745,"pitch":-105.0882253806034,"roll":16.08513676010856},"location":"Right Knee"},{"euler":{"heading":11.044079464697653,"pitch":-133.8671113001737,"roll":57.945945009808426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.271"} +{"sensors":[{"euler":{"heading":29.281805261595423,"pitch":127.93110026731237,"roll":19.10431013795258},"location":"Left Knee"},{"euler":{"heading":37.7262210011149,"pitch":99.8180321166297,"roll":25.378662345395934},"location":"Left Ankle"},{"euler":{"heading":40.14872142306616,"pitch":-10.80393059779765,"roll":-8.652442679652138},"location":"Right Ankle"},{"euler":{"heading":66.3679713169665,"pitch":-161.46898052080857,"roll":53.179481180169184},"location":"Right Hip"},{"euler":{"heading":26.08325251334367,"pitch":-105.9537931687799,"roll":16.51104558894579},"location":"Right Knee"},{"euler":{"heading":9.780098337983166,"pitch":-132.1437225013775,"roll":57.27332191747853},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.372"} +{"sensors":[{"euler":{"heading":25.010393664808486,"pitch":129.36452817859578,"roll":20.128871170669882},"location":"Left Knee"},{"euler":{"heading":34.71302131650858,"pitch":98.81869419375566,"roll":23.42825306463958},"location":"Left Ankle"},{"euler":{"heading":39.746504824553654,"pitch":-10.055637000980031,"roll":-8.84008204083652},"location":"Right Ankle"},{"euler":{"heading":66.38721560797484,"pitch":-161.5611108606955,"roll":53.9531339608065},"location":"Right Hip"},{"euler":{"heading":26.511520354019087,"pitch":-106.7608051191373,"roll":16.444596494303084},"location":"Right Knee"},{"euler":{"heading":8.679753589312838,"pitch":-130.4891460056226,"roll":56.52793996898795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.473"} +{"sensors":[{"euler":{"heading":54.04568983331221,"pitch":131.51772566941767,"roll":21.745626599394534},"location":"Left Knee"},{"euler":{"heading":30.81299757146571,"pitch":97.73011367649745,"roll":20.03436202575049},"location":"Left Ankle"},{"euler":{"heading":38.882092627285274,"pitch":-9.319071697939398,"roll":-9.41415314081241},"location":"Right Ankle"},{"euler":{"heading":66.5278242725042,"pitch":-161.82283653788784,"roll":54.81966169450376},"location":"Right Hip"},{"euler":{"heading":27.753981737289045,"pitch":-107.40187050633686,"roll":15.736429833665728},"location":"Right Knee"},{"euler":{"heading":8.266307737068729,"pitch":-129.45569496453984,"roll":55.94264203453647},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.573"} +{"sensors":[{"euler":{"heading":44.59737959682427,"pitch":132.91318680796854,"roll":23.11346337214063},"location":"Left Knee"},{"euler":{"heading":28.172576001358202,"pitch":97.268271366853,"roll":17.498392293214238},"location":"Left Ankle"},{"euler":{"heading":37.37764164358713,"pitch":-8.955782800665515,"roll":-10.195209307620807},"location":"Right Ankle"},{"euler":{"heading":66.79158718389445,"pitch":-162.43421996072578,"roll":55.64537819850902},"location":"Right Hip"},{"euler":{"heading":29.954423976728535,"pitch":-107.63712675644946,"roll":14.19194071262624},"location":"Right Knee"},{"euler":{"heading":8.225044106379752,"pitch":-128.6454023331914,"roll":55.573543826258955},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.674"} +{"sensors":[{"euler":{"heading":37.87776110732862,"pitch":133.55164751415455,"roll":24.00041162883452},"location":"Left Knee"},{"euler":{"heading":27.276952229928874,"pitch":97.05844753769192,"roll":16.214358779567984},"location":"Left Ankle"},{"euler":{"heading":34.19573792231153,"pitch":-8.900535882069235,"roll":-10.96142064373823},"location":"Right Ankle"},{"euler":{"heading":67.52479773062996,"pitch":-162.58910997241114,"roll":55.92286918226014},"location":"Right Hip"},{"euler":{"heading":33.11167381504392,"pitch":-107.3208718956545,"roll":11.58152824356359},"location":"Right Knee"},{"euler":{"heading":7.923718647631897,"pitch":-127.96569649378444,"roll":55.42386059256576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.775"} +{"sensors":[{"euler":{"heading":32.97027559610768,"pitch":133.57646108651693,"roll":24.719754695090817},"location":"Left Knee"},{"euler":{"heading":27.108420689158603,"pitch":97.15395794982527,"roll":15.379460772997893},"location":"Left Ankle"},{"euler":{"heading":31.465547173587083,"pitch":-9.082411319601626,"roll":-11.470441649971306},"location":"Right Ankle"},{"euler":{"heading":68.68400864136554,"pitch":-161.9861026309104,"roll":55.508089404026336},"location":"Right Hip"},{"euler":{"heading":35.667099993145975,"pitch":-106.8385056022478,"roll":9.106470212094226},"location":"Right Knee"},{"euler":{"heading":8.134782378400192,"pitch":-127.90950653590376,"roll":55.555954807845886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.876"} +{"sensors":[{"euler":{"heading":29.4871095103054,"pitch":133.1411255827518,"roll":25.227982925339266},"location":"Left Knee"},{"euler":{"heading":27.380653473815066,"pitch":97.31172663293626,"roll":14.986646139177953},"location":"Left Ankle"},{"euler":{"heading":30.93637326096153,"pitch":-9.621540250596768,"roll":-11.42569092472517},"location":"Right Ankle"},{"euler":{"heading":69.66289580598377,"pitch":-161.32749547087644,"roll":54.5203988346348},"location":"Right Hip"},{"euler":{"heading":36.16613771123472,"pitch":-106.27717290477467,"roll":8.31156163520321},"location":"Right Knee"},{"euler":{"heading":8.729717971678832,"pitch":-128.36995809898434,"roll":55.93113179900558},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.977"} +{"sensors":[{"euler":{"heading":27.19990115113656,"pitch":132.40831880028716,"roll":25.42627244941672},"location":"Left Knee"},{"euler":{"heading":28.221869373117777,"pitch":97.63879211869833,"roll":15.142494422352001},"location":"Left Ankle"},{"euler":{"heading":32.768248444248236,"pitch":-10.365032811898981,"roll":-10.64797896343938},"location":"Right Ankle"},{"euler":{"heading":69.93527516781619,"pitch":-161.07042080007827,"roll":53.35912341054194},"location":"Right Hip"},{"euler":{"heading":34.41660258202416,"pitch":-105.45413563231537,"roll":9.702852880929157},"location":"Right Knee"},{"euler":{"heading":9.573569042489662,"pitch":-129.5119367730951,"roll":56.49654179784002},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.79"} +{"sensors":[{"euler":{"heading":25.951394747389184,"pitch":131.4776813627777,"roll":25.171692241488795},"location":"Left Knee"},{"euler":{"heading":29.46951494846774,"pitch":98.04176106286646,"roll":15.771032874858651},"location":"Left Ankle"},{"euler":{"heading":35.85558297719821,"pitch":-11.109144392799562,"roll":-9.26053641511061},"location":"Right Ankle"},{"euler":{"heading":69.27244825566012,"pitch":-161.1231751031984,"roll":52.61152490934186},"location":"Right Hip"},{"euler":{"heading":31.65828153076489,"pitch":-104.66777256281625,"roll":12.430288638414925},"location":"Right Knee"},{"euler":{"heading":10.359638298773845,"pitch":-130.94956573331996,"roll":57.138963982365055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.179"} +{"sensors":[{"euler":{"heading":25.60093883025481,"pitch":130.40964904921134,"roll":24.376524731764015},"location":"Left Knee"},{"euler":{"heading":31.186686773606084,"pitch":98.54313969299872,"roll":17.106726339517202},"location":"Left Ankle"},{"euler":{"heading":38.23485642723038,"pitch":-11.294957192519057,"roll":-8.33206615021343},"location":"Right Ankle"},{"euler":{"heading":68.01628938977196,"pitch":-161.41466876990506,"roll":52.20852580790615},"location":"Right Hip"},{"euler":{"heading":28.722006200239,"pitch":-104.42589152118454,"roll":15.05285528049016},"location":"Right Knee"},{"euler":{"heading":11.211356713330998,"pitch":-132.7736274217268,"roll":57.82729134393281},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.280"} +{"sensors":[{"euler":{"heading":26.56844581692363,"pitch":129.5026663023699,"roll":22.563060866673077},"location":"Left Knee"},{"euler":{"heading":33.4845013303699,"pitch":99.1811292563827,"roll":19.837360819130986},"location":"Left Ankle"},{"euler":{"heading":39.558745626734336,"pitch":-11.540383563266401,"roll":-7.771346005112615},"location":"Right Ankle"},{"euler":{"heading":67.45742718581053,"pitch":-161.5714185870917,"roll":52.046002423741065},"location":"Right Hip"},{"euler":{"heading":26.924208547011755,"pitch":-104.59940969790124,"roll":16.777911944432613},"location":"Right Knee"},{"euler":{"heading":11.409336979746215,"pitch":-133.59777762471475,"roll":58.23016523687847},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.380"} +{"sensors":[{"euler":{"heading":28.739950848564852,"pitch":128.45009322124417,"roll":20.21461100307837},"location":"Left Knee"},{"euler":{"heading":36.63824520894052,"pitch":100.35296087465866,"roll":23.42001643248972},"location":"Left Ankle"},{"euler":{"heading":40.1909012766898,"pitch":-11.691120078167032,"roll":-7.525557855487311},"location":"Right Ankle"},{"euler":{"heading":66.85714404117661,"pitch":-161.79649189687518,"roll":52.291329366949974},"location":"Right Hip"},{"euler":{"heading":26.213173169618308,"pitch":-105.13692165948697,"roll":17.738396657867963},"location":"Right Knee"},{"euler":{"heading":10.54290478663425,"pitch":-132.16754801382882,"roll":58.07747401896743},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.481"} +{"sensors":[{"euler":{"heading":29.507274498702113,"pitch":128.3299891395903,"roll":18.856501932917762},"location":"Left Knee"},{"euler":{"heading":37.7639268814486,"pitch":99.88537804249786,"roll":25.22905307296251},"location":"Left Ankle"},{"euler":{"heading":40.45880671164525,"pitch":-11.922642715821837,"roll":-7.433947052129074},"location":"Right Ankle"},{"euler":{"heading":66.71046070070905,"pitch":-161.95259266464117,"roll":52.79274906212261},"location":"Right Hip"},{"euler":{"heading":26.362251017550978,"pitch":-105.52817791569507,"roll":18.13189072801947},"location":"Right Knee"},{"euler":{"heading":9.024909217301007,"pitch":-130.4155801960885,"roll":57.24370654932213},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.582"} +{"sensors":[{"euler":{"heading":26.080858465545365,"pitch":129.4222620892352,"roll":19.45279232243375},"location":"Left Knee"},{"euler":{"heading":35.88539391377712,"pitch":98.71911053785185,"roll":24.285741735660757},"location":"Left Ankle"},{"euler":{"heading":40.41062854587433,"pitch":-12.048907473908919,"roll":-7.481847487004321},"location":"Right Ankle"},{"euler":{"heading":66.89356723067063,"pitch":-162.05817251331388,"roll":53.38915863087523},"location":"Right Hip"},{"euler":{"heading":27.049120020683343,"pitch":-105.82870818245058,"roll":18.02421971083522},"location":"Right Knee"},{"euler":{"heading":7.752249566433761,"pitch":-128.71136202784345,"roll":56.34656376221129},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.683"} +{"sensors":[{"euler":{"heading":55.49293477379622,"pitch":131.25486634227843,"roll":21.009008238755214},"location":"Left Knee"},{"euler":{"heading":32.15343466040283,"pitch":97.80052621391984,"roll":21.19672714936177},"location":"Left Ankle"},{"euler":{"heading":39.81232139981932,"pitch":-11.830224079831327,"roll":-7.864073931276655},"location":"Right Ankle"},{"euler":{"heading":67.39426780701118,"pitch":-162.02885762703082,"roll":53.964506631676294},"location":"Right Hip"},{"euler":{"heading":28.134714680435923,"pitch":-106.17793953013326,"roll":17.42143974278039},"location":"Right Knee"},{"euler":{"heading":7.173931230146264,"pitch":-127.51408532202716,"roll":55.63583184231835},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.783"} +{"sensors":[{"euler":{"heading":79.46254985790513,"pitch":133.09744879506616,"roll":22.559876620422987},"location":"Left Knee"},{"euler":{"heading":28.788554506975565,"pitch":97.26064222566781,"roll":17.991328608549978},"location":"Left Ankle"},{"euler":{"heading":38.632772478377085,"pitch":-11.40047592924407,"roll":-8.525042418895676},"location":"Right Ankle"},{"euler":{"heading":67.88747519829654,"pitch":-162.23419831432605,"roll":54.60997615888303},"location":"Right Hip"},{"euler":{"heading":29.81432431500398,"pitch":-106.43449719688445,"roll":16.21012471834584},"location":"Right Knee"},{"euler":{"heading":7.086849804104569,"pitch":-126.77552731158146,"roll":55.11755970093751},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.884"} +{"sensors":[{"euler":{"heading":66.28263702076833,"pitch":133.86701428468905,"roll":23.784859539596543},"location":"Left Knee"},{"euler":{"heading":27.240291763243775,"pitch":97.17045027043233,"roll":16.11938157265138},"location":"Left Ankle"},{"euler":{"heading":36.460061663415324,"pitch":-11.237529227633951,"roll":-9.42634701949101},"location":"Right Ankle"},{"euler":{"heading":68.45183617695267,"pitch":-162.55080275247673,"roll":55.21188137054844},"location":"Right Hip"},{"euler":{"heading":32.4381014485874,"pitch":-106.28615014771448,"roll":14.091443029890328},"location":"Right Knee"},{"euler":{"heading":7.205797471600981,"pitch":-126.13695111236798,"roll":54.80316615477136},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.984"} +{"sensors":[{"euler":{"heading":56.269774096186495,"pitch":133.9034457709746,"roll":24.619831903495115},"location":"Left Knee"},{"euler":{"heading":26.74546591220901,"pitch":97.18396273987366,"roll":15.02003411480745},"location":"Left Ankle"},{"euler":{"heading":32.97474513537368,"pitch":-11.012793819197512,"roll":-10.574852317185016},"location":"Right Ankle"},{"euler":{"heading":69.56197286027448,"pitch":-162.14168922622824,"roll":55.05498409637212},"location":"Right Hip"},{"euler":{"heading":35.41879036460429,"pitch":-106.1340786771518,"roll":11.252778090125089},"location":"Right Knee"},{"euler":{"heading":7.457769689922967,"pitch":-125.83260357494913,"roll":54.87539772754982},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.85"} +{"sensors":[{"euler":{"heading":48.207994954582986,"pitch":133.60347448806613,"roll":25.22079958822332},"location":"Left Knee"},{"euler":{"heading":26.71485742657465,"pitch":97.16051799097406,"roll":14.358199225015357},"location":"Left Ankle"},{"euler":{"heading":30.67983068882676,"pitch":-11.053193961507588,"roll":-11.191989296797887},"location":"Right Ankle"},{"euler":{"heading":70.9584667881252,"pitch":-161.37315698148217,"roll":54.25308251697527},"location":"Right Hip"},{"euler":{"heading":36.87839943281347,"pitch":-105.71704353506642,"roll":9.39757784605488},"location":"Right Knee"},{"euler":{"heading":7.937568417508815,"pitch":-126.2230815270873,"roll":55.18451589015831},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.187"} +{"sensors":[{"euler":{"heading":42.0172452322971,"pitch":133.02882726125094,"roll":25.53867857914906},"location":"Left Knee"},{"euler":{"heading":27.68266160508536,"pitch":97.2641548820731,"roll":14.520320703253448},"location":"Left Ankle"},{"euler":{"heading":31.059974145560645,"pitch":-11.630774037151358,"roll":-10.953749947859016},"location":"Right Ankle"},{"euler":{"heading":71.82843033898048,"pitch":-160.79069215139327,"roll":53.129126151988316},"location":"Right Hip"},{"euler":{"heading":36.0759023808474,"pitch":-105.07213998528404,"roll":9.603515897025455},"location":"Right Knee"},{"euler":{"heading":8.716872086670357,"pitch":-127.27796159404356,"roll":55.67231497848324},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.288"} +{"sensors":[{"euler":{"heading":37.57846873526652,"pitch":132.1521248496514,"roll":25.481491513715966},"location":"Left Knee"},{"euler":{"heading":29.063684063185406,"pitch":97.42333170584897,"roll":15.225879305112535},"location":"Left Ankle"},{"euler":{"heading":33.761248856934095,"pitch":-12.123685315050233,"roll":-9.977173722618705},"location":"Right Ankle"},{"euler":{"heading":71.67274063040823,"pitch":-160.66196985357817,"roll":52.147757894260934},"location":"Right Hip"},{"euler":{"heading":33.33796100381054,"pitch":-104.28049706853965,"roll":11.817214006505274},"location":"Right Knee"},{"euler":{"heading":9.533324307770984,"pitch":-128.61894127245355,"roll":56.28612613766817},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.390"} +{"sensors":[{"euler":{"heading":34.66933092185214,"pitch":131.0496626901377,"roll":24.936283830687668},"location":"Left Knee"},{"euler":{"heading":30.753322658781133,"pitch":97.73978076775849,"roll":16.42912592423449},"location":"Left Ankle"},{"euler":{"heading":36.85295516591408,"pitch":-12.593489676592736,"roll":-8.701103931468001},"location":"Right Ankle"},{"euler":{"heading":70.6653565389781,"pitch":-160.76546863636028,"roll":51.65213251861274},"location":"Right Hip"},{"euler":{"heading":30.07354468610929,"pitch":-103.84358858077488,"roll":14.801310013891595},"location":"Right Knee"},{"euler":{"heading":10.368303107343285,"pitch":-130.2782584353342,"roll":57.031798402174786},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.491"} +{"sensors":[{"euler":{"heading":33.12562043527801,"pitch":129.9153300821899,"roll":23.747337994042308},"location":"Left Knee"},{"euler":{"heading":32.88590565433506,"pitch":98.19259625079748,"roll":18.338366254611635},"location":"Left Ankle"},{"euler":{"heading":38.87908976398367,"pitch":-12.721338553737091,"roll":-7.837740253172772},"location":"Right Ankle"},{"euler":{"heading":69.20436363046076,"pitch":-161.10287971806054,"roll":51.37606738922584},"location":"Right Hip"},{"euler":{"heading":27.424425404213427,"pitch":-103.85846720482428,"roll":17.168606894513065},"location":"Right Knee"},{"euler":{"heading":11.497880907409822,"pitch":-132.49911540498525,"roll":57.855171341285185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.592"} +{"sensors":[{"euler":{"heading":33.377685420337755,"pitch":129.03753346564608,"roll":21.53593678129061},"location":"Left Knee"},{"euler":{"heading":35.38117104036356,"pitch":99.02445453759742,"roll":21.278833002684323},"location":"Left Ankle"},{"euler":{"heading":39.81275902794382,"pitch":-12.599213511487559,"roll":-7.401331819559596},"location":"Right Ankle"},{"euler":{"heading":68.45994761344207,"pitch":-161.19416352250326,"roll":51.399747084402144},"location":"Right Hip"},{"euler":{"heading":25.736899349606666,"pitch":-104.24648488118865,"roll":18.650785697895422},"location":"Right Knee"},{"euler":{"heading":11.501255293681057,"pitch":-133.57530023183097,"roll":58.136486999192485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.693"} +{"sensors":[{"euler":{"heading":34.49965332854147,"pitch":128.02920610932057,"roll":19.19006709420149},"location":"Left Knee"},{"euler":{"heading":37.74533822236478,"pitch":100.19335390340305,"roll":24.32603307629715},"location":"Left Ankle"},{"euler":{"heading":40.20269202035334,"pitch":-12.411416605250242,"roll":-7.345319238669062},"location":"Right Ankle"},{"euler":{"heading":67.76124097812729,"pitch":-161.39567011463666,"roll":51.86707232216858},"location":"Right Hip"},{"euler":{"heading":25.223169773837718,"pitch":-104.91863901802212,"roll":19.355824442565613},"location":"Right Knee"},{"euler":{"heading":10.58249555586255,"pitch":-132.23638839553848,"roll":57.998652223955126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.793"} +{"sensors":[{"euler":{"heading":34.26492974636631,"pitch":127.93724826610111,"roll":18.072105066388954},"location":"Left Knee"},{"euler":{"heading":38.17695289787297,"pitch":99.91336759300437,"roll":25.507861960503355},"location":"Left Ankle"},{"euler":{"heading":40.39711726818835,"pitch":-11.985835637264323,"roll":-7.61568146182242},"location":"Right Ankle"},{"euler":{"heading":67.45073428435738,"pitch":-161.41153979446452,"roll":52.563427433827655},"location":"Right Hip"},{"euler":{"heading":25.105739247576516,"pitch":-105.72899500422737,"roll":19.631132666641285},"location":"Right Knee"},{"euler":{"heading":9.15245101783841,"pitch":-130.55516114096216,"roll":57.16049205616354},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.894"} +{"sensors":[{"euler":{"heading":29.83967930609641,"pitch":129.22740396652068,"roll":18.921370375327417},"location":"Left Knee"},{"euler":{"heading":35.34961894389754,"pitch":99.02386704284461,"roll":23.854318572851668},"location":"Left Ankle"},{"euler":{"heading":40.0866331463376,"pitch":-11.356980413096506,"roll":-7.89599734533369},"location":"Right Ankle"},{"euler":{"heading":67.51159304696746,"pitch":-161.36644679600423,"roll":53.29461204942079},"location":"Right Hip"},{"euler":{"heading":25.461430640414143,"pitch":-106.50982840146115,"roll":19.452190068507104},"location":"Right Knee"},{"euler":{"heading":7.8626259609128715,"pitch":-128.9090090377065,"roll":56.253429118351555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.995"} +{"sensors":[{"euler":{"heading":51.95947109194,"pitch":131.29852046534424,"roll":20.54002837814841},"location":"Left Knee"},{"euler":{"heading":31.221282168023368,"pitch":97.99900378105188,"roll":20.384226239999037},"location":"Left Ankle"},{"euler":{"heading":39.220042401578496,"pitch":-10.556077995751677,"roll":-8.429077660592528},"location":"Right Ankle"},{"euler":{"heading":67.62682251912004,"pitch":-161.43860411034632,"roll":54.11082078371345},"location":"Right Hip"},{"euler":{"heading":26.501779124573776,"pitch":-107.24611162082594,"roll":18.666012070613437},"location":"Right Knee"},{"euler":{"heading":7.347541608012119,"pitch":-127.93074348043015,"roll":55.55750193181199},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.95"} +{"sensors":[{"euler":{"heading":43.507497964790744,"pitch":132.58998202173967,"roll":21.945258588518072},"location":"Left Knee"},{"euler":{"heading":28.275011985389312,"pitch":97.71372378038407,"roll":17.583108704073446},"location":"Left Ankle"},{"euler":{"heading":37.63057331885052,"pitch":-9.914595665090305,"roll":-9.309784363217151},"location":"Right Ankle"},{"euler":{"heading":67.91142212889879,"pitch":-161.86061592318876,"roll":54.90884080207606},"location":"Right Hip"},{"euler":{"heading":28.512950312671304,"pitch":-107.61509057523493,"roll":17.080658972803526},"location":"Right Knee"},{"euler":{"heading":7.413306328038115,"pitch":-127.33685543149889,"roll":55.12991522378212},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.196"} +{"sensors":[{"euler":{"heading":37.484773058795376,"pitch":133.09866425216825,"roll":22.99089469508822},"location":"Left Knee"},{"euler":{"heading":27.212194011092105,"pitch":97.69339332245137,"roll":16.154274473118946},"location":"Left Ankle"},{"euler":{"heading":34.74172063604824,"pitch":-9.857321361928607,"roll":-10.12454983234379},"location":"Right Ankle"},{"euler":{"heading":68.7449280482228,"pitch":-161.99872628270856,"roll":55.21477769482972},"location":"Right Hip"},{"euler":{"heading":31.651967296387802,"pitch":-107.23553352060249,"roll":14.433269709572224},"location":"Right Knee"},{"euler":{"heading":7.294740487828564,"pitch":-126.84702339786887,"roll":54.93919781955836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.297"} +{"sensors":[{"euler":{"heading":33.18952040528795,"pitch":132.94659143992052,"roll":23.83004921139018},"location":"Left Knee"},{"euler":{"heading":27.037560807496615,"pitch":97.87713725693474,"roll":15.247802982408933},"location":"Left Ankle"},{"euler":{"heading":31.609386533958297,"pitch":-9.282308201537424,"roll":-11.052060643738875},"location":"Right Ankle"},{"euler":{"heading":69.9862607003945,"pitch":-161.27351991492617,"roll":54.81979260310087},"location":"Right Hip"},{"euler":{"heading":33.99626928150751,"pitch":-107.27852679668936,"roll":11.93664291384086},"location":"Right Knee"},{"euler":{"heading":7.63761167159981,"pitch":-127.02804389866209,"roll":55.06388777469426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.397"} +{"sensors":[{"euler":{"heading":30.124415607384186,"pitch":132.23228970261368,"roll":24.5061449130801},"location":"Left Knee"},{"euler":{"heading":27.596117630842706,"pitch":98.28716017654202,"roll":14.849676362775995},"location":"Left Ankle"},{"euler":{"heading":30.929297311904456,"pitch":-9.612172113290868,"roll":-11.053053686688658},"location":"Right Ankle"},{"euler":{"heading":71.26425605443598,"pitch":-160.46272074808775,"roll":53.71327167686957},"location":"Right Hip"},{"euler":{"heading":34.227313819203324,"pitch":-106.74073550128483,"roll":11.116271992082025},"location":"Right Knee"},{"euler":{"heading":8.524775599631733,"pitch":-128.0360785209479,"roll":55.40858360488508},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.503"} +{"sensors":[{"euler":{"heading":28.274640295709297,"pitch":131.0984206372239,"roll":24.83255229798331},"location":"Left Knee"},{"euler":{"heading":28.56475980280607,"pitch":98.89004669522268,"roll":14.89964773277724},"location":"Left Ankle"},{"euler":{"heading":32.63165789718329,"pitch":-10.3030480493138,"roll":-10.275116967855451},"location":"Right Ankle"},{"euler":{"heading":71.78749018241692,"pitch":-160.13332970711332,"roll":52.45041493198257},"location":"Right Hip"},{"euler":{"heading":32.63884585473775,"pitch":-105.83198471964016,"roll":12.175367000098303},"location":"Right Knee"},{"euler":{"heading":9.607902911484842,"pitch":-129.3049423858401,"roll":55.95235726843273},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.603"} +{"sensors":[{"euler":{"heading":27.41403013118,"pitch":129.72758293605605,"roll":24.652285596003832},"location":"Left Knee"},{"euler":{"heading":29.857288794679857,"pitch":99.5901616790609,"roll":15.438326112838622},"location":"Left Ankle"},{"euler":{"heading":35.731852171330836,"pitch":-10.934149773453152,"roll":-8.887471042023428},"location":"Right Ankle"},{"euler":{"heading":71.44302372340002,"pitch":-160.13848265199738,"roll":51.640624563319165},"location":"Right Hip"},{"euler":{"heading":29.834047193200284,"pitch":-104.96806163182892,"roll":14.715167505908443},"location":"Right Knee"},{"euler":{"heading":10.774195828687821,"pitch":-130.84549597772727,"roll":56.70005273246581},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.704"} +{"sensors":[{"euler":{"heading":27.39307384592946,"pitch":128.3147321431736,"roll":23.82923760380015},"location":"Left Knee"},{"euler":{"heading":31.69444541892888,"pitch":100.40203750838816,"roll":16.72243397554811},"location":"Left Ankle"},{"euler":{"heading":38.246506623486674,"pitch":-11.309022843758745,"roll":-7.8220746705566455},"location":"Right Ankle"},{"euler":{"heading":70.2216163588371,"pitch":-160.48797326555174,"roll":51.22891205194615},"location":"Right Hip"},{"euler":{"heading":27.16887204259693,"pitch":-104.58465477109583,"roll":17.084713378257046},"location":"Right Knee"},{"euler":{"heading":11.961022191651313,"pitch":-132.70918383163095,"roll":57.501475183912454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.804"} +{"sensors":[{"euler":{"heading":28.553085771884728,"pitch":127.27409097665411,"roll":21.877584540108323},"location":"Left Knee"},{"euler":{"heading":33.965651937952465,"pitch":101.15451963566916,"roll":19.364772776210174},"location":"Left Ankle"},{"euler":{"heading":39.63962848617279,"pitch":-11.576892451022548,"roll":-7.315812732788105},"location":"Right Ankle"},{"euler":{"heading":69.65553680043199,"pitch":-160.71503899741242,"roll":51.10012127364714},"location":"Right Hip"},{"euler":{"heading":25.664394611812476,"pitch":-104.69550814506637,"roll":18.56298193058069},"location":"Right Knee"},{"euler":{"heading":12.177740252092345,"pitch":-133.3432690745301,"roll":57.90561577554103},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.905"} +{"sensors":[{"euler":{"heading":30.656291947689382,"pitch":126.24326110555195,"roll":19.505160944242867},"location":"Left Knee"},{"euler":{"heading":36.89546872511677,"pitch":102.12079672522435,"roll":22.819969369201726},"location":"Left Ankle"},{"euler":{"heading":40.39387014891519,"pitch":-11.640921754098132,"roll":-7.053904073915735},"location":"Right Ankle"},{"euler":{"heading":68.87098486517088,"pitch":-161.0869737326991,"roll":51.45326101032384},"location":"Right Hip"},{"euler":{"heading":24.991389052716297,"pitch":-105.05146482828867,"roll":19.395279154231215},"location":"Right Knee"},{"euler":{"heading":11.326650544245224,"pitch":-131.7588903409234,"roll":57.76596137694609},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.6"} +{"sensors":[{"euler":{"heading":31.48065341417191,"pitch":126.11310537464831,"roll":18.131303948846433},"location":"Left Knee"},{"euler":{"heading":37.974541215306026,"pitch":101.66935318204003,"roll":24.579069902530552},"location":"Left Ankle"},{"euler":{"heading":40.76768478530374,"pitch":-11.51455573839297,"roll":-7.102284221700034},"location":"Right Ankle"},{"euler":{"heading":68.55558651750408,"pitch":-161.2570595918609,"roll":52.02845658490489},"location":"Right Hip"},{"euler":{"heading":24.987301137976182,"pitch":-105.60542815710184,"roll":19.654943636691687},"location":"Right Knee"},{"euler":{"heading":9.910396999424192,"pitch":-130.1052491286645,"roll":56.94399060019667},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.107"} +{"sensors":[{"euler":{"heading":28.27335380376211,"pitch":127.27357183649667,"roll":18.73118035615573},"location":"Left Knee"},{"euler":{"heading":35.80219647230231,"pitch":100.63065056260825,"roll":23.435994628175195},"location":"Left Ankle"},{"euler":{"heading":40.627865729191605,"pitch":-11.233741666619856,"roll":-7.324421440399779},"location":"Right Ankle"},{"euler":{"heading":68.42219015530577,"pitch":-161.3990754316947,"roll":52.72729595403342},"location":"Right Hip"},{"euler":{"heading":25.48930510583467,"pitch":-106.20182068945853,"roll":19.420228253279838},"location":"Right Knee"},{"euler":{"heading":8.614028069787686,"pitch":-128.50189487047317,"roll":56.063467654113744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.208"} +{"sensors":[{"euler":{"heading":57.30003817521607,"pitch":129.3224606974213,"roll":20.409547323073348},"location":"Left Knee"},{"euler":{"heading":31.722648921251594,"pitch":99.59562952683007,"roll":20.0532577889054},"location":"Left Ankle"},{"euler":{"heading":39.823726354591585,"pitch":-10.747773014204963,"roll":-7.929708791886663},"location":"Right Ankle"},{"euler":{"heading":68.46159805034402,"pitch":-161.5929804097016,"roll":53.44883789705151},"location":"Right Hip"},{"euler":{"heading":26.67323539697076,"pitch":-106.77120796682621,"roll":18.565746929086387},"location":"Right Knee"},{"euler":{"heading":7.885499834249873,"pitch":-127.51479355560252,"roll":55.37966522941431},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.309"} +{"sensors":[{"euler":{"heading":47.77333291723853,"pitch":130.83756663079308,"roll":21.88664260985873},"location":"Left Knee"},{"euler":{"heading":28.834163225438168,"pitch":99.27737677914145,"roll":17.444146906894048},"location":"Left Ankle"},{"euler":{"heading":38.18432215588445,"pitch":-10.296141476685555,"roll":-8.727121151470236},"location":"Right Ankle"},{"euler":{"heading":68.71384157378344,"pitch":-162.01219780436003,"roll":54.11363383428668},"location":"Right Hip"},{"euler":{"heading":28.700900982066255,"pitch":-107.03672940368433,"roll":16.954259699301108},"location":"Right Knee"},{"euler":{"heading":7.859731243227909,"pitch":-126.84156655834933,"roll":54.980885839070424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.410"} +{"sensors":[{"euler":{"heading":40.89439974787336,"pitch":131.4416035470695,"roll":23.056760709290817},"location":"Left Knee"},{"euler":{"heading":27.800823202911886,"pitch":99.31638971852473,"roll":16.028531406053396},"location":"Left Ankle"},{"euler":{"heading":35.29619980806871,"pitch":-10.369041271418805,"roll":-9.585421797903987},"location":"Right Ankle"},{"euler":{"heading":69.4732919039971,"pitch":-162.052654642535,"roll":54.42387103632392},"location":"Right Hip"},{"euler":{"heading":31.79991579140406,"pitch":-106.64084521888819,"roll":14.330784772345668},"location":"Right Knee"},{"euler":{"heading":7.767288257589062,"pitch":-126.29183330291244,"roll":54.84596199680195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.511"} +{"sensors":[{"euler":{"heading":35.97537370339808,"pitch":131.35797889074877,"roll":23.895595033754397},"location":"Left Knee"},{"euler":{"heading":27.64438120637889,"pitch":99.44681647706577,"roll":15.276708597745333},"location":"Left Ankle"},{"euler":{"heading":32.093120011987985,"pitch":-10.476623632229213,"roll":-10.546381198638503},"location":"Right Ankle"},{"euler":{"heading":70.95719860954753,"pitch":-161.38771672758813,"roll":53.91387103482797},"location":"Right Hip"},{"euler":{"heading":34.49196372776148,"pitch":-106.36585379300686,"roll":11.66554761957289},"location":"Right Knee"},{"euler":{"heading":8.119658190879653,"pitch":-126.41865068094923,"roll":54.99735692517243},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.612"} +{"sensors":[{"euler":{"heading":32.34601616624737,"pitch":130.88991872019895,"roll":24.5000573103502},"location":"Left Knee"},{"euler":{"heading":28.622113888564904,"pitch":99.69563316808966,"roll":15.38118348168788},"location":"Left Ankle"},{"euler":{"heading":31.11134668047665,"pitch":-11.013924993484745,"roll":-10.815453341407974},"location":"Right Ankle"},{"euler":{"heading":72.31490718085651,"pitch":-160.63145298171182,"roll":52.893525827091835},"location":"Right Hip"},{"euler":{"heading":35.197992114132134,"pitch":-105.64139629519309,"roll":10.532082082001365},"location":"Right Knee"},{"euler":{"heading":8.860021686428999,"pitch":-127.25278678821257,"roll":55.36621742010263},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.714"} +{"sensors":[{"euler":{"heading":29.87370802266967,"pitch":130.12750020232406,"roll":24.767590701755278},"location":"Left Knee"},{"euler":{"heading":29.690219182963595,"pitch":100.01590611276694,"roll":15.778930889234664},"location":"Left Ankle"},{"euler":{"heading":32.78071972116025,"pitch":-11.779545062969353,"roll":-10.107680797866484},"location":"Right Ankle"},{"euler":{"heading":72.76666832866093,"pitch":-160.25628476206325,"roll":51.774045726058326},"location":"Right Hip"},{"euler":{"heading":33.69522971693857,"pitch":-104.65886084105077,"roll":11.515951341918997},"location":"Right Knee"},{"euler":{"heading":9.585136659711171,"pitch":-128.53076283420683,"roll":55.842677472192605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.814"} +{"sensors":[{"euler":{"heading":28.503368655909295,"pitch":129.12845069006178,"roll":24.58161285130164},"location":"Left Knee"},{"euler":{"heading":31.117696239367383,"pitch":100.51974419301003,"roll":16.60852190791303},"location":"Left Ankle"},{"euler":{"heading":35.859849137477326,"pitch":-12.311812277255056,"roll":-8.866758992352228},"location":"Right Ankle"},{"euler":{"heading":72.17937533528551,"pitch":-160.23785100169252,"roll":51.02264961770979},"location":"Right Hip"},{"euler":{"heading":30.800083374364515,"pitch":-103.89464045540785,"roll":14.082806865021203},"location":"Right Knee"},{"euler":{"heading":10.392891081602631,"pitch":-130.12712427266598,"roll":56.45217352770295},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.915"} +{"sensors":[{"euler":{"heading":27.96397642749415,"pitch":128.07580299411808,"roll":23.842576597525994},"location":"Left Knee"},{"euler":{"heading":33.053457576086544,"pitch":101.10050617527213,"roll":18.08452567571087},"location":"Left Ankle"},{"euler":{"heading":38.57723208913035,"pitch":-12.55563530938205,"roll":-7.761715699631338},"location":"Right Ankle"},{"euler":{"heading":70.43809525818203,"pitch":-160.72057659169437,"roll":50.69350315531196},"location":"Right Hip"},{"euler":{"heading":27.76366626012923,"pitch":-103.48849124023653,"roll":16.780044837040354},"location":"Right Knee"},{"euler":{"heading":11.327763669909661,"pitch":-132.16021740855666,"roll":57.152324009072366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.15"} +{"sensors":[{"euler":{"heading":28.657876416559155,"pitch":127.10545240524571,"roll":22.10368573753494},"location":"Left Knee"},{"euler":{"heading":34.87032383979414,"pitch":101.45360929821179,"roll":20.37137391999086},"location":"Left Ankle"},{"euler":{"heading":40.03527759599332,"pitch":-12.693030387876922,"roll":-7.166070482289904},"location":"Right Ankle"},{"euler":{"heading":69.36311018432927,"pitch":-161.0444221027708,"roll":50.63347902939851},"location":"Right Hip"},{"euler":{"heading":25.65200562656422,"pitch":-103.64416400831635,"roll":18.566724418868944},"location":"Right Knee"},{"euler":{"heading":12.00405670889649,"pitch":-133.57185056965662,"roll":57.79181803815578},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.115"} +{"sensors":[{"euler":{"heading":30.569680491920202,"pitch":126.37603903100783,"roll":19.680027744789978},"location":"Left Knee"},{"euler":{"heading":37.74917393423167,"pitch":102.4687245060575,"roll":23.825942579695344},"location":"Left Ankle"},{"euler":{"heading":40.753499053266275,"pitch":-12.710340233031497,"roll":-6.900570120442318},"location":"Right Ankle"},{"euler":{"heading":68.34022619803565,"pitch":-161.4742039102104,"roll":50.989390919785464},"location":"Right Hip"},{"euler":{"heading":24.68397958397415,"pitch":-104.17741871961591,"roll":19.57107955968823},"location":"Right Knee"},{"euler":{"heading":11.0179700354893,"pitch":-132.70294618444854,"roll":57.799730715785735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.216"} +{"sensors":[{"euler":{"heading":31.70105612240949,"pitch":126.22136219505897,"roll":17.909036870745904},"location":"Left Knee"},{"euler":{"heading":39.030272564685774,"pitch":101.81771574641746,"roll":25.941193369238928},"location":"Left Ankle"},{"euler":{"heading":41.0859297695459,"pitch":-12.708167557646542,"roll":-6.9694814562097935},"location":"Right Ankle"},{"euler":{"heading":67.88913490375243,"pitch":-161.69068883567698,"roll":51.62060271578091},"location":"Right Hip"},{"euler":{"heading":24.634524371423517,"pitch":-104.77885377057727,"roll":19.9329271947625},"location":"Right Knee"},{"euler":{"heading":9.366329662752696,"pitch":-131.19731403866788,"roll":57.028055401923666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.316"} +{"sensors":[{"euler":{"heading":29.274271752343417,"pitch":127.17533558374448,"roll":17.994978730421234},"location":"Left Knee"},{"euler":{"heading":37.267104217037605,"pitch":100.47358007608486,"roll":25.405764351682926},"location":"Left Ankle"},{"euler":{"heading":41.08463952596317,"pitch":-12.646748481605238,"roll":-7.216142142861092},"location":"Right Ankle"},{"euler":{"heading":67.83488314914435,"pitch":-161.8211822656442,"roll":52.35823915238605},"location":"Right Hip"},{"euler":{"heading":25.152889414038214,"pitch":-105.3230773592444,"roll":19.808510722415},"location":"Right Knee"},{"euler":{"heading":7.8950621786053405,"pitch":-129.57331149784952,"roll":56.10386395239614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.417"} +{"sensors":[{"euler":{"heading":24.439421011456567,"pitch":128.94224908700625,"roll":19.46989266887193},"location":"Left Knee"},{"euler":{"heading":33.46313677497398,"pitch":99.48917220382107,"roll":22.53719962070787},"location":"Left Ankle"},{"euler":{"heading":40.554450697456026,"pitch":-12.41281266168154,"roll":-7.599862556769603},"location":"Right Ankle"},{"euler":{"heading":67.95098517760596,"pitch":-162.04627805548697,"roll":53.05543451863145},"location":"Right Hip"},{"euler":{"heading":26.23725529045699,"pitch":-105.84525825962037,"roll":19.101398594963502},"location":"Right Knee"},{"euler":{"heading":7.029272505450257,"pitch":-128.29404191595467,"roll":55.332984526248666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.519"} +{"sensors":[{"euler":{"heading":20.15365859082625,"pitch":130.89185823091168,"roll":21.060153761812447},"location":"Left Knee"},{"euler":{"heading":29.724195091330785,"pitch":98.67569505269816,"roll":19.13294504917361},"location":"Left Ankle"},{"euler":{"heading":39.359333288478076,"pitch":-11.9633176634434,"roll":-8.3038000536427},"location":"Right Ankle"},{"euler":{"heading":68.15901023643403,"pitch":-162.4758833155693,"roll":53.793324767282236},"location":"Right Hip"},{"euler":{"heading":27.945585336690996,"pitch":-106.22264182062004,"roll":17.771894769160987},"location":"Right Knee"},{"euler":{"heading":6.944622167966169,"pitch":-127.58236082496546,"roll":54.807848866438846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.620"} +{"sensors":[{"euler":{"heading":18.00595645158994,"pitch":131.75232419838744,"roll":22.350508701789053},"location":"Left Knee"},{"euler":{"heading":27.976666712788134,"pitch":98.47467753819757,"roll":17.05727691646566},"location":"Left Ankle"},{"euler":{"heading":37.173875012941,"pitch":-11.889518068743456,"roll":-9.148861317867075},"location":"Right Ankle"},{"euler":{"heading":68.75145776844978,"pitch":-162.94191140790994,"roll":54.36589834163334},"location":"Right Hip"},{"euler":{"heading":30.824745709258337,"pitch":-105.91608826888823,"roll":15.415470212133469},"location":"Right Knee"},{"euler":{"heading":6.994216716636591,"pitch":-127.03350326419842,"roll":54.475354078252174},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.721"} +{"sensors":[{"euler":{"heading":17.145161738890994,"pitch":131.79966557018344,"roll":23.298142346722134},"location":"Left Knee"},{"euler":{"heading":27.413807299772902,"pitch":98.54248471925678,"roll":15.957891851572244},"location":"Left Ankle"},{"euler":{"heading":33.60677718663598,"pitch":-11.543309196436716,"roll":-10.341598344146389},"location":"Right Ankle"},{"euler":{"heading":70.12834930351374,"pitch":-162.48370308608403,"roll":54.15273306173715},"location":"Right Hip"},{"euler":{"heading":33.55675345518663,"pitch":-105.76949236755749,"roll":12.641107133912884},"location":"Right Knee"},{"euler":{"heading":7.409379059139655,"pitch":-126.72710558001836,"roll":54.51337036537507},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.821"} +{"sensors":[{"euler":{"heading":16.749499965534156,"pitch":131.46200390979126,"roll":23.947546648307583},"location":"Left Knee"},{"euler":{"heading":27.874461309302724,"pitch":98.72274789997418,"roll":15.575452390392543},"location":"Left Ankle"},{"euler":{"heading":31.23895499484815,"pitch":-11.669986180217174,"roll":-10.963087666874491},"location":"Right Ankle"},{"euler":{"heading":71.65408219801472,"pitch":-161.71830864534536,"roll":53.28208004340425},"location":"Right Hip"},{"euler":{"heading":34.907867575149254,"pitch":-105.26823231725888,"roll":10.909490425681305},"location":"Right Knee"},{"euler":{"heading":7.9038915295456516,"pitch":-127.18707209692539,"roll":54.732074892473435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.923"} +{"sensors":[{"euler":{"heading":16.88332122502575,"pitch":130.775962600607,"roll":24.362762495300945},"location":"Left Knee"},{"euler":{"heading":29.078042068371154,"pitch":99.0523321731432,"roll":15.847704445938044},"location":"Left Ankle"},{"euler":{"heading":31.5772375923488,"pitch":-12.414815633867644,"roll":-10.841747489593967},"location":"Right Ankle"},{"euler":{"heading":72.45745255240861,"pitch":-161.12679252065593,"roll":52.14941998335506},"location":"Right Hip"},{"euler":{"heading":33.98680844004536,"pitch":-104.33902998027034,"roll":11.310490445012714},"location":"Right Knee"},{"euler":{"heading":8.677406872373941,"pitch":-128.2097057123764,"roll":55.161842165804515},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.24"} +{"sensors":[{"euler":{"heading":17.599315303583495,"pitch":129.822243690525,"roll":24.363926586980583},"location":"Left Knee"},{"euler":{"heading":30.29539967549232,"pitch":99.41596315189976,"roll":16.403214542353563},"location":"Left Ankle"},{"euler":{"heading":34.285853831305865,"pitch":-13.088793243856788,"roll":-9.875825489456847},"location":"Right Ankle"},{"euler":{"heading":72.17589271589172,"pitch":-160.9601533938165,"roll":51.20179312224208},"location":"Right Hip"},{"euler":{"heading":31.4490539401072,"pitch":-103.48632732783794,"roll":13.552062577751204},"location":"Right Knee"},{"euler":{"heading":9.495064925823778,"pitch":-129.52745168808775,"roll":55.723141781868804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.124"} +{"sensors":[{"euler":{"heading":18.762265311865406,"pitch":128.71548960479373,"roll":23.877464719420942},"location":"Left Knee"},{"euler":{"heading":31.84508436239591,"pitch":99.86390991464094,"roll":17.452850085534514},"location":"Left Ankle"},{"euler":{"heading":37.46680568177176,"pitch":-13.645151017674968,"roll":-8.573724595338028},"location":"Right Ankle"},{"euler":{"heading":70.83952461161262,"pitch":-161.183920181182,"roll":50.77237134122779},"location":"Right Hip"},{"euler":{"heading":28.544745570105427,"pitch":-103.03578456034111,"roll":16.38896717303349},"location":"Right Knee"},{"euler":{"heading":10.473718442564195,"pitch":-131.20141709816576,"roll":56.46291481305976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.225"} +{"sensors":[{"euler":{"heading":20.612228958466204,"pitch":127.66645295412414,"roll":22.59898912417282},"location":"Left Knee"},{"euler":{"heading":33.79172955902601,"pitch":100.30491762226822,"roll":19.34794304167257},"location":"Left Ankle"},{"euler":{"heading":39.56006912402665,"pitch":-13.667015384184095,"roll":-7.9246183256446425},"location":"Right Ankle"},{"euler":{"heading":69.55505802475435,"pitch":-161.51719793807152,"roll":50.58593873281735},"location":"Right Hip"},{"euler":{"heading":26.16670105163546,"pitch":-103.22263040077586,"roll":18.48633213780687},"location":"Right Knee"},{"euler":{"heading":11.584194868652375,"pitch":-133.00152144514294,"roll":57.26311376009351},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.325"} +{"sensors":[{"euler":{"heading":23.70248369015752,"pitch":126.69936991012595,"roll":20.407644893715446},"location":"Left Knee"},{"euler":{"heading":36.2417648157754,"pitch":101.52442695813103,"roll":22.05563180131536},"location":"Left Ankle"},{"euler":{"heading":40.51897687410643,"pitch":-13.579784367315998,"roll":-7.634523620371778},"location":"Right Ankle"},{"euler":{"heading":68.74709580012292,"pitch":-161.68203059900625,"roll":50.72639650814572},"location":"Right Hip"},{"euler":{"heading":24.802200946588236,"pitch":-103.80787407884806,"roll":19.7480375082672},"location":"Right Knee"},{"euler":{"heading":11.20926530577091,"pitch":-133.21540779223056,"roll":57.43428023576301},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.426"} +{"sensors":[{"euler":{"heading":26.506265036979833,"pitch":125.97885856343434,"roll":18.472314573181478},"location":"Left Knee"},{"euler":{"heading":37.730609242484164,"pitch":102.1582512613359,"roll":24.190650574937386},"location":"Left Ankle"},{"euler":{"heading":40.989028187593696,"pitch":-13.429507502641682,"roll":-7.5741646104942015},"location":"Right Ankle"},{"euler":{"heading":68.18066213580302,"pitch":-161.87280071929402,"roll":51.21021170595244},"location":"Right Hip"},{"euler":{"heading":24.374605436499618,"pitch":-104.50391511116062,"roll":20.33086433722174},"location":"Right Knee"},{"euler":{"heading":10.46232062542051,"pitch":-132.01774623339261,"roll":57.17893828778372},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.526"} +{"sensors":[{"euler":{"heading":26.64385147151187,"pitch":126.36136932882805,"roll":17.951761076398594},"location":"Left Knee"},{"euler":{"heading":37.12446399117366,"pitch":101.56650278299097,"roll":24.457889719789968},"location":"Left Ankle"},{"euler":{"heading":41.07664030806948,"pitch":-13.15678363765831,"roll":-7.828703243132205},"location":"Right Ankle"},{"euler":{"heading":67.94873386797117,"pitch":-161.93840830955565,"roll":51.89176163337322},"location":"Right Hip"},{"euler":{"heading":24.458498156770936,"pitch":-105.18130775557104,"roll":20.43018766067223},"location":"Right Knee"},{"euler":{"heading":9.220520529615346,"pitch":-130.47622344989594,"roll":56.424698651833495},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.627"} +{"sensors":[{"euler":{"heading":23.03474452152785,"pitch":127.86682877404994,"roll":19.08001294104242},"location":"Left Knee"},{"euler":{"heading":34.02410818301995,"pitch":100.47813072351076,"roll":22.375092481137383},"location":"Left Ankle"},{"euler":{"heading":40.64897117618492,"pitch":-12.767315226092762,"roll":-8.148208522550753},"location":"Right Ankle"},{"euler":{"heading":67.93124517688142,"pitch":-162.1464076734949,"roll":52.59765879147696},"location":"Right Hip"},{"euler":{"heading":25.20495449347462,"pitch":-105.79426347753717,"roll":20.008766405127236},"location":"Right Knee"},{"euler":{"heading":8.114556354312924,"pitch":-128.95054113318602,"roll":55.670862310922224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.728"} +{"sensors":[{"euler":{"heading":53.06417839019511,"pitch":129.94251842180608,"roll":20.725197235541224},"location":"Left Knee"},{"euler":{"heading":30.05866640691575,"pitch":99.37438381880004,"roll":18.891133416633448},"location":"Left Ankle"},{"euler":{"heading":39.597249858963444,"pitch":-12.28409819907595,"roll":-8.841601805577952},"location":"Right Ankle"},{"euler":{"heading":68.17257368353626,"pitch":-162.50108972762098,"roll":53.36720430520766},"location":"Right Hip"},{"euler":{"heading":26.71389357708336,"pitch":-106.18838852845008,"roll":18.937777129332858},"location":"Right Knee"},{"euler":{"heading":7.999720010472774,"pitch":-128.24775429686204,"roll":55.13736728370222},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.829"} +{"sensors":[{"euler":{"heading":44.54877316831044,"pitch":131.053813570377,"roll":22.16632104140919},"location":"Left Knee"},{"euler":{"heading":27.86408646484356,"pitch":98.90476313074937,"roll":16.63038182978807},"location":"Left Ankle"},{"euler":{"heading":37.588657222833824,"pitch":-11.918190845529276,"roll":-9.665231258229218},"location":"Right Ankle"},{"euler":{"heading":68.5663683525417,"pitch":-163.2025323669133,"roll":54.093273400106845},"location":"Right Hip"},{"euler":{"heading":29.013621313790594,"pitch":-106.20019462249715,"roll":17.082814788962867},"location":"Right Knee"},{"euler":{"heading":8.18512159596573,"pitch":-127.6712730797395,"roll":54.82108954277111},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.930"} +{"sensors":[{"euler":{"heading":38.60490690019964,"pitch":131.31028809411822,"roll":23.137420830787484},"location":"Left Knee"},{"euler":{"heading":27.125431564256353,"pitch":98.72357268656074,"roll":15.506206742849209},"location":"Left Ankle"},{"euler":{"heading":34.196103326848764,"pitch":-11.735723091019933,"roll":-10.844520479962325},"location":"Right Ankle"},{"euler":{"heading":69.6676422956908,"pitch":-163.15353995319734,"roll":54.27465061914458},"location":"Right Hip"},{"euler":{"heading":32.12136924102121,"pitch":-105.78876082151622,"roll":14.262806532812458},"location":"Right Knee"},{"euler":{"heading":8.301256365753199,"pitch":-127.1080124400514,"roll":54.81432715556195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.31"} +{"sensors":[{"euler":{"heading":34.06506761677598,"pitch":131.15592050328732,"roll":23.79616844641224},"location":"Left Knee"},{"euler":{"heading":26.984355733742994,"pitch":98.57150858448428,"roll":14.827851257865884},"location":"Left Ankle"},{"euler":{"heading":31.38261205969678,"pitch":-11.665737489393292,"roll":-11.703544139680204},"location":"Right Ankle"},{"euler":{"heading":71.27091049601466,"pitch":-162.44333348520584,"roll":53.713446814333416},"location":"Right Hip"},{"euler":{"heading":34.40439631113282,"pitch":-105.30944909153138,"roll":11.788340341092832},"location":"Right Knee"},{"euler":{"heading":8.651995616101848,"pitch":-127.26420637857133,"roll":55.010348499099976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.131"} +{"sensors":[{"euler":{"heading":30.573773863985583,"pitch":130.84382319641412,"roll":24.13065921107673},"location":"Left Knee"},{"euler":{"heading":27.790365679546408,"pitch":98.49336264448547,"roll":14.93340650787828},"location":"Left Ankle"},{"euler":{"heading":30.975481617588958,"pitch":-11.94129179718763,"roll":-11.79119755649423},"location":"Right Ankle"},{"euler":{"heading":72.4171961323517,"pitch":-161.68177919960078,"roll":52.7181122525565},"location":"Right Hip"},{"euler":{"heading":34.26422240374638,"pitch":-104.62602893228403,"roll":11.231779610172797},"location":"Right Knee"},{"euler":{"heading":9.05214137571389,"pitch":-127.92872945172574,"roll":55.348246633457606},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.232"} +{"sensors":[{"euler":{"heading":28.244238734232063,"pitch":130.2879299708341,"roll":24.16579272480432},"location":"Left Knee"},{"euler":{"heading":28.598958432650633,"pitch":98.37508786994526,"roll":15.272678435523998},"location":"Left Ankle"},{"euler":{"heading":33.16293408892307,"pitch":-12.327376098289317,"roll":-10.95493557488785},"location":"Right Ankle"},{"euler":{"heading":72.49370395292964,"pitch":-161.3196596252722,"roll":51.72827919895593},"location":"Right Hip"},{"euler":{"heading":31.961574956243947,"pitch":-103.8827676022706,"roll":12.850636496865985},"location":"Right Knee"},{"euler":{"heading":9.599756668320415,"pitch":-129.0235003521298,"roll":55.873978616211225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.332"} +{"sensors":[{"euler":{"heading":26.961075217000086,"pitch":129.45792412568198,"roll":23.846811016006342},"location":"Left Knee"},{"euler":{"heading":29.84961874967216,"pitch":98.4642591256728,"roll":16.049356449764197},"location":"Left Ankle"},{"euler":{"heading":36.160915228731696,"pitch":-12.801585620462811,"roll":-9.704762416297983},"location":"Right Ankle"},{"euler":{"heading":71.43863063960626,"pitch":-161.37248633508636,"roll":51.20715831761166},"location":"Right Hip"},{"euler":{"heading":28.964397217848298,"pitch":-103.31722448549895,"roll":15.641303348519607},"location":"Right Knee"},{"euler":{"heading":10.28001046858089,"pitch":-130.35895909820545,"roll":56.55778615194181},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.433"} +{"sensors":[{"euler":{"heading":26.67736701520296,"pitch":128.51662267784164,"roll":22.945805732170435},"location":"Left Knee"},{"euler":{"heading":31.57520434961885,"pitch":98.69952597086238,"roll":17.507207096658785},"location":"Left Ankle"},{"euler":{"heading":38.43135437239802,"pitch":-13.093943923505458,"roll":-8.781597648685949},"location":"Right Ankle"},{"euler":{"heading":70.03966007793068,"pitch":-161.6105377521964,"roll":51.06260093872398},"location":"Right Hip"},{"euler":{"heading":26.456803593449408,"pitch":-103.26326730057497,"roll":17.9168053134806},"location":"Right Knee"},{"euler":{"heading":11.253173070234409,"pitch":-132.23920219669398,"roll":57.36085108551354},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.533"} +{"sensors":[{"euler":{"heading":27.77087064970305,"pitch":127.84916699310145,"roll":20.994954749609466},"location":"Left Knee"},{"euler":{"heading":33.63020517582028,"pitch":99.00159269010982,"roll":20.039222569669388},"location":"Left Ankle"},{"euler":{"heading":39.70774731418641,"pitch":-13.07906220748893,"roll":-8.2910766997111},"location":"Right Ankle"},{"euler":{"heading":69.03092658667147,"pitch":-161.83783516207495,"roll":51.205278719894494},"location":"Right Hip"},{"euler":{"heading":24.700854056168588,"pitch":-103.69601270614254,"roll":19.434827337857786},"location":"Right Knee"},{"euler":{"heading":11.40195901370359,"pitch":-133.12608017275988,"roll":57.802149764022886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.634"} +{"sensors":[{"euler":{"heading":29.902854215894664,"pitch":126.98955475049117,"roll":18.65892878270957},"location":"Left Knee"},{"euler":{"heading":36.47811790002275,"pitch":99.50679233356632,"roll":23.55511363877267},"location":"Left Ankle"},{"euler":{"heading":40.43775515558108,"pitch":-13.071541421170572,"roll":-8.096919437911186},"location":"Right Ankle"},{"euler":{"heading":67.84825824934342,"pitch":-162.3526669199849,"roll":51.76244643714022},"location":"Right Hip"},{"euler":{"heading":24.10137286946785,"pitch":-104.34918677419591,"roll":20.207971565662117},"location":"Right Knee"},{"euler":{"heading":10.263379565432935,"pitch":-131.58614274698047,"roll":57.67233756170041},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.735"} +{"sensors":[{"euler":{"heading":30.899411268749642,"pitch":126.94298589304942,"roll":17.22288217269086},"location":"Left Knee"},{"euler":{"heading":37.8111740446507,"pitch":99.11375591022924,"roll":25.386971013778783},"location":"Left Ankle"},{"euler":{"heading":40.815508396034794,"pitch":-12.975556434714697,"roll":-8.111481214435392},"location":"Right Ankle"},{"euler":{"heading":67.32578877933665,"pitch":-162.72340042512218,"roll":52.492535308442044},"location":"Right Hip"},{"euler":{"heading":24.163431938094156,"pitch":-105.01157140147063,"roll":20.449781822130394},"location":"Right Knee"},{"euler":{"heading":8.81981550224161,"pitch":-129.9251529056232,"roll":56.942507049796944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.835"} +{"sensors":[{"euler":{"heading":27.910394215326118,"pitch":128.04234595820822,"roll":17.718922286630068},"location":"Left Knee"},{"euler":{"heading":35.70410345729665,"pitch":98.04467013120068,"roll":24.268114438850223},"location":"Left Ankle"},{"euler":{"heading":40.738367340858474,"pitch":-12.763850552517058,"roll":-8.3981419537749},"location":"Right Ankle"},{"euler":{"heading":67.26065511346047,"pitch":-163.0529226268874,"roll":53.23640883955423},"location":"Right Hip"},{"euler":{"heading":24.826612520842584,"pitch":-105.54554835890396,"roll":20.16323874884105},"location":"Right Knee"},{"euler":{"heading":7.774568900689351,"pitch":-128.3210943637264,"roll":56.186976686418944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.936"} +{"sensors":[{"euler":{"heading":23.09675788540493,"pitch":129.91703501119477,"roll":19.416291224324695},"location":"Left Knee"},{"euler":{"heading":31.612603929680372,"pitch":97.21402312881958,"roll":20.84189411325788},"location":"Left Ankle"},{"euler":{"heading":40.03905641351686,"pitch":-12.346361486159891,"roll":-8.925072955699825},"location":"Right Ankle"},{"euler":{"heading":67.46891727446727,"pitch":-163.36893497779135,"roll":54.016536996281026},"location":"Right Hip"},{"euler":{"heading":26.11278750994156,"pitch":-106.01089487705649,"roll":19.29158637784212},"location":"Right Knee"},{"euler":{"heading":7.548924734032923,"pitch":-127.43442598967857,"roll":55.71140185671999},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.37"} +{"sensors":[{"euler":{"heading":19.720161944774674,"pitch":131.42908987797153,"roll":20.958143381885847},"location":"Left Knee"},{"euler":{"heading":28.589480508431638,"pitch":96.81910981512357,"roll":17.973459726106093},"location":"Left Ankle"},{"euler":{"heading":38.35468886511796,"pitch":-11.968586034664323,"roll":-9.776434067448482},"location":"Right Ankle"},{"euler":{"heading":67.91292625490574,"pitch":-163.89269898340447,"roll":54.68678367723094},"location":"Right Hip"},{"euler":{"heading":28.28362401819158,"pitch":-106.14660057806206,"roll":17.611053727129388},"location":"Right Knee"},{"euler":{"heading":7.887354607889656,"pitch":-126.88180479570536,"roll":55.46537058190996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.137"} +{"sensors":[{"euler":{"heading":18.00178302145976,"pitch":131.98280349913844,"roll":22.15713182169757},"location":"Left Knee"},{"euler":{"heading":27.434008648253574,"pitch":96.9076606713249,"roll":16.400477847419783},"location":"Left Ankle"},{"euler":{"heading":35.310844423261315,"pitch":-11.769433826474156,"roll":-10.766785901933039},"location":"Right Ankle"},{"euler":{"heading":68.76994085544617,"pitch":-164.07531990531086,"roll":55.055460890021905},"location":"Right Hip"},{"euler":{"heading":31.357179639940156,"pitch":-105.74026490637621,"roll":15.002390318627436},"location":"Right Knee"},{"euler":{"heading":7.974210774698939,"pitch":-126.40553288018234,"roll":55.421102241617476},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.238"} +{"sensors":[{"euler":{"heading":17.331994382807657,"pitch":131.85958785485218,"roll":23.045871428157977},"location":"Left Knee"},{"euler":{"heading":27.1181121603287,"pitch":97.18992859343106,"roll":15.399242588460657},"location":"Left Ankle"},{"euler":{"heading":31.956478316316677,"pitch":-11.601116571795293,"roll":-11.781836747902556},"location":"Right Ankle"},{"euler":{"heading":70.10781138920164,"pitch":-163.46173372762047,"roll":54.741029180775406},"location":"Right Hip"},{"euler":{"heading":34.028381621330595,"pitch":-105.47959742097318,"roll":12.243540202551898},"location":"Right Knee"},{"euler":{"heading":8.431773504647579,"pitch":-126.56909705578927,"roll":55.64263845916555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.339"} +{"sensors":[{"euler":{"heading":17.235415557038024,"pitch":131.27246847925193,"roll":23.725218288811053},"location":"Left Knee"},{"euler":{"heading":27.525330915150242,"pitch":97.58208787680701,"roll":14.933202519508969},"location":"Left Ankle"},{"euler":{"heading":30.61301961391957,"pitch":-11.870927324087369,"roll":-12.189034505748891},"location":"Right Ankle"},{"euler":{"heading":71.29838324170025,"pitch":-162.67464788989832,"roll":53.84414107813867},"location":"Right Hip"},{"euler":{"heading":34.84219282265126,"pitch":-104.95835114386237,"roll":10.94213232078146},"location":"Right Knee"},{"euler":{"heading":9.234487516614353,"pitch":-127.34730481002194,"roll":56.080913366236544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.439"} +{"sensors":[{"euler":{"heading":17.61412560706709,"pitch":130.40231625391715,"roll":24.096184719797698},"location":"Left Knee"},{"euler":{"heading":28.39383887253627,"pitch":98.09152103715634,"roll":14.969283162745045},"location":"Left Ankle"},{"euler":{"heading":31.873284223461248,"pitch":-12.614478189975964,"roll":-11.606248388927675},"location":"Right Ankle"},{"euler":{"heading":71.6786914107068,"pitch":-162.2359176817461,"roll":52.72935869749596},"location":"Right Hip"},{"euler":{"heading":33.41579226126783,"pitch":-103.97539192258797,"roll":11.797815969381107},"location":"Right Knee"},{"euler":{"heading":10.028490947449573,"pitch":-128.49738368410095,"roll":56.65585663566835},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.540"} +{"sensors":[{"euler":{"heading":18.506853129120007,"pitch":129.39496080906014,"roll":23.914621234756833},"location":"Left Knee"},{"euler":{"heading":29.396292312162476,"pitch":98.54654910025396,"roll":15.406212555991713},"location":"Left Ankle"},{"euler":{"heading":34.74228756367113,"pitch":-13.192173915791814,"roll":-10.30600976496914},"location":"Right Ankle"},{"euler":{"heading":70.9615491049222,"pitch":-162.2075307230548,"roll":52.005994669745725},"location":"Right Hip"},{"euler":{"heading":30.553444368262642,"pitch":-103.10971785103258,"roll":14.397312218021984},"location":"Right Knee"},{"euler":{"heading":10.78563562585997,"pitch":-129.93639700578083,"roll":57.348522392532},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.641"} +{"sensors":[{"euler":{"heading":19.87396536396981,"pitch":128.3526332045815,"roll":23.185524737851793},"location":"Left Knee"},{"euler":{"heading":30.811630855009817,"pitch":99.00585511534037,"roll":16.449617605735984},"location":"Left Ankle"},{"euler":{"heading":37.77513473901908,"pitch":-13.518721229197293,"roll":-9.081893777674045},"location":"Right Ankle"},{"euler":{"heading":69.32797962720288,"pitch":-162.5742343747306,"roll":51.79733866043906},"location":"Right Hip"},{"euler":{"heading":27.514156050563827,"pitch":-102.67716410776113,"roll":17.14192189197966},"location":"Right Knee"},{"euler":{"heading":11.643397165789802,"pitch":-131.93412528944245,"roll":58.10609514103316},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.742"} +{"sensors":[{"euler":{"heading":22.02783889383693,"pitch":127.3143320101762,"roll":21.580479576223514},"location":"Left Knee"},{"euler":{"heading":32.743398497721635,"pitch":99.39768845108705,"roll":18.57688504857063},"location":"Left Ankle"},{"euler":{"heading":39.49742731501238,"pitch":-13.713135525298961,"roll":-8.390393261785396},"location":"Right Ankle"},{"euler":{"heading":68.28173479814764,"pitch":-162.8168757558045,"roll":51.7631090359421},"location":"Right Hip"},{"euler":{"heading":25.364472633001885,"pitch":-102.84461592215575,"roll":19.036865330152263},"location":"Right Knee"},{"euler":{"heading":12.583543681940945,"pitch":-133.74776513362178,"roll":58.88078345529387},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.843"} +{"sensors":[{"euler":{"heading":25.188575477024695,"pitch":126.6542285941669,"roll":19.18281029825571},"location":"Left Knee"},{"euler":{"heading":36.09088409594842,"pitch":100.47757620138495,"roll":22.172427784033083},"location":"Left Ankle"},{"euler":{"heading":40.348779676897735,"pitch":-13.740423486071581,"roll":-8.050046444432112},"location":"Right Ankle"},{"euler":{"heading":67.32994575386266,"pitch":-163.17912327739518,"roll":52.13047111256443},"location":"Right Hip"},{"euler":{"heading":24.282079269714355,"pitch":-103.38852919890851,"roll":20.15702165929824},"location":"Right Knee"},{"euler":{"heading":11.81944525482386,"pitch":-133.29018903811897,"roll":59.03481130276563},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.944"} +{"sensors":[{"euler":{"heading":27.622005137927758,"pitch":126.3660734605099,"roll":17.268867351071567},"location":"Left Knee"},{"euler":{"heading":37.64868542739029,"pitch":100.22406103567742,"roll":24.534148653843644},"location":"Left Ankle"},{"euler":{"heading":40.79021783233998,"pitch":-13.58081114538319,"roll":-8.033395165063943},"location":"Right Ankle"},{"euler":{"heading":66.69330930782309,"pitch":-163.5188026470064,"roll":52.77798920434632},"location":"Right Hip"},{"euler":{"heading":23.99629283704021,"pitch":-104.16013222594458,"roll":20.61770959607202},"location":"Right Knee"},{"euler":{"heading":10.319842077363463,"pitch":-131.6930236159643,"roll":58.54992996282049},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.45"} +{"sensors":[{"euler":{"heading":26.606169026755264,"pitch":127.18737504889522,"roll":17.1243852128143},"location":"Left Knee"},{"euler":{"heading":36.23693240891818,"pitch":99.00179510723866,"roll":24.23958019227051},"location":"Left Ankle"},{"euler":{"heading":40.699823532082064,"pitch":-13.204514918840653,"roll":-8.410718140482993},"location":"Right Ankle"},{"euler":{"heading":66.4930786934116,"pitch":-163.79049819734797,"roll":53.51254487875371},"location":"Right Hip"},{"euler":{"heading":24.327095442590014,"pitch":-104.87617249810994,"roll":20.57678594181385},"location":"Right Knee"},{"euler":{"heading":8.854156330040936,"pitch":-129.93268712593536,"roll":57.75445446510666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.147"} +{"sensors":[{"euler":{"heading":22.61744518144096,"pitch":128.87585429987126,"roll":18.450247294389143},"location":"Left Knee"},{"euler":{"heading":32.625578532256576,"pitch":97.85417997650933,"roll":21.59490948330748},"location":"Left Ankle"},{"euler":{"heading":40.08478578412813,"pitch":-12.73916238139761,"roll":-8.835382604032814},"location":"Right Ankle"},{"euler":{"heading":66.57883300539434,"pitch":-164.20281734311493,"roll":54.23667907818145},"location":"Right Hip"},{"euler":{"heading":25.24004947770685,"pitch":-105.44681049615374,"roll":20.00467746087848},"location":"Right Knee"},{"euler":{"heading":7.963210438779858,"pitch":-128.44681804438486,"roll":57.11193751114656},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.248"} +{"sensors":[{"euler":{"heading":18.88180315499061,"pitch":130.76638085886617,"roll":20.024541229174613},"location":"Left Knee"},{"euler":{"heading":29.15730947024854,"pitch":97.20217664105839,"roll":18.43486818577421},"location":"Left Ankle"},{"euler":{"heading":38.695342712572085,"pitch":-12.222951545796041,"roll":-9.612041196759542},"location":"Right Ankle"},{"euler":{"heading":67.0414388454388,"pitch":-164.66509427666224,"roll":54.93949252937726},"location":"Right Hip"},{"euler":{"heading":27.004222847232498,"pitch":-105.71940898660455,"roll":18.70815545590202},"location":"Right Knee"},{"euler":{"heading":7.863907525033753,"pitch":-127.72654944372275,"roll":56.673227315256675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.349"} +{"sensors":[{"euler":{"heading":17.06563284067101,"pitch":131.6268922363205,"roll":21.33611973140948},"location":"Left Knee"},{"euler":{"heading":27.726532460383496,"pitch":97.14132745049007,"roll":16.651526249912635},"location":"Left Ankle"},{"euler":{"heading":36.10701318439147,"pitch":-12.219579220268388,"roll":-10.427781046296213},"location":"Right Ankle"},{"euler":{"heading":67.83639153519252,"pitch":-165.0120534614968,"roll":55.37331044667527},"location":"Right Hip"},{"euler":{"heading":30.018287286214303,"pitch":-105.3537098817234,"roll":16.322122250335156},"location":"Right Knee"},{"euler":{"heading":7.889613945031952,"pitch":-127.24126495094976,"roll":56.4248820831014},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.451"} +{"sensors":[{"euler":{"heading":16.5952021762606,"pitch":131.7456183899538,"roll":22.219723742171084},"location":"Left Knee"},{"euler":{"heading":26.99496657290379,"pitch":97.12193838016634,"roll":15.52533980165927},"location":"Left Ankle"},{"euler":{"heading":32.685669426689095,"pitch":-11.925207613402625,"roll":-11.362118857864134},"location":"Right Ankle"},{"euler":{"heading":69.18884422809583,"pitch":-164.3747589612213,"roll":55.135658860372196},"location":"Right Hip"},{"euler":{"heading":32.84886371900383,"pitch":-105.32600856444684,"roll":13.520967043957238},"location":"Right Knee"},{"euler":{"heading":8.154419946179669,"pitch":-126.99239295163126,"roll":56.52715259105762},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.552"} +{"sensors":[{"euler":{"heading":16.566732519896455,"pitch":131.4428245014802,"roll":22.870642299772364},"location":"Left Knee"},{"euler":{"heading":26.83591398808027,"pitch":97.1935733079935,"roll":14.851109593572824},"location":"Left Ankle"},{"euler":{"heading":30.936596347295552,"pitch":-11.967994079081526,"roll":-11.797351632004274},"location":"Right Ankle"},{"euler":{"heading":70.43297308992696,"pitch":-163.55432943800346,"roll":54.379590868954224},"location":"Right Hip"},{"euler":{"heading":34.07854531282505,"pitch":-104.9620597982877,"roll":11.860231728641274},"location":"Right Knee"},{"euler":{"heading":8.632836345867222,"pitch":-127.39145218227364,"roll":56.803999161246146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.652"} +{"sensors":[{"euler":{"heading":16.929866591900815,"pitch":130.82995132349436,"roll":23.27533774404964},"location":"Left Knee"},{"euler":{"heading":27.50829843464045,"pitch":97.4545891204689,"roll":14.746366629401033},"location":"Left Ankle"},{"euler":{"heading":31.840963117862753,"pitch":-12.714202092721742,"roll":-11.382621085698172},"location":"Right Ankle"},{"euler":{"heading":71.14250844554584,"pitch":-162.97841182261755,"roll":53.28521756021937},"location":"Right Hip"},{"euler":{"heading":33.23641658676077,"pitch":-104.21656009648173,"roll":12.295644015801491},"location":"Right Knee"},{"euler":{"heading":9.399117551210189,"pitch":-128.45409723428597,"roll":57.31015895084823},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.754"} +{"sensors":[{"euler":{"heading":17.786059289681084,"pitch":130.04351066143548,"roll":23.207529109267863},"location":"Left Knee"},{"euler":{"heading":28.552306617189327,"pitch":97.72050236226538,"roll":15.19261032524187},"location":"Left Ankle"},{"euler":{"heading":34.82283861495844,"pitch":-13.508333279754805,"roll":-10.228506451599177},"location":"Right Ankle"},{"euler":{"heading":70.6830463850133,"pitch":-162.92101232007377,"roll":52.401961964305784},"location":"Right Hip"},{"euler":{"heading":30.73950898896718,"pitch":-103.26849184496963,"roll":14.574300259699957},"location":"Right Knee"},{"euler":{"heading":10.193016377925304,"pitch":-129.90911879137352,"roll":57.922748328164126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.855"} +{"sensors":[{"euler":{"heading":19.152983388471437,"pitch":129.16541149253908,"roll":22.569475926120457},"location":"Left Knee"},{"euler":{"heading":29.906545216143066,"pitch":97.99084716580093,"roll":16.2147171171564},"location":"Left Ankle"},{"euler":{"heading":38.01944908045601,"pitch":-14.102071339496504,"roll":-8.92852865421507},"location":"Right Ankle"},{"euler":{"heading":69.34369951714537,"pitch":-163.1663383218948,"roll":52.06645998265121},"location":"Right Hip"},{"euler":{"heading":27.720013327206956,"pitch":-102.79705350742053,"roll":17.53394095731093},"location":"Right Knee"},{"euler":{"heading":11.063036251438856,"pitch":-131.74891860722357,"roll":58.64947910983682},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.955"} +{"sensors":[{"euler":{"heading":21.253195104129205,"pitch":128.31733366995854,"roll":21.088430743495472},"location":"Left Knee"},{"euler":{"heading":31.853682675443203,"pitch":98.2949285172273,"roll":18.28109514391254},"location":"Left Ankle"},{"euler":{"heading":39.84015901366387,"pitch":-14.20532265613362,"roll":-8.168382677002818},"location":"Right Ankle"},{"euler":{"heading":68.26487968873171,"pitch":-163.41210893742792,"roll":51.85799752279565},"location":"Right Hip"},{"euler":{"heading":25.24170827254057,"pitch":-103.03633515875316,"roll":19.712640224139363},"location":"Right Knee"},{"euler":{"heading":11.89431372526234,"pitch":-133.50883253111837,"roll":59.39031398933382},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.56"} +{"sensors":[{"euler":{"heading":24.64942291079779,"pitch":127.56181979932414,"roll":18.737567572347587},"location":"Left Knee"},{"euler":{"heading":35.38616698376592,"pitch":99.6461848336399,"roll":21.803704641380065},"location":"Left Ankle"},{"euler":{"heading":40.63535332471465,"pitch":-14.10255704776378,"roll":-7.855099906827329},"location":"Right Ankle"},{"euler":{"heading":67.42910565354066,"pitch":-163.65828187282844,"roll":52.03202880318822},"location":"Right Hip"},{"euler":{"heading":23.801060257680284,"pitch":-103.57390177333052,"roll":21.04199766989479},"location":"Right Knee"},{"euler":{"heading":11.070799983415572,"pitch":-132.88373503684036,"roll":59.53748993787539},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.156"} +{"sensors":[{"euler":{"heading":27.656172215946256,"pitch":127.13976766210737,"roll":16.699509691272397},"location":"Left Knee"},{"euler":{"heading":37.64835866576546,"pitch":99.94738031678025,"roll":24.688015496474033},"location":"Left Ankle"},{"euler":{"heading":41.131879559119334,"pitch":-13.97389516413189,"roll":-7.755922672041839},"location":"Right Ankle"},{"euler":{"heading":66.86962624725383,"pitch":-163.9167094726969,"roll":52.55216913663284},"location":"Right Hip"},{"euler":{"heading":23.400294536628163,"pitch":-104.30409001819572,"roll":21.632533407151172},"location":"Right Knee"},{"euler":{"heading":9.635508456047587,"pitch":-131.18849144450726,"roll":58.95128356337865},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.257"} +{"sensors":[{"euler":{"heading":27.745917518440205,"pitch":127.6496593450039,"roll":16.294086351944053},"location":"Left Knee"},{"euler":{"heading":36.95010177165075,"pitch":99.22705823000041,"roll":25.020903686815927},"location":"Left Ankle"},{"euler":{"heading":41.38980200648288,"pitch":-13.798019155908504,"roll":-7.886156046038184},"location":"Right Ankle"},{"euler":{"heading":66.8098607317492,"pitch":-164.04948393769658,"roll":53.22497162063536},"location":"Right Hip"},{"euler":{"heading":23.55966322744272,"pitch":-104.95292854799632,"roll":21.78639479058905},"location":"Right Knee"},{"euler":{"heading":8.335441862359849,"pitch":-129.4404766921811,"roll":58.08195748998865},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.358"} +{"sensors":[{"euler":{"heading":24.073857071348506,"pitch":129.21687483928082,"roll":17.562188472537564},"location":"Left Knee"},{"euler":{"heading":33.51867682326104,"pitch":98.14124926902102,"roll":22.73591709789853},"location":"Left Ankle"},{"euler":{"heading":41.11347339932335,"pitch":-13.472404725792321,"roll":-8.140743055830384},"location":"Right Ankle"},{"euler":{"heading":67.0998073275146,"pitch":-164.1399017039568,"roll":53.881336281830485},"location":"Right Hip"},{"euler":{"heading":24.207395900490937,"pitch":-105.56382759377001,"roll":21.42026897395389},"location":"Right Knee"},{"euler":{"heading":7.413636139594035,"pitch":-127.98953847448895,"roll":57.330997837238236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.459"} +{"sensors":[{"euler":{"heading":47.52379691503946,"pitch":131.2592663823951,"roll":19.215013625835375},"location":"Left Knee"},{"euler":{"heading":29.704272838297708,"pitch":97.20629026171808,"roll":19.40788446382444},"location":"Left Ankle"},{"euler":{"heading":40.17972423068331,"pitch":-12.96967857611921,"roll":-8.77539341456403},"location":"Right Ankle"},{"euler":{"heading":67.67609781769497,"pitch":-164.27522625586613,"roll":54.564443920193135},"location":"Right Hip"},{"euler":{"heading":25.605773618103402,"pitch":-105.97987284014593,"roll":20.41715108562746},"location":"Right Knee"},{"euler":{"heading":7.360408921026111,"pitch":-127.23547955813015,"roll":56.80605116106552},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.560"} +{"sensors":[{"euler":{"heading":40.309580254166704,"pitch":132.3879933669163,"roll":20.716559223014823},"location":"Left Knee"},{"euler":{"heading":27.680924935488726,"pitch":97.18666691666846,"roll":17.092031666312533},"location":"Left Ankle"},{"euler":{"heading":38.350961367575124,"pitch":-12.532610135077134,"roll":-9.646938088607392},"location":"Right Ankle"},{"euler":{"heading":68.37983083838219,"pitch":-164.5938732219024,"roll":55.21824284349741},"location":"Right Hip"},{"euler":{"heading":27.85659098255764,"pitch":-106.06502174138252,"roll":18.605767949418517},"location":"Right Knee"},{"euler":{"heading":7.560584145203354,"pitch":-126.77907212703735,"roll":56.43805553372252},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.662"} +{"sensors":[{"euler":{"heading":35.40734452690589,"pitch":132.6483509093266,"roll":21.807731569376752},"location":"Left Knee"},{"euler":{"heading":26.981404411869622,"pitch":97.1451290102924,"roll":15.983395250928476},"location":"Left Ankle"},{"euler":{"heading":35.117542508403005,"pitch":-11.86363364471488,"roll":-10.76256906281731},"location":"Right Ankle"},{"euler":{"heading":69.69326481171167,"pitch":-164.2401156968433,"roll":55.25099027864819},"location":"Right Hip"},{"euler":{"heading":30.793494382742406,"pitch":-105.88047732460855,"roll":15.837084044280274},"location":"Right Knee"},{"euler":{"heading":7.855284167647378,"pitch":-126.47309595443399,"roll":56.44989330386707},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.762"} +{"sensors":[{"euler":{"heading":31.77984426788924,"pitch":132.3429189671116,"roll":22.67620007896682},"location":"Left Knee"},{"euler":{"heading":26.765356229218355,"pitch":97.20861262361504,"roll":15.105069248142616},"location":"Left Ankle"},{"euler":{"heading":32.43435083543265,"pitch":-11.829043022634801,"roll":-11.41535727025851},"location":"Right Ankle"},{"euler":{"heading":71.11353095542448,"pitch":-163.42654879602028,"roll":54.62663877802449},"location":"Right Hip"},{"euler":{"heading":32.94257944849336,"pitch":-105.48756599139597,"roll":13.510130208283279},"location":"Right Knee"},{"euler":{"heading":8.44735737364248,"pitch":-126.90371734854547,"roll":56.680581389111715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.863"} +{"sensors":[{"euler":{"heading":29.231767862514744,"pitch":131.76927583340358,"roll":23.200462053922166},"location":"Left Knee"},{"euler":{"heading":27.016518362316017,"pitch":97.31956513178338,"roll":14.726465471467888},"location":"Left Ankle"},{"euler":{"heading":32.270651633937305,"pitch":-12.451726669342033,"roll":-11.375846442334458},"location":"Right Ankle"},{"euler":{"heading":72.24671678319527,"pitch":-162.68442707553416,"roll":53.56227282482539},"location":"Right Hip"},{"euler":{"heading":33.198085122336025,"pitch":-104.87638209029623,"roll":12.914635810682617},"location":"Right Knee"},{"euler":{"heading":9.19968511052539,"pitch":-127.84628952510758,"roll":57.097411055062324},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.964"} +{"sensors":[{"euler":{"heading":27.728045834342957,"pitch":130.899427308256,"roll":23.383533575875944},"location":"Left Knee"},{"euler":{"heading":27.816700404662946,"pitch":97.58048659709814,"roll":14.805993190760825},"location":"Left Ankle"},{"euler":{"heading":34.59797226274165,"pitch":-13.205427426687693,"roll":-10.424516704848399},"location":"Right Ankle"},{"euler":{"heading":72.4373499549283,"pitch":-162.37556339082357,"roll":52.53375621601845},"location":"Right Hip"},{"euler":{"heading":31.43345075783915,"pitch":-104.0201263213121,"roll":14.343684594494956},"location":"Right Knee"},{"euler":{"heading":10.160518081217294,"pitch":-129.27589443637908,"roll":57.65889436788528},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.64"} +{"sensors":[{"euler":{"heading":27.05565879808025,"pitch":129.86262013601316,"roll":23.103292361842367},"location":"Left Knee"},{"euler":{"heading":28.95345850369163,"pitch":97.95927531134265,"roll":15.365471067070452},"location":"Left Ankle"},{"euler":{"heading":37.73425852748108,"pitch":-13.81014345919757,"roll":-8.998877910199083},"location":"Right Ankle"},{"euler":{"heading":71.58273789159198,"pitch":-162.45874410504138,"roll":51.995467472508274},"location":"Right Hip"},{"euler":{"heading":28.61520400824714,"pitch":-103.39395450612314,"roll":17.00421597760699},"location":"Right Knee"},{"euler":{"heading":11.191004679825648,"pitch":-130.9737892103975,"roll":58.39288831407179},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.164"} +{"sensors":[{"euler":{"heading":27.325561479830988,"pitch":128.74013462880873,"roll":22.14816277188},"location":"Left Knee"},{"euler":{"heading":30.514437400580285,"pitch":98.41499262354293,"roll":16.668399875570504},"location":"Left Ankle"},{"euler":{"heading":39.838512297956235,"pitch":-13.98278154603269,"roll":-8.16069627402115},"location":"Right Ankle"},{"euler":{"heading":70.84731062262428,"pitch":-162.5042857221932,"roll":51.69863324766819},"location":"Right Hip"},{"euler":{"heading":26.254118881879624,"pitch":-103.36837022971402,"roll":19.096563216461174},"location":"Right Knee"},{"euler":{"heading":12.480664052020673,"pitch":-133.0987573312248,"roll":59.18785791111121},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.264"} +{"sensors":[{"euler":{"heading":29.128009328393276,"pitch":127.98601900331678,"roll":20.01159397825419},"location":"Left Knee"},{"euler":{"heading":32.696251973684426,"pitch":99.21975016511522,"roll":19.601253431694303},"location":"Left Ankle"},{"euler":{"heading":40.87181730062463,"pitch":-14.020091295862507,"roll":-7.735183827487193},"location":"Right Ankle"},{"euler":{"heading":70.26892480922982,"pitch":-162.61683888804632,"roll":51.73324604409214},"location":"Right Hip"},{"euler":{"heading":24.784598956080846,"pitch":-103.71382872824549,"roll":20.413181248021665},"location":"Right Knee"},{"euler":{"heading":12.680511438411282,"pitch":-133.71956565586567,"roll":59.58615947560454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.365"} +{"sensors":[{"euler":{"heading":31.436194723683066,"pitch":127.0479903400569,"roll":17.763164820377003},"location":"Left Knee"},{"euler":{"heading":35.368570196928296,"pitch":100.060916053181,"roll":22.83181436159335},"location":"Left Ankle"},{"euler":{"heading":41.349277234593465,"pitch":-13.732805346993748,"roll":-7.647413600392182},"location":"Right Ankle"},{"euler":{"heading":69.36728098861714,"pitch":-162.90893528672493,"roll":52.198573757456565},"location":"Right Hip"},{"euler":{"heading":23.949966719907618,"pitch":-104.52583135441506,"roll":21.128931482199853},"location":"Right Knee"},{"euler":{"heading":11.518342659930024,"pitch":-131.71294674380758,"roll":59.41149494875858},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.466"} +{"sensors":[{"euler":{"heading":32.08356510885364,"pitch":127.15044079992262,"roll":16.685811838051908},"location":"Left Knee"},{"euler":{"heading":35.96926430142018,"pitch":99.48437188654026,"roll":24.02498391673341},"location":"Left Ankle"},{"euler":{"heading":41.442955525420714,"pitch":-13.264761684780074,"roll":-7.954437504814391},"location":"Right Ankle"},{"euler":{"heading":69.0749140856908,"pitch":-162.9711055790792,"roll":52.78016051422415},"location":"Right Hip"},{"euler":{"heading":23.79570313579156,"pitch":-105.34977190847802,"roll":21.3069167289608},"location":"Right Knee"},{"euler":{"heading":9.972229372223342,"pitch":-129.7247933781124,"roll":58.569734994722836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.567"} +{"sensors":[{"euler":{"heading":28.648111087820073,"pitch":128.4203165771973,"roll":17.476698338221937},"location":"Left Knee"},{"euler":{"heading":33.5479112421126,"pitch":98.31463290782725,"roll":22.488717956796954},"location":"Left Ankle"},{"euler":{"heading":41.133214212030964,"pitch":-12.847185947037483,"roll":-8.273872937647713},"location":"Right Ankle"},{"euler":{"heading":69.05550076724133,"pitch":-163.12843215682005,"roll":53.45505656671602},"location":"Right Hip"},{"euler":{"heading":24.370938581300056,"pitch":-106.00021025965324,"roll":20.950729379785866},"location":"Right Knee"},{"euler":{"heading":8.777617193885009,"pitch":-127.93170825382163,"roll":57.736703699154944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.667"} +{"sensors":[{"euler":{"heading":24.075354034423647,"pitch":130.31255897315415,"roll":19.036585504280158},"location":"Left Knee"},{"euler":{"heading":30.031420637282686,"pitch":97.15509502859672,"roll":19.320942197067296},"location":"Left Ankle"},{"euler":{"heading":40.279122293274284,"pitch":-12.374207146792761,"roll":-8.735336020932676},"location":"Right Ankle"},{"euler":{"heading":69.33687054448093,"pitch":-163.37780859334816,"roll":54.19654995258724},"location":"Right Hip"},{"euler":{"heading":25.686174417761283,"pitch":-106.46986956095937,"roll":19.99822171634095},"location":"Right Knee"},{"euler":{"heading":8.316711811394974,"pitch":-126.70752582282894,"roll":57.18505489977017},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.768"} +{"sensors":[{"euler":{"heading":21.157583317515524,"pitch":131.51945081086362,"roll":20.566994677846807},"location":"Left Knee"},{"euler":{"heading":27.67530904500024,"pitch":96.7955137839528,"roll":16.793383393835356},"location":"Left Ankle"},{"euler":{"heading":38.7058325432371,"pitch":-11.958111033262531,"roll":-9.503675614200574},"location":"Right Ankle"},{"euler":{"heading":69.95964611363777,"pitch":-163.6569708844193,"roll":54.95074314471027},"location":"Right Hip"},{"euler":{"heading":27.993766760905572,"pitch":-106.56786063859461,"roll":18.179126742711123},"location":"Right Knee"},{"euler":{"heading":8.516017827515949,"pitch":-126.05758233705723,"roll":56.882076800951396},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.870"} +{"sensors":[{"euler":{"heading":19.464116836039132,"pitch":131.99322516386044,"roll":21.708066185637385},"location":"Left Knee"},{"euler":{"heading":26.851954666787833,"pitch":96.5058095228881,"roll":15.707210564444633},"location":"Left Ankle"},{"euler":{"heading":35.61619640591723,"pitch":-11.7183381054004,"roll":-10.597262574370339},"location":"Right Ankle"},{"euler":{"heading":71.14139383029791,"pitch":-163.38044550586258,"roll":55.13973323554804},"location":"Right Hip"},{"euler":{"heading":31.131735449782663,"pitch":-106.16306978988344,"roll":15.421300510954769},"location":"Right Knee"},{"euler":{"heading":8.66137345277165,"pitch":-125.66565982622437,"roll":56.833841159826825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.970"} +{"sensors":[{"euler":{"heading":18.499625173497083,"pitch":131.98792431199632,"roll":22.526562280846203},"location":"Left Knee"},{"euler":{"heading":26.421550614524023,"pitch":96.24960866467556,"roll":14.890828454150238},"location":"Left Ankle"},{"euler":{"heading":32.45620310609315,"pitch":-11.673787479667437,"roll":-11.467916007818177},"location":"Right Ankle"},{"euler":{"heading":72.80460856077825,"pitch":-162.48813135905007,"roll":54.56163689820783},"location":"Right Hip"},{"euler":{"heading":33.72488201241165,"pitch":-105.77894871620126,"roll":12.80096082421905},"location":"Right Knee"},{"euler":{"heading":9.11332770673714,"pitch":-125.98283867508457,"roll":57.06367808097147},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.72"} +{"sensors":[{"euler":{"heading":18.00122052809672,"pitch":131.6799170144648,"roll":23.088839770165038},"location":"Left Knee"},{"euler":{"heading":26.544760856895465,"pitch":96.05345073884948,"roll":14.574221469650332},"location":"Left Ankle"},{"euler":{"heading":31.640505718328303,"pitch":-12.07937280047726,"roll":-11.7087803000023},"location":"Right Ankle"},{"euler":{"heading":74.01781427334582,"pitch":-161.62124544959525,"roll":53.545071397117326},"location":"Right Hip"},{"euler":{"heading":34.118063064780976,"pitch":-105.22922667048951,"roll":12.023223188764964},"location":"Right Knee"},{"euler":{"heading":9.703363737885045,"pitch":-126.85843136540048,"roll":57.49162816498725},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.172"} +{"sensors":[{"euler":{"heading":18.241165880218965,"pitch":130.96720143057837,"roll":23.312255891268013},"location":"Left Knee"},{"euler":{"heading":27.263957261481387,"pitch":96.08998339485002,"roll":14.757411002086167},"location":"Left Ankle"},{"euler":{"heading":33.38640848397036,"pitch":-12.844712460051717,"roll":-11.023045636447657},"location":"Right Ankle"},{"euler":{"heading":74.19073333254961,"pitch":-161.19948575965657,"roll":52.48251922703924},"location":"Right Hip"},{"euler":{"heading":32.388868150617206,"pitch":-104.47020335605828,"roll":13.299255223751267},"location":"Right Knee"},{"euler":{"heading":10.430242207736912,"pitch":-128.10852205636306,"roll":58.09884591271432},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.273"} +{"sensors":[{"euler":{"heading":19.103507326044387,"pitch":130.12014240180616,"roll":23.026904346174582},"location":"Left Knee"},{"euler":{"heading":28.292787255479023,"pitch":96.18249396103188,"roll":15.398799254405384},"location":"Left Ankle"},{"euler":{"heading":36.18931782089676,"pitch":-13.572921089966378,"roll":-9.730721667826682},"location":"Right Ankle"},{"euler":{"heading":73.29189043512238,"pitch":-161.24590807619072,"roll":51.80641701514906},"location":"Right Hip"},{"euler":{"heading":29.575857953723656,"pitch":-103.75365553707121,"roll":15.946177024418738},"location":"Right Knee"},{"euler":{"heading":11.156206271965905,"pitch":-129.68559603963539,"roll":58.826661348266974},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.374"} +{"sensors":[{"euler":{"heading":20.546809704491892,"pitch":129.2288083369631,"roll":22.120658313605215},"location":"Left Knee"},{"euler":{"heading":29.76539473795146,"pitch":96.35538408117328,"roll":16.74612018267197},"location":"Left Ankle"},{"euler":{"heading":38.4427197685675,"pitch":-13.797851474281154,"roll":-8.793196913191952},"location":"Right Ankle"},{"euler":{"heading":71.77708355464245,"pitch":-161.5376173936646,"roll":51.49783966219773},"location":"Right Hip"},{"euler":{"heading":26.88017797645418,"pitch":-103.66412819004333,"roll":18.3710371334468},"location":"Right Knee"},{"euler":{"heading":12.02410900482924,"pitch":-131.808251975228,"roll":59.621985472637775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.475"} +{"sensors":[{"euler":{"heading":23.042497098942665,"pitch":128.42820766311297,"roll":20.21857287673467},"location":"Left Knee"},{"euler":{"heading":31.98781173837846,"pitch":96.79125750042064,"roll":19.4991666795719},"location":"Left Ankle"},{"euler":{"heading":39.36033483074884,"pitch":-13.83491675988686,"roll":-8.485877121407759},"location":"Right Ankle"},{"euler":{"heading":70.78646425701676,"pitch":-161.70050765547933,"roll":51.385084319320256},"location":"Right Hip"},{"euler":{"heading":25.178309305867145,"pitch":-104.03496050428527,"roll":19.899358160001807},"location":"Right Knee"},{"euler":{"heading":12.306684664860812,"pitch":-132.78368651847114,"roll":60.24058422213917},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.576"} +{"sensors":[{"euler":{"heading":26.411766809313285,"pitch":127.60269383629816,"roll":17.801822176707535},"location":"Left Knee"},{"euler":{"heading":34.72904703046884,"pitch":97.52455102919926,"roll":23.018868062095247},"location":"Left Ankle"},{"euler":{"heading":39.84413819751084,"pitch":-13.743604753002524,"roll":-8.403986252405932},"location":"Right Ankle"},{"euler":{"heading":69.52944818728483,"pitch":-162.1570589902595,"roll":51.77651535236835},"location":"Right Hip"},{"euler":{"heading":24.34368001540175,"pitch":-104.75696241908335,"roll":20.72938415919165},"location":"Right Knee"},{"euler":{"heading":11.164691245414893,"pitch":-131.13957718700436,"roll":60.23553458965021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.676"} +{"sensors":[{"euler":{"heading":28.49275609594384,"pitch":127.54536263214699,"roll":16.209495460775628},"location":"Left Knee"},{"euler":{"heading":35.98664642554596,"pitch":96.85039585303153,"roll":25.002805985336686},"location":"Left Ankle"},{"euler":{"heading":39.96084640704455,"pitch":-13.607471025038679,"roll":-8.502299167003327},"location":"Right Ankle"},{"euler":{"heading":68.88664979902725,"pitch":-162.48100130059302,"roll":52.42203161248092},"location":"Right Hip"},{"euler":{"heading":24.34994214905664,"pitch":-105.39244803520242,"roll":20.986993467241046},"location":"Right Knee"},{"euler":{"heading":9.581589751021822,"pitch":-129.19407494041494,"roll":59.53536431113381},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.777"} +{"sensors":[{"euler":{"heading":26.59975673688753,"pitch":128.52202327314498,"roll":16.49872321782639},"location":"Left Knee"},{"euler":{"heading":34.2874712363856,"pitch":95.78258094840143,"roll":24.03345392360559},"location":"Left Ankle"},{"euler":{"heading":39.73536034977226,"pitch":-13.472396392078657,"roll":-8.710166225736387},"location":"Right Ankle"},{"euler":{"heading":68.82406117602243,"pitch":-162.73845677819278,"roll":53.136939956430496},"location":"Right Hip"},{"euler":{"heading":25.003108108185405,"pitch":-105.84857697920789,"roll":20.756363715346897},"location":"Right Knee"},{"euler":{"heading":8.25562143988709,"pitch":-127.30284167551747,"roll":58.693711908913905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.877"} +{"sensors":[{"euler":{"heading":48.896399808034445,"pitch":130.27379405987352,"roll":17.973280962204843},"location":"Left Knee"},{"euler":{"heading":30.779658935091273,"pitch":94.59636547119393,"roll":21.206250500674226},"location":"Left Ankle"},{"euler":{"heading":39.01565492647577,"pitch":-13.249100493443638,"roll":-9.136072251658069},"location":"Right Ankle"},{"euler":{"heading":69.08791498395968,"pitch":-163.01898428456073,"roll":53.89680354478672},"location":"Right Hip"},{"euler":{"heading":26.298919057282077,"pitch":-106.13646523291654,"roll":19.953141838278064},"location":"Right Knee"},{"euler":{"heading":7.603927492731316,"pitch":-125.90066782378582,"roll":58.06291839349533},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.978"} +{"sensors":[{"euler":{"heading":40.45249024462847,"pitch":132.03134170827596,"roll":19.592946282122856},"location":"Left Knee"},{"euler":{"heading":27.72910682870973,"pitch":94.08184756528684,"roll":18.273430202482867},"location":"Left Ankle"},{"euler":{"heading":37.62968969111748,"pitch":-12.892467601537737,"roll":-9.87223714986994},"location":"Right Ankle"},{"euler":{"heading":69.53582519077099,"pitch":-163.48091240058915,"roll":54.66167416769348},"location":"Right Hip"},{"euler":{"heading":28.25172378935983,"pitch":-106.24239014074902,"roll":18.44749108094214},"location":"Right Knee"},{"euler":{"heading":7.587562964434498,"pitch":-125.20262518212706,"roll":57.67643359833344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.79"} +{"sensors":[{"euler":{"heading":35.01306261526961,"pitch":132.7120707073991,"roll":20.850455298047244},"location":"Left Knee"},{"euler":{"heading":26.818715234176665,"pitch":93.92542913144325,"roll":16.94539780630811},"location":"Left Ankle"},{"euler":{"heading":34.96097350468779,"pitch":-12.67677492286628,"roll":-10.782132032135053},"location":"Right Ankle"},{"euler":{"heading":70.36036226546113,"pitch":-163.57785302896625,"roll":55.08030238160622},"location":"Right Hip"},{"euler":{"heading":31.158645846369758,"pitch":-105.88045026299632,"roll":15.925730247875743},"location":"Right Knee"},{"euler":{"heading":7.657398013280129,"pitch":-124.77312425148114,"roll":57.481291137360195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.180"} +{"sensors":[{"euler":{"heading":31.17757721136231,"pitch":132.68595219028182,"roll":21.875383022109755},"location":"Left Knee"},{"euler":{"heading":26.441896664424423,"pitch":93.84928837277019,"roll":15.880436463531911},"location":"Left Ankle"},{"euler":{"heading":31.69378562114835,"pitch":-12.178389304636127,"roll":-11.920574538755435},"location":"Right Ankle"},{"euler":{"heading":71.55273408408806,"pitch":-162.91646342709956,"roll":54.78728885790421},"location":"Right Hip"},{"euler":{"heading":33.77664275383607,"pitch":-105.79669750042812,"roll":13.30496918276106},"location":"Right Knee"},{"euler":{"heading":8.190203484796239,"pitch":-124.98495563330145,"roll":57.596031661301346},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.280"} +{"sensors":[{"euler":{"heading":28.435421566220242,"pitch":132.22236543094454,"roll":22.606619424825077},"location":"Left Knee"},{"euler":{"heading":26.591146718428735,"pitch":93.87551541979734,"roll":15.32106040377417},"location":"Left Ankle"},{"euler":{"heading":30.350364661295885,"pitch":-12.464630724739242,"roll":-12.415645104668037},"location":"Right Ankle"},{"euler":{"heading":72.78469505352207,"pitch":-162.15151984605197,"roll":53.85032846135043},"location":"Right Hip"},{"euler":{"heading":34.70146769699489,"pitch":-105.25717771824826,"roll":12.05717095027419},"location":"Right Knee"},{"euler":{"heading":8.965346556956524,"pitch":-125.7176595651734,"roll":57.97928696014974},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.382"} +{"sensors":[{"euler":{"heading":26.784678283933914,"pitch":131.48777602188278,"roll":22.893742641521914},"location":"Left Knee"},{"euler":{"heading":27.65865641159433,"pitch":94.12516931070715,"roll":15.641292707690301},"location":"Left Ankle"},{"euler":{"heading":31.67605855824795,"pitch":-13.31222890679462,"roll":-11.936154132395407},"location":"Right Ankle"},{"euler":{"heading":73.30590812344927,"pitch":-161.72688030651256,"roll":52.687395045376235},"location":"Right Hip"},{"euler":{"heading":33.48487121853786,"pitch":-104.51333148544977,"roll":12.919747481089361},"location":"Right Knee"},{"euler":{"heading":9.61786877995214,"pitch":-126.74927416534054,"roll":58.46282720393511},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.482"} +{"sensors":[{"euler":{"heading":26.015691636013795,"pitch":130.6447051443414,"roll":22.707655212887857},"location":"Left Knee"},{"euler":{"heading":28.919177176907667,"pitch":94.38674674046374,"roll":16.388851625676008},"location":"Left Ankle"},{"euler":{"heading":34.69376024943697,"pitch":-13.995965071192,"roll":-10.723439402796854},"location":"Right Ankle"},{"euler":{"heading":72.56739652117074,"pitch":-161.7231342579283,"roll":51.938296268643164},"location":"Right Hip"},{"euler":{"heading":30.497045298118312,"pitch":-104.00076687333437,"roll":15.57898869567238},"location":"Right Knee"},{"euler":{"heading":10.294840645785424,"pitch":-128.2594513466194,"roll":59.090620563704846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.583"} +{"sensors":[{"euler":{"heading":26.07570189362654,"pitch":129.69158147429843,"roll":21.956629189301093},"location":"Left Knee"},{"euler":{"heading":30.587438117280502,"pitch":94.71262125197417,"roll":17.7965718975821},"location":"Left Ankle"},{"euler":{"heading":37.37273686215233,"pitch":-14.293614274644101,"roll":-9.632029374849552},"location":"Right Ankle"},{"euler":{"heading":70.93416580971221,"pitch":-162.1121348550599,"roll":51.59933798912357},"location":"Right Hip"},{"euler":{"heading":27.473921861206403,"pitch":-103.91745961784234,"roll":18.229027409766665},"location":"Right Knee"},{"euler":{"heading":11.152355158275306,"pitch":-130.22644911131584,"roll":59.819218434940225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.684"} +{"sensors":[{"euler":{"heading":27.533876133676472,"pitch":128.92424854097095,"roll":20.076092317704475},"location":"Left Knee"},{"euler":{"heading":32.631173420627846,"pitch":95.03722351412075,"roll":20.479420795181728},"location":"Left Ankle"},{"euler":{"heading":38.52585115000665,"pitch":-14.212176471069034,"roll":-9.280587556341864},"location":"Right Ankle"},{"euler":{"heading":69.89414366972427,"pitch":-162.36306157114632,"roll":51.4888182410635},"location":"Right Hip"},{"euler":{"heading":25.390981998971437,"pitch":-104.34148279888437,"roll":19.96705225177437},"location":"Right Knee"},{"euler":{"heading":11.878268334190524,"pitch":-131.7447428317011,"roll":60.508235028641415},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.785"} +{"sensors":[{"euler":{"heading":30.19631859035523,"pitch":127.92075209664253,"roll":17.702621607854095},"location":"Left Knee"},{"euler":{"heading":35.80279917393623,"pitch":96.30003315400343,"roll":24.09018011776619},"location":"Left Ankle"},{"euler":{"heading":39.143027949077414,"pitch":-14.055251125478716,"roll":-9.057701535370098},"location":"Right Ankle"},{"euler":{"heading":68.79287175823984,"pitch":-162.72091567065638,"roll":51.77525667092736},"location":"Right Hip"},{"euler":{"heading":24.244332033358308,"pitch":-105.05810803481901,"roll":20.974943392088075},"location":"Right Knee"},{"euler":{"heading":11.105224495732477,"pitch":-130.3718768584473,"roll":60.6560843627665},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.886"} +{"sensors":[{"euler":{"heading":31.81746464680714,"pitch":127.70236885758119,"roll":16.107840723047435},"location":"Left Knee"},{"euler":{"heading":37.22255196422598,"pitch":96.20014883216031,"roll":26.287310869337645},"location":"Left Ankle"},{"euler":{"heading":39.4700124087822,"pitch":-13.824073676793963,"roll":-9.046267373697043},"location":"Right Ankle"},{"euler":{"heading":68.33110428511084,"pitch":-162.90204154391427,"roll":52.36738489440426},"location":"Right Hip"},{"euler":{"heading":23.923768287812855,"pitch":-105.72440027397168,"roll":21.44700620219983},"location":"Right Knee"},{"euler":{"heading":9.7944919768132,"pitch":-128.58263635243608,"roll":60.01697954949265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.987"} +{"sensors":[{"euler":{"heading":29.73225068988669,"pitch":128.59869590977948,"roll":16.347285302859913},"location":"Left Knee"},{"euler":{"heading":35.52535103009314,"pitch":95.29525885424923,"roll":25.451418608543765},"location":"Left Ankle"},{"euler":{"heading":39.381028469543715,"pitch":-13.460308966671832,"roll":-9.208334806836122},"location":"Right Ankle"},{"euler":{"heading":68.29189211742778,"pitch":-163.00053944875518,"roll":53.04587434978396},"location":"Right Hip"},{"euler":{"heading":24.232040575224243,"pitch":-106.33325682348736,"roll":21.386648849224503},"location":"Right Knee"},{"euler":{"heading":8.590468855456466,"pitch":-126.79712859649734,"roll":59.21869314965232},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.88"} +{"sensors":[{"euler":{"heading":51.639641661116684,"pitch":130.2896654493212,"roll":17.812467336590103},"location":"Left Knee"},{"euler":{"heading":31.674327404506847,"pitch":94.39915746577798,"roll":22.429878329365074},"location":"Left Ankle"},{"euler":{"heading":38.790926754143854,"pitch":-13.000350578504225,"roll":-9.580907277728258},"location":"Right Ankle"},{"euler":{"heading":68.51543346519534,"pitch":-163.15506613193975,"roll":53.725220932517594},"location":"Right Hip"},{"euler":{"heading":24.710375276848993,"pitch":-106.7890710192654,"roll":21.040712911200625},"location":"Right Knee"},{"euler":{"heading":7.955389189658795,"pitch":-125.41333412383156,"roll":58.62714044902069},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.189"} +{"sensors":[{"euler":{"heading":42.94835659529478,"pitch":132.027867410171,"roll":19.39986757911058},"location":"Left Knee"},{"euler":{"heading":28.3605901638514,"pitch":94.01635980084077,"roll":19.350933991329708},"location":"Left Ankle"},{"euler":{"heading":37.552698046496076,"pitch":-12.453348928409468,"roll":-10.381772816013633},"location":"Right Ankle"},{"euler":{"heading":68.9600624118043,"pitch":-163.46730739751888,"roll":54.518303953274845},"location":"Right Hip"},{"euler":{"heading":26.02950319687262,"pitch":-106.99938546604453,"roll":20.079645571351072},"location":"Right Knee"},{"euler":{"heading":8.059643953994911,"pitch":-124.77948498522537,"roll":58.299944919694134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.290"} +{"sensors":[{"euler":{"heading":37.3539406359662,"pitch":132.62569259490434,"roll":20.693579114463407},"location":"Left Knee"},{"euler":{"heading":26.996890564148305,"pitch":94.02669419130888,"roll":17.652865288268153},"location":"Left Ankle"},{"euler":{"heading":35.42706520870839,"pitch":-12.202138380153347,"roll":-11.20752631205493},"location":"Right Ankle"},{"euler":{"heading":69.7224597179949,"pitch":-163.60121404649118,"roll":55.1229841687225},"location":"Right Hip"},{"euler":{"heading":28.482969756741877,"pitch":-106.73190508049143,"roll":18.0625553159217},"location":"Right Knee"},{"euler":{"heading":8.37687463837367,"pitch":-124.52697730812862,"roll":58.194123683509524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.391"} +{"sensors":[{"euler":{"heading":33.46883995601011,"pitch":132.4948299441559,"roll":21.63235944365289},"location":"Left Knee"},{"euler":{"heading":26.415372508755052,"pitch":94.10738921516945,"roll":16.520606156472418},"location":"Left Ankle"},{"euler":{"heading":32.06353038363885,"pitch":-12.0580585224247,"roll":-12.275776682873978},"location":"Right Ankle"},{"euler":{"heading":71.20283409663043,"pitch":-162.99705530588804,"roll":54.932926080570475},"location":"Right Hip"},{"euler":{"heading":31.46689594413787,"pitch":-106.28772828655167,"roll":15.34554447015932},"location":"Right Knee"},{"euler":{"heading":9.023067771470899,"pitch":-124.84545770545506,"roll":58.38374345007752},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.491"} +{"sensors":[{"euler":{"heading":30.626606300844156,"pitch":131.99591590495902,"roll":22.27375260046405},"location":"Left Knee"},{"euler":{"heading":26.444577308673015,"pitch":94.26364243790765,"roll":15.912224619871113},"location":"Left Ankle"},{"euler":{"heading":30.07047112154958,"pitch":-11.987137326153116,"roll":-12.933253824111127},"location":"Right Ankle"},{"euler":{"heading":72.63493940162556,"pitch":-162.18282827529612,"roll":54.059400953676935},"location":"Right Hip"},{"euler":{"heading":32.95293691710652,"pitch":-105.82040539162134,"roll":13.671769675371692},"location":"Right Knee"},{"euler":{"heading":9.80781823025647,"pitch":-125.68061098117795,"roll":58.787192648454266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.592"} +{"sensors":[{"euler":{"heading":28.882028638105457,"pitch":131.1936878750381,"roll":22.586594440232183},"location":"Left Knee"},{"euler":{"heading":27.615934538213516,"pitch":94.69635215856572,"roll":16.217839627221053},"location":"Left Ankle"},{"euler":{"heading":30.650210812353702,"pitch":-12.458040189238396,"roll":-12.695845436329977},"location":"Right Ankle"},{"euler":{"heading":73.46271781767824,"pitch":-161.66008560189528,"roll":52.80523584170421},"location":"Right Hip"},{"euler":{"heading":32.100738588383706,"pitch":-105.10621647706641,"roll":14.125109400643955},"location":"Right Knee"},{"euler":{"heading":10.711964583472955,"pitch":-127.1794838196228,"roll":59.30684177152087},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.693"} +{"sensors":[{"euler":{"heading":28.03026519442409,"pitch":130.15861572745695,"roll":22.501068151759185},"location":"Left Knee"},{"euler":{"heading":28.973376168034722,"pitch":95.22464247614492,"roll":16.880828026356504},"location":"Left Ankle"},{"euler":{"heading":33.1581962445954,"pitch":-13.08034360578435,"roll":-11.488154129824117},"location":"Right Ankle"},{"euler":{"heading":73.18330735249569,"pitch":-161.53189662666372,"roll":51.74171677962791},"location":"Right Hip"},{"euler":{"heading":29.37560962887963,"pitch":-104.13297280800167,"roll":16.4497142746193},"location":"Right Knee"},{"euler":{"heading":11.696036241660249,"pitch":-129.03518233661953,"roll":59.97919977149426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.794"} +{"sensors":[{"euler":{"heading":27.91548236493713,"pitch":129.0495908160752,"roll":21.864818628215318},"location":"Left Knee"},{"euler":{"heading":30.744777036809253,"pitch":95.80374944808136,"roll":18.16446008243289},"location":"Left Ankle"},{"euler":{"heading":36.34134042329717,"pitch":-13.726684765114088,"roll":-10.127805521568831},"location":"Right Ankle"},{"euler":{"heading":71.75357422914301,"pitch":-161.8320731513285,"roll":51.272825418080245},"location":"Right Hip"},{"euler":{"heading":26.40705887056566,"pitch":-103.44255871096195,"roll":19.302300051874305},"location":"Right Knee"},{"euler":{"heading":12.739605344562833,"pitch":-131.4040133612831,"roll":60.75406838263447},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.895"} +{"sensors":[{"euler":{"heading":28.968942680923078,"pitch":128.02228058236108,"roll":20.272444687372467},"location":"Left Knee"},{"euler":{"heading":33.134556736207365,"pitch":96.40505791360127,"roll":20.628009108832252},"location":"Left Ankle"},{"euler":{"heading":38.01428210026202,"pitch":-13.782410393622914,"roll":-9.366539270768472},"location":"Right Ankle"},{"euler":{"heading":70.65425400215504,"pitch":-162.09775009988329,"roll":51.00906061654199},"location":"Right Hip"},{"euler":{"heading":24.07153767674568,"pitch":-103.48369465483938,"roll":21.277112452073343},"location":"Right Knee"},{"euler":{"heading":13.689203507199034,"pitch":-133.58912667292248,"roll":61.52062606145713},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.995"} +{"sensors":[{"euler":{"heading":31.24055274276442,"pitch":126.86677146478587,"roll":17.939749049911118},"location":"Left Knee"},{"euler":{"heading":36.589523262718586,"pitch":97.9420333313452,"roll":24.159235595818586},"location":"Left Ankle"},{"euler":{"heading":38.7419916932456,"pitch":-13.541515052527176,"roll":-9.034406870072688},"location":"Right Ankle"},{"euler":{"heading":70.00383472221323,"pitch":-162.2430296274644,"roll":51.156831416682444},"location":"Right Hip"},{"euler":{"heading":22.866707083525785,"pitch":-104.07383115423039,"roll":22.439813676348557},"location":"Right Knee"},{"euler":{"heading":13.271726612418751,"pitch":-132.8672115903213,"roll":61.81592939013449},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.97"} +{"sensors":[{"euler":{"heading":33.21945073062174,"pitch":126.35625774795385,"roll":15.965692978284354},"location":"Left Knee"},{"euler":{"heading":38.46125155043009,"pitch":96.28880657928245,"roll":26.861093906030742},"location":"Left Ankle"},{"euler":{"heading":39.218933360008464,"pitch":-13.258136478100614,"roll":-8.983571458255454},"location":"Right Ankle"},{"euler":{"heading":69.41181905057947,"pitch":-162.4279972199297,"roll":51.70671706461943},"location":"Right Hip"},{"euler":{"heading":22.37959895123129,"pitch":-104.81591673197855,"roll":23.0281790427713},"location":"Right Knee"},{"euler":{"heading":11.824069769413319,"pitch":-131.03679771421358,"roll":61.31619732930989},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.197"} +{"sensors":[{"euler":{"heading":31.813608659567535,"pitch":127.1725477476069,"roll":15.820323740466126},"location":"Left Knee"},{"euler":{"heading":37.009276199413605,"pitch":95.34575650197772,"roll":26.666221570566222},"location":"Left Ankle"},{"euler":{"heading":39.33596852470714,"pitch":-12.89469873123599,"roll":-9.133766912589063},"location":"Right Ankle"},{"euler":{"heading":69.21245203173392,"pitch":-162.5299714007382,"roll":52.41238065001747},"location":"Right Hip"},{"euler":{"heading":22.45637995486051,"pitch":-105.52902863040947,"roll":23.138459358368767},"location":"Right Knee"},{"euler":{"heading":10.085816319922696,"pitch":-129.09512704933047,"roll":60.281362094696796},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.303"} +{"sensors":[{"euler":{"heading":53.13576952460938,"pitch":128.98728890454996,"roll":17.15727372300309},"location":"Left Knee"},{"euler":{"heading":33.19257439975914,"pitch":94.4151249905901,"roll":23.873951096563506},"location":"Left Ankle"},{"euler":{"heading":39.00967994837071,"pitch":-12.399364358231846,"roll":-9.442088957123726},"location":"Right Ankle"},{"euler":{"heading":69.34647591580824,"pitch":-162.65791714129375,"roll":53.11037111814849},"location":"Right Hip"},{"euler":{"heading":23.185122610505356,"pitch":-106.08512620079526,"roll":22.691280966208026},"location":"Right Knee"},{"euler":{"heading":8.947911061594652,"pitch":-127.53435280650896,"roll":59.45198101824974},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.404"} +{"sensors":[{"euler":{"heading":71.35533090805139,"pitch":131.12880879089417,"roll":18.848616360255885},"location":"Left Knee"},{"euler":{"heading":29.306463762705828,"pitch":93.63841811296447,"roll":20.437663067164355},"location":"Left Ankle"},{"euler":{"heading":38.082586072569356,"pitch":-11.83818778396767,"roll":-10.143198732482613},"location":"Right Ankle"},{"euler":{"heading":69.85455013633798,"pitch":-162.81530920662522,"roll":53.801418373693814},"location":"Right Hip"},{"euler":{"heading":24.727120212413347,"pitch":-106.38618457399743,"roll":21.55536754604574},"location":"Right Knee"},{"euler":{"heading":8.69396054904764,"pitch":-126.72252316170398,"roll":58.93336174929316},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.505"} +{"sensors":[{"euler":{"heading":60.10818900176988,"pitch":132.23427369788791,"roll":20.2958358543853},"location":"Left Knee"},{"euler":{"heading":27.176840070566502,"pitch":93.6074151778993,"roll":18.160594735696257},"location":"Left Ankle"},{"euler":{"heading":36.1819835568595,"pitch":-11.56226008485115,"roll":-11.021373107720867},"location":"Right Ankle"},{"euler":{"heading":70.40730282803437,"pitch":-163.2252682070706,"roll":54.46834696633905},"location":"Right Hip"},{"euler":{"heading":27.250111379333887,"pitch":-106.27810510504956,"roll":19.57031327399559},"location":"Right Knee"},{"euler":{"heading":8.872471142497186,"pitch":-126.41003558976902,"roll":58.6602712493978},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.606"} +{"sensors":[{"euler":{"heading":51.570861265316275,"pitch":132.53303504231332,"roll":21.37946701737387},"location":"Left Knee"},{"euler":{"heading":26.128707511396268,"pitch":93.67448631658563,"roll":16.664936575796865},"location":"Left Ankle"},{"euler":{"heading":32.99081269826549,"pitch":-10.932080298693126,"roll":-12.17272967143322},"location":"Right Ankle"},{"euler":{"heading":71.2582317385055,"pitch":-162.99575381963527,"roll":54.649717187394685},"location":"Right Hip"},{"euler":{"heading":30.213675239878967,"pitch":-106.10896299567281,"roll":16.810947299713796},"location":"Right Knee"},{"euler":{"heading":9.024580728895472,"pitch":-126.23428891095082,"roll":58.698533227913934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.707"} +{"sensors":[{"euler":{"heading":45.062076564899456,"pitch":132.31586151205278,"roll":22.217330467577423},"location":"Left Knee"},{"euler":{"heading":25.876919095303943,"pitch":93.84219285565688,"roll":15.763396161024833},"location":"Left Ankle"},{"euler":{"heading":30.253034027635252,"pitch":-10.688838234802516,"roll":-12.917298150695832},"location":"Right Ankle"},{"euler":{"heading":72.32358047283724,"pitch":-162.24110366905438,"roll":54.082561742660644},"location":"Right Hip"},{"euler":{"heading":32.34297270806571,"pitch":-105.8905121323967,"roll":14.504315642374147},"location":"Right Knee"},{"euler":{"heading":9.41666673500522,"pitch":-126.77086111316606,"roll":58.9590772283939},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.808"} +{"sensors":[{"euler":{"heading":40.24398722297426,"pitch":131.73884690902275,"roll":22.74957053277205},"location":"Left Knee"},{"euler":{"heading":26.437699698857077,"pitch":94.13663370624344,"roll":15.50647362445151},"location":"Left Ankle"},{"euler":{"heading":29.800881439574027,"pitch":-11.098937161327768,"roll":-12.99650884913725},"location":"Right Ankle"},{"euler":{"heading":73.04725416132436,"pitch":-161.7068722457461,"roll":52.885646538675836},"location":"Right Hip"},{"euler":{"heading":32.43958893569514,"pitch":-105.3539588559175,"roll":13.945046200641585},"location":"Right Knee"},{"euler":{"heading":10.040917016980645,"pitch":-127.90443045745064,"roll":59.39697746034938},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.909"} +{"sensors":[{"euler":{"heading":36.82807331524332,"pitch":130.9135100862956,"roll":22.9101346916372},"location":"Left Knee"},{"euler":{"heading":27.610303158814585,"pitch":94.49224550824168,"roll":15.904193432190542},"location":"Left Ankle"},{"euler":{"heading":31.74338406020326,"pitch":-12.242915450492895,"roll":-12.057482340112188},"location":"Right Ankle"},{"euler":{"heading":68.82409821150505,"pitch":-161.63963107852499,"roll":51.73124410859841},"location":"Right Hip"},{"euler":{"heading":30.562691989201053,"pitch":-104.23824255992963,"roll":15.43065527471474},"location":"Right Knee"},{"euler":{"heading":10.819591308501396,"pitch":-129.50091863814475,"roll":59.983472310853365},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.10"} +{"sensors":[{"euler":{"heading":34.584040350715014,"pitch":129.98237882810966,"roll":22.56790997230964},"location":"Left Knee"},{"euler":{"heading":29.135233814190784,"pitch":94.87942814917842,"roll":16.86455624420291},"location":"Left Ankle"},{"euler":{"heading":35.13533129235341,"pitch":-12.968916897752312,"roll":-10.553796815927281},"location":"Right Ankle"},{"euler":{"heading":68.42207085476483,"pitch":-161.85227037276005,"roll":51.28118488193512},"location":"Right Hip"},{"euler":{"heading":27.30175161041761,"pitch":-103.53186937832842,"roll":18.43368672843058},"location":"Right Knee"},{"euler":{"heading":11.582020427268226,"pitch":-131.37360315409657,"roll":60.67470019029448},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.111"} +{"sensors":[{"euler":{"heading":33.650315371195724,"pitch":129.00902459049263,"roll":21.532911822664833},"location":"Left Knee"},{"euler":{"heading":31.228079050318378,"pitch":95.38435806981227,"roll":18.720485684122036},"location":"Left Ankle"},{"euler":{"heading":37.81752905610836,"pitch":-13.34048274807174,"roll":-9.490414641065723},"location":"Right Ankle"},{"euler":{"heading":67.68861037616492,"pitch":-162.16953383081162,"roll":51.24254657673463},"location":"Right Hip"},{"euler":{"heading":24.32848650422739,"pitch":-103.49316596046194,"roll":20.960805205485716},"location":"Right Knee"},{"euler":{"heading":12.39654640019889,"pitch":-133.49621085046564,"roll":61.34773753262479},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.212"} +{"sensors":[{"euler":{"heading":34.259148439658574,"pitch":128.28878390460912,"roll":19.460814035199906},"location":"Left Knee"},{"euler":{"heading":33.83943989295055,"pitch":96.22770156665753,"roll":21.767290734237125},"location":"Left Ankle"},{"euler":{"heading":39.062460433261876,"pitch":-13.480508274303595,"roll":-9.015701837723904},"location":"Right Ankle"},{"euler":{"heading":67.39720973449108,"pitch":-162.46850824241787,"roll":51.36810704313009},"location":"Right Hip"},{"euler":{"heading":22.48256574025226,"pitch":-103.78513612148055,"roll":22.60543851128131},"location":"Right Knee"},{"euler":{"heading":12.593800074184212,"pitch":-134.53105481947043,"roll":61.73677586821993},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.313"} +{"sensors":[{"euler":{"heading":36.01806550669679,"pitch":127.35168129185419,"roll":17.02102016387524},"location":"Left Knee"},{"euler":{"heading":36.60187659669476,"pitch":97.34754053656626,"roll":25.118799454022735},"location":"Left Ankle"},{"euler":{"heading":39.70130919607008,"pitch":-13.535870191799109,"roll":-8.859630203430275},"location":"Right Ankle"},{"euler":{"heading":66.8851270569665,"pitch":-162.89956604227692,"roll":51.87411388309343},"location":"Right Hip"},{"euler":{"heading":21.631056982789147,"pitch":-104.33470740963148,"roll":23.540712593224537},"location":"Right Knee"},{"euler":{"heading":11.59003087264946,"pitch":-132.76828967570012,"roll":61.60723704501147},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.413"} +{"sensors":[{"euler":{"heading":36.60808588827233,"pitch":127.29444640591424,"roll":15.592146792839198},"location":"Left Knee"},{"euler":{"heading":37.31203146024566,"pitch":97.18368400243092,"roll":26.611661493918664},"location":"Left Ankle"},{"euler":{"heading":40.03414802074549,"pitch":-13.33626289103479,"roll":-8.920545330362518},"location":"Right Ankle"},{"euler":{"heading":66.77499031681073,"pitch":-163.19449458058622,"roll":52.581689782065524},"location":"Right Hip"},{"euler":{"heading":21.30245161566115,"pitch":-105.05792246156341,"roll":24.012464420833275},"location":"Right Knee"},{"euler":{"heading":10.001201064314582,"pitch":-130.66785628070787,"roll":60.770638369836064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.515"} +{"sensors":[{"euler":{"heading":56.15185017195738,"pitch":128.42577220106645,"roll":16.082787176716},"location":"Left Knee"},{"euler":{"heading":34.91490636694086,"pitch":96.26846962491658,"roll":25.2574001801607},"location":"Left Ankle"},{"euler":{"heading":39.86672332241922,"pitch":-12.709745147434708,"roll":-9.237259446022772},"location":"Right Ankle"},{"euler":{"heading":66.99396647077943,"pitch":-163.25328229788656,"roll":53.34086373132391},"location":"Right Hip"},{"euler":{"heading":21.31281935857077,"pitch":-105.87881035156286,"roll":24.041005281890484},"location":"Right Knee"},{"euler":{"heading":8.575417494013786,"pitch":-128.72560929515973,"roll":59.82337123441401},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.616"} +{"sensors":[{"euler":{"heading":73.29576206655489,"pitch":130.4542377065639,"roll":17.573129574057504},"location":"Left Knee"},{"euler":{"heading":30.853449369977135,"pitch":95.0241434100217,"roll":21.980831738172228},"location":"Left Ankle"},{"euler":{"heading":39.25995686021321,"pitch":-11.910957858000994,"roll":-9.82111153730733},"location":"Right Ankle"},{"euler":{"heading":67.28027944349105,"pitch":-163.4134933753848,"roll":54.218071161840534},"location":"Right Hip"},{"euler":{"heading":22.0347453699253,"pitch":-106.63350196032451,"roll":23.507972279178137},"location":"Right Knee"},{"euler":{"heading":7.740924692171575,"pitch":-127.37239932094633,"roll":59.09700957904829},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.717"} +{"sensors":[{"euler":{"heading":87.86231076320351,"pitch":132.26596435863388,"roll":19.088171880591464},"location":"Left Knee"},{"euler":{"heading":27.468479744471974,"pitch":94.45704254581548,"roll":18.79597023150406},"location":"Left Ankle"},{"euler":{"heading":38.07348145995397,"pitch":-11.30706129961292,"roll":-10.712088508985131},"location":"Right Ankle"},{"euler":{"heading":67.84170411184058,"pitch":-163.74871423058192,"roll":55.065342072585096},"location":"Right Hip"},{"euler":{"heading":23.826809738741193,"pitch":-106.9596851312925,"roll":22.18735562437488},"location":"Right Knee"},{"euler":{"heading":7.7532438901852085,"pitch":-126.64137387267476,"roll":58.70728186252072},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.817"} +{"sensors":[{"euler":{"heading":74.26023397801134,"pitch":132.91248428120218,"roll":20.334244445842426},"location":"Left Knee"},{"euler":{"heading":26.1950878365047,"pitch":94.38383987119026,"roll":17.180418950909893},"location":"Left Ankle"},{"euler":{"heading":35.66323225440065,"pitch":-11.123274119241147,"roll":-11.577764441985599},"location":"Right Ankle"},{"euler":{"heading":68.71162424256195,"pitch":-163.91530515274937,"roll":55.66554779060363},"location":"Right Hip"},{"euler":{"heading":26.786422298349738,"pitch":-106.64247346837543,"roll":19.87464469263845},"location":"Right Knee"},{"euler":{"heading":7.92979944950374,"pitch":-126.2830978519173,"roll":58.5329861933168},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.918"} +{"sensors":[{"euler":{"heading":63.812524059907275,"pitch":132.80190305465857,"roll":21.32504238021634},"location":"Left Knee"},{"euler":{"heading":25.7053495432534,"pitch":94.54352228496164,"roll":16.00986693336562},"location":"Left Ankle"},{"euler":{"heading":32.179614703379514,"pitch":-10.522962223562235,"roll":-12.74753801491922},"location":"Right Ankle"},{"euler":{"heading":70.17896796278734,"pitch":-163.2337060591849,"roll":55.453604918371454},"location":"Right Hip"},{"euler":{"heading":29.69131974429894,"pitch":-106.48028800023103,"roll":17.187399445500258},"location":"Right Knee"},{"euler":{"heading":8.549987558331964,"pitch":-126.55343357200717,"roll":58.648754536717},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.19"} +{"sensors":[{"euler":{"heading":55.6741221336614,"pitch":132.17270848018947,"roll":22.108629893550066},"location":"Left Knee"},{"euler":{"heading":25.928609664548425,"pitch":94.88421007315092,"roll":15.337108580668296},"location":"Left Ankle"},{"euler":{"heading":30.159575528030672,"pitch":-10.532668559084126,"roll":-13.35419358863264},"location":"Right Ankle"},{"euler":{"heading":71.75498177712622,"pitch":-162.420748874644,"roll":54.47109718142655},"location":"Right Hip"},{"euler":{"heading":31.148323915902075,"pitch":-106.03031972330157,"roll":15.534613491466944},"location":"Right Knee"},{"euler":{"heading":9.509640283242138,"pitch":-127.42231092826165,"roll":59.02104926853204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.120"} +{"sensors":[{"euler":{"heading":49.521703988667454,"pitch":131.28231937886508,"roll":22.502577401785377},"location":"Left Knee"},{"euler":{"heading":27.193460795241933,"pitch":95.38868511364001,"roll":15.637978380139726},"location":"Left Ankle"},{"euler":{"heading":30.74100532584447,"pitch":-11.338122801716578,"roll":-13.148087030075635},"location":"Right Ankle"},{"euler":{"heading":68.03352583903786,"pitch":-162.05967855911626,"roll":53.1361523445498},"location":"Right Hip"},{"euler":{"heading":30.61123282049023,"pitch":-105.17725657185903,"roll":15.870203420319001},"location":"Right Knee"},{"euler":{"heading":10.420254345428987,"pitch":-128.7138875417777,"roll":59.53628872173084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.220"} +{"sensors":[{"euler":{"heading":44.97757126988532,"pitch":130.22098024352823,"roll":22.472605688525245},"location":"Left Knee"},{"euler":{"heading":28.66907228248596,"pitch":95.93435161961472,"roll":16.32639949704226},"location":"Left Ankle"},{"euler":{"heading":33.648710226617986,"pitch":-12.269098731557767,"roll":-12.051954275457318},"location":"Right Ankle"},{"euler":{"heading":68.56547697431098,"pitch":-162.00643917985064,"roll":52.13033449031012},"location":"Right Hip"},{"euler":{"heading":28.31652724023223,"pitch":-104.09023968210116,"roll":17.999079823721665},"location":"Right Knee"},{"euler":{"heading":11.29071560418531,"pitch":-130.34039171770416,"roll":60.18087529084539},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.321"} +{"sensors":[{"euler":{"heading":41.726519669471365,"pitch":129.2130384496404,"roll":21.88068080793862},"location":"Left Knee"},{"euler":{"heading":30.453996194613236,"pitch":96.39838510366916,"roll":17.627099677969305},"location":"Left Ankle"},{"euler":{"heading":36.713246197448264,"pitch":-13.028281341988592,"roll":-10.68553668332684},"location":"Right Ankle"},{"euler":{"heading":67.70496092048703,"pitch":-162.41010757175292,"roll":51.8741788195345},"location":"Right Hip"},{"euler":{"heading":25.44475844652018,"pitch":-103.35632810934212,"roll":20.81724316885377},"location":"Right Knee"},{"euler":{"heading":12.074792022776816,"pitch":-132.50777580273163,"roll":60.847379919594346},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.422"} +{"sensors":[{"euler":{"heading":40.30713146625321,"pitch":128.31286765549555,"roll":20.2154542870079},"location":"Left Knee"},{"euler":{"heading":32.73594239466002,"pitch":96.77666028539733,"roll":20.195272839523913},"location":"Left Ankle"},{"euler":{"heading":38.44959490929486,"pitch":-13.435817307545072,"roll":-9.793927300179957},"location":"Right Ankle"},{"euler":{"heading":67.36303508132194,"pitch":-162.69808804027008,"roll":51.86236631901564},"location":"Right Hip"},{"euler":{"heading":23.24198998812716,"pitch":-103.29865119525121,"roll":22.814415336709235},"location":"Right Knee"},{"euler":{"heading":12.752464782934542,"pitch":-134.08848795789638,"roll":61.52182703901862},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.523"} +{"sensors":[{"euler":{"heading":40.55992117142431,"pitch":127.46859899978925,"roll":17.888179856934414},"location":"Left Knee"},{"euler":{"heading":35.90047451059059,"pitch":97.64808444845153,"roll":23.821171098972407},"location":"Left Ankle"},{"euler":{"heading":39.36001888083746,"pitch":-13.691625601334655,"roll":-9.36763187792489},"location":"Right Ankle"},{"euler":{"heading":66.92848857978952,"pitch":-163.1608148483815,"roll":52.20839593908383},"location":"Right Hip"},{"euler":{"heading":22.145857189554246,"pitch":-103.6388510962494,"roll":23.961677511747546},"location":"Right Knee"},{"euler":{"heading":11.957757667658825,"pitch":-132.9088449460195,"roll":61.573258512244614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.625"} +{"sensors":[{"euler":{"heading":40.332897649178065,"pitch":127.27539086591587,"roll":16.240075912422945},"location":"Left Knee"},{"euler":{"heading":37.30847373072662,"pitch":97.29511539232018,"roll":26.008219466726832},"location":"Left Ankle"},{"euler":{"heading":39.944949727664564,"pitch":-13.917154843514304,"roll":-9.172137618394078},"location":"Right Ankle"},{"euler":{"heading":66.86994776052975,"pitch":-163.51412642112064,"roll":52.80093897683709},"location":"Right Hip"},{"euler":{"heading":21.76558661556195,"pitch":-104.12504873690852,"roll":24.542017774910658},"location":"Right Knee"},{"euler":{"heading":10.492545206027296,"pitch":-130.9317833172408,"roll":60.98364965490194},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.726"} +{"sensors":[{"euler":{"heading":36.77602161493634,"pitch":128.206388858632,"roll":16.425324476801087},"location":"Left Knee"},{"euler":{"heading":35.49463344898144,"pitch":96.13743411522935,"roll":25.412906828267637},"location":"Left Ankle"},{"euler":{"heading":40.001773624367836,"pitch":-14.014215096910029,"roll":-9.191434886615498},"location":"Right Ankle"},{"euler":{"heading":67.29763921157713,"pitch":-163.61385287600956,"roll":53.47980378731747},"location":"Right Hip"},{"euler":{"heading":22.102260016213123,"pitch":-104.53527032682032,"roll":24.579637990713795},"location":"Right Knee"},{"euler":{"heading":9.120416923086825,"pitch":-129.08928175302492,"roll":60.06368229859498},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.827"} +{"sensors":[{"euler":{"heading":57.418964209791945,"pitch":130.01791088252935,"roll":17.877137732576042},"location":"Left Knee"},{"euler":{"heading":31.667011805541804,"pitch":95.08987717929082,"roll":22.496100208778522},"location":"Left Ankle"},{"euler":{"heading":39.51916859039854,"pitch":-13.882066119213437,"roll":-9.464544731504178},"location":"Right Ankle"},{"euler":{"heading":67.94509788532159,"pitch":-163.61491324530937,"roll":54.135708789034005},"location":"Right Hip"},{"euler":{"heading":22.930841437591994,"pitch":-104.92430554287017,"roll":24.078601900328735},"location":"Right Knee"},{"euler":{"heading":8.09204470694992,"pitch":-127.52906354355838,"roll":59.266898611013666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.928"} +{"sensors":[{"euler":{"heading":75.01103872462353,"pitch":132.0019398574023,"roll":19.547565823073647},"location":"Left Knee"},{"euler":{"heading":28.03355354775878,"pitch":94.38572662769974,"roll":19.196825445192943},"location":"Left Ankle"},{"euler":{"heading":38.40462989373423,"pitch":-13.524675497777721,"roll":-10.115955942091041},"location":"Right Ankle"},{"euler":{"heading":68.90329848848083,"pitch":-163.6337086699321,"roll":54.69949434052447},"location":"Right Hip"},{"euler":{"heading":24.42379014403059,"pitch":-105.09797458565028,"roll":22.858282145543647},"location":"Right Knee"},{"euler":{"heading":7.933725037234633,"pitch":-126.61072150225979,"roll":58.7004869077478},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.29"} +{"sensors":[{"euler":{"heading":63.30956433250316,"pitch":132.91138739498035,"roll":20.963969649829487},"location":"Left Knee"},{"euler":{"heading":26.24754342291076,"pitch":94.33714379709052,"roll":17.19236969390074},"location":"Left Ankle"},{"euler":{"heading":36.243532226390776,"pitch":-13.296406553292286,"roll":-11.068065477118985},"location":"Right Ankle"},{"euler":{"heading":69.90190316931465,"pitch":-163.92420033192514,"roll":55.28099352689955},"location":"Right Hip"},{"euler":{"heading":26.811495206986812,"pitch":-104.87462368639687,"roll":20.921702144954587},"location":"Right Knee"},{"euler":{"heading":8.160811522138125,"pitch":-126.08889267239444,"roll":58.336587764141456},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.130"} +{"sensors":[{"euler":{"heading":54.57858888200337,"pitch":132.95548850785832,"roll":22.03755240626877},"location":"Left Knee"},{"euler":{"heading":25.56399558373836,"pitch":94.53099470938346,"roll":15.895829402773037},"location":"Left Ankle"},{"euler":{"heading":32.868794760519705,"pitch":-12.863929984655076,"roll":-12.345777200547824},"location":"Right Ankle"},{"euler":{"heading":71.39137935177277,"pitch":-163.49740331293674,"roll":55.21264688621548},"location":"Right Hip"},{"euler":{"heading":29.71779472210544,"pitch":-104.66062840876087,"roll":18.128910331740812},"location":"Right Knee"},{"euler":{"heading":8.59050730028871,"pitch":-125.91991345804038,"roll":58.328351109833726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.231"} +{"sensors":[{"euler":{"heading":47.81612072304189,"pitch":132.59111358743172,"roll":22.753362458969633},"location":"Left Knee"},{"euler":{"heading":25.420478893884095,"pitch":94.6885696459004,"roll":15.126903324056205},"location":"Left Ankle"},{"euler":{"heading":30.65253171395035,"pitch":-12.853092403754433,"roll":-13.14522823858525},"location":"Right Ankle"},{"euler":{"heading":72.96767927912353,"pitch":-162.74854156205754,"roll":54.40763826148338},"location":"Right Hip"},{"euler":{"heading":31.59211844004151,"pitch":-104.21134118741138,"roll":16.202258691795876},"location":"Right Knee"},{"euler":{"heading":9.15042750052499,"pitch":-126.34370321772505,"roll":58.570600886802154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.332"} +{"sensors":[{"euler":{"heading":42.62384702912625,"pitch":132.0116968827016,"roll":23.139487600835807},"location":"Left Knee"},{"euler":{"heading":26.34339641919307,"pitch":94.89655366273244,"roll":15.257519038216063},"location":"Left Ankle"},{"euler":{"heading":31.025731159527552,"pitch":-13.509160200698862,"roll":-13.077905645112091},"location":"Right Ankle"},{"euler":{"heading":74.00864901630503,"pitch":-162.18387607164127,"roll":53.20358140950359},"location":"Right Hip"},{"euler":{"heading":31.18864236615321,"pitch":-103.54319884251161,"roll":16.307870309609445},"location":"Right Knee"},{"euler":{"heading":9.852647160947981,"pitch":-127.35738261765479,"roll":59.04545490043971},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.434"} +{"sensors":[{"euler":{"heading":38.94316853639364,"pitch":131.16635053514133,"roll":23.16783600705314},"location":"Left Knee"},{"euler":{"heading":27.491470583151745,"pitch":95.22149529152728,"roll":15.732428400154971},"location":"Left Ankle"},{"euler":{"heading":33.79860912125952,"pitch":-14.42386621130748,"roll":-11.982503581639072},"location":"Right Ankle"},{"euler":{"heading":73.94541652517248,"pitch":-162.01180687646846,"roll":52.13189629448868},"location":"Right Hip"},{"euler":{"heading":28.979559388962333,"pitch":-102.71863710397555,"roll":18.282152839476062},"location":"Right Knee"},{"euler":{"heading":10.564365926596034,"pitch":-128.76215106887017,"roll":59.62971646128698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.535"} +{"sensors":[{"euler":{"heading":36.529909080083534,"pitch":130.18738661849432,"roll":22.70002724060864},"location":"Left Knee"},{"euler":{"heading":29.085496292127885,"pitch":95.6403783333263,"roll":16.79236465416327},"location":"Left Ankle"},{"euler":{"heading":36.9846159390986,"pitch":-15.203998423042922,"roll":-10.49784102125008},"location":"Right Ankle"},{"euler":{"heading":72.9245566879618,"pitch":-162.0939180549916,"roll":51.64372505990447},"location":"Right Hip"},{"euler":{"heading":26.029265598459997,"pitch":-102.29355834813644,"roll":21.11500603943498},"location":"Right Knee"},{"euler":{"heading":11.25413601110187,"pitch":-130.3721735653013,"roll":60.31297818495244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.636"} +{"sensors":[{"euler":{"heading":35.46356694170901,"pitch":129.1648044926968,"roll":21.53355529366004},"location":"Left Knee"},{"euler":{"heading":31.169518098754736,"pitch":96.13237600330093,"roll":18.690833159191673},"location":"Left Ankle"},{"euler":{"heading":39.147416766968846,"pitch":-15.452131932016117,"roll":-9.487344097977353},"location":"Right Ankle"},{"euler":{"heading":71.5595453907496,"pitch":-162.38819479612607,"roll":51.49925645708337},"location":"Right Hip"},{"euler":{"heading":23.566005806967556,"pitch":-102.52128186097669,"roll":23.262212766158544},"location":"Right Knee"},{"euler":{"heading":12.169692152036529,"pitch":-132.5186984816861,"roll":61.032314920063214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.737"} +{"sensors":[{"euler":{"heading":36.16000837704189,"pitch":128.35245625666857,"roll":19.360326066471117},"location":"Left Knee"},{"euler":{"heading":34.029302554758274,"pitch":97.26722811760924,"roll":21.81180259490643},"location":"Left Ankle"},{"euler":{"heading":40.19893349811434,"pitch":-15.391286994391962,"roll":-9.084267071286607},"location":"Right Ankle"},{"euler":{"heading":70.65590670721261,"pitch":-162.60691602423555,"roll":51.624178646634206},"location":"Right Hip"},{"euler":{"heading":22.0247159923048,"pitch":-103.10784288031671,"roll":24.569018704852574},"location":"Right Knee"},{"euler":{"heading":11.99782583777151,"pitch":-133.12334116764941,"roll":61.30867042410788},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.838"} +{"sensors":[{"euler":{"heading":37.372347086281636,"pitch":127.58765604509063,"roll":17.203575256001898},"location":"Left Knee"},{"euler":{"heading":35.841758562646405,"pitch":97.87795597946392,"roll":24.534819826974463},"location":"Left Ankle"},{"euler":{"heading":40.715086405944945,"pitch":-15.282722158102192,"roll":-8.957345020239988},"location":"Right Ankle"},{"euler":{"heading":69.70792257414361,"pitch":-162.94751879554613,"roll":52.171225079150936},"location":"Right Hip"},{"euler":{"heading":21.345349724024185,"pitch":-103.84074778765148,"roll":25.23427306736964},"location":"Right Knee"},{"euler":{"heading":10.858290206818214,"pitch":-131.50637529041475,"roll":61.07716771490783},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.938"} +{"sensors":[{"euler":{"heading":36.3138775660891,"pitch":128.00143461189396,"roll":16.458882645618843},"location":"Left Knee"},{"euler":{"heading":35.14981297047119,"pitch":96.98587864865584,"roll":24.97740566539653},"location":"Left Ankle"},{"euler":{"heading":40.78693869286288,"pitch":-15.107195544290786,"roll":-9.062472801457183},"location":"Right Ankle"},{"euler":{"heading":69.47868250363143,"pitch":-163.0654719108672,"roll":52.89810075976715},"location":"Right Hip"},{"euler":{"heading":21.401452051413262,"pitch":-104.48609924999292,"roll":25.36062055069788},"location":"Right Knee"},{"euler":{"heading":9.41394322229161,"pitch":-129.79352024590642,"roll":60.29099184339855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.39"} +{"sensors":[{"euler":{"heading":31.79678499934216,"pitch":129.4697891275,"roll":17.46755091908064},"location":"Left Knee"},{"euler":{"heading":31.818680631182744,"pitch":95.91112126128665,"roll":22.660884976632925},"location":"Left Ankle"},{"euler":{"heading":40.38203727222894,"pitch":-14.80567850296353,"roll":-9.431084461359898},"location":"Right Ankle"},{"euler":{"heading":69.6833712876298,"pitch":-163.13058759193393,"roll":53.62123083183714},"location":"Right Hip"},{"euler":{"heading":22.053809953325064,"pitch":-105.01060862860147,"roll":24.95770747630761},"location":"Right Knee"},{"euler":{"heading":8.302657181749792,"pitch":-128.24360040385716,"roll":59.48447596835075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.141"} +{"sensors":[{"euler":{"heading":53.79975939906197,"pitch":131.51190344917484,"roll":19.153159692759836},"location":"Left Knee"},{"euler":{"heading":28.12206797065488,"pitch":94.83158454931126,"roll":19.262700768136998},"location":"Left Ankle"},{"euler":{"heading":39.24194259487154,"pitch":-14.300976249357934,"roll":-10.103514500403259},"location":"Right Ankle"},{"euler":{"heading":70.18390746711286,"pitch":-163.23112630228297,"roll":54.299354442718624},"location":"Right Hip"},{"euler":{"heading":23.408412342288642,"pitch":-105.35442732578385,"roll":23.909411100003044},"location":"Right Knee"},{"euler":{"heading":7.814854227825846,"pitch":-127.22161625373649,"roll":58.87953131307537},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.242"} +{"sensors":[{"euler":{"heading":45.49589393640973,"pitch":132.5630905838217,"roll":20.684370370989914},"location":"Left Knee"},{"euler":{"heading":25.95735517059707,"pitch":94.6811364424651,"roll":16.877424251623097},"location":"Left Ankle"},{"euler":{"heading":37.25611487004177,"pitch":-13.9453539878417,"roll":-11.056807526600979},"location":"Right Ankle"},{"euler":{"heading":70.99208155446496,"pitch":-163.5004605043533,"roll":54.84162790654791},"location":"Right Hip"},{"euler":{"heading":25.766073898457574,"pitch":-105.28504060833404,"roll":22.003639307350188},"location":"Right Knee"},{"euler":{"heading":7.974300618990364,"pitch":-126.52276995583787,"roll":58.49265527675934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.343"} +{"sensors":[{"euler":{"heading":39.69550965379423,"pitch":132.77706547901988,"roll":21.867784293738318},"location":"Left Knee"},{"euler":{"heading":25.249100760864813,"pitch":94.72335892874204,"roll":15.545444737261553},"location":"Left Ankle"},{"euler":{"heading":33.93570862715276,"pitch":-13.510599421361537,"roll":-12.371262007434101},"location":"Right Ankle"},{"euler":{"heading":72.3731958361385,"pitch":-163.21504193299512,"roll":54.75562280998438},"location":"Right Hip"},{"euler":{"heading":28.766679975526902,"pitch":-104.99633260728288,"roll":19.23872507369657},"location":"Right Knee"},{"euler":{"heading":8.075128611658293,"pitch":-126.10443243193578,"roll":58.32094002190936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.443"} +{"sensors":[{"euler":{"heading":35.45745779956641,"pitch":132.45344426578276,"roll":22.83161052220504},"location":"Left Knee"},{"euler":{"heading":25.168588664770432,"pitch":94.85074461865564,"roll":14.649325666683263},"location":"Left Ankle"},{"euler":{"heading":31.276416701459063,"pitch":-13.414466230259062,"roll":-13.29908557291718},"location":"Right Ankle"},{"euler":{"heading":73.87860508045412,"pitch":-162.47520386348108,"roll":53.98219794959675},"location":"Right Hip"},{"euler":{"heading":31.0392684149528,"pitch":-104.54483808835954,"roll":16.879510473738677},"location":"Right Knee"},{"euler":{"heading":8.627365764072426,"pitch":-126.28474814894149,"roll":58.43904331794941},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.544"} +{"sensors":[{"euler":{"heading":32.409462415466486,"pitch":131.85145149879284,"roll":23.436214012846143},"location":"Left Knee"},{"euler":{"heading":25.405876137288693,"pitch":94.9600674471325,"roll":14.201113617791975},"location":"Left Ankle"},{"euler":{"heading":31.01338043444185,"pitch":-13.9636256171503,"roll":-13.401431848842524},"location":"Right Ankle"},{"euler":{"heading":74.99232637157381,"pitch":-161.84141467834155,"roll":52.765103305479606},"location":"Right Hip"},{"euler":{"heading":31.330500132294876,"pitch":-103.92820618350495,"roll":16.296441268194638},"location":"Right Knee"},{"euler":{"heading":9.406528860063421,"pitch":-127.06027803263461,"roll":58.801560274970065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.644"} +{"sensors":[{"euler":{"heading":30.425063582528733,"pitch":131.057020326613,"roll":23.596859648102413},"location":"Left Knee"},{"euler":{"heading":25.915268164426266,"pitch":95.11844402631351,"roll":14.152256162475497},"location":"Left Ankle"},{"euler":{"heading":33.15829375299288,"pitch":-14.615124258418358,"roll":-12.513066685414847},"location":"Right Ankle"},{"euler":{"heading":70.7853302836164,"pitch":-161.62463309738231,"roll":51.634058156300846},"location":"Right Hip"},{"euler":{"heading":29.44648552257883,"pitch":-103.21565334228009,"roll":17.760514529131846},"location":"Right Knee"},{"euler":{"heading":10.133686365656454,"pitch":-128.18415253790707,"roll":59.296061448192305},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.745"} +{"sensors":[{"euler":{"heading":29.258028674386797,"pitch":130.1895266671173,"roll":23.29632580809359},"location":"Left Knee"},{"euler":{"heading":26.95661509984167,"pitch":95.27959096862749,"roll":14.750139492098176},"location":"Left Ankle"},{"euler":{"heading":36.228459418224084,"pitch":-15.24032098801029,"roll":-11.126567041759731},"location":"Right Ankle"},{"euler":{"heading":70.55705790993193,"pitch":-161.69601169044458,"roll":51.050556352807924},"location":"Right Hip"},{"euler":{"heading":26.649396511169265,"pitch":-102.69573349456694,"roll":20.464629303961683},"location":"Right Knee"},{"euler":{"heading":10.966894441264348,"pitch":-129.88482894523597,"roll":59.92188246459491},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.846"} +{"sensors":[{"euler":{"heading":28.98022683641567,"pitch":129.42238919716257,"roll":22.346615157111618},"location":"Left Knee"},{"euler":{"heading":28.48108859362687,"pitch":95.41946351300446,"roll":16.09376574578484},"location":"Left Ankle"},{"euler":{"heading":38.61151094100637,"pitch":-15.71092100550982,"roll":-10.09193445058363},"location":"Right Ankle"},{"euler":{"heading":69.57347751837867,"pitch":-162.06975639682193,"roll":50.86738795499341},"location":"Right Hip"},{"euler":{"heading":24.0618777051421,"pitch":-102.54037228583337,"roll":22.917460679454418},"location":"Right Knee"},{"euler":{"heading":11.714522686594503,"pitch":-132.04204063483851,"roll":60.535734766629716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.947"} +{"sensors":[{"euler":{"heading":30.1618009018858,"pitch":128.8590223868917,"roll":20.316020055914304},"location":"Left Knee"},{"euler":{"heading":30.82326242652132,"pitch":95.62331969161414,"roll":19.00993763718786},"location":"Left Ankle"},{"euler":{"heading":39.84931400799884,"pitch":-16.01784908059882,"roll":-9.61945519852932},"location":"Right Ankle"},{"euler":{"heading":69.06538835015432,"pitch":-162.38416743667437,"roll":50.86811205018071},"location":"Right Hip"},{"euler":{"heading":22.29993859274825,"pitch":-102.82190664121113,"roll":24.54838120703683},"location":"Right Knee"},{"euler":{"heading":11.839164651480921,"pitch":-132.97145481958503,"roll":60.88310864951597},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.47"} +{"sensors":[{"euler":{"heading":32.31238867207067,"pitch":128.0341444964558,"roll":18.038632391153303},"location":"Left Knee"},{"euler":{"heading":33.39501563907443,"pitch":96.3725882913517,"roll":22.24918497491419},"location":"Left Ankle"},{"euler":{"heading":40.66663065456133,"pitch":-16.331252492233496,"roll":-9.281100112809526},"location":"Right Ankle"},{"euler":{"heading":68.44127972782255,"pitch":-162.8173028414756,"roll":51.267102876629686},"location":"Right Hip"},{"euler":{"heading":21.564756380780363,"pitch":-103.3025817526857,"roll":25.46530163010115},"location":"Right Knee"},{"euler":{"heading":10.680816139940042,"pitch":-131.41055427272167,"roll":60.61479847181579},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.148"} +{"sensors":[{"euler":{"heading":32.87828075507175,"pitch":128.0249511962714,"roll":16.917239654782314},"location":"Left Knee"},{"euler":{"heading":34.07389052857545,"pitch":95.99231801705868,"roll":23.503722412624278},"location":"Left Ankle"},{"euler":{"heading":41.05047386538745,"pitch":-16.62078873641379,"roll":-9.135454334046427},"location":"Right Ankle"},{"euler":{"heading":68.47722857145271,"pitch":-163.06060358410951,"roll":51.87189734439949},"location":"Right Hip"},{"euler":{"heading":21.58704728974088,"pitch":-103.66618899020774,"roll":25.777758306240987},"location":"Right Knee"},{"euler":{"heading":9.256737035093591,"pitch":-129.70086888742145,"roll":59.81909766986859},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.249"} +{"sensors":[{"euler":{"heading":29.42367485027726,"pitch":129.1997486250827,"roll":17.614767910464217},"location":"Left Knee"},{"euler":{"heading":31.805731424918083,"pitch":95.05963546823138,"roll":22.242963102278168},"location":"Left Ankle"},{"euler":{"heading":41.02588173228098,"pitch":-16.76387671549259,"roll":-9.22958478830849},"location":"Right Ankle"},{"euler":{"heading":68.7623116731202,"pitch":-163.2569791320914,"roll":52.5142857075858},"location":"Right Hip"},{"euler":{"heading":22.104704901985762,"pitch":-103.97737219476203,"roll":25.578922647957434},"location":"Right Knee"},{"euler":{"heading":7.995577698825868,"pitch":-128.01707511565996,"roll":59.01585353789414},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.350"} +{"sensors":[{"euler":{"heading":24.656877026695103,"pitch":131.01784760830157,"roll":19.173411834482675},"location":"Left Knee"},{"euler":{"heading":28.45034770924803,"pitch":94.07298689112763,"roll":19.32448644359367},"location":"Left Ankle"},{"euler":{"heading":40.30419942102943,"pitch":-16.613924003432086,"roll":-9.617971779240994},"location":"Right Ankle"},{"euler":{"heading":69.33461993964978,"pitch":-163.35738547229155,"roll":53.14312938883422},"location":"Right Hip"},{"euler":{"heading":23.111202536088413,"pitch":-104.2708447365105,"roll":24.81636106907187},"location":"Right Knee"},{"euler":{"heading":7.289933732225248,"pitch":-126.7134284771165,"roll":58.34252570990816},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.450"} +{"sensors":[{"euler":{"heading":20.979749869326,"pitch":132.6451641447336,"roll":20.69080541406503},"location":"Left Knee"},{"euler":{"heading":25.798088112817045,"pitch":93.67365371566751,"roll":16.713356187461518},"location":"Left Ankle"},{"euler":{"heading":38.94039674246771,"pitch":-16.216641995981515,"roll":-10.41531155971202},"location":"Right Ankle"},{"euler":{"heading":70.04103762758825,"pitch":-163.60281866541993,"roll":53.82511520881333},"location":"Right Hip"},{"euler":{"heading":24.70821168965054,"pitch":-104.35209618930234,"roll":23.412901186083246},"location":"Right Knee"},{"euler":{"heading":7.259121525099657,"pitch":-125.93212673410405,"roll":57.864044906733454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.551"} +{"sensors":[{"euler":{"heading":19.389850694542183,"pitch":133.0891441037853,"roll":21.83199005048005},"location":"Left Knee"},{"euler":{"heading":24.910607301244806,"pitch":93.62146307377472,"roll":15.349421173915271},"location":"Left Ankle"},{"euler":{"heading":36.39684277053482,"pitch":-16.005784099072798,"roll":-11.38650737595799},"location":"Right Ankle"},{"euler":{"heading":71.13669342146686,"pitch":-163.61681927838768,"roll":54.257922644558846},"location":"Right Hip"},{"euler":{"heading":27.508113252236782,"pitch":-103.96188460937125,"roll":20.989555636038844},"location":"Right Knee"},{"euler":{"heading":7.465759520896018,"pitch":-125.42134141000092,"roll":57.64511062706422},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.652"} +{"sensors":[{"euler":{"heading":18.807425210667958,"pitch":132.86663320343027,"roll":22.710041589194557},"location":"Left Knee"},{"euler":{"heading":24.69523543849439,"pitch":93.69908852270858,"roll":14.531401905737884},"location":"Left Ankle"},{"euler":{"heading":32.928926882615066,"pitch":-15.149109589347281,"roll":-12.699325722463088},"location":"Right Ankle"},{"euler":{"heading":72.46782264426193,"pitch":-163.04684793705772,"roll":54.02530200630539},"location":"Right Hip"},{"euler":{"heading":30.0741537415997,"pitch":-103.8882213338281,"roll":18.303270109622467},"location":"Right Knee"},{"euler":{"heading":8.027344789101289,"pitch":-125.53583933945612,"roll":57.77399437294611},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.753"} +{"sensors":[{"euler":{"heading":18.722926164295323,"pitch":132.3561326386989,"roll":23.23108439313006},"location":"Left Knee"},{"euler":{"heading":25.273943260868027,"pitch":93.95363439319125,"roll":14.344110265583053},"location":"Left Ankle"},{"euler":{"heading":31.129829978663984,"pitch":-14.843605477754476,"roll":-13.316512794357795},"location":"Right Ankle"},{"euler":{"heading":73.46262487477053,"pitch":-162.44786076837238,"roll":53.24405985627996},"location":"Right Hip"},{"euler":{"heading":31.194249131343646,"pitch":-103.63131542767823,"roll":16.710805659185002},"location":"Right Knee"},{"euler":{"heading":8.558513884281933,"pitch":-126.07939842642871,"roll":58.14626629035857},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.854"} +{"sensors":[{"euler":{"heading":19.242323892201654,"pitch":131.53152963533438,"roll":23.423133582702633},"location":"Left Knee"},{"euler":{"heading":26.74065496629259,"pitch":94.39799768204398,"roll":14.965360641980492},"location":"Left Ankle"},{"euler":{"heading":32.04674506497729,"pitch":-15.322216489095965,"roll":-12.947522004964165},"location":"Right Ankle"},{"euler":{"heading":73.78965262851915,"pitch":-162.0901567436925,"roll":52.216086693160136},"location":"Right Hip"},{"euler":{"heading":30.256446033553384,"pitch":-103.04212921840825,"roll":17.18421332003603},"location":"Right Knee"},{"euler":{"heading":9.249082786561626,"pitch":-127.26685248958952,"roll":58.64364917650321},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.954"} +{"sensors":[{"euler":{"heading":20.238355715859104,"pitch":130.5178280852755,"roll":23.18074257447253},"location":"Left Knee"},{"euler":{"heading":28.38749497908282,"pitch":94.87143463919652,"roll":15.973412696543848},"location":"Left Ankle"},{"euler":{"heading":35.181582492247266,"pitch":-15.796916818691384,"roll":-11.799124291230612},"location":"Right Ankle"},{"euler":{"heading":73.09428276082173,"pitch":-162.1648148972094,"roll":51.42264147230739},"location":"Right Hip"},{"euler":{"heading":27.479059905586844,"pitch":-102.40791907172657,"roll":19.53886778403062},"location":"Right Knee"},{"euler":{"heading":10.016660308034242,"pitch":-128.81102937988547,"roll":59.278023090734614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.55"} +{"sensors":[{"euler":{"heading":21.690053399934083,"pitch":129.42219558737096,"roll":22.40255007539869},"location":"Left Knee"},{"euler":{"heading":30.395854927472286,"pitch":95.41279678758337,"roll":17.58712017761986},"location":"Left Ankle"},{"euler":{"heading":37.87323541089111,"pitch":-16.244297239343563,"roll":-10.551882053594513},"location":"Right Ankle"},{"euler":{"heading":71.56772014595657,"pitch":-162.5890896570953,"roll":51.091117661691015},"location":"Right Hip"},{"euler":{"heading":24.562845956834007,"pitch":-102.1075222664331,"roll":22.430535301645552},"location":"Right Knee"},{"euler":{"heading":10.978089170431106,"pitch":-130.9395894016439,"roll":59.988794311208835},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.156"} +{"sensors":[{"euler":{"heading":24.10343524710595,"pitch":128.3475507386142,"roll":20.663899550627857},"location":"Left Knee"},{"euler":{"heading":32.89047684787457,"pitch":96.04534928680482,"roll":20.43258053669666},"location":"Left Ankle"},{"euler":{"heading":38.99511189081942,"pitch":-16.280511559745722,"roll":-10.083212782678604},"location":"Right Ankle"},{"euler":{"heading":70.3772254219222,"pitch":-163.00273185166853,"roll":50.915981487780456},"location":"Right Hip"},{"euler":{"heading":22.39502954555884,"pitch":-102.34105183178288,"roll":24.33964156510644},"location":"Right Knee"},{"euler":{"heading":11.771251379584815,"pitch":-132.60407678199437,"roll":60.69735185865124},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.257"} +{"sensors":[{"euler":{"heading":27.524219417803756,"pitch":127.2621705524012,"roll":18.282076184597017},"location":"Left Knee"},{"euler":{"heading":36.17563984253308,"pitch":97.55708888337278,"roll":23.99428776660515},"location":"Left Ankle"},{"euler":{"heading":39.53914874592218,"pitch":-16.140867074670176,"roll":-9.831539560664647},"location":"Right Ankle"},{"euler":{"heading":69.52730110337862,"pitch":-163.33540921139547,"roll":51.185567277623974},"location":"Right Hip"},{"euler":{"heading":21.202663984868767,"pitch":-102.98042906432676,"roll":25.460722866643682},"location":"Right Knee"},{"euler":{"heading":11.213794281856773,"pitch":-131.61320072838654,"roll":60.827211469077945},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.358"} +{"sensors":[{"euler":{"heading":29.93870876177721,"pitch":126.9637474483896,"roll":16.483542037809038},"location":"Left Knee"},{"euler":{"heading":37.29596649878883,"pitch":97.1176508512969,"roll":26.218376193468405},"location":"Left Ankle"},{"euler":{"heading":39.681394839371066,"pitch":-15.901545415498983,"roll":-9.817837808695469},"location":"Right Ankle"},{"euler":{"heading":69.21782899597572,"pitch":-163.48186266503106,"roll":51.76244596714749},"location":"Right Hip"},{"euler":{"heading":20.785215283816175,"pitch":-103.64221989423984,"roll":25.975755556491713},"location":"Right Knee"},{"euler":{"heading":9.812045107527734,"pitch":-129.985308844399,"roll":60.2491172022715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.459"} +{"sensors":[{"euler":{"heading":28.681442650122943,"pitch":127.751976575806,"roll":16.55645129165766},"location":"Left Knee"},{"euler":{"heading":35.62113461647871,"pitch":96.18493664163866,"roll":25.68036141187858},"location":"Left Ankle"},{"euler":{"heading":39.44114732779171,"pitch":-15.566083058017151,"roll":-9.977853355888408},"location":"Right Ankle"},{"euler":{"heading":69.33304264538168,"pitch":-163.5370957462143,"roll":52.42119119167796},"location":"Right Hip"},{"euler":{"heading":21.008212967946253,"pitch":-104.23511261547205,"roll":25.96022588441886},"location":"Right Knee"},{"euler":{"heading":8.402700880505492,"pitch":-128.23878589818446,"roll":59.345514419597755},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.560"} +{"sensors":[{"euler":{"heading":25.101457561911637,"pitch":129.26189669050018,"roll":17.936338043168064},"location":"Left Knee"},{"euler":{"heading":31.90733289853743,"pitch":95.32311087552695,"roll":22.868909963704475},"location":"Left Ankle"},{"euler":{"heading":38.7093552418453,"pitch":-15.084172302417045,"roll":-10.342623818701647},"location":"Right Ankle"},{"euler":{"heading":69.74842606722498,"pitch":-163.6168013229761,"roll":53.035109250995056},"location":"Right Hip"},{"euler":{"heading":21.892349527485976,"pitch":-104.7002627713796,"roll":25.363533324108612},"location":"Right Knee"},{"euler":{"heading":7.6173404407085386,"pitch":-126.92593965399945,"roll":58.5873198573528},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.662"} +{"sensors":[{"euler":{"heading":21.866958996410307,"pitch":130.8422168465375,"roll":19.488173863897508},"location":"Left Knee"},{"euler":{"heading":28.527593577157127,"pitch":94.82864098408803,"roll":19.831437082435052},"location":"Left Ankle"},{"euler":{"heading":37.37294653655478,"pitch":-14.475689348765947,"roll":-11.201827898173956},"location":"Right Ankle"},{"euler":{"heading":70.50471309257748,"pitch":-163.68297960534437,"roll":53.638190863808354},"location":"Right Hip"},{"euler":{"heading":23.466458566059448,"pitch":-104.91902509580937,"roll":24.139890720362075},"location":"Right Knee"},{"euler":{"heading":7.539092395342871,"pitch":-126.15414933998413,"roll":58.067717107133255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.762"} +{"sensors":[{"euler":{"heading":20.484905630576538,"pitch":131.38635833517125,"roll":20.7080868869442},"location":"Left Knee"},{"euler":{"heading":26.97310947057219,"pitch":94.7914337284964,"roll":18.057934022208144},"location":"Left Ankle"},{"euler":{"heading":34.86371333523677,"pitch":-14.204517746896737,"roll":-12.187386023442857},"location":"Right Ankle"},{"euler":{"heading":71.6055299996756,"pitch":-163.54072222457452,"roll":53.92825615745863},"location":"Right Hip"},{"euler":{"heading":26.348679769122363,"pitch":-104.59379060034847,"roll":21.819804268669735},"location":"Right Knee"},{"euler":{"heading":7.593929133801096,"pitch":-125.50928328797819,"roll":57.787791371930055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.863"} +{"sensors":[{"euler":{"heading":20.013210991628092,"pitch":131.32582479819155,"roll":21.5027997824497},"location":"Left Knee"},{"euler":{"heading":26.30672096098236,"pitch":94.82910950166912,"roll":16.916869296819275},"location":"Left Ankle"},{"euler":{"heading":31.519024178750737,"pitch":-13.822399247161021,"roll":-13.328895929124009},"location":"Right Ankle"},{"euler":{"heading":73.10735374978475,"pitch":-162.81746630372226,"roll":53.530799866499244},"location":"Right Hip"},{"euler":{"heading":29.08913902733772,"pitch":-104.34705647187731,"roll":19.221010019308444},"location":"Right Knee"},{"euler":{"heading":7.882587007859643,"pitch":-125.46083775494736,"roll":57.825813623986946},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.964"} +{"sensors":[{"euler":{"heading":19.71022224362299,"pitch":130.9975653585228,"roll":22.079228292820936},"location":"Left Knee"},{"euler":{"heading":26.153473080939204,"pitch":94.77996706313259,"roll":16.241066721795487},"location":"Left Ankle"},{"euler":{"heading":29.92189541738625,"pitch":-13.874965350656776,"roll":-13.909976414727007},"location":"Right Ankle"},{"euler":{"heading":74.0992330897021,"pitch":-162.15706473828394,"roll":52.677691041472485},"location":"Right Hip"},{"euler":{"heading":30.042892317938957,"pitch":-103.99299614041273,"roll":17.999034318563723},"location":"Right Knee"},{"euler":{"heading":8.445931678868655,"pitch":-126.13638282188307,"roll":58.16342970107106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.65"} +{"sensors":[{"euler":{"heading":19.931814690212263,"pitch":130.43893803701488,"roll":22.30355870495631},"location":"Left Knee"},{"euler":{"heading":26.414438879798343,"pitch":94.76522583334379,"roll":16.004104194256392},"location":"Left Ankle"},{"euler":{"heading":30.944728721832192,"pitch":-14.588405561466626,"roll":-13.425079368519421},"location":"Right Ankle"},{"euler":{"heading":74.28712550849436,"pitch":-161.82107735565285,"roll":51.71548428291545},"location":"Right Hip"},{"euler":{"heading":28.838091723497765,"pitch":-103.4050769273046,"roll":18.867141091934098},"location":"Right Knee"},{"euler":{"heading":9.139064676970287,"pitch":-127.50272078519437,"roll":58.65323461148761},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.165"} +{"sensors":[{"euler":{"heading":20.73751164368707,"pitch":129.64213002233632,"roll":22.09037817051154},"location":"Left Knee"},{"euler":{"heading":27.15130446147437,"pitch":94.87673832197734,"roll":16.259362010899096},"location":"Left Ankle"},{"euler":{"heading":34.11278410171358,"pitch":-15.26965167363083,"roll":-12.260980585956688},"location":"Right Ankle"},{"euler":{"heading":73.58484731785155,"pitch":-161.88565981922173,"roll":51.02911190350929},"location":"Right Hip"},{"euler":{"heading":26.222588025035712,"pitch":-102.79579448436687,"roll":21.31141010311935},"location":"Right Knee"},{"euler":{"heading":9.950358830661894,"pitch":-129.1849840281037,"roll":59.25697017384764},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.266"} +{"sensors":[{"euler":{"heading":22.128488266096372,"pitch":128.71897784868955,"roll":21.308890963067014},"location":"Left Knee"},{"euler":{"heading":28.468086109029016,"pitch":95.1262758844127,"roll":17.209720670067853},"location":"Left Ankle"},{"euler":{"heading":36.992159149471554,"pitch":-15.939602071140879,"roll":-11.023312072931795},"location":"Right Ankle"},{"euler":{"heading":72.21315148153926,"pitch":-162.22352833927707,"roll":50.75880379291183},"location":"Right Hip"},{"euler":{"heading":23.50432161645308,"pitch":-102.45850106071093,"roll":24.082027131924256},"location":"Right Knee"},{"euler":{"heading":10.917856285613784,"pitch":-131.35526064223177,"roll":59.96974405139803},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.368"} +{"sensors":[{"euler":{"heading":24.515933004847632,"pitch":127.78851553155718,"roll":19.573204446425464},"location":"Left Knee"},{"euler":{"heading":30.545077163298792,"pitch":95.51854481914408,"roll":19.478714442655004},"location":"Left Ankle"},{"euler":{"heading":38.22017984252105,"pitch":-16.147487878602476,"roll":-10.569251134443746},"location":"Right Ankle"},{"euler":{"heading":71.41105504191346,"pitch":-162.41035099025956,"roll":50.5736617964763},"location":"Right Hip"},{"euler":{"heading":21.43913135844719,"pitch":-102.59324541178493,"roll":25.911324362994314},"location":"Right Knee"},{"euler":{"heading":11.745713989833982,"pitch":-133.0872228654742,"roll":60.590934138969274},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.469"} +{"sensors":[{"euler":{"heading":27.885753361407772,"pitch":126.82765721727475,"roll":17.21784436797501},"location":"Left Knee"},{"euler":{"heading":33.488284461307344,"pitch":96.6761157312099,"roll":22.774439652934536},"location":"Left Ankle"},{"euler":{"heading":38.97597892338324,"pitch":-16.246418950500875,"roll":-10.25945293689592},"location":"Right Ankle"},{"euler":{"heading":70.5640495100264,"pitch":-162.66263645787058,"roll":50.89364664311462},"location":"Right Hip"},{"euler":{"heading":20.336741287489993,"pitch":-103.14917967347634,"roll":26.98991499823601},"location":"Right Knee"},{"euler":{"heading":10.996689143477074,"pitch":-132.19902026895608,"roll":60.641737112328},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.569"} +{"sensors":[{"euler":{"heading":30.276349512946993,"pitch":126.52300469937681,"roll":15.538381112573703},"location":"Left Knee"},{"euler":{"heading":35.04800038937707,"pitch":96.4453316615823,"roll":24.811355347641655},"location":"Left Ankle"},{"euler":{"heading":39.29161569579294,"pitch":-16.34188451952756,"roll":-10.187210035531907},"location":"Right Ankle"},{"euler":{"heading":70.31047507055666,"pitch":-162.77796244521795,"roll":51.52802079833442},"location":"Right Hip"},{"euler":{"heading":20.183214263017657,"pitch":-103.68195727001891,"roll":27.41893648211817},"location":"Right Knee"},{"euler":{"heading":9.669951503293806,"pitch":-130.62836319172422,"roll":60.003997080132635},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.670"} +{"sensors":[{"euler":{"heading":29.00546498907005,"pitch":127.353159446403,"roll":15.665526879947103},"location":"Left Knee"},{"euler":{"heading":33.6318697329076,"pitch":95.55873583951643,"roll":24.25260531601947},"location":"Left Ankle"},{"euler":{"heading":39.31819174269104,"pitch":-16.33314401177702,"roll":-10.407214000440725},"location":"Right Ankle"},{"euler":{"heading":70.51307482272391,"pitch":-162.7574665969286,"roll":52.25068285211959},"location":"Right Hip"},{"euler":{"heading":20.58663888168209,"pitch":-104.11649197827543,"roll":27.307741490465865},"location":"Right Knee"},{"euler":{"heading":8.440932790895788,"pitch":-129.0109195948413,"roll":59.117766022327956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.771"} +{"sensors":[{"euler":{"heading":24.99815762618828,"pitch":128.97236070089232,"roll":17.207451745707534},"location":"Left Knee"},{"euler":{"heading":30.20123598736096,"pitch":94.67918837674306,"roll":21.440226979724255},"location":"Left Ankle"},{"euler":{"heading":38.727585495641215,"pitch":-16.146875715445805,"roll":-10.731141565442861},"location":"Right Ankle"},{"euler":{"heading":70.86326781464527,"pitch":-162.82810002895775,"roll":52.94621888778893},"location":"Right Hip"},{"euler":{"heading":21.6125635103589,"pitch":-104.46807445295173,"roll":26.582866613273662},"location":"Right Knee"},{"euler":{"heading":7.654589994765619,"pitch":-127.73163973022854,"roll":58.42285316196563},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.871"} +{"sensors":[{"euler":{"heading":21.431603972190263,"pitch":130.60400417584245,"roll":18.882130587219272},"location":"Left Knee"},{"euler":{"heading":27.136588598954088,"pitch":94.12112010266837,"roll":18.48514968721986},"location":"Left Ankle"},{"euler":{"heading":37.393818756057485,"pitch":-15.74645917896107,"roll":-11.59500507793445},"location":"Right Ankle"},{"euler":{"heading":71.47105206526905,"pitch":-163.05253776710506,"roll":53.60531865045257},"location":"Right Hip"},{"euler":{"heading":23.421674617409728,"pitch":-104.56623629009613,"roll":25.130274180694474},"location":"Right Knee"},{"euler":{"heading":7.510139213252094,"pitch":-126.9426603355615,"roll":57.936731216181705},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.972"} +{"sensors":[{"euler":{"heading":19.99169533732445,"pitch":131.15891501094237,"roll":20.171584044918507},"location":"Left Knee"},{"euler":{"heading":25.857937345510255,"pitch":94.06798140898977,"roll":16.809985572298956},"location":"Left Ankle"},{"euler":{"heading":34.74406141041333,"pitch":-15.538710232471264,"roll":-12.632341869006488},"location":"Right Ankle"},{"euler":{"heading":72.4146032170176,"pitch":-162.97025111700592,"roll":53.90445621845665},"location":"Right Hip"},{"euler":{"heading":26.39524502765014,"pitch":-104.09025626592975,"roll":22.62085265764265},"location":"Right Knee"},{"euler":{"heading":7.55238637708592,"pitch":-126.3476386967157,"roll":57.68710142650461},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.73"} +{"sensors":[{"euler":{"heading":19.532081943570724,"pitch":131.06650923382355,"roll":21.106511345758946},"location":"Left Knee"},{"euler":{"heading":25.44118170503474,"pitch":94.15069429711326,"roll":15.781686538210124},"location":"Left Ankle"},{"euler":{"heading":31.682646848928957,"pitch":-15.356668695929452,"roll":-13.511549002535775},"location":"Right Ankle"},{"euler":{"heading":73.87089224528985,"pitch":-162.25964406238572,"roll":53.47953735672137},"location":"Right Hip"},{"euler":{"heading":29.044032303390825,"pitch":-103.66549911204595,"roll":20.040983664756617},"location":"Right Knee"},{"euler":{"heading":8.009095149902933,"pitch":-126.42158513003507,"roll":57.79415487799633},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.174"} +{"sensors":[{"euler":{"heading":19.530305379465055,"pitch":130.6202297840228,"roll":21.73252737799556},"location":"Left Knee"},{"euler":{"heading":26.22955109061944,"pitch":94.39795304928305,"roll":15.689492744386085},"location":"Left Ankle"},{"euler":{"heading":30.43042386112838,"pitch":-15.322740614059128,"roll":-14.009856244926345},"location":"Right Ankle"},{"euler":{"heading":74.65307388366894,"pitch":-161.65825060175234,"roll":52.63130487393735},"location":"Right Hip"},{"euler":{"heading":29.57195152518077,"pitch":-103.32276410264558,"roll":19.02638280088664},"location":"Right Knee"},{"euler":{"heading":8.614914791135558,"pitch":-127.08302817698294,"roll":58.14667310606911},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.275"} +{"sensors":[{"euler":{"heading":20.081764339682593,"pitch":129.84779355941882,"roll":22.0195642257179},"location":"Left Knee"},{"euler":{"heading":27.124770001896405,"pitch":94.71087094629489,"roll":15.93900610490967},"location":"Left Ankle"},{"euler":{"heading":31.6464860215804,"pitch":-15.862789470164419,"roll":-13.35493483183582},"location":"Right Ankle"},{"euler":{"heading":74.58008643932658,"pitch":-161.44700187404027,"roll":51.6735105959477},"location":"Right Hip"},{"euler":{"heading":27.97091599971743,"pitch":-102.66185858449805,"roll":20.111864434071396},"location":"Right Knee"},{"euler":{"heading":9.390388709410395,"pitch":-128.25230103753566,"roll":58.61429075578462},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.376"} +{"sensors":[{"euler":{"heading":21.074321327191843,"pitch":128.97642134933386,"roll":21.785836182965053},"location":"Left Knee"},{"euler":{"heading":28.24421926334154,"pitch":95.00591316801624,"roll":16.682026289707842},"location":"Left Ankle"},{"euler":{"heading":34.47335113717295,"pitch":-16.4644270658137,"roll":-12.090493005632844},"location":"Right Ankle"},{"euler":{"heading":73.65230948668726,"pitch":-161.7255274673078,"roll":51.14570895844456},"location":"Right Hip"},{"euler":{"heading":25.203389493959655,"pitch":-102.08165757506535,"roll":22.70526807750615},"location":"Right Knee"},{"euler":{"heading":10.239376980411228,"pitch":-129.89298705554532,"roll":59.215785541756425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.476"} +{"sensors":[{"euler":{"heading":22.541009742097085,"pitch":128.12848527650945,"roll":20.920357663480893},"location":"Left Knee"},{"euler":{"heading":29.89804124015727,"pitch":95.30261605953416,"roll":18.127256728429685},"location":"Left Ankle"},{"euler":{"heading":37.168484891480894,"pitch":-16.96127147113487,"roll":-10.833370264643849},"location":"Right Ankle"},{"euler":{"heading":71.94139751235419,"pitch":-162.25104248591938,"roll":50.98916102218307},"location":"Right Hip"},{"euler":{"heading":22.58656866663395,"pitch":-101.90147598353363,"roll":25.206552399921286},"location":"Right Knee"},{"euler":{"heading":11.20206649167034,"pitch":-132.1623835503836,"roll":59.82546156700189},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.577"} +{"sensors":[{"euler":{"heading":25.198532980593416,"pitch":127.30770128784059,"roll":19.001653964584776},"location":"Left Knee"},{"euler":{"heading":31.81104778346259,"pitch":95.77323557083899,"roll":20.63001656671541},"location":"Left Ankle"},{"euler":{"heading":38.44184416642787,"pitch":-16.917393058435024,"roll":-10.557900831677108},"location":"Right Ankle"},{"euler":{"heading":70.98640272982502,"pitch":-162.54820870069173,"roll":50.948574925739194},"location":"Right Hip"},{"euler":{"heading":20.759019937869827,"pitch":-102.33891022178868,"roll":26.821863715397953},"location":"Right Knee"},{"euler":{"heading":11.55630815461153,"pitch":-133.08629543230222,"roll":60.27607197832159},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.677"} +{"sensors":[{"euler":{"heading":28.498173243963734,"pitch":126.5114865434406,"roll":16.700662581122764},"location":"Left Knee"},{"euler":{"heading":34.073016441813635,"pitch":96.53796997237926,"roll":23.67948217694144},"location":"Left Ankle"},{"euler":{"heading":39.30016481244128,"pitch":-16.96092288304547,"roll":-10.19567456218479},"location":"Right Ankle"},{"euler":{"heading":69.91907927993923,"pitch":-163.1024817683885,"roll":51.357747650298826},"location":"Right Hip"},{"euler":{"heading":19.79175741504163,"pitch":-102.91309279096006,"roll":27.784112827672953},"location":"Right Knee"},{"euler":{"heading":10.449213549512132,"pitch":-131.7582282936694,"roll":60.11306857758948},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.778"} +{"sensors":[{"euler":{"heading":30.15354094286344,"pitch":126.46283142590582,"roll":15.439005275484828},"location":"Left Knee"},{"euler":{"heading":34.95008345634894,"pitch":96.04089754898702,"roll":25.05955624033558},"location":"Left Ankle"},{"euler":{"heading":39.78298043704979,"pitch":-16.994366628863087,"roll":-10.02842834414292},"location":"Right Ankle"},{"euler":{"heading":69.36025730996701,"pitch":-163.53268596228975,"roll":52.03715384777208},"location":"Right Hip"},{"euler":{"heading":19.528896297199235,"pitch":-103.37320321180823,"roll":28.17325815073888},"location":"Right Knee"},{"euler":{"heading":8.9719761652585,"pitch":-130.26517336443246,"roll":59.35914948505855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.878"} +{"sensors":[{"euler":{"heading":27.757465094842306,"pitch":127.50085061006733,"roll":16.080955309586187},"location":"Left Knee"},{"euler":{"heading":32.75502423366379,"pitch":95.03225018449619,"roll":23.76970451099188},"location":"Left Ankle"},{"euler":{"heading":39.79186434716892,"pitch":-16.875996350387297,"roll":-10.108958406850459},"location":"Right Ankle"},{"euler":{"heading":69.2653582568584,"pitch":-163.8981857853208,"roll":52.79461896668182},"location":"Right Hip"},{"euler":{"heading":19.81307174161603,"pitch":-103.7836003571512,"roll":28.09137859881265},"location":"Right Knee"},{"euler":{"heading":7.81592357850497,"pitch":-128.71795001727156,"roll":58.653165656885086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.979"} +{"sensors":[{"euler":{"heading":23.2628597622703,"pitch":129.3200338285752,"roll":17.839010806193144},"location":"Left Knee"},{"euler":{"heading":29.304916622418258,"pitch":93.86390209404922,"roll":20.682215464438173},"location":"Left Ankle"},{"euler":{"heading":39.19271710548817,"pitch":-16.578636191470373,"roll":-10.597999587256206},"location":"Right Ankle"},{"euler":{"heading":69.41357670559808,"pitch":-164.35376892629398,"roll":53.57515519723087},"location":"Right Hip"},{"euler":{"heading":20.75919119964771,"pitch":-104.04794296884661,"roll":27.422757070546393},"location":"Right Knee"},{"euler":{"heading":7.249848672117112,"pitch":-127.82325731826232,"roll":58.151080560615945},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.80"} +{"sensors":[{"euler":{"heading":20.629055971001918,"pitch":130.50837869837613,"roll":19.364433027005937},"location":"Left Knee"},{"euler":{"heading":26.997214045091873,"pitch":93.3655519411312,"roll":18.441337181494028},"location":"Left Ankle"},{"euler":{"heading":37.67359778013891,"pitch":-16.285781163975027,"roll":-11.403184528554688},"location":"Right Ankle"},{"euler":{"heading":69.92732811253552,"pitch":-164.80763190989305,"roll":54.29927890262208},"location":"Right Hip"},{"euler":{"heading":22.651590610796543,"pitch":-104.0255464748061,"roll":25.97944973810291},"location":"Right Knee"},{"euler":{"heading":7.107393769237059,"pitch":-127.23364857449711,"roll":57.7799905766789},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.180"} +{"sensors":[{"euler":{"heading":19.417804217994547,"pitch":130.9475344394697,"roll":20.46532011979456},"location":"Left Knee"},{"euler":{"heading":26.035137686708016,"pitch":93.22376330403513,"roll":17.025988955562816},"location":"Left Ankle"},{"euler":{"heading":34.5688632511035,"pitch":-15.717573259332076,"roll":-12.506330695405449},"location":"Right Ankle"},{"euler":{"heading":70.81766650516022,"pitch":-164.61189983501635,"roll":54.508622325293395},"location":"Right Hip"},{"euler":{"heading":25.419873242713617,"pitch":-103.73774160246599,"roll":23.502211301254},"location":"Right Knee"},{"euler":{"heading":6.984806542862265,"pitch":-126.78336062320282,"roll":57.699848726309746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.280"} +{"sensors":[{"euler":{"heading":18.86598537085264,"pitch":131.00603299043092,"roll":21.205837185980023},"location":"Left Knee"},{"euler":{"heading":25.925155685225345,"pitch":93.08357168473285,"roll":16.36953291963179},"location":"Left Ankle"},{"euler":{"heading":31.866186706887,"pitch":-15.334212854994638,"roll":-13.302399710018694},"location":"Right Ankle"},{"euler":{"heading":71.76070568219292,"pitch":-164.05428707059977,"roll":54.05001344027996},"location":"Right Hip"},{"euler":{"heading":27.567633883072745,"pitch":-103.50109537664366,"roll":21.201166901184816},"location":"Right Knee"},{"euler":{"heading":7.122244560845877,"pitch":-127.13096034629731,"roll":57.84136143764183},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.381"} +{"sensors":[{"euler":{"heading":18.68169554508942,"pitch":130.80331864349534,"roll":21.679717472456996},"location":"Left Knee"},{"euler":{"heading":26.75067991662513,"pitch":92.97455170514773,"roll":16.453287281951177},"location":"Left Ankle"},{"euler":{"heading":31.496283470170475,"pitch":-15.665084648261237,"roll":-13.422266651780696},"location":"Right Ankle"},{"euler":{"heading":72.55664635994326,"pitch":-163.50215471590295,"roll":53.13562384931368},"location":"Right Hip"},{"euler":{"heading":27.661531813023792,"pitch":-102.94213226243744,"roll":20.736132843660048},"location":"Right Knee"},{"euler":{"heading":7.686622039097857,"pitch":-128.2718924324909,"roll":58.21911568352815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.481"} +{"sensors":[{"euler":{"heading":18.994533231829585,"pitch":130.3642392551936,"roll":21.78747332200134},"location":"Left Knee"},{"euler":{"heading":27.539579099703648,"pitch":92.85212101212097,"roll":16.850121128747272},"location":"Left Ankle"},{"euler":{"heading":33.57153015362476,"pitch":-16.32120074540734,"roll":-12.621099193698434},"location":"Right Ankle"},{"euler":{"heading":72.34034680379186,"pitch":-163.3711529810086,"roll":52.33794203495695},"location":"Right Hip"},{"euler":{"heading":25.8121356654786,"pitch":-102.1806922430545,"roll":22.277286630254775},"location":"Right Knee"},{"euler":{"heading":8.392491313887565,"pitch":-129.92855074345394,"roll":58.6738969310921},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.582"} +{"sensors":[{"euler":{"heading":19.999793148282777,"pitch":129.74100556975912,"roll":21.314229372930672},"location":"Left Knee"},{"euler":{"heading":28.65520819065081,"pitch":92.80673491307152,"roll":17.76211979579602},"location":"Left Ankle"},{"euler":{"heading":36.63816062280538,"pitch":-16.83166954328157,"roll":-11.259994811862038},"location":"Right Ankle"},{"euler":{"heading":71.56871020133799,"pitch":-163.4963703884789,"roll":51.931240944983706},"location":"Right Hip"},{"euler":{"heading":22.983939136818034,"pitch":-101.75922298914976,"roll":25.003587190767103},"location":"Right Knee"},{"euler":{"heading":9.315284146604307,"pitch":-132.03998624704954,"roll":59.23404983854901},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.683"} +{"sensors":[{"euler":{"heading":21.756312165815157,"pitch":129.08787732567302,"roll":20.136893957055843},"location":"Left Knee"},{"euler":{"heading":30.371300599894973,"pitch":92.87268170037186,"roll":19.526723265281205},"location":"Left Ankle"},{"euler":{"heading":38.90535668608366,"pitch":-17.04982242403408,"roll":-10.278068298322085},"location":"Right Ankle"},{"euler":{"heading":70.59801246024765,"pitch":-163.66318426844353,"roll":51.84265672275453},"location":"Right Hip"},{"euler":{"heading":20.709832064198434,"pitch":-101.94265018934827,"roll":27.25651754874897},"location":"Right Knee"},{"euler":{"heading":10.433529674288367,"pitch":-134.50943052970408,"roll":59.80037132062423},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.784"} +{"sensors":[{"euler":{"heading":24.906796612711098,"pitch":128.43742477861082,"roll":17.98356118569106},"location":"Left Knee"},{"euler":{"heading":32.48987210340617,"pitch":93.3544721459289,"roll":22.30658518445222},"location":"Left Ankle"},{"euler":{"heading":39.80453981692881,"pitch":-16.842942610643785,"roll":-9.954351691977095},"location":"Right Ankle"},{"euler":{"heading":69.93400297868759,"pitch":-163.80223937584603,"roll":51.97653014219104},"location":"Right Hip"},{"euler":{"heading":18.948865908706942,"pitch":-102.55452696318636,"roll":28.700607319890175},"location":"Right Knee"},{"euler":{"heading":10.540586053163217,"pitch":-135.36465774905435,"roll":60.13446228720724},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.885"} +{"sensors":[{"euler":{"heading":28.10472182665228,"pitch":127.78344809547863,"roll":15.743743952642394},"location":"Left Knee"},{"euler":{"heading":34.444532516594904,"pitch":93.68936208334944,"roll":25.291692257706995},"location":"Left Ankle"},{"euler":{"heading":40.17812621648936,"pitch":-16.50116422515461,"roll":-9.976529906585796},"location":"Right Ankle"},{"euler":{"heading":69.15844574374998,"pitch":-164.11831672095198,"roll":52.5970747034051},"location":"Right Hip"},{"euler":{"heading":18.137191353684443,"pitch":-103.42924561831353,"roll":29.39496147903229},"location":"Right Knee"},{"euler":{"heading":9.712666325170337,"pitch":-134.05172857012337,"roll":60.08599972688872},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.986"} +{"sensors":[{"euler":{"heading":29.112001130058974,"pitch":127.91700842334157,"roll":14.846597607543636},"location":"Left Knee"},{"euler":{"heading":34.6359684194303,"pitch":92.89251373129639,"roll":26.16763181319142},"location":"Left Ankle"},{"euler":{"heading":40.240260739503526,"pitch":-16.13244440568417,"roll":-10.299809109047711},"location":"Right Ankle"},{"euler":{"heading":68.82068570875896,"pitch":-164.3567647722812,"roll":53.390457008961185},"location":"Right Hip"},{"euler":{"heading":18.07306918527745,"pitch":-104.20292080675398,"roll":29.571421873595334},"location":"Right Knee"},{"euler":{"heading":8.493743563223799,"pitch":-132.44157483564064,"roll":59.45356170913422},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.87"} +{"sensors":[{"euler":{"heading":26.387411671467113,"pitch":128.99505836278624,"roll":15.848111063621172},"location":"Left Knee"},{"euler":{"heading":31.986530729212078,"pitch":92.1417389784399,"roll":24.326476409694056},"location":"Left Ankle"},{"euler":{"heading":39.77983996342205,"pitch":-15.6917834930515,"roll":-10.669625401702762},"location":"Right Ankle"},{"euler":{"heading":69.1148776931707,"pitch":-164.3941712426348,"roll":54.11431419223017},"location":"Right Hip"},{"euler":{"heading":18.59131555571692,"pitch":-104.80192997366619,"roll":29.273307799901655},"location":"Right Knee"},{"euler":{"heading":7.519472168718474,"pitch":-130.80622762081586,"roll":58.77426877125199},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.188"} +{"sensors":[{"euler":{"heading":22.961513968917618,"pitch":130.51752718720067,"roll":17.6283158509573},"location":"Left Knee"},{"euler":{"heading":28.27733937030333,"pitch":91.72992045841548,"roll":20.88875909855575},"location":"Left Ankle"},{"euler":{"heading":38.594286098515994,"pitch":-15.007665649431834,"roll":-11.527450019223611},"location":"Right Ankle"},{"euler":{"heading":69.96812845360472,"pitch":-164.23182427384646,"roll":54.69797082594207},"location":"Right Hip"},{"euler":{"heading":19.925287183666175,"pitch":-105.27261474883568,"roll":28.212825890310555},"location":"Right Knee"},{"euler":{"heading":7.179528502929319,"pitch":-129.80206729206176,"roll":58.13581229058916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.289"} +{"sensors":[{"euler":{"heading":21.095751279619115,"pitch":131.27091398304256,"roll":19.221342873933157},"location":"Left Knee"},{"euler":{"heading":25.840733610337463,"pitch":91.9696428281732,"roll":18.271514911135363},"location":"Left Ankle"},{"euler":{"heading":36.428549057657015,"pitch":-14.584819613874776,"roll":-12.624720748593898},"location":"Right Ankle"},{"euler":{"heading":71.24940939058605,"pitch":-164.20977200788548,"roll":55.142872861187456},"location":"Right Hip"},{"euler":{"heading":22.456306139214405,"pitch":-105.22884636925428,"roll":26.254410558911268},"location":"Right Knee"},{"euler":{"heading":7.543276224309987,"pitch":-129.07773217255001,"roll":57.837518391126444},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.390"} +{"sensors":[{"euler":{"heading":20.41824581933673,"pitch":131.22136208105124,"roll":20.44285694358693},"location":"Left Knee"},{"euler":{"heading":25.302243845392862,"pitch":92.4659910845069,"roll":16.961500629770438},"location":"Left Ankle"},{"euler":{"heading":32.9965051092135,"pitch":-13.803861163696606,"roll":-14.128910141052332},"location":"Right Ankle"},{"euler":{"heading":73.10708265790151,"pitch":-163.61312262254506,"roll":55.05793839993563},"location":"Right Hip"},{"euler":{"heading":25.468060297675112,"pitch":-105.00493691704371,"roll":23.513204190506208},"location":"Right Knee"},{"euler":{"heading":7.977854536275772,"pitch":-128.74929129404424,"roll":57.73406828902688},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.491"} +{"sensors":[{"euler":{"heading":20.487762389527145,"pitch":130.6117195756587,"roll":21.35197943110828},"location":"Left Knee"},{"euler":{"heading":25.72934392751334,"pitch":93.34318640056193,"roll":16.27550719505886},"location":"Left Ankle"},{"euler":{"heading":30.35876519709252,"pitch":-13.65010493412058,"roll":-15.061951486045022},"location":"Right Ankle"},{"euler":{"heading":74.95513541771699,"pitch":-162.60949546881412,"roll":54.24386517739626},"location":"Right Hip"},{"euler":{"heading":27.357386470821005,"pitch":-104.43371776136011,"roll":21.478652935752322},"location":"Right Knee"},{"euler":{"heading":8.743913009054095,"pitch":-128.98122570695097,"roll":57.860435251879},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.592"} +{"sensors":[{"euler":{"heading":21.044088321561638,"pitch":129.6260618095232,"roll":21.96059063850258},"location":"Left Knee"},{"euler":{"heading":26.98868507422491,"pitch":94.2915165788279,"roll":16.255244902249306},"location":"Left Ankle"},{"euler":{"heading":30.220391232447817,"pitch":-14.236302283926104,"roll":-15.29981596832345},"location":"Right Ankle"},{"euler":{"heading":76.34941284476216,"pitch":-161.79646319174384,"roll":52.98998884340536},"location":"Right Hip"},{"euler":{"heading":27.322912848255243,"pitch":-103.5422814030234,"roll":21.195308807655714},"location":"Right Knee"},{"euler":{"heading":9.626809076937985,"pitch":-129.74995629351565,"roll":58.129359565455225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.693"} +{"sensors":[{"euler":{"heading":21.897942997315454,"pitch":128.4904070489284,"roll":22.154589294885017},"location":"Left Knee"},{"euler":{"heading":28.132793073327367,"pitch":95.06045730853292,"roll":16.58173790061257},"location":"Left Ankle"},{"euler":{"heading":32.73491675095269,"pitch":-15.188854497823874,"roll":-14.438952930471162},"location":"Right Ankle"},{"euler":{"heading":76.5100699200104,"pitch":-161.482887387844,"roll":51.83160616735538},"location":"Right Hip"},{"euler":{"heading":25.344624983347416,"pitch":-102.4145962470597,"roll":23.04355666627731},"location":"Right Knee"},{"euler":{"heading":10.635098178087981,"pitch":-131.11143589682302,"roll":58.55700701100773},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.793"} +{"sensors":[{"euler":{"heading":23.209444957616853,"pitch":127.26658620725459,"roll":21.80100146574425},"location":"Left Knee"},{"euler":{"heading":29.43225121731411,"pitch":95.81570568755609,"roll":17.340907272597917},"location":"Left Ankle"},{"euler":{"heading":35.94719717563048,"pitch":-15.902162566117845,"roll":-12.875198815650428},"location":"Right Ankle"},{"euler":{"heading":75.3574293109702,"pitch":-161.65692914481525,"roll":51.336328161944145},"location":"Right Hip"},{"euler":{"heading":22.381165519293795,"pitch":-101.53092412890209,"roll":25.881270385724854},"location":"Right Knee"},{"euler":{"heading":11.65093403582852,"pitch":-132.79524823846802,"roll":59.12233375536876},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.895"} +{"sensors":[{"euler":{"heading":25.09186316579023,"pitch":126.12945468953691,"roll":20.636814968754955},"location":"Left Knee"},{"euler":{"heading":31.12644873315648,"pitch":96.5050564310781,"roll":18.943438091294592},"location":"Left Ankle"},{"euler":{"heading":38.19690918791496,"pitch":-16.33358618563486,"roll":-11.638555917684643},"location":"Right Ankle"},{"euler":{"heading":74.15800021251306,"pitch":-162.0522274981659,"roll":51.02490551348782},"location":"Right Hip"},{"euler":{"heading":20.127102070751228,"pitch":-101.34367793723148,"roll":28.020984660153378},"location":"Right Knee"},{"euler":{"heading":12.60160547813617,"pitch":-134.49130198357287,"roll":59.74684468212582},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.996"} +{"sensors":[{"euler":{"heading":28.13734796553961,"pitch":125.37992217700884,"roll":18.388364789173625},"location":"Left Knee"},{"euler":{"heading":34.02970925102802,"pitch":97.21801235326012,"roll":22.147394039772255},"location":"Left Ankle"},{"euler":{"heading":39.474166700055925,"pitch":-16.50399428494681,"roll":-11.328110415661987},"location":"Right Ankle"},{"euler":{"heading":73.22941674647946,"pitch":-162.3920872036284,"roll":51.093880069939985},"location":"Right Hip"},{"euler":{"heading":18.673867686283817,"pitch":-101.64392282717242,"roll":29.380463941725132},"location":"Right Knee"},{"euler":{"heading":11.94719507864634,"pitch":-134.0759578480771,"roll":59.80659790772521},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.97"} +{"sensors":[{"euler":{"heading":30.83907335717268,"pitch":124.83843096158633,"roll":16.365688872730598},"location":"Left Knee"},{"euler":{"heading":36.51985663416158,"pitch":97.48264871108472,"roll":25.266550310709057},"location":"Left Ankle"},{"euler":{"heading":40.276226142189536,"pitch":-16.658192327108228,"roll":-10.928289865330322},"location":"Right Ankle"},{"euler":{"heading":72.4809842348324,"pitch":-162.7531255497367,"roll":51.54868373022813},"location":"Right Hip"},{"euler":{"heading":18.019038647001814,"pitch":-102.20692701892588,"roll":30.099326407111928},"location":"Right Knee"},{"euler":{"heading":10.483896569690522,"pitch":-132.24352292335814,"roll":59.254245734827144},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.198"} +{"sensors":[{"euler":{"heading":31.101182253974592,"pitch":125.28186235263486,"roll":15.837442214513523},"location":"Left Knee"},{"euler":{"heading":36.44225707544182,"pitch":96.6519561838295,"roll":26.025975339474268},"location":"Left Ankle"},{"euler":{"heading":40.64163146308464,"pitch":-16.76799575442432,"roll":-10.851876979569472},"location":"Right Ankle"},{"euler":{"heading":72.18921512411303,"pitch":-163.0025311522397,"roll":52.19803653274981},"location":"Right Hip"},{"euler":{"heading":18.047669569685464,"pitch":-102.7163754808686,"roll":30.29796375720045},"location":"Right Knee"},{"euler":{"heading":8.869577816554118,"pitch":-130.6448513041056,"roll":58.20746771793545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.299"} +{"sensors":[{"euler":{"heading":27.5880888523503,"pitch":126.79488489276339,"roll":17.077638881569936},"location":"Left Knee"},{"euler":{"heading":33.239596216498555,"pitch":95.71003337446757,"roll":24.03777169115755},"location":"Left Ankle"},{"euler":{"heading":40.47114563814611,"pitch":-16.77222921731215,"roll":-11.008654553289013},"location":"Right Ankle"},{"euler":{"heading":72.22974435350194,"pitch":-163.2579386043815,"roll":52.85696339207837},"location":"Right Hip"},{"euler":{"heading":18.653752684962107,"pitch":-103.1179096213872,"roll":29.954518674012203},"location":"Right Knee"},{"euler":{"heading":7.720189307277522,"pitch":-129.323104657983,"roll":57.34944399257234},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.399"} +{"sensors":[{"euler":{"heading":23.427385368861334,"pitch":128.84769165849693,"roll":18.782502084523635},"location":"Left Knee"},{"euler":{"heading":29.273621483370096,"pitch":94.65557043965875,"roll":20.657243931959528},"location":"Left Ankle"},{"euler":{"heading":39.618115116261755,"pitch":-16.460958668339185,"roll":-11.554799590924587},"location":"Right Ankle"},{"euler":{"heading":72.3818357946861,"pitch":-163.63173782552587,"roll":53.60184257590975},"location":"Right Hip"},{"euler":{"heading":19.99424655970791,"pitch":-103.41584947426357,"roll":28.918416247523737},"location":"Right Knee"},{"euler":{"heading":7.450891013783638,"pitch":-128.64433082166573,"roll":56.787070781573085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.500"} +{"sensors":[{"euler":{"heading":21.23939396768759,"pitch":129.99773373364494,"roll":20.23601069397335},"location":"Left Knee"},{"euler":{"heading":26.977534927073265,"pitch":94.29594397157466,"roll":18.35334268023785},"location":"Left Ankle"},{"euler":{"heading":37.56412451933754,"pitch":-16.00688378497445,"roll":-12.381929851373169},"location":"Right Ankle"},{"euler":{"heading":72.86308655786357,"pitch":-164.05915903927473,"roll":54.27586518550023},"location":"Right Hip"},{"euler":{"heading":22.251176465509037,"pitch":-103.40601836358834,"roll":27.03556907140875},"location":"Right Knee"},{"euler":{"heading":7.474147478012783,"pitch":-128.32144536710592,"roll":56.39115412323191},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.601"} +{"sensors":[{"euler":{"heading":20.238594914138,"pitch":130.30710530846576,"roll":21.33722333592466},"location":"Left Knee"},{"euler":{"heading":26.173602444592216,"pitch":94.20239394051428,"roll":17.083106999708118},"location":"Left Ankle"},{"euler":{"heading":34.22357843703054,"pitch":-15.423588818384292,"roll":-13.504933790602218},"location":"Right Ankle"},{"euler":{"heading":74.23810991450836,"pitch":-163.488727316068,"roll":54.30313129986413},"location":"Right Hip"},{"euler":{"heading":24.984999041051765,"pitch":-103.1771460544876,"roll":24.28545344431031},"location":"Right Knee"},{"euler":{"heading":7.790455226664535,"pitch":-128.24925074827857,"roll":56.37178154065009},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.702"} +{"sensors":[{"euler":{"heading":19.98394596734157,"pitch":129.9984624816664,"roll":22.167214597783335},"location":"Left Knee"},{"euler":{"heading":26.2763427825474,"pitch":94.34960984616704,"roll":16.391491076168144},"location":"Left Ankle"},{"euler":{"heading":31.488342956604736,"pitch":-14.949287508587512,"roll":-14.396260607648378},"location":"Right Ankle"},{"euler":{"heading":75.84554745328786,"pitch":-162.47315202566634,"roll":53.6084215048096},"location":"Right Hip"},{"euler":{"heading":26.658645753175982,"pitch":-102.82735782297296,"roll":22.24284042340108},"location":"Right Knee"},{"euler":{"heading":8.418056738127566,"pitch":-129.0162667041934,"roll":56.56233754028963},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.803"} +{"sensors":[{"euler":{"heading":20.22133775982401,"pitch":129.38029674515664,"roll":22.66260477781874},"location":"Left Knee"},{"euler":{"heading":27.38900467778069,"pitch":94.64334515611006,"roll":16.502883208676757},"location":"Left Ankle"},{"euler":{"heading":31.31770218819701,"pitch":-15.298939372526483,"roll":-14.501253731223805},"location":"Right Ankle"},{"euler":{"heading":76.79310648020305,"pitch":-161.68498002323352,"roll":52.51606193018721},"location":"Right Hip"},{"euler":{"heading":26.4654099465687,"pitch":-102.13034348179804,"roll":21.958146711648897},"location":"Right Knee"},{"euler":{"heading":9.027061091614163,"pitch":-130.01947632356084,"roll":56.88339960591411},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.904"} +{"sensors":[{"euler":{"heading":21.004299354705168,"pitch":128.49988736444124,"roll":22.742261932988878},"location":"Left Knee"},{"euler":{"heading":28.395175943247466,"pitch":94.93292014810731,"roll":16.889053939189647},"location":"Left Ankle"},{"euler":{"heading":33.81769829830022,"pitch":-15.995830318080735,"roll":-13.419088482701735},"location":"Right Ankle"},{"euler":{"heading":76.71878778547385,"pitch":-161.25121227932726,"roll":51.52166766724342},"location":"Right Hip"},{"euler":{"heading":24.23227631883198,"pitch":-101.21425780952359,"roll":23.74572028942204},"location":"Right Knee"},{"euler":{"heading":9.73974426494504,"pitch":-131.37909908553326,"roll":57.32255335817976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.4"} +{"sensors":[{"euler":{"heading":22.275590060755693,"pitch":127.44163332194587,"roll":22.30899055950998},"location":"Left Knee"},{"euler":{"heading":29.73032433110293,"pitch":95.36141795503752,"roll":17.773567895189768},"location":"Left Ankle"},{"euler":{"heading":36.869449368679724,"pitch":-16.465906260987193,"roll":-12.065309738739947},"location":"Right Ankle"},{"euler":{"heading":75.65912403876087,"pitch":-161.2986594223371,"roll":50.883458616396446},"location":"Right Hip"},{"euler":{"heading":21.083930653255585,"pitch":-100.55772863641954,"roll":26.67716405483461},"location":"Right Knee"},{"euler":{"heading":10.537319542626385,"pitch":-132.99583283387432,"roll":57.951799641335185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.105"} +{"sensors":[{"euler":{"heading":24.184536414138798,"pitch":126.42459253643715,"roll":21.108372254859898},"location":"Left Knee"},{"euler":{"heading":31.756955668397048,"pitch":95.84427986349061,"roll":19.590590133722923},"location":"Left Ankle"},{"euler":{"heading":38.94610296778683,"pitch":-16.730742960674924,"roll":-11.101902627589944},"location":"Right Ankle"},{"euler":{"heading":74.25044952762069,"pitch":-161.62102261786453,"roll":50.644841686240476},"location":"Right Hip"},{"euler":{"heading":18.422834357216143,"pitch":-100.48683882052846,"roll":29.13950461685052},"location":"Right Knee"},{"euler":{"heading":11.261716999590083,"pitch":-134.75009498409491,"roll":58.592532612383344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.205"} +{"sensors":[{"euler":{"heading":27.150672200590485,"pitch":125.55186013727905,"roll":18.922080762451337},"location":"Left Knee"},{"euler":{"heading":34.37949902690317,"pitch":96.72710764232471,"roll":22.822165409009465},"location":"Left Ankle"},{"euler":{"heading":40.04598859465982,"pitch":-16.863371552750337,"roll":-10.66414699921539},"location":"Right Ankle"},{"euler":{"heading":73.50130929619554,"pitch":-161.84137734809124,"roll":50.6905167083713},"location":"Right Hip"},{"euler":{"heading":16.939532610959603,"pitch":-100.86859046458878,"roll":30.660123617864436},"location":"Right Knee"},{"euler":{"heading":11.194923699281961,"pitch":-135.01762479178797,"roll":58.86910522076798},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.309"} +{"sensors":[{"euler":{"heading":30.417629314944783,"pitch":124.67296672514452,"roll":16.604877543140244},"location":"Left Knee"},{"euler":{"heading":37.1273107319275,"pitch":97.53190180520534,"roll":26.120891718652835},"location":"Left Ankle"},{"euler":{"heading":40.61958182430676,"pitch":-16.906094861250594,"roll":-10.452337377154716},"location":"Right Ankle"},{"euler":{"heading":72.65010178870706,"pitch":-162.1894035423809,"roll":51.201526199825075},"location":"Right Hip"},{"euler":{"heading":16.22441260297355,"pitch":-101.6242542393014,"roll":31.542633322324633},"location":"Right Knee"},{"euler":{"heading":10.266273197383372,"pitch":-133.60096502050337,"roll":58.63779896387449},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.409"} +{"sensors":[{"euler":{"heading":31.784642551733853,"pitch":124.74569289326053,"roll":15.506909779971846},"location":"Left Knee"},{"euler":{"heading":37.83738127776067,"pitch":96.99378946237906,"roll":27.476812656703608},"location":"Left Ankle"},{"euler":{"heading":40.994114411737286,"pitch":-16.897191657377103,"roll":-10.46281658805716},"location":"Right Ankle"},{"euler":{"heading":72.26229000849615,"pitch":-162.44487069586154,"roll":51.895792950585076},"location":"Right Hip"},{"euler":{"heading":16.114497732041066,"pitch":-102.33181678690016,"roll":31.913132211131806},"location":"Right Knee"},{"euler":{"heading":8.804348882049567,"pitch":-131.95045582678034,"roll":57.81018370379847},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.510"} +{"sensors":[{"euler":{"heading":28.956267233787173,"pitch":126.00056251496544,"roll":16.38615801593684},"location":"Left Knee"},{"euler":{"heading":35.339116915604976,"pitch":96.07285755767703,"roll":25.77866037066692},"location":"Left Ankle"},{"euler":{"heading":40.8786644436466,"pitch":-16.663213680392687,"roll":-10.69227534690159},"location":"Right Ankle"},{"euler":{"heading":72.08743752976038,"pitch":-162.6760365563008,"roll":52.654814398563126},"location":"Right Hip"},{"euler":{"heading":16.422835166636467,"pitch":-103.0434161938473,"roll":31.77870811981106},"location":"Right Knee"},{"euler":{"heading":7.500311313559284,"pitch":-130.27859196262668,"roll":56.966170358787934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.611"} +{"sensors":[{"euler":{"heading":24.678445099649686,"pitch":127.95056990620958,"roll":18.17463420514921},"location":"Left Knee"},{"euler":{"heading":31.034323890039417,"pitch":95.04927938460675,"roll":22.208749481174628},"location":"Left Ankle"},{"euler":{"heading":40.088533144055845,"pitch":-16.10666499806187,"roll":-11.34580493096115},"location":"Right Ankle"},{"euler":{"heading":72.12857304763583,"pitch":-162.9446658585359,"roll":53.466485450615714},"location":"Right Hip"},{"euler":{"heading":17.32928535958054,"pitch":-103.70516068560276,"roll":31.03875911686715},"location":"Right Knee"},{"euler":{"heading":7.1103318470614125,"pitch":-129.2711151660782,"roll":56.404584176556845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.712"} +{"sensors":[{"euler":{"heading":22.07945577132099,"pitch":129.29296615526283,"roll":19.77514581354323},"location":"Left Knee"},{"euler":{"heading":28.104094828882406,"pitch":94.76516222869695,"roll":19.5194490802127},"location":"Left Ankle"},{"euler":{"heading":38.44276281898331,"pitch":-15.507933043739168,"roll":-12.234432945494394},"location":"Right Ankle"},{"euler":{"heading":72.54275445259437,"pitch":-163.37204635567807,"roll":54.22472758766759},"location":"Right Hip"},{"euler":{"heading":19.212984850333807,"pitch":-103.97101955731048,"roll":29.51901871496266},"location":"Right Knee"},{"euler":{"heading":7.415274386649311,"pitch":-128.70430236334084,"roll":56.080723372413054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.812"} +{"sensors":[{"euler":{"heading":20.783749217668337,"pitch":129.7942301510749,"roll":21.021268420881107},"location":"Left Knee"},{"euler":{"heading":26.887942693863135,"pitch":94.71615746188897,"roll":17.97181900592184},"location":"Left Ankle"},{"euler":{"heading":35.41863112614662,"pitch":-15.019663188463392,"roll":-13.246616056297436},"location":"Right Ankle"},{"euler":{"heading":73.69639287859547,"pitch":-163.11073378543935,"roll":54.506561082213},"location":"Right Hip"},{"euler":{"heading":22.122776687523476,"pitch":-103.7359640147288,"roll":26.948836667928212},"location":"Right Knee"},{"euler":{"heading":7.552000159869104,"pitch":-128.24491535284642,"roll":56.00170087643153},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.913"} +{"sensors":[{"euler":{"heading":20.234122563560458,"pitch":129.79002276140508,"roll":21.809971177900753},"location":"Left Knee"},{"euler":{"heading":26.373728572649778,"pitch":94.69559550019301,"roll":16.96974273245006},"location":"Left Ankle"},{"euler":{"heading":32.11013233466664,"pitch":-14.678910194668036,"roll":-14.15657002004017},"location":"Right Ankle"},{"euler":{"heading":75.21174029252336,"pitch":-162.34514617458296,"roll":53.94113273556769},"location":"Right Hip"},{"euler":{"heading":24.749068675487106,"pitch":-103.31518234547954,"roll":24.31398699116241},"location":"Right Knee"},{"euler":{"heading":7.895818070825656,"pitch":-128.56050033354407,"roll":56.16800769414557},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.14"} +{"sensors":[{"euler":{"heading":19.986229319200973,"pitch":129.61380167827414,"roll":22.250164496028457},"location":"Left Knee"},{"euler":{"heading":27.16553336747045,"pitch":94.73644256973179,"roll":16.919113184055316},"location":"Left Ankle"},{"euler":{"heading":30.828010970524584,"pitch":-14.691617914476561,"roll":-14.59351968847001},"location":"Right Ankle"},{"euler":{"heading":76.35738017655065,"pitch":-161.62860379497928,"roll":52.900358337806004},"location":"Right Hip"},{"euler":{"heading":25.294240625975938,"pitch":-102.63121681089773,"roll":23.291252630039693},"location":"Right Knee"},{"euler":{"heading":8.343804413919148,"pitch":-129.35736177317938,"roll":56.54441627848578},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.115"} +{"sensors":[{"euler":{"heading":20.229152673453694,"pitch":129.2403125374878,"roll":22.327437847459244},"location":"Left Knee"},{"euler":{"heading":27.914932497492323,"pitch":94.6426072972557,"roll":17.176510456288483},"location":"Left Ankle"},{"euler":{"heading":32.39414675337879,"pitch":-15.190632038538935,"roll":-13.936585104463724},"location":"Right Ankle"},{"euler":{"heading":76.50470294732264,"pitch":-161.3250502954757,"roll":51.78617360234722},"location":"Right Hip"},{"euler":{"heading":23.523027079589447,"pitch":-101.72099337088409,"roll":24.577460231078092},"location":"Right Knee"},{"euler":{"heading":8.811685371517013,"pitch":-130.54215582516244,"roll":57.03365171619287},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.220"} +{"sensors":[{"euler":{"heading":21.141494965154358,"pitch":128.61697675615883,"roll":21.963353120865076},"location":"Left Knee"},{"euler":{"heading":28.91498468145083,"pitch":94.60526055873841,"roll":17.896938058193616},"location":"Left Ankle"},{"euler":{"heading":35.412526846333606,"pitch":-15.814591404061861,"roll":-12.616813841461733},"location":"Right Ankle"},{"euler":{"heading":75.74542514273703,"pitch":-161.3714189105841,"roll":51.051459753582854},"location":"Right Hip"},{"euler":{"heading":20.895588454626633,"pitch":-100.95086263318883,"roll":27.269261493610614},"location":"Right Knee"},{"euler":{"heading":9.545558937900791,"pitch":-132.1671600443623,"roll":57.67254382263018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.321"} +{"sensors":[{"euler":{"heading":22.578175520559096,"pitch":127.85079528319987,"roll":21.08098831651438},"location":"Left Knee"},{"euler":{"heading":30.453208538871337,"pitch":94.78549750024665,"roll":19.315779724084},"location":"Left Ankle"},{"euler":{"heading":38.1217854717896,"pitch":-16.266235838783057,"roll":-11.470148177860612},"location":"Right Ankle"},{"euler":{"heading":74.0179020884277,"pitch":-161.78198578744178,"roll":50.77308049786761},"location":"Right Hip"},{"euler":{"heading":18.131877895532334,"pitch":-100.74745105455783,"roll":29.97848952175019},"location":"Right Knee"},{"euler":{"heading":10.413992654858795,"pitch":-134.32724154830646,"roll":58.36362221213615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.421"} +{"sensors":[{"euler":{"heading":25.044659743048065,"pitch":127.08615307159354,"roll":19.242129561254565},"location":"Left Knee"},{"euler":{"heading":31.106283174220465,"pitch":95.15072987594893,"roll":21.78277040424824},"location":"Left Ankle"},{"euler":{"heading":39.26402279283304,"pitch":-16.401433481221137,"roll":-11.00330852787312},"location":"Right Ankle"},{"euler":{"heading":72.9244547116837,"pitch":-162.03459136970827,"roll":50.640088199596676},"location":"Right Hip"},{"euler":{"heading":16.213782553087164,"pitch":-101.05684951920476,"roll":31.722510837936774},"location":"Right Knee"},{"euler":{"heading":10.82779985179882,"pitch":-135.70515062827536,"roll":58.947344670400504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.522"} +{"sensors":[{"euler":{"heading":28.467306927242902,"pitch":126.17427100864172,"roll":16.835028648697108},"location":"Left Knee"},{"euler":{"heading":34.013197713415494,"pitch":95.9568441602732,"roll":25.186314390241414},"location":"Left Ankle"},{"euler":{"heading":39.991199695835,"pitch":-16.476207997485172,"roll":-10.78301742235593},"location":"Right Ankle"},{"euler":{"heading":71.6189149689174,"pitch":-162.4653083248634,"roll":50.96564485506782},"location":"Right Hip"},{"euler":{"heading":15.273450791555078,"pitch":-101.91351131850205,"roll":32.670429654434884},"location":"Right Knee"},{"euler":{"heading":9.840821132302107,"pitch":-134.27065247642707,"roll":59.03558781124603},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.622"} +{"sensors":[{"euler":{"heading":30.996282549473488,"pitch":125.97933426384417,"roll":15.055238633386482},"location":"Left Knee"},{"euler":{"heading":35.56103309311251,"pitch":95.46154351580422,"roll":27.243503608932585},"location":"Left Ankle"},{"euler":{"heading":40.37258027465072,"pitch":-16.478471209867966,"roll":-10.845275026486686},"location":"Right Ankle"},{"euler":{"heading":71.0790728331824,"pitch":-162.66480351932216,"roll":51.575334263123565},"location":"Right Hip"},{"euler":{"heading":15.103984243101555,"pitch":-102.74219099959389,"roll":33.04066254236826},"location":"Right Knee"},{"euler":{"heading":8.25384873705865,"pitch":-132.46725970136413,"roll":58.35443745442399},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.723"} +{"sensors":[{"euler":{"heading":29.719796832461448,"pitch":126.92660400248525,"roll":15.281851060003703},"location":"Left Knee"},{"euler":{"heading":34.028159119403796,"pitch":94.66853046434296,"roll":26.58419243144173},"location":"Left Ankle"},{"euler":{"heading":40.31624520302979,"pitch":-16.355667674260527,"roll":-11.038352456217783},"location":"Right Ankle"},{"euler":{"heading":71.10078467719492,"pitch":-162.6966890583921,"roll":52.28160501201586},"location":"Right Hip"},{"euler":{"heading":15.381396752112371,"pitch":-103.4504254373187,"roll":32.95356021447233},"location":"Right Knee"},{"euler":{"heading":40.67027700628493,"pitch":-131.0970080587392,"roll":57.28029278515351},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.824"} +{"sensors":[{"euler":{"heading":25.97544206181136,"pitch":128.62799846365715,"roll":16.842437135329142},"location":"Left Knee"},{"euler":{"heading":30.353303382739302,"pitch":94.06391356236749,"roll":23.52624082222675},"location":"Left Ankle"},{"euler":{"heading":39.72909511425146,"pitch":-16.101858432436938,"roll":-11.551945945038103},"location":"Right Ankle"},{"euler":{"heading":71.35042930864573,"pitch":-162.8147211023952,"roll":53.003926117754254},"location":"Right Hip"},{"euler":{"heading":16.298197495533508,"pitch":-104.03183605318388,"roll":32.30399395688611},"location":"Right Knee"},{"euler":{"heading":33.86558257764534,"pitch":-129.85710149670166,"roll":56.60559142489865},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.926"} +{"sensors":[{"euler":{"heading":22.416107936067288,"pitch":130.3696883686572,"roll":18.581564501288355},"location":"Left Knee"},{"euler":{"heading":27.029234218747185,"pitch":93.6416622561046,"roll":20.230044242761988},"location":"Left Ankle"},{"euler":{"heading":38.59435342485057,"pitch":-15.652216392876301,"roll":-12.331785197342723},"location":"Right Ankle"},{"euler":{"heading":71.77481444203636,"pitch":-163.16528296997677,"roll":53.82995040574535},"location":"Right Hip"},{"euler":{"heading":17.89310662453847,"pitch":-104.39147141612902,"roll":31.038452569814655},"location":"Right Knee"},{"euler":{"heading":28.983561902427866,"pitch":-129.05618756128834,"roll":56.17343020759121},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.27"} +{"sensors":[{"euler":{"heading":21.24964948609134,"pitch":130.9290525537627,"roll":19.98284359118529},"location":"Left Knee"},{"euler":{"heading":25.62734831339411,"pitch":93.9789597948198,"roll":18.323498785538796},"location":"Left Ankle"},{"euler":{"heading":36.46427603012586,"pitch":-15.388033900203185,"roll":-13.358488913277972},"location":"Right Ankle"},{"euler":{"heading":72.53252675134019,"pitch":-163.72625527981265,"roll":54.63090696640344},"location":"Right Hip"},{"euler":{"heading":20.613999690210314,"pitch":-104.1877641147634,"roll":28.894484027730055},"location":"Right Knee"},{"euler":{"heading":25.622316626103746,"pitch":-128.6168352674054,"roll":55.99046405917454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.128"} +{"sensors":[{"euler":{"heading":21.120952342018402,"pitch":130.60880950476968,"roll":21.072466888295633},"location":"Left Knee"},{"euler":{"heading":25.454516116801408,"pitch":94.65278100412667,"roll":17.19878938612242},"location":"Left Ankle"},{"euler":{"heading":33.073320776201776,"pitch":-14.798208596758492,"roll":-14.822605204441334},"location":"Right Ankle"},{"euler":{"heading":73.98528382915318,"pitch":-163.29450653796818,"roll":54.636290374308494},"location":"Right Hip"},{"euler":{"heading":23.626644564271235,"pitch":-104.02127037741525,"roll":25.997265798574436},"location":"Right Knee"},{"euler":{"heading":23.191179279901554,"pitch":-128.40358086251825,"roll":56.22918346973276},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.228"} +{"sensors":[{"euler":{"heading":21.30095002705617,"pitch":129.93258455531108,"roll":21.850354087474077},"location":"Left Knee"},{"euler":{"heading":25.8480789892607,"pitch":95.32195809970762,"roll":16.573458183703853},"location":"Left Ankle"},{"euler":{"heading":30.594075702325505,"pitch":-14.579591683315304,"roll":-15.784783782628939},"location":"Right Ankle"},{"euler":{"heading":75.59097126999336,"pitch":-162.52927348123666,"roll":53.862326387306766},"location":"Right Hip"},{"euler":{"heading":25.522645362000166,"pitch":-103.58523957792374,"roll":23.910722913499896},"location":"Right Knee"},{"euler":{"heading":21.34325406142356,"pitch":-129.0726818716321,"roll":56.59382740557034},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.329"} +{"sensors":[{"euler":{"heading":21.882339391297524,"pitch":128.95802168638542,"roll":22.31048721497272},"location":"Left Knee"},{"euler":{"heading":27.13346767397292,"pitch":96.15934677359361,"roll":16.732939093162663},"location":"Left Ankle"},{"euler":{"heading":30.662766137077263,"pitch":-15.10709821674561,"roll":-15.834982746629986},"location":"Right Ankle"},{"euler":{"heading":76.45386301190302,"pitch":-161.94979400415986,"roll":52.64474390095261},"location":"Right Hip"},{"euler":{"heading":25.113137226856516,"pitch":-102.79235056345162,"roll":23.883543543647463},"location":"Right Knee"},{"euler":{"heading":19.95502637270937,"pitch":-130.12997807883167,"roll":57.08430792129222},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.430"} +{"sensors":[{"euler":{"heading":22.881567438032764,"pitch":127.84429703701562,"roll":22.334459911484515},"location":"Left Knee"},{"euler":{"heading":28.542660981270597,"pitch":96.98247729907165,"roll":17.239913158573273},"location":"Left Ankle"},{"euler":{"heading":33.245765529856676,"pitch":-15.863855190637603,"roll":-14.774579320166975},"location":"Right Ankle"},{"euler":{"heading":76.21509391479408,"pitch":-161.74053877115855,"roll":51.542983853607986},"location":"Right Hip"},{"euler":{"heading":22.7683184367916,"pitch":-101.92625236403198,"roll":25.880354201147213},"location":"Right Knee"},{"euler":{"heading":18.93130790359409,"pitch":-131.4909799852027,"roll":57.7302719754186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.530"} +{"sensors":[{"euler":{"heading":24.18130418786452,"pitch":126.68788266743394,"roll":21.850801059132227},"location":"Left Knee"},{"euler":{"heading":30.166186223044747,"pitch":97.6619092136843,"roll":18.305082733144328},"location":"Left Ankle"},{"euler":{"heading":36.18117506103347,"pitch":-16.275141565765022,"roll":-13.32753146179655},"location":"Right Ankle"},{"euler":{"heading":74.70567705435003,"pitch":-162.01492292048482,"roll":50.96220017842914},"location":"Right Hip"},{"euler":{"heading":19.582032851000697,"pitch":-101.31495560932782,"roll":28.73953784997926},"location":"Right Knee"},{"euler":{"heading":18.152541416408237,"pitch":-133.13868822505546,"roll":58.46936674750449},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.631"} +{"sensors":[{"euler":{"heading":26.006526593580414,"pitch":125.6414721245266,"roll":20.61053368822826},"location":"Left Knee"},{"euler":{"heading":32.28625283012532,"pitch":98.28860083568036,"roll":20.23801327764171},"location":"Left Ankle"},{"euler":{"heading":38.17445895026842,"pitch":-16.653249664173373,"roll":-12.422414836427233},"location":"Right Ankle"},{"euler":{"heading":73.15466687502581,"pitch":-162.50696391157047,"roll":50.787436654808204},"location":"Right Hip"},{"euler":{"heading":16.973105696490137,"pitch":-101.4157922492779,"roll":31.01164057327718},"location":"Right Knee"},{"euler":{"heading":17.812153649184598,"pitch":-135.21229849424037,"roll":59.203553570921514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.731"} +{"sensors":[{"euler":{"heading":28.97545299468564,"pitch":124.9264683001725,"roll":18.32891166766668},"location":"Left Knee"},{"euler":{"heading":35.46092549525497,"pitch":99.30157653777933,"roll":23.54474455221526},"location":"Left Ankle"},{"euler":{"heading":39.29526116418414,"pitch":-16.811085722901733,"roll":-11.96606112444236},"location":"Right Ankle"},{"euler":{"heading":72.20574804736195,"pitch":-162.87491054266914,"roll":50.96818003226239},"location":"Right Hip"},{"euler":{"heading":15.37794198808266,"pitch":-101.89942711485733,"roll":32.42551647899347},"location":"Right Knee"},{"euler":{"heading":16.43950791479799,"pitch":-135.36451753761605,"roll":59.47551062691117},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.831"} +{"sensors":[{"euler":{"heading":31.775015759028413,"pitch":124.2913697740667,"roll":16.198930379925674},"location":"Left Knee"},{"euler":{"heading":37.63228185414666,"pitch":99.46908424472262,"roll":26.60232165616706},"location":"Left Ankle"},{"euler":{"heading":39.8859808724364,"pitch":-16.781493717783945,"roll":-11.850383404865985},"location":"Right Ankle"},{"euler":{"heading":71.41688373334883,"pitch":-163.26730935542733,"roll":51.524120513175774},"location":"Right Hip"},{"euler":{"heading":14.416651529565657,"pitch":-102.66404817086583,"roll":33.235218247260455},"location":"Right Knee"},{"euler":{"heading":14.530806481736985,"pitch":-133.84351592947235,"roll":59.23408256406086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.933"} +{"sensors":[{"euler":{"heading":32.09345255915954,"pitch":124.72738724165941,"roll":15.65087476458523},"location":"Left Knee"},{"euler":{"heading":37.115297324570335,"pitch":98.52672119142935,"roll":27.163337848443096},"location":"Left Ankle"},{"euler":{"heading":40.018888374025785,"pitch":-16.60013865163868,"roll":-11.930014055659996},"location":"Right Ankle"},{"euler":{"heading":71.16929810615338,"pitch":-163.4618579559112,"roll":52.22931765841249},"location":"Right Hip"},{"euler":{"heading":14.170570946699376,"pitch":-103.46889555342533,"roll":33.48038197289096},"location":"Right Knee"},{"euler":{"heading":12.50422984025577,"pitch":-132.16993409945928,"roll":58.492433256002386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.34"} +{"sensors":[{"euler":{"heading":28.555136691726148,"pitch":126.29909949107847,"roll":16.908818645758682},"location":"Left Knee"},{"euler":{"heading":33.642048146159084,"pitch":97.39457089175613,"roll":24.936145912494073},"location":"Left Ankle"},{"euler":{"heading":39.68776012691455,"pitch":-16.269566358557917,"roll":-12.156647845215925},"location":"Right Ankle"},{"euler":{"heading":71.19249695494233,"pitch":-163.68546259694043,"roll":52.96255790220584},"location":"Right Hip"},{"euler":{"heading":14.516048735796979,"pitch":-104.14961943053284,"roll":33.20281867789473},"location":"Right Knee"},{"euler":{"heading":10.91026948544916,"pitch":-130.7268953019202,"roll":57.81538797288066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.135"} +{"sensors":[{"euler":{"heading":24.254874928339373,"pitch":128.42879434257878,"roll":18.659467398587715},"location":"Left Knee"},{"euler":{"heading":29.460461300471124,"pitch":96.24526484091157,"roll":21.392871376486646},"location":"Left Ankle"},{"euler":{"heading":38.82210191782945,"pitch":-15.7564086546246,"roll":-12.837347723086534},"location":"Right Ankle"},{"euler":{"heading":71.53253875862775,"pitch":-163.9115780944322,"roll":53.727118954617026},"location":"Right Hip"},{"euler":{"heading":15.696667022961465,"pitch":-104.65262865710332,"roll":32.25011227013024},"location":"Right Knee"},{"euler":{"heading":10.354245249928221,"pitch":-130.08105460358456,"roll":57.33354333719993},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.236"} +{"sensors":[{"euler":{"heading":22.012066436378305,"pitch":129.57706683885502,"roll":20.14846090343012},"location":"Left Knee"},{"euler":{"heading":27.07106608883607,"pitch":96.01384827524241,"roll":18.947649930024117},"location":"Left Ankle"},{"euler":{"heading":36.81722486066223,"pitch":-15.375299343963471,"roll":-13.821905150831462},"location":"Right Ankle"},{"euler":{"heading":72.28658922562619,"pitch":-164.0448406813889,"roll":54.175193584019844},"location":"Right Hip"},{"euler":{"heading":18.114011045962158,"pitch":-104.667836406122,"roll":30.317876612876372},"location":"Right Knee"},{"euler":{"heading":9.833574829853665,"pitch":-129.67500867998322,"roll":57.00454967211026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.337"} +{"sensors":[{"euler":{"heading":20.996109746932575,"pitch":129.93834493446573,"roll":21.23422048188244},"location":"Left Knee"},{"euler":{"heading":25.923193738318147,"pitch":95.7925545770791,"roll":17.53764651200483},"location":"Left Ankle"},{"euler":{"heading":33.30286181658093,"pitch":-14.44780287966039,"roll":-15.087361010351438},"location":"Right Ankle"},{"euler":{"heading":73.68878552997629,"pitch":-163.51144283659855,"roll":54.05151277079081},"location":"Right Hip"},{"euler":{"heading":20.931618064322585,"pitch":-104.51512890575003,"roll":27.636031424896075},"location":"Right Knee"},{"euler":{"heading":9.662898686876265,"pitch":-129.5632360709828,"roll":57.0278981153989},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.438"} +{"sensors":[{"euler":{"heading":20.78850282066699,"pitch":129.65288979422309,"roll":22.109681727934515},"location":"Left Knee"},{"euler":{"heading":25.750261795930957,"pitch":95.9133580363438,"roll":16.68388640035858},"location":"Left Ankle"},{"euler":{"heading":30.82364080862476,"pitch":-13.911745132941268,"roll":-15.834104869215068},"location":"Right Ankle"},{"euler":{"heading":75.03904279033817,"pitch":-162.55315981031166,"roll":53.36290224581137},"location":"Right Hip"},{"euler":{"heading":22.709539232375423,"pitch":-104.34722115631915,"roll":25.566015008561628},"location":"Right Knee"},{"euler":{"heading":9.909594243096805,"pitch":-130.05662658502038,"roll":57.24522069140981},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.539"} +{"sensors":[{"euler":{"heading":21.195209335847608,"pitch":128.93679986493,"roll":22.67594310158124},"location":"Left Knee"},{"euler":{"heading":26.119961766149636,"pitch":96.17724807417724,"roll":16.309675763475777},"location":"Left Ankle"},{"euler":{"heading":31.017202408614494,"pitch":-14.407655595393006,"roll":-15.820159092470195},"location":"Right Ankle"},{"euler":{"heading":76.06139765234293,"pitch":-161.85844730320304,"roll":52.15715559620846},"location":"Right Hip"},{"euler":{"heading":22.62546446678646,"pitch":-103.77316877719848,"roll":25.28625118535224},"location":"Right Knee"},{"euler":{"heading":10.533705136104288,"pitch":-131.0322157433802,"roll":57.644010933526395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.640"} +{"sensors":[{"euler":{"heading":22.075188487222178,"pitch":127.97372663025232,"roll":22.807839218353763},"location":"Left Knee"},{"euler":{"heading":26.815062000758303,"pitch":96.48737928423184,"roll":16.36345218736431},"location":"Left Ankle"},{"euler":{"heading":33.66677432924632,"pitch":-15.39741560751729,"roll":-14.701712688719667},"location":"Right Ankle"},{"euler":{"heading":71.97578598367306,"pitch":-161.61626426463974,"roll":51.0125977339581},"location":"Right Hip"},{"euler":{"heading":20.86815677561784,"pitch":-102.82566093697352,"roll":27.036668543042236},"location":"Right Knee"},{"euler":{"heading":11.28253875797406,"pitch":-132.467915668139,"roll":58.15349897556028},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.741"} +{"sensors":[{"euler":{"heading":23.37835460148709,"pitch":126.87039866456917,"roll":22.39805634883777},"location":"Left Knee"},{"euler":{"heading":27.99063069057153,"pitch":96.98204036156689,"roll":17.03042512594776},"location":"Left Ankle"},{"euler":{"heading":36.83505260215237,"pitch":-16.21573577661409,"roll":-13.03567457329537},"location":"Right Ankle"},{"euler":{"heading":71.78150465595195,"pitch":-161.79545447948271,"roll":50.44064984366329},"location":"Right Hip"},{"euler":{"heading":18.061854405761025,"pitch":-102.00990185948126,"roll":29.904764032791462},"location":"Right Knee"},{"euler":{"heading":12.002698446181588,"pitch":-134.29023182042795,"roll":58.775045313178374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.842"} +{"sensors":[{"euler":{"heading":25.20043965942871,"pitch":125.83040753216873,"roll":21.242473436536997},"location":"Left Knee"},{"euler":{"heading":29.92821549891853,"pitch":97.4653186882573,"roll":18.70410768798136},"location":"Left Ankle"},{"euler":{"heading":38.739579704257125,"pitch":-16.587604230833573,"roll":-12.045359966829517},"location":"Right Ankle"},{"euler":{"heading":70.99222470912756,"pitch":-162.33215361938724,"roll":50.14308483386652},"location":"Right Hip"},{"euler":{"heading":15.740275862579919,"pitch":-101.80681948667915,"roll":32.13142309022515},"location":"Right Knee"},{"euler":{"heading":13.056098406248696,"pitch":-136.62885597522182,"roll":59.39692018016106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.942"} +{"sensors":[{"euler":{"heading":28.38677358566741,"pitch":125.1747202410075,"roll":18.87101165860982},"location":"Left Knee"},{"euler":{"heading":32.703769346549976,"pitch":98.21178119824091,"roll":21.984337691009376},"location":"Left Ankle"},{"euler":{"heading":39.740145496910166,"pitch":-16.775466036779356,"roll":-11.636764185141041},"location":"Right Ankle"},{"euler":{"heading":70.7799706079803,"pitch":-162.6394400667872,"roll":50.22459882218202},"location":"Right Hip"},{"euler":{"heading":14.386338190632916,"pitch":-102.11057053385291,"roll":33.48634223237684},"location":"Right Knee"},{"euler":{"heading":12.444184851438145,"pitch":-136.67605163686596,"roll":59.4959052543294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.43"} +{"sensors":[{"euler":{"heading":31.34056816343411,"pitch":124.52195207602352,"roll":16.72513499726874},"location":"Left Knee"},{"euler":{"heading":34.93477264949005,"pitch":98.47701029420051,"roll":25.119004684399368},"location":"Left Ankle"},{"euler":{"heading":40.30375944635014,"pitch":-16.844387273497148,"roll":-11.403778120639451},"location":"Right Ankle"},{"euler":{"heading":70.55266941338009,"pitch":-162.98883960633438,"roll":50.708585024725764},"location":"Right Hip"},{"euler":{"heading":13.652289885186358,"pitch":-102.6470208217896,"roll":34.248640802236345},"location":"Right Knee"},{"euler":{"heading":11.01568271244967,"pitch":-134.85193122116837,"roll":59.026615464452576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.145"} +{"sensors":[{"euler":{"heading":32.017156801103944,"pitch":124.86469172865498,"roll":16.06757113252915},"location":"Left Knee"},{"euler":{"heading":34.77578296890723,"pitch":97.54578389131566,"roll":25.80328536500545},"location":"Left Ankle"},{"euler":{"heading":40.49770708898103,"pitch":-16.71055723138162,"roll":-11.436712449898797},"location":"Right Ankle"},{"euler":{"heading":70.79461759259536,"pitch":-163.0909714675068,"roll":51.33083661383849},"location":"Right Hip"},{"euler":{"heading":13.46742346875214,"pitch":-103.2870193161495,"roll":34.486582400748816},"location":"Right Knee"},{"euler":{"heading":9.483362957613897,"pitch":-132.99324435086763,"roll":58.072834450748225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.245"} +{"sensors":[{"euler":{"heading":28.58779073040656,"pitch":126.33416328511287,"roll":17.351275188071806},"location":"Left Knee"},{"euler":{"heading":31.49458935190874,"pitch":96.48910925290583,"roll":23.49143724098381},"location":"Left Ankle"},{"euler":{"heading":40.210613135004365,"pitch":-16.42893445575131,"roll":-11.710271516211673},"location":"Right Ankle"},{"euler":{"heading":71.22459149455558,"pitch":-163.16555212048442,"roll":52.006857413931954},"location":"Right Hip"},{"euler":{"heading":13.83924211991402,"pitch":-103.85424738842433,"roll":34.166812137173444},"location":"Right Knee"},{"euler":{"heading":8.418951061377289,"pitch":-131.40054453842478,"roll":57.28707078065401},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.346"} +{"sensors":[{"euler":{"heading":24.287557327137936,"pitch":128.35350715872255,"roll":19.178741449302706},"location":"Left Knee"},{"euler":{"heading":27.755632155874693,"pitch":95.46755232316897,"roll":20.05586396651039},"location":"Left Ankle"},{"euler":{"heading":39.26210400453548,"pitch":-15.870890335891158,"roll":-12.516667214275126},"location":"Right Ankle"},{"euler":{"heading":71.68961450029066,"pitch":-163.35194444713252,"roll":52.76125917112349},"location":"Right Hip"},{"euler":{"heading":15.0533188913884,"pitch":-104.38535385745324,"roll":33.16996838779931},"location":"Right Knee"},{"euler":{"heading":8.028981681802101,"pitch":-130.41713885835887,"roll":56.742521431818226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.447"} +{"sensors":[{"euler":{"heading":21.919920596321695,"pitch":129.49705072724208,"roll":20.749135818300694},"location":"Left Knee"},{"euler":{"heading":25.556247696433978,"pitch":95.10202983325226,"roll":17.702153399858823},"location":"Left Ankle"},{"euler":{"heading":37.33802139409096,"pitch":-15.330258273650228,"roll":-13.496057504659152},"location":"Right Ankle"},{"euler":{"heading":72.39142144069699,"pitch":-163.68112952408055,"roll":53.43795321240299},"location":"Right Hip"},{"euler":{"heading":17.272136995081702,"pitch":-104.49732979241324,"roll":31.376153178810938},"location":"Right Knee"},{"euler":{"heading":8.197190405215792,"pitch":-129.8899433318967,"roll":56.4816392946086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.547"} +{"sensors":[{"euler":{"heading":20.68879383651683,"pitch":129.8956668873429,"roll":21.878826471940894},"location":"Left Knee"},{"euler":{"heading":24.68880740218864,"pitch":94.89612910175698,"roll":16.369010588725565},"location":"Left Ankle"},{"euler":{"heading":34.163296905335514,"pitch":-14.805381948406112,"roll":-14.69738467412369},"location":"Right Ankle"},{"euler":{"heading":73.66760649585831,"pitch":-163.37852482631794,"roll":53.45574602347836},"location":"Right Hip"},{"euler":{"heading":20.349308048987755,"pitch":-104.09330287731844,"roll":28.5579676693311},"location":"Right Knee"},{"euler":{"heading":8.233849294471293,"pitch":-129.49613154547941,"roll":56.50716708576944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.648"} +{"sensors":[{"euler":{"heading":20.28122466136439,"pitch":129.75695887596152,"roll":22.675133700615806},"location":"Left Knee"},{"euler":{"heading":24.495790000741188,"pitch":94.81683019849834,"roll":15.549127878992861},"location":"Left Ankle"},{"euler":{"heading":31.177390968926108,"pitch":-14.574192055200598,"roll":-15.534732770151642},"location":"Right Ankle"},{"euler":{"heading":75.17627941855986,"pitch":-162.58151830596975,"roll":52.91893268582334},"location":"Right Hip"},{"euler":{"heading":22.738095576358965,"pitch":-103.6385293766476,"roll":26.04947898990754},"location":"Right Knee"},{"euler":{"heading":8.72165423991217,"pitch":-129.98401475702292,"roll":56.75024292984939},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.748"} +{"sensors":[{"euler":{"heading":20.280444693193587,"pitch":129.31039884168254,"roll":23.175715884235462},"location":"Left Knee"},{"euler":{"heading":25.205762476434927,"pitch":94.8045276734575,"roll":15.50283743997402},"location":"Left Ankle"},{"euler":{"heading":30.43289243253966,"pitch":-14.864399922902736,"roll":-15.822748891641872},"location":"Right Ankle"},{"euler":{"heading":76.34618077458376,"pitch":-161.7949285848252,"roll":51.92188721942434},"location":"Right Hip"},{"euler":{"heading":23.17203344087217,"pitch":-102.8524617894765,"roll":25.188648007100774},"location":"Right Knee"},{"euler":{"heading":9.311318239933003,"pitch":-131.05569072420448,"roll":57.11882889380988},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.849"} +{"sensors":[{"euler":{"heading":20.844610280319706,"pitch":128.5793258765399,"roll":23.29574299979371},"location":"Left Knee"},{"euler":{"heading":26.161641543682823,"pitch":94.92419219286343,"roll":15.841450063244935},"location":"Left Ankle"},{"euler":{"heading":32.17169435600217,"pitch":-15.501556170100637,"roll":-15.066719898467385},"location":"Right Ankle"},{"euler":{"heading":72.09600524800663,"pitch":-161.52311591365168,"roll":50.847271704144426},"location":"Right Hip"},{"euler":{"heading":21.36919462271883,"pitch":-102.08766105159063,"roll":26.621357940225728},"location":"Right Knee"},{"euler":{"heading":9.966548399625335,"pitch":-132.37619674840172,"roll":57.63665768303019},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.951"} +{"sensors":[{"euler":{"heading":22.002149438256588,"pitch":127.66809324998486,"roll":22.893056089747684},"location":"Left Knee"},{"euler":{"heading":27.455610734614325,"pitch":95.1216532485472,"roll":16.665093950373787},"location":"Left Ankle"},{"euler":{"heading":35.19471122079906,"pitch":-16.054321748506418,"roll":-13.692952419976917},"location":"Right Ankle"},{"euler":{"heading":71.99290090301118,"pitch":-161.5922607056486,"roll":50.2434879785494},"location":"Right Hip"},{"euler":{"heading":18.531556723483227,"pitch":-101.61558830628209,"roll":29.38627243570347},"location":"Right Knee"},{"euler":{"heading":10.794370211647708,"pitch":-134.12994865667144,"roll":58.30142320064909},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.52"} +{"sensors":[{"euler":{"heading":23.64554222731826,"pitch":126.76625255682701,"roll":21.856854979168325},"location":"Left Knee"},{"euler":{"heading":29.395016821873213,"pitch":95.35978391294927,"roll":18.47459884157377},"location":"Left Ankle"},{"euler":{"heading":37.604555741183226,"pitch":-16.530724313904138,"roll":-12.592551848644975},"location":"Right Ankle"},{"euler":{"heading":70.96912057356046,"pitch":-162.0234371773455,"roll":50.0419669748902},"location":"Right Hip"},{"euler":{"heading":15.982180223910095,"pitch":-101.61648359291264,"roll":31.840612194551998},"location":"Right Knee"},{"euler":{"heading":11.727838034187121,"pitch":-136.28762458334288,"roll":59.02185910274011},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.152"} +{"sensors":[{"euler":{"heading":26.542875736179383,"pitch":126.0869414645729,"roll":19.658817202244975},"location":"Left Knee"},{"euler":{"heading":31.738054474187205,"pitch":95.78929349091896,"roll":21.384270552571728},"location":"Left Ankle"},{"euler":{"heading":38.94158588442562,"pitch":-16.65265312603026,"roll":-12.012998329429188},"location":"Right Ankle"},{"euler":{"heading":70.81456073564412,"pitch":-162.1401138701449,"roll":49.96663117819897},"location":"Right Hip"},{"euler":{"heading":14.1504017607492,"pitch":-102.08102771008828,"roll":33.437225774901485},"location":"Right Knee"},{"euler":{"heading":11.523075324253405,"pitch":-137.05099023119146,"roll":59.358662291824615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.254"} +{"sensors":[{"euler":{"heading":29.914020926683353,"pitch":125.32956240400576,"roll":17.223969525597962},"location":"Left Knee"},{"euler":{"heading":34.51860074795159,"pitch":96.37414115536613,"roll":24.92084672783419},"location":"Left Ankle"},{"euler":{"heading":39.614227862865306,"pitch":-16.543007087355267,"roll":-11.815566712788174},"location":"Right Ankle"},{"euler":{"heading":70.30750762142758,"pitch":-162.41810562272087,"roll":50.33246914978928},"location":"Right Hip"},{"euler":{"heading":13.185621243644006,"pitch":-103.06024102095324,"roll":34.275540235425275},"location":"Right Knee"},{"euler":{"heading":10.422002544343856,"pitch":-135.3160552710531,"roll":59.28887272356063},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.354"} +{"sensors":[{"euler":{"heading":31.75278824184234,"pitch":125.33388465177933,"roll":15.859024919089618},"location":"Left Knee"},{"euler":{"heading":35.51112255068594,"pitch":95.86292639729271,"roll":26.52171861971227},"location":"Left Ankle"},{"euler":{"heading":40.159041071879955,"pitch":-16.46162704242367,"roll":-11.993634220671932},"location":"Right Ankle"},{"euler":{"heading":70.40362954140186,"pitch":-162.50913012569546,"roll":50.913209733055304},"location":"Right Hip"},{"euler":{"heading":12.99019077323046,"pitch":-103.88685366579493,"roll":34.57037610368736},"location":"Right Knee"},{"euler":{"heading":8.985367669712515,"pitch":-133.31214840712573,"roll":58.55984742872472},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.455"} +{"sensors":[{"euler":{"heading":29.584168798230973,"pitch":126.45551357924761,"roll":16.449130002119592},"location":"Left Knee"},{"euler":{"heading":33.13116812407283,"pitch":94.99605998480907,"roll":25.0392710395097},"location":"Left Ankle"},{"euler":{"heading":40.16518076772773,"pitch":-16.304753961190375,"roll":-12.202325531748661},"location":"Right Ankle"},{"euler":{"heading":70.85688844466644,"pitch":-162.52609754607093,"roll":51.53383233562438},"location":"Right Hip"},{"euler":{"heading":13.394976741905287,"pitch":-104.53376461769878,"roll":34.373431738370364},"location":"Right Knee"},{"euler":{"heading":7.791216681973107,"pitch":-131.3740115671807,"roll":57.76342853284059},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.556"} +{"sensors":[{"euler":{"heading":25.757374438428165,"pitch":128.24333763353496,"roll":18.065147372607992},"location":"Left Knee"},{"euler":{"heading":29.190785987444958,"pitch":94.17003701881055,"roll":21.68832719303308},"location":"Left Ankle"},{"euler":{"heading":39.60540371976445,"pitch":-15.901209884144595,"roll":-12.741938247916485},"location":"Right Ankle"},{"euler":{"heading":71.48960987459722,"pitch":-162.52956032666054,"roll":52.1608166454058},"location":"Right Hip"},{"euler":{"heading":14.386344196742737,"pitch":-105.07752106241665,"roll":33.60069092810892},"location":"Right Knee"},{"euler":{"heading":7.30690769134819,"pitch":-129.9650676850578,"roll":57.1616750747505},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.657"} +{"sensors":[{"euler":{"heading":22.65372593805467,"pitch":129.80164198792485,"roll":19.699855137897636},"location":"Left Knee"},{"euler":{"heading":26.34490508935086,"pitch":93.74958134228062,"roll":18.899899231041328},"location":"Left Ankle"},{"euler":{"heading":38.2612080489517,"pitch":-15.393365522981505,"roll":-13.604774726830207},"location":"Right Ankle"},{"euler":{"heading":72.22171256419392,"pitch":-162.75861540020145,"roll":52.78166689025082},"location":"Right Hip"},{"euler":{"heading":16.244448926733245,"pitch":-105.25445141372477,"roll":32.086949882739},"location":"Right Knee"},{"euler":{"heading":7.36219939862341,"pitch":-129.10632101341517,"roll":56.82524913422276},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.758"} +{"sensors":[{"euler":{"heading":21.271796925287823,"pitch":130.409096233051,"roll":20.893686688648746},"location":"Left Knee"},{"euler":{"heading":25.1205281389384,"pitch":93.53559009262537,"roll":17.32202417346175},"location":"Left Ankle"},{"euler":{"heading":35.56723966007809,"pitch":-15.124079660993237,"roll":-14.629291565566774},"location":"Right Ankle"},{"euler":{"heading":73.21949305688672,"pitch":-162.88264732101842,"roll":53.17104488292318},"location":"Right Hip"},{"euler":{"heading":19.323533645734663,"pitch":-104.8140752092187,"roll":29.575704272526423},"location":"Right Knee"},{"euler":{"heading":7.407472188097416,"pitch":-128.43627808912578,"roll":56.764583297591784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.858"} +{"sensors":[{"euler":{"heading":20.6515714159126,"pitch":130.5307042916314,"roll":21.676689725122266},"location":"Left Knee"},{"euler":{"heading":24.46878278015999,"pitch":93.34195474389638,"roll":16.197455046404144},"location":"Left Ankle"},{"euler":{"heading":32.43989860661097,"pitch":-14.67232382880005,"roll":-15.609859088568541},"location":"Right Ankle"},{"euler":{"heading":74.60722416540017,"pitch":-162.412240567964,"roll":52.798055794384425},"location":"Right Hip"},{"euler":{"heading":22.082497152637462,"pitch":-104.51071467877732,"roll":26.887169171409408},"location":"Right Knee"},{"euler":{"heading":7.854767724634539,"pitch":-128.39477716993937,"roll":57.001008367477525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.959"} +{"sensors":[{"euler":{"heading":20.38748905939936,"pitch":130.3791508577037,"roll":22.165233276785596},"location":"Left Knee"},{"euler":{"heading":24.363196541733537,"pitch":93.17862955785291,"roll":15.57225077294716},"location":"Left Ankle"},{"euler":{"heading":31.08613261825718,"pitch":-14.578642538928783,"roll":-16.140431745059104},"location":"Right Ankle"},{"euler":{"heading":75.86834834012117,"pitch":-161.8379485300072,"roll":51.90168834720105},"location":"Right Hip"},{"euler":{"heading":23.05140170183578,"pitch":-104.03407083593214,"roll":25.54831736469028},"location":"Right Knee"},{"euler":{"heading":8.45882512591469,"pitch":-128.9814813228969,"roll":57.434919903099455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.60"} +{"sensors":[{"euler":{"heading":20.623102093941235,"pitch":129.97447508930537,"roll":22.315984087675986},"location":"Left Knee"},{"euler":{"heading":24.734531332125783,"pitch":93.0546218978811,"roll":15.41079992560279},"location":"Left Ankle"},{"euler":{"heading":32.213106173236184,"pitch":-15.23703612735699,"roll":-15.627667345912249},"location":"Right Ankle"},{"euler":{"heading":72.04958441516857,"pitch":-161.58582482039813,"roll":50.77548647945577},"location":"Right Hip"},{"euler":{"heading":22.067092708185918,"pitch":-103.2460492440494,"roll":26.269048709184542},"location":"Right Knee"},{"euler":{"heading":9.185293663056607,"pitch":-130.15446851239784,"roll":57.97024302071114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.161"} +{"sensors":[{"euler":{"heading":21.493786858114348,"pitch":129.20995846104023,"roll":22.14918405065578},"location":"Left Knee"},{"euler":{"heading":25.573657538664193,"pitch":93.16833214657281,"roll":15.740331687376967},"location":"Left Ankle"},{"euler":{"heading":35.15727548000095,"pitch":-16.028995228627057,"roll":-14.230266323369321},"location":"Right Ankle"},{"euler":{"heading":72.31161003322588,"pitch":-161.67873097065024,"roll":49.97639085856647},"location":"Right Hip"},{"euler":{"heading":19.632127291418154,"pitch":-102.43191791501137,"roll":28.657250366768846},"location":"Right Knee"},{"euler":{"heading":10.107117226399106,"pitch":-131.66771876639214,"roll":58.644893412474936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.262"} +{"sensors":[{"euler":{"heading":22.908248890764632,"pitch":128.29224472770082,"roll":21.451282552800233},"location":"Left Knee"},{"euler":{"heading":26.98011538169173,"pitch":93.44958494542868,"roll":16.751953680818694},"location":"Left Ankle"},{"euler":{"heading":38.19221539036244,"pitch":-16.686166205950578,"roll":-12.840941503971175},"location":"Right Ankle"},{"euler":{"heading":71.49761810402633,"pitch":-162.10762727275917,"roll":49.7110978332555},"location":"Right Hip"},{"euler":{"heading":16.75847474174137,"pitch":-102.06978514539018,"roll":31.543602058061182},"location":"Right Knee"},{"euler":{"heading":11.08188173442035,"pitch":-133.58993481701555,"roll":59.40400042894552},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.362"} +{"sensors":[{"euler":{"heading":25.172236074789033,"pitch":127.35481290441933,"roll":19.90419150648734},"location":"Left Knee"},{"euler":{"heading":29.065134822927757,"pitch":93.87055220719073,"roll":18.975312888190537},"location":"Left Ankle"},{"euler":{"heading":39.92811211074369,"pitch":-16.97166784892297,"roll":-12.047510094228697},"location":"Right Ankle"},{"euler":{"heading":70.90246609370439,"pitch":-162.50761546284227,"roll":49.58994693874272},"location":"Right Hip"},{"euler":{"heading":14.500656097414144,"pitch":-102.26528729807167,"roll":33.56680431522926},"location":"Right Knee"},{"euler":{"heading":12.034595846215282,"pitch":-135.40658921491175,"roll":60.11467868019869},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.463"} +{"sensors":[{"euler":{"heading":28.756070824532184,"pitch":126.46493705681907,"roll":17.493565079281467},"location":"Left Knee"},{"euler":{"heading":32.90076659127687,"pitch":95.55349736052332,"roll":22.68158789707951},"location":"Left Ankle"},{"euler":{"heading":40.844111299791855,"pitch":-16.974362942583486,"roll":-11.715998780941803},"location":"Right Ankle"},{"euler":{"heading":70.24868766480009,"pitch":-162.94089849903315,"roll":49.84298427863754},"location":"Right Hip"},{"euler":{"heading":13.014620424626898,"pitch":-103.10806677754141,"roll":34.7970735455982},"location":"Right Knee"},{"euler":{"heading":11.233225291686626,"pitch":-134.42260853546665,"roll":60.2583478778982},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.564"} +{"sensors":[{"euler":{"heading":31.767799799002777,"pitch":125.87374165422513,"roll":15.538170992553104},"location":"Left Knee"},{"euler":{"heading":35.13174562386168,"pitch":95.5186818901614,"roll":25.39915586924816},"location":"Left Ankle"},{"euler":{"heading":41.290919745659124,"pitch":-17.077871895265623,"roll":-11.58843637653949},"location":"Right Ankle"},{"euler":{"heading":69.992804060195,"pitch":-163.31512959734454,"roll":50.38110745772937},"location":"Right Hip"},{"euler":{"heading":12.523183570270833,"pitch":-103.78149731043733,"roll":35.369290517704506},"location":"Right Knee"},{"euler":{"heading":9.714994352292774,"pitch":-132.56314379878134,"roll":59.65707771671307},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.665"} +{"sensors":[{"euler":{"heading":31.748661604451737,"pitch":126.36137657937786,"roll":15.261055829193928},"location":"Left Knee"},{"euler":{"heading":34.29497100168442,"pitch":94.83913970776341,"roll":25.153100431516208},"location":"Left Ankle"},{"euler":{"heading":41.478406784001564,"pitch":-17.10019087542104,"roll":-11.627586334107892},"location":"Right Ankle"},{"euler":{"heading":70.11027876374777,"pitch":-163.61809014588968,"roll":51.04045563247366},"location":"Right Hip"},{"euler":{"heading":12.727216988720237,"pitch":-104.34330535545138,"roll":35.399560169878775},"location":"Right Knee"},{"euler":{"heading":8.257837444355474,"pitch":-130.50006081219382,"roll":58.77412079816802},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.767"} +{"sensors":[{"euler":{"heading":28.02906462237017,"pitch":127.87872595013832,"roll":16.71660451200848},"location":"Left Knee"},{"euler":{"heading":30.762018504226337,"pitch":94.04587969374461,"roll":22.302625028608997},"location":"Left Ankle"},{"euler":{"heading":41.20980412478915,"pitch":-16.799340152673462,"roll":-11.936496305688323},"location":"Right Ankle"},{"euler":{"heading":70.46806045802197,"pitch":-163.84466913490746,"roll":51.74409890076175},"location":"Right Hip"},{"euler":{"heading":13.221271247984953,"pitch":-104.95274168361573,"roll":35.00483358249885},"location":"Right Knee"},{"euler":{"heading":7.379820265082873,"pitch":-128.92454850726904,"roll":58.09406124007028},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.867"} +{"sensors":[{"euler":{"heading":24.299752302896653,"pitch":129.6560184987833,"roll":18.372576774470165},"location":"Left Knee"},{"euler":{"heading":27.155803946612956,"pitch":93.48860178249186,"roll":19.14066072890629},"location":"Left Ankle"},{"euler":{"heading":40.26454503101264,"pitch":-16.277404911274797,"roll":-12.691645850188156},"location":"Right Ankle"},{"euler":{"heading":70.92153502400794,"pitch":-164.15671035249338,"roll":52.54133146388606},"location":"Right Hip"},{"euler":{"heading":14.398692326414807,"pitch":-105.40313519902044,"roll":33.975835569513094},"location":"Right Knee"},{"euler":{"heading":7.094908215011432,"pitch":-127.99831252777258,"roll":57.60354375446216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.968"} +{"sensors":[{"euler":{"heading":22.714686435414972,"pitch":130.39028601179376,"roll":19.67482965310826},"location":"Left Knee"},{"euler":{"heading":25.564514854757157,"pitch":93.53130319040591,"roll":17.272344409580658},"location":"Left Ankle"},{"euler":{"heading":38.224217394593374,"pitch":-15.906188948584665,"roll":-13.737625618210041},"location":"Right Ankle"},{"euler":{"heading":71.49497996210643,"pitch":-164.48663113459048,"roll":53.316235110258766},"location":"Right Hip"},{"euler":{"heading":16.688567018309744,"pitch":-105.45396660901848,"roll":32.04590923151118},"location":"Right Knee"},{"euler":{"heading":7.022145845697342,"pitch":-127.3682704403687,"roll":57.302374089357414},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.69"} +{"sensors":[{"euler":{"heading":22.154054381145983,"pitch":130.460175622594,"roll":20.555940447113365},"location":"Left Knee"},{"euler":{"heading":24.82637331009849,"pitch":93.58777855309387,"roll":16.09304798995304},"location":"Left Ankle"},{"euler":{"heading":34.82946014555586,"pitch":-15.189785187490365,"roll":-15.01704386931779},"location":"Right Ankle"},{"euler":{"heading":72.61255458148936,"pitch":-164.1787468504588,"roll":53.333715731056685},"location":"Right Hip"},{"euler":{"heading":19.73473951460952,"pitch":-105.17297076582622,"roll":29.193739767894026},"location":"Right Knee"},{"euler":{"heading":7.176599171682355,"pitch":-127.05380928516962,"roll":57.38657162254313},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.170"} +{"sensors":[{"euler":{"heading":21.92093115765842,"pitch":130.24398753132593,"roll":21.133259263528185},"location":"Left Knee"},{"euler":{"heading":24.614374123378855,"pitch":93.5972645479498,"roll":15.406431738114968},"location":"Left Ankle"},{"euler":{"heading":32.47789876994912,"pitch":-14.856630582304888,"roll":-15.847765639838235},"location":"Right Ankle"},{"euler":{"heading":73.85461537742745,"pitch":-163.59099403842106,"roll":52.68960436298093},"location":"Right Hip"},{"euler":{"heading":21.681973923269535,"pitch":-104.75818132446362,"roll":27.04094485083208},"location":"Right Knee"},{"euler":{"heading":7.588440152073466,"pitch":-127.47080752236946,"roll":57.70651748450882},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.271"} +{"sensors":[{"euler":{"heading":22.098659189752343,"pitch":129.73326301133721,"roll":21.46541082863328},"location":"Left Knee"},{"euler":{"heading":24.98775772238475,"pitch":93.73664495599742,"roll":15.213191952534313},"location":"Left Ankle"},{"euler":{"heading":32.59168340103184,"pitch":-15.161588660517172,"roll":-15.897918767209847},"location":"Right Ankle"},{"euler":{"heading":74.85377747649464,"pitch":-163.08293239726063,"roll":51.53006919907668},"location":"Right Hip"},{"euler":{"heading":21.55817342530402,"pitch":-104.13909108379112,"roll":26.98948751410525},"location":"Right Knee"},{"euler":{"heading":8.258592323511436,"pitch":-128.5853569800799,"roll":58.162497134771485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.372"} +{"sensors":[{"euler":{"heading":22.975455545808455,"pitch":128.78955120397606,"roll":21.45086519799079},"location":"Left Knee"},{"euler":{"heading":25.905850490278986,"pitch":94.13625096427596,"roll":15.454505620108707},"location":"Left Ankle"},{"euler":{"heading":35.282949563951036,"pitch":-15.895326312327303,"roll":-14.80774732620679},"location":"Right Ankle"},{"euler":{"heading":70.95131605807659,"pitch":-163.02153569083268,"roll":50.50461595765631},"location":"Right Hip"},{"euler":{"heading":19.465127659104894,"pitch":-103.35297006427182,"roll":28.863259414839398},"location":"Right Knee"},{"euler":{"heading":9.235374337774395,"pitch":-130.20030638516585,"roll":58.789132830819995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.473"} +{"sensors":[{"euler":{"heading":24.29979682123906,"pitch":127.72157883421653,"roll":20.920461456102718},"location":"Left Knee"},{"euler":{"heading":27.186716223476207,"pitch":94.61080532703961,"roll":16.190106107109678},"location":"Left Ankle"},{"euler":{"heading":38.26539065480189,"pitch":-16.630610918740086,"roll":-13.292145979993748},"location":"Right Ankle"},{"euler":{"heading":70.62756849675404,"pitch":-163.22162756911416,"roll":50.02260694755863},"location":"Right Hip"},{"euler":{"heading":16.66929808634763,"pitch":-102.76053489786086,"roll":31.628944281912606},"location":"Right Knee"},{"euler":{"heading":10.20757630434442,"pitch":-132.20860215544533,"roll":59.510737853382025},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.574"} +{"sensors":[{"euler":{"heading":26.299743383823813,"pitch":126.64223640795682,"roll":19.643841107255952},"location":"Left Knee"},{"euler":{"heading":29.01432298427072,"pitch":95.15317858791602,"roll":17.812927182530068},"location":"Left Ankle"},{"euler":{"heading":40.16638716597254,"pitch":-17.01652217604604,"roll":-12.212036167121438},"location":"Right Ankle"},{"euler":{"heading":69.928476890953,"pitch":-163.6286074127715,"roll":49.717245774648724},"location":"Right Hip"},{"euler":{"heading":14.4038571189694,"pitch":-102.73575153603073,"roll":33.68564552005883},"location":"Right Knee"},{"euler":{"heading":11.199809363363341,"pitch":-134.51337417238835,"roll":60.229098638333966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.675"} +{"sensors":[{"euler":{"heading":29.506858655543475,"pitch":125.820144343982,"roll":17.311488260072007},"location":"Left Knee"},{"euler":{"heading":31.842514309749063,"pitch":96.07796609117112,"roll":21.059024509136925},"location":"Left Ankle"},{"euler":{"heading":41.13433557651185,"pitch":-17.23492688740026,"roll":-11.710296325782862},"location":"Right Ankle"},{"euler":{"heading":69.79006890484494,"pitch":-163.8125687942348,"roll":49.833322362621885},"location":"Right Hip"},{"euler":{"heading":12.96508806500998,"pitch":-103.11166130032078,"roll":34.89866468246795},"location":"Right Knee"},{"euler":{"heading":11.007491719079274,"pitch":-134.77964079833114,"roll":60.51646164464908},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.776"} +{"sensors":[{"euler":{"heading":32.72737189645037,"pitch":125.05247249295387,"roll":15.004805143920493},"location":"Left Knee"},{"euler":{"heading":34.41388250317282,"pitch":96.6056272589273,"roll":24.483852305944232},"location":"Left Ankle"},{"euler":{"heading":41.66529714150999,"pitch":-17.474173020991454,"roll":-11.488151445010091},"location":"Right Ankle"},{"euler":{"heading":69.5162172912938,"pitch":-164.21089786094845,"roll":50.384255245967374},"location":"Right Hip"},{"euler":{"heading":12.660985757061972,"pitch":-103.61233598344262,"roll":35.372038191257204},"location":"Right Knee"},{"euler":{"heading":9.720413793750863,"pitch":-133.01106485558807,"roll":60.158177274589406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.876"} +{"sensors":[{"euler":{"heading":34.01473978706854,"pitch":125.2852933560872,"roll":13.952028605659164},"location":"Left Knee"},{"euler":{"heading":34.84868452687707,"pitch":95.93565032797943,"roll":25.722012339723875},"location":"Left Ankle"},{"euler":{"heading":41.767110663598245,"pitch":-17.6133718856899,"roll":-11.584403459851497},"location":"Right Ankle"},{"euler":{"heading":69.83301088320167,"pitch":-164.3751407547033,"roll":51.0551946028477},"location":"Right Hip"},{"euler":{"heading":13.000572574452933,"pitch":-104.06538402639889,"roll":35.33664808734307},"location":"Right Knee"},{"euler":{"heading":8.149314032254665,"pitch":-131.0896779497437,"roll":59.227553299700915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.977"} +{"sensors":[{"euler":{"heading":30.99035417903042,"pitch":126.65530213932128,"roll":14.895950485281224},"location":"Left Knee"},{"euler":{"heading":32.17853836832559,"pitch":94.8656709056954,"roll":24.08971506732142},"location":"Left Ankle"},{"euler":{"heading":41.39268677719248,"pitch":-17.5609702405468,"roll":-11.891475891352833},"location":"Right Ankle"},{"euler":{"heading":70.48479143308482,"pitch":-164.42268982640937,"roll":51.6623109057565},"location":"Right Hip"},{"euler":{"heading":13.754250499170837,"pitch":-104.43371875625618,"roll":34.80521862394672},"location":"Right Knee"},{"euler":{"heading":6.946133571738371,"pitch":-129.29755505478724,"roll":58.391400165432714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.78"} +{"sensors":[{"euler":{"heading":26.587710879377283,"pitch":128.65004301210533,"roll":16.742948242844108},"location":"Left Knee"},{"euler":{"heading":28.036219404553638,"pitch":93.82612950098893,"roll":20.502105739327252},"location":"Left Ankle"},{"euler":{"heading":40.36078137827009,"pitch":-17.091436456556185,"roll":-12.668743922123344},"location":"Right Ankle"},{"euler":{"heading":71.1908825559008,"pitch":-164.45977048875628,"roll":52.2651830863324},"location":"Right Hip"},{"euler":{"heading":14.983727845233723,"pitch":-104.79674221179245,"roll":33.711974661591846},"location":"Right Knee"},{"euler":{"heading":6.585228026386633,"pitch":-128.16342293548772,"roll":57.86665303012682},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.178"} +{"sensors":[{"euler":{"heading":23.827065040941655,"pitch":129.9496831670315,"roll":18.402359867588867},"location":"Left Knee"},{"euler":{"heading":25.072555314130433,"pitch":93.50378638411362,"roll":17.713556155719033},"location":"Left Ankle"},{"euler":{"heading":38.67756999079233,"pitch":-16.494153116055966,"roll":-13.681230388525725},"location":"Right Ankle"},{"euler":{"heading":72.01873211556644,"pitch":-164.731136160922,"roll":52.91177732736741},"location":"Right Hip"},{"euler":{"heading":17.001124848126594,"pitch":-104.88147547689209,"roll":31.908218301463325},"location":"Right Knee"},{"euler":{"heading":6.759398262621083,"pitch":-127.32742488948809,"roll":57.50478326996454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.279"} +{"sensors":[{"euler":{"heading":22.535736388866116,"pitch":130.46576600744376,"roll":19.588818786975597},"location":"Left Knee"},{"euler":{"heading":23.93604215091706,"pitch":93.38452005215463,"roll":16.17124289150945},"location":"Left Ankle"},{"euler":{"heading":35.83086736380234,"pitch":-15.852616077120523,"roll":-14.853052386614468},"location":"Right Ankle"},{"euler":{"heading":73.07707411793473,"pitch":-164.64969627541646,"roll":53.27688795961468},"location":"Right Hip"},{"euler":{"heading":19.96093498586995,"pitch":-104.60737534698706,"roll":29.193998136912207},"location":"Right Knee"},{"euler":{"heading":6.7295947405779275,"pitch":-126.72552909058865,"roll":57.314078417837386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.380"} +{"sensors":[{"euler":{"heading":21.995639663407097,"pitch":130.45118659044465,"roll":20.44838481979395},"location":"Left Knee"},{"euler":{"heading":23.457309794643454,"pitch":93.40739568842938,"roll":15.072907437379037},"location":"Left Ankle"},{"euler":{"heading":32.60224891362235,"pitch":-15.206706815100189,"roll":-15.955022061932327},"location":"Right Ankle"},{"euler":{"heading":74.4073773871477,"pitch":-163.90418359123427,"roll":52.97111955576698},"location":"Right Hip"},{"euler":{"heading":22.580619442662442,"pitch":-104.45447389252439,"roll":26.476374418305824},"location":"Right Knee"},{"euler":{"heading":7.115417875315574,"pitch":-126.8883801897656,"roll":57.48039688441565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.481"} +{"sensors":[{"euler":{"heading":21.9220181276594,"pitch":130.0812755819531,"roll":21.006208318748826},"location":"Left Knee"},{"euler":{"heading":23.588511335508727,"pitch":93.46971243495138,"roll":14.54873035986165},"location":"Left Ankle"},{"euler":{"heading":31.427150638977324,"pitch":-15.056247077730406,"roll":-16.494378270876833},"location":"Right Ankle"},{"euler":{"heading":75.5798625564646,"pitch":-163.18202528197818,"roll":52.046398816539266},"location":"Right Hip"},{"euler":{"heading":23.26901384443351,"pitch":-104.13181264066523,"roll":25.265779044771612},"location":"Right Knee"},{"euler":{"heading":7.758321355550997,"pitch":-127.67188800653133,"roll":57.83898008665292},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.581"} +{"sensors":[{"euler":{"heading":22.50383011798405,"pitch":129.2828183346651,"roll":21.261265980713368},"location":"Left Knee"},{"euler":{"heading":24.665024156339197,"pitch":93.83525730223353,"roll":14.805688423606505},"location":"Left Ankle"},{"euler":{"heading":32.759870198860625,"pitch":-15.734606955527491,"roll":-15.888491659846313},"location":"Right Ankle"},{"euler":{"heading":71.74797418701695,"pitch":-162.932843143925,"roll":50.8707595309499},"location":"Right Hip"},{"euler":{"heading":21.90044545050869,"pitch":-103.31071213674068,"roll":26.185800745977545},"location":"Right Knee"},{"euler":{"heading":8.570104788285862,"pitch":-128.79703623699208,"roll":58.37153885657157},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.681"} +{"sensors":[{"euler":{"heading":23.592583824843523,"pitch":128.24521296668985,"roll":21.00454607737596},"location":"Left Knee"},{"euler":{"heading":26.04587751758498,"pitch":94.30277181787349,"roll":15.531663904319789},"location":"Left Ankle"},{"euler":{"heading":35.74170734181457,"pitch":-16.42572690198251,"roll":-14.52573282102469},"location":"Right Ankle"},{"euler":{"heading":71.82089429557045,"pitch":-162.9630126651122,"roll":50.15772599044364},"location":"Right Hip"},{"euler":{"heading":18.94276309003977,"pitch":-102.56177344656025,"roll":28.843514894990673},"location":"Right Knee"},{"euler":{"heading":9.442877942411002,"pitch":-130.2788888244387,"roll":59.01990662850782},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.783"} +{"sensors":[{"euler":{"heading":25.221272315119805,"pitch":127.18740357591585,"roll":20.136098719121193},"location":"Left Knee"},{"euler":{"heading":27.866174424573487,"pitch":94.80904835841814,"roll":16.919853861739895},"location":"Left Ankle"},{"euler":{"heading":38.25457602630543,"pitch":-16.94408858023829,"roll":-13.245043849427063},"location":"Right Ankle"},{"euler":{"heading":70.97691444200159,"pitch":-163.31730423223098,"roll":49.83356632149901},"location":"Right Hip"},{"euler":{"heading":16.134571011008568,"pitch":-102.12188979577668,"roll":31.515953036001374},"location":"Right Knee"},{"euler":{"heading":10.401261259478376,"pitch":-132.35105313779334,"roll":59.73739523444134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.884"} +{"sensors":[{"euler":{"heading":27.743902195189506,"pitch":126.40857744959946,"roll":18.20876328438759},"location":"Left Knee"},{"euler":{"heading":30.17113868652086,"pitch":95.20176699869087,"roll":19.60286618736496},"location":"Left Ankle"},{"euler":{"heading":39.45004055281131,"pitch":-17.103985147885815,"roll":-12.650984540535449},"location":"Right Ankle"},{"euler":{"heading":70.88039542283656,"pitch":-163.4357533824805,"roll":49.712656236844545},"location":"Right Hip"},{"euler":{"heading":14.049257480952496,"pitch":-102.25892772904622,"roll":33.274246561187844},"location":"Right Knee"},{"euler":{"heading":10.936281551644477,"pitch":-133.67318937356072,"roll":60.30339848599333},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.985"} +{"sensors":[{"euler":{"heading":30.992545000373575,"pitch":125.56709502244358,"roll":15.864289412546432},"location":"Left Knee"},{"euler":{"heading":33.34262735112653,"pitch":95.94951861208709,"roll":23.28511708337607},"location":"Left Ankle"},{"euler":{"heading":40.14945614198043,"pitch":-17.076257645937034,"roll":-12.351247381980448},"location":"Right Ankle"},{"euler":{"heading":70.62895183438025,"pitch":-163.59644283516437,"roll":50.04914578630463},"location":"Right Hip"},{"euler":{"heading":12.870937420605847,"pitch":-102.92989824094812,"roll":34.30047832777445},"location":"Right Knee"},{"euler":{"heading":10.08422382775268,"pitch":-132.4022548394019,"roll":60.25670180581679},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.86"} +{"sensors":[{"euler":{"heading":33.12934310710778,"pitch":125.40613461546357,"roll":14.331418889535605},"location":"Left Knee"},{"euler":{"heading":34.75037727808979,"pitch":95.50842257842726,"roll":25.350743626461977},"location":"Left Ankle"},{"euler":{"heading":40.424871480651575,"pitch":-17.033331797577777,"roll":-12.276217848813541},"location":"Right Ankle"},{"euler":{"heading":70.81546040215807,"pitch":-163.64672179422737,"roll":50.66872809766168},"location":"Right Hip"},{"euler":{"heading":12.500661005620092,"pitch":-103.50731619714308,"roll":34.747519960153},"location":"Right Knee"},{"euler":{"heading":8.577998058103248,"pitch":-130.7349760904116,"roll":59.49506492128136},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.187"} +{"sensors":[{"euler":{"heading":31.597141252978023,"pitch":126.37225808019184,"roll":14.638775228055362},"location":"Left Knee"},{"euler":{"heading":33.13252802693557,"pitch":94.60393462257277,"roll":24.663395327801464},"location":"Left Ankle"},{"euler":{"heading":40.353115877717094,"pitch":-16.869637807105388,"roll":-12.356958184716808},"location":"Right Ankle"},{"euler":{"heading":71.21787633374778,"pitch":-163.68627266360937,"roll":51.378005380577385},"location":"Right Hip"},{"euler":{"heading":12.661213076418832,"pitch":-104.00602608481636,"roll":34.718029335633524},"location":"Right Knee"},{"euler":{"heading":7.2436318148713985,"pitch":-129.01821133551059,"roll":58.585902303897335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.288"} +{"sensors":[{"euler":{"heading":27.780148464131287,"pitch":128.06098627011158,"roll":16.189190150237913},"location":"Left Knee"},{"euler":{"heading":29.328641549757844,"pitch":93.785486012944,"roll":21.64547201023652},"location":"Left Ankle"},{"euler":{"heading":39.80090193574268,"pitch":-16.39452327542357,"roll":-14.20766508182841},"location":"Right Ankle"},{"euler":{"heading":71.69600674920858,"pitch":-163.72800656725073,"roll":52.11493763927137},"location":"Right Hip"},{"euler":{"heading":13.256406931094936,"pitch":-104.54053054006373,"roll":34.174102241244896},"location":"Right Knee"},{"euler":{"heading":6.519663266238731,"pitch":-127.7085113065192,"roll":57.87618455439463},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.388"} +{"sensors":[{"euler":{"heading":24.428877251540786,"pitch":129.7377070133145,"roll":17.841824894100665},"location":"Left Knee"},{"euler":{"heading":25.98215646321129,"pitch":93.51457156568392,"roll":18.664925492596122},"location":"Left Ankle"},{"euler":{"heading":38.62936754129777,"pitch":-15.720846363941446,"roll":-14.847840103307314},"location":"Right Ankle"},{"euler":{"heading":72.18856964030834,"pitch":-164.00358284149587,"roll":52.91851134969354},"location":"Right Hip"},{"euler":{"heading":14.635547152151023,"pitch":-104.8755576101297,"roll":32.944698023981815},"location":"Right Knee"},{"euler":{"heading":6.432229758014115,"pitch":-126.95740384709255,"roll":57.40639257151103},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.489"} +{"sensors":[{"euler":{"heading":23.26631187395606,"pitch":130.34529776028847,"roll":19.04593281336363},"location":"Left Knee"},{"euler":{"heading":24.68676788506385,"pitch":93.66181813721725,"roll":17.020222679202508},"location":"Left Ankle"},{"euler":{"heading":36.171898938739425,"pitch":-15.307448067667027,"roll":-15.706547984113524},"location":"Right Ankle"},{"euler":{"heading":72.94859805448534,"pitch":-164.1399840993136,"roll":53.53862963639358},"location":"Right Hip"},{"euler":{"heading":17.500815483522494,"pitch":-104.57823918634556,"roll":30.577780878446152},"location":"Right Knee"},{"euler":{"heading":6.4319829885384046,"pitch":-126.35503442523948,"roll":57.18937528115739},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.591"} +{"sensors":[{"euler":{"heading":22.938661914109716,"pitch":130.29461541491392,"roll":19.91552367869882},"location":"Left Knee"},{"euler":{"heading":24.1849640499383,"pitch":93.89612811971855,"roll":15.88869054999781},"location":"Left Ankle"},{"euler":{"heading":32.90526642487027,"pitch":-14.74906971574755,"roll":-16.673821188705876},"location":"Right Ankle"},{"euler":{"heading":74.34379848020382,"pitch":-163.5499732833307,"roll":53.29714269031455},"location":"Right Hip"},{"euler":{"heading":20.405752977627625,"pitch":-104.27353130868516,"roll":27.823649856496957},"location":"Right Knee"},{"euler":{"heading":6.824171237098032,"pitch":-126.30342588037118,"roll":57.30810304764925},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.692"} +{"sensors":[{"euler":{"heading":22.813069868121666,"pitch":129.8028561519424,"roll":20.60726985884849},"location":"Left Knee"},{"euler":{"heading":24.39239961111303,"pitch":94.19138369014297,"roll":15.340419936155609},"location":"Left Ankle"},{"euler":{"heading":31.354214434281864,"pitch":-14.457838135423684,"roll":-17.311270300254026},"location":"Right Ankle"},{"euler":{"heading":75.6407650618035,"pitch":-162.84961858672924,"roll":52.38897148683802},"location":"Right Hip"},{"euler":{"heading":21.630922943309074,"pitch":-103.88484789926927,"roll":26.31248109095418},"location":"Right Knee"},{"euler":{"heading":7.478231773196057,"pitch":-127.00583535484006,"roll":57.63551322667901},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.792"} +{"sensors":[{"euler":{"heading":23.28098476999447,"pitch":128.94170391686058,"roll":20.953784279292414},"location":"Left Knee"},{"euler":{"heading":25.109215923183555,"pitch":94.67852947953024,"roll":15.22480320956498},"location":"Left Ankle"},{"euler":{"heading":32.283978580557566,"pitch":-14.872075005508144,"roll":-16.930887587456397},"location":"Right Ankle"},{"euler":{"heading":71.80973170705855,"pitch":-162.5844941486385,"roll":51.09751069599063},"location":"Right Hip"},{"euler":{"heading":20.719701717199804,"pitch":-103.14074766570951,"roll":26.84161526814774},"location":"Right Knee"},{"euler":{"heading":8.245642822465186,"pitch":-128.15866994608282,"roll":58.092301843804165},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.893"} +{"sensors":[{"euler":{"heading":24.318096818700816,"pitch":127.8889845702764,"roll":20.839274393652996},"location":"Left Knee"},{"euler":{"heading":26.106370561915014,"pitch":95.19662456281547,"roll":15.542301356322989},"location":"Left Ankle"},{"euler":{"heading":35.31043065161298,"pitch":-15.484719930578946,"roll":-15.623548915561727},"location":"Right Ankle"},{"euler":{"heading":68.60154209266454,"pitch":-162.60023787983525,"roll":50.07753270268518},"location":"Right Hip"},{"euler":{"heading":18.213783716885118,"pitch":-102.0631489904237,"roll":29.139679730746916},"location":"Right Knee"},{"euler":{"heading":9.088029225138188,"pitch":-129.63584869328596,"roll":58.68994301568909},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.994"} +{"sensors":[{"euler":{"heading":25.73803256228228,"pitch":126.80560830168281,"roll":20.164907720115085},"location":"Left Knee"},{"euler":{"heading":27.469807991395946,"pitch":95.6832718145987,"roll":16.447909509465504},"location":"Left Ankle"},{"euler":{"heading":38.25222029359845,"pitch":-16.223391591277263,"roll":-14.02439919919297},"location":"Right Ankle"},{"euler":{"heading":68.60845122059219,"pitch":-162.90580406337116,"roll":49.64209526151567},"location":"Right Hip"},{"euler":{"heading":15.389050806582043,"pitch":-101.27830664898713,"roll":32.05742936553625},"location":"Right Knee"},{"euler":{"heading":10.03342251858084,"pitch":-131.66216661172263,"roll":59.385311615936224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.95"} +{"sensors":[{"euler":{"heading":27.86381423187471,"pitch":125.88474119233886,"roll":18.639112749792975},"location":"Left Knee"},{"euler":{"heading":29.44231336594575,"pitch":96.05228309304853,"roll":18.426706744242566},"location":"Left Ankle"},{"euler":{"heading":39.822666061712766,"pitch":-16.457789711388806,"roll":-13.082719622795072},"location":"Right Ankle"},{"euler":{"heading":68.56060063837698,"pitch":-163.19419390278733,"roll":49.43238330928304},"location":"Right Hip"},{"euler":{"heading":13.052381357031155,"pitch":-101.19832498210826,"roll":34.26956614510468},"location":"Right Knee"},{"euler":{"heading":11.069103049205463,"pitch":-134.06648072811154,"roll":60.09776763906866},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.196"} +{"sensors":[{"euler":{"heading":31.16801784403047,"pitch":125.03363557204845,"roll":16.235865995764378},"location":"Left Knee"},{"euler":{"heading":32.89449866594781,"pitch":97.32555080690733,"roll":21.899793103850715},"location":"Left Ankle"},{"euler":{"heading":40.65075665289617,"pitch":-16.42613311605969,"roll":-12.581390392398731},"location":"Right Ankle"},{"euler":{"heading":68.90192032185776,"pitch":-163.2827367601562,"roll":49.64690110852638},"location":"Right Hip"},{"euler":{"heading":11.573126422603073,"pitch":-101.63130271302941,"roll":35.6172897475632},"location":"Right Knee"},{"euler":{"heading":10.71021968798533,"pitch":-134.434711134304,"roll":60.332225112585355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.297"} +{"sensors":[{"euler":{"heading":34.27183176038461,"pitch":124.47752238191667,"roll":14.031501363577016},"location":"Left Knee"},{"euler":{"heading":35.031488531481614,"pitch":97.4848326557472,"roll":24.822526012435958},"location":"Left Ankle"},{"euler":{"heading":41.09098401878645,"pitch":-16.2607457765557,"roll":-12.401234216597327},"location":"Right Ankle"},{"euler":{"heading":69.25273619705256,"pitch":-163.42231006135947,"roll":50.19773137625187},"location":"Right Hip"},{"euler":{"heading":10.891046477834736,"pitch":-102.46304623520369,"roll":36.28389763853217},"location":"Right Knee"},{"euler":{"heading":9.5542967787611,"pitch":-132.65732944557456,"roll":60.050919304495544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.397"} +{"sensors":[{"euler":{"heading":34.9701858388982,"pitch":124.80070717524018,"roll":13.404247498380167},"location":"Left Knee"},{"euler":{"heading":34.46258352421896,"pitch":96.81445568675497,"roll":25.219907899545152},"location":"Left Ankle"},{"euler":{"heading":41.19579347693527,"pitch":-15.879223897509291,"roll":-12.517644841256127},"location":"Right Ankle"},{"euler":{"heading":69.91453823242925,"pitch":-163.3286300811149,"roll":50.86857787881505},"location":"Right Hip"},{"euler":{"heading":10.629825545848238,"pitch":-103.3464669874422,"roll":36.50659481799644},"location":"Right Knee"},{"euler":{"heading":8.155984984933067,"pitch":-130.70419320915053,"roll":59.20184192712254},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.498"} +{"sensors":[{"euler":{"heading":31.404063289165162,"pitch":126.33571833358192,"roll":14.655925240891259},"location":"Left Knee"},{"euler":{"heading":30.994384376422026,"pitch":95.68466120378152,"roll":22.868428589433435},"location":"Left Ankle"},{"euler":{"heading":40.82382265970085,"pitch":-15.27834602963687,"roll":-12.842958296388902},"location":"Right Ankle"},{"euler":{"heading":70.61694432136564,"pitch":-163.2141348635651,"roll":51.58857100500873},"location":"Right Hip"},{"euler":{"heading":10.766711282068812,"pitch":-104.21125079341121,"roll":36.27410048914113},"location":"Right Knee"},{"euler":{"heading":7.016994124355092,"pitch":-128.99035667342756,"roll":58.39786112328107},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.598"} +{"sensors":[{"euler":{"heading":27.134541213318254,"pitch":128.34302366808075,"roll":16.406849228632538},"location":"Left Knee"},{"euler":{"heading":27.155815024807602,"pitch":94.66828364046916,"roll":19.521845502443348},"location":"Left Ankle"},{"euler":{"heading":39.80581644638091,"pitch":-14.478978394259713,"roll":-13.488099484259175},"location":"Right Ankle"},{"euler":{"heading":71.32881573447666,"pitch":-163.19376530137689,"roll":52.37681691658797},"location":"Right Hip"},{"euler":{"heading":11.651683164274154,"pitch":-104.9105378005884,"roll":35.41568363423954},"location":"Right Knee"},{"euler":{"heading":6.601631416043977,"pitch":-127.82599369995214,"roll":57.848718159370854},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.699"} +{"sensors":[{"euler":{"heading":24.863394575301754,"pitch":129.47567386258302,"roll":17.907982401934202},"location":"Left Knee"},{"euler":{"heading":25.1542976995644,"pitch":94.56309605795106,"roll":17.373511398723355},"location":"Left Ankle"},{"euler":{"heading":37.80699377759986,"pitch":-13.809158311434684,"roll":-14.422644816745649},"location":"Right Ankle"},{"euler":{"heading":72.28624964960598,"pitch":-163.29423954466807,"roll":53.13764345831934},"location":"Right Hip"},{"euler":{"heading":13.999366155159684,"pitch":-105.10335242164864,"roll":33.568768243489686},"location":"Right Knee"},{"euler":{"heading":6.642032572428716,"pitch":-127.14694504374297,"roll":57.50639037525967},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.800"} +{"sensors":[{"euler":{"heading":24.044211024905515,"pitch":129.76336265042423,"roll":18.980945633337697},"location":"Left Knee"},{"euler":{"heading":24.193222570697507,"pitch":94.59871120372466,"roll":15.982451017955775},"location":"Left Ankle"},{"euler":{"heading":34.600798748898065,"pitch":-12.98902373728587,"roll":-15.541775748070528},"location":"Right Ankle"},{"euler":{"heading":73.70634340837199,"pitch":-162.89764095829685,"roll":53.279128133292005},"location":"Right Hip"},{"euler":{"heading":17.086926715855682,"pitch":-104.96272426289144,"roll":30.869002316347025},"location":"Right Knee"},{"euler":{"heading":6.889144069549555,"pitch":-126.68112352855329,"roll":57.52956372180485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.901"} +{"sensors":[{"euler":{"heading":23.843143731582877,"pitch":129.42320899481822,"roll":19.83293716860894},"location":"Left Knee"},{"euler":{"heading":24.07216975960226,"pitch":94.81524299785724,"roll":15.1577226038673},"location":"Left Ankle"},{"euler":{"heading":31.928007303310117,"pitch":-12.734419625618996,"roll":-16.435543284410482},"location":"Right Ankle"},{"euler":{"heading":75.20799716018024,"pitch":-162.2771752460842,"roll":52.545084484221775},"location":"Right Hip"},{"euler":{"heading":19.371260315186706,"pitch":-104.59766104183191,"roll":28.705480870662065},"location":"Right Knee"},{"euler":{"heading":7.507650226888229,"pitch":-126.91359708721009,"roll":57.835907471485584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.2"} +{"sensors":[{"euler":{"heading":23.951994202280925,"pitch":128.895436047099,"roll":20.31850830964876},"location":"Left Knee"},{"euler":{"heading":24.829176147960673,"pitch":95.01712252959167,"roll":15.184336406844094},"location":"Left Ankle"},{"euler":{"heading":31.380433493489747,"pitch":-13.383940238453974,"roll":-16.72704949036905},"location":"Right Ankle"},{"euler":{"heading":76.62779945455091,"pitch":-161.72762190157897,"roll":51.387406147261395},"location":"Right Hip"},{"euler":{"heading":19.785069801462054,"pitch":-103.99978558814303,"roll":28.329216061476604},"location":"Right Knee"},{"euler":{"heading":8.305402465928811,"pitch":-128.0573699135942,"roll":58.28552421695634},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.103"} +{"sensors":[{"euler":{"heading":24.570253227169044,"pitch":128.12654738630997,"roll":20.407116384011456},"location":"Left Knee"},{"euler":{"heading":25.728441609510085,"pitch":95.22952482473843,"roll":15.553246416039656},"location":"Left Ankle"},{"euler":{"heading":32.91186809514994,"pitch":-14.405682710173041,"roll":-15.772038128458604},"location":"Right Ankle"},{"euler":{"heading":72.74276584893784,"pitch":-161.61084446397953,"roll":50.25067225742441},"location":"Right Hip"},{"euler":{"heading":18.316523038984798,"pitch":-103.02477553383602,"roll":29.86151531423958},"location":"Right Knee"},{"euler":{"heading":9.22019466260501,"pitch":-129.72254404718208,"roll":58.84694920280197},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.203"} +{"sensors":[{"euler":{"heading":25.688849726086467,"pitch":127.17515097158292,"roll":19.952217936118934},"location":"Left Knee"},{"euler":{"heading":27.11279771731914,"pitch":95.58819098158445,"roll":16.463758728853918},"location":"Left Ankle"},{"euler":{"heading":35.854272437890955,"pitch":-15.472919391952594,"roll":-14.206325848285525},"location":"Right Ankle"},{"euler":{"heading":72.91485807917434,"pitch":-161.6656987768485,"roll":49.65607754666122},"location":"Right Hip"},{"euler":{"heading":15.687204725644392,"pitch":-102.2316928492166,"roll":32.66898324210923},"location":"Right Knee"},{"euler":{"heading":10.218928433402738,"pitch":-131.90708369029588,"roll":59.48576544838782},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.303"} +{"sensors":[{"euler":{"heading":27.567895151561412,"pitch":126.27858422083203,"roll":18.7379751384446},"location":"Left Knee"},{"euler":{"heading":28.947853284611135,"pitch":95.94246558636272,"roll":18.1616188495791},"location":"Left Ankle"},{"euler":{"heading":38.35863481916715,"pitch":-16.1413698864876,"roll":-12.932239209554059},"location":"Right Ankle"},{"euler":{"heading":72.27693171051695,"pitch":-161.97098330528704,"roll":49.433144915398564},"location":"Right Hip"},{"euler":{"heading":13.26678292191165,"pitch":-101.94211424196561,"roll":35.060758311817935},"location":"Right Knee"},{"euler":{"heading":11.351791857185301,"pitch":-134.54969362412015,"roll":60.14110334756021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.404"} +{"sensors":[{"euler":{"heading":30.65818078151058,"pitch":125.66944377148103,"roll":16.43828495225185},"location":"Left Knee"},{"euler":{"heading":31.865377991432787,"pitch":96.7802816102301,"roll":21.541015522017336},"location":"Left Ankle"},{"euler":{"heading":39.43417354905729,"pitch":-16.484640544463094,"roll":-12.427388493855815},"location":"Right Ankle"},{"euler":{"heading":72.59883197972488,"pitch":-161.93212636274453,"roll":49.403832654365054},"location":"Right Hip"},{"euler":{"heading":11.594100191345673,"pitch":-102.06652677264758,"roll":36.618594587070106},"location":"Right Knee"},{"euler":{"heading":11.542161044885216,"pitch":-135.43081735787214,"roll":60.59141489724944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.505"} +{"sensors":[{"euler":{"heading":33.93166673003188,"pitch":124.82098237868075,"roll":14.101704387780511},"location":"Left Knee"},{"euler":{"heading":34.2661346472898,"pitch":97.61568944930245,"roll":24.789197193620755},"location":"Left Ankle"},{"euler":{"heading":39.993776873693136,"pitch":-16.72391391640384,"roll":-12.20837396802739},"location":"Right Ankle"},{"euler":{"heading":72.36299772790665,"pitch":-162.15855921925385,"roll":49.89455048310068},"location":"Right Hip"},{"euler":{"heading":10.795258931911045,"pitch":-102.7974165638773,"roll":37.44560166111139},"location":"Right Knee"},{"euler":{"heading":10.61004383260851,"pitch":-133.65975137194525,"roll":60.487594140308964},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.605"} +{"sensors":[{"euler":{"heading":35.500220920668085,"pitch":124.85584733881029,"roll":12.974311932651707},"location":"Left Knee"},{"euler":{"heading":34.822833665965305,"pitch":97.10527865910886,"roll":26.08749093313469},"location":"Left Ankle"},{"euler":{"heading":40.2082218516118,"pitch":-16.803684352173153,"roll":-12.230169563940654},"location":"Right Ankle"},{"euler":{"heading":72.56823251108344,"pitch":-162.22671059262024,"roll":50.647744813077956},"location":"Right Hip"},{"euler":{"heading":10.527613577464361,"pitch":-103.63119444182097,"roll":37.78965883338065},"location":"Right Knee"},{"euler":{"heading":9.163116901476634,"pitch":-131.67665821184778,"roll":59.698048332847634},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.705"} +{"sensors":[{"euler":{"heading":32.64661727146897,"pitch":126.10023852747736,"roll":13.880442266792626},"location":"Left Knee"},{"euler":{"heading":32.49625424619733,"pitch":95.96565558645227,"roll":24.634458612489546},"location":"Left Ankle"},{"euler":{"heading":40.027090707711025,"pitch":-16.69750740276575,"roll":-12.457977622308178},"location":"Right Ankle"},{"euler":{"heading":72.99192675499427,"pitch":-162.2348713033033,"roll":51.400635282665384},"location":"Right Hip"},{"euler":{"heading":10.795981078932963,"pitch":-104.33809680319658,"roll":37.61347236887463},"location":"Right Knee"},{"euler":{"heading":7.90703102051597,"pitch":-129.89409724911536,"roll":58.846865933379306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.806"} +{"sensors":[{"euler":{"heading":28.22923205481508,"pitch":127.98725647719924,"roll":15.69324339668948},"location":"Left Knee"},{"euler":{"heading":28.480669354360952,"pitch":94.77391576383161,"roll":21.25067882506734},"location":"Left Ankle"},{"euler":{"heading":39.27830465513983,"pitch":-16.405235375817718,"roll":-12.93165429994645},"location":"Right Ankle"},{"euler":{"heading":73.50531575219273,"pitch":-162.36116187948502,"roll":52.147305488935565},"location":"Right Hip"},{"euler":{"heading":11.848063163024975,"pitch":-104.84695836489196,"roll":36.78817117424983},"location":"Right Knee"},{"euler":{"heading":7.2709395774307435,"pitch":-128.58431294766143,"roll":58.21933957620353},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.906"} +{"sensors":[{"euler":{"heading":25.34950001363551,"pitch":129.33210822667294,"roll":17.42278157490245},"location":"Left Knee"},{"euler":{"heading":25.46025167766878,"pitch":94.34357862978695,"roll":18.307686978361435},"location":"Left Ankle"},{"euler":{"heading":37.678278388376306,"pitch":-15.956461166306136,"roll":-13.877514283809676},"location":"Right Ankle"},{"euler":{"heading":74.1456544839415,"pitch":-162.70730607176958,"roll":52.965636133053856},"location":"Right Hip"},{"euler":{"heading":13.785607503194434,"pitch":-105.0398756671886,"roll":35.226869546977966},"location":"Right Knee"},{"euler":{"heading":7.433818975862664,"pitch":-127.78556677119742,"roll":57.84770176635808},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.7"} +{"sensors":[{"euler":{"heading":24.192530706242046,"pitch":129.71074268353067,"roll":18.767821186803033},"location":"Left Knee"},{"euler":{"heading":24.33077650866893,"pitch":94.40007535378626,"roll":16.708857066006534},"location":"Left Ankle"},{"euler":{"heading":34.959140723524904,"pitch":-15.538485953211053,"roll":-14.989047638312103},"location":"Right Ankle"},{"euler":{"heading":75.13369713211763,"pitch":-162.61029709876541,"roll":53.391021834468766},"location":"Right Hip"},{"euler":{"heading":16.77515928996448,"pitch":-104.70909057817819,"roll":32.654751628635985},"location":"Right Knee"},{"euler":{"heading":7.5671844492447065,"pitch":-127.11630903105493,"roll":57.737337663860906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.108"} +{"sensors":[{"euler":{"heading":23.702994189098998,"pitch":129.56584434211462,"roll":19.76493762851023},"location":"Left Knee"},{"euler":{"heading":23.929150545843044,"pitch":94.52254152280283,"roll":15.571271720722335},"location":"Left Ankle"},{"euler":{"heading":31.751738018168524,"pitch":-14.987856678572916,"roll":-16.327783696101417},"location":"Right Ankle"},{"euler":{"heading":76.39454875172027,"pitch":-162.1063445631192,"roll":53.08034176230443},"location":"Right Hip"},{"euler":{"heading":19.538102328933135,"pitch":-104.57624000840146,"roll":29.905189385327382},"location":"Right Knee"},{"euler":{"heading":7.878524412251061,"pitch":-127.01012022157862,"roll":57.899065473426724},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.209"} +{"sensors":[{"euler":{"heading":23.397287145978833,"pitch":129.23258898492816,"roll":20.435336449194548},"location":"Left Knee"},{"euler":{"heading":24.046197718270662,"pitch":94.53823318507492,"roll":15.017523702507878},"location":"Left Ankle"},{"euler":{"heading":30.33836294439167,"pitch":-15.006847733946,"roll":-16.99814959713313},"location":"Right Ankle"},{"euler":{"heading":77.42693267953237,"pitch":-161.59682270449463,"roll":52.19279373018843},"location":"Right Hip"},{"euler":{"heading":20.724296389074826,"pitch":-104.11119899655841,"roll":28.344647025103967},"location":"Right Knee"},{"euler":{"heading":8.359370923299494,"pitch":-127.75826629682408,"roll":58.22971347404854},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.310"} +{"sensors":[{"euler":{"heading":23.693942854602096,"pitch":128.64565975167346,"roll":20.72091702271361},"location":"Left Knee"},{"euler":{"heading":24.95654295949212,"pitch":94.70106486977978,"roll":15.18827068274931},"location":"Left Ankle"},{"euler":{"heading":31.321403723416303,"pitch":-15.719633258582478,"roll":-16.469193238089403},"location":"Right Ankle"},{"euler":{"heading":73.44465772095465,"pitch":-161.37952668546956,"roll":51.08646294658695},"location":"Right Hip"},{"euler":{"heading":19.75143519600028,"pitch":-103.39907490114015,"roll":28.88261203556792},"location":"Right Knee"},{"euler":{"heading":8.836321827627444,"pitch":-129.08922887359873,"roll":58.61214291613678},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.410"} +{"sensors":[{"euler":{"heading":24.531374986857415,"pitch":127.84107796526455,"roll":20.56910554045339},"location":"Left Knee"},{"euler":{"heading":26.141885411969763,"pitch":94.9613680480248,"roll":15.782728133941067},"location":"Left Ankle"},{"euler":{"heading":34.12988510770203,"pitch":-16.602427420736042,"roll":-15.080921745064504},"location":"Right Ankle"},{"euler":{"heading":73.49551168432156,"pitch":-161.5039475449564,"roll":50.32912940500589},"location":"Right Hip"},{"euler":{"heading":17.236663611480036,"pitch":-102.60011355652799,"roll":31.158940760995282},"location":"Right Knee"},{"euler":{"heading":9.452770396389958,"pitch":-130.8048801947116,"roll":59.09493586272187},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.511"} +{"sensors":[{"euler":{"heading":25.98995349232339,"pitch":126.97034457554952,"roll":19.75397004454361},"location":"Left Knee"},{"euler":{"heading":27.80804350820783,"pitch":95.23852706011303,"roll":17.075691934628985},"location":"Left Ankle"},{"euler":{"heading":37.17263004793257,"pitch":-17.526097317185876,"roll":-13.646350240791806},"location":"Right Ankle"},{"euler":{"heading":72.75831555528474,"pitch":-161.89001703056374,"roll":50.107571152090834},"location":"Right Hip"},{"euler":{"heading":14.654384316285697,"pitch":-102.16252811339861,"roll":33.813264656360744},"location":"Right Knee"},{"euler":{"heading":10.332072190879604,"pitch":-133.02915007920237,"roll":59.674490550892926},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.615"} +{"sensors":[{"euler":{"heading":28.44464119426803,"pitch":126.08731470961749,"roll":17.964054799758443},"location":"Left Knee"},{"euler":{"heading":29.986799080411856,"pitch":95.60228218764475,"roll":19.523903793668712},"location":"Left Ankle"},{"euler":{"heading":38.65332398281402,"pitch":-17.838716115958796,"roll":-13.133022845200182},"location":"Right Ankle"},{"euler":{"heading":72.20226263169246,"pitch":-162.22747107123016,"roll":49.96654168692951},"location":"Right Hip"},{"euler":{"heading":12.635141774209732,"pitch":-102.43244240521074,"roll":35.56705766735213},"location":"Right Knee"},{"euler":{"heading":11.170949691451646,"pitch":-134.7742976214375,"roll":60.26431352842901},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.716"} +{"sensors":[{"euler":{"heading":31.88141063082983,"pitch":125.09208783921335,"roll":15.613132265307236},"location":"Left Knee"},{"euler":{"heading":33.13223720692522,"pitch":96.8053953576753,"roll":22.874783446691893},"location":"Left Ankle"},{"euler":{"heading":39.43170710155301,"pitch":-18.06808930728177,"roll":-12.858775522005569},"location":"Right Ankle"},{"euler":{"heading":71.88370918104802,"pitch":-162.56849666834856,"roll":50.24320855702062},"location":"Right Hip"},{"euler":{"heading":11.59415487332066,"pitch":-103.17608696143063,"roll":36.517873339325924},"location":"Right Knee"},{"euler":{"heading":10.514182149027116,"pitch":-133.90397139909504,"roll":60.37591279999639},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.817"} +{"sensors":[{"euler":{"heading":34.30898869301819,"pitch":124.82767976289246,"roll":13.931739125255213},"location":"Left Knee"},{"euler":{"heading":34.37596959881728,"pitch":96.5742041889141,"roll":24.973497637326798},"location":"Left Ankle"},{"euler":{"heading":39.932304272940044,"pitch":-18.34104177553366,"roll":-12.717631491250078},"location":"Right Ankle"},{"euler":{"heading":71.97365111366534,"pitch":-162.7700666949314,"roll":50.7967682014693},"location":"Right Hip"},{"euler":{"heading":11.449287544013353,"pitch":-103.6646878509431,"roll":36.87883690433733},"location":"Right Knee"},{"euler":{"heading":9.280820611321092,"pitch":-132.3613808225868,"roll":59.83480297624934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.918"} +{"sensors":[{"euler":{"heading":33.347814375447676,"pitch":125.55156331917209,"roll":14.07497451097456},"location":"Left Knee"},{"euler":{"heading":32.99243204188838,"pitch":95.80614614545358,"roll":24.482558139775808},"location":"Left Ankle"},{"euler":{"heading":40.0449273084725,"pitch":-18.43939697095885,"roll":-12.768273004105533},"location":"Right Ankle"},{"euler":{"heading":72.33861554331186,"pitch":-162.89895461985398,"roll":51.4463032185147},"location":"Right Hip"},{"euler":{"heading":11.66360756004415,"pitch":-104.11275592658828,"roll":36.84874538099521},"location":"Right Knee"},{"euler":{"heading":8.157984687672386,"pitch":-130.66826367314033,"roll":59.095463262086966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.18"} +{"sensors":[{"euler":{"heading":29.76056600437722,"pitch":127.08649303688911,"roll":15.595786625651522},"location":"Left Knee"},{"euler":{"heading":29.416071569540765,"pitch":95.01007933385182,"roll":21.683977404803105},"location":"Left Ankle"},{"euler":{"heading":39.73880731609108,"pitch":-16.70913200336949,"roll":-13.022183013816894},"location":"Right Ankle"},{"euler":{"heading":72.79797132516877,"pitch":-162.99774616810527,"roll":52.129176189717754},"location":"Right Hip"},{"euler":{"heading":12.160139166540283,"pitch":-104.63116240634169,"roll":36.35778231684709},"location":"Right Knee"},{"euler":{"heading":7.440748320025029,"pitch":-129.23132908239776,"roll":58.497796872024836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.119"} +{"sensors":[{"euler":{"heading":26.216909582023426,"pitch":128.7726780661391,"roll":17.37026721734486},"location":"Left Knee"},{"euler":{"heading":25.994290991601318,"pitch":94.46809754428702,"roll":18.509518220564033},"location":"Left Ankle"},{"euler":{"heading":38.72121191756545,"pitch":-16.31468395760028,"roll":-13.798908155008323},"location":"Right Ankle"},{"euler":{"heading":73.40001302688637,"pitch":-163.1822651000101,"roll":52.86005176766034},"location":"Right Hip"},{"euler":{"heading":13.309862156058664,"pitch":-104.95756812719975,"roll":35.24170231443664},"location":"Right Knee"},{"euler":{"heading":7.394498959971491,"pitch":-128.41859800758826,"roll":58.10561614126499},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.220"} +{"sensors":[{"euler":{"heading":24.795749175397457,"pitch":129.3888328096884,"roll":18.75002879152695},"location":"Left Knee"},{"euler":{"heading":24.35187578149424,"pitch":94.46518695527416,"roll":16.623950283995327},"location":"Left Ankle"},{"euler":{"heading":36.77623339209842,"pitch":-16.088554519119267,"roll":-14.804958066537193},"location":"Right Ankle"},{"euler":{"heading":74.2140107257792,"pitch":-163.22438022282614,"roll":53.47978570991655},"location":"Right Hip"},{"euler":{"heading":15.672182605003966,"pitch":-104.84269830332339,"roll":33.17352457822644},"location":"Right Knee"},{"euler":{"heading":7.49931741747658,"pitch":-127.74857629671074,"roll":57.875593032006705},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.321"} +{"sensors":[{"euler":{"heading":24.26230719608239,"pitch":129.31617327326677,"roll":19.766673656316332},"location":"Left Knee"},{"euler":{"heading":23.571872227100695,"pitch":94.48633446630718,"roll":15.304191845779872},"location":"Left Ankle"},{"euler":{"heading":33.58439935096523,"pitch":-15.402365708343643,"roll":-16.054190093258477},"location":"Right Ankle"},{"euler":{"heading":75.83176037152411,"pitch":-162.5966146940629,"roll":53.23200567250564},"location":"Right Hip"},{"euler":{"heading":18.41500984296126,"pitch":-104.64957584813104,"roll":30.422176559552852},"location":"Right Knee"},{"euler":{"heading":8.013204804774173,"pitch":-127.7308758035052,"roll":58.018224002842096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.421"} +{"sensors":[{"euler":{"heading":23.849306717052297,"pitch":129.06612093325606,"roll":20.442852645114336},"location":"Left Knee"},{"euler":{"heading":23.331541780195494,"pitch":94.46979847626358,"roll":14.484529706288951},"location":"Left Ankle"},{"euler":{"heading":31.595186427730333,"pitch":-15.138169012048346,"roll":-16.857597101631864},"location":"Right Ankle"},{"euler":{"heading":77.02557524528099,"pitch":-162.01072938937048,"roll":52.377593083751954},"location":"Right Hip"},{"euler":{"heading":20.000904640854444,"pitch":-104.2786289998517,"roll":28.544916991672785},"location":"Right Knee"},{"euler":{"heading":8.570717311065348,"pitch":-128.38667882976551,"roll":58.36726359576733},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.522"} +{"sensors":[{"euler":{"heading":23.855970218450345,"pitch":128.6555502662562,"roll":20.757444779199407},"location":"Left Knee"},{"euler":{"heading":23.86603231065391,"pitch":94.48456200909902,"roll":14.367095164305477},"location":"Left Ankle"},{"euler":{"heading":32.05322403649482,"pitch":-15.654158074030281,"roll":-16.793854167125133},"location":"Right Ankle"},{"euler":{"heading":73.18142507639551,"pitch":-161.6589356072702,"roll":51.229902045569055},"location":"Right Hip"},{"euler":{"heading":19.64663804845286,"pitch":-103.69921082901635,"roll":28.81412841701562},"location":"Right Knee"},{"euler":{"heading":9.13422347898262,"pitch":-129.67569963624743,"roll":58.80200697711586},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.623"} +{"sensors":[{"euler":{"heading":24.515410124671725,"pitch":127.90353541402887,"roll":20.721064749419273},"location":"Left Knee"},{"euler":{"heading":24.779297182569582,"pitch":94.65844446785405,"roll":14.682948415218043},"location":"Left Ankle"},{"euler":{"heading":34.794497163906655,"pitch":-16.5134540198891,"roll":-15.677910017345546},"location":"Right Ankle"},{"euler":{"heading":69.88520642981943,"pitch":-161.70921525388607,"roll":50.304345872684195},"location":"Right Hip"},{"euler":{"heading":17.56108204763518,"pitch":-102.86575377006052,"roll":30.87699525925275},"location":"Right Knee"},{"euler":{"heading":9.875051171562442,"pitch":-131.41879727855013,"roll":59.36780934931071},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.723"} +{"sensors":[{"euler":{"heading":25.780686329049683,"pitch":127.01497014912698,"roll":20.08172398955862},"location":"Left Knee"},{"euler":{"heading":26.145389454166462,"pitch":94.91091129326013,"roll":15.575177527857502},"location":"Left Ankle"},{"euler":{"heading":37.90706351696746,"pitch":-17.433696888905565,"roll":-14.09142512828111},"location":"Right Ankle"},{"euler":{"heading":69.93894363489225,"pitch":-161.99252435797206,"roll":49.918676537895564},"location":"Right Hip"},{"euler":{"heading":14.694096087482036,"pitch":-102.34344624611329,"roll":33.7424437347937},"location":"Right Knee"},{"euler":{"heading":10.743233611824479,"pitch":-133.69168388556224,"roll":60.010586582710864},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.825"} +{"sensors":[{"euler":{"heading":27.898739089476262,"pitch":126.20498427809308,"roll":18.575732480361637},"location":"Left Knee"},{"euler":{"heading":28.20924822488785,"pitch":95.12747161635224,"roll":17.583485555678397},"location":"Left Ankle"},{"euler":{"heading":39.56383330081366,"pitch":-17.862120808427942,"roll":-13.184986868971537},"location":"Right Ankle"},{"euler":{"heading":69.6797329108749,"pitch":-162.4331882419595,"roll":49.498350277006516},"location":"Right Hip"},{"euler":{"heading":12.32282988690346,"pitch":-102.41779148596908,"roll":35.83591080732694},"location":"Right Knee"},{"euler":{"heading":11.715693980268997,"pitch":-136.3250571708883,"roll":60.62194622005453},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.925"} +{"sensors":[{"euler":{"heading":31.059872203920527,"pitch":125.216400022039,"roll":16.267694383866512},"location":"Left Knee"},{"euler":{"heading":31.51625720374947,"pitch":96.19144656860698,"roll":21.047603650705053},"location":"Left Ankle"},{"euler":{"heading":40.18317644341772,"pitch":-18.00603332348006,"roll":-12.80472624247451},"location":"Right Ankle"},{"euler":{"heading":70.27010798255252,"pitch":-162.41576247473682,"roll":49.55201497538708},"location":"Right Hip"},{"euler":{"heading":10.910372092526357,"pitch":-102.84772840570473,"roll":37.052471918879355},"location":"Right Knee"},{"euler":{"heading":11.358553787975378,"pitch":-136.823268511343,"roll":60.78870532408545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.26"} +{"sensors":[{"euler":{"heading":34.135719767497335,"pitch":124.68451853122548,"roll":14.131645770223802},"location":"Left Knee"},{"euler":{"heading":33.46897847237903,"pitch":96.42888345650744,"roll":23.819534017218587},"location":"Left Ankle"},{"euler":{"heading":40.42870039611346,"pitch":-18.189763940376512,"roll":-12.710340798580052},"location":"Right Ankle"},{"euler":{"heading":70.75350644586494,"pitch":-162.52484579235042,"roll":50.070254125760755},"location":"Right Hip"},{"euler":{"heading":10.467290109333211,"pitch":-103.438908068689,"roll":37.61823006352523},"location":"Right Knee"},{"euler":{"heading":10.227839414055735,"pitch":-135.28240948311182,"roll":60.42830502575501},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.127"} +{"sensors":[{"euler":{"heading":34.72794072020274,"pitch":125.05341121585347,"roll":13.584045290507918},"location":"Left Knee"},{"euler":{"heading":32.86215538424945,"pitch":95.77571926597388,"roll":24.0804584423039},"location":"Left Ankle"},{"euler":{"heading":40.50488368009369,"pitch":-18.421415580532823,"roll":-12.862746067602654},"location":"Right Ankle"},{"euler":{"heading":71.66060903479321,"pitch":-162.4749198773055,"roll":50.72350035371376},"location":"Right Hip"},{"euler":{"heading":10.794150750156916,"pitch":-103.86089096751782,"roll":37.678327129436965},"location":"Right Knee"},{"euler":{"heading":8.945293263350518,"pitch":-133.47789832370535,"roll":59.57900070683335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.227"} +{"sensors":[{"euler":{"heading":31.580267631057872,"pitch":126.36818877048145,"roll":14.860236935435},"location":"Left Knee"},{"euler":{"heading":29.642338411583623,"pitch":95.11334357662068,"roll":21.813587942410745},"location":"Left Ankle"},{"euler":{"heading":40.06785662938018,"pitch":-18.518070531652114,"roll":-13.143341180260038},"location":"Right Ankle"},{"euler":{"heading":72.81356986900154,"pitch":-162.39407131529393,"roll":51.308661277580626},"location":"Right Hip"},{"euler":{"heading":11.65631464787899,"pitch":-104.10599070068633,"roll":37.22735631866414},"location":"Right Knee"},{"euler":{"heading":8.055669183015906,"pitch":-131.94016606950842,"roll":58.75697862637049},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.327"} +{"sensors":[{"euler":{"heading":28.093324280229197,"pitch":128.09892120653285,"roll":16.550108635811764},"location":"Left Knee"},{"euler":{"heading":25.935800421964537,"pitch":94.52586693828025,"roll":18.5078934134293},"location":"Left Ankle"},{"euler":{"heading":39.07981674993068,"pitch":-18.272593961184164,"roll":-13.62316639440472},"location":"Right Ankle"},{"euler":{"heading":73.77544886254505,"pitch":-162.45765554177078,"roll":51.96895558193549},"location":"Right Hip"},{"euler":{"heading":12.915167113811837,"pitch":-104.333720648485,"roll":36.21880800112653},"location":"Right Knee"},{"euler":{"heading":7.832597106522525,"pitch":-130.79246808856112,"roll":58.16178402275337},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.429"} +{"sensors":[{"euler":{"heading":26.052726020763743,"pitch":129.04670586182831,"roll":18.09112203779321},"location":"Left Knee"},{"euler":{"heading":23.638109313207945,"pitch":94.61853126976717,"roll":16.12307419615686},"location":"Left Ankle"},{"euler":{"heading":37.337397479872585,"pitch":-17.860218486383047,"roll":-14.62215249670519},"location":"Right Ankle"},{"euler":{"heading":74.71761232917159,"pitch":-162.84218324294582,"roll":52.73290805556159},"location":"Right Hip"},{"euler":{"heading":15.146866276687394,"pitch":-104.18306934537162,"roll":34.36089385149843},"location":"Right Knee"},{"euler":{"heading":8.208804850732731,"pitch":-129.997702401054,"roll":57.87291017954161},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.529"} +{"sensors":[{"euler":{"heading":25.22017477150617,"pitch":129.28602058292077,"roll":19.09315635701601},"location":"Left Knee"},{"euler":{"heading":22.856644255420015,"pitch":94.86290421978038,"roll":14.88068809483134},"location":"Left Ankle"},{"euler":{"heading":34.47194204146619,"pitch":-17.32060158299388,"roll":-15.864992658499759},"location":"Right Ankle"},{"euler":{"heading":76.02413243180087,"pitch":-162.89286739538625,"roll":53.05558053709985},"location":"Right Hip"},{"euler":{"heading":17.996772022839497,"pitch":-103.69003027831506,"roll":31.651175421557614},"location":"Right Knee"},{"euler":{"heading":8.463335571825477,"pitch":-129.3736636595299,"roll":57.920671434535905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.630"} +{"sensors":[{"euler":{"heading":24.960599559982718,"pitch":129.01505528473336,"roll":19.80367708824068},"location":"Left Knee"},{"euler":{"heading":22.90643720467395,"pitch":95.20293736445701,"roll":14.17265540808384},"location":"Left Ankle"},{"euler":{"heading":31.614413805311656,"pitch":-16.796643849694963,"roll":-16.912318747776666},"location":"Right Ankle"},{"euler":{"heading":77.38522973713282,"pitch":-162.36203538232223,"roll":52.71735621594127},"location":"Right Hip"},{"euler":{"heading":20.18758434941363,"pitch":-103.22011028354854,"roll":29.23489059157206},"location":"Right Knee"},{"euler":{"heading":8.927393275813312,"pitch":-129.587821853251,"roll":58.207647016430094},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.731"} +{"sensors":[{"euler":{"heading":25.00965319597017,"pitch":128.4785454658525,"roll":20.26825036164931},"location":"Left Knee"},{"euler":{"heading":23.654699224261673,"pitch":95.61169511237401,"roll":14.067051961512512},"location":"Left Ankle"},{"euler":{"heading":30.737218484624663,"pitch":-16.714917858029573,"roll":-17.37844810704554},"location":"Right Ankle"},{"euler":{"heading":78.32728080175988,"pitch":-161.84008156971845,"roll":51.90595430896318},"location":"Right Hip"},{"euler":{"heading":20.631834257008858,"pitch":-102.77111016112437,"roll":28.296969268391344},"location":"Right Knee"},{"euler":{"heading":9.551120829101578,"pitch":-130.60206071751745,"roll":58.56839429808437},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.831"} +{"sensors":[{"euler":{"heading":25.584895945588325,"pitch":127.5590636451306,"roll":20.480545371859584},"location":"Left Knee"},{"euler":{"heading":25.06404656944617,"pitch":96.20154619347615,"roll":14.524407643521487},"location":"Left Ankle"},{"euler":{"heading":31.957142200154905,"pitch":-17.300895191128724,"roll":-16.813315881920136},"location":"Right Ankle"},{"euler":{"heading":74.37211162315073,"pitch":-163.18704270553602,"roll":50.874471563910646},"location":"Right Hip"},{"euler":{"heading":19.17037615536208,"pitch":-101.94270429905846,"roll":29.38643792308431},"location":"Right Knee"},{"euler":{"heading":10.370984264307683,"pitch":-132.13813218178032,"roll":59.019676982808406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.932"} +{"sensors":[{"euler":{"heading":26.555309920496228,"pitch":126.45356331018907,"roll":20.280255532651875},"location":"Left Knee"},{"euler":{"heading":26.598518322924438,"pitch":96.74717835175962,"roll":15.324702397478974},"location":"Left Ankle"},{"euler":{"heading":34.83473161381044,"pitch":-18.09867031918683,"roll":-15.374473826382022},"location":"Right Ankle"},{"euler":{"heading":74.39759730853855,"pitch":-163.17519559038965,"roll":50.1075771479491},"location":"Right Hip"},{"euler":{"heading":16.582533875500285,"pitch":-101.11581148088048,"roll":31.918050939061303},"location":"Right Knee"},{"euler":{"heading":11.309826391856316,"pitch":-134.22963126740822,"roll":59.558828205072714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.32"} +{"sensors":[{"euler":{"heading":27.99792235326617,"pitch":125.3937705321166,"roll":19.450979717833},"location":"Left Knee"},{"euler":{"heading":28.5743243396591,"pitch":97.27657913930037,"roll":16.821759166437847},"location":"Left Ankle"},{"euler":{"heading":37.51194529168953,"pitch":-18.63625261411508,"roll":-14.108173354847418},"location":"Right Ankle"},{"euler":{"heading":73.33641897243682,"pitch":-163.5152485809208,"roll":49.90709403619941},"location":"Right Hip"},{"euler":{"heading":13.66099491654436,"pitch":-100.74807646540131,"roll":34.68446907429143},"location":"Right Knee"},{"euler":{"heading":12.227181990166072,"pitch":-136.72859804328493,"roll":60.10020047799729},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.132"} +{"sensors":[{"euler":{"heading":30.493044820950374,"pitch":124.86879791586486,"roll":17.386675715447247},"location":"Left Knee"},{"euler":{"heading":30.91743967632033,"pitch":97.48808187518645,"roll":19.668680740504755},"location":"Left Ankle"},{"euler":{"heading":38.66956139805037,"pitch":-18.58167444146586,"roll":-13.693602454524912},"location":"Right Ankle"},{"euler":{"heading":73.14529237993355,"pitch":-163.54946990659022,"roll":49.86242394014719},"location":"Right Hip"},{"euler":{"heading":11.209388934441787,"pitch":-101.02768889977415,"roll":36.539693369326784},"location":"Right Knee"},{"euler":{"heading":12.639429216714266,"pitch":-138.37748411439648,"roll":60.50684044897589},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.234"} +{"sensors":[{"euler":{"heading":33.73700050981317,"pitch":123.82895905456002,"roll":14.971770168874066},"location":"Left Knee"},{"euler":{"heading":34.41148647273709,"pitch":98.63665995717272,"roll":23.41006941613988},"location":"Left Ankle"},{"euler":{"heading":39.37960389554227,"pitch":-18.336092861663012,"roll":-13.473045576952973},"location":"Right Ankle"},{"euler":{"heading":72.74504052237018,"pitch":-163.66367023805148,"roll":50.26790115524255},"location":"Right Hip"},{"euler":{"heading":9.731149014777452,"pitch":-101.83956213973319,"roll":37.647690066220385},"location":"Right Knee"},{"euler":{"heading":11.960329191576662,"pitch":-137.37843613249706,"roll":60.57753344328018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.334"} +{"sensors":[{"euler":{"heading":35.834288965087616,"pitch":123.779830927293,"roll":13.39300370156434},"location":"Left Knee"},{"euler":{"heading":35.904987416719656,"pitch":98.37395726923208,"roll":25.683786260382767},"location":"Left Ankle"},{"euler":{"heading":39.669665842754426,"pitch":-17.816606829312718,"roll":-13.594515766807765},"location":"Right Ankle"},{"euler":{"heading":72.79781442682852,"pitch":-163.5886480431948,"roll":50.97963522404066},"location":"Right Hip"},{"euler":{"heading":8.859650319043089,"pitch":-102.86552607463037,"roll":38.192499976783516},"location":"Right Knee"},{"euler":{"heading":10.512486689869966,"pitch":-135.55884513793725,"roll":59.92806485722349},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.435"} +{"sensors":[{"euler":{"heading":34.0378696542252,"pitch":124.835258019606,"roll":13.80151732686424},"location":"Left Knee"},{"euler":{"heading":34.2741166978349,"pitch":97.41091662394341,"roll":24.822069924198267},"location":"Left Ankle"},{"euler":{"heading":39.538559175402796,"pitch":-17.150341713687265,"roll":-13.829282574419546},"location":"Right Ankle"},{"euler":{"heading":73.0134395631836,"pitch":-163.50887171352352,"roll":51.81391548902419},"location":"Right Hip"},{"euler":{"heading":8.544403750427291,"pitch":-103.79984057789711,"roll":38.269313353484776},"location":"Right Knee"},{"euler":{"heading":9.07134660440178,"pitch":-133.60913190596946,"roll":59.07878338431465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.536"} +{"sensors":[{"euler":{"heading":29.707270519474882,"pitch":126.64641198986759,"roll":15.550482494034089},"location":"Left Knee"},{"euler":{"heading":30.25742779792246,"pitch":96.36112591619573,"roll":21.640420007450025},"location":"Left Ankle"},{"euler":{"heading":38.91396741627097,"pitch":-16.392877016993364,"roll":-14.237912359343811},"location":"Right Ankle"},{"euler":{"heading":73.38024303306236,"pitch":-163.5139731000901,"roll":52.59856144701437},"location":"Right Hip"},{"euler":{"heading":8.993771811831605,"pitch":-104.59177071833331,"roll":37.74428910139274},"location":"Right Knee"},{"euler":{"heading":8.242115827597555,"pitch":-132.17187691234184,"roll":58.42325059009131},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.637"} +{"sensors":[{"euler":{"heading":26.755911444327722,"pitch":128.06530369796644,"roll":17.228202408116783},"location":"Left Knee"},{"euler":{"heading":27.01612977856306,"pitch":95.95221946132862,"roll":18.999236595707544},"location":"Left Ankle"},{"euler":{"heading":37.546428068922985,"pitch":-15.6420677066133,"roll":-15.107077108217162},"location":"Right Ankle"},{"euler":{"heading":73.93622954102356,"pitch":-163.74451090734232,"roll":53.368021095707505},"location":"Right Hip"},{"euler":{"heading":10.55077541393244,"pitch":-104.98137664667235,"roll":36.44875528830178},"location":"Right Knee"},{"euler":{"heading":8.163618643987526,"pitch":-131.18644199187156,"roll":58.00843453046732},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.738"} +{"sensors":[{"euler":{"heading":25.32031761776033,"pitch":128.61795060538134,"roll":18.49662642610282},"location":"Left Knee"},{"euler":{"heading":25.390696722411963,"pitch":95.90325681273201,"roll":17.21571692749685},"location":"Left Ankle"},{"euler":{"heading":35.05926759290549,"pitch":-15.265889762086726,"roll":-16.143265548350506},"location":"Right Ankle"},{"euler":{"heading":74.9265483720527,"pitch":-163.76286897972292,"roll":53.856200188542864},"location":"Right Hip"},{"euler":{"heading":13.531951549152964,"pitch":-104.65021096480073,"roll":34.11712404155395},"location":"Right Knee"},{"euler":{"heading":8.039892159625174,"pitch":-130.41365264378564,"roll":57.817382352469735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.838"} +{"sensors":[{"euler":{"heading":24.757221647105485,"pitch":128.547277487015,"roll":19.46008717202816},"location":"Left Knee"},{"euler":{"heading":24.68405121334609,"pitch":96.01947503809131,"roll":16.02397126981411},"location":"Left Ankle"},{"euler":{"heading":31.786159328375938,"pitch":-14.88982386944133,"roll":-17.21762871930283},"location":"Right Ankle"},{"euler":{"heading":76.62327118418666,"pitch":-163.0303719813673,"roll":53.45965290838096},"location":"Right Hip"},{"euler":{"heading":16.644755071185728,"pitch":-104.2673130858512,"roll":31.406812965270227},"location":"Right Knee"},{"euler":{"heading":8.414209659345227,"pitch":-130.54671788939697,"roll":57.923933456291074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.941"} +{"sensors":[{"euler":{"heading":24.60531527830059,"pitch":128.1028274556288,"roll":20.177320791468464},"location":"Left Knee"},{"euler":{"heading":25.22316847617983,"pitch":96.28516131966013,"roll":15.718480315856104},"location":"Left Ankle"},{"euler":{"heading":30.515179766143376,"pitch":-14.775452905175044,"roll":-17.89847310390739},"location":"Right Ankle"},{"euler":{"heading":78.06010842895068,"pitch":-162.2843193960994,"roll":52.45873393398847},"location":"Right Hip"},{"euler":{"heading":17.754750747385,"pitch":-103.82571341578767,"roll":30.137436235672222},"location":"Right Knee"},{"euler":{"heading":9.0476923382058,"pitch":-131.3329997677098,"roll":58.19870812337377},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.41"} +{"sensors":[{"euler":{"heading":24.99223096518404,"pitch":127.31421070328561,"roll":20.517171622412814},"location":"Left Knee"},{"euler":{"heading":25.944026559938344,"pitch":96.60286321352821,"roll":15.76309577671386},"location":"Left Ankle"},{"euler":{"heading":31.816954293550296,"pitch":-15.337835923768036,"roll":-17.468178077853477},"location":"Right Ankle"},{"euler":{"heading":74.04633563913892,"pitch":-162.03135184604548,"roll":51.29143376351147},"location":"Right Hip"},{"euler":{"heading":16.576811017877034,"pitch":-103.11696488347138,"roll":31.25397107290119},"location":"Right Knee"},{"euler":{"heading":9.613949724142167,"pitch":-132.55578309930192,"roll":58.560305716532554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.142"} +{"sensors":[{"euler":{"heading":25.8619507156068,"pitch":126.34496283017417,"roll":20.396632020705024},"location":"Left Knee"},{"euler":{"heading":27.051506134128672,"pitch":97.0389764301136,"roll":16.249365267084865},"location":"Left Ankle"},{"euler":{"heading":35.088554981774514,"pitch":-16.126151759892938,"roll":-16.192963996709157},"location":"Right Ankle"},{"euler":{"heading":74.13679759657978,"pitch":-162.0580960422531,"roll":50.55027423470351},"location":"Right Hip"},{"euler":{"heading":14.149769579710831,"pitch":-102.40429230851043,"roll":33.60198983609751},"location":"Right Knee"},{"euler":{"heading":10.285686419549112,"pitch":-134.14976448699616,"roll":59.02424844219214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.242"} +{"sensors":[{"euler":{"heading":27.168607058834148,"pitch":125.38468027863853,"roll":19.657356131136446},"location":"Left Knee"},{"euler":{"heading":28.624183652625625,"pitch":97.45738564149327,"roll":17.384979402050657},"location":"Left Ankle"},{"euler":{"heading":37.66626781929823,"pitch":-16.780026037383955,"roll":-14.949874941182708},"location":"Right Ankle"},{"euler":{"heading":73.40825121929953,"pitch":-162.3676709648008,"roll":50.361187365728384},"location":"Right Hip"},{"euler":{"heading":11.746339169666745,"pitch":-102.16963888264101,"roll":35.934739264469655},"location":"Right Knee"},{"euler":{"heading":11.132969072593529,"pitch":-136.28177420386103,"roll":59.557019497115995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.343"} +{"sensors":[{"euler":{"heading":29.35026836983171,"pitch":124.81300991105334,"roll":17.781506355353088},"location":"Left Knee"},{"euler":{"heading":30.268608742972226,"pitch":97.46143932902113,"roll":19.554067394707},"location":"Left Ankle"},{"euler":{"heading":39.20020143333957,"pitch":-17.026872733098486,"roll":-14.31849516780045},"location":"Right Ankle"},{"euler":{"heading":73.2219444680101,"pitch":-162.50511021403773,"roll":50.39817313722539},"location":"Right Hip"},{"euler":{"heading":9.855701976370671,"pitch":-102.53994699267957,"roll":37.4986177841446},"location":"Right Knee"},{"euler":{"heading":11.547293724392551,"pitch":-137.58671936231994,"roll":59.961821747908346},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.443"} +{"sensors":[{"euler":{"heading":32.56942940357215,"pitch":124.01034487666118,"roll":15.477675265548548},"location":"Left Knee"},{"euler":{"heading":33.05977196177791,"pitch":98.10720063315361,"roll":22.812898123185782},"location":"Left Ankle"},{"euler":{"heading":39.95083345169557,"pitch":-17.071878927445557,"roll":-14.032550112013707},"location":"Right Ankle"},{"euler":{"heading":72.99210770461562,"pitch":-162.67703802640128,"roll":50.824030943231236},"location":"Right Hip"},{"euler":{"heading":8.854618610619644,"pitch":-103.44577910447997,"roll":38.31325641170956},"location":"Right Knee"},{"euler":{"heading":10.578574619238564,"pitch":-136.29428374311695,"roll":59.828711375824135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.544"} +{"sensors":[{"euler":{"heading":34.45022087076876,"pitch":124.05692328206221,"roll":14.136159381309682},"location":"Left Knee"},{"euler":{"heading":33.846955833067874,"pitch":97.5738161104407,"roll":24.251624696582923},"location":"Left Ankle"},{"euler":{"heading":40.291965977090065,"pitch":-17.172056987299896,"roll":-13.970000708915393},"location":"Right Ankle"},{"euler":{"heading":73.29737814673004,"pitch":-162.7196503741865,"roll":51.47691790171706},"location":"Right Hip"},{"euler":{"heading":8.766205482755359,"pitch":-104.1881550082225,"roll":38.52127022491956},"location":"Right Knee"},{"euler":{"heading":9.012498483881446,"pitch":-134.60160389049636,"roll":58.9888808950811},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.645"} +{"sensors":[{"euler":{"heading":32.393299756009135,"pitch":125.16922629247455,"roll":14.765300454101176},"location":"Left Knee"},{"euler":{"heading":31.655589390053173,"pitch":96.66310759995594,"roll":22.955393085571878},"location":"Left Ankle"},{"euler":{"heading":40.23240238144198,"pitch":-17.19730723317114,"roll":-14.139323002590928},"location":"Right Ankle"},{"euler":{"heading":73.93972355415902,"pitch":-162.64524838087124,"roll":52.186605191685686},"location":"Right Hip"},{"euler":{"heading":9.347796748871158,"pitch":-104.7469516172049,"roll":38.12685659329717},"location":"Right Knee"},{"euler":{"heading":7.801540747709616,"pitch":-132.7964559261098,"roll":58.074361225083564},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.747"} +{"sensors":[{"euler":{"heading":28.515276482806705,"pitch":126.87726786535885,"roll":16.55932790182967},"location":"Left Knee"},{"euler":{"heading":27.709099582409348,"pitch":95.95793631793636,"roll":19.648099968658492},"location":"Left Ankle"},{"euler":{"heading":39.595046319733285,"pitch":-17.083413476038622,"roll":-14.661147598935825},"location":"Right Ankle"},{"euler":{"heading":74.75699534511331,"pitch":-162.61954102472765,"roll":52.87040068693414},"location":"Right Hip"},{"euler":{"heading":10.555275879455337,"pitch":-105.12774128227043,"roll":37.24677445675898},"location":"Right Knee"},{"euler":{"heading":7.39859533181328,"pitch":-131.51974097838118,"roll":57.413303780788745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.847"} +{"sensors":[{"euler":{"heading":25.57182226333481,"pitch":128.3336525025475,"roll":18.31349539628865},"location":"Left Knee"},{"euler":{"heading":24.60256950216297,"pitch":95.65872693362319,"roll":16.649467543808413},"location":"Left Ankle"},{"euler":{"heading":38.318125804984625,"pitch":-16.813885240214606,"roll":-15.603012973509319},"location":"Right Ankle"},{"euler":{"heading":75.70560605242822,"pitch":-162.7805836151531,"roll":53.58427511102444},"location":"Right Hip"},{"euler":{"heading":12.590332613301607,"pitch":-105.16909767137133,"roll":35.68346538138506},"location":"Right Knee"},{"euler":{"heading":7.6691401357145095,"pitch":-130.72119189783328,"roll":57.04105106398651},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.948"} +{"sensors":[{"euler":{"heading":24.196208692562546,"pitch":128.78348375176253,"roll":19.74027453888192},"location":"Left Knee"},{"euler":{"heading":23.22422636256954,"pitch":95.67335458456375,"roll":14.815985322642078},"location":"Left Ankle"},{"euler":{"heading":35.6019532412508,"pitch":-16.57594116441602,"roll":-16.82983785808464},"location":"Right Ankle"},{"euler":{"heading":77.37412360608212,"pitch":-162.5933698148263,"roll":53.843797290711684},"location":"Right Hip"},{"euler":{"heading":15.885649131101811,"pitch":-104.7368407349467,"roll":33.03224197418245},"location":"Right Knee"},{"euler":{"heading":7.896607233022079,"pitch":-130.25425296406482,"roll":56.85878685602946},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.49"} +{"sensors":[{"euler":{"heading":23.729786950770706,"pitch":128.53059569231095,"roll":20.87080812103541},"location":"Left Knee"},{"euler":{"heading":22.71395249944782,"pitch":95.81738754906215,"roll":13.632537564564684},"location":"Left Ankle"},{"euler":{"heading":32.18294728301001,"pitch":-16.027694273357827,"roll":-18.088593811822847},"location":"Right Ankle"},{"euler":{"heading":79.26349102589816,"pitch":-161.71052779785398,"roll":53.40681268187524},"location":"Right Hip"},{"euler":{"heading":18.857334844223764,"pitch":-104.35759282111809,"roll":30.187317914975548},"location":"Right Knee"},{"euler":{"heading":8.44552080865868,"pitch":-130.40842639939532,"roll":56.907891591070836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.149"} +{"sensors":[{"euler":{"heading":23.67487325774783,"pitch":127.9093732866459,"roll":21.679768709961117},"location":"Left Knee"},{"euler":{"heading":23.77057710871096,"pitch":96.24498477021524,"roll":13.554531555220946},"location":"Left Ankle"},{"euler":{"heading":30.614147619958455,"pitch":-15.840755321443853,"roll":-18.811439170049574},"location":"Right Ankle"},{"euler":{"heading":80.76888585049073,"pitch":-160.86410359787396,"roll":52.37524828416642},"location":"Right Hip"},{"euler":{"heading":19.81016625938891,"pitch":-103.78849914581596,"roll":28.879367558677362},"location":"Right Knee"},{"euler":{"heading":9.126837641644945,"pitch":-131.04139463145214,"roll":57.184192239330905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.252"} +{"sensors":[{"euler":{"heading":24.123370518662774,"pitch":127.00241677169699,"roll":22.078839759082673},"location":"Left Knee"},{"euler":{"heading":24.80220879716274,"pitch":96.67352399243346,"roll":13.77526593497021},"location":"Left Ankle"},{"euler":{"heading":31.63045022101825,"pitch":-16.456379529017475,"roll":-18.544001238368168},"location":"Right Ankle"},{"euler":{"heading":81.27617395718227,"pitch":-160.43113266077643,"roll":51.245616217730976},"location":"Right Hip"},{"euler":{"heading":18.735407602060604,"pitch":-102.94654854269152,"roll":29.610224932662593},"location":"Right Knee"},{"euler":{"heading":9.815495887414757,"pitch":-132.048159266323,"roll":57.54717065482663},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.353"} +{"sensors":[{"euler":{"heading":25.15647403942607,"pitch":125.9023049661708,"roll":21.9762152111791},"location":"Left Knee"},{"euler":{"heading":26.003626153320567,"pitch":97.18614991466492,"roll":14.414955738192008},"location":"Left Ankle"},{"euler":{"heading":34.53751004030509,"pitch":-17.346379758785034,"roll":-17.356699406968684},"location":"Right Ankle"},{"euler":{"heading":80.87703376000225,"pitch":-160.36633996956715,"roll":50.37207300405488},"location":"Right Hip"},{"euler":{"heading":16.452303789234016,"pitch":-102.19063373261727,"roll":31.811394230404357},"location":"Right Knee"},{"euler":{"heading":10.522055889192927,"pitch":-133.36343641224028,"roll":58.012362852206095},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.454"} +{"sensors":[{"euler":{"heading":26.573127604709747,"pitch":124.7879350578407,"roll":21.294767360682446},"location":"Left Knee"},{"euler":{"heading":27.748344746975548,"pitch":97.8224262571182,"roll":15.701286705966224},"location":"Left Ankle"},{"euler":{"heading":37.35776020656471,"pitch":-18.151718786140442,"roll":-15.836441497892775},"location":"Right Ankle"},{"euler":{"heading":79.37899260109079,"pitch":-160.71793690405997,"roll":50.00374236167232},"location":"Right Hip"},{"euler":{"heading":13.869463968306395,"pitch":-101.88712494775922,"roll":34.35609107941534},"location":"Right Knee"},{"euler":{"heading":11.219492598728047,"pitch":-134.98760537877948,"roll":58.59382698393622},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.555"} +{"sensors":[{"euler":{"heading":28.773510829402564,"pitch":123.98765526690386,"roll":19.560424350615698},"location":"Left Knee"},{"euler":{"heading":29.795230417016686,"pitch":97.97606002088966,"roll":17.88784845200452},"location":"Left Ankle"},{"euler":{"heading":38.95354104490629,"pitch":-18.285919239029106,"roll":-15.322867609171611},"location":"Right Ankle"},{"euler":{"heading":78.4258822884508,"pitch":-160.94096328562088,"roll":49.87853490972134},"location":"Right Hip"},{"euler":{"heading":11.754637546400263,"pitch":-102.272416558563,"roll":36.076083692138894},"location":"Right Knee"},{"euler":{"heading":11.695428092109687,"pitch":-136.27297086278477,"roll":59.07241692451945},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.657"} +{"sensors":[{"euler":{"heading":31.960438884624292,"pitch":123.13270526092387,"roll":17.265733054014763},"location":"Left Knee"},{"euler":{"heading":32.13709261987067,"pitch":98.76906322343099,"roll":20.912787824260402},"location":"Left Ankle"},{"euler":{"heading":39.99262580784137,"pitch":-18.312228962335556,"roll":-14.899764549905134},"location":"Right Ankle"},{"euler":{"heading":77.34821122520367,"pitch":-161.31518822111317,"roll":50.17546403287399},"location":"Right Hip"},{"euler":{"heading":10.433246210003604,"pitch":-103.15613502104775,"roll":37.103329763311784},"location":"Right Knee"},{"euler":{"heading":10.771210569069465,"pitch":-135.26008346529687,"roll":59.01202050161552},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.757"} +{"sensors":[{"euler":{"heading":34.02886909868387,"pitch":123.15575352907284,"roll":15.771964235035565},"location":"Left Knee"},{"euler":{"heading":32.960670228842545,"pitch":98.38675014789956,"roll":22.40741078149306},"location":"Left Ankle"},{"euler":{"heading":40.53427127943116,"pitch":-18.34792659051193,"roll":-14.707158980082717},"location":"Right Ankle"},{"euler":{"heading":76.85226033220222,"pitch":-161.50518234823454,"roll":50.74735848514274},"location":"Right Hip"},{"euler":{"heading":9.927987267718734,"pitch":-103.92606329562656,"roll":37.551289214631986},"location":"Right Knee"},{"euler":{"heading":9.295080049109073,"pitch":-133.69550837152426,"roll":58.33905729090646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.858"} +{"sensors":[{"euler":{"heading":32.2801643829409,"pitch":124.20514755134023,"roll":16.191991730144608},"location":"Left Knee"},{"euler":{"heading":30.876391937560108,"pitch":97.44627381151898,"roll":21.244992721892572},"location":"Left Ankle"},{"euler":{"heading":40.597270311571144,"pitch":-18.35050194647701,"roll":-14.812304458355356},"location":"Right Ankle"},{"euler":{"heading":76.90396497016134,"pitch":-161.5700877616192,"roll":51.38375767472855},"location":"Right Hip"},{"euler":{"heading":10.180156251914665,"pitch":-104.49195543544946,"roll":37.43939479487302},"location":"Right Knee"},{"euler":{"heading":8.026972916786514,"pitch":-131.99438859554937,"roll":57.53391450153818},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.958"} +{"sensors":[{"euler":{"heading":28.375078902027784,"pitch":125.90977211727778,"roll":17.90381305017015},"location":"Left Knee"},{"euler":{"heading":27.03542171435951,"pitch":96.6547132894864,"roll":18.064729460376235},"location":"Left Ankle"},{"euler":{"heading":40.10783085650042,"pitch":-18.14474655509201,"roll":-15.276057053855002},"location":"Right Ankle"},{"euler":{"heading":77.21978482187151,"pitch":-161.68232682122957,"roll":51.97745536393148},"location":"Right Hip"},{"euler":{"heading":11.064397009566143,"pitch":-104.93861874577074,"roll":36.73766825311135},"location":"Right Knee"},{"euler":{"heading":7.392929101473939,"pitch":-130.74640777907078,"roll":56.90048577915778},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.59"} +{"sensors":[{"euler":{"heading":25.24894287063723,"pitch":127.5176427882442,"roll":19.55386773029318},"location":"Left Knee"},{"euler":{"heading":24.110415876477468,"pitch":96.12869974429368,"roll":15.288058723059446},"location":"Left Ankle"},{"euler":{"heading":38.87473529846706,"pitch":-17.792095015806048,"roll":-16.153483906885874},"location":"Right Ankle"},{"euler":{"heading":77.65079169228386,"pitch":-162.02764676160677,"roll":52.66925560497905},"location":"Right Hip"},{"euler":{"heading":12.84667713225447,"pitch":-105.05147317000893,"roll":35.31196747998436},"location":"Right Knee"},{"euler":{"heading":7.438578942822083,"pitch":-129.95602357490995,"roll":56.51161645089069},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.160"} +{"sensors":[{"euler":{"heading":23.705913709097437,"pitch":128.21751081893632,"roll":20.779422244671476},"location":"Left Knee"},{"euler":{"heading":22.82125151186323,"pitch":95.84297304048891,"roll":13.619752255479224},"location":"Left Ankle"},{"euler":{"heading":36.06364979367162,"pitch":-17.32435673609611,"roll":-17.32199997925234},"location":"Right Ankle"},{"euler":{"heading":78.78848025288914,"pitch":-161.95367317408676,"roll":52.95042055992608},"location":"Right Hip"},{"euler":{"heading":15.756661208466582,"pitch":-104.62445994747517,"roll":32.82093424175435},"location":"Right Knee"},{"euler":{"heading":7.339214907679673,"pitch":-129.23487929887492,"roll":56.30242567009127},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.261"} +{"sensors":[{"euler":{"heading":23.00728734262546,"pitch":128.2681638107362,"roll":21.75165390616101},"location":"Left Knee"},{"euler":{"heading":22.372106516960827,"pitch":95.75089468054092,"roll":12.710619380405225},"location":"Left Ankle"},{"euler":{"heading":33.28631144546214,"pitch":-16.853549562760882,"roll":-18.15343936172663},"location":"Right Ankle"},{"euler":{"heading":80.04701032191221,"pitch":-161.28626024835617,"roll":52.61030895814422},"location":"Right Hip"},{"euler":{"heading":18.109626450860688,"pitch":-104.07159771096428,"roll":30.453899501099535},"location":"Right Knee"},{"euler":{"heading":7.572957048360244,"pitch":-129.08768496380756,"roll":56.39850891191026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.362"} +{"sensors":[{"euler":{"heading":22.75035414150583,"pitch":128.0107877518561,"roll":22.393589801780895},"location":"Left Knee"},{"euler":{"heading":23.437166223335048,"pitch":95.81026265035709,"roll":12.773818535004223},"location":"Left Ankle"},{"euler":{"heading":32.35586936489816,"pitch":-16.82586349581312,"roll":-18.51339783468161},"location":"Right Ankle"},{"euler":{"heading":81.02993090566136,"pitch":-160.6109912336298,"roll":51.74963683697863},"location":"Right Hip"},{"euler":{"heading":18.57368614382711,"pitch":-103.54159991344662,"roll":29.61405112495436},"location":"Right Knee"},{"euler":{"heading":7.924868163459434,"pitch":-129.54902324070645,"roll":56.68164739441665},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.463"} +{"sensors":[{"euler":{"heading":22.94425843568253,"pitch":127.54008226556329,"roll":22.653414983761387},"location":"Left Knee"},{"euler":{"heading":24.261673485642298,"pitch":95.71535055609479,"roll":13.06287287226124},"location":"Left Ankle"},{"euler":{"heading":33.5678665373883,"pitch":-17.39534182615164,"roll":-18.018662833970556},"location":"Right Ankle"},{"euler":{"heading":76.68016349575599,"pitch":-160.33883966576673,"roll":50.64384416490235},"location":"Right Hip"},{"euler":{"heading":17.348424654848326,"pitch":-102.73502619578295,"roll":30.54850593269396},"location":"Right Knee"},{"euler":{"heading":8.432988981867245,"pitch":-130.62640589619664,"roll":57.080539733825965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.563"} +{"sensors":[{"euler":{"heading":23.762956205969324,"pitch":126.83472314363188,"roll":22.44262624383338},"location":"Left Knee"},{"euler":{"heading":25.31727881858723,"pitch":95.72459188936594,"roll":13.794110240480107},"location":"Left Ankle"},{"euler":{"heading":36.4746375520073,"pitch":-18.178187417799343,"roll":-16.839716623935583},"location":"Right Ankle"},{"euler":{"heading":77.00680988116389,"pitch":-160.34227941473915,"roll":49.75620077931743},"location":"Right Hip"},{"euler":{"heading":15.13233913193572,"pitch":-102.05274020106336,"roll":32.80905401410149},"location":"Right Knee"},{"euler":{"heading":9.063068826957936,"pitch":-132.0531459900182,"roll":57.64362792976511},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.664"} +{"sensors":[{"euler":{"heading":25.22403095920506,"pitch":126.03593794730818,"roll":21.586014312536182},"location":"Left Knee"},{"euler":{"heading":27.02584099375799,"pitch":95.92914929309904,"roll":15.22867870213037},"location":"Left Ankle"},{"euler":{"heading":38.9141515574306,"pitch":-18.666588501563627,"roll":-15.535105275208709},"location":"Right Ankle"},{"euler":{"heading":76.18033098177378,"pitch":-160.6604932618929,"roll":49.43456431901149},"location":"Right Hip"},{"euler":{"heading":46.58180688058138,"pitch":-101.92287183346347,"roll":35.47287962847132},"location":"Right Knee"},{"euler":{"heading":9.703828975426038,"pitch":-133.9684248441845,"roll":58.236386711727846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.765"} +{"sensors":[{"euler":{"heading":27.59158297174554,"pitch":125.34880897619728,"roll":19.75856807504352},"location":"Left Knee"},{"euler":{"heading":29.0015046745062,"pitch":95.88238119245516,"roll":17.585048707746044},"location":"Left Ankle"},{"euler":{"heading":40.001990891918446,"pitch":-18.69235893671384,"roll":-14.978852279678478},"location":"Right Ankle"},{"euler":{"heading":75.83060288171123,"pitch":-160.8116949663301,"roll":49.37539049920365},"location":"Right Hip"},{"euler":{"heading":38.2897652428136,"pitch":-102.35827079316341,"roll":37.205543970071766},"location":"Right Knee"},{"euler":{"heading":10.28793576076814,"pitch":-135.6182786400667,"roll":58.71330628457504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.866"} +{"sensors":[{"euler":{"heading":31.123474414528765,"pitch":124.53084794328004,"roll":17.278559758665168},"location":"Left Knee"},{"euler":{"heading":31.861745229842807,"pitch":96.85076419969369,"roll":20.947947878458447},"location":"Left Ankle"},{"euler":{"heading":40.648954937254956,"pitch":-18.757295114594164,"roll":-14.677653266136602},"location":"Right Ankle"},{"euler":{"heading":75.3302148212523,"pitch":-161.1090369262592,"roll":49.75585304088739},"location":"Right Hip"},{"euler":{"heading":32.28503122064998,"pitch":-103.15653337917813,"roll":38.10156898994212},"location":"Right Knee"},{"euler":{"heading":9.422562235219695,"pitch":-134.76279371115336,"roll":58.65139838753562},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.967"} +{"sensors":[{"euler":{"heading":33.88458649922831,"pitch":124.32577307589094,"roll":15.36739926677723},"location":"Left Knee"},{"euler":{"heading":33.198950081503746,"pitch":96.56769486238926,"roll":22.950522693881172},"location":"Left Ankle"},{"euler":{"heading":41.06572754549587,"pitch":-18.875507319853245,"roll":-14.83316793413236},"location":"Right Ankle"},{"euler":{"heading":75.35450508085465,"pitch":-161.24135218011543,"roll":50.43900664750704},"location":"Right Hip"},{"euler":{"heading":28.093689097506203,"pitch":-103.8550800684915,"roll":38.39511793648641},"location":"Right Knee"},{"euler":{"heading":7.9648865779629805,"pitch":-133.4001012646467,"roll":57.86410663670794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.68"} +{"sensors":[{"euler":{"heading":33.23812662804529,"pitch":125.10334577423235,"roll":15.302723902075885},"location":"Left Knee"},{"euler":{"heading":31.64224475227499,"pitch":95.78836540285995,"roll":22.289354764957608},"location":"Left Ankle"},{"euler":{"heading":41.091879197488495,"pitch":-19.083544827906643,"roll":-15.140357894921324},"location":"Right Ankle"},{"euler":{"heading":75.80840137536336,"pitch":-161.3670262633961,"roll":51.14040962732771},"location":"Right Hip"},{"euler":{"heading":25.404986201813664,"pitch":-104.26720117642837,"roll":38.173227837286476},"location":"Right Knee"},{"euler":{"heading":6.670273113685018,"pitch":-131.78058983527322,"roll":56.9376748778092},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.168"} +{"sensors":[{"euler":{"heading":29.21296510971825,"pitch":126.69280276618504,"roll":16.902941603290834},"location":"Left Knee"},{"euler":{"heading":27.98949308112525,"pitch":94.90481036866079,"roll":19.342683872487427},"location":"Left Ankle"},{"euler":{"heading":40.56632384021009,"pitch":-19.140996016526913,"roll":-15.679919970083887},"location":"Right Ankle"},{"euler":{"heading":76.41191816243165,"pitch":-161.58181583890652,"roll":51.76914639579838},"location":"Right Hip"},{"euler":{"heading":23.875298971446604,"pitch":-104.50337722079405,"roll":37.38980486937782},"location":"Right Knee"},{"euler":{"heading":6.03830717323627,"pitch":-130.51727476344402,"roll":56.23611194302403},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.269"} +{"sensors":[{"euler":{"heading":25.132386652403525,"pitch":128.49967185844304,"roll":18.82656333040121},"location":"Left Knee"},{"euler":{"heading":24.463546319751817,"pitch":94.23015489823715,"roll":15.90937013533881},"location":"Left Ankle"},{"euler":{"heading":39.31554723617627,"pitch":-18.800591862175875,"roll":-16.619999624316684},"location":"Right Ankle"},{"euler":{"heading":76.98931135466584,"pitch":-161.98425933962085,"roll":52.46292608831594},"location":"Right Hip"},{"euler":{"heading":23.306503116099563,"pitch":-104.62790742301844,"roll":36.015030496355415},"location":"Right Knee"},{"euler":{"heading":6.091603683874738,"pitch":-129.69517905090646,"roll":55.76775374112098},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.370"} +{"sensors":[{"euler":{"heading":23.34293876197516,"pitch":129.2190852953001,"roll":20.35911492400075},"location":"Left Knee"},{"euler":{"heading":22.83096487449229,"pitch":94.17258958576106,"roll":13.932258547967065},"location":"Left Ankle"},{"euler":{"heading":36.87048419813398,"pitch":-18.569857625549254,"roll":-17.797646194073128},"location":"Right Ankle"},{"euler":{"heading":77.99715795537665,"pitch":-162.3781469718478,"roll":53.043147580730405},"location":"Right Hip"},{"euler":{"heading":24.45195205743826,"pitch":-104.16389686001472,"roll":33.56413398077042},"location":"Right Knee"},{"euler":{"heading":6.497906573543822,"pitch":-129.0047928974875,"roll":55.54608853582071},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.472"} +{"sensors":[{"euler":{"heading":22.644685468857052,"pitch":129.1804089008095,"roll":21.508070361909034},"location":"Left Knee"},{"euler":{"heading":22.546528421115077,"pitch":94.54261701039557,"roll":12.922054844724865},"location":"Left Ankle"},{"euler":{"heading":33.28107212002547,"pitch":-17.439549283569495,"roll":-19.29133137464657},"location":"Right Ankle"},{"euler":{"heading":79.3990764897546,"pitch":-161.86655116079413,"roll":53.003371324740435},"location":"Right Hip"},{"euler":{"heading":25.574148934763723,"pitch":-103.92238449430958,"roll":30.66861373593904},"location":"Right Knee"},{"euler":{"heading":7.008946164147321,"pitch":-128.47520459501592,"roll":55.69033705802897},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.572"} +{"sensors":[{"euler":{"heading":22.370221816921894,"pitch":128.88381805990264,"roll":22.23857550702577},"location":"Left Knee"},{"euler":{"heading":23.56214676491483,"pitch":94.93095337374358,"roll":12.887852218175576},"location":"Left Ankle"},{"euler":{"heading":30.90686965850066,"pitch":-16.73186273845935,"roll":-20.20297710484365},"location":"Right Ankle"},{"euler":{"heading":80.90368431057226,"pitch":-161.1063554801843,"roll":52.247996559580805},"location":"Right Hip"},{"euler":{"heading":25.737948443015014,"pitch":-103.37090874664378,"roll":28.63711508317192},"location":"Right Knee"},{"euler":{"heading":7.397658284166602,"pitch":-128.9650784810894,"roll":55.91004356516675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.673"} +{"sensors":[{"euler":{"heading":22.621115888613893,"pitch":128.20521417358836,"roll":22.739068101384166},"location":"Left Knee"},{"euler":{"heading":24.512640107045538,"pitch":95.31207580894542,"roll":13.064988880622895},"location":"Left Ankle"},{"euler":{"heading":31.043732946547067,"pitch":-17.042744040458835,"roll":-20.177723615959913},"location":"Right Ankle"},{"euler":{"heading":81.64219501674118,"pitch":-160.57899666020492,"roll":51.136414611140715},"location":"Right Hip"},{"euler":{"heading":24.141982782936413,"pitch":-102.46166586043799,"roll":28.576509560597685},"location":"Right Knee"},{"euler":{"heading":8.04292726239249,"pitch":-130.02071983717175,"roll":56.2991003519012},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.774"} +{"sensors":[{"euler":{"heading":23.50431274930084,"pitch":127.21660804874323,"roll":22.81739699648967},"location":"Left Knee"},{"euler":{"heading":25.606004320570282,"pitch":95.78774076994891,"roll":13.593884504519897},"location":"Left Ankle"},{"euler":{"heading":33.468521122641846,"pitch":-17.79967739272543,"roll":-19.191732528264172},"location":"Right Ankle"},{"euler":{"heading":77.11014098912324,"pitch":-160.47635718709432,"roll":50.041392194462816},"location":"Right Hip"},{"euler":{"heading":21.158631095352046,"pitch":-101.67458647857627,"roll":30.447948803572633},"location":"Right Knee"},{"euler":{"heading":8.767467947946848,"pitch":-131.32077123377616,"roll":56.82356206322983},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.875"} +{"sensors":[{"euler":{"heading":24.81605882805652,"pitch":126.08423069945427,"roll":22.394814328827703},"location":"Left Knee"},{"euler":{"heading":27.054163352342325,"pitch":96.36084552161064,"roll":14.583765429064306},"location":"Left Ankle"},{"euler":{"heading":36.83919170675992,"pitch":-18.56189651802194,"roll":-17.687167080653076},"location":"Right Ankle"},{"euler":{"heading":76.69894583651252,"pitch":-160.71641851275845,"roll":49.40725215712643},"location":"Right Hip"},{"euler":{"heading":17.66949185315527,"pitch":-101.09912003683579,"roll":33.15206983054116},"location":"Right Knee"},{"euler":{"heading":9.640150527530661,"pitch":-133.03223302881366,"roll":57.500274854382326},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.975"} +{"sensors":[{"euler":{"heading":26.59760669055762,"pitch":125.0476800419133,"roll":21.263321043920545},"location":"Left Knee"},{"euler":{"heading":29.244671372815468,"pitch":96.77241819126941,"roll":16.40100668950799},"location":"Left Ankle"},{"euler":{"heading":38.86187495105069,"pitch":-18.924617689218184,"roll":-16.43273884106758},"location":"Right Ankle"},{"euler":{"heading":75.51802601255294,"pitch":-161.29036248094704,"roll":49.13664533014867},"location":"Right Hip"},{"euler":{"heading":47.975514378512706,"pitch":-101.19670678828494,"roll":35.34331332801399},"location":"Right Knee"},{"euler":{"heading":10.657912758495424,"pitch":-135.2229853774537,"roll":58.27313869990725},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.76"} +{"sensors":[{"euler":{"heading":29.346467887100307,"pitch":124.3178169516063,"roll":19.145524366768797},"location":"Left Knee"},{"euler":{"heading":31.27012394270074,"pitch":97.24591027243666,"roll":19.121483696660704},"location":"Left Ankle"},{"euler":{"heading":40.1256554772134,"pitch":-18.830718196053628,"roll":-15.904059367467472},"location":"Right Ankle"},{"euler":{"heading":75.06833191486021,"pitch":-161.554061846144,"roll":49.26038902911584},"location":"Right Hip"},{"euler":{"heading":39.58550941677319,"pitch":-101.82008829371227,"roll":36.76725604217851},"location":"Right Knee"},{"euler":{"heading":10.682693523861312,"pitch":-136.1470778229242,"roll":58.59792955216451},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.177"} +{"sensors":[{"euler":{"heading":32.346341190404814,"pitch":123.7465616451646,"roll":16.84273793777144},"location":"Left Knee"},{"euler":{"heading":32.999905984248855,"pitch":97.49005692000655,"roll":21.969620536293323},"location":"Left Ankle"},{"euler":{"heading":40.827500363611364,"pitch":-18.585227579021005,"roll":-15.764553022069084},"location":"Right Ankle"},{"euler":{"heading":74.38502157522522,"pitch":-161.99481728899397,"roll":49.859876843483256},"location":"Right Hip"},{"euler":{"heading":33.12006344414156,"pitch":-102.70521729373394,"roll":37.49688740017635},"location":"Right Knee"},{"euler":{"heading":9.448524078941047,"pitch":-134.8964630708521,"roll":58.41620009008089},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.278"} +{"sensors":[{"euler":{"heading":33.73842410722746,"pitch":124.04415409956411,"roll":15.704307800253556},"location":"Left Knee"},{"euler":{"heading":32.91208680024151,"pitch":96.66460499507896,"roll":22.828634678160522},"location":"Left Ankle"},{"euler":{"heading":41.05139703958833,"pitch":-18.273909623429372,"roll":-15.85234828132952},"location":"Right Ankle"},{"euler":{"heading":74.06334012103413,"pitch":-162.28068505989154,"roll":50.71743973031943},"location":"Right Hip"},{"euler":{"heading":28.4028581890066,"pitch":-103.66667177252154,"roll":37.64581617657374},"location":"Right Knee"},{"euler":{"heading":7.843456724262694,"pitch":-133.37242264635194,"roll":57.63939094370009},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.379"} +{"sensors":[{"euler":{"heading":31.162442813194954,"pitch":125.38359346714992,"roll":16.612341025927975},"location":"Left Knee"},{"euler":{"heading":28.482270060511798,"pitch":95.95929127346514,"roll":20.781914045750618},"location":"Left Ankle"},{"euler":{"heading":40.770989398506366,"pitch":-17.99815107169531,"roll":-16.133932482594822},"location":"Right Ankle"},{"euler":{"heading":74.29340823072565,"pitch":-162.59286744999756,"roll":51.55882539831489},"location":"Right Hip"},{"euler":{"heading":25.277633828071426,"pitch":-104.33452750984279,"roll":37.245500428641535},"location":"Right Knee"},{"euler":{"heading":6.582737097464619,"pitch":-131.7912159891237,"roll":56.853241400030356},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.484"} +{"sensors":[{"euler":{"heading":27.323147627238125,"pitch":127.28527445370788,"roll":18.28417665199093},"location":"Left Knee"},{"euler":{"heading":24.76596134219132,"pitch":95.20216431212033,"roll":17.366271648875184},"location":"Left Ankle"},{"euler":{"heading":39.899298705205794,"pitch":-17.516757033370226,"roll":-16.64437923648718},"location":"Right Ankle"},{"euler":{"heading":74.6125845151509,"pitch":-163.07749397379513,"roll":52.39746331939615},"location":"Right Hip"},{"euler":{"heading":23.491593528749355,"pitch":-104.84967390791323,"roll":36.247116769304625},"location":"Right Knee"},{"euler":{"heading":6.198499776154273,"pitch":-130.81821017877942,"roll":56.27267103807311},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.585"} +{"sensors":[{"euler":{"heading":25.338871912498664,"pitch":128.29262127000916,"roll":19.75536189121082},"location":"Left Knee"},{"euler":{"heading":22.484051201948173,"pitch":95.09375383335504,"roll":15.024650729021971},"location":"Left Ankle"},{"euler":{"heading":38.08567740812573,"pitch":-16.968194720536495,"roll":-17.48676947063442},"location":"Right Ankle"},{"euler":{"heading":75.33171439491872,"pitch":-163.64681720504282,"roll":53.10876341268513},"location":"Right Hip"},{"euler":{"heading":23.331208053599358,"pitch":-104.8996455114331,"roll":34.41623628842885},"location":"Right Knee"},{"euler":{"heading":6.418964363595385,"pitch":-130.12206600654466,"roll":55.96730376855802},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.686"} +{"sensors":[{"euler":{"heading":24.487039117436822,"pitch":128.45503553847706,"roll":20.87851498252797},"location":"Left Knee"},{"euler":{"heading":21.816577813523633,"pitch":95.39993681130643,"roll":13.654885076992446},"location":"Left Ankle"},{"euler":{"heading":34.75764090944616,"pitch":-15.692979056258253,"roll":-18.53440216540552},"location":"Right Ankle"},{"euler":{"heading":77.05609091039194,"pitch":-163.14533600475983,"roll":53.211378146382344},"location":"Right Hip"},{"euler":{"heading":23.984665208147444,"pitch":-104.7248871880059,"roll":31.826104873582167},"location":"Right Knee"},{"euler":{"heading":6.712441371630403,"pitch":-129.70022826119018,"roll":55.95852337977617},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.787"} +{"sensors":[{"euler":{"heading":24.514886886074095,"pitch":127.91234447802907,"roll":21.722414302595237},"location":"Left Knee"},{"euler":{"heading":22.280753628697845,"pitch":96.0277673071445,"roll":13.14669111339647},"location":"Left Ankle"},{"euler":{"heading":31.777000034618347,"pitch":-14.895786639939482,"roll":-19.202949423536445},"location":"Right Ankle"},{"euler":{"heading":78.82472697363073,"pitch":-162.26349601564814,"roll":52.5907947467496},"location":"Right Hip"},{"euler":{"heading":24.39486375186619,"pitch":-104.17436243332216,"roll":29.52397666083428},"location":"Right Knee"},{"euler":{"heading":7.404583404360156,"pitch":-129.97250163700858,"roll":56.17055460685349},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.887"} +{"sensors":[{"euler":{"heading":24.817118066886326,"pitch":127.20724578792323,"roll":22.1828270769011},"location":"Left Knee"},{"euler":{"heading":23.89149895676113,"pitch":96.66721916753339,"roll":13.501346205324024},"location":"Left Ankle"},{"euler":{"heading":31.102210908755428,"pitch":-15.06027792588905,"roll":-19.51658110236194},"location":"Right Ankle"},{"euler":{"heading":80.2015405573207,"pitch":-161.56066590866547,"roll":51.46444007037261},"location":"Right Hip"},{"euler":{"heading":23.446547424419713,"pitch":-103.3075972303282,"roll":28.867712044282293},"location":"Right Knee"},{"euler":{"heading":8.215066156688557,"pitch":-130.9442025592374,"roll":56.57644745443749},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.988"} +{"sensors":[{"euler":{"heading":25.4867014685999,"pitch":126.34924317363522,"roll":22.236779356955797},"location":"Left Knee"},{"euler":{"heading":25.049852164740756,"pitch":97.08531991376901,"roll":14.012514603249826},"location":"Left Ankle"},{"euler":{"heading":32.90403612897401,"pitch":-15.80959806104894,"roll":-18.75994975813679},"location":"Right Ankle"},{"euler":{"heading":75.96620653836207,"pitch":-162.91042520694546,"roll":50.21930810501465},"location":"Right Hip"},{"euler":{"heading":20.79134984321555,"pitch":-102.3389784633158,"roll":30.414185292554468},"location":"Right Knee"},{"euler":{"heading":9.057047777002337,"pitch":-132.44178249987985,"roll":57.145870235757435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.89"} +{"sensors":[{"euler":{"heading":26.575978619676633,"pitch":125.43611591574808,"roll":21.750521744484722},"location":"Left Knee"},{"euler":{"heading":26.50366165314253,"pitch":97.45770355151905,"roll":15.022026448550024},"location":"Left Ankle"},{"euler":{"heading":35.84785963254774,"pitch":-16.701670251257454,"roll":-17.213223306117193},"location":"Right Ankle"},{"euler":{"heading":75.82174663497089,"pitch":-162.9367819250153,"roll":49.55040790769951},"location":"Right Hip"},{"euler":{"heading":17.136895368096845,"pitch":-101.4803354038064,"roll":33.29393199194928},"location":"Right Knee"},{"euler":{"heading":9.871312867379558,"pitch":-134.27847518300692,"roll":57.79786879477042},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.190"} +{"sensors":[{"euler":{"heading":28.222931628375644,"pitch":124.47905304930622,"roll":20.620863665157838},"location":"Left Knee"},{"euler":{"heading":28.835538336662687,"pitch":97.87789853151021,"roll":16.88081247043748},"location":"Left Ankle"},{"euler":{"heading":38.056118639998296,"pitch":-17.205673455191185,"roll":-16.05738669971331},"location":"Right Ankle"},{"euler":{"heading":75.09704164641795,"pitch":-163.12115476816393,"roll":49.30780055448154},"location":"Right Hip"},{"euler":{"heading":47.90208872378273,"pitch":-101.30384676828649,"roll":35.94136016462655},"location":"Right Knee"},{"euler":{"heading":10.94825845926097,"pitch":-136.68361607087425,"roll":58.500806886573464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.290"} +{"sensors":[{"euler":{"heading":30.84969609051297,"pitch":123.89246017165166,"roll":18.338259006346856},"location":"Left Knee"},{"euler":{"heading":30.845946645599426,"pitch":98.41270049502181,"roll":19.728061911192484},"location":"Left Ankle"},{"euler":{"heading":39.12107524839776,"pitch":-17.42392108874557,"roll":-15.552521954025176},"location":"Right Ankle"},{"euler":{"heading":75.08629414109431,"pitch":-163.13341116078888,"roll":49.37364597272589},"location":"Right Hip"},{"euler":{"heading":39.436208956597405,"pitch":-101.70300551703791,"roll":37.59973379366319},"location":"Right Knee"},{"euler":{"heading":11.23552957028638,"pitch":-137.7006331329104,"roll":58.99419066428349},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.391"} +{"sensors":[{"euler":{"heading":34.12415110142494,"pitch":123.15952643652204,"roll":15.814998250606667},"location":"Left Knee"},{"euler":{"heading":32.747714999050466,"pitch":98.8074498491344,"roll":22.89305242576428},"location":"Left Ankle"},{"euler":{"heading":39.66606863590175,"pitch":-17.561954856954593,"roll":-15.339440040431835},"location":"Right Ankle"},{"euler":{"heading":74.51863517889566,"pitch":-163.4655482766789,"roll":49.90885246056002},"location":"Right Hip"},{"euler":{"heading":33.098886620155405,"pitch":-102.52198300795239,"roll":38.470152152568616},"location":"Right Knee"},{"euler":{"heading":10.317357163042727,"pitch":-136.32601778368903,"roll":59.0066338921368},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.495"} +{"sensors":[{"euler":{"heading":35.96698290995824,"pitch":123.2156951881747,"roll":14.358160237008674},"location":"Left Knee"},{"euler":{"heading":33.21094424522629,"pitch":98.23123540488314,"roll":24.211193482540533},"location":"Left Ankle"},{"euler":{"heading":39.98745716573356,"pitch":-17.63335040512363,"roll":-15.473619446523296},"location":"Right Ankle"},{"euler":{"heading":74.50568002056156,"pitch":-163.6471847228701,"roll":50.62501447030773},"location":"Right Hip"},{"euler":{"heading":28.47469824302572,"pitch":-103.23332879082997,"roll":38.788092730760496},"location":"Right Knee"},{"euler":{"heading":8.85806699253482,"pitch":-134.52924900333934,"roll":58.340128389857384},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.596"} +{"sensors":[{"euler":{"heading":34.02761315876329,"pitch":124.33667626389979,"roll":14.859167958504905},"location":"Left Knee"},{"euler":{"heading":30.908902107509224,"pitch":97.28771647342772,"roll":22.83557358088458},"location":"Left Ankle"},{"euler":{"heading":39.82849290137625,"pitch":-17.56715768963171,"roll":-15.68421466142921},"location":"Right Ankle"},{"euler":{"heading":74.78044711699722,"pitch":-163.7758711705503,"roll":51.38601246960087},"location":"Right Hip"},{"euler":{"heading":25.187823695187234,"pitch":-103.81160947775976,"roll":38.606109934020736},"location":"Right Knee"},{"euler":{"heading":7.484842567469051,"pitch":-132.6418041775987,"roll":57.53488371228497},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.697"} +{"sensors":[{"euler":{"heading":29.93668481713397,"pitch":126.1774218619,"roll":16.584813190968426},"location":"Left Knee"},{"euler":{"heading":27.00853323736534,"pitch":96.24369986276157,"roll":19.521842362135516},"location":"Left Ankle"},{"euler":{"heading":39.12163829603631,"pitch":-17.24566801561172,"roll":-16.24338609559287},"location":"Right Ankle"},{"euler":{"heading":75.19567595913806,"pitch":-163.99933186715506,"roll":52.09245651645986},"location":"Right Hip"},{"euler":{"heading":23.126737016580254,"pitch":-104.28137349085762,"roll":37.840962166669755},"location":"Right Knee"},{"euler":{"heading":6.83012721162495,"pitch":-131.2906208510309,"roll":56.95487056241745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.798"} +{"sensors":[{"euler":{"heading":27.104278926291965,"pitch":127.6528168345742,"roll":18.22954086206757},"location":"Left Knee"},{"euler":{"heading":23.94571223794942,"pitch":95.92919785879087,"roll":16.606563873733748},"location":"Left Ankle"},{"euler":{"heading":37.75214060399605,"pitch":-16.740728947309716,"roll":-17.23688161582154},"location":"Right Ankle"},{"euler":{"heading":75.67835226412821,"pitch":-164.45718411023248,"roll":52.862496896195644},"location":"Right Hip"},{"euler":{"heading":22.45576910082526,"pitch":-104.4626936263095,"roll":36.32814656897263},"location":"Right Knee"},{"euler":{"heading":6.823179372443589,"pitch":-130.40090595987718,"roll":56.55488257826301},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.898"} +{"sensors":[{"euler":{"heading":25.77797445224477,"pitch":128.09012352447863,"roll":19.539454713088947},"location":"Left Knee"},{"euler":{"heading":22.73395481367093,"pitch":96.09645621277748,"roll":14.97930332002717},"location":"Left Ankle"},{"euler":{"heading":35.019619024930776,"pitch":-15.998447402563295,"roll":-18.349902026646564},"location":"Right Ankle"},{"euler":{"heading":76.62053539635131,"pitch":-164.4969288141455,"roll":53.47605293816744},"location":"Right Hip"},{"euler":{"heading":23.19056775151234,"pitch":-104.29382847112072,"roll":33.86530083428143},"location":"Right Knee"},{"euler":{"heading":6.8174904893170245,"pitch":-129.55420797495927,"roll":56.41291980195262},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.999"} +{"sensors":[{"euler":{"heading":25.411380021181266,"pitch":127.78428515008063,"roll":20.534513267296205},"location":"Left Knee"},{"euler":{"heading":22.550330996088466,"pitch":96.51534297193953,"roll":14.053804100862763},"location":"Left Ankle"},{"euler":{"heading":31.60506243367862,"pitch":-14.993838104938744,"roll":-19.523515071189934},"location":"Right Ankle"},{"euler":{"heading":77.96274344688925,"pitch":-163.82540119902944,"roll":53.25835451849432},"location":"Right Hip"},{"euler":{"heading":24.11326669509615,"pitch":-104.0577922939172,"roll":31.14921788282396},"location":"Right Knee"},{"euler":{"heading":7.25278520215471,"pitch":-129.21016891104392,"roll":56.62928906581208},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.99"} +{"sensors":[{"euler":{"heading":25.3906423600688,"pitch":127.25189139938234,"roll":21.17926872637532},"location":"Left Knee"},{"euler":{"heading":23.244213697488995,"pitch":96.9181643913141,"roll":13.894107991761073},"location":"Left Ankle"},{"euler":{"heading":29.867491986378305,"pitch":-14.8814634098833,"roll":-20.246605731918155},"location":"Right Ankle"},{"euler":{"heading":79.3233354668396,"pitch":-163.08695582819152,"roll":52.37765426732877},"location":"Right Hip"},{"euler":{"heading":23.774834978756836,"pitch":-103.3804750450369,"roll":29.749766867138842},"location":"Right Knee"},{"euler":{"heading":7.847016342108639,"pitch":-129.73714491112173,"roll":57.00938075665139},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.200"} +{"sensors":[{"euler":{"heading":25.789833919449297,"pitch":126.56205579586303,"roll":21.42380933819114},"location":"Left Knee"},{"euler":{"heading":24.056121707422193,"pitch":97.27077683935524,"roll":14.040923036117787},"location":"Left Ankle"},{"euler":{"heading":30.82289425289214,"pitch":-15.65373856954907,"roll":-19.925881999747393},"location":"Right Ankle"},{"euler":{"heading":75.48494547523023,"pitch":-162.75763755016254,"roll":51.122941871843835},"location":"Right Hip"},{"euler":{"heading":21.88654909347054,"pitch":-102.49410339593602,"roll":30.30270265284925},"location":"Right Knee"},{"euler":{"heading":8.345462765156952,"pitch":-130.79068719976905,"roll":57.424659946536586},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.300"} +{"sensors":[{"euler":{"heading":26.669605140853093,"pitch":125.73570029111077,"roll":21.21702589451261},"location":"Left Knee"},{"euler":{"heading":25.119246709166156,"pitch":97.63146420915291,"roll":14.589943844465385},"location":"Left Ankle"},{"euler":{"heading":33.84061225065545,"pitch":-16.58441811221831,"roll":-18.731980328835316},"location":"Right Ankle"},{"euler":{"heading":72.13993548690149,"pitch":-162.72718449068287,"roll":50.12432597041281},"location":"Right Hip"},{"euler":{"heading":18.568721003067765,"pitch":-101.65043062743153,"roll":32.592578059695875},"location":"Right Knee"},{"euler":{"heading":8.848715073437365,"pitch":-132.17207350929033,"roll":57.94906842646919},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.401"} +{"sensors":[{"euler":{"heading":27.92503854129898,"pitch":124.89282686729712,"roll":20.488889716060587},"location":"Left Knee"},{"euler":{"heading":26.625880214114474,"pitch":97.9637865286654,"roll":15.693160468832348},"location":"Left Ankle"},{"euler":{"heading":36.828758211586646,"pitch":-17.379004375023477,"roll":-17.211695697088764},"location":"Right Ankle"},{"euler":{"heading":71.82673047540372,"pitch":-163.0920185792466,"roll":49.75578101478125},"location":"Right Hip"},{"euler":{"heading":49.03879414273594,"pitch":-101.55288661900889,"roll":35.520753544891996},"location":"Right Knee"},{"euler":{"heading":9.6115506630933,"pitch":-134.31385169739673,"roll":58.52466282026227},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.502"} +{"sensors":[{"euler":{"heading":29.856672795927345,"pitch":124.25498317224535,"roll":18.730135524462092},"location":"Left Knee"},{"euler":{"heading":28.572946995761324,"pitch":98.0445203314031,"roll":17.892385837790496},"location":"Left Ankle"},{"euler":{"heading":38.276637177150036,"pitch":-17.592654533599955,"roll":-16.460285322757656},"location":"Right Ankle"},{"euler":{"heading":71.77836432118887,"pitch":-163.39836662310967,"roll":49.58876248274938},"location":"Right Hip"},{"euler":{"heading":74.07683633503609,"pitch":-101.93430077901557,"roll":37.61747295657186},"location":"Right Knee"},{"euler":{"heading":10.414518838697061,"pitch":-136.33512770920305,"roll":59.14062876423048},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.602"} +{"sensors":[{"euler":{"heading":33.16243202277424,"pitch":123.60052530981336,"roll":16.234995929369433},"location":"Left Knee"},{"euler":{"heading":31.986467280833164,"pitch":99.1639484791524,"roll":21.541150892022088},"location":"Left Ankle"},{"euler":{"heading":38.992479589143876,"pitch":-17.69085631553993,"roll":-16.101399413311327},"location":"Right Ankle"},{"euler":{"heading":71.70903562887352,"pitch":-163.69935456369694,"roll":49.8894749549144},"location":"Right Hip"},{"euler":{"heading":60.92157145599022,"pitch":-102.73722163380509,"roll":38.81914110589351},"location":"Right Knee"},{"euler":{"heading":9.72240347262003,"pitch":-135.8811318707613,"roll":59.22832169360175},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.703"} +{"sensors":[{"euler":{"heading":36.02376206218239,"pitch":123.43638484935579,"roll":14.102057753659379},"location":"Left Knee"},{"euler":{"heading":33.84209535423152,"pitch":98.7975797430919,"roll":24.28396853858544},"location":"Left Ankle"},{"euler":{"heading":39.48943095920153,"pitch":-17.880786890231086,"roll":-16.01446480292937},"location":"Right Ankle"},{"euler":{"heading":71.8722457534548,"pitch":-164.01332820328417,"roll":50.553972479765136},"location":"Right Hip"},{"euler":{"heading":50.780257561966906,"pitch":-103.54105370403532,"roll":39.38331359542532},"location":"Right Knee"},{"euler":{"heading":8.168779102007537,"pitch":-134.26937021112428,"roll":58.73692330807401},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.804"} +{"sensors":[{"euler":{"heading":36.08956315082789,"pitch":124.06669353604164,"roll":13.658342061306293},"location":"Left Knee"},{"euler":{"heading":33.13793654111564,"pitch":97.81207796590137,"roll":24.542330819427367},"location":"Left Ankle"},{"euler":{"heading":39.72392027667986,"pitch":-18.046705026201273,"roll":-16.22117460649422},"location":"Right Ankle"},{"euler":{"heading":72.41610825105285,"pitch":-164.2201461258016,"roll":51.33361895811197},"location":"Right Hip"},{"euler":{"heading":43.07109159399546,"pitch":-104.13762454359372,"roll":39.471702379658396},"location":"Right Knee"},{"euler":{"heading":40.927614001380675,"pitch":-132.54338841055085,"roll":57.86420700675075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.905"} +{"sensors":[{"euler":{"heading":32.5108580524544,"pitch":125.64774645404577,"roll":14.939356846954933},"location":"Left Knee"},{"euler":{"heading":29.612499493550324,"pitch":96.62900189482905,"roll":22.071001439870486},"location":"Left Ankle"},{"euler":{"heading":39.40462341789347,"pitch":-18.018480983735028,"roll":-16.503346078096513},"location":"Right Ankle"},{"euler":{"heading":73.03383619062997,"pitch":-164.50836073917282,"roll":52.08071877940289},"location":"Right Hip"},{"euler":{"heading":37.29391261290414,"pitch":-104.64177478284836,"roll":39.052277347332414},"location":"Right Knee"},{"euler":{"heading":33.64822767904174,"pitch":-130.94591864834325,"roll":57.110179621234685},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.6"} +{"sensors":[{"euler":{"heading":28.118072554693143,"pitch":127.68482321416508,"roll":16.817897423490184},"location":"Left Knee"},{"euler":{"heading":25.691391966436306,"pitch":95.51090338171876,"roll":18.514898782343817},"location":"Left Ankle"},{"euler":{"heading":38.55459804425836,"pitch":-17.654059216579086,"roll":-17.216464697472446},"location":"Right Ankle"},{"euler":{"heading":73.80122468770172,"pitch":-164.81077611329872,"roll":52.893492863823326},"location":"Right Hip"},{"euler":{"heading":33.23538454002569,"pitch":-105.00284284795897,"roll":38.054438095658476},"location":"Right Knee"},{"euler":{"heading":28.448873491659057,"pitch":-130.0414310663377,"roll":56.6419101063691},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.106"} +{"sensors":[{"euler":{"heading":25.698435500574142,"pitch":128.71361606203646,"roll":18.523687281883618},"location":"Left Knee"},{"euler":{"heading":23.051542941486836,"pitch":95.4504131221507,"roll":15.98672579694124},"location":"Left Ankle"},{"euler":{"heading":36.67548198051068,"pitch":-17.116217274774083,"roll":-18.230357036466557},"location":"Right Ankle"},{"euler":{"heading":74.79817062286547,"pitch":-165.31629124586559,"roll":53.646787799751834},"location":"Right Hip"},{"euler":{"heading":31.131054253365278,"pitch":-104.94311934603589,"roll":36.2597220814489},"location":"Right Knee"},{"euler":{"heading":24.792124036732183,"pitch":-129.40134202369399,"roll":56.45599699749847},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.207"} +{"sensors":[{"euler":{"heading":24.727941621681254,"pitch":128.8835456947482,"roll":19.817511092918064},"location":"Left Knee"},{"euler":{"heading":22.447708042947816,"pitch":95.7405048359545,"roll":14.757309826452182},"location":"Left Ankle"},{"euler":{"heading":33.721880587356495,"pitch":-15.933936513792887,"roll":-19.40345117362644},"location":"Right Ankle"},{"euler":{"heading":76.28034331855895,"pitch":-165.04244645322748,"roll":53.95387123341113},"location":"Right Hip"},{"euler":{"heading":30.341444211882582,"pitch":-104.72855373174455,"roll":33.57746353110971},"location":"Right Knee"},{"euler":{"heading":21.720692581364936,"pitch":-128.92321163088297,"roll":56.50179993304095},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.308"} +{"sensors":[{"euler":{"heading":24.53377836450487,"pitch":128.4903424830655,"roll":20.774228940443557},"location":"Left Knee"},{"euler":{"heading":22.60132721905277,"pitch":96.13379836583002,"roll":13.959943258261566},"location":"Left Ankle"},{"euler":{"heading":30.691108310216727,"pitch":-15.06626057714119,"roll":-20.405501746289772},"location":"Right Ankle"},{"euler":{"heading":77.96956931139636,"pitch":-164.14661259418398,"roll":53.51236115698747},"location":"Right Hip"},{"euler":{"heading":29.587896835871334,"pitch":-104.27280511934627,"roll":31.203862384691146},"location":"Right Knee"},{"euler":{"heading":19.50901855207814,"pitch":-129.13860188531848,"roll":56.75133163472869},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.408"} +{"sensors":[{"euler":{"heading":24.779078620164412,"pitch":127.7005352397139,"roll":21.473470463921604},"location":"Left Knee"},{"euler":{"heading":23.422711424440372,"pitch":96.65020318519244,"roll":13.749722578255774},"location":"Left Ankle"},{"euler":{"heading":29.74340464963468,"pitch":-15.339387003205012,"roll":-20.824717111306917},"location":"Right Ankle"},{"euler":{"heading":79.47755716781826,"pitch":-163.3062683229659,"roll":52.42913931545631},"location":"Right Hip"},{"euler":{"heading":27.50834739281749,"pitch":-103.36100371778582,"roll":30.601829844172684},"location":"Right Knee"},{"euler":{"heading":18.21534403784765,"pitch":-130.11233845725704,"roll":57.19115772720186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.509"} +{"sensors":[{"euler":{"heading":25.479336041700506,"pitch":126.8372256581774,"roll":21.64246269742291},"location":"Left Knee"},{"euler":{"heading":24.279564450225223,"pitch":97.07586788304381,"roll":13.934053504299273},"location":"Left Ankle"},{"euler":{"heading":31.37527551577532,"pitch":-16.383203520820604,"roll":-20.026883738027397},"location":"Right Ankle"},{"euler":{"heading":75.61716734302513,"pitch":-162.98581449910034,"roll":51.282490253627834},"location":"Right Hip"},{"euler":{"heading":23.909061450308318,"pitch":-102.39324997044447,"roll":32.167649808360885},"location":"Right Knee"},{"euler":{"heading":17.055014530199294,"pitch":-131.41556525502116,"roll":57.68427031891955},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.609"} +{"sensors":[{"euler":{"heading":26.540221278066625,"pitch":125.89551502739408,"roll":21.319754948035925},"location":"Left Knee"},{"euler":{"heading":25.46866999616543,"pitch":97.46104125972563,"roll":14.59431049811813},"location":"Left Ankle"},{"euler":{"heading":34.596112113647834,"pitch":-17.44663322611003,"roll":-18.436929289129054},"location":"Right Ankle"},{"euler":{"heading":75.53595372338634,"pitch":-162.92771081753375,"roll":50.83944685666379},"location":"Right Hip"},{"euler":{"heading":53.73250567472187,"pitch":-101.91588933356742,"roll":35.03517633071338},"location":"Right Knee"},{"euler":{"heading":16.23573476548031,"pitch":-133.0763926228213,"roll":58.29099891965504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.710"} +{"sensors":[{"euler":{"heading":28.08663801893497,"pitch":124.97204085540533,"roll":20.31430783333552},"location":"Left Knee"},{"euler":{"heading":27.221143615942903,"pitch":97.75606728039517,"roll":16.077611432787112},"location":"Left Ankle"},{"euler":{"heading":37.001462601772886,"pitch":-18.551591646619315,"roll":-17.259812668546385},"location":"Right Ankle"},{"euler":{"heading":74.9462690295572,"pitch":-163.17834493292986,"roll":50.646633695081235},"location":"Right Hip"},{"euler":{"heading":78.1697451266041,"pitch":-101.90010912365575,"roll":37.40400792668831},"location":"Right Knee"},{"euler":{"heading":15.749213926057877,"pitch":-135.1083662953217,"roll":58.90541089344317},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.811"} +{"sensors":[{"euler":{"heading":30.815388031196974,"pitch":124.42178685788814,"roll":18.167879811325918},"location":"Left Knee"},{"euler":{"heading":29.785675548497824,"pitch":98.14193512633429,"roll":19.00126530957684},"location":"Left Ankle"},{"euler":{"heading":38.316977113444395,"pitch":-19.349300524403223,"roll":-16.86648893607999},"location":"Right Ankle"},{"euler":{"heading":74.87366207287883,"pitch":-163.35162972904573,"roll":50.69808356013419},"location":"Right Hip"},{"euler":{"heading":64.50470769761053,"pitch":-102.36739992246643,"roll":38.845958302382904},"location":"Right Knee"},{"euler":{"heading":14.607687741676024,"pitch":-135.75204179849575,"roll":59.21167405598791},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.912"} +{"sensors":[{"euler":{"heading":33.90580985601636,"pitch":123.7395711926281,"roll":15.96403705200519},"location":"Left Knee"},{"euler":{"heading":31.992527028637,"pitch":98.46137078542034,"roll":22.05703306546876},"location":"Left Ankle"},{"euler":{"heading":39.221705036451795,"pitch":-20.0592367921846,"roll":-16.623540937816742},"location":"Right Ankle"},{"euler":{"heading":74.89744588284789,"pitch":-163.57382920630815,"roll":51.190537332534596},"location":"Right Hip"},{"euler":{"heading":53.92221136646229,"pitch":-102.90320056534414,"roll":39.62161088262928},"location":"Right Knee"},{"euler":{"heading":12.828773667274358,"pitch":-134.39631743446498,"roll":58.9537262729972},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.15"} +{"sensors":[{"euler":{"heading":34.943971654394666,"pitch":123.8773053074511,"roll":15.141060264990971},"location":"Left Knee"},{"euler":{"heading":32.40829262427488,"pitch":97.86456931649165,"roll":23.06825540314733},"location":"Left Ankle"},{"euler":{"heading":39.7365735811089,"pitch":-20.689749812641256,"roll":-16.59395319287667},"location":"Right Ankle"},{"euler":{"heading":75.3747087274436,"pitch":-163.71543889940082,"roll":51.8145057069588},"location":"Right Hip"},{"euler":{"heading":45.91125877749086,"pitch":-103.16805683181386,"roll":39.86569088470927},"location":"Right Knee"},{"euler":{"heading":10.83712308170507,"pitch":-132.86040024836822,"roll":58.167402143771284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.116"} +{"sensors":[{"euler":{"heading":32.07225482785074,"pitch":125.13749123139536,"roll":16.174016059987828},"location":"Left Knee"},{"euler":{"heading":29.936590533670735,"pitch":96.92620292996803,"roll":21.48625609307914},"location":"Left Ankle"},{"euler":{"heading":39.712249310891885,"pitch":-21.117597948265573,"roll":-16.75742982381037},"location":"Right Ankle"},{"euler":{"heading":76.02113925067276,"pitch":-163.89114044247376,"roll":52.432626907062115},"location":"Right Hip"},{"euler":{"heading":39.78590701143145,"pitch":-103.37204682086204,"roll":39.61687349339711},"location":"Right Knee"},{"euler":{"heading":9.247978912806085,"pitch":-131.38140745040593,"roll":57.39047865212698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.216"} +{"sensors":[{"euler":{"heading":27.782725944346367,"pitch":127.09825451966643,"roll":17.976726928583663},"location":"Left Knee"},{"euler":{"heading":26.13511658450045,"pitch":95.7501066534636,"roll":18.098738135882133},"location":"Left Ankle"},{"euler":{"heading":39.0264581712211,"pitch":-21.21342698983175,"roll":-17.3155819789886},"location":"Right Ankle"},{"euler":{"heading":76.70501385464307,"pitch":-164.23443292629315,"roll":53.04545714484559},"location":"Right Hip"},{"euler":{"heading":35.33527990561227,"pitch":-103.4674526637696,"roll":38.809084689937336},"location":"Right Knee"},{"euler":{"heading":8.452140552486885,"pitch":-130.31064256999537,"roll":56.87176448332567},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.317"} +{"sensors":[{"euler":{"heading":25.281166679652536,"pitch":128.33742266703882,"roll":19.5544472978558},"location":"Left Knee"},{"euler":{"heading":23.39108294320053,"pitch":95.15556574573306,"roll":15.396121325064117},"location":"Left Ankle"},{"euler":{"heading":37.65637129897507,"pitch":-21.097999842104674,"roll":-18.218975564716576},"location":"Right Ankle"},{"euler":{"heading":77.37793047762871,"pitch":-164.78882735193002,"roll":53.724843414166436},"location":"Right Hip"},{"euler":{"heading":32.63641520873788,"pitch":-103.29218949789049,"roll":37.28146551185721},"location":"Right Knee"},{"euler":{"heading":8.276133582902473,"pitch":-129.6092729583324,"roll":56.545080342316375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.417"} +{"sensors":[{"euler":{"heading":23.910657757391682,"pitch":128.82851243301377,"roll":20.762110758045075},"location":"Left Knee"},{"euler":{"heading":22.327387414417977,"pitch":94.98024426048,"roll":13.86022279385881},"location":"Left Ankle"},{"euler":{"heading":34.66771907200028,"pitch":-20.393076622847214,"roll":-19.303972749139383},"location":"Right Ankle"},{"euler":{"heading":78.38075725229002,"pitch":-164.65433713539508,"roll":54.07206427458127},"location":"Right Hip"},{"euler":{"heading":31.467016579315093,"pitch":-102.78877038483995,"roll":34.77549784809546},"location":"Right Knee"},{"euler":{"heading":7.995277193275894,"pitch":-128.89138676952683,"roll":56.49917492490807},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.518"} +{"sensors":[{"euler":{"heading":23.097642546447155,"pitch":128.94589540403837,"roll":21.59330179039042},"location":"Left Knee"},{"euler":{"heading":21.955840518600905,"pitch":94.76809244922222,"roll":12.946051100454612},"location":"Left Ankle"},{"euler":{"heading":31.44772390461594,"pitch":-19.17851433035992,"roll":-20.279814353430304},"location":"Right Ankle"},{"euler":{"heading":79.75478432809302,"pitch":-163.8905470668997,"roll":53.684709478194705},"location":"Right Hip"},{"euler":{"heading":30.259811339711234,"pitch":-102.38080143662407,"roll":32.37711339510247},"location":"Right Knee"},{"euler":{"heading":7.937726209547114,"pitch":-129.0146794394431,"roll":56.68355794643354},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.618"} +{"sensors":[{"euler":{"heading":22.66975888541659,"pitch":128.8796984080282,"roll":22.077886997592},"location":"Left Knee"},{"euler":{"heading":22.715828391035238,"pitch":94.63557463868948,"roll":12.945237677691088},"location":"Left Ankle"},{"euler":{"heading":31.74223203982458,"pitch":-18.602674252025,"roll":-20.85367310484489},"location":"Right Ankle"},{"euler":{"heading":80.71931288989398,"pitch":-163.11617816234738,"roll":52.811014705741314},"location":"Right Hip"},{"euler":{"heading":27.814752641493822,"pitch":-101.79760942833629,"roll":31.532678676052278},"location":"Right Knee"},{"euler":{"heading":8.116525216667393,"pitch":-129.83373551092433,"roll":57.05848731423819},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.719"} +{"sensors":[{"euler":{"heading":22.800978128997897,"pitch":128.55225955305062,"roll":22.219110693605426},"location":"Left Knee"},{"euler":{"heading":23.474847705528003,"pitch":94.43242826781768,"roll":13.194204551882297},"location":"Left Ankle"},{"euler":{"heading":32.93462419871254,"pitch":-19.16365690364756,"roll":-20.493038059062265},"location":"Right Ankle"},{"euler":{"heading":80.85508398334704,"pitch":-162.80191603493182,"roll":51.71721939155798},"location":"Right Hip"},{"euler":{"heading":24.338304961671533,"pitch":-101.12126082374984,"roll":32.60567079935659},"location":"Right Knee"},{"euler":{"heading":8.512628568418531,"pitch":-131.13373785410326,"roll":57.564220168637114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.821"} +{"sensors":[{"euler":{"heading":23.645638447484924,"pitch":128.04788252678873,"roll":21.81182281045957},"location":"Left Knee"},{"euler":{"heading":24.60762834610374,"pitch":94.21293433388438,"roll":13.912949004324695},"location":"Left Ankle"},{"euler":{"heading":36.075045569803414,"pitch":-20.230135040895057,"roll":-19.227349789391784},"location":"Right Ankle"},{"euler":{"heading":80.21119913808948,"pitch":-162.68401668131747,"roll":51.012846037207744},"location":"Right Hip"},{"euler":{"heading":20.41569272194909,"pitch":-100.84813236192792,"roll":35.03319499835843},"location":"Right Knee"},{"euler":{"heading":8.973699635161623,"pitch":-132.79164749330903,"roll":58.12886076194147},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.925"} +{"sensors":[{"euler":{"heading":25.02690107720988,"pitch":127.51419532669205,"roll":20.84874739309016},"location":"Left Knee"},{"euler":{"heading":26.24263950346181,"pitch":94.01431974328992,"roll":15.312431707343807},"location":"Left Ankle"},{"euler":{"heading":38.414552158146755,"pitch":-20.85628199402446,"roll":-18.088005325238505},"location":"Right Ankle"},{"euler":{"heading":78.62572217372069,"pitch":-162.82109010707083,"roll":50.88677259883179},"location":"Right Hip"},{"euler":{"heading":50.5273113366185,"pitch":-101.36198459950532,"roll":37.556793066624344},"location":"Right Knee"},{"euler":{"heading":9.511747426412835,"pitch":-134.91610590789244,"roll":58.75869611533087},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.25"} +{"sensors":[{"euler":{"heading":27.48368100847286,"pitch":127.10856407896495,"roll":18.907129077460986},"location":"Left Knee"},{"euler":{"heading":28.34832953517337,"pitch":93.79892650438866,"roll":17.86892048168844},"location":"Left Ankle"},{"euler":{"heading":39.38483368311443,"pitch":-20.858062542882365,"roll":-17.663462291912325},"location":"Right Ankle"},{"euler":{"heading":77.6545272877635,"pitch":-162.8499995119224,"roll":50.90348865415635},"location":"Right Hip"},{"euler":{"heading":75.19456235659686,"pitch":-102.27880006244716,"roll":39.168514304125694},"location":"Right Knee"},{"euler":{"heading":9.565855374201163,"pitch":-136.06558539052818,"roll":59.19187635453811},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.128"} +{"sensors":[{"euler":{"heading":30.999452559216028,"pitch":126.24805793929514,"roll":16.537840367408425},"location":"Left Knee"},{"euler":{"heading":30.785903146066495,"pitch":94.38285782918118,"roll":20.88376976039718},"location":"Left Ankle"},{"euler":{"heading":39.798799447190405,"pitch":-20.901290870532062,"roll":-17.558733339799495},"location":"Right Ankle"},{"euler":{"heading":76.59177513377008,"pitch":-163.13180713969427,"roll":51.36451266776858},"location":"Right Hip"},{"euler":{"heading":61.96161576067441,"pitch":-103.3581064461913,"roll":39.95510092323749},"location":"Right Knee"},{"euler":{"heading":8.5637847610038,"pitch":-134.798941369236,"roll":59.132006977921336},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.229"} +{"sensors":[{"euler":{"heading":33.27768639169563,"pitch":126.16500837094222,"roll":15.089531052953884},"location":"Left Knee"},{"euler":{"heading":31.54516176835373,"pitch":94.1086262031225,"roll":22.256301598601706},"location":"Left Ankle"},{"euler":{"heading":40.215043161385694,"pitch":-20.910680568770672,"roll":-17.66016187265295},"location":"Right Ankle"},{"euler":{"heading":76.32801620941817,"pitch":-163.21439391778793,"roll":52.05516595872945},"location":"Right Hip"},{"euler":{"heading":51.66751654744226,"pitch":-104.22178304955501,"roll":40.26258263319851},"location":"Right Knee"},{"euler":{"heading":7.107142522654935,"pitch":-133.18905276702017,"roll":58.406012909652965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.330"} +{"sensors":[{"euler":{"heading":31.665096803625378,"pitch":127.09461587463329,"roll":15.622037412246145},"location":"Left Knee"},{"euler":{"heading":29.50334408305766,"pitch":93.67617630277331,"roll":20.94773448240449},"location":"Left Ankle"},{"euler":{"heading":40.068347834436764,"pitch":-20.705145998258857,"roll":-17.888684099568408},"location":"Right Ankle"},{"euler":{"heading":76.47471445551093,"pitch":-163.16427317497056,"roll":52.745519293133704},"location":"Right Hip"},{"euler":{"heading":43.672726821293544,"pitch":-104.92006817668833,"roll":40.077081174875566},"location":"Right Knee"},{"euler":{"heading":5.914445450244807,"pitch":-131.45287523418034,"roll":57.57666504940596},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.431"} +{"sensors":[{"euler":{"heading":27.996313700543332,"pitch":128.72057514334386,"roll":17.358349054173264},"location":"Left Knee"},{"euler":{"heading":25.74470301860852,"pitch":93.1778476282328,"roll":17.74818542673889},"location":"Left Ankle"},{"euler":{"heading":39.3180312530253,"pitch":-20.27540527517509,"roll":-18.39867885626691},"location":"Right Ankle"},{"euler":{"heading":76.83858843160088,"pitch":-163.14270139439603,"roll":53.477218357688365},"location":"Right Hip"},{"euler":{"heading":37.82814803269236,"pitch":-105.44491344836946,"roll":39.31469476597323},"location":"Right Knee"},{"euler":{"heading":5.621576767847143,"pitch":-130.28613237206545,"roll":57.064021144584274},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.531"} +{"sensors":[{"euler":{"heading":25.354981871344226,"pitch":129.93027162806348,"roll":18.929494186642117},"location":"Left Knee"},{"euler":{"heading":22.863326975419703,"pitch":93.07769557974822,"roll":14.977844685429588},"location":"Left Ankle"},{"euler":{"heading":37.85943917387925,"pitch":-19.72007499139119,"roll":-19.38929278000013},"location":"Right Ankle"},{"euler":{"heading":77.45757465710635,"pitch":-163.39072047081314,"roll":54.264166065908825},"location":"Right Hip"},{"euler":{"heading":34.041424990384414,"pitch":-105.5631143971374,"roll":37.941119928053254},"location":"Right Knee"},{"euler":{"heading":5.8455102054696075,"pitch":-129.6584379825475,"roll":56.713103296050775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.632"} +{"sensors":[{"euler":{"heading":24.51212054937529,"pitch":130.1330996855715,"roll":20.172825032278944},"location":"Left Knee"},{"euler":{"heading":21.82986302106715,"pitch":93.36162486732786,"roll":13.505515917425564},"location":"Left Ankle"},{"euler":{"heading":35.09558436140957,"pitch":-18.955976922096816,"roll":-20.618611858437117},"location":"Right Ankle"},{"euler":{"heading":78.76701643103931,"pitch":-163.1573580649457,"roll":54.60764636214492},"location":"Right Hip"},{"euler":{"heading":32.504476207777785,"pitch":-105.0339235741856,"roll":35.46158230377126},"location":"Right Knee"},{"euler":{"heading":6.332077348186101,"pitch":-129.34015589303283,"roll":56.65716001590217},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.733"} +{"sensors":[{"euler":{"heading":24.422462690284828,"pitch":129.68643113186738,"roll":21.161142052903088},"location":"Left Knee"},{"euler":{"heading":21.8278975474956,"pitch":93.90392016949829,"roll":12.690484071821285},"location":"Left Ankle"},{"euler":{"heading":31.79211422823374,"pitch":-17.8186655502773,"roll":-21.79044513169129},"location":"Right Ankle"},{"euler":{"heading":80.3385917644557,"pitch":-162.3041010164133,"roll":54.20501620720868},"location":"Right Hip"},{"euler":{"heading":31.489781837272222,"pitch":-104.75721244616722,"roll":32.79579366127399},"location":"Right Knee"},{"euler":{"heading":7.093141757764497,"pitch":-129.50993904944116,"roll":56.88596779420682},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.834"} +{"sensors":[{"euler":{"heading":24.68793346779941,"pitch":128.87797097109882,"roll":21.85925034248797},"location":"Left Knee"},{"euler":{"heading":22.397037751718823,"pitch":94.53137174869917,"roll":12.369153600564923},"location":"Left Ankle"},{"euler":{"heading":30.25846209621287,"pitch":-17.57432144023371,"roll":-22.428691015009388},"location":"Right Ankle"},{"euler":{"heading":81.67295839045255,"pitch":-161.56173651616146,"roll":53.13319460717403},"location":"Right Hip"},{"euler":{"heading":29.440163133157665,"pitch":-104.10848783185065,"roll":31.60832132578545},"location":"Right Knee"},{"euler":{"heading":7.942222154043212,"pitch":-130.31755543490488,"roll":57.24164294103558},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.935"} +{"sensors":[{"euler":{"heading":25.3749799524643,"pitch":127.91454852273326,"roll":22.11045144760772},"location":"Left Knee"},{"euler":{"heading":23.249494124286095,"pitch":95.17048073686642,"roll":12.458889353204228},"location":"Left Ankle"},{"euler":{"heading":31.23814507340245,"pitch":-18.393649378666723,"roll":-21.85283412956097},"location":"Right Ankle"},{"euler":{"heading":77.67635299960727,"pitch":-161.32399683757077,"roll":51.8482286491772},"location":"Right Hip"},{"euler":{"heading":25.972399984191817,"pitch":-103.11719217746945,"roll":32.519539949730785},"location":"Right Knee"},{"euler":{"heading":8.655284177201324,"pitch":-131.5774797531897,"roll":57.64077351637735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.36"} +{"sensors":[{"euler":{"heading":26.526118317757795,"pitch":126.83468579278018,"roll":21.84429653447118},"location":"Left Knee"},{"euler":{"heading":24.375546619145204,"pitch":95.82013822388171,"roll":13.021658916861375},"location":"Left Ankle"},{"euler":{"heading":33.90713501788078,"pitch":-19.509593191153137,"roll":-20.243764290347652},"location":"Right Ankle"},{"euler":{"heading":77.8581606036578,"pitch":-161.41208281614314,"roll":51.04221343506904},"location":"Right Hip"},{"euler":{"heading":21.59316463422505,"pitch":-102.09534198477402,"roll":34.96120264670599},"location":"Right Knee"},{"euler":{"heading":9.429388426213938,"pitch":-133.19317847886893,"roll":58.16840544033478},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.136"} +{"sensors":[{"euler":{"heading":28.152379529553617,"pitch":125.83376369026178,"roll":20.9138039023787},"location":"Left Knee"},{"euler":{"heading":25.880197318056556,"pitch":96.34259870927973,"roll":14.25622259972748},"location":"Left Ankle"},{"euler":{"heading":36.57407098425977,"pitch":-20.27562532299654,"roll":-18.692632172065306},"location":"Right Ankle"},{"euler":{"heading":76.85958009981536,"pitch":-161.9198517717532,"roll":50.74687781181111},"location":"Right Hip"},{"euler":{"heading":51.747072279020394,"pitch":-101.54524959219307,"roll":37.38463344458639},"location":"Right Knee"},{"euler":{"heading":10.164294368677787,"pitch":-135.13080859919936,"roll":58.71124480255165},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.237"} +{"sensors":[{"euler":{"heading":30.696803187150056,"pitch":125.21937429818678,"roll":18.90059870752355},"location":"Left Knee"},{"euler":{"heading":27.84347650315771,"pitch":96.56565726159272,"roll":16.728878646699037},"location":"Left Ankle"},{"euler":{"heading":37.87784970988487,"pitch":-20.427765714351292,"roll":-18.15706628850271},"location":"Right Ankle"},{"euler":{"heading":76.45216970088859,"pitch":-162.1533975553961,"roll":50.568815581020516},"location":"Right Hip"},{"euler":{"heading":76.51434789449308,"pitch":-101.69552322647174,"roll":38.94138766122154},"location":"Right Knee"},{"euler":{"heading":10.450933246960009,"pitch":-136.60469234722757,"roll":59.11921230606809},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.338"} +{"sensors":[{"euler":{"heading":33.9395094830557,"pitch":124.42561634416239,"roll":16.45464219929908},"location":"Left Knee"},{"euler":{"heading":30.574670494531173,"pitch":97.36797345647307,"roll":20.084041313314508},"location":"Left Ankle"},{"euler":{"heading":38.55893730966849,"pitch":-20.46436353325377,"roll":-17.749735066927798},"location":"Right Ankle"},{"euler":{"heading":75.8034812075801,"pitch":-162.57875838903112,"roll":50.901152038772494},"location":"Right Hip"},{"euler":{"heading":63.07792656210053,"pitch":-102.46170470108295,"roll":39.77336091501059},"location":"Right Knee"},{"euler":{"heading":9.4906260148744,"pitch":-135.7088826599975,"roll":59.21488778197427},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.438"} +{"sensors":[{"euler":{"heading":35.95848593763996,"pitch":124.24838754729825,"roll":14.865614413512159},"location":"Left Knee"},{"euler":{"heading":32.02618854274966,"pitch":97.06543116709045,"roll":22.0677249437423},"location":"Left Ankle"},{"euler":{"heading":39.152282937570064,"pitch":-20.319120758790344,"roll":-17.648690039069834},"location":"Right Ankle"},{"euler":{"heading":75.5339293138069,"pitch":-162.8804224998305,"roll":51.58832001242549},"location":"Right Hip"},{"euler":{"heading":52.230777461564756,"pitch":-103.30958122091032,"roll":40.193255551045986},"location":"Right Knee"},{"euler":{"heading":8.121687355935114,"pitch":-134.14323273121065,"roll":58.67720483525563},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.539"} +{"sensors":[{"euler":{"heading":34.228741613932534,"pitch":125.18195422859088,"roll":15.211335058844808},"location":"Left Knee"},{"euler":{"heading":30.170692430762486,"pitch":96.12579373557121,"roll":20.771150859501134},"location":"Left Ankle"},{"euler":{"heading":39.21005154019509,"pitch":-19.842866349764495,"roll":-17.789123908910547},"location":"Right Ankle"},{"euler":{"heading":75.62832182188393,"pitch":-163.10582837464193,"roll":52.34686326153822},"location":"Right Hip"},{"euler":{"heading":43.7058620931638,"pitch":-104.13031132155632,"roll":40.13325497846901},"location":"Right Knee"},{"euler":{"heading":6.76298957353983,"pitch":-132.29250767323634,"roll":57.9171847862186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.639"} +{"sensors":[{"euler":{"heading":30.089477961113456,"pitch":127.01363651763415,"roll":16.873753885250803},"location":"Left Knee"},{"euler":{"heading":26.344634884797085,"pitch":95.18041431943517,"roll":17.689469536781623},"location":"Left Ankle"},{"euler":{"heading":38.799563721881185,"pitch":-19.13248614594206,"roll":-18.237245629497565},"location":"Right Ankle"},{"euler":{"heading":75.80073522628335,"pitch":-163.38708153230243,"roll":53.128375065238835},"location":"Right Hip"},{"euler":{"heading":37.28452962524239,"pitch":-104.85513361254804,"roll":39.549829577204676},"location":"Right Knee"},{"euler":{"heading":6.090442078717901,"pitch":-131.08751199423364,"roll":57.29485996889985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.740"} +{"sensors":[{"euler":{"heading":27.574213627704616,"pitch":128.27868986871718,"roll":18.330472789523057},"location":"Left Knee"},{"euler":{"heading":23.907464140595724,"pitch":94.83031519447242,"roll":15.608424516600426},"location":"Left Ankle"},{"euler":{"heading":37.45275444901871,"pitch":-18.358884035866854,"roll":-19.12430972386536},"location":"Right Ankle"},{"euler":{"heading":76.32835212884264,"pitch":-163.71292419676533,"roll":53.84149092721512},"location":"Right Hip"},{"euler":{"heading":33.30499075908806,"pitch":-105.16617939751492,"roll":38.1182157129736},"location":"Right Knee"},{"euler":{"heading":5.86080753682011,"pitch":-130.15766474100187,"roll":56.90414767234527},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.841"} +{"sensors":[{"euler":{"heading":26.41840469984651,"pitch":128.69807758844703,"roll":19.404863809136},"location":"Left Knee"},{"euler":{"heading":22.77992631247185,"pitch":94.83456583311158,"roll":14.212853966694315},"location":"Left Ankle"},{"euler":{"heading":34.477216587349645,"pitch":-17.498347460321714,"roll":-20.105351144170253},"location":"Right Ankle"},{"euler":{"heading":77.42029341807024,"pitch":-163.4310762637376,"roll":54.03492831909416},"location":"Right Hip"},{"euler":{"heading":31.568547437332494,"pitch":-104.89472336749178,"roll":35.627777173592676},"location":"Right Knee"},{"euler":{"heading":5.7262907935521135,"pitch":-129.45895651813888,"roll":56.835976618431644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.942"} +{"sensors":[{"euler":{"heading":25.87631053158899,"pitch":128.50682155222634,"roll":20.281928544867796},"location":"Left Knee"},{"euler":{"heading":22.724714484387714,"pitch":95.04055258927343,"roll":13.59213017976955},"location":"Left Ankle"},{"euler":{"heading":31.398756215653666,"pitch":-16.743450589872918,"roll":-21.010906998786695},"location":"Right Ankle"},{"euler":{"heading":78.77216243901077,"pitch":-162.74203163684768,"roll":53.47274684887724},"location":"Right Hip"},{"euler":{"heading":30.10513239033467,"pitch":-104.38155072809587,"roll":33.34451486783127},"location":"Right Knee"},{"euler":{"heading":6.085827933452476,"pitch":-129.41529831516215,"roll":57.035883866126724},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.43"} +{"sensors":[{"euler":{"heading":25.914014336703765,"pitch":127.90569658265164,"roll":20.86747679923342},"location":"Left Knee"},{"euler":{"heading":23.6902093958659,"pitch":95.4290853305196,"roll":13.737944301812977},"location":"Left Ankle"},{"euler":{"heading":30.56658359358525,"pitch":-16.874870369712415,"roll":-21.42604100500786},"location":"Right Ankle"},{"euler":{"heading":79.92663377652758,"pitch":-162.11853232632623,"roll":52.39329331531407},"location":"Right Hip"},{"euler":{"heading":27.59297676486136,"pitch":-103.53074860046763,"roll":32.69343092508918},"location":"Right Knee"},{"euler":{"heading":6.796388084199277,"pitch":-130.11301124062393,"roll":57.44269664216777},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.144"} +{"sensors":[{"euler":{"heading":26.479963857210606,"pitch":127.07043350536267,"roll":21.04060636419449},"location":"Left Knee"},{"euler":{"heading":24.730458494117073,"pitch":95.81038546318736,"roll":14.167153248038609},"location":"Left Ankle"},{"euler":{"heading":32.364394839245776,"pitch":-17.855858458624855,"roll":-20.54128020514343},"location":"Right Ankle"},{"euler":{"heading":76.01459731743803,"pitch":-161.97051487269775,"roll":51.16087448710293},"location":"Right Hip"},{"euler":{"heading":23.90106688852133,"pitch":-102.6241368835086,"roll":34.07812342252744},"location":"Right Knee"},{"euler":{"heading":7.6516781095424085,"pitch":-131.53508019238842,"roll":57.971334690459095},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.244"} +{"sensors":[{"euler":{"heading":27.57356531399339,"pitch":126.14815614967544,"roll":20.656243999078885},"location":"Left Knee"},{"euler":{"heading":26.016220775101054,"pitch":96.20892221909654,"roll":15.072775489970118},"location":"Left Ankle"},{"euler":{"heading":35.51301747165415,"pitch":-18.89810813032886,"roll":-18.85483137146149},"location":"Right Ankle"},{"euler":{"heading":75.92676733583528,"pitch":-162.16356948707673,"roll":50.42024378402955},"location":"Right Hip"},{"euler":{"heading":53.53570989232505,"pitch":-101.83943838112434,"roll":36.83525998288119},"location":"Right Knee"},{"euler":{"heading":8.447113569292977,"pitch":-133.18453871109693,"roll":58.60426408386033},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.345"} +{"sensors":[{"euler":{"heading":29.22405905947734,"pitch":125.21848543351247,"roll":19.612843082030135},"location":"Left Knee"},{"euler":{"heading":27.931071130596575,"pitch":96.69439965728559,"roll":16.789991937916835},"location":"Left Ankle"},{"euler":{"heading":38.073270318237064,"pitch":-19.413151734459888,"roll":-17.417985465843387},"location":"Right Ankle"},{"euler":{"heading":74.98089202228921,"pitch":-162.67119702323023,"roll":50.035440284713985},"location":"Right Hip"},{"euler":{"heading":77.1703205802251,"pitch":-101.54555579618102,"roll":39.43119437265953},"location":"Right Knee"},{"euler":{"heading":9.21732140666038,"pitch":-135.1408266115324,"roll":59.25427511720282},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.446"} +{"sensors":[{"euler":{"heading":31.978574133112474,"pitch":124.51993695464337,"roll":17.473688763522105},"location":"Left Knee"},{"euler":{"heading":30.355072806181965,"pitch":97.31205532074594,"roll":19.871802364426063},"location":"Left Ankle"},{"euler":{"heading":39.17079086952974,"pitch":-19.403577246072995,"roll":-16.855037560170622},"location":"Right Ankle"},{"euler":{"heading":74.67014434417119,"pitch":-162.9581226085409,"roll":49.913162877930255},"location":"Right Hip"},{"euler":{"heading":96.71850912652306,"pitch":-102.08224529834253,"roll":41.149988098096635},"location":"Right Knee"},{"euler":{"heading":9.408013977809933,"pitch":-136.04895317270734,"roll":59.70571182638187},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.547"} +{"sensors":[{"euler":{"heading":35.33979528219655,"pitch":123.6381349251429,"roll":15.008888954177245},"location":"Left Knee"},{"euler":{"heading":32.81546733818066,"pitch":98.16227661095454,"roll":23.118244501572228},"location":"Left Ankle"},{"euler":{"heading":39.62948673303459,"pitch":-19.02630445750338,"roll":-16.720194410366297},"location":"Right Ankle"},{"euler":{"heading":74.06493133525294,"pitch":-163.33071526477931,"roll":50.26625109454178},"location":"Right Hip"},{"euler":{"heading":112.96830215139607,"pitch":-103.2634832454114,"roll":42.14642278792624},"location":"Right Knee"},{"euler":{"heading":8.39887255244562,"pitch":-134.5460789849063,"roll":59.66236227445535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.648"} +{"sensors":[{"euler":{"heading":36.75426526945983,"pitch":123.72606508076278,"roll":13.795200637955292},"location":"Left Knee"},{"euler":{"heading":33.53990393711258,"pitch":97.671215451137,"roll":24.37929233396873},"location":"Left Ankle"},{"euler":{"heading":39.95155863603269,"pitch":-18.554122945796603,"roll":-16.806263971480487},"location":"Right Ankle"},{"euler":{"heading":73.87259427393555,"pitch":-163.56679484406973,"roll":50.942470279495616},"location":"Right Hip"},{"euler":{"heading":126.68384114246786,"pitch":-104.43342625453015,"roll":42.602173633889},"location":"Right Knee"},{"euler":{"heading":41.07439711370637,"pitch":-132.72243159233838,"roll":58.93348066097273},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.749"} +{"sensors":[{"euler":{"heading":34.00041933266308,"pitch":125.024418949963,"roll":14.5578456142},"location":"Left Knee"},{"euler":{"heading":30.993949407296856,"pitch":96.3707421480783,"roll":22.8925571202145},"location":"Left Ankle"},{"euler":{"heading":39.95962253032879,"pitch":-17.96633435771919,"roll":-17.08034132387777},"location":"Right Ankle"},{"euler":{"heading":74.1253351243914,"pitch":-163.67934714220507,"roll":51.691106242579885},"location":"Right Hip"},{"euler":{"heading":104.1150356366586,"pitch":-105.40289891184499,"roll":42.57461845206782},"location":"Right Knee"},{"euler":{"heading":67.70422944464667,"pitch":-130.85228213363243,"roll":58.1253011635178},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.850"} +{"sensors":[{"euler":{"heading":29.973871618283265,"pitch":126.84136023197726,"roll":16.28837288066097},"location":"Left Knee"},{"euler":{"heading":26.72739672368714,"pitch":95.22964811224008,"roll":19.353428964671544},"location":"Left Ankle"},{"euler":{"heading":39.41925693682137,"pitch":-17.220428038780838,"roll":-17.607776547808065},"location":"Right Ankle"},{"euler":{"heading":74.68305220623085,"pitch":-163.7039039126598,"roll":52.45770788243917},"location":"Right Hip"},{"euler":{"heading":86.40861235095083,"pitch":-106.15529909818936,"roll":41.93137246194604},"location":"Right Knee"},{"euler":{"heading":55.88799243677019,"pitch":-129.712944105228,"roll":57.52479644541023},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.951"} +{"sensors":[{"euler":{"heading":27.640078586400634,"pitch":127.95038743021595,"roll":17.842393260681987},"location":"Left Knee"},{"euler":{"heading":23.733353890748074,"pitch":94.83919378083866,"roll":16.602803478144697},"location":"Left Ankle"},{"euler":{"heading":38.108791266567,"pitch":-16.45629638588107,"roll":-18.584445377572084},"location":"Right Ankle"},{"euler":{"heading":75.62722556827345,"pitch":-163.79746841372048,"roll":53.187058446862544},"location":"Right Hip"},{"euler":{"heading":73.14723630629334,"pitch":-106.47346351049546,"roll":40.49319089869118},"location":"Right Knee"},{"euler":{"heading":46.8549637151289,"pitch":-128.96736028379334,"roll":57.14193799758537},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.52"} +{"sensors":[{"euler":{"heading":26.50800670176525,"pitch":128.31182527944242,"roll":18.95132219214575},"location":"Left Knee"},{"euler":{"heading":22.435224571036212,"pitch":94.73558430742344,"roll":15.023463092761366},"location":"Left Ankle"},{"euler":{"heading":35.31758950518923,"pitch":-15.74107146634699,"roll":-19.75952873465262},"location":"Right Ankle"},{"euler":{"heading":77.078078754031,"pitch":-163.53730475676807,"roll":53.41302213925499},"location":"Right Hip"},{"euler":{"heading":63.93568630944536,"pitch":-106.16683179557837,"roll":38.00870002739022},"location":"Right Knee"},{"euler":{"heading":39.321987597101966,"pitch":-128.42944214053207,"roll":56.98574877368137},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.153"} +{"sensors":[{"euler":{"heading":26.169652934871724,"pitch":128.04435061913514,"roll":19.818022270195495},"location":"Left Knee"},{"euler":{"heading":22.044137464556137,"pitch":94.90342421250685,"roll":13.9629664109491},"location":"Left Ankle"},{"euler":{"heading":32.0809073344914,"pitch":-15.046319800490126,"roll":-20.840668301949524},"location":"Right Ankle"},{"euler":{"heading":78.70598852063057,"pitch":-162.77870207653456,"roll":52.92783536873933},"location":"Right Hip"},{"euler":{"heading":56.880794466876914,"pitch":-105.77046224615144,"roll":35.320593392240326},"location":"Right Knee"},{"euler":{"heading":33.67718205729412,"pitch":-128.62045848773025,"roll":57.17735426441795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.254"} +{"sensors":[{"euler":{"heading":26.350397927408387,"pitch":127.30885893228685,"roll":20.429863649872033},"location":"Left Knee"},{"euler":{"heading":22.41357145359354,"pitch":95.27527474177674,"roll":13.478974003108846},"location":"Left Ankle"},{"euler":{"heading":30.67328480461665,"pitch":-15.059749555952566,"roll":-21.44441017199919},"location":"Right Ankle"},{"euler":{"heading":80.29456748574985,"pitch":-162.0268630332103,"roll":51.82887280572682},"location":"Right Hip"},{"euler":{"heading":49.93303113655437,"pitch":-105.16209439900818,"roll":33.964293370826795},"location":"Right Knee"},{"euler":{"heading":29.554627292357434,"pitch":-129.4710694888598,"roll":57.55287375699028},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.354"} +{"sensors":[{"euler":{"heading":27.11670372253463,"pitch":126.33417483835079,"roll":20.58516805528743},"location":"Left Knee"},{"euler":{"heading":23.138180441218143,"pitch":95.7366044785533,"roll":13.427466330812978},"location":"Left Ankle"},{"euler":{"heading":31.756160682272352,"pitch":-15.886408951364096,"roll":-20.985964155434278},"location":"Right Ankle"},{"euler":{"heading":76.25046265248096,"pitch":-161.78055007671767,"roll":50.54312889723078},"location":"Right Hip"},{"euler":{"heading":42.37143821540245,"pitch":-104.23704311558828,"roll":34.69896279880442},"location":"Right Knee"},{"euler":{"heading":26.357443186157198,"pitch":-130.82935163958282,"roll":58.047249985337835},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.455"} +{"sensors":[{"euler":{"heading":28.273286448357577,"pitch":125.26790295647652,"roll":20.238183916146617},"location":"Left Knee"},{"euler":{"heading":24.224950020900543,"pitch":96.29079233545087,"roll":13.898100085050729},"location":"Left Ankle"},{"euler":{"heading":34.4501917846127,"pitch":-16.913861894583498,"roll":-19.59609733020554},"location":"Right Ankle"},{"euler":{"heading":72.98077118923615,"pitch":-161.8608783097796,"roll":49.7185738122341},"location":"Right Hip"},{"euler":{"heading":68.89704204854803,"pitch":-103.33458887946816,"roll":36.97492522067938},"location":"Right Knee"},{"euler":{"heading":23.917951563747803,"pitch":-132.52216130131762,"roll":58.708629787976896},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.556"} +{"sensors":[{"euler":{"heading":29.951567957589585,"pitch":124.1782086440781,"roll":19.246441547113182},"location":"Left Knee"},{"euler":{"heading":25.90552167862275,"pitch":96.90522396054531,"roll":15.12658136928199},"location":"Left Ankle"},{"euler":{"heading":36.98305342546966,"pitch":-17.51658653746825,"roll":-18.290879017292607},"location":"Right Ankle"},{"euler":{"heading":72.62816667414576,"pitch":-162.33190093669916,"roll":49.50158684383181},"location":"Right Hip"},{"euler":{"heading":89.80761563350671,"pitch":-103.02333168012166,"roll":39.3019257378088},"location":"Right Knee"},{"euler":{"heading":22.259381024612242,"pitch":-134.73170764511968,"roll":59.42600204096136},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.657"} +{"sensors":[{"euler":{"heading":32.74072623705159,"pitch":123.4656555687914,"roll":17.07674276216864},"location":"Left Knee"},{"euler":{"heading":27.977172906747967,"pitch":97.31852044228644,"roll":17.760202218766132},"location":"Left Ankle"},{"euler":{"heading":38.093817933196725,"pitch":-17.83605535604299,"roll":-17.728131487373876},"location":"Right Ankle"},{"euler":{"heading":73.02316485932194,"pitch":-162.56192242141742,"roll":49.51332651068269},"location":"Right Hip"},{"euler":{"heading":107.51775588087416,"pitch":-103.60969771057546,"roll":40.61089929079659},"location":"Right Knee"},{"euler":{"heading":20.25330674932118,"pitch":-135.70253284654524,"roll":59.867048547540584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.758"} +{"sensors":[{"euler":{"heading":36.04707889847003,"pitch":122.59496235950793,"roll":14.578358718750446},"location":"Left Knee"},{"euler":{"heading":30.91600796094666,"pitch":98.10867366208014,"roll":21.261017923614858},"location":"Left Ankle"},{"euler":{"heading":38.81306085393005,"pitch":-18.012173883335812,"roll":-17.45078226963686},"location":"Right Ankle"},{"euler":{"heading":72.91852679266984,"pitch":-163.00787543528114,"roll":49.98173812963307},"location":"Right Hip"},{"euler":{"heading":88.17216305597634,"pitch":-104.45538702216895,"roll":41.31973222682982},"location":"Right Knee"},{"euler":{"heading":17.34438480192355,"pitch":-134.18504940425382,"roll":59.74295346874644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.858"} +{"sensors":[{"euler":{"heading":37.987372159848015,"pitch":122.53242130385988,"roll":13.060796715429944},"location":"Left Knee"},{"euler":{"heading":32.37107367096868,"pitch":97.77134416917382,"roll":23.210030744927028},"location":"Left Ankle"},{"euler":{"heading":39.1106560976347,"pitch":-18.058578304619644,"roll":-17.479245332890443},"location":"Right Ankle"},{"euler":{"heading":73.55223148049879,"pitch":-163.11414182233358,"roll":50.67313097292745},"location":"Right Hip"},{"euler":{"heading":72.86709048496516,"pitch":-105.20873958873756,"roll":41.4617316447757},"location":"Right Knee"},{"euler":{"heading":14.451266235723045,"pitch":-132.4076355376218,"roll":58.958843163208954},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.959"} +{"sensors":[{"euler":{"heading":36.19320212355697,"pitch":123.55193014106437,"roll":13.524692734857725},"location":"Left Knee"},{"euler":{"heading":30.619552610183845,"pitch":96.82400989464483,"roll":22.36959913469117},"location":"Left Ankle"},{"euler":{"heading":38.97382706996944,"pitch":-17.934099895497788,"roll":-17.665524155301533},"location":"Right Ankle"},{"euler":{"heading":74.2732486453411,"pitch":-163.18651839711623,"roll":51.447387816533144},"location":"Right Hip"},{"euler":{"heading":60.787157174156164,"pitch":-105.81908585971416,"roll":41.15027061504651},"location":"Right Knee"},{"euler":{"heading":11.999149609647315,"pitch":-130.57932164430457,"roll":58.10068859872152},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.60"} +{"sensors":[{"euler":{"heading":32.28061622599658,"pitch":125.25329357832939,"roll":15.258373666379294},"location":"Left Knee"},{"euler":{"heading":26.747832954768864,"pitch":95.9311188733226,"roll":19.225045158866347},"location":"Left Ankle"},{"euler":{"heading":38.32076861797517,"pitch":-17.571759565153087,"roll":-18.178911061415963},"location":"Right Ankle"},{"euler":{"heading":75.0717024785383,"pitch":-163.34713507784255,"roll":52.21339192216026},"location":"Right Hip"},{"euler":{"heading":51.52632359269067,"pitch":-106.246521529199,"roll":40.35714083586557},"location":"Right Knee"},{"euler":{"heading":10.466983806646445,"pitch":-129.38271465442307,"roll":57.454962687933495},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.161"} +{"sensors":[{"euler":{"heading":29.30291685985975,"pitch":126.68579941415864,"roll":16.975771025146692},"location":"Left Knee"},{"euler":{"heading":23.553891902849337,"pitch":95.55717149723316,"roll":16.260710482164555},"location":"Left Ankle"},{"euler":{"heading":36.90613954313707,"pitch":-16.928785526425997,"roll":-19.142867918500198},"location":"Right Ankle"},{"euler":{"heading":75.83249114153766,"pitch":-163.77784787526483,"roll":53.031381407097896},"location":"Right Hip"},{"euler":{"heading":44.8413046309189,"pitch":-106.383594493798,"roll":38.83684093590029},"location":"Right Knee"},{"euler":{"heading":9.616729040442094,"pitch":-128.6507079608594,"roll":57.06685655559309},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.262"} +{"sensors":[{"euler":{"heading":27.893318092810542,"pitch":127.18536702260975,"roll":18.244426328248046},"location":"Left Knee"},{"euler":{"heading":22.234773522916708,"pitch":95.46849875629385,"roll":14.57122428337242},"location":"Left Ankle"},{"euler":{"heading":34.35664081923438,"pitch":-16.323193112470044,"roll":-20.229159529207568},"location":"Right Ankle"},{"euler":{"heading":77.15102505905814,"pitch":-163.78114415592643,"roll":53.515911478305405},"location":"Right Hip"},{"euler":{"heading":40.848000011044235,"pitch":-106.05578502396558,"roll":36.307769766377405},"location":"Right Knee"},{"euler":{"heading":8.985939751198593,"pitch":-128.13102072986308,"roll":56.929700063246756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.362"} +{"sensors":[{"euler":{"heading":27.512030154300902,"pitch":126.86452331026037,"roll":19.190260435440308},"location":"Left Knee"},{"euler":{"heading":22.034586363687225,"pitch":95.75687007556095,"roll":13.672652935481846},"location":"Left Ankle"},{"euler":{"heading":30.990872912119425,"pitch":-15.466051633228153,"roll":-21.43209411726843},"location":"Right Ankle"},{"euler":{"heading":78.7894981059376,"pitch":-163.0469087328604,"roll":53.300366825735004},"location":"Right Hip"},{"euler":{"heading":38.095528316856125,"pitch":-105.67592409764688,"roll":33.537706377032485},"location":"Right Knee"},{"euler":{"heading":9.016418472064517,"pitch":-128.14828393127448,"roll":57.15041841368321},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.463"} +{"sensors":[{"euler":{"heading":27.437644311991,"pitch":126.25909852697967,"roll":19.87965353353509},"location":"Left Knee"},{"euler":{"heading":22.673289865690666,"pitch":96.14860686329585,"roll":13.436252956404397},"location":"Left Ankle"},{"euler":{"heading":29.28135997081002,"pitch":-15.32064827838638,"roll":-22.306568572063842},"location":"Right Ankle"},{"euler":{"heading":80.4342887343889,"pitch":-162.2160487836711,"roll":52.421615464744576},"location":"Right Hip"},{"euler":{"heading":34.97973789718407,"pitch":-105.0289867235173,"roll":31.940777117819962},"location":"Right Knee"},{"euler":{"heading":9.457545949020979,"pitch":-128.97246680876492,"roll":57.59984386843433},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.564"} +{"sensors":[{"euler":{"heading":27.84047126023959,"pitch":125.3486009639486,"roll":20.218093401047714},"location":"Left Knee"},{"euler":{"heading":23.558923359943115,"pitch":96.5387515654034,"roll":13.489879349938658},"location":"Left Ankle"},{"euler":{"heading":29.908962542784124,"pitch":-16.33057546999852,"roll":-22.110937647115165},"location":"Right Ankle"},{"euler":{"heading":76.56700671731984,"pitch":-161.8566146254551,"roll":51.12704941804595},"location":"Right Hip"},{"euler":{"heading":30.85897089508248,"pitch":-103.81338660855506,"roll":32.22584014816056},"location":"Right Knee"},{"euler":{"heading":10.163568487078255,"pitch":-130.56248303684896,"roll":58.11353329908885},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.665"} +{"sensors":[{"euler":{"heading":28.639984827348556,"pitch":124.29879272087231,"roll":20.12005828418767},"location":"Left Knee"},{"euler":{"heading":24.68836001527686,"pitch":96.92745562890467,"roll":13.918904224862322},"location":"Left Ankle"},{"euler":{"heading":32.194544514381406,"pitch":-17.226597493440803,"roll":-20.899432572186658},"location":"Right Ankle"},{"euler":{"heading":73.13888689389563,"pitch":-161.72756676506194,"roll":50.062644402746855},"location":"Right Hip"},{"euler":{"heading":25.499158632262834,"pitch":-102.59451420721274,"roll":34.3981756346794},"location":"Right Knee"},{"euler":{"heading":10.949744736255466,"pitch":-132.57199862713654,"roll":58.7269907533163},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.765"} +{"sensors":[{"euler":{"heading":29.823758040569395,"pitch":123.24183186778568,"roll":19.460599218334483},"location":"Left Knee"},{"euler":{"heading":26.308742505927746,"pitch":97.3386373249278,"roll":14.99082851871198},"location":"Left Ankle"},{"euler":{"heading":35.26098336648724,"pitch":-18.049276107064053,"roll":-19.357273751233908},"location":"Right Ankle"},{"euler":{"heading":73.34027178735602,"pitch":-161.96751302971626,"roll":49.610787287077436},"location":"Right Hip"},{"euler":{"heading":54.08917159696631,"pitch":-101.84830540533943,"roll":37.4340232497357},"location":"Right Knee"},{"euler":{"heading":11.694535219257403,"pitch":-134.91949158216752,"roll":59.400999267542545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.866"} +{"sensors":[{"euler":{"heading":31.839404395193036,"pitch":122.45782825445207,"roll":17.787770464850688},"location":"Left Knee"},{"euler":{"heading":28.295439064111942,"pitch":97.47289308926895,"roll":17.233081929131},"location":"Left Ankle"},{"euler":{"heading":37.04050730880506,"pitch":-18.3894165633748,"roll":-18.490945046265548},"location":"Right Ankle"},{"euler":{"heading":73.48732959510467,"pitch":-162.27975934664025,"roll":49.55863150167568},"location":"Right Hip"},{"euler":{"heading":77.58782257322085,"pitch":-101.92813372567626,"roll":39.598445950207775},"location":"Right Knee"},{"euler":{"heading":12.238970468704602,"pitch":-136.87126553194503,"roll":60.11790831166328},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.966"} +{"sensors":[{"euler":{"heading":34.94046848700605,"pitch":121.55220777209469,"roll":15.376327964899895},"location":"Left Knee"},{"euler":{"heading":31.670064475411312,"pitch":98.45050208225533,"roll":20.843492986634207},"location":"Left Ankle"},{"euler":{"heading":38.09924395670222,"pitch":-18.411826419401788,"roll":-18.08752547964986},"location":"Right Ankle"},{"euler":{"heading":73.45316236912554,"pitch":-162.66337348662643,"roll":49.87410079631085},"location":"Right Hip"},{"euler":{"heading":97.04252337911969,"pitch":-102.63651629896098,"roll":41.03973634695644},"location":"Right Knee"},{"euler":{"heading":11.43029354728216,"pitch":-136.29492593346907,"roll":60.302887444284686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.67"} +{"sensors":[{"euler":{"heading":37.723373987963186,"pitch":121.11323405534827,"roll":13.313179897063732},"location":"Left Knee"},{"euler":{"heading":33.695985927874844,"pitch":98.26496072387359,"roll":23.557550365038576},"location":"Left Ankle"},{"euler":{"heading":38.69859752357918,"pitch":-18.19429223469153,"roll":-18.049473087111153},"location":"Right Ankle"},{"euler":{"heading":73.54409243430986,"pitch":-162.9688792081159,"roll":50.55789670966899},"location":"Right Hip"},{"euler":{"heading":113.30494835870061,"pitch":-103.7293574146047,"roll":41.796955805832766},"location":"Right Knee"},{"euler":{"heading":9.84068177880664,"pitch":-134.43571637908946,"roll":59.80439599754141},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.168"} +{"sensors":[{"euler":{"heading":37.707125227386086,"pitch":121.76833712847616,"roll":12.950451456888423},"location":"Left Knee"},{"euler":{"heading":32.73887284424224,"pitch":97.25283529022461,"roll":23.65314612065058},"location":"Left Ankle"},{"euler":{"heading":38.89802749540506,"pitch":-17.747748052150367,"roll":-18.258798037998098},"location":"Right Ankle"},{"euler":{"heading":73.85041286958922,"pitch":-163.14425349209077,"roll":51.41445889505508},"location":"Right Hip"},{"euler":{"heading":126.96543199662234,"pitch":-104.76580456538072,"roll":42.07786390438428},"location":"Right Knee"},{"euler":{"heading":8.158609712596395,"pitch":-132.4442079920901,"roll":58.88364420853432},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.269"} +{"sensors":[{"euler":{"heading":34.001784725930314,"pitch":123.45506017557261,"roll":14.358257357280197},"location":"Left Knee"},{"euler":{"heading":28.93497342501913,"pitch":96.04566813593708,"roll":21.058314599369133},"location":"Left Ankle"},{"euler":{"heading":38.62136777420345,"pitch":-17.1534315061857,"roll":-18.66224204370316},"location":"Right Ankle"},{"euler":{"heading":74.43416493404102,"pitch":-163.3088906186098,"roll":52.308446821857345},"location":"Right Hip"},{"euler":{"heading":104.58935953276965,"pitch":-105.56691768647507,"roll":41.77913703301446},"location":"Right Knee"},{"euler":{"heading":6.941854249393906,"pitch":-130.76104783747726,"roll":58.12776786071523},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.369"} +{"sensors":[{"euler":{"heading":30.432778287790555,"pitch":125.29643512845871,"roll":16.173168824963387},"location":"Left Knee"},{"euler":{"heading":24.934493902979,"pitch":95.33977765852222,"roll":17.675832697630398},"location":"Left Ankle"},{"euler":{"heading":37.78247241172023,"pitch":-16.484852507570697,"roll":-19.437534695851674},"location":"Right Ankle"},{"euler":{"heading":75.15589809883153,"pitch":-163.6362258800134,"roll":53.260081599836944},"location":"Right Hip"},{"euler":{"heading":87.34990184753758,"pitch":-106.01239552613994,"roll":40.75971777144131},"location":"Right Knee"},{"euler":{"heading":6.801700503990404,"pitch":-129.92765384553985,"roll":57.65187995831815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.470"} +{"sensors":[{"euler":{"heading":28.753049011019524,"pitch":126.10057982725358,"roll":17.61329652170464},"location":"Left Knee"},{"euler":{"heading":22.984709243507446,"pitch":95.47987025634247,"roll":15.495014651113626},"location":"Left Ankle"},{"euler":{"heading":35.68060259162879,"pitch":-16.105793723716097,"roll":-20.4957961523556},"location":"Right Ankle"},{"euler":{"heading":76.2819301112841,"pitch":-163.9383687078404,"roll":54.03201257946569},"location":"Right Hip"},{"euler":{"heading":75.13675117988679,"pitch":-105.76151348250525,"roll":38.64226385530299},"location":"Right Knee"},{"euler":{"heading":6.8296301534239054,"pitch":-129.34000500550974,"roll":57.41151069944925},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.576"} +{"sensors":[{"euler":{"heading":27.94843804725523,"pitch":126.28126202297909,"roll":18.59538557200574},"location":"Left Knee"},{"euler":{"heading":21.869797613253763,"pitch":95.44611325089753,"roll":14.282646126888023},"location":"Left Ankle"},{"euler":{"heading":32.14032974790375,"pitch":-15.233660498626605,"roll":-21.673366952444493},"location":"Right Ankle"},{"euler":{"heading":77.98870449841493,"pitch":-163.40320838597953,"roll":54.034912692965165},"location":"Right Hip"},{"euler":{"heading":66.03437821531541,"pitch":-105.4393716517231,"roll":35.79281928086252},"location":"Right Knee"},{"euler":{"heading":7.090311224779608,"pitch":-129.09363098145224,"roll":57.54477969734845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.676"} +{"sensors":[{"euler":{"heading":27.37880308404658,"pitch":126.18316330351,"roll":19.299748941705168},"location":"Left Knee"},{"euler":{"heading":21.38497133806039,"pitch":95.42151268558484,"roll":13.512595983211783},"location":"Left Ankle"},{"euler":{"heading":29.75285466916531,"pitch":-14.712027721571047,"roll":-22.477327886633446},"location":"Right Ankle"},{"euler":{"heading":79.71320142009257,"pitch":-162.56223669058156,"roll":53.33599063384707},"location":"Right Hip"},{"euler":{"heading":57.86198295990043,"pitch":-104.7911550800613,"roll":33.83273989205194},"location":"Right Knee"},{"euler":{"heading":7.547514213592844,"pitch":-129.7208722573385,"roll":57.86751195141271},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.777"} +{"sensors":[{"euler":{"heading":27.43557366972496,"pitch":125.7436230673024,"roll":19.681461573020545},"location":"Left Knee"},{"euler":{"heading":21.445784800919714,"pitch":95.50626778434707,"roll":13.160624641517987},"location":"Left Ankle"},{"euler":{"heading":29.89074096799292,"pitch":-15.15559259571655,"roll":-22.604336029737304},"location":"Right Ankle"},{"euler":{"heading":80.55446808256798,"pitch":-162.03907466702066,"roll":52.19820233308852},"location":"Right Hip"},{"euler":{"heading":49.39873298680303,"pitch":-103.90138937041276,"roll":33.8189239586532},"location":"Right Knee"},{"euler":{"heading":8.08239482686354,"pitch":-130.87108740287974,"roll":58.28439578508001},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.878"} +{"sensors":[{"euler":{"heading":28.153877124649625,"pitch":124.88216006715186,"roll":19.735543746525337},"location":"Left Knee"},{"euler":{"heading":22.10794548302779,"pitch":95.84455409637717,"roll":13.293977925608765},"location":"Left Ankle"},{"euler":{"heading":31.989374864916545,"pitch":-16.216892542003464,"roll":-21.649107160947864},"location":"Right Ankle"},{"euler":{"heading":76.5821751295071,"pitch":-161.73214700358187,"roll":51.08541174893491},"location":"Right Hip"},{"euler":{"heading":40.78651110316862,"pitch":-102.9119580181466,"roll":35.750537857654045},"location":"Right Knee"},{"euler":{"heading":8.829510484707601,"pitch":-132.36967710944245,"roll":58.851873420543114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.979"} +{"sensors":[{"euler":{"heading":29.30682743252968,"pitch":123.87077667036486,"roll":19.30291144000958},"location":"Left Knee"},{"euler":{"heading":23.339777609987834,"pitch":96.27551240945994,"roll":14.027012674153625},"location":"Left Ankle"},{"euler":{"heading":35.06326414367323,"pitch":-17.498283025367613,"roll":-20.05347152610428},"location":"Right Ankle"},{"euler":{"heading":76.43906188888765,"pitch":-161.85869672856202,"roll":50.50653743114692},"location":"Right Hip"},{"euler":{"heading":66.93937631545316,"pitch":-102.20689609000694,"roll":38.622070276031636},"location":"Right Knee"},{"euler":{"heading":9.786075810780156,"pitch":-134.45698642476322,"roll":59.52589309604025},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.80"} +{"sensors":[{"euler":{"heading":31.059423721023535,"pitch":122.9912728860212,"roll":18.090980795881073},"location":"Left Knee"},{"euler":{"heading":25.008329555131525,"pitch":96.52278846367855,"roll":15.695074537774593},"location":"Left Ankle"},{"euler":{"heading":36.97968525490042,"pitch":-18.110813037643542,"roll":-19.085245216384255},"location":"Right Ankle"},{"euler":{"heading":75.73329546920993,"pitch":-162.25263787912203,"roll":50.31566571457416},"location":"Right Hip"},{"euler":{"heading":87.90147038251243,"pitch":-102.26450411469126,"roll":40.92318301600547},"location":"Right Knee"},{"euler":{"heading":10.771450913276457,"pitch":-136.89270890567352,"roll":60.17146854823748},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.181"} +{"sensors":[{"euler":{"heading":34.016446397725915,"pitch":122.45702536596215,"roll":15.757710974068825},"location":"Left Knee"},{"euler":{"heading":27.914372738242946,"pitch":97.09731555230756,"roll":18.946437280394786},"location":"Left Ankle"},{"euler":{"heading":37.948372695857834,"pitch":-18.540224720206993,"roll":-18.66691004582075},"location":"Right Ankle"},{"euler":{"heading":75.5299690765635,"pitch":-162.4961445636309,"roll":50.588848726893254},"location":"Right Hip"},{"euler":{"heading":105.67757677479658,"pitch":-102.66740533029612,"roll":42.27412974847573},"location":"Right Knee"},{"euler":{"heading":10.35948690725041,"pitch":-137.19423503619046,"roll":60.41080584376675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.282"} +{"sensors":[{"euler":{"heading":37.07974655621132,"pitch":121.99143402243256,"roll":13.414526264689286},"location":"Left Knee"},{"euler":{"heading":30.22843933593456,"pitch":97.03455064937806,"roll":22.0252564711544},"location":"Left Ankle"},{"euler":{"heading":38.50372060864756,"pitch":-18.82771842037673,"roll":-18.55590781876312},"location":"Right Ankle"},{"euler":{"heading":75.23268888082166,"pitch":-162.86512038435814,"roll":51.25221676011098},"location":"Right Hip"},{"euler":{"heading":86.55246557069657,"pitch":-103.50760520906645,"roll":42.931763554219},"location":"Right Knee"},{"euler":{"heading":8.993633010633106,"pitch":-135.43378330990703,"roll":60.0804078963918},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.385"} +{"sensors":[{"euler":{"heading":38.220552623932726,"pitch":122.30140485679091,"roll":12.459517112119814},"location":"Left Knee"},{"euler":{"heading":30.09584463692947,"pitch":96.18108503142263,"roll":22.82547048044954},"location":"Left Ankle"},{"euler":{"heading":38.77413433623131,"pitch":-18.94517692179148,"roll":-18.794347204420166},"location":"Right Ankle"},{"euler":{"heading":75.4886820218801,"pitch":-162.96713041162099,"roll":52.06651303536796},"location":"Right Hip"},{"euler":{"heading":71.29712634205971,"pitch":-104.26193583230418,"roll":43.110668461874766},"location":"Right Knee"},{"euler":{"heading":7.387758108077085,"pitch":-133.53163842031205,"roll":59.18690826565261},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.486"} +{"sensors":[{"euler":{"heading":35.74798211695376,"pitch":123.51530303657238,"roll":13.468125032005211},"location":"Left Knee"},{"euler":{"heading":27.062184891677454,"pitch":95.50393018575392,"roll":20.648254074387804},"location":"Left Ankle"},{"euler":{"heading":38.50803357566106,"pitch":-18.831485810362725,"roll":-19.1111752917172},"location":"Right Ankle"},{"euler":{"heading":76.05500738333296,"pitch":-162.99403835914393,"roll":52.85091190196487},"location":"Right Hip"},{"euler":{"heading":59.38276609770899,"pitch":-104.82560466139931,"roll":42.79098513666347},"location":"Right Knee"},{"euler":{"heading":6.197720953438935,"pitch":-131.74503653106407,"roll":58.336785564206984},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.586"} +{"sensors":[{"euler":{"heading":31.99930487801462,"pitch":125.27960370052709,"roll":15.32609311431242},"location":"Left Knee"},{"euler":{"heading":22.943268012152537,"pitch":94.7128304132443,"roll":17.043185612667536},"location":"Left Ankle"},{"euler":{"heading":37.64211203286041,"pitch":-18.37783640726399,"roll":-19.796200742691266},"location":"Right Ankle"},{"euler":{"heading":76.81003404374447,"pitch":-163.03622261312816,"roll":53.66176511717721},"location":"Right Hip"},{"euler":{"heading":50.33479256116355,"pitch":-105.20485776939624,"roll":41.87745436237426},"location":"Right Knee"},{"euler":{"heading":5.907030208805239,"pitch":-130.63373615510568,"roll":57.73994463947859},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.686"} +{"sensors":[{"euler":{"heading":29.57198527600741,"pitch":126.41234140687112,"roll":17.054884588749},"location":"Left Knee"},{"euler":{"heading":20.141452905687228,"pitch":94.59151470719527,"roll":14.244783001689898},"location":"Left Ankle"},{"euler":{"heading":35.92833943187556,"pitch":-17.64034844895742,"roll":-20.861961272838357},"location":"Right Ankle"},{"euler":{"heading":77.7433503519548,"pitch":-163.31815170579821,"roll":54.42521252167773},"location":"Right Hip"},{"euler":{"heading":44.00242240017967,"pitch":-105.18537069006696,"roll":40.188753526332974},"location":"Right Knee"},{"euler":{"heading":6.299215552939876,"pitch":-129.78272613890366,"roll":57.4495810813228},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.787"} +{"sensors":[{"euler":{"heading":28.583310320055382,"pitch":126.64660161338742,"roll":18.339795450778844},"location":"Left Knee"},{"euler":{"heading":19.369328510918958,"pitch":94.74927799126587,"roll":12.978928744488119},"location":"Left Ankle"},{"euler":{"heading":32.824746319366426,"pitch":-16.616295517743527,"roll":-22.171169257864157},"location":"Right Ankle"},{"euler":{"heading":79.36961833022475,"pitch":-162.9727862455748,"roll":54.59879528816953},"location":"Right Hip"},{"euler":{"heading":40.214631926160955,"pitch":-104.73967516876209,"roll":37.49540993139184},"location":"Right Knee"},{"euler":{"heading":6.507375639151783,"pitch":-129.1375198441796,"roll":57.31763510169243},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.888"} +{"sensors":[{"euler":{"heading":28.047268497577402,"pitch":126.46618753290102,"roll":19.258721654761935},"location":"Left Knee"},{"euler":{"heading":19.13544951130172,"pitch":94.96932305435179,"roll":12.095082310155606},"location":"Left Ankle"},{"euler":{"heading":29.71277813974746,"pitch":-15.689655541707072,"roll":-23.141807861030465},"location":"Right Ankle"},{"euler":{"heading":81.08170446094341,"pitch":-162.065742885479,"roll":54.036483785125974},"location":"Right Hip"},{"euler":{"heading":37.089411996220264,"pitch":-104.22341555430249,"roll":35.0344892052715},"location":"Right Knee"},{"euler":{"heading":6.927519810366649,"pitch":-130.53347618645006,"roll":57.4836152389965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.988"} +{"sensors":[{"euler":{"heading":27.780771960389615,"pitch":126.1186307914219,"roll":19.840532155114822},"location":"Left Knee"},{"euler":{"heading":19.354175868089822,"pitch":95.12087388699497,"roll":11.652030156321539},"location":"Left Ankle"},{"euler":{"heading":28.89478651454423,"pitch":-15.707286418840223,"roll":-23.574216471060968},"location":"Right Ankle"},{"euler":{"heading":82.28736356161538,"pitch":-161.33416156858723,"roll":52.92718604998225},"location":"Right Hip"},{"euler":{"heading":32.89552573756263,"pitch":-103.59574178955731,"roll":34.35938866088034},"location":"Right Knee"},{"euler":{"heading":7.378548935689658,"pitch":-131.01780699193515,"roll":57.806220449765696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.89"} +{"sensors":[{"euler":{"heading":28.115478496030047,"pitch":125.41769036234369,"roll":20.099459133971187},"location":"Left Knee"},{"euler":{"heading":19.949440303553683,"pitch":95.35907868810388,"roll":11.578115223331169},"location":"Left Ankle"},{"euler":{"heading":30.81716998977815,"pitch":-16.484239535941807,"roll":-22.835883797378596},"location":"Right Ankle"},{"euler":{"heading":78.00701336103418,"pitch":-161.129960554374,"roll":51.70343379327693},"location":"Right Hip"},{"euler":{"heading":27.458007584536443,"pitch":-102.61754921670128,"roll":35.853145901739644},"location":"Right Knee"},{"euler":{"heading":7.896483781037041,"pitch":-132.056541937291,"roll":58.228934632744746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.190"} +{"sensors":[{"euler":{"heading":28.966230680981358,"pitch":124.61101291581377,"roll":19.852185786681467},"location":"Left Knee"},{"euler":{"heading":20.954083935814896,"pitch":95.64002265994992,"roll":12.004691975306477},"location":"Left Ankle"},{"euler":{"heading":34.07968284282981,"pitch":-17.55589412104626,"roll":-21.34733250965716},"location":"Right Ankle"},{"euler":{"heading":77.95054571742945,"pitch":-161.23650421924532,"roll":50.88741094804517},"location":"Right Hip"},{"euler":{"heading":55.97844974366086,"pitch":-101.77402428937523,"roll":38.655464661697025},"location":"Right Knee"},{"euler":{"heading":8.487036879671255,"pitch":-133.39480291277965,"roll":58.783852083126405},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.290"} +{"sensors":[{"euler":{"heading":30.304918863321607,"pitch":123.80378159933933,"roll":18.99228638156744},"location":"Left Knee"},{"euler":{"heading":22.472286035593324,"pitch":95.88829655077218,"roll":13.127908792321755},"location":"Left Ankle"},{"euler":{"heading":36.72129826232811,"pitch":-18.40075618727227,"roll":-20.065777930888395},"location":"Right Ankle"},{"euler":{"heading":76.88766246899318,"pitch":-161.64206892271972,"roll":50.594910284039976},"location":"Right Hip"},{"euler":{"heading":78.9445116104971,"pitch":-101.47447359955889,"roll":41.339845758853414},"location":"Right Knee"},{"euler":{"heading":9.285682415295048,"pitch":-135.46783152277192,"roll":59.42867043729808},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.391"} +{"sensors":[{"euler":{"heading":32.54847965490842,"pitch":123.33493163428267,"roll":17.102412314715448},"location":"Left Knee"},{"euler":{"heading":24.678528090218514,"pitch":95.91675825553388,"roll":15.678169064066875},"location":"Left Ankle"},{"euler":{"heading":38.319445855880765,"pitch":-18.873930741830204,"roll":-19.381755741291034},"location":"Right Ankle"},{"euler":{"heading":76.49894474456586,"pitch":-161.80691385622973,"roll":50.508592951573625},"location":"Right Hip"},{"euler":{"heading":97.86800411383936,"pitch":-101.75633125470333,"roll":43.10894616741409},"location":"Right Knee"},{"euler":{"heading":9.856378200086734,"pitch":-136.77291391615685,"roll":59.9943145729729},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.492"} +{"sensors":[{"euler":{"heading":35.7588708394562,"pitch":122.52423599005553,"roll":14.595641149490888},"location":"Left Knee"},{"euler":{"heading":27.810800272751386,"pitch":96.39435592222031,"roll":19.35325677980741},"location":"Left Ankle"},{"euler":{"heading":39.18805459432026,"pitch":-19.16535252847097,"roll":-19.012504029284404},"location":"Right Ankle"},{"euler":{"heading":75.96068671467586,"pitch":-162.11660123413063,"roll":50.805040928889746},"location":"Right Hip"},{"euler":{"heading":113.89761677517672,"pitch":-102.62374390759278,"roll":44.10333966007419},"location":"Right Knee"},{"euler":{"heading":8.997859684817888,"pitch":-135.60545393750718,"roll":60.01269132164507},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.593"} +{"sensors":[{"euler":{"heading":38.19134048030921,"pitch":122.48031339002961,"roll":12.802951005623758},"location":"Left Knee"},{"euler":{"heading":29.513431706343997,"pitch":95.82176515979438,"roll":21.78101061223051},"location":"Left Ankle"},{"euler":{"heading":39.6376769443977,"pitch":-19.369599764163627,"roll":-18.910244354878596},"location":"Right Ankle"},{"euler":{"heading":76.04909400667869,"pitch":-162.23630631854425,"roll":51.41811715764509},"location":"Right Hip"},{"euler":{"heading":93.33058779813625,"pitch":-103.4621517681677,"roll":44.49779040135611},"location":"Right Knee"},{"euler":{"heading":41.60646427626415,"pitch":-133.62752581662394,"roll":59.23859406963726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.696"} +{"sensors":[{"euler":{"heading":37.28173384298826,"pitch":123.39181814362901,"roll":12.893038967317937},"location":"Left Knee"},{"euler":{"heading":28.11324987997069,"pitch":94.97070482206263,"roll":21.219201813573303},"location":"Left Ankle"},{"euler":{"heading":39.732343082458854,"pitch":-19.39389469166932,"roll":-19.061469736576118},"location":"Right Ankle"},{"euler":{"heading":76.3295675675417,"pitch":-162.30300731278035,"roll":52.133397863805484},"location":"Right Hip"},{"euler":{"heading":76.82326418179002,"pitch":-104.17918899306133,"roll":44.444492820645166},"location":"Right Knee"},{"euler":{"heading":68.2112291471913,"pitch":-131.64749810996193,"roll":58.34193760675753},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.798"} +{"sensors":[{"euler":{"heading":33.42160772810026,"pitch":125.09057629928708,"roll":14.484665454998794},"location":"Left Knee"},{"euler":{"heading":24.380573715038167,"pitch":94.05791414959275,"roll":18.25542298463657},"location":"Left Ankle"},{"euler":{"heading":39.32828569533185,"pitch":-19.124558492550914,"roll":-19.5193564272966},"location":"Right Ankle"},{"euler":{"heading":76.80297662512709,"pitch":-162.38714461063736,"roll":52.863871855329876},"location":"Right Hip"},{"euler":{"heading":63.818382105551954,"pitch":-104.77451033927603,"roll":43.92658586590144},"location":"Right Knee"},{"euler":{"heading":56.10692808741125,"pitch":-130.17092168843345,"roll":57.72677067151367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.898"} +{"sensors":[{"euler":{"heading":29.79126138274446,"pitch":126.83582598475287,"roll":16.299442977496373},"location":"Left Knee"},{"euler":{"heading":21.009161247587443,"pitch":93.52921799978286,"roll":15.097948775683685},"location":"Left Ankle"},{"euler":{"heading":38.254280495543355,"pitch":-18.547905651454254,"roll":-20.391475369282723},"location":"Right Ankle"},{"euler":{"heading":77.25005652019672,"pitch":-162.6773094290389,"roll":53.69132817885945},"location":"Right Hip"},{"euler":{"heading":53.93099825378669,"pitch":-105.17051440592475,"roll":42.792070316009195},"location":"Right Knee"},{"euler":{"heading":46.70723606726059,"pitch":-129.37582747750793,"roll":57.32469944119026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.999"} +{"sensors":[{"euler":{"heading":28.138596056102212,"pitch":127.49948155608085,"roll":17.739449470577345},"location":"Left Knee"},{"euler":{"heading":19.598237235232897,"pitch":93.55021987032644,"roll":13.275312580938616},"location":"Left Ankle"},{"euler":{"heading":36.072863842522494,"pitch":-17.91909132965307,"roll":-21.47789944612575},"location":"Right Ankle"},{"euler":{"heading":77.99067942981449,"pitch":-162.76745842065566,"roll":54.40440093843793},"location":"Right Hip"},{"euler":{"heading":47.303710147451156,"pitch":-105.10078646775644,"roll":40.7191013275795},"location":"Right Knee"},{"euler":{"heading":39.34371574347681,"pitch":-128.8703976157956,"roll":57.1392344339772},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.99"} +{"sensors":[{"euler":{"heading":27.558285484309586,"pitch":127.45196841203196,"roll":18.786827230562988},"location":"Left Knee"},{"euler":{"heading":18.989942497631265,"pitch":93.70002070728549,"roll":12.095733814242172},"location":"Left Ankle"},{"euler":{"heading":32.568528368548414,"pitch":-16.713945005457298,"roll":-22.746352283347548},"location":"Right Ankle"},{"euler":{"heading":79.48295149445563,"pitch":-162.0939779283222,"roll":54.29458863924404},"location":"Right Hip"},{"euler":{"heading":42.84637903329613,"pitch":-104.85933216556724,"roll":37.850456979337594},"location":"Right Knee"},{"euler":{"heading":33.748480808402924,"pitch":-128.977850954453,"roll":57.31029430563096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.200"} +{"sensors":[{"euler":{"heading":27.320940127432095,"pitch":127.16521733954885,"roll":19.443253189313467},"location":"Left Knee"},{"euler":{"heading":18.854535196469573,"pitch":93.81773582844755,"roll":11.361299612591912},"location":"Left Ankle"},{"euler":{"heading":30.41261922806817,"pitch":-16.253640739383936,"roll":-23.62065949273187},"location":"Right Ankle"},{"euler":{"heading":81.06154068708149,"pitch":-161.36565606280635,"roll":53.42827754303927},"location":"Right Hip"},{"euler":{"heading":38.47733896720611,"pitch":-104.29601834288339,"roll":36.00974626904581},"location":"Right Knee"},{"euler":{"heading":29.428702095502317,"pitch":-129.77662910220215,"roll":57.65533196428604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.300"} +{"sensors":[{"euler":{"heading":27.60817192616418,"pitch":126.51335313732464,"roll":19.823205605518947},"location":"Left Knee"},{"euler":{"heading":19.290632147642764,"pitch":94.09072192134597,"roll":11.118845248320557},"location":"Left Ankle"},{"euler":{"heading":30.8590176164675,"pitch":-16.913223560518365,"roll":-23.53783807642113},"location":"Right Ankle"},{"euler":{"heading":81.86062725961315,"pitch":-160.97415460096624,"roll":52.21036676576535},"location":"Right Hip"},{"euler":{"heading":33.04503775870829,"pitch":-103.50686024533414,"roll":36.22285023040144},"location":"Right Knee"},{"euler":{"heading":26.12353900491702,"pitch":-131.04639184231522,"roll":58.11023532554273},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.401"} +{"sensors":[{"euler":{"heading":28.497340847535302,"pitch":125.55488839383023,"roll":19.78057008226632},"location":"Left Knee"},{"euler":{"heading":20.164949617763057,"pitch":94.52799007740286,"roll":11.363188331148367},"location":"Left Ankle"},{"euler":{"heading":33.697776100187,"pitch":-17.866782074654864,"roll":-22.166817978999237},"location":"Right Ankle"},{"euler":{"heading":81.54583332907393,"pitch":-160.99444906540253,"roll":51.22127050099143},"location":"Right Hip"},{"euler":{"heading":60.89793178487875,"pitch":-102.6441380596562,"roll":38.40736074786039},"location":"Right Knee"},{"euler":{"heading":23.6134702310018,"pitch":-132.629375957351,"roll":58.67644403826017},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.502"} +{"sensors":[{"euler":{"heading":29.790195612557614,"pitch":124.5924726123016,"roll":19.12962357463836},"location":"Left Knee"},{"euler":{"heading":21.481315876475957,"pitch":94.92960844185706,"roll":12.178819059615808},"location":"Left Ankle"},{"euler":{"heading":36.67613228198683,"pitch":-18.83664894675698,"roll":-20.557606988723883},"location":"Right Ankle"},{"euler":{"heading":80.0455111096042,"pitch":-161.42898455412254,"roll":50.87323024256932},"location":"Right Hip"},{"euler":{"heading":82.72882051548748,"pitch":-102.22020071197171,"roll":41.29964724678329},"location":"Right Knee"},{"euler":{"heading":21.903056504989,"pitch":-134.85845005347997,"roll":59.3552608048121},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.603"} +{"sensors":[{"euler":{"heading":31.877321899682347,"pitch":123.88212986272461,"roll":17.518005391552364},"location":"Left Knee"},{"euler":{"heading":23.320154505884943,"pitch":94.99575750956573,"roll":14.183213502438367},"location":"Left Ankle"},{"euler":{"heading":38.45487792162635,"pitch":-19.69047607783354,"roll":-19.565206062951724},"location":"Right Ankle"},{"euler":{"heading":78.88244730025784,"pitch":-161.89352857986316,"roll":50.683148746661814},"location":"Right Hip"},{"euler":{"heading":100.9190296473862,"pitch":-102.27654313552978,"roll":43.32227445584587},"location":"Right Knee"},{"euler":{"heading":20.389610771051338,"pitch":-136.78630403579453,"roll":59.9813957946587},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.704"} +{"sensors":[{"euler":{"heading":35.054749604957756,"pitch":123.18585064316532,"roll":15.138169580773262},"location":"Left Knee"},{"euler":{"heading":26.615331160099213,"pitch":95.70365268330777,"roll":17.703243368167097},"location":"Left Ankle"},{"euler":{"heading":39.52486791138789,"pitch":-20.308504971483117,"roll":-18.988253809466283},"location":"Right Ankle"},{"euler":{"heading":78.06687399992083,"pitch":-162.30199227615583,"roll":50.87975781086438},"location":"Right Hip"},{"euler":{"heading":116.2471604561893,"pitch":-102.916111445148,"roll":44.51040618615251},"location":"Right Knee"},{"euler":{"heading":17.75920107470081,"pitch":-136.28939008448992,"roll":60.072345132589376},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.804"} +{"sensors":[{"euler":{"heading":37.72776762806473,"pitch":122.8114531578388,"roll":13.222527770733153},"location":"Left Knee"},{"euler":{"heading":28.617817210475014,"pitch":95.65455369958222,"roll":20.25228275188638},"location":"Left Ankle"},{"euler":{"heading":40.16316224039805,"pitch":-20.796400223368146,"roll":-18.739668244746454},"location":"Right Ankle"},{"euler":{"heading":77.63095047046885,"pitch":-162.64781966471693,"roll":51.40249229532592},"location":"Right Hip"},{"euler":{"heading":129.2734418161278,"pitch":-103.50078617684099,"roll":45.133673598951276},"location":"Right Knee"},{"euler":{"heading":14.886042268383052,"pitch":-134.4961055111686,"roll":59.57200277476436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.905"} +{"sensors":[{"euler":{"heading":37.413457353934184,"pitch":123.388247578076,"roll":13.09434429668638},"location":"Left Knee"},{"euler":{"heading":27.849601012046584,"pitch":94.90857895330528,"roll":20.23422968242146},"location":"Left Ankle"},{"euler":{"heading":40.41825809618305,"pitch":-20.916837865829656,"roll":-18.841721281754573},"location":"Right Ankle"},{"euler":{"heading":77.67829767947292,"pitch":-162.7110473297474,"roll":52.07764216193229},"location":"Right Hip"},{"euler":{"heading":105.9262418409806,"pitch":-104.11902338465161,"roll":45.29337182935642},"location":"Right Knee"},{"euler":{"heading":12.384870288023912,"pitch":-132.6296493804044,"roll":58.70308391105728},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.6"} +{"sensors":[{"euler":{"heading":33.88023594464089,"pitch":124.83764246332589,"roll":14.625204477255444},"location":"Left Knee"},{"euler":{"heading":24.46790899898091,"pitch":94.1027682288492,"roll":17.65546632414643},"location":"Left Ankle"},{"euler":{"heading":40.02665423408659,"pitch":-20.6928816600457,"roll":-19.159988221264932},"location":"Right Ankle"},{"euler":{"heading":78.07378397984405,"pitch":-162.68502616134938,"roll":52.75396683401407},"location":"Right Hip"},{"euler":{"heading":87.34465770976104,"pitch":-104.61305244245266,"roll":44.908746399583066},"location":"Right Knee"},{"euler":{"heading":10.53905386389042,"pitch":-131.03586466541677,"roll":57.99410988556343},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.106"} +{"sensors":[{"euler":{"heading":30.380816739529866,"pitch":126.48804630773607,"roll":16.503902235329427},"location":"Left Knee"},{"euler":{"heading":20.93203859202587,"pitch":93.53413349251021,"roll":14.370758409387827},"location":"Left Ankle"},{"euler":{"heading":38.90339289074654,"pitch":-20.062167121985933,"roll":-20.02467488244625},"location":"Right Ankle"},{"euler":{"heading":78.67703718855049,"pitch":-162.70904271555113,"roll":53.44919048116194},"location":"Right Hip"},{"euler":{"heading":72.9683653107336,"pitch":-104.89361841122634,"roll":43.82349028851864},"location":"Right Knee"},{"euler":{"heading":9.657904001659173,"pitch":-130.200109974658,"roll":57.489319034260696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.207"} +{"sensors":[{"euler":{"heading":28.65104987587339,"pitch":127.14911254796421,"roll":18.079037555667792},"location":"Left Knee"},{"euler":{"heading":19.273495753742463,"pitch":93.7330270058901,"roll":12.314085452708452},"location":"Left Ankle"},{"euler":{"heading":36.62813759262121,"pitch":-19.342816564563986,"roll":-21.13410021173251},"location":"Right Ankle"},{"euler":{"heading":79.6168783281303,"pitch":-162.6297044673126,"roll":53.971265495902365},"location":"Right Hip"},{"euler":{"heading":64.14000008359012,"pitch":-104.68376156949633,"roll":41.68213409379951},"location":"Right Knee"},{"euler":{"heading":9.150450532144314,"pitch":-129.65788745808396,"roll":57.204960294375724},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.308"} +{"sensors":[{"euler":{"heading":27.87086657452272,"pitch":127.19438130470681,"roll":19.15356510178923},"location":"Left Knee"},{"euler":{"heading":18.56946652937751,"pitch":93.936782019822,"roll":11.184326188219785},"location":"Left Ankle"},{"euler":{"heading":33.0410218309934,"pitch":-17.62768410822029,"roll":-22.548217769142518},"location":"Right Ankle"},{"euler":{"heading":81.16525452446695,"pitch":-161.90392942518622,"roll":53.74213186605459},"location":"Right Hip"},{"euler":{"heading":56.07305591157987,"pitch":-104.31550811476284,"roll":38.99536547948491},"location":"Right Knee"},{"euler":{"heading":8.895471491864384,"pitch":-129.30993119904952,"roll":57.26275246146843},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.409"} +{"sensors":[{"euler":{"heading":27.4758109528002,"pitch":126.9380784933324,"roll":19.882120686374016},"location":"Left Knee"},{"euler":{"heading":18.92047615931932,"pitch":94.1984438530548,"roll":10.738730025071622},"location":"Left Ankle"},{"euler":{"heading":30.781660435735088,"pitch":-16.830757561115547,"roll":-23.38191943249784},"location":"Right Ankle"},{"euler":{"heading":82.52818818336964,"pitch":-161.16395937058576,"roll":52.8808107163064},"location":"Right Hip"},{"euler":{"heading":49.02789807791392,"pitch":-103.8098708201018,"roll":37.21221405090284},"location":"Right Knee"},{"euler":{"heading":8.835327622999312,"pitch":-129.785800165902,"roll":57.493406381874266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.509"} +{"sensors":[{"euler":{"heading":27.402042761772496,"pitch":126.52185193056958,"roll":20.297614865268002},"location":"Left Knee"},{"euler":{"heading":19.677561762843567,"pitch":94.38170735620861,"roll":10.858708233022945},"location":"Left Ankle"},{"euler":{"heading":31.030391386170148,"pitch":-17.41166095912061,"roll":-23.280190992425602},"location":"Right Ankle"},{"euler":{"heading":83.1506962406358,"pitch":-160.77975367560867,"roll":51.69119644771485},"location":"Right Hip"},{"euler":{"heading":40.17371588874322,"pitch":-102.90048885427241,"roll":37.45362074129362},"location":"Right Knee"},{"euler":{"heading":9.071456654837258,"pitch":-130.94172966445387,"roll":57.91615044053698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.610"} +{"sensors":[{"euler":{"heading":27.894555056564975,"pitch":125.96091435079074,"roll":20.2455230439384},"location":"Left Knee"},{"euler":{"heading":20.666071700033392,"pitch":94.47024893382185,"roll":11.341827903571232},"location":"Left Ankle"},{"euler":{"heading":33.68946406489773,"pitch":-18.29402442411377,"roll":-22.076366936723982},"location":"Right Ankle"},{"euler":{"heading":82.64375755384033,"pitch":-160.8066498976544,"roll":50.73365029606608},"location":"Right Hip"},{"euler":{"heading":66.55058110861009,"pitch":-102.00032277788307,"roll":39.592398001417266},"location":"Right Knee"},{"euler":{"heading":9.401540923313712,"pitch":-132.51683383812232,"roll":58.41164184844741},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.713"} +{"sensors":[{"euler":{"heading":28.922080885588542,"pitch":125.21552360958854,"roll":19.70492592031582},"location":"Left Knee"},{"euler":{"heading":22.21268070128712,"pitch":94.71089130660191,"roll":12.450810614586041},"location":"Left Ankle"},{"euler":{"heading":36.87146685576997,"pitch":-19.35999197639573,"roll":-20.440088249047704},"location":"Right Ankle"},{"euler":{"heading":81.20608380005527,"pitch":-161.10447176934764,"roll":50.36065118011033},"location":"Right Hip"},{"euler":{"heading":87.15506314329026,"pitch":-101.72680792299118,"roll":42.508699999396526},"location":"Right Knee"},{"euler":{"heading":9.760993175854974,"pitch":-134.34638726855513,"roll":59.03835890354076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.813"} +{"sensors":[{"euler":{"heading":30.83357328332871,"pitch":124.30322579955097,"roll":18.335847527650735},"location":"Left Knee"},{"euler":{"heading":24.436236988163582,"pitch":95.05943936016017,"roll":14.577964572546914},"location":"Left Ankle"},{"euler":{"heading":38.561309888497576,"pitch":-19.955950375798196,"roll":-19.524264668073645},"location":"Right Ankle"},{"euler":{"heading":79.58896533794749,"pitch":-161.59988504841905,"roll":50.13609442079804},"location":"Right Hip"},{"euler":{"heading":103.93681089484406,"pitch":-101.94899044956844,"roll":44.71358154087021},"location":"Right Knee"},{"euler":{"heading":10.28123397697993,"pitch":-136.2278262613582,"roll":59.765982853498116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.914"} +{"sensors":[{"euler":{"heading":33.9682623815686,"pitch":123.4836555551322,"roll":16.014956622824926},"location":"Left Knee"},{"euler":{"heading":27.570795429889923,"pitch":95.91585480103865,"roll":17.893975160081126},"location":"Left Ankle"},{"euler":{"heading":39.59417836664453,"pitch":-20.31091374263692,"roll":-19.022550653060804},"location":"Right Ankle"},{"euler":{"heading":78.79994819504584,"pitch":-161.83414110353652,"roll":50.247999909727646},"location":"Right Hip"},{"euler":{"heading":118.15331221846404,"pitch":-102.64349841337375,"roll":46.01312290582865},"location":"Right Knee"},{"euler":{"heading":9.52409035919913,"pitch":-136.0515763078179,"roll":59.97254825262106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.15"} +{"sensors":[{"euler":{"heading":37.00462169071509,"pitch":123.00958570931242,"roll":13.81377005463158},"location":"Left Knee"},{"euler":{"heading":29.6914703836406,"pitch":96.01898402849672,"roll":20.66268350190817},"location":"Left Ankle"},{"euler":{"heading":40.0712808748124,"pitch":-20.54293163255279,"roll":-18.966897755338433},"location":"Right Ankle"},{"euler":{"heading":78.18957366670337,"pitch":-162.04016826206606,"roll":50.73570539326782},"location":"Right Hip"},{"euler":{"heading":130.4358611845806,"pitch":-103.4978630509975,"roll":46.59451473751724},"location":"Right Knee"},{"euler":{"heading":8.178814462602569,"pitch":-134.41765582678195,"roll":59.56493337194207},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.116"} +{"sensors":[{"euler":{"heading":37.635853395339495,"pitch":123.43079071071502,"roll":13.14182947935304},"location":"Left Knee"},{"euler":{"heading":29.097316129198234,"pitch":95.1967257222544,"roll":21.021762626749677},"location":"Left Ankle"},{"euler":{"heading":40.31329919636659,"pitch":-20.812331915027002,"roll":-19.065171525751484},"location":"Right Ankle"},{"euler":{"heading":78.05246343515662,"pitch":-162.16714402698344,"roll":51.40293962042537},"location":"Right Hip"},{"euler":{"heading":141.03976715252938,"pitch":-104.16394078191215,"roll":46.704430182951285},"location":"Right Knee"},{"euler":{"heading":40.90015909792591,"pitch":-132.51109975513756,"roll":58.732358830366536},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.216"} +{"sensors":[{"euler":{"heading":34.60930188156995,"pitch":124.77506845419636,"roll":14.335235408722326},"location":"Left Knee"},{"euler":{"heading":25.69762253976137,"pitch":94.3635050588854,"roll":18.736694331238102},"location":"Left Ankle"},{"euler":{"heading":40.07745607698972,"pitch":-20.842074442213352,"roll":-19.344346855367057},"location":"Right Ankle"},{"euler":{"heading":78.26124433910744,"pitch":-162.22258815593784,"roll":52.08993755051312},"location":"Right Hip"},{"euler":{"heading":115.95883177465419,"pitch":-104.69531422916654,"roll":46.340155935598894},"location":"Right Knee"},{"euler":{"heading":33.5960210959893,"pitch":-130.77401406579799,"roll":57.94331103135498},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.316"} +{"sensors":[{"euler":{"heading":30.989665746944773,"pitch":126.57411202930125,"roll":16.11071968410277},"location":"Left Knee"},{"euler":{"heading":21.635716006150076,"pitch":93.561981985119,"roll":15.212392611334943},"location":"Left Ankle"},{"euler":{"heading":39.295762533954445,"pitch":-20.541995794541354,"roll":-20.054754340528977},"location":"Right Ankle"},{"euler":{"heading":78.74729521906436,"pitch":-162.3084300121913,"roll":52.765092624715535},"location":"Right Hip"},{"euler":{"heading":96.12413560439121,"pitch":-105.03345343575384,"roll":45.41600248527434},"location":"Right Knee"},{"euler":{"heading":28.239658185074234,"pitch":-129.7134649727186,"roll":57.38984464848558},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.417"} +{"sensors":[{"euler":{"heading":28.769075089682435,"pitch":127.61343626999428,"roll":17.68163931058455},"location":"Left Knee"},{"euler":{"heading":18.96976052294637,"pitch":93.38367203254569,"roll":12.60597996462672},"location":"Left Ankle"},{"euler":{"heading":37.69257288046537,"pitch":-20.056431030376633,"roll":-21.137537133219016},"location":"Right Ankle"},{"euler":{"heading":79.47821037514316,"pitch":-162.55257478201858,"roll":53.465203239514324},"location":"Right Hip"},{"euler":{"heading":81.07851489504982,"pitch":-104.9470368735621,"roll":43.682017608687026},"location":"Right Knee"},{"euler":{"heading":24.275990930256995,"pitch":-128.96783160380454,"roll":57.085221863669325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.517"} +{"sensors":[{"euler":{"heading":27.92588833720559,"pitch":127.88207511195645,"roll":18.78802402613826},"location":"Left Knee"},{"euler":{"heading":18.053229611386648,"pitch":93.56715164244817,"roll":11.293876259262307},"location":"Left Ankle"},{"euler":{"heading":34.59034535013118,"pitch":-19.052251352303937,"roll":-22.432421601275166},"location":"Right Ankle"},{"euler":{"heading":80.51663567005265,"pitch":-162.25625353644054,"roll":53.74199742931137},"location":"Right Hip"},{"euler":{"heading":69.88878555400652,"pitch":-104.58941122181176,"roll":41.02498661312607},"location":"Right Knee"},{"euler":{"heading":20.971091438721082,"pitch":-128.5844466244693,"roll":57.017662064304616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.618"} +{"sensors":[{"euler":{"heading":27.705167248258807,"pitch":127.51873832746348,"roll":19.688093752357563},"location":"Left Knee"},{"euler":{"heading":17.927032403365374,"pitch":94.0007166118228,"roll":10.386015774784747},"location":"Left Ankle"},{"euler":{"heading":31.56272961443019,"pitch":-17.95334434380927,"roll":-23.621966208213912},"location":"Right Ankle"},{"euler":{"heading":81.64038131702557,"pitch":-161.61356544596018,"roll":53.24929814049134},"location":"Right Hip"},{"euler":{"heading":60.66719432554493,"pitch":-104.17067976030702,"roll":38.54936179221699},"location":"Right Knee"},{"euler":{"heading":18.817956956816225,"pitch":-128.94502271854927,"roll":57.24784895912374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.719"} +{"sensors":[{"euler":{"heading":27.91683136505027,"pitch":126.83919077647153,"roll":20.25284149592262},"location":"Left Knee"},{"euler":{"heading":18.477686105952856,"pitch":94.51789020740456,"roll":10.081757211280525},"location":"Left Ankle"},{"euler":{"heading":30.623555834150874,"pitch":-18.130196380539154,"roll":-24.103824714906647},"location":"Right Ankle"},{"euler":{"heading":82.50104994809509,"pitch":-161.06768485567912,"roll":52.333787530836986},"location":"Right Hip"},{"euler":{"heading":51.67780106356477,"pitch":-103.59558494483707,"roll":37.88473710939968},"location":"Right Knee"},{"euler":{"heading":17.37007410079713,"pitch":-130.01446249272493,"roll":57.64044387985584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.819"} +{"sensors":[{"euler":{"heading":28.637110013837273,"pitch":125.87351198347068,"roll":20.430930427543142},"location":"Left Knee"},{"euler":{"heading":19.475529057018175,"pitch":95.12855508801913,"roll":10.258284599258502},"location":"Left Ankle"},{"euler":{"heading":32.2386297264657,"pitch":-19.045279449231177,"roll":-23.327003713599023},"location":"Right Ankle"},{"euler":{"heading":82.37936672272608,"pitch":-160.98990264758456,"roll":51.279443106806305},"location":"Right Hip"},{"euler":{"heading":42.432633170962866,"pitch":-102.71253221379531,"roll":39.275012851475665},"location":"Right Knee"},{"euler":{"heading":16.30940066115208,"pitch":-131.40428873308082,"roll":58.144325929968524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.919"} +{"sensors":[{"euler":{"heading":29.750060454929624,"pitch":124.74404508250343,"roll":20.146180591692982},"location":"Left Knee"},{"euler":{"heading":20.851420691132198,"pitch":95.79409136435623,"roll":10.935261596454554},"location":"Left Ankle"},{"euler":{"heading":35.2851896747029,"pitch":-19.998166772504426,"roll":-21.767953451674853},"location":"Right Ankle"},{"euler":{"heading":81.34037402633527,"pitch":-161.1870583090135,"roll":50.66427564837073},"location":"Right Hip"},{"euler":{"heading":67.49649335118406,"pitch":-102.15129210982278,"roll":42.0788187041196},"location":"Right Knee"},{"euler":{"heading":15.64900817507636,"pitch":-133.02457162578767,"roll":58.83214323668888},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.20"} +{"sensors":[{"euler":{"heading":31.345053436135245,"pitch":123.632839018012,"roll":19.21669780032894},"location":"Left Knee"},{"euler":{"heading":22.774670478588266,"pitch":96.3963185543369,"roll":12.403965507367687},"location":"Left Ankle"},{"euler":{"heading":37.48838955638683,"pitch":-20.47396576798942,"roll":-20.71392618166432},"location":"Right Ankle"},{"euler":{"heading":79.79999225802,"pitch":-161.57354532034742,"roll":50.39300071233638},"location":"Right Hip"},{"euler":{"heading":87.56691128845175,"pitch":-101.84558038614004,"roll":44.65158458954442},"location":"Right Knee"},{"euler":{"heading":15.423380833429258,"pitch":-135.2992870715187,"roll":59.57938343586503},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.121"} +{"sensors":[{"euler":{"heading":33.79847631684966,"pitch":122.9483829553579,"roll":17.204406385181734},"location":"Left Knee"},{"euler":{"heading":25.247166753243963,"pitch":96.74506377829265,"roll":15.320356208770656},"location":"Left Ankle"},{"euler":{"heading":38.71567237159092,"pitch":-20.625074962860076,"roll":-20.134717553737165},"location":"Right Ankle"},{"euler":{"heading":78.7527604244526,"pitch":-161.91732247726154,"roll":50.36156185786353},"location":"Right Hip"},{"euler":{"heading":104.12539901530238,"pitch":-102.20509738200982,"roll":46.38508555853653},"location":"Right Knee"},{"euler":{"heading":14.935426723949108,"pitch":-136.84037862473943,"roll":60.190144085543736},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.222"} +{"sensors":[{"euler":{"heading":36.984507198992986,"pitch":122.06744218683299,"roll":14.80089388680476},"location":"Left Knee"},{"euler":{"heading":27.842393531921342,"pitch":97.32817348307898,"roll":18.66681707943183},"location":"Left Ankle"},{"euler":{"heading":39.274672127311625,"pitch":-20.541833525297918,"roll":-19.93165271300458},"location":"Right Ankle"},{"euler":{"heading":77.70503829997952,"pitch":-162.37108524190702,"roll":50.73739454035245},"location":"Right Hip"},{"euler":{"heading":118.12936873663897,"pitch":-103.21412572837707,"roll":47.347266005539296},"location":"Right Knee"},{"euler":{"heading":13.317102369748278,"pitch":-135.5773214566007,"roll":60.290962796708484},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.322"} +{"sensors":[{"euler":{"heading":38.861952964771724,"pitch":122.09669859981254,"roll":13.339452242089614},"location":"Left Knee"},{"euler":{"heading":28.593996320313963,"pitch":96.74404239714247,"roll":20.17294736932726},"location":"Left Ankle"},{"euler":{"heading":39.423224519806276,"pitch":-20.204916887564355,"roll":-20.08678693392909},"location":"Right Ankle"},{"euler":{"heading":77.29306264153996,"pitch":-162.60332463027314,"roll":51.398522779902095},"location":"Right Hip"},{"euler":{"heading":129.9287410627273,"pitch":-104.2163499463773,"roll":47.80174757896775},"location":"Right Knee"},{"euler":{"heading":11.100224014131523,"pitch":-133.69124905011782,"roll":59.704426066786226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.423"} +{"sensors":[{"euler":{"heading":37.09955777451262,"pitch":123.21116329385073,"roll":13.806567714403094},"location":"Left Knee"},{"euler":{"heading":26.27242589592312,"pitch":95.78741458630111,"roll":18.94959831678851},"location":"Left Ankle"},{"euler":{"heading":39.18814059899178,"pitch":-19.596838729919078,"roll":-20.43524979100774},"location":"Right Ankle"},{"euler":{"heading":77.19354972769817,"pitch":-162.6767301896065,"roll":52.12755801496296},"location":"Right Hip"},{"euler":{"heading":139.92299145157452,"pitch":-105.10540174097147,"roll":47.78493447930961},"location":"Right Knee"},{"euler":{"heading":43.321932583252334,"pitch":-131.7883939825678,"roll":58.92992598497729},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.523"} +{"sensors":[{"euler":{"heading":33.2248797013946,"pitch":124.96872338136089,"roll":15.584779001968785},"location":"Left Knee"},{"euler":{"heading":22.43335628510105,"pitch":94.80882507648042,"roll":15.732036041152714},"location":"Left Ankle"},{"euler":{"heading":38.57948260798461,"pitch":-18.767174501278763,"roll":-21.029994604290703},"location":"Right Ankle"},{"euler":{"heading":77.35582627518305,"pitch":-162.77287958895235,"roll":52.87642344452267},"location":"Right Hip"},{"euler":{"heading":148.71269412217526,"pitch":-105.8325935538727,"roll":47.20491650023283},"location":"Right Knee"},{"euler":{"heading":35.810833575685194,"pitch":-130.29841485215147,"roll":58.336115700237194},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.624"} +{"sensors":[{"euler":{"heading":30.8846405980464,"pitch":126.03590863183588,"roll":17.25923646341026},"location":"Left Knee"},{"euler":{"heading":19.65259404951561,"pitch":94.60108888647862,"roll":13.159426660455491},"location":"Left Ankle"},{"euler":{"heading":36.999068122874164,"pitch":-17.83807278895279,"roll":-22.08540612684206},"location":"Right Ankle"},{"euler":{"heading":77.99999459047088,"pitch":-162.88960932230412,"roll":53.53621718565777},"location":"Right Hip"},{"euler":{"heading":123.06186844163992,"pitch":-106.03876792294326,"roll":45.681261005447084},"location":"Right Knee"},{"euler":{"heading":30.183940990006533,"pitch":-129.29499771240697,"roll":57.935533647834944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.727"} +{"sensors":[{"euler":{"heading":29.551095525573334,"pitch":126.46055497491062,"roll":18.42363813971223},"location":"Left Knee"},{"euler":{"heading":18.475590881156535,"pitch":94.48445727682099,"roll":11.687660844115358},"location":"Left Ankle"},{"euler":{"heading":33.79063741542246,"pitch":-16.747648884338524,"roll":-23.307960553709506},"location":"Right Ankle"},{"euler":{"heading":78.94955574409946,"pitch":-162.65040730672862,"roll":53.80031087174568},"location":"Right Hip"},{"euler":{"heading":103.8901551629663,"pitch":-105.56540082505902,"roll":43.04213790458013},"location":"Right Knee"},{"euler":{"heading":25.540975646233687,"pitch":-128.60106162422466,"roll":57.82870515971215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.831"} +{"sensors":[{"euler":{"heading":28.875361811646535,"pitch":126.4167447188582,"roll":19.281081045843035},"location":"Left Knee"},{"euler":{"heading":18.082611505397505,"pitch":94.55133416100674,"roll":10.736396324106396},"location":"Left Ankle"},{"euler":{"heading":30.6820079420185,"pitch":-15.844185775293584,"roll":-24.22991504979232},"location":"Right Ankle"},{"euler":{"heading":80.13133629704691,"pitch":-162.05940498395367,"roll":53.361517597496956},"location":"Right Hip"},{"euler":{"heading":88.1448148272429,"pitch":-105.21435173452801,"roll":40.53515503029335},"location":"Right Knee"},{"euler":{"heading":22.066312617558932,"pitch":-128.56172160698947,"roll":58.01146818148071},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.931"} +{"sensors":[{"euler":{"heading":28.738243319001242,"pitch":126.09172714407684,"roll":19.759694381268194},"location":"Left Knee"},{"euler":{"heading":18.18890257099347,"pitch":94.58806815630942,"roll":10.303682916214765},"location":"Left Ankle"},{"euler":{"heading":29.73000797047889,"pitch":-15.900624744623958,"roll":-24.618270624626945},"location":"Right Ankle"},{"euler":{"heading":80.95034423133744,"pitch":-161.66136378635372,"roll":52.28669943016911},"location":"Right Hip"},{"euler":{"heading":73.93863438785813,"pitch":-104.60537608780149,"roll":39.53299923006846},"location":"Right Knee"},{"euler":{"heading":19.56014486258617,"pitch":-129.19794356725498,"roll":58.40871288237205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.33"} +{"sensors":[{"euler":{"heading":29.0361970731228,"pitch":125.60737699679125,"roll":19.877678356472114},"location":"Left Knee"},{"euler":{"heading":18.757503496795604,"pitch":94.61536252555192,"roll":10.346138793984831},"location":"Left Ankle"},{"euler":{"heading":31.215673638945304,"pitch":-16.78403802865998,"roll":-24.024379993606082},"location":"Right Ankle"},{"euler":{"heading":77.10251323892999,"pitch":-161.64601406876764,"roll":51.1060374903281},"location":"Right Hip"},{"euler":{"heading":60.564654240163854,"pitch":-103.70950135980266,"roll":40.52867186159434},"location":"Right Knee"},{"euler":{"heading":17.82914405612588,"pitch":-130.64165987619214,"roll":58.94058363316228},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.134"} +{"sensors":[{"euler":{"heading":29.89252796648299,"pitch":124.91939769929574,"roll":19.526650428248082},"location":"Left Knee"},{"euler":{"heading":19.787877537479655,"pitch":94.747076057269,"roll":10.889907207673673},"location":"Left Ankle"},{"euler":{"heading":34.12654773684351,"pitch":-18.017424149482153,"roll":-22.57735109615921},"location":"Right Ankle"},{"euler":{"heading":77.07914523850597,"pitch":-161.81642902819095,"roll":50.4776386895132},"location":"Right Hip"},{"euler":{"heading":82.56294876342126,"pitch":-103.18422141131937,"roll":42.92190342517981},"location":"Right Knee"},{"euler":{"heading":16.69123194635946,"pitch":-132.60797193007545,"roll":59.56454760324288},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.235"} +{"sensors":[{"euler":{"heading":31.37847137212874,"pitch":124.08877661197835,"roll":18.566920780992128},"location":"Left Knee"},{"euler":{"heading":21.398491359026504,"pitch":94.99111180964768,"roll":12.178620914958971},"location":"Left Ankle"},{"euler":{"heading":36.65265564909642,"pitch":-18.85405505350492,"roll":-21.452275245995654},"location":"Right Ankle"},{"euler":{"heading":76.25144970853758,"pitch":-162.21439089045072,"roll":50.31924250159986},"location":"Right Hip"},{"euler":{"heading":99.8914178946273,"pitch":-103.19642390205836,"roll":45.28367417458538},"location":"Right Knee"},{"euler":{"heading":16.27675251803359,"pitch":-135.21363646289566,"roll":60.224281971328416},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.335"} +{"sensors":[{"euler":{"heading":33.96852626926858,"pitch":123.59876182620512,"roll":16.473751971150108},"location":"Left Knee"},{"euler":{"heading":23.716071876154132,"pitch":95.1286993733969,"roll":14.991596043042835},"location":"Left Ankle"},{"euler":{"heading":37.85301513319792,"pitch":-19.652718661425702,"roll":-20.84444837429848},"location":"Right Ankle"},{"euler":{"heading":76.30500635107065,"pitch":-162.39613743291656,"roll":50.30671050641471},"location":"Right Hip"},{"euler":{"heading":114.76365985306484,"pitch":-103.42149670625606,"roll":46.70139944331974},"location":"Right Knee"},{"euler":{"heading":15.443916682482296,"pitch":-136.55478975676368,"roll":60.66668116092192},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.436"} +{"sensors":[{"euler":{"heading":37.28426721996959,"pitch":122.76891466318065,"roll":13.997055533938003},"location":"Left Knee"},{"euler":{"heading":26.82060171760709,"pitch":95.8893468465712,"roll":18.67254088760389},"location":"Left Ankle"},{"euler":{"heading":38.604001169281595,"pitch":-20.28622984161152,"roll":-20.502526753159145},"location":"Right Ankle"},{"euler":{"heading":75.94457755304734,"pitch":-162.8697513461222,"roll":50.717487457546696},"location":"Right Hip"},{"euler":{"heading":127.39882399781577,"pitch":-104.14240124074182,"roll":47.41351417465226},"location":"Right Knee"},{"euler":{"heading":13.578875393726644,"pitch":-135.20593836256504,"roll":60.68055216661134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.537"} +{"sensors":[{"euler":{"heading":39.38682560055451,"pitch":122.55902964050661,"roll":12.457500951612493},"location":"Left Knee"},{"euler":{"heading":28.54808021363667,"pitch":95.69178695234227,"roll":20.778602770644998},"location":"Left Ankle"},{"euler":{"heading":39.04649379360029,"pitch":-20.65733786102188,"roll":-20.448778627352503},"location":"Right Ankle"},{"euler":{"heading":76.2023724561991,"pitch":-163.0842816983509,"roll":51.39834527966479},"location":"Right Hip"},{"euler":{"heading":138.10714635224215,"pitch":-104.86012817149108,"roll":47.62982689885505},"location":"Right Knee"},{"euler":{"heading":11.38590717148335,"pitch":-133.3789749744173,"roll":60.00939331728951},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.638"} +{"sensors":[{"euler":{"heading":37.802807065590265,"pitch":123.45710120929814,"roll":12.871769896280684},"location":"Left Knee"},{"euler":{"heading":27.126625981461846,"pitch":94.87092670432236,"roll":20.175405864367765},"location":"Left Ankle"},{"euler":{"heading":39.06992373614807,"pitch":-20.58886334065932,"roll":-20.64984620799721},"location":"Right Ankle"},{"euler":{"heading":76.63937633077217,"pitch":-163.11788156173455,"roll":52.17495986040812},"location":"Right Hip"},{"euler":{"heading":147.0118510654216,"pitch":-105.58687038305793,"roll":47.44506320415637},"location":"Right Knee"},{"euler":{"heading":9.376276113947927,"pitch":-131.40475472435656,"roll":59.152375480962746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.739"} +{"sensors":[{"euler":{"heading":33.73530106830556,"pitch":125.12586808793519,"roll":14.655669446629396},"location":"Left Knee"},{"euler":{"heading":23.673797375077363,"pitch":93.99140864801021,"roll":17.37037111988724},"location":"Left Ankle"},{"euler":{"heading":38.63131946050073,"pitch":-20.188019919176305,"roll":-21.123107324262683},"location":"Right Ankle"},{"euler":{"heading":77.18149916187708,"pitch":-163.20179300934507,"roll":52.98471457697461},"location":"Right Hip"},{"euler":{"heading":120.55744748051804,"pitch":-106.22070006796223,"roll":46.724961532534074},"location":"Right Knee"},{"euler":{"heading":7.974550013450264,"pitch":-129.79074594261454,"roll":58.448225090924986},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.840"} +{"sensors":[{"euler":{"heading":30.095675607772314,"pitch":126.86181533713629,"roll":16.525523919245508},"location":"Left Knee"},{"euler":{"heading":20.4304535530505,"pitch":93.51660128983535,"roll":14.356540476743067},"location":"Left Ankle"},{"euler":{"heading":37.5052460756641,"pitch":-19.587494391953797,"roll":-22.05075535412643},"location":"Right Ankle"},{"euler":{"heading":77.95238066263671,"pitch":-163.4441910005009,"roll":53.812566361283345},"location":"Right Hip"},{"euler":{"heading":99.99054734690381,"pitch":-106.43157298852597,"roll":45.28263356234068},"location":"Right Knee"},{"euler":{"heading":7.379731823645494,"pitch":-128.91290976738026,"roll":57.97158025762508},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.940"} +{"sensors":[{"euler":{"heading":28.518646858492318,"pitch":127.46354559711386,"roll":18.027258787109066},"location":"Left Knee"},{"euler":{"heading":19.160063853308582,"pitch":93.49124086294199,"roll":12.770899302036373},"location":"Left Ankle"},{"euler":{"heading":35.01960251422054,"pitch":-18.8597892723291,"roll":-23.21715285681192},"location":"Right Ankle"},{"euler":{"heading":79.20783489320279,"pitch":-163.3841014433675,"roll":54.329801811896935},"location":"Right Hip"},{"euler":{"heading":84.80318751978263,"pitch":-105.98623872328386,"roll":42.78844540311439},"location":"Right Knee"},{"euler":{"heading":7.1959060288549725,"pitch":-128.3385540718812,"roll":57.75430730133956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.42"} +{"sensors":[{"euler":{"heading":29.373633494538687,"pitch":127.34810716687834,"roll":19.106711784549482},"location":"Left Knee"},{"euler":{"heading":18.678729072493574,"pitch":93.62881615050665,"roll":11.68686527012365},"location":"Left Ankle"},{"euler":{"heading":31.474252147014933,"pitch":-17.493815438257194,"roll":-24.42122957864757},"location":"Right Ankle"},{"euler":{"heading":80.77087713086733,"pitch":-162.61629098587403,"roll":54.14385144206853},"location":"Right Hip"},{"euler":{"heading":72.73045766064213,"pitch":-105.61893869101428,"roll":39.96076716608422},"location":"Right Knee"},{"euler":{"heading":7.354545665443007,"pitch":-128.35985691081956,"roll":57.86685841447807},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.143"} +{"sensors":[{"euler":{"heading":28.860852862342796,"pitch":126.97611096526391,"roll":19.845669594904134},"location":"Left Knee"},{"euler":{"heading":18.772127905249537,"pitch":93.78897644531607,"roll":11.104285501672026},"location":"Left Ankle"},{"euler":{"heading":29.45122867024463,"pitch":-17.036615057217738,"roll":-25.249175060845307},"location":"Right Ankle"},{"euler":{"heading":82.15770994362347,"pitch":-161.84422943913663,"roll":53.33944167096969},"location":"Right Hip"},{"euler":{"heading":61.941632890721614,"pitch":-105.03687512547701,"roll":38.27008651371399},"location":"Right Knee"},{"euler":{"heading":7.680634778030323,"pitch":-128.89042977446832,"roll":58.20057010906934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.244"} +{"sensors":[{"euler":{"heading":28.91066794349374,"pitch":126.29467303115182,"roll":20.27652179627657},"location":"Left Knee"},{"euler":{"heading":19.41340699162155,"pitch":94.11820604090038,"roll":10.981404506620262},"location":"Left Ankle"},{"euler":{"heading":29.94103531096765,"pitch":-17.788186120913632,"roll":-25.112511457782553},"location":"Right Ankle"},{"euler":{"heading":82.74627883332958,"pitch":-161.4666567984478,"roll":52.21321570582069},"location":"Right Hip"},{"euler":{"heading":51.37767044469852,"pitch":-104.2902039291331,"roll":38.63083955068442},"location":"Right Knee"},{"euler":{"heading":8.108159492776302,"pitch":-130.11369538877196,"roll":58.579826503853965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.344"} +{"sensors":[{"euler":{"heading":29.61733093129157,"pitch":125.36890083094059,"roll":20.226436451488937},"location":"Left Knee"},{"euler":{"heading":20.384383678265387,"pitch":94.54691446460588,"roll":11.328001243627376},"location":"Left Ankle"},{"euler":{"heading":32.61319596504584,"pitch":-18.82498250321555,"roll":-23.954364442846646},"location":"Right Ankle"},{"euler":{"heading":82.27100386946988,"pitch":-161.46982856789376,"roll":51.324918665442084},"location":"Right Hip"},{"euler":{"heading":75.25468754901907,"pitch":-103.43620054338207,"roll":40.64574334817364},"location":"Right Knee"},{"euler":{"heading":8.654411413423658,"pitch":-131.5416445686205,"roll":59.113256007622134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.444"} +{"sensors":[{"euler":{"heading":30.760750037413118,"pitch":124.35283341034032,"roll":19.64009247749758},"location":"Left Knee"},{"euler":{"heading":21.845292781659417,"pitch":95.00618572443682,"roll":12.289666524008448},"location":"Left Ankle"},{"euler":{"heading":35.49081387179393,"pitch":-19.85233332489885,"roll":-22.44265207772325},"location":"Right Ankle"},{"euler":{"heading":81.00194372036972,"pitch":-161.7521280813129,"roll":50.97890949871058},"location":"Right Hip"},{"euler":{"heading":93.97876529288759,"pitch":-103.12716815768081,"roll":43.31321326165057},"location":"Right Knee"},{"euler":{"heading":9.363275424330762,"pitch":-133.45801749459983,"roll":59.75052106967184},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.545"} +{"sensors":[{"euler":{"heading":32.67795610940145,"pitch":123.36207563236408,"roll":18.193947054295847},"location":"Left Knee"},{"euler":{"heading":23.903553163879955,"pitch":95.33853453478619,"roll":14.372696224779029},"location":"Left Ankle"},{"euler":{"heading":37.25841881342399,"pitch":-20.46685617579722,"roll":-21.52658461274648},"location":"Right Ankle"},{"euler":{"heading":80.06985419479739,"pitch":-161.9956832602986,"roll":50.79661119467837},"location":"Right Hip"},{"euler":{"heading":109.24462129720959,"pitch":-103.49557098449405,"roll":45.25131569788148},"location":"Right Knee"},{"euler":{"heading":10.157723575994497,"pitch":-135.2991111327442,"roll":60.42229126439077},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.646"} +{"sensors":[{"euler":{"heading":35.692472097780836,"pitch":122.57257914793055,"roll":15.833046652316249},"location":"Left Knee"},{"euler":{"heading":26.801697269973896,"pitch":95.99598714788031,"roll":17.7676860241109},"location":"Left Ankle"},{"euler":{"heading":38.20038065936836,"pitch":-20.654313515810106,"roll":-21.15544668088985},"location":"Right Ankle"},{"euler":{"heading":79.23531661870676,"pitch":-162.25174211762697,"roll":51.065661459092496},"location":"Right Hip"},{"euler":{"heading":122.06533411711024,"pitch":-104.36400720724757,"roll":46.36890837540009},"location":"Right Knee"},{"euler":{"heading":9.321889948293688,"pitch":-134.50371352617748,"roll":60.44157391704874},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.747"} +{"sensors":[{"euler":{"heading":38.095356109847216,"pitch":122.33380806483885,"roll":14.01182802089373},"location":"Left Knee"},{"euler":{"heading":28.550437195450133,"pitch":95.88935333290603,"roll":19.99549400117791},"location":"Left Ankle"},{"euler":{"heading":38.6981738384372,"pitch":-20.93095452820016,"roll":-21.099042674136346},"location":"Right Ankle"},{"euler":{"heading":78.86709946772473,"pitch":-162.44777155039193,"roll":51.600438411638336},"location":"Right Hip"},{"euler":{"heading":133.25257544319444,"pitch":-105.15577880969684,"roll":46.82133122008423},"location":"Right Knee"},{"euler":{"heading":7.84678437373967,"pitch":-133.20133790779096,"roll":59.90016339228874},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.848"} +{"sensors":[{"euler":{"heading":37.494462018921496,"pitch":123.14628828122324,"roll":13.850179575500524},"location":"Left Knee"},{"euler":{"heading":27.485274332991033,"pitch":94.99619182974106,"roll":19.829454020512387},"location":"Left Ankle"},{"euler":{"heading":38.8857899672274,"pitch":-21.181280085872217,"roll":-21.285816399055467},"location":"Right Ankle"},{"euler":{"heading":78.90448620154969,"pitch":-162.5716459300513,"roll":52.28053989986885},"location":"Right Hip"},{"euler":{"heading":143.0547696348089,"pitch":-105.69387397154463,"roll":46.772928689976546},"location":"Right Knee"},{"euler":{"heading":40.658019762244955,"pitch":-131.63046036534575,"roll":59.083262582171145},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.948"} +{"sensors":[{"euler":{"heading":34.190320088335596,"pitch":124.57708237234378,"roll":15.255633215538795},"location":"Left Knee"},{"euler":{"heading":24.223106481048834,"pitch":94.2593359363529,"roll":17.414046375581737},"location":"Left Ankle"},{"euler":{"heading":38.49838685466687,"pitch":-21.158090524225173,"roll":-21.68669028527312},"location":"Right Ankle"},{"euler":{"heading":79.34532464434213,"pitch":-162.6659008461413,"roll":52.89000147947477},"location":"Right Hip"},{"euler":{"heading":117.4244090680933,"pitch":-106.02620487490256,"roll":46.19999806829657},"location":"Right Knee"},{"euler":{"heading":33.56422628608381,"pitch":-130.25657488754027,"roll":58.38568655123823},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.49"} +{"sensors":[{"euler":{"heading":30.557424298311382,"pitch":126.29983443606405,"roll":17.014908412841535},"location":"Left Knee"},{"euler":{"heading":20.927789709520855,"pitch":93.5806827870817,"roll":14.40795174239406},"location":"Left Ankle"},{"euler":{"heading":37.42018223381769,"pitch":-20.79227902567005,"roll":-22.46560260797321},"location":"Right Ankle"},{"euler":{"heading":79.97976683006249,"pitch":-162.87604123078165,"roll":53.59606607208076},"location":"Right Hip"},{"euler":{"heading":97.37765645875129,"pitch":-106.10100113732481,"roll":44.92056805151953},"location":"Right Knee"},{"euler":{"heading":28.47521816490497,"pitch":-129.66141868954787,"roll":57.95066253738599},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.150"} +{"sensors":[{"euler":{"heading":28.79565595194254,"pitch":126.99069493114584,"roll":18.35712977409487},"location":"Left Knee"},{"euler":{"heading":19.424594771597405,"pitch":93.35303146119462,"roll":12.704459230211459},"location":"Left Ankle"},{"euler":{"heading":35.1104756393341,"pitch":-20.17589055145412,"roll":-23.533084721773204},"location":"Right Ankle"},{"euler":{"heading":80.91541893181021,"pitch":-162.84027033804512,"roll":54.17551324917474},"location":"Right Hip"},{"euler":{"heading":82.46161485769194,"pitch":-105.65144064789483,"roll":42.59756342109451},"location":"Right Knee"},{"euler":{"heading":24.3856328775106,"pitch":-129.19422036993032,"roll":57.75916060809918},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.252"} +{"sensors":[{"euler":{"heading":28.13195725448863,"pitch":126.94996292173157,"roll":19.36953197389758},"location":"Left Knee"},{"euler":{"heading":18.87749077634275,"pitch":93.432410215837,"roll":11.686198381179745},"location":"Left Ankle"},{"euler":{"heading":31.614057346374715,"pitch":-18.803628838363167,"roll":-24.766561525838597},"location":"Right Ankle"},{"euler":{"heading":82.32362307321377,"pitch":-162.14202769488148,"roll":53.99829425921325},"location":"Right Hip"},{"euler":{"heading":70.60509475783208,"pitch":-105.32193356404645,"roll":39.85344120156604},"location":"Right Knee"},{"euler":{"heading":21.471092371282044,"pitch":-129.30059663248414,"roll":57.889085973680714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.352"} +{"sensors":[{"euler":{"heading":27.951185251565548,"pitch":126.46126216216523,"roll":20.131051495233947},"location":"Left Knee"},{"euler":{"heading":19.571021686773076,"pitch":93.83122999191822,"roll":11.4485098926372},"location":"Left Ankle"},{"euler":{"heading":29.61326347563656,"pitch":-18.21588725221681,"roll":-25.514094872518925},"location":"Right Ankle"},{"euler":{"heading":83.42909662380964,"pitch":-161.45669756005714,"roll":53.225566526645906},"location":"Right Hip"},{"euler":{"heading":59.97546637958782,"pitch":-104.72650543467445,"roll":38.31565730615499},"location":"Right Knee"},{"euler":{"heading":19.399771094888916,"pitch":-130.1043454685333,"roll":58.19690204294407},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.453"} +{"sensors":[{"euler":{"heading":28.28473925067151,"pitch":125.87041633363849,"roll":20.41585061313951},"location":"Left Knee"},{"euler":{"heading":20.54316495647304,"pitch":94.0078075315969,"roll":11.857688803465583},"location":"Left Ankle"},{"euler":{"heading":30.198560692580735,"pitch":-18.908787908988607,"roll":-25.310613639678778},"location":"Right Ankle"},{"euler":{"heading":83.73972639624469,"pitch":-161.09815293625775,"roll":52.22907907818094},"location":"Right Hip"},{"euler":{"heading":49.57158030315778,"pitch":-104.00341282332748,"roll":38.78503626989259},"location":"Right Knee"},{"euler":{"heading":17.72755672856672,"pitch":-131.43211382921922,"roll":58.606233900349054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.554"} +{"sensors":[{"euler":{"heading":29.081039971358773,"pitch":125.18119667024283,"roll":20.22171485780708},"location":"Left Knee"},{"euler":{"heading":21.59480303079173,"pitch":94.1497522237217,"roll":12.57277244447895},"location":"Left Ankle"},{"euler":{"heading":33.04403384805438,"pitch":-19.97572920897312,"roll":-24.09795032440772},"location":"Right Ankle"},{"euler":{"heading":83.1260548013459,"pitch":-161.08881614585485,"roll":51.43439795771685},"location":"Right Hip"},{"euler":{"heading":73.66290207063722,"pitch":-103.5334088765355,"roll":40.898232961341066},"location":"Right Knee"},{"euler":{"heading":16.590216430735858,"pitch":-133.26378093626516,"roll":59.10742486446972},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.654"} +{"sensors":[{"euler":{"heading":30.31569027805123,"pitch":124.3613438219813,"roll":19.516913872580663},"location":"Left Knee"},{"euler":{"heading":23.210937204586973,"pitch":94.40899120579591,"roll":13.962997262847294},"location":"Left Ankle"},{"euler":{"heading":35.81385692130814,"pitch":-21.095755799252686,"roll":-22.554743440634628},"location":"Right Ankle"},{"euler":{"heading":81.6366601048222,"pitch":-161.46681251242381,"roll":51.11959173521307},"location":"Right Hip"},{"euler":{"heading":92.5327257003135,"pitch":-103.60751985886453,"roll":43.595192588676106},"location":"Right Knee"},{"euler":{"heading":16.110806817541643,"pitch":-135.7119367665702,"roll":59.697682152570565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.756"} +{"sensors":[{"euler":{"heading":32.53351804702098,"pitch":123.63731533480943,"roll":17.785220423396257},"location":"Left Knee"},{"euler":{"heading":25.188209937950596,"pitch":94.37008594925713,"roll":16.463546347109943},"location":"Left Ankle"},{"euler":{"heading":37.26727788142585,"pitch":-21.633615337662256,"roll":-21.78853659933572},"location":"Right Ankle"},{"euler":{"heading":80.92844181106453,"pitch":-161.63643808304184,"roll":50.91202042916408},"location":"Right Hip"},{"euler":{"heading":108.0665509671927,"pitch":-103.89455742184363,"roll":45.405401533830066},"location":"Right Knee"},{"euler":{"heading":15.9441884400166,"pitch":-137.79641519682875,"roll":60.2674631079368},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.856"} +{"sensors":[{"euler":{"heading":35.895252981855506,"pitch":122.75029300367767,"roll":15.385911111186406},"location":"Left Knee"},{"euler":{"heading":27.788174448385362,"pitch":95.42287284727144,"roll":19.58830050021951},"location":"Left Ankle"},{"euler":{"heading":38.08872830209823,"pitch":-22.054912645592353,"roll":-21.39842581281753},"location":"Right Ankle"},{"euler":{"heading":80.44962367593081,"pitch":-161.77803741924373,"roll":51.10469401529675},"location":"Right Hip"},{"euler":{"heading":121.45150456849095,"pitch":-104.58235270791742,"roll":46.395375963384645},"location":"Right Knee"},{"euler":{"heading":14.440340741285683,"pitch":-137.43528149745518,"roll":60.3668721607527},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.957"} +{"sensors":[{"euler":{"heading":38.606220718204966,"pitch":122.28653113710973,"roll":13.553718444615464},"location":"Left Knee"},{"euler":{"heading":29.286819939272,"pitch":95.50749856075936,"roll":21.524016514839047},"location":"Left Ankle"},{"euler":{"heading":38.51162808838634,"pitch":-22.41235284948525,"roll":-21.2416194359958},"location":"Right Ankle"},{"euler":{"heading":80.22998183138559,"pitch":-161.90616712963805,"roll":51.623867383732716},"location":"Right Hip"},{"euler":{"heading":132.94616763137006,"pitch":-105.19283090582383,"roll":46.821499850333836},"location":"Right Knee"},{"euler":{"heading":12.50744558997086,"pitch":-136.0383452408655,"roll":59.862294172847974},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.59"} +{"sensors":[{"euler":{"heading":38.31109301254551,"pitch":122.78246195589824,"roll":13.459428867413711},"location":"Left Knee"},{"euler":{"heading":27.987153489048946,"pitch":95.20357457196486,"roll":21.004490182513443},"location":"Left Ankle"},{"euler":{"heading":38.50712482132629,"pitch":-22.43258089308564,"roll":-21.385104019451543},"location":"Right Ankle"},{"euler":{"heading":80.45442024755981,"pitch":-161.8853664359933,"roll":52.23039650134148},"location":"Right Hip"},{"euler":{"heading":142.65525056285927,"pitch":-105.73334679754191,"roll":46.82658904789635},"location":"Right Knee"},{"euler":{"heading":10.574020003273487,"pitch":-134.2273241353426,"roll":59.072776899767966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.160"} +{"sensors":[{"euler":{"heading":34.59143781015508,"pitch":124.23597438258031,"roll":15.038794713404915},"location":"Left Knee"},{"euler":{"heading":24.372451049968074,"pitch":94.40537425804125,"roll":18.120588856960683},"location":"Left Ankle"},{"euler":{"heading":37.96241455746173,"pitch":-22.129838133959687,"roll":-21.883548715745253},"location":"Right Ankle"},{"euler":{"heading":80.95923678903232,"pitch":-161.83681786859205,"roll":52.80895612208007},"location":"Right Hip"},{"euler":{"heading":116.97837713625545,"pitch":-106.11543062001634,"roll":46.254499296479516},"location":"Right Knee"},{"euler":{"heading":9.157401859890225,"pitch":-132.67775588552232,"roll":58.405924856671895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.261"} +{"sensors":[{"euler":{"heading":30.85613251233302,"pitch":125.9019947028618,"roll":17.056508961235036},"location":"Left Knee"},{"euler":{"heading":20.824151189609015,"pitch":93.84957130014992,"roll":14.761909659444063},"location":"Left Ankle"},{"euler":{"heading":36.60082901488212,"pitch":-21.433776914920344,"roll":-22.935054969147846},"location":"Right Ankle"},{"euler":{"heading":81.7114625558694,"pitch":-161.82261401799312,"roll":53.37409745740243},"location":"Right Hip"},{"euler":{"heading":96.85786800234351,"pitch":-106.21146582851311,"roll":44.97583016224745},"location":"Right Knee"},{"euler":{"heading":8.609843157882997,"pitch":-131.79283195778277,"roll":57.93330382985473},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.362"} +{"sensors":[{"euler":{"heading":28.95105829669695,"pitch":126.63069967152202,"roll":18.56718699464359},"location":"Left Knee"},{"euler":{"heading":19.470532432499756,"pitch":93.79848243462949,"roll":12.893950160308338},"location":"Left Ankle"},{"euler":{"heading":34.094762277207366,"pitch":-20.87527215650958,"roll":-24.118403769549897},"location":"Right Ankle"},{"euler":{"heading":82.68410264884582,"pitch":-161.7621988465879,"roll":53.790354845326306},"location":"Right Hip"},{"euler":{"heading":82.17870002075843,"pitch":-105.68005370247374,"roll":42.62973280498156},"location":"Right Knee"},{"euler":{"heading":8.179338614121185,"pitch":-131.033703502984,"roll":57.68994537765784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.465"} +{"sensors":[{"euler":{"heading":28.134349064404265,"pitch":126.71933710506245,"roll":19.63095120921122},"location":"Left Knee"},{"euler":{"heading":18.736745254173716,"pitch":93.78197993157175,"roll":11.762539079364156},"location":"Left Ankle"},{"euler":{"heading":30.699158049081433,"pitch":-19.079763365411832,"roll":-25.52806914217449},"location":"Right Ankle"},{"euler":{"heading":83.9145067502186,"pitch":-161.05354682508758,"roll":53.57248501937529},"location":"Right Hip"},{"euler":{"heading":70.20697578517155,"pitch":-105.40133257265069,"roll":39.86471455245108},"location":"Right Knee"},{"euler":{"heading":8.130052653088756,"pitch":-130.73917738635166,"roll":57.75511114515504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.566"} +{"sensors":[{"euler":{"heading":27.72722197322513,"pitch":126.59145714283865,"roll":20.302204862330168},"location":"Left Knee"},{"euler":{"heading":18.718561261792207,"pitch":93.79677376594616,"roll":11.131143692350195},"location":"Left Ankle"},{"euler":{"heading":28.739293471059554,"pitch":-18.24577812186464,"roll":-26.179382905776272},"location":"Right Ankle"},{"euler":{"heading":85.02303051298406,"pitch":-160.38257873372172,"roll":52.70352028218723},"location":"Right Hip"},{"euler":{"heading":59.54841677038721,"pitch":-104.81024223402709,"roll":38.159389666964834},"location":"Right Knee"},{"euler":{"heading":9.671149189865954,"pitch":-131.0850347287808,"roll":58.03405440616521},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.666"} +{"sensors":[{"euler":{"heading":27.738694598174963,"pitch":126.2617106776051,"roll":20.64206672102475},"location":"Left Knee"},{"euler":{"heading":19.03066414798881,"pitch":93.75665256937047,"roll":10.916528199656625},"location":"Left Ankle"},{"euler":{"heading":29.36404885576064,"pitch":-18.70396841468552,"roll":-25.966123969292813},"location":"Right Ankle"},{"euler":{"heading":85.33615779580919,"pitch":-160.048920580364,"roll":51.57833321329399},"location":"Right Hip"},{"euler":{"heading":49.079225167021136,"pitch":-104.03162170518921,"roll":38.50094619472847},"location":"Right Knee"},{"euler":{"heading":9.565576596151995,"pitch":-132.09359341042173,"roll":58.41131467132594},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.768"} +{"sensors":[{"euler":{"heading":28.413962824749945,"pitch":125.61255816937398,"roll":20.58099017428613},"location":"Left Knee"},{"euler":{"heading":19.80345541325221,"pitch":93.8808712043171,"roll":11.180116675952297},"location":"Left Ankle"},{"euler":{"heading":32.18832254724984,"pitch":-19.719049461604683,"roll":-24.661378746948643},"location":"Right Ankle"},{"euler":{"heading":84.69480462157118,"pitch":-160.10966539783013,"roll":50.63746847563635},"location":"Right Hip"},{"euler":{"heading":73.13491076330489,"pitch":-103.29734085528682,"roll":40.56387793330743},"location":"Right Knee"},{"euler":{"heading":9.705055561511939,"pitch":-133.4045486369267,"roll":58.91915669665181},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.869"} +{"sensors":[{"euler":{"heading":29.54356654994843,"pitch":124.8349063988916,"roll":20.00848176606488},"location":"Left Knee"},{"euler":{"heading":21.18532481699519,"pitch":94.13001562664238,"roll":12.08450577281502},"location":"Left Ankle"},{"euler":{"heading":35.24994351897827,"pitch":-20.893219230941,"roll":-23.028903932704566},"location":"Right Ankle"},{"euler":{"heading":83.24219735437786,"pitch":-160.45000663519207,"roll":50.202274956364775},"location":"Right Hip"},{"euler":{"heading":92.00528207307877,"pitch":-103.15609548478608,"roll":43.322369594711695},"location":"Right Knee"},{"euler":{"heading":10.003565322196902,"pitch":-135.1853301121291,"roll":59.49759644140983},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.970"} +{"sensors":[{"euler":{"heading":31.47324183363257,"pitch":124.09555684665845,"roll":18.6164729548819},"location":"Left Knee"},{"euler":{"heading":23.095633272818926,"pitch":94.33762428236423,"roll":13.984910914843125},"location":"Left Ankle"},{"euler":{"heading":37.32278796727388,"pitch":-21.390891968374984,"roll":-21.944108460924113},"location":"Right Ankle"},{"euler":{"heading":81.91011672898026,"pitch":-160.84715255325514,"roll":49.95116656961561},"location":"Right Hip"},{"euler":{"heading":107.18878263004954,"pitch":-103.42067637226977,"roll":45.41417903367993},"location":"Right Knee"},{"euler":{"heading":10.521468938596355,"pitch":-137.10587088486344,"roll":60.11019176493117},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.71"} +{"sensors":[{"euler":{"heading":34.53363944465727,"pitch":123.40870194002204,"roll":16.381848423029574},"location":"Left Knee"},{"euler":{"heading":26.294751344567977,"pitch":95.27459294144319,"roll":17.309773224305665},"location":"Left Ankle"},{"euler":{"heading":38.36604689701692,"pitch":-21.591520705314895,"roll":-21.43812868361542},"location":"Right Ankle"},{"euler":{"heading":81.03344164352639,"pitch":-161.08166853676187,"roll":50.13417107456902},"location":"Right Hip"},{"euler":{"heading":120.00746128354318,"pitch":-104.18327609432494,"roll":46.62329488630759},"location":"Right Knee"},{"euler":{"heading":9.946716172838968,"pitch":-137.25632323103025,"roll":60.24834247247212},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.171"} +{"sensors":[{"euler":{"heading":37.41404404331229,"pitch":122.87041835951179,"roll":14.300339299174727},"location":"Left Knee"},{"euler":{"heading":28.40288926895084,"pitch":95.48628461424546,"roll":20.015147577223907},"location":"Left Ankle"},{"euler":{"heading":38.8813836337096,"pitch":-21.767119341684673,"roll":-21.32510803529321},"location":"Right Ankle"},{"euler":{"heading":80.40480065625627,"pitch":-161.32360274375262,"roll":50.69810290102798},"location":"Right Hip"},{"euler":{"heading":131.1633104982806,"pitch":-105.00413034503555,"roll":47.15853477120987},"location":"Right Knee"},{"euler":{"heading":8.727000476002805,"pitch":-135.87046505794729,"roll":59.92745353299168},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.272"} +{"sensors":[{"euler":{"heading":38.066212892052505,"pitch":123.26918979846559,"roll":13.611840400591209},"location":"Left Knee"},{"euler":{"heading":28.036282013498408,"pitch":94.63741029911593,"roll":20.596346812203997},"location":"Left Ankle"},{"euler":{"heading":38.970403563461865,"pitch":-21.85467047999192,"roll":-21.365525850282687},"location":"Right Ankle"},{"euler":{"heading":80.3894759434433,"pitch":-161.35821844185915,"roll":51.35702344707926},"location":"Right Hip"},{"euler":{"heading":140.95169147868762,"pitch":-105.59232290099119,"roll":47.143454163468604},"location":"Right Knee"},{"euler":{"heading":7.3656348317633675,"pitch":-134.18242907894427,"roll":59.17335513422519},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.373"} +{"sensors":[{"euler":{"heading":35.05680468899724,"pitch":124.57533204750581,"roll":14.84377088447743},"location":"Left Knee"},{"euler":{"heading":25.256911114587695,"pitch":93.79794139549819,"roll":18.773863004109934},"location":"Left Ankle"},{"euler":{"heading":38.59739491288345,"pitch":-21.71391694103767,"roll":-21.645856536329532},"location":"Right Ankle"},{"euler":{"heading":80.73959185036466,"pitch":-161.34197886339803,"roll":51.96515484284789},"location":"Right Hip"},{"euler":{"heading":149.56688319508345,"pitch":-106.0116028411144,"roll":46.64229287225294},"location":"Right Knee"},{"euler":{"heading":6.179606438977649,"pitch":-132.44688162391583,"roll":58.41964659532158},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.474"} +{"sensors":[{"euler":{"heading":31.284736864992574,"pitch":126.37553960984236,"roll":16.677896299625484},"location":"Left Knee"},{"euler":{"heading":21.619689815138386,"pitch":92.80645990852744,"roll":15.56707222875722},"location":"Left Ankle"},{"euler":{"heading":37.67960915235176,"pitch":-21.140654499747686,"roll":-22.381090705225475},"location":"Right Ankle"},{"euler":{"heading":81.34136767625142,"pitch":-161.29755753545447,"roll":52.491656556551874},"location":"Right Hip"},{"euler":{"heading":123.00622345261101,"pitch":-106.30181919529953,"roll":45.57049251693853},"location":"Right Knee"},{"euler":{"heading":5.773291911700856,"pitch":-131.32827136449595,"roll":57.8624859824601},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.574"} +{"sensors":[{"euler":{"heading":29.022569613825198,"pitch":127.43375303644233,"roll":18.27809760153698},"location":"Left Knee"},{"euler":{"heading":19.051763217237767,"pitch":92.4146441686209,"roll":13.016100325465688},"location":"Left Ankle"},{"euler":{"heading":35.94715141707798,"pitch":-20.300876991797978,"roll":-23.492283852919783},"location":"Right Ankle"},{"euler":{"heading":82.04218683146225,"pitch":-161.41788508869408,"roll":53.081035680663724},"location":"Right Hip"},{"euler":{"heading":102.44150050768411,"pitch":-106.21960089928733,"roll":43.74452278904097},"location":"Right Knee"},{"euler":{"heading":5.856773554565034,"pitch":-130.5122639702893,"roll":57.54857507336823},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.675"} +{"sensors":[{"euler":{"heading":28.186957145071943,"pitch":127.70759361672933,"roll":19.3871973449368},"location":"Left Knee"},{"euler":{"heading":18.09064678971358,"pitch":92.41087302017417,"roll":11.700655798516822},"location":"Left Ankle"},{"euler":{"heading":32.86987609040198,"pitch":-18.934561876191538,"roll":-24.759368374567675},"location":"Right Ankle"},{"euler":{"heading":83.00840709277466,"pitch":-161.09870434394435,"roll":53.25763170418533},"location":"Right Hip"},{"euler":{"heading":86.71490036656148,"pitch":-105.81821169298752,"roll":41.028038224466435},"location":"Right Knee"},{"euler":{"heading":5.907292309613192,"pitch":-130.04141805883322,"roll":57.44882945133176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.775"} +{"sensors":[{"euler":{"heading":27.865422334139033,"pitch":127.41436213946501,"roll":20.283778524566923},"location":"Left Knee"},{"euler":{"heading":18.023067931932424,"pitch":92.70472598309325,"roll":10.908678440312984},"location":"Left Ankle"},{"euler":{"heading":29.95781611375195,"pitch":-17.668490841230604,"roll":-25.828632580858585},"location":"Right Ankle"},{"euler":{"heading":84.12059379815655,"pitch":-160.44722187761388,"roll":52.75749989856454},"location":"Right Hip"},{"euler":{"heading":73.83203205515163,"pitch":-105.38960621976148,"roll":38.581849657383124},"location":"Right Knee"},{"euler":{"heading":6.364828544651006,"pitch":-130.19205616742377,"roll":57.64989219734941},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.876"} +{"sensors":[{"euler":{"heading":27.95292313221129,"pitch":126.85770421005455,"roll":20.83347895401833},"location":"Left Knee"},{"euler":{"heading":18.413632508802145,"pitch":92.97062620584327,"roll":10.554701631532447},"location":"Left Ankle"},{"euler":{"heading":29.339180952346776,"pitch":-17.830822391803906,"roll":-26.27299604210931},"location":"Right Ankle"},{"euler":{"heading":84.89450898138448,"pitch":-159.95878185965535,"roll":51.78175602108062},"location":"Right Hip"},{"euler":{"heading":62.12421857832665,"pitch":-104.8888109638907,"roll":37.78333780121464},"location":"Right Knee"},{"euler":{"heading":7.0902318635111,"pitch":-131.16665321257125,"roll":58.051805247401965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.978"} +{"sensors":[{"euler":{"heading":28.54775576086884,"pitch":126.08645947969697,"roll":20.99200663848287},"location":"Left Knee"},{"euler":{"heading":19.167433813891204,"pitch":93.28852168975439,"roll":10.567334065970998},"location":"Left Ankle"},{"euler":{"heading":31.192930284901113,"pitch":-18.94085200126685,"roll":-25.42657486289201},"location":"Right Ankle"},{"euler":{"heading":80.50440494572186,"pitch":-159.93297619392308,"roll":50.68479862936937},"location":"Right Hip"},{"euler":{"heading":85.0349251709278,"pitch":-104.09082597550852,"roll":38.98111868537823},"location":"Right Knee"},{"euler":{"heading":7.92200361293968,"pitch":-132.81548647324777,"roll":58.5581737328873},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.78"} +{"sensors":[{"euler":{"heading":29.59366298355205,"pitch":125.22805603830776,"roll":20.624157933730032},"location":"Left Knee"},{"euler":{"heading":20.278106031201485,"pitch":93.63563046679586,"roll":11.107897219541313},"location":"Left Ankle"},{"euler":{"heading":34.42302680744828,"pitch":-20.12959466706419,"roll":-23.798599826927816},"location":"Right Ankle"},{"euler":{"heading":80.0964774465071,"pitch":-160.20094536367083,"roll":50.084579527088394},"location":"Right Hip"},{"euler":{"heading":102.10571931876125,"pitch":-103.67790524329206,"roll":41.64046727656519},"location":"Right Knee"},{"euler":{"heading":8.674401103587636,"pitch":-134.72959143990974,"roll":59.141225415790416},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.179"} +{"sensors":[{"euler":{"heading":31.246721895655895,"pitch":124.35023792770583,"roll":19.56002797065087},"location":"Left Knee"},{"euler":{"heading":21.900960143381226,"pitch":93.9497205485053,"roll":12.488835488799266},"location":"Left Ankle"},{"euler":{"heading":36.69327192881556,"pitch":-20.88421166787497,"roll":-22.777329168602293},"location":"Right Ankle"},{"euler":{"heading":79.0549752489115,"pitch":-160.7287987529728,"roll":49.95762775370801},"location":"Right Hip"},{"euler":{"heading":115.48873614348898,"pitch":-103.7561069428779,"roll":44.02900961764796},"location":"Right Knee"},{"euler":{"heading":9.617455265716263,"pitch":-137.05020277567567,"roll":59.775829890070504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.279"} +{"sensors":[{"euler":{"heading":33.93793894105915,"pitch":123.78778919368895,"roll":17.40806176262192},"location":"Left Knee"},{"euler":{"heading":24.3593597648106,"pitch":94.21015160520666,"roll":15.527949707552942},"location":"Left Ankle"},{"euler":{"heading":38.08246685019996,"pitch":-21.34706940330308,"roll":-22.11480033738718},"location":"Right Ankle"},{"euler":{"heading":78.63025653692998,"pitch":-161.10536990020873,"roll":50.08650987041925},"location":"Right Hip"},{"euler":{"heading":126.70238391753514,"pitch":-104.42140047422069,"roll":45.6136472154489},"location":"Right Knee"},{"euler":{"heading":9.925892988137676,"pitch":-138.1096373051241,"roll":60.219270895539104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.381"} +{"sensors":[{"euler":{"heading":37.14626150422635,"pitch":123.02319512380785,"roll":14.967340639486823},"location":"Left Knee"},{"euler":{"heading":26.943044219236228,"pitch":94.5052622541929,"roll":19.033022491538897},"location":"Left Ankle"},{"euler":{"heading":38.85727436819043,"pitch":-21.670772910791722,"roll":-21.776888044970324},"location":"Right Ankle"},{"euler":{"heading":78.06846624540887,"pitch":-161.62447897514517,"roll":50.61930361946438},"location":"Right Hip"},{"euler":{"heading":136.4191841426552,"pitch":-105.29094685335333,"roll":46.45301552307618},"location":"Right Knee"},{"euler":{"heading":8.965598702933661,"pitch":-136.78529508028367,"roll":60.21030338395667},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.481"} +{"sensors":[{"euler":{"heading":38.685241216662064,"pitch":123.1458401495544,"roll":13.77544052632773},"location":"Left Knee"},{"euler":{"heading":27.88139131671747,"pitch":93.96968399657807,"roll":20.569715904037828},"location":"Left Ankle"},{"euler":{"heading":39.08740499854564,"pitch":-21.571293844251702,"roll":-21.821892782776782},"location":"Right Ankle"},{"euler":{"heading":78.0068085796006,"pitch":-161.86828615014838,"roll":51.33328240201214},"location":"Right Hip"},{"euler":{"heading":144.6309377727213,"pitch":-106.20262916110843,"roll":46.790422144681244},"location":"Right Knee"},{"euler":{"heading":7.489655107667808,"pitch":-134.909165737192,"roll":59.54225976002956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.583"} +{"sensors":[{"euler":{"heading":36.42573400986343,"pitch":124.29724741087075,"roll":14.563746412142304},"location":"Left Knee"},{"euler":{"heading":25.68300039034969,"pitch":93.20562312063478,"roll":19.237280584114213},"location":"Left Ankle"},{"euler":{"heading":38.95478909545259,"pitch":-21.201848257859968,"roll":-22.165827137198363},"location":"Right Ankle"},{"euler":{"heading":78.3665495762452,"pitch":-161.940268496071,"roll":52.068523622929234},"location":"Right Hip"},{"euler":{"heading":151.8541185085756,"pitch":-106.89679099276242,"roll":46.62605368549388},"location":"Right Knee"},{"euler":{"heading":6.197919798587672,"pitch":-133.11637812949976,"roll":58.75345919738101},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.684"} +{"sensors":[{"euler":{"heading":32.75044253860288,"pitch":126.0466187534663,"roll":16.34127482664569},"location":"Left Knee"},{"euler":{"heading":21.754540173908406,"pitch":92.50829816827456,"roll":15.873446402780557},"location":"Left Ankle"},{"euler":{"heading":38.180328885163505,"pitch":-20.58217138812932,"roll":-22.96455998810101},"location":"Right Ankle"},{"euler":{"heading":79.05944072180148,"pitch":-161.98162229646124,"roll":52.81111407917829},"location":"Right Hip"},{"euler":{"heading":124.41527523235744,"pitch":-107.28710842941277,"roll":45.811446309353926},"location":"Right Knee"},{"euler":{"heading":5.740724409543772,"pitch":-131.89841022148565,"roll":58.17643530204175},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.785"} +{"sensors":[{"euler":{"heading":30.46644542967411,"pitch":127.1896285194737,"roll":17.97944252753194},"location":"Left Knee"},{"euler":{"heading":18.82329600905796,"pitch":92.44805572943211,"roll":12.996065298926588},"location":"Left Ankle"},{"euler":{"heading":36.50577287751713,"pitch":-19.854972618828086,"roll":-23.99052412767202},"location":"Right Ankle"},{"euler":{"heading":80.03106015272193,"pitch":-162.1676750103981,"roll":53.50090159908897},"location":"Right Hip"},{"euler":{"heading":103.25040272246446,"pitch":-107.20034418623442,"roll":44.158751022322164},"location":"Right Knee"},{"euler":{"heading":5.883615088009993,"pitch":-131.1114027197203,"roll":57.81482406555151},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.886"} +{"sensors":[{"euler":{"heading":29.387037007564757,"pitch":127.5580351168683,"roll":19.164514272529434},"location":"Left Knee"},{"euler":{"heading":18.016538934250597,"pitch":92.69080922904806,"roll":11.75981560141663},"location":"Left Ankle"},{"euler":{"heading":33.37483719253053,"pitch":-18.5964725057637,"roll":-25.156705813451016},"location":"Right Ankle"},{"euler":{"heading":81.37953468958469,"pitch":-161.97931101704208,"roll":53.74457344710052},"location":"Right Hip"},{"euler":{"heading":87.44857230723963,"pitch":-106.61648223693948,"roll":41.432589567494354},"location":"Right Knee"},{"euler":{"heading":5.875762359246172,"pitch":-130.63112624246014,"roll":57.683806221285074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.989"} +{"sensors":[{"euler":{"heading":29.014515027115046,"pitch":127.4038818403225,"roll":19.969317317204556},"location":"Left Knee"},{"euler":{"heading":17.760248041699857,"pitch":92.98181451243387,"roll":10.89086698009866},"location":"Left Ankle"},{"euler":{"heading":30.133465407237875,"pitch":-17.386343426277573,"roll":-26.146556173508422},"location":"Right Ankle"},{"euler":{"heading":82.78092954742718,"pitch":-161.33918583161724,"roll":53.311082191022116},"location":"Right Hip"},{"euler":{"heading":74.41492591528477,"pitch":-106.01681641853456,"roll":38.93008216260179},"location":"Right Knee"},{"euler":{"heading":6.2260510109155724,"pitch":-130.75539494421304,"roll":57.84468089752571},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.90"} +{"sensors":[{"euler":{"heading":29.01270512553807,"pitch":126.9195645400296,"roll":20.45380592249718},"location":"Left Knee"},{"euler":{"heading":18.09736564038937,"pitch":93.3462081705398,"roll":10.544529792704509},"location":"Left Ankle"},{"euler":{"heading":29.09655740632614,"pitch":-17.319865999881923,"roll":-26.47149756346589},"location":"Right Ankle"},{"euler":{"heading":83.84515581834724,"pitch":-160.7837337350017,"roll":52.37185845551203},"location":"Right Hip"},{"euler":{"heading":62.21504643829135,"pitch":-105.33745168897951,"roll":38.1281712546625},"location":"Right Knee"},{"euler":{"heading":6.72689805041741,"pitch":-131.45642805011295,"roll":58.18050222668662},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.193"} +{"sensors":[{"euler":{"heading":29.688988249159454,"pitch":126.01758389052104,"roll":20.630614051590392},"location":"Left Knee"},{"euler":{"heading":19.015490384985675,"pitch":94.01482144487817,"roll":10.65920005211367},"location":"Left Ankle"},{"euler":{"heading":30.542427011277532,"pitch":-18.28230514468951,"roll":-25.62997517301125},"location":"Right Ankle"},{"euler":{"heading":83.77718452112347,"pitch":-160.6853998941193,"roll":51.35550969110519},"location":"Right Hip"},{"euler":{"heading":84.62177969826801,"pitch":-104.33032117317768,"roll":39.41800134356226},"location":"Right Knee"},{"euler":{"heading":7.422365824770706,"pitch":-132.6317984302326,"roll":58.65679249918956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.293"} +{"sensors":[{"euler":{"heading":30.77186050996384,"pitch":124.95170115973987,"roll":20.33281463420683},"location":"Left Knee"},{"euler":{"heading":20.320163531164717,"pitch":94.69712193276798,"roll":11.256422844776333},"location":"Left Ankle"},{"euler":{"heading":33.545567595962204,"pitch":-19.408840568745095,"roll":-23.958870467924655},"location":"Right Ankle"},{"euler":{"heading":82.94863970623389,"pitch":-160.90557604858876,"roll":50.73310640477347},"location":"Right Hip"},{"euler":{"heading":101.49989741433579,"pitch":-103.7162592502717,"roll":42.142807043197394},"location":"Right Knee"},{"euler":{"heading":8.247462305951446,"pitch":-134.21260355788007,"roll":59.27802554062939},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.394"} +{"sensors":[{"euler":{"heading":32.31249897191367,"pitch":123.8564136728439,"roll":19.409359524604373},"location":"Left Knee"},{"euler":{"heading":22.137537237566917,"pitch":95.33235456285533,"roll":12.587560779783198},"location":"Left Ankle"},{"euler":{"heading":36.06993420763074,"pitch":-20.214183324049998,"roll":-22.613198080969187},"location":"Right Ankle"},{"euler":{"heading":81.71136920094982,"pitch":-161.23560473125627,"roll":50.48501048652341},"location":"Right Hip"},{"euler":{"heading":114.85594775507309,"pitch":-103.59461737636799,"roll":44.66786888949731},"location":"Right Knee"},{"euler":{"heading":9.255987629679625,"pitch":-136.35052632827683,"roll":59.94717937469459},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.495"} +{"sensors":[{"euler":{"heading":34.917611583248174,"pitch":123.12096355047747,"roll":17.325233409358844},"location":"Left Knee"},{"euler":{"heading":24.511451677549136,"pitch":95.75852804798919,"roll":15.385416765627337},"location":"Left Ankle"},{"euler":{"heading":37.375883453936346,"pitch":-20.693214992417577,"roll":-22.01978997526797},"location":"Right Ankle"},{"euler":{"heading":81.25120707272887,"pitch":-161.42127861639403,"roll":50.42103797896718},"location":"Right Hip"},{"euler":{"heading":126.21992932258185,"pitch":-103.93639005559736,"roll":46.286859970884684},"location":"Right Knee"},{"euler":{"heading":9.623978375271266,"pitch":-137.41111914133398,"roll":60.38621138905486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.596"} +{"sensors":[{"euler":{"heading":38.126775621405585,"pitch":122.26522321967082,"roll":14.910227249734852},"location":"Left Knee"},{"euler":{"heading":27.180537755967375,"pitch":96.41764596427389,"roll":18.76136060163372},"location":"Left Ankle"},{"euler":{"heading":38.23116219475558,"pitch":-20.92453835151776,"roll":-21.750368612367097},"location":"Right Ankle"},{"euler":{"heading":80.48798182966128,"pitch":-161.78548543926402,"roll":50.82688484581658},"location":"Right Hip"},{"euler":{"heading":135.7685026199087,"pitch":-104.86396362820396,"roll":47.19893104301572},"location":"Right Knee"},{"euler":{"heading":8.795680347063714,"pitch":-136.09377032608765,"roll":60.31974652268971},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.696"} +{"sensors":[{"euler":{"heading":39.86858479183498,"pitch":122.27566572733402,"roll":13.533510199374494},"location":"Left Knee"},{"euler":{"heading":28.307717762281353,"pitch":95.90823812227096,"roll":20.47252852079482},"location":"Left Ankle"},{"euler":{"heading":38.63419811161375,"pitch":-20.997115018797647,"roll":-21.768169471014282},"location":"Right Ankle"},{"euler":{"heading":80.28517067622144,"pitch":-161.93668788782819,"roll":51.44382848130196},"location":"Right Hip"},{"euler":{"heading":144.086269837952,"pitch":-105.69141122184605,"roll":47.54267150809111},"location":"Right Knee"},{"euler":{"heading":7.261346529281027,"pitch":-134.3250393746439,"roll":59.593729667743936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.797"} +{"sensors":[{"euler":{"heading":37.77515412351556,"pitch":123.40877803307076,"roll":14.107017383732018},"location":"Left Knee"},{"euler":{"heading":26.513645935418165,"pitch":94.9478818211351,"roll":19.565509676748615},"location":"Left Ankle"},{"euler":{"heading":38.57775848423927,"pitch":-20.878483299943785,"roll":-21.962636253070055},"location":"Right Ankle"},{"euler":{"heading":80.4044838914084,"pitch":-162.01405413903782,"roll":52.132882169312566},"location":"Right Hip"},{"euler":{"heading":151.41409030662155,"pitch":-106.28556992950128,"roll":47.4078156165013},"location":"Right Knee"},{"euler":{"heading":40.1846092028055,"pitch":-132.56998081874127,"roll":58.764361188400436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.897"} +{"sensors":[{"euler":{"heading":34.12883040319372,"pitch":125.05836041958277,"roll":15.844757804699569},"location":"Left Knee"},{"euler":{"heading":22.714101296472286,"pitch":94.298855720272,"roll":16.47366341737636},"location":"Left Ankle"},{"euler":{"heading":38.00835870819408,"pitch":-20.45603511005544,"roll":-22.519104085546545},"location":"Right Ankle"},{"euler":{"heading":80.78160687986872,"pitch":-162.1256780850008,"roll":52.803952140002544},"location":"Right Hip"},{"euler":{"heading":158.03241368867452,"pitch":-106.71619379923246,"roll":46.72098365686477},"location":"Right Knee"},{"euler":{"heading":33.31928562048926,"pitch":-131.27913745219013,"roll":58.10306593529017},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.998"} +{"sensors":[{"euler":{"heading":31.279966602362162,"pitch":126.5569717179139,"roll":17.494484802816775},"location":"Left Knee"},{"euler":{"heading":19.727889759720515,"pitch":93.87209148244023,"roll":13.652147561684746},"location":"Left Ankle"},{"euler":{"heading":36.59683088191427,"pitch":-19.746780351987166,"roll":-23.510153183987583},"location":"Right Ankle"},{"euler":{"heading":81.4708944584525,"pitch":-162.33369934903286,"roll":53.429022554962394},"location":"Right Hip"},{"euler":{"heading":130.35990740779698,"pitch":-106.73130022668921,"roll":45.21958100555121},"location":"Right Knee"},{"euler":{"heading":28.375731245272434,"pitch":-130.53914760903717,"roll":57.736543338840775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.99"} +{"sensors":[{"euler":{"heading":29.93424110198345,"pitch":127.07473935854146,"roll":18.785141189770577},"location":"Left Knee"},{"euler":{"heading":18.400500851026223,"pitch":93.75346200248053,"roll":12.032441478465174},"location":"Left Ankle"},{"euler":{"heading":33.758551383400146,"pitch":-18.85529047726094,"roll":-24.739866041172263},"location":"Right Ankle"},{"euler":{"heading":82.55252413751752,"pitch":-162.15926884153507,"roll":53.70925842955435},"location":"Right Hip"},{"euler":{"heading":109.2474694976756,"pitch":-106.26934504655036,"roll":42.731390715869686},"location":"Right Knee"},{"euler":{"heading":24.333899634587475,"pitch":-130.03007254780317,"roll":57.60108132734808},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.200"} +{"sensors":[{"euler":{"heading":29.35554960422179,"pitch":127.03195793715224,"roll":19.60819614647176},"location":"Left Knee"},{"euler":{"heading":17.848713949737412,"pitch":93.68773429590861,"roll":10.971090728413396},"location":"Left Ankle"},{"euler":{"heading":30.501157935868633,"pitch":-17.852408355739037,"roll":-25.91800094262476},"location":"Right Ankle"},{"euler":{"heading":83.7710985632403,"pitch":-161.53769702783669,"roll":53.30290774225761},"location":"Right Hip"},{"euler":{"heading":92.1389876449392,"pitch":-105.8156614711373,"roll":40.3074754122717},"location":"Right Knee"},{"euler":{"heading":21.309827096063916,"pitch":-130.15800866675207,"roll":57.75198927979982},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.302"} +{"sensors":[{"euler":{"heading":29.054131559534838,"pitch":126.80299625118954,"roll":20.091364529213273},"location":"Left Knee"},{"euler":{"heading":17.93198912425145,"pitch":93.63420423991906,"roll":10.516052033624678},"location":"Left Ankle"},{"euler":{"heading":29.641381259375045,"pitch":-17.73565123167096,"roll":-26.44898816740817},"location":"Right Ankle"},{"euler":{"heading":84.82831904715235,"pitch":-160.897963185314,"roll":52.40607875391139},"location":"Right Hip"},{"euler":{"heading":76.38860627268616,"pitch":-105.30406428083984,"roll":39.642078921979774},"location":"Right Knee"},{"euler":{"heading":19.11909457324779,"pitch":-130.99315709478554,"roll":58.10851850711097},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.405"} +{"sensors":[{"euler":{"heading":29.300791326777105,"pitch":126.411509991417,"roll":20.165907792226747},"location":"Left Knee"},{"euler":{"heading":18.44012751023289,"pitch":93.56793030345885,"roll":10.478853239438942},"location":"Left Ankle"},{"euler":{"heading":31.273902952489262,"pitch":-18.5931404548912,"roll":-25.7285131339628},"location":"Right Ankle"},{"euler":{"heading":85.05782210797226,"pitch":-160.604458740562,"roll":51.41620132440583},"location":"Right Hip"},{"euler":{"heading":95.89413776973097,"pitch":-104.4784689683306,"roll":40.954367275604284},"location":"Right Knee"},{"euler":{"heading":17.396668869876855,"pitch":-132.2958303951088,"roll":58.5381484567123},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.506"} +{"sensors":[{"euler":{"heading":30.150794605492997,"pitch":125.68865475891519,"roll":19.870696368142315},"location":"Left Knee"},{"euler":{"heading":19.48639327326337,"pitch":93.7101011292248,"roll":10.986215971366212},"location":"Left Ankle"},{"euler":{"heading":34.20395237323548,"pitch":-19.832795077276305,"roll":-24.077761551145766},"location":"Right Ankle"},{"euler":{"heading":84.31827097405503,"pitch":-160.67775641774264,"roll":50.77613413594544},"location":"Right Hip"},{"euler":{"heading":110.7178012654588,"pitch":-104.15352518675766,"roll":43.61031528493537},"location":"Right Knee"},{"euler":{"heading":16.259832737522718,"pitch":-133.81346953391017,"roll":59.12310504244904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.606"} +{"sensors":[{"euler":{"heading":31.524541429966053,"pitch":124.80863938431783,"roll":19.038762683527565},"location":"Left Knee"},{"euler":{"heading":21.110019219695207,"pitch":93.9933259644883,"roll":12.206315238787175},"location":"Left Ankle"},{"euler":{"heading":36.852776556093616,"pitch":-20.847512113215107,"roll":-22.655381275319566},"location":"Right Ankle"},{"euler":{"heading":83.1063059364801,"pitch":-160.9759486564087,"roll":50.41692967090592},"location":"Right Hip"},{"euler":{"heading":122.32626835258255,"pitch":-104.04379619337402,"roll":46.12063198433487},"location":"Right Knee"},{"euler":{"heading":15.679765704873924,"pitch":-135.81100066849518,"roll":59.795105061569025},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.707"} +{"sensors":[{"euler":{"heading":33.880042506132284,"pitch":124.0242260188102,"roll":17.25148309929711},"location":"Left Knee"},{"euler":{"heading":23.337183820858478,"pitch":94.26744498226655,"roll":14.677773411950753},"location":"Left Ankle"},{"euler":{"heading":38.27846744850649,"pitch":-21.634907502573867,"roll":-21.808257576369396},"location":"Right Ankle"},{"euler":{"heading":82.50039528410448,"pitch":-161.10903330630333,"roll":50.25241780840406},"location":"Right Hip"},{"euler":{"heading":132.21176820144268,"pitch":-104.31905954219086,"roll":47.720335242146916},"location":"Right Knee"},{"euler":{"heading":15.22264337551976,"pitch":-137.40448573532703,"roll":60.33183743982532},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.809"} +{"sensors":[{"euler":{"heading":37.21181681144092,"pitch":123.14796130003879,"roll":14.879164277902879},"location":"Left Knee"},{"euler":{"heading":26.53414982261119,"pitch":95.13380044268874,"roll":18.18643015061608},"location":"Left Ankle"},{"euler":{"heading":39.01775944382288,"pitch":-22.37118319745149,"roll":-21.315200603853867},"location":"Right Ankle"},{"euler":{"heading":81.7426827688751,"pitch":-161.46727059419229,"roll":50.51972665761595},"location":"Right Hip"},{"euler":{"heading":140.99566035551018,"pitch":-105.03781778866883,"roll":48.513883013819466},"location":"Right Knee"},{"euler":{"heading":13.730634278777659,"pitch":-136.56933783979534,"roll":60.46674004270626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.909"} +{"sensors":[{"euler":{"heading":39.47613597583351,"pitch":122.97930849471233,"roll":13.279480400629573},"location":"Left Knee"},{"euler":{"heading":28.20057287031079,"pitch":94.90109630395666,"roll":20.42196758630909},"location":"Left Ankle"},{"euler":{"heading":39.34366146312578,"pitch":-22.936350494707845,"roll":-21.10685794230814},"location":"Right Ankle"},{"euler":{"heading":81.5384401233396,"pitch":-161.6487432050644,"roll":51.041037231698226},"location":"Right Hip"},{"euler":{"heading":148.69325279699845,"pitch":-105.64064175204724,"roll":48.76226531339097},"location":"Right Knee"},{"euler":{"heading":11.58745617976832,"pitch":-134.9099465639228,"roll":59.940771515076584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.9"} +{"sensors":[{"euler":{"heading":37.9591686099637,"pitch":123.9206353770168,"roll":13.633394537216857},"location":"Left Knee"},{"euler":{"heading":26.84208734862939,"pitch":94.07221613544289,"roll":19.715953498778983},"location":"Left Ankle"},{"euler":{"heading":39.313244299102315,"pitch":-23.203998684356737,"roll":-21.215599241349565},"location":"Right Ankle"},{"euler":{"heading":81.69225308010319,"pitch":-161.66432055740512,"roll":51.63166433056311},"location":"Right Hip"},{"euler":{"heading":155.33491560787954,"pitch":-106.12072374909003,"roll":48.57679404008996},"location":"Right Knee"},{"euler":{"heading":9.588866682591647,"pitch":-133.0933034496556,"roll":59.161625013810315},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.110"} +{"sensors":[{"euler":{"heading":33.98818118999851,"pitch":125.59881637272755,"roll":15.362680525894023},"location":"Left Knee"},{"euler":{"heading":23.268403532486584,"pitch":93.23300351393432,"roll":16.734647742663757},"location":"Left Ankle"},{"euler":{"heading":38.747315764732264,"pitch":-23.160812094931682,"roll":-21.670714990201375},"location":"Right Ankle"},{"euler":{"heading":82.18680403360176,"pitch":-161.6130177314638,"roll":52.16016276511035},"location":"Right Hip"},{"euler":{"heading":161.3200701583393,"pitch":-106.42434121591154,"roll":47.8441614829781},"location":"Right Knee"},{"euler":{"heading":8.27347039874814,"pitch":-131.66349944432307,"roll":58.53982906940809},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.210"} +{"sensors":[{"euler":{"heading":30.576217725645815,"pitch":127.28382914561746,"roll":17.16528062476139},"location":"Left Knee"},{"euler":{"heading":19.902322366331138,"pitch":92.67576138675666,"roll":13.674274698955},"location":"Left Ankle"},{"euler":{"heading":37.49915349317003,"pitch":-22.729343323319366,"roll":-22.66517803603679},"location":"Right Ankle"},{"euler":{"heading":82.90684311773464,"pitch":-161.6379387743165,"roll":52.70973151878807},"location":"Right Hip"},{"euler":{"heading":132.71889970430465,"pitch":-106.44937417471434,"roll":46.48561954877209},"location":"Right Knee"},{"euler":{"heading":7.636378123604735,"pitch":-130.81560350517987,"roll":58.06636103004917},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.311"} +{"sensors":[{"euler":{"heading":29.031020371761077,"pitch":127.94054029696444,"roll":18.570486840191673},"location":"Left Knee"},{"euler":{"heading":18.252006005094632,"pitch":92.56391717658315,"roll":11.874104544830674},"location":"Left Ankle"},{"euler":{"heading":35.198918450656315,"pitch":-22.273519601084146,"roll":-23.820691090033673},"location":"Right Ankle"},{"euler":{"heading":83.75800386812571,"pitch":-161.71994228114517,"roll":53.20702258765367},"location":"Right Hip"},{"euler":{"heading":110.71527581667293,"pitch":-106.00829188064831,"roll":44.180208130239855},"location":"Right Knee"},{"euler":{"heading":7.215797894759907,"pitch":-130.14348852306097,"roll":57.82223613731247},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.411"} +{"sensors":[{"euler":{"heading":28.467360767102722,"pitch":127.89268862796668,"roll":19.610155926715894},"location":"Left Knee"},{"euler":{"heading":17.643892225492014,"pitch":92.65890728974375,"roll":10.750526584133583},"location":"Left Ankle"},{"euler":{"heading":31.66269299310966,"pitch":-21.03465831522364,"roll":-25.359746587663256},"location":"Right Ankle"},{"euler":{"heading":84.96028450806593,"pitch":-161.3125752932995,"roll":53.02680627432797},"location":"Right Hip"},{"euler":{"heading":93.3764977001198,"pitch":-105.51998789103956,"roll":41.38066187821624},"location":"Right Knee"},{"euler":{"heading":7.28165348915166,"pitch":-130.1060579580077,"roll":57.93427083285266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.512"} +{"sensors":[{"euler":{"heading":28.267430434405647,"pitch":127.48672508022841,"roll":20.313114267576015},"location":"Left Knee"},{"euler":{"heading":17.716718859356952,"pitch":92.78647862916478,"roll":10.13810980766097},"location":"Left Ankle"},{"euler":{"heading":29.90278921019418,"pitch":-20.674642988295403,"roll":-26.116251635478353},"location":"Right Ankle"},{"euler":{"heading":86.05767142660052,"pitch":-160.7180373687021,"roll":52.31081941478037},"location":"Right Hip"},{"euler":{"heading":78.37096329566057,"pitch":-104.92355578213588,"roll":39.620312236001375},"location":"Right Knee"},{"euler":{"heading":7.6566225895058135,"pitch":-130.88074980930082,"roll":58.243734003536225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.613"} +{"sensors":[{"euler":{"heading":28.722039689371346,"pitch":126.76266032589554,"roll":20.65193836994782},"location":"Left Knee"},{"euler":{"heading":18.42438775849174,"pitch":93.16350829030183,"roll":10.101190892490456},"location":"Left Ankle"},{"euler":{"heading":30.863686196413457,"pitch":-21.34174046433813,"roll":-25.68307636647131},"location":"Right Ankle"},{"euler":{"heading":86.2427737210782,"pitch":-160.36435935411347,"roll":51.38351129108634},"location":"Right Hip"},{"euler":{"heading":98.32585136986592,"pitch":-104.26495307858792,"roll":39.995312539452705},"location":"Right Knee"},{"euler":{"heading":8.106334261931554,"pitch":-132.05737376854947,"roll":58.66050158959062},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.713"} +{"sensors":[{"euler":{"heading":29.635296244093073,"pitch":125.90533171563004,"roll":20.506688476649714},"location":"Left Knee"},{"euler":{"heading":19.390271275017916,"pitch":93.570071418198,"roll":10.507736650367677},"location":"Left Ankle"},{"euler":{"heading":33.96319226376761,"pitch":-22.183192649955497,"roll":-24.173389027952062},"location":"Right Ankle"},{"euler":{"heading":85.35390644337495,"pitch":-160.43076992857925,"roll":50.70493658613178},"location":"Right Hip"},{"euler":{"heading":112.61970608863652,"pitch":-104.06733551658571,"roll":43.77102877455526},"location":"Right Knee"},{"euler":{"heading":8.617245070663566,"pitch":-133.56796953722971,"roll":59.174366266876405},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.814"} +{"sensors":[{"euler":{"heading":30.96570985984095,"pitch":124.98092373193882,"roll":19.816396551529643},"location":"Left Knee"},{"euler":{"heading":20.85295540391056,"pitch":94.00930395175553,"roll":11.547429536179386},"location":"Left Ankle"},{"euler":{"heading":36.73887674837773,"pitch":-22.98621891543539,"roll":-22.623006043390607},"location":"Right Ankle"},{"euler":{"heading":83.71647082170783,"pitch":-160.92487065883037,"roll":50.36439539770948},"location":"Right Hip"},{"euler":{"heading":123.64573363777392,"pitch":-104.50682830257064,"roll":46.37307315301381},"location":"Right Knee"},{"euler":{"heading":9.303117125391328,"pitch":-135.51156484074056,"roll":59.75825575929658},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.914"} +{"sensors":[{"euler":{"heading":33.27978444445005,"pitch":124.29308267614901,"roll":18.002707067268567},"location":"Left Knee"},{"euler":{"heading":22.853216098836157,"pitch":94.06192668268028,"roll":13.867533085954195},"location":"Left Ankle"},{"euler":{"heading":38.387346869651545,"pitch":-23.463154449891814,"roll":-21.689782421502297},"location":"Right Ankle"},{"euler":{"heading":82.50059178476258,"pitch":-161.36007948042325,"roll":50.27027923770241},"location":"Right Hip"},{"euler":{"heading":132.8521921704416,"pitch":-105.15421729175908,"roll":48.079559732064816},"location":"Right Knee"},{"euler":{"heading":9.686349185332833,"pitch":-136.88383079714552,"roll":60.21525911783034},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.15"} +{"sensors":[{"euler":{"heading":36.62520124474395,"pitch":123.62310998613444,"roll":15.654053046509679},"location":"Left Knee"},{"euler":{"heading":26.476760115402808,"pitch":95.03106636204046,"roll":17.637568408730647},"location":"Left Ankle"},{"euler":{"heading":39.303104946401604,"pitch":-23.74608883826512,"roll":-21.178268850732774},"location":"Right Ankle"},{"euler":{"heading":81.55259381945413,"pitch":-161.72416255870394,"roll":50.50021717410628},"location":"Right Hip"},{"euler":{"heading":140.74714881021103,"pitch":-106.07890598839217,"roll":49.04107676135488},"location":"Right Knee"},{"euler":{"heading":8.662444961838828,"pitch":-135.9793040095173,"roll":60.19478261104286},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.116"} +{"sensors":[{"euler":{"heading":39.27524524938371,"pitch":123.3735868533781,"roll":13.8141893221334},"location":"Left Knee"},{"euler":{"heading":28.492464775312015,"pitch":94.99243933103571,"roll":20.091784888246085},"location":"Left Ankle"},{"euler":{"heading":39.767551892652605,"pitch":-23.990218499774514,"roll":-20.95917058102512},"location":"Right Ankle"},{"euler":{"heading":81.35901426885911,"pitch":-161.8811983414965,"roll":50.95798520242904},"location":"Right Hip"},{"euler":{"heading":147.9011863606667,"pitch":-106.66593082473135,"roll":49.40577841027957},"location":"Right Knee"},{"euler":{"heading":7.3425033854521224,"pitch":-134.32253188710158,"roll":59.5698325527911},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.216"} +{"sensors":[{"euler":{"heading":38.317866573602025,"pitch":124.17633780798324,"roll":13.8378098559904},"location":"Left Knee"},{"euler":{"heading":27.182158350954243,"pitch":94.11919831845861,"roll":19.827405630112317},"location":"Left Ankle"},{"euler":{"heading":39.933809470087766,"pitch":-24.062492655699614,"roll":-21.00467162968226},"location":"Right Ankle"},{"euler":{"heading":81.39076138839125,"pitch":-161.99356956958763,"roll":51.574348541967666},"location":"Right Hip"},{"euler":{"heading":154.20480255818438,"pitch":-107.09009943209878,"roll":49.295835079184215},"location":"Right Knee"},{"euler":{"heading":40.233224425050736,"pitch":-132.56176654813248,"roll":58.766518515135985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.317"} +{"sensors":[{"euler":{"heading":34.3472810743657,"pitch":125.8420857451467,"roll":15.387127547590648},"location":"Left Knee"},{"euler":{"heading":23.743048449004835,"pitch":93.11499321462797,"roll":17.210052378967074},"location":"Left Ankle"},{"euler":{"heading":39.52891799902614,"pitch":-23.896024740873735,"roll":-21.420398774902957},"location":"Right Ankle"},{"euler":{"heading":81.6248416619742,"pitch":-162.09525149337463,"roll":52.23909590414503},"location":"Right Hip"},{"euler":{"heading":159.94289144927924,"pitch":-107.39068472706126,"roll":48.64938179753881},"location":"Right Knee"},{"euler":{"heading":33.055881022531864,"pitch":-131.06361879661722,"roll":58.11690866173489},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.419"} +{"sensors":[{"euler":{"heading":30.150866095993287,"pitch":127.82500414962415,"roll":17.22307397116635},"location":"Left Knee"},{"euler":{"heading":20.403921949953546,"pitch":92.24793019630658,"roll":14.062839352961625},"location":"Left Ankle"},{"euler":{"heading":38.5077376208333,"pitch":-23.454071999915797,"roll":-22.290040440605047},"location":"Right Ankle"},{"euler":{"heading":82.01864679328719,"pitch":-162.35967485317056,"roll":52.99518722356917},"location":"Right Hip"},{"euler":{"heading":131.20482228729617,"pitch":-107.40702864149324,"roll":47.440165033424236},"location":"Right Knee"},{"euler":{"heading":27.6903765461703,"pitch":-130.18360684293063,"roll":57.65394435504005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.519"} +{"sensors":[{"euler":{"heading":28.02875908382002,"pitch":128.798845143585,"roll":18.706016905755273},"location":"Left Knee"},{"euler":{"heading":18.900527500764948,"pitch":91.93897108981078,"roll":12.207871093573802},"location":"Left Ankle"},{"euler":{"heading":36.434972257844834,"pitch":-22.976870979854358,"roll":-23.3623322766307},"location":"Right Ankle"},{"euler":{"heading":82.69781246170926,"pitch":-162.60489026912146,"roll":53.685300722852276},"location":"Right Hip"},{"euler":{"heading":109.20801203971476,"pitch":-106.91052138673794,"roll":45.24609300933683},"location":"Right Knee"},{"euler":{"heading":23.564646189353383,"pitch":-129.59539172448822,"roll":57.39554279772422},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.620"} +{"sensors":[{"euler":{"heading":27.21270286367373,"pitch":128.99039390468104,"roll":19.768465551107518},"location":"Left Knee"},{"euler":{"heading":18.097611918103382,"pitch":91.79019846192527,"roll":10.969309309244547},"location":"Left Ankle"},{"euler":{"heading":32.92447541940301,"pitch":-21.237095992469534,"roll":-24.808247045285178},"location":"Right Ankle"},{"euler":{"heading":83.7711543317988,"pitch":-162.0836161348534,"roll":53.65578339080294},"location":"Right Hip"},{"euler":{"heading":91.44080546768683,"pitch":-106.49097088396644,"roll":42.481896616692914},"location":"Right Knee"},{"euler":{"heading":20.436205603472438,"pitch":-129.407958365441,"roll":57.47682297241955},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.721"} +{"sensors":[{"euler":{"heading":26.865563534359026,"pitch":128.81294845505028,"roll":20.515817777532703},"location":"Left Knee"},{"euler":{"heading":17.808794589382543,"pitch":91.64368720341245,"roll":10.187448152534785},"location":"Left Ankle"},{"euler":{"heading":30.68028705370602,"pitch":-20.19789465110474,"roll":-25.510197906817794},"location":"Right Ankle"},{"euler":{"heading":84.76296632653097,"pitch":-161.39195177987244,"roll":52.963199438854105},"location":"Right Hip"},{"euler":{"heading":76.16770861895365,"pitch":-105.8556818622335,"roll":40.69408110500971},"location":"Right Knee"},{"euler":{"heading":18.058946407975764,"pitch":-129.83883065999964,"roll":57.746566528407364},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.821"} +{"sensors":[{"euler":{"heading":26.94993530364007,"pitch":128.38484364692235,"roll":20.942375261555394},"location":"Left Knee"},{"euler":{"heading":18.208459192041957,"pitch":91.6300189693994,"roll":9.991257932952578},"location":"Left Ankle"},{"euler":{"heading":31.143582123350843,"pitch":-20.702257008708397,"roll":-25.217907758186676},"location":"Right Ankle"},{"euler":{"heading":85.1826706004672,"pitch":-160.9325505561421,"roll":51.95005248578052},"location":"Right Hip"},{"euler":{"heading":96.19483692981811,"pitch":-105.17380912190382,"roll":41.032337612436216},"location":"Right Knee"},{"euler":{"heading":16.344316174746982,"pitch":-130.85297356160282,"roll":58.13928344026129},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.922"} +{"sensors":[{"euler":{"heading":27.66111203940955,"pitch":127.6229078949969,"roll":20.983528656043312},"location":"Left Knee"},{"euler":{"heading":19.154016124621513,"pitch":91.7603383080391,"roll":10.354753286418514},"location":"Left Ankle"},{"euler":{"heading":34.008066206449854,"pitch":-21.711555545364316,"roll":-23.847594469207067},"location":"Right Ankle"},{"euler":{"heading":84.71181685677071,"pitch":-160.9330213716029,"roll":51.07489821092771},"location":"Right Hip"},{"euler":{"heading":111.00563056238741,"pitch":-104.49734639656036,"roll":43.14579101346466},"location":"Right Knee"},{"euler":{"heading":15.261425425809756,"pitch":-132.32950511541048,"roll":58.64327587709986},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.22"} +{"sensors":[{"euler":{"heading":28.861734766045547,"pitch":126.69563891709016,"roll":20.461908420503203},"location":"Left Knee"},{"euler":{"heading":20.611947484045533,"pitch":92.07445618132746,"roll":11.444670548528666},"location":"Left Ankle"},{"euler":{"heading":36.841017867447434,"pitch":-22.719969559446383,"roll":-22.239023052276075},"location":"Right Ankle"},{"euler":{"heading":83.34530656831129,"pitch":-161.29611116579989,"roll":50.63971137558106},"location":"Right Hip"},{"euler":{"heading":122.18738828599612,"pitch":-104.35491143742175,"roll":45.86676416139403},"location":"Right Knee"},{"euler":{"heading":14.565005508302939,"pitch":-134.09364386924852,"roll":59.28363060903116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.123"} +{"sensors":[{"euler":{"heading":30.879286868587663,"pitch":125.8684669436009,"roll":19.10405643329918},"location":"Left Knee"},{"euler":{"heading":22.483465156436868,"pitch":92.08520946575817,"roll":13.625916348403686},"location":"Left Ankle"},{"euler":{"heading":38.4234174453025,"pitch":-23.156833659260396,"roll":-21.2472008604838},"location":"Right Ankle"},{"euler":{"heading":82.29180782179766,"pitch":-161.61277145640832,"roll":50.39455434457226},"location":"Right Hip"},{"euler":{"heading":131.2954368255975,"pitch":-104.6600330491569,"roll":47.79977257246529},"location":"Right Knee"},{"euler":{"heading":14.060176025006147,"pitch":-135.6840237541558,"roll":59.857126339429485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.223"} +{"sensors":[{"euler":{"heading":34.207833074397726,"pitch":124.98918287183544,"roll":16.817105253484048},"location":"Left Knee"},{"euler":{"heading":24.919548539452563,"pitch":92.49922076322959,"roll":16.824404682158733},"location":"Left Ankle"},{"euler":{"heading":39.273186418080705,"pitch":-23.403508405084974,"roll":-20.77778782617263},"location":"Right Ankle"},{"euler":{"heading":81.619454043745,"pitch":-161.88741884633427,"roll":50.51754569915951},"location":"Right Hip"},{"euler":{"heading":139.26439346882785,"pitch":-105.37013744788317,"roll":48.90681048594679},"location":"Right Knee"},{"euler":{"heading":12.386416979808843,"pitch":-135.0660424389492,"roll":59.9598967995924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.323"} +{"sensors":[{"euler":{"heading":36.624087072655044,"pitch":124.73456362250695,"roll":15.199543505573146},"location":"Left Knee"},{"euler":{"heading":25.939180500207208,"pitch":92.05934212394374,"roll":18.523630230455783},"location":"Left Ankle"},{"euler":{"heading":39.82628894109527,"pitch":-23.602937004467275,"roll":-20.495715053081945},"location":"Right Ankle"},{"euler":{"heading":81.23540011872078,"pitch":-162.07054204086745,"roll":50.94988412239556},"location":"Right Hip"},{"euler":{"heading":146.25310045153844,"pitch":-105.97107606772529,"roll":49.43291689442525},"location":"Right Knee"},{"euler":{"heading":10.564101523926258,"pitch":-133.53776140553722,"roll":59.52375884927919},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.424"} +{"sensors":[{"euler":{"heading":35.50500793333482,"pitch":125.4791954596217,"roll":15.424319557729921},"location":"Left Knee"},{"euler":{"heading":24.479165292460753,"pitch":91.35809621710997,"roll":17.647422186005105},"location":"Left Ankle"},{"euler":{"heading":39.94028614778038,"pitch":-23.593145129949242,"roll":-20.478286735453338},"location":"Right Ankle"},{"euler":{"heading":81.18253072016955,"pitch":-162.15895665670666,"roll":51.555127461293694},"location":"Right Hip"},{"euler":{"heading":152.34405516181732,"pitch":-106.53268637111452,"roll":49.48091532297169},"location":"Right Knee"},{"euler":{"heading":8.750945009083384,"pitch":-131.78624891353715,"roll":58.8318431062947},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.524"} +{"sensors":[{"euler":{"heading":31.75279542109199,"pitch":127.11018877868099,"roll":16.99513455881874},"location":"Left Knee"},{"euler":{"heading":21.2563565368561,"pitch":90.46790804464621,"roll":14.821268156252206},"location":"Left Ankle"},{"euler":{"heading":39.599619479496866,"pitch":-23.29890994081319,"roll":-20.955976817911626},"location":"Right Ankle"},{"euler":{"heading":81.30570992788265,"pitch":-162.2805779924759,"roll":52.26332038063337},"location":"Right Hip"},{"euler":{"heading":157.7831655995462,"pitch":-106.96358453911223,"roll":49.00116083389908},"location":"Right Knee"},{"euler":{"heading":7.414967127390835,"pitch":-130.49861429183653,"roll":58.22952702486628},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.625"} +{"sensors":[{"euler":{"heading":28.739940994086766,"pitch":128.66926829225304,"roll":18.58299451894763},"location":"Left Knee"},{"euler":{"heading":18.581852405088195,"pitch":90.19747663872424,"roll":12.174772193712606},"location":"Left Ankle"},{"euler":{"heading":38.54184668526124,"pitch":-22.705671931804787,"roll":-21.798452894555457},"location":"Right Ankle"},{"euler":{"heading":81.65032654105751,"pitch":-162.5808799521149,"roll":53.04683388673813},"location":"Right Hip"},{"euler":{"heading":163.27118680656588,"pitch":-107.09784532469996,"roll":47.81198888500871},"location":"Right Knee"},{"euler":{"heading":6.772913277674272,"pitch":-129.76747326955385,"roll":57.797467058528866},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.727"} +{"sensors":[{"euler":{"heading":27.28966668638223,"pitch":129.307150497721,"roll":19.793887734581297},"location":"Left Knee"},{"euler":{"heading":17.646431254182623,"pitch":90.18463699649749,"roll":10.84423401767752},"location":"Left Ankle"},{"euler":{"heading":35.9813308050258,"pitch":-22.014287643909114,"roll":-22.929397572788293},"location":"Right Ankle"},{"euler":{"heading":82.45568531805112,"pitch":-162.56724094535755,"roll":53.53583934964886},"location":"Right Hip"},{"euler":{"heading":135.2082680264729,"pitch":-106.64263972407639,"roll":45.51120345457244},"location":"Right Knee"},{"euler":{"heading":6.318543978876354,"pitch":-129.260459978172,"roll":57.596756606721755},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.827"} +{"sensors":[{"euler":{"heading":26.77400343005329,"pitch":129.31954998395446,"roll":20.61611067688983},"location":"Left Knee"},{"euler":{"heading":17.41558712448589,"pitch":90.26814364620822,"roll":10.074270638318758},"location":"Left Ankle"},{"euler":{"heading":32.75517475293119,"pitch":-20.657398394788906,"roll":-23.97654245724214},"location":"Right Ankle"},{"euler":{"heading":83.73936950470825,"pitch":-161.89497020186954,"roll":53.21138352265277},"location":"Right Hip"},{"euler":{"heading":112.39090411255445,"pitch":-106.13561059872107,"roll":42.94771014119609},"location":"Right Knee"},{"euler":{"heading":6.356733119727536,"pitch":-129.5448397394821,"roll":57.73618533263906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.928"} +{"sensors":[{"euler":{"heading":26.649044300640117,"pitch":129.00972335837025,"roll":21.134198036282562},"location":"Left Knee"},{"euler":{"heading":17.76759519715948,"pitch":90.40910511623711,"roll":9.781830883726327},"location":"Left Ankle"},{"euler":{"heading":31.492913072797453,"pitch":-20.07167635293099,"roll":-24.54357807837839},"location":"Right Ankle"},{"euler":{"heading":84.5110192551706,"pitch":-161.32826631376318,"roll":52.39460446003443},"location":"Right Hip"},{"euler":{"heading":92.34065072962082,"pitch":-105.54601581164079,"roll":41.912255375860504},"location":"Right Knee"},{"euler":{"heading":6.5485256523380615,"pitch":-130.2777925080495,"roll":58.082327293944175},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.29"} +{"sensors":[{"euler":{"heading":27.105586818665984,"pitch":128.2894162022469,"roll":21.383025993976705},"location":"Left Knee"},{"euler":{"heading":18.644404476966674,"pitch":90.82797771096918,"roll":9.939326279224145},"location":"Left Ankle"},{"euler":{"heading":32.69481025531774,"pitch":-20.885310597464002,"roll":-23.867612955642123},"location":"Right Ankle"},{"euler":{"heading":84.72667369367916,"pitch":-161.08300893184213,"roll":51.39987321421533},"location":"Right Hip"},{"euler":{"heading":108.72378733554866,"pitch":-104.7865844929922,"roll":42.76483575889125},"location":"Right Knee"},{"euler":{"heading":7.115791394385151,"pitch":-131.57122580976522,"roll":58.56201114164061},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.130"} +{"sensors":[{"euler":{"heading":28.127441864287064,"pitch":127.38197998034494,"roll":21.14445021699466},"location":"Left Knee"},{"euler":{"heading":19.66554564556318,"pitch":91.21295039043422,"roll":10.521792701637036},"location":"Left Ankle"},{"euler":{"heading":35.593311409190385,"pitch":-22.019883558731514,"roll":-22.215520128388018},"location":"Right Ankle"},{"euler":{"heading":84.07685355254802,"pitch":-161.23563601950622,"roll":50.66028900636699},"location":"Right Hip"},{"euler":{"heading":120.65790008081814,"pitch":-104.39071409281433,"roll":45.18911001878317},"location":"Right Knee"},{"euler":{"heading":7.847806806906071,"pitch":-133.22319128706442,"roll":59.12091656084236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.231"} +{"sensors":[{"euler":{"heading":29.6419007276398,"pitch":126.45384802102734,"roll":20.304311641738003},"location":"Left Knee"},{"euler":{"heading":21.084295065216075,"pitch":91.57913849667344,"roll":11.684999966757417},"location":"Left Ankle"},{"euler":{"heading":38.12712429127067,"pitch":-23.0286944327165,"roll":-20.756254348157483},"location":"Right Ankle"},{"euler":{"heading":82.85512584704965,"pitch":-161.5937208494268,"roll":50.3477761459792},"location":"Right Hip"},{"euler":{"heading":130.02525763231046,"pitch":-104.53785198154354,"roll":47.65625952953387},"location":"Right Knee"},{"euler":{"heading":8.726609684758998,"pitch":-135.36605220817194,"roll":59.71583576000176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.331"} +{"sensors":[{"euler":{"heading":32.11856197504255,"pitch":125.66156700290627,"roll":18.50960765644775},"location":"Left Knee"},{"euler":{"heading":23.006964914881063,"pitch":91.88076644976299,"roll":14.0455249086673},"location":"Left Ankle"},{"euler":{"heading":39.51215182494247,"pitch":-23.537261332645507,"roll":-20.13140210333246},"location":"Right Ankle"},{"euler":{"heading":82.10447945751505,"pitch":-161.85234450398553,"roll":50.23740496812638},"location":"Right Hip"},{"euler":{"heading":137.64173198679794,"pitch":-105.00987592461523,"roll":49.28824556562847},"location":"Right Knee"},{"euler":{"heading":9.469953750961787,"pitch":-136.9067380406013,"roll":60.266053932007736},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.432"} +{"sensors":[{"euler":{"heading":35.32362040642693,"pitch":124.71872996512957,"roll":16.302984600640382},"location":"Left Knee"},{"euler":{"heading":25.2827911855391,"pitch":92.57581890860315,"roll":16.94844978306717},"location":"Left Ankle"},{"euler":{"heading":40.31921893616921,"pitch":-23.783419771462835,"roll":-19.7443481082392},"location":"Right Ankle"},{"euler":{"heading":81.40067139999505,"pitch":-162.13987437219367,"roll":50.59532152694749},"location":"Right Hip"},{"euler":{"heading":144.2050847814716,"pitch":-105.91856854441887,"roll":50.25369260177715},"location":"Right Knee"},{"euler":{"heading":9.174916301032326,"pitch":-136.26757104627444,"roll":60.377487647820494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.533"} +{"sensors":[{"euler":{"heading":37.06801321814196,"pitch":124.54929060368153,"roll":15.067265766619451},"location":"Left Knee"},{"euler":{"heading":26.17120479788272,"pitch":92.26539595205088,"roll":18.243485247682656},"location":"Left Ankle"},{"euler":{"heading":40.676833915797,"pitch":-23.815912564049782,"roll":-19.7270498211321},"location":"Right Ankle"},{"euler":{"heading":81.11571420541662,"pitch":-162.24547498591843,"roll":51.210511374578864},"location":"Right Hip"},{"euler":{"heading":149.9061427942051,"pitch":-106.7408218496667,"roll":50.687348799820775},"location":"Right Knee"},{"euler":{"heading":7.9880360474528596,"pitch":-134.81524454178793,"roll":59.842173324420344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.634"} +{"sensors":[{"euler":{"heading":35.172893184051155,"pitch":125.48396044333082,"roll":15.637561955276661},"location":"Left Knee"},{"euler":{"heading":24.28864684586667,"pitch":91.55643980614285,"roll":16.87668420963377},"location":"Left Ankle"},{"euler":{"heading":40.57725836704756,"pitch":-23.70857240694175,"roll":-20.044334259140083},"location":"Right Ankle"},{"euler":{"heading":81.13209448617877,"pitch":-162.31130381138595,"roll":51.90392341129151},"location":"Right Hip"},{"euler":{"heading":155.16869362516385,"pitch":-107.29460852946619,"roll":50.58034764550696},"location":"Right Knee"},{"euler":{"heading":6.635720105387613,"pitch":-133.1443520253224,"roll":59.1318590445797},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.735"} +{"sensors":[{"euler":{"heading":31.46302430456481,"pitch":127.14422703180298,"roll":17.295107827156684},"location":"Left Knee"},{"euler":{"heading":20.797149552265555,"pitch":90.86736059731,"roll":13.790909342840674},"location":"Left Ankle"},{"euler":{"heading":39.889304639009296,"pitch":-23.355794746102035,"roll":-20.82489757247183},"location":"Right Ankle"},{"euler":{"heading":81.46060794619441,"pitch":-162.44815967407,"roll":52.63244491171285},"location":"Right Hip"},{"euler":{"heading":160.26839040661434,"pitch":-107.53412275913595,"roll":49.83548643671053},"location":"Right Knee"},{"euler":{"heading":6.004069900191205,"pitch":-131.9534496407673,"roll":58.6020742000272},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.836"} +{"sensors":[{"euler":{"heading":28.895067023778456,"pitch":128.515764122881,"roll":18.848487545917806},"location":"Left Knee"},{"euler":{"heading":18.348541611053093,"pitch":90.81457952628527,"roll":11.414840103105691},"location":"Left Ankle"},{"euler":{"heading":38.20234573773811,"pitch":-22.697692498196293,"roll":-21.887928318925187},"location":"Right Ankle"},{"euler":{"heading":81.9792973283137,"pitch":-162.77413759268634,"roll":53.39273609084711},"location":"Right Hip"},{"euler":{"heading":131.22758286518362,"pitch":-107.40602537424675,"roll":48.33508233264508},"location":"Right Knee"},{"euler":{"heading":5.920882859173662,"pitch":-131.1849877490305,"roll":58.22375532707075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.936"} +{"sensors":[{"euler":{"heading":27.803128705428776,"pitch":128.9185454803051,"roll":20.03412575807669},"location":"Left Knee"},{"euler":{"heading":17.497013784436785,"pitch":90.9570690944684,"roll":10.15659040789399},"location":"Left Ankle"},{"euler":{"heading":35.21583257521524,"pitch":-21.79303617886188,"roll":-23.153049037355153},"location":"Right Ankle"},{"euler":{"heading":82.94502262109866,"pitch":-162.80156804418186,"roll":53.82505640308873},"location":"Right Hip"},{"euler":{"heading":108.94127361009043,"pitch":-106.79665271036765,"roll":45.806178450119624},"location":"Right Knee"},{"euler":{"heading":5.840878785679075,"pitch":-130.63231311774277,"roll":58.09545508182315},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.37"} +{"sensors":[{"euler":{"heading":27.497636258737387,"pitch":128.74793460643696,"roll":20.85133200001524},"location":"Left Knee"},{"euler":{"heading":17.46565818467107,"pitch":91.29409012041106,"roll":9.440148458014216},"location":"Left Ankle"},{"euler":{"heading":31.979752948595937,"pitch":-20.659333917282165,"roll":-24.279989323288824},"location":"Right Ankle"},{"euler":{"heading":83.95573381719556,"pitch":-162.25563964428417,"roll":53.55037782555371},"location":"Right Hip"},{"euler":{"heading":90.7705569537301,"pitch":-106.24524657359223,"roll":43.125446048958786},"location":"Right Knee"},{"euler":{"heading":6.078582226546695,"pitch":-130.6613439961045,"roll":58.258788845688},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.139"} +{"sensors":[{"euler":{"heading":27.5507100661274,"pitch":128.20710808311986,"roll":21.42433294850206},"location":"Left Knee"},{"euler":{"heading":17.9988431704482,"pitch":91.6763410466605,"roll":9.196138911097725},"location":"Left Ankle"},{"euler":{"heading":30.77476424034558,"pitch":-20.566888291730468,"roll":-24.782487739229893},"location":"Right Ankle"},{"euler":{"heading":84.90815449977478,"pitch":-161.63084587311712,"roll":52.766750340178895},"location":"Right Hip"},{"euler":{"heading":74.71522310967913,"pitch":-105.4668634442585,"roll":41.93634209393009},"location":"Right Knee"},{"euler":{"heading":6.647767924346818,"pitch":-131.40105022922108,"roll":58.62061657244787},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.240"} +{"sensors":[{"euler":{"heading":28.046010220969325,"pitch":127.48586064332599,"roll":21.609889999570136},"location":"Left Knee"},{"euler":{"heading":18.786187603717096,"pitch":92.01628507575326,"roll":9.349895133558945},"location":"Left Ankle"},{"euler":{"heading":31.96410339340237,"pitch":-21.684188688998937,"roll":-24.07785104602337},"location":"Right Ankle"},{"euler":{"heading":85.24804274939511,"pitch":-161.32113378848237,"roll":51.74256405417195},"location":"Right Hip"},{"euler":{"heading":94.3515595440691,"pitch":-104.38202426147733,"roll":42.74501407642092},"location":"Right Knee"},{"euler":{"heading":7.304066395436836,"pitch":-132.7362664184374,"roll":59.06098630977457},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.341"} +{"sensors":[{"euler":{"heading":29.063928131507225,"pitch":126.54784704404787,"roll":21.343788494134365},"location":"Left Knee"},{"euler":{"heading":19.876762436726615,"pitch":92.4071262623295,"roll":9.90519684098546},"location":"Left Ankle"},{"euler":{"heading":35.06040781329315,"pitch":-22.861674586609276,"roll":-22.340360952970002},"location":"Right Ankle"},{"euler":{"heading":84.46807811968628,"pitch":-161.45110926773884,"roll":51.19035778897346},"location":"Right Hip"},{"euler":{"heading":108.55699844946346,"pitch":-103.79277062444751,"roll":45.36736902387948},"location":"Right Knee"},{"euler":{"heading":8.180325400650045,"pitch":-134.4854932655567,"roll":59.64377044652074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.442"} +{"sensors":[{"euler":{"heading":30.62272573394404,"pitch":125.59204637799117,"roll":20.43712541983241},"location":"Left Knee"},{"euler":{"heading":21.370199987768295,"pitch":92.76673401915231,"roll":11.150838969732016},"location":"Left Ankle"},{"euler":{"heading":37.70267402474799,"pitch":-23.68933992515445,"roll":-20.881110314288684},"location":"Right Ankle"},{"euler":{"heading":83.06844455773049,"pitch":-161.84220499034367,"roll":50.91660179134939},"location":"Right Hip"},{"euler":{"heading":119.64142799497364,"pitch":-103.63412407392892,"roll":48.01970211987107},"location":"Right Knee"},{"euler":{"heading":9.14156292877772,"pitch":-136.61529334667347,"roll":60.284078132574464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.542"} +{"sensors":[{"euler":{"heading":33.18325395342554,"pitch":124.85796294342656,"roll":18.48710015130529},"location":"Left Knee"},{"euler":{"heading":23.508602395973313,"pitch":93.0088998094407,"roll":13.817824162605799},"location":"Left Ankle"},{"euler":{"heading":39.134885872591354,"pitch":-23.915086592102394,"roll":-20.327615462153567},"location":"Right Ankle"},{"euler":{"heading":82.11862127879942,"pitch":-162.13664468661912,"roll":50.82346480984414},"location":"Right Hip"},{"euler":{"heading":128.50926102291507,"pitch":-104.12671667984073,"roll":49.87870924334275},"location":"Right Knee"},{"euler":{"heading":9.83349824404519,"pitch":-138.04309052090133,"roll":60.85158598470737},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.643"} +{"sensors":[{"euler":{"heading":36.58777933757978,"pitch":123.57539714547494,"roll":16.193438505819174},"location":"Left Knee"},{"euler":{"heading":26.573436934930694,"pitch":94.31602089288401,"roll":17.21803366257037},"location":"Left Ankle"},{"euler":{"heading":40.16489198500326,"pitch":-23.9469452038962,"roll":-19.951623224728895},"location":"Right Ankle"},{"euler":{"heading":81.50737562977586,"pitch":-162.34362275352794,"roll":51.15535901006704},"location":"Right Hip"},{"euler":{"heading":136.15667800770447,"pitch":-105.03024013954361,"roll":50.99012892741283},"location":"Right Knee"},{"euler":{"heading":9.793632746212198,"pitch":-137.4682420066278,"roll":61.05595370027672},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.744"} +{"sensors":[{"euler":{"heading":38.852213929569416,"pitch":123.28285023197718,"roll":14.670874854356429},"location":"Left Knee"},{"euler":{"heading":28.000874117622736,"pitch":94.42270150544222,"roll":19.177080665983723},"location":"Left Ankle"},{"euler":{"heading":40.586143022626786,"pitch":-23.77957811616068,"roll":-19.902717293092305},"location":"Right Ankle"},{"euler":{"heading":81.22091943498569,"pitch":-162.46551366411595,"roll":51.747001873931396},"location":"Right Hip"},{"euler":{"heading":142.87616336195617,"pitch":-105.90726907687474,"roll":51.46074721466171},"location":"Right Knee"},{"euler":{"heading":8.774069854701374,"pitch":-135.9135923859696,"roll":60.59878772953443},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.845"} +{"sensors":[{"euler":{"heading":37.222380230847534,"pitch":124.26070111406501,"roll":15.005393546942319},"location":"Left Knee"},{"euler":{"heading":26.048371620164204,"pitch":93.46691468373402,"roll":18.292220968450085},"location":"Left Ankle"},{"euler":{"heading":40.544617916222855,"pitch":-23.485444426628007,"roll":-20.120057069811025},"location":"Right Ankle"},{"euler":{"heading":81.15283802928718,"pitch":-162.60553624946152,"roll":52.502341138596485},"location":"Right Hip"},{"euler":{"heading":148.8715311572454,"pitch":-106.57007393726244,"roll":51.422863979441246},"location":"Right Knee"},{"euler":{"heading":7.314995573237948,"pitch":-134.07282123267152,"roll":59.828391178690595},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.946"} +{"sensors":[{"euler":{"heading":33.23626698002723,"pitch":126.02543953553916,"roll":16.61605885211956},"location":"Left Knee"},{"euler":{"heading":22.565002193071795,"pitch":92.39990654967158,"roll":15.493910119178363},"location":"Left Ankle"},{"euler":{"heading":40.005266056514174,"pitch":-22.969587261183793,"roll":-20.76262048897397},"location":"Right Ankle"},{"euler":{"heading":81.28734289267045,"pitch":-162.78574696591124,"roll":53.292844351866606},"location":"Right Hip"},{"euler":{"heading":154.45235151553442,"pitch":-107.04497807693384,"roll":50.81188954455689},"location":"Right Knee"},{"euler":{"heading":6.370010066762066,"pitch":-132.60334844326846,"roll":59.22045815398289},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.47"} +{"sensors":[{"euler":{"heading":30.448066417596515,"pitch":127.48556527703323,"roll":18.210251821153474},"location":"Left Knee"},{"euler":{"heading":19.498792039627006,"pitch":91.99325639769432,"roll":12.646687067064507},"location":"Left Ankle"},{"euler":{"heading":38.65401327702307,"pitch":-22.223371510057188,"roll":-21.754286339033076},"location":"Right Ankle"},{"euler":{"heading":81.70663132418333,"pitch":-163.0677213044857,"roll":54.04976816201837},"location":"Right Hip"},{"euler":{"heading":160.0980218039594,"pitch":-107.1179885399777,"roll":49.43263624548198},"location":"Right Knee"},{"euler":{"heading":6.119444037933214,"pitch":-131.8087368243934,"roll":58.81898740139705},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.147"} +{"sensors":[{"euler":{"heading":29.05688698853299,"pitch":128.0814691412573,"roll":19.4030943882211},"location":"Left Knee"},{"euler":{"heading":18.31398611785099,"pitch":91.77986680789932,"roll":11.188023718798217},"location":"Left Ankle"},{"euler":{"heading":35.65105584649084,"pitch":-21.33410839959302,"roll":-23.061846278488936},"location":"Right Ankle"},{"euler":{"heading":82.69798276449245,"pitch":-162.95426378346156,"roll":54.41364304213311},"location":"Right Hip"},{"euler":{"heading":132.277146764227,"pitch":-106.54196066510693,"roll":46.85283540124683},"location":"Right Knee"},{"euler":{"heading":5.890499616944969,"pitch":-131.35130610918668,"roll":58.61622982865378},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.248"} +{"sensors":[{"euler":{"heading":28.512321555132218,"pitch":127.97859447357952,"roll":20.357616439082022},"location":"Left Knee"},{"euler":{"heading":17.98001623997996,"pitch":91.9137678054638,"roll":10.224834065116799},"location":"Left Ankle"},{"euler":{"heading":32.28260551873613,"pitch":-20.08353830137867,"roll":-24.328258987455627},"location":"Right Ankle"},{"euler":{"heading":84.02694200333259,"pitch":-162.16194321597138,"roll":54.07702989886165},"location":"Right Hip"},{"euler":{"heading":109.49149938687029,"pitch":-106.09801639598989,"roll":44.3103521442093},"location":"Right Knee"},{"euler":{"heading":6.255953784278941,"pitch":-131.53191921739997,"roll":58.741915550607686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.349"} +{"sensors":[{"euler":{"heading":28.417205123337,"pitch":127.45744360176127,"roll":21.04298042563532},"location":"Left Knee"},{"euler":{"heading":18.40216306098719,"pitch":92.19545478691153,"roll":9.882400130558601},"location":"Left Ankle"},{"euler":{"heading":31.028684901331903,"pitch":-19.95668557451268,"roll":-25.040196829797324},"location":"Right Ankle"},{"euler":{"heading":85.13292829819338,"pitch":-161.46877331113404,"roll":53.148179754134254},"location":"Right Hip"},{"euler":{"heading":89.67530123621684,"pitch":-105.49416183164118,"roll":43.29390885524266},"location":"Right Knee"},{"euler":{"heading":6.905960406763998,"pitch":-132.28988228011542,"roll":59.06373119488252},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.449"} +{"sensors":[{"euler":{"heading":28.838729733316647,"pitch":126.76589078389922,"roll":21.288594836178238},"location":"Left Knee"},{"euler":{"heading":19.265058179777377,"pitch":92.49196346959134,"roll":10.060055422415072},"location":"Left Ankle"},{"euler":{"heading":32.380099119855714,"pitch":-21.108250227150773,"roll":-24.44184234717116},"location":"Right Ankle"},{"euler":{"heading":85.43803259744875,"pitch":-161.16258775106525,"roll":52.09365533251007},"location":"Right Hip"},{"euler":{"heading":106.02416032079007,"pitch":-104.80506150265012,"roll":44.36583270862775},"location":"Right Knee"},{"euler":{"heading":7.539255348286233,"pitch":-133.5227124669739,"roll":59.450059073078684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.550"} +{"sensors":[{"euler":{"heading":29.736787232137324,"pitch":125.94392672230788,"roll":21.017384662350572},"location":"Left Knee"},{"euler":{"heading":20.298587679036757,"pitch":92.78999332508347,"roll":10.666709340241807},"location":"Left Ankle"},{"euler":{"heading":35.13348581631362,"pitch":-22.3345769183821,"roll":-22.770797839593225},"location":"Right Ankle"},{"euler":{"heading":84.80200082828085,"pitch":-161.18279344967118,"roll":51.478324998738024},"location":"Right Hip"},{"euler":{"heading":117.94804259191521,"pitch":-104.61551924518511,"roll":46.88751517877559},"location":"Right Knee"},{"euler":{"heading":8.253991705677231,"pitch":-134.9652616977826,"roll":59.995832693573924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.650"} +{"sensors":[{"euler":{"heading":31.185552645240687,"pitch":125.02773800686445,"roll":20.141770727078576},"location":"Left Knee"},{"euler":{"heading":21.816660264643147,"pitch":93.1666886510455,"roll":11.964764112004428},"location":"Left Ankle"},{"euler":{"heading":37.584150985036416,"pitch":-23.075640306153797,"roll":-21.35978154000701},"location":"Right Ankle"},{"euler":{"heading":83.62723487241271,"pitch":-161.3972722343421,"roll":51.248519834233846},"location":"Right Hip"},{"euler":{"heading":126.9086878316019,"pitch":-104.80072563756885,"roll":49.43091633613557},"location":"Right Knee"},{"euler":{"heading":9.112701204455352,"pitch":-136.859174000274,"roll":60.61454110109381},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.750"} +{"sensors":[{"euler":{"heading":33.679767858872395,"pitch":124.21653759435952,"roll":18.279294126886697},"location":"Left Knee"},{"euler":{"heading":23.808765198767716,"pitch":93.41837124916877,"roll":14.47703574012543},"location":"Left Ankle"},{"euler":{"heading":38.978386261007905,"pitch":-23.54406963779546,"roll":-20.70130004864214},"location":"Right Ankle"},{"euler":{"heading":82.89125948164528,"pitch":-161.61512997184957,"roll":51.218934096770454},"location":"Right Hip"},{"euler":{"heading":134.51319320144364,"pitch":-105.34881397421829,"roll":51.066502203049374},"location":"Right Knee"},{"euler":{"heading":9.887155294823314,"pitch":-138.24593612348767,"roll":61.1565589967548},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.855"} +{"sensors":[{"euler":{"heading":36.96459784247176,"pitch":123.34576048246271,"roll":15.951892244649283},"location":"Left Knee"},{"euler":{"heading":26.367366530361966,"pitch":94.27631516785156,"roll":17.689686330126165},"location":"Left Ankle"},{"euler":{"heading":39.83460981492702,"pitch":-23.825252282856322,"roll":-20.295706401708696},"location":"Right Ankle"},{"euler":{"heading":82.0805578694124,"pitch":-161.93117016154116,"roll":51.61427954152775},"location":"Right Hip"},{"euler":{"heading":141.0905270350666,"pitch":-106.24310106136977,"roll":51.99953479065178},"location":"Right Knee"},{"euler":{"heading":9.409504931857063,"pitch":-137.37236247880142,"roll":61.236791256376904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.956"} +{"sensors":[{"euler":{"heading":38.92888551214229,"pitch":123.15234673771867,"roll":14.553375892028859},"location":"Left Knee"},{"euler":{"heading":27.344628670521676,"pitch":94.08950740324127,"roll":19.28876610630623},"location":"Left Ankle"},{"euler":{"heading":40.17302095986243,"pitch":-23.835929838191205,"roll":-20.231905507579697},"location":"Right Ankle"},{"euler":{"heading":81.86265434729265,"pitch":-162.03284251652644,"roll":52.19793947138502},"location":"Right Hip"},{"euler":{"heading":146.94572009016693,"pitch":-107.05231915913495,"roll":52.308735040065365},"location":"Right Knee"},{"euler":{"heading":8.221734115291108,"pitch":-135.6841460077877,"roll":60.66729820524838},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.57"} +{"sensors":[{"euler":{"heading":37.421900914179005,"pitch":124.04154152491921,"roll":14.97636066334067},"location":"Left Knee"},{"euler":{"heading":23.935532045292643,"pitch":93.27837648934899,"roll":18.16141534266847},"location":"Left Ankle"},{"euler":{"heading":40.093393177999516,"pitch":-23.613724694600023,"roll":-20.524946818300105},"location":"Right Ankle"},{"euler":{"heading":82.00528179324263,"pitch":-162.0297183747045,"roll":52.84498494842177},"location":"Right Hip"},{"euler":{"heading":152.10855483563597,"pitch":-107.62998245028616,"roll":52.20802295198959},"location":"Right Knee"},{"euler":{"heading":6.987595133691685,"pitch":-133.93059930716714,"roll":59.93200175411093},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.157"} +{"sensors":[{"euler":{"heading":33.655282525231165,"pitch":125.72011194799131,"roll":16.607623642175},"location":"Left Knee"},{"euler":{"heading":20.55558200055444,"pitch":92.4433341107544,"roll":15.084227294801996},"location":"Left Ankle"},{"euler":{"heading":39.552569427393934,"pitch":-23.109446109167486,"roll":-21.18250290034009},"location":"Right Ankle"},{"euler":{"heading":82.25880706540666,"pitch":-162.1457975690952,"roll":53.55533173503164},"location":"Right Hip"},{"euler":{"heading":156.8352841217528,"pitch":-108.03378941347461,"roll":51.575868099715095},"location":"Right Knee"},{"euler":{"heading":6.161388020997014,"pitch":-132.58167090454953,"roll":59.30826747387756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.259"} +{"sensors":[{"euler":{"heading":30.577124813518342,"pitch":127.35791464300897,"roll":18.244236163259682},"location":"Left Knee"},{"euler":{"heading":17.82375444450468,"pitch":92.10389660689707,"roll":12.228412828404164},"location":"Left Ankle"},{"euler":{"heading":38.27740046434812,"pitch":-22.439105910388488,"roll":-22.270969544115843},"location":"Right Ankle"},{"euler":{"heading":82.72798681653406,"pitch":-162.4054127373822,"roll":54.31701299145747},"location":"Right Hip"},{"euler":{"heading":161.66866472910314,"pitch":-108.08408296676387,"roll":50.21906632216459},"location":"Right Knee"},{"euler":{"heading":5.954569842542334,"pitch":-131.83073851321663,"roll":58.83304548273218},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.359"} +{"sensors":[{"euler":{"heading":29.085270862929036,"pitch":128.02541434006713,"roll":19.499244356292262},"location":"Left Knee"},{"euler":{"heading":16.88301408982404,"pitch":91.97510729780714,"roll":10.767920631090576},"location":"Left Ankle"},{"euler":{"heading":35.277287303316335,"pitch":-21.452032082823358,"roll":-23.51154411113386},"location":"Right Ankle"},{"euler":{"heading":83.52832221749613,"pitch":-162.450082189098,"roll":54.80409891860629},"location":"Right Hip"},{"euler":{"heading":133.02216448064465,"pitch":-107.52911627976934,"roll":47.814159298426006},"location":"Right Knee"},{"euler":{"heading":5.78522734410998,"pitch":-131.27608996710484,"roll":58.6051694056057},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.460"} +{"sensors":[{"euler":{"heading":28.49989039471976,"pitch":128.02894211057455,"roll":20.37327645746338},"location":"Left Knee"},{"euler":{"heading":16.570525602788386,"pitch":91.96558459891436,"roll":9.767404251745095},"location":"Left Ankle"},{"euler":{"heading":31.7328066316209,"pitch":-20.011885274744564,"roll":-24.806523040338373},"location":"Right Ankle"},{"euler":{"heading":84.72465896262406,"pitch":-161.80084677840412,"roll":54.584921688756936},"location":"Right Hip"},{"euler":{"heading":109.88748800420782,"pitch":-107.02694075557251,"roll":45.06132402821337},"location":"Right Knee"},{"euler":{"heading":6.038960194649395,"pitch":-131.41035023635519,"roll":58.66056355795966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.561"} +{"sensors":[{"euler":{"heading":28.222721966458856,"pitch":127.75865015151676,"roll":20.96202586401756},"location":"Left Knee"},{"euler":{"heading":16.80812090393735,"pitch":91.97480366888057,"roll":9.242561602807081},"location":"Left Ankle"},{"euler":{"heading":30.17422925519956,"pitch":-19.737270538240917,"roll":-25.467020744344065},"location":"Right Ankle"},{"euler":{"heading":85.75178064272792,"pitch":-161.1122996058985,"roll":53.77422699059716},"location":"Right Hip"},{"euler":{"heading":124.10776611797796,"pitch":-106.26932395014404,"roll":43.705905754329635},"location":"Right Knee"},{"euler":{"heading":6.47263806498396,"pitch":-132.2393306151396,"roll":58.90688349746151},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.662"} +{"sensors":[{"euler":{"heading":28.649760598950543,"pitch":127.16924185182381,"roll":21.185614532801278},"location":"Left Knee"},{"euler":{"heading":17.502069517142964,"pitch":92.18528623472714,"roll":9.201652026396687},"location":"Left Ankle"},{"euler":{"heading":31.311862698219876,"pitch":-20.665949416529415,"roll":-24.869681823513616},"location":"Right Ankle"},{"euler":{"heading":85.94474822064608,"pitch":-160.7686798877461,"roll":52.74932948880256},"location":"Right Hip"},{"euler":{"heading":133.8963783139626,"pitch":-105.4648692317514,"roll":44.54244328326787},"location":"Right Knee"},{"euler":{"heading":7.012037567454276,"pitch":-133.49480544805434,"roll":59.2486784244036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.762"} +{"sensors":[{"euler":{"heading":29.599895434362594,"pitch":126.3505262047316,"roll":20.989598736153148},"location":"Left Knee"},{"euler":{"heading":18.5102266471584,"pitch":92.50654343063319,"roll":9.610532041996372},"location":"Left Ankle"},{"euler":{"heading":34.502572614591124,"pitch":-21.809498477770564,"roll":-23.342243655453576},"location":"Right Ankle"},{"euler":{"heading":85.3060786409804,"pitch":-160.8620278868543,"roll":51.94083143436161},"location":"Right Hip"},{"euler":{"heading":140.34172206692287,"pitch":-104.9450239724911,"roll":46.98192730242745},"location":"Right Knee"},{"euler":{"heading":7.7866345173282205,"pitch":-135.15998571392166,"roll":59.73037405666489},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.863"} +{"sensors":[{"euler":{"heading":31.019958022258493,"pitch":125.42538628336496,"roll":20.247424702654808},"location":"Left Knee"},{"euler":{"heading":19.9540165959545,"pitch":92.88642067519478,"roll":10.65233713944683},"location":"Left Ankle"},{"euler":{"heading":37.07945056040466,"pitch":-22.873994061905826,"roll":-21.829306156235877},"location":"Right Ankle"},{"euler":{"heading":83.98646546580147,"pitch":-161.2497068536184,"roll":51.5897413821543},"location":"Right Hip"},{"euler":{"heading":145.191100337148,"pitch":-105.0632144076606,"roll":49.581745897747886},"location":"Right Knee"},{"euler":{"heading":8.74192026478014,"pitch":-137.29696844499605,"roll":60.30299050482831},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.963"} +{"sensors":[{"euler":{"heading":33.520397932103656,"pitch":124.74877353066057,"roll":18.36895246865687},"location":"Left Knee"},{"euler":{"heading":21.909080218755083,"pitch":92.9507326682141,"roll":13.015969130256035},"location":"Left Ankle"},{"euler":{"heading":38.45217726019778,"pitch":-23.52807359024951,"roll":-21.102379941894938},"location":"Right Ankle"},{"euler":{"heading":83.38753755800535,"pitch":-161.4340392754668,"roll":51.37311897336431},"location":"Right Hip"},{"euler":{"heading":149.23905496274168,"pitch":-105.46148206044748,"roll":51.292163728731396},"location":"Right Knee"},{"euler":{"heading":9.262513655084696,"pitch":-138.54101517621976,"roll":60.678449475081244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.64"} +{"sensors":[{"euler":{"heading":36.8043793825347,"pitch":124.01761736079716,"roll":16.02113122840782},"location":"Left Knee"},{"euler":{"heading":24.621656701451236,"pitch":93.52616875114106,"roll":16.37949418276379},"location":"Left Ankle"},{"euler":{"heading":39.19566469348196,"pitch":-23.78105131996864,"roll":-20.712141370020618},"location":"Right Ankle"},{"euler":{"heading":82.40962081671967,"pitch":-161.73757916540535,"roll":51.56354774982127},"location":"Right Hip"},{"euler":{"heading":152.61296886132936,"pitch":-106.39261406567387,"roll":52.31074581853017},"location":"Right Knee"},{"euler":{"heading":8.351080738733396,"pitch":-137.1102397811946,"roll":60.76254471228389},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.165"} +{"sensors":[{"euler":{"heading":38.886878426640216,"pitch":123.8435275896508,"roll":14.473341139901155},"location":"Left Knee"},{"euler":{"heading":26.028204215800336,"pitch":93.14317976284063,"roll":18.329127574415384},"location":"Left Ankle"},{"euler":{"heading":39.51905662518329,"pitch":-23.97429271714777,"roll":-20.620617747270888},"location":"Right Ankle"},{"euler":{"heading":82.00723926873891,"pitch":-161.9052293097789,"roll":52.02123676969395},"location":"Right Hip"},{"euler":{"heading":155.95816602033088,"pitch":-107.11032075146808,"roll":52.72708421853532},"location":"Right Knee"},{"euler":{"heading":7.0756680846992195,"pitch":-135.2685984826395,"roll":60.21438309616482},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.266"} +{"sensors":[{"euler":{"heading":37.4766851728398,"pitch":124.6669738522424,"roll":14.737470597312319},"location":"Left Knee"},{"euler":{"heading":24.807706041271924,"pitch":92.32694326992937,"roll":17.756796345861506},"location":"Left Ankle"},{"euler":{"heading":39.6827793557439,"pitch":-24.095644272888844,"roll":-20.763721991678565},"location":"Right Ankle"},{"euler":{"heading":81.90963669442957,"pitch":-162.0926035929899,"roll":52.62563800120858},"location":"Right Hip"},{"euler":{"heading":159.13121725376928,"pitch":-107.59923233894838,"roll":52.66981100422627},"location":"Right Knee"},{"euler":{"heading":40.0147399724892,"pitch":-133.26326063438376,"roll":59.48055300607614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.367"} +{"sensors":[{"euler":{"heading":33.70013981633441,"pitch":126.26226884348569,"roll":16.314168975934944},"location":"Left Knee"},{"euler":{"heading":21.561037188573216,"pitch":91.43377321151209,"roll":15.033198952528807},"location":"Left Ankle"},{"euler":{"heading":39.28770297007896,"pitch":-23.819007275845507,"roll":-21.26182252864648},"location":"Right Ankle"},{"euler":{"heading":82.12103988682156,"pitch":-162.17297429778156,"roll":53.315232995694046},"location":"Right Hip"},{"euler":{"heading":162.1930421296569,"pitch":-107.98218317358534,"roll":52.08290821386415},"location":"Right Knee"},{"euler":{"heading":33.0612907279357,"pitch":-131.7816176193756,"roll":58.85220029178791},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.467"} +{"sensors":[{"euler":{"heading":30.280916687533512,"pitch":127.97929567383477,"roll":17.99058696449474},"location":"Left Knee"},{"euler":{"heading":18.480551439874418,"pitch":91.04173741883963,"roll":12.081168323612314},"location":"Left Ankle"},{"euler":{"heading":38.143762405367234,"pitch":-23.194130971293895,"roll":-22.11087690166072},"location":"Right Ankle"},{"euler":{"heading":82.555730125078,"pitch":-162.3586605903934,"roll":54.02840993448568},"location":"Right Hip"},{"euler":{"heading":165.61563836494008,"pitch":-108.01360453592424,"roll":50.7729992069908},"location":"Right Knee"},{"euler":{"heading":27.73642316040423,"pitch":-130.99977469714966,"roll":58.38468981001334},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.568"} +{"sensors":[{"euler":{"heading":28.61681428349224,"pitch":128.6947020860395,"roll":19.323231286377755},"location":"Left Knee"},{"euler":{"heading":17.29594729155656,"pitch":90.85346261380745,"roll":10.521721903485583},"location":"Left Ankle"},{"euler":{"heading":35.32244260491652,"pitch":-22.325485287667863,"roll":-23.313172500191115},"location":"Right Ankle"},{"euler":{"heading":83.45862231831623,"pitch":-162.26508995348482,"roll":54.41215243719778},"location":"Right Hip"},{"euler":{"heading":135.89722372157865,"pitch":-107.44156087367095,"roll":48.36296182179136},"location":"Right Knee"},{"euler":{"heading":23.453716416169552,"pitch":-130.44688252010053,"roll":58.140010455037356},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.670"} +{"sensors":[{"euler":{"heading":28.03308435285118,"pitch":128.67618106529713,"roll":20.344803384802823},"location":"Left Knee"},{"euler":{"heading":16.884853626469834,"pitch":90.92685504746788,"roll":9.473281467413878},"location":"Left Ankle"},{"euler":{"heading":31.86490466518145,"pitch":-20.956829309836923,"roll":-24.650802743901245},"location":"Right Ankle"},{"euler":{"heading":84.7389324528484,"pitch":-161.57994414615965,"roll":54.01622801137167},"location":"Right Hip"},{"euler":{"heading":111.730286912169,"pitch":-106.97744058876391,"roll":45.70060913732404},"location":"Right Knee"},{"euler":{"heading":20.392938887440287,"pitch":-130.4935524695943,"roll":58.215871585775815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.770"} +{"sensors":[{"euler":{"heading":27.828611074426203,"pitch":128.32053932068067,"roll":21.078948673130913},"location":"Left Knee"},{"euler":{"heading":17.119000114724944,"pitch":91.05271910783581,"roll":8.952635994892582},"location":"Left Ankle"},{"euler":{"heading":30.21699259681793,"pitch":-20.532873769493918,"roll":-25.456910096667247},"location":"Right Ankle"},{"euler":{"heading":86.00722537347488,"pitch":-160.84106662783043,"roll":53.027763257591445},"location":"Right Hip"},{"euler":{"heading":124.9745546260194,"pitch":-106.28398555907356,"roll":44.53408183749579},"location":"Right Knee"},{"euler":{"heading":18.23755074262442,"pitch":-131.2848917043175,"roll":58.49854750681017},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.871"} +{"sensors":[{"euler":{"heading":28.19032095604686,"pitch":127.71929851097677,"roll":21.37464937554686},"location":"Left Knee"},{"euler":{"heading":17.64365623025131,"pitch":91.18444628215194,"roll":8.873907185456789},"location":"Left Ankle"},{"euler":{"heading":31.186353969761022,"pitch":-21.37398033724184,"roll":-25.04483748672987},"location":"Right Ankle"},{"euler":{"heading":86.29064816227398,"pitch":-160.54108384842297,"roll":51.88362321620931},"location":"Right Hip"},{"euler":{"heading":134.11858857169523,"pitch":-105.57920638587127,"roll":45.45236248697196},"location":"Right Knee"},{"euler":{"heading":16.657025822165224,"pitch":-132.58359500316544,"roll":58.88513067062482},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.971"} +{"sensors":[{"euler":{"heading":29.116691219777213,"pitch":126.9017665357117,"roll":21.214159422842005},"location":"Left Knee"},{"euler":{"heading":18.548868693971254,"pitch":91.44038499462506,"roll":9.284237365361365},"location":"Left Ankle"},{"euler":{"heading":34.49493112690323,"pitch":-22.473959242889226,"roll":-23.471011111756933},"location":"Right Ankle"},{"euler":{"heading":85.68442605703221,"pitch":-160.5728475962871,"roll":51.10991294241365},"location":"Right Hip"},{"euler":{"heading":140.03615235793285,"pitch":-105.32196896441772,"roll":47.94797789583666},"location":"Right Knee"},{"euler":{"heading":15.618541972868439,"pitch":-134.24032916953087,"roll":59.41924467746744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.74"} +{"sensors":[{"euler":{"heading":30.493514171865595,"pitch":125.9539164589889,"roll":20.50413184015383},"location":"Left Knee"},{"euler":{"heading":20.003492584512585,"pitch":91.82655555524975,"roll":10.374917141336617},"location":"Left Ankle"},{"euler":{"heading":37.24560763971438,"pitch":-23.403904357109408,"roll":-21.927988695435936},"location":"Right Ankle"},{"euler":{"heading":84.36165430032474,"pitch":-160.93452704701784,"roll":50.707067179206206},"location":"Right Hip"},{"euler":{"heading":144.25124450916434,"pitch":-105.64211484157353,"roll":50.675877385898964},"location":"Right Knee"},{"euler":{"heading":15.035771375345819,"pitch":-136.27454431368693,"roll":60.01551197592708},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.175"} +{"sensors":[{"euler":{"heading":32.81586213222085,"pitch":125.02488685537661,"roll":18.809326126546367},"location":"Left Knee"},{"euler":{"heading":21.9614817193476,"pitch":91.99168713510522,"roll":12.681704381093727},"location":"Left Ankle"},{"euler":{"heading":38.73091387805828,"pitch":-23.98974028709958,"roll":-21.054933236918068},"location":"Right Ankle"},{"euler":{"heading":83.64123399696028,"pitch":-161.16667684624628,"roll":50.562518469852236},"location":"Right Hip"},{"euler":{"heading":147.94631496735713,"pitch":-106.10422078822023,"roll":52.43084873502648},"location":"Right Knee"},{"euler":{"heading":14.635888446261221,"pitch":-137.75259113595968,"roll":60.549114086522714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.276"} +{"sensors":[{"euler":{"heading":36.20372500927122,"pitch":124.07127027547573,"roll":16.443395606944957},"location":"Left Knee"},{"euler":{"heading":25.187750063701692,"pitch":92.85454750110553,"roll":16.326729261961525},"location":"Left Ankle"},{"euler":{"heading":39.578471929686415,"pitch":-24.507958004714183,"roll":-20.597864337673144},"location":"Right Ankle"},{"euler":{"heading":82.97406564100085,"pitch":-161.51943079689593,"roll":50.83005555595665},"location":"Right Hip"},{"euler":{"heading":151.59609191964924,"pitch":-106.80179840104337,"roll":53.370840040566584},"location":"Right Knee"},{"euler":{"heading":13.059950140175555,"pitch":-136.63462682117677,"roll":60.63362172722371},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.376"} +{"sensors":[{"euler":{"heading":38.88257850753534,"pitch":123.64831916245244,"roll":14.593844116953793},"location":"Left Knee"},{"euler":{"heading":26.901947067984132,"pitch":92.64840727665215,"roll":18.52513952514186},"location":"Left Ankle"},{"euler":{"heading":39.939514308935195,"pitch":-24.86391945753358,"roll":-20.416141079112933},"location":"Right Ankle"},{"euler":{"heading":82.74289022450012,"pitch":-161.72566821067218,"roll":51.38724450165455},"location":"Right Hip"},{"euler":{"heading":155.08393113873421,"pitch":-107.36762061402084,"roll":53.73984482902655},"location":"Right Knee"},{"euler":{"heading":11.068027278365573,"pitch":-134.87390001407215,"roll":60.05610674663598},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.477"} +{"sensors":[{"euler":{"heading":38.323343393906505,"pitch":124.33575661324434,"roll":14.584917202650985},"location":"Left Knee"},{"euler":{"heading":25.552852271611552,"pitch":91.87329067026043,"roll":17.981725136055697},"location":"Left Ankle"},{"euler":{"heading":39.87247164936513,"pitch":-25.037387414346274,"roll":-20.57869615062433},"location":"Right Ankle"},{"euler":{"heading":83.05300988653778,"pitch":-161.72203746261016,"roll":52.040063582951035},"location":"Right Hip"},{"euler":{"heading":158.45701184176363,"pitch":-107.64180672820726,"roll":53.615959378784105},"location":"Right Knee"},{"euler":{"heading":9.264629095540219,"pitch":-133.03095928693045,"roll":59.27193429809023},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.578"} +{"sensors":[{"euler":{"heading":34.43499979556989,"pitch":125.89121492702388,"roll":16.277197440633195},"location":"Left Knee"},{"euler":{"heading":22.10576372355163,"pitch":91.13028981720835,"roll":15.117825256640776},"location":"Left Ankle"},{"euler":{"heading":39.377624428875,"pitch":-24.7544014811796,"roll":-21.076561333415583},"location":"Right Ankle"},{"euler":{"heading":83.42584167926798,"pitch":-161.71280678155097,"roll":52.74968945254266},"location":"Right Hip"},{"euler":{"heading":161.48642547711893,"pitch":-107.91963744779216,"roll":53.01039798959714},"location":"Right Knee"},{"euler":{"heading":8.031766247408651,"pitch":-131.58924984234275,"roll":58.6515358068746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.679"} +{"sensors":[{"euler":{"heading":30.90640046570163,"pitch":127.54841331025148,"roll":18.05820257319956},"location":"Left Knee"},{"euler":{"heading":19.027643160834693,"pitch":90.75523224349243,"roll":12.211252325758343},"location":"Left Ankle"},{"euler":{"heading":38.270897766139996,"pitch":-24.099998952064862,"roll":-22.032418277519916},"location":"Right Ankle"},{"euler":{"heading":83.89758455704076,"pitch":-161.8233603207729,"roll":53.49288244625549},"location":"Right Hip"},{"euler":{"heading":164.66250704202363,"pitch":-107.92133662167716,"roll":51.8025114341219},"location":"Right Knee"},{"euler":{"heading":7.444416336333697,"pitch":-130.77219812128754,"roll":58.17338698045366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.781"} +{"sensors":[{"euler":{"heading":29.14679564016933,"pitch":128.20373714407563,"roll":19.47953988755291},"location":"Left Knee"},{"euler":{"heading":17.743905394617457,"pitch":90.76067983436175,"roll":10.550252060728377},"location":"Left Ankle"},{"euler":{"heading":35.84865774059035,"pitch":-21.86694150844508,"roll":-23.206505400810087},"location":"Right Ankle"},{"euler":{"heading":84.72974518141456,"pitch":-161.82232723360679,"roll":53.99296534335572},"location":"Right Hip"},{"euler":{"heading":168.94560121277593,"pitch":-107.24510909272483,"roll":49.53829939120142},"location":"Right Knee"},{"euler":{"heading":7.165635330407305,"pitch":-130.26473537875322,"roll":57.98447963639179},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.882"} +{"sensors":[{"euler":{"heading":28.324345125382695,"pitch":128.30920812423145,"roll":20.40300883576162},"location":"Left Knee"},{"euler":{"heading":17.16840692483816,"pitch":90.73588268545828,"roll":9.505043003298372},"location":"Left Ankle"},{"euler":{"heading":32.34927681164089,"pitch":-20.559740394703528,"roll":-24.566172959272436},"location":"Right Ankle"},{"euler":{"heading":85.92835915418866,"pitch":-161.17335388783906,"roll":53.761767517212135},"location":"Right Hip"},{"euler":{"heading":138.45732504773682,"pitch":-106.74022319191883,"roll":46.83548650363199},"location":"Right Knee"},{"euler":{"heading":7.062221207597251,"pitch":-130.18009937027313,"roll":58.092971546988075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.982"} +{"sensors":[{"euler":{"heading":27.841173386894308,"pitch":128.202505726438,"roll":21.01271118264325},"location":"Left Knee"},{"euler":{"heading":17.05985317191767,"pitch":90.68966313291627,"roll":8.856524757065424},"location":"Left Ankle"},{"euler":{"heading":30.4768539055049,"pitch":-19.91196437100435,"roll":-25.33871356033483},"location":"Right Ankle"},{"euler":{"heading":87.07625157826544,"pitch":-160.46720792848407,"roll":52.916414450549546},"location":"Right Hip"},{"euler":{"heading":146.79917115813402,"pitch":-105.94448198850498,"roll":45.317246470330794},"location":"Right Knee"},{"euler":{"heading":7.286701833299688,"pitch":-131.00720111423456,"roll":58.39922893986909},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.82"} +{"sensors":[{"euler":{"heading":27.867669736859305,"pitch":127.90975823434066,"roll":21.231478414447547},"location":"Left Knee"},{"euler":{"heading":17.309852012220553,"pitch":90.60027775071717,"roll":8.59074337006033},"location":"Left Ankle"},{"euler":{"heading":31.250495434660657,"pitch":-20.72295528248636,"roll":-25.033009308666003},"location":"Right Ankle"},{"euler":{"heading":87.39188733981945,"pitch":-160.1017181990849,"roll":51.91366322346119},"location":"Right Hip"},{"euler":{"heading":151.9707248074197,"pitch":-104.96284206955178,"roll":45.887544494545956},"location":"Right Knee"},{"euler":{"heading":7.636974937682421,"pitch":-132.3858274774062,"roll":58.81309569748427},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.183"} +{"sensors":[{"euler":{"heading":28.626583064532674,"pitch":127.30597579005966,"roll":21.02515451201318},"location":"Left Knee"},{"euler":{"heading":18.00206601447972,"pitch":90.61452006799774,"roll":8.813978411371798},"location":"Left Ankle"},{"euler":{"heading":33.90535686493146,"pitch":-21.997823740511855,"roll":-23.614886086413787},"location":"Right Ankle"},{"euler":{"heading":86.79420525858545,"pitch":-160.181221877683,"roll":51.14898601156621},"location":"Right Hip"},{"euler":{"heading":154.80209468300035,"pitch":-104.40751779819787,"roll":48.15151340495134},"location":"Right Knee"},{"euler":{"heading":8.232934169055437,"pitch":-134.15649918620065,"roll":59.33622610265633},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.283"} +{"sensors":[{"euler":{"heading":29.97330799765469,"pitch":126.56937825973426,"roll":20.273652930487202},"location":"Left Knee"},{"euler":{"heading":19.2406698442564,"pitch":90.7582043536705,"roll":9.735360459214045},"location":"Left Ankle"},{"euler":{"heading":36.727193032774,"pitch":-23.151420435942466,"roll":-22.02845103623835},"location":"Right Ankle"},{"euler":{"heading":85.47248075657663,"pitch":-160.508811002859,"roll":50.849438962923465},"location":"Right Hip"},{"euler":{"heading":156.35347255856877,"pitch":-104.76114300257848,"roll":50.87194221083704},"location":"Right Knee"},{"euler":{"heading":9.059787470749093,"pitch":-136.32354011106887,"roll":59.95822645943699},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.384"} +{"sensors":[{"euler":{"heading":32.34235542446175,"pitch":125.73638089855433,"roll":18.571044967061678},"location":"Left Knee"},{"euler":{"heading":21.259594294414093,"pitch":90.92983783624291,"roll":11.984079325989427},"location":"Left Ankle"},{"euler":{"heading":38.06267895205352,"pitch":-23.339157037979966,"roll":-21.46688571704768},"location":"Right Ankle"},{"euler":{"heading":84.31296518009175,"pitch":-160.81712885331018,"roll":50.74485491736184},"location":"Right Hip"},{"euler":{"heading":157.21945814878947,"pitch":-105.35461378765581,"roll":52.78067682986594},"location":"Right Knee"},{"euler":{"heading":9.713032819795863,"pitch":-137.84448867292494,"roll":60.515113773188745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.485"} +{"sensors":[{"euler":{"heading":35.76845577359265,"pitch":124.72102881093555,"roll":16.251562154656895},"location":"Left Knee"},{"euler":{"heading":24.20281918143829,"pitch":91.79263630434826,"roll":15.404145662249292},"location":"Left Ankle"},{"euler":{"heading":38.85296267406612,"pitch":-23.44363682654117,"roll":-21.196551559958746},"location":"Right Ankle"},{"euler":{"heading":83.29815670975137,"pitch":-161.20907883713681,"roll":51.00099257074744},"location":"Right Hip"},{"euler":{"heading":158.2971352760407,"pitch":-106.42076308908175,"roll":53.93709368535847},"location":"Right Knee"},{"euler":{"heading":8.868598028889275,"pitch":-136.74156384260186,"roll":60.66230876727549},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.586"} +{"sensors":[{"euler":{"heading":38.09217307668315,"pitch":124.39084746613099,"roll":14.765086648996675},"location":"Left Knee"},{"euler":{"heading":25.86956504859387,"pitch":91.85397891308004,"roll":17.34548877621504},"location":"Left Ankle"},{"euler":{"heading":39.41086650739053,"pitch":-23.377654677539187,"roll":-21.10651091667472},"location":"Right Ankle"},{"euler":{"heading":82.59802941130168,"pitch":-161.48051030260888,"roll":51.68460852920991},"location":"Right Hip"},{"euler":{"heading":159.47680151091947,"pitch":-107.40333094426835,"roll":54.507881867842066},"location":"Right Knee"},{"euler":{"heading":7.439957599914388,"pitch":-134.86959443008243,"roll":60.12368208760419},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.687"} +{"sensors":[{"euler":{"heading":36.498989381758335,"pitch":125.28708142826733,"roll":15.209549604434152},"location":"Left Knee"},{"euler":{"heading":24.422164236780908,"pitch":91.10092447417632,"roll":16.58135134567158},"location":"Left Ankle"},{"euler":{"heading":39.433670099736204,"pitch":-23.06230084751149,"roll":-21.31041014847495},"location":"Right Ankle"},{"euler":{"heading":82.48849993930152,"pitch":-161.577489180525,"roll":52.416156417806825},"location":"Right Hip"},{"euler":{"heading":160.95995269769418,"pitch":-108.08434634208278,"roll":54.54280395151828},"location":"Right Knee"},{"euler":{"heading":40.330855752188775,"pitch":-132.88437588832304,"roll":59.3865893086311},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.788"} +{"sensors":[{"euler":{"heading":32.53099449873601,"pitch":126.89473242620606,"roll":16.967263194024152},"location":"Left Knee"},{"euler":{"heading":21.061051444194952,"pitch":90.33032466566516,"roll":13.707974530840533},"location":"Left Ankle"},{"euler":{"heading":38.935099892995275,"pitch":-22.46778902954827,"roll":-21.839741323910257},"location":"Right Ankle"},{"euler":{"heading":82.5712312484367,"pitch":-161.70091479598602,"roll":53.21485794591729},"location":"Right Hip"},{"euler":{"heading":162.73321418468518,"pitch":-108.56978343560586,"roll":53.99770923525137},"location":"Right Knee"},{"euler":{"heading":33.36768844377334,"pitch":-131.39121179423424,"roll":58.82662795996339},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.888"} +{"sensors":[{"euler":{"heading":29.947879079996923,"pitch":128.00462790625653,"roll":18.58155564604752},"location":"Left Knee"},{"euler":{"heading":18.40410088584804,"pitch":90.28106663474833,"roll":11.298177305262897},"location":"Left Ankle"},{"euler":{"heading":37.641020316866225,"pitch":-21.810923949414903,"roll":-22.901360059666253},"location":"Right Ankle"},{"euler":{"heading":83.07892431804048,"pitch":-161.84827140514662,"roll":54.00298143734302},"location":"Right Hip"},{"euler":{"heading":165.3682749687995,"pitch":-108.57503590698543,"roll":52.63645169833788},"location":"Right Knee"},{"euler":{"heading":28.284566656352986,"pitch":-130.61083434992278,"roll":58.498292119593756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.989"} +{"sensors":[{"euler":{"heading":28.90298237109471,"pitch":128.3549608268086,"roll":19.76285919623713},"location":"Left Knee"},{"euler":{"heading":17.370091736828286,"pitch":90.43268942174727,"roll":9.967790842867144},"location":"Left Ankle"},{"euler":{"heading":34.84539954857571,"pitch":-20.984676111467707,"roll":-24.12953123906658},"location":"Right Ankle"},{"euler":{"heading":84.07131768789819,"pitch":-161.63083757858507,"roll":54.3237444400056},"location":"Right Hip"},{"euler":{"heading":169.1429835318094,"pitch":-107.95553143699031,"roll":50.19184092325834},"location":"Right Knee"},{"euler":{"heading":24.164129246865645,"pitch":-130.17222909215823,"roll":58.42116558248148},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.91"} +{"sensors":[{"euler":{"heading":28.481429544589357,"pitch":128.3628123592181,"roll":20.46318226574566},"location":"Left Knee"},{"euler":{"heading":17.028797323932174,"pitch":90.59961564108009,"roll":9.180128822529769},"location":"Left Ankle"},{"euler":{"heading":31.66455217608125,"pitch":-20.070556421183305,"roll":-25.127911886015223},"location":"Right Ankle"},{"euler":{"heading":85.32978636603436,"pitch":-160.9703531331934,"roll":53.82326897317179},"location":"Right Hip"},{"euler":{"heading":172.37045285215908,"pitch":-107.1036372078243,"roll":47.76574248297325},"location":"Right Knee"},{"euler":{"heading":21.07569436621178,"pitch":-130.19151765894497,"roll":58.62485985186496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.192"} +{"sensors":[{"euler":{"heading":28.368129548381432,"pitch":128.16777655602823,"roll":20.835293622487264},"location":"Left Knee"},{"euler":{"heading":17.195243903489963,"pitch":90.78038955494011,"roll":8.859783393554268},"location":"Left Ankle"},{"euler":{"heading":30.54640473049333,"pitch":-19.915212056541545,"roll":-25.692439117296974},"location":"Right Ankle"},{"euler":{"heading":86.58614083366338,"pitch":-160.36675191151042,"roll":52.73425328037859},"location":"Right Hip"},{"euler":{"heading":173.64568045015102,"pitch":-106.35656058122967,"roll":46.86650352939326},"location":"Right Knee"},{"euler":{"heading":18.731191798422216,"pitch":-130.8153927798959,"roll":58.9994275637121},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.293"} +{"sensors":[{"euler":{"heading":28.89367162816322,"pitch":127.62862975337846,"roll":20.886633149536227},"location":"Left Knee"},{"euler":{"heading":17.79526417549431,"pitch":91.02720167107547,"roll":8.992027639767297},"location":"Left Ankle"},{"euler":{"heading":31.75928695350007,"pitch":-20.79723772366962,"roll":-25.043930753211804},"location":"Right Ankle"},{"euler":{"heading":86.91924150643169,"pitch":-160.15945074346956,"roll":51.570470891690725},"location":"Right Hip"},{"euler":{"heading":172.94786027973151,"pitch":-105.40706540977638,"roll":48.00881081916682},"location":"Right Knee"},{"euler":{"heading":17.126616962877563,"pitch":-131.99823382146704,"roll":59.49294254940169},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.394"} +{"sensors":[{"euler":{"heading":29.918515670912633,"pitch":126.82566794422856,"roll":20.546644012567253},"location":"Left Knee"},{"euler":{"heading":18.82758311200908,"pitch":91.36349664876394,"roll":9.569480849370676},"location":"Left Ankle"},{"euler":{"heading":34.387353188220324,"pitch":-22.02342291691066,"roll":-23.517753092180275},"location":"Right Ankle"},{"euler":{"heading":86.19911760007246,"pitch":-160.21562669541794,"roll":50.94545536079604},"location":"Right Hip"},{"euler":{"heading":171.1933696699914,"pitch":-105.12458573187915,"roll":50.42176758573335},"location":"Right Knee"},{"euler":{"heading":16.270581528590895,"pitch":-133.7879394236699,"roll":60.12381649690702},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.495"} +{"sensors":[{"euler":{"heading":31.5246015361958,"pitch":126.11692373739078,"roll":19.525559400930174},"location":"Left Knee"},{"euler":{"heading":20.34466449016353,"pitch":91.63212974720037,"roll":10.906511011857326},"location":"Left Ankle"},{"euler":{"heading":36.955382481929654,"pitch":-22.9427174953758,"roll":-22.10108111633086},"location":"Right Ankle"},{"euler":{"heading":84.74741132738376,"pitch":-160.56372429548458,"roll":50.825792455255424},"location":"Right Hip"},{"euler":{"heading":169.15631860673201,"pitch":-105.39216398214948,"roll":52.67653571963659},"location":"Right Knee"},{"euler":{"heading":15.712348033743476,"pitch":-136.08516448916356,"roll":60.74224107036767},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.595"} +{"sensors":[{"euler":{"heading":34.25464610131423,"pitch":125.5112706136666,"roll":17.495778165372037},"location":"Left Knee"},{"euler":{"heading":22.74618405071643,"pitch":91.94060752696488,"roll":13.727534650371833},"location":"Left Ankle"},{"euler":{"heading":38.09494222536819,"pitch":-23.275158408439047,"roll":-21.6396224036576},"location":"Right Ankle"},{"euler":{"heading":83.75495096982866,"pitch":-160.86087321563622,"roll":50.88398108771924},"location":"Right Hip"},{"euler":{"heading":167.59539896018669,"pitch":-105.93749956102867,"roll":54.12823375603133},"location":"Right Knee"},{"euler":{"heading":15.035290676342163,"pitch":-137.49799174574133,"roll":61.28400213166215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.696"} +{"sensors":[{"euler":{"heading":37.75635413060372,"pitch":124.60056643105891,"roll":15.082384872009316},"location":"Left Knee"},{"euler":{"heading":26.079966394995395,"pitch":93.03424852638861,"roll":17.302801546594477},"location":"Left Ankle"},{"euler":{"heading":38.70696588591194,"pitch":-23.290601139669175,"roll":-21.507434680938427},"location":"Right Ankle"},{"euler":{"heading":82.82936466914283,"pitch":-161.15948240606062,"roll":51.32902483419684},"location":"Right Hip"},{"euler":{"heading":166.5313507343758,"pitch":-106.829295746278,"roll":54.92459736676089},"location":"Right Knee"},{"euler":{"heading":13.208621020854952,"pitch":-136.0772542588067,"roll":61.3402207577737},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.798"} +{"sensors":[{"euler":{"heading":39.933893152741575,"pitch":124.4839845199323,"roll":15.074548017487714},"location":"Left Knee"},{"euler":{"heading":27.37684459690689,"pitch":92.85857671691305,"roll":19.194331935421445},"location":"Left Ankle"},{"euler":{"heading":38.964332577567944,"pitch":-23.149996884090676,"roll":-21.607797687090056},"location":"Right Ankle"},{"euler":{"heading":82.38065161437024,"pitch":-161.32861619094984,"roll":52.02305390255719},"location":"Right Hip"},{"euler":{"heading":166.10600728200797,"pitch":-107.84434565580497,"roll":55.1517464184257},"location":"Right Knee"},{"euler":{"heading":10.91627468227315,"pitch":-134.2684772436114,"roll":60.64198283092952},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.899"} +{"sensors":[{"euler":{"heading":38.26263599453264,"pitch":125.4783743643121,"roll":15.525245330133666},"location":"Left Knee"},{"euler":{"heading":25.63848716036492,"pitch":92.06346775891551,"roll":18.307831212228617},"location":"Left Ankle"},{"euler":{"heading":38.89563468505746,"pitch":-22.915752060134018,"roll":-21.871027591187747},"location":"Right Ankle"},{"euler":{"heading":82.3342924672969,"pitch":-161.52327829111152,"roll":52.81158681577171},"location":"Right Hip"},{"euler":{"heading":166.31065013714482,"pitch":-108.51313610171216,"roll":54.94111640064506},"location":"Right Knee"},{"euler":{"heading":43.12375261042736,"pitch":-132.3404399273114,"roll":59.837750811319474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.0"} +{"sensors":[{"euler":{"heading":34.22476933749715,"pitch":127.1570082509849,"roll":17.1399675436071},"location":"Left Knee"},{"euler":{"heading":21.94995978716515,"pitch":91.05267340496633,"roll":15.25833251955767},"location":"Left Ankle"},{"euler":{"heading":38.33997908541234,"pitch":-22.460032144224158,"roll":-22.39459253711483},"location":"Right Ankle"},{"euler":{"heading":82.51631003041288,"pitch":-161.75887625041716,"roll":53.644016749609584},"location":"Right Hip"},{"euler":{"heading":167.10841409129034,"pitch":-108.89238621895178,"roll":54.17977301503584},"location":"Right Knee"},{"euler":{"heading":35.89826695075728,"pitch":-131.1784471573661,"roll":59.30621645139091},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.102"} +{"sensors":[{"euler":{"heading":31.679567908549952,"pitch":128.15277514931878,"roll":18.660542508749415},"location":"Left Knee"},{"euler":{"heading":19.155719295841912,"pitch":90.86930362273043,"roll":12.712948226520432},"location":"Left Ankle"},{"euler":{"heading":37.05266582058661,"pitch":-21.916865782044347,"roll":-23.343978018275575},"location":"Right Ankle"},{"euler":{"heading":83.14691572960285,"pitch":-161.94233643411056,"roll":54.39726185094355},"location":"Right Hip"},{"euler":{"heading":168.99824633049985,"pitch":-108.81938866475122,"roll":52.58122029321492},"location":"Right Knee"},{"euler":{"heading":30.36254687915554,"pitch":-130.5015432392612,"roll":58.985767561804856},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.202"} +{"sensors":[{"euler":{"heading":30.576535518693877,"pitch":128.40578126820816,"roll":19.715426287322025},"location":"Left Knee"},{"euler":{"heading":17.98551606928853,"pitch":90.95902510452295,"roll":11.283653636370778},"location":"Left Ankle"},{"euler":{"heading":33.93559338131409,"pitch":-20.735712393384325,"roll":-24.76191219620754},"location":"Right Ankle"},{"euler":{"heading":84.47181682350998,"pitch":-161.44841583596082,"roll":54.49621442370537},"location":"Right Hip"},{"euler":{"heading":172.05574703838013,"pitch":-108.12313238913033,"roll":49.874324558190466},"location":"Right Knee"},{"euler":{"heading":25.859631874098397,"pitch":-130.2754747490622,"roll":58.81470750030248},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.303"} +{"sensors":[{"euler":{"heading":30.184670259278036,"pitch":128.0282988222049,"roll":20.56889409917207},"location":"Left Knee"},{"euler":{"heading":17.818080860507955,"pitch":91.40287560238087,"roll":10.442163961954225},"location":"Left Ankle"},{"euler":{"heading":30.776916497936696,"pitch":-19.79771289637034,"roll":-26.015238957985172},"location":"Right Ankle"},{"euler":{"heading":86.15712046081742,"pitch":-160.59719847778752,"roll":53.71773922770514},"location":"Right Hip"},{"euler":{"heading":174.61867835187337,"pitch":-107.540669898387,"roll":47.3357424543987},"location":"Right Knee"},{"euler":{"heading":22.761235445090357,"pitch":-130.66544176868197,"roll":58.94529427972065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.404"} +{"sensors":[{"euler":{"heading":30.26809233162477,"pitch":127.29433406128712,"roll":21.139035392822265},"location":"Left Knee"},{"euler":{"heading":18.483601623735687,"pitch":91.9650281620912,"roll":10.304978227601772},"location":"Left Ankle"},{"euler":{"heading":29.885007991416682,"pitch":-19.787228903202745,"roll":-26.6856091147267},"location":"Right Ankle"},{"euler":{"heading":87.4240843918879,"pitch":-160.02909356358367,"roll":52.42473096927709},"location":"Right Hip"},{"euler":{"heading":175.33194703343094,"pitch":-106.88281733891533,"roll":46.43579006662207},"location":"Right Knee"},{"euler":{"heading":20.58693560109645,"pitch":-131.79714850463844,"roll":59.241818230634465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.505"} +{"sensors":[{"euler":{"heading":30.88931184223339,"pitch":126.42210187416735,"roll":21.23877050677098},"location":"Left Knee"},{"euler":{"heading":19.296068140190396,"pitch":92.46776069579916,"roll":10.489998271935974},"location":"Left Ankle"},{"euler":{"heading":31.497165484853927,"pitch":-20.711155495922377,"roll":-26.00802391598669},"location":"Right Ankle"},{"euler":{"heading":82.9739541373593,"pitch":-159.96092765676178,"roll":51.18932163668572},"location":"Right Hip"},{"euler":{"heading":174.09670651744597,"pitch":-105.96649634117563,"roll":47.60717832568768},"location":"Right Knee"},{"euler":{"heading":18.967144571530746,"pitch":-133.46924025657898,"roll":59.65876805443666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.606"} +{"sensors":[{"euler":{"heading":31.921152769273238,"pitch":125.4604267847141,"roll":20.859339023548166},"location":"Left Knee"},{"euler":{"heading":20.508283137045666,"pitch":93.03563168130745,"roll":11.192495985084872},"location":"Left Ankle"},{"euler":{"heading":34.39865010591951,"pitch":-21.874185562881713,"roll":-24.28312143085291},"location":"Right Ankle"},{"euler":{"heading":82.65956461871437,"pitch":-160.23218325341128,"roll":50.64812535991951},"location":"Right Hip"},{"euler":{"heading":171.6168019503283,"pitch":-105.65458207007318,"roll":50.212918350063354},"location":"Right Knee"},{"euler":{"heading":17.843001906412347,"pitch":-135.54113332767378,"roll":60.16685232649542},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.706"} +{"sensors":[{"euler":{"heading":33.55080359863451,"pitch":124.48916073351221,"roll":19.808509323390336},"location":"Left Knee"},{"euler":{"heading":22.33913182620277,"pitch":93.61488236748491,"roll":12.761581954939812},"location":"Left Ankle"},{"euler":{"heading":36.970577693415635,"pitch":-22.718496718655015,"roll":-22.924440619219226},"location":"Right Ankle"},{"euler":{"heading":81.85517452318554,"pitch":-160.67383083416317,"roll":50.568636562758925},"location":"Right Hip"},{"euler":{"heading":168.97389211651858,"pitch":-105.81823669141757,"roll":52.67780309515873},"location":"Right Knee"},{"euler":{"heading":17.13064088790137,"pitch":-137.83805457329828,"roll":60.709839428545074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.807"} +{"sensors":[{"euler":{"heading":36.341760283942676,"pitch":123.72919244211107,"roll":17.638851653693703},"location":"Left Knee"},{"euler":{"heading":24.59922810724542,"pitch":94.15092249258379,"roll":15.655845034917963},"location":"Left Ankle"},{"euler":{"heading":38.64840704164066,"pitch":-23.405203842512208,"roll":-22.129011670277286},"location":"Right Ankle"},{"euler":{"heading":81.81485278511869,"pitch":-160.95456057079105,"roll":50.609669976068275},"location":"Right Hip"},{"euler":{"heading":167.22010665973744,"pitch":-106.38249521330583,"roll":54.25423203264473},"location":"Right Knee"},{"euler":{"heading":16.071735854810008,"pitch":-138.7214745323762,"roll":61.10605000290767},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.907"} +{"sensors":[{"euler":{"heading":39.57824178662262,"pitch":122.91666461504212,"roll":15.223739121164611},"location":"Left Knee"},{"euler":{"heading":27.525893151319544,"pitch":94.83216699417679,"roll":19.154697093490952},"location":"Left Ankle"},{"euler":{"heading":39.528751345091074,"pitch":-23.973080236184988,"roll":-21.641114835346098},"location":"Right Ankle"},{"euler":{"heading":81.55591570038315,"pitch":-161.34532798846232,"roll":51.08080754563785},"location":"Right Hip"},{"euler":{"heading":166.45592880633225,"pitch":-107.20817999136108,"roll":54.9969929137798},"location":"Right Knee"},{"euler":{"heading":13.962136278006604,"pitch":-136.9941034968832,"roll":60.97111054456698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.10"} +{"sensors":[{"euler":{"heading":41.277020083284484,"pitch":122.93053719465708,"roll":13.870707047106576},"location":"Left Knee"},{"euler":{"heading":28.28133838605473,"pitch":94.50924956123309,"roll":20.543074143637686},"location":"Left Ankle"},{"euler":{"heading":39.970146840100696,"pitch":-24.33830474163758,"roll":-21.496894529932444},"location":"Right Ankle"},{"euler":{"heading":81.82546821594839,"pitch":-161.50272853444991,"roll":51.727104572725224},"location":"Right Hip"},{"euler":{"heading":166.21666581084966,"pitch":-107.91964972359024,"roll":55.252927190422966},"location":"Right Knee"},{"euler":{"heading":11.664048918824811,"pitch":-135.0089316551061,"roll":60.25447642934382},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.110"} +{"sensors":[{"euler":{"heading":38.720293633687774,"pitch":124.14998759374474,"roll":14.715349096421567},"location":"Left Knee"},{"euler":{"heading":25.838062692439845,"pitch":93.61062824632701,"roll":18.999142044655212},"location":"Left Ankle"},{"euler":{"heading":39.98673314674626,"pitch":-24.52015460392451,"roll":-21.41990093842765},"location":"Right Ankle"},{"euler":{"heading":82.28398982595917,"pitch":-161.6511016734053,"roll":52.412992875135636},"location":"Right Hip"},{"euler":{"heading":166.57367114066756,"pitch":-108.3077927252542,"roll":54.96132866812159},"location":"Right Knee"},{"euler":{"heading":9.705088502212154,"pitch":-133.1947632070102,"roll":59.528723079311426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.212"} +{"sensors":[{"euler":{"heading":34.55193645115594,"pitch":126.0084919369266,"roll":16.466565702165504},"location":"Left Knee"},{"euler":{"heading":21.905286247844312,"pitch":92.44671506411059,"roll":15.687687311422646},"location":"Left Ankle"},{"euler":{"heading":39.38794731129809,"pitch":-24.363659400593484,"roll":-21.938816811011996},"location":"Right Ankle"},{"euler":{"heading":82.8258954324482,"pitch":-161.8983216739371,"roll":53.22388595024241},"location":"Right Hip"},{"euler":{"heading":167.43673624629184,"pitch":-108.46281850260242,"roll":54.079156439680155},"location":"Right Knee"},{"euler":{"heading":8.49942946531601,"pitch":-132.02284669322364,"roll":59.03847557352403},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.312"} +{"sensors":[{"euler":{"heading":32.10202998177154,"pitch":127.09567543714958,"roll":18.045252657307813},"location":"Left Knee"},{"euler":{"heading":19.1667031116678,"pitch":92.07722940921265,"roll":13.095515369687451},"location":"Left Ankle"},{"euler":{"heading":38.07720967179184,"pitch":-24.025855639700104,"roll":-22.794815847219763},"location":"Right Ankle"},{"euler":{"heading":83.58470845468325,"pitch":-162.17553265981778,"roll":54.07654903731724},"location":"Right Hip"},{"euler":{"heading":169.19573246062552,"pitch":-108.24637900757976,"roll":52.40099524738986},"location":"Right Knee"},{"euler":{"heading":7.993807081375188,"pitch":-131.40236141049215,"roll":58.689987745444384},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.413"} +{"sensors":[{"euler":{"heading":30.928392310050352,"pitch":127.42545685318309,"roll":19.182447065482407},"location":"Left Knee"},{"euler":{"heading":18.190704757247936,"pitch":92.13528135154341,"roll":11.713063416620733},"location":"Left Ankle"},{"euler":{"heading":34.827996535295256,"pitch":-23.167271826238547,"roll":-24.181754727097722},"location":"Right Ankle"},{"euler":{"heading":84.96107779593844,"pitch":-161.76049951848913,"roll":54.27735308293022},"location":"Right Hip"},{"euler":{"heading":172.25312031158185,"pitch":-107.4738334631746,"roll":49.66368094480075},"location":"Right Knee"},{"euler":{"heading":7.746272639584883,"pitch":-131.1857275840159,"roll":58.66596986835997},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.515"} +{"sensors":[{"euler":{"heading":30.579785752622353,"pitch":127.09961053730387,"roll":20.07472386897635},"location":"Left Knee"},{"euler":{"heading":18.039596902513612,"pitch":92.45534995043728,"roll":10.78316370937742},"location":"Left Ankle"},{"euler":{"heading":31.977294527112054,"pitch":-22.37252480816953,"roll":-25.341636232274155},"location":"Right Ankle"},{"euler":{"heading":86.67663296266463,"pitch":-160.96282953109238,"roll":53.6564391302295},"location":"Right Hip"},{"euler":{"heading":174.48302199104538,"pitch":-106.72721379241494,"roll":47.34727675748826},"location":"Right Knee"},{"euler":{"heading":8.102450625831363,"pitch":-131.86366125400218,"roll":58.87610368726714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.615"} +{"sensors":[{"euler":{"heading":30.781862309593784,"pitch":126.37075287029815,"roll":20.66214652909864},"location":"Left Knee"},{"euler":{"heading":18.433111719468418,"pitch":92.94116720040381,"roll":10.411399941467122},"location":"Left Ankle"},{"euler":{"heading":31.62887558527457,"pitch":-22.72353341037288,"roll":-25.499387956281105},"location":"Right Ankle"},{"euler":{"heading":87.6711014317892,"pitch":-160.37777991434203,"roll":52.58923842085215},"location":"Right Hip"},{"euler":{"heading":174.67390345213784,"pitch":-105.99216318334662,"roll":46.93374239513931},"location":"Right Knee"},{"euler":{"heading":8.762697844252221,"pitch":-133.0835279141032,"roll":59.28622492510839},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.716"} +{"sensors":[{"euler":{"heading":31.488345367257644,"pitch":125.55664973379008,"roll":20.72401135227268},"location":"Left Knee"},{"euler":{"heading":19.028805372085444,"pitch":93.33320866138811,"roll":10.467390476108074},"location":"Left Ankle"},{"euler":{"heading":33.77522135449947,"pitch":-23.629737801384827,"roll":-24.30443934461253},"location":"Right Ankle"},{"euler":{"heading":87.41521575499988,"pitch":-160.30022647610448,"roll":51.63544571092988},"location":"Right Hip"},{"euler":{"heading":172.78501116140663,"pitch":-105.26163582225566,"roll":48.64040312489028},"location":"Right Knee"},{"euler":{"heading":9.315198160182808,"pitch":-134.7164872318173,"roll":59.752458334173234},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.817"} +{"sensors":[{"euler":{"heading":32.601890608665784,"pitch":124.65946478879131,"roll":20.262749525743956},"location":"Left Knee"},{"euler":{"heading":20.015964524012613,"pitch":93.69984782423286,"roll":11.076913832098567},"location":"Left Ankle"},{"euler":{"heading":36.69198191057121,"pitch":-24.741059643951413,"roll":-22.4443248277402},"location":"Right Ankle"},{"euler":{"heading":86.14743208562587,"pitch":-160.63433122101114,"roll":51.277733606095836},"location":"Right Hip"},{"euler":{"heading":170.1860687693055,"pitch":-105.79560665166683,"roll":51.32027164193691},"location":"Right Knee"},{"euler":{"heading":10.047014273187143,"pitch":-136.87782179852695,"roll":60.32297401716185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.918"} +{"sensors":[{"euler":{"heading":34.30438614893882,"pitch":123.75249956970795,"roll":19.09031112631592},"location":"Left Knee"},{"euler":{"heading":21.69820957910539,"pitch":94.04944638818979,"roll":12.698611698600715},"location":"Left Ankle"},{"euler":{"heading":38.60459765552046,"pitch":-25.425620471300313,"roll":-21.165434477528414},"location":"Right Ankle"},{"euler":{"heading":84.90128643622397,"pitch":-161.08528696870994,"roll":51.15024398889104},"location":"Right Hip"},{"euler":{"heading":167.86780773578027,"pitch":-106.50470523727938,"roll":53.37660880275946},"location":"Right Knee"},{"euler":{"heading":10.836474350464535,"pitch":-138.89301265945468,"roll":60.92245374704802},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.19"} +{"sensors":[{"euler":{"heading":37.14904269628698,"pitch":123.09827795977355,"roll":16.89384708210428},"location":"Left Knee"},{"euler":{"heading":24.62735528092086,"pitch":94.67494541243926,"roll":15.878294277593941},"location":"Left Ankle"},{"euler":{"heading":39.504770882873295,"pitch":-25.914265735650023,"roll":-20.54327615818725},"location":"Right Ankle"},{"euler":{"heading":83.98201397033195,"pitch":-161.52307212421223,"roll":51.40943619184189},"location":"Right Hip"},{"euler":{"heading":166.46902397612666,"pitch":-107.32471010396317,"roll":54.57740790542536},"location":"Right Knee"},{"euler":{"heading":10.210587567347108,"pitch":-138.52863544160937,"roll":61.001174019788714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.120"} +{"sensors":[{"euler":{"heading":39.73389259537855,"pitch":122.63708589714908,"roll":14.953883969699934},"location":"Left Knee"},{"euler":{"heading":26.496604201056535,"pitch":94.40265551593042,"roll":18.49391626393872},"location":"Left Ankle"},{"euler":{"heading":40.0396912782006,"pitch":-26.17806942865779,"roll":-20.170550444372967},"location":"Right Ankle"},{"euler":{"heading":83.34822083264143,"pitch":-161.883541155217,"roll":52.012581829354616},"location":"Right Hip"},{"euler":{"heading":165.57934959062447,"pitch":-107.97753245733736,"roll":55.229973630645965},"location":"Right Knee"},{"euler":{"heading":8.996565853980702,"pitch":-136.88500659343492,"roll":60.51354711613884},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.221"} +{"sensors":[{"euler":{"heading":39.63871043122725,"pitch":123.10561552936504,"roll":14.64911475707327},"location":"Left Knee"},{"euler":{"heading":25.9165589672017,"pitch":93.43093964454054,"roll":18.61934643894576},"location":"Left Ankle"},{"euler":{"heading":40.07340259475534,"pitch":-26.143294665281186,"roll":-20.14243623141305},"location":"Right Ankle"},{"euler":{"heading":83.24544323797045,"pitch":-162.09081444530827,"roll":52.706985975742924},"location":"Right Hip"},{"euler":{"heading":165.2492207870958,"pitch":-108.50880205905212,"roll":55.34483948231051},"location":"Right Knee"},{"euler":{"heading":7.509065669469646,"pitch":-134.91021258608575,"roll":59.733423149123304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.322"} +{"sensors":[{"euler":{"heading":36.023317343417474,"pitch":124.62945822718173,"roll":16.049913441782724},"location":"Left Knee"},{"euler":{"heading":22.760284825706396,"pitch":92.27222871130185,"roll":16.212034646070908},"location":"Left Ankle"},{"euler":{"heading":39.631326081659104,"pitch":-25.81456246739332,"roll":-20.449933607671028},"location":"Right Ankle"},{"euler":{"heading":83.22074213203952,"pitch":-162.36160518657857,"roll":53.49585828771726},"location":"Right Hip"},{"euler":{"heading":165.47237221638403,"pitch":-108.84684729839863,"roll":54.919646350326104},"location":"Right Knee"},{"euler":{"heading":6.463516065549898,"pitch":-133.43837200863138,"roll":59.086961489831815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.423"} +{"sensors":[{"euler":{"heading":32.26042090619604,"pitch":126.46018888663963,"roll":17.763359332656115},"location":"Left Knee"},{"euler":{"heading":19.49222063230025,"pitch":91.5031695234704,"roll":13.130031440917975},"location":"Left Ankle"},{"euler":{"heading":38.53808147833474,"pitch":-25.213890205392026,"roll":-21.174078391751827},"location":"Right Ankle"},{"euler":{"heading":83.37293081458081,"pitch":-162.82661336177608,"roll":54.322650027411115},"location":"Right Hip"},{"euler":{"heading":166.49932204524995,"pitch":-108.77223632283912,"roll":53.77984561368821},"location":"Right Knee"},{"euler":{"heading":5.981975573085097,"pitch":-132.55838353063268,"roll":58.66846305889053},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.524"} +{"sensors":[{"euler":{"heading":30.57056740071268,"pitch":127.22497529147171,"roll":19.099782742417933},"location":"Left Knee"},{"euler":{"heading":18.070793151784212,"pitch":91.3720712550854,"roll":11.238945001289727},"location":"Left Ankle"},{"euler":{"heading":36.30523977699085,"pitch":-24.474161693876365,"roll":-22.269291723872975},"location":"Right Ankle"},{"euler":{"heading":84.00289388945724,"pitch":-162.92039575131088,"roll":54.91621526917376},"location":"Right Hip"},{"euler":{"heading":168.6659910424918,"pitch":-108.30638709974814,"roll":51.67831296099653},"location":"Right Knee"},{"euler":{"heading":5.795776511072853,"pitch":-132.04747865385784,"roll":58.480024102483156},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.624"} +{"sensors":[{"euler":{"heading":29.609034038964147,"pitch":127.45922276222582,"roll":20.02370421368642},"location":"Left Knee"},{"euler":{"heading":17.311210802975214,"pitch":91.05130324005968,"roll":10.044989774899866},"location":"Left Ankle"},{"euler":{"heading":33.174969063295634,"pitch":-23.477807880018986,"roll":-23.456518124801143},"location":"Right Ankle"},{"euler":{"heading":85.35105003377205,"pitch":-162.17885933872265,"roll":54.78744320982062},"location":"Right Hip"},{"euler":{"heading":171.3734705457625,"pitch":-107.68271128846307,"roll":48.92056414016228},"location":"Right Knee"},{"euler":{"heading":6.112996224882714,"pitch":-132.45913378424396,"roll":58.55921330727843},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.726"} +{"sensors":[{"euler":{"heading":29.196285953745544,"pitch":127.29663308033547,"roll":20.604089499290666},"location":"Left Knee"},{"euler":{"heading":17.087601216878905,"pitch":90.80861071842081,"roll":9.333218518902457},"location":"Left Ankle"},{"euler":{"heading":31.628554428404673,"pitch":-23.02213021670791,"roll":-24.16814594195715},"location":"Right Ankle"},{"euler":{"heading":86.37762981187761,"pitch":-161.40679128992585,"roll":53.93370243727878},"location":"Right Hip"},{"euler":{"heading":172.33589189480705,"pitch":-106.96972989948058,"roll":47.58448094726954},"location":"Right Knee"},{"euler":{"heading":6.765125682913403,"pitch":-133.52128593677318,"roll":58.874627257701036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.828"} +{"sensors":[{"euler":{"heading":29.280445114023188,"pitch":126.92953334718705,"roll":20.849836221593588},"location":"Left Knee"},{"euler":{"heading":17.42175169545085,"pitch":90.6662933030688,"roll":9.14694313508675},"location":"Left Ankle"},{"euler":{"heading":32.354029869641195,"pitch":-23.436196615200043,"roll":-23.955955920780195},"location":"Right Ankle"},{"euler":{"heading":86.86147375457274,"pitch":-160.92219722846644,"roll":52.83418176982925},"location":"Right Hip"},{"euler":{"heading":171.44139938593096,"pitch":-106.25917242563682,"roll":48.12935831271754},"location":"Right Knee"},{"euler":{"heading":7.38826818461323,"pitch":-134.9342443280395,"roll":59.261107710296436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.928"} +{"sensors":[{"euler":{"heading":30.151971071601697,"pitch":126.32981510446282,"roll":20.57874577338008},"location":"Left Knee"},{"euler":{"heading":18.16503304426328,"pitch":90.6623652808364,"roll":9.45995710010771},"location":"Left Ankle"},{"euler":{"heading":34.73164065484595,"pitch":-24.310280820199818,"roll":-22.557053011284896},"location":"Right Ankle"},{"euler":{"heading":86.08641904414394,"pitch":-160.98310597964735,"roll":52.06517460976271},"location":"Right Hip"},{"euler":{"heading":169.12159276207473,"pitch":-106.19290151550773,"roll":50.364379394914195},"location":"Right Knee"},{"euler":{"heading":8.1363088887389,"pitch":-136.72409161818845,"roll":59.77729285344668},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.29"} +{"sensors":[{"euler":{"heading":31.602793718232448,"pitch":125.74552785942026,"roll":19.66756832909285},"location":"Left Knee"},{"euler":{"heading":19.35032583960024,"pitch":90.65881091141236,"roll":10.462577858546808},"location":"Left Ankle"},{"euler":{"heading":37.45131575767793,"pitch":-25.01798352667565,"roll":-21.02368178885478},"location":"Right Ankle"},{"euler":{"heading":84.59568079675476,"pitch":-161.38899394039834,"roll":51.83899849803303},"location":"Right Hip"},{"euler":{"heading":166.3362867985231,"pitch":-107.00689484115608,"roll":52.785129881819856},"location":"Right Knee"},{"euler":{"heading":8.986616104476543,"pitch":-138.950101202094,"roll":60.327610231857335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.130"} +{"sensors":[{"euler":{"heading":34.17598239153014,"pitch":125.14547720149253,"roll":17.796692426399},"location":"Left Knee"},{"euler":{"heading":21.25425558155706,"pitch":90.71504772733526,"roll":12.844260686145185},"location":"Left Ankle"},{"euler":{"heading":38.89934746017398,"pitch":-25.129233689946187,"roll":-20.510132604935592},"location":"Right Ankle"},{"euler":{"heading":83.49397210188062,"pitch":-161.80383430153955,"roll":51.901876214331345},"location":"Right Hip"},{"euler":{"heading":164.28754831767324,"pitch":-108.34393318516743,"roll":54.29784159848962},"location":"Right Knee"},{"euler":{"heading":9.242893959073834,"pitch":-139.9239329639462,"roll":60.73639909823734},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.231"} +{"sensors":[{"euler":{"heading":37.269827529771916,"pitch":124.50738139360722,"roll":15.634104145729907},"location":"Left Knee"},{"euler":{"heading":23.33637824381123,"pitch":90.74215379003839,"roll":15.909018186967083},"location":"Left Ankle"},{"euler":{"heading":39.989869313268045,"pitch":-25.40231511119135,"roll":-20.027598824195913},"location":"Right Ankle"},{"euler":{"heading":82.59783953449003,"pitch":-162.3337910039015,"roll":52.35710830353283},"location":"Right Hip"},{"euler":{"heading":163.1629570981272,"pitch":-109.29219232560607,"roll":55.131579045048944},"location":"Right Knee"},{"euler":{"heading":8.453922305552894,"pitch":-138.43889662137187,"roll":60.672294499100175},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.333"} +{"sensors":[{"euler":{"heading":38.881541865273256,"pitch":124.45317147050675,"roll":14.539301511893928},"location":"Left Knee"},{"euler":{"heading":24.29210924302841,"pitch":90.24349431979311,"roll":17.398054423029848},"location":"Left Ankle"},{"euler":{"heading":40.413108112222204,"pitch":-25.482951070096544,"roll":-19.89417672048555},"location":"Right Ankle"},{"euler":{"heading":82.41700077689633,"pitch":-162.53390615800822,"roll":52.92955978159825},"location":"Right Hip"},{"euler":{"heading":162.83667379925453,"pitch":-109.97188916060232,"roll":55.339038980716865},"location":"Right Knee"},{"euler":{"heading":7.1836558776813755,"pitch":-136.5897730970323,"roll":60.05542892836555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.434"} +{"sensors":[{"euler":{"heading":36.90156607039125,"pitch":125.43860178856232,"roll":15.260890488681959},"location":"Left Knee"},{"euler":{"heading":22.684647075856855,"pitch":89.66147302503359,"roll":16.284088847284373},"location":"Left Ankle"},{"euler":{"heading":40.34942935212971,"pitch":-25.353776080511132,"roll":-20.070711765144118},"location":"Right Ankle"},{"euler":{"heading":82.6078127343922,"pitch":-162.61986045172253,"roll":53.54862708707544},"location":"Right Hip"},{"euler":{"heading":163.08675515404448,"pitch":-110.37884412038974,"roll":55.057085003952714},"location":"Right Knee"},{"euler":{"heading":39.312434345438106,"pitch":-135.71321852518275,"roll":58.95027434557268},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.535"} +{"sensors":[{"euler":{"heading":33.16383454009336,"pitch":127.13290965364652,"roll":16.98399374254748},"location":"Left Knee"},{"euler":{"heading":19.251929296709523,"pitch":88.86133230985345,"roll":13.111997185137277},"location":"Left Ankle"},{"euler":{"heading":39.71464910589577,"pitch":-24.9574593934366,"roll":-20.735805075433056},"location":"Right Ankle"},{"euler":{"heading":83.04347881489514,"pitch":-162.7214195804472,"roll":54.18609466252604},"location":"Right Hip"},{"euler":{"heading":164.00495840876013,"pitch":-110.52711113931966,"roll":54.183639884406816},"location":"Right Knee"},{"euler":{"heading":63.63371028661376,"pitch":-135.66915489911852,"roll":57.444896358256614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.635"} +{"sensors":[{"euler":{"heading":30.709805426616455,"pitch":128.2736563121306,"roll":18.549132241461756},"location":"Left Knee"},{"euler":{"heading":16.7622703433269,"pitch":88.71994506485343,"roll":10.527025260759066},"location":"Left Ankle"},{"euler":{"heading":38.23769720685047,"pitch":-24.301576919132362,"roll":-21.825146661585407},"location":"Right Ankle"},{"euler":{"heading":83.69152179889694,"pitch":-162.95600528793508,"roll":54.77481379984846},"location":"Right Hip"},{"euler":{"heading":165.83882821741116,"pitch":-110.23915742838977,"roll":52.560938096445575},"location":"Right Knee"},{"euler":{"heading":52.89988364207116,"pitch":-134.76721321666966,"roll":57.23610701343972},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.737"} +{"sensors":[{"euler":{"heading":29.60413582989843,"pitch":128.65190569517506,"roll":19.6919029121197},"location":"Left Knee"},{"euler":{"heading":16.287356218827608,"pitch":88.91899918978243,"roll":9.501861573733656},"location":"Left Ankle"},{"euler":{"heading":35.25666893472603,"pitch":-23.113554451691297,"roll":-23.3281064775791},"location":"Right Ankle"},{"euler":{"heading":84.84045067860117,"pitch":-162.63914366983028,"roll":54.92703138727935},"location":"Right Hip"},{"euler":{"heading":168.89212410168926,"pitch":-109.47324414376486,"roll":49.92731539528562},"location":"Right Knee"},{"euler":{"heading":44.009967889764624,"pitch":-134.3375136619008,"roll":57.1185224302366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.837"} +{"sensors":[{"euler":{"heading":29.370634534215526,"pitch":128.3699168347267,"roll":20.523827152707273},"location":"Left Knee"},{"euler":{"heading":16.38006697033276,"pitch":89.36071184203364,"roll":8.865536575986376},"location":"Left Ankle"},{"euler":{"heading":32.07264279135532,"pitch":-22.109886220246523,"roll":-24.646480204985615},"location":"Right Ankle"},{"euler":{"heading":86.21519984583401,"pitch":-161.91247072430093,"roll":54.351332373789255},"location":"Right Hip"},{"euler":{"heading":171.54079212456284,"pitch":-108.70884460909822,"roll":47.33018477364038},"location":"Right Knee"},{"euler":{"heading":37.18275796928781,"pitch":-134.31729831639439,"roll":57.309388452499924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.938"} +{"sensors":[{"euler":{"heading":29.59561546219545,"pitch":127.68668999374933,"roll":21.08636482087691},"location":"Left Knee"},{"euler":{"heading":16.979165503165824,"pitch":89.97443768714331,"roll":8.705913477628664},"location":"Left Ankle"},{"euler":{"heading":31.195650184203387,"pitch":-22.414534606153637,"roll":-25.048717820545548},"location":"Right Ankle"},{"euler":{"heading":87.11492127145225,"pitch":-161.3797739461035,"roll":53.241811229332185},"location":"Right Hip"},{"euler":{"heading":172.46100400537213,"pitch":-107.90419767568022,"roll":46.359417368332856},"location":"Right Knee"},{"euler":{"heading":32.00287217567293,"pitch":-134.96488040785945,"roll":57.70207474134966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.38"} +{"sensors":[{"euler":{"heading":30.26139951757,"pitch":126.87820520876444,"roll":21.191110218872172},"location":"Left Knee"},{"euler":{"heading":18.117745257873835,"pitch":90.57140006248738,"roll":9.179786506868515},"location":"Left Ankle"},{"euler":{"heading":33.039997181799095,"pitch":-23.5225464053817,"roll":-24.074998399072598},"location":"Right Ankle"},{"euler":{"heading":87.29869858223955,"pitch":-161.1296169046751,"roll":52.11892704470281},"location":"Right Hip"},{"euler":{"heading":171.24657566412944,"pitch":-107.0512412589301,"roll":47.54996118961062},"location":"Right Knee"},{"euler":{"heading":27.99345434763751,"pitch":-136.27024352582018,"roll":58.11685985384571},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.139"} +{"sensors":[{"euler":{"heading":31.36540169088749,"pitch":126.00988540053172,"roll":20.78648587870051},"location":"Left Knee"},{"euler":{"heading":19.371059728030723,"pitch":91.02239682410712,"roll":10.060425780546444},"location":"Left Ankle"},{"euler":{"heading":35.953239086349804,"pitch":-24.709463204985305,"roll":-22.403178047693935},"location":"Right Ankle"},{"euler":{"heading":86.47414479319517,"pitch":-161.21835733632733,"roll":51.5725364327597},"location":"Right Hip"},{"euler":{"heading":168.93234477352166,"pitch":-107.14743716776839,"roll":50.08980029811174},"location":"Right Knee"},{"euler":{"heading":25.04348463990004,"pitch":-137.94489461177147,"roll":58.67054779357866},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.239"} +{"sensors":[{"euler":{"heading":32.99468499358396,"pitch":125.12309421670852,"roll":19.742586328261766},"location":"Left Knee"},{"euler":{"heading":21.187998160012445,"pitch":91.43049255396792,"roll":11.7371998402755},"location":"Left Ankle"},{"euler":{"heading":38.2494187587934,"pitch":-25.80725586713189,"roll":-21.009295629257842},"location":"Right Ankle"},{"euler":{"heading":85.09745475255151,"pitch":-161.61970295300006,"roll":51.37538656630826},"location":"Right Hip"},{"euler":{"heading":166.76991620707994,"pitch":-107.56147436756484,"roll":52.29291248762147},"location":"Right Knee"},{"euler":{"heading":22.776685358589486,"pitch":-139.89425210034003,"roll":59.21912867223365},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.340"} +{"sensors":[{"euler":{"heading":35.791286056084026,"pitch":124.50496351137414,"roll":17.591090193579493},"location":"Left Knee"},{"euler":{"heading":23.406978199569686,"pitch":91.71653390264247,"roll":14.60405572889221},"location":"Left Ankle"},{"euler":{"heading":39.38636471157738,"pitch":-26.604425936381503,"roll":-20.4317165437917},"location":"Right Ankle"},{"euler":{"heading":84.41017521634433,"pitch":-161.96503467633295,"roll":51.34562325610194},"location":"Right Hip"},{"euler":{"heading":165.41549359439782,"pitch":-108.08475900161898,"roll":53.66814180918614},"location":"Right Knee"},{"euler":{"heading":20.439062667551635,"pitch":-140.24319389557098,"roll":59.62040091563847},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.441"} +{"sensors":[{"euler":{"heading":38.75890501796752,"pitch":123.85050751918101,"roll":15.418333271148319},"location":"Left Knee"},{"euler":{"heading":25.49736078091938,"pitch":91.74349859303545,"roll":17.34683486537988},"location":"Left Ankle"},{"euler":{"heading":40.228115200498465,"pitch":-27.254421573515554,"roll":-19.96853269999629},"location":"Right Ankle"},{"euler":{"heading":83.58583794798325,"pitch":-162.49749312849056,"roll":51.7170267892165},"location":"Right Hip"},{"euler":{"heading":164.734555988617,"pitch":-108.60582868667555,"roll":54.40720140086374},"location":"Right Knee"},{"euler":{"heading":17.324067623633667,"pitch":-138.3591788091435,"roll":59.58516655743982},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.541"} +{"sensors":[{"euler":{"heading":39.589500429198615,"pitch":123.96579820935018,"roll":14.65321182133149},"location":"Left Knee"},{"euler":{"heading":25.44915269690467,"pitch":91.16742219940737,"roll":17.89053706533158},"location":"Left Ankle"},{"euler":{"heading":40.5308945851418,"pitch":-27.444250815624898,"roll":-19.870455794858046},"location":"Right Ankle"},{"euler":{"heading":83.23191810544284,"pitch":-162.80688759085794,"roll":52.27307697228464},"location":"Right Hip"},{"euler":{"heading":164.3137470967161,"pitch":-109.16056596532484,"roll":54.677622395790124},"location":"Right Knee"},{"euler":{"heading":14.321669707506963,"pitch":-136.44629474399258,"roll":58.994424948227106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.642"} +{"sensors":[{"euler":{"heading":36.55971908700937,"pitch":125.23540217577603,"roll":15.738519469089145},"location":"Left Knee"},{"euler":{"heading":22.508369850251434,"pitch":90.16457511028754,"roll":15.736857743576328},"location":"Left Ankle"},{"euler":{"heading":40.31507601968407,"pitch":-27.24146818562376,"roll":-20.055192598339328},"location":"Right Ankle"},{"euler":{"heading":83.21561307593439,"pitch":-162.9917260071614,"roll":52.91892030803439},"location":"Right Hip"},{"euler":{"heading":164.4150873077872,"pitch":-109.44255752156594,"roll":54.446695004811886},"location":"Right Knee"},{"euler":{"heading":45.94181287254747,"pitch":-134.5905221661927,"roll":58.44204166562682},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.743"} +{"sensors":[{"euler":{"heading":32.325071687206886,"pitch":127.19279700072592,"roll":17.529149148303972},"location":"Left Knee"},{"euler":{"heading":18.851945469282743,"pitch":89.13227231218168,"roll":12.331446631552875},"location":"Left Ankle"},{"euler":{"heading":39.39520056130234,"pitch":-26.778545779184626,"roll":-20.88823078161153},"location":"Right Ankle"},{"euler":{"heading":83.61248876160336,"pitch":-163.14709106828988,"roll":53.622233999330106},"location":"Right Hip"},{"euler":{"heading":165.4849856272954,"pitch":-109.40045927185864,"roll":53.470789880478456},"location":"Right Knee"},{"euler":{"heading":38.17596507466074,"pitch":-133.61877141722525,"roll":58.04327402927858},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.843"} +{"sensors":[{"euler":{"heading":30.023027319578976,"pitch":128.28622972662896,"roll":19.048375089406054},"location":"Left Knee"},{"euler":{"heading":16.821209018191364,"pitch":88.95916661297768,"roll":10.046646207364672},"location":"Left Ankle"},{"euler":{"heading":37.49456317026145,"pitch":-26.258588600941554,"roll":-22.01658065296658},"location":"Right Ankle"},{"euler":{"heading":84.32389513469191,"pitch":-163.281731732478,"roll":54.11595764766037},"location":"Right Hip"},{"euler":{"heading":167.847344107554,"pitch":-108.81539731352802,"roll":51.45810920652632},"location":"Right Knee"},{"euler":{"heading":31.841078617595134,"pitch":-132.7513489976766,"roll":57.74189220945594},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.944"} +{"sensors":[{"euler":{"heading":29.083419819980715,"pitch":128.64544714173047,"roll":20.048530401135462},"location":"Left Knee"},{"euler":{"heading":15.943224838240372,"pitch":88.89765250187595,"roll":8.75802254389999},"location":"Left Ankle"},{"euler":{"heading":34.053660835606706,"pitch":-24.5990307840516,"roll":-23.566728709323353},"location":"Right Ankle"},{"euler":{"heading":85.62577611770952,"pitch":-162.68418249157384,"roll":54.00385695587878},"location":"Right Hip"},{"euler":{"heading":170.28104648909837,"pitch":-108.17302848349034,"roll":48.81048686500333},"location":"Right Knee"},{"euler":{"heading":26.73731481835022,"pitch":-132.1269633739333,"roll":57.7129369242824},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.44"} +{"sensors":[{"euler":{"heading":28.759968298201553,"pitch":128.4770334955169,"roll":20.828694556787315},"location":"Left Knee"},{"euler":{"heading":15.801027190936146,"pitch":89.07385691310097,"roll":7.918971025154792},"location":"Left Ankle"},{"euler":{"heading":31.62269876097778,"pitch":-23.561072269618116,"roll":-24.487849135287558},"location":"Right Ankle"},{"euler":{"heading":86.66202830531756,"pitch":-161.95917053926368,"roll":53.30194376370454},"location":"Right Hip"},{"euler":{"heading":171.63761142297818,"pitch":-107.38962447909599,"roll":46.9497970782257},"location":"Right Knee"},{"euler":{"heading":23.033983208645598,"pitch":-132.37647952831892,"roll":57.948329543776076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.145"} +{"sensors":[{"euler":{"heading":28.964805847993812,"pitch":127.95008580399178,"roll":21.30277866069906},"location":"Left Knee"},{"euler":{"heading":16.45154059617221,"pitch":89.38193258403903,"roll":7.783991517105698},"location":"Left Ankle"},{"euler":{"heading":31.64174364838277,"pitch":-23.775239156797426,"roll":-24.4652237548521},"location":"Right Ankle"},{"euler":{"heading":87.09433893010697,"pitch":-161.511211059161,"roll":52.30413624414718},"location":"Right Hip"},{"euler":{"heading":171.1252963267342,"pitch":-106.68074171949259,"roll":47.055642856838055},"location":"Right Knee"},{"euler":{"heading":20.35247248474457,"pitch":-133.29191616228837,"roll":58.37536153314565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.245"} +{"sensors":[{"euler":{"heading":29.715166756924116,"pitch":127.14032674360281,"roll":21.36910178619763},"location":"Left Knee"},{"euler":{"heading":17.453859563500426,"pitch":89.77366342565983,"roll":8.119640611220337},"location":"Left Ankle"},{"euler":{"heading":33.946281016334154,"pitch":-24.516001736886604,"roll":-22.99409555188448},"location":"Right Ankle"},{"euler":{"heading":86.75271340517388,"pitch":-161.42691030130715,"roll":51.44880754801754},"location":"Right Hip"},{"euler":{"heading":168.9341116142365,"pitch":-105.97983830085131,"roll":49.024191965352465},"location":"Right Knee"},{"euler":{"heading":18.489791662251125,"pitch":-134.6434590287295,"roll":58.92824075129856},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.346"} +{"sensors":[{"euler":{"heading":30.93598282646288,"pitch":126.22329141432816,"roll":19.383930107149336},"location":"Left Knee"},{"euler":{"heading":18.791799001474512,"pitch":90.19352928539332,"roll":9.017891873775328},"location":"Left Ankle"},{"euler":{"heading":37.27199813880789,"pitch":-25.41816633165263,"roll":-21.032705696367866},"location":"Right Ankle"},{"euler":{"heading":85.62875711630566,"pitch":-161.64789402763043,"roll":51.0196697695184},"location":"Right Hip"},{"euler":{"heading":166.05792597953203,"pitch":-106.68924778808017,"roll":51.94103674956717},"location":"Right Knee"},{"euler":{"heading":17.244060099304704,"pitch":-136.46691255540932,"roll":59.577160067546494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.447"} +{"sensors":[{"euler":{"heading":32.738202218791145,"pitch":125.31620000009411,"roll":18.390214258315538},"location":"Left Knee"},{"euler":{"heading":20.52939557401389,"pitch":90.48427582363153,"roll":10.799782197662957},"location":"Left Ankle"},{"euler":{"heading":39.513521765646914,"pitch":-26.08587989915314,"roll":-19.65028320095151},"location":"Right Ankle"},{"euler":{"heading":84.45876001547192,"pitch":-161.9132550780861,"roll":50.86916599364571},"location":"Right Hip"},{"euler":{"heading":163.667236480241,"pitch":-107.25983106171044,"roll":54.28909682773674},"location":"Right Knee"},{"euler":{"heading":16.444032839415403,"pitch":-138.7708940462042,"roll":60.16435098446989},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.548"} +{"sensors":[{"euler":{"heading":35.74180154629019,"pitch":124.66780950693618,"roll":16.159276644449843},"location":"Left Knee"},{"euler":{"heading":24.377823258428688,"pitch":90.94950557929762,"roll":14.05902055517619},"location":"Left Ankle"},{"euler":{"heading":40.53437171655857,"pitch":-26.333358808248295,"roll":-19.0949645294686},"location":"Right Ankle"},{"euler":{"heading":83.92288450956181,"pitch":-162.05824875735016,"roll":50.893502183538075},"location":"Right Hip"},{"euler":{"heading":161.91188299083052,"pitch":-107.79397356882767,"roll":55.8311577271021},"location":"Right Knee"},{"euler":{"heading":15.045807940669443,"pitch":-139.4228903402503,"roll":60.51138087491626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.648"} +{"sensors":[{"euler":{"heading":39.09888684333306,"pitch":123.8908472649026,"roll":13.84329141586457},"location":"Left Knee"},{"euler":{"heading":26.20310803947033,"pitch":91.06726970196934,"roll":17.257927038419005},"location":"Left Ankle"},{"euler":{"heading":41.025414698257535,"pitch":-26.444335460583584,"roll":-18.9075718073143},"location":"Right Ankle"},{"euler":{"heading":83.12144646610265,"pitch":-162.36780915288614,"roll":51.42087454324475},"location":"Right Hip"},{"euler":{"heading":160.8491558528585,"pitch":-108.94318026544069,"roll":56.60227290329392},"location":"Right Knee"},{"euler":{"heading":12.866459395615419,"pitch":-137.87255479331756,"roll":60.43300927097521},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.750"} +{"sensors":[{"euler":{"heading":40.819126395876815,"pitch":123.81799610358588,"roll":12.710753936409546},"location":"Left Knee"},{"euler":{"heading":26.324283161872252,"pitch":90.49606645260666,"roll":18.261929967842498},"location":"Left Ankle"},{"euler":{"heading":41.558276922593976,"pitch":-26.78256777245597,"roll":-18.75584072610299},"location":"Right Ankle"},{"euler":{"heading":83.05381532692697,"pitch":-162.55874302560176,"roll":52.08833049232888},"location":"Right Hip"},{"euler":{"heading":160.87673748513834,"pitch":-109.56689723107841,"roll":56.782794045293194},"location":"Right Knee"},{"euler":{"heading":44.72650702946214,"pitch":-136.08919510642798,"roll":59.76161668979248},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.851"} +{"sensors":[{"euler":{"heading":38.61885493366256,"pitch":124.84601150598883,"roll":13.505213129042755},"location":"Left Knee"},{"euler":{"heading":23.86107363399625,"pitch":89.7651677933319,"roll":16.69123391803603},"location":"Left Ankle"},{"euler":{"heading":41.5962483186146,"pitch":-26.87459468761478,"roll":-18.892027202823652},"location":"Right Ankle"},{"euler":{"heading":83.17085294517705,"pitch":-162.7374596361967,"roll":52.81120089880193},"location":"Right Hip"},{"euler":{"heading":161.20847729190845,"pitch":-109.95292394032849,"roll":56.5596981322321},"location":"Right Knee"},{"euler":{"heading":70.72429958942615,"pitch":-134.23766506567142,"roll":58.999512277302365},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.951"} +{"sensors":[{"euler":{"heading":34.65318309078623,"pitch":126.55507232210152,"roll":15.318036055650186},"location":"Left Knee"},{"euler":{"heading":20.08438930877384,"pitch":88.81842104607294,"roll":13.385287690829689},"location":"Left Ankle"},{"euler":{"heading":41.1457693386815,"pitch":-26.743836475211605,"roll":-19.383868024216007},"location":"Right Ankle"},{"euler":{"heading":83.49260490874352,"pitch":-163.0180819956192,"roll":53.542597313365654},"location":"Right Hip"},{"euler":{"heading":162.05085501488057,"pitch":-110.11198004503683,"roll":55.81680120677471},"location":"Right Knee"},{"euler":{"heading":58.22408049454598,"pitch":-132.91898013296847,"roll":58.446645062920744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.52"} +{"sensors":[{"euler":{"heading":31.947118314690304,"pitch":127.79834817264789,"roll":17.059484572409904},"location":"Left Knee"},{"euler":{"heading":17.283364385360635,"pitch":88.58599080971928,"roll":10.64946756833275},"location":"Left Ankle"},{"euler":{"heading":39.95646519034716,"pitch":-26.375813707382726,"roll":-20.441289211048517},"location":"Right Ankle"},{"euler":{"heading":84.01170329258494,"pitch":-163.43847878844983,"roll":54.323325853528665},"location":"Right Hip"},{"euler":{"heading":163.65617034757787,"pitch":-109.91107810804522,"roll":54.41329945572145},"location":"Right Knee"},{"euler":{"heading":48.648843910641006,"pitch":-132.1775783809646,"roll":58.11878322024349},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.152"} +{"sensors":[{"euler":{"heading":30.688589961545862,"pitch":128.23370182062007,"roll":18.30828601561324},"location":"Left Knee"},{"euler":{"heading":16.256238763810526,"pitch":88.69671709312001,"roll":9.238102186086525},"location":"Left Ankle"},{"euler":{"heading":37.353649965017226,"pitch":-25.650408773491094,"roll":-21.76673236263496},"location":"Right Ankle"},{"euler":{"heading":84.79940424683443,"pitch":-163.42649506602834,"roll":54.89304557689149},"location":"Right Hip"},{"euler":{"heading":166.2666778489917,"pitch":-109.28933418801122,"roll":52.067205019411446},"location":"Right Knee"},{"euler":{"heading":40.75514289444102,"pitch":-131.74451471770163,"roll":57.99452313084384},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.253"} +{"sensors":[{"euler":{"heading":30.24074846885159,"pitch":128.1341819540661,"roll":19.152920553055196},"location":"Left Knee"},{"euler":{"heading":15.819510346085943,"pitch":88.8147464703218,"roll":8.264203514488523},"location":"Left Ankle"},{"euler":{"heading":33.813429797105165,"pitch":-24.197336705814653,"roll":-23.435772140086996},"location":"Right Ankle"},{"euler":{"heading":86.03295838179187,"pitch":-162.80922991669243,"roll":54.67135261073632},"location":"Right Hip"},{"euler":{"heading":169.05814237599554,"pitch":-108.39974169057686,"roll":49.21895510325522},"location":"Right Knee"},{"euler":{"heading":34.71390597274503,"pitch":-132.09580965452588,"roll":58.167458038670134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.353"} +{"sensors":[{"euler":{"heading":30.046470265273207,"pitch":127.79442598687496,"roll":19.721014144459414},"location":"Left Knee"},{"euler":{"heading":16.02077651165762,"pitch":88.97505608083632,"roll":7.864516795521206},"location":"Left Ankle"},{"euler":{"heading":32.085926995449064,"pitch":-23.405675076045128,"roll":-24.38718572235144},"location":"Right Ankle"},{"euler":{"heading":86.94192092942137,"pitch":-162.14366652930437,"roll":53.87027210073708},"location":"Right Hip"},{"euler":{"heading":170.00015095631412,"pitch":-107.60071691767155,"roll":47.68801887982909},"location":"Right Knee"},{"euler":{"heading":29.9278710911561,"pitch":-133.15685114080557,"roll":58.44879398697204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.454"} +{"sensors":[{"euler":{"heading":30.39869194016352,"pitch":127.25512228224459,"roll":19.908075958027744},"location":"Left Knee"},{"euler":{"heading":16.661197637873155,"pitch":89.23902240462485,"roll":7.93091239338537},"location":"Left Ankle"},{"euler":{"heading":32.98417425535469,"pitch":-23.771366184473287,"roll":-23.82716763987512},"location":"Right Ankle"},{"euler":{"heading":86.96085093973426,"pitch":-161.8267895731269,"roll":52.88974608394412},"location":"Right Hip"},{"euler":{"heading":168.78573380593238,"pitch":-106.56854331753232,"roll":48.34789866761008},"location":"Right Knee"},{"euler":{"heading":26.044742807775314,"pitch":-134.59853105597912,"roll":58.78660218186961},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.554"} +{"sensors":[{"euler":{"heading":31.263785501985698,"pitch":126.49363564976572,"roll":19.696843843286338},"location":"Left Knee"},{"euler":{"heading":17.613635904808913,"pitch":89.56111325918556,"roll":8.430944879306217},"location":"Left Ankle"},{"euler":{"heading":35.657828415022955,"pitch":-24.560059641738853,"roll":-22.23837524636032},"location":"Right Ankle"},{"euler":{"heading":85.9597032079037,"pitch":-161.98595358442677,"roll":52.22246891005201},"location":"Right Hip"},{"euler":{"heading":166.19802792771839,"pitch":-106.3717732958553,"roll":50.746435651921466},"location":"Right Knee"},{"euler":{"heading":23.239795994508754,"pitch":-136.3965318144448,"roll":59.29441685777745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.655"} +{"sensors":[{"euler":{"heading":32.667724156639856,"pitch":125.62622614508606,"roll":18.93495563514277},"location":"Left Knee"},{"euler":{"heading":19.100982923774485,"pitch":89.9239089378175,"roll":9.626575266930315},"location":"Left Ankle"},{"euler":{"heading":38.233458513728195,"pitch":-25.416416078380564,"roll":-20.759099451946152},"location":"Right Ankle"},{"euler":{"heading":84.46814477806942,"pitch":-162.37968005174875,"roll":51.856478730191675},"location":"Right Hip"},{"euler":{"heading":163.7403346488985,"pitch":-107.13307961161533,"roll":53.24974921965583},"location":"Right Knee"},{"euler":{"heading":21.240373991239103,"pitch":-138.6537004991228,"roll":59.872831854728695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.755"} +{"sensors":[{"euler":{"heading":34.96471196362779,"pitch":124.91267259333665,"roll":17.222949072146214},"location":"Left Knee"},{"euler":{"heading":21.19278125761057,"pitch":90.05599855425933,"roll":12.141290544434556},"location":"Left Ankle"},{"euler":{"heading":39.39113240323502,"pitch":-25.61461683634778,"roll":-20.133976566845224},"location":"Right Ankle"},{"euler":{"heading":83.35387390345925,"pitch":-162.73595331958822,"roll":51.74527971969467},"location":"Right Hip"},{"euler":{"heading":161.60312661877552,"pitch":-107.91709164546401,"roll":54.9204045172586},"location":"Right Knee"},{"euler":{"heading":19.579468210166407,"pitch":-140.62481249731263,"roll":60.38433455498066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.856"} +{"sensors":[{"euler":{"heading":38.379372435810076,"pitch":124.1718708455481,"roll":14.776055548755613},"location":"Left Knee"},{"euler":{"heading":24.481049966844985,"pitch":90.97219437776347,"roll":15.819886326477576},"location":"Left Ankle"},{"euler":{"heading":39.98231606103805,"pitch":-25.455081228151425,"roll":-19.990435288665736},"location":"Right Ankle"},{"euler":{"heading":82.43556482178678,"pitch":-163.11184388923309,"roll":52.05488473240104},"location":"Right Hip"},{"euler":{"heading":159.9364173267572,"pitch":-109.07836797513673,"roll":55.93273301967832},"location":"Right Knee"},{"euler":{"heading":16.982896386625157,"pitch":-139.8935574958275,"roll":60.62720421872102},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.956"} +{"sensors":[{"euler":{"heading":41.19312862051637,"pitch":123.6382798815505,"roll":12.775953655290701},"location":"Left Knee"},{"euler":{"heading":26.620567182381563,"pitch":91.00456592352553,"roll":18.262705135916427},"location":"Left Ankle"},{"euler":{"heading":40.21667367360821,"pitch":-25.072909127305323,"roll":-20.16970435978354},"location":"Right Ankle"},{"euler":{"heading":82.13549772894586,"pitch":-163.30334520718827,"roll":52.60852274310237},"location":"Right Hip"},{"euler":{"heading":158.964107883577,"pitch":-110.1945763684169,"roll":56.3374673966926},"location":"Right Knee"},{"euler":{"heading":13.947194149628256,"pitch":-137.8347157778295,"roll":60.22271362420403},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.57"} +{"sensors":[{"euler":{"heading":41.07728890597928,"pitch":124.13047716658657,"roll":12.541617818548293},"location":"Left Knee"},{"euler":{"heading":25.53648980331287,"pitch":90.61768659489314,"roll":17.98801241018278},"location":"Left Ankle"},{"euler":{"heading":40.13508127991824,"pitch":-24.453606967061326,"roll":-20.540006241314035},"location":"Right Ankle"},{"euler":{"heading":82.22274034825423,"pitch":-163.27448951802376,"roll":53.29380051755645},"location":"Right Hip"},{"euler":{"heading":158.4949738936759,"pitch":-111.04408221955265,"roll":56.3232017597838},"location":"Right Knee"},{"euler":{"heading":45.51628654265423,"pitch":-135.7457995279251,"roll":59.4345833246761},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.158"} +{"sensors":[{"euler":{"heading":37.76602805015292,"pitch":125.45575975153417,"roll":13.976423371640342},"location":"Left Knee"},{"euler":{"heading":22.110202075265388,"pitch":89.78009390710059,"roll":15.349436143991797},"location":"Left Ankle"},{"euler":{"heading":39.62237544541271,"pitch":-23.697020724919653,"roll":-21.106950182565647},"location":"Right Ankle"},{"euler":{"heading":82.53198681450465,"pitch":-163.28405056977917,"roll":54.06252398776813},"location":"Right Hip"},{"euler":{"heading":158.7291594884069,"pitch":-111.5630759727061,"roll":55.79899668487062},"location":"Right Knee"},{"euler":{"heading":37.351919971052,"pitch":-133.97449742576558,"roll":58.7927675498743},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.258"} +{"sensors":[{"euler":{"heading":34.09757675380756,"pitch":126.95224031516119,"roll":15.780094306427722},"location":"Left Knee"},{"euler":{"heading":18.674558820969175,"pitch":89.18270046420766,"roll":12.165183017721011},"location":"Left Ankle"},{"euler":{"heading":38.39995593944851,"pitch":-22.85782669182186,"roll":-22.125314773621845},"location":"Right Ankle"},{"euler":{"heading":83.14191594041003,"pitch":-163.35215520346517,"roll":54.82946638933687},"location":"Right Hip"},{"euler":{"heading":160.0921359991557,"pitch":-111.59274772146378,"roll":54.55771189340284},"location":"Right Knee"},{"euler":{"heading":31.213913848563596,"pitch":-132.91271329158235,"roll":58.39036367926969},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.359"} +{"sensors":[{"euler":{"heading":32.413711134950056,"pitch":127.5096970604201,"roll":17.156542956478276},"location":"Left Knee"},{"euler":{"heading":17.21698801818366,"pitch":89.11181332819604,"roll":10.425330785297483},"location":"Left Ankle"},{"euler":{"heading":35.84136958697117,"pitch":-22.12224215613541,"roll":-23.373799431694742},"location":"Right Ankle"},{"euler":{"heading":84.08127800607119,"pitch":-163.4910703882885,"roll":55.3569848413471},"location":"Right Hip"},{"euler":{"heading":163.10469280802573,"pitch":-110.9121053402656,"roll":52.2751692343292},"location":"Right Knee"},{"euler":{"heading":26.342699143527234,"pitch":-132.2194701333626,"roll":58.204597674156226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.460"} +{"sensors":[{"euler":{"heading":31.706783568402848,"pitch":127.53850116642067,"roll":18.057229193943286},"location":"Left Knee"},{"euler":{"heading":16.4337568642343,"pitch":89.16063017030872,"roll":9.166083164760849},"location":"Left Ankle"},{"euler":{"heading":32.49788727762997,"pitch":-20.535107360401682,"roll":-24.937529540584137},"location":"Right Ankle"},{"euler":{"heading":85.35577778653598,"pitch":-162.86171720883797,"roll":55.25168299468921},"location":"Right Hip"},{"euler":{"heading":166.05888625501674,"pitch":-110.27837308960024,"roll":49.413082046079126},"location":"Right Knee"},{"euler":{"heading":22.473060020549212,"pitch":-131.88943705764055,"roll":58.28620556596214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.561"} +{"sensors":[{"euler":{"heading":31.472779891852607,"pitch":127.10083128946951,"roll":18.753331570882096},"location":"Left Knee"},{"euler":{"heading":16.410760044402515,"pitch":89.40694377331606,"roll":8.466574139994655},"location":"Left Ankle"},{"euler":{"heading":30.6758249917037,"pitch":-19.81833086068903,"roll":-25.769869797797785},"location":"Right Ankle"},{"euler":{"heading":86.35771966017938,"pitch":-162.17332504901017,"roll":54.460796986054284},"location":"Right Hip"},{"euler":{"heading":167.62759762986363,"pitch":-109.44927634202976,"roll":47.655593745549254},"location":"Right Knee"},{"euler":{"heading":19.708884655190968,"pitch":-132.3339618054051,"roll":58.59191751073566},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.663"} +{"sensors":[{"euler":{"heading":31.79841970052333,"pitch":126.365912190886,"roll":19.097842497612216},"location":"Left Knee"},{"euler":{"heading":16.81999242233983,"pitch":89.808186042755,"roll":8.220050852141705},"location":"Left Ankle"},{"euler":{"heading":31.395576819662214,"pitch":-20.430142885718947,"roll":-25.500440841784993},"location":"Right Ankle"},{"euler":{"heading":86.8154448060109,"pitch":-161.75255659886406,"roll":53.32897241365019},"location":"Right Hip"},{"euler":{"heading":167.39005803716827,"pitch":-108.65743020451661,"roll":47.72997251699369},"location":"Right Knee"},{"euler":{"heading":17.689338500289203,"pitch":-133.39613031740794,"roll":58.94583762971919},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.764"} +{"sensors":[{"euler":{"heading":32.65363867458983,"pitch":125.42741806354039,"roll":18.987465008065474},"location":"Left Knee"},{"euler":{"heading":17.58907890253605,"pitch":90.29016632508713,"roll":8.448821452179565},"location":"Left Ankle"},{"euler":{"heading":34.00631342150304,"pitch":-21.4831621799617,"roll":-24.043798539040626},"location":"Right Ankle"},{"euler":{"heading":86.32221474204967,"pitch":-161.7523134025966,"roll":52.42966402547151},"location":"Right Hip"},{"euler":{"heading":165.48331228283413,"pitch":-108.02414267577458,"roll":49.658157299695176},"location":"Right Knee"},{"euler":{"heading":16.249767390790407,"pitch":-134.83883005007067,"roll":59.420669123205236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.864"} +{"sensors":[{"euler":{"heading":33.97220302848153,"pitch":124.48307319485768,"roll":18.3049470215178},"location":"Left Knee"},{"euler":{"heading":18.801446218864083,"pitch":90.76197011640981,"roll":9.315759412923468},"location":"Left Ankle"},{"euler":{"heading":37.041723148240635,"pitch":-22.471684941743757,"roll":-22.285766457563835},"location":"Right Ankle"},{"euler":{"heading":85.01467174612114,"pitch":-162.11475710537528,"roll":52.08558157978678},"location":"Right Hip"},{"euler":{"heading":162.75679064940937,"pitch":-108.7055564823027,"roll":52.39579002848162},"location":"Right Knee"},{"euler":{"heading":15.302915137329137,"pitch":-136.7863863065485,"roll":59.9573478451424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.964"} +{"sensors":[{"euler":{"heading":36.1457786827238,"pitch":123.56910598189074,"roll":16.694487132097294},"location":"Left Knee"},{"euler":{"heading":20.69187270327179,"pitch":90.96891722683517,"roll":11.449814798281503},"location":"Left Ankle"},{"euler":{"heading":38.861238860482985,"pitch":-23.16403409375168,"roll":-21.206263496264892},"location":"Right Ankle"},{"euler":{"heading":84.09863496862006,"pitch":-162.45461399445426,"roll":51.90502671761212},"location":"Right Hip"},{"euler":{"heading":160.6670050994572,"pitch":-109.3340414689004,"roll":54.36765450957396},"location":"Right Knee"},{"euler":{"heading":14.783281775061646,"pitch":-138.64380634806432,"roll":60.54404527512678},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.65"} +{"sensors":[{"euler":{"heading":39.45344411152447,"pitch":122.72424390587287,"roll":14.28597289427272},"location":"Left Knee"},{"euler":{"heading":24.094687820621083,"pitch":91.87556073194595,"roll":15.057445081387737},"location":"Left Ankle"},{"euler":{"heading":39.77436149717831,"pitch":-23.41596920643039,"roll":-20.71696339503768},"location":"Right Ankle"},{"euler":{"heading":83.50910836240988,"pitch":-162.68485302437514,"roll":52.05080311902421},"location":"Right Hip"},{"euler":{"heading":159.22937512630722,"pitch":-110.11082763700195,"roll":55.503907004824356},"location":"Right Knee"},{"euler":{"heading":12.960659254610738,"pitch":-137.82751025128255,"roll":60.62903508611631},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.166"} +{"sensors":[{"euler":{"heading":42.09041325732389,"pitch":122.30457711106403,"roll":12.409779074178232},"location":"Left Knee"},{"euler":{"heading":25.95344112963729,"pitch":91.75065593227444,"roll":17.37065059558281},"location":"Left Ankle"},{"euler":{"heading":40.20692400987706,"pitch":-23.370454860502452,"roll":-20.624981077534454},"location":"Right Ankle"},{"euler":{"heading":83.30583407998891,"pitch":-162.74455789395773,"roll":52.551321624269995},"location":"Right Hip"},{"euler":{"heading":158.3316747341526,"pitch":-110.94451884918571,"roll":56.062394267883754},"location":"Right Knee"},{"euler":{"heading":10.641900167656067,"pitch":-136.04249011531607,"roll":60.02817517891291},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.267"} +{"sensors":[{"euler":{"heading":41.496883281683445,"pitch":122.92958807570042,"roll":12.424306640330595},"location":"Left Knee"},{"euler":{"heading":24.663255801324052,"pitch":91.09660969820705,"roll":16.83598664624329},"location":"Left Ankle"},{"euler":{"heading":40.28167626411848,"pitch":-23.12118429636469,"roll":-20.78550618336111},"location":"Right Ankle"},{"euler":{"heading":83.4901664695285,"pitch":-162.65589595952116,"roll":53.1588063439638},"location":"Right Hip"},{"euler":{"heading":157.95335709178772,"pitch":-111.53838194403274,"roll":56.18725578573197},"location":"Right Knee"},{"euler":{"heading":42.809915443446215,"pitch":-134.18945757557148,"roll":59.163425411841445},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.368"} +{"sensors":[{"euler":{"heading":38.18688046539637,"pitch":124.25614429687384,"roll":14.036740023548989},"location":"Left Knee"},{"euler":{"heading":21.002808725888976,"pitch":90.57017794497783,"roll":13.950278283560474},"location":"Left Ankle"},{"euler":{"heading":39.8375321801959,"pitch":-22.645922655012747,"roll":-21.228026732185455},"location":"Right Ankle"},{"euler":{"heading":83.98592547072818,"pitch":-162.52216021607026,"roll":53.77984781857663},"location":"Right Hip"},{"euler":{"heading":158.35108262695334,"pitch":-111.82010563051898,"roll":55.68787317623951},"location":"Right Knee"},{"euler":{"heading":35.26674304124211,"pitch":-132.7683428393837,"roll":58.44633328274448},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.468"} +{"sensors":[{"euler":{"heading":34.995083860313066,"pitch":125.76566795742664,"roll":15.834673341529916},"location":"Left Knee"},{"euler":{"heading":17.66675612746734,"pitch":90.29001812276667,"roll":10.875338709097308},"location":"Left Ankle"},{"euler":{"heading":38.683141575906305,"pitch":-21.984003242902954,"roll":-22.175420849673554},"location":"Right Ankle"},{"euler":{"heading":84.67128185725845,"pitch":-162.4784350738827,"roll":54.442883000971},"location":"Right Hip"},{"euler":{"heading":159.66960623345545,"pitch":-111.70642130066696,"roll":54.46310430748286},"location":"Right Knee"},{"euler":{"heading":29.54819041124011,"pitch":-131.98181737194543,"roll":57.90447002369404},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.568"} +{"sensors":[{"euler":{"heading":33.29722166321569,"pitch":126.37059892177368,"roll":17.29510977947426},"location":"Left Knee"},{"euler":{"heading":16.171823892377304,"pitch":90.45268001541288,"roll":8.966862742347494},"location":"Left Ankle"},{"euler":{"heading":36.16242129088348,"pitch":-21.45639255470157,"roll":-23.395357940678558},"location":"Right Ankle"},{"euler":{"heading":85.72591145007436,"pitch":-162.3675255909546,"roll":54.82287063131367},"location":"Right Hip"},{"euler":{"heading":162.80034305112798,"pitch":-110.95551265288393,"roll":52.19550649526114},"location":"Right Knee"},{"euler":{"heading":24.984751921580163,"pitch":-131.3652350001991,"roll":57.59845600120226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.669"} +{"sensors":[{"euler":{"heading":32.69179455854859,"pitch":126.35912695874998,"roll":18.23017731970005},"location":"Left Knee"},{"euler":{"heading":15.4233996223553,"pitch":90.55230624722698,"roll":7.8166252424794616},"location":"Left Ankle"},{"euler":{"heading":32.962904521022544,"pitch":-20.675760103259844,"roll":-24.653826609295667},"location":"Right Ankle"},{"euler":{"heading":87.51690899702007,"pitch":-161.56562006438884,"roll":54.54245466752492},"location":"Right Hip"},{"euler":{"heading":166.0237160812114,"pitch":-110.13334674867097,"roll":49.40639560270513},"location":"Right Knee"},{"euler":{"heading":21.408736780665215,"pitch":-131.1521328206051,"roll":57.55936384365376},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.770"} +{"sensors":[{"euler":{"heading":32.45171973487982,"pitch":125.98013719267034,"roll":18.933609250164086},"location":"Left Knee"},{"euler":{"heading":15.2921605656981,"pitch":90.76136169397897,"roll":7.084959991446861},"location":"Left Ankle"},{"euler":{"heading":31.30628352243091,"pitch":-20.41528332459683,"roll":-25.459646317101967},"location":"Right Ankle"},{"euler":{"heading":88.72178229517948,"pitch":-160.78054266223415,"roll":53.73579964144624},"location":"Right Hip"},{"euler":{"heading":167.43827702417002,"pitch":-109.27642846710239,"roll":47.99437119172981},"location":"Right Knee"},{"euler":{"heading":18.8314726422313,"pitch":-131.63706703827123,"roll":57.75585732184978},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.870"} +{"sensors":[{"euler":{"heading":32.70699011107057,"pitch":125.33398810973004,"roll":19.28475250721225},"location":"Left Knee"},{"euler":{"heading":15.505748781230295,"pitch":90.98025729578715,"roll":6.7498862596092115},"location":"Left Ankle"},{"euler":{"heading":32.060428266008664,"pitch":-21.172450752267796,"roll":-25.19594611499128},"location":"Right Ankle"},{"euler":{"heading":89.16730824086878,"pitch":-160.3257939145029,"roll":52.678885692501545},"location":"Right Hip"},{"euler":{"heading":166.87832407478805,"pitch":-108.44751670159529,"roll":48.56565616351234},"location":"Right Knee"},{"euler":{"heading":17.077930040452767,"pitch":-132.771472918244,"roll":58.1239092172093},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.971"} +{"sensors":[{"euler":{"heading":33.462973517384874,"pitch":124.52932752582564,"roll":19.162540525209707},"location":"Left Knee"},{"euler":{"heading":16.102751419873936,"pitch":91.24967416203259,"roll":6.868803231620641},"location":"Left Ankle"},{"euler":{"heading":34.82417720965031,"pitch":-22.45806875741287,"roll":-23.803940695113894},"location":"Right Ankle"},{"euler":{"heading":88.69381602328325,"pitch":-160.34831056241623,"roll":51.8057449072078},"location":"Right Hip"},{"euler":{"heading":165.07619568909328,"pitch":-108.1968609434598,"roll":50.69377606283927},"location":"Right Knee"},{"euler":{"heading":15.87399827233541,"pitch":-134.43411644309035,"roll":58.57585635720655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.71"} +{"sensors":[{"euler":{"heading":34.706229204505185,"pitch":123.62879629610433,"roll":18.504985647117362},"location":"Left Knee"},{"euler":{"heading":17.26934159682721,"pitch":91.64209546048039,"roll":7.63039207450924},"location":"Left Ankle"},{"euler":{"heading":37.580592356203574,"pitch":-23.633283065378638,"roll":-22.146014071427786},"location":"Right Ankle"},{"euler":{"heading":87.20029389519885,"pitch":-160.7908021572067,"roll":51.437778412239126},"location":"Right Hip"},{"euler":{"heading":162.72665471628721,"pitch":-108.9629151678469,"roll":53.23182540799259},"location":"Right Knee"},{"euler":{"heading":15.21521217597715,"pitch":-136.580694355682,"roll":59.163171289474306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.173"} +{"sensors":[{"euler":{"heading":36.871649973329355,"pitch":122.78420149122765,"roll":16.82793463805896},"location":"Left Knee"},{"euler":{"heading":19.20552011628276,"pitch":91.69397702474565,"roll":9.900986665935811},"location":"Left Ankle"},{"euler":{"heading":39.15977699593147,"pitch":-24.399439822834115,"roll":-21.157094044058166},"location":"Right Ankle"},{"euler":{"heading":86.20926660669704,"pitch":-161.16742054307613,"roll":51.21777554623519},"location":"Right Hip"},{"euler":{"heading":161.0347201334969,"pitch":-109.329106624632,"roll":54.89824039915799},"location":"Right Knee"},{"euler":{"heading":14.81848622339949,"pitch":-138.33282936788544,"roll":59.78974285660931},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.274"} +{"sensors":[{"euler":{"heading":39.905099347816645,"pitch":122.0675111622495,"roll":14.49590583099158},"location":"Left Knee"},{"euler":{"heading":21.456735425258415,"pitch":91.87766543459384,"roll":13.138707341054758},"location":"Left Ankle"},{"euler":{"heading":39.971241735145924,"pitch":-25.021372287038556,"roll":-20.648689952642425},"location":"Right Ankle"},{"euler":{"heading":85.33241616237174,"pitch":-161.62117397921867,"roll":51.387309508337054},"location":"Right Hip"},{"euler":{"heading":160.1130999412874,"pitch":-109.88638583734812,"roll":55.77593518624714},"location":"Right Knee"},{"euler":{"heading":12.947867465062531,"pitch":-137.63529454642764,"roll":59.95243093392727},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.375"} +{"sensors":[{"euler":{"heading":42.097564306046166,"pitch":121.93029240049606,"roll":12.902952845459607},"location":"Left Knee"},{"euler":{"heading":22.800622218942856,"pitch":91.72877919475404,"roll":14.790198950578729},"location":"Left Ankle"},{"euler":{"heading":40.314621564892875,"pitch":-25.358221784428686,"roll":-20.456186603800774},"location":"Right Ankle"},{"euler":{"heading":84.92955328113409,"pitch":-161.87124084932478,"roll":51.84392725430965},"location":"Right Hip"},{"euler":{"heading":159.72708740803242,"pitch":-110.41443513893084,"roll":56.11235063820608},"location":"Right Knee"},{"euler":{"heading":11.000035337000982,"pitch":-136.0469181430858,"roll":59.57051094211244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.475"} +{"sensors":[{"euler":{"heading":40.9141530978551,"pitch":122.72170393673292,"roll":13.149996753394175},"location":"Left Knee"},{"euler":{"heading":21.344512978510984,"pitch":91.0411421378966,"roll":13.888633577426045},"location":"Left Ankle"},{"euler":{"heading":40.28662459770832,"pitch":-25.318200657512776,"roll":-20.6446588860173},"location":"Right Ankle"},{"euler":{"heading":84.96235335939235,"pitch":-161.96672336021194,"roll":52.43546850152378},"location":"Right Hip"},{"euler":{"heading":159.61316122697005,"pitch":-110.80901948517693,"roll":56.07193675439676},"location":"Right Knee"},{"euler":{"heading":9.262465136886817,"pitch":-134.31831584763404,"roll":58.95738221667108},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.576"} +{"sensors":[{"euler":{"heading":37.32924194000779,"pitch":124.28801150246636,"roll":14.81825038132009},"location":"Left Knee"},{"euler":{"heading":18.118957117050368,"pitch":90.31190096519906,"roll":10.986026564275816},"location":"Left Ankle"},{"euler":{"heading":39.71078710261773,"pitch":-24.91932277215182,"roll":-21.25515552121683},"location":"Right Ankle"},{"euler":{"heading":85.12000679532653,"pitch":-162.1601386419203,"roll":53.119372124335186},"location":"Right Hip"},{"euler":{"heading":160.0371203576818,"pitch":-110.97581918232979,"roll":55.40516463006357},"location":"Right Knee"},{"euler":{"heading":8.047830323298655,"pitch":-133.0811386299391,"roll":58.48581162012236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.677"} +{"sensors":[{"euler":{"heading":34.36419406474446,"pitch":125.54480087739587,"roll":16.494280126511086},"location":"Left Knee"},{"euler":{"heading":15.54327388760642,"pitch":90.05036441291337,"roll":8.389256354884752},"location":"Left Ankle"},{"euler":{"heading":38.23453500278822,"pitch":-24.255177425725027,"roll":-22.330765782477304},"location":"Right Ankle"},{"euler":{"heading":85.61770232897172,"pitch":-162.3886630786574,"roll":53.80956315986933},"location":"Right Hip"},{"euler":{"heading":161.45441300264204,"pitch":-110.7819242291556,"roll":54.064601006744105},"location":"Right Knee"},{"euler":{"heading":7.5705304289540996,"pitch":-132.38376463979654,"roll":58.19584121511035},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.778"} +{"sensors":[{"euler":{"heading":32.9055012483595,"pitch":125.96860134630556,"roll":17.80279190615234},"location":"Left Knee"},{"euler":{"heading":14.581751646277114,"pitch":90.11097188592089,"roll":6.919409237288198},"location":"Left Ankle"},{"euler":{"heading":35.325423416976044,"pitch":-23.24398262754906,"roll":-23.660777158959437},"location":"Right Ankle"},{"euler":{"heading":86.62569095780862,"pitch":-162.19116822779793,"roll":54.02981890861902},"location":"Right Hip"},{"euler":{"heading":164.27957680551998,"pitch":-109.94059906446546,"roll":51.61493440784953},"location":"Right Knee"},{"euler":{"heading":7.132155336245937,"pitch":-131.93703283237366,"roll":58.0404697594685},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.879"} +{"sensors":[{"euler":{"heading":32.14513262139458,"pitch":125.85268198832266,"roll":18.80252706853339},"location":"Left Knee"},{"euler":{"heading":14.299809434157812,"pitch":90.28472023025326,"roll":5.957990284707979},"location":"Left Ankle"},{"euler":{"heading":32.200282577741035,"pitch":-21.776064046683405,"roll":-24.87021661465445},"location":"Right Ankle"},{"euler":{"heading":87.71262448062704,"pitch":-161.48927298836765,"roll":53.56919370027065},"location":"Right Hip"},{"euler":{"heading":166.52147414746761,"pitch":-109.2922657352623,"roll":49.06535492612969},"location":"Right Knee"},{"euler":{"heading":7.106151516456449,"pitch":-132.17488957658892,"roll":58.18525276733885},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.979"} +{"sensors":[{"euler":{"heading":31.926824539227017,"pitch":125.46241468430547,"roll":19.4098971204357},"location":"Left Knee"},{"euler":{"heading":14.574306607062736,"pitch":90.44194077688815,"roll":5.545814921967515},"location":"Left Ankle"},{"euler":{"heading":31.10396635019641,"pitch":-21.482264632735564,"roll":-25.536546087619737},"location":"Right Ankle"},{"euler":{"heading":88.6263856914065,"pitch":-160.86603609406762,"roll":52.59947181995982},"location":"Right Hip"},{"euler":{"heading":167.30481779097042,"pitch":-108.45590214323396,"roll":47.87602182684807},"location":"Right Knee"},{"euler":{"heading":7.506976458492261,"pitch":-133.29380697530885,"roll":58.52434906969744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.80"} +{"sensors":[{"euler":{"heading":32.271261191043685,"pitch":124.85362329933024,"roll":19.578991455652353},"location":"Left Knee"},{"euler":{"heading":15.15578304956355,"pitch":90.60204165416177,"roll":5.535511473466897},"location":"Left Ankle"},{"euler":{"heading":32.37634110403485,"pitch":-22.518435234613726,"roll":-24.837468651962574},"location":"Right Ankle"},{"euler":{"heading":88.75031507145664,"pitch":-160.65880301810515,"roll":51.51985419865701},"location":"Right Hip"},{"euler":{"heading":166.48961834224292,"pitch":-107.61586326591201,"roll":48.64881461667547},"location":"Right Knee"},{"euler":{"heading":8.084874403041315,"pitch":-134.96621658996614,"roll":58.94414970759536},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.181"} +{"sensors":[{"euler":{"heading":33.18348815309301,"pitch":124.10654799578,"roll":19.226649557446603},"location":"Left Knee"},{"euler":{"heading":16.08968401202635,"pitch":90.77069417847012,"roll":6.031539287679876},"location":"Left Ankle"},{"euler":{"heading":35.1720259104306,"pitch":-23.836539876728043,"roll":-23.152571453504212},"location":"Right Ankle"},{"euler":{"heading":88.0670077060933,"pitch":-160.7388218153714,"roll":50.86398173099797},"location":"Right Hip"},{"euler":{"heading":164.3120257884586,"pitch":-107.91994308581657,"roll":51.006836379565165},"location":"Right Knee"},{"euler":{"heading":8.825595451348097,"pitch":-137.03839728711154,"roll":59.47859484077454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.282"} +{"sensors":[{"euler":{"heading":34.608183661458746,"pitch":123.38297571120133,"roll":18.24194970100779},"location":"Left Knee"},{"euler":{"heading":17.6569776283263,"pitch":90.94113956743303,"roll":7.395959868755003},"location":"Left Ankle"},{"euler":{"heading":37.621652879592006,"pitch":-24.827119458418068,"roll":-21.77658266016293},"location":"Right Ankle"},{"euler":{"heading":86.3897985491244,"pitch":-161.2571269025375,"roll":50.674779999032054},"location":"Right Hip"},{"euler":{"heading":161.9463752388058,"pitch":-108.92042486661964,"roll":53.18811396723676},"location":"Right Knee"},{"euler":{"heading":9.592620341800162,"pitch":-139.46637556609323,"roll":60.003818075724446},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.387"} +{"sensors":[{"euler":{"heading":37.17187007775287,"pitch":122.84713933620029,"roll":16.203474970285725},"location":"Left Knee"},{"euler":{"heading":20.075829684089356,"pitch":91.0834807368237,"roll":10.330948028776188},"location":"Left Ankle"},{"euler":{"heading":38.73560862060333,"pitch":-25.23000970195991,"roll":-21.328155914942997},"location":"Right Ankle"},{"euler":{"heading":85.52779798046636,"pitch":-161.5537143376538,"roll":50.59275568140568},"location":"Right Hip"},{"euler":{"heading":160.16990646062445,"pitch":-109.78411874272594,"roll":54.53764039413617},"location":"Right Knee"},{"euler":{"heading":9.857995718597582,"pitch":-140.63485438190816,"roll":60.47313418380831},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.487"} +{"sensors":[{"euler":{"heading":40.52547362139532,"pitch":122.04122774290406,"roll":13.77032453456165},"location":"Left Knee"},{"euler":{"heading":22.59146078923972,"pitch":91.57494547860279,"roll":13.700182583878915},"location":"Left Ankle"},{"euler":{"heading":39.43368328916814,"pitch":-25.451887659562598,"roll":-21.10669026519422},"location":"Right Ankle"},{"euler":{"heading":84.5603993217334,"pitch":-161.99450283722177,"roll":50.928760146599785},"location":"Right Hip"},{"euler":{"heading":159.10772607015917,"pitch":-110.71428649684152,"roll":55.229660846504885},"location":"Right Knee"},{"euler":{"heading":8.898113877610571,"pitch":-139.08813700254487,"roll":60.60054125256619},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.588"} +{"sensors":[{"euler":{"heading":42.46878400774564,"pitch":121.93623572748142,"roll":12.442587564805573},"location":"Left Knee"},{"euler":{"heading":23.717843491282437,"pitch":91.46080075857944,"roll":15.209084290390523},"location":"Left Ankle"},{"euler":{"heading":39.77339906737041,"pitch":-25.432683111699493,"roll":-21.167885053521772},"location":"Right Ankle"},{"euler":{"heading":84.3271532740774,"pitch":-162.1020412916212,"roll":51.52412228680068},"location":"Right Hip"},{"euler":{"heading":158.59473238498123,"pitch":-111.46084719395303,"roll":55.43968137370895},"location":"Right Knee"},{"euler":{"heading":7.600867219917173,"pitch":-137.1831998452281,"roll":60.091571433405164},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.689"} +{"sensors":[{"euler":{"heading":40.86138892640545,"pitch":122.91733174914755,"roll":12.995017219565591},"location":"Left Knee"},{"euler":{"heading":21.774486141971487,"pitch":90.79270982193015,"roll":14.029860177041556},"location":"Left Ankle"},{"euler":{"heading":39.63538644156742,"pitch":-25.20721962813853,"roll":-21.467016304939083},"location":"Right Ankle"},{"euler":{"heading":84.49289012262992,"pitch":-162.13395177508073,"roll":52.181756802335215},"location":"Right Hip"},{"euler":{"heading":158.67409955669976,"pitch":-111.86885251995639,"roll":55.195716258150554},"location":"Right Knee"},{"euler":{"heading":6.35437853838039,"pitch":-135.25138391954877,"roll":59.44671279225647},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.790"} +{"sensors":[{"euler":{"heading":37.26225746361163,"pitch":124.56610046408518,"roll":14.66017734068444},"location":"Left Knee"},{"euler":{"heading":18.23915167595235,"pitch":89.83739783372654,"roll":10.983022226910267},"location":"Left Ankle"},{"euler":{"heading":38.98730416833513,"pitch":-24.723773882564725,"roll":-22.106301792049237},"location":"Right Ankle"},{"euler":{"heading":84.81884511699205,"pitch":-162.2520063906403,"roll":52.90168534598201},"location":"Right Hip"},{"euler":{"heading":159.44063160968872,"pitch":-111.99428875860478,"roll":54.36259161997567},"location":"Right Knee"},{"euler":{"heading":5.654801580212739,"pitch":-133.87788621333166,"roll":59.005883661989095},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.891"} +{"sensors":[{"euler":{"heading":34.660120398469964,"pitch":125.78454603299272,"roll":16.285845387675764},"location":"Left Knee"},{"euler":{"heading":15.540618831447127,"pitch":89.54370935569523,"roll":8.356811266760273},"location":"Left Ankle"},{"euler":{"heading":37.523241814618025,"pitch":-23.971214571782646,"roll":-23.178235829812248},"location":"Right Ankle"},{"euler":{"heading":85.2640959387517,"pitch":-162.58475275979097,"roll":53.66609158793098},"location":"Right Hip"},{"euler":{"heading":161.13842258892095,"pitch":-111.72134788932591,"roll":52.82393729172738},"location":"Right Knee"},{"euler":{"heading":5.640847648206386,"pitch":-133.0333779800077,"roll":58.76156636654693},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.991"} +{"sensors":[{"euler":{"heading":33.47479732619819,"pitch":126.2093219931761,"roll":17.42987996926336},"location":"Left Knee"},{"euler":{"heading":14.543905843456612,"pitch":89.57522335238494,"roll":6.997066022859018},"location":"Left Ankle"},{"euler":{"heading":34.85003286928198,"pitch":-23.02864887129401,"roll":-24.45735822228402},"location":"Right Ankle"},{"euler":{"heading":86.09834612711525,"pitch":-162.43994858479343,"roll":53.98322936549252},"location":"Right Hip"},{"euler":{"heading":164.1338050450371,"pitch":-110.92145688997513,"roll":50.278257657479756},"location":"Right Knee"},{"euler":{"heading":5.516461339091182,"pitch":-132.4772892932987,"roll":58.69506773297555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.92"} +{"sensors":[{"euler":{"heading":33.110677467950154,"pitch":126.05266817957262,"roll":18.191604199872643},"location":"Left Knee"},{"euler":{"heading":14.2628760245568,"pitch":89.79993473416678,"roll":6.176892665192777},"location":"Left Ankle"},{"euler":{"heading":31.680236549257124,"pitch":-21.80713558687486,"roll":-25.75749157993739},"location":"Right Ankle"},{"euler":{"heading":87.12625711152477,"pitch":-161.8986926696374,"roll":53.56865313716177},"location":"Right Hip"},{"euler":{"heading":167.02042838215806,"pitch":-110.16198361378441,"roll":47.516946912814255},"location":"Right Knee"},{"euler":{"heading":5.7713324225592695,"pitch":-132.6102464152138,"roll":58.87270708166519},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.193"} +{"sensors":[{"euler":{"heading":33.22870805968935,"pitch":125.50663512938172,"roll":18.66683839804252},"location":"Left Knee"},{"euler":{"heading":14.597573340265262,"pitch":90.15190315387234,"roll":5.880636305924575},"location":"Left Ankle"},{"euler":{"heading":30.80300469065867,"pitch":-21.611450724686527,"roll":-26.315637860568856},"location":"Right Ankle"},{"euler":{"heading":88.00358134762293,"pitch":-161.36730652781478,"roll":52.628709215990895},"location":"Right Hip"},{"euler":{"heading":167.9333373549572,"pitch":-109.33801309839606,"roll":46.391671698254925},"location":"Right Knee"},{"euler":{"heading":6.414028043586409,"pitch":-133.45588353132138,"roll":59.24153426798633},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.293"} +{"sensors":[{"euler":{"heading":33.79503068141777,"pitch":124.68555151120417,"roll":18.81743652189859},"location":"Left Knee"},{"euler":{"heading":15.810981740966525,"pitch":90.66658575668491,"roll":6.421123146481904},"location":"Left Ankle"},{"euler":{"heading":32.43312471499338,"pitch":-22.415356127586506,"roll":-25.477050996944392},"location":"Right Ankle"},{"euler":{"heading":88.05011371164939,"pitch":-161.18967914005765,"roll":51.62359938877461},"location":"Right Hip"},{"euler":{"heading":166.74860124635876,"pitch":-108.39622756242338,"roll":47.47807709931979},"location":"Right Knee"},{"euler":{"heading":7.261313127168444,"pitch":-134.98802416614546,"roll":59.70607356469953},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.394"} +{"sensors":[{"euler":{"heading":34.75814086536072,"pitch":123.72259702607724,"roll":18.52564686209738},"location":"Left Knee"},{"euler":{"heading":17.256362592374842,"pitch":91.19176229329715,"roll":7.350148982626881},"location":"Left Ankle"},{"euler":{"heading":35.402824805331335,"pitch":-23.434110165303146,"roll":-23.60646211773573},"location":"Right Ankle"},{"euler":{"heading":86.95266060439994,"pitch":-161.4510653849541,"roll":50.99947532136358},"location":"Right Hip"},{"euler":{"heading":164.1970887879572,"pitch":-108.3585364464645,"roll":50.10798848302683},"location":"Right Knee"},{"euler":{"heading":8.139373763704969,"pitch":-136.94516957446604,"roll":60.23938444190207},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.495"} +{"sensors":[{"euler":{"heading":36.188827654449526,"pitch":122.75611858923857,"roll":17.61952044760274},"location":"Left Knee"},{"euler":{"heading":19.504048918035988,"pitch":91.6848173757122,"roll":8.987472530117849},"location":"Left Ankle"},{"euler":{"heading":38.054388374990054,"pitch":-24.24893976745375,"roll":-22.062445550286466},"location":"Right Ankle"},{"euler":{"heading":85.31684905459421,"pitch":-161.99079797248743,"roll":50.69631454259058},"location":"Right Hip"},{"euler":{"heading":161.6085073358858,"pitch":-108.6633132294973,"roll":52.71365144124883},"location":"Right Knee"},{"euler":{"heading":9.0366880817346,"pitch":-139.3582349018457,"roll":60.75169070164004},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.596"} +{"sensors":[{"euler":{"heading":38.66824011050103,"pitch":122.01237310600447,"roll":15.62836363579767},"location":"Left Knee"},{"euler":{"heading":22.09356078492938,"pitch":92.059626940405,"roll":11.848357171511301},"location":"Left Ankle"},{"euler":{"heading":39.44665042858096,"pitch":-24.76033707759419,"roll":-21.218217047305245},"location":"Right Ankle"},{"euler":{"heading":84.57197910815295,"pitch":-162.30082931104718,"roll":50.546843369332386},"location":"Right Hip"},{"euler":{"heading":159.63761236325774,"pitch":-108.95098876007165,"roll":54.34017807621969},"location":"Right Knee"},{"euler":{"heading":9.420634914651286,"pitch":-140.5132193594161,"roll":61.23309979126425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.696"} +{"sensors":[{"euler":{"heading":41.94689491999886,"pitch":121.03616566504307,"roll":13.19641285228274},"location":"Left Knee"},{"euler":{"heading":25.581271024133386,"pitch":92.82089961575483,"roll":15.578599448289914},"location":"Left Ankle"},{"euler":{"heading":40.09317254335705,"pitch":-24.79502560963431,"roll":-20.888303171296627},"location":"Right Ankle"},{"euler":{"heading":83.86695548829988,"pitch":-162.593259557964,"roll":50.762363779541126},"location":"Right Hip"},{"euler":{"heading":158.2319314809976,"pitch":-109.84744709393783,"roll":55.30068503635055},"location":"Right Knee"},{"euler":{"heading":8.516222098953625,"pitch":-139.09103334691883,"roll":61.204980884185154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.798"} +{"sensors":[{"euler":{"heading":43.84072798000943,"pitch":120.99110825561479,"roll":11.75680057307067},"location":"Left Knee"},{"euler":{"heading":27.004185218140954,"pitch":92.39203845408528,"roll":17.527128889963866},"location":"Left Ankle"},{"euler":{"heading":40.39067714687256,"pitch":-24.570766169969666,"roll":-20.904873631034892},"location":"Right Ankle"},{"euler":{"heading":83.59883891548179,"pitch":-162.70923970987837,"roll":51.302210669695604},"location":"Right Hip"},{"euler":{"heading":157.4792971220036,"pitch":-110.71808297497621,"roll":55.68230862173583},"location":"Right Knee"},{"euler":{"heading":7.086034189831921,"pitch":-137.0193520616176,"roll":60.59095133124304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.899"} +{"sensors":[{"euler":{"heading":42.02040699687397,"pitch":122.05021883904973,"roll":12.291231355183289},"location":"Left Knee"},{"euler":{"heading":25.291736915046492,"pitch":91.47484029848454,"roll":16.57329903669781},"location":"Left Ankle"},{"euler":{"heading":40.31917228697561,"pitch":-24.17164424043643,"roll":-21.151734824391486},"location":"Right Ankle"},{"euler":{"heading":83.63495358655503,"pitch":-162.79040602839842,"roll":51.99284512573861},"location":"Right Hip"},{"euler":{"heading":157.27921246524238,"pitch":-111.34537637993576,"roll":55.605513452085475},"location":"Right Knee"},{"euler":{"heading":40.01728242041672,"pitch":-135.0079972215971,"roll":59.833190832421785},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.0"} +{"sensors":[{"euler":{"heading":38.43718188239828,"pitch":123.74579975616209,"roll":13.969831283127322},"location":"Left Knee"},{"euler":{"heading":21.523353682394806,"pitch":90.52003908577973,"roll":13.409368123588798},"location":"Left Ankle"},{"euler":{"heading":39.77905426837277,"pitch":-23.459715603533947,"roll":-21.67237874715607},"location":"Right Ankle"},{"euler":{"heading":83.97368023616113,"pitch":-162.74494525473682,"roll":52.80208756936073},"location":"Right Hip"},{"euler":{"heading":157.70991412933995,"pitch":-111.71085808950308,"roll":54.98905511561408},"location":"Right Knee"},{"euler":{"heading":33.12877086537553,"pitch":-133.5803626569291,"roll":59.2901996248835},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.101"} +{"sensors":[{"euler":{"heading":35.94319383984373,"pitch":125.00660452016511,"roll":15.625496599238101},"location":"Left Knee"},{"euler":{"heading":18.491313379572787,"pitch":90.25059402626087,"roll":10.540460584092392},"location":"Left Ankle"},{"euler":{"heading":38.45690069693307,"pitch":-22.637149893968363,"roll":-22.7261366044738},"location":"Right Ankle"},{"euler":{"heading":84.58991178110163,"pitch":-162.733535471739,"roll":53.558132119169585},"location":"Right Hip"},{"euler":{"heading":159.37648516582036,"pitch":-111.57783938534948,"roll":53.49187872582035},"location":"Right Knee"},{"euler":{"heading":28.053269358597444,"pitch":-132.83550002017233,"roll":58.935602488929526},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.202"} +{"sensors":[{"euler":{"heading":34.69184507083628,"pitch":125.4994367984321,"roll":16.83829211542375},"location":"Left Knee"},{"euler":{"heading":17.14423585018841,"pitch":90.15541259758665,"roll":8.90759748540851},"location":"Left Ankle"},{"euler":{"heading":35.61451174147857,"pitch":-21.821486991863082,"roll":-24.00664774711675},"location":"Right Ankle"},{"euler":{"heading":85.65334041304479,"pitch":-162.4318909699178,"roll":53.968773839499185},"location":"Right Hip"},{"euler":{"heading":162.60789830236422,"pitch":-110.79159962124184,"roll":50.906442445265554},"location":"Right Knee"},{"euler":{"heading":23.808274658857574,"pitch":-132.33390630469242,"roll":58.75147845320032},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.303"} +{"sensors":[{"euler":{"heading":34.065577677463175,"pitch":125.46381852719762,"roll":17.727634785948787},"location":"Left Knee"},{"euler":{"heading":16.5644373125549,"pitch":90.29520698457299,"roll":7.7808335113523235},"location":"Left Ankle"},{"euler":{"heading":32.389425320836295,"pitch":-20.655351810800166,"roll":-25.260475289203374},"location":"Right Ankle"},{"euler":{"heading":87.04726168522593,"pitch":-161.65358922981682,"roll":53.620971075806715},"location":"Right Hip"},{"euler":{"heading":165.2478305384762,"pitch":-110.17527577531914,"roll":48.394531668088256},"location":"Right Knee"},{"euler":{"heading":20.7070320194558,"pitch":-132.41510433835478,"roll":58.858353352674065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.403"} +{"sensors":[{"euler":{"heading":33.820329463430376,"pitch":125.14026836769432,"roll":18.306457114648612},"location":"Left Knee"},{"euler":{"heading":16.648557820344358,"pitch":90.48115651763787,"roll":7.213096251779053},"location":"Left Ankle"},{"euler":{"heading":31.270726836725196,"pitch":-20.50383190658404,"roll":-25.895626743826384},"location":"Right Ankle"},{"euler":{"heading":87.99835305515727,"pitch":-161.0206670734934,"roll":52.747394106283856},"location":"Right Hip"},{"euler":{"heading":166.18467079712786,"pitch":-109.4630016889443,"roll":47.399807346597356},"location":"Right Knee"},{"euler":{"heading":18.411495549037248,"pitch":-133.42793701987915,"roll":59.073967938140186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.504"} +{"sensors":[{"euler":{"heading":34.11298102660938,"pitch":124.55617581832716,"roll":18.53889894095413},"location":"Left Knee"},{"euler":{"heading":17.4546537454517,"pitch":90.79805030646118,"roll":7.264169178935315},"location":"Left Ankle"},{"euler":{"heading":32.88149348075139,"pitch":-21.55578684609005,"roll":-25.102938712532914},"location":"Right Ankle"},{"euler":{"heading":88.03394217624731,"pitch":-160.85223250628806,"roll":51.736939695762416},"location":"Right Hip"},{"euler":{"heading":165.28112313464902,"pitch":-108.8184826194589,"roll":48.46165761425532},"location":"Right Knee"},{"euler":{"heading":16.829178177622126,"pitch":-135.07569690926596,"roll":59.387978355453335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.605"} +{"sensors":[{"euler":{"heading":34.72121287926744,"pitch":123.80766864508186,"roll":18.440073760258553},"location":"Left Knee"},{"euler":{"heading":18.578418202349912,"pitch":91.19181513556816,"roll":7.768172484873606},"location":"Left Ankle"},{"euler":{"heading":35.5975347395179,"pitch":-22.69197919037869,"roll":-23.470077694379423},"location":"Right Ankle"},{"euler":{"heading":87.28424721104119,"pitch":-160.97924972243982,"roll":51.143651293855804},"location":"Right Hip"},{"euler":{"heading":162.97173808379148,"pitch":-108.96060090620844,"roll":51.02178720871857},"location":"Right Knee"},{"euler":{"heading":15.771390748572228,"pitch":-137.07206491572433,"roll":59.77913409354009},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.705"} +{"sensors":[{"euler":{"heading":35.92077875487346,"pitch":122.92822269909581,"roll":17.75017324721413},"location":"Left Knee"},{"euler":{"heading":20.206046918368994,"pitch":91.63730273038006,"roll":8.985231891440664},"location":"Left Ankle"},{"euler":{"heading":37.9522231208276,"pitch":-23.61902109697533,"roll":-22.164956374244888},"location":"Right Ankle"},{"euler":{"heading":85.8083281876947,"pitch":-161.45090289321288,"roll":50.91595540129839},"location":"Right Hip"},{"euler":{"heading":160.58735559595524,"pitch":-109.362684352691,"roll":53.4335095972415},"location":"Right Knee"},{"euler":{"heading":15.285775245892102,"pitch":-139.45522341079825,"roll":60.240096709781305},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.806"} +{"sensors":[{"euler":{"heading":38.2406761977349,"pitch":122.15621521059384,"roll":15.948728557232108},"location":"Left Knee"},{"euler":{"heading":22.299746907559136,"pitch":91.87394473904386,"roll":11.602572060858911},"location":"Left Ankle"},{"euler":{"heading":39.41650539876573,"pitch":-24.261683062973436,"roll":-21.429882689598916},"location":"Right Ankle"},{"euler":{"heading":85.20032337475264,"pitch":-161.68744024897308,"roll":50.9536766753085},"location":"Right Hip"},{"euler":{"heading":158.84311158825264,"pitch":-110.05945686960425,"roll":55.00345039653886},"location":"Right Knee"},{"euler":{"heading":14.4244198085394,"pitch":-140.56530999828263,"roll":60.573975986394395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.908"} +{"sensors":[{"euler":{"heading":41.37682967356233,"pitch":121.37441056747187,"roll":13.664662314261445},"location":"Left Knee"},{"euler":{"heading":25.232854232721742,"pitch":92.32588850002936,"roll":15.118382322179075},"location":"Left Ankle"},{"euler":{"heading":40.26468497746611,"pitch":-24.74808693762877,"roll":-21.026326367273317},"location":"Right Ankle"},{"euler":{"heading":84.53007577748996,"pitch":-162.04416439018175,"roll":51.41587186494796},"location":"Right Hip"},{"euler":{"heading":157.86676988086117,"pitch":-111.08233925835012,"roll":55.80573870698033},"location":"Right Knee"},{"euler":{"heading":12.274433165580989,"pitch":-139.17978602119067,"roll":60.400470413008904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.8"} +{"sensors":[{"euler":{"heading":43.142092182094444,"pitch":121.42202909818137,"roll":12.36481237783671},"location":"Left Knee"},{"euler":{"heading":26.457308394785663,"pitch":91.90249807875576,"roll":16.872877577133472},"location":"Left Ankle"},{"euler":{"heading":40.63812687764878,"pitch":-25.146604528297424,"roll":-20.946533074537964},"location":"Right Ankle"},{"euler":{"heading":84.53419138650747,"pitch":-162.1529241008541,"roll":52.018405309558624},"location":"Right Hip"},{"euler":{"heading":157.66781842810278,"pitch":-111.74038119663182,"roll":56.0501394870058},"location":"Right Knee"},{"euler":{"heading":10.068128380870105,"pitch":-137.43854467920153,"roll":59.654884089048636},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.109"} +{"sensors":[{"euler":{"heading":41.07381038899846,"pitch":122.47582021583054,"roll":13.079218389393859},"location":"Left Knee"},{"euler":{"heading":24.629923695471504,"pitch":91.06159395127703,"roll":15.74347102401956},"location":"Left Ankle"},{"euler":{"heading":40.599072855134516,"pitch":-25.334799243173887,"roll":-21.23104856994488},"location":"Right Ankle"},{"euler":{"heading":84.87644377719904,"pitch":-162.1502678229392,"roll":52.6528024216141},"location":"Right Hip"},{"euler":{"heading":158.03404957454296,"pitch":-112.08017871907873,"roll":55.79566705203881},"location":"Right Knee"},{"euler":{"heading":8.998826580290318,"pitch":-135.6132358638266,"roll":58.91482322212276},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.212"} +{"sensors":[{"euler":{"heading":37.091360082820806,"pitch":124.18442360379476,"roll":14.992017108603903},"location":"Left Knee"},{"euler":{"heading":20.83877435871892,"pitch":90.33040730142748,"roll":12.420665130935904},"location":"Left Ankle"},{"euler":{"heading":40.03796308572026,"pitch":-25.088920416852382,"roll":-21.863053931317978},"location":"Right Ankle"},{"euler":{"heading":85.38260135024375,"pitch":-162.17164545374683,"roll":53.25063378837884},"location":"Right Hip"},{"euler":{"heading":158.88683284586241,"pitch":-112.19145787714814,"roll":54.99465175575718},"location":"Right Knee"},{"euler":{"heading":7.683330670775776,"pitch":-134.18153578915133,"roll":58.33434020176734},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.313"} +{"sensors":[{"euler":{"heading":34.33588527357569,"pitch":125.5461916914752,"roll":16.77042345988624},"location":"Left Knee"},{"euler":{"heading":17.95456180819807,"pitch":90.16818056494786,"roll":9.610136040729895},"location":"Left Ankle"},{"euler":{"heading":38.549988801081575,"pitch":-24.49782172205595,"roll":-23.07703305531866},"location":"Right Ankle"},{"euler":{"heading":86.02890961504711,"pitch":-162.3515128449205,"roll":53.85104956926019},"location":"Right Hip"},{"euler":{"heading":160.60173845976732,"pitch":-111.96515969470855,"roll":53.502888293629816},"location":"Right Knee"},{"euler":{"heading":7.117500513721213,"pitch":-133.21896329927134,"roll":57.951762966388344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.413"} +{"sensors":[{"euler":{"heading":33.167696807014195,"pitch":125.99364108979724,"roll":18.07644835698008},"location":"Left Knee"},{"euler":{"heading":16.639345866448583,"pitch":90.28892447716538,"roll":7.95875445442341},"location":"Left Ankle"},{"euler":{"heading":35.797747716613806,"pitch":-23.635959325199593,"roll":-24.508469736776288},"location":"Right Ankle"},{"euler":{"heading":86.9802229569997,"pitch":-162.21105967575605,"roll":54.22788223238226},"location":"Right Hip"},{"euler":{"heading":163.67058743627715,"pitch":-111.16585734688789,"roll":51.02936557363854},"location":"Right Knee"},{"euler":{"heading":6.707707168280042,"pitch":-132.54415059395234,"roll":57.8077188198648},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.514"} +{"sensors":[{"euler":{"heading":32.71059120797172,"pitch":125.75643367570285,"roll":19.12744096993153},"location":"Left Knee"},{"euler":{"heading":16.29372132875541,"pitch":90.66572147720223,"roll":6.90441317678399},"location":"Left Ankle"},{"euler":{"heading":32.36109950827147,"pitch":-22.362620988862872,"roll":-25.958319113807},"location":"Right Ankle"},{"euler":{"heading":88.36557865902299,"pitch":-161.5251081867607,"roll":53.87921303352749},"location":"Right Hip"},{"euler":{"heading":166.41522462079388,"pitch":-110.37719018868002,"roll":48.267949438534885},"location":"Right Knee"},{"euler":{"heading":6.942918356839469,"pitch":-132.67074753985978,"roll":57.96275162745742},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.614"} +{"sensors":[{"euler":{"heading":32.603852486215125,"pitch":125.13750967998234,"roll":19.92387999437698},"location":"Left Knee"},{"euler":{"heading":16.61714571269151,"pitch":91.17908961308625,"roll":6.38437348741196},"location":"Left Ankle"},{"euler":{"heading":30.688674775773435,"pitch":-21.911955161961995,"roll":-26.82435361022967},"location":"Right Ankle"},{"euler":{"heading":89.65448439162297,"pitch":-160.80928285766043,"roll":52.95728958743329},"location":"Right Hip"},{"euler":{"heading":167.29510979378088,"pitch":-109.52680285702347,"roll":46.97611024534272},"location":"Right Knee"},{"euler":{"heading":7.521954016420648,"pitch":-133.61764502842522,"roll":58.26356025715321},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.715"} +{"sensors":[{"euler":{"heading":32.99802485500964,"pitch":124.29208601514415,"roll":20.323511207108993},"location":"Left Knee"},{"euler":{"heading":17.755925465324637,"pitch":91.81603756617629,"roll":6.6272394477078285},"location":"Left Ankle"},{"euler":{"heading":31.798488511948165,"pitch":-22.812126563802668,"roll":-26.29409365800943},"location":"Right Ankle"},{"euler":{"heading":90.09747231129157,"pitch":-160.5063781992871,"roll":51.83174396367262},"location":"Right Hip"},{"euler":{"heading":166.44005229139358,"pitch":-108.56705870999215,"roll":47.74532743979375},"location":"Right Knee"},{"euler":{"heading":8.180372317826082,"pitch":-135.09872626771946,"roll":58.65466064188616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.815"} +{"sensors":[{"euler":{"heading":33.86774106102515,"pitch":123.27738029027958,"roll":20.239229460165987},"location":"Left Knee"},{"euler":{"heading":19.003458385940696,"pitch":92.41023181779795,"roll":7.26317433611048},"location":"Left Ankle"},{"euler":{"heading":34.627537148238716,"pitch":-23.917989304822157,"roll":-24.654939655829388},"location":"Right Ankle"},{"euler":{"heading":89.63379257602132,"pitch":-160.47604493546118,"roll":51.08674993021963},"location":"Right Hip"},{"euler":{"heading":164.17037093061126,"pitch":-108.48339075633392,"roll":50.07633250504512},"location":"Right Knee"},{"euler":{"heading":8.921624962448755,"pitch":-136.78969291946453,"roll":59.180971554113135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.916"} +{"sensors":[{"euler":{"heading":35.13872265635602,"pitch":122.23434690822889,"roll":19.574379553119773},"location":"Left Knee"},{"euler":{"heading":20.696756739012944,"pitch":92.9716846180907,"roll":8.52827165217489},"location":"Left Ankle"},{"euler":{"heading":37.58605230233162,"pitch":-24.99594593799253,"roll":-22.981460206262632},"location":"Right Ankle"},{"euler":{"heading":88.22559389683268,"pitch":-160.81126088601005,"roll":50.84068554494511},"location":"Right Hip"},{"euler":{"heading":161.68175570547047,"pitch":-109.62646977301172,"roll":52.57799119848353},"location":"Right Knee"},{"euler":{"heading":9.6415226623969,"pitch":-138.8073217255133,"roll":59.75828741147703},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.17"} +{"sensors":[{"euler":{"heading":37.16037675506214,"pitch":121.19540707328798,"roll":18.051250759996122},"location":"Left Knee"},{"euler":{"heading":23.189054797384816,"pitch":93.39054965021515,"roll":10.9096506704036},"location":"Left Ankle"},{"euler":{"heading":39.24153659295516,"pitch":-25.537354574043277,"roll":-22.08548235157978},"location":"Right Ankle"},{"euler":{"heading":86.85258597564473,"pitch":-161.23349559788466,"roll":50.81422316668833},"location":"Right Hip"},{"euler":{"heading":159.48355697376297,"pitch":-110.50623548921432,"roll":54.318492733058},"location":"Right Knee"},{"euler":{"heading":10.320153726496887,"pitch":-140.5795159802077,"roll":60.34608452681179},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.117"} +{"sensors":[{"euler":{"heading":40.24852405829258,"pitch":118.84031309473896,"roll":15.668252486137861},"location":"Left Knee"},{"euler":{"heading":26.383135402003976,"pitch":94.15601517435505,"roll":14.420031333444527},"location":"Left Ankle"},{"euler":{"heading":40.1987097096408,"pitch":-25.646762067944444,"roll":-21.64928870067946},"location":"Right Ankle"},{"euler":{"heading":85.87105597365863,"pitch":-161.5798934199984,"roll":51.117269939378915},"location":"Right Hip"},{"euler":{"heading":157.87392409917922,"pitch":-111.75415693967847,"roll":55.29295312501162},"location":"Right Knee"},{"euler":{"heading":9.496504731325102,"pitch":-139.9893118817133,"roll":60.46774126140824},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.218"} +{"sensors":[{"euler":{"heading":42.890056539166295,"pitch":118.49878484174506,"roll":13.660569427723017},"location":"Left Knee"},{"euler":{"heading":28.52282049954735,"pitch":93.8498541695272,"roll":17.08519085421769},"location":"Left Ankle"},{"euler":{"heading":40.61977824621494,"pitch":-25.549567030956766,"roll":-21.587525163689698},"location":"Right Ankle"},{"euler":{"heading":85.23979420208155,"pitch":-161.7744340238465,"roll":51.664973562134236},"location":"Right Hip"},{"euler":{"heading":157.00185653281005,"pitch":-112.65150296223142,"roll":55.67531220785971},"location":"Right Knee"},{"euler":{"heading":7.829235461374468,"pitch":-138.23051753164003,"roll":59.95951341579751},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.318"} +{"sensors":[{"euler":{"heading":42.47267693837137,"pitch":119.43231373043444,"roll":13.496662582857658},"location":"Left Knee"},{"euler":{"heading":27.367536890602928,"pitch":92.99017655931304,"roll":17.04141523511777},"location":"Left Ankle"},{"euler":{"heading":40.75646293684973,"pitch":-25.342711511813025,"roll":-21.935917796719973},"location":"Right Ankle"},{"euler":{"heading":85.09747213385408,"pitch":-161.85534404596058,"roll":52.36271737970247},"location":"Right Hip"},{"euler":{"heading":156.79910501838268,"pitch":-113.23756732472198,"roll":55.587291956286855},"location":"Right Knee"},{"euler":{"heading":40.47123681090902,"pitch":-136.25852866899314,"roll":59.14885755457114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.419"} +{"sensors":[{"euler":{"heading":39.00964047528236,"pitch":121.19261813041352,"roll":14.965471037353442},"location":"Left Knee"},{"euler":{"heading":23.6689145049352,"pitch":91.93879156402106,"roll":14.403704336995018},"location":"Left Ankle"},{"euler":{"heading":40.404646217506645,"pitch":-24.98311918671225,"roll":-22.423583528792612},"location":"Right Ankle"},{"euler":{"heading":85.30793089925137,"pitch":-161.9761199695205,"roll":53.07137737017039},"location":"Right Hip"},{"euler":{"heading":157.31085736906445,"pitch":-113.48845290216553,"roll":54.98445755342809},"location":"Right Knee"},{"euler":{"heading":33.29832776487213,"pitch":-134.64653901411134,"roll":58.51044019086298},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.520"} +{"sensors":[{"euler":{"heading":35.38338409107797,"pitch":123.1778640148333,"roll":16.80585565782497},"location":"Left Knee"},{"euler":{"heading":19.861651240104138,"pitch":91.213341174054,"roll":11.012148493907642},"location":"Left Ankle"},{"euler":{"heading":39.337743773652285,"pitch":-24.3366864418214,"roll":-23.334539398392415},"location":"Right Ankle"},{"euler":{"heading":85.80130091794979,"pitch":-162.18053201474814,"roll":53.80180574868923},"location":"Right Hip"},{"euler":{"heading":158.7465272379542,"pitch":-113.35280924361057,"roll":53.74336673417967},"location":"Right Knee"},{"euler":{"heading":28.001852518606626,"pitch":-133.73485805071257,"roll":58.06354899677565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.621"} +{"sensors":[{"euler":{"heading":33.64488800580628,"pitch":124.10624862640233,"roll":18.31659583666943},"location":"Left Knee"},{"euler":{"heading":18.022509379831916,"pitch":91.27628141824452,"roll":8.959861739340479},"location":"Left Ankle"},{"euler":{"heading":37.007564851220486,"pitch":-23.56149571740375,"roll":-24.56906688798257},"location":"Right Ankle"},{"euler":{"heading":86.73440412839739,"pitch":-162.22281199716448,"roll":54.38546318559231},"location":"Right Hip"},{"euler":{"heading":161.63430075268252,"pitch":-112.6533738380334,"roll":51.50856205671941},"location":"Right Knee"},{"euler":{"heading":23.837518297959544,"pitch":-133.14771297275217,"roll":57.772129137498425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.723"} +{"sensors":[{"euler":{"heading":32.88133845783267,"pitch":124.35773526953051,"roll":19.344744439353537},"location":"Left Knee"},{"euler":{"heading":17.010082567858408,"pitch":91.35701570711062,"roll":7.554641981536113},"location":"Left Ankle"},{"euler":{"heading":33.54789160712628,"pitch":-21.855287961825567,"roll":-26.167729963938346},"location":"Right Ankle"},{"euler":{"heading":88.2891539309728,"pitch":-161.51196133901902,"roll":54.20610864718081},"location":"Right Hip"},{"euler":{"heading":164.5160483129554,"pitch":-111.89562071074766,"roll":48.695617085929904},"location":"Right Knee"},{"euler":{"heading":20.659632987705,"pitch":-132.9671931742929,"roll":57.758133489774},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.824"} +{"sensors":[{"euler":{"heading":32.45234007420561,"pitch":124.22263550033382,"roll":20.1086218729793},"location":"Left Knee"},{"euler":{"heading":16.692405056565992,"pitch":91.45979669116424,"roll":6.699265177176813},"location":"Left Ankle"},{"euler":{"heading":31.268028545819906,"pitch":-21.054546538775828,"roll":-27.01978957720536},"location":"Right Ankle"},{"euler":{"heading":89.72864998317579,"pitch":-160.72009760368172,"roll":53.3779407414336},"location":"Right Hip"},{"euler":{"heading":166.2751439951306,"pitch":-110.81755848743282,"roll":46.92908858464957},"location":"Right Knee"},{"euler":{"heading":18.265669736435576,"pitch":-133.49350099187723,"roll":57.91193779039921},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.924"} +{"sensors":[{"euler":{"heading":32.49346696979425,"pitch":123.85662947358593,"roll":20.496624836547497},"location":"Left Knee"},{"euler":{"heading":17.116001434270988,"pitch":91.5825271802459,"roll":6.537622709787276},"location":"Left Ankle"},{"euler":{"heading":31.672386675581674,"pitch":-21.863864947920472,"roll":-26.66118863782094},"location":"Right Ankle"},{"euler":{"heading":90.34250355290152,"pitch":-160.24731745693578,"roll":52.28966970857367},"location":"Right Hip"},{"euler":{"heading":166.00918632883253,"pitch":-109.71719538890339,"roll":47.44713048310395},"location":"Right Knee"},{"euler":{"heading":16.525471625353788,"pitch":-134.5226574283455,"roll":58.24136131287341},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.25"} +{"sensors":[{"euler":{"heading":33.014656852052845,"pitch":123.27573682139607,"roll":20.485055283460998},"location":"Left Knee"},{"euler":{"heading":17.87901321890492,"pitch":91.7708719402327,"roll":6.765910849762346},"location":"Left Ankle"},{"euler":{"heading":34.38159771951316,"pitch":-23.01831384779731,"roll":-25.129802137288586},"location":"Right Ankle"},{"euler":{"heading":89.83442388879203,"pitch":-160.28324447937513,"roll":51.36437344903229},"location":"Right Hip"},{"euler":{"heading":164.10295311739125,"pitch":-108.98309777968738,"roll":49.533017359921935},"location":"Right Knee"},{"euler":{"heading":15.302739773514793,"pitch":-136.01277435568568,"roll":58.664299908565255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.126"} +{"sensors":[{"euler":{"heading":34.01810139735809,"pitch":122.53012515535876,"roll":19.969235135230182},"location":"Left Knee"},{"euler":{"heading":19.086406581147198,"pitch":92.00075349585462,"roll":7.561068552939907},"location":"Left Ankle"},{"euler":{"heading":37.42034921268314,"pitch":-24.27697696059025,"roll":-23.22684689490363},"location":"Right Ankle"},{"euler":{"heading":88.38392528878296,"pitch":-160.67247240400513,"roll":50.90165030424797},"location":"Right Hip"},{"euler":{"heading":161.71573368805392,"pitch":-109.62679882539018,"roll":52.25282747759855},"location":"Right Knee"},{"euler":{"heading":14.557216497677466,"pitch":-137.9200029431712,"roll":59.23725634728776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.226"} +{"sensors":[{"euler":{"heading":35.80880583671872,"pitch":121.79004135701895,"roll":18.670139271092257},"location":"Left Knee"},{"euler":{"heading":20.90736201353074,"pitch":92.19687697118853,"roll":9.32101577572113},"location":"Left Ankle"},{"euler":{"heading":39.272327697743634,"pitch":-24.785707234921254,"roll":-22.14700334478211},"location":"Right Ankle"},{"euler":{"heading":87.02979000727757,"pitch":-161.1138546670244,"roll":50.67319350645114},"location":"Right Hip"},{"euler":{"heading":159.42814380203285,"pitch":-110.2687209355797,"roll":54.345306797407694},"location":"Right Knee"},{"euler":{"heading":14.303501311798504,"pitch":-140.16304832331392,"roll":59.821108733339244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.326"} +{"sensors":[{"euler":{"heading":38.886211040041545,"pitch":121.07279551126307,"roll":16.3233941978788},"location":"Left Knee"},{"euler":{"heading":23.92035708252219,"pitch":93.04021867004185,"roll":12.53661713741541},"location":"Left Ankle"},{"euler":{"heading":40.21797612495858,"pitch":-24.847708970841612,"roll":-21.68117628371062},"location":"Right Ankle"},{"euler":{"heading":86.25990805360094,"pitch":-161.3289459403922,"roll":50.829132408739},"location":"Right Hip"},{"euler":{"heading":157.76315347088624,"pitch":-111.0457754066933,"roll":55.6025912694998},"location":"Right Knee"},{"euler":{"heading":12.88291683980388,"pitch":-140.39129597683547,"roll":59.93325067309441},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.427"} +{"sensors":[{"euler":{"heading":41.982681895869746,"pitch":120.66753523317436,"roll":14.176101836151007},"location":"Left Knee"},{"euler":{"heading":26.048511616785394,"pitch":93.40500194483573,"roll":15.113397443580082},"location":"Left Ankle"},{"euler":{"heading":40.69500664224859,"pitch":-24.707617644902097,"roll":-21.58070759713344},"location":"Right Ankle"},{"euler":{"heading":85.64736547440816,"pitch":-161.50574075029408,"roll":51.338846707757696},"location":"Right Hip"},{"euler":{"heading":156.67334535852305,"pitch":-112.03428739779135,"roll":56.19925366056828},"location":"Right Knee"},{"euler":{"heading":10.816057068328737,"pitch":-138.96287199372296,"roll":59.55315520209473},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.528"} +{"sensors":[{"euler":{"heading":42.24101602795233,"pitch":121.35314475673822,"roll":13.683725552865408},"location":"Left Knee"},{"euler":{"heading":25.460481634690275,"pitch":92.80761724984606,"roll":15.310696287422498},"location":"Left Ankle"},{"euler":{"heading":40.966692555867084,"pitch":-24.354930805726905,"roll":-21.828678521054638},"location":"Right Ankle"},{"euler":{"heading":85.63333150528413,"pitch":-161.42790566276764,"roll":51.94870716443601},"location":"Right Hip"},{"euler":{"heading":156.14962074010333,"pitch":-112.80391580277839,"roll":56.328932362236024},"location":"Right Knee"},{"euler":{"heading":42.976296153827946,"pitch":-137.17092089019204,"roll":58.793044749486285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.628"} +{"sensors":[{"euler":{"heading":38.80806615982822,"pitch":122.98423802382732,"roll":15.0574506578326},"location":"Left Knee"},{"euler":{"heading":22.285778974817912,"pitch":91.95195742332093,"roll":13.06948689146357},"location":"Left Ankle"},{"euler":{"heading":40.63623507597527,"pitch":-23.73852789344491,"roll":-22.3681625342203},"location":"Right Ankle"},{"euler":{"heading":86.00828550222012,"pitch":-161.23856847940323,"roll":52.5600077689915},"location":"Right Hip"},{"euler":{"heading":156.27965451164698,"pitch":-113.25657575323869,"roll":55.88147116331439},"location":"Right Knee"},{"euler":{"heading":35.31379577067192,"pitch":-135.67428045565197,"roll":58.12902097486583},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.729"} +{"sensors":[{"euler":{"heading":34.903233957904135,"pitch":124.98930604962673,"roll":16.817742032603608},"location":"Left Knee"},{"euler":{"heading":18.645907073313147,"pitch":90.96960640421416,"roll":9.792957763530161},"location":"Left Ankle"},{"euler":{"heading":39.55114970829475,"pitch":-22.865658956063445,"roll":-23.421132396939907},"location":"Right Ankle"},{"euler":{"heading":86.61850811381218,"pitch":-161.06129667320957,"roll":53.166666219846434},"location":"Right Hip"},{"euler":{"heading":157.26008624226097,"pitch":-113.35702046482074,"roll":54.721520607869145},"location":"Right Knee"},{"euler":{"heading":29.56293590416773,"pitch":-134.64699974494889,"roll":57.66490448532951},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.831"} +{"sensors":[{"euler":{"heading":32.93664029761282,"pitch":126.03075214489583,"roll":18.380859289584247},"location":"Left Knee"},{"euler":{"heading":16.610887851442396,"pitch":90.95466166977191,"roll":7.559381050895681},"location":"Left Ankle"},{"euler":{"heading":37.426059009772445,"pitch":-21.89746237954417,"roll":-24.71282111815596},"location":"Right Ankle"},{"euler":{"heading":87.40353248702743,"pitch":-161.12086421580943,"roll":53.81668656249562},"location":"Right Hip"},{"euler":{"heading":159.7810565746427,"pitch":-112.90688738733238,"roll":52.6730985777913},"location":"Right Knee"},{"euler":{"heading":25.246528435247868,"pitch":-134.08010279671547,"roll":57.3995150388518},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.932"} +{"sensors":[{"euler":{"heading":32.18251985612965,"pitch":126.1645689248476,"roll":19.551527526906185},"location":"Left Knee"},{"euler":{"heading":15.872084326417784,"pitch":91.20273208745176,"roll":6.317108447420033},"location":"Left Ankle"},{"euler":{"heading":33.997569703884636,"pitch":-20.385217511129213,"roll":-26.30375489180656},"location":"Right Ankle"},{"euler":{"heading":88.6943481165928,"pitch":-160.6872501754583,"roll":53.88763200754427},"location":"Right Hip"},{"euler":{"heading":163.12941077358977,"pitch":-112.0298938814781,"roll":49.82072085278008},"location":"Right Knee"},{"euler":{"heading":21.95007102317196,"pitch":-133.84061602712015,"roll":57.46852673917325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.33"} +{"sensors":[{"euler":{"heading":32.00499962714394,"pitch":125.71490686221283,"roll":20.49787519465484},"location":"Left Knee"},{"euler":{"heading":15.909246031075991,"pitch":91.73041551479349,"roll":5.5675613086853195},"location":"Left Ankle"},{"euler":{"heading":31.30923256059293,"pitch":-19.73026173261933,"roll":-27.40446867984818},"location":"Right Ankle"},{"euler":{"heading":90.09609438515713,"pitch":-160.03923540906067,"roll":53.11948570540895},"location":"Right Hip"},{"euler":{"heading":165.56782884259755,"pitch":-110.9806760866375,"roll":47.679628100419485},"location":"Right Knee"},{"euler":{"heading":19.720614599974436,"pitch":-134.46219879267872,"roll":57.750950088947846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.134"} +{"sensors":[{"euler":{"heading":32.275817791338994,"pitch":124.90968325744032,"roll":21.146115847535185},"location":"Left Knee"},{"euler":{"heading":16.379626758349097,"pitch":92.36248109548848,"roll":5.251978548057631},"location":"Left Ankle"},{"euler":{"heading":31.444530942410662,"pitch":-20.40990440281788,"roll":-27.53246224168918},"location":"Right Ankle"},{"euler":{"heading":90.83956177913487,"pitch":-159.6550034559452,"roll":51.90122218947895},"location":"Right Hip"},{"euler":{"heading":165.8580996040267,"pitch":-110.1798977432453,"roll":47.45445522456816},"location":"Right Knee"},{"euler":{"heading":18.335090881946268,"pitch":-135.77376230669756,"roll":58.19081247593365},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.235"} +{"sensors":[{"euler":{"heading":33.032641094228374,"pitch":123.90162702694799,"roll":21.334357048131025},"location":"Left Knee"},{"euler":{"heading":17.13932836390343,"pitch":92.9819839481246,"roll":5.335024645553971},"location":"Left Ankle"},{"euler":{"heading":33.55293647096219,"pitch":-21.803731415694482,"roll":-26.209515981112954},"location":"Right Ankle"},{"euler":{"heading":86.41858181929537,"pitch":-159.51540730420405,"roll":50.75722874208077},"location":"Right Hip"},{"euler":{"heading":164.37757908304278,"pitch":-109.52069176114166,"roll":49.21859872426869},"location":"Right Knee"},{"euler":{"heading":17.301695805826256,"pitch":-137.42429743839932,"roll":58.69584852489785},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.335"} +{"sensors":[{"euler":{"heading":34.14578772003402,"pitch":122.84082937614309,"roll":20.92799697974987},"location":"Left Knee"},{"euler":{"heading":18.290503586524366,"pitch":93.6257909469679,"roll":5.951193983224467},"location":"Left Ankle"},{"euler":{"heading":36.670498596753475,"pitch":-23.207658125686788,"roll":-24.15629058259532},"location":"Right Ankle"},{"euler":{"heading":86.1280605300758,"pitch":-159.7755352210182,"roll":50.18579157671935},"location":"Right Hip"},{"euler":{"heading":161.85141751416873,"pitch":-109.88733253162104,"roll":52.0039897358682},"location":"Right Knee"},{"euler":{"heading":16.479334277663366,"pitch":-139.41128607721745,"roll":59.23013205821369},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.437"} +{"sensors":[{"euler":{"heading":35.82417564379436,"pitch":121.88094001909963,"roll":19.722003506283524},"location":"Left Knee"},{"euler":{"heading":19.952466822799295,"pitch":94.13106685617822,"roll":7.406491711842714},"location":"Left Ankle"},{"euler":{"heading":38.6821320636238,"pitch":-24.014302422320004,"roll":-22.857237006492102},"location":"Right Ankle"},{"euler":{"heading":85.28376063847574,"pitch":-160.31412917882992,"roll":49.912469939679674},"location":"Right Hip"},{"euler":{"heading":159.58085872389384,"pitch":-110.38556524086852,"roll":54.185538110299355},"location":"Right Knee"},{"euler":{"heading":15.966508863208812,"pitch":-141.59570757232103,"roll":59.826552756954015},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.537"} +{"sensors":[{"euler":{"heading":38.827452129793976,"pitch":121.31557075103451,"roll":17.39410608223746},"location":"Left Knee"},{"euler":{"heading":22.436943644661813,"pitch":94.43370043574501,"roll":10.52478256743368},"location":"Left Ankle"},{"euler":{"heading":39.817958891648246,"pitch":-24.58369143734782,"roll":-22.175216333186167},"location":"Right Ankle"},{"euler":{"heading":84.88971419135655,"pitch":-160.69447389121086,"roll":50.10510076615962},"location":"Right Hip"},{"euler":{"heading":158.04871958779205,"pitch":-111.28824698189406,"roll":55.47585648915613},"location":"Right Knee"},{"euler":{"heading":14.512124448005101,"pitch":-142.25247785077934,"roll":59.97979398775058},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.638"} +{"sensors":[{"euler":{"heading":41.88106239578267,"pitch":120.79209157523319,"roll":15.061728029329075},"location":"Left Knee"},{"euler":{"heading":24.7922771621176,"pitch":94.54107740621737,"roll":13.839906781431349},"location":"Left Ankle"},{"euler":{"heading":40.432871352754916,"pitch":-24.968120599036922,"roll":-21.82561166625976},"location":"Right Ankle"},{"euler":{"heading":84.46599916161725,"pitch":-161.11592734160658,"roll":50.6539619805679},"location":"Right Hip"},{"euler":{"heading":157.17470542592238,"pitch":-112.04560811650573,"roll":56.13213697730226},"location":"Right Knee"},{"euler":{"heading":12.35813624374645,"pitch":-140.55188416515878,"roll":59.82713808488386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.739"} +{"sensors":[{"euler":{"heading":42.7642314699426,"pitch":121.15669669006688,"roll":14.193786549979814},"location":"Left Knee"},{"euler":{"heading":25.288002534232024,"pitch":93.79400646824593,"roll":14.960962854286377},"location":"Left Ankle"},{"euler":{"heading":40.6926033911539,"pitch":-25.214910737120608,"roll":-21.85409095814628},"location":"Right Ankle"},{"euler":{"heading":84.6125222911894,"pitch":-161.28325899098022,"roll":51.317081428233735},"location":"Right Hip"},{"euler":{"heading":156.97036004122717,"pitch":-112.60607387219355,"roll":56.26225484060546},"location":"Right Knee"},{"euler":{"heading":44.32218320363934,"pitch":-138.61472371042996,"roll":59.11825403103096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.840"} +{"sensors":[{"euler":{"heading":39.91423946082328,"pitch":122.53299291349879,"roll":15.209836145984644},"location":"Left Knee"},{"euler":{"heading":22.881771421197673,"pitch":92.69588375370395,"roll":13.365388509063692},"location":"Left Ankle"},{"euler":{"heading":40.42370178277929,"pitch":-25.218248600514084,"roll":-22.093892234052394},"location":"Right Ankle"},{"euler":{"heading":85.0119247278034,"pitch":-161.42872792264038,"roll":51.99441068928457},"location":"Right Hip"},{"euler":{"heading":157.3083934116008,"pitch":-112.89324898454188,"roll":55.922206565322035},"location":"Right Knee"},{"euler":{"heading":70.50620052767735,"pitch":-136.68347626410699,"roll":58.441130671748674},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.941"} +{"sensors":[{"euler":{"heading":36.07056098295364,"pitch":124.43235290462665,"roll":16.997249016448418},"location":"Left Knee"},{"euler":{"heading":19.003108269178774,"pitch":91.70221987669902,"roll":9.977477456118596},"location":"Left Ankle"},{"euler":{"heading":39.632775907960884,"pitch":-24.870495800139093,"roll":-22.905413194627183},"location":"Right Ankle"},{"euler":{"heading":85.5529860807284,"pitch":-161.61386690213646,"roll":52.76188705543357},"location":"Right Hip"},{"euler":{"heading":158.20348675855786,"pitch":-112.92718489705095,"roll":55.043755823856806},"location":"Right Knee"},{"euler":{"heading":58.360602525238185,"pitch":-135.4769615741437,"roll":58.012723155505604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.42"} +{"sensors":[{"euler":{"heading":33.92217292775902,"pitch":125.52083381673295,"roll":18.567071916090423},"location":"Left Knee"},{"euler":{"heading":16.261270576823023,"pitch":91.48084326751517,"roll":7.262614327508293},"location":"Left Ankle"},{"euler":{"heading":38.11715175327275,"pitch":-24.240721653731573,"roll":-24.008347359791696},"location":"Right Ankle"},{"euler":{"heading":86.09707675463,"pitch":-162.1797301614138,"roll":53.640661828458626},"location":"Right Hip"},{"euler":{"heading":159.86980150941702,"pitch":-112.5773929706405,"roll":53.523540110589806},"location":"Right Knee"},{"euler":{"heading":49.09951053465776,"pitch":-134.71220841920234,"roll":57.845044252879006},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.142"} +{"sensors":[{"euler":{"heading":33.00136351159041,"pitch":125.82800799795247,"roll":19.678409538482697},"location":"Left Knee"},{"euler":{"heading":15.383677624957146,"pitch":91.59562639504038,"roll":6.006954482075935},"location":"Left Ankle"},{"euler":{"heading":35.342270985434354,"pitch":-23.421151803683543,"roll":-25.309575687341482},"location":"Right Ankle"},{"euler":{"heading":87.20250674982414,"pitch":-162.34099257253166,"roll":54.079124762371386},"location":"Right Hip"},{"euler":{"heading":162.85130187939654,"pitch":-111.63661767349191,"roll":51.01832635000522},"location":"Right Knee"},{"euler":{"heading":41.46897607568341,"pitch":-134.15694442378847,"roll":57.853839098609804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.243"} +{"sensors":[{"euler":{"heading":32.61006953324811,"pitch":125.66600949502869,"roll":20.410547105588847},"location":"Left Knee"},{"euler":{"heading":15.075331701329453,"pitch":91.78272509324195,"roll":5.150168639758567},"location":"Left Ankle"},{"euler":{"heading":32.00599158156268,"pitch":-22.23959070754952,"roll":-26.62971215472344},"location":"Right Ankle"},{"euler":{"heading":88.67243584568375,"pitch":-161.68429838023184,"roll":53.71487956812783},"location":"Right Hip"},{"euler":{"heading":165.38767604503724,"pitch":-110.58913840150994,"roll":48.50766324036614},"location":"Right Knee"},{"euler":{"heading":35.5659306442567,"pitch":-134.39766332552267,"roll":58.11150025550452},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.343"} +{"sensors":[{"euler":{"heading":32.539381371708025,"pitch":125.20431978302128,"roll":20.88873560742916},"location":"Left Knee"},{"euler":{"heading":15.619529617655708,"pitch":92.08876811771141,"roll":4.987251169036779},"location":"Left Ankle"},{"euler":{"heading":30.534654868911215,"pitch":-21.883862433284772,"roll":-27.312974288050423},"location":"Right Ankle"},{"euler":{"heading":90.02464487308099,"pitch":-160.94738478877557,"roll":52.81453363773052},"location":"Right Hip"},{"euler":{"heading":166.04947322484804,"pitch":-109.56401151444042,"roll":47.579466285992346},"location":"Right Knee"},{"euler":{"heading":30.851429650471232,"pitch":-135.25163177620323,"roll":58.39815918356381},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.444"} +{"sensors":[{"euler":{"heading":33.08197805226425,"pitch":124.24552527512546,"roll":21.113350698528915},"location":"Left Knee"},{"euler":{"heading":17.283906339418383,"pitch":92.79376097223425,"roll":5.701900815381175},"location":"Left Ankle"},{"euler":{"heading":31.315658723181617,"pitch":-22.62618284792026,"roll":-26.777851485341298},"location":"Right Ankle"},{"euler":{"heading":90.48973892321223,"pitch":-160.60161665686425,"roll":51.70851297016973},"location":"Right Hip"},{"euler":{"heading":164.7245254385134,"pitch":-108.36291559184436,"roll":48.80258573975715},"location":"Right Knee"},{"euler":{"heading":27.28846677164998,"pitch":-136.52377238500145,"roll":58.782401163547654},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.546"} +{"sensors":[{"euler":{"heading":34.01377084626521,"pitch":123.15795963791949,"roll":20.84691999437472},"location":"Left Knee"},{"euler":{"heading":18.973688099040206,"pitch":93.44952735934928,"roll":6.723123850146118},"location":"Left Ankle"},{"euler":{"heading":34.13112641541338,"pitch":-23.850803700000128,"roll":-25.134297210945697},"location":"Right Ankle"},{"euler":{"heading":89.90147228044039,"pitch":-160.67518468703489,"roll":50.880116353385795},"location":"Right Hip"},{"euler":{"heading":162.3198013470803,"pitch":-108.17381527628224,"roll":51.45513603297271},"location":"Right Knee"},{"euler":{"heading":24.5970383510612,"pitch":-138.1861971732519,"roll":59.28467015337229},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.647"} +{"sensors":[{"euler":{"heading":35.35936191447176,"pitch":122.13223144372974,"roll":19.987521497342996},"location":"Left Knee"},{"euler":{"heading":20.916138473197194,"pitch":93.93589848283872,"roll":8.27740573148036},"location":"Left Ankle"},{"euler":{"heading":37.20931827506935,"pitch":-24.958932589079996,"roll":-23.343875219872196},"location":"Right Ankle"},{"euler":{"heading":88.42098851569986,"pitch":-161.02712932999336,"roll":50.52885651089558},"location":"Right Hip"},{"euler":{"heading":159.74439451219973,"pitch":-109.03124133231064,"roll":54.15262806768207},"location":"Right Knee"},{"euler":{"heading":22.59544016164931,"pitch":-140.40392084802866,"roll":59.82239515145659},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.748"} +{"sensors":[{"euler":{"heading":37.50750455186413,"pitch":121.388380100299,"roll":18.151608458340593},"location":"Left Knee"},{"euler":{"heading":23.34490309102138,"pitch":94.02523044138294,"roll":10.902624732902114},"location":"Left Ankle"},{"euler":{"heading":38.73687203169687,"pitch":-25.37901065696908,"roll":-22.478821049154167},"location":"Right Ankle"},{"euler":{"heading":87.30389494951547,"pitch":-161.3039781128888,"roll":50.37153353934292},"location":"Right Hip"},{"euler":{"heading":157.50485744343126,"pitch":-109.3433708070462,"roll":56.01682654360995},"location":"Right Knee"},{"euler":{"heading":20.998150905598376,"pitch":-142.48797273038835,"roll":60.255461332445925},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.849"} +{"sensors":[{"euler":{"heading":40.55058784171603,"pitch":120.57854548253579,"roll":15.705555897648441},"location":"Left Knee"},{"euler":{"heading":26.516689122089016,"pitch":94.54007216084055,"roll":14.44340027581606},"location":"Left Ankle"},{"euler":{"heading":39.54767861363276,"pitch":-25.50942591125003,"roll":-22.136007853050508},"location":"Right Ankle"},{"euler":{"heading":86.46650895779362,"pitch":-161.56043698453644,"roll":50.65723805205996},"location":"Right Hip"},{"euler":{"heading":155.97433762849394,"pitch":-110.31546467415286,"roll":57.09132659977594},"location":"Right Knee"},{"euler":{"heading":18.423941685085193,"pitch":-142.05510936697215,"roll":60.36790266846549},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.950"} +{"sensors":[{"euler":{"heading":43.03037049760887,"pitch":120.36893339044671,"roll":13.783503969473566},"location":"Left Knee"},{"euler":{"heading":28.001971531488927,"pitch":93.9952373059487,"roll":16.922032291447824},"location":"Left Ankle"},{"euler":{"heading":39.896464852542785,"pitch":-25.472857426438164,"roll":-22.11117950139487},"location":"Right Ankle"},{"euler":{"heading":86.03056114335044,"pitch":-161.7033206116802,"roll":51.266538095071205},"location":"Right Hip"},{"euler":{"heading":155.23839144035904,"pitch":-111.30210372522012,"roll":57.4809747748581},"location":"Right Knee"},{"euler":{"heading":15.38276869250854,"pitch":-140.34356380485718,"roll":59.863226653595},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.51"} +{"sensors":[{"euler":{"heading":42.706472006623514,"pitch":121.05916616050776,"roll":13.631684216409587},"location":"Left Knee"},{"euler":{"heading":26.792433634348374,"pitch":93.19307382770572,"roll":16.75703504256506},"location":"Left Ankle"},{"euler":{"heading":39.85505872440101,"pitch":-25.25546297956895,"roll":-22.30868932681459},"location":"Right Ankle"},{"euler":{"heading":85.99465416110434,"pitch":-161.7553234458381,"roll":52.02001897822473},"location":"Right Hip"},{"euler":{"heading":155.1173694235104,"pitch":-112.00463896959458,"roll":57.387659625942725},"location":"Right Knee"},{"euler":{"heading":12.779698725847489,"pitch":-138.47972757675686,"roll":59.15090967745935},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.151"} +{"sensors":[{"euler":{"heading":39.415102696028825,"pitch":122.59931796615923,"roll":15.081703440925862},"location":"Left Knee"},{"euler":{"heading":23.108840973047343,"pitch":92.34830993527414,"roll":14.110703942329721},"location":"Left Ankle"},{"euler":{"heading":39.351476129703016,"pitch":-24.767428088954635,"roll":-22.778731119043254},"location":"Right Ankle"},{"euler":{"heading":86.16144871486176,"pitch":-161.86777789831046,"roll":52.767223435016604},"location":"Right Hip"},{"euler":{"heading":155.51768256876738,"pitch":-112.39064268348716,"roll":56.77408869481473},"location":"Right Knee"},{"euler":{"heading":10.779104650441898,"pitch":-136.94776662262942,"roll":58.53013302859142},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.252"} +{"sensors":[{"euler":{"heading":35.762938575174424,"pitch":124.40318917747872,"roll":16.92292207832345},"location":"Left Knee"},{"euler":{"heading":19.349555875837464,"pitch":91.63146660318156,"roll":10.699457277936542},"location":"Left Ankle"},{"euler":{"heading":38.10680018440362,"pitch":-23.975044329456257,"roll":-23.75697383142753},"location":"Right Ankle"},{"euler":{"heading":86.52394160282913,"pitch":-162.1419490508411,"roll":53.544420355754426},"location":"Right Hip"},{"euler":{"heading":156.72536406274122,"pitch":-112.41888121255741,"roll":55.45788427485485},"location":"Right Knee"},{"euler":{"heading":9.800949554662935,"pitch":-136.13228286656332,"roll":58.14082163108457},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.352"} +{"sensors":[{"euler":{"heading":34.038901109194825,"pitch":125.17339767519718,"roll":18.440362245922234},"location":"Left Knee"},{"euler":{"heading":17.514026641025733,"pitch":91.91028092635273,"roll":8.575845021294331},"location":"Left Ankle"},{"euler":{"heading":35.89859935637202,"pitch":-23.29965316661541,"roll":-24.951317278536717},"location":"Right Ankle"},{"euler":{"heading":87.25475783973191,"pitch":-162.36031315576375,"roll":54.2120146343101},"location":"Right Hip"},{"euler":{"heading":159.2540470242421,"pitch":-111.83801217617852,"roll":53.149165864466596},"location":"Right Knee"},{"euler":{"heading":9.089216845872997,"pitch":-135.5013874763819,"roll":57.86583244899123},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.453"} +{"sensors":[{"euler":{"heading":33.287190262891926,"pitch":125.27580938733946,"roll":19.462682886206633},"location":"Left Knee"},{"euler":{"heading":16.5937374571793,"pitch":92.10906529017788,"roll":7.296334438179464},"location":"Left Ankle"},{"euler":{"heading":32.544746950253824,"pitch":-21.713478085222555,"roll":-26.436329816814414},"location":"Right Ankle"},{"euler":{"heading":88.49524259891976,"pitch":-161.73745294023118,"roll":54.179956143517764},"location":"Right Hip"},{"euler":{"heading":161.91906063118017,"pitch":-111.05080472613703,"roll":50.35257250555251},"location":"Right Knee"},{"euler":{"heading":8.714536648771743,"pitch":-135.07913865154634,"roll":57.93804820304499},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.554"} +{"sensors":[{"euler":{"heading":32.844104164758065,"pitch":125.08310442743763,"roll":20.1618336656684},"location":"Left Knee"},{"euler":{"heading":16.256377213103228,"pitch":92.24137784591856,"roll":6.4595838111035935},"location":"Left Ankle"},{"euler":{"heading":30.613123410826983,"pitch":-21.0570230833318,"roll":-27.387690350123677},"location":"Right Ankle"},{"euler":{"heading":89.93901231256486,"pitch":-160.90630341105327,"roll":53.43751029936682},"location":"Right Hip"},{"euler":{"heading":163.6314915570029,"pitch":-110.11255863367222,"roll":48.58894955509726},"location":"Right Knee"},{"euler":{"heading":8.639615910280392,"pitch":-135.63641481770472,"roll":58.122300591594836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.655"} +{"sensors":[{"euler":{"heading":32.820188286499196,"pitch":124.71848066786517,"roll":20.50910301586934},"location":"Left Knee"},{"euler":{"heading":16.431990393413454,"pitch":92.34326825724858,"roll":6.076983402405493},"location":"Left Ankle"},{"euler":{"heading":31.249111911811013,"pitch":-21.848269988498952,"roll":-27.07732718514772},"location":"Right Ankle"},{"euler":{"heading":90.74066968792931,"pitch":-160.36230268280073,"roll":52.331682101709994},"location":"Right Hip"},{"euler":{"heading":163.38677791544848,"pitch":-109.1446569750785,"roll":48.92531607775947},"location":"Right Knee"},{"euler":{"heading":8.667450505853608,"pitch":-136.85411704683392,"roll":58.336588447046886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.755"} +{"sensors":[{"euler":{"heading":33.448644522462516,"pitch":124.085331026184,"roll":20.430948093092393},"location":"Left Knee"},{"euler":{"heading":17.05140688333985,"pitch":92.56626311886328,"roll":6.158839976607715},"location":"Left Ankle"},{"euler":{"heading":33.999348959907095,"pitch":-23.039874203413614,"roll":-25.36961346243568},"location":"Right Ankle"},{"euler":{"heading":90.27340272973396,"pitch":-160.36945582173186,"roll":51.40833472417293},"location":"Right Hip"},{"euler":{"heading":161.16500206134035,"pitch":-108.69688903511184,"roll":51.19758258450545},"location":"Right Knee"},{"euler":{"heading":8.89832720909601,"pitch":-138.4613365944104,"roll":58.64345303181175},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.856"} +{"sensors":[{"euler":{"heading":34.55180925616796,"pitch":123.25081615934027,"roll":19.86676711851401},"location":"Left Knee"},{"euler":{"heading":18.25418542009126,"pitch":92.87506114888568,"roll":6.904729712006823},"location":"Left Ankle"},{"euler":{"heading":37.351121958733096,"pitch":-24.171634928971944,"roll":-23.318994726369073},"location":"Right Ankle"},{"euler":{"heading":88.88604806682878,"pitch":-160.73859228390046,"roll":50.965210997014175},"location":"Right Hip"},{"euler":{"heading":158.21620597234013,"pitch":-110.21799465543948,"roll":54.15738667583527},"location":"Right Knee"},{"euler":{"heading":9.414360720605101,"pitch":-140.3556222720538,"roll":59.093541067969895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.956"} +{"sensors":[{"euler":{"heading":36.590633090231954,"pitch":122.46001260835027,"roll":18.34555151916291},"location":"Left Knee"},{"euler":{"heading":20.047581007914516,"pitch":93.02368802268474,"roll":8.685493962456357},"location":"Left Ankle"},{"euler":{"heading":39.23942572837926,"pitch":-24.70227647108763,"roll":-22.307674620072127},"location":"Right Ankle"},{"euler":{"heading":87.67873989396983,"pitch":-161.15584897563403,"roll":50.68909083991447},"location":"Right Hip"},{"euler":{"heading":155.7541724972004,"pitch":-111.0236556904865,"roll":56.30056194782811},"location":"Right Knee"},{"euler":{"heading":10.223333391232407,"pitch":-142.45021386030777,"roll":59.58999412915696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.58"} +{"sensors":[{"euler":{"heading":39.81769041409299,"pitch":121.8633403359094,"roll":15.940503216175742},"location":"Left Knee"},{"euler":{"heading":23.269877103615435,"pitch":93.67541853993613,"roll":12.080455439514905},"location":"Left Ankle"},{"euler":{"heading":40.595316946793446,"pitch":-25.170550162667627,"roll":-21.559024873427784},"location":"Right Ankle"},{"euler":{"heading":86.76154097329903,"pitch":-161.47396108089112,"roll":50.77811912574096},"location":"Right Hip"},{"euler":{"heading":153.97012917647208,"pitch":-112.1391232779517,"roll":57.58588400073827},"location":"Right Knee"},{"euler":{"heading":9.45290019239081,"pitch":-142.44305914771473,"roll":59.65872244374558},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.159"} +{"sensors":[{"euler":{"heading":42.82861049580861,"pitch":121.34126238969748,"roll":13.75828963772705},"location":"Left Knee"},{"euler":{"heading":25.492118090645192,"pitch":93.43875548295077,"roll":15.051401241372815},"location":"Left Ankle"},{"euler":{"heading":41.50932404265023,"pitch":-25.713185508339933,"roll":-21.2739806786543},"location":"Right Ankle"},{"euler":{"heading":86.18295342077845,"pitch":-161.81532056556665,"roll":51.14405336874237},"location":"Right Hip"},{"euler":{"heading":153.2227933705068,"pitch":-112.9225604085117,"roll":58.172245054197504},"location":"Right Knee"},{"euler":{"heading":7.805422727808577,"pitch":-140.4032898194366,"roll":59.24528837290914},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.259"} +{"sensors":[{"euler":{"heading":43.44495789644517,"pitch":121.71902605751178,"roll":13.139189093763807},"location":"Left Knee"},{"euler":{"heading":25.159485221921777,"pitch":92.59440237272706,"roll":15.611315926509679},"location":"Left Ankle"},{"euler":{"heading":41.95450136479008,"pitch":-25.98422632703422,"roll":-21.313316671831434},"location":"Right Ankle"},{"euler":{"heading":86.065925022663,"pitch":-161.9815208729391,"roll":51.65353737412965},"location":"Right Hip"},{"euler":{"heading":152.9557034716939,"pitch":-113.40555145347213,"roll":58.31043825506214},"location":"Right Knee"},{"euler":{"heading":40.39228589446369,"pitch":-138.15327247096965,"roll":58.443120036925514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.363"} +{"sensors":[{"euler":{"heading":40.311094208868866,"pitch":123.09533851235219,"roll":14.380408650592496},"location":"Left Knee"},{"euler":{"heading":22.12255774780767,"pitch":91.65200905753218,"roll":13.317728880346055},"location":"Left Ankle"},{"euler":{"heading":41.831496844396966,"pitch":-25.765750414382897,"roll":-21.729410519616895},"location":"Right Ankle"},{"euler":{"heading":86.25547706413488,"pitch":-161.96544277558903,"roll":52.215626982854005},"location":"Right Hip"},{"euler":{"heading":152.93320570608745,"pitch":-113.78909024435774,"roll":58.007423689601126},"location":"Right Knee"},{"euler":{"heading":67.18733467735368,"pitch":-136.1886315386918,"roll":57.73509382418099},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.464"} +{"sensors":[{"euler":{"heading":36.48468483117497,"pitch":124.9233694993977,"roll":16.240775439214016},"location":"Left Knee"},{"euler":{"heading":18.209051022277492,"pitch":90.73980775667981,"roll":9.922460830617398},"location":"Left Ankle"},{"euler":{"heading":41.076797039002315,"pitch":-25.199447933231948,"roll":-22.55776685196792},"location":"Right Ankle"},{"euler":{"heading":86.60687722004874,"pitch":-161.95683941361816,"roll":52.87882585961222},"location":"Right Hip"},{"euler":{"heading":153.6341667826197,"pitch":-113.81509832602973,"roll":57.07924952247516},"location":"Right Knee"},{"euler":{"heading":55.64906410268354,"pitch":-135.1718762975809,"roll":57.29061370124657},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.564"} +{"sensors":[{"euler":{"heading":34.023444777045796,"pitch":125.94136126574605,"roll":17.983628058460493},"location":"Left Knee"},{"euler":{"heading":16.33047959351269,"pitch":90.77050383114677,"roll":7.676565148831044},"location":"Left Ankle"},{"euler":{"heading":39.34113183017947,"pitch":-24.33624178163971,"roll":-23.73538800171489},"location":"Right Ankle"},{"euler":{"heading":87.05512658940137,"pitch":-162.1868667507147,"roll":53.60378945505547},"location":"Right Hip"},{"euler":{"heading":155.4269010085911,"pitch":-113.3927343192159,"roll":55.335681091835156},"location":"Right Knee"},{"euler":{"heading":46.314501614216454,"pitch":-134.60261296921942,"roll":56.971649022050556},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.666"} +{"sensors":[{"euler":{"heading":32.82863656327851,"pitch":126.29176711291686,"roll":19.11479388654546},"location":"Left Knee"},{"euler":{"heading":15.25009604822078,"pitch":90.70910032957597,"roll":6.375582956196624},"location":"Left Ankle"},{"euler":{"heading":35.99963669224339,"pitch":-23.031960977015096,"roll":-25.258776718471687},"location":"Right Ankle"},{"euler":{"heading":87.92750383099583,"pitch":-161.8777709920929,"roll":53.8020022580566},"location":"Right Hip"},{"euler":{"heading":158.13735912632848,"pitch":-112.48736058474547,"roll":52.765103099025495},"location":"Right Knee"},{"euler":{"heading":38.647590822380984,"pitch":-134.08750077055012,"roll":56.998127137108966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.767"} +{"sensors":[{"euler":{"heading":32.2843363604676,"pitch":126.05592702225165,"roll":20.00756088578369},"location":"Left Knee"},{"euler":{"heading":14.858939715105318,"pitch":90.77838929138986,"roll":5.4777860514184},"location":"Left Ankle"},{"euler":{"heading":33.43009273955785,"pitch":-22.202522931934244,"roll":-26.345933128872407},"location":"Right Ankle"},{"euler":{"heading":89.02230505065134,"pitch":-161.1937970250089,"roll":53.32143093745405},"location":"Right Hip"},{"euler":{"heading":160.08319511948366,"pitch":-111.3767903825817,"roll":50.65308221164422},"location":"Right Knee"},{"euler":{"heading":32.87528379520152,"pitch":-134.63803618316746,"roll":57.164773906497224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.867"} +{"sensors":[{"euler":{"heading":32.27267140591537,"pitch":125.39662313006285,"roll":20.642989572804595},"location":"Left Knee"},{"euler":{"heading":15.26398886718903,"pitch":91.14429783490499,"roll":5.1826337703798515},"location":"Left Ankle"},{"euler":{"heading":33.1454170927579,"pitch":-22.652937256075596,"roll":-26.431932419446344},"location":"Right Ankle"},{"euler":{"heading":90.01979732210299,"pitch":-160.55110479768186,"roll":52.333660317260865},"location":"Right Hip"},{"euler":{"heading":160.2495696739723,"pitch":-110.16972262505217,"roll":50.41259858852148},"location":"Right Knee"},{"euler":{"heading":28.60671379842212,"pitch":-135.81396702667058,"roll":57.44041987503937},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.968"} +{"sensors":[{"euler":{"heading":32.905213377194116,"pitch":124.41359047366137,"roll":20.867200005779935},"location":"Left Knee"},{"euler":{"heading":16.0534313571224,"pitch":91.66564920071418,"roll":5.343619975921369},"location":"Left Ankle"},{"euler":{"heading":35.230994957435264,"pitch":-23.84528655905086,"roll":-25.249345818079068},"location":"Right Ankle"},{"euler":{"heading":90.1052700658806,"pitch":-160.40950138245447,"roll":51.285273302034966},"location":"Right Hip"},{"euler":{"heading":158.75083738091038,"pitch":-109.03585994041019,"roll":52.13316123647373},"location":"Right Knee"},{"euler":{"heading":25.414824040096683,"pitch":-137.34177153505635,"roll":57.83847773291394},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.68"} +{"sensors":[{"euler":{"heading":34.083067197988825,"pitch":123.31598295518165,"roll":20.505278214601333},"location":"Left Knee"},{"euler":{"heading":17.20517715286808,"pitch":92.22064136525647,"roll":6.030315374940717},"location":"Left Ankle"},{"euler":{"heading":38.10394412731609,"pitch":-25.11446357156164,"roll":-23.32907368476333},"location":"Right Ankle"},{"euler":{"heading":89.20616991245504,"pitch":-160.6737582841882,"roll":50.64577001624006},"location":"Right Hip"},{"euler":{"heading":156.47135756839174,"pitch":-110.16205721480021,"roll":54.831554560460766},"location":"Right Knee"},{"euler":{"heading":23.003448654432702,"pitch":-139.24148552201817,"roll":58.33541244345312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.170"} +{"sensors":[{"euler":{"heading":35.760929533661056,"pitch":122.31683995863047,"roll":19.410839522165432},"location":"Left Knee"},{"euler":{"heading":18.94489657289648,"pitch":92.63366032910209,"roll":7.674281838913888},"location":"Left Ankle"},{"euler":{"heading":40.36118684503529,"pitch":-25.95969953100068,"roll":-21.81738897797992},"location":"Right Ankle"},{"euler":{"heading":88.08354269418146,"pitch":-161.06745576696915,"roll":50.38814604226475},"location":"Right Hip"},{"euler":{"heading":154.3254925314542,"pitch":-111.17517975371496,"roll":56.99383397175818},"location":"Right Knee"},{"euler":{"heading":21.201431045756728,"pitch":-141.31720782159707,"roll":58.850474662282934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.270"} +{"sensors":[{"euler":{"heading":38.74593974583883,"pitch":121.84674781816514,"roll":17.070924394466285},"location":"Left Knee"},{"euler":{"heading":21.938938144762133,"pitch":92.92415658951279,"roll":11.11192702171253},"location":"Left Ankle"},{"euler":{"heading":41.50192310759515,"pitch":-26.528337334181437,"roll":-21.145104152900245},"location":"Right Ankle"},{"euler":{"heading":87.83021120888307,"pitch":-161.1621092719954,"roll":50.279879988801},"location":"Right Hip"},{"euler":{"heading":152.94301496526043,"pitch":-111.94329639958481,"roll":58.24293511560268},"location":"Right Knee"},{"euler":{"heading":18.58444193400489,"pitch":-141.6615878325853,"roll":58.965768477961966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.371"} +{"sensors":[{"euler":{"heading":41.861882605892916,"pitch":121.06465469848457,"roll":14.751453051520231},"location":"Left Knee"},{"euler":{"heading":24.479635725174298,"pitch":92.92542588039423,"roll":14.668464546474409},"location":"Left Ankle"},{"euler":{"heading":42.06140233209977,"pitch":-26.781289975279623,"roll":-20.899434134369745},"location":"Right Ankle"},{"euler":{"heading":87.32551828448972,"pitch":-161.2834307154813,"roll":50.56835773073856},"location":"Right Hip"},{"euler":{"heading":151.95373122829545,"pitch":-112.77508808478599,"roll":58.8916456931174},"location":"Right Knee"},{"euler":{"heading":15.64498288858297,"pitch":-140.04098374433292,"roll":58.76093898200998},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.471"} +{"sensors":[{"euler":{"heading":43.13497207446083,"pitch":121.27848080739749,"roll":13.698995380786922},"location":"Left Knee"},{"euler":{"heading":25.014176144561596,"pitch":92.27259059151865,"roll":15.93068050864142},"location":"Left Ankle"},{"euler":{"heading":42.27574569696666,"pitch":-26.90911028653482,"roll":-20.9149457621142},"location":"Right Ankle"},{"euler":{"heading":87.2808853423524,"pitch":-161.31592246701933,"roll":51.06720635491477},"location":"Right Hip"},{"euler":{"heading":151.57771424241818,"pitch":-113.27805273065721,"roll":59.09220273205},"location":"Right Knee"},{"euler":{"heading":47.04912148910633,"pitch":-138.18809449801057,"roll":58.082133343145735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.571"} +{"sensors":[{"euler":{"heading":40.348598230234444,"pitch":122.5896845575613,"roll":14.607533949948591},"location":"Left Knee"},{"euler":{"heading":22.806195363254915,"pitch":91.18839567582589,"roll":14.462838229274267},"location":"Left Ankle"},{"euler":{"heading":42.18371096675939,"pitch":-26.775068780477543,"roll":-21.261919074383563},"location":"Right Ankle"},{"euler":{"heading":87.14326970852575,"pitch":-161.50584674905616,"roll":51.72074250183169},"location":"Right Hip"},{"euler":{"heading":151.50764425036164,"pitch":-113.64399328948578,"roll":58.8872368027898},"location":"Right Knee"},{"euler":{"heading":72.60821784711275,"pitch":-136.30932073747675,"roll":57.42033657672669},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.672"} +{"sensors":[{"euler":{"heading":36.325143238926024,"pitch":124.4895970680945,"roll":16.380897078334787},"location":"Left Knee"},{"euler":{"heading":18.994734444161864,"pitch":90.14193633303529,"roll":11.172672816516963},"location":"Left Ankle"},{"euler":{"heading":41.55543942130963,"pitch":-26.279223581958306,"roll":-21.956386265286778},"location":"Right Ankle"},{"euler":{"heading":87.18516817619036,"pitch":-161.69554042145342,"roll":52.48452499484209},"location":"Right Hip"},{"euler":{"heading":151.90805970445643,"pitch":-113.7848739372642,"roll":58.154799940215604},"location":"Right Knee"},{"euler":{"heading":59.826083780739594,"pitch":-135.09678040942677,"roll":56.976071174280236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.773"} +{"sensors":[{"euler":{"heading":33.83930452710808,"pitch":125.64992163272018,"roll":18.056912868983705},"location":"Left Knee"},{"euler":{"heading":16.59329663258019,"pitch":89.86684111500585,"roll":8.8791945086022},"location":"Left Ankle"},{"euler":{"heading":40.042199685988365,"pitch":-25.50355369997817,"roll":-23.042581005835533},"location":"Right Ankle"},{"euler":{"heading":87.59997428360222,"pitch":-161.97420503528426,"roll":53.23510581403373},"location":"Right Hip"},{"euler":{"heading":153.35958258134943,"pitch":-113.4486193297993,"roll":56.62996647166774},"location":"Right Knee"},{"euler":{"heading":49.93678121962972,"pitch":-134.36224665049124,"roll":56.758371019898306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.873"} +{"sensors":[{"euler":{"heading":32.695698650794974,"pitch":126.0458865751121,"roll":19.258396484288543},"location":"Left Knee"},{"euler":{"heading":15.45934504488365,"pitch":89.92112499691383,"roll":7.457866984334426},"location":"Left Ankle"},{"euler":{"heading":36.882826282607695,"pitch":-24.034724671594503,"roll":-24.524857396798293},"location":"Right Ankle"},{"euler":{"heading":88.68872583143312,"pitch":-161.62588562951652,"roll":53.49217085011272},"location":"Right Hip"},{"euler":{"heading":155.9273992947971,"pitch":-112.44874992370846,"roll":54.12057421941308},"location":"Right Knee"},{"euler":{"heading":41.81564986273662,"pitch":-133.97701481635485,"roll":56.739738804413804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.974"} +{"sensors":[{"euler":{"heading":32.15765102017928,"pitch":125.86316238953654,"roll":20.214792296724074},"location":"Left Knee"},{"euler":{"heading":15.244303639267386,"pitch":90.23778397183862,"roll":6.641422432149233},"location":"Left Ankle"},{"euler":{"heading":33.90354449049861,"pitch":-23.086117577816797,"roll":-25.539140442448552},"location":"Right Ankle"},{"euler":{"heading":89.6931552534546,"pitch":-161.07883308273597,"roll":53.01729098752234},"location":"Right Hip"},{"euler":{"heading":157.89318273738593,"pitch":-111.41319624914252,"roll":52.01635632280443},"location":"Right Knee"},{"euler":{"heading":35.504958919973994,"pitch":-134.28835727656624,"roll":56.91312882091845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.75"} +{"sensors":[{"euler":{"heading":32.12137912678899,"pitch":125.35299198570601,"roll":20.794836266209334},"location":"Left Knee"},{"euler":{"heading":16.06703965213576,"pitch":90.70862532280353,"roll":6.616079019079312},"location":"Left Ankle"},{"euler":{"heading":33.10501671999117,"pitch":-23.57138618267888,"roll":-25.898080975934835},"location":"Right Ankle"},{"euler":{"heading":90.59881527292492,"pitch":-160.54220171341981,"roll":52.10601411732138},"location":"Right Hip"},{"euler":{"heading":158.12939801027449,"pitch":-110.2799543854997,"roll":51.72942566295639},"location":"Right Knee"},{"euler":{"heading":30.640982763452087,"pitch":-135.2537936862207,"roll":57.23054843146088},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.176"} +{"sensors":[{"euler":{"heading":32.68621050246031,"pitch":124.57030489007533,"roll":20.962985140959795},"location":"Left Knee"},{"euler":{"heading":16.948780766901244,"pitch":91.14656854224303,"roll":6.914193007857386},"location":"Left Ankle"},{"euler":{"heading":35.22764171449453,"pitch":-24.77149302514778,"roll":-24.72465979811353},"location":"Right Ankle"},{"euler":{"heading":90.44857256333941,"pitch":-160.48467951011412,"roll":51.22196931206082},"location":"Right Hip"},{"euler":{"heading":156.50354668476928,"pitch":-109.32585575719128,"roll":53.55659223550972},"location":"Right Knee"},{"euler":{"heading":26.973465707653062,"pitch":-136.75165033318189,"roll":57.648570294030115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.277"} +{"sensors":[{"euler":{"heading":33.80267765396722,"pitch":123.71938346038667,"roll":20.520608104791705},"location":"Left Knee"},{"euler":{"heading":18.05719442329623,"pitch":91.51312590898856,"roll":7.7368625356792124},"location":"Left Ankle"},{"euler":{"heading":37.92283926696342,"pitch":-26.10714271804598,"roll":-22.925642072986456},"location":"Right Ankle"},{"euler":{"heading":89.57049992881406,"pitch":-160.68827732971067,"roll":50.70739396583838},"location":"Right Hip"},{"euler":{"heading":154.20916156179734,"pitch":-110.34717820303499,"roll":56.3157769483485},"location":"Right Knee"},{"euler":{"heading":24.071576981160913,"pitch":-138.48157786374165,"roll":58.169515242498406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.378"} +{"sensors":[{"euler":{"heading":35.51351095865829,"pitch":122.81860909758967,"roll":19.40092992725447},"location":"Left Knee"},{"euler":{"heading":19.84466784171939,"pitch":91.95183007204304,"roll":9.420634293336308},"location":"Left Ankle"},{"euler":{"heading":39.844289310712526,"pitch":-26.86984076637853,"roll":-21.696091379349106},"location":"Right Ankle"},{"euler":{"heading":88.39374632855007,"pitch":-160.98546876744666,"roll":50.37256432698651},"location":"Right Hip"},{"euler":{"heading":151.93813122811224,"pitch":-111.49726912059374,"roll":58.68169766295858},"location":"Right Knee"},{"euler":{"heading":22.01061496818547,"pitch":-140.62364101239712,"roll":58.72413965011762},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.479"} +{"sensors":[{"euler":{"heading":38.382830381267226,"pitch":122.1878253620903,"roll":17.19869952433348},"location":"Left Knee"},{"euler":{"heading":22.2951701881861,"pitch":92.39041968918092,"roll":12.31165814728151},"location":"Left Ankle"},{"euler":{"heading":40.63278989979971,"pitch":-27.31028430219704,"roll":-21.213704207573084},"location":"Right Ankle"},{"euler":{"heading":88.00097129887448,"pitch":-161.05819474128884,"roll":50.19443679149342},"location":"Right Hip"},{"euler":{"heading":150.2629186098229,"pitch":-111.95531758227685,"roll":60.16263120801399},"location":"Right Knee"},{"euler":{"heading":19.621555225384956,"pitch":-141.557183582842,"roll":58.99413845693003},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.579"} +{"sensors":[{"euler":{"heading":41.62996743897613,"pitch":121.25438111519165,"roll":14.807620505895969},"location":"Left Knee"},{"euler":{"heading":24.533505827978274,"pitch":92.81701504132701,"roll":15.593548036507055},"location":"Left Ankle"},{"euler":{"heading":40.86818709417684,"pitch":-27.54830737520892,"roll":-21.217156841995624},"location":"Right Ankle"},{"euler":{"heading":87.44750053663593,"pitch":-161.21318227689312,"roll":50.49104231090794},"location":"Right Hip"},{"euler":{"heading":149.2777013447642,"pitch":-112.97027028973416,"roll":60.84870722658858},"location":"Right Knee"},{"euler":{"heading":16.73792773038383,"pitch":-140.3091747057202,"roll":58.91740703665454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.680"} +{"sensors":[{"euler":{"heading":43.38503295343368,"pitch":121.18262067047151,"roll":13.53578883600964},"location":"Left Knee"},{"euler":{"heading":25.307987846026418,"pitch":92.52526547483228,"roll":16.839109195346037},"location":"Left Ankle"},{"euler":{"heading":40.971750445255694,"pitch":-27.59721990852101,"roll":-21.523491733625477},"location":"Right Ankle"},{"euler":{"heading":87.54723289051489,"pitch":-161.09183309984195,"roll":51.03886271172578},"location":"Right Hip"},{"euler":{"heading":148.91690459688505,"pitch":-113.59141031892474,"roll":61.04145816855279},"location":"Right Knee"},{"euler":{"heading":13.758504696935518,"pitch":-138.66264081243014,"roll":58.259389232040725},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.781"} +{"sensors":[{"euler":{"heading":41.01708179919564,"pitch":122.3364744952288,"roll":14.269602571063642},"location":"Left Knee"},{"euler":{"heading":23.19540075381176,"pitch":91.57161287878522,"roll":15.433485398620562},"location":"Left Ankle"},{"euler":{"heading":40.68793893126381,"pitch":-27.34421425975423,"roll":-21.937428617927058},"location":"Right Ankle"},{"euler":{"heading":87.68834670907992,"pitch":-161.06526156051515,"roll":51.73671219885244},"location":"Right Hip"},{"euler":{"heading":148.8117344580769,"pitch":-113.99294114547597,"roll":60.79970215857283},"location":"Right Knee"},{"euler":{"heading":45.37962374792791,"pitch":-136.88735856134684,"roll":57.54505916728169},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.883"} +{"sensors":[{"euler":{"heading":36.76548131720972,"pitch":124.17129397883481,"roll":16.16429100984755},"location":"Left Knee"},{"euler":{"heading":19.289634161991074,"pitch":90.71462171914929,"roll":12.00937009625339},"location":"Left Ankle"},{"euler":{"heading":39.94425791825778,"pitch":-26.69910421995529,"roll":-22.85895808974981},"location":"Right Ankle"},{"euler":{"heading":87.81578116470688,"pitch":-161.14823317401257,"roll":52.498975575679815},"location":"Right Hip"},{"euler":{"heading":149.05855849029282,"pitch":-114.2433155386396,"roll":60.05181079170654},"location":"Right Knee"},{"euler":{"heading":37.38270800708379,"pitch":-135.51876220080828,"roll":57.00569523141454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.983"} +{"sensors":[{"euler":{"heading":34.07500140415579,"pitch":125.55809225155822,"roll":17.849020820613525},"location":"Left Knee"},{"euler":{"heading":16.430479280781636,"pitch":90.42666700181394,"roll":9.285527875115486},"location":"Left Ankle"},{"euler":{"heading":38.35435695993286,"pitch":-25.776477687828862,"roll":-24.0971080608532},"location":"Right Ankle"},{"euler":{"heading":88.25306158457114,"pitch":-161.37194480983214,"roll":53.26601770736665},"location":"Right Hip"},{"euler":{"heading":150.2951412645029,"pitch":-114.01208440019697,"roll":58.57839131123759},"location":"Right Knee"},{"euler":{"heading":31.512607209480983,"pitch":-134.69057968828423,"roll":56.707888091806545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.84"} +{"sensors":[{"euler":{"heading":32.936249457052384,"pitch":125.96873776429125,"roll":19.15351445752422},"location":"Left Knee"},{"euler":{"heading":15.106053993155765,"pitch":90.6892910253455,"roll":7.575845000885487},"location":"Left Ankle"},{"euler":{"heading":35.435424119747495,"pitch":-24.697858320026178,"roll":-25.467182032742944},"location":"Right Ankle"},{"euler":{"heading":89.15212930805508,"pitch":-161.20576682110658,"roll":53.74011863406574},"location":"Right Hip"},{"euler":{"heading":152.95450409988638,"pitch":-113.11913872907893,"roll":56.10363168021097},"location":"Right Knee"},{"euler":{"heading":26.69428447814441,"pitch":-134.0779200479785,"roll":56.640550292308184},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.185"} +{"sensors":[{"euler":{"heading":32.431902756483844,"pitch":125.8230788914417,"roll":20.143668395065152},"location":"Left Knee"},{"euler":{"heading":14.58642023967446,"pitch":90.98044072774005,"roll":6.522256109396707},"location":"Left Ankle"},{"euler":{"heading":32.141718342339374,"pitch":-23.448358384752808,"roll":-26.819888669802467},"location":"Right Ankle"},{"euler":{"heading":90.0488082830432,"pitch":-160.68678742794864,"roll":53.56269936953077},"location":"Right Hip"},{"euler":{"heading":155.36979978730795,"pitch":-112.14466583179978,"roll":53.465947755226594},"location":"Right Knee"},{"euler":{"heading":23.141437396083084,"pitch":-134.27264836868602,"roll":56.82932091591073},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.285"} +{"sensors":[{"euler":{"heading":32.345936148672834,"pitch":125.44157288732873,"roll":20.724532712522816},"location":"Left Knee"},{"euler":{"heading":15.201373524443522,"pitch":91.35685568225435,"roll":6.258545463302548},"location":"Left Ankle"},{"euler":{"heading":30.978725019167225,"pitch":-23.37003648264779,"roll":-27.46722435410171},"location":"Right Ankle"},{"euler":{"heading":91.08027342870973,"pitch":-160.07448852611142,"roll":52.84924348972593},"location":"Right Hip"},{"euler":{"heading":156.25944996079218,"pitch":-110.98346013454442,"roll":52.28012544769735},"location":"Right Knee"},{"euler":{"heading":20.547471393172323,"pitch":-135.20985254886043,"roll":57.142822131631135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.386"} +{"sensors":[{"euler":{"heading":32.68577301017927,"pitch":124.82881876904139,"roll":20.91125982257866},"location":"Left Knee"},{"euler":{"heading":15.83569336947938,"pitch":91.60828457924197,"roll":6.346912191121897},"location":"Left Ankle"},{"euler":{"heading":32.34513733057694,"pitch":-24.24446885747101,"roll":-26.73312398957348},"location":"Right Ankle"},{"euler":{"heading":91.50271912116716,"pitch":-159.68690312298722,"roll":51.942061509393966},"location":"Right Hip"},{"euler":{"heading":155.2043022633224,"pitch":-109.6711205032101,"roll":54.71483589238117},"location":"Right Knee"},{"euler":{"heading":18.64945655530584,"pitch":-136.70594378546113,"roll":57.50379056777051},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.486"} +{"sensors":[{"euler":{"heading":33.56450713083449,"pitch":123.98303276490367,"roll":20.63432645911418},"location":"Left Knee"},{"euler":{"heading":16.81286245217133,"pitch":91.97848370498076,"roll":6.890607035468421},"location":"Left Ankle"},{"euler":{"heading":35.330780831155856,"pitch":-25.344876917279574,"roll":-25.052207261359843},"location":"Right Ankle"},{"euler":{"heading":90.77846182015791,"pitch":-159.85937382194166,"roll":51.19251883563532},"location":"Right Hip"},{"euler":{"heading":152.8064591152778,"pitch":-110.13046728855687,"roll":57.0130696179613},"location":"Right Knee"},{"euler":{"heading":17.26183269435553,"pitch":-138.49967222403927,"roll":57.937437446806655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.587"} +{"sensors":[{"euler":{"heading":35.074739582122284,"pitch":123.06906939783295,"roll":19.73569782930316},"location":"Left Knee"},{"euler":{"heading":18.415583958015723,"pitch":92.41453789736515,"roll":8.179254171689351},"location":"Left Ankle"},{"euler":{"heading":37.9656723095747,"pitch":-26.055233980343424,"roll":-23.513351682889965},"location":"Right Ankle"},{"euler":{"heading":89.29364459033185,"pitch":-160.3067583326563,"roll":50.76397927041085},"location":"Right Hip"},{"euler":{"heading":150.09994431398624,"pitch":-111.66978188758941,"roll":59.46723841998778},"location":"Right Knee"},{"euler":{"heading":16.286171099739484,"pitch":-140.55677984135735,"roll":58.44279454515322},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.687"} +{"sensors":[{"euler":{"heading":37.518213709830015,"pitch":122.2896091857268,"roll":17.840505190347937},"location":"Left Knee"},{"euler":{"heading":20.649413256571115,"pitch":92.678315701011,"roll":10.677067757242229},"location":"Left Ankle"},{"euler":{"heading":39.07079912241279,"pitch":-26.341299925813818,"roll":-22.899714919898862},"location":"Right Ankle"},{"euler":{"heading":88.434596323097,"pitch":-160.53917150562233,"roll":50.483220035109554},"location":"Right Hip"},{"euler":{"heading":148.09788402779338,"pitch":-112.3670683135739,"roll":60.98640830666692},"location":"Right Knee"},{"euler":{"heading":15.48135514500343,"pitch":-142.26957256650698,"roll":58.84657182034178},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.788"} +{"sensors":[{"euler":{"heading":40.82095002397601,"pitch":121.4356623748959,"roll":15.39431976563257},"location":"Left Knee"},{"euler":{"heading":23.715094229927416,"pitch":93.16670458184478,"roll":14.191736928879925},"location":"Left Ankle"},{"euler":{"heading":39.648683829398465,"pitch":-26.3920681037275,"roll":-22.659551610140667},"location":"Right Ankle"},{"euler":{"heading":87.57068523513776,"pitch":-160.80892946987743,"roll":50.686956687152026},"location":"Right Hip"},{"euler":{"heading":146.64884909798536,"pitch":-113.46770472493337,"roll":61.73680997596817},"location":"Right Knee"},{"euler":{"heading":13.282538046632059,"pitch":-141.48887542899533,"roll":58.87305727920671},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.889"} +{"sensors":[{"euler":{"heading":42.93664145285902,"pitch":121.4180012559707,"roll":13.769412993278397},"location":"Left Knee"},{"euler":{"heading":24.78056070715983,"pitch":92.56226136679948,"roll":15.933309024972298},"location":"Left Ankle"},{"euler":{"heading":39.92566004418687,"pitch":-26.408280424562047,"roll":-22.733553890024673},"location":"Right Ankle"},{"euler":{"heading":87.3389403905764,"pitch":-160.80926911627674,"roll":51.18641421009994},"location":"Right Hip"},{"euler":{"heading":146.1163647200534,"pitch":-114.19015903287122,"roll":61.86886144368721},"location":"Right Knee"},{"euler":{"heading":44.95423092922971,"pitch":-139.83713813367186,"roll":58.29654724091228},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.990"} +{"sensors":[{"euler":{"heading":41.220688860525904,"pitch":122.46623021417258,"roll":14.154011329320834},"location":"Left Knee"},{"euler":{"heading":23.048918754990055,"pitch":91.58130830892262,"roll":14.911114779940378},"location":"Left Ankle"},{"euler":{"heading":39.90869025352045,"pitch":-26.3634974734094,"roll":-22.990766552753932},"location":"Right Ankle"},{"euler":{"heading":87.49401580733516,"pitch":-160.76201399285256,"roll":51.80482948860074},"location":"Right Hip"},{"euler":{"heading":146.20355416434467,"pitch":-114.52878862710386,"roll":61.56623468459013},"location":"Right Knee"},{"euler":{"heading":70.74429105616422,"pitch":-137.93824130130199,"roll":57.519229447225875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.90"} +{"sensors":[{"euler":{"heading":37.10460847752605,"pitch":124.16980054267296,"roll":15.994296992100136},"location":"Left Knee"},{"euler":{"heading":19.324272859690133,"pitch":90.77690264086091,"roll":11.768556939223867},"location":"Left Ankle"},{"euler":{"heading":39.45484264335072,"pitch":-26.037599731073335,"roll":-23.604011568900745},"location":"Right Ankle"},{"euler":{"heading":87.85880369398554,"pitch":-160.7251993169802,"roll":52.447652368713484},"location":"Right Hip"},{"euler":{"heading":146.69706162727087,"pitch":-114.71629995514192,"roll":60.79298943198331},"location":"Right Knee"},{"euler":{"heading":91.17150841101335,"pitch":-137.17717140929344,"roll":56.346174645772486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.191"} +{"sensors":[{"euler":{"heading":33.53817120791139,"pitch":125.91345933579163,"roll":17.90328323735498},"location":"Left Knee"},{"euler":{"heading":16.072396413078526,"pitch":90.31655484225548,"roll":8.621723979112236},"location":"Left Ankle"},{"euler":{"heading":38.405467647219865,"pitch":-25.36814860578127,"roll":-24.64643692584565},"location":"Right Ankle"},{"euler":{"heading":88.31206961500692,"pitch":-160.94158955445545,"roll":53.15417823260228},"location":"Right Hip"},{"euler":{"heading":147.95726929618246,"pitch":-114.54709174820435,"roll":59.39769808177238},"location":"Right Knee"},{"euler":{"heading":75.2575527990348,"pitch":-136.2744671569397,"roll":55.93869042933778},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.291"} +{"sensors":[{"euler":{"heading":31.896217409259872,"pitch":126.64701903976224,"roll":19.357193164312424},"location":"Left Knee"},{"euler":{"heading":14.61071567333245,"pitch":90.37562220193513,"roll":6.784935554749582},"location":"Left Ankle"},{"euler":{"heading":36.24421817802901,"pitch":-24.613746275964978,"roll":-25.928584186576053},"location":"Right Ankle"},{"euler":{"heading":88.99830455967883,"pitch":-161.19684876370806,"roll":53.79349587881709},"location":"Right Hip"},{"euler":{"heading":150.70137455337775,"pitch":-113.66865192870848,"roll":56.97579872583929},"location":"Right Knee"},{"euler":{"heading":62.50665279881603,"pitch":-135.54681219050457,"roll":55.78399919163459},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.391"} +{"sensors":[{"euler":{"heading":31.390075808732686,"pitch":126.61519794220654,"roll":20.399315872242042},"location":"Left Knee"},{"euler":{"heading":14.121384688656697,"pitch":90.64310185807227,"roll":5.7530740940022635},"location":"Left Ankle"},{"euler":{"heading":32.66721595777966,"pitch":-22.504232579320778,"roll":-27.629790282890834},"location":"Right Ankle"},{"euler":{"heading":89.94663797772165,"pitch":-160.78573323728338,"roll":53.73585056812895},"location":"Right Hip"},{"euler":{"heading":153.22767439650437,"pitch":-112.60028947782875,"roll":54.171915671966595},"location":"Right Knee"},{"euler":{"heading":52.38727642912829,"pitch":-135.34021872534387,"roll":55.99479609562136},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.492"} +{"sensors":[{"euler":{"heading":31.27291300068125,"pitch":126.27724782766226,"roll":21.068822588223135},"location":"Left Knee"},{"euler":{"heading":14.356868929014686,"pitch":90.98620776238592,"roll":5.247430523071235},"location":"Left Ankle"},{"euler":{"heading":30.463697980132515,"pitch":-21.617979119674203,"roll":-28.5984197501995},"location":"Right Ankle"},{"euler":{"heading":90.99661649440141,"pitch":-160.169967430677,"roll":53.13077515415693},"location":"Right Hip"},{"euler":{"heading":154.6124955697172,"pitch":-111.41952384728917,"roll":52.371969920100476},"location":"Right Knee"},{"euler":{"heading":44.18477642649928,"pitch":-135.9023862079701,"roll":56.25093934442044},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.593"} +{"sensors":[{"euler":{"heading":31.6526048313895,"pitch":125.56716427301147,"roll":21.47844737851817},"location":"Left Knee"},{"euler":{"heading":15.001526546966133,"pitch":91.50476151113827,"roll":5.164440637637653},"location":"Left Ankle"},{"euler":{"heading":31.013801687662646,"pitch":-22.40937289426381,"roll":-28.333409351340116},"location":"Right Ankle"},{"euler":{"heading":91.45800214529945,"pitch":-159.7257371432197,"roll":52.20870311145974},"location":"Right Hip"},{"euler":{"heading":154.12926195897361,"pitch":-110.024086535942,"roll":52.66357822975528},"location":"Right Knee"},{"euler":{"heading":37.77178907981774,"pitch":-137.0947879293534,"roll":56.58973252388278},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.694"} +{"sensors":[{"euler":{"heading":32.54613623438929,"pitch":124.55601828844735,"roll":21.48049756995493},"location":"Left Knee"},{"euler":{"heading":15.957433648704074,"pitch":92.09289402746764,"roll":5.475790154093745},"location":"Left Ankle"},{"euler":{"heading":33.99098174192898,"pitch":-23.630836545774986,"roll":-26.82131221461189},"location":"Right Ankle"},{"euler":{"heading":90.96776929888514,"pitch":-159.75182637607088,"roll":51.3565071770073},"location":"Right Hip"},{"euler":{"heading":151.9737797502594,"pitch":-109.71263930967929,"roll":54.82400045353444},"location":"Right Knee"},{"euler":{"heading":32.78838089385415,"pitch":-138.65533244751603,"roll":57.050876026789275},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.795"} +{"sensors":[{"euler":{"heading":33.86634422509336,"pitch":123.40324518183643,"roll":20.893767282386374},"location":"Left Knee"},{"euler":{"heading":17.495183406799917,"pitch":92.72615071366747,"roll":6.494740717377679},"location":"Left Ankle"},{"euler":{"heading":36.916208740923096,"pitch":-24.753944485613754,"roll":-25.042826974023363},"location":"Right Ankle"},{"euler":{"heading":89.44270403934617,"pitch":-160.2510584825453,"roll":50.924258848851984},"location":"Right Hip"},{"euler":{"heading":149.25167874671303,"pitch":-115.9468756316299,"roll":57.55774798049882},"location":"Right Knee"},{"euler":{"heading":29.040908945777012,"pitch":-140.50143774665338,"roll":57.68812967202508},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.895"} +{"sensors":[{"euler":{"heading":35.85101584341582,"pitch":122.36012952704388,"roll":19.35809267930711},"location":"Left Knee"},{"euler":{"heading":19.479618757755333,"pitch":92.84732552763458,"roll":8.706895442087475},"location":"Left Ankle"},{"euler":{"heading":38.5682179570343,"pitch":-25.431334335781614,"roll":-24.069667918866188},"location":"Right Ankle"},{"euler":{"heading":88.34261496256526,"pitch":-160.64929340523562,"roll":50.64608895402753},"location":"Right Hip"},{"euler":{"heading":147.11200503506328,"pitch":-116.62374884445674,"roll":59.454753147809875},"location":"Right Knee"},{"euler":{"heading":26.067607933268125,"pitch":-142.05302627079163,"roll":58.34205361308379},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.996"} +{"sensors":[{"euler":{"heading":39.06940523796468,"pitch":121.68972431819272,"roll":16.934015476569932},"location":"Left Knee"},{"euler":{"heading":22.87022861791749,"pitch":93.25423897804211,"roll":12.373305255736966},"location":"Left Ankle"},{"euler":{"heading":39.55821753224777,"pitch":-25.854037685362282,"roll":-23.510127154554876},"location":"Right Ankle"},{"euler":{"heading":87.59049591965766,"pitch":-161.0096462619783,"roll":50.75704371376353},"location":"Right Hip"},{"euler":{"heading":145.75837814974017,"pitch":-117.33730477532394,"roll":60.48165016229838},"location":"Right Knee"},{"euler":{"heading":22.04567517911749,"pitch":-141.47723261908507,"roll":58.3689688660616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.96"} +{"sensors":[{"euler":{"heading":41.88297818468995,"pitch":121.29712242696161,"roll":14.877270503933932},"location":"Left Knee"},{"euler":{"heading":24.814113197663737,"pitch":92.59985190702565,"roll":15.108307974862239},"location":"Left Ankle"},{"euler":{"heading":40.04778149054274,"pitch":-26.14140648982407,"roll":-23.259460889590216},"location":"Right Ankle"},{"euler":{"heading":87.15896620583666,"pitch":-161.27626750510797,"roll":51.20227175278749},"location":"Right Hip"},{"euler":{"heading":145.09592800752088,"pitch":-117.80462452524594,"roll":60.91145783805422},"location":"Right Knee"},{"euler":{"heading":18.08070127522319,"pitch":-139.80282161465274,"roll":57.882027352097815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.197"} +{"sensors":[{"euler":{"heading":41.96912889428588,"pitch":121.82771759586906,"roll":14.561953218390459},"location":"Left Knee"},{"euler":{"heading":23.991968871521607,"pitch":91.75206512727834,"roll":15.092059879581187},"location":"Left Ankle"},{"euler":{"heading":40.27622200334544,"pitch":-26.419275282053945,"roll":-23.335849922308814},"location":"Right Ankle"},{"euler":{"heading":87.16234860528998,"pitch":-161.44618273180933,"roll":51.80728796853089},"location":"Right Hip"},{"euler":{"heading":145.10642816420403,"pitch":-117.93022513925632,"roll":60.86637263569106},"location":"Right Knee"},{"euler":{"heading":48.90674296611043,"pitch":-137.89529852323037,"roll":57.156031345737496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.297"} +{"sensors":[{"euler":{"heading":38.51410158052018,"pitch":123.31259692906978,"roll":16.08994929013175},"location":"Left Knee"},{"euler":{"heading":20.423433183477524,"pitch":90.94330684544084,"roll":12.38413302974943},"location":"Left Ankle"},{"euler":{"heading":39.98764423564266,"pitch":-26.403172984056692,"roll":-23.7914174497638},"location":"Right Ankle"},{"euler":{"heading":87.37914918470297,"pitch":-161.59993478582876,"roll":52.426095755438986},"location":"Right Hip"},{"euler":{"heading":145.58470498325704,"pitch":-117.73472200824864,"roll":60.33806093457572},"location":"Right Knee"},{"euler":{"heading":40.122076676627266,"pitch":-136.26435333901279,"roll":56.59422057480705},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.398"} +{"sensors":[{"euler":{"heading":34.537684621629516,"pitch":125.25670330151263,"roll":18.025508463739534},"location":"Left Knee"},{"euler":{"heading":17.41828575637845,"pitch":90.2947159387837,"roll":8.946876444750439},"location":"Left Ankle"},{"euler":{"heading":38.984412391507355,"pitch":-25.90108719079092,"roll":-24.697109684448787},"location":"Right Ankle"},{"euler":{"heading":87.81231348992868,"pitch":-161.78662364869277,"roll":53.093055037120536},"location":"Right Hip"},{"euler":{"heading":146.69569974227937,"pitch":-117.27244133140593,"roll":59.217911619491744},"location":"Right Knee"},{"euler":{"heading":33.46427920798117,"pitch":-135.26417629804786,"roll":56.180976931597186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.499"} +{"sensors":[{"euler":{"heading":32.583821132067264,"pitch":126.13597117872494,"roll":19.693713415258774},"location":"Left Knee"},{"euler":{"heading":15.38573647706718,"pitch":90.72446979509552,"roll":6.710548844821331},"location":"Left Ankle"},{"euler":{"heading":36.80149180849557,"pitch":-25.06031727391976,"roll":-25.932819549607967},"location":"Right Ankle"},{"euler":{"heading":88.6366672517668,"pitch":-161.99122559378338,"roll":53.726296407289695},"location":"Right Hip"},{"euler":{"heading":149.0025283279377,"pitch":-116.28933084366554,"roll":57.20550473989139},"location":"Right Knee"},{"euler":{"heading":28.42905345235284,"pitch":-134.69207824696718,"roll":55.967566363531894},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.600"} +{"sensors":[{"euler":{"heading":31.774725756604795,"pitch":126.21221654530744,"roll":20.876238581650117},"location":"Left Knee"},{"euler":{"heading":14.339799341899578,"pitch":91.01821842738579,"roll":5.388498032887654},"location":"Left Ankle"},{"euler":{"heading":33.46833883936412,"pitch":-23.336385694816197,"roll":-27.58606029635856},"location":"Right Ankle"},{"euler":{"heading":90.08453720183198,"pitch":-161.4748184952646,"roll":53.6750434410872},"location":"Right Hip"},{"euler":{"heading":151.48588781445926,"pitch":-114.95978590023897,"roll":54.611637916663355},"location":"Right Knee"},{"euler":{"heading":24.532137797660276,"pitch":-134.37059612992445,"roll":56.089557763135836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.700"} +{"sensors":[{"euler":{"heading":31.516520266033794,"pitch":125.90665469707629,"roll":21.643065445070608},"location":"Left Knee"},{"euler":{"heading":13.941175845998611,"pitch":91.42076631928539,"roll":4.6024334272892755},"location":"Left Ankle"},{"euler":{"heading":30.941297291116147,"pitch":-22.460153349338167,"roll":-28.576685498093813},"location":"Right Ankle"},{"euler":{"heading":91.39490299427389,"pitch":-160.77566758439048,"roll":52.97468207073461},"location":"Right Hip"},{"euler":{"heading":153.23983038900786,"pitch":-113.40594066604118,"roll":52.68068400623166},"location":"Right Knee"},{"euler":{"heading":21.460253672034398,"pitch":-134.73962412036522,"roll":56.34263212332989},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.801"} +{"sensors":[{"euler":{"heading":31.57264073566306,"pitch":125.5350344738434,"roll":21.96833889029835},"location":"Left Knee"},{"euler":{"heading":14.292548432370136,"pitch":91.7374594133916,"roll":4.408384919189281},"location":"Left Ankle"},{"euler":{"heading":30.982742640148334,"pitch":-22.90389652299607,"roll":-28.551554873201372},"location":"Right Ankle"},{"euler":{"heading":92.11111061528277,"pitch":-160.27382011707246,"roll":51.92477098745966},"location":"Right Hip"},{"euler":{"heading":153.02316113242784,"pitch":-111.79776437931223,"roll":52.69916829997688},"location":"Right Knee"},{"euler":{"heading":18.950943615670596,"pitch":-135.59079011523514,"roll":56.72621080296257},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.901"} +{"sensors":[{"euler":{"heading":32.07043549421598,"pitch":125.0501319047669,"roll":21.8702804212925},"location":"Left Knee"},{"euler":{"heading":14.948860994626475,"pitch":91.97646464064547,"roll":4.565732487184943},"location":"Left Ankle"},{"euler":{"heading":33.40074640356517,"pitch":-23.88806880896552,"roll":-27.268409580905267},"location":"Right Ankle"},{"euler":{"heading":91.69872895172064,"pitch":-160.20615584643846,"roll":50.96878730643603},"location":"Right Hip"},{"euler":{"heading":151.0205431416479,"pitch":-110.6636123480336,"roll":54.570830255185705},"location":"Right Knee"},{"euler":{"heading":17.03306535994465,"pitch":-136.85444954398977,"roll":57.21004366596034},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.2"} +{"sensors":[{"euler":{"heading":33.10823190641528,"pitch":124.36165273456024,"roll":21.294034531390487},"location":"Left Knee"},{"euler":{"heading":16.140232841705185,"pitch":92.16300797618939,"roll":5.296697834757322},"location":"Left Ankle"},{"euler":{"heading":36.504268382574644,"pitch":-25.087777779435264,"roll":-25.340378701014902},"location":"Right Ankle"},{"euler":{"heading":90.38604084617889,"pitch":-160.4540841306795,"roll":50.43667872538052},"location":"Right Hip"},{"euler":{"heading":148.27497450205826,"pitch":-114.19739738729221,"roll":57.263262193657674},"location":"Right Knee"},{"euler":{"heading":15.587560200802029,"pitch":-138.36651254082776,"roll":57.832156501939444},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.103"} +{"sensors":[{"euler":{"heading":34.80221215674759,"pitch":123.49490747914464,"roll":20.082948302501727},"location":"Left Knee"},{"euler":{"heading":17.995632335973205,"pitch":92.47449377445396,"roll":6.891543457532469},"location":"Left Ankle"},{"euler":{"heading":38.712491559423064,"pitch":-25.834481993172314,"roll":-23.916798219791886},"location":"Right Ankle"},{"euler":{"heading":88.72857311326405,"pitch":-160.86273279254905,"roll":50.133546160277255},"location":"Right Hip"},{"euler":{"heading":145.73558582778028,"pitch":-116.66375856276014,"roll":59.46770975675824},"location":"Right Knee"},{"euler":{"heading":14.665575692095697,"pitch":-140.36494327114184,"roll":58.49021582491045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.205"} +{"sensors":[{"euler":{"heading":37.65773231687076,"pitch":122.805736220493,"roll":17.845567492967938},"location":"Left Knee"},{"euler":{"heading":20.87630685935403,"pitch":92.86931035530542,"roll":10.035037495141449},"location":"Left Ankle"},{"euler":{"heading":39.71796575353185,"pitch":-26.04047672460185,"roll":-23.34207263556057},"location":"Right Ankle"},{"euler":{"heading":87.9362445696504,"pitch":-161.0422589383991,"roll":50.01382705498209},"location":"Right Hip"},{"euler":{"heading":143.79902454021038,"pitch":-117.68860987632951,"roll":60.92738173133105},"location":"Right Knee"},{"euler":{"heading":13.173437638960996,"pitch":-141.1922976763259,"roll":58.847865001199295},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.305"} +{"sensors":[{"euler":{"heading":40.828172169685075,"pitch":122.06916147920394,"roll":15.523751977199753},"location":"Left Knee"},{"euler":{"heading":23.16960162619036,"pitch":92.86985158231305,"roll":13.147045750749509},"location":"Left Ankle"},{"euler":{"heading":40.255872158601676,"pitch":-25.905829611620202,"roll":-23.208462773198157},"location":"Right Ankle"},{"euler":{"heading":86.9545495973814,"pitch":-161.30577790322891,"roll":50.42273798346223},"location":"Right Hip"},{"euler":{"heading":142.37983888838053,"pitch":-118.85378459359343,"roll":61.71312483712184},"location":"Right Knee"},{"euler":{"heading":11.190677256426966,"pitch":-139.7590221605289,"roll":58.8623368310895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.406"} +{"sensors":[{"euler":{"heading":41.91996202666619,"pitch":122.52037118588385,"roll":14.55240742962705},"location":"Left Knee"},{"euler":{"heading":23.442115816040978,"pitch":91.94287333591188,"roll":14.203213407373743},"location":"Left Ankle"},{"euler":{"heading":40.708199950299104,"pitch":-25.837498563364292,"roll":-23.271867074889453},"location":"Right Ankle"},{"euler":{"heading":86.56691036087157,"pitch":-161.3599251107693,"roll":51.09596198056435},"location":"Right Hip"},{"euler":{"heading":141.7707248370311,"pitch":-119.46222408504718,"roll":61.96633550429117},"location":"Right Knee"},{"euler":{"heading":43.021441218896804,"pitch":-137.77243118203654,"roll":58.22739349835292},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.507"} +{"sensors":[{"euler":{"heading":39.57967102099103,"pitch":123.74316674881214,"roll":15.486780781451474},"location":"Left Knee"},{"euler":{"heading":20.888791476715305,"pitch":91.27648774394501,"roll":12.5608137666977},"location":"Left Ankle"},{"euler":{"heading":40.5553783808234,"pitch":-25.543800503434046,"roll":-23.54921642939106},"location":"Right Ankle"},{"euler":{"heading":86.70730046476353,"pitch":-161.29596072457502,"roll":51.782434596574774},"location":"Right Hip"},{"euler":{"heading":141.71193568177105,"pitch":-119.65012205233124,"roll":61.77334268525043},"location":"Right Knee"},{"euler":{"heading":69.23901395330384,"pitch":-135.962923900118,"roll":57.53394294813423},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.608"} +{"sensors":[{"euler":{"heading":35.73716363392459,"pitch":125.56308089402235,"roll":17.27757585319217},"location":"Left Knee"},{"euler":{"heading":17.16317270247715,"pitch":90.26921111103444,"roll":9.249437823341216},"location":"Left Ankle"},{"euler":{"heading":39.800045638728,"pitch":-24.945103221634376,"roll":-24.210409174192996},"location":"Right Ankle"},{"euler":{"heading":87.0719546485386,"pitch":-161.29753402185932,"roll":52.53440332626314},"location":"Right Hip"},{"euler":{"heading":142.41290794624382,"pitch":-119.43370124462531,"roll":60.9209432240081},"location":"Right Knee"},{"euler":{"heading":57.04954739271388,"pitch":-134.77738923657003,"roll":57.06698013322549},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.711"} +{"sensors":[{"euler":{"heading":33.38759400740787,"pitch":126.63318100871447,"roll":18.915857606334633},"location":"Left Knee"},{"euler":{"heading":14.57637411746196,"pitch":89.97011827443221,"roll":6.704899637587538},"location":"Left Ankle"},{"euler":{"heading":38.254112025971494,"pitch":-24.17148997474307,"roll":-25.34972900445548},"location":"Right Ankle"},{"euler":{"heading":87.65590786150403,"pitch":-161.53676996429346,"roll":53.36347377979617},"location":"Right Hip"},{"euler":{"heading":144.02134679656695,"pitch":-118.75629753187982,"roll":59.430245972588786},"location":"Right Knee"},{"euler":{"heading":47.580121953599985,"pitch":-133.96027669318886,"roll":56.82279634834745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.812"} +{"sensors":[{"euler":{"heading":32.409072877784396,"pitch":126.96534001780262,"roll":20.017798247650425},"location":"Left Knee"},{"euler":{"heading":13.635477173258241,"pitch":90.12753876945057,"roll":5.436893974660714},"location":"Left Ankle"},{"euler":{"heading":35.1155313724729,"pitch":-23.04340447872293,"roll":-26.74928019740597},"location":"Right Ankle"},{"euler":{"heading":88.74641479912107,"pitch":-161.23006153552174,"roll":53.77479643660013},"location":"Right Hip"},{"euler":{"heading":147.10409113303749,"pitch":-117.45367611015249,"roll":56.92796150197876},"location":"Right Knee"},{"euler":{"heading":39.63037160412717,"pitch":-133.2743996853491,"roll":56.76236383278148},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.913"} +{"sensors":[{"euler":{"heading":32.214282224108196,"pitch":126.70109820285704,"roll":20.794940489381307},"location":"Left Knee"},{"euler":{"heading":13.542836852953684,"pitch":90.55535941808094,"roll":4.7116240927334845},"location":"Left Ankle"},{"euler":{"heading":32.02842320114844,"pitch":-22.135588872332367,"roll":-28.04542573044693},"location":"Right Ankle"},{"euler":{"heading":90.18628898888007,"pitch":-160.57202903421523,"roll":53.3384302210038},"location":"Right Hip"},{"euler":{"heading":150.09197282040813,"pitch":-115.98959168360916,"roll":54.3129334966149},"location":"Right Knee"},{"euler":{"heading":33.57891339535822,"pitch":-133.31369582054708,"roll":57.0049453367074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.14"} +{"sensors":[{"euler":{"heading":32.44717815295297,"pitch":126.0874379896733,"roll":21.29007136919115},"location":"Left Knee"},{"euler":{"heading":14.013951361301341,"pitch":91.00788204474823,"roll":4.548805984465954},"location":"Left Ankle"},{"euler":{"heading":31.195115077820983,"pitch":-22.306995527753138,"roll":-28.540510451738268},"location":"Right Ankle"},{"euler":{"heading":91.3771470166816,"pitch":-159.96470120800433,"roll":52.360933160535915},"location":"Right Hip"},{"euler":{"heading":151.05806548158324,"pitch":-114.29022379363519,"roll":53.36164304055819},"location":"Right Knee"},{"euler":{"heading":29.034212255265324,"pitch":-134.12214390497712,"roll":57.40875583032212},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.114"} +{"sensors":[{"euler":{"heading":33.08377115664357,"pitch":125.19921492948254,"roll":21.500290657761646},"location":"Left Knee"},{"euler":{"heading":14.792089708867216,"pitch":91.56599118244503,"roll":4.657124163844188},"location":"Left Ankle"},{"euler":{"heading":32.35584866060077,"pitch":-23.60954150974477,"roll":-27.436774987870518},"location":"Right Ankle"},{"euler":{"heading":91.72201765997367,"pitch":-159.75402792840052,"roll":51.286170587728385},"location":"Right Hip"},{"euler":{"heading":150.19630557718276,"pitch":-112.60982075863882,"roll":54.51630329919949},"location":"Right Knee"},{"euler":{"heading":25.693515617754286,"pitch":-135.64441434235337,"roll":57.904950649952255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.215"} +{"sensors":[{"euler":{"heading":34.21143418973913,"pitch":124.18145294414846,"roll":21.19705232017739},"location":"Left Knee"},{"euler":{"heading":15.827564147980617,"pitch":92.08290084721284,"roll":5.224817887100101},"location":"Left Ankle"},{"euler":{"heading":35.2800981802373,"pitch":-25.07355767275136,"roll":-25.40354874743049},"location":"Right Ankle"},{"euler":{"heading":91.08287468409218,"pitch":-159.9736211540871,"roll":50.4860586418733},"location":"Right Hip"},{"euler":{"heading":147.94491752745196,"pitch":-113.28902975184299,"roll":57.083125342392854},"location":"Right Knee"},{"euler":{"heading":23.118680168720598,"pitch":-137.44399576440614,"roll":58.46690582092426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.315"} +{"sensors":[{"euler":{"heading":35.78874728707728,"pitch":123.11187279767383,"roll":20.292456897727075},"location":"Left Knee"},{"euler":{"heading":17.448299477809122,"pitch":92.63981913480201,"roll":6.541126318370017},"location":"Left Ankle"},{"euler":{"heading":37.85877502655098,"pitch":-26.160497107554203,"roll":-23.658857916437274},"location":"Right Ankle"},{"euler":{"heading":89.94123312130769,"pitch":-160.392301973376,"roll":49.91663528064227},"location":"Right Hip"},{"euler":{"heading":145.79827276468305,"pitch":-114.13549603987357,"roll":59.33443494753077},"location":"Right Knee"},{"euler":{"heading":21.26605594557222,"pitch":-139.7085400597941,"roll":58.999186280598636},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.416"} +{"sensors":[{"euler":{"heading":38.23363920583132,"pitch":122.4115752222236,"roll":18.165943367132098},"location":"Left Knee"},{"euler":{"heading":19.738495629113604,"pitch":92.68002661912324,"roll":9.325563455863074},"location":"Left Ankle"},{"euler":{"heading":39.042724820162114,"pitch":-26.6267997502071,"roll":-22.86491127088159},"location":"Right Ankle"},{"euler":{"heading":89.27994240837299,"pitch":-160.67008558280287,"roll":49.63919057714892},"location":"Right Hip"},{"euler":{"heading":144.11194607104358,"pitch":-114.53283321565944,"roll":60.75327690932271},"location":"Right Knee"},{"euler":{"heading":19.475645106210845,"pitch":-141.28799045354077,"roll":59.35003683536681},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.517"} +{"sensors":[{"euler":{"heading":41.63860663533193,"pitch":121.39739371110561,"roll":15.581785124024195},"location":"Left Knee"},{"euler":{"heading":22.96923587234823,"pitch":92.98989352030665,"roll":13.212551981269506},"location":"Left Ankle"},{"euler":{"heading":39.53651700705623,"pitch":-26.816878393054086,"roll":-22.598332117404112},"location":"Right Ankle"},{"euler":{"heading":88.57200968206986,"pitch":-160.9392809709276,"roll":49.798364005433484},"location":"Right Hip"},{"euler":{"heading":142.99277715314886,"pitch":-115.36799833346441,"roll":61.39505841689348},"location":"Right Knee"},{"euler":{"heading":16.38064437937661,"pitch":-139.75048724780538,"roll":59.32268491633832},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.618"} +{"sensors":[{"euler":{"heading":44.04014524890343,"pitch":121.22284959000885,"roll":13.748795880135463},"location":"Left Knee"},{"euler":{"heading":24.752492846401626,"pitch":92.42605067418715,"roll":15.695307500037654},"location":"Left Ankle"},{"euler":{"heading":39.72085712782752,"pitch":-26.804571283509887,"roll":-22.58303297478537},"location":"Right Ankle"},{"euler":{"heading":88.45014382665262,"pitch":-160.97478340194675,"roll":50.3228957616624},"location":"Right Hip"},{"euler":{"heading":142.46284786212595,"pitch":-116.07615597361779,"roll":61.52394712926379},"location":"Right Knee"},{"euler":{"heading":47.59797254495943,"pitch":-137.830106536076,"roll":58.66178693078209},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.718"} +{"sensors":[{"euler":{"heading":43.12304824312693,"pitch":121.94481449305783,"roll":13.879707189655814},"location":"Left Knee"},{"euler":{"heading":23.656139429351875,"pitch":91.67208572225499,"roll":15.355682277678726},"location":"Left Ankle"},{"euler":{"heading":39.62209169702311,"pitch":-26.47833358276687,"roll":-22.807001466845747},"location":"Right Ankle"},{"euler":{"heading":88.44548511942894,"pitch":-160.97718212886898,"roll":51.0353437804392},"location":"Right Hip"},{"euler":{"heading":142.30837179623063,"pitch":-116.56237217530202,"roll":61.271966240283284},"location":"Right Knee"},{"euler":{"heading":73.09328833740035,"pitch":-135.86648020002266,"roll":57.879452278211964},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.819"} +{"sensors":[{"euler":{"heading":39.14382817789338,"pitch":123.56718768363228,"roll":15.609343936982011},"location":"Left Knee"},{"euler":{"heading":19.79173794594896,"pitch":90.79959178360036,"roll":12.212452141791312},"location":"Left Ankle"},{"euler":{"heading":39.041816829891694,"pitch":-25.820465452831346,"roll":-23.33665689285506},"location":"Right Ankle"},{"euler":{"heading":88.50706895890302,"pitch":-161.06258698380583,"roll":51.787035774239456},"location":"Right Hip"},{"euler":{"heading":142.75858180180163,"pitch":-116.77641540905458,"roll":60.46726017424731},"location":"Right Knee"},{"euler":{"heading":60.009227893486994,"pitch":-134.51176050722256,"roll":57.30233391613615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.923"} +{"sensors":[{"euler":{"heading":35.802412831697254,"pitch":125.20170136449494,"roll":17.42415204385585},"location":"Left Knee"},{"euler":{"heading":16.63946085101263,"pitch":90.45004652690457,"roll":9.302823143465716},"location":"Left Ankle"},{"euler":{"heading":37.69867349002141,"pitch":-24.95169282675319,"roll":-24.410459650121076},"location":"Right Ankle"},{"euler":{"heading":88.81908727476751,"pitch":-161.2468832457998,"roll":52.532621509638204},"location":"Right Hip"},{"euler":{"heading":144.12602494292076,"pitch":-116.49447318703515,"roll":59.04944602565315},"location":"Right Knee"},{"euler":{"heading":49.78352873015325,"pitch":-133.73775179886405,"roll":56.9049653533106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.24"} +{"sensors":[{"euler":{"heading":34.13067566351666,"pitch":125.86027960698969,"roll":18.83445967386027},"location":"Left Knee"},{"euler":{"heading":15.057191492348204,"pitch":90.52614203861441,"roll":7.329901522759022},"location":"Left Ankle"},{"euler":{"heading":35.09474636292234,"pitch":-24.165562128942568,"roll":-25.64965584693597},"location":"Right Ankle"},{"euler":{"heading":89.79989506075027,"pitch":-161.10449234384114,"roll":52.939744617085665},"location":"Right Hip"},{"euler":{"heading":147.32059825255374,"pitch":-115.44862478298965,"roll":56.53582265929625},"location":"Right Knee"},{"euler":{"heading":41.46424520219881,"pitch":-133.15627676095983,"roll":56.77726344132614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.124"} +{"sensors":[{"euler":{"heading":33.24937432280359,"pitch":125.87357049847276,"roll":19.90847144141172},"location":"Left Knee"},{"euler":{"heading":14.314544680120013,"pitch":90.63067081645008,"roll":6.180801832971039},"location":"Left Ankle"},{"euler":{"heading":32.18381837912505,"pitch":-23.01425928829854,"roll":-26.83637198607632},"location":"Right Ankle"},{"euler":{"heading":91.06076809072115,"pitch":-160.44651398684886,"roll":52.654156332143025},"location":"Right Hip"},{"euler":{"heading":150.08494407686837,"pitch":-114.25850501421951,"roll":53.89864375451214},"location":"Right Knee"},{"euler":{"heading":34.98536217076084,"pitch":-133.2127546377468,"roll":56.88168554581636},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.225"} +{"sensors":[{"euler":{"heading":32.96177320493482,"pitch":125.51698802229711,"roll":20.618724387952902},"location":"Left Knee"},{"euler":{"heading":14.966871498238552,"pitch":90.99279514549791,"roll":5.997134459265301},"location":"Left Ankle"},{"euler":{"heading":31.358024325415386,"pitch":-23.14964494994723,"roll":-27.22649146840006},"location":"Right Ankle"},{"euler":{"heading":92.0515523959564,"pitch":-159.79167269349225,"roll":51.86065692442648},"location":"Right Hip"},{"euler":{"heading":151.0047478930702,"pitch":-113.06268914312592,"roll":52.91541888636759},"location":"Right Knee"},{"euler":{"heading":29.95988928540009,"pitch":-133.85839082323938,"roll":57.1485884268399},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.328"} +{"sensors":[{"euler":{"heading":33.041387028053194,"pitch":125.07541927387881,"roll":20.874969582860317},"location":"Left Knee"},{"euler":{"heading":15.50099598381334,"pitch":91.136167889679,"roll":6.056860119836913},"location":"Left Ankle"},{"euler":{"heading":32.86973826233444,"pitch":-24.235291896066997,"roll":-26.408275263621345},"location":"Right Ankle"},{"euler":{"heading":92.48825112172584,"pitch":-159.45477135487164,"roll":50.95238924200919},"location":"Right Hip"},{"euler":{"heading":150.26561003883552,"pitch":-111.83793778050484,"roll":53.87471387792726},"location":"Right Knee"},{"euler":{"heading":25.987724963495193,"pitch":-135.14415721651156,"roll":57.45550057598794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.430"} +{"sensors":[{"euler":{"heading":33.67732427122652,"pitch":124.49155018187756,"roll":20.643105478980377},"location":"Left Knee"},{"euler":{"heading":16.402070523331883,"pitch":91.21833985177064,"roll":6.556802453353007},"location":"Left Ankle"},{"euler":{"heading":35.81383126921319,"pitch":-25.723017909126362,"roll":-24.633408285027866},"location":"Right Ankle"},{"euler":{"heading":91.95996872513327,"pitch":-159.50663618719665,"roll":50.320770295957},"location":"Right Hip"},{"euler":{"heading":148.42378078614504,"pitch":-113.1137591526247,"roll":56.12206737686751},"location":"Right Knee"},{"euler":{"heading":22.9315163105177,"pitch":-136.76540386894155,"roll":57.84617857573821},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.531"} +{"sensors":[{"euler":{"heading":34.857958136936915,"pitch":123.80269828586648,"roll":19.874438513301783},"location":"Left Knee"},{"euler":{"heading":17.883032824176944,"pitch":91.31053113524982,"roll":7.752351264312818},"location":"Left Ankle"},{"euler":{"heading":38.59306047751032,"pitch":-26.837357103969012,"roll":-22.908469236819034},"location":"Right Ankle"},{"euler":{"heading":90.61183430231759,"pitch":-159.82705153206456,"roll":50.02271820353533},"location":"Right Hip"},{"euler":{"heading":146.14874832406156,"pitch":-115.79616217545413,"roll":58.51830531459661},"location":"Right Knee"},{"euler":{"heading":20.696634849446916,"pitch":-138.8210150147658,"roll":58.312654206088204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.631"} +{"sensors":[{"euler":{"heading":36.98994014971645,"pitch":123.11992029648125,"roll":18.191969867291476},"location":"Left Knee"},{"euler":{"heading":19.904204973939404,"pitch":91.23342942425289,"roll":9.963782036339241},"location":"Left Ankle"},{"euler":{"heading":39.7628630971783,"pitch":-27.488976412454463,"roll":-22.239411024470616},"location":"Right Ankle"},{"euler":{"heading":89.78741276894335,"pitch":-160.0575343160203,"roll":49.85408852274479},"location":"Right Hip"},{"euler":{"heading":144.48214938266113,"pitch":-116.70140306847804,"roll":60.08017992789696},"location":"Right Knee"},{"euler":{"heading":18.914278813202003,"pitch":-140.54434423540224,"roll":58.72286576325252},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.732"} +{"sensors":[{"euler":{"heading":40.198150366500045,"pitch":122.31184166611584,"roll":15.849093467941238},"location":"Left Knee"},{"euler":{"heading":22.629293892881464,"pitch":91.56794292588164,"roll":13.308490151590675},"location":"Left Ankle"},{"euler":{"heading":40.310469977369046,"pitch":-27.953759024975547,"roll":-21.955043534024107},"location":"Right Ankle"},{"euler":{"heading":88.96374462806304,"pitch":-160.34338144223892,"roll":50.123616568434684},"location":"Right Hip"},{"euler":{"heading":143.50398498682296,"pitch":-117.63349383702909,"roll":60.851388117161875},"location":"Right Knee"},{"euler":{"heading":16.081521578155403,"pitch":-139.96343115401137,"roll":58.70166567491278},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.833"} +{"sensors":[{"euler":{"heading":42.79530284678378,"pitch":122.19894344523286,"roll":13.984731231071516},"location":"Left Knee"},{"euler":{"heading":23.968797577247894,"pitch":91.16908955722198,"roll":15.264877796167346},"location":"Left Ankle"},{"euler":{"heading":40.59832658641609,"pitch":-28.32082145913685,"roll":-21.953374706718943},"location":"Right Ankle"},{"euler":{"heading":88.7114428959682,"pitch":-160.4474593846746,"roll":50.706388314335975},"location":"Right Hip"},{"euler":{"heading":143.2143615044077,"pitch":-118.10831047130698,"roll":61.1033371158523},"location":"Right Knee"},{"euler":{"heading":47.180637201234845,"pitch":-138.36167670434665,"roll":58.11767801911043},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.934"} +{"sensors":[{"euler":{"heading":42.13944449082885,"pitch":123.03614326328068,"roll":15.531963653577643},"location":"Left Knee"},{"euler":{"heading":22.574497835554,"pitch":90.42173208862125,"roll":14.56786155504387},"location":"Left Ankle"},{"euler":{"heading":40.5843203430513,"pitch":-28.534060955423897,"roll":-22.23723939239848},"location":"Right Ankle"},{"euler":{"heading":88.81401450994694,"pitch":-160.43462138373798,"roll":51.382356633962665},"location":"Right Hip"},{"euler":{"heading":143.40528026248853,"pitch":-118.18124175290104,"roll":60.94487449018795},"location":"Right Knee"},{"euler":{"heading":72.62077784646274,"pitch":-136.6209689481846,"roll":57.34548453094464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.35"} +{"sensors":[{"euler":{"heading":38.55248557519078,"pitch":124.57253981261118,"roll":17.110374941317993},"location":"Left Knee"},{"euler":{"heading":19.001215913332206,"pitch":89.75141224853002,"roll":11.630369571637612},"location":"Left Ankle"},{"euler":{"heading":40.11506335930267,"pitch":-28.45353191059423,"roll":-22.70218723881685},"location":"Right Ankle"},{"euler":{"heading":89.05257803355038,"pitch":-160.53596544148107,"roll":51.982132904682416},"location":"Right Hip"},{"euler":{"heading":144.07290078850167,"pitch":-118.00942314709286,"roll":60.27235323095343},"location":"Right Knee"},{"euler":{"heading":93.62355111758596,"pitch":-135.09340834249068,"roll":56.72403488719095},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.136"} +{"sensors":[{"euler":{"heading":34.89016000616297,"pitch":126.26599744885515,"roll":18.9310302816081},"location":"Left Knee"},{"euler":{"heading":15.570065433623856,"pitch":89.19836429953361,"roll":8.306431830140202},"location":"Left Ankle"},{"euler":{"heading":39.07090710780023,"pitch":-27.946655728370956,"roll":-23.646094028472163},"location":"Right Ankle"},{"euler":{"heading":89.3549291231067,"pitch":-160.79413776709086,"roll":52.75672250175697},"location":"Right Hip"},{"euler":{"heading":145.27353158394297,"pitch":-117.55668339159152,"roll":59.05738412645373},"location":"Right Knee"},{"euler":{"heading":77.29500922480625,"pitch":-134.18678143008415,"roll":56.328169205761064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.237"} +{"sensors":[{"euler":{"heading":33.34805220147212,"pitch":126.90062360847216,"roll":20.370410157899435},"location":"Left Knee"},{"euler":{"heading":13.979431234424062,"pitch":89.69079136662056,"roll":6.238042011422671},"location":"Left Ankle"},{"euler":{"heading":36.99716504773211,"pitch":-27.202621337513882,"roll":-24.898547369172057},"location":"Right Ankle"},{"euler":{"heading":89.96515762973604,"pitch":-161.16449354570705,"roll":53.55869955344488},"location":"Right Hip"},{"euler":{"heading":147.64186344298764,"pitch":-116.62382339915733,"roll":57.02457556636337},"location":"Right Knee"},{"euler":{"heading":64.31760727592093,"pitch":-133.61015494453304,"roll":56.13048352221738},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.338"} +{"sensors":[{"euler":{"heading":32.899883161158684,"pitch":126.66037385978433,"roll":21.429111523215223},"location":"Left Knee"},{"euler":{"heading":13.360732067621854,"pitch":90.34446211418856,"roll":5.09768045048299},"location":"Left Ankle"},{"euler":{"heading":33.84853225580934,"pitch":-25.51866086407409,"roll":-26.543157639165884},"location":"Right Ankle"},{"euler":{"heading":91.01178036522577,"pitch":-160.86941665171244,"roll":53.87416237466082},"location":"Right Hip"},{"euler":{"heading":150.4431205855724,"pitch":-115.33380356896859,"roll":54.32306815656082},"location":"Right Knee"},{"euler":{"heading":54.018716665892256,"pitch":-133.30241108286538,"roll":56.34399297703245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.438"} +{"sensors":[{"euler":{"heading":32.96693029737218,"pitch":126.00302508557151,"roll":22.09578393022237},"location":"Left Knee"},{"euler":{"heading":13.365438321786522,"pitch":90.94784309814501,"roll":4.440350074314874},"location":"Left Ankle"},{"euler":{"heading":31.377450704976365,"pitch":-24.64292553021272,"roll":-27.6032623366751},"location":"Right Ankle"},{"euler":{"heading":92.50490183260482,"pitch":-160.13867492961901,"roll":53.46401582769943},"location":"Right Hip"},{"euler":{"heading":152.308724722809,"pitch":-113.73248931796999,"roll":52.34227542293984},"location":"Right Knee"},{"euler":{"heading":45.9664959806748,"pitch":-134.01680770511436,"roll":56.66798912933004},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.540"} +{"sensors":[{"euler":{"heading":33.3190938003743,"pitch":125.1525583344133,"roll":22.437445641107356},"location":"Left Knee"},{"euler":{"heading":14.088674019968902,"pitch":91.54733528169244,"roll":4.404407115478366},"location":"Left Ankle"},{"euler":{"heading":31.29824742526658,"pitch":-25.07522782204947,"roll":-27.61722074544931},"location":"Right Ankle"},{"euler":{"heading":93.4837104453125,"pitch":-159.55473395592443,"roll":52.50429898431016},"location":"Right Hip"},{"euler":{"heading":152.3796789832617,"pitch":-112.03974234759656,"roll":52.392950806765526},"location":"Right Knee"},{"euler":{"heading":39.59926817570712,"pitch":-135.41830147257124,"roll":57.038454172023584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.641"} +{"sensors":[{"euler":{"heading":34.11874134726192,"pitch":124.13328924642141,"roll":22.354216505266837},"location":"Left Knee"},{"euler":{"heading":14.990014615435515,"pitch":92.08385551043352,"roll":4.698875147077125},"location":"Left Ankle"},{"euler":{"heading":33.00509753816033,"pitch":-25.912305463852825,"roll":-26.51213352850109},"location":"Right Ankle"},{"euler":{"heading":93.09015103511892,"pitch":-159.6387070069871,"roll":51.48129713255868},"location":"Right Hip"},{"euler":{"heading":150.45204350797968,"pitch":-111.3700874060749,"roll":54.341304138108946},"location":"Right Knee"},{"euler":{"heading":34.49280454664753,"pitch":-137.25128247896558,"roll":57.46285837078659},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.742"} +{"sensors":[{"euler":{"heading":35.27884303248594,"pitch":123.10396251367466,"roll":21.755717463630216},"location":"Left Knee"},{"euler":{"heading":16.20960122717563,"pitch":92.52177683329268,"roll":5.476628385748864},"location":"Left Ankle"},{"euler":{"heading":36.02573352588523,"pitch":-27.139435462533946,"roll":-24.495520043256743},"location":"Right Ankle"},{"euler":{"heading":91.78098395481295,"pitch":-160.0416840474001,"roll":50.882600171413266},"location":"Right Hip"},{"euler":{"heading":147.9997374674195,"pitch":-114.27781014397335,"roll":56.930718270469576},"location":"Right Knee"},{"euler":{"heading":30.472161015208084,"pitch":-139.42714307337508,"roll":58.03119568957919},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.842"} +{"sensors":[{"euler":{"heading":36.98378709232186,"pitch":122.17255040606466,"roll":20.429369990356737},"location":"Left Knee"},{"euler":{"heading":18.0940482475283,"pitch":92.775353541526,"roll":7.292170433831731},"location":"Left Ankle"},{"euler":{"heading":38.10663666744506,"pitch":-27.696921206875228,"roll":-23.110689522567796},"location":"Right Ankle"},{"euler":{"heading":90.23341477073119,"pitch":-160.5430700036226,"roll":50.54299467117355},"location":"Right Hip"},{"euler":{"heading":145.4448236608414,"pitch":-116.19549906851776,"roll":59.08951004921318},"location":"Right Knee"},{"euler":{"heading":27.328695177473218,"pitch":-141.8240872473946,"roll":58.61086834912368},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.943"} +{"sensors":[{"euler":{"heading":39.81855786956492,"pitch":121.54376987695343,"roll":18.028239077083963},"location":"Left Knee"},{"euler":{"heading":21.28388161943102,"pitch":93.23073047485929,"roll":10.825617010456432},"location":"Left Ankle"},{"euler":{"heading":39.02569727871117,"pitch":-27.696025015306336,"roll":-22.517520043288773},"location":"Right Ankle"},{"euler":{"heading":89.60241473024422,"pitch":-160.70544158634053,"roll":50.550795421679496},"location":"Right Hip"},{"euler":{"heading":143.6798549482374,"pitch":-117.16976860796733,"roll":60.448416166120765},"location":"Right Knee"},{"euler":{"heading":23.565767261205604,"pitch":-142.39967985084863,"roll":58.737064081399545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.44"} +{"sensors":[{"euler":{"heading":42.96606284273622,"pitch":120.86778650939269,"roll":15.492851789561858},"location":"Left Knee"},{"euler":{"heading":23.70546385338661,"pitch":92.94124341339395,"roll":14.480733444178371},"location":"Left Ankle"},{"euler":{"heading":39.49879364423698,"pitch":-27.481182999452372,"roll":-22.355330144709374},"location":"Right Ankle"},{"euler":{"heading":88.90739335818203,"pitch":-160.8702035077917,"roll":51.06915058200445},"location":"Right Hip"},{"euler":{"heading":142.4130597244572,"pitch":-118.15243106309235,"roll":61.07163506711485},"location":"Right Knee"},{"euler":{"heading":19.426421239921666,"pitch":-140.5840133568615,"roll":58.51237291996236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.145"} +{"sensors":[{"euler":{"heading":44.639549715288666,"pitch":121.02305069032917,"roll":14.286634314995885},"location":"Left Knee"},{"euler":{"heading":24.291105447890004,"pitch":92.38202840489848,"roll":15.612174622221067},"location":"Left Ankle"},{"euler":{"heading":39.80293012443131,"pitch":-27.292723121216213,"roll":-22.505833928741144},"location":"Right Ankle"},{"euler":{"heading":88.74259153689351,"pitch":-160.8528238508689,"roll":51.764118937834134},"location":"Right Hip"},{"euler":{"heading":141.7563088679319,"pitch":-118.73840714006094,"roll":61.30263309187631},"location":"Right Knee"},{"euler":{"heading":49.824312465790214,"pitch":-138.4594920789572,"roll":57.750196571136335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.245"} +{"sensors":[{"euler":{"heading":42.06211467527886,"pitch":122.32882567233213,"roll":15.180890929755892},"location":"Left Knee"},{"euler":{"heading":21.76824779550949,"pitch":91.38849345534291,"roll":13.853583578790232},"location":"Left Ankle"},{"euler":{"heading":39.67740236167643,"pitch":-27.104354551322373,"roll":-22.74309128165611},"location":"Right Ankle"},{"euler":{"heading":88.78006590685317,"pitch":-161.0035660459067,"roll":52.517829943131076},"location":"Right Hip"},{"euler":{"heading":141.85470990023694,"pitch":-118.83463483193059,"roll":61.053868760563866},"location":"Right Knee"},{"euler":{"heading":74.86270526221077,"pitch":-136.54301102946573,"roll":57.048631572775115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.346"} +{"sensors":[{"euler":{"heading":38.26919162469127,"pitch":124.03952128953046,"roll":16.941330673538495},"location":"Left Knee"},{"euler":{"heading":51.96177387156473,"pitch":90.40623413361483,"roll":10.35383462407394},"location":"Left Ankle"},{"euler":{"heading":39.057378603529756,"pitch":-26.690146914387213,"roll":-23.40962292675703},"location":"Right Ankle"},{"euler":{"heading":88.96532787821579,"pitch":-161.28860159198558,"roll":53.31280509270168},"location":"Right Hip"},{"euler":{"heading":142.58926439648076,"pitch":-118.60660756808562,"roll":60.174784278296094},"location":"Right Knee"},{"euler":{"heading":61.773125841291495,"pitch":-135.25473316201504,"roll":56.62188865695649},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.447"} +{"sensors":[{"euler":{"heading":36.049401213028794,"pitch":125.01673758778907,"roll":18.5283634164332},"location":"Left Knee"},{"euler":{"heading":42.754329410073396,"pitch":90.30813806711934,"roll":7.430756628152929},"location":"Left Ankle"},{"euler":{"heading":37.61034522366889,"pitch":-26.029965980678416,"roll":-24.5656644100907},"location":"Right Ankle"},{"euler":{"heading":89.40239494376317,"pitch":-161.7486636131759,"roll":54.14511913804165},"location":"Right Hip"},{"euler":{"heading":144.25492687958354,"pitch":-117.87708430907274,"roll":58.65994041639422},"location":"Right Knee"},{"euler":{"heading":51.756938820056604,"pitch":-134.60624438941,"roll":56.44382539452229},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.548"} +{"sensors":[{"euler":{"heading":34.79069816714461,"pitch":125.35402796058366,"roll":19.607711336095353},"location":"Left Knee"},{"euler":{"heading":36.59459531885916,"pitch":90.34422484138395,"roll":5.968852415546466},"location":"Left Ankle"},{"euler":{"heading":34.986751429250546,"pitch":-25.087756864626076,"roll":-26.027909071154983},"location":"Right Ankle"},{"euler":{"heading":90.40235820256146,"pitch":-161.65961112251904,"roll":54.660447069830774},"location":"Right Hip"},{"euler":{"heading":147.17644009720433,"pitch":-116.68782451467854,"roll":56.112025049246554},"location":"Right Knee"},{"euler":{"heading":43.276266378117654,"pitch":-134.07889613693186,"roll":56.43133307661535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.649"} +{"sensors":[{"euler":{"heading":34.33082302097945,"pitch":125.10632000401893,"roll":20.376300602303605},"location":"Left Knee"},{"euler":{"heading":32.014745773192985,"pitch":90.62063647661694,"roll":4.931386493012979},"location":"Left Ankle"},{"euler":{"heading":32.660196469702576,"pitch":-24.44920639165813,"roll":-27.184589209478933},"location":"Right Ankle"},{"euler":{"heading":91.6491891746172,"pitch":-160.9844989807592,"roll":54.41926286514771},"location":"Right Hip"},{"euler":{"heading":149.83016546152143,"pitch":-115.02310751072625,"roll":53.65784724200932},"location":"Right Knee"},{"euler":{"heading":36.58200397360789,"pitch":-134.26758629963058,"roll":56.56271647243332},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.750"} +{"sensors":[{"euler":{"heading":34.23965251993622,"pitch":124.54923802059061,"roll":20.86369210772004},"location":"Left Knee"},{"euler":{"heading":28.906863195045922,"pitch":91.01344185957485,"roll":4.4682340452721405},"location":"Left Ankle"},{"euler":{"heading":32.25343333319947,"pitch":-24.572944282153983,"roll":-27.51185801748061},"location":"Right Ankle"},{"euler":{"heading":92.68792893441464,"pitch":-160.29037252208104,"roll":53.54109214293187},"location":"Right Hip"},{"euler":{"heading":150.37996390770945,"pitch":-113.32649673793621,"roll":53.01857473498505},"location":"Right Knee"},{"euler":{"heading":31.279108463425313,"pitch":-135.09231116388656,"roll":56.80050818544125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.850"} +{"sensors":[{"euler":{"heading":34.63468151558563,"pitch":123.78355488194381,"roll":20.971783307309913},"location":"Left Knee"},{"euler":{"heading":26.831811639725974,"pitch":91.49373312121743,"roll":4.453419856367166},"location":"Left Ankle"},{"euler":{"heading":34.06068686607117,"pitch":-24.98812230425873,"roll":-26.595152650507668},"location":"Right Ankle"},{"euler":{"heading":92.80122976893621,"pitch":-159.9833214002809,"roll":52.49675442196754},"location":"Right Hip"},{"euler":{"heading":148.92169452735456,"pitch":-111.82100247064194,"roll":54.36044733763055},"location":"Right Knee"},{"euler":{"heading":27.103572030078052,"pitch":-136.33204467251377,"roll":57.1108049022761},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.952"} +{"sensors":[{"euler":{"heading":35.52888035722663,"pitch":122.86478560243177,"roll":20.629639575850053},"location":"Left Knee"},{"euler":{"heading":25.483534844376788,"pitch":91.9223914064489,"roll":4.832405169162442},"location":"Left Ankle"},{"euler":{"heading":36.96139260512498,"pitch":-25.750251544919365,"roll":-24.636040361616317},"location":"Right Ankle"},{"euler":{"heading":91.88924338005141,"pitch":-160.12165002611326,"roll":51.730118473921316},"location":"Right Hip"},{"euler":{"heading":146.4137521681034,"pitch":-111.41591275540242,"roll":57.02532947373305},"location":"Right Knee"},{"euler":{"heading":23.99380335941312,"pitch":-137.94730916059848,"roll":57.641287588311535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.52"} +{"sensors":[{"euler":{"heading":36.88530669170021,"pitch":122.01557825607419,"roll":19.672003709211012},"location":"Left Knee"},{"euler":{"heading":24.962207425315103,"pitch":92.23892991426548,"roll":5.847159295080151},"location":"Left Ankle"},{"euler":{"heading":39.48511998389505,"pitch":-26.505281684885286,"roll":-22.94057747544379},"location":"Right Ankle"},{"euler":{"heading":90.35772931551074,"pitch":-160.57975737911053,"roll":51.35745532227151},"location":"Right Hip"},{"euler":{"heading":144.12243940101143,"pitch":-111.93520800358586,"roll":59.44860551981944},"location":"Right Knee"},{"euler":{"heading":21.709121706786505,"pitch":-140.10452273221313,"roll":58.192651841709456},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.152"} +{"sensors":[{"euler":{"heading":39.09582900187681,"pitch":121.40172969048267,"roll":17.69963566173372},"location":"Left Knee"},{"euler":{"heading":25.379578786990116,"pitch":92.1448580333347,"roll":8.055516768200746},"location":"Left Ankle"},{"euler":{"heading":40.80838174987204,"pitch":-26.938786721522238,"roll":-22.018762049223692},"location":"Right Ankle"},{"euler":{"heading":89.4901722691753,"pitch":-160.87538115343327,"roll":51.26399933639896},"location":"Right Hip"},{"euler":{"heading":142.21064316635918,"pitch":-112.13162118113421,"roll":61.03494624352931},"location":"Right Knee"},{"euler":{"heading":19.784919098539703,"pitch":-141.63441468989691,"roll":58.73318476688745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.253"} +{"sensors":[{"euler":{"heading":42.27916831396241,"pitch":120.69764073121394,"roll":15.124163056977327},"location":"Left Knee"},{"euler":{"heading":27.65354697924045,"pitch":92.57103118833948,"roll":11.849287311234361},"location":"Left Ankle"},{"euler":{"heading":41.45191427318807,"pitch":-27.134859473806124,"roll":-21.547298008516005},"location":"Right Ankle"},{"euler":{"heading":88.68469258604611,"pitch":-161.2498992765094,"roll":51.57182364702698},"location":"Right Hip"},{"euler":{"heading":141.08521926345693,"pitch":-112.93955317856174,"roll":61.84612912922992},"location":"Right Knee"},{"euler":{"heading":16.746838431050406,"pitch":-139.03541968688106,"roll":58.812073313727886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.353"} +{"sensors":[{"euler":{"heading":44.80839406368117,"pitch":120.44697317477065,"roll":13.186072385927286},"location":"Left Knee"},{"euler":{"heading":28.492876738028773,"pitch":92.13026689559152,"roll":14.342817122901842},"location":"Left Ankle"},{"euler":{"heading":41.84209592445671,"pitch":-27.03285136253384,"roll":-21.530908173899903},"location":"Right Ankle"},{"euler":{"heading":88.42944762040504,"pitch":-161.36286970266593,"roll":52.195194036275595},"location":"Right Hip"},{"euler":{"heading":140.37180916884915,"pitch":-113.8252087059802,"roll":62.11046900398359},"location":"Right Knee"},{"euler":{"heading":47.94537429514576,"pitch":-137.34952833454153,"roll":58.19974721702823},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.454"} +{"sensors":[{"euler":{"heading":44.28122191131648,"pitch":121.11789180119057,"roll":13.132700418995027},"location":"Left Knee"},{"euler":{"heading":26.58796490324823,"pitch":91.41632896776555,"roll":14.096175596396831},"location":"Left Ankle"},{"euler":{"heading":41.86431085281857,"pitch":-26.655171998969383,"roll":-21.84306934030328},"location":"Right Ankle"},{"euler":{"heading":88.51771870272701,"pitch":-161.3818595191232,"roll":52.94951620983198},"location":"Right Hip"},{"euler":{"heading":140.1622241435258,"pitch":-114.41258524602033,"roll":61.95132795801723},"location":"Right Knee"},{"euler":{"heading":73.38963112593213,"pitch":-135.55646842249976,"roll":57.41380159519088},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.555"} +{"sensors":[{"euler":{"heading":40.80557642612615,"pitch":122.61678548911462,"roll":14.671802591668877},"location":"Left Knee"},{"euler":{"heading":22.37067266770553,"pitch":90.61572633141193,"roll":9.830186642024373},"location":"Left Ankle"},{"euler":{"heading":41.34147741815807,"pitch":-26.02804458947711,"roll":-22.387129735534078},"location":"Right Ankle"},{"euler":{"heading":88.79213542762898,"pitch":-161.42876946888808,"roll":53.71531785221262},"location":"Right Hip"},{"euler":{"heading":140.55542037811375,"pitch":-114.71222064121268,"roll":61.25441158266587},"location":"Right Knee"},{"euler":{"heading":60.30538081339485,"pitch":-134.32636349781959,"roll":56.80963452652451},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.656"} +{"sensors":[{"euler":{"heading":37.72190939737412,"pitch":124.03849541578592,"roll":16.450942785772714},"location":"Left Knee"},{"euler":{"heading":18.45976970844563,"pitch":90.26583533863916,"roll":6.903412850927353},"location":"Left Ankle"},{"euler":{"heading":40.033476445155465,"pitch":-25.091963553236152,"roll":-23.444240652331956},"location":"Right Ankle"},{"euler":{"heading":89.16546023257806,"pitch":-161.57228734293764,"roll":54.49745228746461},"location":"Right Hip"},{"euler":{"heading":141.8702353982541,"pitch":-114.60285355492715,"roll":59.84495402449129},"location":"Right Knee"},{"euler":{"heading":50.014127801983314,"pitch":-133.71862335609651,"roll":56.453188647068394},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.756"} +{"sensors":[{"euler":{"heading":36.1601460401596,"pitch":124.50451284460222,"roll":17.823030102803017},"location":"Left Knee"},{"euler":{"heading":16.30390078236236,"pitch":90.44268823198514,"roll":5.075500640352453},"location":"Left Ankle"},{"euler":{"heading":37.30969115904921,"pitch":-24.345997382123343,"roll":-24.73373120255692},"location":"Right Ankle"},{"euler":{"heading":89.91703624651096,"pitch":-161.5356844769647,"roll":55.003045786399674},"location":"Right Hip"},{"euler":{"heading":146.47831722766483,"pitch":-113.71316409029446,"roll":57.285384559932815},"location":"Right Knee"},{"euler":{"heading":41.61738762439081,"pitch":-133.2697646775302,"roll":56.27333703704171},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.857"} +{"sensors":[{"euler":{"heading":35.392672366139195,"pitch":124.40301333101577,"roll":18.797058877813683},"location":"Left Knee"},{"euler":{"heading":15.406692575404353,"pitch":90.68595231437692,"roll":4.230030272947361},"location":"Left Ankle"},{"euler":{"heading":33.949850295907936,"pitch":-23.088351037750183,"roll":-26.251332214581062},"location":"Right Ankle"},{"euler":{"heading":91.16857378081396,"pitch":-160.8842514629401,"roll":54.812506212261056},"location":"Right Hip"},{"euler":{"heading":149.347722833455,"pitch":-112.77136419122922,"roll":54.4461068701249},"location":"Right Knee"},{"euler":{"heading":35.182098710121124,"pitch":-133.4997515614303,"roll":56.378132640433115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.957"} +{"sensors":[{"euler":{"heading":35.20421852494926,"pitch":123.94255987809603,"roll":19.434675629047945},"location":"Left Knee"},{"euler":{"heading":15.878956923869652,"pitch":91.24495845443951,"roll":4.279492352661308},"location":"Left Ankle"},{"euler":{"heading":32.274916949841355,"pitch":-22.6637751185483,"roll":-27.107329785525522},"location":"Right Ankle"},{"euler":{"heading":92.21711257625769,"pitch":-160.1818251187026,"roll":54.01583439980049},"location":"Right Hip"},{"euler":{"heading":150.73404917177137,"pitch":-111.66350470627518,"roll":52.81627385349671},"location":"Right Knee"},{"euler":{"heading":30.156648794502537,"pitch":-134.26671987753315,"roll":56.63348287605745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.58"} +{"sensors":[{"euler":{"heading":35.53742795090312,"pitch":123.12757141319739,"roll":19.767881524018144},"location":"Left Knee"},{"euler":{"heading":16.521294683931412,"pitch":91.90536717725182,"roll":4.609624121819379},"location":"Left Ankle"},{"euler":{"heading":33.144864331037226,"pitch":-23.42108601420195,"roll":-26.621495438189562},"location":"Right Ankle"},{"euler":{"heading":92.71299123072122,"pitch":-159.7661934077135,"roll":52.890665012954784},"location":"Right Hip"},{"euler":{"heading":150.17475898946654,"pitch":-110.21513219663777,"roll":53.255867630100134},"location":"Right Knee"},{"euler":{"heading":26.303409432663038,"pitch":-135.54931584711622,"roll":56.96561317003815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.159"} +{"sensors":[{"euler":{"heading":36.41073553457278,"pitch":122.0452808202804,"roll":19.653219700598818},"location":"Left Knee"},{"euler":{"heading":17.516919441928234,"pitch":92.6813138005351,"roll":5.3601955115650375},"location":"Left Ankle"},{"euler":{"heading":35.72994819709828,"pitch":-24.528474611250605,"roll":-24.856072445243722},"location":"Right Ankle"},{"euler":{"heading":92.30450898652931,"pitch":-159.7943795491847,"roll":51.89630850673175},"location":"Right Hip"},{"euler":{"heading":148.0224001269564,"pitch":-110.06387099550663,"roll":55.49669044622182},"location":"Right Knee"},{"euler":{"heading":23.487263789941277,"pitch":-137.14985773929328,"roll":57.46234474728752},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.259"} +{"sensors":[{"euler":{"heading":37.75005612985701,"pitch":120.96487280597042,"roll":18.90737185087108},"location":"Left Knee"},{"euler":{"heading":19.1228618192906,"pitch":93.42506571518669,"roll":6.794422924583097},"location":"Left Ankle"},{"euler":{"heading":38.56599426312361,"pitch":-25.477015185802234,"roll":-22.996991641325934},"location":"Right Ankle"},{"euler":{"heading":90.70369364776441,"pitch":-160.3192903265034,"roll":51.32353200485652},"location":"Right Hip"},{"euler":{"heading":145.42770797595648,"pitch":-116.16957150877613,"roll":58.160503082496845},"location":"Right Knee"},{"euler":{"heading":21.353820737266965,"pitch":-139.08566343397237,"roll":58.03667623209867},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.359"} +{"sensors":[{"euler":{"heading":39.88711920325195,"pitch":120.18343367128844,"roll":17.132590809344975},"location":"Left Knee"},{"euler":{"heading":21.127461366615986,"pitch":93.65217021524404,"roll":9.328843552489538},"location":"Left Ankle"},{"euler":{"heading":40.28172430414491,"pitch":-25.948880916698588,"roll":-22.069809821978158},"location":"Right Ankle"},{"euler":{"heading":89.55347110416719,"pitch":-160.7348159308543,"roll":51.179795203296585},"location":"Right Hip"},{"euler":{"heading":143.25561441815748,"pitch":-116.64095625734413,"roll":59.98828060251525},"location":"Right Knee"},{"euler":{"heading":19.434545976866776,"pitch":-140.49844322846414,"roll":58.53853855636097},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.460"} +{"sensors":[{"euler":{"heading":43.02814609543361,"pitch":119.57739910291512,"roll":14.694292608652912},"location":"Left Knee"},{"euler":{"heading":23.886543117785404,"pitch":94.33924133493963,"roll":12.739895449097796},"location":"Left Ankle"},{"euler":{"heading":41.30606249826756,"pitch":-26.096430998467696,"roll":-21.528091482014236},"location":"Right Ankle"},{"euler":{"heading":88.4511468370239,"pitch":-161.18215838599312,"roll":51.4718481950226},"location":"Right Hip"},{"euler":{"heading":141.55439558659037,"pitch":-117.70959379179996,"roll":61.01793362811426},"location":"Right Knee"},{"euler":{"heading":16.41833614867718,"pitch":-139.6067951727428,"roll":58.588380347803735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.560"} +{"sensors":[{"euler":{"heading":45.338421945667754,"pitch":119.58787244215942,"roll":12.904108867677083},"location":"Left Knee"},{"euler":{"heading":24.855544485259976,"pitch":93.76594803570504,"roll":14.643355083164014},"location":"Left Ankle"},{"euler":{"heading":41.88914126404369,"pitch":-26.039695546276473,"roll":-21.465966205746724},"location":"Right Ankle"},{"euler":{"heading":87.81015846753337,"pitch":-161.42642411916327,"roll":52.11661935658886},"location":"Right Hip"},{"euler":{"heading":140.4349236176866,"pitch":-118.55767111170816,"roll":61.479961687755164},"location":"Right Knee"},{"euler":{"heading":47.34345975854192,"pitch":-137.97356730911275,"roll":58.0032783346567},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.661"} +{"sensors":[{"euler":{"heading":44.120677399351166,"pitch":120.67939549326255,"roll":13.014300733752941},"location":"Left Knee"},{"euler":{"heading":23.068698237165865,"pitch":92.65860376212262,"roll":13.868719066283644},"location":"Left Ankle"},{"euler":{"heading":42.194151598984874,"pitch":-26.053755433404113,"roll":-21.60000043548169},"location":"Right Ankle"},{"euler":{"heading":87.60041919533433,"pitch":-161.65339940114833,"roll":52.87247063279618},"location":"Right Hip"},{"euler":{"heading":140.12472257089019,"pitch":-118.90295830148047,"roll":61.44025067728094},"location":"Right Knee"},{"euler":{"heading":72.42710485911341,"pitch":-136.09736450781398,"roll":57.24791241517153},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.763"} +{"sensors":[{"euler":{"heading":40.043920147162716,"pitch":122.505375874181,"roll":14.647899973972955},"location":"Left Knee"},{"euler":{"heading":19.251288663724235,"pitch":91.4425644517233,"roll":10.8253190364932},"location":"Left Ankle"},{"euler":{"heading":41.956378502699096,"pitch":-25.947571722400163,"roll":-21.982878204995856},"location":"Right Ankle"},{"euler":{"heading":87.51786452288655,"pitch":-162.03119759822005,"roll":53.68721838304365},"location":"Right Hip"},{"euler":{"heading":140.5544406695515,"pitch":-118.87651753974053,"roll":60.82762233412123},"location":"Right Knee"},{"euler":{"heading":93.38173758053486,"pitch":-134.66122888701773,"roll":56.71303331042011},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.864"} +{"sensors":[{"euler":{"heading":36.25403238626867,"pitch":124.35385516540954,"roll":16.542274747562402},"location":"Left Knee"},{"euler":{"heading":49.89494517828665,"pitch":90.68702862799154,"roll":7.4650008194929764},"location":"Left Ankle"},{"euler":{"heading":41.05419854421496,"pitch":-25.59584050081911,"roll":-22.894138980771725},"location":"Right Ankle"},{"euler":{"heading":87.67024522939359,"pitch":-162.61087007620523,"roll":54.579041315326876},"location":"Right Hip"},{"euler":{"heading":141.92294098256386,"pitch":-118.44236572739158,"roll":59.5419973766391},"location":"Right Knee"},{"euler":{"heading":76.99594233541505,"pitch":-133.8848926259404,"roll":56.401448459848055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.964"} +{"sensors":[{"euler":{"heading":34.53018779922157,"pitch":125.09903001906027,"roll":18.030525578942775},"location":"Left Knee"},{"euler":{"heading":41.93002724840064,"pitch":90.57411262237471,"roll":5.464761444761944},"location":"Left Ankle"},{"euler":{"heading":38.98374567282441,"pitch":-25.105153763171085,"roll":-24.140832987608295},"location":"Right Ankle"},{"euler":{"heading":88.42521699337217,"pitch":-162.94515141100746,"roll":55.35035781502368},"location":"Right Hip"},{"euler":{"heading":144.6784271392645,"pitch":-117.35985688801588,"roll":57.296621405486135},"location":"Right Knee"},{"euler":{"heading":63.882481789871804,"pitch":-133.39049105793737,"roll":56.29191701494965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.65"} +{"sensors":[{"euler":{"heading":33.95104880305293,"pitch":124.91125056752578,"roll":19.15128497642788},"location":"Left Knee"},{"euler":{"heading":36.26448545212989,"pitch":90.775148431769,"roll":4.320669138286059},"location":"Left Ankle"},{"euler":{"heading":35.427579838988784,"pitch":-23.638550651950354,"roll":-25.81590362566285},"location":"Right Ankle"},{"euler":{"heading":89.78655050131951,"pitch":-162.28449442494815,"roll":55.328920670453655},"location":"Right Hip"},{"euler":{"heading":147.66588902983432,"pitch":-116.05332969823986,"roll":54.48005604211487},"location":"Right Knee"},{"euler":{"heading":53.60298331734625,"pitch":-133.60304854669795,"roll":56.46628889087169},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.166"} +{"sensors":[{"euler":{"heading":33.893021959714076,"pitch":124.36677924139981,"roll":19.886002765383036},"location":"Left Knee"},{"euler":{"heading":32.27952986127485,"pitch":91.12352933893285,"roll":3.796704978795243},"location":"Left Ankle"},{"euler":{"heading":32.949802598218795,"pitch":-22.864371656214306,"roll":-26.95113361208401},"location":"Right Ankle"},{"euler":{"heading":91.38277880695082,"pitch":-161.40130761722082,"roll":54.61986704828752},"location":"Right Hip"},{"euler":{"heading":149.58288718157286,"pitch":-114.37167996509059,"roll":52.68052499969822},"location":"Right Knee"},{"euler":{"heading":45.42989881778208,"pitch":-134.46126097473302,"roll":56.77270634628448},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.267"} +{"sensors":[{"euler":{"heading":34.19033748597145,"pitch":123.73735863235237,"roll":20.18816681697185},"location":"Left Knee"},{"euler":{"heading":29.747925417359287,"pitch":91.40904400136962,"roll":3.9527854771602184},"location":"Left Ankle"},{"euler":{"heading":33.03158550835996,"pitch":-23.614491437121085,"roll":-26.902274254812063},"location":"Right Ankle"},{"euler":{"heading":92.6659875681681,"pitch":-160.67347757714506,"roll":53.431293795262356},"location":"Right Hip"},{"euler":{"heading":149.61863380581497,"pitch":-112.49327857419534,"roll":52.924946108612225},"location":"Right Knee"},{"euler":{"heading":38.93398131563496,"pitch":-135.94532761968594,"roll":57.1213195566395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.368"} +{"sensors":[{"euler":{"heading":34.94507556945834,"pitch":122.97756176568345,"roll":20.05730661834724},"location":"Left Knee"},{"euler":{"heading":27.865300310086923,"pitch":91.60794602758727,"roll":4.4269560572005595},"location":"Left Ankle"},{"euler":{"heading":35.613414390429426,"pitch":-25.17910696826802,"roll":-25.40740758000755},"location":"Right Ankle"},{"euler":{"heading":93.11620142914283,"pitch":-160.3597101549911,"roll":52.22498671247762},"location":"Right Hip"},{"euler":{"heading":148.04267004438148,"pitch":-111.91722310984225,"roll":55.07239634855556},"location":"Right Knee"},{"euler":{"heading":33.781599779436696,"pitch":-137.7400659202051,"roll":57.57945834551967},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.469"} +{"sensors":[{"euler":{"heading":36.1278585113761,"pitch":122.21869682519198,"roll":19.38003556931764},"location":"Left Knee"},{"euler":{"heading":26.900503769729987,"pitch":91.81170874457393,"roll":5.444606652517775},"location":"Left Ankle"},{"euler":{"heading":38.45868589436724,"pitch":-26.535435492864817,"roll":-23.507771679661218},"location":"Right Ankle"},{"euler":{"heading":91.79636868133909,"pitch":-160.68815651958502,"roll":51.49609326183784},"location":"Right Hip"},{"euler":{"heading":145.52753926891174,"pitch":-118.09038126040255,"roll":57.90142138785339},"location":"Right Knee"},{"euler":{"heading":29.62228848623216,"pitch":-139.89915756602164,"roll":58.1010322550741},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.570"} +{"sensors":[{"euler":{"heading":37.964334804240856,"pitch":121.52012823770588,"roll":17.958628039214936},"location":"Left Knee"},{"euler":{"heading":27.17473948173467,"pitch":91.95447139564335,"roll":7.489116455160371},"location":"Left Ankle"},{"euler":{"heading":40.09279009951713,"pitch":-27.013634611856794,"roll":-22.44282233467246},"location":"Right Ankle"},{"euler":{"heading":90.27573830610915,"pitch":-161.15182806282667,"roll":51.11001989448739},"location":"Right Hip"},{"euler":{"heading":143.05792671340294,"pitch":-118.96763458592793,"roll":60.14623433699584},"location":"Right Knee"},{"euler":{"heading":26.573367403565598,"pitch":-142.16796709153232,"roll":58.68595233202162},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.671"} +{"sensors":[{"euler":{"heading":41.102999181669816,"pitch":120.97124523932277,"roll":15.495260880094644},"location":"Left Knee"},{"euler":{"heading":28.588344907595594,"pitch":92.39875506470312,"roll":10.825469328174943},"location":"Left Ankle"},{"euler":{"heading":40.98489476460266,"pitch":-27.21447807965936,"roll":-21.99641797625592},"location":"Right Ankle"},{"euler":{"heading":89.43492873555351,"pitch":-161.39897896562144,"roll":51.20062449020464},"location":"Right Hip"},{"euler":{"heading":141.36874787954946,"pitch":-119.5295722600046,"roll":61.41651025372821},"location":"Right Knee"},{"euler":{"heading":22.614368478723964,"pitch":-142.19360638841934,"roll":58.82878693677606},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.772"} +{"sensors":[{"euler":{"heading":44.20801182892678,"pitch":120.40917630947679,"roll":13.105698023946697},"location":"Left Knee"},{"euler":{"heading":29.240452337007994,"pitch":92.27164390593788,"roll":13.933631508820488},"location":"Left Ankle"},{"euler":{"heading":41.358630631760434,"pitch":-27.229747714806642,"roll":-21.907579101635857},"location":"Right Ankle"},{"euler":{"heading":88.74647477832595,"pitch":-161.59289311995602,"roll":51.69283655683036},"location":"Right Hip"},{"euler":{"heading":140.27697017048175,"pitch":-120.06778219479773,"roll":62.00114704878612},"location":"Right Knee"},{"euler":{"heading":18.54634672726551,"pitch":-140.4986128460622,"roll":58.48835510865902},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.873"} +{"sensors":[{"euler":{"heading":45.40080795972556,"pitch":120.78642497859452,"roll":12.126558365071237},"location":"Left Knee"},{"euler":{"heading":28.062148591844956,"pitch":91.47885911717792,"roll":14.629600490666025},"location":"Left Ankle"},{"euler":{"heading":41.45061407679622,"pitch":-27.08898682889667,"roll":-22.26714378215498},"location":"Right Ankle"},{"euler":{"heading":88.48003481190567,"pitch":-161.69107220638747,"roll":52.346312755839236},"location":"Right Hip"},{"euler":{"heading":139.7337969255636,"pitch":-120.29914672373773,"roll":62.13778001119532},"location":"Right Knee"},{"euler":{"heading":48.972911649181576,"pitch":-138.48328551467986,"roll":57.68090099127293},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.974"} +{"sensors":[{"euler":{"heading":42.64976024790344,"pitch":122.1860526544423,"roll":13.309526342748448},"location":"Left Knee"},{"euler":{"heading":24.27927895995013,"pitch":90.54151153752832,"roll":12.643430123174365},"location":"Left Ankle"},{"euler":{"heading":41.145430333148454,"pitch":-26.658405122488308,"roll":-22.854098435920044},"location":"Right Ankle"},{"euler":{"heading":88.3926708263757,"pitch":-161.85720101398547,"roll":53.02086138913244},"location":"Right Hip"},{"euler":{"heading":139.71710941527874,"pitch":-120.27663572260714,"roll":61.81551770197036},"location":"Right Knee"},{"euler":{"heading":73.8980403612453,"pitch":-136.53481457835542,"roll":56.93241996092972},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.75"} +{"sensors":[{"euler":{"heading":38.851425406758636,"pitch":123.99356385055313,"roll":15.140963959633176},"location":"Left Knee"},{"euler":{"heading":53.8632254458327,"pitch":89.57442292078838,"roll":9.13989076903266},"location":"Left Ankle"},{"euler":{"heading":40.24750768652808,"pitch":-26.007188931880442,"roll":-23.84895306866026},"location":"Right Ankle"},{"euler":{"heading":88.66001982505405,"pitch":-162.0550892927096,"roll":53.73825917353604},"location":"Right Hip"},{"euler":{"heading":140.44066384538658,"pitch":-119.8757663908126,"roll":60.947215730306795},"location":"Right Knee"},{"euler":{"heading":60.83462658433657,"pitch":-135.43162093399877,"roll":56.403770820777844},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.176"} +{"sensors":[{"euler":{"heading":36.62720382690391,"pitch":124.92758938562226,"roll":16.804131523737517},"location":"Left Knee"},{"euler":{"heading":44.40636080245671,"pitch":89.40087483280354,"roll":6.5165936239231765},"location":"Left Ankle"},{"euler":{"heading":38.34106400326623,"pitch":-25.12659955705059,"roll":-25.105890689483974},"location":"Right Ankle"},{"euler":{"heading":89.2237527350657,"pitch":-162.40062207781267,"roll":54.399305164921564},"location":"Right Hip"},{"euler":{"heading":142.27567871506054,"pitch":-118.95417080633771,"roll":59.31727723344032},"location":"Right Knee"},{"euler":{"heading":50.67339535036227,"pitch":-134.78414164875574,"roll":56.16916700138829},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.276"} +{"sensors":[{"euler":{"heading":35.50755992830666,"pitch":125.21390689795915,"roll":17.94048133043578},"location":"Left Knee"},{"euler":{"heading":37.7451363578086,"pitch":89.53515556668752,"roll":5.046524173791713},"location":"Left Ankle"},{"euler":{"heading":35.216454094545405,"pitch":-23.402308188559328,"roll":-26.528636983120037},"location":"Right Ankle"},{"euler":{"heading":90.38688292507753,"pitch":-162.07713816800276,"roll":54.55157113621019},"location":"Right Hip"},{"euler":{"heading":145.08615456149795,"pitch":-117.59705485907745,"roll":56.80195767483399},"location":"Right Knee"},{"euler":{"heading":42.299882555274216,"pitch":-134.45984731542464,"roll":56.12929377308778},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.377"} +{"sensors":[{"euler":{"heading":35.102093183692666,"pitch":124.98547325416655,"roll":18.742814260753704},"location":"Left Knee"},{"euler":{"heading":32.79628421232529,"pitch":89.82907677731355,"roll":4.114630576158028},"location":"Left Ankle"},{"euler":{"heading":32.29536315197797,"pitch":-21.88365705531663,"roll":-27.607958879772447},"location":"Right Ankle"},{"euler":{"heading":91.78515072491243,"pitch":-161.29096510714052,"roll":53.9878065193137},"location":"Right Hip"},{"euler":{"heading":147.13172088444674,"pitch":-116.04798784875075,"roll":54.549688923469134},"location":"Right Knee"},{"euler":{"heading":35.877666888784546,"pitch":-134.88578367766485,"roll":56.265627403593314},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.479"} +{"sensors":[{"euler":{"heading":35.08519876047859,"pitch":124.52312111511452,"roll":19.225067721124624},"location":"Left Knee"},{"euler":{"heading":29.463551707931252,"pitch":90.23772613867146,"roll":3.7588985093950056},"location":"Left Ankle"},{"euler":{"heading":31.687169368421813,"pitch":-21.888778861228406,"roll":-28.055477986750528},"location":"Right Ankle"},{"euler":{"heading":92.94788679375004,"pitch":-160.6033579278428,"roll":52.89502982052876},"location":"Right Hip"},{"euler":{"heading":147.58784029076352,"pitch":-114.34901033574748,"roll":54.116900119624965},"location":"Right Knee"},{"euler":{"heading":30.779687027431073,"pitch":-135.73493687129766,"roll":56.537624998716815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.579"} +{"sensors":[{"euler":{"heading":35.61238861893791,"pitch":123.65885211546751,"roll":19.41768924615225},"location":"Left Knee"},{"euler":{"heading":27.150885510188758,"pitch":90.86909629684048,"roll":3.793723885122823},"location":"Left Ankle"},{"euler":{"heading":33.69215547270353,"pitch":-22.98140475081298,"roll":-27.140568581227623},"location":"Right Ankle"},{"euler":{"heading":93.10920790195577,"pitch":-160.32004186235056,"roll":51.78729726748348},"location":"Right Hip"},{"euler":{"heading":146.26095238178354,"pitch":-112.93055407856731,"roll":55.734794293646196},"location":"Right Knee"},{"euler":{"heading":26.837333687194626,"pitch":-136.9016500444033,"roll":56.944272149656086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.680"} +{"sensors":[{"euler":{"heading":36.686144322053444,"pitch":122.65087494729049,"roll":19.080691208039188},"location":"Left Knee"},{"euler":{"heading":25.768573411204535,"pitch":91.49391518658744,"roll":4.34842357055064},"location":"Left Ankle"},{"euler":{"heading":36.98068611475828,"pitch":-24.49922706637774,"roll":-25.0582299530046},"location":"Right Ankle"},{"euler":{"heading":92.40895438174466,"pitch":-160.34310567377605,"roll":51.070312453030546},"location":"Right Hip"},{"euler":{"heading":144.17568633170652,"pitch":-115.23204885901156,"roll":58.334340166650655},"location":"Right Knee"},{"euler":{"heading":23.81742484866551,"pitch":-138.40922309732238,"roll":57.47276032792052},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.781"} +{"sensors":[{"euler":{"heading":38.052849543081656,"pitch":121.59609414562762,"roll":18.199055242548212},"location":"Left Knee"},{"euler":{"heading":25.445299612417376,"pitch":92.0830794586934,"roll":5.635138097957121},"location":"Left Ankle"},{"euler":{"heading":39.30472233692353,"pitch":-25.634854347675013,"roll":-23.673379464667267},"location":"Right Ankle"},{"euler":{"heading":91.03891634336854,"pitch":-160.64340500023354,"roll":50.665288375662456},"location":"Right Hip"},{"euler":{"heading":142.0342653129432,"pitch":-116.99356751638872,"roll":60.674713826075056},"location":"Right Knee"},{"euler":{"heading":21.558757867373846,"pitch":-140.32630199017984,"roll":58.05799164668322},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.882"} +{"sensors":[{"euler":{"heading":40.34313188581206,"pitch":120.95080528183166,"roll":16.230059227696266},"location":"Left Knee"},{"euler":{"heading":25.99511052375153,"pitch":92.0692312240444,"roll":8.21443722068417},"location":"Left Ankle"},{"euler":{"heading":40.58338335463345,"pitch":-26.43653348276434,"roll":-22.90183268846241},"location":"Right Ankle"},{"euler":{"heading":90.41653653557908,"pitch":-160.76650568611134,"roll":50.489042025996},"location":"Right Hip"},{"euler":{"heading":140.42950481428778,"pitch":-117.62438201395817,"roll":62.20387416905534},"location":"Right Knee"},{"euler":{"heading":19.56667642922856,"pitch":-141.57350367783005,"roll":58.55782634379635},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.982"} +{"sensors":[{"euler":{"heading":43.46692716527295,"pitch":120.18854024215557,"roll":13.782489351313753},"location":"Left Knee"},{"euler":{"heading":27.88405954175216,"pitch":92.22316891508771,"roll":11.975254545205619},"location":"Left Ankle"},{"euler":{"heading":41.19039683402436,"pitch":-27.09060926120193,"roll":-22.548507081292502},"location":"Right Ankle"},{"euler":{"heading":89.6929015548866,"pitch":-161.06814627279525,"roll":50.68033424636312},"location":"Right Hip"},{"euler":{"heading":139.7338406650776,"pitch":-118.43894794422174,"roll":62.86224572368583},"location":"Right Knee"},{"euler":{"heading":16.752446108315358,"pitch":-140.56769996550048,"roll":58.623669308834145},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.84"} +{"sensors":[{"euler":{"heading":45.70958602123877,"pitch":120.15871475108528,"roll":12.084986131669869},"location":"Left Knee"},{"euler":{"heading":28.01574571841763,"pitch":91.5598467661389,"roll":14.028739584694225},"location":"Left Ankle"},{"euler":{"heading":41.43177057958282,"pitch":-27.67652082462826,"roll":-22.43093200412709},"location":"Right Ankle"},{"euler":{"heading":89.38576478966534,"pitch":-161.28758555359758,"roll":51.23392949708388},"location":"Right Hip"},{"euler":{"heading":139.68741869102857,"pitch":-118.91443481850314,"roll":63.000201048560506},"location":"Right Knee"},{"euler":{"heading":47.93212993229035,"pitch":-138.7657771093337,"roll":58.076827589385566},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.186"} +{"sensors":[{"euler":{"heading":44.65645313599321,"pitch":120.99974132052495,"roll":12.332550060327131},"location":"Left Knee"},{"euler":{"heading":25.691939397994503,"pitch":90.75748262565992,"roll":13.40769374112139},"location":"Left Ankle"},{"euler":{"heading":41.445102602263084,"pitch":-28.105627366705086,"roll":-22.60991601292046},"location":"Right Ankle"},{"euler":{"heading":89.34236730886812,"pitch":-161.48020538231262,"roll":51.93700450196705},"location":"Right Hip"},{"euler":{"heading":140.07747057830036,"pitch":-118.99391789119596,"roll":62.73264308078421},"location":"Right Knee"},{"euler":{"heading":73.2777164265086,"pitch":-136.80232479735648,"roll":57.3085199951599},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.287"} +{"sensors":[{"euler":{"heading":40.81554996153784,"pitch":122.67039736953193,"roll":14.025055472538195},"location":"Left Knee"},{"euler":{"heading":21.375414428082873,"pitch":89.74606854552002,"roll":10.425984632284198},"location":"Left Ankle"},{"euler":{"heading":40.94472239225738,"pitch":-28.0004546497166,"roll":-23.146428562109772},"location":"Right Ankle"},{"euler":{"heading":89.3543959600182,"pitch":-161.68422880296717,"roll":52.686160396712246},"location":"Right Hip"},{"euler":{"heading":140.533586712543,"pitch":-118.97666052845153,"roll":62.0565290873162},"location":"Right Knee"},{"euler":{"heading":94.12577986304572,"pitch":-135.18022373155816,"roll":56.666805369495364},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.388"} +{"sensors":[{"euler":{"heading":37.21877926166429,"pitch":124.39616346667236,"roll":15.954897050234502},"location":"Left Knee"},{"euler":{"heading":51.604450494007715,"pitch":89.08056807101313,"roll":7.121488992195136},"location":"Left Ankle"},{"euler":{"heading":39.82752001613221,"pitch":-27.417771254116197,"roll":-24.196709621131923},"location":"Right Ankle"},{"euler":{"heading":89.5188230046359,"pitch":-162.05909435559641,"roll":53.48890435551347},"location":"Right Hip"},{"euler":{"heading":141.57887386608164,"pitch":-118.58649039072488,"roll":60.81452777665352},"location":"Right Knee"},{"euler":{"heading":77.64678049633714,"pitch":-134.28317443491042,"roll":56.22882118048454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.488"} +{"sensors":[{"euler":{"heading":35.385519870024346,"pitch":125.11353251597355,"roll":17.510912754488146},"location":"Left Knee"},{"euler":{"heading":43.34760425501197,"pitch":89.23342734537313,"roll":5.0350200007668136},"location":"Left Ankle"},{"euler":{"heading":37.456155564143195,"pitch":-26.456508114557405,"roll":-25.569199617618377},"location":"Right Ankle"},{"euler":{"heading":89.99828353117337,"pitch":-162.32101185267896,"roll":54.20934205024655},"location":"Right Hip"},{"euler":{"heading":143.91513544292508,"pitch":-117.69241216318686,"roll":58.6859147554228},"location":"Right Knee"},{"euler":{"heading":64.3440436730821,"pitch":-133.83412064763198,"roll":55.993023509107154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.589"} +{"sensors":[{"euler":{"heading":34.51465169227191,"pitch":125.19785766622273,"roll":18.59192066700619},"location":"Left Knee"},{"euler":{"heading":37.0922587285943,"pitch":89.31229281695404,"roll":3.7534475869208714},"location":"Left Ankle"},{"euler":{"heading":34.040048652572764,"pitch":-24.986208986192757,"roll":-27.06677983808212},"location":"Right Ankle"},{"euler":{"heading":91.258880199172,"pitch":-161.7851244772617,"roll":54.183483096428},"location":"Right Hip"},{"euler":{"heading":146.74364124211107,"pitch":-116.4374849855346,"roll":55.84420850776096},"location":"Right Knee"},{"euler":{"heading":53.68958960921488,"pitch":-133.69532190987752,"roll":56.06503083873836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.690"} +{"sensors":[{"euler":{"heading":34.12263239198779,"pitch":124.88771639762084,"roll":19.36795732700272},"location":"Left Knee"},{"euler":{"heading":32.386560183316334,"pitch":89.44310929293732,"roll":2.9207765682246207},"location":"Left Ankle"},{"euler":{"heading":31.932599732047148,"pitch":-24.113560634682713,"roll":-28.100856245269483},"location":"Right Ankle"},{"euler":{"heading":92.38618029486196,"pitch":-161.07429165693236,"roll":53.54177198075246},"location":"Right Hip"},{"euler":{"heading":148.34023647604474,"pitch":-115.07601096805298,"roll":53.94463910660754},"location":"Right Knee"},{"euler":{"heading":45.25110903471134,"pitch":-134.37828822798812,"roll":56.27882116733898},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.790"} +{"sensors":[{"euler":{"heading":34.2297095663331,"pitch":124.32170252707763,"roll":19.79074410197505},"location":"Left Knee"},{"euler":{"heading":29.20535911997724,"pitch":89.78145824391139,"roll":2.678609770812825},"location":"Left Ankle"},{"euler":{"heading":32.287880527858135,"pitch":-24.667562412381113,"roll":-28.031809226574968},"location":"Right Ankle"},{"euler":{"heading":92.7265722338066,"pitch":-160.62132659711736,"roll":52.580603896994425},"location":"Right Hip"},{"euler":{"heading":147.8579893136403,"pitch":-113.52894575621798,"roll":54.27689722655231},"location":"Right Knee"},{"euler":{"heading":38.35952628782705,"pitch":-135.51352919160408,"roll":56.61496209057175},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.891"} +{"sensors":[{"euler":{"heading":34.88813377146907,"pitch":123.57171837687396,"roll":19.76903239958399},"location":"Left Knee"},{"euler":{"heading":26.945423009042326,"pitch":90.12329362306426,"roll":2.839978758999173},"location":"Left Ankle"},{"euler":{"heading":34.921235258660644,"pitch":-25.614762885949435,"roll":-26.6851438535174},"location":"Right Ankle"},{"euler":{"heading":92.1432151759342,"pitch":-160.62167602927994,"roll":51.66330439122008},"location":"Right Hip"},{"euler":{"heading":145.7984397297203,"pitch":-112.76519291763628,"roll":56.26007137615126},"location":"Right Knee"},{"euler":{"heading":32.924791635128265,"pitch":-137.03424097986846,"roll":57.04397909479915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.992"} +{"sensors":[{"euler":{"heading":35.998000322703305,"pitch":122.68499064362418,"roll":19.24403487320984},"location":"Left Knee"},{"euler":{"heading":25.683575246596142,"pitch":90.4861197070573,"roll":3.5805282971036627},"location":"Left Ankle"},{"euler":{"heading":38.016781838029694,"pitch":-26.739399831424922,"roll":-24.77097892707107},"location":"Right Ankle"},{"euler":{"heading":90.64297014344922,"pitch":-160.98465598675548,"roll":51.178090771508266},"location":"Right Hip"},{"euler":{"heading":143.08948987062914,"pitch":-118.8993051597581,"roll":58.922611152510825},"location":"Right Knee"},{"euler":{"heading":28.74237568560642,"pitch":-138.93942755640356,"roll":57.6045998110497},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.93"} +{"sensors":[{"euler":{"heading":37.7509915240929,"pitch":121.79937851008468,"roll":17.996087704541196},"location":"Left Knee"},{"euler":{"heading":25.49460936061865,"pitch":90.71336175852512,"roll":5.362405643732829},"location":"Left Ankle"},{"euler":{"heading":39.99849838430954,"pitch":-27.459790394050582,"roll":-23.55019524549766},"location":"Right Ankle"},{"euler":{"heading":89.46807891947502,"pitch":-161.36066996508484,"roll":50.822267366237476},"location":"Right Hip"},{"euler":{"heading":140.77627976536127,"pitch":-120.25846857906404,"roll":61.04650227447799},"location":"Right Knee"},{"euler":{"heading":25.626974074618182,"pitch":-140.9903753277832,"roll":58.248633600746224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.194"} +{"sensors":[{"euler":{"heading":40.71428286266589,"pitch":121.15853346747464,"roll":15.612391504405569},"location":"Left Knee"},{"euler":{"heading":27.093750048619164,"pitch":91.16274504013275,"roll":8.841608640509712},"location":"Left Ankle"},{"euler":{"heading":40.9611965798766,"pitch":-27.826279094699238,"roll":-22.915217818618466},"location":"Right Ankle"},{"euler":{"heading":88.82712588129178,"pitch":-161.57011887535285,"roll":50.88673663014236},"location":"Right Hip"},{"euler":{"heading":139.185436548675,"pitch":-120.8878656142092,"roll":62.308429273005686},"location":"Right Knee"},{"euler":{"heading":21.86324388603876,"pitch":-141.24693910177794,"roll":58.37956034708082},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.295"} +{"sensors":[{"euler":{"heading":43.74704394889858,"pitch":120.64999245101872,"roll":13.372209912588055},"location":"Left Knee"},{"euler":{"heading":27.87399231735773,"pitch":90.68947524389603,"roll":11.876891878849344},"location":"Left Ankle"},{"euler":{"heading":41.39867966024558,"pitch":-28.050890049075818,"roll":-22.661689181582656},"location":"Right Ankle"},{"euler":{"heading":88.33798608003428,"pitch":-161.81315174298393,"roll":51.34340887110852},"location":"Right Hip"},{"euler":{"heading":138.33469924127536,"pitch":-121.46928192074301,"roll":62.84983949431201},"location":"Right Knee"},{"euler":{"heading":17.990779808110595,"pitch":-139.6657784416896,"roll":58.13536893186605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.395"} +{"sensors":[{"euler":{"heading":44.46450904688384,"pitch":120.99838819583927,"roll":12.766053941860699},"location":"Left Knee"},{"euler":{"heading":26.408214935425885,"pitch":89.91045205032466,"roll":12.251266294288152},"location":"Left Ankle"},{"euler":{"heading":41.649874790991554,"pitch":-28.19468182771034,"roll":-22.842503662369097},"location":"Right Ankle"},{"euler":{"heading":88.42499417058413,"pitch":-161.8309256688533,"roll":51.92310881423765},"location":"Right Hip"},{"euler":{"heading":138.16130353482134,"pitch":-121.61489135859424,"roll":62.92952188455503},"location":"Right Knee"},{"euler":{"heading":48.73799044516511,"pitch":-137.86641649337471,"roll":57.426890980860854},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.497"} +{"sensors":[{"euler":{"heading":41.35993265074882,"pitch":122.40163411767873,"roll":14.07843979663906},"location":"Left Knee"},{"euler":{"heading":22.437524664987055,"pitch":88.97366637994857,"roll":9.991928941295829},"location":"Left Ankle"},{"euler":{"heading":41.44532686344228,"pitch":-28.027530043457894,"roll":-23.350946021929555},"location":"Right Ankle"},{"euler":{"heading":88.74593922018998,"pitch":-161.8767353895276,"roll":52.51306322936525},"location":"Right Hip"},{"euler":{"heading":138.38199108494703,"pitch":-121.48505617460701,"roll":62.591398267637175},"location":"Right Knee"},{"euler":{"heading":73.94944474875874,"pitch":-136.1668750185142,"roll":56.7441897863013},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.597"} +{"sensors":[{"euler":{"heading":37.52183182953152,"pitch":124.25403652777656,"roll":15.997257887047436},"location":"Left Knee"},{"euler":{"heading":52.20062104425246,"pitch":88.084375220009,"roll":6.526582355752186},"location":"Left Ankle"},{"euler":{"heading":40.69520309688793,"pitch":-27.519560102243133,"roll":-24.233139682962296},"location":"Right Ankle"},{"euler":{"heading":89.09196298268739,"pitch":-162.07276546230247,"roll":53.207421582615105},"location":"Right Hip"},{"euler":{"heading":139.20478303305651,"pitch":-121.05247024833194,"roll":61.673071948197695},"location":"Right Knee"},{"euler":{"heading":60.79348213391317,"pitch":-135.03328321222196,"roll":56.21561010395398},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.698"} +{"sensors":[{"euler":{"heading":35.56231528982828,"pitch":125.21679238835839,"roll":17.620587711483935},"location":"Left Knee"},{"euler":{"heading":42.96178782921737,"pitch":88.11796618715219,"roll":4.062696355196875},"location":"Left Ankle"},{"euler":{"heading":38.94544882079531,"pitch":-26.709137612277196,"roll":-25.483258120194055},"location":"Right Ankle"},{"euler":{"heading":89.70227878043977,"pitch":-162.36310903454273,"roll":53.90707284317049},"location":"Right Hip"},{"euler":{"heading":141.11510816636397,"pitch":-120.1437922613147,"roll":59.98003174286438},"location":"Right Knee"},{"euler":{"heading":50.60997978121686,"pitch":-134.35829738782553,"roll":55.92161605896792},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.799"} +{"sensors":[{"euler":{"heading":34.671302203987416,"pitch":125.41614641139297,"roll":18.816014262364327},"location":"Left Knee"},{"euler":{"heading":36.40774358827113,"pitch":88.38617412109818,"roll":2.7071475388159127},"location":"Left Ankle"},{"euler":{"heading":35.60430818522698,"pitch":-25.179135276914312,"roll":-27.096029056113554},"location":"Right Ankle"},{"euler":{"heading":90.76086360505218,"pitch":-162.03724824242354,"roll":54.147779529021},"location":"Right Hip"},{"euler":{"heading":144.0348104353242,"pitch":-118.75080266507558,"roll":57.34815994465263},"location":"Right Knee"},{"euler":{"heading":42.319301648061,"pitch":-134.03289430322488,"roll":55.88745517187952},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.899"} +{"sensors":[{"euler":{"heading":34.405475657940954,"pitch":125.03767798195304,"roll":19.73125734241648},"location":"Left Knee"},{"euler":{"heading":31.748790935604873,"pitch":88.91424356217266,"roll":1.8669901933364064},"location":"Left Ankle"},{"euler":{"heading":32.755625040398385,"pitch":-23.78872898669729,"roll":-28.377026053895744},"location":"Right Ankle"},{"euler":{"heading":92.15676408070928,"pitch":-161.2608150152428,"roll":53.60458963438169},"location":"Right Hip"},{"euler":{"heading":146.22926430986502,"pitch":-117.25250879055596,"roll":54.98448066875725},"location":"Right Knee"},{"euler":{"heading":35.98274683507932,"pitch":-134.4697179993201,"roll":56.07652021857134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.0"} +{"sensors":[{"euler":{"heading":34.62182462912987,"pitch":124.27309449107965,"roll":20.327570998584818},"location":"Left Knee"},{"euler":{"heading":28.665318434268098,"pitch":89.66556458953981,"roll":1.6418304358855986},"location":"Left Ankle"},{"euler":{"heading":32.31967952731948,"pitch":-23.743427741496667,"roll":-28.804895474553266},"location":"Right Ankle"},{"euler":{"heading":93.16298378889266,"pitch":-160.61174770682402,"roll":52.48881333564164},"location":"Right Hip"},{"euler":{"heading":146.61704283672174,"pitch":-115.56380277703813,"roll":54.563840102677794},"location":"Right Knee"},{"euler":{"heading":31.002468447923018,"pitch":-135.37034002338746,"roll":56.40217846565419},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.103"} +{"sensors":[{"euler":{"heading":35.3102673858365,"pitch":123.39693740879532,"roll":20.409371677746332},"location":"Left Knee"},{"euler":{"heading":26.36649621060164,"pitch":90.22651011033673,"roll":1.7769715173206921},"location":"Left Ankle"},{"euler":{"heading":34.311124328966926,"pitch":-25.004458143209657,"roll":-27.687901021266104},"location":"Right Ankle"},{"euler":{"heading":88.83823898422753,"pitch":-160.38114133287036,"roll":51.271089403443156},"location":"Right Hip"},{"euler":{"heading":145.48390041052554,"pitch":-113.99411763792772,"roll":55.919242763623316},"location":"Right Knee"},{"euler":{"heading":27.019746870756638,"pitch":-136.61929790418824,"roll":56.82765526510577},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.204"} +{"sensors":[{"euler":{"heading":36.39715063329531,"pitch":122.34847647279784,"roll":20.025602386692633},"location":"Left Knee"},{"euler":{"heading":25.04308200344338,"pitch":90.81733003896296,"roll":2.452170922894172},"location":"Left Ankle"},{"euler":{"heading":37.24968483270056,"pitch":-26.37740012366272,"roll":-25.70807543559672},"location":"Right Ankle"},{"euler":{"heading":88.85243662454857,"pitch":-160.44595552291636,"roll":50.58537289890881},"location":"Right Hip"},{"euler":{"heading":143.17082795444284,"pitch":-119.85080520609313,"roll":58.56664137416935},"location":"Right Knee"},{"euler":{"heading":24.002456409698116,"pitch":-138.18345622053045,"roll":57.426689691646544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.305"} +{"sensors":[{"euler":{"heading":38.10159659256172,"pitch":121.31057068717912,"roll":18.87572259036286},"location":"Left Knee"},{"euler":{"heading":24.83343211795432,"pitch":91.3578935756021,"roll":4.020336565044914},"location":"Left Ankle"},{"euler":{"heading":39.45957980925866,"pitch":-27.126280572620047,"roll":-24.219791293070656},"location":"Right Ankle"},{"euler":{"heading":88.01388264679382,"pitch":-160.86132272558842,"roll":50.33943950363028},"location":"Right Hip"},{"euler":{"heading":140.65857476315028,"pitch":-125.15632113394275,"roll":60.920589245094106},"location":"Right Knee"},{"euler":{"heading":21.674589661537674,"pitch":-139.97932378696797,"roll":58.04008470658316},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.406"} +{"sensors":[{"euler":{"heading":40.81110806551405,"pitch":120.81134837255502,"roll":16.622382264787287},"location":"Left Knee"},{"euler":{"heading":25.8627231608006,"pitch":91.57355189732631,"roll":7.145633860727895},"location":"Left Ankle"},{"euler":{"heading":40.62694617697078,"pitch":-27.417478831790277,"roll":-23.527063902036264},"location":"Right Ankle"},{"euler":{"heading":87.8326267144648,"pitch":-160.98747523533854,"roll":50.28336911683994},"location":"Right Hip"},{"euler":{"heading":138.64910705741278,"pitch":-125.33764624984208,"roll":62.46797786138821},"location":"Right Knee"},{"euler":{"heading":19.203730688673996,"pitch":-140.861196138365,"roll":58.37515418652419},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.507"} +{"sensors":[{"euler":{"heading":44.01062885546648,"pitch":120.01478669950615,"roll":14.137492690113476},"location":"Left Knee"},{"euler":{"heading":27.19302076660755,"pitch":91.6378989703116,"roll":10.722746255551623},"location":"Left Ankle"},{"euler":{"heading":41.18444887196986,"pitch":-27.389656805737616,"roll":-23.304513068405377},"location":"Right Ankle"},{"euler":{"heading":87.39289448167558,"pitch":-161.23836957277751,"roll":50.64880395484771},"location":"Right Hip"},{"euler":{"heading":137.19400694057913,"pitch":-125.9000584389997,"roll":63.23796864822837},"location":"Right Knee"},{"euler":{"heading":16.140165228674846,"pitch":-139.364291708559,"roll":58.26217867470076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.608"} +{"sensors":[{"euler":{"heading":45.80399522104011,"pitch":120.12634096071174,"roll":12.715375801976927},"location":"Left Knee"},{"euler":{"heading":26.92673685389967,"pitch":91.0183599639459,"roll":12.193829748816263},"location":"Left Ankle"},{"euler":{"heading":41.52797062435047,"pitch":-27.245575195276704,"roll":-23.501467976218404},"location":"Right Ankle"},{"euler":{"heading":87.43117782092742,"pitch":-161.3227102229855,"roll":51.26485159832146},"location":"Right Hip"},{"euler":{"heading":136.34740039773018,"pitch":-126.03441683228057,"roll":63.55421443366079},"location":"Right Knee"},{"euler":{"heading":47.18703740481002,"pitch":-137.54010089359937,"roll":57.57136449491947},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.709"} +{"sensors":[{"euler":{"heading":43.97870121742899,"pitch":121.2082593893659,"roll":13.283473650323975},"location":"Left Knee"},{"euler":{"heading":23.956026447687307,"pitch":90.2853406361445,"roll":10.897150570078644},"location":"Left Ankle"},{"euler":{"heading":41.488199248016656,"pitch":-26.91900418520027,"roll":-23.786703101012684},"location":"Right Ankle"},{"euler":{"heading":87.67060994407166,"pitch":-161.45253574403287,"roll":51.947149217867334},"location":"Right Hip"},{"euler":{"heading":136.0406448814392,"pitch":-125.7873853212408,"roll":63.43609644504667},"location":"Right Knee"},{"euler":{"heading":72.51305748131126,"pitch":-135.66351439789102,"roll":56.8095218847519},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.810"} +{"sensors":[{"euler":{"heading":40.290333969628364,"pitch":122.87691609621437,"roll":15.016319297946968},"location":"Left Knee"},{"euler":{"heading":53.69367156413266,"pitch":89.46152640887594,"roll":7.666741459386413},"location":"Left Ankle"},{"euler":{"heading":40.9383927253257,"pitch":-26.272725067202227,"roll":-24.4907033285632},"location":"Right Ankle"},{"euler":{"heading":87.91421916574967,"pitch":-161.6889177749862,"roll":52.719121327797204},"location":"Right Hip"},{"euler":{"heading":136.19375471841758,"pitch":-125.27253258987265,"roll":62.8238632729041},"location":"Right Knee"},{"euler":{"heading":59.46873711895306,"pitch":-134.29242996544207,"roll":56.26283687639061},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.911"} +{"sensors":[{"euler":{"heading":37.6567478946355,"pitch":124.16686558196358,"roll":16.750796752001314},"location":"Left Knee"},{"euler":{"heading":43.97621019593025,"pitch":89.32844413089414,"roll":4.921983991986492},"location":"Left Ankle"},{"euler":{"heading":39.56074375634353,"pitch":-25.426329664451824,"roll":-25.627141429754996},"location":"Right Ankle"},{"euler":{"heading":88.3455531274626,"pitch":-162.08711852001113,"roll":53.54251111109396},"location":"Right Hip"},{"euler":{"heading":137.35954971963548,"pitch":-124.29535872880102,"roll":61.49697874246397},"location":"Right Knee"},{"euler":{"heading":49.45988162727595,"pitch":-133.59873813398943,"roll":55.994076926477916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.12"} +{"sensors":[{"euler":{"heading":36.356494793127304,"pitch":123.02732936569919,"roll":18.100305791514256},"location":"Left Knee"},{"euler":{"heading":37.17889843697207,"pitch":89.54690382874833,"roll":3.3955158918547568},"location":"Left Ankle"},{"euler":{"heading":36.672915230046875,"pitch":-24.54154140588031,"roll":-27.018139710264514},"location":"Right Ankle"},{"euler":{"heading":89.21597066701955,"pitch":-162.16801099194194,"roll":54.08543554631008},"location":"Right Hip"},{"euler":{"heading":140.25227167741647,"pitch":-122.67392030973048,"roll":59.11914309003875},"location":"Right Knee"},{"euler":{"heading":41.145735539552945,"pitch":-133.08993983634232,"roll":55.90546074403532},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.114"} +{"sensors":[{"euler":{"heading":35.76152827724246,"pitch":123.04256558478934,"roll":18.982560354415295},"location":"Left Knee"},{"euler":{"heading":32.07700099393456,"pitch":89.82187156399266,"roll":2.376916715661741},"location":"Left Ankle"},{"euler":{"heading":33.15497471067087,"pitch":-23.425817257333676,"roll":-28.467069231821682},"location":"Right Ankle"},{"euler":{"heading":90.54103428209703,"pitch":-161.66451373433387,"roll":53.85733211457224},"location":"Right Hip"},{"euler":{"heading":143.1796881708144,"pitch":-120.94512755833286,"roll":56.468093028158265},"location":"Right Knee"},{"euler":{"heading":34.71862149954665,"pitch":-133.24190762225663,"roll":56.080922396834175},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.215"} +{"sensors":[{"euler":{"heading":35.54190918748004,"pitch":122.80664953954957,"roll":19.51335167781282},"location":"Left Knee"},{"euler":{"heading":28.398978785145452,"pitch":90.08257363012348,"roll":1.8535473173852028},"location":"Left Ankle"},{"euler":{"heading":31.624073689579202,"pitch":-23.23667873337323,"roll":-29.43334160354674},"location":"Right Ankle"},{"euler":{"heading":91.81624476555467,"pitch":-161.0543336158638,"roll":53.014779088289},"location":"Right Hip"},{"euler":{"heading":144.3994826860504,"pitch":-119.2737705452995,"roll":55.25234011359238},"location":"Right Knee"},{"euler":{"heading":29.74742762302469,"pitch":-134.17014539828995,"roll":56.37643534893685},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.316"} +{"sensors":[{"euler":{"heading":35.87338177246462,"pitch":122.30780022378778,"roll":19.65476898346143},"location":"Left Knee"},{"euler":{"heading":25.863042831135616,"pitch":90.37198420116506,"roll":1.7961349259122215},"location":"Left Ankle"},{"euler":{"heading":32.59411865814363,"pitch":-24.29621067476578,"roll":-29.00567502180862},"location":"Right Ankle"},{"euler":{"heading":92.24801903019664,"pitch":-160.89458713668895,"roll":51.87781947262192},"location":"Right Hip"},{"euler":{"heading":143.83463319676625,"pitch":-117.53547954803444,"roll":56.060679347235784},"location":"Right Knee"},{"euler":{"heading":25.849433432337502,"pitch":-135.55110762202477,"roll":56.744907884124686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.417"} +{"sensors":[{"euler":{"heading":36.76310315551712,"pitch":121.55913852909978,"roll":19.342781214821823},"location":"Left Knee"},{"euler":{"heading":24.25630054642735,"pitch":90.6992629980744,"roll":2.2257538011841635},"location":"Left Ankle"},{"euler":{"heading":35.81407592828408,"pitch":-25.712743409898668,"roll":-27.12047266922165},"location":"Right Ankle"},{"euler":{"heading":91.57896241488069,"pitch":-161.02946598717523,"roll":51.110606587105444},"location":"Right Hip"},{"euler":{"heading":141.63015991879246,"pitch":-118.82818162067142,"roll":58.56382704608943},"location":"Right Knee"},{"euler":{"heading":23.008533199926216,"pitch":-137.38929137668472,"roll":57.29830588021518},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.519"} +{"sensors":[{"euler":{"heading":38.16342581277929,"pitch":120.82818545109326,"roll":18.394596804522905},"location":"Left Knee"},{"euler":{"heading":23.73142763403866,"pitch":91.01324534783433,"roll":3.440902974104075},"location":"Left Ankle"},{"euler":{"heading":38.84296372426794,"pitch":-26.87562242666491,"roll":-25.170842430772353},"location":"Right Ankle"},{"euler":{"heading":90.15123406140341,"pitch":-161.4249986482042,"roll":50.83254630108973},"location":"Right Hip"},{"euler":{"heading":139.02252307949695,"pitch":-124.62931014805139,"roll":60.99533162885585},"location":"Right Knee"},{"euler":{"heading":20.908328884884494,"pitch":-139.5104067321042,"roll":57.88824154945705},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.621"} +{"sensors":[{"euler":{"heading":40.37421853832959,"pitch":120.36295937916596,"roll":16.490234220571676},"location":"Left Knee"},{"euler":{"heading":24.33020048597506,"pitch":90.99414946228525,"roll":6.1813660807907205},"location":"Left Ankle"},{"euler":{"heading":40.41932698180741,"pitch":-27.44036744258872,"roll":-24.173615300034093},"location":"Right Ankle"},{"euler":{"heading":89.36271133420853,"pitch":-161.64616422037975,"roll":50.604717708578036},"location":"Right Hip"},{"euler":{"heading":136.82199450220233,"pitch":-125.72878205586139,"roll":62.84476637813722},"location":"Right Knee"},{"euler":{"heading":19.045996504638868,"pitch":-141.28706377188595,"roll":58.362606557960675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.721"} +{"sensors":[{"euler":{"heading":43.52210742048788,"pitch":119.66255844273608,"roll":13.96440744968316},"location":"Left Knee"},{"euler":{"heading":26.52083302284172,"pitch":91.38115098974217,"roll":10.034508909263298},"location":"Left Ankle"},{"euler":{"heading":41.21659096112364,"pitch":-27.61250859841137,"roll":-23.705256778795725},"location":"Right Ankle"},{"euler":{"heading":88.61005424994752,"pitch":-161.84629143475908,"roll":50.78500628866542},"location":"Right Hip"},{"euler":{"heading":135.11532903062624,"pitch":-126.95553378153798,"roll":63.870235260262284},"location":"Right Knee"},{"euler":{"heading":16.236934340901026,"pitch":-140.43335909334803,"roll":58.42918386702373},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.822"} +{"sensors":[{"euler":{"heading":46.04014231980516,"pitch":119.64114977593157,"roll":11.964224519208987},"location":"Left Knee"},{"euler":{"heading":27.03033410267711,"pitch":90.57794934817989,"roll":12.225044764953143},"location":"Left Ankle"},{"euler":{"heading":41.82777268248394,"pitch":-27.619642149636096,"roll":-23.656005205612047},"location":"Right Ankle"},{"euler":{"heading":88.33266198665983,"pitch":-161.88469418052725,"roll":51.31080869665963},"location":"Right Hip"},{"euler":{"heading":133.96761612834405,"pitch":-127.61374746566055,"roll":64.41765680709995},"location":"Right Knee"},{"euler":{"heading":47.15925631089718,"pitch":-138.68583255552542,"roll":57.82949886857278},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.923"} +{"sensors":[{"euler":{"heading":45.319502575043465,"pitch":120.55519090374155,"roll":11.973572966651043},"location":"Left Knee"},{"euler":{"heading":24.778069907024324,"pitch":89.58361335705173,"roll":11.615051944541786},"location":"Left Ankle"},{"euler":{"heading":42.04877814951722,"pitch":-27.41206604791905,"roll":-23.914649373271846},"location":"Right Ankle"},{"euler":{"heading":88.42658011637252,"pitch":-161.83026425375147,"roll":51.96495342031888},"location":"Right Hip"},{"euler":{"heading":133.3013542092656,"pitch":-127.81695832130316,"roll":64.55034115698844},"location":"Right Knee"},{"euler":{"heading":72.34762296902599,"pitch":-136.77160211635433,"roll":56.99553878526676},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.25"} +{"sensors":[{"euler":{"heading":41.45952434700571,"pitch":122.22651762309492,"roll":13.646718278278428},"location":"Left Knee"},{"euler":{"heading":20.47850639730435,"pitch":88.60062919276817,"roll":8.68496159426325},"location":"Left Ankle"},{"euler":{"heading":41.77789380495929,"pitch":-27.063712300852597,"roll":-24.362721109102498},"location":"Right Ankle"},{"euler":{"heading":88.6937300222583,"pitch":-161.84046504574601,"roll":52.65199760015382},"location":"Right Hip"},{"euler":{"heading":133.25522551861388,"pitch":-127.4835969969333,"roll":64.1650527704679},"location":"Right Knee"},{"euler":{"heading":93.22153297384557,"pitch":-135.11080638982614,"roll":56.3419793194092},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.126"} +{"sensors":[{"euler":{"heading":37.87686155222748,"pitch":124.03612489984332,"roll":15.564986691071738},"location":"Left Knee"},{"euler":{"heading":50.57874310533369,"pitch":88.00841670157635,"roll":5.320158945133565},"location":"Left Ankle"},{"euler":{"heading":40.94372731455848,"pitch":-26.55824583284966,"roll":-25.249739973509975},"location":"Right Ankle"},{"euler":{"heading":89.00165168750792,"pitch":-162.1766874074785,"roll":53.50555375329828},"location":"Right Hip"},{"euler":{"heading":134.0795250025103,"pitch":-126.61714241832104,"roll":63.091087381611686},"location":"Right Knee"},{"euler":{"heading":76.84693105571804,"pitch":-134.24414164288734,"roll":55.95867541356058},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.227"} +{"sensors":[{"euler":{"heading":36.44159869337062,"pitch":124.71639889824183,"roll":17.092694203960914},"location":"Left Knee"},{"euler":{"heading":42.23427201576188,"pitch":88.58431090295394,"roll":3.286135181413072},"location":"Left Ankle"},{"euler":{"heading":39.0359793337037,"pitch":-25.976010363086306,"roll":-26.462607463658976},"location":"Right Ankle"},{"euler":{"heading":89.56293360681585,"pitch":-162.69495771772392,"roll":54.343313827831814},"location":"Right Hip"},{"euler":{"heading":136.2883498856362,"pitch":-125.23857850156384,"roll":61.227486723079366},"location":"Right Knee"},{"euler":{"heading":63.73074497883336,"pitch":-133.66205877156898,"roll":55.77235656767616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.328"} +{"sensors":[{"euler":{"heading":35.93228148732489,"pitch":124.56501720221945,"roll":18.255102276828282},"location":"Left Knee"},{"euler":{"heading":36.03797612519311,"pitch":89.20054813533358,"roll":2.040128531834858},"location":"Left Ankle"},{"euler":{"heading":35.595200163505666,"pitch":-24.30766093328377,"roll":-28.18435832888912},"location":"Right Ankle"},{"euler":{"heading":90.74783815881192,"pitch":-162.4207641522364,"roll":54.56035904692505},"location":"Right Hip"},{"euler":{"heading":139.28599480998653,"pitch":-123.46201799135022,"roll":58.518568020573426},"location":"Right Knee"},{"euler":{"heading":53.42523361373177,"pitch":-132.7845733381927,"roll":56.01398751347494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.429"} +{"sensors":[{"euler":{"heading":35.81251849694634,"pitch":123.97024699122659,"roll":19.110741220895644},"location":"Left Knee"},{"euler":{"heading":31.523314740156,"pitch":89.9008532320253,"roll":1.2812572402184461},"location":"Left Ankle"},{"euler":{"heading":32.84923763176533,"pitch":-23.18445810832737,"roll":-29.367773397141423},"location":"Right Ankle"},{"euler":{"heading":92.06286455284076,"pitch":-161.7624270022648,"roll":53.983867865460944},"location":"Right Hip"},{"euler":{"heading":141.49670558457032,"pitch":-121.53340604939291,"roll":56.293256687957914},"location":"Right Knee"},{"euler":{"heading":45.17734201755318,"pitch":-133.37581531442294,"roll":56.26830518014815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.530"} +{"sensors":[{"euler":{"heading":36.10090168685835,"pitch":123.10506233086551,"roll":19.62933934937086},"location":"Left Knee"},{"euler":{"heading":28.516370617656875,"pitch":90.75451824309869,"roll":1.1355965147228346},"location":"Left Ankle"},{"euler":{"heading":32.812500948426454,"pitch":-23.577137771171955,"roll":-29.3922420576676},"location":"Right Ankle"},{"euler":{"heading":92.81261480745063,"pitch":-161.26183904428834,"roll":52.84984867745346},"location":"Right Hip"},{"euler":{"heading":141.67187355372607,"pitch":-119.43153471053263,"roll":56.146454515932376},"location":"Right Knee"},{"euler":{"heading":38.62017254647465,"pitch":-134.56479928235836,"roll":56.6411182815816},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.630"} +{"sensors":[{"euler":{"heading":36.81859944499377,"pitch":122.16165498798448,"roll":19.640817184347107},"location":"Left Knee"},{"euler":{"heading":26.339662823157372,"pitch":91.44374412987713,"roll":1.3783461346411858},"location":"Left Ankle"},{"euler":{"heading":35.24377834830637,"pitch":-24.68157257226173,"roll":-27.916165617703513},"location":"Right Ankle"},{"euler":{"heading":92.32662758601757,"pitch":-161.2250410103845,"roll":51.83559359146707},"location":"Right Hip"},{"euler":{"heading":139.95441960929622,"pitch":-118.08251732774286,"roll":58.0885292495914},"location":"Right Knee"},{"euler":{"heading":33.191716275389155,"pitch":-135.9557825471513,"roll":57.121154948789616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.731"} +{"sensors":[{"euler":{"heading":37.899710117525544,"pitch":121.24853611875048,"roll":19.10423488982493},"location":"Left Knee"},{"euler":{"heading":24.991384317020923,"pitch":91.954446613112,"roll":2.103355363884876},"location":"Left Ankle"},{"euler":{"heading":38.47112961118389,"pitch":-25.75823709817678,"roll":-25.843282688629557},"location":"Right Ankle"},{"euler":{"heading":90.91205417679113,"pitch":-161.53062592111155,"roll":51.441006512244115},"location":"Right Hip"},{"euler":{"heading":137.2164212894421,"pitch":-89.81067543229972,"roll":60.67226203538247},"location":"Right Knee"},{"euler":{"heading":28.865808367286924,"pitch":-137.73763570826452,"roll":57.6625437027046},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.832"} +{"sensors":[{"euler":{"heading":39.51024988440284,"pitch":120.36282453447117,"roll":17.81013310743472},"location":"Left Knee"},{"euler":{"heading":24.67814126398335,"pitch":92.33927956337531,"roll":3.7938816732183955},"location":"Left Ankle"},{"euler":{"heading":40.97099391424267,"pitch":-26.524398228258747,"roll":-24.14594181514034},"location":"Right Ankle"},{"euler":{"heading":89.56949847935657,"pitch":-161.91415762826878,"roll":51.29204026495846},"location":"Right Hip"},{"euler":{"heading":134.6653952618181,"pitch":-98.2710217420894,"roll":62.87347536619188},"location":"Right Knee"},{"euler":{"heading":25.7042593889528,"pitch":-139.86723198968588,"roll":58.29512027660539},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.933"} +{"sensors":[{"euler":{"heading":42.154761684928474,"pitch":119.82890503858425,"roll":15.444125823839274},"location":"Left Knee"},{"euler":{"heading":26.14579740533408,"pitch":92.61616161779301,"roll":7.202314008241052},"location":"Left Ankle"},{"euler":{"heading":42.06068554547538,"pitch":-26.908522344212663,"roll":-23.359169120335995},"location":"Right Ankle"},{"euler":{"heading":89.14203510336249,"pitch":-162.04122952964727,"roll":51.34154895664412},"location":"Right Hip"},{"euler":{"heading":133.0106253955908,"pitch":-101.88376908546857,"roll":64.30643953407476},"location":"Right Knee"},{"euler":{"heading":22.104884245628806,"pitch":-140.36737676141652,"roll":58.54647644161503},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.33"} +{"sensors":[{"euler":{"heading":45.23566243029717,"pitch":119.25659497873394,"roll":12.94052103346205},"location":"Left Knee"},{"euler":{"heading":27.460473494324468,"pitch":92.11165122023189,"roll":10.85132370755786},"location":"Left Ankle"},{"euler":{"heading":42.67943971124531,"pitch":-27.125309915896512,"roll":-23.03368311224831},"location":"Right Ankle"},{"euler":{"heading":88.53043502296204,"pitch":-162.31079172452755,"roll":51.8084649791492},"location":"Right Hip"},{"euler":{"heading":131.88756863536796,"pitch":-105.10529165871617,"roll":65.00261702734694},"location":"Right Knee"},{"euler":{"heading":52.314700428026,"pitch":-138.60234555727735,"roll":58.38747737552752},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.134"} +{"sensors":[{"euler":{"heading":46.83083260344111,"pitch":119.51756116732085,"roll":11.715500287493708},"location":"Left Knee"},{"euler":{"heading":25.528603181451828,"pitch":91.39948410707198,"roll":12.012910899568908},"location":"Left Ankle"},{"euler":{"heading":43.019606332325615,"pitch":-27.238241280013387,"roll":-23.095877392679995},"location":"Right Ankle"},{"euler":{"heading":88.46961030983262,"pitch":-162.4001338384478,"roll":52.45094203350719},"location":"Right Hip"},{"euler":{"heading":131.4555262128926,"pitch":-107.59825030729795,"roll":65.22234446488618},"location":"Right Knee"},{"euler":{"heading":76.74725420507983,"pitch":-136.70200211992358,"roll":57.7263613199698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.235"} +{"sensors":[{"euler":{"heading":44.540045085342285,"pitch":120.7703505711621,"roll":12.568961060083197},"location":"Left Knee"},{"euler":{"heading":22.38911928382445,"pitch":90.38050745471605,"roll":10.519410537811165},"location":"Left Ankle"},{"euler":{"heading":42.822509779945506,"pitch":-27.28097698069758,"roll":-23.455366135825837},"location":"Right Ankle"},{"euler":{"heading":88.83003332722011,"pitch":-162.42746952214299,"roll":53.10364719967963},"location":"Right Hip"},{"euler":{"heading":131.749808880601,"pitch":-109.29520754236424,"roll":64.99310819819802},"location":"Right Knee"},{"euler":{"heading":96.91907114237726,"pitch":-135.0002646266389,"roll":57.11624326236521},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.335"} +{"sensors":[{"euler":{"heading":40.94615686660274,"pitch":122.47471801255,"roll":14.441118353580595},"location":"Left Knee"},{"euler":{"heading":51.92317446614031,"pitch":89.53574987600994,"roll":6.920652999831129},"location":"Left Ankle"},{"euler":{"heading":42.090377806480646,"pitch":-26.939147763298735,"roll":-24.23250191969933},"location":"Right Ankle"},{"euler":{"heading":89.3332330666701,"pitch":-162.49976736204587,"roll":53.76560752932824},"location":"Right Hip"},{"euler":{"heading":132.38910281798107,"pitch":-110.36106255061495,"roll":64.28627217313618},"location":"Right Knee"},{"euler":{"heading":79.74367449838127,"pitch":-133.93602938948314,"roll":56.67712348222662},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.437"} +{"sensors":[{"euler":{"heading":38.265078657235044,"pitch":123.80887186724854,"roll":16.12924152299052},"location":"Left Knee"},{"euler":{"heading":76.55746994320239,"pitch":89.24102909830317,"roll":3.9971642187531673},"location":"Left Ankle"},{"euler":{"heading":40.59316749583296,"pitch":-26.25528064326614,"roll":-25.38755610213921},"location":"Right Ankle"},{"euler":{"heading":89.89983046145687,"pitch":-162.87434387197985,"roll":54.45972385624265},"location":"Right Hip"},{"euler":{"heading":133.81029744616978,"pitch":-110.82612234401616,"roll":62.92134633976537},"location":"Right Knee"},{"euler":{"heading":66.09665003544495,"pitch":-133.21084175115345,"roll":56.40462639699921},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.537"} +{"sensors":[{"euler":{"heading":37.08646235384605,"pitch":124.15999014286704,"roll":17.407079187452524},"location":"Left Knee"},{"euler":{"heading":63.96935914619674,"pitch":89.47374945193509,"roll":2.67163037223123},"location":"Left Ankle"},{"euler":{"heading":37.92848888533802,"pitch":-25.24407602652963,"roll":-26.81918084111378},"location":"Right Ankle"},{"euler":{"heading":90.73236886156744,"pitch":-163.10032797579126,"roll":55.08186711409619},"location":"Right Hip"},{"euler":{"heading":136.4365157294581,"pitch":-110.67024852139922,"roll":60.681501981457636},"location":"Right Knee"},{"euler":{"heading":55.065168706597305,"pitch":-132.67354368280095,"roll":56.3483004196868},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.638"} +{"sensors":[{"euler":{"heading":36.66838091439482,"pitch":123.78805263561355,"roll":18.438511183700143},"location":"Left Knee"},{"euler":{"heading":54.19730547258262,"pitch":90.0529413727298,"roll":1.7040548267395828},"location":"Left Ankle"},{"euler":{"heading":34.165201124204565,"pitch":-23.87127348306574,"roll":-28.536739229752474},"location":"Right Ankle"},{"euler":{"heading":91.96696400244153,"pitch":-162.54976129120385,"roll":54.93139212829692},"location":"Right Hip"},{"euler":{"heading":139.43703937905462,"pitch":-110.20815557233907,"roll":57.86399672906804},"location":"Right Knee"},{"euler":{"heading":46.43093946452305,"pitch":-132.80566804409773,"roll":56.547035366749085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.739"} +{"sensors":[{"euler":{"heading":36.61143105472155,"pitch":123.04721473633306,"roll":19.199414370709597},"location":"Left Knee"},{"euler":{"heading":46.653747294084496,"pitch":90.77323285882011,"roll":1.2090195174053475},"location":"Left Ankle"},{"euler":{"heading":32.225324282952,"pitch":-23.27709720537019,"roll":-29.662852861812425},"location":"Right Ankle"},{"euler":{"heading":93.15620838287181,"pitch":-161.87320799083002,"roll":54.016395765130746},"location":"Right Hip"},{"euler":{"heading":140.70480333862133,"pitch":-109.67705833415997,"roll":56.43816958476933},"location":"Right Knee"},{"euler":{"heading":39.62878084279522,"pitch":-133.66244223112238,"roll":56.9052248961773},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.840"} +{"sensors":[{"euler":{"heading":36.9988080283762,"pitch":122.12714606423808,"roll":19.53716355165254},"location":"Left Knee"},{"euler":{"heading":41.73749532001767,"pitch":91.70443613179285,"roll":1.6290893162442641},"location":"Left Ankle"},{"euler":{"heading":33.10425790960117,"pitch":-24.094972037836524,"roll":-29.26091650052622},"location":"Right Ankle"},{"euler":{"heading":93.33923446763167,"pitch":-161.54044122865872,"roll":52.82577459459571},"location":"Right Hip"},{"euler":{"heading":139.8760204891293,"pitch":-108.81003668380916,"roll":57.30612080356949},"location":"Right Knee"},{"euler":{"heading":34.0889073373208,"pitch":-134.8776686045811,"roll":57.3541931346562},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.941"} +{"sensors":[{"euler":{"heading":37.821343018916714,"pitch":121.12813023933359,"roll":19.361214450626207},"location":"Left Knee"},{"euler":{"heading":37.78341726940442,"pitch":92.35086361451522,"roll":2.3837543885123575},"location":"Left Ankle"},{"euler":{"heading":36.34473823455363,"pitch":-25.26310873955749,"roll":-27.38710616793178},"location":"Right Ankle"},{"euler":{"heading":92.4546124993044,"pitch":-161.5960473361709,"roll":51.950551629198195},"location":"Right Hip"},{"euler":{"heading":137.40193109573042,"pitch":-115.1420236253644,"roll":59.81564744115698},"location":"Right Knee"},{"euler":{"heading":29.59448212039565,"pitch":-136.2983432757428,"roll":57.92097661031026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.42"} +{"sensors":[{"euler":{"heading":39.02991145610038,"pitch":120.15280202534306,"roll":18.601526424154706},"location":"Left Knee"},{"euler":{"heading":35.080900170116294,"pitch":92.87040134952665,"roll":3.6908893051101317},"location":"Left Ankle"},{"euler":{"heading":39.14072736520465,"pitch":-26.474704526879353,"roll":-25.41805774634571},"location":"Right Ankle"},{"euler":{"heading":90.88010600854632,"pitch":-161.95551991345542,"roll":51.556919790852525},"location":"Right Hip"},{"euler":{"heading":134.78756395029782,"pitch":-87.1915131172836,"roll":62.11618209127245},"location":"Right Knee"},{"euler":{"heading":26.033357818390108,"pitch":-138.1189540657573,"roll":58.51707915879337},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.142"} +{"sensors":[{"euler":{"heading":40.964789883403725,"pitch":119.29403306209909,"roll":17.004471595562684},"location":"Left Knee"},{"euler":{"heading":33.77176888225434,"pitch":93.1264870235952,"roll":5.985455640312647},"location":"Left Ankle"},{"euler":{"heading":40.99012744478216,"pitch":-27.119203980100615,"roll":-24.117884819708895},"location":"Right Ankle"},{"euler":{"heading":89.78115165905359,"pitch":-162.1797274602787,"roll":51.420708532476795},"location":"Right Hip"},{"euler":{"heading":132.4745090684764,"pitch":-93.45748560475383,"roll":63.98979279548579},"location":"Right Knee"},{"euler":{"heading":23.337489514864885,"pitch":-139.80205124216906,"roll":59.1575477284602},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.243"} +{"sensors":[{"euler":{"heading":44.02944782273594,"pitch":118.66558712005815,"roll":14.429728034502803},"location":"Left Knee"},{"euler":{"heading":34.198071135916074,"pitch":93.64953264144052,"roll":9.470789438636004},"location":"Left Ankle"},{"euler":{"heading":41.89799283066657,"pitch":-27.381348861465682,"roll":-23.48835904261107},"location":"Right Ankle"},{"euler":{"heading":89.05374296010223,"pitch":-162.39449789695135,"roll":51.60661035583647},"location":"Right Hip"},{"euler":{"heading":130.83623048759216,"pitch":-97.99185419222482,"roll":65.10253628057241},"location":"Right Knee"},{"euler":{"heading":19.8399837407145,"pitch":-139.21445972473757,"roll":59.34470147227505},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.344"} +{"sensors":[{"euler":{"heading":46.54473170090846,"pitch":118.6736168886761,"roll":12.391226827328744},"location":"Left Knee"},{"euler":{"heading":33.132143740854715,"pitch":92.92187144579736,"roll":11.839800525072562},"location":"Left Ankle"},{"euler":{"heading":42.314360096901815,"pitch":-27.410471464630554,"roll":-23.287325928582806},"location":"Right Ankle"},{"euler":{"heading":88.69000850988638,"pitch":-162.48776808299772,"roll":52.1315467401514},"location":"Right Hip"},{"euler":{"heading":129.79207515763656,"pitch":-101.67871978798837,"roll":65.6100242881091},"location":"Right Knee"},{"euler":{"heading":50.35913214091573,"pitch":-137.61855273998606,"roll":58.88979493036809},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.445"} +{"sensors":[{"euler":{"heading":45.97641742124606,"pitch":119.56673366204974,"roll":12.28861302204945},"location":"Left Knee"},{"euler":{"heading":29.934748274309644,"pitch":92.07317912066718,"roll":11.468594492111773},"location":"Left Ankle"},{"euler":{"heading":42.488812545885345,"pitch":-27.413042551948603,"roll":-23.432407993120854},"location":"Right Ankle"},{"euler":{"heading":88.76673751993806,"pitch":-162.51865818126456,"roll":52.76112659007316},"location":"Right Hip"},{"euler":{"heading":129.43058244763506,"pitch":-104.4381777421735,"roll":65.69468315826015},"location":"Right Knee"},{"euler":{"heading":75.20549010558504,"pitch":-135.79990190236768,"roll":58.16306003373089},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.546"} +{"sensors":[{"euler":{"heading":42.71678772737732,"pitch":121.12994684020063,"roll":13.771266867160248},"location":"Left Knee"},{"euler":{"heading":24.69484369971536,"pitch":91.06740628181241,"roll":8.724849816643097},"location":"Left Ankle"},{"euler":{"heading":42.19764656390825,"pitch":-27.373751911423167,"roll":-23.77177490440496},"location":"Right Ankle"},{"euler":{"heading":89.13277383827827,"pitch":-162.70118785954935,"roll":53.40216139737503},"location":"Right Hip"},{"euler":{"heading":129.77668583517132,"pitch":-106.31683048095907,"roll":65.26593771201486},"location":"Right Knee"},{"euler":{"heading":61.714915161799006,"pitch":-134.32071869722486,"roll":57.60652596702679},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.647"} +{"sensors":[{"euler":{"heading":39.22140873771369,"pitch":122.91901386702027,"roll":15.618234528921576},"location":"Left Knee"},{"euler":{"heading":54.04891140226643,"pitch":90.36539327259061,"roll":5.439487110197849},"location":"Left Ankle"},{"euler":{"heading":41.15662364701478,"pitch":-27.064714639341016,"roll":-24.715007480424237},"location":"Right Ankle"},{"euler":{"heading":89.79514774061741,"pitch":-162.937698107909,"roll":54.10112397111629},"location":"Right Hip"},{"euler":{"heading":130.97565228452333,"pitch":-107.48169883845891,"roll":64.1823756509658},"location":"Right Knee"},{"euler":{"heading":51.29904975331559,"pitch":-133.60055467187556,"roll":57.204002389588744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.752"} +{"sensors":[{"euler":{"heading":37.47711407517907,"pitch":123.65799050426445,"roll":17.146822153013364},"location":"Left Knee"},{"euler":{"heading":45.3312902516259,"pitch":90.39008834227896,"roll":3.798393182469635},"location":"Left Ankle"},{"euler":{"heading":38.889252006330956,"pitch":-26.49375444011148,"roll":-26.085756894473246},"location":"Right Ankle"},{"euler":{"heading":90.75367030139861,"pitch":-163.02091356963555,"roll":54.662254093089324},"location":"Right Hip"},{"euler":{"heading":133.53881653037783,"pitch":-107.78665042380987,"roll":62.119841358989156},"location":"Right Knee"},{"euler":{"heading":42.87756608032517,"pitch":-133.13914603719002,"roll":56.97056560375878},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.852"} +{"sensors":[{"euler":{"heading":36.67909012036497,"pitch":123.67863351561358,"roll":18.19706577173152},"location":"Left Knee"},{"euler":{"heading":38.37167081197588,"pitch":90.41837960301338,"roll":2.4144784161619026},"location":"Left Ankle"},{"euler":{"heading":60.91503130827152,"pitch":-24.722646876770664,"roll":-27.92064463979514},"location":"Right Ankle"},{"euler":{"heading":92.26978036400683,"pitch":-162.26387009979905,"roll":54.62303845465136},"location":"Right Hip"},{"euler":{"heading":136.26178991336727,"pitch":-107.71182036362532,"roll":59.450888951459405},"location":"Right Knee"},{"euler":{"heading":36.36256414283957,"pitch":-133.16752693462252,"roll":57.026873317014065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.953"} +{"sensors":[{"euler":{"heading":36.29915312920578,"pitch":123.41193809620134,"roll":18.81446782126323},"location":"Left Knee"},{"euler":{"heading":33.07742294118411,"pitch":90.44992496740122,"roll":1.5129815837893976},"location":"Left Ankle"},{"euler":{"heading":53.70593915444208,"pitch":-23.922632311340557,"roll":-28.998348684433395},"location":"Right Ankle"},{"euler":{"heading":93.77870846896005,"pitch":-161.38859048701553,"roll":53.82060851735659},"location":"Right Hip"},{"euler":{"heading":137.79575655077662,"pitch":-107.34089781828966,"roll":57.88005411595022},"location":"Right Knee"},{"euler":{"heading":31.081595447006247,"pitch":-133.85313724758547,"roll":57.19078560828184},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.54"} +{"sensors":[{"euler":{"heading":36.41017797743134,"pitch":122.99225282905267,"roll":19.05803824497365},"location":"Left Knee"},{"euler":{"heading":29.348919949639583,"pitch":90.54981327294244,"roll":1.2323172533501214},"location":"Left Ankle"},{"euler":{"heading":50.0920858145752,"pitch":-24.500741438522503,"roll":-28.885544920855473},"location":"Right Ankle"},{"euler":{"heading":94.35428800560452,"pitch":-160.85816531452656,"roll":52.74968182308506},"location":"Right Hip"},{"euler":{"heading":137.19683077814534,"pitch":-106.94580617490409,"roll":58.47410410589297},"location":"Right Knee"},{"euler":{"heading":26.79321589756635,"pitch":-134.96698946575665,"roll":57.45206660047479},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.155"} +{"sensors":[{"euler":{"heading":37.04805330313188,"pitch":122.30333409378389,"roll":18.93955651660676},"location":"Left Knee"},{"euler":{"heading":26.950009614591867,"pitch":90.87801201614437,"roll":1.525319396786244},"location":"Left Ankle"},{"euler":{"heading":49.6776583131937,"pitch":-25.64811528053423,"roll":-27.3387618540287},"location":"Right Ankle"},{"euler":{"heading":93.82081491267118,"pitch":-160.77058709831942,"roll":51.881697176640174},"location":"Right Hip"},{"euler":{"heading":135.11903387482323,"pitch":-109.29935786948393,"roll":60.78929211625581},"location":"Right Knee"},{"euler":{"heading":23.47809056195853,"pitch":-136.3910581122151,"roll":57.86685248737092},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.256"} +{"sensors":[{"euler":{"heading":38.117313223854566,"pitch":121.45402700976825,"roll":18.35672074354342},"location":"Left Knee"},{"euler":{"heading":25.56247929411728,"pitch":91.2463345709871,"roll":2.3611992660252525},"location":"Left Ankle"},{"euler":{"heading":49.8080048303393,"pitch":-26.87064981167303,"roll":-25.570507333098764},"location":"Right Ankle"},{"euler":{"heading":92.29007112466755,"pitch":-161.1372378248416,"roll":51.40543549837232},"location":"Right Hip"},{"euler":{"heading":132.59133828212126,"pitch":-82.04137256087816,"roll":62.9199198935209},"location":"Right Knee"},{"euler":{"heading":20.93608348221612,"pitch":-138.1255604115418,"roll":58.37892397447624},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.356"} +{"sensors":[{"euler":{"heading":39.87867291393401,"pitch":120.63200242724076,"roll":16.991038803032822},"location":"Left Knee"},{"euler":{"heading":25.228987513654904,"pitch":91.46665962669736,"roll":4.152049654375494},"location":"Left Ankle"},{"euler":{"heading":49.39749065286241,"pitch":-27.66773484451792,"roll":-24.410410649622644},"location":"Right Ankle"},{"euler":{"heading":91.01291855391217,"pitch":-161.51062808297516,"roll":51.07554840468398},"location":"Right Hip"},{"euler":{"heading":130.468156125395,"pitch":-89.57014175795048,"roll":64.8122000239815},"location":"Right Knee"},{"euler":{"heading":19.0865578614635,"pitch":-139.9626071580316,"roll":58.93146431567554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.458"} +{"sensors":[{"euler":{"heading":42.7536914399256,"pitch":120.30434440261538,"roll":14.62565880212907},"location":"Left Knee"},{"euler":{"heading":26.905985708810093,"pitch":91.60657320244178,"roll":7.68098928634285},"location":"Left Ankle"},{"euler":{"heading":48.47277663839909,"pitch":-28.270091073342357,"roll":-23.83629268250527},"location":"Right Ankle"},{"euler":{"heading":90.1633825766841,"pitch":-161.7771559304591,"roll":51.181322713425615},"location":"Right Hip"},{"euler":{"heading":129.06857943098248,"pitch":-94.58130916274801,"roll":65.94183700760034},"location":"Right Knee"},{"euler":{"heading":15.877755632392212,"pitch":-139.69267999853523,"roll":58.87258538344314},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.559"} +{"sensors":[{"euler":{"heading":45.62499522936415,"pitch":120.11487035923523,"roll":12.33665269866457},"location":"Left Knee"},{"euler":{"heading":27.631071466830193,"pitch":90.93056098106761,"roll":10.636426506242376},"location":"Left Ankle"},{"euler":{"heading":47.42430174068047,"pitch":-28.636788984201775,"roll":-23.608107715753743},"location":"Right Ankle"},{"euler":{"heading":89.73532229026019,"pitch":-161.96482256863808,"roll":51.59213655333543},"location":"Right Hip"},{"euler":{"heading":128.41606809629772,"pitch":-98.42018866724909,"roll":66.39326782946016},"location":"Right Knee"},{"euler":{"heading":46.80570810077884,"pitch":-137.9977745789435,"roll":58.38529984854562},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.663"} +{"sensors":[{"euler":{"heading":46.257821730220044,"pitch":120.63902101137136,"roll":11.614972952671616},"location":"Left Knee"},{"euler":{"heading":26.019061764621433,"pitch":89.90268283587443,"roll":10.956386172384853},"location":"Left Ankle"},{"euler":{"heading":46.452850795741895,"pitch":-28.85564394006086,"roll":-23.776183206426488},"location":"Right Ankle"},{"euler":{"heading":89.78910791405984,"pitch":-161.95033289618175,"roll":52.07683260362094},"location":"Right Hip"},{"euler":{"heading":128.2504016014037,"pitch":-101.34692675708077,"roll":66.47476441033409},"location":"Right Knee"},{"euler":{"heading":71.95706785147175,"pitch":-136.22628460020996,"roll":57.55197700899698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.763"} +{"sensors":[{"euler":{"heading":43.2206854186149,"pitch":122.15374070769546,"roll":12.787152376552799},"location":"Left Knee"},{"euler":{"heading":21.827566400600098,"pitch":88.75855044460185,"roll":8.624029038384037},"location":"Left Ankle"},{"euler":{"heading":45.20558444461271,"pitch":-28.833703953259143,"roll":-24.231481217950854},"location":"Right Ankle"},{"euler":{"heading":90.03528798322203,"pitch":-161.99667462892003,"roll":52.58676567142204},"location":"Right Hip"},{"euler":{"heading":128.4774178215054,"pitch":-103.53747042749056,"roll":66.10855587118854},"location":"Right Knee"},{"euler":{"heading":92.65204395035542,"pitch":-134.5638543912457,"roll":56.88710355388753},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.864"} +{"sensors":[{"euler":{"heading":39.22971869807269,"pitch":124.02972395907545,"roll":14.680171391458918},"location":"Left Knee"},{"euler":{"heading":51.61795357743134,"pitch":87.78865194163139,"roll":5.247186671008104},"location":"Left Ankle"},{"euler":{"heading":43.39954351350257,"pitch":-28.249046781778272,"roll":-25.261781034476005},"location":"Right Ankle"},{"euler":{"heading":90.4152191834351,"pitch":-162.09211587655705,"roll":53.19087877889612},"location":"Right Hip"},{"euler":{"heading":129.24593860144014,"pitch":-104.97267050083337,"roll":65.15292559031032},"location":"Right Knee"},{"euler":{"heading":75.92879068646023,"pitch":-133.588695104666,"roll":56.42816351727571},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.966"} +{"sensors":[{"euler":{"heading":37.139090419486536,"pitch":124.96625507426616,"roll":16.274210967813996},"location":"Left Knee"},{"euler":{"heading":42.60360649680139,"pitch":87.71363148722024,"roll":2.905003085136032},"location":"Left Ankle"},{"euler":{"heading":40.73169764875354,"pitch":-27.250325775875947,"roll":-26.592409272105776},"location":"Right Ankle"},{"euler":{"heading":91.04735304649937,"pitch":-162.2854938201787,"roll":53.73158036653588},"location":"Right Hip"},{"euler":{"heading":131.03453756247077,"pitch":-105.65898059398651,"roll":63.47963772856891},"location":"Right Knee"},{"euler":{"heading":62.4736215001848,"pitch":-132.9024929207012,"roll":56.131786268302285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.67"} +{"sensors":[{"euler":{"heading":36.164504415668205,"pitch":125.17755082450842,"roll":17.38368042694345},"location":"Left Knee"},{"euler":{"heading":36.007449567621066,"pitch":87.75276288490036,"roll":1.5347282906487882},"location":"Left Ankle"},{"euler":{"heading":36.85285569845682,"pitch":-25.555882113835942,"roll":-28.22452375133287},"location":"Right Ankle"},{"euler":{"heading":92.04056817241246,"pitch":-161.8897271701671,"roll":53.71549660986207},"location":"Right Hip"},{"euler":{"heading":133.59297703921317,"pitch":-105.78654496034716,"roll":61.00238140914159},"location":"Right Knee"},{"euler":{"heading":51.70030129173345,"pitch":-132.51343266325142,"roll":56.172757878422516},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.167"} +{"sensors":[{"euler":{"heading":35.79457661000107,"pitch":124.82772408927714,"roll":18.250869615006863},"location":"Left Knee"},{"euler":{"heading":31.230780785138897,"pitch":88.1032732154634,"roll":0.6812457745813298},"location":"Left Ankle"},{"euler":{"heading":33.801715609856,"pitch":-24.563645266652912,"roll":-29.386282164039375},"location":"Right Ankle"},{"euler":{"heading":93.20458478153597,"pitch":-161.17488933446032,"roll":53.094521441712175},"location":"Right Hip"},{"euler":{"heading":135.51541056489884,"pitch":-105.78306862384565,"roll":59.016422131606795},"location":"Right Knee"},{"euler":{"heading":43.2952900156969,"pitch":-132.8807639548512,"roll":56.417917834141825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.268"} +{"sensors":[{"euler":{"heading":35.92568758361241,"pitch":124.19012798328143,"roll":18.762083348549396},"location":"Left Knee"},{"euler":{"heading":28.09848490637823,"pitch":88.62258173737266,"roll":0.5807704776904938},"location":"Left Ankle"},{"euler":{"heading":33.24161572589815,"pitch":-25.17590300844991,"roll":-29.414935487181857},"location":"Right Ankle"},{"euler":{"heading":93.9317586189397,"pitch":-160.68262839030345,"roll":52.03915595524703},"location":"Right Hip"},{"euler":{"heading":135.68640443509932,"pitch":-105.92261035654136,"roll":59.00296936237251},"location":"Right Knee"},{"euler":{"heading":36.67486950636446,"pitch":-133.77795711021125,"roll":56.80622558165443},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.368"} +{"sensors":[{"euler":{"heading":36.57406409919809,"pitch":123.28619123783805,"roll":18.879840073427097},"location":"Left Knee"},{"euler":{"heading":25.932100075724243,"pitch":89.20545192149798,"roll":0.8525166505967341},"location":"Left Ankle"},{"euler":{"heading":35.20869206349376,"pitch":-26.49091915611144,"roll":-28.138840795697508},"location":"Right Ankle"},{"euler":{"heading":93.73644184818863,"pitch":-160.63552934080946,"roll":51.04256487497139},"location":"Right Hip"},{"euler":{"heading":134.20929035556242,"pitch":-107.11903356499313,"roll":60.70899018989031},"location":"Right Knee"},{"euler":{"heading":31.53350588882751,"pitch":-135.1367731380153,"roll":57.28839235269578},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.469"} +{"sensors":[{"euler":{"heading":37.63408645984936,"pitch":122.28988217607461,"roll":18.492934666306706},"location":"Left Knee"},{"euler":{"heading":24.598219308723085,"pitch":89.7923297010711,"roll":1.6632172142206838},"location":"Left Ankle"},{"euler":{"heading":37.94894046680204,"pitch":-27.79380534017643,"roll":-26.110174291547754},"location":"Right Ankle"},{"euler":{"heading":92.54203316336009,"pitch":-160.94368373449717,"roll":50.580727207568295},"location":"Right Hip"},{"euler":{"heading":131.81671474493362,"pitch":-81.12671619267091,"roll":62.787803605402345},"location":"Right Knee"},{"euler":{"heading":27.59724712981659,"pitch":-136.91924550616466,"roll":57.88521635309269},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.569"} +{"sensors":[{"euler":{"heading":39.27492160099815,"pitch":121.31700324459254,"roll":17.405615460562476},"location":"Left Knee"},{"euler":{"heading":24.302710416373667,"pitch":90.2995995471618,"roll":3.3480491697118797},"location":"Left Ankle"},{"euler":{"heading":39.824043791244506,"pitch":-28.610090812623014,"roll":-24.67876544869662},"location":"Right Ankle"},{"euler":{"heading":91.23111541100417,"pitch":-161.41277480947485,"roll":50.32334511806948},"location":"Right Hip"},{"euler":{"heading":129.63175476074534,"pitch":-89.25378846100281,"roll":64.63319821122872},"location":"Right Knee"},{"euler":{"heading":24.618000373472242,"pitch":-138.9423865553821,"roll":58.55011897710943},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.670"} +{"sensors":[{"euler":{"heading":42.08098129619491,"pitch":120.8171690334464,"roll":15.167267500911475},"location":"Left Knee"},{"euler":{"heading":25.27359081350729,"pitch":90.50296716092302,"roll":6.543243059042295},"location":"Left Ankle"},{"euler":{"heading":40.69350188969364,"pitch":-29.152532041627538,"roll":-24.037503098893417},"location":"Right Ankle"},{"euler":{"heading":90.60958076779359,"pitch":-161.682665634342,"roll":50.375821245668874},"location":"Right Hip"},{"euler":{"heading":128.08646952676773,"pitch":-94.25937710274854,"roll":65.89876888078423},"location":"Right Knee"},{"euler":{"heading":21.19167532072025,"pitch":-139.46510879303142,"roll":58.771273103007246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.771"} +{"sensors":[{"euler":{"heading":44.97905597708797,"pitch":120.28759251353208,"roll":12.898084603715049},"location":"Left Knee"},{"euler":{"heading":26.15772623569731,"pitch":90.27081791266376,"roll":9.773376913490178},"location":"Left Ankle"},{"euler":{"heading":41.09031192620894,"pitch":-29.405561286117077,"roll":-23.74261554599666},"location":"Right Ankle"},{"euler":{"heading":89.92230965267406,"pitch":-162.01011742227848,"roll":50.8275865041081},"location":"Right Hip"},{"euler":{"heading":126.9757696646435,"pitch":-98.37263798189205,"roll":66.5267104759221},"location":"Right Knee"},{"euler":{"heading":17.506298584818968,"pitch":-137.8394135275927,"roll":58.63845273303138},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.872"} +{"sensors":[{"euler":{"heading":46.1510442178273,"pitch":120.5693912945331,"roll":11.950584770486131},"location":"Left Knee"},{"euler":{"heading":25.2229145259853,"pitch":89.46622108120299,"roll":10.662949329910692},"location":"Left Ankle"},{"euler":{"heading":41.129844784411425,"pitch":-29.230240225084646,"roll":-23.850333528826603},"location":"Right Ankle"},{"euler":{"heading":89.69845534944179,"pitch":-162.07455338712978,"roll":51.44446339440325},"location":"Right Hip"},{"euler":{"heading":126.17334536893314,"pitch":-101.71412555296448,"roll":66.7679272565387},"location":"Right Knee"},{"euler":{"heading":48.210500981439516,"pitch":-135.99975332478647,"roll":57.9475173585508},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.972"} +{"sensors":[{"euler":{"heading":43.70400564002815,"pitch":121.86481282255372,"roll":13.007604839658717},"location":"Left Knee"},{"euler":{"heading":21.895064134341975,"pitch":88.38144300315736,"roll":8.964926730228802},"location":"Left Ankle"},{"euler":{"heading":40.864948864327616,"pitch":-28.78027649276227,"roll":-24.268851458602015},"location":"Right Ankle"},{"euler":{"heading":89.63406984313046,"pitch":-162.1804223468386,"roll":52.13940199397791},"location":"Right Hip"},{"euler":{"heading":125.86709438256105,"pitch":-102.69851386478098,"roll":66.58191739133754},"location":"Right Knee"},{"euler":{"heading":73.2559434170687,"pitch":-134.22807511800903,"roll":57.22123692805994},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.73"} +{"sensors":[{"euler":{"heading":40.09514006925648,"pitch":123.58992108776505,"roll":14.748856563501047},"location":"Left Knee"},{"euler":{"heading":51.79807210812196,"pitch":87.34040127891048,"roll":5.769687570953662},"location":"Left Ankle"},{"euler":{"heading":40.071357535079564,"pitch":-28.03423299084047,"roll":-25.152909050942373},"location":"Right Ankle"},{"euler":{"heading":89.75376498202188,"pitch":-162.34756422149522,"roll":52.87525015071142},"location":"Right Hip"},{"euler":{"heading":126.31788270924959,"pitch":-104.58807399595659,"roll":65.81312563009834},"location":"Right Knee"},{"euler":{"heading":94.11389745434111,"pitch":-132.9638101969387,"roll":56.6532234811989},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.173"} +{"sensors":[{"euler":{"heading":37.72879033969807,"pitch":124.50883534053963,"roll":16.479049851183706},"location":"Left Knee"},{"euler":{"heading":42.42409543355116,"pitch":87.08804425175336,"roll":3.169715360928853},"location":"Left Ankle"},{"euler":{"heading":38.19683245182132,"pitch":-27.21646943586832,"roll":-26.40471411316155},"location":"Right Ankle"},{"euler":{"heading":90.40468483986486,"pitch":-162.54636919935302,"roll":53.499483655589074},"location":"Right Hip"},{"euler":{"heading":128.55975959968993,"pitch":-105.40014841597626,"roll":64.03541913772288},"location":"Right Knee"},{"euler":{"heading":77.61326996258612,"pitch":-132.49162813926858,"roll":56.424617035067364},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.274"} +{"sensors":[{"euler":{"heading":36.468990836999815,"pitch":124.71608064627505,"roll":17.747393256214128},"location":"Left Knee"},{"euler":{"heading":35.795067721410845,"pitch":87.21641112451067,"roll":1.6791349098891495},"location":"Left Ankle"},{"euler":{"heading":34.86649046058317,"pitch":-25.34688712683137,"roll":-27.989284695881736},"location":"Right Ankle"},{"euler":{"heading":91.6570395303211,"pitch":-162.0782243382667,"roll":53.57087646429025},"location":"Right Hip"},{"euler":{"heading":131.3704363970599,"pitch":-105.56422478832067,"roll":61.55880192372556},"location":"Right Knee"},{"euler":{"heading":64.22742567033006,"pitch":-132.2129950535732,"roll":56.45556906421776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.374"} +{"sensors":[{"euler":{"heading":35.901202375974826,"pitch":124.48149491722023,"roll":18.627546750759024},"location":"Left Knee"},{"euler":{"heading":30.842851687192177,"pitch":87.44552795335544,"roll":0.6930095729685086},"location":"Left Ankle"},{"euler":{"heading":32.026649233927444,"pitch":-23.934578147356962,"roll":-29.209092051122603},"location":"Right Ankle"},{"euler":{"heading":92.86677071815842,"pitch":-161.35140103177565,"roll":52.99338481431993},"location":"Right Hip"},{"euler":{"heading":133.4815656422687,"pitch":-105.55811541034296,"roll":59.4426241890544},"location":"Right Knee"},{"euler":{"heading":53.52870453218811,"pitch":-132.79320998567295,"roll":56.620318859345815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.475"} +{"sensors":[{"euler":{"heading":35.80490687741733,"pitch":124.1146461391323,"roll":19.049421332544775},"location":"Left Knee"},{"euler":{"heading":27.269552529447655,"pitch":87.62906883124063,"roll":0.2763139416400727},"location":"Left Ankle"},{"euler":{"heading":31.580107550912963,"pitch":-24.244012084772283,"roll":-29.45079572149888},"location":"Right Ankle"},{"euler":{"heading":93.53625068066694,"pitch":-160.82451350331456,"roll":52.07249140173295},"location":"Right Hip"},{"euler":{"heading":134.0210944357773,"pitch":-105.60609495507822,"roll":58.97840275635447},"location":"Right Knee"},{"euler":{"heading":44.86967358933789,"pitch":-133.75223947412897,"roll":56.90019361077952},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.576"} +{"sensors":[{"euler":{"heading":36.2730285298072,"pitch":123.59244397849069,"roll":19.026884209272833},"location":"Left Knee"},{"euler":{"heading":24.706402850311232,"pitch":87.80704101268479,"roll":0.29759206048789777},"location":"Left Ankle"},{"euler":{"heading":33.669891757419585,"pitch":-25.504986900876776,"roll":-28.25452413474915},"location":"Right Ankle"},{"euler":{"heading":93.19856930624809,"pitch":-160.75797233589304,"roll":51.233252595540016},"location":"Right Hip"},{"euler":{"heading":132.82195511808257,"pitch":-106.74344705204805,"roll":60.59758086600364},"location":"Right Knee"},{"euler":{"heading":37.827230980065636,"pitch":-134.94108796898348,"roll":57.313968604149615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.677"} +{"sensors":[{"euler":{"heading":37.19140371314527,"pitch":122.92372110606568,"roll":18.57248347159407},"location":"Left Knee"},{"euler":{"heading":23.226010687800436,"pitch":88.14049752533096,"roll":0.8638144012824994},"location":"Left Ankle"},{"euler":{"heading":36.593847536378235,"pitch":-26.85409735280489,"roll":-26.434829644060006},"location":"Right Ankle"},{"euler":{"heading":91.89353794718761,"pitch":-161.1020418102136,"roll":50.81867415745281},"location":"Right Hip"},{"euler":{"heading":130.52618817086577,"pitch":-80.37663109145724,"roll":62.544304701798644},"location":"Right Knee"},{"euler":{"heading":32.381933281800606,"pitch":-136.61732341347928,"roll":57.8191800512734},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.778"} +{"sensors":[{"euler":{"heading":38.74003953084684,"pitch":122.08079813977008,"roll":17.483542499577155},"location":"Left Knee"},{"euler":{"heading":22.79270250209898,"pitch":88.50168708946326,"roll":2.262025721958869},"location":"Left Ankle"},{"euler":{"heading":38.72638579639986,"pitch":-27.783553704720255,"roll":-25.144951907208352},"location":"Right Ankle"},{"euler":{"heading":90.68823762166768,"pitch":-161.51445193223208,"roll":50.49704022954967},"location":"Right Hip"},{"euler":{"heading":128.26591701624608,"pitch":-89.31227329180173,"roll":64.3474637379746},"location":"Right Knee"},{"euler":{"heading":28.35139162794487,"pitch":-138.65134885533536,"roll":58.42496598949196},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.878"} +{"sensors":[{"euler":{"heading":41.797598440074566,"pitch":121.57965169029656,"roll":15.172383352564239},"location":"Left Knee"},{"euler":{"heading":23.644807680849997,"pitch":89.10794798278442,"roll":5.2810980487228685},"location":"Left Ankle"},{"euler":{"heading":40.00282649025071,"pitch":-28.363002058258438,"roll":-24.4533982992913},"location":"Right Ankle"},{"euler":{"heading":90.04022156725081,"pitch":-161.76278011348398,"roll":50.47948585461297},"location":"Right Hip"},{"euler":{"heading":126.70652953923299,"pitch":-95.03762609862149,"roll":65.53914464740748},"location":"Right Knee"},{"euler":{"heading":24.02859561660937,"pitch":-139.00556087992442,"roll":58.6639705911948},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.978"} +{"sensors":[{"euler":{"heading":44.90754571010937,"pitch":120.97159875952069,"roll":12.938385656118209},"location":"Left Knee"},{"euler":{"heading":24.5030337755486,"pitch":89.27603866804341,"roll":8.351863890501143},"location":"Left Ankle"},{"euler":{"heading":40.75070935385176,"pitch":-28.89922104762577,"roll":-24.10111282503811},"location":"Right Ankle"},{"euler":{"heading":89.5334079607757,"pitch":-162.03504855685696,"roll":50.861936948982255},"location":"Right Hip"},{"euler":{"heading":125.77453261987239,"pitch":-99.44546517540086,"roll":66.15967831632176},"location":"Right Knee"},{"euler":{"heading":53.895778503274734,"pitch":-137.38790822812294,"roll":58.42839651944019},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.79"} +{"sensors":[{"euler":{"heading":45.99736676742522,"pitch":121.27156580646928,"roll":12.070286495149972},"location":"Left Knee"},{"euler":{"heading":23.42810138434415,"pitch":88.56012482698374,"roll":9.055611010659186},"location":"Left Ankle"},{"euler":{"heading":41.14904395057099,"pitch":-29.34281509410639,"roll":-24.04987732208297},"location":"Right Ankle"},{"euler":{"heading":89.66539783516654,"pitch":-162.12089417996992,"roll":51.368530718669966},"location":"Right Hip"},{"euler":{"heading":125.69512493780347,"pitch":-102.64922829766108,"roll":66.27528569665314},"location":"Right Knee"},{"euler":{"heading":77.94076897511891,"pitch":-135.5733615088291,"roll":57.73366149539419},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.180"} +{"sensors":[{"euler":{"heading":43.44737794392151,"pitch":122.55370080744042,"roll":13.068357486117684},"location":"Left Knee"},{"euler":{"heading":19.979575024246518,"pitch":87.69233585213249,"roll":7.2488928077551265},"location":"Left Ankle"},{"euler":{"heading":41.094700195029354,"pitch":-29.548017139959782,"roll":-24.342398126875704},"location":"Right Ankle"},{"euler":{"heading":90.03506453545548,"pitch":-162.18073782201273,"roll":51.89827848702376},"location":"Right Hip"},{"euler":{"heading":126.13545716251004,"pitch":-104.88235924909038,"roll":65.93399786220495},"location":"Right Knee"},{"euler":{"heading":97.6406715035759,"pitch":-133.83035317502774,"roll":57.10501308630212},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.282"} +{"sensors":[{"euler":{"heading":39.62342005679633,"pitch":124.29056765594427,"roll":14.958408117411299},"location":"Left Knee"},{"euler":{"heading":50.03347656715265,"pitch":86.78224377571364,"roll":3.95529770603308},"location":"Left Ankle"},{"euler":{"heading":40.31893074973492,"pitch":-29.258074747350253,"roll":-25.326475135354258},"location":"Right Ankle"},{"euler":{"heading":90.60528606859312,"pitch":-162.2289435346524,"roll":52.47275896222029},"location":"Right Hip"},{"euler":{"heading":127.12620331481196,"pitch":-106.39176733740838,"roll":65.07226139741363},"location":"Right Knee"},{"euler":{"heading":80.28101231669312,"pitch":-132.84767913530482,"roll":56.750195882511214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.383"} +{"sensors":[{"euler":{"heading":37.15229666521837,"pitch":125.26768441867941,"roll":16.734066213735126},"location":"Left Knee"},{"euler":{"heading":75.05180452262536,"pitch":86.59487205274306,"roll":1.3614505768846614},"location":"Left Ankle"},{"euler":{"heading":38.58384966566455,"pitch":-28.597377491454367,"roll":-26.615277505946214},"location":"Right Ankle"},{"euler":{"heading":91.2445967576553,"pitch":-162.51037598756983,"roll":53.18878717860731},"location":"Right Hip"},{"euler":{"heading":128.97785401534227,"pitch":-107.12144518340935,"roll":63.531498170816405},"location":"Right Knee"},{"euler":{"heading":66.56634819179635,"pitch":-132.26763788334557,"roll":56.613435173867146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.484"} +{"sensors":[{"euler":{"heading":36.09208336851089,"pitch":125.426525495561,"roll":17.990041822422693},"location":"Left Knee"},{"euler":{"heading":62.4808737179675,"pitch":86.91878458303226,"roll":0.04882647995606981},"location":"Left Ankle"},{"euler":{"heading":35.67684026493681,"pitch":-27.02449856025486,"roll":-28.18576356998077},"location":"Right Ankle"},{"euler":{"heading":92.3507037980691,"pitch":-162.3369750514867,"roll":53.503766039876645},"location":"Right Hip"},{"euler":{"heading":131.7008810323034,"pitch":-107.21690825703267,"roll":61.10281639947637},"location":"Right Knee"},{"euler":{"heading":55.24761658436879,"pitch":-131.94491346941138,"roll":56.62048058467394},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.585"} +{"sensors":[{"euler":{"heading":35.71149710526367,"pitch":125.11246814040553,"roll":18.829277468170414},"location":"Left Knee"},{"euler":{"heading":52.657488619451094,"pitch":87.28322865063117,"roll":-0.7643799719062269},"location":"Left Ankle"},{"euler":{"heading":32.55936600017419,"pitch":-25.315864848740386,"roll":-29.719818114557487},"location":"Right Ankle"},{"euler":{"heading":93.40501572418478,"pitch":-161.79362387040513,"roll":53.105072184867375},"location":"Right Hip"},{"euler":{"heading":133.97210973043707,"pitch":-107.13682179977444,"roll":58.661405179576555},"location":"Right Knee"},{"euler":{"heading":46.31873405197237,"pitch":-132.2890361058624,"roll":56.858722798635455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.686"} +{"sensors":[{"euler":{"heading":35.697138870124405,"pitch":124.53696539311332,"roll":19.362759198915143},"location":"Left Knee"},{"euler":{"heading":45.18486117119903,"pitch":87.72596584957874,"roll":-1.060277459364755},"location":"Left Ankle"},{"euler":{"heading":31.582288000269067,"pitch":-25.143130846691346,"roll":-30.352891772123026},"location":"Right Ankle"},{"euler":{"heading":94.43475379020354,"pitch":-161.16521685269214,"roll":52.203281057988164},"location":"Right Hip"},{"euler":{"heading":134.7616339334511,"pitch":-106.93950210042503,"roll":57.78398191908756},"location":"Right Knee"},{"euler":{"heading":39.340712022089434,"pitch":-133.48627493924099,"roll":57.20509900829551},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.788"} +{"sensors":[{"euler":{"heading":36.25613189472331,"pitch":123.80217622531411,"roll":19.429321988019318},"location":"Left Knee"},{"euler":{"heading":39.595414363855085,"pitch":88.21576732137132,"roll":-0.7870047276983145},"location":"Left Ankle"},{"euler":{"heading":33.207943112352815,"pitch":-26.163999062518954,"roll":-29.409690903473017},"location":"Right Ankle"},{"euler":{"heading":94.37421543424759,"pitch":-160.9414148456564,"roll":51.208913512990385},"location":"Right Hip"},{"euler":{"heading":133.48776112547904,"pitch":-107.1057802642302,"roll":59.17789668315703},"location":"Right Knee"},{"euler":{"heading":33.650896442642,"pitch":-134.9798527480184,"roll":57.64337766812744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.889"} +{"sensors":[{"euler":{"heading":37.242967150665486,"pitch":122.9291980529532,"roll":19.055545540504134},"location":"Left Knee"},{"euler":{"heading":35.50629665329707,"pitch":88.7243748502337,"roll":-0.08193835631618207},"location":"Left Ankle"},{"euler":{"heading":36.197768567913684,"pitch":-27.385022650135827,"roll":-27.41471288018769},"location":"Right Ankle"},{"euler":{"heading":93.52203016542624,"pitch":-161.04805798348787,"roll":50.505330254690804},"location":"Right Hip"},{"euler":{"heading":131.02973224852337,"pitch":-79.80081062636373,"roll":61.51531609387202},"location":"Right Knee"},{"euler":{"heading":29.212058048157587,"pitch":-136.7831974636454,"roll":58.1826524875994},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.990"} +{"sensors":[{"euler":{"heading":38.687134695148565,"pitch":121.93712140193023,"roll":18.13468440131241},"location":"Left Knee"},{"euler":{"heading":32.919130917751474,"pitch":89.24999951145453,"roll":1.3765110835156351},"location":"Left Ankle"},{"euler":{"heading":38.46152984623346,"pitch":-28.21641231358311,"roll":-26.073240980320197},"location":"Right Ankle"},{"euler":{"heading":91.94435627064856,"pitch":-161.50722046617437,"roll":50.15405006485564},"location":"Right Hip"},{"euler":{"heading":128.49985912787704,"pitch":-55.18834901673339,"roll":63.60660743503261},"location":"Right Knee"},{"euler":{"heading":25.999658864388323,"pitch":-139.0749283000931,"roll":58.77764436916642},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.91"} +{"sensors":[{"euler":{"heading":41.22514763996646,"pitch":121.45558749855627,"roll":16.03506958237485},"location":"Left Knee"},{"euler":{"heading":31.734175738540273,"pitch":89.31539794178347,"roll":4.259841539105642},"location":"Left Ankle"},{"euler":{"heading":39.94648603361424,"pitch":-28.909263023933406,"roll":-25.12691533330357},"location":"Right Ankle"},{"euler":{"heading":91.31843306406957,"pitch":-161.7384006172009,"roll":50.01454460436747},"location":"Right Hip"},{"euler":{"heading":126.71972185580071,"pitch":-64.272698302457,"roll":65.12441047027679},"location":"Right Knee"},{"euler":{"heading":22.810491007811084,"pitch":-140.35198719802202,"roll":59.14362377334994},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.192"} +{"sensors":[{"euler":{"heading":44.42693300551731,"pitch":120.67503162801755,"roll":13.59415746554242},"location":"Left Knee"},{"euler":{"heading":31.63195064615245,"pitch":89.4578096582562,"roll":7.8023087069419},"location":"Left Ankle"},{"euler":{"heading":40.72241377241706,"pitch":-29.35190182820131,"roll":-24.57976483603062},"location":"Right Ankle"},{"euler":{"heading":90.37786567788359,"pitch":-162.17945677170744,"roll":50.363934199785504},"location":"Right Hip"},{"euler":{"heading":125.517795631209,"pitch":-71.65461119632249,"roll":65.96870023175168},"location":"Right Knee"},{"euler":{"heading":18.920962714125945,"pitch":-139.02837268902277,"roll":59.189414649349445},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.294"} +{"sensors":[{"euler":{"heading":46.0556849896635,"pitch":120.73567075716232,"roll":12.31885022022061},"location":"Left Knee"},{"euler":{"heading":30.20460932939255,"pitch":88.87918286414099,"roll":9.259878520602816},"location":"Left Ankle"},{"euler":{"heading":41.19127394328009,"pitch":-29.48489580770356,"roll":-24.471106982631273},"location":"Right Ankle"},{"euler":{"heading":90.05362820201573,"pitch":-162.3645264194929,"roll":50.989244133612026},"location":"Right Hip"},{"euler":{"heading":124.71796428873839,"pitch":-77.8527502846654,"roll":66.40568507626361},"location":"Right Knee"},{"euler":{"heading":49.44611542315779,"pitch":-137.32531575893483,"roll":58.59470175615132},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.395"} +{"sensors":[{"euler":{"heading":44.08371429524365,"pitch":121.7299001983572,"roll":13.067354916551084},"location":"Left Knee"},{"euler":{"heading":26.25944515947627,"pitch":88.1594027470989,"roll":7.9806976880957485},"location":"Left Ankle"},{"euler":{"heading":41.25412952698413,"pitch":-29.165285981160014,"roll":-24.68788650309216},"location":"Right Ankle"},{"euler":{"heading":90.02595521615136,"pitch":-162.49037417811033,"roll":51.733430737473114},"location":"Right Hip"},{"euler":{"heading":124.16413348946666,"pitch":-82.90837826688978,"roll":66.48005515988098},"location":"Right Knee"},{"euler":{"heading":74.42224116942282,"pitch":-135.51077783576528,"roll":57.91387349755596},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.498"} +{"sensors":[{"euler":{"heading":40.31092017909032,"pitch":123.33704524870613,"roll":14.927774379080088},"location":"Left Knee"},{"euler":{"heading":55.40134905863091,"pitch":87.3118965059595,"roll":4.8315207786703365},"location":"Left Ankle"},{"euler":{"heading":40.788353846984,"pitch":-28.525305864654463,"roll":-25.365614806069765},"location":"Right Ankle"},{"euler":{"heading":90.20543706476832,"pitch":-162.63992252424853,"roll":52.52573280117456},"location":"Right Hip"},{"euler":{"heading":124.17439143106724,"pitch":-86.97773888380414,"roll":66.07172618523462},"location":"Right Knee"},{"euler":{"heading":61.05575586621964,"pitch":-134.27907391695982,"roll":57.428605741648354},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.599"} +{"sensors":[{"euler":{"heading":38.143283162678074,"pitch":124.19677998921398,"roll":16.664729354009424},"location":"Left Knee"},{"euler":{"heading":45.439853045508706,"pitch":87.40113352763223,"roll":2.475369609763992},"location":"Left Ankle"},{"euler":{"heading":39.253587550452835,"pitch":-27.702446194240913,"roll":-26.555569096566373},"location":"Right Ankle"},{"euler":{"heading":90.83991183132174,"pitch":-162.74551855751284,"roll":53.24266719288776},"location":"Right Hip"},{"euler":{"heading":125.68695345112637,"pitch":-89.803877591804,"roll":64.69748248410605},"location":"Right Knee"},{"euler":{"heading":50.70582307405537,"pitch":-133.652050962433,"roll":57.19758480997208},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.699"} +{"sensors":[{"euler":{"heading":36.84404895308659,"pitch":124.43965484351864,"roll":17.945136548938063},"location":"Left Knee"},{"euler":{"heading":38.359491679334326,"pitch":87.77914726574537,"roll":1.0270575136326594},"location":"Left Ankle"},{"euler":{"heading":36.0052445308062,"pitch":-25.99472115079817,"roll":-28.08417245739804},"location":"Right Ankle"},{"euler":{"heading":92.02529353039776,"pitch":-162.25842962927067,"roll":53.42172395429059},"location":"Right Hip"},{"euler":{"heading":128.48905348459436,"pitch":-91.52883700846249,"roll":62.40758946612099},"location":"Right Knee"},{"euler":{"heading":41.951879959718546,"pitch":-133.19168905474962,"roll":57.09555526361459},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.800"} +{"sensors":[{"euler":{"heading":36.327205703892,"pitch":124.12434856016314,"roll":18.877823419671387},"location":"Left Knee"},{"euler":{"heading":33.2933723703757,"pitch":88.21038209086518,"roll":0.4240075998081516},"location":"Left Ankle"},{"euler":{"heading":33.07202066662262,"pitch":-24.419716780747002,"roll":-29.300898929351806},"location":"Right Ankle"},{"euler":{"heading":93.14451546036577,"pitch":-161.60958923050634,"roll":52.89409227093568},"location":"Right Hip"},{"euler":{"heading":130.62288662301242,"pitch":-92.9648583351167,"roll":60.2522880360712},"location":"Right Knee"},{"euler":{"heading":35.319238593296774,"pitch":-133.37559510756515,"roll":57.26482480531764},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.901"} +{"sensors":[{"euler":{"heading":36.195335089987076,"pitch":123.63689530321771,"roll":19.406687220567505},"location":"Left Knee"},{"euler":{"heading":29.995418408432595,"pitch":88.69572065886615,"roll":0.5025800624262824},"location":"Left Ankle"},{"euler":{"heading":32.35282223051465,"pitch":-24.69489255876181,"roll":-29.623049091949213},"location":"Right Ankle"},{"euler":{"heading":94.22740176658152,"pitch":-161.04030564691695,"roll":51.887519131818074},"location":"Right Hip"},{"euler":{"heading":131.55555971972842,"pitch":-94.05024717068395,"roll":59.657539624490305},"location":"Right Knee"},{"euler":{"heading":30.114360782724955,"pitch":-134.3208424101062,"roll":57.57851590090246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.2"} +{"sensors":[{"euler":{"heading":36.574874800587104,"pitch":123.04717830872242,"roll":19.451235437169746},"location":"Left Knee"},{"euler":{"heading":27.413963462066175,"pitch":88.93869628188749,"roll":0.8649983992094694},"location":"Left Ankle"},{"euler":{"heading":34.19557415515394,"pitch":-25.871360251596155,"roll":-28.4401184548923},"location":"Right Ankle"},{"euler":{"heading":94.14498274774297,"pitch":-160.9710731915428,"roll":50.881571262046144},"location":"Right Hip"},{"euler":{"heading":130.3810611465644,"pitch":-95.59124739454649,"roll":61.30723981452191},"location":"Right Knee"},{"euler":{"heading":25.995299904176367,"pitch":-135.71125082284365,"roll":57.981273307961935},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.103"} +{"sensors":[{"euler":{"heading":37.456391032562,"pitch":122.39465194484872,"roll":18.968358937294916},"location":"Left Knee"},{"euler":{"heading":25.78778619904594,"pitch":89.09910579149488,"roll":1.6982928679636782},"location":"Left Ankle"},{"euler":{"heading":37.33343170539631,"pitch":-27.084549237528496,"roll":-26.436300705529117},"location":"Right Ankle"},{"euler":{"heading":93.09057707975082,"pitch":-161.18191061875507,"roll":50.45288402238047},"location":"Right Hip"},{"euler":{"heading":128.11141532165618,"pitch":-69.6372450252596,"roll":63.495613394622666},"location":"Right Knee"},{"euler":{"heading":22.884210895057254,"pitch":-137.56987281376098,"roll":58.50029644630635},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.203"} +{"sensors":[{"euler":{"heading":38.92728432019407,"pitch":121.72096279369757,"roll":17.84176034249238},"location":"Left Knee"},{"euler":{"heading":25.306453023893855,"pitch":89.24425635901723,"roll":3.3619523317595927},"location":"Left Ankle"},{"euler":{"heading":39.38546427411406,"pitch":-27.837505873685796,"roll":-25.03926749685093},"location":"Right Ankle"},{"euler":{"heading":91.72782503108228,"pitch":-161.55105138085332,"roll":50.26711608213018},"location":"Right Hip"},{"euler":{"heading":125.82496965244184,"pitch":-45.92024810891734,"roll":65.4579821857998},"location":"Right Knee"},{"euler":{"heading":20.562776305008008,"pitch":-139.59057606734297,"roll":59.09479900920274},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.303"} +{"sensors":[{"euler":{"heading":41.5228521200264,"pitch":121.06379580949714,"roll":15.609486595965341},"location":"Left Knee"},{"euler":{"heading":25.81007939737129,"pitch":89.61935710268429,"roll":6.478534684782389},"location":"Left Ankle"},{"euler":{"heading":40.44140899772596,"pitch":-28.007541112977744,"roll":-24.351821802599556},"location":"Right Ankle"},{"euler":{"heading":91.13519221419374,"pitch":-161.74833558142464,"roll":50.26548791615307},"location":"Right Hip"},{"euler":{"heading":124.08957251328637,"pitch":-55.690029618761955,"roll":66.83534518807508},"location":"Right Knee"},{"euler":{"heading":17.615614058688564,"pitch":-139.73059271658641,"roll":59.32359356578052},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.405"} +{"sensors":[{"euler":{"heading":44.59934941687098,"pitch":120.3026731699398,"roll":13.304182949480445},"location":"Left Knee"},{"euler":{"heading":26.52565881021538,"pitch":89.7625812658099,"roll":9.696987995412869},"location":"Left Ankle"},{"euler":{"heading":41.12765615439941,"pitch":-28.00087845757087,"roll":-24.080542476147787},"location":"Right Ankle"},{"euler":{"heading":90.28728134655051,"pitch":-162.14088421224832,"roll":50.73369393157673},"location":"Right Hip"},{"euler":{"heading":122.73402961667692,"pitch":-64.2688678893698,"roll":67.5703901866289},"location":"Right Knee"},{"euler":{"heading":48.49620352351241,"pitch":-137.86561223919645,"roll":58.99554637192077},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.505"} +{"sensors":[{"euler":{"heading":46.077953206334705,"pitch":120.45818594458783,"roll":12.246709351318053},"location":"Left Knee"},{"euler":{"heading":25.625247545385566,"pitch":89.17279901917655,"roll":10.611662824574895},"location":"Left Ankle"},{"euler":{"heading":41.433906348301335,"pitch":-27.77487320467829,"roll":-24.251240108087202},"location":"Right Ankle"},{"euler":{"heading":90.11619992587927,"pitch":-162.210716919277,"roll":51.347611730261164},"location":"Right Hip"},{"euler":{"heading":121.98677633978497,"pitch":-71.2111923868585,"roll":67.83717847628914},"location":"Right Knee"},{"euler":{"heading":73.47204042332821,"pitch":-135.91049904115079,"roll":58.23497064716427},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.607"} +{"sensors":[{"euler":{"heading":43.78684618267729,"pitch":121.60366256701631,"roll":13.198271593742202},"location":"Left Knee"},{"euler":{"heading":21.933173897269853,"pitch":88.32401845870105,"roll":8.787722081999123},"location":"Left Ankle"},{"euler":{"heading":41.25065621578677,"pitch":-27.40389807038061,"roll":-24.584059369805935},"location":"Right Ankle"},{"euler":{"heading":90.24960279632478,"pitch":-162.29174271836825,"roll":52.06365395207681},"location":"Right Hip"},{"euler":{"heading":121.92783978250195,"pitch":-76.75591066292888,"roll":67.63269047896617},"location":"Right Knee"},{"euler":{"heading":94.07680637239864,"pitch":-134.12947521827004,"roll":57.54674462887941},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.707"} +{"sensors":[{"euler":{"heading":40.174860430265795,"pitch":123.2049800393267,"roll":15.093800078554754},"location":"Left Knee"},{"euler":{"heading":51.62713588115548,"pitch":87.50247031420302,"roll":5.3834178113753},"location":"Left Ankle"},{"euler":{"heading":40.541752291017964,"pitch":-26.824454304232194,"roll":-25.37867975795509},"location":"Right Ankle"},{"euler":{"heading":90.52530153426613,"pitch":-162.51963894284853,"roll":52.895887249734955},"location":"Right Hip"},{"euler":{"heading":122.68219912296897,"pitch":-81.23216505190993,"roll":66.81745177836501},"location":"Right Knee"},{"euler":{"heading":77.33914221268373,"pitch":-133.13023783277,"roll":57.114235900828355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.807"} +{"sensors":[{"euler":{"heading":38.04971351194612,"pitch":124.0951133954419,"roll":16.737672872673475},"location":"Left Knee"},{"euler":{"heading":42.33169549875872,"pitch":87.36549325042174,"roll":2.9153144040632246},"location":"Left Ankle"},{"euler":{"heading":38.98032677452459,"pitch":-26.06231777619484,"roll":-26.692242706011946},"location":"Right Ankle"},{"euler":{"heading":91.25639450748731,"pitch":-162.71991124913401,"roll":53.66084503513701},"location":"Right Hip"},{"euler":{"heading":124.73863217113846,"pitch":-84.5691791766163,"roll":65.17607583680872},"location":"Right Knee"},{"euler":{"heading":64.0326967064932,"pitch":-132.67789620496706,"roll":56.8774475299909},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.908"} +{"sensors":[{"euler":{"heading":36.91012160831307,"pitch":124.35360458416962,"roll":17.91601639910829},"location":"Left Knee"},{"euler":{"heading":35.618340526215356,"pitch":87.41990534784311,"roll":1.4310979013252498},"location":"Left Ankle"},{"euler":{"heading":35.95985813489364,"pitch":-24.73653151022831,"roll":-28.35647769099144},"location":"Right Ankle"},{"euler":{"heading":92.6754650867686,"pitch":-162.4255080580483,"roll":53.79417735430197},"location":"Right Hip"},{"euler":{"heading":128.06928751460853,"pitch":-86.80992479443896,"roll":62.63257089667641},"location":"Right Knee"},{"euler":{"heading":53.274135747496814,"pitch":-132.6134113813641,"roll":56.90099593938462},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.9"} +{"sensors":[{"euler":{"heading":36.42886838274939,"pitch":124.11782751649979,"roll":18.768239015096057},"location":"Left Knee"},{"euler":{"heading":30.63274926910195,"pitch":87.70695380367418,"roll":0.4566764502439803},"location":"Left Ankle"},{"euler":{"heading":32.86838972181234,"pitch":-23.661712019452978,"roll":-29.689988531805685},"location":"Right Ankle"},{"euler":{"heading":94.21789821369622,"pitch":-161.6478134919409,"roll":53.30245976181196},"location":"Right Hip"},{"euler":{"heading":130.93911185184564,"pitch":-88.54025427904193,"roll":60.30129012739446},"location":"Right Knee"},{"euler":{"heading":44.83364686779344,"pitch":-133.26849758636857,"roll":57.082827614000784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.110"} +{"sensors":[{"euler":{"heading":36.558005838595676,"pitch":123.47641657511869,"roll":19.301581716303524},"location":"Left Knee"},{"euler":{"heading":27.25804420502053,"pitch":88.2223450253431,"roll":0.1159697573837668},"location":"Left Ankle"},{"euler":{"heading":32.18608943550616,"pitch":-23.800907174425816,"roll":-30.206993573637334},"location":"Right Ankle"},{"euler":{"heading":95.43922361852809,"pitch":-160.92626113788305,"roll":52.34622031133786},"location":"Right Hip"},{"euler":{"heading":131.68368782369862,"pitch":-90.03464261495594,"roll":59.76727877955605},"location":"Right Knee"},{"euler":{"heading":38.2733569497107,"pitch":-134.479580760058,"roll":57.395995255338995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.211"} +{"sensors":[{"euler":{"heading":37.26421951622554,"pitch":122.5987544183247,"roll":19.379909316290885},"location":"Left Knee"},{"euler":{"heading":24.863448460302674,"pitch":88.80761584973108,"roll":0.2060083728572512},"location":"Left Ankle"},{"euler":{"heading":33.809350604689584,"pitch":-25.19321192490187,"roll":-29.200382260631546},"location":"Right Ankle"},{"euler":{"heading":91.36789612223546,"pitch":-160.74897100506652,"roll":51.22529483617603},"location":"Right Hip"},{"euler":{"heading":131.03888590699526,"pitch":-91.86250198688204,"roll":61.067657506497646},"location":"Right Knee"},{"euler":{"heading":33.05637673446745,"pitch":-136.00946719784758,"roll":57.79827900169622},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.312"} +{"sensors":[{"euler":{"heading":38.44888788103569,"pitch":121.6975642684949,"roll":18.897872400475975},"location":"Left Knee"},{"euler":{"heading":23.378380692077833,"pitch":89.33721283261636,"roll":0.8225597581546427},"location":"Left Ankle"},{"euler":{"heading":36.63074728896876,"pitch":-26.720612637674613,"roll":-27.171806937055152},"location":"Right Ankle"},{"euler":{"heading":91.39934173368,"pitch":-160.89175627108804,"roll":50.57366107439614},"location":"Right Hip"},{"euler":{"heading":129.14350204911852,"pitch":-66.00754800575348,"roll":63.23720418159223},"location":"Right Knee"},{"euler":{"heading":28.87984395921756,"pitch":-137.7208152268961,"roll":58.346600074392136},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.412"} +{"sensors":[{"euler":{"heading":40.13232995789834,"pitch":120.82264668511723,"roll":17.748252293872046},"location":"Left Knee"},{"euler":{"heading":22.97691597126861,"pitch":89.82832255907437,"roll":2.2900938073956496},"location":"Left Ankle"},{"euler":{"heading":38.61391189052472,"pitch":-27.853016556646278,"roll":-25.776152446972137},"location":"Right Ankle"},{"euler":{"heading":90.86028514174383,"pitch":-161.21120894376546,"roll":50.29911522739413},"location":"Right Hip"},{"euler":{"heading":127.15755636175626,"pitch":-76.8153992614209,"roll":65.15875574513977},"location":"Right Knee"},{"euler":{"heading":25.739532946775515,"pitch":-139.79850378668564,"roll":58.92005114693463},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.514"} +{"sensors":[{"euler":{"heading":42.949494934988095,"pitch":120.23309602778231,"roll":15.388131417838345},"location":"Left Knee"},{"euler":{"heading":23.81942269852355,"pitch":90.05868443668498,"roll":5.3362226978389655},"location":"Left Ankle"},{"euler":{"heading":39.59563167503873,"pitch":-28.604216490513455,"roll":-25.07806370557059},"location":"Right Ankle"},{"euler":{"heading":91.00749164824902,"pitch":-161.35758632292175,"roll":50.19337291562482},"location":"Right Hip"},{"euler":{"heading":125.82873158507391,"pitch":-83.29550877878128,"roll":66.46351240963915},"location":"Right Knee"},{"euler":{"heading":21.081446746893416,"pitch":-140.2457332471312,"roll":59.284374732741156},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.614"} +{"sensors":[{"euler":{"heading":45.99934999151398,"pitch":119.55693894776645,"roll":12.990923320558641},"location":"Left Knee"},{"euler":{"heading":24.925437819430957,"pitch":89.82718039453962,"roll":8.776299191938044},"location":"Left Ankle"},{"euler":{"heading":40.09625207263,"pitch":-28.98074790049841,"roll":-24.773372520505227},"location":"Right Ankle"},{"euler":{"heading":90.79508694795072,"pitch":-161.55543794916335,"roll":50.57925925049756},"location":"Right Hip"},{"euler":{"heading":124.75852723342062,"pitch":-88.5765582368479,"roll":67.18636551124226},"location":"Right Knee"},{"euler":{"heading":17.534949701533176,"pitch":-138.53983583378314,"roll":59.1919252246221},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.715"} +{"sensors":[{"euler":{"heading":47.129147224448644,"pitch":119.8012255549808,"roll":11.981084443024416},"location":"Left Knee"},{"euler":{"heading":24.344714885552843,"pitch":88.74968324334057,"roll":9.927187162273608},"location":"Left Ankle"},{"euler":{"heading":40.286183124855754,"pitch":-28.976633947338026,"roll":-24.8246569799254},"location":"Right Ankle"},{"euler":{"heading":90.98383397655999,"pitch":-161.52638318808175,"roll":51.17219579042981},"location":"Right Hip"},{"euler":{"heading":124.01304184790877,"pitch":-92.97474858939299,"roll":67.4183404267048},"location":"Right Knee"},{"euler":{"heading":48.281522945470975,"pitch":-136.65138393662258,"roll":58.436450207318465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.819"} +{"sensors":[{"euler":{"heading":44.37407854490981,"pitch":121.05675794419594,"roll":13.03520323322661},"location":"Left Knee"},{"euler":{"heading":21.36029976509448,"pitch":87.79846415506805,"roll":8.340771034741486},"location":"Left Ankle"},{"euler":{"heading":40.0790346977721,"pitch":-28.69942718298007,"roll":-25.281289235151252},"location":"Right Ankle"},{"euler":{"heading":91.25728598971929,"pitch":-161.50603756650423,"roll":51.86925259409496},"location":"Right Hip"},{"euler":{"heading":123.77124830183344,"pitch":-96.4373196646065,"roll":67.2061319051814},"location":"Right Knee"},{"euler":{"heading":73.32004143120224,"pitch":-134.70475857389698,"roll":57.699331923478475},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.921"} +{"sensors":[{"euler":{"heading":40.78053710660899,"pitch":122.70415436845524,"roll":15.029477889835333},"location":"Left Knee"},{"euler":{"heading":51.140231245106236,"pitch":85.53463710925176,"roll":4.937365794250605},"location":"Left Ankle"},{"euler":{"heading":39.32083633741849,"pitch":-28.02647284919893,"roll":-26.176054300214417},"location":"Right Ankle"},{"euler":{"heading":91.65954742786448,"pitch":-161.56491631969442,"roll":52.63674399903653},"location":"Right Hip"},{"euler":{"heading":124.33426738640716,"pitch":-98.99976440463107,"roll":66.34823524890228},"location":"Right Knee"},{"euler":{"heading":60.23056492455317,"pitch":-133.5081100211221,"roll":57.151238111338905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.22"} +{"sensors":[{"euler":{"heading":38.66454706489717,"pitch":123.6122021893175,"roll":16.834047325342407},"location":"Left Knee"},{"euler":{"heading":75.76776419912356,"pitch":85.72753740850513,"roll":2.166865208112867},"location":"Left Ankle"},{"euler":{"heading":37.60014243848959,"pitch":-27.120267862745706,"roll":-27.47916544101209},"location":"Right Ankle"},{"euler":{"heading":92.23267626623428,"pitch":-161.8322253105197,"roll":53.4204074583177},"location":"Right Hip"},{"euler":{"heading":126.0913438592589,"pitch":-100.61691048915472,"roll":64.78716533883903},"location":"Right Knee"},{"euler":{"heading":49.95286863398584,"pitch":-132.6928314116061,"roll":56.833640909011166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.122"} +{"sensors":[{"euler":{"heading":37.41354664935503,"pitch":123.88690373073104,"roll":18.139965314822422},"location":"Left Knee"},{"euler":{"heading":62.977921104073125,"pitch":86.0745020029187,"roll":0.7122277233770828},"location":"Left Ankle"},{"euler":{"heading":34.36008540707779,"pitch":-25.47386779528381,"roll":-29.032872616486618},"location":"Right Ankle"},{"euler":{"heading":93.3202655253885,"pitch":-161.66388032844375,"roll":53.76686122716187},"location":"Right Hip"},{"euler":{"heading":129.06987082888577,"pitch":-101.23599199606394,"roll":62.32821794046663},"location":"Right Knee"},{"euler":{"heading":41.51372091599129,"pitch":-132.1691371906443,"roll":56.74245026734183},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.223"} +{"sensors":[{"euler":{"heading":36.79945510266508,"pitch":123.76686523680843,"roll":19.01844726866331},"location":"Left Knee"},{"euler":{"heading":52.95745493862064,"pitch":86.45980530884084,"roll":-0.22948310385819626},"location":"Left Ankle"},{"euler":{"heading":31.21366971894152,"pitch":-23.90679240667209,"roll":-30.307986750413818},"location":"Right Ankle"},{"euler":{"heading":94.63884457074604,"pitch":-160.90512777207752,"roll":53.47988253832622},"location":"Right Hip"},{"euler":{"heading":131.40761522599985,"pitch":-101.48702742652317,"roll":60.037779337642796},"location":"Right Knee"},{"euler":{"heading":34.788060526197754,"pitch":-132.39680564113615,"roll":56.78478558843482},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.324"} +{"sensors":[{"euler":{"heading":36.71280914916827,"pitch":123.25990978449406,"roll":19.62311385124582},"location":"Left Knee"},{"euler":{"heading":45.3531842663198,"pitch":87.0938314337689,"roll":-0.6654422285023526},"location":"Left Ankle"},{"euler":{"heading":30.409089664784098,"pitch":-23.99889307844059,"roll":-30.80187660566091},"location":"Right Ankle"},{"euler":{"heading":95.67093319067443,"pitch":-160.20666087818552,"roll":52.643507835415534},"location":"Right Hip"},{"euler":{"heading":132.09107910479784,"pitch":-101.60716759402857,"roll":59.510998510248584},"location":"Right Knee"},{"euler":{"heading":29.60214376294675,"pitch":-132.99520745117596,"roll":57.072796685589985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.425"} +{"sensors":[{"euler":{"heading":37.16505060801216,"pitch":122.4860771259907,"roll":19.849214960683586},"location":"Left Knee"},{"euler":{"heading":39.51920605569697,"pitch":87.80428794837013,"roll":-0.7151029332812056},"location":"Left Ankle"},{"euler":{"heading":32.08680629192817,"pitch":-25.425872203855118,"roll":-29.911091011726278},"location":"Right Ankle"},{"euler":{"heading":96.09388938317592,"pitch":-159.8540650513696,"roll":51.613209060188055},"location":"Right Hip"},{"euler":{"heading":131.22977005965475,"pitch":-102.1201603558574,"roll":60.95466203027678},"location":"Right Knee"},{"euler":{"heading":25.599678398812678,"pitch":-134.03014686845987,"roll":57.49393405542965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.525"} +{"sensors":[{"euler":{"heading":38.123930874843985,"pitch":121.54209762619271,"roll":19.57818360986567},"location":"Left Knee"},{"euler":{"heading":35.14068668509809,"pitch":88.51256072631115,"roll":-0.3081962880234769},"location":"Left Ankle"},{"euler":{"heading":35.11331435148534,"pitch":-26.865742741890234,"roll":-28.100284339574333},"location":"Right Ankle"},{"euler":{"heading":95.57813584585953,"pitch":-159.86200179434783,"roll":50.87711252713074},"location":"Right Hip"},{"euler":{"heading":129.02036832635403,"pitch":-75.37862703710867,"roll":63.08144962262059},"location":"Right Knee"},{"euler":{"heading":22.57811236181479,"pitch":-135.3709186728115,"roll":58.04742468689877},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.625"} +{"sensors":[{"euler":{"heading":39.51548236668651,"pitch":120.5749532578143,"roll":18.726512717571694},"location":"Left Knee"},{"euler":{"heading":32.29872326380487,"pitch":89.17724034200842,"roll":0.8626199234970189},"location":"Left Ankle"},{"euler":{"heading":37.543853381192626,"pitch":-27.817872557570645,"roll":-26.62819912427001},"location":"Right Ankle"},{"euler":{"heading":94.05595550300137,"pitch":-160.29130039652256,"roll":50.53208373100194},"location":"Right Hip"},{"euler":{"heading":126.63461776290916,"pitch":-51.30573144881994,"roll":65.02376263406045},"location":"Right Knee"},{"euler":{"heading":20.222963546255976,"pitch":-137.05977427375382,"roll":58.64338948720939},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.728"} +{"sensors":[{"euler":{"heading":41.760710424942516,"pitch":119.94951134219185,"roll":16.820303196406673},"location":"Left Knee"},{"euler":{"heading":30.863522864676387,"pitch":89.2198334445373,"roll":3.337045548593481},"location":"Left Ankle"},{"euler":{"heading":39.03457024138176,"pitch":-28.536743715868006,"roll":-25.92634850827623},"location":"Right Ankle"},{"euler":{"heading":93.27927520450221,"pitch":-160.53112931208045,"roll":50.43390684662129},"location":"Right Hip"},{"euler":{"heading":124.92492542213341,"pitch":-61.41339826630136,"roll":66.48404789067683},"location":"Right Knee"},{"euler":{"heading":18.07459388858063,"pitch":-138.07668116183143,"roll":59.10537418328944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.828"} +{"sensors":[{"euler":{"heading":44.859505920774076,"pitch":119.33005677138179,"roll":14.352258254295531},"location":"Left Knee"},{"euler":{"heading":30.948787562916127,"pitch":89.22270303577187,"roll":6.973238920647029},"location":"Left Ankle"},{"euler":{"heading":39.75576173654987,"pitch":-29.15750577320764,"roll":-25.52907368229647},"location":"Right Ankle"},{"euler":{"heading":92.47091630405545,"pitch":-160.93244905708087,"roll":50.76718587195984},"location":"Right Hip"},{"euler":{"heading":123.99471050472086,"pitch":-69.2397157740773,"roll":67.14549448001574},"location":"Right Knee"},{"euler":{"heading":15.168066790104671,"pitch":-136.90410657813229,"roll":59.125077010442524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.929"} +{"sensors":[{"euler":{"heading":46.90928106015793,"pitch":119.37000383823698,"roll":12.689735426562368},"location":"Left Knee"},{"euler":{"heading":30.019790523915173,"pitch":88.59509704929631,"roll":8.937736081915274},"location":"Left Ankle"},{"euler":{"heading":40.17980393096054,"pitch":-29.69543665778622,"roll":-25.437128436187344},"location":"Right Ankle"},{"euler":{"heading":92.20142322317567,"pitch":-161.18263244780977,"roll":51.36008182955878},"location":"Right Hip"},{"euler":{"heading":123.75623861807037,"pitch":-75.60811852480022,"roll":67.32190417290182},"location":"Right Knee"},{"euler":{"heading":46.36135772785608,"pitch":-135.26043291313286,"roll":58.518648307255475},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.31"} +{"sensors":[{"euler":{"heading":45.52580127755356,"pitch":120.33361893270646,"roll":12.998678778195686},"location":"Left Knee"},{"euler":{"heading":26.76209956214976,"pitch":87.79532503600575,"roll":8.254003247964132},"location":"Left Ankle"},{"euler":{"heading":40.27730629601819,"pitch":-30.03950952598391,"roll":-25.67497608609729},"location":"Right Ankle"},{"euler":{"heading":92.32559042530197,"pitch":-161.37929062490034,"roll":51.985758219802534},"location":"Right Hip"},{"euler":{"heading":124.05443863070236,"pitch":-80.7464701603266,"roll":67.11886914249675},"location":"Right Knee"},{"euler":{"heading":71.88455432541154,"pitch":-133.51746534946366,"roll":57.773710935572694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.131"} +{"sensors":[{"euler":{"heading":41.973269341252845,"pitch":121.9784602075296,"roll":14.716998362445082},"location":"Left Knee"},{"euler":{"heading":55.94371870176809,"pitch":87.04190473495883,"roll":5.358257626775819},"location":"Left Ankle"},{"euler":{"heading":39.81017282459935,"pitch":-29.887118494825483,"roll":-26.359877799107448},"location":"Right Ankle"},{"euler":{"heading":92.56994577762651,"pitch":-161.58102293873304,"roll":52.694604575203066},"location":"Right Hip"},{"euler":{"heading":124.56614331811137,"pitch":-84.926357195217,"roll":66.50708565464038},"location":"Right Knee"},{"euler":{"heading":58.88872103810375,"pitch":-132.2316175128299,"roll":57.19476059521814},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.232"} +{"sensors":[{"euler":{"heading":39.19525684302464,"pitch":123.30631277859942,"roll":16.43833154377081},"location":"Left Knee"},{"euler":{"heading":79.7067997852585,"pitch":86.85361401399388,"roll":2.5774462760266634},"location":"Left Ankle"},{"euler":{"heading":38.57156015110291,"pitch":-29.261708423506228,"roll":-27.502815360957452},"location":"Right Ankle"},{"euler":{"heading":92.93054697881782,"pitch":-161.9478700182748,"roll":53.484654666937665},"location":"Right Hip"},{"euler":{"heading":125.71639939444796,"pitch":-87.91790688816313,"roll":65.32329541526256},"location":"Right Knee"},{"euler":{"heading":48.687699713165586,"pitch":-131.55560107643353,"roll":56.80762493615124},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.333"} +{"sensors":[{"euler":{"heading":37.937270849881806,"pitch":123.74685410167521,"roll":17.740274812733144},"location":"Left Knee"},{"euler":{"heading":66.11996482925969,"pitch":87.08751535155199,"roll":0.9945726848929697},"location":"Left Ankle"},{"euler":{"heading":35.80946500680695,"pitch":-27.95857229113513,"roll":-28.941311994800174},"location":"Right Ankle"},{"euler":{"heading":93.7846657647452,"pitch":-161.89932111010933,"roll":53.9557936927871},"location":"Right Hip"},{"euler":{"heading":128.24562494774915,"pitch":-89.90550342757383,"roll":63.14034060448374},"location":"Right Knee"},{"euler":{"heading":40.31133337320984,"pitch":-130.94983595842479,"roll":56.605948217027894},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.433"} +{"sensors":[{"euler":{"heading":37.45420159522427,"pitch":123.60446597204914,"roll":18.65083198677514},"location":"Left Knee"},{"euler":{"heading":55.54204752127857,"pitch":87.4002370722214,"roll":0.12707404481994777},"location":"Left Ankle"},{"euler":{"heading":32.16855315348112,"pitch":-26.392951886162084,"roll":-30.42133097728934},"location":"Right Ankle"},{"euler":{"heading":94.9001888265997,"pitch":-161.26085965071678,"roll":53.799475508482814},"location":"Right Hip"},{"euler":{"heading":130.97053590449295,"pitch":-91.28191316000729,"roll":60.62401620603114},"location":"Right Knee"},{"euler":{"heading":33.77976569008283,"pitch":-130.95460780896545,"roll":56.69694013074577},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.534"} +{"sensors":[{"euler":{"heading":37.373766321618874,"pitch":123.10106812187682,"roll":19.266686713870037},"location":"Left Knee"},{"euler":{"heading":47.97479699559358,"pitch":87.98047654477712,"roll":0.22794698106406822},"location":"Left Ankle"},{"euler":{"heading":30.5250727233327,"pitch":-26.05236167986461,"roll":-31.421680735024356},"location":"Right Ankle"},{"euler":{"heading":95.91464811979148,"pitch":-160.59395217348217,"roll":52.99215262545584},"location":"Right Hip"},{"euler":{"heading":132.15531587540067,"pitch":-92.34903279534237,"roll":59.75609487635657},"location":"Right Knee"},{"euler":{"heading":28.78249836099149,"pitch":-131.73181572862237,"roll":56.99330752020924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.636"} +{"sensors":[{"euler":{"heading":37.724077541149484,"pitch":122.42557957086186,"roll":19.502911696446432},"location":"Left Knee"},{"euler":{"heading":42.1651855329274,"pitch":88.51146609040389,"roll":0.6283803835294671},"location":"Left Ankle"},{"euler":{"heading":31.70020317599337,"pitch":-27.28400476479569,"roll":-30.858381317159086},"location":"Right Ankle"},{"euler":{"heading":96.31722413120951,"pitch":-160.21640590766708,"roll":52.00597804088231},"location":"Right Hip"},{"euler":{"heading":131.71637451370253,"pitch":-93.32653337387744,"roll":60.58785816897813},"location":"Right Knee"},{"euler":{"heading":24.815592794856812,"pitch":-132.952333568791,"roll":57.38633444496372},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.736"} +{"sensors":[{"euler":{"heading":38.56382559371846,"pitch":121.57058920300096,"roll":19.288603647111024},"location":"Left Knee"},{"euler":{"heading":37.747164552685746,"pitch":88.99789060455797,"roll":1.4485112768228359},"location":"Left Ankle"},{"euler":{"heading":34.99890460197039,"pitch":-28.84438596912084,"roll":-28.880174729514877},"location":"Right Ankle"},{"euler":{"heading":95.79072863152417,"pitch":-160.25527338881867,"roll":51.214683466313396},"location":"Right Hip"},{"euler":{"heading":129.7517367482933,"pitch":-101.47621520180127,"roll":62.85655348722625},"location":"Right Knee"},{"euler":{"heading":21.75179939010873,"pitch":-134.49670250877037,"roll":57.87871678950331},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.838"} +{"sensors":[{"euler":{"heading":39.83405052826057,"pitch":120.63640642134148,"roll":18.523932102411703},"location":"Left Knee"},{"euler":{"heading":34.85502133372895,"pitch":89.44398933238091,"roll":2.975407889157591},"location":"Left Ankle"},{"euler":{"heading":37.38477641950239,"pitch":-29.804492653767806,"roll":-27.280394733110825},"location":"Right Ankle"},{"euler":{"heading":94.40244016457982,"pitch":-160.67688859937175,"roll":50.74836364658543},"location":"Right Hip"},{"euler":{"heading":127.40587534836203,"pitch":-74.86133549944279,"roll":64.98078303182601},"location":"Right Knee"},{"euler":{"heading":19.492871619709717,"pitch":-136.34006154558355,"roll":58.45505806965012},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.939"} +{"sensors":[{"euler":{"heading":42.009663072145315,"pitch":119.81486893438854,"roll":16.708336737936296},"location":"Left Knee"},{"euler":{"heading":33.337116617765346,"pitch":89.29473934456249,"roll":5.552065412663502},"location":"Left Ankle"},{"euler":{"heading":38.69028712460898,"pitch":-30.310605499932276,"roll":-26.540285291208377},"location":"Right Ankle"},{"euler":{"heading":93.46190623704206,"pitch":-160.98110869681588,"roll":50.55232415300802},"location":"Right Hip"},{"euler":{"heading":125.46130536801815,"pitch":-81.58677825592346,"roll":66.58784410271011},"location":"Right Knee"},{"euler":{"heading":17.44706887911889,"pitch":-137.37786858978473,"roll":58.929012469507185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.40"} +{"sensors":[{"euler":{"heading":45.09307461427388,"pitch":119.18444098162183,"roll":14.244997288827406},"location":"Left Knee"},{"euler":{"heading":33.313045958426954,"pitch":89.10617898158016,"roll":9.268875266520638},"location":"Left Ankle"},{"euler":{"heading":39.35495694442885,"pitch":-30.631832325760595,"roll":-26.09055508427943},"location":"Right Ankle"},{"euler":{"heading":92.56694662524374,"pitch":-161.41691318705676,"roll":50.76732320409727},"location":"Right Hip"},{"euler":{"heading":124.19608551312837,"pitch":-86.78661295909443,"roll":67.45344815991645},"location":"Right Knee"},{"euler":{"heading":14.333203386688409,"pitch":-135.99828434680398,"roll":58.90009330706665},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.142"} +{"sensors":[{"euler":{"heading":47.249159541648545,"pitch":119.2382397391159,"roll":12.65807603592119},"location":"Left Knee"},{"euler":{"heading":31.943752098388977,"pitch":88.31724341559234,"roll":11.062562660496663},"location":"Left Ankle"},{"euler":{"heading":39.78028171383812,"pitch":-30.654963631798854,"roll":-26.06410511608329},"location":"Right Ankle"},{"euler":{"heading":92.25032620707127,"pitch":-161.5972307347301,"roll":51.31858894462439},"location":"Right Hip"},{"euler":{"heading":123.40388249159288,"pitch":-91.10536879634303,"roll":67.79675893459911},"location":"Right Knee"},{"euler":{"heading":45.642100640042386,"pitch":-134.34565202890812,"roll":58.27344900774534},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.243"} +{"sensors":[{"euler":{"heading":45.542499871230525,"pitch":120.256006036596,"roll":13.154335520940673},"location":"Left Knee"},{"euler":{"heading":27.956937508231956,"pitch":87.35365236358264,"roll":9.944838866744886},"location":"Left Ankle"},{"euler":{"heading":39.7420921745671,"pitch":-30.301340193888368,"roll":-26.41472557931472},"location":"Right Ankle"},{"euler":{"heading":92.39535867317308,"pitch":-161.60581759154542,"roll":51.97793888042634},"location":"Right Hip"},{"euler":{"heading":123.10600067334164,"pitch":-94.45444440496661,"roll":67.72096730311448},"location":"Right Knee"},{"euler":{"heading":71.27779148530632,"pitch":-132.66592169497963,"roll":57.563726815542736},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.343"} +{"sensors":[{"euler":{"heading":41.689676750337156,"pitch":121.96173800071523,"roll":14.976754422147588},"location":"Left Knee"},{"euler":{"heading":56.61884001707813,"pitch":86.36281668274313,"roll":6.703948102929997},"location":"Left Ankle"},{"euler":{"heading":39.07467470586833,"pitch":-29.511675855677527,"roll":-27.148164831968998},"location":"Right Ankle"},{"euler":{"heading":92.5914000969755,"pitch":-161.66709539288573,"roll":52.651857204135226},"location":"Right Hip"},{"euler":{"heading":123.34366528367723,"pitch":-97.04498669351702,"roll":67.0994717356958},"location":"Right Knee"},{"euler":{"heading":58.38001367267077,"pitch":-131.58592834212376,"roll":56.986915275351656},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.444"} +{"sensors":[{"euler":{"heading":39.09384830730848,"pitch":123.3506343466363,"roll":16.643651790445823},"location":"Left Knee"},{"euler":{"heading":80.21202591922929,"pitch":86.01320247007295,"roll":3.8961982802333193},"location":"Left Ankle"},{"euler":{"heading":37.4402027170345,"pitch":-28.380956742393757,"roll":-28.311241573298613},"location":"Right Ankle"},{"euler":{"heading":92.98973090541062,"pitch":-161.8771221463602,"roll":53.255723792262174},"location":"Right Hip"},{"euler":{"heading":124.62625610187393,"pitch":-98.7470106256882,"roll":65.72258874124452},"location":"Right Knee"},{"euler":{"heading":48.2117176022172,"pitch":-130.98916896057915,"roll":56.66711334710566},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.544"} +{"sensors":[{"euler":{"heading":37.610480039139105,"pitch":123.90586573647651,"roll":17.943899909833664},"location":"Left Knee"},{"euler":{"heading":66.35528420676116,"pitch":85.9881653556443,"roll":2.0868082780025983},"location":"Left Ankle"},{"euler":{"heading":34.478829858168645,"pitch":-26.67408681985655,"roll":-29.589602420045914},"location":"Right Ankle"},{"euler":{"heading":93.97581288210037,"pitch":-161.68667043340827,"roll":53.49893692952439},"location":"Right Hip"},{"euler":{"heading":127.39463396485871,"pitch":-99.49045844259655,"roll":63.329237262912365},"location":"Right Knee"},{"euler":{"heading":39.862146664859345,"pitch":-130.6513167278319,"roll":56.55014647340589},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.646"} +{"sensors":[{"euler":{"heading":36.764508795371356,"pitch":124.04561701866132,"roll":18.811306031909204},"location":"Left Knee"},{"euler":{"heading":55.4552973120397,"pitch":85.9238927414091,"roll":0.9965046598938014},"location":"Left Ankle"},{"euler":{"heading":31.76274092505686,"pitch":-25.498191838161365,"roll":-30.603671908034915},"location":"Right Ankle"},{"euler":{"heading":95.1934419526703,"pitch":-160.9733124310718,"roll":53.17204613473995},"location":"Right Hip"},{"euler":{"heading":129.89919103770885,"pitch":-99.75890492554771,"roll":61.020865774250574},"location":"Right Knee"},{"euler":{"heading":33.26928472136176,"pitch":-130.92824280944455,"roll":56.67617306174815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.746"} +{"sensors":[{"euler":{"heading":36.493945307013234,"pitch":123.88075439749194,"roll":19.328661371256167},"location":"Left Knee"},{"euler":{"heading":47.80269578950527,"pitch":86.21650720436162,"roll":0.925493462369293},"location":"Left Ankle"},{"euler":{"heading":31.06675433494091,"pitch":-25.641051222373935,"roll":-30.908911429906272},"location":"Right Ankle"},{"euler":{"heading":95.9645136148991,"pitch":-160.39321093690214,"roll":52.299555961844604},"location":"Right Hip"},{"euler":{"heading":130.5646629548405,"pitch":-99.96614361201466,"roll":60.501639155877605},"location":"Right Knee"},{"euler":{"heading":28.150486027404327,"pitch":-131.71390400524697,"roll":57.03991430088572},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.847"} +{"sensors":[{"euler":{"heading":36.694525059769056,"pitch":123.49970732298951,"roll":19.481702020281773},"location":"Left Knee"},{"euler":{"heading":41.66755079612038,"pitch":86.31481812590586,"roll":1.1406666577627078},"location":"Left Ankle"},{"euler":{"heading":32.71448101926596,"pitch":-26.763187491898254,"roll":-29.996053541420395},"location":"Right Ankle"},{"euler":{"heading":96.29265556023635,"pitch":-160.0942132417862,"roll":51.28413965888301},"location":"Right Hip"},{"euler":{"heading":129.7183486492696,"pitch":-100.33797327092348,"roll":61.72621660169864},"location":"Right Knee"},{"euler":{"heading":24.095961327817665,"pitch":-132.9599069271972,"roll":57.4463436821348},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.947"} +{"sensors":[{"euler":{"heading":37.47707153488008,"pitch":122.85169663292962,"roll":19.209958463503774},"location":"Left Knee"},{"euler":{"heading":37.054327008267386,"pitch":86.50484745830495,"roll":1.7991055143497063},"location":"Left Ankle"},{"euler":{"heading":35.6748161930639,"pitch":-27.95099455741672,"roll":-28.147438277144303},"location":"Right Ankle"},{"euler":{"heading":95.54469022278415,"pitch":-160.23982921271784,"roll":50.543673981208684},"location":"Right Hip"},{"euler":{"heading":127.49744336184574,"pitch":-73.71840789858325,"roll":63.821227279001384},"location":"Right Knee"},{"euler":{"heading":21.115003470586565,"pitch":-134.5748991435285,"roll":57.99841603652696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.47"} +{"sensors":[{"euler":{"heading":38.670733342213964,"pitch":121.99778906615134,"roll":18.44087742051204},"location":"Left Knee"},{"euler":{"heading":34.079640942929906,"pitch":86.84326887873897,"roll":3.149964494236952},"location":"Left Ankle"},{"euler":{"heading":38.027391705756266,"pitch":-28.787999263578094,"roll":-26.647086316714816},"location":"Right Ankle"},{"euler":{"heading":93.82642980419726,"pitch":-160.75803847128995,"roll":50.170910424510524},"location":"Right Hip"},{"euler":{"heading":125.12010962372996,"pitch":-49.86883891016011,"roll":65.70505961384758},"location":"Right Knee"},{"euler":{"heading":18.912010740695,"pitch":-136.59512426788353,"roll":58.599042780880175},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.148"} +{"sensors":[{"euler":{"heading":40.967960617558454,"pitch":121.30239838913725,"roll":16.63318262617179},"location":"Left Knee"},{"euler":{"heading":32.226611391535066,"pitch":86.79872483818677,"roll":5.484095644620207},"location":"Left Ankle"},{"euler":{"heading":39.371037816714605,"pitch":-29.33135288793711,"roll":-26.020728057116102},"location":"Right Ankle"},{"euler":{"heading":92.87730873879268,"pitch":-161.06048450112309,"roll":50.01196520075592},"location":"Right Hip"},{"euler":{"heading":123.39352773983958,"pitch":-59.83376055997018,"roll":67.20755208564069},"location":"Right Knee"},{"euler":{"heading":17.126038624563588,"pitch":-138.14374617662318,"roll":59.13064433779562},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.249"} +{"sensors":[{"euler":{"heading":44.204457937470856,"pitch":120.69099261888438,"roll":14.218609359443382},"location":"Left Knee"},{"euler":{"heading":31.92814088329223,"pitch":86.83570704511911,"roll":8.951722889557846},"location":"Left Ankle"},{"euler":{"heading":40.09665940327402,"pitch":-29.662496735346902,"roll":-25.560967615307614},"location":"Right Ankle"},{"euler":{"heading":91.88019306592366,"pitch":-161.5065742970426,"roll":50.29025647026185},"location":"Right Hip"},{"euler":{"heading":122.25923383904279,"pitch":-67.86384874991522,"roll":67.94286277784563},"location":"Right Knee"},{"euler":{"heading":14.171414394793263,"pitch":-137.17287780543973,"roll":59.21928703495245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.350"} +{"sensors":[{"euler":{"heading":46.40265502562101,"pitch":120.6966056914088,"roll":12.556909257158178},"location":"Left Knee"},{"euler":{"heading":30.56603572424351,"pitch":86.21518748394166,"roll":10.7280169176596},"location":"Left Ankle"},{"euler":{"heading":40.417313414453986,"pitch":-29.73027355280218,"roll":-25.52544153754222},"location":"Right Ankle"},{"euler":{"heading":91.43236491563367,"pitch":-161.7615971453505,"roll":50.86906722375089},"location":"Right Hip"},{"euler":{"heading":121.63963122945111,"pitch":-74.38096666682596,"roll":68.2336727175623},"location":"Right Knee"},{"euler":{"heading":45.44422960648457,"pitch":-135.49769199079097,"roll":58.71091214775394},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.450"} +{"sensors":[{"euler":{"heading":45.093140511430605,"pitch":121.58159034909298,"roll":12.89632361066182},"location":"Left Knee"},{"euler":{"heading":26.87642730813885,"pitch":85.36832003168612,"roll":9.772913529303626},"location":"Left Ankle"},{"euler":{"heading":40.4836694167122,"pitch":-29.749985952422513,"roll":-25.820286794432732},"location":"Right Ankle"},{"euler":{"heading":91.54725363321197,"pitch":-161.85561888977642,"roll":51.52361541718963},"location":"Right Hip"},{"euler":{"heading":121.62576182277753,"pitch":-79.57659795085773,"roll":68.11631969656457},"location":"Right Knee"},{"euler":{"heading":70.98497813162263,"pitch":-133.6310849462765,"roll":58.00119346185514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.551"} +{"sensors":[{"euler":{"heading":41.2503981062774,"pitch":123.13744497842484,"roll":14.725449951832143},"location":"Left Knee"},{"euler":{"heading":55.93031459798583,"pitch":84.61390139499402,"roll":6.708900455626534},"location":"Left Ankle"},{"euler":{"heading":40.050486413714104,"pitch":-29.41110475417018,"roll":-26.39624091567821},"location":"Right Ankle"},{"euler":{"heading":91.76617584966168,"pitch":-162.03582174507264,"roll":52.22291530201934},"location":"Right Hip"},{"euler":{"heading":121.98301464039821,"pitch":-83.85587837314509,"roll":67.55828649316311},"location":"Right Knee"},{"euler":{"heading":92.23659763828717,"pitch":-132.15012451803966,"roll":57.412494479184424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.652"} +{"sensors":[{"euler":{"heading":38.07423828757203,"pitch":124.63447867189016,"roll":16.6659555584383},"location":"Left Knee"},{"euler":{"heading":79.46990283004978,"pitch":84.44254322785405,"roll":3.621250082471787},"location":"Left Ankle"},{"euler":{"heading":38.88723480763336,"pitch":-28.74774114606266,"roll":-27.517883516031898},"location":"Right Ankle"},{"euler":{"heading":92.29620227094627,"pitch":-162.30589835503864,"roll":52.95081926184174},"location":"Right Hip"},{"euler":{"heading":123.35163353674379,"pitch":-87.0206009719934,"roll":66.33395393227622},"location":"Right Knee"},{"euler":{"heading":76.03452177203611,"pitch":-131.37484455919494,"roll":57.07004528525056},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.752"} +{"sensors":[{"euler":{"heading":36.353507628327634,"pitch":125.22216246867107,"roll":18.178113108074296},"location":"Left Knee"},{"euler":{"heading":65.57522071152859,"pitch":84.53124310554716,"roll":1.754780199373672},"location":"Left Ankle"},{"euler":{"heading":36.281970144927826,"pitch":-27.9750660283406,"roll":-28.937110869929047},"location":"Right Ankle"},{"euler":{"heading":93.27715562662979,"pitch":-162.37192471985657,"roll":53.46084872370052},"location":"Right Hip"},{"euler":{"heading":126.45204463149838,"pitch":-89.04599120567896,"roll":64.0310790784325},"location":"Right Knee"},{"euler":{"heading":62.82773284052051,"pitch":-130.77438327553796,"roll":56.99203854147718},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.853"} +{"sensors":[{"euler":{"heading":35.57477785364823,"pitch":125.21886520404337,"roll":19.177817716147583},"location":"Left Knee"},{"euler":{"heading":54.691730714792264,"pitch":84.65312256765873,"roll":0.5355374205085317},"location":"Left Ankle"},{"euler":{"heading":58.542379465411955,"pitch":-26.199790891087996,"roll":-30.56021686705253},"location":"Right Ankle"},{"euler":{"heading":94.64516338613159,"pitch":-161.77174118568882,"roll":53.28026844948191},"location":"Right Hip"},{"euler":{"heading":129.2344154591779,"pitch":-90.48038074066145,"roll":61.424077944524335},"location":"Right Knee"},{"euler":{"heading":52.34102041987191,"pitch":-130.90880589369044,"roll":57.17710041091968},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.953"} +{"sensors":[{"euler":{"heading":35.28198260757099,"pitch":124.9899599017714,"roll":19.76732419734843},"location":"Left Knee"},{"euler":{"heading":46.62457468541797,"pitch":84.95960340701517,"roll":0.09220416203272286},"location":"Left Ankle"},{"euler":{"heading":51.94751895552971,"pitch":-25.164138194581298,"roll":-31.588972268723712},"location":"Right Ankle"},{"euler":{"heading":95.91391933473587,"pitch":-161.08001737279594,"roll":52.50449917456012},"location":"Right Hip"},{"euler":{"heading":130.47813412484126,"pitch":-91.43349624090023,"roll":60.1292776546288},"location":"Right Knee"},{"euler":{"heading":43.90908975175434,"pitch":-131.64280825597783,"roll":57.46940974456028},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.54"} +{"sensors":[{"euler":{"heading":35.43463248329296,"pitch":124.57474343170229,"roll":19.98565261648884},"location":"Left Knee"},{"euler":{"heading":40.54238321814553,"pitch":85.2190943575719,"roll":0.16666755503976094},"location":"Left Ankle"},{"euler":{"heading":48.747418199921206,"pitch":-25.778727169696882,"roll":-31.318915253179267},"location":"Right Ankle"},{"euler":{"heading":96.58416624585033,"pitch":-160.6146170394596,"roll":51.48147827972673},"location":"Right Hip"},{"euler":{"heading":130.05177985623962,"pitch":-92.25432955018503,"roll":60.83041704261323},"location":"Right Knee"},{"euler":{"heading":37.25473705836673,"pitch":-132.86584761741346,"roll":57.9538895577079},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.154"} +{"sensors":[{"euler":{"heading":36.10064502838126,"pitch":123.94337616814909,"roll":19.814603489150684},"location":"Left Knee"},{"euler":{"heading":35.90117402810712,"pitch":85.42417471358796,"roll":0.6204926191104938},"location":"Left Ankle"},{"euler":{"heading":48.49935694115557,"pitch":-27.10179809991275,"roll":-29.67740009869546},"location":"Right Ankle"},{"euler":{"heading":96.18765977187881,"pitch":-160.57993287203115,"roll":50.615225243923426},"location":"Right Hip"},{"euler":{"heading":128.1450108498843,"pitch":-100.29197360873809,"roll":62.99874996783041},"location":"Right Knee"},{"euler":{"heading":32.127206958981844,"pitch":-134.60274806309107,"roll":58.6182049561173},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.255"} +{"sensors":[{"euler":{"heading":37.32968574891551,"pitch":123.2055990528255,"roll":19.10691178773886},"location":"Left Knee"},{"euler":{"heading":32.74305024022428,"pitch":85.65730927772614,"roll":1.7029673708031408},"location":"Left Ankle"},{"euler":{"heading":48.92644726171792,"pitch":-28.56655085417541,"roll":-27.686682797219685},"location":"Right Ankle"},{"euler":{"heading":94.87607963897311,"pitch":-160.82797749161725,"roll":50.241600686565775},"location":"Right Hip"},{"euler":{"heading":125.73357148176393,"pitch":-77.07749991119101,"roll":64.69922685730151},"location":"Right Knee"},{"euler":{"heading":28.035806456059635,"pitch":-136.65599590688538,"roll":59.30256171081382},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.356"} +{"sensors":[{"euler":{"heading":39.3586158585494,"pitch":122.44882331368095,"roll":17.574743060712198},"location":"Left Knee"},{"euler":{"heading":31.155993615766644,"pitch":85.79692324316221,"roll":3.8239708598738664},"location":"Left Ankle"},{"euler":{"heading":48.33678974483582,"pitch":-29.368782046131056,"roll":-26.592823930886603},"location":"Right Ankle"},{"euler":{"heading":93.81404987516963,"pitch":-161.0583721937428,"roll":49.93918898181347},"location":"Right Hip"},{"euler":{"heading":123.65207202602839,"pitch":-86.8025963174979,"roll":66.42819585929064},"location":"Right Knee"},{"euler":{"heading":24.876022040786676,"pitch":-138.51392870974854,"roll":60.01099869696769},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.456"} +{"sensors":[{"euler":{"heading":42.64891590314191,"pitch":121.84132480677586,"roll":15.159783545464958},"location":"Left Knee"},{"euler":{"heading":31.342840292395437,"pitch":86.33348266703632,"roll":7.324665885336208},"location":"Left Ankle"},{"euler":{"heading":47.39619012761288,"pitch":-29.827162215500344,"roll":-26.10242414421803},"location":"Right Ankle"},{"euler":{"heading":93.11092967899269,"pitch":-161.18361631107985,"roll":50.022262624276195},"location":"Right Hip"},{"euler":{"heading":122.2152813901416,"pitch":-92.82018971928403,"roll":67.55274405574984},"location":"Right Knee"},{"euler":{"heading":20.87975610900835,"pitch":-138.16183059254692,"roll":60.12885859924247},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.557"} +{"sensors":[{"euler":{"heading":45.759181516444,"pitch":121.238106779329,"roll":13.004273403788774},"location":"Left Knee"},{"euler":{"heading":30.806174462664238,"pitch":86.08772907991718,"roll":10.135639112255022},"location":"Left Ankle"},{"euler":{"heading":46.441723652939345,"pitch":-30.22410308415479,"roll":-26.00944674876525},"location":"Right Ankle"},{"euler":{"heading":92.76113732067392,"pitch":-161.21965759242502,"roll":50.46604296562513},"location":"Right Hip"},{"euler":{"heading":121.4669009370026,"pitch":-97.48057941198984,"roll":68.02929669904792},"location":"Right Knee"},{"euler":{"heading":51.32940277189789,"pitch":-136.57092994988852,"roll":59.694484093791054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.658"} +{"sensors":[{"euler":{"heading":46.45687292974253,"pitch":121.51272227168828,"roll":12.468789210491476},"location":"Left Knee"},{"euler":{"heading":28.285895399795972,"pitch":85.54430617194001,"roll":10.443783063942545},"location":"Left Ankle"},{"euler":{"heading":45.588863855386364,"pitch":-30.61301152176719,"roll":-26.127454279991692},"location":"Right Ankle"},{"euler":{"heading":92.8849539460696,"pitch":-161.16309083534523,"roll":51.05191327295204},"location":"Right Hip"},{"euler":{"heading":121.39515083379413,"pitch":-100.94854113828208,"roll":68.09785354431631},"location":"Right Knee"},{"euler":{"heading":75.92265763846493,"pitch":-134.70924676547602,"roll":58.87931258802457},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.759"} +{"sensors":[{"euler":{"heading":43.3717777079416,"pitch":122.7719172827223,"roll":13.821342964893073},"location":"Left Knee"},{"euler":{"heading":23.517178689606542,"pitch":84.72558440640175,"roll":8.195859106374856},"location":"Left Ankle"},{"euler":{"heading":44.46842634421325,"pitch":-30.733058077289286,"roll":-26.567173580921814},"location":"Right Ankle"},{"euler":{"heading":93.14685816942021,"pitch":-161.2070299085914,"roll":51.64150578924129},"location":"Right Hip"},{"euler":{"heading":121.77040938422127,"pitch":-103.47424659075915,"roll":67.73777208377487},"location":"Right Knee"},{"euler":{"heading":95.38182276967703,"pitch":-133.65485865678613,"roll":57.8622547498441},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.859"} +{"sensors":[{"euler":{"heading":39.37721412989776,"pitch":124.470190383172,"roll":15.877578216203013},"location":"Left Knee"},{"euler":{"heading":52.71008619910445,"pitch":83.84800140959203,"roll":4.746785525529921},"location":"Left Ankle"},{"euler":{"heading":42.81379518960057,"pitch":-30.300662219865657,"roll":-27.50608761137977},"location":"Right Ankle"},{"euler":{"heading":93.43264875267462,"pitch":-161.35380481814255,"roll":52.31175543875843},"location":"Right Hip"},{"euler":{"heading":122.62463897643349,"pitch":-105.1532731315691,"roll":66.85308442748273},"location":"Right Knee"},{"euler":{"heading":78.28283675208846,"pitch":-132.5164645983424,"roll":57.45324091476427},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.960"} +{"sensors":[{"euler":{"heading":37.0993362119995,"pitch":125.32915031839933,"roll":17.660925250572323},"location":"Left Knee"},{"euler":{"heading":77.29097202427849,"pitch":83.76733534167201,"roll":2.24411679276156},"location":"Left Ankle"},{"euler":{"heading":40.311540637694804,"pitch":-29.427828067154884,"roll":-28.837257435437326},"location":"Right Ankle"},{"euler":{"heading":93.91635669000497,"pitch":-161.68281292744342,"roll":52.99553664176581},"location":"Right Hip"},{"euler":{"heading":124.61421298697528,"pitch":-105.98887202701735,"roll":65.19642831771287},"location":"Right Knee"},{"euler":{"heading":64.72810376464153,"pitch":-131.9619847957446,"roll":57.255548409907256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.61"} +{"sensors":[{"euler":{"heading":36.03682879206321,"pitch":125.47619914874281,"roll":18.882241234310776},"location":"Left Knee"},{"euler":{"heading":64.1299970842204,"pitch":83.93810023972325,"roll":0.8415838332966317},"location":"Left Ankle"},{"euler":{"heading":62.186615222055536,"pitch":-27.40734351709639,"roll":-30.630385288554123},"location":"Right Ankle"},{"euler":{"heading":94.954509443633,"pitch":-161.37410278844402,"roll":53.186211062314584},"location":"Right Hip"},{"euler":{"heading":127.3550465374284,"pitch":-106.03749303556529,"roll":62.74611227139511},"location":"Right Knee"},{"euler":{"heading":53.68895628830887,"pitch":-131.62077314693283,"roll":57.3382549245737},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.162"} +{"sensors":[{"euler":{"heading":35.79110617855957,"pitch":125.0385104387387,"roll":19.749567325461076},"location":"Left Knee"},{"euler":{"heading":54.03751556709188,"pitch":84.51473798142472,"roll":0.04214601440390775},"location":"Left Ankle"},{"euler":{"heading":54.40228283084741,"pitch":-25.953611782475594,"roll":-31.884332921913007},"location":"Right Ankle"},{"euler":{"heading":96.08397724172588,"pitch":-160.7856026809184,"roll":52.669091909185845},"location":"Right Hip"},{"euler":{"heading":129.39115228554198,"pitch":-105.73666113231856,"roll":60.77858526796913},"location":"Right Knee"},{"euler":{"heading":45.01277816731457,"pitch":-132.06112799012388,"roll":57.58550790956104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.266"} +{"sensors":[{"euler":{"heading":35.96446315150483,"pitch":124.28573837572509,"roll":20.326303323051135},"location":"Left Knee"},{"euler":{"heading":46.62398172374116,"pitch":85.33973379172778,"roll":-0.09860519726319039},"location":"Left Ankle"},{"euler":{"heading":49.996376801790014,"pitch":-26.427703760287287,"roll":-32.14503866386864},"location":"Right Ankle"},{"euler":{"heading":96.75908131993215,"pitch":-160.34820852217447,"roll":51.70175783479332},"location":"Right Hip"},{"euler":{"heading":130.01788461222412,"pitch":-105.26230538120343,"roll":60.597506867885556},"location":"Right Knee"},{"euler":{"heading":38.241670233240136,"pitch":-133.089796721284,"roll":58.01138143283556},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.367"} +{"sensors":[{"euler":{"heading":36.67121187565642,"pitch":123.30730831530465,"roll":20.47362297360497},"location":"Left Knee"},{"euler":{"heading":40.73214754571778,"pitch":86.03868947896187,"roll":0.11291507362412481},"location":"Left Ankle"},{"euler":{"heading":48.838292502370884,"pitch":-27.802001687803607,"roll":-30.82921950278649},"location":"Right Ankle"},{"euler":{"heading":96.38438781193555,"pitch":-160.39237421277514,"roll":50.731316416776224},"location":"Right Hip"},{"euler":{"heading":128.6939523005958,"pitch":-106.29561835922759,"roll":62.33615197593092},"location":"Right Knee"},{"euler":{"heading":32.94125207131093,"pitch":-134.55569110575226,"roll":58.563212383890324},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.468"} +{"sensors":[{"euler":{"heading":37.8800995664668,"pitch":122.20792026359912,"roll":20.071851167799522},"location":"Left Knee"},{"euler":{"heading":36.39543538660665,"pitch":86.75439136771152,"roll":0.8572281042128604},"location":"Left Ankle"},{"euler":{"heading":49.13262363724924,"pitch":-29.29527255237579,"roll":-28.65164647126748},"location":"Right Ankle"},{"euler":{"heading":95.32848041665619,"pitch":-160.72365871904432,"roll":50.26341438893331},"location":"Right Hip"},{"euler":{"heading":126.5635438294131,"pitch":-79.26391046092786,"roll":64.36719729072827},"location":"Right Knee"},{"euler":{"heading":28.809361241368347,"pitch":-136.2864233196612,"roll":59.240909687482436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.569"} +{"sensors":[{"euler":{"heading":39.648770784838824,"pitch":121.14771303067349,"roll":18.959189113138603},"location":"Left Knee"},{"euler":{"heading":33.700664509219784,"pitch":87.37823093964516,"roll":2.4998235584386084},"location":"Left Ankle"},{"euler":{"heading":49.18931711241349,"pitch":-30.123309071622955,"roll":-27.115222360960693},"location":"Right Ankle"},{"euler":{"heading":93.9823346781964,"pitch":-161.18395311833257,"roll":50.10161504040412},"location":"Right Hip"},{"euler":{"heading":124.36137901510344,"pitch":-88.79291534953774,"roll":66.22882080892603},"location":"Right Knee"},{"euler":{"heading":25.64020462108683,"pitch":-138.2270741470335,"roll":59.96710193279172},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.669"} +{"sensors":[{"euler":{"heading":42.3930339068682,"pitch":120.61047476930757,"roll":16.739526194459643},"location":"Left Knee"},{"euler":{"heading":32.62974281669067,"pitch":87.49682974922915,"roll":5.549783153171776},"location":"Left Ankle"},{"euler":{"heading":48.343941524410454,"pitch":-30.438571225086804,"roll":-26.491895157666825},"location":"Right Ankle"},{"euler":{"heading":93.27250232224114,"pitch":-161.46371997346867,"roll":50.17518322434039},"location":"Right Hip"},{"euler":{"heading":122.67120971731794,"pitch":-94.04448496924238,"roll":67.44367823297381},"location":"Right Knee"},{"euler":{"heading":22.34375634526336,"pitch":-138.93674657417858,"roll":60.344785739134686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.770"} +{"sensors":[{"euler":{"heading":45.44265008039719,"pitch":119.98759918029927,"roll":14.29700108122573},"location":"Left Knee"},{"euler":{"heading":31.978794995226355,"pitch":87.18797532267573,"roll":8.791185496922463},"location":"Left Ankle"},{"euler":{"heading":47.38421007404067,"pitch":-30.48603178587026,"roll":-26.284580363346514},"location":"Right Ankle"},{"euler":{"heading":92.43564413734757,"pitch":-161.80605364268868,"roll":50.70548723513601},"location":"Right Hip"},{"euler":{"heading":121.42404301926013,"pitch":-98.4873434422288,"roll":67.99600413800943},"location":"Right Knee"},{"euler":{"heading":18.675542957985215,"pitch":-137.5456162599032,"roll":60.34171456071867},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.870"} +{"sensors":[{"euler":{"heading":46.845735866866086,"pitch":120.13741149788774,"roll":13.097523274761928},"location":"Left Knee"},{"euler":{"heading":29.656262035996846,"pitch":86.50421973096591,"roll":9.625556104624005},"location":"Left Ankle"},{"euler":{"heading":46.503258089649975,"pitch":-30.439798050163194,"roll":-26.435868907186716},"location":"Right Ankle"},{"euler":{"heading":92.08336279728432,"pitch":-162.0325885416096,"roll":51.42910373083754},"location":"Right Hip"},{"euler":{"heading":120.78336397813905,"pitch":-101.84170089583,"roll":68.12718101178169},"location":"Right Knee"},{"euler":{"heading":49.32840030183993,"pitch":-135.7874112678712,"roll":59.73845945795841},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.970"} +{"sensors":[{"euler":{"heading":44.807896088944034,"pitch":121.22422215018013,"roll":13.867081679509573},"location":"Left Knee"},{"euler":{"heading":24.99595185068823,"pitch":85.83794387557951,"roll":7.907309302086686},"location":"Left Ankle"},{"euler":{"heading":45.35387341898024,"pitch":-30.207712451012753,"roll":-26.822469060276607},"location":"Right Ankle"},{"euler":{"heading":91.94949321934739,"pitch":-162.3564804784123,"roll":52.17306587819667},"location":"Right Hip"},{"euler":{"heading":120.77601844286234,"pitch":-104.27055398081478,"roll":67.79998162392565},"location":"Right Knee"},{"euler":{"heading":74.35558269488618,"pitch":-133.8991900073538,"roll":59.0439562591957},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.72"} +{"sensors":[{"euler":{"heading":41.30816035850533,"pitch":122.85568855491199,"roll":15.728716195215487},"location":"Left Knee"},{"euler":{"heading":53.83766974012953,"pitch":85.11019599886,"roll":4.545137075092658},"location":"Left Ankle"},{"euler":{"heading":43.842008975267625,"pitch":-29.6885479799618,"roll":-27.63602789858522},"location":"Right Ankle"},{"euler":{"heading":92.04202141446571,"pitch":-162.82197614107426,"roll":53.03056322065949},"location":"Right Hip"},{"euler":{"heading":121.50127676427127,"pitch":-105.91544899664252,"roll":66.93315752047384},"location":"Right Knee"},{"euler":{"heading":61.25087890031556,"pitch":-132.74349925587515,"roll":58.57009562123027},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.176"} +{"sensors":[{"euler":{"heading":39.00738479242155,"pitch":123.82066538959077,"roll":17.442989410989963},"location":"Left Knee"},{"euler":{"heading":78.17856434929558,"pitch":85.0818776901969,"roll":2.222173441266618},"location":"Left Ankle"},{"euler":{"heading":41.432870419686175,"pitch":-28.98690199140249,"roll":-28.90727470197502},"location":"Right Ankle"},{"euler":{"heading":92.52206431786317,"pitch":-163.30264464137977,"roll":53.79460058008234},"location":"Right Hip"},{"euler":{"heading":123.64089746706726,"pitch":-106.60125697329369,"roll":65.20348608012502},"location":"Right Knee"},{"euler":{"heading":50.8299177553318,"pitch":-131.92366518663994,"roll":58.2839983224359},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.276"} +{"sensors":[{"euler":{"heading":37.884511649818876,"pitch":124.08148219296746,"roll":18.625583448230884},"location":"Left Knee"},{"euler":{"heading":64.7200146343243,"pitch":85.34757323197658,"roll":0.8217278414004612},"location":"Left Ankle"},{"euler":{"heading":63.1047588217519,"pitch":-27.002415192272302,"roll":-30.57483601561006},"location":"Right Ankle"},{"euler":{"heading":93.69395822104892,"pitch":-162.98253551994233,"roll":53.98060779732709},"location":"Right Hip"},{"euler":{"heading":126.67105769856425,"pitch":-106.64513268021949,"roll":62.603865974126464},"location":"Right Knee"},{"euler":{"heading":42.27941023877646,"pitch":-131.33045045985315,"roll":58.23914708130402},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.377"} +{"sensors":[{"euler":{"heading":37.375330574147554,"pitch":123.7764658245552,"roll":19.55894124461864},"location":"Left Knee"},{"euler":{"heading":54.30659021769243,"pitch":85.90904111773322,"roll":-0.08283671503151979},"location":"Left Ankle"},{"euler":{"heading":55.0232610388844,"pitch":-25.32560869753047,"roll":-31.863794307339788},"location":"Right Ankle"},{"euler":{"heading":95.1350735853901,"pitch":-162.14590845236242,"roll":53.48899194636086},"location":"Right Hip"},{"euler":{"heading":129.1521495836497,"pitch":-106.2627178726945,"roll":60.364495372711524},"location":"Right Knee"},{"euler":{"heading":35.74199802595016,"pitch":-131.72113322689682,"roll":58.38286684730691},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.477"} +{"sensors":[{"euler":{"heading":37.37458519963638,"pitch":123.14374565699161,"roll":20.14786522565148},"location":"Left Knee"},{"euler":{"heading":46.60648744857871,"pitch":86.59545864336565,"roll":-0.2830426457925403},"location":"Left Ankle"},{"euler":{"heading":50.243239544274836,"pitch":-25.645408345357925,"roll":-32.22157870537663},"location":"Right Ankle"},{"euler":{"heading":96.20209642549383,"pitch":-161.43642793029238,"roll":52.52095394400947},"location":"Right Hip"},{"euler":{"heading":130.0005486898825,"pitch":-105.79182878380753,"roll":59.860143476583765},"location":"Right Knee"},{"euler":{"heading":30.662656203227414,"pitch":-132.7048549342773,"roll":58.67938389523474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.578"} +{"sensors":[{"euler":{"heading":37.837708882417395,"pitch":122.33934594868995,"roll":20.3062134786741},"location":"Left Knee"},{"euler":{"heading":40.53946402364045,"pitch":87.19279952493861,"roll":-0.1550480066008484},"location":"Left Ankle"},{"euler":{"heading":49.05825936892565,"pitch":-27.070340832685723,"roll":-30.89847867881826},"location":"Right Ankle"},{"euler":{"heading":96.40395379910822,"pitch":-161.12142860680575,"roll":51.53798494387911},"location":"Right Hip"},{"euler":{"heading":128.86406220265522,"pitch":-106.45966958544244,"roll":61.50840691386349},"location":"Right Knee"},{"euler":{"heading":26.77718082201033,"pitch":-134.2846558753012,"roll":59.09632747269696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.679"} +{"sensors":[{"euler":{"heading":38.805499502312884,"pitch":121.3855430101905,"roll":19.890639949895},"location":"Left Knee"},{"euler":{"heading":36.11281486927565,"pitch":87.76304493987736,"roll":0.5553019148529846},"location":"Left Ankle"},{"euler":{"heading":49.30678695950098,"pitch":-28.52619534179226,"roll":-28.779715757439444},"location":"Right Ankle"},{"euler":{"heading":95.51096963901622,"pitch":-161.22878387252376,"roll":50.999293942961145},"location":"Right Hip"},{"euler":{"heading":126.55419694067916,"pitch":-80.91651915573976,"roll":63.4338868767814},"location":"Right Knee"},{"euler":{"heading":23.780062363656164,"pitch":-136.16602175444754,"roll":59.628187323091474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.779"} +{"sensors":[{"euler":{"heading":40.29352639585267,"pitch":120.43923619506702,"roll":18.902231135416855},"location":"Left Knee"},{"euler":{"heading":33.44547390808682,"pitch":88.33255357282441,"roll":2.1968915361666386},"location":"Left Ankle"},{"euler":{"heading":49.135726698715736,"pitch":-29.504679269789676,"roll":-27.314343373004416},"location":"Right Ankle"},{"euler":{"heading":94.15553788446712,"pitch":-161.63508297337765,"roll":50.690205110171235},"location":"Right Hip"},{"euler":{"heading":124.37750702331891,"pitch":-56.50708185571911,"roll":65.19998693896025},"location":"Right Knee"},{"euler":{"heading":21.468712429258726,"pitch":-138.18352415517225,"roll":60.21052427631268},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.880"} +{"sensors":[{"euler":{"heading":42.79016232863006,"pitch":119.85643089256516,"roll":16.693931647547668},"location":"Left Knee"},{"euler":{"heading":32.05218395880491,"pitch":88.5625129755822,"roll":5.2935034387512445},"location":"Left Ankle"},{"euler":{"heading":48.24060867602507,"pitch":-29.985804072101846,"roll":-26.820707489558842},"location":"Right Ankle"},{"euler":{"heading":93.54511768590815,"pitch":-161.8422095981367,"roll":50.63644001816773},"location":"Right Hip"},{"euler":{"heading":122.73197777380045,"pitch":-65.87026770141476,"roll":66.37597002927572},"location":"Right Knee"},{"euler":{"heading":18.797346331010466,"pitch":-138.64169104409393,"roll":60.368857399653564},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.982"} +{"sensors":[{"euler":{"heading":45.76781839800902,"pitch":119.21015874652332,"roll":14.315196788263943},"location":"Left Knee"},{"euler":{"heading":31.250242205955363,"pitch":88.42576966594548,"roll":8.541448447469476},"location":"Left Ankle"},{"euler":{"heading":47.26392940500286,"pitch":-30.17740430258049,"roll":-26.570223832577145},"location":"Right Ankle"},{"euler":{"heading":92.84316583542633,"pitch":-162.08908639510992,"roll":51.039632705715306},"location":"Right Hip"},{"euler":{"heading":121.50352637559492,"pitch":-73.4331491577625,"roll":67.06553343961721},"location":"Right Knee"},{"euler":{"heading":15.5160980873242,"pitch":-136.88623756095882,"roll":60.090012255737996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.83"} +{"sensors":[{"euler":{"heading":46.9574053316588,"pitch":119.44581563995955,"roll":13.256675499546652},"location":"Left Knee"},{"euler":{"heading":29.458059419329828,"pitch":87.61237836866756,"roll":9.387684657267314},"location":"Left Ankle"},{"euler":{"heading":46.380991178835274,"pitch":-30.291325499852128,"roll":-26.634887487462013},"location":"Right Ankle"},{"euler":{"heading":92.57161911638819,"pitch":-162.2351900569316,"roll":51.64228402525129},"location":"Right Hip"},{"euler":{"heading":120.92573386252023,"pitch":-79.47994088416814,"roll":67.35061964982783},"location":"Right Knee"},{"euler":{"heading":46.46796614486545,"pitch":-135.0302326103856,"roll":59.31450516353104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.184"} +{"sensors":[{"euler":{"heading":44.602065543479114,"pitch":120.62814083239026,"roll":14.20728971289819},"location":"Left Knee"},{"euler":{"heading":24.756374765726726,"pitch":86.721782856871,"roll":7.561268589887094},"location":"Left Ankle"},{"euler":{"heading":45.360776943282104,"pitch":-30.221996031047123,"roll":-26.96688416789245},"location":"Right Ankle"},{"euler":{"heading":92.59303457223959,"pitch":-162.4030674650623,"roll":52.312459645128705},"location":"Right Hip"},{"euler":{"heading":120.87475482569008,"pitch":-84.2975481808545,"roll":67.23403267626999},"location":"Right Knee"},{"euler":{"heading":71.8886108739923,"pitch":-133.19620198771096,"roll":58.58304158484298},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.285"} +{"sensors":[{"euler":{"heading":40.96721261181019,"pitch":122.31036411834287,"roll":16.131686887946096},"location":"Left Knee"},{"euler":{"heading":53.60583243912058,"pitch":85.92185048126643,"roll":4.172560382407548},"location":"Left Ankle"},{"euler":{"heading":43.92495057252196,"pitch":-29.790652449909135,"roll":-27.849939837083397},"location":"Right Ankle"},{"euler":{"heading":92.82460059851823,"pitch":-162.64415516219282,"roll":53.061572244416155},"location":"Right Hip"},{"euler":{"heading":121.50483300749282,"pitch":-88.05640488939797,"roll":66.5696771128864},"location":"Right Knee"},{"euler":{"heading":59.12985484057847,"pitch":-132.07765637863204,"roll":58.05790049733883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.386"} +{"sensors":[{"euler":{"heading":38.79956084161899,"pitch":123.33316020512326,"roll":17.795736932770804},"location":"Left Knee"},{"euler":{"heading":77.80443168434408,"pitch":85.78065175755611,"roll":1.7304600791966345},"location":"Left Ankle"},{"euler":{"heading":41.64941559943123,"pitch":-28.918770475784438,"roll":-29.118674206884418},"location":"Right Ankle"},{"euler":{"heading":93.31741729648272,"pitch":-163.02283271677388,"roll":53.81671456525043},"location":"Right Hip"},{"euler":{"heading":123.15629409002044,"pitch":-90.73237311679507,"roll":65.19562832960506},"location":"Right Knee"},{"euler":{"heading":49.13484272721074,"pitch":-131.32710586876382,"roll":57.78485387399964},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.486"} +{"sensors":[{"euler":{"heading":37.62516601173834,"pitch":123.63440559351034,"roll":18.992338350512583},"location":"Left Knee"},{"euler":{"heading":64.3958392943808,"pitch":85.93825931733888,"roll":0.31733559829740754},"location":"Left Ankle"},{"euler":{"heading":63.63878423560449,"pitch":-27.208303524808954,"roll":-30.7423449286168},"location":"Right Ankle"},{"euler":{"heading":94.63651244403155,"pitch":-162.70555945233843,"roll":54.07196188286094},"location":"Right Hip"},{"euler":{"heading":126.01861675538854,"pitch":-92.22037677850494,"roll":62.82862268881957},"location":"Right Knee"},{"euler":{"heading":40.98660958071967,"pitch":-130.95710741399387,"roll":57.76370247908514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.587"} +{"sensors":[{"euler":{"heading":37.2343223406741,"pitch":123.33624550599748,"roll":19.84919146207479},"location":"Left Knee"},{"euler":{"heading":54.16006195618938,"pitch":86.48515538867817,"roll":-0.43223314814679226},"location":"Left Ankle"},{"euler":{"heading":55.395122080113055,"pitch":-25.505966610876243,"roll":-31.985642409950653},"location":"Right Ankle"},{"euler":{"heading":95.97223433665735,"pitch":-161.97256871068026,"roll":53.607327827376125},"location":"Right Hip"},{"euler":{"heading":128.61793165260283,"pitch":-93.12688144387702,"roll":60.60354396819634},"location":"Right Knee"},{"euler":{"heading":34.64778241463767,"pitch":-131.1514374118359,"roll":57.958594183399626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.687"} +{"sensors":[{"euler":{"heading":37.25318250459026,"pitch":122.73351064664084,"roll":20.404560106196328},"location":"Left Knee"},{"euler":{"heading":47.092931645814254,"pitch":87.26540277982174,"roll":-0.17114062159398352},"location":"Left Ankle"},{"euler":{"heading":50.25639888478669,"pitch":-25.552961498468452,"roll":-32.56370301404212},"location":"Right Ankle"},{"euler":{"heading":97.20860934513405,"pitch":-161.2439052722728,"roll":52.616142518330044},"location":"Right Hip"},{"euler":{"heading":129.71770963013483,"pitch":-93.82230346359896,"roll":59.9337652101167},"location":"Right Knee"},{"euler":{"heading":29.760768349219383,"pitch":-132.0347733909668,"roll":58.34303259636296},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.787"} +{"sensors":[{"euler":{"heading":37.7323591808035,"pitch":121.96813451168919,"roll":20.53849027873638},"location":"Left Knee"},{"euler":{"heading":41.32420899608656,"pitch":87.81685120055822,"roll":0.30292780367414524},"location":"Left Ankle"},{"euler":{"heading":48.355597307757655,"pitch":-26.927234908660402,"roll":-31.624229972946754},"location":"Right Ankle"},{"euler":{"heading":97.59669455006866,"pitch":-160.94127434398493,"roll":51.47548602191272},"location":"Right Hip"},{"euler":{"heading":129.14377034532572,"pitch":-95.27797127759301,"roll":61.36693961892377},"location":"Right Knee"},{"euler":{"heading":25.901973957725072,"pitch":-133.4286128663355,"roll":58.791971564885706},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.888"} +{"sensors":[{"euler":{"heading":38.76680174278226,"pitch":121.10909610840255,"roll":20.106766745098614},"location":"Left Knee"},{"euler":{"heading":36.95155834642729,"pitch":88.24449944182089,"roll":1.219415732088098},"location":"Left Ankle"},{"euler":{"heading":48.33311242118216,"pitch":-28.42642889574006,"roll":-29.680187628897063},"location":"Right Ankle"},{"euler":{"heading":97.02266214813584,"pitch":-160.89335284882162,"roll":50.823834073604544},"location":"Right Hip"},{"euler":{"heading":127.02103396706195,"pitch":-69.27648027538453,"roll":63.44261872256996},"location":"Right Knee"},{"euler":{"heading":22.867248788356385,"pitch":-134.98118354390837,"roll":59.37061917013248},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.989"} +{"sensors":[{"euler":{"heading":40.279676635521874,"pitch":120.23070343660416,"roll":19.06212704035087},"location":"Left Knee"},{"euler":{"heading":34.280868840875826,"pitch":88.70281136898116,"roll":2.9107924231987488},"location":"Left Ankle"},{"euler":{"heading":48.617912509421174,"pitch":-29.563035789715702,"roll":-27.95674400687603},"location":"Right Ankle"},{"euler":{"heading":95.60139582522018,"pitch":-161.2067083395434,"roll":50.54332646244305},"location":"Right Hip"},{"euler":{"heading":124.81920574642417,"pitch":-48.08488497187951,"roll":65.25545062958575},"location":"Right Knee"},{"euler":{"heading":20.56672367345356,"pitch":-136.95087028113207,"roll":59.98340258142979},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.90"} +{"sensors":[{"euler":{"heading":42.66586131516892,"pitch":119.59044579737713,"roll":17.040757926192683},"location":"Left Knee"},{"euler":{"heading":32.88483710713031,"pitch":88.79647979817403,"roll":5.386580950643145},"location":"Left Ankle"},{"euler":{"heading":48.131724287920804,"pitch":-30.15157027746567,"roll":-27.098789124470972},"location":"Right Ankle"},{"euler":{"heading":94.83005481683163,"pitch":-161.35945914594845,"roll":50.45002542173459},"location":"Right Hip"},{"euler":{"heading":122.92122628435442,"pitch":-58.77836401745952,"roll":66.87205581240427},"location":"Right Knee"},{"euler":{"heading":18.599821917498105,"pitch":-138.59050333820832,"roll":60.407098250829215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.191"} +{"sensors":[{"euler":{"heading":45.868181323260096,"pitch":118.66031946635026,"roll":14.516070399372488},"location":"Left Knee"},{"euler":{"heading":32.63950930074764,"pitch":89.1249956379032,"roll":8.940773272339182},"location":"Left Ankle"},{"euler":{"heading":47.28773583189401,"pitch":-30.416581624942626,"roll":-26.80401705079643},"location":"Right Ankle"},{"euler":{"heading":94.222262872859,"pitch":-161.5155154666828,"roll":50.78177116887318},"location":"Right Hip"},{"euler":{"heading":121.5930844653006,"pitch":-67.26556517855784,"roll":67.72846017577213},"location":"Right Knee"},{"euler":{"heading":15.901333614808896,"pitch":-137.69604337935405,"roll":60.43377144534004},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.292"} +{"sensors":[{"euler":{"heading":47.91948791338683,"pitch":118.6807409353627,"roll":13.010378875195894},"location":"Left Knee"},{"euler":{"heading":31.02365194672422,"pitch":88.43534036854666,"roll":10.724054189547772},"location":"Left Ankle"},{"euler":{"heading":46.45399162375893,"pitch":-30.585040097189633,"roll":-26.882112989780175},"location":"Right Ankle"},{"euler":{"heading":94.03970479758486,"pitch":-161.51403955912525,"roll":51.36138908599473},"location":"Right Hip"},{"euler":{"heading":120.94555615985998,"pitch":-74.11307892418232,"roll":68.03371983865846},"location":"Right Knee"},{"euler":{"heading":47.09255257005467,"pitch":-136.08999763277362,"roll":59.768251670003615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.393"} +{"sensors":[{"euler":{"heading":46.150817085463316,"pitch":119.72775803255648,"roll":13.580141117337746},"location":"Left Knee"},{"euler":{"heading":27.304630739465676,"pitch":89.14303741049065,"roll":9.739601217277825},"location":"Left Ankle"},{"euler":{"heading":45.420549627784084,"pitch":-30.666130278929156,"roll":-27.202482978839544},"location":"Right Ankle"},{"euler":{"heading":94.25883551775989,"pitch":-161.50675873953566,"roll":51.96315989307889},"location":"Right Hip"},{"euler":{"heading":120.9920555306786,"pitch":-79.52444285277546,"roll":67.91755139679479},"location":"Right Knee"},{"euler":{"heading":72.48325586288733,"pitch":-134.1848834831515,"roll":58.963898952175654},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.493"} +{"sensors":[{"euler":{"heading":42.30072706520239,"pitch":121.40645054773944,"roll":15.534469215487098},"location":"Left Knee"},{"euler":{"heading":56.001497641165116,"pitch":86.75130793866597,"roll":6.470671207868058},"location":"Left Ankle"},{"euler":{"heading":44.0690173032233,"pitch":-30.33522584507483,"roll":-27.902604023693733},"location":"Right Ankle"},{"euler":{"heading":94.59283751009855,"pitch":-161.51800643021124,"roll":52.6147028363129},"location":"Right Hip"},{"euler":{"heading":121.46413662117297,"pitch":-83.88597352380103,"roll":67.33086355141327},"location":"Right Knee"},{"euler":{"heading":59.50973397022172,"pitch":-132.71069608853875,"roll":58.337130453465235},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.594"} +{"sensors":[{"euler":{"heading":39.07693387391599,"pitch":122.97302002938605,"roll":17.451524696373358},"location":"Left Knee"},{"euler":{"heading":79.24281266207267,"pitch":86.34690260271928,"roll":3.1321982226469562},"location":"Left Ankle"},{"euler":{"heading":42.08842389269802,"pitch":-29.554228752185452,"roll":-29.1009303329966},"location":"Right Ankle"},{"euler":{"heading":94.91388043729249,"pitch":-161.80166833585992,"roll":53.38262703660849},"location":"Right Hip"},{"euler":{"heading":122.70680039975989,"pitch":-87.1905207067502,"roll":66.14005519536165},"location":"Right Knee"},{"euler":{"heading":49.26158280697044,"pitch":-131.70967788171515,"roll":57.94239718036463},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.695"} +{"sensors":[{"euler":{"heading":37.12695121732836,"pitch":123.64146095079305,"roll":18.995970580278343},"location":"Left Knee"},{"euler":{"heading":65.22281091678401,"pitch":86.24255982822417,"roll":1.205233822336119},"location":"Left Ankle"},{"euler":{"heading":38.956608036961285,"pitch":-28.484860181797757,"roll":-30.577656248766015},"location":"Right Ankle"},{"euler":{"heading":95.53941380014626,"pitch":-161.9513313876481,"roll":54.01210412341406},"location":"Right Hip"},{"euler":{"heading":125.62084527505745,"pitch":-89.30081756852123,"roll":63.93291394284016},"location":"Right Knee"},{"euler":{"heading":40.94769683652038,"pitch":-130.92278760617432,"roll":57.858697029738615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.796"} +{"sensors":[{"euler":{"heading":36.1010570816017,"pitch":123.8539261785714,"roll":19.977329636356405},"location":"Left Knee"},{"euler":{"heading":54.30210773050158,"pitch":86.1540879596346,"roll":-0.05091301464227427},"location":"Left Ankle"},{"euler":{"heading":35.161601959855425,"pitch":-26.64920030022894,"roll":-31.896072804153246},"location":"Right Ankle"},{"euler":{"heading":96.48560729033947,"pitch":-161.39710206901213,"roll":53.91582779764625},"location":"Right Hip"},{"euler":{"heading":128.18522126211843,"pitch":-90.78825576472447,"roll":61.39470383602845},"location":"Right Knee"},{"euler":{"heading":34.34243655155437,"pitch":-130.7993356614001,"roll":57.99104461622484},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.897"} +{"sensors":[{"euler":{"heading":35.61777454213689,"pitch":123.8440402089439,"roll":20.520509146647708},"location":"Left Knee"},{"euler":{"heading":46.18664565933724,"pitch":86.26428181458637,"roll":-0.5395304508294072},"location":"Left Ankle"},{"euler":{"heading":33.362222809609875,"pitch":-25.939406641387453,"roll":-32.67884886157558},"location":"Right Ankle"},{"euler":{"heading":97.68841163464059,"pitch":-160.67561738900486,"roll":53.13310875793097},"location":"Right Hip"},{"euler":{"heading":129.24450068296431,"pitch":-91.860717367904,"roll":60.14431490927457},"location":"Right Knee"},{"euler":{"heading":29.088634649067124,"pitch":-131.2345953745818,"roll":58.30105249281832},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.998"} +{"sensors":[{"euler":{"heading":35.566891169280865,"pitch":123.72213379656348,"roll":20.66124559863188},"location":"Left Knee"},{"euler":{"heading":40.035174719737164,"pitch":86.32832164194431,"roll":-0.500098274039033},"location":"Left Ankle"},{"euler":{"heading":34.13027410238377,"pitch":-26.706169955677556,"roll":-32.192156575334096},"location":"Right Ankle"},{"euler":{"heading":98.44139951958307,"pitch":-160.17734188109296,"roll":52.06218204077482},"location":"Right Hip"},{"euler":{"heading":128.66712776232862,"pitch":-92.90250483624196,"roll":60.94509410917992},"location":"Right Knee"},{"euler":{"heading":25.018694391889497,"pitch":-132.28838018769355,"roll":58.724258277298745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.99"} +{"sensors":[{"euler":{"heading":36.09597745104528,"pitch":123.37401141721745,"roll":20.408094818712353},"location":"Left Knee"},{"euler":{"heading":35.37291141923044,"pitch":86.34465253235872,"roll":-0.08986269972231481},"location":"Left Ankle"},{"euler":{"heading":36.81623009895585,"pitch":-28.166939652927745,"roll":-30.39623071673777},"location":"Right Ankle"},{"euler":{"heading":98.30883641610069,"pitch":-160.0712926341423,"roll":51.12879898976611},"location":"Right Hip"},{"euler":{"heading":126.98747799854968,"pitch":-98.20310284080767,"roll":62.918213851066184},"location":"Right Knee"},{"euler":{"heading":21.8824269099959,"pitch":-133.6997124896749,"roll":59.25583933513419},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.200"} +{"sensors":[{"euler":{"heading":37.165340635866634,"pitch":122.80930123186576,"roll":19.727181607610557},"location":"Left Knee"},{"euler":{"heading":32.13215016485566,"pitch":86.36537525572001,"roll":0.8699347023020483},"location":"Left Ankle"},{"euler":{"heading":39.40193292827,"pitch":-29.649277052535812,"roll":-28.33713470880927},"location":"Right Ankle"},{"euler":{"heading":97.07663075108243,"pitch":-160.28448730994373,"roll":50.70632076990805},"location":"Right Hip"},{"euler":{"heading":124.81551138658165,"pitch":-73.74262305961322,"roll":64.69175011621655},"location":"Right Knee"},{"euler":{"heading":19.46308721486046,"pitch":-135.55348675601132,"roll":59.849814631163326},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.301"} +{"sensors":[{"euler":{"heading":38.86733180224437,"pitch":122.23291067497664,"roll":18.391657990167804},"location":"Left Knee"},{"euler":{"heading":30.299070844472343,"pitch":86.31278304015912,"roll":2.6540088253347824},"location":"Left Ankle"},{"euler":{"heading":40.65703397293746,"pitch":-30.51498261280672,"roll":-27.151675117022954},"location":"Right Ankle"},{"euler":{"heading":95.75854610315862,"pitch":-160.64387047229647,"roll":50.41321037209829},"location":"Right Hip"},{"euler":{"heading":122.86469357794437,"pitch":-82.51265353483211,"roll":66.36197726638518},"location":"Right Knee"},{"euler":{"heading":17.779399898384472,"pitch":-137.76599857600317,"roll":60.47052238023004},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.402"} +{"sensors":[{"euler":{"heading":42.02667667283235,"pitch":121.60433368761821,"roll":16.053567504203244},"location":"Left Knee"},{"euler":{"heading":30.02288087119614,"pitch":86.67541988100623,"roll":5.754699942441238},"location":"Left Ankle"},{"euler":{"heading":41.31015495601225,"pitch":-30.792986851226765,"roll":-26.60811465487892},"location":"Right Ankle"},{"euler":{"heading":94.6674092190757,"pitch":-160.9274501860092,"roll":50.51659115065297},"location":"Right Hip"},{"euler":{"heading":121.18413178207145,"pitch":-89.02750702343505,"roll":67.53444165469061},"location":"Right Knee"},{"euler":{"heading":15.104721502326164,"pitch":-137.59206279163402,"roll":60.592232588976216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.503"} +{"sensors":[{"euler":{"heading":44.71461502878118,"pitch":121.23769049632753,"roll":14.18759061345854},"location":"Left Knee"},{"euler":{"heading":28.898995371883217,"pitch":86.43875669645168,"roll":8.037250988123334},"location":"Left Ankle"},{"euler":{"heading":41.67846108953317,"pitch":-30.794843037981256,"roll":-26.550267795783228},"location":"Right Ankle"},{"euler":{"heading":93.88100306840002,"pitch":-161.1246013253492,"roll":50.98469222098091},"location":"Right Hip"},{"euler":{"heading":119.9032145427141,"pitch":-94.28054235895793,"roll":68.131641464927},"location":"Right Knee"},{"euler":{"heading":46.31543598309316,"pitch":-135.97807226747727,"roll":60.15539682227026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.604"} +{"sensors":[{"euler":{"heading":44.40657619924788,"pitch":121.90473589071142,"roll":14.098402379511144},"location":"Left Knee"},{"euler":{"heading":26.052479483694583,"pitch":84.3042717165417,"roll":7.760223340113755},"location":"Left Ankle"},{"euler":{"heading":41.861123596575204,"pitch":-30.689507117896493,"roll":-26.711954689083502},"location":"Right Ankle"},{"euler":{"heading":93.65326610552795,"pitch":-161.20192824834692,"roll":51.61040567271023},"location":"Right Hip"},{"euler":{"heading":119.31218959437452,"pitch":-98.30855558803006,"roll":68.33315015528561},"location":"Right Knee"},{"euler":{"heading":71.61508665369172,"pitch":-134.0300972408862,"roll":59.38556064352028},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.705"} +{"sensors":[{"euler":{"heading":41.0687396858801,"pitch":123.3525623265084,"roll":15.634821842891427},"location":"Left Knee"},{"euler":{"heading":55.43997155636329,"pitch":83.56189097845346,"roll":5.256276336281626},"location":"Left Ankle"},{"euler":{"heading":41.61235184690114,"pitch":-30.368269579306,"roll":-27.06040158846618},"location":"Right Ankle"},{"euler":{"heading":93.64515455798076,"pitch":-161.38486029867045,"roll":52.29550433363228},"location":"Right Hip"},{"euler":{"heading":119.36333669885704,"pitch":-101.29942053442151,"roll":68.06364696782768},"location":"Right Knee"},{"euler":{"heading":92.56822527102321,"pitch":-132.3268762629368,"roll":58.73057222456847},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.805"} +{"sensors":[{"euler":{"heading":37.925496571533294,"pitch":125.01343753534408,"roll":17.423425135460484},"location":"Left Knee"},{"euler":{"heading":78.59278587373244,"pitch":83.05659776360163,"roll":1.9679241846078956},"location":"Left Ankle"},{"euler":{"heading":40.77845520214869,"pitch":-29.756543124851362,"roll":-28.017795727047922},"location":"Right Ankle"},{"euler":{"heading":93.8584892137778,"pitch":-161.66335179682304,"roll":53.12351880470551},"location":"Right Hip"},{"euler":{"heading":120.23755895935452,"pitch":-103.3636864628428,"roll":67.19552294960347},"location":"Right Knee"},{"euler":{"heading":76.11580827125175,"pitch":-131.43965788617774,"roll":58.26868629557454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.906"} +{"sensors":[{"euler":{"heading":36.279280534820565,"pitch":125.86233828097222,"roll":18.85163783543914},"location":"Left Knee"},{"euler":{"heading":98.40046391708347,"pitch":83.14039352010442,"roll":-0.15744473509050172},"location":"Left Ankle"},{"euler":{"heading":38.62122525043797,"pitch":-28.864124567118196,"roll":-29.401359586125633},"location":"Right Ankle"},{"euler":{"heading":94.44339362274093,"pitch":-161.7964456604782,"roll":53.83709661808611},"location":"Right Hip"},{"euler":{"heading":122.67156509370928,"pitch":-104.45275395724262,"roll":65.36360501917775},"location":"Right Knee"},{"euler":{"heading":62.67431375515732,"pitch":-130.94599208469108,"roll":57.98153399724855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.6"} +{"sensors":[{"euler":{"heading":35.55561794399006,"pitch":126.09540972331476,"roll":19.80510937924514},"location":"Left Knee"},{"euler":{"heading":81.13499651160284,"pitch":83.2697259804178,"roll":-1.408818340708995},"location":"Left Ankle"},{"euler":{"heading":60.7728602926464,"pitch":-27.319379109769308,"roll":-30.998139883214925},"location":"Right Ankle"},{"euler":{"heading":95.6773667815598,"pitch":-161.173715527828,"roll":53.781249098100346},"location":"Right Hip"},{"euler":{"heading":125.87736941089871,"pitch":-104.8199119983936,"roll":62.74280830397221},"location":"Right Knee"},{"euler":{"heading":51.710049892509936,"pitch":-130.65980950987995,"roll":57.99518118956598},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.107"} +{"sensors":[{"euler":{"heading":35.444653723186256,"pitch":125.87230280639089,"roll":20.453850942405456},"location":"Left Knee"},{"euler":{"heading":67.50934712959756,"pitch":83.57106023685708,"roll":-2.160655441844562},"location":"Left Ankle"},{"euler":{"heading":53.761943603339724,"pitch":-26.302077131408126,"roll":-32.1754877360887},"location":"Right Ankle"},{"euler":{"heading":97.04446111246165,"pitch":-160.37241024552478,"roll":53.005386539055245},"location":"Right Hip"},{"euler":{"heading":127.90774771901303,"pitch":-104.95000370033694,"roll":60.95395481888797},"location":"Right Knee"},{"euler":{"heading":43.214092545006636,"pitch":-131.22724778980376,"roll":58.221561268217215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.208"} +{"sensors":[{"euler":{"heading":35.8294209503568,"pitch":125.25424738390123,"roll":20.820904632928414},"location":"Left Knee"},{"euler":{"heading":56.852086151046656,"pitch":84.05776117010306,"roll":-2.460474409508559},"location":"Left Ankle"},{"euler":{"heading":50.07848911987769,"pitch":-26.885708753051244,"roll":-32.057724249290345},"location":"Right Ankle"},{"euler":{"heading":97.82495392161772,"pitch":-159.86136014011495,"roll":51.84553915840802},"location":"Right Hip"},{"euler":{"heading":128.0541658142223,"pitch":-104.84179874959895,"roll":61.178311245209876},"location":"Right Knee"},{"euler":{"heading":36.60838510612548,"pitch":-132.36496584807014,"roll":58.604766188249066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.310"} +{"sensors":[{"euler":{"heading":36.75683462054807,"pitch":124.3323206702304,"roll":20.784433297137202},"location":"Left Knee"},{"euler":{"heading":48.571830583697135,"pitch":84.71219578948822,"roll":-2.2739844342749667},"location":"Left Ankle"},{"euler":{"heading":49.01254151587784,"pitch":-28.10347814652553,"roll":-30.73237494221219},"location":"Right Ankle"},{"euler":{"heading":93.46996217699105,"pitch":-159.67240778677723,"roll":50.71278786261894},"location":"Right Hip"},{"euler":{"heading":126.79474142191926,"pitch":-106.75340076302611,"roll":62.897379227920666},"location":"Right Knee"},{"euler":{"heading":31.41367015073414,"pitch":-133.87602848230304,"roll":59.08826084549888},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.410"} +{"sensors":[{"euler":{"heading":38.15829314319917,"pitch":123.19488147447453,"roll":20.26986137683156},"location":"Left Knee"},{"euler":{"heading":42.422168984902555,"pitch":85.52435374882967,"roll":-1.5166488486792558},"location":"Left Ankle"},{"euler":{"heading":49.334751615258675,"pitch":-29.496727395005863,"roll":-28.57590485720783},"location":"Right Ankle"},{"euler":{"heading":93.27508911961472,"pitch":-159.9057104296904,"roll":50.175304670565126},"location":"Right Hip"},{"euler":{"heading":124.71120665693903,"pitch":-81.86007424702898,"roll":64.75613169169802},"location":"Right Knee"},{"euler":{"heading":27.576414757568603,"pitch":-135.9032805475432,"roll":59.71006764752541},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.511"} +{"sensors":[{"euler":{"heading":40.04896930243104,"pitch":122.07646147911417,"roll":19.090801155500454},"location":"Left Knee"},{"euler":{"heading":38.129996243312924,"pitch":86.20574747704988,"roll":0.05449608429860553},"location":"Left Ankle"},{"euler":{"heading":49.16456943590343,"pitch":-30.359108306676394,"roll":-27.17748242974073},"location":"Right Ankle"},{"euler":{"heading":92.53883243380504,"pitch":-160.4378667885577,"roll":49.88514467678525},"location":"Right Hip"},{"euler":{"heading":122.76739836408868,"pitch":-57.527349956024565,"roll":66.36672678091297},"location":"Right Knee"},{"euler":{"heading":24.83875515478007,"pitch":-138.3500571034568,"roll":60.39757658611611},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.611"} +{"sensors":[{"euler":{"heading":43.05959855011685,"pitch":121.49843855504452,"roll":16.721876576225707},"location":"Left Knee"},{"euler":{"heading":35.87597511068687,"pitch":86.45371460739715,"roll":3.384629725192813},"location":"Left Ankle"},{"euler":{"heading":48.39502184541668,"pitch":-30.996767918454932,"roll":-26.46499843553622},"location":"Right Ankle"},{"euler":{"heading":92.2570328759711,"pitch":-160.78860504759837,"roll":49.955523356677},"location":"Right Hip"},{"euler":{"heading":121.37795071799705,"pitch":-66.75781103254795,"roll":67.51495814152642},"location":"Right Knee"},{"euler":{"heading":21.128671481779218,"pitch":-138.88750748063958,"roll":60.508389834965755},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.712"} +{"sensors":[{"euler":{"heading":46.30353378565815,"pitch":120.9100016326692,"roll":14.168069536706792},"location":"Left Knee"},{"euler":{"heading":34.184963069514396,"pitch":86.14896150534632,"roll":6.897390503694595},"location":"Left Ankle"},{"euler":{"heading":47.49143296889746,"pitch":-31.4845905950688,"roll":-26.153226652590835},"location":"Right Ankle"},{"euler":{"heading":91.91928016885096,"pitch":-161.19515897146425,"roll":50.43537880376522},"location":"Right Hip"},{"euler":{"heading":120.60293626929257,"pitch":-74.13519476917864,"roll":68.0188863974598},"location":"Right Knee"},{"euler":{"heading":51.38458171643512,"pitch":-137.0789441900421,"roll":60.28167006288458},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.813"} +{"sensors":[{"euler":{"heading":47.77060288570747,"pitch":120.86505495172966,"roll":13.052200024834526},"location":"Left Knee"},{"euler":{"heading":31.664810502710328,"pitch":85.8256355573627,"roll":8.084322133434021},"location":"Left Ankle"},{"euler":{"heading":46.561325540630015,"pitch":-31.937899792879914,"roll":-26.311064900294188},"location":"Right Ankle"},{"euler":{"heading":92.09457200084972,"pitch":-161.44413333257916,"roll":51.07172849808266},"location":"Right Hip"},{"euler":{"heading":120.69962812357542,"pitch":-79.87739215664593,"roll":68.05870698373806},"location":"Right Knee"},{"euler":{"heading":75.93811155981592,"pitch":-135.27595172789316,"roll":59.55332992058348},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.914"} +{"sensors":[{"euler":{"heading":45.363035733747786,"pitch":121.94804696110762,"roll":13.950921260283966},"location":"Left Knee"},{"euler":{"heading":26.783236522517637,"pitch":85.11689443132302,"roll":6.5899740912501805},"location":"Left Ankle"},{"euler":{"heading":45.45492675297494,"pitch":-32.28268960476373,"roll":-26.471724719870327},"location":"Right Ankle"},{"euler":{"heading":92.49969429669186,"pitch":-161.77049425661562,"roll":51.766451629846564},"location":"Right Hip"},{"euler":{"heading":121.38522068573681,"pitch":-84.41343431949542,"roll":67.678568106224},"location":"Right Knee"},{"euler":{"heading":96.07224149263965,"pitch":-133.4007111704686,"roll":58.9299449232279},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.14"} +{"sensors":[{"euler":{"heading":41.721090939448594,"pitch":123.52255020242481,"roll":15.869978926266604},"location":"Left Knee"},{"euler":{"heading":55.26542462988719,"pitch":84.42800978861031,"roll":3.275824274295948},"location":"Left Ankle"},{"euler":{"heading":44.013930949023774,"pitch":-32.19040039431205,"roll":-27.14623416511722},"location":"Right Ankle"},{"euler":{"heading":92.90869698876465,"pitch":-162.15498973756746,"roll":52.57344850660737},"location":"Right Hip"},{"euler":{"heading":122.35680935217536,"pitch":-88.01857998518422,"roll":66.85301999228639},"location":"Right Knee"},{"euler":{"heading":78.96705700017449,"pitch":-132.25082102609065,"roll":58.51449206568664},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.115"} +{"sensors":[{"euler":{"heading":39.29792943971049,"pitch":124.50138087402013,"roll":17.594595766265346},"location":"Left Knee"},{"euler":{"heading":79.0443978034705,"pitch":84.29217046889278,"roll":0.7466120023239133},"location":"Left Ankle"},{"euler":{"heading":41.85901470977618,"pitch":-31.60748434744784,"roll":-28.416510098199534},"location":"Right Ankle"},{"euler":{"heading":93.6359782490631,"pitch":-162.65748811410032,"roll":53.36907825229035},"location":"Right Hip"},{"euler":{"heading":124.39491438341462,"pitch":-90.51978707494483,"roll":65.21420593477941},"location":"Right Knee"},{"euler":{"heading":65.30023317105551,"pitch":-131.3292202444392,"roll":58.27530120413772},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.216"} +{"sensors":[{"euler":{"heading":37.90243290734449,"pitch":124.78067897678093,"roll":18.840057259892824},"location":"Left Knee"},{"euler":{"heading":65.34572381337819,"pitch":84.49029946552137,"roll":-0.644267698509376},"location":"Left Ankle"},{"euler":{"heading":64.0601066782064,"pitch":-29.730433313573208,"roll":-30.136700664098868},"location":"Right Ankle"},{"euler":{"heading":94.74871711318274,"pitch":-162.4225306874735,"roll":53.81553962982528},"location":"Right Hip"},{"euler":{"heading":126.98523523661743,"pitch":-92.23015342648971,"roll":62.79787063976503},"location":"Right Knee"},{"euler":{"heading":54.06229029887645,"pitch":-130.71526304729358,"roll":58.27289442906831},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.317"} +{"sensors":[{"euler":{"heading":37.20569994389692,"pitch":124.6350732585497,"roll":19.675724252578433},"location":"Left Knee"},{"euler":{"heading":54.53949075120432,"pitch":84.6993079949216,"roll":-1.563957541800714},"location":"Left Ankle"},{"euler":{"heading":56.1443813539238,"pitch":-28.204350533909473,"roll":-31.508953700317463},"location":"Right Ankle"},{"euler":{"heading":96.03438085898375,"pitch":-161.7402442654822,"roll":53.46447733550172},"location":"Right Hip"},{"euler":{"heading":129.4510149617228,"pitch":-93.40326693203275,"roll":60.516264129175795},"location":"Right Knee"},{"euler":{"heading":45.2946824165586,"pitch":-131.13473893083903,"roll":58.56203667183038},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.418"} +{"sensors":[{"euler":{"heading":37.05138728869965,"pitch":124.2655059679727,"roll":20.098961260886064},"location":"Left Knee"},{"euler":{"heading":46.20860069611473,"pitch":84.92410645001073,"roll":-1.9383732735173835},"location":"Left Ankle"},{"euler":{"heading":51.26228186225569,"pitch":-28.214638243432702,"roll":-32.007507820629044},"location":"Right Ankle"},{"euler":{"heading":97.12869808196632,"pitch":-161.06935251753617,"roll":52.61767743606112},"location":"Right Hip"},{"euler":{"heading":130.09662664415762,"pitch":-94.42317095353314,"roll":59.9677487038151},"location":"Right Knee"},{"euler":{"heading":38.33575104901789,"pitch":-132.19207727274699,"roll":58.948525741399656},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.519"} +{"sensors":[{"euler":{"heading":37.501731094771586,"pitch":123.63382835591135,"roll":20.137110039652228},"location":"Left Knee"},{"euler":{"heading":39.963971865500874,"pitch":85.28209896780528,"roll":-1.7599309747437368},"location":"Left Ankle"},{"euler":{"heading":49.29217403495582,"pitch":-29.1097981712592,"roll":-31.067435035299045},"location":"Right Ankle"},{"euler":{"heading":97.28156037496528,"pitch":-160.81305244453912,"roll":51.583890467933465},"location":"Right Hip"},{"euler":{"heading":128.81787926649775,"pitch":-96.20812628994469,"roll":61.397690435435756},"location":"Right Knee"},{"euler":{"heading":32.8339808041022,"pitch":-133.921726378409,"roll":59.36959375986231},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.620"} +{"sensors":[{"euler":{"heading":38.512565334197724,"pitch":122.806590799608,"roll":19.684114693705833},"location":"Left Knee"},{"euler":{"heading":35.33839183051134,"pitch":85.64765462864086,"roll":-1.0931118377386002},"location":"Left Ankle"},{"euler":{"heading":49.33184741888734,"pitch":-30.419211921153938,"roll":-29.099068767145116},"location":"Right Ankle"},{"euler":{"heading":96.52087301750021,"pitch":-160.90217950764466,"roll":50.92192655515609},"location":"Right Hip"},{"euler":{"heading":126.54016363353212,"pitch":-71.15858319883817,"roll":63.38126475571143},"location":"Right Knee"},{"euler":{"heading":28.638293338317062,"pitch":-136.06353758731342,"roll":59.9408575598686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.721"} +{"sensors":[{"euler":{"heading":40.077453449718405,"pitch":122.00453638269121,"roll":18.560773579902715},"location":"Left Knee"},{"euler":{"heading":32.377369714019004,"pitch":85.94871029764644,"roll":0.4317988624977822},"location":"Left Ankle"},{"euler":{"heading":49.46540217187671,"pitch":-31.431653869185052,"roll":-27.3952321857653},"location":"Right Ankle"},{"euler":{"heading":95.3510547394225,"pitch":-161.13146105640868,"roll":50.584525443354664},"location":"Right Hip"},{"euler":{"heading":124.18765733806917,"pitch":-49.32421900697945,"roll":65.08102680157171},"location":"Right Knee"},{"euler":{"heading":25.410954794724617,"pitch":-138.51885093531644,"roll":60.55290485744607},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.821"} +{"sensors":[{"euler":{"heading":42.726202881380985,"pitch":121.49280840403947,"roll":16.343338061995762},"location":"Left Knee"},{"euler":{"heading":31.272746334288524,"pitch":85.94764391895754,"roll":3.6249713764599982},"location":"Left Ankle"},{"euler":{"heading":48.61756213027874,"pitch":-31.836490900305808,"roll":-26.685815993502544},"location":"Right Ankle"},{"euler":{"heading":96.23030886773054,"pitch":-161.22002606327118,"roll":50.44568819943867},"location":"Right Hip"},{"euler":{"heading":122.39816983035651,"pitch":-60.05438449737803,"roll":66.47046642486568},"location":"Right Knee"},{"euler":{"heading":22.209554606655338,"pitch":-139.52181472989992,"roll":60.99971566637894},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.922"} +{"sensors":[{"euler":{"heading":45.91758893171126,"pitch":120.85139928072967,"roll":13.86715662246953},"location":"Left Knee"},{"euler":{"heading":30.748781606390544,"pitch":85.93478836421164,"roll":7.215939903734031},"location":"Left Ankle"},{"euler":{"heading":47.51312540504073,"pitch":-31.947169612628517,"roll":-26.51356226341405},"location":"Right Ankle"},{"euler":{"heading":95.16664889983512,"pitch":-161.4487990213484,"roll":50.80757306262614},"location":"Right Hip"},{"euler":{"heading":121.05184556771164,"pitch":-68.74125092154598,"roll":67.22238456442936},"location":"Right Knee"},{"euler":{"heading":18.36946356954929,"pitch":-137.77776447179886,"roll":60.9878520983459},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.24"} +{"sensors":[{"euler":{"heading":47.38324796971768,"pitch":121.02605821838391,"roll":12.714513044228507},"location":"Left Knee"},{"euler":{"heading":29.100971797194735,"pitch":85.34051554602628,"roll":8.65794431256783},"location":"Left Ankle"},{"euler":{"heading":46.335329671076174,"pitch":-32.0829918668172,"roll":-26.75008445909628},"location":"Right Ankle"},{"euler":{"heading":94.85458419746638,"pitch":-161.4655601256941,"roll":51.390681884240976},"location":"Right Hip"},{"euler":{"heading":120.5975152641499,"pitch":-75.46622609888263,"roll":67.50444093887748},"location":"Right Knee"},{"euler":{"heading":48.7507909139033,"pitch":-135.72993755617654,"roll":60.29935198224222},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.124"} +{"sensors":[{"euler":{"heading":45.27773694928605,"pitch":122.12346134270048,"roll":13.597794266372974},"location":"Left Knee"},{"euler":{"heading":24.814764960851715,"pitch":84.64819488509586,"roll":7.329006887413604},"location":"Left Ankle"},{"euler":{"heading":45.00828804661059,"pitch":-32.00969888810577,"roll":-27.071123036588535},"location":"Right Ankle"},{"euler":{"heading":95.0092921863114,"pitch":-161.36776598645443,"roll":52.02533806191729},"location":"Right Hip"},{"euler":{"heading":120.72491594860708,"pitch":-80.82021569954448,"roll":67.39700295769421},"location":"Right Knee"},{"euler":{"heading":73.75778529937696,"pitch":-133.82934755512974,"roll":59.55743923349534},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.225"} +{"sensors":[{"euler":{"heading":41.746373309949455,"pitch":123.72884076564205,"roll":15.46720880337184},"location":"Left Knee"},{"euler":{"heading":53.63580634418898,"pitch":83.9563327891603,"roll":4.099134631594524},"location":"Left Ankle"},{"euler":{"heading":43.3628488985848,"pitch":-31.527206364645686,"roll":-27.76590376282982},"location":"Right Ankle"},{"euler":{"heading":95.40945106912733,"pitch":-161.28521981470257,"roll":52.58773200496621},"location":"Right Hip"},{"euler":{"heading":121.3940357139824,"pitch":-84.97525177290112,"roll":66.81821508860209},"location":"Right Knee"},{"euler":{"heading":60.49386420331598,"pitch":-132.59112094712006,"roll":58.94555395331622},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.325"} +{"sensors":[{"euler":{"heading":39.062982389237696,"pitch":125.02098529041143,"roll":17.18852196652083},"location":"Left Knee"},{"euler":{"heading":77.24038883034281,"pitch":83.79996332335558,"roll":1.18244902971467},"location":"Left Ankle"},{"euler":{"heading":41.18322205565793,"pitch":-30.585259756853134,"roll":-29.060467980506928},"location":"Right Ankle"},{"euler":{"heading":95.80249910879353,"pitch":-161.42455691553585,"roll":53.26309688151668},"location":"Right Hip"},{"euler":{"heading":122.79208923654285,"pitch":-88.15240021690518,"roll":65.62860991658845},"location":"Right Knee"},{"euler":{"heading":49.96631733641577,"pitch":-131.67282100777314,"roll":58.5405069032523},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.426"} +{"sensors":[{"euler":{"heading":37.85274590221195,"pitch":125.32219975508583,"roll":18.50233773678049},"location":"Left Knee"},{"euler":{"heading":63.565392549472875,"pitch":84.22327271499617,"roll":-0.3628504791842415},"location":"Left Ankle"},{"euler":{"heading":63.80997908055443,"pitch":-29.51888467219098,"roll":-30.588605335386},"location":"Right Ankle"},{"euler":{"heading":96.63562286960817,"pitch":-161.3603897415795,"roll":53.779092804909816},"location":"Right Hip"},{"euler":{"heading":125.53015637555197,"pitch":-90.30794044066123,"roll":63.54146354778284},"location":"Right Knee"},{"euler":{"heading":41.429607776866774,"pitch":-131.1094131215516,"roll":58.346403843296066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.527"} +{"sensors":[{"euler":{"heading":37.68225804163596,"pitch":124.75052753480512,"roll":19.584161347188886},"location":"Left Knee"},{"euler":{"heading":53.07581215089072,"pitch":85.1235565970122,"roll":-1.3330913439987278},"location":"Left Ankle"},{"euler":{"heading":81.23091577983652,"pitch":-28.02481605577868,"roll":-32.26269881715972},"location":"Right Ankle"},{"euler":{"heading":97.89447853367999,"pitch":-160.7315769332039,"roll":53.514731818688425},"location":"Right Hip"},{"euler":{"heading":128.5093009011011,"pitch":-91.80659168945449,"roll":61.05238074450363},"location":"Right Knee"},{"euler":{"heading":35.15319623633166,"pitch":-131.2714191279764,"roll":58.509647356299844},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.627"} +{"sensors":[{"euler":{"heading":37.79831099556877,"pitch":123.97758736207135,"roll":20.253920574658533},"location":"Left Knee"},{"euler":{"heading":45.045814103959465,"pitch":85.96198227549148,"roll":-1.717577589520837},"location":"Left Ankle"},{"euler":{"heading":71.15507029554064,"pitch":-27.802479048347653,"roll":-33.1830135247769},"location":"Right Ankle"},{"euler":{"heading":99.1749310954632,"pitch":-160.04367374169473,"roll":52.5739718511067},"location":"Right Hip"},{"euler":{"heading":129.8963017326042,"pitch":-92.96054339595074,"roll":60.030750426688726},"location":"Right Knee"},{"euler":{"heading":30.239999017777954,"pitch":-132.28602923868007,"roll":58.81788564869522},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.728"} +{"sensors":[{"euler":{"heading":38.29761594576709,"pitch":123.15332160286938,"roll":20.455688089491623},"location":"Left Knee"},{"euler":{"heading":39.21402393415301,"pitch":86.73254339197224,"roll":-1.387724541884064},"location":"Left Ankle"},{"euler":{"heading":64.97394608046007,"pitch":-28.611994127357956,"roll":-32.672143844780216},"location":"Right Ankle"},{"euler":{"heading":99.63477879860083,"pitch":-159.6709102077803,"roll":51.490834604728065},"location":"Right Hip"},{"euler":{"heading":129.07597028915893,"pitch":-94.37333460904993,"roll":61.13959782030298},"location":"Right Knee"},{"euler":{"heading":26.175461352797136,"pitch":-133.70947578974946,"roll":59.16220118143364},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.829"} +{"sensors":[{"euler":{"heading":39.217742748769126,"pitch":122.16965175476486,"roll":20.23992687445977},"location":"Left Knee"},{"euler":{"heading":34.8670226670991,"pitch":87.50709394147538,"roll":-0.673077206036427},"location":"Left Ankle"},{"euler":{"heading":61.642932848514015,"pitch":-29.814183449881078,"roll":-30.884067003239565},"location":"Right Ankle"},{"euler":{"heading":98.79251353246795,"pitch":-159.79733977055966,"roll":50.6415274721089},"location":"Right Hip"},{"euler":{"heading":126.78716012649078,"pitch":-68.4460064841035,"roll":63.10610602709187},"location":"Right Knee"},{"euler":{"heading":22.984164431255547,"pitch":-135.47314170857885,"roll":59.62834172419171},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.930"} +{"sensors":[{"euler":{"heading":40.4586567943261,"pitch":121.19631911748203,"roll":19.503666934453896},"location":"Left Knee"},{"euler":{"heading":32.015194388794335,"pitch":88.20796543039327,"roll":0.6335185039350917},"location":"Left Ankle"},{"euler":{"heading":59.75379123042547,"pitch":-30.925795837396137,"roll":-28.861799913348168},"location":"Right Ankle"},{"euler":{"heading":96.91975143626,"pitch":-160.363586110414,"roll":50.21189314873787},"location":"Right Hip"},{"euler":{"heading":124.22937449066727,"pitch":-48.13008115671403,"roll":64.77258944930932},"location":"Right Knee"},{"euler":{"heading":20.579219767325394,"pitch":-137.723022883055,"roll":60.12148437567109},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.30"} +{"sensors":[{"euler":{"heading":42.52703530762551,"pitch":120.49987920769576,"roll":16.269070770534956},"location":"Left Knee"},{"euler":{"heading":30.5124635792959,"pitch":88.28330765702664,"roll":3.0821749227049198},"location":"Left Ankle"},{"euler":{"heading":57.27949614944565,"pitch":-31.569002418264986,"roll":-27.81668142886341},"location":"Right Ankle"},{"euler":{"heading":95.63603879930022,"pitch":-160.77489808177668,"roll":49.9895963703061},"location":"Right Hip"},{"euler":{"heading":122.30153102158792,"pitch":-60.02615836626435,"roll":66.29243938126643},"location":"Right Knee"},{"euler":{"heading":18.59221778263023,"pitch":-139.46161890519764,"roll":60.6568964852564},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.131"} +{"sensors":[{"euler":{"heading":45.665331125694024,"pitch":119.85779747473987,"roll":13.865352385170137},"location":"Left Knee"},{"euler":{"heading":30.631614065695807,"pitch":88.65469364901763,"roll":6.772339381275608},"location":"Left Ankle"},{"euler":{"heading":54.712523048232875,"pitch":-32.06778971659054,"roll":-27.3168778304134},"location":"Right Ankle"},{"euler":{"heading":94.66817060219289,"pitch":-161.164919956827,"roll":50.13327339772772},"location":"Right Hip"},{"euler":{"heading":121.20458481404204,"pitch":-68.78110818280817,"roll":67.12074540569431},"location":"Right Knee"},{"euler":{"heading":15.568115438211173,"pitch":-138.6032002984701,"roll":60.719260718441284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.232"} +{"sensors":[{"euler":{"heading":48.0803863126489,"pitch":119.77025424926374,"roll":12.112404364910008},"location":"Left Knee"},{"euler":{"heading":29.62334713577858,"pitch":88.20597097122564,"roll":8.946196939495879},"location":"Left Ankle"},{"euler":{"heading":52.3907118970229,"pitch":-32.42995029773278,"roll":-27.138102160938473},"location":"Right Ankle"},{"euler":{"heading":94.35725109792658,"pitch":-161.35137241799367,"roll":50.64972815463992},"location":"Right Hip"},{"euler":{"heading":120.80581229880202,"pitch":-75.6984870928455,"roll":67.48381388866584},"location":"Right Knee"},{"euler":{"heading":46.885112275174905,"pitch":-137.02976747320758,"roll":60.28223202607822},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.333"} +{"sensors":[{"euler":{"heading":47.2575909691088,"pitch":120.5768894021492,"roll":12.220618060934203},"location":"Left Knee"},{"euler":{"heading":26.38398438071192,"pitch":87.3837614695162,"roll":8.624323032147734},"location":"Left Ankle"},{"euler":{"heading":50.28747500534268,"pitch":-32.76955099709891,"roll":-27.13685581890153},"location":"Right Ankle"},{"euler":{"heading":94.41182654413021,"pitch":-161.53197921858686,"roll":51.30730503704352},"location":"Right Hip"},{"euler":{"heading":121.05004733108257,"pitch":-81.16712495991484,"roll":67.47346297599697},"location":"Right Knee"},{"euler":{"heading":72.09342759414477,"pitch":-135.23739825003366,"roll":59.530057196579044},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.433"} +{"sensors":[{"euler":{"heading":43.896607995545786,"pitch":122.03806628671978,"roll":13.85837261199765},"location":"Left Knee"},{"euler":{"heading":55.479540406343645,"pitch":86.50302250716645,"roll":5.919272460068777},"location":"Left Ankle"},{"euler":{"heading":48.149175403989595,"pitch":-32.79147244051852,"roll":-27.51622772294362},"location":"Right Ankle"},{"euler":{"heading":94.59325493515725,"pitch":-161.7667495028453,"roll":51.93800181555724},"location":"Right Hip"},{"euler":{"heading":121.64836231928462,"pitch":-85.53291892950175,"roll":67.0419798518351},"location":"Right Knee"},{"euler":{"heading":92.57344531464742,"pitch":-134.0316995429898,"roll":58.76619863231972},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.534"} +{"sensors":[{"euler":{"heading":40.26473328265479,"pitch":123.78236567541055,"roll":15.869468267653126},"location":"Left Knee"},{"euler":{"heading":78.51816926762201,"pitch":85.7595715384979,"roll":2.4727279318792177},"location":"Left Ankle"},{"euler":{"heading":45.684901113121626,"pitch":-32.40108238233689,"roll":-28.55511289613908},"location":"Right Ankle"},{"euler":{"heading":94.99745653120019,"pitch":-162.12187466509096,"roll":52.6157191494456},"location":"Right Hip"},{"euler":{"heading":122.89331604572436,"pitch":-88.79376140408301,"roll":66.0629560714867},"location":"Right Knee"},{"euler":{"heading":76.04279343816222,"pitch":-132.98825529236206,"roll":58.35443151267782},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.638"} +{"sensors":[{"euler":{"heading":38.51569160837297,"pitch":124.53434096121929,"roll":17.552516530649658},"location":"Left Knee"},{"euler":{"heading":98.33342261394522,"pitch":86.04998112018592,"roll":0.25772244174723813},"location":"Left Ankle"},{"euler":{"heading":42.41269610910429,"pitch":-31.649492537218766,"roll":-29.917291039548914},"location":"Right Ankle"},{"euler":{"heading":95.63162704496857,"pitch":-162.62157780268598,"roll":53.288421751061236},"location":"Right Hip"},{"euler":{"heading":125.37522847132097,"pitch":-90.98936242454836,"roll":64.24364855499797},"location":"Right Knee"},{"euler":{"heading":62.93557590129806,"pitch":-132.2521543614728,"roll":58.13046639874474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.739"} +{"sensors":[{"euler":{"heading":37.80890572750203,"pitch":124.46567589610675,"roll":18.754418347295488},"location":"Left Knee"},{"euler":{"heading":81.29413424031854,"pitch":86.50896066464409,"roll":-0.9261283719544229},"location":"Left Ankle"},{"euler":{"heading":64.01405456235562,"pitch":-29.584140941248243,"roll":-31.67307916420301},"location":"Right Ankle"},{"euler":{"heading":96.70974408497773,"pitch":-162.3424738806442,"roll":53.43339957557153},"location":"Right Hip"},{"euler":{"heading":127.81764187826676,"pitch":-92.60155268899246,"roll":61.78289537966967},"location":"Right Knee"},{"euler":{"heading":52.34014258579711,"pitch":-131.59796558944484,"roll":58.29046971381927},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.840"} +{"sensors":[{"euler":{"heading":37.598799293521765,"pitch":124.14194905453088,"roll":19.461489659524254},"location":"Left Knee"},{"euler":{"heading":67.73477384987874,"pitch":86.85293612426933,"roll":-1.6347017043554568},"location":"Left Ankle"},{"euler":{"heading":56.142345777547426,"pitch":-28.10764605782678,"roll":-32.934856161218654},"location":"Right Ankle"},{"euler":{"heading":97.83031744370898,"pitch":-161.733201240012,"roll":52.964110325886104},"location":"Right Hip"},{"euler":{"heading":129.8115419982905,"pitch":-93.69177440768303,"roll":59.823760001185725},"location":"Right Knee"},{"euler":{"heading":43.783519522084596,"pitch":-131.7848417719612,"roll":58.566049493744195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.941"} +{"sensors":[{"euler":{"heading":37.66457667999092,"pitch":123.68849339767173,"roll":19.77430894906778},"location":"Left Knee"},{"euler":{"heading":57.191243301389655,"pitch":87.13446440702086,"roll":-1.8299739820539331},"location":"Left Ankle"},{"euler":{"heading":51.56977113095457,"pitch":-28.29954669416693,"roll":-33.149138730614574},"location":"Right Ankle"},{"euler":{"heading":98.539755918052,"pitch":-161.20566684227305,"roll":52.075728184843584},"location":"Right Hip"},{"euler":{"heading":129.95187302346096,"pitch":-95.03500732784732,"roll":59.72756397247902},"location":"Right Knee"},{"euler":{"heading":37.00923290862333,"pitch":-132.85168282331267,"roll":58.886758460085936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.42"} +{"sensors":[{"euler":{"heading":38.211895664858716,"pitch":123.10575875371414,"roll":19.694707563081813},"location":"Left Knee"},{"euler":{"heading":49.32515669750587,"pitch":87.3892123338426,"roll":-1.3645777762585471},"location":"Left Ankle"},{"euler":{"heading":49.59745368063957,"pitch":-29.210410942735656,"roll":-31.945890395845485},"location":"Right Ankle"},{"euler":{"heading":98.18128476083245,"pitch":-161.1147591084701,"roll":51.18861901892356},"location":"Right Hip"},{"euler":{"heading":128.21778524262507,"pitch":-98.13512783787033,"roll":61.50734517720749},"location":"Right Knee"},{"euler":{"heading":31.62297774076107,"pitch":-134.3580636966159,"roll":59.319647393987296},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.144"} +{"sensors":[{"euler":{"heading":39.159445691714296,"pitch":122.47144116007462,"roll":19.141108335240865},"location":"Left Knee"},{"euler":{"heading":43.35409288741352,"pitch":87.51271184678367,"roll":-0.4381012002468193},"location":"Left Ankle"},{"euler":{"heading":49.67098967340147,"pitch":-30.504308602970976,"roll":-29.92963297580294},"location":"Right Ankle"},{"euler":{"heading":96.9008479037044,"pitch":-161.30003780879954,"roll":50.778286346329345},"location":"Right Hip"},{"euler":{"heading":125.5612920776777,"pitch":-74.15079347576561,"roll":63.23673098617367},"location":"Right Knee"},{"euler":{"heading":27.34351466509183,"pitch":-136.13732174051498,"roll":59.89566233815025},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.245"} +{"sensors":[{"euler":{"heading":40.50010284208712,"pitch":121.83206459417974,"roll":18.06347535129402},"location":"Left Knee"},{"euler":{"heading":39.29139012670241,"pitch":87.5590650943365,"roll":1.3396029682409165},"location":"Left Ankle"},{"euler":{"heading":49.41015425223076,"pitch":-31.389749583318494,"roll":-28.45594503529203},"location":"Right Ankle"},{"euler":{"heading":95.27573276535806,"pitch":-161.7114494997715,"roll":50.59723638114343},"location":"Right Hip"},{"euler":{"heading":122.97593215219702,"pitch":-51.94261590043962,"roll":64.84322625836455},"location":"Right Knee"},{"euler":{"heading":24.053526051330103,"pitch":-138.2586244574214,"roll":60.52984475053706},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.346"} +{"sensors":[{"euler":{"heading":43.179283279046146,"pitch":121.41997728767855,"roll":15.869564058087409},"location":"Left Knee"},{"euler":{"heading":37.30849307029715,"pitch":87.54750122422317,"roll":4.618834608553161},"location":"Left Ankle"},{"euler":{"heading":48.37018473487615,"pitch":-31.73317437250652,"roll":-27.829933152304537},"location":"Right Ankle"},{"euler":{"heading":94.35531649260506,"pitch":-161.9588742256523,"roll":50.6117680084674},"location":"Right Hip"},{"euler":{"heading":121.06712803825258,"pitch":-62.77447974042837,"roll":66.17799764067345},"location":"Right Knee"},{"euler":{"heading":20.479781442635865,"pitch":-138.19240567272604,"roll":60.96101322747048},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.448"} +{"sensors":[{"euler":{"heading":45.991305284863905,"pitch":120.91034767871867,"roll":13.670317331023538},"location":"Left Knee"},{"euler":{"heading":35.542211745186904,"pitch":86.99006906501016,"roll":7.889340283738295},"location":"Left Ankle"},{"euler":{"heading":47.23328406500667,"pitch":-31.841790446228043,"roll":-27.602353135367135},"location":"Right Ankle"},{"euler":{"heading":93.53628227078539,"pitch":-162.212489231906,"roll":51.10054192573856},"location":"Right Hip"},{"euler":{"heading":119.7003964679605,"pitch":-71.35123000742541,"roll":66.96368215813611},"location":"Right Knee"},{"euler":{"heading":50.841380646481696,"pitch":-136.3726748882666,"roll":60.78041730484358},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.548"} +{"sensors":[{"euler":{"heading":46.96203692160915,"pitch":121.18641469183288,"roll":12.851499379056357},"location":"Left Knee"},{"euler":{"heading":32.51453069923021,"pitch":86.3132486753721,"roll":8.809498846975258},"location":"Left Ankle"},{"euler":{"heading":45.98728973530335,"pitch":-31.68442619661074,"roll":-27.675851108077637},"location":"Right Ankle"},{"euler":{"heading":93.40073563139413,"pitch":-162.19822151792422,"roll":51.76279764432852},"location":"Right Hip"},{"euler":{"heading":118.93803660966499,"pitch":-78.28571981486058,"roll":67.34763657789964},"location":"Right Knee"},{"euler":{"heading":75.46955788705318,"pitch":-134.41094454865592,"roll":60.147321253025886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.649"} +{"sensors":[{"euler":{"heading":44.43938927081548,"pitch":122.45881376306983,"roll":13.906054323110752},"location":"Left Knee"},{"euler":{"heading":27.140103956016915,"pitch":85.34409231509086,"roll":7.097535735917493},"location":"Left Ankle"},{"euler":{"heading":44.5568447142129,"pitch":-31.23882052017219,"roll":-28.08124012639596},"location":"Right Ankle"},{"euler":{"heading":93.52756249616662,"pitch":-162.19125632674496,"roll":52.42745472321787},"location":"Right Hip"},{"euler":{"heading":118.7418793399538,"pitch":-83.68660659982199,"roll":67.32051298317542},"location":"Right Knee"},{"euler":{"heading":95.67075433471803,"pitch":-132.5704252706757,"roll":59.568503106115166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.750"} +{"sensors":[{"euler":{"heading":40.90535714906455,"pitch":124.2463238876286,"roll":15.740200338641914},"location":"Left Knee"},{"euler":{"heading":55.34954152750666,"pitch":84.43145503222084,"roll":3.7886119257275808},"location":"Left Ankle"},{"euler":{"heading":42.779176517081375,"pitch":-30.443212745798782,"roll":-28.846402156738105},"location":"Right Ankle"},{"euler":{"heading":93.88111111457751,"pitch":-162.202789621703,"roll":53.094284733195494},"location":"Right Hip"},{"euler":{"heading":119.37199189584294,"pitch":-87.79489915213172,"roll":66.72521998644794},"location":"Right Knee"},{"euler":{"heading":78.44806991021485,"pitch":-131.4103363933812,"roll":59.17554175797779},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.851"} +{"sensors":[{"euler":{"heading":38.7072965029781,"pitch":125.3049383344752,"roll":17.45338112616903},"location":"Left Knee"},{"euler":{"heading":78.76249947751408,"pitch":84.45581128980228,"roll":1.0560427702193298},"location":"Left Ankle"},{"euler":{"heading":40.360483905582655,"pitch":-29.533037254938353,"roll":-29.996566895640303},"location":"Right Ankle"},{"euler":{"heading":94.55704133235875,"pitch":-162.44509281018605,"roll":53.769026281984445},"location":"Right Hip"},{"euler":{"heading":121.41587142697148,"pitch":-90.69193824394993,"roll":65.31259396896256},"location":"Right Knee"},{"euler":{"heading":64.77421687953915,"pitch":-130.6400303383147,"roll":58.98642944087207},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.952"} +{"sensors":[{"euler":{"heading":37.60907314835211,"pitch":125.65048547946856,"roll":18.706330343793763},"location":"Left Knee"},{"euler":{"heading":64.79385916058918,"pitch":84.59675681274739,"roll":-0.4831776607315328},"location":"Left Ankle"},{"euler":{"heading":62.571517758449374,"pitch":-27.960333376093843,"roll":-31.625907758203773},"location":"Right Ankle"},{"euler":{"heading":95.59206217326077,"pitch":-162.3373550074905,"roll":53.94557563709369},"location":"Right Hip"},{"euler":{"heading":124.3438576612749,"pitch":-92.53456141955776,"roll":63.035532210455514},"location":"Right Knee"},{"euler":{"heading":53.54240912005609,"pitch":-130.19864781443246,"roll":59.017446877366645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.52"} +{"sensors":[{"euler":{"heading":37.25087205984201,"pitch":125.43403010078454,"roll":19.54877279131564},"location":"Left Knee"},{"euler":{"heading":53.867648194718235,"pitch":84.9026541325184,"roll":-1.4538630270367245},"location":"Left Ankle"},{"euler":{"heading":80.67465369013182,"pitch":-26.317256448948854,"roll":-32.95162500776724},"location":"Right Ankle"},{"euler":{"heading":96.57033287405524,"pitch":-161.85342075935654,"roll":53.4870187557526},"location":"Right Hip"},{"euler":{"heading":126.68183651291844,"pitch":-94.00571005779288,"roll":61.07614600364881},"location":"Right Knee"},{"euler":{"heading":44.631191970725006,"pitch":-130.50079806824178,"roll":59.25954485707302},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.153"} +{"sensors":[{"euler":{"heading":37.2905146270465,"pitch":125.00035271817711,"roll":20.03759381607972},"location":"Left Knee"},{"euler":{"heading":45.38501259462756,"pitch":85.23296076222414,"roll":-1.9457670280989863},"location":"Left Ankle"},{"euler":{"heading":71.61518087856187,"pitch":-26.203843147271378,"roll":-33.44374190023789},"location":"Right Ankle"},{"euler":{"heading":97.34161331633833,"pitch":-161.42146602643942,"roll":52.57267622161339},"location":"Right Hip"},{"euler":{"heading":127.28225805610292,"pitch":-95.7352514073658,"roll":60.65867639498678},"location":"Right Knee"},{"euler":{"heading":37.631962491445094,"pitch":-131.5470962937601,"roll":59.6807537445417},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.254"} +{"sensors":[{"euler":{"heading":37.83427037333989,"pitch":124.31660878921066,"roll":20.164814474970683},"location":"Left Knee"},{"euler":{"heading":39.39068905791644,"pitch":85.68047969013415,"roll":-1.552590324559547},"location":"Left Ankle"},{"euler":{"heading":65.81441811747715,"pitch":-27.236772033113382,"roll":-32.224360077192095},"location":"Right Ankle"},{"euler":{"heading":97.21808283118638,"pitch":-161.35759287306718,"roll":51.57289652861515},"location":"Right Hip"},{"euler":{"heading":126.34700872971516,"pitch":-98.9292845597915,"roll":61.9218234543003},"location":"Right Knee"},{"euler":{"heading":32.17448519579248,"pitch":-133.2370289351262,"roll":60.16296539905158},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.354"} +{"sensors":[{"euler":{"heading":38.83241059295549,"pitch":123.43631241271193,"roll":19.869707052604927},"location":"Left Knee"},{"euler":{"heading":35.05923833829876,"pitch":86.2162251826577,"roll":-0.6617368381703683},"location":"Left Ankle"},{"euler":{"heading":62.901859965484235,"pitch":-28.71246663300514,"roll":-30.02108994461114},"location":"Right Ankle"},{"euler":{"heading":96.23703067673748,"pitch":-161.57327979909655,"roll":51.04872048879308},"location":"Right Hip"},{"euler":{"heading":124.04733823684381,"pitch":-74.49485172121335,"roll":63.69501635622467},"location":"Right Knee"},{"euler":{"heading":27.99722882557462,"pitch":-135.3012845519389,"roll":60.753884705757294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.455"} +{"sensors":[{"euler":{"heading":40.3750142436854,"pitch":122.485176162135,"roll":18.948687862204256},"location":"Left Knee"},{"euler":{"heading":32.315267753207976,"pitch":86.6772266965147,"roll":1.0421157309526126},"location":"Left Ankle"},{"euler":{"heading":60.39815438207266,"pitch":-29.98238751537085,"roll":-28.31278047739381},"location":"Right Ankle"},{"euler":{"heading":94.82732486755162,"pitch":-162.01815244329472,"roll":50.841945496906604},"location":"Right Hip"},{"euler":{"heading":121.78387086330943,"pitch":-52.36690647697749,"roll":65.24602665310175},"location":"Right Knee"},{"euler":{"heading":24.85038002674053,"pitch":-137.65669323938008,"roll":61.37182716624652},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.555"} +{"sensors":[{"euler":{"heading":42.81526733599288,"pitch":121.79098528663131,"roll":16.979726794378863},"location":"Left Knee"},{"euler":{"heading":30.888960089760364,"pitch":86.67820394370713,"roll":4.034544517465804},"location":"Left Ankle"},{"euler":{"heading":57.658467303037256,"pitch":-30.840187199349476,"roll":-27.51608257548389},"location":"Right Ankle"},{"euler":{"heading":94.02383244180453,"pitch":-162.3969253814327,"roll":50.856980419180765},"location":"Right Hip"},{"euler":{"heading":120.04945240466782,"pitch":-63.82428416278693,"roll":66.5722082174072},"location":"Right Knee"},{"euler":{"heading":21.57219737073209,"pitch":-138.46818556684656,"roll":61.77640990019289},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.656"} +{"sensors":[{"euler":{"heading":45.88944458018957,"pitch":121.1687745716172,"roll":14.585696309299262},"location":"Left Knee"},{"euler":{"heading":30.37508477267966,"pitch":86.23319015859053,"roll":7.497372817310404},"location":"Left Ankle"},{"euler":{"heading":55.15362098222797,"pitch":-31.43208421899987,"roll":-27.116217110986007},"location":"Right Ankle"},{"euler":{"heading":93.15190264751425,"pitch":-162.85857372585068,"roll":51.25703014116003},"location":"Right Hip"},{"euler":{"heading":118.79578108018903,"pitch":-72.66978093866418,"roll":67.43929963698294},"location":"Right Knee"},{"euler":{"heading":51.84286515143538,"pitch":-136.49736978138841,"roll":61.77984296812102},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.756"} +{"sensors":[{"euler":{"heading":47.37803932832798,"pitch":121.31918851711306,"roll":13.305248623181598},"location":"Left Knee"},{"euler":{"heading":28.450161396114133,"pitch":85.43217266429997,"roll":8.69262956013834},"location":"Left Ankle"},{"euler":{"heading":52.775663633678505,"pitch":-31.628794546313216,"roll":-27.045708891138776},"location":"Right Ankle"},{"euler":{"heading":92.81252186537901,"pitch":-163.08605796358214,"roll":51.85089216185887},"location":"Right Hip"},{"euler":{"heading":117.9238543683804,"pitch":-79.83556214904537,"roll":67.90286244127131},"location":"Right Knee"},{"euler":{"heading":76.20039269057251,"pitch":-134.42270762020337,"roll":61.164637472909085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.857"} +{"sensors":[{"euler":{"heading":45.14862065932116,"pitch":122.50761379710087,"roll":14.043156555122547},"location":"Left Knee"},{"euler":{"heading":23.966780811855976,"pitch":84.17821951818036,"roll":7.104744475714267},"location":"Left Ankle"},{"euler":{"heading":50.465930991165145,"pitch":-31.527363360795466,"roll":-27.27322783374373},"location":"Right Ankle"},{"euler":{"heading":92.77839486452032,"pitch":-163.27406685807955,"roll":52.56067702525147},"location":"Right Hip"},{"euler":{"heading":117.64987449403387,"pitch":-85.44573876029465,"roll":67.97750102782207},"location":"Right Knee"},{"euler":{"heading":96.1740361509443,"pitch":-132.42054607513145,"roll":60.56633619906327},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.958"} +{"sensors":[{"euler":{"heading":41.486075034666264,"pitch":124.31426305272332,"roll":15.703737425702732},"location":"Left Knee"},{"euler":{"heading":52.75122800603262,"pitch":82.9305877224002,"roll":3.795134934713666},"location":"Left Ankle"},{"euler":{"heading":48.134771664270644,"pitch":-31.168041965838,"roll":-27.823931896836445},"location":"Right Ankle"},{"euler":{"heading":92.91692032697554,"pitch":-163.55120695837684,"roll":53.363466964725184},"location":"Right Hip"},{"euler":{"heading":118.14492229484111,"pitch":-89.6423422309012,"roll":67.53374316904885},"location":"Right Knee"},{"euler":{"heading":112.92082388495069,"pitch":-131.09635521591994,"roll":60.13196382442716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.58"} +{"sensors":[{"euler":{"heading":39.37898282445676,"pitch":125.22372740883264,"roll":17.301480592512448},"location":"Left Knee"},{"euler":{"heading":76.56960482265976,"pitch":82.9431358675141,"roll":1.186796738573499},"location":"Left Ankle"},{"euler":{"heading":45.304498274141956,"pitch":-30.64670583897063,"roll":-28.910835733602394},"location":"Right Ankle"},{"euler":{"heading":93.59514904841447,"pitch":-163.81982005112775,"roll":54.10178218909271},"location":"Right Hip"},{"euler":{"heading":119.90579703108146,"pitch":-92.47065898122189,"roll":66.32958121282311},"location":"Right Knee"},{"euler":{"heading":93.09559507162646,"pitch":-130.49265867119576,"roll":59.958887470096734},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.164"} +{"sensors":[{"euler":{"heading":38.313627172320366,"pitch":125.42836704620902,"roll":18.43808256883665},"location":"Left Knee"},{"euler":{"heading":62.90319449241705,"pitch":83.01988875515923,"roll":-0.40053349915433833},"location":"Left Ankle"},{"euler":{"heading":66.79208523987876,"pitch":-29.199931320274796,"roll":-30.54238645864205},"location":"Right Ankle"},{"euler":{"heading":94.72123151594796,"pitch":-163.60509265739725,"roll":54.31802185598177},"location":"Right Hip"},{"euler":{"heading":122.76258255452991,"pitch":-94.23326109983508,"roll":64.17575500415822},"location":"Right Knee"},{"euler":{"heading":76.76759446954505,"pitch":-130.43390393829262,"roll":59.85578275907681},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.264"} +{"sensors":[{"euler":{"heading":38.023955276041896,"pitch":125.03090020696591,"roll":19.27631552690421},"location":"Left Knee"},{"euler":{"heading":52.432534876069184,"pitch":83.61252760120473,"roll":-1.4088069229974511},"location":"Left Ankle"},{"euler":{"heading":83.81534842611676,"pitch":-27.504336119268416,"roll":-31.95928297203531},"location":"Right Ankle"},{"euler":{"heading":95.93458668291154,"pitch":-162.85193227365227,"roll":53.907270363855936},"location":"Right Hip"},{"euler":{"heading":125.03037172671294,"pitch":-95.70928967698099,"roll":62.1970848074185},"location":"Right Knee"},{"euler":{"heading":63.79658103651506,"pitch":-130.85636285463494,"roll":60.047860641565165},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.366"} +{"sensors":[{"euler":{"heading":38.28023277676055,"pitch":124.22534429804634,"roll":19.802944642932836},"location":"Left Knee"},{"euler":{"heading":44.441810375440966,"pitch":84.37471341294697,"roll":-1.833653190961456},"location":"Left Ankle"},{"euler":{"heading":73.61602876325459,"pitch":-27.337455032809462,"roll":-32.61714001470437},"location":"Right Ankle"},{"euler":{"heading":96.880518106238,"pitch":-162.2358145964999,"roll":52.88755304443098},"location":"Right Hip"},{"euler":{"heading":125.64466572856342,"pitch":-97.42541083878672,"roll":61.75622028923786},"location":"Right Knee"},{"euler":{"heading":53.53264787440143,"pitch":-131.9758535448105,"roll":60.370299821051205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.467"} +{"sensors":[{"euler":{"heading":38.9894783545511,"pitch":123.28833106529238,"roll":19.875197287007648},"location":"Left Knee"},{"euler":{"heading":38.90971618546265,"pitch":85.16546658841447,"roll":-1.3025086168497246},"location":"Left Ankle"},{"euler":{"heading":67.44081956296064,"pitch":-28.59548640339632,"roll":-31.74392747456994},"location":"Right Ankle"},{"euler":{"heading":92.98797923732285,"pitch":-162.02313290746287,"roll":51.70918802764923},"location":"Right Hip"},{"euler":{"heading":124.70888454091993,"pitch":-100.93429231703993,"roll":63.087377492324514},"location":"Right Knee"},{"euler":{"heading":45.32474577300083,"pitch":-133.64878191661842,"roll":60.75124661309698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.568"} +{"sensors":[{"euler":{"heading":40.05772308343283,"pitch":122.23831068399979,"roll":19.500624139829704},"location":"Left Knee"},{"euler":{"heading":34.78432442858181,"pitch":85.90478066025923,"roll":-0.3641004419138155},"location":"Left Ankle"},{"euler":{"heading":64.02546992430656,"pitch":-30.096511403037308,"roll":-29.729045838785222},"location":"Right Ankle"},{"euler":{"heading":93.02312939845991,"pitch":-162.06254954480843,"roll":51.076922347643524},"location":"Right Hip"},{"euler":{"heading":122.49795817498303,"pitch":-77.1652575697518,"roll":64.63079100486146},"location":"Right Knee"},{"euler":{"heading":38.907335193750484,"pitch":-135.82844756140005,"roll":61.21486202373936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.669"} +{"sensors":[{"euler":{"heading":41.628001691597674,"pitch":121.16332194945826,"roll":18.49580778024253},"location":"Left Knee"},{"euler":{"heading":32.108004467327774,"pitch":86.49647853960394,"roll":1.2757676424993942},"location":"Left Ankle"},{"euler":{"heading":61.38950867954498,"pitch":-31.193157981284287,"roll":-28.060407659593675},"location":"Right Ankle"},{"euler":{"heading":92.22551255233789,"pitch":-162.46682575024553,"roll":50.92691773236724},"location":"Right Hip"},{"euler":{"heading":120.13474047449544,"pitch":-55.8772267802226,"roll":66.00955150457719},"location":"Right Knee"},{"euler":{"heading":34.08677388324678,"pitch":-138.5974439033154,"roll":61.7057197460985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.770"} +{"sensors":[{"euler":{"heading":44.07902439355302,"pitch":120.33327881737009,"roll":16.445075434787732},"location":"Left Knee"},{"euler":{"heading":30.40415183382065,"pitch":86.55032128685887,"roll":3.9070877746309267},"location":"Left Ankle"},{"euler":{"heading":58.630710423922636,"pitch":-31.983345680152535,"roll":-27.335279163271224},"location":"Right Ankle"},{"euler":{"heading":92.17290082061122,"pitch":-162.69590313784963,"roll":50.91008844688025},"location":"Right Hip"},{"euler":{"heading":118.42566209440716,"pitch":-33.77830652219035,"roll":67.25715751933868},"location":"Right Knee"},{"euler":{"heading":29.551118097169088,"pitch":-139.80101731476523,"roll":62.07259566681598},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.871"} +{"sensors":[{"euler":{"heading":47.2036369357194,"pitch":119.73677147166093,"roll":13.917599082250005},"location":"Left Knee"},{"euler":{"heading":29.799765073993065,"pitch":86.34933932680458,"roll":7.2928607728433414},"location":"Left Ankle"},{"euler":{"heading":55.97347381728016,"pitch":-32.472445146137616,"roll":-26.952612609252434},"location":"Right Ankle"},{"euler":{"heading":91.88011947200889,"pitch":-163.06371286266082,"roll":51.316976887115054},"location":"Right Hip"},{"euler":{"heading":117.18084858330039,"pitch":-46.04672880092869,"roll":68.06503849763635},"location":"Right Knee"},{"euler":{"heading":24.36883711479709,"pitch":-138.12553285453683,"roll":62.07163531729785},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.972"} +{"sensors":[{"euler":{"heading":48.93566850989287,"pitch":119.96395152407169,"roll":12.605579170752943},"location":"Left Knee"},{"euler":{"heading":27.949363717632345,"pitch":85.52538253670393,"roll":8.555134168929897},"location":"Left Ankle"},{"euler":{"heading":53.58964562174379,"pitch":-32.611808374796716,"roll":-26.85010479388071},"location":"Right Ankle"},{"euler":{"heading":91.78902311441358,"pitch":-163.29546448650282,"roll":51.94675363164539},"location":"Right Hip"},{"euler":{"heading":116.29833871652788,"pitch":-56.196869147951276,"roll":68.54636694073257},"location":"Right Knee"},{"euler":{"heading":53.80575879740738,"pitch":-136.22892903496378,"roll":61.44650902050814},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.72"} +{"sensors":[{"euler":{"heading":46.935302186043415,"pitch":121.13860623431805,"roll":13.249519798934113},"location":"Left Knee"},{"euler":{"heading":23.485384528690073,"pitch":84.47064857555968,"roll":7.11707039820158},"location":"Left Ankle"},{"euler":{"heading":51.1978169370327,"pitch":-32.387141537430175,"roll":-27.09623056097484},"location":"Right Ankle"},{"euler":{"heading":92.1543862805207,"pitch":-163.30897560364156,"roll":52.64741968020438},"location":"Right Hip"},{"euler":{"heading":116.09892767319198,"pitch":-64.27565096852301,"roll":68.63708121108579},"location":"Right Knee"},{"euler":{"heading":77.90273278410078,"pitch":-134.44734112188428,"roll":60.80355881482085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.173"} +{"sensors":[{"euler":{"heading":43.47219498645798,"pitch":122.843615230222,"roll":14.878579766802167},"location":"Left Knee"},{"euler":{"heading":52.31544410225885,"pitch":83.31410564097945,"roll":3.8895226615120757},"location":"Left Ankle"},{"euler":{"heading":48.64485946232587,"pitch":-31.85685419615745,"roll":-27.747005782554982},"location":"Right Ankle"},{"euler":{"heading":92.5427248558763,"pitch":-163.50550601313844,"roll":53.436012923770726},"location":"Right Hip"},{"euler":{"heading":116.54207150647238,"pitch":-70.59307292569197,"roll":68.2554322989339},"location":"Right Knee"},{"euler":{"heading":63.810453673594765,"pitch":-133.34652307562584,"roll":60.38229250311038},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.274"} +{"sensors":[{"euler":{"heading":41.11817651466988,"pitch":123.91081076856564,"roll":16.45969106955731},"location":"Left Knee"},{"euler":{"heading":76.12955113190745,"pitch":83.11775775293827,"roll":1.0997919191498848},"location":"Left Ankle"},{"euler":{"heading":45.7162122979563,"pitch":-31.21054178339442,"roll":-28.960133362405234},"location":"Right Ankle"},{"euler":{"heading":93.2233598218796,"pitch":-163.81413825047892,"roll":54.2090443728076},"location":"Right Hip"},{"euler":{"heading":118.21288486985509,"pitch":-75.29884831615999,"roll":67.10747118062835},"location":"Right Knee"},{"euler":{"heading":52.76517147582734,"pitch":-132.60012318030147,"roll":60.14378649938976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.375"} +{"sensors":[{"euler":{"heading":40.034942445805726,"pitch":124.20466965316413,"roll":17.563407363727542},"location":"Left Knee"},{"euler":{"heading":62.620168010582894,"pitch":83.18384505498102,"roll":-0.40197299281639},"location":"Left Ankle"},{"euler":{"heading":67.01029008004105,"pitch":-29.561499723897942,"roll":-30.7118461144405},"location":"Right Ankle"},{"euler":{"heading":94.55355297902356,"pitch":-163.3799749555304,"roll":54.39724480997034},"location":"Right Hip"},{"euler":{"heading":121.2872483132004,"pitch":-78.61168327768786,"roll":64.9093747875892},"location":"Right Knee"},{"euler":{"heading":43.661853410375514,"pitch":-132.32306012753997,"roll":60.03498389788211},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.477"} +{"sensors":[{"euler":{"heading":39.653342722351965,"pitch":123.84037262622643,"roll":18.407554733329732},"location":"Left Knee"},{"euler":{"heading":52.23051964025436,"pitch":83.79061410891548,"roll":-1.332820485834561},"location":"Left Ankle"},{"euler":{"heading":84.06535800218718,"pitch":-27.96230712442138,"roll":-32.12451340654501},"location":"Right Ankle"},{"euler":{"heading":95.95186967838343,"pitch":-162.58283049175404,"roll":53.91355885667181},"location":"Right Hip"},{"euler":{"heading":123.70346351023005,"pitch":-81.55587730338307,"roll":62.92037214242594},"location":"Right Knee"},{"euler":{"heading":36.70747237016547,"pitch":-132.53608667066985,"roll":60.19217936315438},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.577"} +{"sensors":[{"euler":{"heading":39.745170204322534,"pitch":123.12428433003768,"roll":18.933590345333958},"location":"Left Knee"},{"euler":{"heading":44.53204874899282,"pitch":84.59531253174019,"roll":-1.5151920375268313},"location":"Left Ankle"},{"euler":{"heading":74.10016578913364,"pitch":-28.078853501112064,"roll":-32.67152799505135},"location":"Right Ankle"},{"euler":{"heading":97.0254661717494,"pitch":-161.95069394724445,"roll":52.84568088387217},"location":"Right Hip"},{"euler":{"heading":124.34416365699836,"pitch":-84.85020771017996,"roll":62.52961112540465},"location":"Right Knee"},{"euler":{"heading":31.387787156992314,"pitch":-133.5076843791563,"roll":60.53656208124976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.680"} +{"sensors":[{"euler":{"heading":40.34949082464953,"pitch":122.23255626459478,"roll":19.023141865278227},"location":"Left Knee"},{"euler":{"heading":38.83497057649946,"pitch":85.40669838660826,"roll":-1.127301900629191},"location":"Left Ankle"},{"euler":{"heading":67.87884758387186,"pitch":-29.42093739845642,"roll":-31.62667318907829},"location":"Right Ankle"},{"euler":{"heading":93.14233440065117,"pitch":-161.72946249198088,"roll":51.66535364547312},"location":"Right Hip"},{"euler":{"heading":123.5370193291664,"pitch":-89.60286686581652,"roll":63.87043389227263},"location":"Right Knee"},{"euler":{"heading":27.228229871306684,"pitch":-135.10624115385139,"roll":60.961146264999996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.780"} +{"sensors":[{"euler":{"heading":41.34371372830692,"pitch":121.19973207211312,"roll":18.66422203975245},"location":"Left Knee"},{"euler":{"heading":34.651779114192635,"pitch":86.19440899395192,"roll":-0.26501332713563364},"location":"Left Ankle"},{"euler":{"heading":64.64572032441627,"pitch":-30.902894512833008,"roll":-29.462422052223307},"location":"Right Ankle"},{"euler":{"heading":93.22680423656018,"pitch":-161.8027598123081,"roll":50.995640554288656},"location":"Right Hip"},{"euler":{"heading":121.3660222995658,"pitch":-67.65489653332345,"roll":65.34530453348772},"location":"Right Knee"},{"euler":{"heading":24.16127144739567,"pitch":-137.15915671765967,"roll":61.493974601982266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.881"} +{"sensors":[{"euler":{"heading":42.871219269765966,"pitch":120.1997568164965,"roll":17.631952827453695},"location":"Left Knee"},{"euler":{"heading":31.98758589355322,"pitch":86.76450130827637,"roll":1.4011009489555102},"location":"Left Ankle"},{"euler":{"heading":61.92115025961208,"pitch":-32.06552134363948,"roll":-27.700240287458847},"location":"Right Ankle"},{"euler":{"heading":92.64792951492535,"pitch":-162.16040480429916,"roll":50.75824294129053},"location":"Right Hip"},{"euler":{"heading":119.1722407713565,"pitch":-47.907686011005964,"roll":66.65609698954457},"location":"Right Knee"},{"euler":{"heading":21.98298646949188,"pitch":-139.7777882244246,"roll":62.03557076121717},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.981"} +{"sensors":[{"euler":{"heading":45.35261781531671,"pitch":119.44948212725018,"roll":15.419637004423958},"location":"Left Knee"},{"euler":{"heading":30.50174838881967,"pitch":86.97715294689621,"roll":4.270201680267672},"location":"Left Ankle"},{"euler":{"heading":59.006564892276934,"pitch":-32.7786708533553,"roll":-26.854794686102444},"location":"Right Ankle"},{"euler":{"heading":92.7744235956076,"pitch":-162.31161492325808,"roll":50.69206044828735},"location":"Right Hip"},{"euler":{"heading":117.5186622371821,"pitch":-27.280304611595916,"roll":67.91948941459951},"location":"Right Knee"},{"euler":{"heading":19.777292269555584,"pitch":-140.631269169497,"roll":62.472139859454714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.82"} +{"sensors":[{"euler":{"heading":48.389141220170856,"pitch":118.86570218124885,"roll":12.97781478731563},"location":"Left Knee"},{"euler":{"heading":29.653755336852452,"pitch":86.97338096341673,"roll":7.4846914212037845},"location":"Left Ankle"},{"euler":{"heading":56.21582466124171,"pitch":-33.079154229454346,"roll":-26.559451333846305},"location":"Right Ankle"},{"euler":{"heading":92.57478612180401,"pitch":-162.55545672866864,"roll":51.06618101626659},"location":"Right Hip"},{"euler":{"heading":116.1706592486571,"pitch":-40.71381711639863,"roll":68.76543635263639},"location":"Right Knee"},{"euler":{"heading":16.526562517377453,"pitch":-138.79951806726706,"roll":62.44506351503382},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.184"} +{"sensors":[{"euler":{"heading":49.69232704761211,"pitch":119.09250832521677,"roll":11.885988551257379},"location":"Left Knee"},{"euler":{"heading":27.425530186091166,"pitch":86.31598395101045,"roll":8.366053176812946},"location":"Left Ankle"},{"euler":{"heading":53.758355689733705,"pitch":-33.255929225875434,"roll":-26.559741337976295},"location":"Right Ankle"},{"euler":{"heading":92.71453386527763,"pitch":-162.65719694890026,"roll":51.648471006963035},"location":"Right Hip"},{"euler":{"heading":115.42957964026233,"pitch":-51.71013280582544,"roll":69.23364727303554},"location":"Right Knee"},{"euler":{"heading":47.539090928143516,"pitch":-136.93987168651822,"roll":61.80819612056527},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.284"} +{"sensors":[{"euler":{"heading":47.63808767630144,"pitch":120.29655123314814,"roll":12.687559795319432},"location":"Left Knee"},{"euler":{"heading":22.75325951691314,"pitch":85.42980170457348,"roll":6.6903274929051335},"location":"Left Ankle"},{"euler":{"heading":51.4132455553776,"pitch":-33.31481828495949,"roll":-26.76214421467762},"location":"Right Ankle"},{"euler":{"heading":92.98948247069514,"pitch":-162.82654813772353,"roll":52.32400339831115},"location":"Right Hip"},{"euler":{"heading":115.37569807599597,"pitch":-60.43569145291451,"roll":69.36599959262426},"location":"Right Knee"},{"euler":{"heading":72.77159198324783,"pitch":-135.04309294819643,"roll":61.083277996720334},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.385"} +{"sensors":[{"euler":{"heading":44.00601782425797,"pitch":122.08166064533492,"roll":14.399802702799407},"location":"Left Knee"},{"euler":{"heading":51.68625440483274,"pitch":84.18201940343613,"roll":3.4320299503048948},"location":"Left Ankle"},{"euler":{"heading":48.93421302437005,"pitch":-33.07678545335235,"roll":-27.313902606169172},"location":"Right Ankle"},{"euler":{"heading":93.44053177793157,"pitch":-163.05113349940342,"roll":53.07201789897785},"location":"Right Hip"},{"euler":{"heading":115.99745436388363,"pitch":-67.25513133471878,"roll":69.00419199065342},"location":"Right Knee"},{"euler":{"heading":93.81243595177699,"pitch":-133.80831505684242,"roll":60.51649726719182},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.487"} +{"sensors":[{"euler":{"heading":41.59688722406718,"pitch":123.2035011312427,"roll":15.99673109829363},"location":"Left Knee"},{"euler":{"heading":75.65004314120262,"pitch":83.8377129026063,"roll":0.8463414722278766},"location":"Left Ankle"},{"euler":{"heading":46.048259600219474,"pitch":-32.51062232650512,"roll":-28.443377631790256},"location":"Right Ankle"},{"euler":{"heading":94.07738930067323,"pitch":-163.3910972714128,"roll":53.826166577736984},"location":"Right Hip"},{"euler":{"heading":117.51130472105858,"pitch":-72.43300615678223,"roll":67.9812003166652},"location":"Right Knee"},{"euler":{"heading":77.34859769096384,"pitch":-133.05960438870028,"roll":60.193881354280244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.587"} +{"sensors":[{"euler":{"heading":40.367457175117764,"pitch":123.63004117375803,"roll":17.085033347373898},"location":"Left Knee"},{"euler":{"heading":62.370234774933756,"pitch":83.69262714425442,"roll":-0.4648453722991641},"location":"Left Ankle"},{"euler":{"heading":67.44863866160362,"pitch":-30.969777204095248,"roll":-30.196684271392865},"location":"Right Ankle"},{"euler":{"heading":95.34795630463738,"pitch":-163.08635533093835,"roll":53.991335159048006},"location":"Right Hip"},{"euler":{"heading":120.48687356462378,"pitch":-76.04818066822283,"roll":65.87834973643388},"location":"Right Knee"},{"euler":{"heading":63.79073592159473,"pitch":-132.7745050675817,"roll":60.08625879123319},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.691"} +{"sensors":[{"euler":{"heading":39.8899335734796,"pitch":123.38580401994311,"roll":17.921178239345867},"location":"Left Knee"},{"euler":{"heading":52.02587458012304,"pitch":84.06669380532401,"roll":-1.3540402893851216},"location":"Left Ankle"},{"euler":{"heading":84.4896757254395,"pitch":-29.593340776596172,"roll":-31.64646567837393},"location":"Right Ankle"},{"euler":{"heading":96.68556055970826,"pitch":-162.3468679491573,"roll":53.492753561011824},"location":"Right Hip"},{"euler":{"heading":122.97677384955759,"pitch":-79.18271991101018,"roll":63.96364203832033},"location":"Right Knee"},{"euler":{"heading":53.284104288139794,"pitch":-133.19429086619306,"roll":60.26235796676942},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.792"} +{"sensors":[{"euler":{"heading":39.93294522696979,"pitch":122.75457368032119,"roll":18.4518632240266},"location":"Left Knee"},{"euler":{"heading":44.11478267729023,"pitch":84.64893501700138,"roll":-1.712752537618818},"location":"Left Ankle"},{"euler":{"heading":74.38814360085064,"pitch":-29.95307081514906,"roll":-32.07843121389307},"location":"Right Ankle"},{"euler":{"heading":97.70944577005913,"pitch":-161.74312263072395,"roll":52.45895935150417},"location":"Right Hip"},{"euler":{"heading":123.7313150343614,"pitch":-82.69685142196172,"roll":63.64010866730771},"location":"Right Knee"},{"euler":{"heading":44.97855117331012,"pitch":-134.22218310440402,"roll":60.53466656681569},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.892"} +{"sensors":[{"euler":{"heading":40.47945957743094,"pitch":121.91585023445482,"roll":18.575348383550708},"location":"Left Knee"},{"euler":{"heading":38.130649808109766,"pitch":85.31253265418424,"roll":-1.5795536242360273},"location":"Left Ankle"},{"euler":{"heading":68.20976842327104,"pitch":-31.247666704448324,"roll":-30.893799541381547},"location":"Right Ankle"},{"euler":{"heading":97.88192740721169,"pitch":-161.57730822648782,"roll":51.41054389066921},"location":"Right Hip"},{"euler":{"heading":122.72011824286183,"pitch":-88.78990218254081,"roll":65.0358187479801},"location":"Right Knee"},{"euler":{"heading":38.3860591290402,"pitch":-135.7349373207406,"roll":60.91186860024231},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.992"} +{"sensors":[{"euler":{"heading":41.4441866933838,"pitch":120.99044167748112,"roll":18.223353032294366},"location":"Left Knee"},{"euler":{"heading":33.71241827395361,"pitch":85.97245869414175,"roll":-0.9536740991166697},"location":"Left Ankle"},{"euler":{"heading":84.35783387409582,"pitch":-32.72232494957943,"roll":-28.733864569223325},"location":"Right Ankle"},{"euler":{"heading":96.93516388810085,"pitch":-161.8018212847833,"roll":50.88397570999393},"location":"Right Hip"},{"euler":{"heading":120.49500412391549,"pitch":-67.04411651219965,"roll":66.13229340268042},"location":"Right Knee"},{"euler":{"heading":33.2437820776729,"pitch":-137.62697798113336,"roll":61.40776731787667},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.93"} +{"sensors":[{"euler":{"heading":43.030775422840065,"pitch":120.01632046194675,"roll":17.149787143204218},"location":"Left Knee"},{"euler":{"heading":30.95684472901726,"pitch":86.51015624480787,"roll":0.6114803657228125},"location":"Left Ankle"},{"euler":{"heading":78.01979013213936,"pitch":-33.81294883165179,"roll":-27.165838238270634},"location":"Right Ankle"},{"euler":{"heading":95.67243972851229,"pitch":-162.20117270749492,"roll":50.63341897610329},"location":"Right Hip"},{"euler":{"heading":118.42932550318399,"pitch":-46.59400701595389,"roll":67.28498929723614},"location":"Right Knee"},{"euler":{"heading":29.140306786588333,"pitch":-139.49361641954278,"roll":61.921892092545896},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.193"} +{"sensors":[{"euler":{"heading":45.721074523963885,"pitch":119.31916698735357,"roll":14.947665447526841},"location":"Left Knee"},{"euler":{"heading":29.895590954998777,"pitch":86.65187751577174,"roll":3.8053966135806903},"location":"Left Ankle"},{"euler":{"heading":72.1583870833205,"pitch":-34.43716343702049,"roll":-26.412844743508177},"location":"Right Ankle"},{"euler":{"heading":95.00713163965015,"pitch":-162.53875462678835,"roll":50.57316504542556},"location":"Right Hip"},{"euler":{"heading":116.87469218199152,"pitch":-25.49111315849366,"roll":68.41721469911344},"location":"Right Knee"},{"euler":{"heading":24.977769174879764,"pitch":-139.14345050736208,"roll":62.27414994329823},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.293"} +{"sensors":[{"euler":{"heading":48.60759886370134,"pitch":118.80723633509956,"roll":12.604247256551126},"location":"Left Knee"},{"euler":{"heading":29.288231060382028,"pitch":86.34611010539379,"roll":7.070046207841109},"location":"Left Ankle"},{"euler":{"heading":66.9488504484203,"pitch":-34.74635144895829,"roll":-26.08225284595441},"location":"Right Ankle"},{"euler":{"heading":94.42076095041821,"pitch":-162.8323334771031,"roll":50.92292368358523},"location":"Right Hip"},{"euler":{"heading":115.78606465439117,"pitch":-38.73810390326971,"roll":69.13258125157125},"location":"Right Knee"},{"euler":{"heading":20.540949709924405,"pitch":-137.07272835138696,"roll":62.0934934531279},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.393"} +{"sensors":[{"euler":{"heading":49.58582516140717,"pitch":119.07527588386017,"roll":11.678753370420502},"location":"Left Knee"},{"euler":{"heading":27.05489561661605,"pitch":85.59380418620725,"roll":7.84221836643563},"location":"Left Ankle"},{"euler":{"heading":62.29684255113244,"pitch":-34.895331207673486,"roll":-26.19333470286661},"location":"Right Ankle"},{"euler":{"heading":94.35681280470456,"pitch":-162.91962643349046,"roll":51.4474973253956},"location":"Right Hip"},{"euler":{"heading":115.39410346519686,"pitch":-49.464570470942775,"roll":69.44101608201773},"location":"Right Knee"},{"euler":{"heading":50.79634023489805,"pitch":-135.12169447982302,"roll":61.37710828852367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.495"} +{"sensors":[{"euler":{"heading":47.20605620615062,"pitch":120.280958026431,"roll":12.684342381211346},"location":"Left Knee"},{"euler":{"heading":22.27142510789311,"pitch":84.62174123534199,"roll":5.942838277320494},"location":"Left Ankle"},{"euler":{"heading":58.148901035717074,"pitch":-34.762600435417745,"roll":-26.507880981245613},"location":"Right Ankle"},{"euler":{"heading":94.70873305128322,"pitch":-162.91538134748677,"roll":52.017295862432434},"location":"Right Hip"},{"euler":{"heading":115.55473598944852,"pitch":-58.04107429490178,"roll":69.44068161499014},"location":"Right Knee"},{"euler":{"heading":75.61698338360682,"pitch":-133.28490886157795,"roll":60.70508797631155},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.596"} +{"sensors":[{"euler":{"heading":43.78306769649223,"pitch":121.96053520397099,"roll":14.497961574553091},"location":"Left Knee"},{"euler":{"heading":51.25605707171183,"pitch":83.75998161969999,"roll":2.66646597367881},"location":"Left Ankle"},{"euler":{"heading":54.17587621782004,"pitch":-34.166871057653665,"roll":-27.375146216518655},"location":"Right Ankle"},{"euler":{"heading":95.26442380752269,"pitch":-162.8580323063484,"roll":52.61612666481953},"location":"Right Hip"},{"euler":{"heading":116.19755818031017,"pitch":-64.82076310396836,"roll":68.97069966187321},"location":"Right Knee"},{"euler":{"heading":61.998337639403765,"pitch":-132.1281984799276,"roll":60.12672008197896},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.697"} +{"sensors":[{"euler":{"heading":41.562968593755855,"pitch":122.99282750844161,"roll":16.10933384552396},"location":"Left Knee"},{"euler":{"heading":76.94464824676875,"pitch":83.57472758258314,"roll":0.22494540062268564},"location":"Left Ankle"},{"euler":{"heading":49.98340923561809,"pitch":-33.33054500930204,"roll":-28.712826522922064},"location":"Right Ankle"},{"euler":{"heading":96.01074286481082,"pitch":-162.95477127885556,"roll":53.199610887217794},"location":"Right Hip"},{"euler":{"heading":117.81189158253765,"pitch":-70.00428532434958,"roll":67.79037063721827},"location":"Right Knee"},{"euler":{"heading":51.33492061658262,"pitch":-131.47985569383636,"roll":59.82929107815085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.798"} +{"sensors":[{"euler":{"heading":40.292122176711246,"pitch":123.39779070952459,"roll":17.282049689032558},"location":"Left Knee"},{"euler":{"heading":63.31134986768903,"pitch":83.4487129746551,"roll":-1.1876544969074911},"location":"Left Ankle"},{"euler":{"heading":70.51615688309589,"pitch":-31.57496273033215,"roll":-30.416720627287056},"location":"Right Ankle"},{"euler":{"heading":97.1212339334243,"pitch":-162.57262866191203,"roll":53.353036838221506},"location":"Right Hip"},{"euler":{"heading":120.29898630171235,"pitch":-73.96345256031067,"roll":65.7651257915872},"location":"Right Knee"},{"euler":{"heading":42.5680545694284,"pitch":-131.28557676782006,"roll":59.74445952142598},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.899"} +{"sensors":[{"euler":{"heading":39.62610889994634,"pitch":123.42534928317576,"roll":18.045945648267406},"location":"Left Knee"},{"euler":{"heading":52.46946666999675,"pitch":83.4000838803297,"roll":-2.228068634475483},"location":"Left Ankle"},{"euler":{"heading":87.04297344525762,"pitch":-29.7545130813576,"roll":-31.821789862589444},"location":"Right Ankle"},{"euler":{"heading":98.4050571867221,"pitch":-161.73932210647857,"roll":52.843829626669745},"location":"Right Hip"},{"euler":{"heading":122.13922158740006,"pitch":-77.4092622465394,"roll":64.12872735544028},"location":"Right Knee"},{"euler":{"heading":35.7761992291606,"pitch":-131.85888737001545,"roll":59.89956455722334},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.0"} +{"sensors":[{"euler":{"heading":39.44938702963691,"pitch":123.20652873710416,"roll":18.451801298067416},"location":"Left Knee"},{"euler":{"heading":44.02615201619021,"pitch":83.40958839341714,"roll":-2.7592872323818067},"location":"Left Ankle"},{"euler":{"heading":76.65119490373786,"pitch":-29.58166985377044,"roll":-32.39165569697051},"location":"Right Ankle"},{"euler":{"heading":99.20060203529093,"pitch":-161.1101352321988,"roll":51.8301471024195},"location":"Right Hip"},{"euler":{"heading":122.3142553200258,"pitch":-81.31207016150668,"roll":64.08675563768189},"location":"Right Knee"},{"euler":{"heading":30.351777576501537,"pitch":-132.8295052252804,"roll":60.21827446729139},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.100"} +{"sensors":[{"euler":{"heading":39.881382194871975,"pitch":122.57451602190406,"roll":18.569347040670277},"location":"Left Knee"},{"euler":{"heading":37.7608137385249,"pitch":83.83436032406844,"roll":-2.681114786023487},"location":"Left Ankle"},{"euler":{"heading":70.07464297143379,"pitch":-30.67972823323338,"roll":-31.260462876672307},"location":"Right Ankle"},{"euler":{"heading":94.83415365358793,"pitch":-160.921299398131,"roll":50.74642243574157},"location":"Right Hip"},{"euler":{"heading":121.03069891937149,"pitch":-88.65456596461247,"roll":65.5648299202371},"location":"Right Knee"},{"euler":{"heading":26.13618874677543,"pitch":-134.05856628257175,"roll":60.714752888847194},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.201"} +{"sensors":[{"euler":{"heading":40.78206766526646,"pitch":121.81831893060127,"roll":18.188196028570758},"location":"Left Knee"},{"euler":{"heading":33.07071436994223,"pitch":84.230616473207,"roll":-2.1169179547930383},"location":"Left Ankle"},{"euler":{"heading":85.96802542224233,"pitch":-32.196520965877426,"roll":-29.154828697703596},"location":"Right Ankle"},{"euler":{"heading":94.68340768290703,"pitch":-161.04769193920862,"roll":50.12250545081795},"location":"Right Hip"},{"euler":{"heading":118.84417058560757,"pitch":-67.16541175399635,"roll":66.48613096836498},"location":"Right Knee"},{"euler":{"heading":22.952008064376404,"pitch":-135.76524376501695,"roll":61.27696468413382},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.302"} +{"sensors":[{"euler":{"heading":42.23893016624494,"pitch":121.06271133712511,"roll":17.070411985730352},"location":"Left Knee"},{"euler":{"heading":30.050918586010805,"pitch":84.58323347945434,"roll":-0.7027035443717327},"location":"Left Ankle"},{"euler":{"heading":79.30848667344073,"pitch":-33.28365414226273,"roll":-27.624047185978657},"location":"Right Ankle"},{"euler":{"heading":93.70385274915115,"pitch":-161.4949986265821,"roll":49.93843820829252},"location":"Right Hip"},{"euler":{"heading":116.47120342907574,"pitch":-48.005786426837695,"roll":67.39708232527916},"location":"Right Knee"},{"euler":{"heading":20.469655862551015,"pitch":-137.8268154483378,"roll":61.8154226643782},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.403"} +{"sensors":[{"euler":{"heading":44.98353287913188,"pitch":120.56328539334193,"roll":14.869895538090951},"location":"Left Knee"},{"euler":{"heading":28.737648085801897,"pitch":84.61693305457871,"roll":2.283287118487645},"location":"Left Ankle"},{"euler":{"heading":73.10655486536139,"pitch":-34.19008486096801,"roll":-26.970153983777127},"location":"Right Ankle"},{"euler":{"heading":93.55577807876772,"pitch":-161.76895853250917,"roll":49.878895885069085},"location":"Right Hip"},{"euler":{"heading":115.00979043283729,"pitch":-28.005221148717307,"roll":68.37595750365145},"location":"Right Knee"},{"euler":{"heading":18.020937059686567,"pitch":-138.5269999919789,"roll":62.23131617978697},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.504"} +{"sensors":[{"euler":{"heading":48.027481801660535,"pitch":119.96273461291013,"roll":12.551711126551977},"location":"Left Knee"},{"euler":{"heading":28.155804168584204,"pitch":84.72471595935153,"roll":5.526258646250516},"location":"Left Ankle"},{"euler":{"heading":67.67170142324225,"pitch":-34.96867427491999,"roll":-26.681673010200726},"location":"Right Ankle"},{"euler":{"heading":93.35130039380182,"pitch":-162.08225640761745,"roll":50.229298439079486},"location":"Right Hip"},{"euler":{"heading":114.2947569865682,"pitch":-41.744330404756504,"roll":69.01201433688243},"location":"Right Knee"},{"euler":{"heading":15.14196856013181,"pitch":-136.93703448443247,"roll":62.25092939959673},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.604"} +{"sensors":[{"euler":{"heading":49.27729455862355,"pitch":120.02573255618213,"roll":11.542035121339037},"location":"Left Knee"},{"euler":{"heading":26.401149866212084,"pitch":84.35851202910192,"roll":6.700931703984568},"location":"Left Ankle"},{"euler":{"heading":63.06707136781991,"pitch":-35.56023958677883,"roll":-26.569266457308366},"location":"Right Ankle"},{"euler":{"heading":93.64166297587222,"pitch":-162.2349550790897,"roll":50.784181282411936},"location":"Right Hip"},{"euler":{"heading":114.1670770694051,"pitch":-52.832868441981645,"roll":69.3735352390441},"location":"Right Knee"},{"euler":{"heading":46.57780083061523,"pitch":-135.05241624998428,"roll":61.70981799681399},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.705"} +{"sensors":[{"euler":{"heading":47.042611300215384,"pitch":121.08154950572727,"roll":12.441723292440344},"location":"Left Knee"},{"euler":{"heading":22.23554464246979,"pitch":83.58719045502049,"roll":5.296561415096646},"location":"Left Ankle"},{"euler":{"heading":58.98170400802537,"pitch":-35.75070445235512,"roll":-26.60429464432457},"location":"Right Ankle"},{"euler":{"heading":94.13505976845843,"pitch":-162.36718299372956,"roll":51.405187091034136},"location":"Right Hip"},{"euler":{"heading":114.4251966578273,"pitch":-61.68943925421687,"roll":69.48663541915809},"location":"Right Knee"},{"euler":{"heading":72.17473854618511,"pitch":-133.10925987310466,"roll":61.11910954440361},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.805"} +{"sensors":[{"euler":{"heading":43.33413788215075,"pitch":122.75036886512345,"roll":14.31409345341016},"location":"Left Knee"},{"euler":{"heading":51.38125618405179,"pitch":82.461178636613,"roll":2.2005723000122694},"location":"Left Ankle"},{"euler":{"heading":55.05396953272352,"pitch":-35.44742675259245,"roll":-27.129451310516377},"location":"Right Ankle"},{"euler":{"heading":94.66984929057625,"pitch":-162.46899681543687,"roll":52.10386184590215},"location":"Right Hip"},{"euler":{"heading":114.95164599869408,"pitch":-68.71660839352954,"roll":69.20847726557365},"location":"Right Knee"},{"euler":{"heading":59.25712032856618,"pitch":-131.77306293620907,"roll":60.679717109409765},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.906"} +{"sensors":[{"euler":{"heading":40.98135427808916,"pitch":123.8026532261782,"roll":16.02024516416064},"location":"Left Knee"},{"euler":{"heading":75.38247500857064,"pitch":82.12598898124901,"roll":-0.535512708215887},"location":"Left Ankle"},{"euler":{"heading":50.8034613115562,"pitch":-34.578467558027555,"roll":-28.407269018956352},"location":"Right Ankle"},{"euler":{"heading":95.32771074873469,"pitch":-162.69192237301075,"roll":52.80741891070857},"location":"Right Hip"},{"euler":{"heading":116.31611544035515,"pitch":-73.94571016835401,"roll":68.2968497384607},"location":"Right Knee"},{"euler":{"heading":49.013125879968236,"pitch":-130.8790729327095,"roll":60.418863920845496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.7"} +{"sensors":[{"euler":{"heading":39.73860801174096,"pitch":124.13652712667344,"roll":17.29061517588178},"location":"Left Knee"},{"euler":{"heading":61.98468166697886,"pitch":82.07238713587533,"roll":-2.012516162814911},"location":"Left Ankle"},{"euler":{"heading":71.4135363161067,"pitch":-32.924153126043834,"roll":-30.193737025653732},"location":"Right Ankle"},{"euler":{"heading":96.34199160138638,"pitch":-162.44774408256862,"roll":53.099222322471746},"location":"Right Hip"},{"euler":{"heading":119.04451989350665,"pitch":-77.6904729793973,"roll":66.37800410604855},"location":"Right Knee"},{"euler":{"heading":40.613463808583134,"pitch":-130.43278742355722,"roll":60.343347677318285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.108"} +{"sensors":[{"euler":{"heading":39.05993126190849,"pitch":124.01057914955915,"roll":18.18449311156063},"location":"Left Knee"},{"euler":{"heading":51.37724688989886,"pitch":82.16062623719588,"roll":-3.0398637826314463},"location":"Left Ankle"},{"euler":{"heading":87.55182505433861,"pitch":-31.355861533841175,"roll":-31.82215801785421},"location":"Right Ankle"},{"euler":{"heading":97.67188949511718,"pitch":-161.81062169932247,"roll":52.655776350289145},"location":"Right Hip"},{"euler":{"heading":121.40933124486375,"pitch":-80.91849221440596,"roll":64.45738397837516},"location":"Right Knee"},{"euler":{"heading":34.25307144997284,"pitch":-130.96236808549568,"roll":60.548499061235205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.209"} +{"sensors":[{"euler":{"heading":38.80149686221522,"pitch":123.71230742761873,"roll":18.67823967432117},"location":"Left Knee"},{"euler":{"heading":43.22102326857143,"pitch":82.28208875425136,"roll":-3.3987355084392723},"location":"Left Ankle"},{"euler":{"heading":76.82408443244022,"pitch":-31.40524453992746,"roll":-32.21957491041928},"location":"Right Ankle"},{"euler":{"heading":98.4992149012821,"pitch":-161.2816679940558,"roll":51.737271378383944},"location":"Right Hip"},{"euler":{"heading":121.91281705701574,"pitch":-84.38046936527729,"roll":64.12255528957996},"location":"Right Knee"},{"euler":{"heading":29.170040599788262,"pitch":-132.16095465070617,"roll":60.87682281872323},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.310"} +{"sensors":[{"euler":{"heading":39.19036712820917,"pitch":123.21054178264652,"roll":18.738573638311625},"location":"Left Knee"},{"euler":{"heading":37.39289527365379,"pitch":82.56441107992451,"roll":-3.039759212654119},"location":"Left Ankle"},{"euler":{"heading":70.5194154173259,"pitch":-32.30605428916555,"roll":-30.878829571830035},"location":"Right Ankle"},{"euler":{"heading":98.1718710511124,"pitch":-161.19542127186628,"roll":50.852631351653045},"location":"Right Hip"},{"euler":{"heading":120.36906448155324,"pitch":-90.97924055417451,"roll":65.61506005591157},"location":"Right Knee"},{"euler":{"heading":25.00806049624719,"pitch":-133.5725176817042,"roll":61.2987662644874},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.410"} +{"sensors":[{"euler":{"heading":40.03196074775453,"pitch":122.57814732680232,"roll":18.359160882185645},"location":"Left Knee"},{"euler":{"heading":33.06672851426533,"pitch":82.86743997738317,"roll":-2.215524668639861},"location":"Left Ankle"},{"euler":{"heading":66.76025191888657,"pitch":-33.31142442524031,"roll":-28.714373309234052},"location":"Right Ankle"},{"euler":{"heading":96.87530404560651,"pitch":-161.5335502960251,"roll":50.42669701870541},"location":"Right Hip"},{"euler":{"heading":117.7257301917391,"pitch":-70.08940430662767,"roll":66.63265319589853},"location":"Right Knee"},{"euler":{"heading":21.873719887868578,"pitch":-135.48595380521039,"roll":61.81731444823192},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.511"} +{"sensors":[{"euler":{"heading":41.50583728971097,"pitch":121.92267503750021,"roll":17.33212935820415},"location":"Left Knee"},{"euler":{"heading":30.249795430931325,"pitch":83.12380735174581,"roll":-0.5897898430663404},"location":"Left Ankle"},{"euler":{"heading":63.474167188934544,"pitch":-34.00712773112934,"roll":-27.136310467620422},"location":"Right Ankle"},{"euler":{"heading":95.29643463563411,"pitch":-162.0951630509453,"roll":50.3088184989925},"location":"Right Hip"},{"euler":{"heading":115.2759961989216,"pitch":-50.9964622582021,"roll":67.606955636454},"location":"Right Knee"},{"euler":{"heading":19.60459060524286,"pitch":-137.89513953582275,"roll":62.34598885269157},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.612"} +{"sensors":[{"euler":{"heading":44.228699235011824,"pitch":121.52574965014139,"roll":15.166170142162144},"location":"Left Knee"},{"euler":{"heading":28.817253922291723,"pitch":83.10013957182481,"roll":2.3676239898968907},"location":"Left Ankle"},{"euler":{"heading":60.16521261146048,"pitch":-34.39289470177511,"roll":-26.39801641498365},"location":"Right Ankle"},{"euler":{"heading":94.63980600440419,"pitch":-162.38337605431354,"roll":50.37456708534468},"location":"Right Hip"},{"euler":{"heading":113.47824245038029,"pitch":-31.276213399189864,"roll":68.69071809256559},"location":"Right Knee"},{"euler":{"heading":17.086700882976782,"pitch":-138.49964514162377,"roll":62.72924822370563},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.712"} +{"sensors":[{"euler":{"heading":47.08243291973207,"pitch":121.2260348355168,"roll":12.980325937857064},"location":"Left Knee"},{"euler":{"heading":27.71563419250085,"pitch":82.7457859607183,"roll":5.091276523745343},"location":"Left Ankle"},{"euler":{"heading":57.116961686130125,"pitch":-34.545770467870355,"roll":-26.080725676270326},"location":"Right Ankle"},{"euler":{"heading":93.88812812451826,"pitch":-162.76307897069054,"roll":50.838342260933445},"location":"Right Hip"},{"euler":{"heading":112.16082164452098,"pitch":-45.381934841684284,"roll":69.49302850090439},"location":"Right Knee"},{"euler":{"heading":48.14636430015478,"pitch":-136.68636007239826,"roll":62.624206697587354},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.813"} +{"sensors":[{"euler":{"heading":47.581966885586006,"pitch":121.57908766969193,"roll":12.369830746285299},"location":"Left Knee"},{"euler":{"heading":25.178669565597513,"pitch":82.13382013567816,"roll":5.540382538538821},"location":"Left Ankle"},{"euler":{"heading":54.454588547258155,"pitch":-34.61276024716492,"roll":-26.01359357638112},"location":"Right Ankle"},{"euler":{"heading":93.78395155377763,"pitch":-162.94613937094584,"roll":51.472031933569674},"location":"Right Hip"},{"euler":{"heading":111.5458529234573,"pitch":-56.48710980570001,"roll":69.9693162740744},"location":"Right Knee"},{"euler":{"heading":73.31044390976379,"pitch":-134.8018059913422,"roll":62.00597016759618},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.914"} +{"sensors":[{"euler":{"heading":45.05994809247652,"pitch":122.73684475544667,"roll":13.505876227188331},"location":"Left Knee"},{"euler":{"heading":54.68882510490391,"pitch":81.37198174517997,"roll":3.538917791288681},"location":"Left Ankle"},{"euler":{"heading":51.88819533604891,"pitch":-34.48907309260941,"roll":-26.22633156292667},"location":"Right Ankle"},{"euler":{"heading":93.97213604220829,"pitch":-163.10584085728732,"roll":52.18218400087708},"location":"Right Hip"},{"euler":{"heading":111.57144958538453,"pitch":-65.07336019244548,"roll":70.14464898218407},"location":"Right Knee"},{"euler":{"heading":93.96827255423682,"pitch":-133.0192309710969,"roll":61.404926185918},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.15"} +{"sensors":[{"euler":{"heading":41.66911826166869,"pitch":124.34927451296763,"roll":15.25918300040359},"location":"Left Knee"},{"euler":{"heading":77.85884182793869,"pitch":80.51614455868167,"roll":0.49716354393215845},"location":"Left Ankle"},{"euler":{"heading":49.1863593102499,"pitch":-34.07988628781592,"roll":-26.876621552094164},"location":"Right Ankle"},{"euler":{"heading":94.31052583194041,"pitch":-163.4703271342631,"roll":53.00908744451498},"location":"Right Hip"},{"euler":{"heading":112.40691524857874,"pitch":-71.45758750489082,"roll":69.7444442635271},"location":"Right Knee"},{"euler":{"heading":77.11947807330598,"pitch":-132.0126446381373,"roll":60.97401731094135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.116"} +{"sensors":[{"euler":{"heading":40.01637364373903,"pitch":125.07110387033134,"roll":16.685183297794286},"location":"Left Knee"},{"euler":{"heading":97.85896441094211,"pitch":80.78214765184447,"roll":-1.4764087693351666},"location":"Left Ankle"},{"euler":{"heading":46.016904398529206,"pitch":-33.41830327235979,"roll":-28.10120067247372},"location":"Right Ankle"},{"euler":{"heading":94.91459094113776,"pitch":-163.73474329872542,"roll":53.78705830071444},"location":"Right Hip"},{"euler":{"heading":114.44057845078547,"pitch":-76.08112601346846,"roll":68.49645815163647},"location":"Right Knee"},{"euler":{"heading":63.57340649100555,"pitch":-131.42285636321623,"roll":60.70300476153974},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.217"} +{"sensors":[{"euler":{"heading":39.23385768913538,"pitch":125.040558889721,"roll":17.755559046101506},"location":"Left Knee"},{"euler":{"heading":80.72728915366213,"pitch":81.0882456053818,"roll":-2.542862947878782},"location":"Left Ankle"},{"euler":{"heading":67.22676990516774,"pitch":-31.80895099366941,"roll":-29.768150716166474},"location":"Right Ankle"},{"euler":{"heading":96.1404716298695,"pitch":-163.20111690514838,"roll":53.84893151660664},"location":"Right Hip"},{"euler":{"heading":117.18778564506067,"pitch":-79.56924979025686,"roll":66.48133578539327},"location":"Right Knee"},{"euler":{"heading":52.86834288301898,"pitch":-131.43613995326925,"roll":60.784764179034006},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.318"} +{"sensors":[{"euler":{"heading":38.99147009168461,"pitch":124.6502557329877,"roll":18.43279531132895},"location":"Left Knee"},{"euler":{"heading":67.13984494486733,"pitch":81.44251501407561,"roll":-3.157097606127577},"location":"Left Ankle"},{"euler":{"heading":59.165303891351456,"pitch":-30.70940668231261,"roll":-31.06844650020604},"location":"Right Ankle"},{"euler":{"heading":97.35230716452836,"pitch":-162.48043937569156,"roll":53.203372748117694},"location":"Right Hip"},{"euler":{"heading":118.92589943698098,"pitch":-82.7017848344547,"roll":65.31783092318824},"location":"Right Knee"},{"euler":{"heading":44.37653265386853,"pitch":-132.31617485585406,"roll":61.037105467017064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.418"} +{"sensors":[{"euler":{"heading":39.31024515508699,"pitch":123.97603352192708,"roll":18.736453533259045},"location":"Left Knee"},{"euler":{"heading":56.46035855176709,"pitch":81.98306095497159,"roll":-3.2670051686915356},"location":"Left Ankle"},{"euler":{"heading":54.50869992456207,"pitch":-31.289962957948536,"roll":-31.085716762707776},"location":"Right Ankle"},{"euler":{"heading":97.80353378185255,"pitch":-162.0780191601695,"roll":52.15548871249396},"location":"Right Hip"},{"euler":{"heading":118.93408189541964,"pitch":-86.96915686420792,"roll":65.82862027513812},"location":"Right Knee"},{"euler":{"heading":37.58991633463948,"pitch":-133.64162888546946,"roll":61.408130192629045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.519"} +{"sensors":[{"euler":{"heading":40.14795266798551,"pitch":123.18758741738728,"roll":18.559382911152337},"location":"Left Knee"},{"euler":{"heading":48.19163137739701,"pitch":82.51974996640354,"roll":-2.837325404470356},"location":"Left Ankle"},{"euler":{"heading":52.68755574078946,"pitch":-32.32659031876615,"roll":-29.424767443071207},"location":"Right Ankle"},{"euler":{"heading":97.28120149936035,"pitch":-162.09437882413914,"roll":51.30835479359096},"location":"Right Hip"},{"euler":{"heading":117.15718939645998,"pitch":-63.99942215873382,"roll":67.17072635808505},"location":"Right Knee"},{"euler":{"heading":32.22923746291264,"pitch":-135.48309242725395,"roll":61.85087675738639},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.620"} +{"sensors":[{"euler":{"heading":41.20842104406123,"pitch":122.37901726504884,"roll":17.982984584527447},"location":"Left Knee"},{"euler":{"heading":42.10491698278109,"pitch":83.0767301689789,"roll":-1.7410272871233825},"location":"Left Ankle"},{"euler":{"heading":52.575716242528344,"pitch":-33.3716241199905,"roll":-27.339175650783766},"location":"Right Ankle"},{"euler":{"heading":95.9438843310889,"pitch":-162.4837366566169,"roll":50.88663226477419},"location":"Right Hip"},{"euler":{"heading":114.60833515806424,"pitch":-46.18733548648782,"roll":67.6895637126889},"location":"Right Knee"},{"euler":{"heading":28.053950537285928,"pitch":-137.720136425146,"roll":62.3466320116901},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.720"} +{"sensors":[{"euler":{"heading":43.11716022519967,"pitch":121.522510825272,"roll":16.51016688402279},"location":"Left Knee"},{"euler":{"heading":38.16749603194864,"pitch":83.22995452347044,"roll":0.6659687716933538},"location":"Left Ankle"},{"euler":{"heading":51.6934162697147,"pitch":-33.924858859278174,"roll":-26.29026398988685},"location":"Right Ankle"},{"euler":{"heading":94.99752318619824,"pitch":-162.87172870140054,"roll":50.67149467205705},"location":"Right Hip"},{"euler":{"heading":112.53322670922992,"pitch":-28.90434187494352,"roll":68.52765577706307},"location":"Right Knee"},{"euler":{"heading":24.676847320222162,"pitch":-139.44711640612545,"roll":62.89035350808321},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.821"} +{"sensors":[{"euler":{"heading":46.10096230211374,"pitch":120.77126072424099,"roll":14.20836570976348},"location":"Left Knee"},{"euler":{"heading":36.346632660751176,"pitch":83.60047042050466,"roll":4.354107654540524},"location":"Left Ankle"},{"euler":{"heading":50.41807640750892,"pitch":-34.35412349567925,"roll":-25.703793733908974},"location":"Right Ankle"},{"euler":{"heading":94.383167021119,"pitch":-163.20497711032831,"roll":50.827595175834084},"location":"Right Hip"},{"euler":{"heading":111.20273925240322,"pitch":-10.584057944048698,"roll":69.351422783064},"location":"Right Knee"},{"euler":{"heading":20.651273681684806,"pitch":-138.37604627405244,"roll":63.05536162027667},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.921"} +{"sensors":[{"euler":{"heading":48.567877411396914,"pitch":120.51359007170538,"roll":12.410897958519318},"location":"Left Knee"},{"euler":{"heading":34.05309519377532,"pitch":83.0796167239914,"roll":6.763944624701185},"location":"Left Ankle"},{"euler":{"heading":49.189524986169666,"pitch":-34.6831012908043,"roll":-25.422814335448013},"location":"Right Ankle"},{"euler":{"heading":94.17739824590868,"pitch":-163.36383790740064,"roll":51.307729165896504},"location":"Right Hip"},{"euler":{"heading":110.47005603459237,"pitch":-26.3192365251293,"roll":69.97792286442991},"location":"Right Knee"},{"euler":{"heading":51.09475914918804,"pitch":-136.35454215539914,"roll":62.61014258634475},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.22"} +{"sensors":[{"euler":{"heading":47.894560452786855,"pitch":121.07710154140655,"roll":12.46693624424901},"location":"Left Knee"},{"euler":{"heading":29.75540902035419,"pitch":82.32887973642383,"roll":6.429680916460786},"location":"Left Ankle"},{"euler":{"heading":47.86254181372897,"pitch":-34.778644639645826,"roll":-25.459883153882323},"location":"Right Ankle"},{"euler":{"heading":94.52615676093113,"pitch":-163.3648997005882,"roll":51.867041907706806},"location":"Right Hip"},{"euler":{"heading":110.29819796566858,"pitch":-39.00588218178472,"roll":70.34268671524856},"location":"Right Knee"},{"euler":{"heading":75.873219079653,"pitch":-134.29941176861513,"roll":61.9100095971122},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.123"} +{"sensors":[{"euler":{"heading":44.323032990496294,"pitch":122.56203947673994,"roll":14.081259797344227},"location":"Left Knee"},{"euler":{"heading":58.049809371815215,"pitch":81.36418178030299,"roll":3.7490909680723954},"location":"Left Ankle"},{"euler":{"heading":46.37172852436258,"pitch":-34.63917774519911,"roll":-25.82041772313594},"location":"Right Ankle"},{"euler":{"heading":94.81766515940429,"pitch":-163.478821335624,"roll":52.49800152868308},"location":"Right Hip"},{"euler":{"heading":110.5558163774628,"pitch":-49.18368929075934,"roll":70.44088543591172},"location":"Right Knee"},{"euler":{"heading":96.20341213714215,"pitch":-132.66569718920195,"roll":61.341875087706875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.224"} +{"sensors":[{"euler":{"heading":40.87548313779188,"pitch":124.21487880325138,"roll":15.91657532867962},"location":"Left Knee"},{"euler":{"heading":80.61081207157619,"pitch":80.85391440700533,"roll":0.7349064746598608},"location":"Left Ankle"},{"euler":{"heading":44.46734185605653,"pitch":-34.1562591708075,"roll":-26.824421538675008},"location":"Right Ankle"},{"euler":{"heading":95.216875223236,"pitch":-163.7483747974679,"roll":53.27702693176104},"location":"Right Hip"},{"euler":{"heading":111.57531588818685,"pitch":-57.03780315453338,"roll":69.94115755622913},"location":"Right Knee"},{"euler":{"heading":78.99122507377608,"pitch":-131.75219380589255,"roll":60.93479986639768},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.325"} +{"sensors":[{"euler":{"heading":39.116843151704806,"pitch":124.92571131152218,"roll":17.321658385500704},"location":"Left Knee"},{"euler":{"heading":66.02782603380285,"pitch":80.81430301903073,"roll":-0.9699610428016581},"location":"Left Ankle"},{"euler":{"heading":41.600064456733946,"pitch":-33.46362996032286,"roll":-28.19665356421678},"location":"Right Ankle"},{"euler":{"heading":95.89452113687265,"pitch":-163.78420124047165,"roll":53.851150836444425},"location":"Right Hip"},{"euler":{"heading":113.96180626276325,"pitch":-62.87844452609379,"roll":68.5377170323838},"location":"Right Knee"},{"euler":{"heading":65.01681127451344,"pitch":-131.16934497319662,"roll":60.7150803343345},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.425"} +{"sensors":[{"euler":{"heading":38.22383895492182,"pitch":125.06952009255255,"roll":18.266091106896315},"location":"Left Knee"},{"euler":{"heading":54.58669884803574,"pitch":80.8498033527258,"roll":-2.161880020917585},"location":"Left Ankle"},{"euler":{"heading":63.378399191851464,"pitch":-31.6002630637989,"roll":-30.050718810598717},"location":"Right Ankle"},{"euler":{"heading":96.93094678766553,"pitch":-163.29343262503133,"roll":53.835583563396916},"location":"Right Hip"},{"euler":{"heading":116.5520098883304,"pitch":-67.71759727116903,"roll":66.57812299456164},"location":"Right Knee"},{"euler":{"heading":53.8064435293215,"pitch":-131.26025158305393,"roll":60.777855141039055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.526"} +{"sensors":[{"euler":{"heading":37.90287432080302,"pitch":124.83104000186499,"roll":18.89476304967619},"location":"Left Knee"},{"euler":{"heading":45.64677856424264,"pitch":81.00083287241377,"roll":-2.8658634189759535},"location":"Left Ankle"},{"euler":{"heading":56.216402617382805,"pitch":-30.645421635576547,"roll":-31.17550263612146},"location":"Right Ankle"},{"euler":{"heading":97.82713343853703,"pitch":-162.61153603091006,"roll":53.19129451791554},"location":"Right Hip"},{"euler":{"heading":118.10211625359052,"pitch":-72.08453537370939,"roll":65.46486433286934},"location":"Right Knee"},{"euler":{"heading":44.930617363124355,"pitch":-132.1391819302615,"roll":61.01896303547572},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.627"} +{"sensors":[{"euler":{"heading":38.216763668712076,"pitch":124.30608931478544,"roll":19.142586011295627},"location":"Left Knee"},{"euler":{"heading":38.832132756657344,"pitch":81.36936271813384,"roll":-3.003474610868436},"location":"Left Ankle"},{"euler":{"heading":52.65894700928316,"pitch":-31.356915943879557,"roll":-30.83776134989724},"location":"Right Ankle"},{"euler":{"heading":98.12097732446814,"pitch":-162.21448117915932,"roll":52.15050473062064},"location":"Right Hip"},{"euler":{"heading":117.59369467158272,"pitch":-78.27150449634068,"roll":66.26487783198331},"location":"Right Knee"},{"euler":{"heading":37.793897368694466,"pitch":-133.55281608959294,"roll":61.32036986699309},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.728"} +{"sensors":[{"euler":{"heading":39.068306685975394,"pitch":123.59920752354577,"roll":18.944717991775033},"location":"Left Knee"},{"euler":{"heading":33.710096905929646,"pitch":81.79796111300777,"roll":-2.652370939007083},"location":"Left Ankle"},{"euler":{"heading":51.708057761939074,"pitch":-32.59526017394951,"roll":-29.045820771351615},"location":"Right Ankle"},{"euler":{"heading":97.27953038961152,"pitch":-162.32487544143942,"roll":51.434641680316645},"location":"Right Hip"},{"euler":{"heading":115.60783842347698,"pitch":-57.18145274302475,"roll":67.25632895246478},"location":"Right Knee"},{"euler":{"heading":32.27735075814636,"pitch":-135.4502904026416,"roll":61.74173808776243},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.828"} +{"sensors":[{"euler":{"heading":40.40169709332493,"pitch":122.7871538864664,"roll":18.21275854320701},"location":"Left Knee"},{"euler":{"heading":30.146382158650596,"pitch":82.23929688762131,"roll":-1.6569009074817103},"location":"Left Ankle"},{"euler":{"heading":51.4823842946575,"pitch":-33.51961185419067,"roll":-27.28759632518403},"location":"Right Ankle"},{"euler":{"heading":95.829555183411,"pitch":-162.75770568503768,"roll":51.161429427082545},"location":"Right Hip"},{"euler":{"heading":113.16136904638316,"pitch":-39.572026807712874,"roll":67.82053113556715},"location":"Right Knee"},{"euler":{"heading":28.123072188943947,"pitch":-137.86881391926389,"roll":62.1824767656422},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.930"} +{"sensors":[{"euler":{"heading":42.712263764020065,"pitch":122.18314355596388,"roll":16.397037001154448},"location":"Left Knee"},{"euler":{"heading":28.132103178044577,"pitch":82.11546356026228,"roll":0.7539832512823452},"location":"Left Ankle"},{"euler":{"heading":50.566330268682,"pitch":-34.22523788526154,"roll":-26.4635675256716},"location":"Right Ankle"},{"euler":{"heading":95.2784649853269,"pitch":-162.9591131415413,"roll":50.955823621482246},"location":"Right Hip"},{"euler":{"heading":111.49113982171653,"pitch":-21.41415108937085,"roll":68.62238370356597},"location":"Right Knee"},{"euler":{"heading":24.483741132860573,"pitch":-139.195205969703,"roll":62.569399595931834},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.30"} +{"sensors":[{"euler":{"heading":45.787269445188265,"pitch":121.32148835698708,"roll":14.129778528668872},"location":"Left Knee"},{"euler":{"heading":27.35082866366221,"pitch":81.97962863801276,"roll":4.1543203053319315},"location":"Left Ankle"},{"euler":{"heading":49.37036816186511,"pitch":-34.73294452747284,"roll":-25.97951793684027},"location":"Right Ankle"},{"euler":{"heading":94.81534231832144,"pitch":-163.1829788828233,"roll":51.185947585726474},"location":"Right Hip"},{"euler":{"heading":110.38515149381958,"pitch":-2.997809135746518,"roll":69.23499926375811},"location":"Right Knee"},{"euler":{"heading":20.231565011145626,"pitch":-137.92812241617733,"roll":62.50929019617436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.131"} +{"sensors":[{"euler":{"heading":47.71649528073615,"pitch":121.24334434112735,"roll":12.868918755366424},"location":"Left Knee"},{"euler":{"heading":26.01552095342374,"pitch":81.64268392770522,"roll":5.762709579484307},"location":"Left Ankle"},{"euler":{"heading":48.32571731233094,"pitch":-35.22208215307527,"roll":-25.79121644755517},"location":"Right Ankle"},{"euler":{"heading":94.94148913282568,"pitch":-163.22502610710495,"roll":51.72117294510845},"location":"Right Hip"},{"euler":{"heading":109.9908659155672,"pitch":-18.931441971932095,"roll":69.6704336641222},"location":"Right Knee"},{"euler":{"heading":50.6797584570819,"pitch":-136.2702736312112,"roll":61.907930397036736},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.232"} +{"sensors":[{"euler":{"heading":46.00838817024645,"pitch":122.06442991217114,"roll":13.535371687095216},"location":"Left Knee"},{"euler":{"heading":22.419197950590267,"pitch":81.13565059748316,"roll":4.7567435933929865},"location":"Left Ankle"},{"euler":{"heading":47.083913343194524,"pitch":-35.587401601105796,"roll":-25.82891288956047},"location":"Right Ankle"},{"euler":{"heading":95.37176992592296,"pitch":-163.28685482295077,"roll":52.37789895501667},"location":"Right Hip"},{"euler":{"heading":110.2863373079345,"pitch":-31.845226399146775,"roll":69.85636163431266},"location":"Right Knee"},{"euler":{"heading":75.65232311908623,"pitch":-134.48475281663968,"roll":61.232978134157285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.332"} +{"sensors":[{"euler":{"heading":42.44569996054547,"pitch":123.49706546663728,"roll":15.36910701371423},"location":"Left Knee"},{"euler":{"heading":51.567303157717205,"pitch":80.4330911606814,"roll":1.611034376881753},"location":"Left Ankle"},{"euler":{"heading":45.55582915515973,"pitch":-35.63259529922987,"roll":-26.326757455077335},"location":"Right Ankle"},{"euler":{"heading":95.84893482903216,"pitch":-163.48548946998483,"roll":53.07322418407084},"location":"Right Hip"},{"euler":{"heading":111.057401339478,"pitch":-42.282073489463805,"roll":69.6559941482028},"location":"Right Knee"},{"euler":{"heading":62.15807054389434,"pitch":-133.33875883247381,"roll":60.71141026696863},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.435"} +{"sensors":[{"euler":{"heading":40.26579289433432,"pitch":124.28212522016759,"roll":16.998681872353977},"location":"Left Knee"},{"euler":{"heading":75.9509816008576,"pitch":80.44540116642413,"roll":-0.6290181182859507},"location":"Left Ankle"},{"euler":{"heading":43.49012834805501,"pitch":-35.459458875908105,"roll":-27.49068150993875},"location":"Right Ankle"},{"euler":{"heading":96.56662884935861,"pitch":-163.73062739557483,"roll":53.755914423575256},"location":"Right Hip"},{"euler":{"heading":112.84808271214571,"pitch":-50.388422099437136,"roll":68.77314030402773},"location":"Right Knee"},{"euler":{"heading":51.59056120425404,"pitch":-132.62282404828989,"roll":60.39997980827826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.536"} +{"sensors":[{"euler":{"heading":39.21810551680506,"pitch":124.4039207711947,"roll":18.12247039994366},"location":"Left Knee"},{"euler":{"heading":62.563135088114414,"pitch":80.74191494974862,"roll":-1.9841660332057045},"location":"Left Ankle"},{"euler":{"heading":65.46700443363258,"pitch":-33.77484798216208,"roll":-29.310832063302865},"location":"Right Ankle"},{"euler":{"heading":97.77853322908867,"pitch":-163.30440806418292,"roll":53.85642204408993},"location":"Right Hip"},{"euler":{"heading":115.65198487781464,"pitch":-56.42163256090619,"roll":66.99923741267479},"location":"Right Knee"},{"euler":{"heading":42.82493526414274,"pitch":-132.23658604001324,"roll":60.30842399161568},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.637"} +{"sensors":[{"euler":{"heading":38.67536154141291,"pitch":124.15146676491361,"roll":18.883710403731673},"location":"Left Knee"},{"euler":{"heading":52.01735253223166,"pitch":81.08751188167325,"roll":-2.8774683815537516},"location":"Left Ankle"},{"euler":{"heading":82.87306109345275,"pitch":-32.05429041666938,"roll":-30.868661322950786},"location":"Right Ankle"},{"euler":{"heading":99.02648743820161,"pitch":-162.49067066455657,"roll":53.31716627697767},"location":"Right Hip"},{"euler":{"heading":117.76351236961567,"pitch":-61.73824696502555,"roll":65.33462381921578},"location":"Right Knee"},{"euler":{"heading":35.99247816880307,"pitch":-132.7551038051358,"roll":60.445553796930675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.738"} +{"sensors":[{"euler":{"heading":38.65902551654666,"pitch":123.72088696709007,"roll":19.233654977029957},"location":"Left Knee"},{"euler":{"heading":43.935390912717615,"pitch":81.44779639340086,"roll":-3.168553650491846},"location":"Left Ankle"},{"euler":{"heading":73.29632830471398,"pitch":-32.090743198382825,"roll":-31.249763977000516},"location":"Right Ankle"},{"euler":{"heading":99.59052229341108,"pitch":-161.95053512314408,"roll":52.353582562772665},"location":"Right Hip"},{"euler":{"heading":118.08933617256054,"pitch":-67.26850106121223,"roll":65.43358952223493},"location":"Right Knee"},{"euler":{"heading":30.374288537646954,"pitch":-135.34082712219794,"roll":60.66476406218748},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.840"} +{"sensors":[{"euler":{"heading":39.20450851383261,"pitch":123.14101619499242,"roll":19.1460301817154},"location":"Left Knee"},{"euler":{"heading":37.656772108101976,"pitch":81.81542602242546,"roll":-3.027668537551717},"location":"Left Ankle"},{"euler":{"heading":67.9400485527729,"pitch":-33.12848540041467,"roll":-29.95370936679456},"location":"Right Ankle"},{"euler":{"heading":99.19622911852106,"pitch":-161.78877185224349,"roll":51.475714366572106},"location":"Right Hip"},{"euler":{"heading":116.59036398211809,"pitch":-44.09787734128002,"roll":67.03919456441321},"location":"Right Knee"},{"euler":{"heading":25.90491777697529,"pitch":-136.65204549165435,"roll":60.97013750528522},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.940"} +{"sensors":[{"euler":{"heading":40.23378954278915,"pitch":122.53901658574203,"roll":18.53166300212266},"location":"Left Knee"},{"euler":{"heading":33.00336111955642,"pitch":82.10052245068806,"roll":-2.382943346761615},"location":"Left Ankle"},{"euler":{"heading":84.44019822776754,"pitch":-34.34694191474489,"roll":-28.002106551606673},"location":"Right Ankle"},{"euler":{"heading":98.02320330781924,"pitch":-162.02884129537864,"roll":51.06779830955056},"location":"Right Hip"},{"euler":{"heading":114.26907058852356,"pitch":-27.489267882625942,"roll":67.5348720248873},"location":"Right Knee"},{"euler":{"heading":22.566448495553026,"pitch":-138.54008061557454,"roll":61.3178060149152},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.41"} +{"sensors":[{"euler":{"heading":41.84945371515164,"pitch":121.81592291365062,"roll":17.28013646062721},"location":"Left Knee"},{"euler":{"heading":30.043332279209356,"pitch":82.36444441108083,"roll":-0.8066812163511194},"location":"Left Ankle"},{"euler":{"heading":77.85536297757999,"pitch":-35.41976631010615,"roll":-26.652321335564558},"location":"Right Ankle"},{"euler":{"heading":96.74762975229312,"pitch":-162.3709256115565,"roll":50.829482003336715},"location":"Right Hip"},{"euler":{"heading":112.30894501917163,"pitch":-11.860075032846696,"roll":68.21526520291825},"location":"Right Knee"},{"euler":{"heading":20.082616417599176,"pitch":-140.22473531515735,"roll":61.73941812191339},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.141"} +{"sensors":[{"euler":{"heading":44.86677044593018,"pitch":121.2626837002915,"roll":14.940763836211893},"location":"Left Knee"},{"euler":{"heading":29.052483037743155,"pitch":82.51408120123517,"roll":2.444848542243285},"location":"Left Ankle"},{"euler":{"heading":71.785942003982,"pitch":-36.06354644928798,"roll":-26.07302755619249},"location":"Right Ankle"},{"euler":{"heading":96.24421451315898,"pitch":-162.55561772376097,"roll":50.79219474585469},"location":"Right Hip"},{"euler":{"heading":110.86451965155501,"pitch":4.369195042375891,"roll":68.99145933880698},"location":"Right Knee"},{"euler":{"heading":16.812233441765645,"pitch":-139.40074085669553,"roll":61.829604336589924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.242"} +{"sensors":[{"euler":{"heading":47.61677554496164,"pitch":120.91070401451735,"roll":12.853650388275101},"location":"Left Knee"},{"euler":{"heading":28.18766899338254,"pitch":82.04900773345044,"roll":5.410858016753247},"location":"Left Ankle"},{"euler":{"heading":66.6320022093552,"pitch":-36.58068866910661,"roll":-25.745034203950635},"location":"Right Ankle"},{"euler":{"heading":95.82012805042515,"pitch":-162.71085039795653,"roll":51.2102978152006},"location":"Right Hip"},{"euler":{"heading":109.94936458259306,"pitch":20.915538354109344,"roll":69.54518537750174},"location":"Right Knee"},{"euler":{"heading":47.767052661123905,"pitch":-137.50173912788406,"roll":61.38207921616031},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.343"} +{"sensors":[{"euler":{"heading":47.965978274389926,"pitch":121.21646366933292,"roll":12.40383788905518},"location":"Left Knee"},{"euler":{"heading":25.773256911362495,"pitch":81.42008857618536,"roll":5.669040561131891},"location":"Left Ankle"},{"euler":{"heading":62.316837017647494,"pitch":-37.084309621355985,"roll":-25.78117842065205},"location":"Right Ankle"},{"euler":{"heading":95.98418297393728,"pitch":-162.74430103891257,"roll":51.761042783773675},"location":"Right Hip"},{"euler":{"heading":109.8599657587265,"pitch":3.301680966178008,"roll":69.89760557938948},"location":"Right Knee"},{"euler":{"heading":73.02959049249182,"pitch":-135.62880179214613,"roll":60.62635173811868},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.444"} +{"sensors":[{"euler":{"heading":44.97604058708159,"pitch":122.40277002720389,"roll":13.73284359472401},"location":"Left Knee"},{"euler":{"heading":55.336195879462956,"pitch":80.55967523114134,"roll":3.4948139236928486},"location":"Left Ankle"},{"euler":{"heading":58.34363171174079,"pitch":-37.33193790300407,"roll":-26.0338608036214},"location":"Right Ankle"},{"euler":{"heading":96.2314718108123,"pitch":-162.9172570732165,"roll":52.37830433265012},"location":"Right Hip"},{"euler":{"heading":110.22671886359504,"pitch":-11.239512320620396,"roll":70.00247076263298},"location":"Right Knee"},{"euler":{"heading":93.85127092803593,"pitch":-133.87457439809683,"roll":60.04952831467731},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.544"} +{"sensors":[{"euler":{"heading":41.54096181174324,"pitch":123.96968961807926,"roll":15.5715756520312},"location":"Left Knee"},{"euler":{"heading":78.28189277324566,"pitch":79.8227257917717,"roll":0.24916928648521308},"location":"Left Ankle"},{"euler":{"heading":54.41261048157821,"pitch":-37.14578433767577,"roll":-26.78569386547574},"location":"Right Ankle"},{"euler":{"heading":96.54691248496047,"pitch":-163.23428398408117,"roll":53.073591000188536},"location":"Right Hip"},{"euler":{"heading":111.2463981273569,"pitch":-23.03005497727026,"roll":69.64551727413341},"location":"Right Knee"},{"euler":{"heading":77.08907565353084,"pitch":-132.94120158658947,"roll":59.68215317258803},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.645"} +{"sensors":[{"euler":{"heading":39.69146290057477,"pitch":124.72762695895118,"roll":17.03325800666713},"location":"Left Knee"},{"euler":{"heading":98.17563152437867,"pitch":80.07740129192841,"roll":-1.8256640524817533},"location":"Left Ankle"},{"euler":{"heading":49.92754407181591,"pitch":-36.40658908388921,"roll":-28.197281703648457},"location":"Right Ankle"},{"euler":{"heading":97.16191342152128,"pitch":-163.43791942806075,"roll":53.66706673198915},"location":"Right Hip"},{"euler":{"heading":113.24064538038758,"pitch":-32.5515788123995,"roll":68.59719142833484},"location":"Right Knee"},{"euler":{"heading":63.524731792435404,"pitch":-132.34631871112583,"roll":59.41512294608073},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.745"} +{"sensors":[{"euler":{"heading":38.86675089821767,"pitch":124.76542703847493,"roll":18.052687252582373},"location":"Left Knee"},{"euler":{"heading":80.86766968750904,"pitch":80.32568672787426,"roll":-2.9599655790633506},"location":"Left Ankle"},{"euler":{"heading":70.22665693548996,"pitch":-34.38812489045664,"roll":-30.18802927365144},"location":"Right Ankle"},{"euler":{"heading":98.32540466226416,"pitch":-162.80173161430807,"roll":53.53821367730213},"location":"Right Hip"},{"euler":{"heading":115.90207106995604,"pitch":-40.20422860068113,"roll":66.67950235422472},"location":"Right Knee"},{"euler":{"heading":52.667964787210614,"pitch":-132.12907063443063,"roll":59.48264994544487},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.848"} +{"sensors":[{"euler":{"heading":32.47803698626022,"pitch":100.52494036252507,"roll":22.05481271988326},"location":"Left Knee"},{"euler":{"heading":66.21435953844787,"pitch":72.68471204549742,"roll":-2.678399084313652},"location":"Left Ankle"},{"euler":{"heading":57.5015099294745,"pitch":-31.11695719347123,"roll":-27.31639534449168},"location":"Right Ankle"},{"euler":{"heading":80.50873385159717,"pitch":-147.31522959750848,"roll":48.445395278701525},"location":"Right Hip"},{"euler":{"heading":94.90048909202343,"pitch":-36.37980449207662,"roll":60.3366198956137},"location":"Right Knee"},{"euler":{"heading":43.12447199300639,"pitch":-119.56030310003095,"roll":53.82436751066666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.948"} +{"sensors":[{"euler":{"heading":26.59298118050524,"pitch":90.96251325424926,"roll":19.956850380786175},"location":"Left Knee"},{"euler":{"heading":54.21624520687845,"pitch":65.77058448357556,"roll":-2.4236165804070895},"location":"Left Ankle"},{"euler":{"heading":47.08217347163098,"pitch":-28.156959068420534,"roll":-24.71792536877684},"location":"Right Ankle"},{"euler":{"heading":65.92046326837922,"pitch":-133.30187987668398,"roll":43.83703083288793},"location":"Right Hip"},{"euler":{"heading":77.70441672668099,"pitch":-32.91917842839288,"roll":54.59710363595882},"location":"Right Knee"},{"euler":{"heading":35.31027052572173,"pitch":-108.18713859663158,"roll":48.70432875099512},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.606"} +{"sensors":[{"euler":{"heading":21.774303920088524,"pitch":82.30971127851595,"roll":18.058456545496956},"location":"Left Knee"},{"euler":{"heading":44.392202308104864,"pitch":59.514162766489456,"roll":-2.1930702423045982},"location":"Left Ankle"},{"euler":{"heading":38.55083216999986,"pitch":-25.478530534054045,"roll":-22.366634646749766},"location":"Right Ankle"},{"euler":{"heading":53.97560326222328,"pitch":-120.62154895462632,"roll":39.66703669540322},"location":"Right Hip"},{"euler":{"heading":63.62429147207844,"pitch":-29.787744148993074,"roll":49.40355841266352},"location":"Right Knee"},{"euler":{"heading":28.9120109065185,"pitch":-97.89584547919853,"roll":44.07133327883353},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.708"} +{"sensors":[{"euler":{"heading":17.828776246867353,"pitch":74.48000641556779,"roll":16.340647275662704},"location":"Left Knee"},{"euler":{"heading":36.34828672188628,"pitch":53.852882677068244,"roll":-1.984454606625153},"location":"Left Ankle"},{"euler":{"heading":31.565379238385727,"pitch":-23.054887305028096,"roll":-20.239010271190192},"location":"Right Ankle"},{"euler":{"heading":44.1951649468825,"pitch":-109.14743352211492,"roll":35.89371292487254},"location":"Right Hip"},{"euler":{"heading":52.095500305506235,"pitch":-26.954187311083196,"roll":44.70404877349486},"location":"Right Knee"},{"euler":{"heading":23.673122924666664,"pitch":-88.58351081655746,"roll":39.87905113946027},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.808"} +{"sensors":[{"euler":{"heading":14.598182501145564,"pitch":67.3951016167753,"roll":14.78624447858508},"location":"Left Knee"},{"euler":{"heading":29.761937433215337,"pitch":48.73013141441772,"roll":-1.7956835170119594},"location":"Left Ankle"},{"euler":{"heading":25.84569801423087,"pitch":-20.861792949052425,"roll":-18.31377599834252},"location":"Right Ankle"},{"euler":{"heading":36.18695274591171,"pitch":-98.76479242482468,"roll":32.47932628359058},"location":"Right Hip"},{"euler":{"heading":42.65573870118482,"pitch":-24.39017234628415,"roll":40.45157962206115},"location":"Right Knee"},{"euler":{"heading":19.383527172093967,"pitch":-80.15701126208198,"roll":36.08555951148162},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.908"} +{"sensors":[{"euler":{"heading":11.952975873719712,"pitch":60.98414783415058,"roll":13.379704126293309},"location":"Left Knee"},{"euler":{"heading":24.369041835616333,"pitch":44.09468146591137,"roll":-1.6248692625688852},"location":"Left Ankle"},{"euler":{"heading":21.16242928044667,"pitch":-18.87731652256728,"roll":-16.571679485478274},"location":"Right Ankle"},{"euler":{"heading":29.629837350051975,"pitch":-89.36979925178268,"roll":29.38973290514453},"location":"Right Hip"},{"euler":{"heading":34.92647221878093,"pitch":-22.070059104947948,"roll":36.60362626684805},"location":"Right Knee"},{"euler":{"heading":15.871210859122236,"pitch":-72.53208182022732,"roll":32.65292347861778},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.9"} +{"sensors":[{"euler":{"heading":9.787083578830021,"pitch":55.18303552986736,"roll":12.106960815264468},"location":"Left Knee"},{"euler":{"heading":19.953344815625545,"pitch":39.90017833206414,"roll":-1.4703037007514999},"location":"Left Ankle"},{"euler":{"heading":17.32777396080838,"pitch":-17.081613261307808,"roll":-14.99529976746881},"location":"Right Ankle"},{"euler":{"heading":24.260878431929324,"pitch":-80.86850407125851,"roll":26.594036855749927},"location":"Right Hip"},{"euler":{"heading":28.59775727235015,"pitch":-19.970646454661225,"roll":33.12170917430343},"location":"Right Knee"},{"euler":{"heading":12.995330101601308,"pitch":-65.63247319657492,"roll":29.546816680540122},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.110"} +{"sensors":[{"euler":{"heading":8.013653335451416,"pitch":49.933753580882815,"roll":10.955287112388273},"location":"Left Knee"},{"euler":{"heading":16.33777692274134,"pitch":36.104676981537544,"roll":-1.3304411759416297},"location":"Left Ankle"},{"euler":{"heading":14.187962376998506,"pitch":-15.456726132661414,"roll":-13.568873047134034},"location":"Right Ankle"},{"euler":{"heading":19.864780738927042,"pitch":-73.17589393144694,"roll":24.06428117491282},"location":"Right Hip"},{"euler":{"heading":23.415812392540612,"pitch":-18.070940268921113,"roll":29.97100917350185},"location":"Right Knee"},{"euler":{"heading":10.640562081154592,"pitch":-59.389189304888276,"roll":26.736178049267863},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.768"} +{"sensors":[{"euler":{"heading":6.561570590824411,"pitch":45.183809167707096,"roll":9.913166280635961},"location":"Left Knee"},{"euler":{"heading":13.377353884459065,"pitch":32.670222400826326,"roll":-1.2038830628911759},"location":"Left Ankle"},{"euler":{"heading":11.617088084506275,"pitch":-13.986406265341635,"roll":-12.278135057270596},"location":"Right Ankle"},{"euler":{"heading":16.265260753555733,"pitch":-66.21504273094982,"roll":21.775168305824845},"location":"Right Hip"},{"euler":{"heading":19.172841589671954,"pitch":-16.351943485870212,"roll":27.12001926443529},"location":"Right Knee"},{"euler":{"heading":8.712480600162174,"pitch":-53.739797306250516,"roll":24.192901198488286},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.869"} +{"sensors":[{"euler":{"heading":5.372606826889466,"pitch":40.88570284620845,"roll":8.970177111690008},"location":"Left Knee"},{"euler":{"heading":10.953362736943596,"pitch":29.562470044123373,"roll":-1.0893637804696337},"location":"Left Ankle"},{"euler":{"heading":9.512059024202745,"pitch":-12.655950460675273,"roll":-11.110178417979865},"location":"Right Ankle"},{"euler":{"heading":13.317977724402008,"pitch":-59.9163419577622,"roll":19.703807119795115},"location":"Right Hip"},{"euler":{"heading":15.69870173454914,"pitch":-14.796466137678014,"roll":24.54022954801308},"location":"Right Knee"},{"euler":{"heading":7.133769591236259,"pitch":-48.62780328067526,"roll":21.891553359693592},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.970"} +{"sensors":[{"euler":{"heading":4.399084596712788,"pitch":36.99645355317189,"roll":8.116889713860955},"location":"Left Knee"},{"euler":{"heading":8.968601435179567,"pitch":26.75034238786165,"roll":-0.9857381358527879},"location":"Left Ankle"},{"euler":{"heading":7.788463530769746,"pitch":-11.452054160615662,"roll":-10.053323562868933},"location":"Right Ankle"},{"euler":{"heading":10.904745601996801,"pitch":-54.21680460415221,"roll":17.829484004963337},"location":"Right Hip"},{"euler":{"heading":12.854079818981747,"pitch":-13.388953450862596,"roll":22.205842127071},"location":"Right Knee"},{"euler":{"heading":5.84112274291892,"pitch":-44.002087287906754,"roll":19.809121054495833},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:18.71"} +{"sensors":[{"euler":{"heading":3.6019656588642923,"pitch":33.47716879566705,"roll":7.344771213170512},"location":"Left Knee"},{"euler":{"heading":7.343481050966236,"pitch":24.205718155478547,"roll":-0.89196987259447},"location":"Left Ankle"},{"euler":{"heading":6.377185424920612,"pitch":-10.362678402162208,"roll":-9.09700194338669},"location":"Right Ankle"},{"euler":{"heading":8.928793778231668,"pitch":-49.059435296583736,"roll":16.133455730181193},"location":"Right Hip"},{"euler":{"heading":10.524906504155522,"pitch":-12.115330298555804,"roll":20.093513127399632},"location":"Right Knee"},{"euler":{"heading":4.782704916592628,"pitch":-39.816392168017316,"roll":17.924779959843033},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:18.172"} +{"sensors":[{"euler":{"heading":2.949285543936255,"pitch":30.292655726118877,"roll":6.646100424611774},"location":"Left Knee"},{"euler":{"heading":6.012834256896653,"pitch":21.903151104650227,"roll":-0.8071213080620968},"location":"Left Ankle"},{"euler":{"heading":5.221632454610796,"pitch":-9.376929427730376,"roll":-8.231650343338314},"location":"Right Ankle"},{"euler":{"heading":7.310886584973624,"pitch":-44.3926603419811,"roll":14.598762012700861},"location":"Right Hip"},{"euler":{"heading":8.617781940145935,"pitch":-10.96286044923457,"roll":18.18211925900226},"location":"Right Knee"},{"euler":{"heading":3.9160735574217016,"pitch":-36.02886096980805,"roll":16.21968666478866},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:18.274"} +{"sensors":[{"euler":{"heading":2.4148717793200616,"pitch":27.411069213831894,"roll":6.013890640299153},"location":"Left Knee"},{"euler":{"heading":4.923302116528625,"pitch":19.81961556486841,"roll":-0.7303439566103446},"location":"Left Ankle"},{"euler":{"heading":4.275466945730872,"pitch":-8.484949747575849,"roll":-7.448615246723322},"location":"Right Ankle"},{"euler":{"heading":5.986145943773023,"pitch":-40.16981199079828,"roll":13.210055915347537},"location":"Right Hip"},{"euler":{"heading":7.056230431936199,"pitch":-9.920019204405683,"roll":16.45254658319491},"location":"Right Knee"},{"euler":{"heading":3.206476747903385,"pitch":-32.601618381296866,"roll":14.676790236382177},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:26.933"} +{"sensors":[{"euler":{"heading":1.9772943730546029,"pitch":24.80359339368323,"roll":5.441819762389525},"location":"Left Knee"},{"euler":{"heading":4.031194391033394,"pitch":17.934276180735278,"roll":-0.6608700447246958},"location":"Left Ankle"},{"euler":{"heading":3.5007476613747563,"pitch":-7.677819564897079,"roll":-6.7400663025755625},"location":"Right Ankle"},{"euler":{"heading":4.90144975491772,"pitch":-36.34866175952344,"roll":11.95345037714769},"location":"Right Hip"},{"euler":{"heading":5.7776337640471045,"pitch":-8.976378151620851,"roll":14.887499373219507},"location":"Right Knee"},{"euler":{"heading":2.6254596559759937,"pitch":-29.500391976598653,"roll":13.280661710339514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.34"} +{"sensors":[{"euler":{"heading":1.6190064711486336,"pitch":22.4441535074714,"roll":4.924167082103791},"location":"Left Knee"},{"euler":{"heading":3.3007375606186034,"pitch":16.228279558409497,"roll":-0.598004833286294},"location":"Left Ankle"},{"euler":{"heading":2.8664083582397684,"pitch":-6.94746757786728,"roll":-6.098918021453559},"location":"Right Ankle"},{"euler":{"heading":4.013301701234616,"pitch":-32.89099814584383,"roll":10.816379342719317},"location":"Right Hip"},{"euler":{"heading":4.730720210096298,"pitch":-8.122500880352229,"roll":13.471327156976301},"location":"Right Knee"},{"euler":{"heading":2.14972349625324,"pitch":-26.694169491666425,"roll":12.017339801400247},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.136"} +{"sensors":[{"euler":{"heading":1.3256407287357246,"pitch":20.30915515633428,"roll":4.455756072639096},"location":"Left Knee"},{"euler":{"heading":2.7026403063846187,"pitch":14.684565731667814,"roll":-0.541119670180755},"location":"Left Ankle"},{"euler":{"heading":2.347012030270195,"pitch":-6.2865902666161535,"roll":-5.518758920546091},"location":"Right Ankle"},{"euler":{"heading":3.2860870457710214,"pitch":-29.762244513622665,"roll":9.787472101718139},"location":"Right Hip"},{"euler":{"heading":3.873508536570354,"pitch":-7.349848617887129,"roll":12.189868212302857},"location":"Right Knee"},{"euler":{"heading":1.7601912487302414,"pitch":-24.15488870165086,"roll":10.874191290474982},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.237"} +{"sensors":[{"euler":{"heading":1.085433179545118,"pitch":18.377248356760507,"roll":4.031902623900791},"location":"Left Knee"},{"euler":{"heading":2.212918928436657,"pitch":13.287697562242808,"roll":-0.48964570377702366},"location":"Left Ankle"},{"euler":{"heading":1.9217308847144567,"pitch":-5.688578858031189,"roll":-4.993787408844084},"location":"Right Ankle"},{"euler":{"heading":2.6906444808428445,"pitch":-26.931113326537726,"roll":8.856439581734142},"location":"Right Hip"},{"euler":{"heading":3.1716245553608813,"pitch":-6.6506948416009,"roll":11.03030794975244},"location":"Right Knee"},{"euler":{"heading":1.4412426702813252,"pitch":-21.857156798651808,"roll":9.839784692454469},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.337"} +{"sensors":[{"euler":{"heading":0.8887515008542708,"pitch":16.629114040754338,"roll":3.6483682014014946},"location":"Left Knee"},{"euler":{"heading":1.8119355995190052,"pitch":12.02370636844023,"roll":-0.4430681944110625},"location":"Left Ankle"},{"euler":{"heading":1.573511147635768,"pitch":-5.147453238026537,"roll":-4.518753771230518},"location":"Right Ankle"},{"euler":{"heading":2.2030967595964657,"pitch":-24.369293272718163,"roll":8.013971457567486},"location":"Right Hip"},{"euler":{"heading":2.5969227188213795,"pitch":-6.01804801373068,"roll":9.98105076669955},"location":"Right Knee"},{"euler":{"heading":1.1800879229106904,"pitch":-19.77799646363927,"roll":8.903775941358498},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.438"} +{"sensors":[{"euler":{"heading":0.7277087573476798,"pitch":15.047270865155712,"roll":3.301317460916213},"location":"Left Knee"},{"euler":{"heading":1.4836108881420658,"pitch":10.879952238322055,"roll":-0.400921366989212},"location":"Left Ankle"},{"euler":{"heading":1.2883892075772734,"pitch":-4.65780215040215,"roll":-4.088907671329257},"location":"Right Ankle"},{"euler":{"heading":1.8038932184099052,"pitch":-22.051166151625782,"roll":7.251643047976505},"location":"Right Hip"},{"euler":{"heading":2.1263574833066152,"pitch":-5.445581665997767,"roll":9.031604091313655},"location":"Right Knee"},{"euler":{"heading":0.9662547012487743,"pitch":-17.896616093263123,"roll":8.056804949676113},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.538"} +{"sensors":[{"euler":{"heading":0.5958471350107308,"pitch":13.615900398208643,"roll":2.987279895040093},"location":"Left Knee"},{"euler":{"heading":1.214778973379623,"pitch":9.8449976305871,"roll":-0.3627837532372536},"location":"Left Ankle"},{"euler":{"heading":1.0549316747426274,"pitch":-4.214729084281784,"roll":-3.6999506481412885},"location":"Right Ankle"},{"euler":{"heading":1.4770257952815822,"pitch":-19.95355069204966,"roll":6.561831068865289},"location":"Right Hip"},{"euler":{"heading":1.7410591828724462,"pitch":-4.927571134924832,"roll":8.172473456840896},"location":"Right Knee"},{"euler":{"heading":0.7911682931069339,"pitch":-16.19420188381961,"roll":7.290402007490489},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.639"} +{"sensors":[{"euler":{"heading":0.4878789827877122,"pitch":12.32068893524366,"roll":2.7031151281143746},"location":"Left Knee"},{"euler":{"heading":0.9946596954497033,"pitch":8.908492999158016,"roll":-0.3282739770176677},"location":"Left Ankle"},{"euler":{"heading":0.8637769020651608,"pitch":-3.8138033090042365,"roll":-3.347993131434733},"location":"Right Ankle"},{"euler":{"heading":1.2093871065440505,"pitch":-18.055470739394035,"roll":5.937637400442727},"location":"Right Hip"},{"euler":{"heading":1.4255773556714624,"pitch":-4.458836315201144,"roll":7.395067556936546},"location":"Right Knee"},{"euler":{"heading":0.6478077335186816,"pitch":-14.653729693214292,"roll":6.59690308537977},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.740"} +{"sensors":[{"euler":{"heading":0.3994747777744808,"pitch":11.148684361631116,"roll":2.4459815124697997},"location":"Left Knee"},{"euler":{"heading":0.8144262713073168,"pitch":8.061073297720512,"roll":-0.29704694056825853},"location":"Left Ankle"},{"euler":{"heading":0.7072595831605072,"pitch":-3.4510155668167313,"roll":-3.029515546042525},"location":"Right Ankle"},{"euler":{"heading":0.9902448407789352,"pitch":-16.33794549413235,"roll":5.372820106024591},"location":"Right Hip"},{"euler":{"heading":1.167261180432904,"pitch":-4.034689858629468,"roll":6.6916123326015615},"location":"Right Knee"},{"euler":{"heading":0.5304242640445285,"pitch":-13.259794799541119,"roll":5.9693731941228485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.36"} +{"sensors":[{"euler":{"heading":0.32708951135000613,"pitch":10.08816663163488,"roll":2.213307711949923},"location":"Left Knee"},{"euler":{"heading":0.6668513406443536,"pitch":7.294264329260213,"roll":-0.26879037352453194},"location":"Left Ankle"},{"euler":{"heading":0.5791033735405899,"pitch":-3.1227379802973934,"roll":-2.741333116110742},"location":"Right Ankle"},{"euler":{"heading":0.8108113931290551,"pitch":-14.783799703811987,"roll":4.861731012666701},"location":"Right Hip"},{"euler":{"heading":0.9557521785297054,"pitch":-3.650890300644087,"roll":6.055073231592593},"location":"Right Knee"},{"euler":{"heading":0.43431080755856094,"pitch":-11.998457853863357,"roll":5.401537034807156},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.139"} +{"sensors":[{"euler":{"heading":0.2678205343306667,"pitch":9.128530567954995,"roll":2.002766988549545},"location":"Left Knee"},{"euler":{"heading":0.5460171487412291,"pitch":6.600398004092517,"roll":-0.24322171021605066},"location":"Left Ankle"},{"euler":{"heading":0.4741692091996504,"pitch":-2.8256877735810293,"roll":-2.4805640173400665},"location":"Right Ankle"},{"euler":{"heading":0.6638914823436504,"pitch":-13.377491910529745,"roll":4.399259229435478},"location":"Right Hip"},{"euler":{"heading":0.7825688389855479,"pitch":-3.303599645665147,"roll":5.47908486289955},"location":"Right Knee"},{"euler":{"heading":0.3556132144556918,"pitch":-10.857105486724228,"roll":4.887716245839535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.239"} +{"sensors":[{"euler":{"heading":0.21929116073798702,"pitch":8.260179809954659,"roll":1.812253935034663},"location":"Left Knee"},{"euler":{"heading":0.4470782445026278,"pitch":5.972535658965746,"roll":-0.2200852640097299},"location":"Left Ankle"},{"euler":{"heading":0.3882492301476168,"pitch":-2.5568944446004753,"roll":-2.2446005587427917},"location":"Right Ankle"},{"euler":{"heading":0.5435936200002259,"pitch":-12.1049590363528,"roll":3.9807800384986107},"location":"Right Hip"},{"euler":{"heading":0.6407665098847107,"pitch":-2.989344987142858,"roll":4.9578873428355035},"location":"Right Knee"},{"euler":{"heading":0.29117571125249586,"pitch":-9.824324174452341,"roll":4.422772619330309},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.340"} +{"sensors":[{"euler":{"heading":0.1795553626909006,"pitch":7.47443085005387,"roll":1.6398634208701273},"location":"Left Knee"},{"euler":{"heading":0.3660671778685819,"pitch":5.404398670428632,"roll":-0.1991496704435064},"location":"Left Ankle"},{"euler":{"heading":0.31789804522450266,"pitch":-2.313670060065926,"roll":-2.031083105732945},"location":"Right Ankle"},{"euler":{"heading":0.4450938618188106,"pitch":-10.953475752539385,"roll":3.602108647946729},"location":"Right Hip"},{"euler":{"heading":0.5246589178302504,"pitch":-2.704983778491998,"roll":4.4862686961998115},"location":"Right Knee"},{"euler":{"heading":0.238414354070525,"pitch":-8.889786103924978,"roll":4.002056719014386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.440"} +{"sensors":[{"euler":{"heading":0.1470197346877193,"pitch":6.763426198653619,"roll":1.483871540914293},"location":"Left Knee"},{"euler":{"heading":0.29973540506706614,"pitch":4.890305668595804,"roll":-0.180205573581718},"location":"Left Ankle"},{"euler":{"heading":0.2602945719148911,"pitch":-2.0935823761320362,"roll":-1.8378764837804276},"location":"Right Ankle"},{"euler":{"heading":0.3644423674963295,"pitch":-9.911527226251362,"roll":3.2594583438743148},"location":"Right Hip"},{"euler":{"heading":0.4295901483807833,"pitch":-2.4476724076260576,"roll":4.059512736526117},"location":"Right Knee"},{"euler":{"heading":0.19521341248678217,"pitch":-8.044145894436864,"roll":3.6213613858886076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.541"} +{"sensors":[{"euler":{"heading":0.12037959804551558,"pitch":6.120055809239904,"roll":1.3427183763676018},"location":"Left Knee"},{"euler":{"heading":0.24542302200873972,"pitch":4.4251157234489344,"roll":-0.16306353245574676},"location":"Left Ankle"},{"euler":{"heading":0.21312891093906663,"pitch":-1.894430515959467,"roll":-1.6630486266657145},"location":"Right Ankle"},{"euler":{"heading":0.2984050121104513,"pitch":-8.968693972225854,"roll":2.9494026232406436},"location":"Right Hip"},{"euler":{"heading":0.3517479438813855,"pitch":-2.214837760836378,"roll":3.6733519042176845},"location":"Right Knee"},{"euler":{"heading":0.1598405287437593,"pitch":-7.27894714389312,"roll":3.2768796666217153},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.641"} +{"sensors":[{"euler":{"heading":0.09856668328493702,"pitch":5.537885977918589,"roll":1.2149923955845865},"location":"Left Knee"},{"euler":{"heading":0.20095210213296377,"pitch":4.004176935536554,"roll":-0.14755212665433298},"location":"Left Ankle"},{"euler":{"heading":0.17450971929189876,"pitch":-1.7142229609464923,"roll":-1.5048512558176586},"location":"Right Ankle"},{"euler":{"heading":0.24433369771020216,"pitch":-8.115547657922603,"roll":2.668840928839379},"location":"Right Hip"},{"euler":{"heading":0.28801083193163135,"pitch":-2.0041514916550622,"roll":3.3239245909514286},"location":"Right Knee"},{"euler":{"heading":0.13087725020336122,"pitch":-6.586537864788307,"roll":2.96516674402104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.742"} +{"sensors":[{"euler":{"heading":0.08070629252408443,"pitch":5.011095006376459,"roll":1.099416338757417},"location":"Left Knee"},{"euler":{"heading":0.16453936155271967,"pitch":3.6232799169795395,"roll":-0.13351624211946253},"location":"Left Ankle"},{"euler":{"heading":0.14288836738833602,"pitch":-1.5511576355429826,"roll":-1.3617023975277793},"location":"Right Ankle"},{"euler":{"heading":0.2000601645881321,"pitch":-7.343556820198578,"roll":2.4149676437265084},"location":"Right Hip"},{"euler":{"heading":0.23582295434233558,"pitch":-1.813506737390297,"roll":3.0077365235946867},"location":"Right Knee"},{"euler":{"heading":0.1071621493961179,"pitch":-5.959993964331376,"roll":2.683105488860575},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.843"} +{"sensors":[{"euler":{"heading":0.06608222409344762,"pitch":4.534414984898095,"roll":0.9948344453178217},"location":"Left Knee"},{"euler":{"heading":0.13472464937073964,"pitch":3.27861569759232,"roll":-0.12081552000578671},"location":"Left Ankle"},{"euler":{"heading":0.11699683901704555,"pitch":-1.4036038864949028,"roll":-1.2321705632131779},"location":"Right Ankle"},{"euler":{"heading":0.16380904406604618,"pitch":-6.645001550676539,"roll":2.1852440350509026},"location":"Right Hip"},{"euler":{"heading":0.1930915772221675,"pitch":-1.640997050499435,"roll":2.721625821473892},"location":"Right Knee"},{"euler":{"heading":0.08774425077965892,"pitch":-5.39305000351776,"roll":2.427875288588716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.944"} +{"sensors":[{"euler":{"heading":0.05410805284895806,"pitch":4.103079113268711,"roll":0.9002008963314047},"location":"Left Knee"},{"euler":{"heading":0.11031239562852627,"pitch":2.9667376351810244,"roll":-0.10932295309216876},"location":"Left Ankle"},{"euler":{"heading":0.09579688389033862,"pitch":-1.270086176311772,"roll":-1.114960434530708},"location":"Right Ankle"},{"euler":{"heading":0.13412666621100872,"pitch":-6.012896296661266,"roll":1.9773728667258057},"location":"Right Hip"},{"euler":{"heading":0.1581031723486083,"pitch":-1.484897334113567,"roll":2.462731377567836},"location":"Right Knee"},{"euler":{"heading":0.07184489661946425,"pitch":-4.880036542739321,"roll":2.196923841202744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:30.44"} +{"sensors":[{"euler":{"heading":0.04430361452371172,"pitch":3.712774032772014,"roll":0.8145693563083016},"location":"Left Knee"},{"euler":{"heading":0.0903236689510168,"pitch":2.6845269491215387,"roll":-0.0989236157094725},"location":"Left Ankle"},{"euler":{"heading":0.07843838380763427,"pitch":-1.1492693278917587,"roll":-1.0088999101935454},"location":"Right Ankle"},{"euler":{"heading":0.10982276767103269,"pitch":-5.440920005612605,"roll":1.789275427067967},"location":"Right Hip"},{"euler":{"heading":0.1294547046862283,"pitch":-1.3436465910688349,"roll":2.2284642474374583},"location":"Right Knee"},{"euler":{"heading":0.058826522813710105,"pitch":-4.4158234473882745,"roll":1.9879416322287993},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:30.146"} +{"sensors":[{"euler":{"heading":0.036275751140866216,"pitch":3.3595966926030374,"roll":0.7370835098482816},"location":"Left Knee"},{"euler":{"heading":0.07395692139844312,"pitch":2.4291615325532683,"roll":-0.08951351448387096},"location":"Left Ankle"},{"euler":{"heading":0.06422526291561605,"pitch":-1.0399451727506632,"roll":-0.9129283849583182},"location":"Right Ankle"},{"euler":{"heading":0.08992276211466507,"pitch":-4.92335291462007,"roll":1.619070741680808},"location":"Right Hip"},{"euler":{"heading":0.10599737068176605,"pitch":-2.737831065494854,"roll":2.0164817597814553},"location":"Right Knee"},{"euler":{"heading":0.04816709257278573,"pitch":-5.517767338071175,"roll":1.7988388395771426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:30.246"} +{"sensors":[{"euler":{"heading":0.02970254537876945,"pitch":3.040015319360091,"roll":0.6669684984867446},"location":"Left Knee"},{"euler":{"heading":0.060555846393947003,"pitch":2.1980877313105305,"roll":-0.08099854840310813},"location":"Left Ankle"},{"euler":{"heading":0.052587575066514035,"pitch":-0.9410204693370743,"roll":-0.8260861435726741},"location":"Right Ankle"},{"euler":{"heading":0.07362865931909553,"pitch":-4.455019352773736,"roll":1.465056763710457},"location":"Right Hip"},{"euler":{"heading":0.08679053124164264,"pitch":-2.4773950990157587,"roll":1.8246640897232669},"location":"Right Knee"},{"euler":{"heading":0.03943916274403007,"pitch":-4.992890150574723,"roll":1.6277244353212574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.6"} +{"sensors":[{"euler":{"heading":0.02432041168636134,"pitch":2.7508340993107456,"roll":0.6035231721100749},"location":"Left Knee"},{"euler":{"heading":0.04958306082984816,"pitch":1.988994807380898,"roll":-0.07329356780637639},"location":"Left Ankle"},{"euler":{"heading":0.043058648977579245,"pitch":-0.8515059706168561,"roll":-0.7475047636227568},"location":"Right Ankle"},{"euler":{"heading":0.06028706576222172,"pitch":-4.031235984455139,"roll":1.3256933533772106},"location":"Right Hip"},{"euler":{"heading":0.0710639921043091,"pitch":-2.241733083526821,"roll":1.651093060562311},"location":"Right Knee"},{"euler":{"heading":0.032292743341310014,"pitch":-4.517941864584019,"roll":1.4728872754185849},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.107"} +{"sensors":[{"euler":{"heading":0.019913526502576318,"pitch":2.4891612202545077,"roll":0.546113077454506},"location":"Left Knee"},{"euler":{"heading":0.04059855600502622,"pitch":1.7997918315250747,"roll":-0.0663215228877084},"location":"Left Ankle"},{"euler":{"heading":0.03525637471264537,"pitch":-0.7705065316028064,"roll":-0.676398431309067},"location":"Right Ankle"},{"euler":{"heading":0.049362983542412996,"pitch":-3.647764975981094,"roll":1.1995868765777364},"location":"Right Hip"},{"euler":{"heading":0.05818711905035834,"pitch":-2.0284883988731517,"roll":1.4940329620069785},"location":"Right Knee"},{"euler":{"heading":0.02644126294657649,"pitch":-4.088172997239155,"roll":1.332778988270098},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.208"} +{"sensors":[{"euler":{"heading":0.01630517373154461,"pitch":2.252379953400815,"roll":0.4941641135734821},"location":"Left Knee"},{"euler":{"heading":0.033242053276005844,"pitch":1.6285867739845021,"roll":-0.06001269319791751},"location":"Left Ankle"},{"euler":{"heading":0.028867881073688584,"pitch":-0.6972121579047847,"roll":-0.612056083308468},"location":"Right Ankle"},{"euler":{"heading":0.04041835696265504,"pitch":-3.30077161726686,"roll":1.0854762685440396},"location":"Right Hip"},{"euler":{"heading":0.04764354947032695,"pitch":-1.8355285982082137,"roll":1.3519131930717156},"location":"Right Knee"},{"euler":{"heading":0.021650077196000685,"pitch":-3.6992858598666833,"roll":1.2059984910043122},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.309"} +{"sensors":[{"euler":{"heading":0.013350658427147838,"pitch":2.0381224860811304,"roll":0.44715679082819304},"location":"Left Knee"},{"euler":{"heading":0.027218556883353295,"pitch":1.4736675841837745,"roll":-0.05430399044010579},"location":"Left Ankle"},{"euler":{"heading":0.02363698946578671,"pitch":-0.6308899057858111,"roll":-0.5538342961409536},"location":"Right Ankle"},{"euler":{"heading":0.03309450649709956,"pitch":-2.9867859747252945,"roll":0.9822204231957831},"location":"Right Hip"},{"euler":{"heading":0.039010486224055674,"pitch":-1.6609240835253578,"roll":1.22331255606717},"location":"Right Knee"},{"euler":{"heading":0.017727059540984504,"pitch":-3.347391581092878,"roll":1.0912779786485696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.410"} +{"sensors":[{"euler":{"heading":0.010931504525679696,"pitch":1.844246243622257,"roll":0.40462103599118593},"location":"Left Knee"},{"euler":{"heading":0.022286524621723213,"pitch":1.3334850702248846,"roll":-0.049138327586695126},"location":"Left Ankle"},{"euler":{"heading":0.01935394113546288,"pitch":-0.5708765527246954,"roll":-0.5011508519348488},"location":"Right Ankle"},{"euler":{"heading":0.027097745742077763,"pitch":-2.702668191930982,"roll":0.8887867820794844},"location":"Right Hip"},{"euler":{"heading":0.03194174347536903,"pitch":-1.5029288096777556,"roll":1.1069450446232962},"location":"Right Knee"},{"euler":{"heading":0.014514896973561803,"pitch":-3.028971218130001,"roll":0.9874702460793126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.511"} +{"sensors":[{"euler":{"heading":0.00895070395569131,"pitch":1.6688124635996064,"roll":0.36613149151409063},"location":"Left Knee"},{"euler":{"heading":0.018248181997424232,"pitch":1.2066374069682435,"roll":-0.044464048009151415},"location":"Left Ankle"},{"euler":{"heading":0.015846985844671115,"pitch":-0.5165719651908267,"roll":-0.4534789162480924},"location":"Right Ankle"},{"euler":{"heading":0.022187604591313286,"pitch":-2.445577091055979,"roll":0.8042410087839805},"location":"Right Hip"},{"euler":{"heading":0.026153864640044686,"pitch":-1.3599628239269308,"roll":1.0016469836256552},"location":"Right Knee"},{"euler":{"heading":0.011884781774778932,"pitch":-2.7408405673484246,"roll":0.8935372159708487},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.614"} +{"sensors":[{"euler":{"heading":0.007328826614326145,"pitch":1.5100668082129518,"roll":0.3313032619521363},"location":"Left Knee"},{"euler":{"heading":0.014941591471221963,"pitch":1.0918561177812849,"roll":-0.040234408911699215},"location":"Left Ankle"},{"euler":{"heading":0.01297549468625066,"pitch":-0.4674330973088663,"roll":-0.410341769723817},"location":"Right Ankle"},{"euler":{"heading":0.018167186384660472,"pitch":-2.212941761091536,"roll":0.7277376455763165},"location":"Right Hip"},{"euler":{"heading":0.021414755776786136,"pitch":-1.2305964664153755,"roll":0.9063653924642708},"location":"Right Knee"},{"euler":{"heading":0.009731246325164694,"pitch":-2.4801183222403322,"roll":0.8085395580220933},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:34.910"} +{"sensors":[{"euler":{"heading":0.006000835220195459,"pitch":1.3664218209084267,"roll":0.2997880650097033},"location":"Left Knee"},{"euler":{"heading":0.012234158763015692,"pitch":0.9879933897721391,"roll":-0.03640711390336401},"location":"Left Ankle"},{"euler":{"heading":0.010624320864748857,"pitch":-0.42296856039999453,"roll":-0.3713080408967797},"location":"Right Ankle"},{"euler":{"heading":0.014875272352032544,"pitch":-2.002435848738008,"roll":0.6585116588244156},"location":"Right Hip"},{"euler":{"heading":0.01753437862017671,"pitch":-1.1135360735679738,"roll":0.8201474552275292},"location":"Right Knee"},{"euler":{"heading":0.007967933853189562,"pitch":-2.2441972603546434,"roll":0.7316272956535589},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.10"} +{"sensors":[{"euler":{"heading":0.0049134773183946105,"pitch":1.2364410518129858,"roll":0.27127074871736734},"location":"Left Knee"},{"euler":{"heading":0.010017315821206352,"pitch":0.8940105956607147,"roll":-0.03294389003406245},"location":"Left Ankle"},{"euler":{"heading":0.008699182309923484,"pitch":-0.3827337090951227,"roll":-0.33598739247871023},"location":"Right Ankle"},{"euler":{"heading":0.01217985674072112,"pitch":-1.8119542948718603,"roll":0.5958707886607589},"location":"Right Hip"},{"euler":{"heading":0.014357130046236368,"pitch":-1.0076110414562518,"roll":0.7421309925430628},"location":"Right Knee"},{"euler":{"heading":0.0065241355287273305,"pitch":-2.030718171072501,"roll":0.66203130624156},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.111"} +{"sensors":[{"euler":{"heading":0.004023149857061387,"pitch":1.118824693235675,"roll":0.24546613991220506},"location":"Left Knee"},{"euler":{"heading":0.008202167243827387,"pitch":0.8089679075058974,"roll":-0.02981010506510151},"location":"Left Ankle"},{"euler":{"heading":0.007122880965726042,"pitch":-0.34632619488120214,"roll":-0.30402661798542785},"location":"Right Ankle"},{"euler":{"heading":0.009972853384712611,"pitch":-1.6395922839544312,"roll":0.5391886263837099},"location":"Right Hip"},{"euler":{"heading":0.011755602387150106,"pitch":-0.9117621197590924,"roll":0.6715358397840271},"location":"Right Knee"},{"euler":{"heading":0.005341955038967065,"pitch":-1.8375462635010833,"roll":0.5990556298919768},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.212"} +{"sensors":[{"euler":{"heading":0.0032941507049963252,"pitch":1.0123965815907208,"roll":0.22211619250616482},"location":"Left Knee"},{"euler":{"heading":0.0067159255729259,"pitch":0.7320148984261392,"roll":-0.026974421146791584},"location":"Left Ankle"},{"euler":{"heading":0.005832207148254215,"pitch":-0.3133819426160936,"roll":-0.2751061096719998},"location":"Right Ankle"},{"euler":{"heading":0.00816576144943108,"pitch":-1.4836261958765464,"roll":0.4878983503704979},"location":"Right Hip"},{"euler":{"heading":0.009625474383788564,"pitch":-0.8250308192595239,"roll":0.6076560454228316},"location":"Right Knee"},{"euler":{"heading":0.0043739869462693795,"pitch":-1.6627498185646765,"roll":0.5420705098413133},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.312"} +{"sensors":[{"euler":{"heading":0.0026972469962016155,"pitch":0.9160924357616738,"roll":0.20098740702518622},"location":"Left Knee"},{"euler":{"heading":0.005498992517498742,"pitch":0.6623820383306424,"roll":-0.024408481439949576},"location":"Left Ankle"},{"euler":{"heading":0.004775404837427381,"pitch":-0.28357150977714596,"roll":-0.2489366624552917},"location":"Right Ankle"},{"euler":{"heading":0.006686116548271734,"pitch":-1.342496369757427,"roll":0.4414870578609909},"location":"Right Hip"},{"euler":{"heading":0.007881327903216943,"pitch":-0.7465498269525507,"roll":0.5498528115158644},"location":"Right Knee"},{"euler":{"heading":0.003581415730117096,"pitch":-1.5045808718139166,"roll":0.490506094889063},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:36.608"} +{"sensors":[{"euler":{"heading":0.0022085028919545903,"pitch":0.8289492142902435,"roll":0.1818684956144595},"location":"Left Knee"},{"euler":{"heading":0.004502569062023283,"pitch":0.599372998618452,"roll":-0.022086626547507062},"location":"Left Ankle"},{"euler":{"heading":0.003910096260581386,"pitch":-0.2565967920359698,"roll":-0.22525658186313652},"location":"Right Ankle"},{"euler":{"heading":0.005474584920698085,"pitch":-1.214791507335882,"roll":0.3994906359300938},"location":"Right Hip"},{"euler":{"heading":0.00645322267156432,"pitch":-0.675534332915103,"roll":0.4975481057240559},"location":"Right Knee"},{"euler":{"heading":0.002932459284742508,"pitch":-1.3614577337812959,"roll":0.44384674088570325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:38.918"} +{"sensors":[{"euler":{"heading":0.0018083197536749446,"pitch":0.7500954849617156,"roll":0.16456826915987738},"location":"Left Knee"},{"euler":{"heading":0.003686698625934958,"pitch":0.542357688892446,"roll":-0.019985637920539617},"location":"Left Ankle"},{"euler":{"heading":0.003201582543784705,"pitch":-0.23218804221515335,"roll":-0.2038290670896127},"location":"Right Ankle"},{"euler":{"heading":0.004482584148444429,"pitch":-1.0992345599876958,"roll":0.3614891203584977},"location":"Right Hip"},{"euler":{"heading":0.005283891669041427,"pitch":-0.6112741822068063,"roll":0.4502188809894879},"location":"Right Knee"},{"euler":{"heading":0.0024010944566860946,"pitch":-1.2378944807097696,"roll":0.40162585429120057},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:39.20"} +{"sensors":[{"euler":{"heading":0.001480650237517664,"pitch":0.6727974028595234,"roll":0.14891372539689401},"location":"Left Knee"},{"euler":{"heading":0.0030186648047466247,"pitch":0.48482064843208295,"roll":-0.01808450567277757},"location":"Left Ankle"},{"euler":{"heading":0.0026214522869937897,"pitch":-0.21604648043976993,"roll":-0.18443984298698501},"location":"Right Ankle"},{"euler":{"heading":0.0036703350005433955,"pitch":-1.0006152658626681,"roll":0.3271024959904865},"location":"Right Hip"},{"euler":{"heading":0.004326444722447096,"pitch":-0.5590720809438592,"roll":0.40739184506481485},"location":"Right Knee"},{"euler":{"heading":0.001966013516342794,"pitch":-1.126085172445341,"roll":0.3634212262396099},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:39.121"} diff --git a/sensors/treadmill_imu_data/filtered_imu_data_lpf.json b/sensors/treadmill_imu_data/filtered_imu_data_lpf.json new file mode 100644 index 0000000..540e19d --- /dev/null +++ b/sensors/treadmill_imu_data/filtered_imu_data_lpf.json @@ -0,0 +1,3069 @@ +{"sensors":[{"euler":{"heading":367.625,"pitch":128.8125,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":107.6875,"roll":37.00000000000001},"location":"Left Ankle"},{"euler":{"heading":53.375,"pitch":-3.6875,"roll":13.000000000000002},"location":"Right Ankle"},{"euler":{"heading":103.68750000000001,"pitch":-149.125,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":-144.4375,"roll":-50.625},"location":"Right Knee"},{"euler":{"heading":49.375,"pitch":-145.6875,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.599"} +{"sensors":[{"euler":{"heading":366.7,"pitch":128.475,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":100.98125,"pitch":107.9,"roll":37.43750000000001},"location":"Left Ankle"},{"euler":{"heading":55.275000000000006,"pitch":-3.2062500000000003,"roll":13.231250000000001},"location":"Right Ankle"},{"euler":{"heading":102.7625,"pitch":-149.45625,"roll":42.868750000000006},"location":"Right Hip"},{"euler":{"heading":163.48125,"pitch":-143.20625,"roll":-49.45625},"location":"Right Knee"},{"euler":{"heading":49.54375,"pitch":-146.39375,"roll":64.55},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.699"} +{"sensors":[{"euler":{"heading":330.60499999999996,"pitch":127.92125,"roll":34.0375},"location":"Left Knee"},{"euler":{"heading":102.120625,"pitch":108.52250000000001,"roll":38.53125000000001},"location":"Left Ankle"},{"euler":{"heading":57.17875000000001,"pitch":-2.341875,"roll":13.308125000000002},"location":"Right Ankle"},{"euler":{"heading":100.82375,"pitch":-150.116875,"roll":43.356875},"location":"Right Hip"},{"euler":{"heading":161.970625,"pitch":-142.235625,"roll":-48.129374999999996},"location":"Right Knee"},{"euler":{"heading":49.901875000000004,"pitch":-147.660625,"roll":64.8075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.800"} +{"sensors":[{"euler":{"heading":299.23199999999997,"pitch":127.335375,"roll":32.08375},"location":"Left Knee"},{"euler":{"heading":103.82106250000001,"pitch":110.10775000000001,"roll":40.56562500000001},"location":"Left Ankle"},{"euler":{"heading":57.75462500000001,"pitch":-1.4451874999999998,"roll":13.246062500000003},"location":"Right Ankle"},{"euler":{"heading":99.103875,"pitch":-150.6551875,"roll":44.089937500000005},"location":"Right Hip"},{"euler":{"heading":162.36106250000003,"pitch":-142.31206250000002,"roll":-47.4726875},"location":"Right Knee"},{"euler":{"heading":50.26793750000001,"pitch":-148.63206250000002,"roll":65.07675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.900"} +{"sensors":[{"euler":{"heading":272.4213,"pitch":126.8018375,"roll":29.419125},"location":"Left Knee"},{"euler":{"heading":107.08895625000002,"pitch":114.74072500000001,"roll":43.32156250000001},"location":"Left Ankle"},{"euler":{"heading":57.66666250000001,"pitch":-0.4006687499999998,"roll":13.021456250000002},"location":"Right Ankle"},{"euler":{"heading":97.1497375,"pitch":-151.21466875000002,"roll":45.29969375},"location":"Right Hip"},{"euler":{"heading":164.34995625000002,"pitch":-143.08710625000003,"roll":-47.43166875},"location":"Right Knee"},{"euler":{"heading":49.09114375000001,"pitch":-146.85635625000003,"roll":64.925325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.1"} +{"sensors":[{"euler":{"heading":247.16666999999998,"pitch":127.06540375,"roll":27.6084625},"location":"Left Knee"},{"euler":{"heading":108.98631062500003,"pitch":115.66665250000001,"roll":45.858156250000015},"location":"Left Ankle"},{"euler":{"heading":57.12499625000001,"pitch":0.5331481250000002,"roll":12.531810625000002},"location":"Right Ankle"},{"euler":{"heading":95.30351375000001,"pitch":-151.749451875,"roll":46.832224375},"location":"Right Hip"},{"euler":{"heading":167.02746062500003,"pitch":-144.34714562500002,"roll":-47.757251875},"location":"Right Knee"},{"euler":{"heading":46.88202937500001,"pitch":-143.97072062500004,"roll":64.0640425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.101"} +{"sensors":[{"euler":{"heading":256.737503,"pitch":128.558863375,"roll":27.54761625},"location":"Left Knee"},{"euler":{"heading":107.46267956250003,"pitch":114.50623725000001,"roll":45.66609062500001},"location":"Left Ankle"},{"euler":{"heading":56.274996625000014,"pitch":1.3860833125000003,"roll":12.166129562500002},"location":"Right Ankle"},{"euler":{"heading":93.69816237500001,"pitch":-152.28075668750003,"roll":48.5115019375},"location":"Right Hip"},{"euler":{"heading":170.13096456250003,"pitch":-145.94368106250002,"roll":-48.4252766875},"location":"Right Knee"},{"euler":{"heading":44.32507643750001,"pitch":-140.85489856250004,"roll":62.84513825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.201"} +{"sensors":[{"euler":{"heading":256.8262527,"pitch":131.3154770375,"roll":28.630354625000002},"location":"Left Knee"},{"euler":{"heading":103.28516160625003,"pitch":112.64311352500002,"roll":43.06823156250001},"location":"Left Ankle"},{"euler":{"heading":55.06624696250002,"pitch":2.1037249812500005,"roll":11.743266606250002},"location":"Right Ankle"},{"euler":{"heading":92.57209613750001,"pitch":-152.78393101875002,"roll":50.085351743749996},"location":"Right Hip"},{"euler":{"heading":173.41161810625005,"pitch":-148.04931295625002,"roll":-49.257749018750005},"location":"Right Knee"},{"euler":{"heading":42.46756879375001,"pitch":-138.20065870625004,"roll":61.773124425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.302"} +{"sensors":[{"euler":{"heading":257.73737743000004,"pitch":134.34017933374997,"roll":29.8735691625},"location":"Left Knee"},{"euler":{"heading":98.79414544562503,"pitch":110.94755217250001,"roll":39.78015840625001},"location":"Left Ankle"},{"euler":{"heading":53.390872266250014,"pitch":2.6246024831250008,"roll":11.343939945625001},"location":"Right Ankle"},{"euler":{"heading":91.76488652375002,"pitch":-153.42428791687502,"roll":51.626816569374995},"location":"Right Hip"},{"euler":{"heading":176.84545629562504,"pitch":-150.850631660625,"roll":-50.238224116875},"location":"Right Knee"},{"euler":{"heading":41.483311914375015,"pitch":-136.32434283562503,"roll":60.983311982500005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.402"} +{"sensors":[{"euler":{"heading":264.35113968700006,"pitch":136.09366140037497,"roll":30.911212246250003},"location":"Left Knee"},{"euler":{"heading":96.67723090106253,"pitch":110.05904695525001,"roll":37.85214256562501},"location":"Left Ankle"},{"euler":{"heading":50.96428503962502,"pitch":2.499642234812501,"roll":10.790795951062503},"location":"Right Ankle"},{"euler":{"heading":91.30714787137502,"pitch":-154.50685912518753,"roll":53.0078849124375},"location":"Right Hip"},{"euler":{"heading":180.03591066606253,"pitch":-118.6905684945625,"roll":-51.520651705187504},"location":"Right Knee"},{"euler":{"heading":40.953730722937514,"pitch":-134.89190855206252,"roll":60.42873078425001},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.503"} +{"sensors":[{"euler":{"heading":271.2410257183001,"pitch":136.87804526033747,"roll":31.651341021625004},"location":"Left Knee"},{"euler":{"heading":95.17200781095627,"pitch":109.396892259725,"roll":36.82317830906251},"location":"Left Ankle"},{"euler":{"heading":47.45535653566252,"pitch":2.043428011331251,"roll":10.286716355956251},"location":"Right Ankle"},{"euler":{"heading":91.51393308423752,"pitch":-154.4061732126688,"roll":53.80709642119375},"location":"Right Hip"},{"euler":{"heading":184.0198195994563,"pitch":-91.16526164510626,"roll":-52.03108653466876},"location":"Right Knee"},{"euler":{"heading":40.45835765064376,"pitch":-133.60896769685627,"roll":60.25460770582501},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.603"} +{"sensors":[{"euler":{"heading":278.0106731464701,"pitch":137.04024073430372,"roll":32.211206919462505},"location":"Left Knee"},{"euler":{"heading":94.51105702986065,"pitch":108.8509530337525,"roll":36.28461047815626},"location":"Left Ankle"},{"euler":{"heading":44.859820882096265,"pitch":1.457835210198126,"roll":9.926794720360625},"location":"Right Ankle"},{"euler":{"heading":92.35003977581377,"pitch":-153.6905558914019,"roll":53.74513677907438},"location":"Right Hip"},{"euler":{"heading":186.27408763951067,"pitch":-65.03623548059564,"roll":-52.440477881201886},"location":"Right Knee"},{"euler":{"heading":40.36252188557939,"pitch":-133.31057092717066,"roll":60.35414693524251},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.704"} +{"sensors":[{"euler":{"heading":284.9033558318231,"pitch":136.59246666087336,"roll":32.60883622751626},"location":"Left Knee"},{"euler":{"heading":94.62870132687458,"pitch":108.54085773037725,"roll":36.18114943034063},"location":"Left Ankle"},{"euler":{"heading":44.59883879388664,"pitch":0.9620516891783133,"roll":9.921615248324564},"location":"Right Ankle"},{"euler":{"heading":93.4275357982324,"pitch":-153.05900030226175,"roll":52.93312310116694},"location":"Right Hip"},{"euler":{"heading":185.57167887555963,"pitch":-74.38261193253607,"roll":-52.708930093081705},"location":"Right Knee"},{"euler":{"heading":40.776269697021455,"pitch":-133.8232638344536,"roll":60.64998224171826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.804"} +{"sensors":[{"euler":{"heading":291.8255202486408,"pitch":135.75196999478604,"roll":32.622952604764635},"location":"Left Knee"},{"euler":{"heading":95.33458119418712,"pitch":108.47427195733954,"roll":36.51303448730657},"location":"Left Ankle"},{"euler":{"heading":46.58270491449798,"pitch":0.8533465202604821,"roll":10.073203723492108},"location":"Right Ankle"},{"euler":{"heading":93.92228221840917,"pitch":-152.82810027203556,"roll":52.00231079105025},"location":"Right Hip"},{"euler":{"heading":182.65201098800367,"pitch":-80.57560073928246,"roll":-51.93803708377354},"location":"Right Knee"},{"euler":{"heading":41.41114272731931,"pitch":-135.05343745100825,"roll":61.07873401754644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.905"} +{"sensors":[{"euler":{"heading":262.68046822377676,"pitch":134.70177299530744,"roll":32.14815734428817},"location":"Left Knee"},{"euler":{"heading":96.60737307476842,"pitch":108.73309476160559,"roll":37.39923103857591},"location":"Left Ankle"},{"euler":{"heading":49.399434423048184,"pitch":1.161761868234434,"roll":10.497133351142898},"location":"Right Ankle"},{"euler":{"heading":93.22380399656825,"pitch":-152.97654024483202,"roll":51.49582971194523},"location":"Right Hip"},{"euler":{"heading":179.1680598892033,"pitch":-85.68054066535421,"roll":-50.437983375396186},"location":"Right Knee"},{"euler":{"heading":42.03252845458738,"pitch":-136.72934370590744,"roll":61.59586061579179},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.6"} +{"sensors":[{"euler":{"heading":237.3374214013991,"pitch":133.5753456957767,"roll":30.927091609859353},"location":"Left Knee"},{"euler":{"heading":98.42163576729158,"pitch":109.52853528544503,"roll":39.15305793471832},"location":"Left Ankle"},{"euler":{"heading":51.353240980743365,"pitch":1.7268356814109906,"roll":10.759920016028609},"location":"Right Ankle"},{"euler":{"heading":91.92017359691143,"pitch":-153.32888622034883,"roll":51.47124674075071},"location":"Right Hip"},{"euler":{"heading":177.23250390028298,"pitch":-90.9812365988188,"roll":-49.325435037856565},"location":"Right Knee"},{"euler":{"heading":42.76052560912864,"pitch":-138.6814093353167,"roll":62.13002455421262},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.107"} +{"sensors":[{"euler":{"heading":215.9474292612592,"pitch":132.59906112619902,"roll":28.71563244887342},"location":"Left Knee"},{"euler":{"heading":101.62322219056243,"pitch":112.97568175690054,"roll":41.98775214124649},"location":"Left Ankle"},{"euler":{"heading":52.23666688266903,"pitch":2.3041521132698914,"roll":10.833928014425748},"location":"Right Ankle"},{"euler":{"heading":90.9094062372203,"pitch":-153.57099759831394,"roll":51.83662206667564},"location":"Right Hip"},{"euler":{"heading":176.8280035102547,"pitch":-96.36436293893692,"roll":-48.88664153407091},"location":"Right Knee"},{"euler":{"heading":42.546973048215776,"pitch":-138.794518401785,"roll":62.254522098791355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.208"} +{"sensors":[{"euler":{"heading":197.8151863351333,"pitch":131.75165501357912,"roll":26.24406920398608},"location":"Left Knee"},{"euler":{"heading":104.82339997150619,"pitch":116.8593635812105,"roll":44.763976927121846},"location":"Left Ankle"},{"euler":{"heading":52.613000194402126,"pitch":2.9237369019429025,"roll":10.700535212983173},"location":"Right Ankle"},{"euler":{"heading":89.53096561349827,"pitch":-153.96389783848255,"roll":52.69670986000808},"location":"Right Hip"},{"euler":{"heading":177.93895315922921,"pitch":-101.89042664504322,"roll":-49.01672738066382},"location":"Right Knee"},{"euler":{"heading":41.2922757433942,"pitch":-136.67131656160652,"roll":61.91031988891222},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.309"} +{"sensors":[{"euler":{"heading":179.60241770161997,"pitch":132.02023951222122,"roll":25.032162283587475},"location":"Left Knee"},{"euler":{"heading":105.61605997435558,"pitch":116.41092722308944,"roll":46.325079234409664},"location":"Left Ankle"},{"euler":{"heading":52.63295017496191,"pitch":3.4626132117486126,"roll":10.436731691684857},"location":"Right Ankle"},{"euler":{"heading":88.44036905214844,"pitch":-154.2862580546343,"roll":53.78953887400728},"location":"Right Hip"},{"euler":{"heading":179.53255784330628,"pitch":-107.27638398053891,"roll":-49.44630464259744},"location":"Right Knee"},{"euler":{"heading":39.488048169054785,"pitch":-134.32918490544586,"roll":60.944287900021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.409"} +{"sensors":[{"euler":{"heading":186.89217593145798,"pitch":133.58696556099912,"roll":25.72269605522873},"location":"Left Knee"},{"euler":{"heading":102.88570397692003,"pitch":114.99483450078051,"roll":44.723821310968695},"location":"Left Ankle"},{"euler":{"heading":52.33215515746572,"pitch":3.9476018905737513,"roll":10.149308522516371},"location":"Right Ankle"},{"euler":{"heading":87.8213321469336,"pitch":-154.53888224917088,"roll":54.92933498660655},"location":"Right Hip"},{"euler":{"heading":181.49805205897565,"pitch":-112.71749558248503,"roll":-50.08292417833769},"location":"Right Knee"},{"euler":{"heading":37.970493352149305,"pitch":-132.2275164149013,"roll":59.974859110018905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.511"} +{"sensors":[{"euler":{"heading":194.6217083383122,"pitch":135.9282690048992,"roll":27.01292644970586},"location":"Left Knee"},{"euler":{"heading":98.56588357922803,"pitch":113.32660105070246,"roll":41.445189179871825},"location":"Left Ankle"},{"euler":{"heading":51.46768964171915,"pitch":4.321591701516376,"roll":9.815627670264735},"location":"Right Ankle"},{"euler":{"heading":87.48919893224024,"pitch":-154.9912440242538,"roll":56.03015148794589},"location":"Right Hip"},{"euler":{"heading":183.79199685307807,"pitch":-118.43324602423652,"roll":-50.943381760503925},"location":"Right Knee"},{"euler":{"heading":37.17969401693438,"pitch":-130.72351477341118,"roll":59.23987319901702},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.612"} +{"sensors":[{"euler":{"heading":207.553287504481,"pitch":137.6729421044093,"roll":28.36788380473527},"location":"Left Knee"},{"euler":{"heading":95.24679522130522,"pitch":112.41269094563222,"roll":38.74442026188464},"location":"Left Ankle"},{"euler":{"heading":49.877170677547234,"pitch":4.339432531364738,"roll":9.352814903238263},"location":"Right Ankle"},{"euler":{"heading":87.44027903901622,"pitch":-155.74836962182843,"roll":56.9896363391513},"location":"Right Hip"},{"euler":{"heading":186.21904716777027,"pitch":-88.85867142181287,"roll":-51.91154358445353},"location":"Right Knee"},{"euler":{"heading":37.21797461524094,"pitch":-129.75741329607007,"roll":58.834635879115325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.713"} +{"sensors":[{"euler":{"heading":220.60420875403292,"pitch":138.31814789396836,"roll":29.356095424261746},"location":"Left Knee"},{"euler":{"heading":93.8158656991747,"pitch":111.846421851069,"roll":37.45747823569618},"location":"Left Ankle"},{"euler":{"heading":46.97695360979251,"pitch":3.7679892782282645,"roll":8.942533412914438},"location":"Right Ankle"},{"euler":{"heading":88.2400011351146,"pitch":-155.81103265964558,"roll":57.43442270523617},"location":"Right Hip"},{"euler":{"heading":188.92839245099327,"pitch":-63.78530427963159,"roll":-52.62038922600818},"location":"Right Knee"},{"euler":{"heading":37.11492715371685,"pitch":-128.92542196646306,"roll":58.6136722912038},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.813"} +{"sensors":[{"euler":{"heading":233.15003787862963,"pitch":138.15508310457153,"roll":30.18298588183557},"location":"Left Knee"},{"euler":{"heading":93.86552912925723,"pitch":111.6805296659621,"roll":36.89923041212656},"location":"Left Ankle"},{"euler":{"heading":43.77925824881326,"pitch":2.872440350405438,"roll":8.585780071622994},"location":"Right Ankle"},{"euler":{"heading":89.43475102160313,"pitch":-155.04867939368103,"roll":57.10348043471256},"location":"Right Hip"},{"euler":{"heading":191.14805320589397,"pitch":-41.18177385166843,"roll":-53.13960030340736},"location":"Right Knee"},{"euler":{"heading":37.37843443834517,"pitch":-128.43287976981676,"roll":58.72105506208342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.914"} +{"sensors":[{"euler":{"heading":244.80378409076667,"pitch":137.55832479411438,"roll":30.833437293652015},"location":"Left Knee"},{"euler":{"heading":94.4164762163315,"pitch":111.5562266993659,"roll":36.740557370913905},"location":"Left Ankle"},{"euler":{"heading":42.42008242393193,"pitch":2.0476963153648944,"roll":8.377202064460695},"location":"Right Ankle"},{"euler":{"heading":91.14752591944283,"pitch":-154.18756145431294,"roll":56.1056323912413},"location":"Right Hip"},{"euler":{"heading":190.78324788530458,"pitch":-53.89484646650159,"roll":-53.67564027306663},"location":"Right Knee"},{"euler":{"heading":38.07184099451065,"pitch":-128.83334179283509,"roll":59.11144955587508},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.15"} +{"sensors":[{"euler":{"heading":255.84215568169003,"pitch":136.63999231470294,"roll":31.175093564286815},"location":"Left Knee"},{"euler":{"heading":95.23732859469835,"pitch":111.5006040294293,"roll":36.84775163382252},"location":"Left Ankle"},{"euler":{"heading":43.53432418153874,"pitch":1.436676683828405,"roll":8.576981858014626},"location":"Right Ankle"},{"euler":{"heading":92.40152332749855,"pitch":-153.73130530888164,"roll":54.80131915211717},"location":"Right Hip"},{"euler":{"heading":187.75492309677412,"pitch":-62.35536181985143,"roll":-53.27057624575996},"location":"Right Knee"},{"euler":{"heading":39.01465689505959,"pitch":-130.20000761355158,"roll":59.63155460028757},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.116"} +{"sensors":[{"euler":{"heading":230.33294011352103,"pitch":135.49474308323266,"roll":31.082584207858133},"location":"Left Knee"},{"euler":{"heading":96.43859573522852,"pitch":111.60054362648637,"roll":37.36297647044027},"location":"Left Ankle"},{"euler":{"heading":46.26839176338487,"pitch":1.3305090154455648,"roll":9.125533672213164},"location":"Right Ankle"},{"euler":{"heading":92.63637099474869,"pitch":-153.49567477799349,"roll":53.871187236905456},"location":"Right Hip"},{"euler":{"heading":183.3481807870967,"pitch":-69.0135756378663,"roll":-51.66226862118397},"location":"Right Knee"},{"euler":{"heading":40.000691205553636,"pitch":-132.09250685219644,"roll":60.24964914025881},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.216"} +{"sensors":[{"euler":{"heading":207.95589610216894,"pitch":134.18901877490939,"roll":30.449325787072322},"location":"Left Knee"},{"euler":{"heading":98.29473616170567,"pitch":112.08423926383773,"roll":38.582928823396244},"location":"Left Ankle"},{"euler":{"heading":49.272802587046385,"pitch":1.8037081139010085,"roll":9.500480304991848},"location":"Right Ankle"},{"euler":{"heading":91.71023389527383,"pitch":-153.63985730019414,"roll":53.490318513214916},"location":"Right Hip"},{"euler":{"heading":179.52586270838702,"pitch":-75.49971807407967,"roll":-49.827291759065574},"location":"Right Knee"},{"euler":{"heading":41.10062208499828,"pitch":-134.45825616697678,"roll":60.91843422623293},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.318"} +{"sensors":[{"euler":{"heading":188.96030649195205,"pitch":132.85136689741844,"roll":28.88564320836509},"location":"Left Knee"},{"euler":{"heading":100.62776254553512,"pitch":113.62581533745396,"roll":40.81213594105662},"location":"Left Ankle"},{"euler":{"heading":50.864272328341755,"pitch":2.2420873025109076,"roll":9.675432274492664},"location":"Right Ankle"},{"euler":{"heading":90.99546050574645,"pitch":-153.72587157017472,"roll":53.428786661893426},"location":"Right Hip"},{"euler":{"heading":177.75452643754832,"pitch":-82.18724626667169,"roll":-48.894562583159015},"location":"Right Knee"},{"euler":{"heading":42.19680987649845,"pitch":-136.3686805502791,"roll":61.595340803609645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.418"} +{"sensors":[{"euler":{"heading":173.35802584275683,"pitch":131.6537302076766,"roll":26.43457888752858},"location":"Left Knee"},{"euler":{"heading":104.46498629098161,"pitch":118.10698380370856,"roll":43.78092234695096},"location":"Left Ankle"},{"euler":{"heading":51.671595095507584,"pitch":2.792878572259817,"roll":9.664139047043399},"location":"Right Ankle"},{"euler":{"heading":89.7771644551718,"pitch":-153.99078441315723,"roll":53.89215799570408},"location":"Right Hip"},{"euler":{"heading":177.74782379379351,"pitch":-88.71852164000452,"roll":-48.63635632484311},"location":"Right Knee"},{"euler":{"heading":41.5583788888486,"pitch":-135.54431249525118,"roll":61.71705672324868},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.519"} +{"sensors":[{"euler":{"heading":158.77222325848115,"pitch":131.37585718690895,"roll":24.622370998775725},"location":"Left Knee"},{"euler":{"heading":106.52473766188345,"pitch":118.9275354233377,"roll":46.14033011225587},"location":"Left Ankle"},{"euler":{"heading":52.07318558595683,"pitch":3.363590715033835,"roll":9.47272514233906},"location":"Right Ankle"},{"euler":{"heading":88.71819800965463,"pitch":-154.27295597184153,"roll":54.77169219613367},"location":"Right Hip"},{"euler":{"heading":178.88554141441415,"pitch":-95.09666947600408,"roll":-48.8539706923588},"location":"Right Knee"},{"euler":{"heading":40.07754099996374,"pitch":-133.62113124572608,"roll":61.10785105092381},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.620"} +{"sensors":[{"euler":{"heading":178.11375093263302,"pitch":132.32577146821805,"roll":24.597633898898152},"location":"Left Knee"},{"euler":{"heading":105.30976389569511,"pitch":117.40978188100394,"roll":45.86379710103028},"location":"Left Ankle"},{"euler":{"heading":52.078367027361146,"pitch":3.9647316435304516,"roll":9.275452628105155},"location":"Right Ankle"},{"euler":{"heading":87.93387820868918,"pitch":-154.49566037465738,"roll":55.90702297652031},"location":"Right Hip"},{"euler":{"heading":180.63448727297276,"pitch":-101.39950252840367,"roll":-49.31857362312292},"location":"Right Knee"},{"euler":{"heading":38.15728689996736,"pitch":-132.13401812115347,"roll":60.03456594583143},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.721"} +{"sensors":[{"euler":{"heading":186.13362583936973,"pitch":134.56819432139625,"roll":25.89412050900834},"location":"Left Knee"},{"euler":{"heading":101.15378750612561,"pitch":115.35630369290355,"roll":43.02116739092725},"location":"Left Ankle"},{"euler":{"heading":51.52053032462503,"pitch":4.5495084791774065,"roll":9.06665736529464},"location":"Right Ankle"},{"euler":{"heading":87.35924038782026,"pitch":-154.82109433719165,"roll":56.99132067886828},"location":"Right Hip"},{"euler":{"heading":182.9772885456755,"pitch":-107.9033022755633,"roll":-49.98046626081063},"location":"Right Knee"},{"euler":{"heading":36.89780820997063,"pitch":-130.72686630903812,"roll":59.20610935124829},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.822"} +{"sensors":[{"euler":{"heading":194.22026325543277,"pitch":136.97387488925662,"roll":27.348458458107505},"location":"Left Knee"},{"euler":{"heading":97.10715875551304,"pitch":113.82692332361319,"roll":39.85655065183453},"location":"Left Ankle"},{"euler":{"heading":50.249727292162525,"pitch":4.919557631259666,"roll":8.809991628765177},"location":"Right Ankle"},{"euler":{"heading":86.91706634903824,"pitch":-155.5514849034725,"roll":58.06093861098145},"location":"Right Hip"},{"euler":{"heading":185.72330969110794,"pitch":-114.82547204800699,"roll":-50.83241963472957},"location":"Right Knee"},{"euler":{"heading":36.42052738897356,"pitch":-129.86042967813432,"roll":58.62299841612346},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.922"} +{"sensors":[{"euler":{"heading":208.0044869298895,"pitch":138.13898740033096,"roll":28.494862612296757},"location":"Left Knee"},{"euler":{"heading":95.41519287996174,"pitch":112.96298099125187,"roll":38.08339558665108},"location":"Left Ankle"},{"euler":{"heading":48.00600456294627,"pitch":4.396351868133699,"roll":8.41024246588866},"location":"Right Ankle"},{"euler":{"heading":87.19410971413441,"pitch":-155.92133641312526,"roll":58.88609474988331},"location":"Right Hip"},{"euler":{"heading":188.20722872199715,"pitch":-86.46167484320628,"roll":-51.89917767125661},"location":"Right Knee"},{"euler":{"heading":36.22847465007621,"pitch":-129.16813671032088,"roll":58.33569857451111},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.23"} +{"sensors":[{"euler":{"heading":221.51653823690057,"pitch":138.30008866029786,"roll":29.495376351067083},"location":"Left Knee"},{"euler":{"heading":94.83617359196558,"pitch":112.42293289212668,"roll":37.23130602798597},"location":"Left Ankle"},{"euler":{"heading":44.77415410665165,"pitch":3.2379666813203296,"roll":7.937968219299794},"location":"Right Ankle"},{"euler":{"heading":88.28719874272097,"pitch":-155.37920277181274,"roll":58.79748527489498},"location":"Right Hip"},{"euler":{"heading":190.63025584979744,"pitch":-61.89675735888565,"roll":-52.659259904130955},"location":"Right Knee"},{"euler":{"heading":36.680627185068595,"pitch":-129.0513230392888,"roll":58.47087871706},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.124"} +{"sensors":[{"euler":{"heading":234.20863441321052,"pitch":137.8138297942681,"roll":30.402088715960375},"location":"Left Knee"},{"euler":{"heading":95.07755623276901,"pitch":112.13063960291402,"roll":36.87692542518737},"location":"Left Ankle"},{"euler":{"heading":43.234238695986484,"pitch":2.1891700131882965,"roll":7.650421397369814},"location":"Right Ankle"},{"euler":{"heading":90.02097886844888,"pitch":-154.4287824946315,"roll":57.94273674740548},"location":"Right Hip"},{"euler":{"heading":191.0359802648177,"pitch":-73.4883316229971,"roll":-53.46208391371786},"location":"Right Knee"},{"euler":{"heading":37.706314466561736,"pitch":-129.92744073535994,"roll":58.861290845354006},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.225"} +{"sensors":[{"euler":{"heading":246.23152097188947,"pitch":136.9261968148413,"roll":30.95562984436434},"location":"Left Knee"},{"euler":{"heading":95.73855060949212,"pitch":111.99257564262263,"roll":36.876732882668634},"location":"Left Ankle"},{"euler":{"heading":43.96706482638783,"pitch":1.376503011869467,"roll":7.985379257632832},"location":"Right Ankle"},{"euler":{"heading":91.293880981604,"pitch":-153.85465424516835,"roll":56.69221307266494},"location":"Right Hip"},{"euler":{"heading":188.63238223833594,"pitch":-80.54574846069738,"roll":-53.43462552234608},"location":"Right Knee"},{"euler":{"heading":38.81068301990556,"pitch":-131.28469666182394,"roll":59.37516176081861},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.325"} +{"sensors":[{"euler":{"heading":221.69586887470052,"pitch":135.69607713335716,"roll":29.472566859927905},"location":"Left Knee"},{"euler":{"heading":96.87719554854291,"pitch":112.09956807836038,"roll":37.301559594401766},"location":"Left Ankle"},{"euler":{"heading":46.75785834374905,"pitch":1.3263527106825201,"roll":8.59934133186955},"location":"Right Ankle"},{"euler":{"heading":91.7082428834436,"pitch":-153.5691888206515,"roll":55.660491765398454},"location":"Right Hip"},{"euler":{"heading":184.51914401450236,"pitch":-85.62242361462765,"roll":-52.04741297011147},"location":"Right Knee"},{"euler":{"heading":40.01086471791501,"pitch":-133.07497699564155,"roll":60.018895584736754},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.426"} +{"sensors":[{"euler":{"heading":200.2325319872305,"pitch":134.27646942002144,"roll":29.169060173935115},"location":"Left Knee"},{"euler":{"heading":98.60822599368863,"pitch":112.56461127052434,"roll":38.29640363496159},"location":"Left Ankle"},{"euler":{"heading":49.869572509374144,"pitch":1.6062174396142683,"roll":9.051907198682596},"location":"Right Ankle"},{"euler":{"heading":90.91241859509924,"pitch":-153.75601993858635,"roll":55.05694258885861},"location":"Right Hip"},{"euler":{"heading":180.5172296130521,"pitch":-90.2226812531649,"roll":-50.367671673100325},"location":"Right Knee"},{"euler":{"heading":41.33477824612351,"pitch":-135.40497929607739,"roll":60.72950602626308},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.527"} +{"sensors":[{"euler":{"heading":181.85302878850746,"pitch":132.8925724780193,"roll":27.902154156541602},"location":"Left Knee"},{"euler":{"heading":100.57240339431978,"pitch":113.7019001434719,"roll":40.135513271465435},"location":"Left Ankle"},{"euler":{"heading":51.51386525843673,"pitch":2.1330956956528415,"roll":9.352966478814338},"location":"Right Ankle"},{"euler":{"heading":90.26492673558931,"pitch":-153.83666794472774,"roll":54.80749832997275},"location":"Right Hip"},{"euler":{"heading":178.60300665174688,"pitch":-95.3316631278484,"roll":-49.305904505790295},"location":"Right Knee"},{"euler":{"heading":42.53880042151116,"pitch":-137.22698136646966,"roll":61.49405542363677},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.629"} +{"sensors":[{"euler":{"heading":166.84897590965673,"pitch":131.65956523021737,"roll":25.90568874088744},"location":"Left Knee"},{"euler":{"heading":104.79016305488781,"pitch":117.97546012912471,"roll":42.796961944318895},"location":"Left Ankle"},{"euler":{"heading":52.32497873259306,"pitch":2.9635361260875577,"roll":9.392669830932904},"location":"Right Ankle"},{"euler":{"heading":89.50718406203038,"pitch":-153.80300115025497,"roll":55.045498496975476},"location":"Right Hip"},{"euler":{"heading":178.4927059865722,"pitch":-100.64224681506356,"roll":-48.79406405521127},"location":"Right Knee"},{"euler":{"heading":42.07242037936005,"pitch":-136.56053322982268,"roll":61.6696498812731},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.730"} +{"sensors":[{"euler":{"heading":152.89532831869104,"pitch":131.32485870719563,"roll":24.3151198667987},"location":"Left Knee"},{"euler":{"heading":106.81739674939902,"pitch":119.22166411621225,"roll":44.879765749887014},"location":"Left Ankle"},{"euler":{"heading":52.786230859333756,"pitch":3.6921825134788024,"roll":9.259652847839615},"location":"Right Ankle"},{"euler":{"heading":88.70646565582734,"pitch":-153.79770103522947,"roll":55.653448647277926},"location":"Right Hip"},{"euler":{"heading":179.51843538791496,"pitch":-105.9655221335572,"roll":-48.80840764969015},"location":"Right Knee"},{"euler":{"heading":40.80892834142404,"pitch":-134.59822990684043,"roll":61.19643489314579},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.831"} +{"sensors":[{"euler":{"heading":161.85579548682193,"pitch":132.34237283647607,"roll":24.34610788011883},"location":"Left Knee"},{"euler":{"heading":105.56690707445912,"pitch":117.74324770459103,"roll":44.84178917489832},"location":"Left Ankle"},{"euler":{"heading":52.87635777340038,"pitch":4.3792142621309225,"roll":9.033687563055652},"location":"Right Ankle"},{"euler":{"heading":87.9358190902446,"pitch":-153.82418093170654,"roll":56.53810378255014},"location":"Right Hip"},{"euler":{"heading":181.3728418491235,"pitch":-111.36896992020148,"roll":-49.22756688472114},"location":"Right Knee"},{"euler":{"heading":38.965535507281636,"pitch":-132.2571569161564,"roll":60.30179140383122},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.931"} +{"sensors":[{"euler":{"heading":171.37646593813975,"pitch":134.59563555282847,"roll":25.72399709210695},"location":"Left Knee"},{"euler":{"heading":101.51646636701321,"pitch":115.66267293413193,"roll":42.32636025740849},"location":"Left Ankle"},{"euler":{"heading":52.45122199606034,"pitch":5.02879283591783,"roll":8.792818806750088},"location":"Right Ankle"},{"euler":{"heading":87.39848718122015,"pitch":-153.94176283853588,"roll":57.44679340429513},"location":"Right Hip"},{"euler":{"heading":183.79805766421114,"pitch":-117.00707292818134,"roll":-49.87981019624903},"location":"Right Knee"},{"euler":{"heading":37.43148195655347,"pitch":-130.29394122454076,"roll":59.4841122634481},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.32"} +{"sensors":[{"euler":{"heading":180.89506934432578,"pitch":137.39232199754562,"roll":27.289097382896255},"location":"Left Knee"},{"euler":{"heading":96.8773197303119,"pitch":113.55890564071875,"roll":38.92497423166764},"location":"Left Ankle"},{"euler":{"heading":51.43109979645431,"pitch":5.450913552326047,"roll":8.58228692607508},"location":"Right Ankle"},{"euler":{"heading":87.02738846309813,"pitch":-154.4163365546823,"roll":58.452114063865615},"location":"Right Hip"},{"euler":{"heading":186.48075189779004,"pitch":-122.97511563536321,"roll":-50.754329176624125},"location":"Right Knee"},{"euler":{"heading":36.73833376089812,"pitch":-129.05204710208668,"roll":58.873201037103286},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.132"} +{"sensors":[{"euler":{"heading":194.8430624098932,"pitch":139.09683979779106,"roll":28.65393764460663},"location":"Left Knee"},{"euler":{"heading":93.9583377572807,"pitch":112.19051507664688,"roll":36.66997680850088},"location":"Left Ankle"},{"euler":{"heading":49.550489816808884,"pitch":5.368322197093443,"roll":8.161558233467572},"location":"Right Ankle"},{"euler":{"heading":86.83089961678832,"pitch":-155.29345289921406,"roll":59.513152657479054},"location":"Right Hip"},{"euler":{"heading":189.20767670801104,"pitch":-93.6088540718269,"roll":-51.747646258961716},"location":"Right Knee"},{"euler":{"heading":36.40200038480831,"pitch":-128.153092391878,"roll":58.39838093339296},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.233"} +{"sensors":[{"euler":{"heading":208.5712561689039,"pitch":139.73715581801196,"roll":29.744793880145966},"location":"Left Knee"},{"euler":{"heading":92.40000398155264,"pitch":111.17146356898219,"roll":35.42172912765079},"location":"Left Ankle"},{"euler":{"heading":46.470440835127995,"pitch":4.562739977384099,"roll":7.726652410120814},"location":"Right Ankle"},{"euler":{"heading":87.42905965510948,"pitch":-155.43910760929268,"roll":59.86183739173116},"location":"Right Hip"},{"euler":{"heading":191.96190903720995,"pitch":-68.6542186646442,"roll":-52.41663163306554},"location":"Right Knee"},{"euler":{"heading":36.19305034632748,"pitch":-127.4377831526902,"roll":58.38979284005366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.334"} +{"sensors":[{"euler":{"heading":221.5141305520135,"pitch":139.73219023621078,"roll":30.59531449213137},"location":"Left Knee"},{"euler":{"heading":91.69750358339738,"pitch":110.30431721208397,"roll":34.79205621488571},"location":"Left Ankle"},{"euler":{"heading":43.9796467516152,"pitch":3.4939659796456892,"roll":7.522737169108733},"location":"Right Ankle"},{"euler":{"heading":88.65490368959854,"pitch":-154.82019684836342,"roll":59.388153652558046},"location":"Right Hip"},{"euler":{"heading":193.60946813348895,"pitch":-45.03254679817979,"roll":-53.04996846975899},"location":"Right Knee"},{"euler":{"heading":36.49249531169474,"pitch":-127.61900483742119,"roll":58.6820635560483},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.435"} +{"sensors":[{"euler":{"heading":233.56271749681218,"pitch":139.2777212125897,"roll":31.204533042918232},"location":"Left Knee"},{"euler":{"heading":91.87150322505764,"pitch":109.61138549087558,"roll":34.86910059339714},"location":"Left Ankle"},{"euler":{"heading":43.80043207645368,"pitch":2.64456938168112,"roll":7.707963452197859},"location":"Right Ankle"},{"euler":{"heading":90.15816332063869,"pitch":-153.9506771635271,"roll":58.40558828730224},"location":"Right Hip"},{"euler":{"heading":192.74227132014005,"pitch":-56.485542118361806,"roll":-53.52622162278309},"location":"Right Knee"},{"euler":{"heading":37.23074578052527,"pitch":-128.63835435367906,"roll":59.170107200443475},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.536"} +{"sensors":[{"euler":{"heading":245.27519574713097,"pitch":138.38744909133075,"roll":31.44657973862641},"location":"Left Knee"},{"euler":{"heading":92.77185290255188,"pitch":109.20649694178803,"roll":35.47594053405743},"location":"Left Ankle"},{"euler":{"heading":45.48288886880832,"pitch":2.2988624435130083,"roll":8.368417106978074},"location":"Right Ankle"},{"euler":{"heading":90.91734698857483,"pitch":-153.4868594471744,"roll":57.33377945857201},"location":"Right Hip"},{"euler":{"heading":189.64304418812605,"pitch":-64.64948790652562,"roll":-52.86109946050478},"location":"Right Knee"},{"euler":{"heading":38.176421202472746,"pitch":-130.08701891831117,"roll":59.771846480399134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.636"} +{"sensors":[{"euler":{"heading":256.57267617241786,"pitch":137.19870418219767,"roll":31.183171764763774},"location":"Left Knee"},{"euler":{"heading":94.18841761229669,"pitch":109.20459724760923,"roll":36.534596480651686},"location":"Left Ankle"},{"euler":{"heading":48.47834998192749,"pitch":2.2752261991617075,"roll":8.881575396280267},"location":"Right Ankle"},{"euler":{"heading":90.78811228971736,"pitch":-153.40067350245695,"roll":56.56290151271481},"location":"Right Hip"},{"euler":{"heading":185.54123976931348,"pitch":-71.10953911587306,"roll":-51.4187395144543},"location":"Right Knee"},{"euler":{"heading":39.29002908222547,"pitch":-131.96581702648007,"roll":60.50716183235922},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.737"} +{"sensors":[{"euler":{"heading":231.59040855517608,"pitch":135.8975837639779,"roll":30.252354588287396},"location":"Left Knee"},{"euler":{"heading":96.11332585106702,"pitch":109.74038752284831,"roll":38.24988683258652},"location":"Left Ankle"},{"euler":{"heading":50.79301498373474,"pitch":2.378953579245537,"roll":9.23716785665224},"location":"Right Ankle"},{"euler":{"heading":90.20930106074563,"pitch":-153.49185615221126,"roll":56.05661136144333},"location":"Right Hip"},{"euler":{"heading":182.53086579238212,"pitch":-77.39233520428576,"roll":-50.25186556300888},"location":"Right Knee"},{"euler":{"heading":40.62352617400293,"pitch":-134.41923532383205,"roll":61.2376956491233},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.837"} +{"sensors":[{"euler":{"heading":210.45636769965847,"pitch":134.75157538758012,"roll":28.227119129458657},"location":"Left Knee"},{"euler":{"heading":98.80824326596033,"pitch":112.31009877056349,"roll":40.93114814932787},"location":"Left Ankle"},{"euler":{"heading":51.90746348536127,"pitch":2.4223082213209834,"roll":9.350951070987016},"location":"Right Ankle"},{"euler":{"heading":89.91337095467107,"pitch":-153.51142053699013,"roll":55.869700225299},"location":"Right Hip"},{"euler":{"heading":181.1465292131439,"pitch":-83.74685168385719,"roll":-49.75792900670799},"location":"Right Knee"},{"euler":{"heading":40.70492355660264,"pitch":-134.81481179144885,"roll":61.532676084210976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.938"} +{"sensors":[{"euler":{"heading":192.27948092969262,"pitch":133.84516784882211,"roll":26.12315721651279},"location":"Left Knee"},{"euler":{"heading":101.3149189393643,"pitch":114.77283889350713,"roll":43.43803333439509},"location":"Left Ankle"},{"euler":{"heading":52.585467136825145,"pitch":2.355077399188885,"roll":9.303355963888313},"location":"Right Ankle"},{"euler":{"heading":89.25328385920396,"pitch":-153.7665284832911,"roll":56.1952302027691},"location":"Right Hip"},{"euler":{"heading":180.95687629182953,"pitch":-89.84716651547149,"roll":-49.9571361060372},"location":"Right Knee"},{"euler":{"heading":39.87193120094237,"pitch":-133.12083061230396,"roll":61.27940847578988},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.39"} +{"sensors":[{"euler":{"heading":173.72028283672336,"pitch":133.9106510639399,"roll":25.392091494861514},"location":"Left Knee"},{"euler":{"heading":101.80217704542788,"pitch":113.95180500415641,"roll":44.51298000095558},"location":"Left Ankle"},{"euler":{"heading":52.876920423142636,"pitch":2.2508196592699967,"roll":9.204270367499483},"location":"Right Ankle"},{"euler":{"heading":88.90920547328356,"pitch":-153.92112563496198,"roll":56.84445718249219},"location":"Right Hip"},{"euler":{"heading":181.36743866264658,"pitch":-95.76244986392435,"roll":-50.54267249543348},"location":"Right Knee"},{"euler":{"heading":38.47848808084814,"pitch":-131.23374755107358,"roll":60.42021762821089},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.140"} +{"sensors":[{"euler":{"heading":189.16700455305102,"pitch":135.30708595754592,"roll":26.271632345375362},"location":"Left Knee"},{"euler":{"heading":99.1657093408851,"pitch":112.51912450374078,"roll":42.942932000860026},"location":"Left Ankle"},{"euler":{"heading":52.726728380828376,"pitch":2.1944876933429973,"roll":9.046343330749535},"location":"Right Ankle"},{"euler":{"heading":88.79328492595522,"pitch":-154.12901307146578,"roll":57.528761464242976},"location":"Right Hip"},{"euler":{"heading":182.3369447963819,"pitch":-101.7987048775319,"roll":-51.300905245890135},"location":"Right Knee"},{"euler":{"heading":37.04938927276333,"pitch":-129.2666227959662,"roll":59.496945865389804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.240"} +{"sensors":[{"euler":{"heading":201.1690540977459,"pitch":137.68887736179133,"roll":27.781969110837824},"location":"Left Knee"},{"euler":{"heading":95.00538840679658,"pitch":110.74846205336671,"roll":39.654888800774025},"location":"Left Ankle"},{"euler":{"heading":51.960305542745544,"pitch":2.237538924008698,"roll":8.660458997674581},"location":"Right Ankle"},{"euler":{"heading":88.9202064333597,"pitch":-154.35986176431922,"roll":58.22588531781868},"location":"Right Hip"},{"euler":{"heading":183.89075031674372,"pitch":-108.18133438977871,"roll":-52.252064721301124},"location":"Right Knee"},{"euler":{"heading":36.375700345487,"pitch":-127.9024605163696,"roll":58.75975127885082},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.341"} +{"sensors":[{"euler":{"heading":212.98339868797134,"pitch":139.5137396256122,"roll":29.166272199754044},"location":"Left Knee"},{"euler":{"heading":91.77984956611694,"pitch":109.74236584803003,"roll":36.83314992069662},"location":"Left Ankle"},{"euler":{"heading":50.545524988470994,"pitch":2.1450350316078284,"roll":8.244413097907124},"location":"Right Ankle"},{"euler":{"heading":89.12818579002372,"pitch":-155.03012558788728,"roll":59.015796786036816},"location":"Right Hip"},{"euler":{"heading":185.83292528506936,"pitch":-115.25070095080085,"roll":-53.23935824917101},"location":"Right Knee"},{"euler":{"heading":36.44438031093829,"pitch":-127.04971446473265,"roll":58.29627615096574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.442"} +{"sensors":[{"euler":{"heading":225.0163088191742,"pitch":140.17486566305098,"roll":30.29964497977864},"location":"Left Knee"},{"euler":{"heading":90.63936460950524,"pitch":109.28687926322704,"roll":35.512334928626956},"location":"Left Ankle"},{"euler":{"heading":47.98472248962389,"pitch":1.3680315284470457,"roll":7.813721788116411},"location":"Right Ankle"},{"euler":{"heading":89.76536721102134,"pitch":-155.27711302909856,"roll":59.526717107433136},"location":"Right Hip"},{"euler":{"heading":188.06838275656241,"pitch":-87.36938085572076,"roll":-54.03417242425391},"location":"Right Knee"},{"euler":{"heading":36.34369227984447,"pitch":-126.29474301825938,"roll":58.079148535869166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.543"} +{"sensors":[{"euler":{"heading":236.68967793725682,"pitch":140.02612909674588,"roll":31.188430481800776},"location":"Left Knee"},{"euler":{"heading":90.43167814855472,"pitch":109.00194133690434,"roll":34.79235143576426},"location":"Left Ankle"},{"euler":{"heading":44.823750240661504,"pitch":0.37497837560234115,"roll":7.34484960930477},"location":"Right Ankle"},{"euler":{"heading":90.9763304899192,"pitch":-154.7244017261887,"roll":59.21779539668982},"location":"Right Hip"},{"euler":{"heading":190.28029448090618,"pitch":-62.55119277014869,"roll":-54.587005181828516},"location":"Right Knee"},{"euler":{"heading":36.734323051860024,"pitch":-126.02776871643344,"roll":58.29623368228225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.644"} +{"sensors":[{"euler":{"heading":247.38946014353115,"pitch":139.53601618707128,"roll":31.7945874336207},"location":"Left Knee"},{"euler":{"heading":90.48851033369925,"pitch":108.68924720321391,"roll":34.51311629218784},"location":"Left Ankle"},{"euler":{"heading":43.64762521659535,"pitch":-0.468769461957893,"roll":7.310364648374294},"location":"Right Ankle"},{"euler":{"heading":92.57869744092729,"pitch":-153.80196155356984,"roll":58.32101585702084},"location":"Right Hip"},{"euler":{"heading":190.32101503281555,"pitch":-73.16482349313382,"roll":-55.159554663645665},"location":"Right Knee"},{"euler":{"heading":37.33589074667402,"pitch":-126.6062418447901,"roll":58.74161031405402},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.744"} +{"sensors":[{"euler":{"heading":257.50051412917804,"pitch":138.76991456836416,"roll":32.06512869025863},"location":"Left Knee"},{"euler":{"heading":90.97090930032932,"pitch":108.44532248289252,"roll":34.64930466296906},"location":"Left Ankle"},{"euler":{"heading":44.83286269493581,"pitch":-0.5531425157621037,"roll":7.623078183536864},"location":"Right Ankle"},{"euler":{"heading":93.58332769683456,"pitch":-153.22801539821288,"roll":57.15141427131876},"location":"Right Hip"},{"euler":{"heading":187.957663529534,"pitch":-80.01084114382044,"roll":-54.6060991972811},"location":"Right Knee"},{"euler":{"heading":38.027301672006615,"pitch":-127.8081176603111,"roll":59.29869928264862},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.845"} +{"sensors":[{"euler":{"heading":267.26921271626026,"pitch":137.64292311152775,"roll":31.96486582123277},"location":"Left Knee"},{"euler":{"heading":91.93631837029639,"pitch":108.38204023460327,"roll":35.24687419667215},"location":"Left Ankle"},{"euler":{"heading":47.54957642544223,"pitch":-0.3415782641858934,"roll":8.192020365183179},"location":"Right Ankle"},{"euler":{"heading":93.5562449271511,"pitch":-152.9989638583916,"roll":56.267522844186885},"location":"Right Hip"},{"euler":{"heading":184.1493971765806,"pitch":-84.9972570294384,"roll":-53.07673927755299},"location":"Right Knee"},{"euler":{"heading":38.92457150480596,"pitch":-129.54605589428,"roll":60.01257935438376},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.946"} +{"sensors":[{"euler":{"heading":240.79854144463422,"pitch":136.32863080037498,"roll":31.362129239109493},"location":"Left Knee"},{"euler":{"heading":93.61768653326675,"pitch":108.71883621114294,"roll":36.378436777004936},"location":"Left Ankle"},{"euler":{"heading":50.12586878289801,"pitch":0.330079562232696,"roll":8.50406832866486},"location":"Right Ankle"},{"euler":{"heading":92.681870434436,"pitch":-153.04281747255243,"roll":55.7032705597682},"location":"Right Hip"},{"euler":{"heading":180.96570745892254,"pitch":-89.82878132649456,"roll":-51.45656534979769},"location":"Right Knee"},{"euler":{"heading":40.01961435432537,"pitch":-131.953950304852,"roll":60.78007141894538},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.46"} +{"sensors":[{"euler":{"heading":217.8436873001708,"pitch":135.28951772033747,"roll":29.807166315198543},"location":"Left Knee"},{"euler":{"heading":95.47466787994007,"pitch":109.81570259002865,"roll":38.46559309930444},"location":"Left Ankle"},{"euler":{"heading":51.31953190460821,"pitch":0.9470716060094264,"roll":8.653661495798374},"location":"Right Ankle"},{"euler":{"heading":91.76368339099238,"pitch":-153.1510357252972,"roll":55.520443503791384},"location":"Right Hip"},{"euler":{"heading":179.7003867130303,"pitch":-95.0021531938451,"roll":-50.58590881481792},"location":"Right Knee"},{"euler":{"heading":40.68640291889284,"pitch":-133.98355527436678,"roll":61.34581427705085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.147"} +{"sensors":[{"euler":{"heading":198.89681857015375,"pitch":133.92306594830373,"roll":27.50144968367869},"location":"Left Knee"},{"euler":{"heading":99.00845109194606,"pitch":113.21538233102578,"roll":41.450283789374},"location":"Left Ankle"},{"euler":{"heading":51.86882871414739,"pitch":1.6711144454084839,"roll":8.607045346218538},"location":"Right Ankle"},{"euler":{"heading":90.46856505189314,"pitch":-153.38593215276748,"roll":55.88714915341225},"location":"Right Hip"},{"euler":{"heading":180.01159804172727,"pitch":-100.30193787446059,"roll":-50.33981793333613},"location":"Right Knee"},{"euler":{"heading":40.25526262700356,"pitch":-132.9914497469301,"roll":61.598732849345765},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.247"} +{"sensors":[{"euler":{"heading":181.33213671313837,"pitch":133.63075935347337,"roll":25.83255471531082},"location":"Left Knee"},{"euler":{"heading":100.55135598275146,"pitch":113.26259409792321,"roll":43.6740054104366},"location":"Left Ankle"},{"euler":{"heading":51.98194584273266,"pitch":2.3102530008676356,"roll":8.440090811596685},"location":"Right Ankle"},{"euler":{"heading":89.47795854670383,"pitch":-153.55983893749072,"roll":56.66718423807103},"location":"Right Hip"},{"euler":{"heading":181.08543823755454,"pitch":-105.48424408701455,"roll":-50.57458614000252},"location":"Right Knee"},{"euler":{"heading":39.004736364303206,"pitch":-131.2298047722371,"roll":61.09510956441119},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.348"} +{"sensors":[{"euler":{"heading":198.17392304182454,"pitch":134.486433418126,"roll":25.98679924377974},"location":"Left Knee"},{"euler":{"heading":99.35872038447631,"pitch":111.8238346881309,"roll":43.42535486939294},"location":"Left Ankle"},{"euler":{"heading":51.75250125845939,"pitch":2.866727700780872,"roll":8.233581730437017},"location":"Right Ankle"},{"euler":{"heading":88.94266269203345,"pitch":-153.62260504374166,"roll":57.562965814263926},"location":"Right Hip"},{"euler":{"heading":182.42689441379912,"pitch":-110.61081967831309,"roll":-51.06712752600227},"location":"Right Knee"},{"euler":{"heading":37.65426272787288,"pitch":-129.4130742950134,"roll":60.21059860797007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.448"} +{"sensors":[{"euler":{"heading":209.8127807376421,"pitch":136.61279007631342,"roll":27.356869319401767},"location":"Left Knee"},{"euler":{"heading":95.63534834602869,"pitch":110.23520121931782,"roll":40.46406938245365},"location":"Left Ankle"},{"euler":{"heading":51.014751132613455,"pitch":3.2863049307027845,"roll":8.010223557393315},"location":"Right Ankle"},{"euler":{"heading":88.72964642283011,"pitch":-153.8228445393675,"roll":58.41916923283753},"location":"Right Hip"},{"euler":{"heading":184.10295497241924,"pitch":-115.89348771048178,"roll":-51.816664773402046},"location":"Right Knee"},{"euler":{"heading":36.732586455085595,"pitch":-127.90926686551205,"roll":59.42703874717307},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.549"} +{"sensors":[{"euler":{"heading":220.1627526638779,"pitch":138.8952610686821,"roll":28.76493238746159},"location":"Left Knee"},{"euler":{"heading":91.88431351142583,"pitch":109.11168109738604,"roll":37.28016244420829},"location":"Left Ankle"},{"euler":{"heading":49.63202601935211,"pitch":3.4389244376325063,"roll":7.727951201653984},"location":"Right Ankle"},{"euler":{"heading":88.6691817805471,"pitch":-154.4905600854308,"roll":59.26475230955378},"location":"Right Hip"},{"euler":{"heading":186.0489094751773,"pitch":-121.68538893943361,"roll":-52.759998296061845},"location":"Right Knee"},{"euler":{"heading":36.48432780957703,"pitch":-127.03084017896086,"roll":58.79058487245577},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.650"} +{"sensors":[{"euler":{"heading":231.26522739749012,"pitch":139.91198496181389,"roll":29.894689148715436},"location":"Left Knee"},{"euler":{"heading":90.18338216028324,"pitch":108.63176298764745,"roll":35.67714619978746},"location":"Left Ankle"},{"euler":{"heading":47.4750734174169,"pitch":2.876281993869256,"roll":7.280156081488586},"location":"Right Ankle"},{"euler":{"heading":88.92101360249241,"pitch":-155.2352540768877,"roll":60.000777078598404},"location":"Right Hip"},{"euler":{"heading":188.12526852765959,"pitch":-92.57935004549024,"roll":-53.86524846645566},"location":"Right Knee"},{"euler":{"heading":36.46714502861933,"pitch":-126.35275616106478,"roll":58.411526385210195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.750"} +{"sensors":[{"euler":{"heading":242.33870465774112,"pitch":139.9770364656325,"roll":30.74897023384389},"location":"Left Knee"},{"euler":{"heading":89.65254394425492,"pitch":108.41858668888271,"roll":34.80943157980872},"location":"Left Ankle"},{"euler":{"heading":44.052566075675216,"pitch":2.2136537944823305,"roll":6.789640473339728},"location":"Right Ankle"},{"euler":{"heading":89.86016224224316,"pitch":-155.01797866919895,"roll":60.01319937073857},"location":"Right Hip"},{"euler":{"heading":191.10024167489362,"pitch":-67.81516504094122,"roll":-54.2912236198101},"location":"Right Knee"},{"euler":{"heading":36.84543052575739,"pitch":-125.97998054495831,"roll":58.48287374668918},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.851"} +{"sensors":[{"euler":{"heading":252.861084191967,"pitch":139.46683281906925,"roll":31.367823210459505},"location":"Left Knee"},{"euler":{"heading":89.85603954982943,"pitch":108.31422801999445,"roll":34.472238421827846},"location":"Left Ankle"},{"euler":{"heading":42.26605946810769,"pitch":1.5547884150340974,"roll":6.760676426005755},"location":"Right Ankle"},{"euler":{"heading":91.03039601801885,"pitch":-154.34743080227906,"roll":59.42437943366471},"location":"Right Hip"},{"euler":{"heading":192.24021750740425,"pitch":-43.321148536847105,"roll":-54.75585125782909},"location":"Right Knee"},{"euler":{"heading":37.44213747318165,"pitch":-126.26323249046249,"roll":58.853336372020266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.951"} +{"sensors":[{"euler":{"heading":262.8499757727703,"pitch":138.54514953716233,"roll":31.806040889413556},"location":"Left Knee"},{"euler":{"heading":91.1141855948465,"pitch":108.47655521799501,"roll":34.862514579645065},"location":"Left Ankle"},{"euler":{"heading":42.80195352129692,"pitch":0.8993095735306877,"roll":7.20335878340518},"location":"Right Ankle"},{"euler":{"heading":92.23360641621697,"pitch":-153.70643772205116,"roll":58.28819149029824},"location":"Right Hip"},{"euler":{"heading":190.4661957566638,"pitch":-53.7765336831624,"roll":-54.867766132046185},"location":"Right Knee"},{"euler":{"heading":38.37917372586349,"pitch":-127.48690924141624,"roll":59.355502734818245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.52"} +{"sensors":[{"euler":{"heading":272.5212281954933,"pitch":137.2656345834461,"roll":31.881686800472202},"location":"Left Knee"},{"euler":{"heading":92.72151703536186,"pitch":108.79764969619552,"roll":35.59501312168056},"location":"Left Ankle"},{"euler":{"heading":45.209258169167235,"pitch":0.796878616177619,"roll":7.876772905064662},"location":"Right Ankle"},{"euler":{"heading":92.81649577459528,"pitch":-153.40454394984604,"roll":57.14062234126841},"location":"Right Hip"},{"euler":{"heading":186.45082618099744,"pitch":-61.49263031484616,"roll":-53.59973951884157},"location":"Right Knee"},{"euler":{"heading":39.54750635327714,"pitch":-129.2257183172746,"roll":59.994952461336425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.152"} +{"sensors":[{"euler":{"heading":245.90660537594394,"pitch":135.7453211251015,"roll":31.424768120424982},"location":"Left Knee"},{"euler":{"heading":94.84311533182567,"pitch":109.46788472657597,"roll":36.873011809512505},"location":"Left Ankle"},{"euler":{"heading":48.357082352250515,"pitch":0.9921907545598572,"roll":8.370345614558197},"location":"Right Ankle"},{"euler":{"heading":92.42234619713575,"pitch":-153.42658955486147,"roll":56.35781010714157},"location":"Right Hip"},{"euler":{"heading":182.0869935628977,"pitch":-68.30586728336155,"roll":-51.79601556695741},"location":"Right Knee"},{"euler":{"heading":40.75525571794943,"pitch":-131.28439648554715,"roll":60.73920721520278},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.253"} +{"sensors":[{"euler":{"heading":222.85344483834953,"pitch":134.20828901259137,"roll":30.132291308382484},"location":"Left Knee"},{"euler":{"heading":97.57130379864311,"pitch":110.95234625391838,"roll":39.06071062856125},"location":"Left Ankle"},{"euler":{"heading":50.077624117025465,"pitch":1.5742216791038715,"roll":8.714561053102377},"location":"Right Ankle"},{"euler":{"heading":91.71136157742218,"pitch":-153.57143059937533,"roll":55.90327909642741},"location":"Right Hip"},{"euler":{"heading":180.00954420660793,"pitch":-75.41278055502539,"roll":-50.722664010261674},"location":"Right Knee"},{"euler":{"heading":41.87348014615449,"pitch":-133.22470683699242,"roll":61.48403649368251},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.354"} +{"sensors":[{"euler":{"heading":203.61810035451458,"pitch":132.71871011133223,"roll":27.856562177544237},"location":"Left Knee"},{"euler":{"heading":101.58917341877881,"pitch":115.24461162852654,"roll":42.010889565705135},"location":"Left Ankle"},{"euler":{"heading":50.81986170532292,"pitch":2.2667995111934847,"roll":8.86810494779214},"location":"Right Ankle"},{"euler":{"heading":91.22147541967998,"pitch":-153.5892875394378,"roll":55.944201186784674},"location":"Right Hip"},{"euler":{"heading":181.08358978594714,"pitch":-82.44025249952287,"roll":-50.2941476092355},"location":"Right Knee"},{"euler":{"heading":41.704882131539044,"pitch":-131.2334861532932,"roll":61.66688284431426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.455"} +{"sensors":[{"euler":{"heading":186.48129031906313,"pitch":131.953089100199,"roll":25.714655959789816},"location":"Left Knee"},{"euler":{"heading":104.19275607690093,"pitch":117.0451504656739,"roll":44.72230060913462},"location":"Left Ankle"},{"euler":{"heading":51.10662553479063,"pitch":2.940119560074136,"roll":8.831294453012926},"location":"Right Ankle"},{"euler":{"heading":90.53057787771199,"pitch":-153.680358785494,"roll":56.48103106810621},"location":"Right Hip"},{"euler":{"heading":181.75648080735243,"pitch":-89.32747724957059,"roll":-50.370982848311954},"location":"Right Knee"},{"euler":{"heading":40.484393918385145,"pitch":-129.59138753796387,"roll":61.05019455988284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.556"} +{"sensors":[{"euler":{"heading":168.53941128715684,"pitch":132.32028019017912,"roll":25.136940363810833},"location":"Left Knee"},{"euler":{"heading":103.77973046921085,"pitch":115.9968854191065,"roll":45.11257054822116},"location":"Left Ankle"},{"euler":{"heading":50.98971298131157,"pitch":3.6023576040667225,"roll":8.691915007711634},"location":"Right Ankle"},{"euler":{"heading":90.0337700899408,"pitch":-153.6685729069446,"roll":57.22042796129559},"location":"Right Hip"},{"euler":{"heading":183.0495827266172,"pitch":-96.06972952461354,"roll":-50.70888456348076},"location":"Right Knee"},{"euler":{"heading":38.84220452654663,"pitch":-127.8259987841675,"roll":60.007675103894556},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.656"} +{"sensors":[{"euler":{"heading":184.31047015844115,"pitch":134.09450217116122,"roll":26.179496327429753},"location":"Left Knee"},{"euler":{"heading":100.23925742228977,"pitch":114.29719687719586,"roll":42.78881349339904},"location":"Left Ankle"},{"euler":{"heading":50.415741683180414,"pitch":4.2546218436600505,"roll":8.51022350694047},"location":"Right Ankle"},{"euler":{"heading":89.71789308094672,"pitch":-153.70171561625014,"roll":57.973385165166036},"location":"Right Hip"},{"euler":{"heading":184.8571244539555,"pitch":-102.84400657215218,"roll":-51.256746107132685},"location":"Right Knee"},{"euler":{"heading":37.501734073891974,"pitch":-126.21839890575075,"roll":59.075657593505106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.757"} +{"sensors":[{"euler":{"heading":192.49192314259705,"pitch":136.6163019540451,"roll":27.64279669468678},"location":"Left Knee"},{"euler":{"heading":95.8778316800608,"pitch":112.47372718947628,"roll":39.472432144059134},"location":"Left Ankle"},{"euler":{"heading":49.27416751486237,"pitch":4.691659659294046,"roll":8.296701156246423},"location":"Right Ankle"},{"euler":{"heading":89.56485377285205,"pitch":-153.96904405462513,"roll":58.744796648649434},"location":"Right Hip"},{"euler":{"heading":187.02141200855996,"pitch":-109.84710591493698,"roll":-52.068571496419416},"location":"Right Knee"},{"euler":{"heading":36.82656066650278,"pitch":-125.33405901517567,"roll":58.386841834154595},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.858"} +{"sensors":[{"euler":{"heading":205.87398082833735,"pitch":138.09217175864057,"roll":28.866017025218103},"location":"Left Knee"},{"euler":{"heading":93.3587985120547,"pitch":111.41385447052865,"roll":37.25643892965322},"location":"Left Ankle"},{"euler":{"heading":47.23425076337614,"pitch":4.309993693364642,"roll":7.87953104062178},"location":"Right Ankle"},{"euler":{"heading":89.67086839556684,"pitch":-154.5346396491626,"roll":59.37031698378449},"location":"Right Hip"},{"euler":{"heading":189.12552080770396,"pitch":-81.58114532344328,"roll":-53.174214346777475},"location":"Right Knee"},{"euler":{"heading":36.368904599852506,"pitch":-124.71315311365811,"roll":57.948157650739134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.958"} +{"sensors":[{"euler":{"heading":219.08658274550362,"pitch":138.58295458277652,"roll":29.698165322696294},"location":"Left Knee"},{"euler":{"heading":91.82291866084924,"pitch":110.54746902347578,"roll":36.049545036687896},"location":"Left Ankle"},{"euler":{"heading":43.99832568703852,"pitch":3.4164943240281778,"roll":7.285327936559602},"location":"Right Ankle"},{"euler":{"heading":90.45378155601016,"pitch":-154.17492568424635,"roll":59.252035285406045},"location":"Right Hip"},{"euler":{"heading":191.77546872693358,"pitch":-57.72928079109895,"roll":-53.82554291209973},"location":"Right Knee"},{"euler":{"heading":36.213264139867256,"pitch":-124.3605878022923,"roll":57.93459188566522},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.59"} +{"sensors":[{"euler":{"heading":231.28417447095325,"pitch":138.56215912449886,"roll":30.359598790426666},"location":"Left Knee"},{"euler":{"heading":90.94687679476432,"pitch":109.83647212112821,"roll":35.30709053301911},"location":"Left Ankle"},{"euler":{"heading":41.67974311833467,"pitch":2.52484489162536,"roll":6.975545142903642},"location":"Right Ankle"},{"euler":{"heading":91.91465340040915,"pitch":-153.38243311582173,"roll":58.38308175686544},"location":"Right Hip"},{"euler":{"heading":192.81667185424024,"pitch":-34.668852711989054,"roll":-54.46173862088976},"location":"Right Knee"},{"euler":{"heading":36.410687725880535,"pitch":-124.85577902206307,"roll":58.197382697098696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.160"} +{"sensors":[{"euler":{"heading":242.83700702385792,"pitch":138.04969321204896,"roll":30.848638911384},"location":"Left Knee"},{"euler":{"heading":90.84593911528789,"pitch":109.29657490901539,"roll":35.0701314797172},"location":"Left Ankle"},{"euler":{"heading":42.1617688065012,"pitch":1.8598604024628242,"roll":7.1904906286132775},"location":"Right Ankle"},{"euler":{"heading":93.11068806036825,"pitch":-152.70043980423955,"roll":57.207273581178896},"location":"Right Hip"},{"euler":{"heading":191.2662546688162,"pitch":-46.44571744079015,"roll":-54.634314758800784},"location":"Right Knee"},{"euler":{"heading":36.957118953292486,"pitch":-125.92020111985677,"roll":58.64639442738883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.261"} +{"sensors":[{"euler":{"heading":254.07830632147213,"pitch":137.15097389084406,"roll":30.9325250202456},"location":"Left Knee"},{"euler":{"heading":91.38009520375911,"pitch":109.08566741811386,"roll":35.31936833174548},"location":"Left Ankle"},{"euler":{"heading":44.80809192585109,"pitch":1.886374362216542,"roll":7.47769156575195},"location":"Right Ankle"},{"euler":{"heading":93.52461925433141,"pitch":-152.46789582381558,"roll":56.130296223061},"location":"Right Hip"},{"euler":{"heading":187.67087920193458,"pitch":-55.25739569671113,"roll":-53.477133282920704},"location":"Right Knee"},{"euler":{"heading":37.60515705796324,"pitch":-127.4156810078711,"roll":59.18800498464994},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.361"} +{"sensors":[{"euler":{"heading":228.90797568932493,"pitch":135.96087650175966,"roll":30.57677251822104},"location":"Left Knee"},{"euler":{"heading":92.62958568338321,"pitch":109.27085067630247,"roll":36.12493149857093},"location":"Left Ankle"},{"euler":{"heading":47.95853273326598,"pitch":1.903986925994888,"roll":7.973672409176756},"location":"Right Ankle"},{"euler":{"heading":92.92840732889827,"pitch":-152.62110624143403,"roll":55.4172666007549},"location":"Right Hip"},{"euler":{"heading":183.52254128174113,"pitch":-62.50665612704002,"roll":-51.810669954628636},"location":"Right Knee"},{"euler":{"heading":38.494641352166916,"pitch":-129.361612907084,"roll":59.856704486184945},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.462"} +{"sensors":[{"euler":{"heading":207.22342812039244,"pitch":134.6210388515837,"roll":29.500345266398938},"location":"Left Knee"},{"euler":{"heading":94.6291271150449,"pitch":110.07501560867223,"roll":37.74368834871384},"location":"Left Ankle"},{"euler":{"heading":50.075179459939385,"pitch":2.1823382333953996,"roll":8.28255516825908},"location":"Right Ankle"},{"euler":{"heading":92.12306659600844,"pitch":-152.85899561729065,"roll":55.019289940679414},"location":"Right Hip"},{"euler":{"heading":180.95153715356702,"pitch":-69.75599051433602,"roll":-50.65460295916577},"location":"Right Knee"},{"euler":{"heading":39.651427216950225,"pitch":-131.5067016163756,"roll":60.596034037566454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.563"} +{"sensors":[{"euler":{"heading":189.1573353083532,"pitch":133.54643496642532,"roll":27.337810739759046},"location":"Left Knee"},{"euler":{"heading":98.0474644035404,"pitch":113.036264047805,"roll":40.619319513842456},"location":"Left Ankle"},{"euler":{"heading":51.248911513945444,"pitch":2.3266044100558596,"roll":8.366799651433173},"location":"Right Ankle"},{"euler":{"heading":91.3357599364076,"pitch":-153.1230960555616,"roll":55.12361094661148},"location":"Right Hip"},{"euler":{"heading":179.90638343821033,"pitch":-76.83039146290243,"roll":-50.232892663249196},"location":"Right Knee"},{"euler":{"heading":39.4925344952552,"pitch":-132.01853145473805,"roll":60.71143063380981},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.664"} +{"sensors":[{"euler":{"heading":173.63535177751788,"pitch":132.7042914697828,"roll":25.047779665783143},"location":"Left Knee"},{"euler":{"heading":101.03021796318637,"pitch":115.4076376430245,"roll":43.65113756245821},"location":"Left Ankle"},{"euler":{"heading":52.0240203625509,"pitch":2.487693969050274,"roll":8.323869686289855},"location":"Right Ankle"},{"euler":{"heading":90.25218394276683,"pitch":-153.56078645000545,"roll":55.75499985195033},"location":"Right Hip"},{"euler":{"heading":179.8844950943893,"pitch":-83.67235231661219,"roll":-50.30960339692428},"location":"Right Knee"},{"euler":{"heading":38.16828104572968,"pitch":-130.21042830926424,"roll":60.26528757042883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.764"} +{"sensors":[{"euler":{"heading":157.9593165997661,"pitch":132.7213623228045,"roll":24.04300169920483},"location":"Left Knee"},{"euler":{"heading":101.68344616686775,"pitch":114.49187387872205,"roll":44.71727380621239},"location":"Left Ankle"},{"euler":{"heading":52.29036832629581,"pitch":2.5264245721452467,"roll":8.10398271766087},"location":"Right Ankle"},{"euler":{"heading":89.65196554849015,"pitch":-153.81720780500493,"roll":56.5794998667553},"location":"Right Hip"},{"euler":{"heading":180.42104558495038,"pitch":-90.20511708495098,"roll":-50.809893057231854},"location":"Right Knee"},{"euler":{"heading":36.50770294115671,"pitch":-128.44563547833783,"roll":59.20125881338595},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.865"} +{"sensors":[{"euler":{"heading":175.3321349397895,"pitch":134.16797609052406,"roll":24.938701529284348},"location":"Left Knee"},{"euler":{"heading":98.83385155018098,"pitch":112.87393649084984,"roll":42.820546425591154},"location":"Left Ankle"},{"euler":{"heading":52.13633149366623,"pitch":2.461282114930722,"roll":7.924834445894783},"location":"Right Ankle"},{"euler":{"heading":89.34926899364113,"pitch":-154.17923702450443,"roll":57.44654988007977},"location":"Right Hip"},{"euler":{"heading":181.27894102645536,"pitch":-96.60960537645589,"roll":-51.54765375150867},"location":"Right Knee"},{"euler":{"heading":35.15693264704104,"pitch":-126.76982193050405,"roll":58.281132932047356},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.966"} +{"sensors":[{"euler":{"heading":188.89267144581058,"pitch":136.60117848147166,"roll":26.619831376355915},"location":"Left Knee"},{"euler":{"heading":94.48171639516289,"pitch":111.04904284176487,"roll":39.21349178303203},"location":"Left Ankle"},{"euler":{"heading":51.32894834429961,"pitch":2.5151539034376498,"roll":7.619851001305305},"location":"Right Ankle"},{"euler":{"heading":89.23309209427701,"pitch":-154.748813322054,"roll":58.3143948920718},"location":"Right Hip"},{"euler":{"heading":182.67604692380982,"pitch":-103.4111448388103,"roll":-52.492888376357804},"location":"Right Knee"},{"euler":{"heading":34.672489382336934,"pitch":-125.72408973745365,"roll":57.628019638842616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.67"} +{"sensors":[{"euler":{"heading":202.15965430122952,"pitch":138.4910606333245,"roll":28.045348238720322},"location":"Left Knee"},{"euler":{"heading":91.1647947556466,"pitch":110.0003885575884,"roll":36.22339260472883},"location":"Left Ankle"},{"euler":{"heading":49.72105350986965,"pitch":2.276138513093885,"roll":7.076615901174774},"location":"Right Ankle"},{"euler":{"heading":89.30978288484931,"pitch":-155.7176819898486,"roll":59.195455402864624},"location":"Right Hip"},{"euler":{"heading":184.43344223142884,"pitch":-110.91378035492927,"roll":-53.55609953872202},"location":"Right Knee"},{"euler":{"heading":34.761490444103245,"pitch":-125.0329307637083,"roll":57.24646767495836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.168"} +{"sensors":[{"euler":{"heading":215.2874388711066,"pitch":139.16070456999208,"roll":29.23456341484829},"location":"Left Knee"},{"euler":{"heading":89.86706528008193,"pitch":109.28784970182957,"roll":34.913553344255945},"location":"Left Ankle"},{"euler":{"heading":46.58644815888268,"pitch":1.5047746617844964,"roll":6.431454311057297},"location":"Right Ankle"},{"euler":{"heading":90.08505459636439,"pitch":-155.90216379086374,"roll":59.58215986257816},"location":"Right Hip"},{"euler":{"heading":186.61509800828597,"pitch":-83.62240231943635,"roll":-54.32548958484982},"location":"Right Knee"},{"euler":{"heading":34.691591399692925,"pitch":-124.62338768733747,"roll":57.109320907462525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.269"} +{"sensors":[{"euler":{"heading":227.77119498399594,"pitch":139.15088411299286,"roll":30.14235707336346},"location":"Left Knee"},{"euler":{"heading":89.24910875207375,"pitch":108.75281473164661,"roll":34.04094800983035},"location":"Left Ankle"},{"euler":{"heading":43.452803342994414,"pitch":0.6605471956060467,"roll":5.969558879951568},"location":"Right Ankle"},{"euler":{"heading":91.38904913672795,"pitch":-155.06819741177736,"roll":59.16144387632035},"location":"Right Hip"},{"euler":{"heading":188.7535882074574,"pitch":-58.92891208749272,"roll":-54.81169062636484},"location":"Right Knee"},{"euler":{"heading":34.97243225972363,"pitch":-124.77979891860373,"roll":57.31713881671627},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.369"} +{"sensors":[{"euler":{"heading":239.49407548559634,"pitch":138.6607957016936,"roll":30.821871366027114},"location":"Left Knee"},{"euler":{"heading":89.36794787686638,"pitch":108.40253325848195,"roll":33.73060320884731},"location":"Left Ankle"},{"euler":{"heading":42.420023008694976,"pitch":-0.036757523954558,"roll":5.9726029919564105},"location":"Right Ankle"},{"euler":{"heading":93.09389422305516,"pitch":-154.00512767059962,"roll":58.07029948868832},"location":"Right Hip"},{"euler":{"heading":188.94697938671166,"pitch":-69.79852087874345,"roll":-55.318021563728365},"location":"Right Knee"},{"euler":{"heading":35.54393903375127,"pitch":-125.55806902674337,"roll":57.72292493504465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.469"} +{"sensors":[{"euler":{"heading":250.9009179370367,"pitch":137.66346613152422,"roll":31.227184229424402},"location":"Left Knee"},{"euler":{"heading":90.17490308917975,"pitch":108.31852993263377,"roll":33.845042887962585},"location":"Left Ankle"},{"euler":{"heading":43.38427070782548,"pitch":-0.5268317715591022,"roll":6.550342692760769},"location":"Right Ankle"},{"euler":{"heading":94.22825480074965,"pitch":-153.47336490353968,"roll":56.75076953981949},"location":"Right Hip"},{"euler":{"heading":186.2710314480405,"pitch":-76.6436687908691,"roll":-54.69246940735553},"location":"Right Knee"},{"euler":{"heading":36.38329513037615,"pitch":-126.87726212406903,"roll":58.263132441540186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.570"} +{"sensors":[{"euler":{"heading":225.83582614333304,"pitch":136.37836951837178,"roll":31.173215806481963},"location":"Left Knee"},{"euler":{"heading":91.60116278026177,"pitch":108.4554269393704,"roll":34.58553859916633},"location":"Left Ankle"},{"euler":{"heading":46.21459363704294,"pitch":-0.474148594403192,"roll":7.220308423484693},"location":"Right Ankle"},{"euler":{"heading":92.8179293206747,"pitch":-153.2322784131857,"roll":55.85694258583754},"location":"Right Hip"},{"euler":{"heading":182.31892830323648,"pitch":-81.67930191178219,"roll":-53.08572246661998},"location":"Right Knee"},{"euler":{"heading":37.38246561733854,"pitch":-128.60828591166214,"roll":58.98681919738617},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.671"} +{"sensors":[{"euler":{"heading":203.88974352899973,"pitch":134.96553256653462,"roll":30.56214422583377},"location":"Left Knee"},{"euler":{"heading":93.5285465022356,"pitch":108.87238424543337,"roll":35.9332347392497},"location":"Left Ankle"},{"euler":{"heading":48.87438427333865,"pitch":0.1982662650371272,"roll":7.642027581136223},"location":"Right Ankle"},{"euler":{"heading":92.06113638860724,"pitch":-153.30280057186715,"roll":55.42749832725379},"location":"Right Hip"},{"euler":{"heading":178.96203547291285,"pitch":-86.88637172060398,"roll":-51.414650219957984},"location":"Right Knee"},{"euler":{"heading":38.58796905560469,"pitch":-131.00370732049592,"roll":59.781887277647556},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.772"} +{"sensors":[{"euler":{"heading":185.08826917609977,"pitch":133.85647930988117,"roll":28.87467980325039},"location":"Left Knee"},{"euler":{"heading":95.65069185201205,"pitch":110.31014582089003,"roll":38.40241126532473},"location":"Left Ankle"},{"euler":{"heading":50.193195846004784,"pitch":0.8471896385334146,"roll":7.8965748230226005},"location":"Right Ankle"},{"euler":{"heading":91.54252274974651,"pitch":-153.28502051468044,"roll":55.32224849452841},"location":"Right Hip"},{"euler":{"heading":177.47833192562155,"pitch":-92.26648454854359,"roll":-50.460685197962185},"location":"Right Knee"},{"euler":{"heading":39.14167215004422,"pitch":-132.35333658844633,"roll":60.3286985498828},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.873"} +{"sensors":[{"euler":{"heading":170.0419422584898,"pitch":132.42708137889306,"roll":26.555961822925354},"location":"Left Knee"},{"euler":{"heading":99.41687266681085,"pitch":114.12913123880102,"roll":41.43092013879226},"location":"Left Ankle"},{"euler":{"heading":50.89262626140431,"pitch":1.5187206746800732,"roll":7.900667340720341},"location":"Right Ankle"},{"euler":{"heading":90.55702047477186,"pitch":-153.4690184632124,"roll":55.715023645075576},"location":"Right Hip"},{"euler":{"heading":177.5117487330594,"pitch":-97.63983609368924,"roll":-50.08961667816597},"location":"Right Knee"},{"euler":{"heading":38.6025049350398,"pitch":-130.7680029296017,"roll":60.358328694894524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.974"} +{"sensors":[{"euler":{"heading":155.84399803264083,"pitch":132.09062324100375,"roll":24.88786564063282},"location":"Left Knee"},{"euler":{"heading":101.33143540012976,"pitch":114.40996811492093,"roll":43.42532812491304},"location":"Left Ankle"},{"euler":{"heading":51.20336363526388,"pitch":2.148098607212066,"roll":7.779350606648308},"location":"Right Ankle"},{"euler":{"heading":89.88256842729467,"pitch":-153.54086661689115,"roll":56.46227128056802},"location":"Right Hip"},{"euler":{"heading":178.42307385975346,"pitch":-102.89460248432032,"roll":-50.205655010349375},"location":"Right Knee"},{"euler":{"heading":37.173504441535826,"pitch":-128.90995263664152,"roll":59.54124582540507},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.75"} +{"sensors":[{"euler":{"heading":165.00334822937674,"pitch":134.75656091690337,"roll":25.08032907656954},"location":"Left Knee"},{"euler":{"heading":99.57954186011678,"pitch":113.13772130342885,"roll":42.52654531242174},"location":"Left Ankle"},{"euler":{"heading":51.25802727173749,"pitch":2.6895387464908596,"roll":7.6014155459834765},"location":"Right Ankle"},{"euler":{"heading":89.63806158456521,"pitch":-153.56177995520204,"roll":57.35354415251122},"location":"Right Hip"},{"euler":{"heading":179.76201647377812,"pitch":-108.11139223588827,"roll":-50.62258950931444},"location":"Right Knee"},{"euler":{"heading":35.71865399738225,"pitch":-127.15645737297737,"roll":58.512121242864566},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.176"} +{"sensors":[{"euler":{"heading":180.14051340643908,"pitch":136.92465482521303,"roll":26.503546168912585},"location":"Left Knee"},{"euler":{"heading":95.5528376741051,"pitch":111.49269917308597,"roll":39.43014078117957},"location":"Left Ankle"},{"euler":{"heading":50.72597454456374,"pitch":3.1955848718417736,"roll":7.3475239913851285},"location":"Right Ankle"},{"euler":{"heading":89.47425542610868,"pitch":-153.76810195968184,"roll":58.23068973726009},"location":"Right Hip"},{"euler":{"heading":181.70456482640031,"pitch":-113.63150301229945,"roll":-51.322830558383},"location":"Right Knee"},{"euler":{"heading":34.81553859764403,"pitch":-125.86581163567963,"roll":57.735909118578114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.276"} +{"sensors":[{"euler":{"heading":193.44521206579518,"pitch":139.00718934269173,"roll":27.940691552021327},"location":"Left Knee"},{"euler":{"heading":92.07880390669459,"pitch":110.25592925577737,"roll":36.56837670306161},"location":"Left Ankle"},{"euler":{"heading":49.40962709010737,"pitch":3.4135263846575965,"roll":6.900271592246615},"location":"Right Ankle"},{"euler":{"heading":89.43307988349781,"pitch":-154.40379176371366,"roll":59.188870763534084},"location":"Right Hip"},{"euler":{"heading":183.9028583437603,"pitch":-119.67460271106951,"roll":-52.2905475025447},"location":"Right Knee"},{"euler":{"heading":34.546484737879624,"pitch":-125.19173047211169,"roll":57.249818206720306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.377"} +{"sensors":[{"euler":{"heading":207.24444085921567,"pitch":139.84397040842256,"roll":29.052872396819197},"location":"Left Knee"},{"euler":{"heading":90.50842351602513,"pitch":109.56158633019963,"roll":35.11778903275545},"location":"Left Ankle"},{"euler":{"heading":47.112414381096634,"pitch":2.915923746191837,"roll":6.485244433021954},"location":"Right Ankle"},{"euler":{"heading":89.81477189514804,"pitch":-154.8071625873423,"roll":59.87623368718068},"location":"Right Hip"},{"euler":{"heading":186.16882250938428,"pitch":-90.80089243996257,"roll":-53.34274275229023},"location":"Right Knee"},{"euler":{"heading":34.31058626409166,"pitch":-124.55380742490053,"roll":56.98733638604828},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.478"} +{"sensors":[{"euler":{"heading":220.66374677329412,"pitch":139.8658233675803,"roll":29.85383515713728},"location":"Left Knee"},{"euler":{"heading":89.97633116442262,"pitch":109.14917769717967,"roll":34.318510129479904},"location":"Left Ankle"},{"euler":{"heading":43.72617294298698,"pitch":1.7930813715726532,"roll":5.905469989719759},"location":"Right Ankle"},{"euler":{"heading":90.83954470563324,"pitch":-154.37019632860807,"roll":59.82611031846261},"location":"Right Hip"},{"euler":{"heading":188.33944025844585,"pitch":-65.77080319596631,"roll":-54.189718477061206},"location":"Right Knee"},{"euler":{"heading":34.448277637682494,"pitch":-124.42342668241048,"roll":57.119852747443446},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.578"} +{"sensors":[{"euler":{"heading":233.2973720959647,"pitch":139.32299103082227,"roll":30.51220164142355},"location":"Left Knee"},{"euler":{"heading":90.22244804798036,"pitch":108.92800992746172,"roll":34.099159116531915},"location":"Left Ankle"},{"euler":{"heading":41.98480564868828,"pitch":0.7637732344153878,"roll":5.658672990747783},"location":"Right Ankle"},{"euler":{"heading":92.41809023506991,"pitch":-153.53942669574727,"roll":58.98099928661635},"location":"Right Hip"},{"euler":{"heading":188.73674623260126,"pitch":-76.74372287636967,"roll":-54.945746629355085},"location":"Right Knee"},{"euler":{"heading":35.07219987391424,"pitch":-125.00608401416945,"roll":57.545367472699105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.678"} +{"sensors":[{"euler":{"heading":245.37388488636824,"pitch":138.33444192774004,"roll":30.910981477281197},"location":"Left Knee"},{"euler":{"heading":91.04395324318233,"pitch":108.94770893471554,"roll":34.232993204878724},"location":"Left Ankle"},{"euler":{"heading":42.686325083819455,"pitch":-0.018854089026151044,"roll":6.211555691673005},"location":"Right Ankle"},{"euler":{"heading":93.71378121156292,"pitch":-152.94173402617253,"roll":57.701649357954715},"location":"Right Hip"},{"euler":{"heading":186.28807160934116,"pitch":-83.2631005887327,"roll":-54.65742196641958},"location":"Right Knee"},{"euler":{"heading":35.94622988652282,"pitch":-126.3054756127525,"roll":58.097080725429194},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.779"} +{"sensors":[{"euler":{"heading":221.02399639773142,"pitch":137.08849773496604,"roll":30.83238332955308},"location":"Left Knee"},{"euler":{"heading":92.22705791886409,"pitch":109.140438041244,"roll":34.77844388439085},"location":"Left Ankle"},{"euler":{"heading":45.31769257543751,"pitch":-0.09196868012353596,"roll":7.015400122505704},"location":"Right Ankle"},{"euler":{"heading":93.91115309040663,"pitch":-152.87881062355527,"roll":56.650234422159244},"location":"Right Hip"},{"euler":{"heading":182.11551444840705,"pitch":-87.79304052985944,"roll":-53.02917976977762},"location":"Right Knee"},{"euler":{"heading":36.98910689787054,"pitch":-127.99992805147726,"roll":58.818622652886276},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.880"} +{"sensors":[{"euler":{"heading":199.7403467579583,"pitch":135.72339796146946,"roll":30.21164499659777},"location":"Left Knee"},{"euler":{"heading":93.99185212697768,"pitch":109.63889423711959,"roll":35.96934949595177},"location":"Left Ankle"},{"euler":{"heading":48.34842331789376,"pitch":0.19847818788881763,"roll":7.520110110255134},"location":"Right Ankle"},{"euler":{"heading":93.09503778136597,"pitch":-153.13467956119973,"roll":56.15396097994332},"location":"Right Hip"},{"euler":{"heading":178.19771300356635,"pitch":-91.94498647687351,"roll":-51.23251179279986},"location":"Right Knee"},{"euler":{"heading":38.20269620808349,"pitch":-130.21243524632953,"roll":59.61801038759765},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.980"} +{"sensors":[{"euler":{"heading":181.73506208216247,"pitch":134.2885581653225,"roll":28.634230496937995},"location":"Left Knee"},{"euler":{"heading":96.21766691427992,"pitch":111.00625481340762,"roll":38.153664546356595},"location":"Left Ankle"},{"euler":{"heading":49.976080986104385,"pitch":0.6598803690999359,"roll":7.83059909922962},"location":"Right Ankle"},{"euler":{"heading":92.36678400322937,"pitch":-153.40871160507976,"roll":55.94481488194899},"location":"Right Hip"},{"euler":{"heading":177.85294170320972,"pitch":-96.53798782918616,"roll":-50.15301061351988},"location":"Right Knee"},{"euler":{"heading":39.21992658727514,"pitch":-131.75994172169658,"roll":60.30620934883788},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.81"} +{"sensors":[{"euler":{"heading":167.08030587394623,"pitch":133.01595234879028,"roll":26.283307447244194},"location":"Left Knee"},{"euler":{"heading":100.34590022285192,"pitch":115.21187933206687,"roll":41.238298091720935},"location":"Left Ankle"},{"euler":{"heading":50.89722288749395,"pitch":1.1751423321899424,"roll":7.941289189306659},"location":"Right Ankle"},{"euler":{"heading":91.33635560290644,"pitch":-153.7803404445718,"roll":56.25658339375409},"location":"Right Hip"},{"euler":{"heading":177.56764753288874,"pitch":-101.21543904626755,"roll":-49.7627095521679},"location":"Right Knee"},{"euler":{"heading":38.56043392854763,"pitch":-130.3151975495269,"roll":60.3505884139541},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.182"} +{"sensors":[{"euler":{"heading":153.0160252865516,"pitch":132.63310711391125,"roll":24.704976702519776},"location":"Left Knee"},{"euler":{"heading":102.06131020056674,"pitch":115.14069139886018,"roll":43.283218282548845},"location":"Left Ankle"},{"euler":{"heading":51.43250059874456,"pitch":1.6388780989709482,"roll":7.884660270375993},"location":"Right Ankle"},{"euler":{"heading":90.61522004261579,"pitch":-154.02105640011465,"roll":56.905925054378685},"location":"Right Hip"},{"euler":{"heading":178.21088277959987,"pitch":-105.88139514164081,"roll":-49.86143859695111},"location":"Right Knee"},{"euler":{"heading":37.041890535692865,"pitch":-128.49617779457424,"roll":59.57802957255869},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.282"} +{"sensors":[{"euler":{"heading":171.98317275789645,"pitch":133.72604640252013,"roll":25.1094790322678},"location":"Left Knee"},{"euler":{"heading":100.08642918051007,"pitch":113.42662225897416,"roll":42.38614645429396},"location":"Left Ankle"},{"euler":{"heading":51.558000538870104,"pitch":2.0749902890738534,"roll":7.771194243338393},"location":"Right Ankle"},{"euler":{"heading":90.32244803835421,"pitch":-154.0752007601032,"roll":57.66533254894082},"location":"Right Hip"},{"euler":{"heading":179.3085445016399,"pitch":-110.59950562747673,"roll":-50.262794737256},"location":"Right Knee"},{"euler":{"heading":35.643951482123576,"pitch":-126.64656001511682,"roll":58.682726615302826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.383"} +{"sensors":[{"euler":{"heading":186.18485548210683,"pitch":135.9846917622681,"roll":26.67978112904102},"location":"Left Knee"},{"euler":{"heading":95.98403626245906,"pitch":111.59646003307675,"roll":39.247531808864565},"location":"Left Ankle"},{"euler":{"heading":51.0647004849831,"pitch":2.486241260166468,"roll":7.494074819004554},"location":"Right Ankle"},{"euler":{"heading":90.34020323451878,"pitch":-154.24268068409287,"roll":58.35504929404674},"location":"Right Hip"},{"euler":{"heading":180.9089400514759,"pitch":-115.57080506472906,"roll":-50.9927652635304},"location":"Right Knee"},{"euler":{"heading":34.86705633391122,"pitch":-125.43190401360515,"roll":57.976953953772544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.483"} +{"sensors":[{"euler":{"heading":199.36636993389615,"pitch":138.1549725860413,"roll":28.068053016136922},"location":"Left Knee"},{"euler":{"heading":92.39188263621315,"pitch":110.41181402976909,"roll":36.27902862797811},"location":"Left Ankle"},{"euler":{"heading":49.76448043648479,"pitch":2.693867134149821,"roll":7.038417337104099},"location":"Right Ankle"},{"euler":{"heading":90.57493291106691,"pitch":-154.6621626156836,"roll":59.013294364642064},"location":"Right Hip"},{"euler":{"heading":182.7805460463283,"pitch":-121.15747455825615,"roll":-51.99973873717737},"location":"Right Knee"},{"euler":{"heading":34.6241007005201,"pitch":-124.79496361224463,"roll":57.47925855839529},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.584"} +{"sensors":[{"euler":{"heading":212.46723294050653,"pitch":139.1707253274372,"roll":29.24874771452323},"location":"Left Knee"},{"euler":{"heading":90.50894437259184,"pitch":109.48313262679218,"roll":34.701125765180294},"location":"Left Ankle"},{"euler":{"heading":47.450532392836315,"pitch":1.9119804207348388,"roll":6.60332560339369},"location":"Right Ankle"},{"euler":{"heading":91.43618961996022,"pitch":-154.72719635411525,"roll":59.23696492817786},"location":"Right Hip"},{"euler":{"heading":184.5274914416955,"pitch":-91.87922710243055,"roll":-53.16851486345963},"location":"Right Knee"},{"euler":{"heading":34.39919063046809,"pitch":-124.25921725102017,"roll":57.29383270255576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.684"} +{"sensors":[{"euler":{"heading":225.1142596464559,"pitch":139.39740279469348,"roll":30.142622943070908},"location":"Left Knee"},{"euler":{"heading":89.50179993533266,"pitch":108.72231936411296,"roll":33.79351318866226},"location":"Left Ankle"},{"euler":{"heading":44.51797915355269,"pitch":0.9895323786613549,"roll":6.1929930430543205},"location":"Right Ankle"},{"euler":{"heading":92.8363206579642,"pitch":-154.01697671870372,"roll":58.69451843536008},"location":"Right Hip"},{"euler":{"heading":186.66849229752594,"pitch":-66.09755439218749,"roll":-53.95791337711367},"location":"Right Knee"},{"euler":{"heading":34.54052156742128,"pitch":-124.29579552591817,"roll":57.45819943230019},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.785"} +{"sensors":[{"euler":{"heading":236.72158368181033,"pitch":139.27016251522411,"roll":30.734610648763816},"location":"Left Knee"},{"euler":{"heading":89.07036994179938,"pitch":108.05633742770166,"roll":33.426661869796035},"location":"Left Ankle"},{"euler":{"heading":43.52243123819742,"pitch":0.37182914079521934,"roll":6.136193738748888},"location":"Right Ankle"},{"euler":{"heading":94.42768859216778,"pitch":-153.17777904683334,"roll":57.61256659182408},"location":"Right Hip"},{"euler":{"heading":186.97039306777336,"pitch":-76.15654895296875,"roll":-54.57462203940231},"location":"Right Knee"},{"euler":{"heading":34.84271941067915,"pitch":-124.92246597332635,"roll":57.86237948907017},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.885"} +{"sensors":[{"euler":{"heading":247.85567531362932,"pitch":138.6743962637017,"roll":31.067399583887436},"location":"Left Knee"},{"euler":{"heading":89.16333294761945,"pitch":107.6069536849315,"roll":33.47774568281643},"location":"Left Ankle"},{"euler":{"heading":44.80143811437768,"pitch":0.08464622671569744,"roll":6.941324364874},"location":"Right Ankle"},{"euler":{"heading":95.18491973295102,"pitch":-152.74750114214999,"roll":56.47005993264167},"location":"Right Hip"},{"euler":{"heading":184.50460376099602,"pitch":-82.40339405767187,"roll":-54.09215983546208},"location":"Right Knee"},{"euler":{"heading":35.43344746961124,"pitch":-125.99271937599372,"roll":58.43864154016316},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.986"} +{"sensors":[{"euler":{"heading":258.6013577822664,"pitch":137.76945663733153,"roll":30.935659625498694},"location":"Left Knee"},{"euler":{"heading":89.7844996528575,"pitch":107.34000831643836,"roll":34.03622111453479},"location":"Left Ankle"},{"euler":{"heading":47.89004430293991,"pitch":0.2199316040441277,"roll":7.5346919283866},"location":"Right Ankle"},{"euler":{"heading":95.08517775965592,"pitch":-152.716501027935,"roll":55.6668039393775},"location":"Right Hip"},{"euler":{"heading":180.53539338489642,"pitch":-86.8568046519047,"roll":-52.45794385191587},"location":"Right Knee"},{"euler":{"heading":36.20260272265011,"pitch":-127.46844743839435,"roll":59.14477738614684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.86"} +{"sensors":[{"euler":{"heading":233.04747200403978,"pitch":136.66751097359838,"roll":30.260843662948826},"location":"Left Knee"},{"euler":{"heading":91.06854968757176,"pitch":107.42475748479453,"roll":35.23884900308131},"location":"Left Ankle"},{"euler":{"heading":51.07603987264592,"pitch":0.516688443639715,"roll":7.856222735547941},"location":"Right Ankle"},{"euler":{"heading":94.18915998369033,"pitch":-152.9198509251415,"roll":55.19387354543975},"location":"Right Hip"},{"euler":{"heading":176.8193540464068,"pitch":-90.72737418671423,"roll":-50.73089946672428},"location":"Right Knee"},{"euler":{"heading":37.21359245038511,"pitch":-129.6091026945549,"roll":59.92404964753216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.186"} +{"sensors":[{"euler":{"heading":211.16772480363582,"pitch":135.60700987623855,"roll":28.647259296653946},"location":"Left Knee"},{"euler":{"heading":93.08669471881458,"pitch":108.48228173631507,"roll":37.57121410277318},"location":"Left Ankle"},{"euler":{"heading":52.68093588538133,"pitch":0.9337695992757435,"roll":7.914350461993147},"location":"Right Ankle"},{"euler":{"heading":93.7327439853213,"pitch":-152.94661583262734,"roll":54.86823619089578},"location":"Right Hip"},{"euler":{"heading":175.03741864176612,"pitch":-95.2358867680428,"roll":-49.73280952005186},"location":"Right Knee"},{"euler":{"heading":37.9984832053466,"pitch":-131.25444242509943,"roll":60.54414468277895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.287"} +{"sensors":[{"euler":{"heading":193.18845232327223,"pitch":134.3213088886147,"roll":26.43253336698855},"location":"Left Knee"},{"euler":{"heading":96.09677524693313,"pitch":111.37155356268356,"roll":40.44534269249587},"location":"Left Ankle"},{"euler":{"heading":53.800342296843205,"pitch":1.246642639348169,"roll":7.841665415793832},"location":"Right Ankle"},{"euler":{"heading":92.89071958678917,"pitch":-153.17070424936463,"roll":55.087662571806206},"location":"Right Hip"},{"euler":{"heading":174.6086767775895,"pitch":-99.55604809123852,"roll":-49.509528568046676},"location":"Right Knee"},{"euler":{"heading":37.24238488481195,"pitch":-129.9164981825895,"roll":60.53348021450106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.387"} +{"sensors":[{"euler":{"heading":176.463357090945,"pitch":134.05167799975325,"roll":24.833030030289695},"location":"Left Knee"},{"euler":{"heading":97.92459772223982,"pitch":111.4406482064152,"roll":42.43205842324628},"location":"Left Ankle"},{"euler":{"heading":54.607808067158885,"pitch":1.5907283754133523,"roll":7.601248874214449},"location":"Right Ankle"},{"euler":{"heading":92.48914762811026,"pitch":-153.1536338244282,"roll":55.64764631462559},"location":"Right Hip"},{"euler":{"heading":174.97905909983055,"pitch":-103.91294328211467,"roll":-49.69607571124201},"location":"Right Knee"},{"euler":{"heading":35.855646396330755,"pitch":-128.18109836433055,"roll":59.723882193050954},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.488"} +{"sensors":[{"euler":{"heading":183.55452138185052,"pitch":135.15276019977793,"roll":25.162227027260727},"location":"Left Knee"},{"euler":{"heading":96.47588795001585,"pitch":110.09033338577369,"roll":41.601352580921656},"location":"Left Ankle"},{"euler":{"heading":54.947027260442994,"pitch":1.944155537872017,"roll":7.428623986793005},"location":"Right Ankle"},{"euler":{"heading":92.23398286529924,"pitch":-153.11952044198537,"roll":56.37663168316303},"location":"Right Hip"},{"euler":{"heading":175.99990318984752,"pitch":-108.44039895390321,"roll":-50.15771814011781},"location":"Right Knee"},{"euler":{"heading":34.507581756697675,"pitch":-126.3192385278975,"roll":58.75149397374586},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.588"} +{"sensors":[{"euler":{"heading":196.27406924366545,"pitch":137.41873417980014,"roll":26.814754324534654},"location":"Left Knee"},{"euler":{"heading":92.70954915501426,"pitch":108.55005004719632,"roll":38.5474673228295},"location":"Left Ankle"},{"euler":{"heading":54.6398245343987,"pitch":2.3372399840848153,"roll":7.167011588113705},"location":"Right Ankle"},{"euler":{"heading":92.11683457876931,"pitch":-153.20131839778685,"roll":57.17021851484673},"location":"Right Hip"},{"euler":{"heading":177.68741287086277,"pitch":-113.29635905851289,"roll":-50.93569632610603},"location":"Right Knee"},{"euler":{"heading":33.64432358102791,"pitch":-124.97481467510775,"roll":58.02009457637128},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.688"} +{"sensors":[{"euler":{"heading":208.35916231929892,"pitch":139.40186076182013,"roll":28.252028892081192},"location":"Left Knee"},{"euler":{"heading":89.48859423951284,"pitch":107.7075450424767,"roll":35.72397059054655},"location":"Left Ankle"},{"euler":{"heading":53.55709208095883,"pitch":2.5660159856763336,"roll":6.644060429302334},"location":"Right Ankle"},{"euler":{"heading":92.12390112089238,"pitch":-153.67493655800817,"roll":58.09694666336206},"location":"Right Hip"},{"euler":{"heading":179.4999215837765,"pitch":-118.4667231526616,"roll":-51.92962669349543},"location":"Right Knee"},{"euler":{"heading":33.504891222925124,"pitch":-124.35233320759698,"roll":57.49933511873415},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.789"} +{"sensors":[{"euler":{"heading":220.810746087369,"pitch":140.13667468563813,"roll":29.420576002873077},"location":"Left Knee"},{"euler":{"heading":88.10223481556156,"pitch":107.23679053822903,"roll":34.2703235314919},"location":"Left Ankle"},{"euler":{"heading":51.55763287286295,"pitch":2.0406643871087007,"roll":6.135904386372101},"location":"Right Ankle"},{"euler":{"heading":92.53026100880315,"pitch":-154.12619290220735,"roll":58.76850199702586},"location":"Right Hip"},{"euler":{"heading":181.33742942539885,"pitch":-88.68880083739543,"roll":-53.14291402414589},"location":"Right Knee"},{"euler":{"heading":33.57940210063261,"pitch":-123.96709988683729,"roll":57.25565160686074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.890"} +{"sensors":[{"euler":{"heading":233.08592147863214,"pitch":140.01050721707432,"roll":30.30351840258577},"location":"Left Knee"},{"euler":{"heading":87.89826133400541,"pitch":107.11936148440613,"roll":33.51829117834271},"location":"Left Ankle"},{"euler":{"heading":48.314369585576664,"pitch":0.9865979483978307,"roll":5.609813947734891},"location":"Right Ankle"},{"euler":{"heading":93.69598490792283,"pitch":-153.63857361198663,"roll":58.535401797323274},"location":"Right Hip"},{"euler":{"heading":183.45993648285898,"pitch":-63.238670753655896,"roll":-54.1536226217313},"location":"Right Knee"},{"euler":{"heading":34.03396189056935,"pitch":-123.80788989815356,"roll":57.44883644617467},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.990"} +{"sensors":[{"euler":{"heading":244.41482933076895,"pitch":139.5344564953669,"roll":30.879416562327194},"location":"Left Knee"},{"euler":{"heading":88.18343520060488,"pitch":107.04492533596552,"roll":33.42896206050844},"location":"Left Ankle"},{"euler":{"heading":46.395432627019,"pitch":0.044188153558047616,"roll":5.342582552961402},"location":"Right Ankle"},{"euler":{"heading":95.64513641713054,"pitch":-152.79971625078798,"roll":57.58811161759095},"location":"Right Hip"},{"euler":{"heading":183.7576928345731,"pitch":-73.9085536782903,"roll":-55.019510359558176},"location":"Right Knee"},{"euler":{"heading":34.72431570151242,"pitch":-124.51460090833821,"roll":57.8539528015572},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.91"} +{"sensors":[{"euler":{"heading":255.05459639769208,"pitch":138.7685108458302,"roll":31.191474906094477},"location":"Left Knee"},{"euler":{"heading":88.87134168054439,"pitch":107.04043280236897,"roll":33.7110658544576},"location":"Left Ankle"},{"euler":{"heading":48.0996393643171,"pitch":-0.6539806617977573,"roll":5.870824297665262},"location":"Right Ankle"},{"euler":{"heading":97.22437277541749,"pitch":-152.2384946257092,"roll":56.235550455831856},"location":"Right Hip"},{"euler":{"heading":181.2131735511158,"pitch":-80.26144831046128,"roll":-54.64880932360236},"location":"Right Knee"},{"euler":{"heading":35.43938413136118,"pitch":-125.78189081750439,"roll":58.31855752140148},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.191"} +{"sensors":[{"euler":{"heading":265.49288675792286,"pitch":137.57915976124718,"roll":31.172327415485032},"location":"Left Knee"},{"euler":{"heading":90.25295751248996,"pitch":107.35513952213208,"roll":34.408709269011844},"location":"Left Ankle"},{"euler":{"heading":50.364675427885395,"pitch":-0.5135825956179816,"roll":6.596241867898736},"location":"Right Ankle"},{"euler":{"heading":97.65818549787575,"pitch":-152.02089516313828,"roll":55.118245410248676},"location":"Right Hip"},{"euler":{"heading":177.2606061960042,"pitch":-84.99780347941515,"roll":-52.87767839124212},"location":"Right Knee"},{"euler":{"heading":36.339195718225064,"pitch":-127.32870173575395,"roll":58.93045176926133},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.291"} +{"sensors":[{"euler":{"heading":239.5248480821306,"pitch":136.24624378512246,"roll":30.61134467393653},"location":"Left Knee"},{"euler":{"heading":92.18391176124096,"pitch":107.91962556991886,"roll":35.68658834211066},"location":"Left Ankle"},{"euler":{"heading":53.21570788509686,"pitch":-0.21222433605618346,"roll":7.092867681108863},"location":"Right Ankle"},{"euler":{"heading":96.82986694808818,"pitch":-152.23755564682443,"roll":54.57517086922381},"location":"Right Hip"},{"euler":{"heading":173.2407955764038,"pitch":-89.04177313147365,"roll":-50.80866055211791},"location":"Right Knee"},{"euler":{"heading":37.35527614640256,"pitch":-129.38958156217856,"roll":59.6249065923352},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.392"} +{"sensors":[{"euler":{"heading":217.21611327391756,"pitch":134.94036940661022,"roll":29.131460206542876},"location":"Left Knee"},{"euler":{"heading":94.50302058511687,"pitch":109.13391301292697,"roll":37.892929507899595},"location":"Left Ankle"},{"euler":{"heading":54.76288709658718,"pitch":0.15274809754943489,"roll":7.333580912997976},"location":"Right Ankle"},{"euler":{"heading":95.83438025327936,"pitch":-152.570050082142,"roll":54.411403782301434},"location":"Right Hip"},{"euler":{"heading":171.04171601876342,"pitch":-93.40009581832629,"roll":-49.46529449690611},"location":"Right Knee"},{"euler":{"heading":38.31974853176231,"pitch":-131.2193734059607,"roll":60.26866593310169},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.493"} +{"sensors":[{"euler":{"heading":198.7820019465258,"pitch":133.57133246594918,"roll":26.88081418588859},"location":"Left Knee"},{"euler":{"heading":97.84021852660518,"pitch":112.23927171163427,"roll":40.69738655710964},"location":"Left Ankle"},{"euler":{"heading":55.57409838692846,"pitch":0.40622328779449135,"roll":7.406472821698179},"location":"Right Ankle"},{"euler":{"heading":94.76344222795143,"pitch":-152.95054507392777,"roll":54.68901340407129},"location":"Right Hip"},{"euler":{"heading":170.33754441688708,"pitch":-97.69758623649366,"roll":-48.9500150472155},"location":"Right Knee"},{"euler":{"heading":37.86277367858608,"pitch":-130.50368606536466,"roll":60.39179933979152},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.593"} +{"sensors":[{"euler":{"heading":181.73505175187324,"pitch":133.03919921935426,"roll":25.136482767299732},"location":"Left Knee"},{"euler":{"heading":99.83119667394467,"pitch":112.70909454047086,"roll":42.86514790139867},"location":"Left Ankle"},{"euler":{"heading":56.022938548235615,"pitch":0.6968509590150422,"roll":7.303325539528362},"location":"Right Ankle"},{"euler":{"heading":93.8495980051563,"pitch":-153.29924056653502,"roll":55.35761206366416},"location":"Right Hip"},{"euler":{"heading":170.69128997519837,"pitch":-102.0340776128443,"roll":-48.96126354249395},"location":"Right Knee"},{"euler":{"heading":36.68899631072747,"pitch":-128.8345674588282,"roll":59.85261940581237},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.693"} +{"sensors":[{"euler":{"heading":198.5052965766859,"pitch":133.83527929741885,"roll":25.18533449056976},"location":"Left Knee"},{"euler":{"heading":98.68557700655022,"pitch":111.29443508642377,"roll":42.5973831112588},"location":"Left Ankle"},{"euler":{"heading":56.226894693412056,"pitch":1.070915863113538,"roll":7.160492985575526},"location":"Right Ankle"},{"euler":{"heading":93.25838820464067,"pitch":-153.4193165098815,"roll":56.20310085729775},"location":"Right Hip"},{"euler":{"heading":171.67841097767854,"pitch":-106.41816985155988,"roll":-49.29638718824456},"location":"Right Knee"},{"euler":{"heading":35.28259667965472,"pitch":-127.06361071294538,"roll":58.95485746523113},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.794"} +{"sensors":[{"euler":{"heading":210.21726691901733,"pitch":135.89550136767696,"roll":26.548051041512785},"location":"Left Knee"},{"euler":{"heading":94.8545193058952,"pitch":109.5087415777814,"roll":39.73764480013292},"location":"Left Ankle"},{"euler":{"heading":55.897955224070856,"pitch":1.3950742768021844,"roll":6.9506936870179725},"location":"Right Ankle"},{"euler":{"heading":92.8825493841766,"pitch":-153.73363485889334,"roll":57.032790771567974},"location":"Right Hip"},{"euler":{"heading":173.1918198799107,"pitch":-110.9451028664039,"roll":-49.9792484694201},"location":"Right Knee"},{"euler":{"heading":34.24808701168925,"pitch":-125.60099964165084,"roll":58.184371718708014},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.895"} +{"sensors":[{"euler":{"heading":220.0080402271156,"pitch":138.35595123090926,"roll":28.105745937361505},"location":"Left Knee"},{"euler":{"heading":91.04406737530567,"pitch":107.98911742000327,"roll":36.56388032011962},"location":"Left Ankle"},{"euler":{"heading":54.889409701663766,"pitch":1.580566849121966,"roll":6.605624318316175},"location":"Right Ankle"},{"euler":{"heading":92.73179444575895,"pitch":-154.460271373004,"roll":57.89201169441118},"location":"Right Hip"},{"euler":{"heading":174.89763789191963,"pitch":-115.72559257976351,"roll":-50.987573622478095},"location":"Right Knee"},{"euler":{"heading":34.01077831052032,"pitch":-124.87839967748577,"roll":57.66593454683722},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.996"} +{"sensors":[{"euler":{"heading":230.82598620440405,"pitch":139.59535610781833,"roll":29.338921343625355},"location":"Left Knee"},{"euler":{"heading":89.15216063777511,"pitch":107.21520567800295,"roll":34.85124228810766},"location":"Left Ankle"},{"euler":{"heading":52.98796873149739,"pitch":1.2475101642097695,"roll":6.138811886484557},"location":"Right Ankle"},{"euler":{"heading":93.03986500118306,"pitch":-155.11424423570358,"roll":58.565310524970066},"location":"Right Hip"},{"euler":{"heading":176.77662410272768,"pitch":-121.49678332178716,"roll":-52.382566260230284},"location":"Right Knee"},{"euler":{"heading":34.05970047946829,"pitch":-124.4655597097372,"roll":57.3430910921535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.96"} +{"sensors":[{"euler":{"heading":241.47463758396367,"pitch":139.9045704970365,"roll":30.24252920926282},"location":"Left Knee"},{"euler":{"heading":88.2556945739976,"pitch":106.66243511020265,"roll":33.8473680592969},"location":"Left Ankle"},{"euler":{"heading":49.51417185834765,"pitch":0.6477591477887925,"roll":5.4561806978361025},"location":"Right Ankle"},{"euler":{"heading":94.03587850106476,"pitch":-154.6465698121332,"roll":58.508779472473066},"location":"Right Hip"},{"euler":{"heading":179.4989616924549,"pitch":-92.62210498960846,"roll":-53.35055963420726},"location":"Right Knee"},{"euler":{"heading":34.203730431521464,"pitch":-124.16275373876348,"roll":57.41503198293815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.197"} +{"sensors":[{"euler":{"heading":251.3021738255673,"pitch":139.72036344733286,"roll":30.92452628833654},"location":"Left Knee"},{"euler":{"heading":87.82387511659785,"pitch":106.18369159918238,"roll":33.35638125336721},"location":"Left Ankle"},{"euler":{"heading":47.175254672512885,"pitch":0.12673323300991324,"roll":5.160562628052492},"location":"Right Ankle"},{"euler":{"heading":95.47604065095828,"pitch":-153.84441283091988,"roll":57.71415152522576},"location":"Right Hip"},{"euler":{"heading":180.73656552320944,"pitch":-100.87239449064762,"roll":-54.196753670786535},"location":"Right Knee"},{"euler":{"heading":34.527107388369316,"pitch":-124.64647836488714,"roll":57.74227878464434},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.298"} +{"sensors":[{"euler":{"heading":260.7407064430106,"pitch":139.09207710259957,"roll":31.382073659502886},"location":"Left Knee"},{"euler":{"heading":88.16648760493807,"pitch":105.93407243926416,"roll":33.40824312803049},"location":"Left Ankle"},{"euler":{"heading":47.0639792052616,"pitch":-0.5046900902910781,"roll":5.544506365247243},"location":"Right Ankle"},{"euler":{"heading":96.52218658586246,"pitch":-153.1287215478279,"roll":56.64273637270319},"location":"Right Hip"},{"euler":{"heading":179.0691589708885,"pitch":-104.86640504158287,"roll":-54.08957830370788},"location":"Right Knee"},{"euler":{"heading":35.11189664953238,"pitch":-125.82558052839843,"roll":58.21805090617991},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.398"} +{"sensors":[{"euler":{"heading":270.04788579870956,"pitch":138.16411939233961,"roll":31.3438662935526},"location":"Left Knee"},{"euler":{"heading":88.90608884444427,"pitch":105.83441519533775,"roll":33.898668815227445},"location":"Left Ankle"},{"euler":{"heading":49.163831284735444,"pitch":-0.5104710812619704,"roll":6.215055728722518},"location":"Right Ankle"},{"euler":{"heading":96.51996792727621,"pitch":-152.9470993930451,"roll":55.75971273543287},"location":"Right Hip"},{"euler":{"heading":175.52474307379967,"pitch":-107.10476453742459,"roll":-52.51812047333709},"location":"Right Knee"},{"euler":{"heading":35.750706984579146,"pitch":-127.28677247555859,"roll":58.78999581556192},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.499"} +{"sensors":[{"euler":{"heading":243.21184721883859,"pitch":136.99770745310565,"roll":30.821979664197343},"location":"Left Knee"},{"euler":{"heading":90.30297995999985,"pitch":106.02597367580398,"roll":35.0025519337047},"location":"Left Ankle"},{"euler":{"heading":52.1786981562619,"pitch":-0.3031739731357734,"roll":6.674800155850266},"location":"Right Ankle"},{"euler":{"heading":95.6679711345486,"pitch":-153.07113945374059,"roll":55.28374146188958},"location":"Right Hip"},{"euler":{"heading":171.77226876641973,"pitch":-108.81303808368213,"roll":-50.52880842600339},"location":"Right Knee"},{"euler":{"heading":36.61313628612123,"pitch":-129.06434522800274,"roll":59.523496234005734},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.599"} +{"sensors":[{"euler":{"heading":220.07816249695472,"pitch":135.77918670779508,"roll":29.471031697777608},"location":"Left Knee"},{"euler":{"heading":92.26018196399986,"pitch":106.79212630822359,"roll":37.10229674033423},"location":"Left Ankle"},{"euler":{"heading":53.904578340635716,"pitch":0.208393424177804,"roll":6.93857014026524},"location":"Right Ankle"},{"euler":{"heading":94.75742402109374,"pitch":-153.24527550836652,"roll":55.01786731570063},"location":"Right Hip"},{"euler":{"heading":169.82629188977774,"pitch":-111.27548427531391,"roll":-49.17592758340305},"location":"Right Knee"},{"euler":{"heading":37.61432265750911,"pitch":-130.98916070520247,"roll":60.23364661060516},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.700"} +{"sensors":[{"euler":{"heading":200.92659624725923,"pitch":134.56376803701556,"roll":27.236428527999845},"location":"Left Knee"},{"euler":{"heading":95.15916376759988,"pitch":109.50666367740122,"roll":39.97956706630081},"location":"Left Ankle"},{"euler":{"heading":54.79537050657215,"pitch":0.5625540817600236,"roll":7.013463126238716},"location":"Right Ankle"},{"euler":{"heading":93.91293161898436,"pitch":-153.46449795752986,"roll":55.209830584130565},"location":"Right Hip"},{"euler":{"heading":169.42491270079998,"pitch":-113.84793584778252,"roll":-48.689584825062745},"location":"Right Knee"},{"euler":{"heading":37.177890391758204,"pitch":-130.59649463468222,"roll":60.38528194954465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.801"} +{"sensors":[{"euler":{"heading":183.70268662253332,"pitch":133.951141233314,"roll":25.35028567519986},"location":"Left Knee"},{"euler":{"heading":97.24949739083989,"pitch":110.0872473096611,"roll":42.281610359670736},"location":"Left Ankle"},{"euler":{"heading":55.34083345591493,"pitch":0.7562986735840213,"roll":6.962116813614845},"location":"Right Ankle"},{"euler":{"heading":93.23413845708593,"pitch":-153.61804816177687,"roll":55.78884752571751},"location":"Right Hip"},{"euler":{"heading":169.77617143071998,"pitch":-116.42564226300428,"roll":-48.801876342556476},"location":"Right Knee"},{"euler":{"heading":36.178851352582384,"pitch":-128.918095171214,"roll":59.94675375459018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.902"} +{"sensors":[{"euler":{"heading":201.15116796028,"pitch":134.4185271099826,"roll":25.115257107679874},"location":"Left Knee"},{"euler":{"heading":96.7182976517559,"pitch":109.15352257869499,"roll":42.24094932370367},"location":"Left Ankle"},{"euler":{"heading":55.59425011032344,"pitch":0.7744188062256191,"roll":6.85965513225336},"location":"Right Ankle"},{"euler":{"heading":92.81697461137735,"pitch":-153.82499334559918,"roll":56.553712773145755},"location":"Right Hip"},{"euler":{"heading":170.40480428764798,"pitch":-118.95807803670385,"roll":-49.27168870830083},"location":"Right Knee"},{"euler":{"heading":35.00471621732415,"pitch":-127.27628565409259,"roll":59.09582837913116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.2"} +{"sensors":[{"euler":{"heading":213.304801164252,"pitch":136.16417439898433,"roll":26.31623139691189},"location":"Left Knee"},{"euler":{"heading":93.45271788658032,"pitch":107.8256703208255,"roll":39.77935439133331},"location":"Left Ankle"},{"euler":{"heading":55.334825099291095,"pitch":0.8219769256030572,"roll":6.6799396190280245},"location":"Right Ankle"},{"euler":{"heading":92.59777715023961,"pitch":-154.16749401103925,"roll":57.310841495831184},"location":"Right Hip"},{"euler":{"heading":171.5143238588832,"pitch":-121.88102023303347,"roll":-49.98201983747075},"location":"Right Knee"},{"euler":{"heading":34.07299459559174,"pitch":-125.76115708868333,"roll":58.38624554121805},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.103"} +{"sensors":[{"euler":{"heading":223.36182104782682,"pitch":138.4102569590859,"roll":27.8408582572207},"location":"Left Knee"},{"euler":{"heading":89.8824460979223,"pitch":106.74310328874294,"roll":36.62641895219998},"location":"Left Ankle"},{"euler":{"heading":54.37009258936199,"pitch":0.9335292330427515,"roll":6.318195657125223},"location":"Right Ankle"},{"euler":{"heading":92.53174943521564,"pitch":-154.62574460993534,"roll":58.18600734624807},"location":"Right Hip"},{"euler":{"heading":173.13789147299488,"pitch":-125.36166820973013,"roll":-50.97756785372368},"location":"Right Knee"},{"euler":{"heading":33.909445136032566,"pitch":-124.97879137981501,"roll":57.897620987096246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.203"} +{"sensors":[{"euler":{"heading":234.25063894304415,"pitch":139.45048126317732,"roll":29.10052243149863},"location":"Left Knee"},{"euler":{"heading":88.48170148813007,"pitch":106.41254295986865,"roll":34.826277056979976},"location":"Left Ankle"},{"euler":{"heading":52.55808333042579,"pitch":0.5464263097384763,"roll":5.7988760914127},"location":"Right Ankle"},{"euler":{"heading":92.87232449169409,"pitch":-155.18817014894182,"roll":58.90490661162326},"location":"Right Hip"},{"euler":{"heading":175.0178523256954,"pitch":-129.9630013887571,"roll":-52.30481106835131},"location":"Right Knee"},{"euler":{"heading":33.99975062242931,"pitch":-124.44966224183351,"roll":57.59535888838663},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.303"} +{"sensors":[{"euler":{"heading":245.01932504873974,"pitch":139.56168313685959,"roll":30.040470188348767},"location":"Left Knee"},{"euler":{"heading":87.80228133931706,"pitch":106.27753866388178,"roll":33.84364935128198},"location":"Left Ankle"},{"euler":{"heading":49.24602499738321,"pitch":-0.10821632123537145,"roll":5.10023848227143},"location":"Right Ankle"},{"euler":{"heading":93.94134204252468,"pitch":-154.64435313404763,"roll":58.90191595046094},"location":"Right Hip"},{"euler":{"heading":177.75356709312587,"pitch":-100.1979512498814,"roll":-53.34307996151618},"location":"Right Knee"},{"euler":{"heading":34.34977556018638,"pitch":-124.29219601765016,"roll":57.70457299954796},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.404"} +{"sensors":[{"euler":{"heading":255.0611425438658,"pitch":139.21801482317363,"roll":30.755173169513892},"location":"Left Knee"},{"euler":{"heading":87.84705320538536,"pitch":106.19353479749361,"roll":33.40303441615379},"location":"Left Ankle"},{"euler":{"heading":46.965172497644886,"pitch":-0.7848946891118344,"roll":4.790214634044287},"location":"Right Ankle"},{"euler":{"heading":95.32220783827222,"pitch":-153.80491782064288,"roll":58.14922435541485},"location":"Right Hip"},{"euler":{"heading":179.32821038381329,"pitch":-107.75940612489326,"roll":-54.33377196536457},"location":"Right Knee"},{"euler":{"heading":34.97729800416774,"pitch":-124.98797641588514,"roll":58.09661569959317},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.505"} +{"sensors":[{"euler":{"heading":264.73627828947923,"pitch":138.40871334085628,"roll":31.242155852562504},"location":"Left Knee"},{"euler":{"heading":88.37484788484683,"pitch":106.23043131774425,"roll":33.36273097453841},"location":"Left Ankle"},{"euler":{"heading":47.081155247880396,"pitch":-1.3939052202006508,"roll":5.154943170639858},"location":"Right Ankle"},{"euler":{"heading":96.42748705444501,"pitch":-153.18067603857858,"roll":56.93430191987337},"location":"Right Hip"},{"euler":{"heading":178.28913934543198,"pitch":-111.10221551240394,"roll":-54.60664476882812},"location":"Right Knee"},{"euler":{"heading":35.84831820375097,"pitch":-126.30792877429664,"roll":58.655704129633854},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.606"} +{"sensors":[{"euler":{"heading":274.15015046053134,"pitch":137.29284200677066,"roll":31.29919026730626},"location":"Left Knee"},{"euler":{"heading":89.34361309636215,"pitch":106.41988818596982,"roll":33.72645787708457},"location":"Left Ankle"},{"euler":{"heading":49.29803972309236,"pitch":-1.4232646981805857,"roll":5.883198853575872},"location":"Right Ankle"},{"euler":{"heading":96.69723834900051,"pitch":-152.93760843472072,"roll":55.84087172788603},"location":"Right Hip"},{"euler":{"heading":174.87897541088878,"pitch":-112.76074396116356,"roll":-53.070980291945304},"location":"Right Knee"},{"euler":{"heading":36.844736383375874,"pitch":-127.98963589686699,"roll":59.371383716670465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.706"} +{"sensors":[{"euler":{"heading":247.1788854144782,"pitch":136.0698078060936,"roll":30.831771240575634},"location":"Left Knee"},{"euler":{"heading":90.75300178672593,"pitch":106.75289936737283,"roll":34.62881208937611},"location":"Left Ankle"},{"euler":{"heading":52.380735750783124,"pitch":-1.143438228362527,"roll":6.438628968218285},"location":"Right Ankle"},{"euler":{"heading":95.89626451410047,"pitch":-153.03134759124865,"roll":55.21928455509743},"location":"Right Hip"},{"euler":{"heading":170.8098278697999,"pitch":-113.9784195650472,"roll":-50.96388226275078},"location":"Right Knee"},{"euler":{"heading":37.79776274503829,"pitch":-130.21567230718028,"roll":60.12799534500342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.807"} +{"sensors":[{"euler":{"heading":223.62349687303038,"pitch":134.88782702548423,"roll":29.62359411651807},"location":"Left Knee"},{"euler":{"heading":92.70895160805334,"pitch":107.57760943063555,"roll":36.4409308804385},"location":"Left Ankle"},{"euler":{"heading":54.18641217570482,"pitch":-0.37909440552627427,"roll":6.738516071396456},"location":"Right Ankle"},{"euler":{"heading":94.90038806269042,"pitch":-153.24696283212378,"roll":54.86610609958769},"location":"Right Hip"},{"euler":{"heading":168.67884508281992,"pitch":-116.02432760854248,"roll":-49.529994036475706},"location":"Right Knee"},{"euler":{"heading":38.74923647053446,"pitch":-132.29410507646227,"roll":60.877695810503084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.907"} +{"sensors":[{"euler":{"heading":204.19864718572734,"pitch":133.6740443229358,"roll":27.411234704866263},"location":"Left Knee"},{"euler":{"heading":96.69430644724801,"pitch":111.02609848757199,"roll":39.490587792394656},"location":"Left Ankle"},{"euler":{"heading":55.02402095813434,"pitch":0.37756503502635314,"roll":6.820914464256811},"location":"Right Ankle"},{"euler":{"heading":93.86034925642139,"pitch":-153.4285165489114,"roll":54.97324548962892},"location":"Right Hip"},{"euler":{"heading":168.24221057453795,"pitch":-118.37814484768823,"roll":-48.86449463282814},"location":"Right Knee"},{"euler":{"heading":38.19931282348102,"pitch":-131.54594456881605,"roll":61.06492622945277},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.8"} +{"sensors":[{"euler":{"heading":187.0600324671546,"pitch":132.9628898906422,"roll":25.363861234379637},"location":"Left Knee"},{"euler":{"heading":99.4061258025232,"pitch":112.31723863881479,"roll":42.19777901315519},"location":"Left Ankle"},{"euler":{"heading":55.6028688623209,"pitch":1.0273085315237178,"roll":6.74507301783113},"location":"Right Ankle"},{"euler":{"heading":92.88681433077925,"pitch":-153.61691489402025,"roll":55.51342094066603},"location":"Right Hip"},{"euler":{"heading":168.89923951708414,"pitch":-120.8903303629194,"roll":-48.74679516954532},"location":"Right Knee"},{"euler":{"heading":36.77313154113292,"pitch":-129.62260011193445,"roll":60.514683606507496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.109"} +{"sensors":[{"euler":{"heading":168.54152922043914,"pitch":133.49160090157798,"roll":24.921225110941673},"location":"Left Knee"},{"euler":{"heading":98.86551322227089,"pitch":111.07926477493332,"roll":42.49675111183967},"location":"Left Ankle"},{"euler":{"heading":55.86133197608881,"pitch":1.643327678371346,"roll":6.620565716048017},"location":"Right Ankle"},{"euler":{"heading":92.14813289770132,"pitch":-153.76147340461821,"roll":56.31832884659943},"location":"Right Hip"},{"euler":{"heading":170.00931556537574,"pitch":-123.49504732662746,"roll":-48.98461565259079},"location":"Right Knee"},{"euler":{"heading":35.245818387019625,"pitch":-127.70409010074101,"roll":59.56946524585675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.210"} +{"sensors":[{"euler":{"heading":177.39987629839524,"pitch":135.2236908114202,"roll":26.022852599847507},"location":"Left Knee"},{"euler":{"heading":95.4289619000438,"pitch":109.59008829743999,"roll":40.1220760006557},"location":"Left Ankle"},{"euler":{"heading":55.631448778479935,"pitch":2.2352449105342114,"roll":6.458509144443216},"location":"Right Ankle"},{"euler":{"heading":91.78331960793118,"pitch":-153.9290760641564,"roll":57.123995961939485},"location":"Right Hip"},{"euler":{"heading":171.65838400883817,"pitch":-126.42679259396472,"roll":-49.498654087331715},"location":"Right Knee"},{"euler":{"heading":34.008736548317664,"pitch":-126.0149310906669,"roll":58.73751872127107},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.311"} +{"sensors":[{"euler":{"heading":186.27238866855572,"pitch":137.39507173027818,"roll":27.383067339862755},"location":"Left Knee"},{"euler":{"heading":91.45481571003941,"pitch":108.143579467696,"roll":36.97236840059013},"location":"Left Ankle"},{"euler":{"heading":54.718303900631945,"pitch":2.7242204194807904,"roll":6.1876582299988945},"location":"Right Ankle"},{"euler":{"heading":91.64248764713805,"pitch":-154.19866845774075,"roll":57.95534636574554},"location":"Right Hip"},{"euler":{"heading":173.75504560795434,"pitch":-129.85911333456824,"roll":-50.34878867859855},"location":"Right Knee"},{"euler":{"heading":33.551612893485895,"pitch":-125.14468798160021,"roll":58.145016849143964},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.412"} +{"sensors":[{"euler":{"heading":201.09514980170013,"pitch":138.43056455725036,"roll":28.476010605876482},"location":"Left Knee"},{"euler":{"heading":89.53433413903547,"pitch":107.4417215209264,"roll":35.056381560531115},"location":"Left Ankle"},{"euler":{"heading":53.02772351056875,"pitch":2.6892983775327113,"roll":5.700142406999005},"location":"Right Ankle"},{"euler":{"heading":91.86573888242425,"pitch":-154.53505161196668,"roll":58.678561729170994},"location":"Right Hip"},{"euler":{"heading":176.0107910471589,"pitch":-134.2669520011114,"roll":-51.5639098107387},"location":"Right Knee"},{"euler":{"heading":33.427701604137305,"pitch":-124.7489691834402,"roll":57.78051516422957},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.513"} +{"sensors":[{"euler":{"heading":215.3918848215301,"pitch":138.56875810152533,"roll":29.322159545288837},"location":"Left Knee"},{"euler":{"heading":88.64340072513193,"pitch":107.08504936883377,"roll":34.075743404478004},"location":"Left Ankle"},{"euler":{"heading":49.756201159511875,"pitch":2.10161853977944,"roll":5.0801281662991045},"location":"Right Ankle"},{"euler":{"heading":92.71041499418183,"pitch":-154.17529645077002,"roll":58.71070555625389},"location":"Right Hip"},{"euler":{"heading":178.62221194244302,"pitch":-103.97150680100026,"roll":-52.63251882966483},"location":"Right Knee"},{"euler":{"heading":33.50993144372357,"pitch":-124.54282226509618,"roll":57.80871364780661},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.614"} +{"sensors":[{"euler":{"heading":228.9776963393771,"pitch":138.0868822913728,"roll":29.939943590759956},"location":"Left Knee"},{"euler":{"heading":89.26656065261874,"pitch":107.05154443195039,"roll":33.99941906403021},"location":"Left Ankle"},{"euler":{"heading":47.56183104356069,"pitch":1.303956685801496,"roll":4.709615349669194},"location":"Right Ankle"},{"euler":{"heading":94.03937349476365,"pitch":-153.46401680569303,"roll":57.970885000628506},"location":"Right Hip"},{"euler":{"heading":179.84124074819874,"pitch":-111.03060612090023,"roll":-53.63801694669836},"location":"Right Knee"},{"euler":{"heading":34.077688299351216,"pitch":-124.98854003858656,"roll":58.159092283025956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.714"} +{"sensors":[{"euler":{"heading":241.68617670543938,"pitch":137.26569406223553,"roll":30.28969923168396},"location":"Left Knee"},{"euler":{"heading":90.04615458735687,"pitch":107.06513998875535,"roll":34.24322715762719},"location":"Left Ankle"},{"euler":{"heading":47.77439793920462,"pitch":0.5298110172213464,"roll":4.919903814702275},"location":"Right Ankle"},{"euler":{"heading":95.22293614528729,"pitch":-152.95511512512374,"roll":56.786296500565655},"location":"Right Hip"},{"euler":{"heading":178.38836667337887,"pitch":-113.97754550881021,"roll":-53.81171525202853},"location":"Right Knee"},{"euler":{"heading":34.9636694694161,"pitch":-126.28968603472791,"roll":58.71818305472336},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.815"} +{"sensors":[{"euler":{"heading":217.73630903489544,"pitch":136.19537465601198,"roll":30.216979308515565},"location":"Left Knee"},{"euler":{"heading":91.19153912862119,"pitch":107.23362598987981,"roll":34.86265444186447},"location":"Left Ankle"},{"euler":{"heading":50.27195814528416,"pitch":0.46432991549921176,"roll":5.309163433232047},"location":"Right Ankle"},{"euler":{"heading":95.35689253075857,"pitch":-152.91585361261136,"roll":55.72641685050909},"location":"Right Hip"},{"euler":{"heading":174.87453000604097,"pitch":-115.36729095792919,"roll":-52.38054372682568},"location":"Right Knee"},{"euler":{"heading":35.911052522474485,"pitch":-128.03571743125514,"roll":59.39636474925102},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.917"} +{"sensors":[{"euler":{"heading":196.6814281314059,"pitch":135.00083719041078,"roll":29.71403137766401},"location":"Left Knee"},{"euler":{"heading":92.97863521575907,"pitch":107.79776339089184,"roll":37.713888997678026},"location":"Left Ankle"},{"euler":{"heading":53.43226233075575,"pitch":0.5553969239492906,"roll":5.859497089908842},"location":"Right Ankle"},{"euler":{"heading":94.37745327768272,"pitch":-153.21801825135023,"roll":55.24127516545818},"location":"Right Hip"},{"euler":{"heading":170.84957700543688,"pitch":-116.14931186213627,"roll":-50.317489354143106},"location":"Right Knee"},{"euler":{"heading":36.91994727022704,"pitch":-130.1321456881296,"roll":60.14422827432592},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.17"} +{"sensors":[{"euler":{"heading":178.79453531826533,"pitch":133.7132534713697,"roll":28.36762823989761},"location":"Left Knee"},{"euler":{"heading":95.36202169418317,"pitch":109.04298705180267,"roll":39.72375009791023},"location":"Left Ankle"},{"euler":{"heading":55.49528609768017,"pitch":0.8873572315543616,"roll":6.198547380917958},"location":"Right Ankle"},{"euler":{"heading":93.45845794991445,"pitch":-153.5587164262152,"roll":55.07339764891236},"location":"Right Hip"},{"euler":{"heading":168.5021193048932,"pitch":-117.54063067592264,"roll":-48.9357404187288},"location":"Right Knee"},{"euler":{"heading":38.12795254320434,"pitch":-132.20643111931665,"roll":60.94230544689333},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.118"} +{"sensors":[{"euler":{"heading":164.5838317864388,"pitch":132.45442812423275,"roll":25.987115415907848},"location":"Left Knee"},{"euler":{"heading":99.09456952476485,"pitch":112.9824383466224,"roll":42.476375088119205},"location":"Left Ankle"},{"euler":{"heading":56.539507487912154,"pitch":1.1486215083989255,"roll":6.366192642826162},"location":"Right Ankle"},{"euler":{"heading":92.643862154923,"pitch":-153.8465947835937,"roll":55.34730788402113},"location":"Right Hip"},{"euler":{"heading":167.8269073744039,"pitch":-119.31156760833039,"roll":-48.39216637685592},"location":"Right Knee"},{"euler":{"heading":38.133907288883904,"pitch":-132.06078800738499,"roll":61.254324902204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.219"} +{"sensors":[{"euler":{"heading":151.7004486077949,"pitch":131.87148531180947,"roll":23.944653874317062},"location":"Left Knee"},{"euler":{"heading":101.58511257228837,"pitch":114.32794451196015,"roll":44.92873757930729},"location":"Left Ankle"},{"euler":{"heading":57.20430673912094,"pitch":1.302509357559033,"roll":6.3795733785435464},"location":"Right Ankle"},{"euler":{"heading":91.9169759394307,"pitch":-154.16818530523435,"roll":56.00007709561901},"location":"Right Hip"},{"euler":{"heading":168.00046663696352,"pitch":-121.23666084749736,"roll":-48.39669973917033},"location":"Right Knee"},{"euler":{"heading":37.13301655999552,"pitch":-130.2672092066465,"roll":60.8788924119836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.320"} +{"sensors":[{"euler":{"heading":137.0741537470154,"pitch":132.38433678062853,"roll":23.58768848688536},"location":"Left Knee"},{"euler":{"heading":101.01410131505953,"pitch":113.04515006076414,"roll":45.03586382137656},"location":"Left Ankle"},{"euler":{"heading":57.49637606520885,"pitch":1.44725842180313,"roll":6.254116040689192},"location":"Right Ankle"},{"euler":{"heading":91.43777834548764,"pitch":-154.4388667747109,"roll":56.83756938605711},"location":"Right Hip"},{"euler":{"heading":168.72541997326718,"pitch":-123.30049476274763,"roll":-48.7820297652533},"location":"Right Knee"},{"euler":{"heading":35.813464903995964,"pitch":-128.36548828598185,"roll":59.99100317078524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.421"} +{"sensors":[{"euler":{"heading":155.96673837231387,"pitch":134.1959031025657,"roll":24.816419638196827},"location":"Left Knee"},{"euler":{"heading":97.53769118355358,"pitch":111.33438505468773,"roll":42.5885274392389},"location":"Left Ankle"},{"euler":{"heading":57.284238458687966,"pitch":1.6587825796228168,"roll":6.078704436620273},"location":"Right Ankle"},{"euler":{"heading":91.15650051093888,"pitch":-154.7887300972398,"roll":57.6975624474514},"location":"Right Hip"},{"euler":{"heading":170.06537797594046,"pitch":-125.80794528647287,"roll":-49.43507678872797},"location":"Right Knee"},{"euler":{"heading":34.694618413596366,"pitch":-126.67268945738367,"roll":59.21690285370672},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.522"} +{"sensors":[{"euler":{"heading":171.6325645350825,"pitch":136.6200627923091,"roll":26.447277674377144},"location":"Left Knee"},{"euler":{"heading":93.39642206519822,"pitch":109.63844654921895,"roll":39.17342469531501},"location":"Left Ankle"},{"euler":{"heading":56.39331461281917,"pitch":1.8866543216605351,"roll":5.727083992958246},"location":"Right Ankle"},{"euler":{"heading":91.072100459845,"pitch":-155.25360708751583,"roll":58.63405620270626},"location":"Right Hip"},{"euler":{"heading":171.89634017834643,"pitch":-128.9209007578256,"roll":-50.40406910985517},"location":"Right Knee"},{"euler":{"heading":34.35015657223673,"pitch":-125.7554205116453,"roll":58.71396256833605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.622"} +{"sensors":[{"euler":{"heading":187.36930808157427,"pitch":137.9330565130782,"roll":27.84004990693943},"location":"Left Knee"},{"euler":{"heading":91.4942798586784,"pitch":108.74335189429706,"roll":37.02483222578351},"location":"Left Ankle"},{"euler":{"heading":54.497733151537254,"pitch":1.6292388894944816,"roll":5.335625593662422},"location":"Right Ankle"},{"euler":{"heading":91.4648904138605,"pitch":-155.60949637876425,"roll":59.37065058243564},"location":"Right Hip"},{"euler":{"heading":174.0067061605118,"pitch":-133.19131068204302,"roll":-51.738662198869655},"location":"Right Knee"},{"euler":{"heading":34.28389091501305,"pitch":-125.39862846048077,"roll":58.38631631150245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.723"} +{"sensors":[{"euler":{"heading":202.73862727341685,"pitch":138.2085008617704,"roll":28.999794916245488},"location":"Left Knee"},{"euler":{"heading":90.45735187281056,"pitch":108.20026670486736,"roll":35.77859900320516},"location":"Left Ankle"},{"euler":{"heading":51.097959836383524,"pitch":0.9163150005450333,"roll":4.79581303429618},"location":"Right Ankle"},{"euler":{"heading":92.63090137247445,"pitch":-154.97979674088782,"roll":59.32108552419208},"location":"Right Hip"},{"euler":{"heading":176.66853554446064,"pitch":-102.90967961383872,"roll":-52.88979597898269},"location":"Right Knee"},{"euler":{"heading":34.549251823511746,"pitch":-125.27751561443269,"roll":58.478934680352204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.824"} +{"sensors":[{"euler":{"heading":217.21476454607517,"pitch":137.86265077559338,"roll":29.88731542462094},"location":"Left Knee"},{"euler":{"heading":90.2428666855295,"pitch":107.84899003438062,"roll":35.10698910288465},"location":"Left Ankle"},{"euler":{"heading":48.73191385274517,"pitch":0.09343350049053001,"roll":4.484981730866562},"location":"Right Ankle"},{"euler":{"heading":94.34906123522701,"pitch":-154.08806706679903,"roll":58.438976971772874},"location":"Right Hip"},{"euler":{"heading":178.07668199001458,"pitch":-110.18121165245485,"roll":-54.00081638108442},"location":"Right Knee"},{"euler":{"heading":35.24432664116057,"pitch":-125.89351405298942,"roll":58.84979121231699},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.925"} +{"sensors":[{"euler":{"heading":230.74328809146766,"pitch":137.10138569803405,"roll":30.473583882158845},"location":"Left Knee"},{"euler":{"heading":90.57483001697656,"pitch":107.65159103094257,"roll":34.971290192596186},"location":"Left Ankle"},{"euler":{"heading":48.97122246747065,"pitch":-0.697159849558523,"roll":4.805233557779906},"location":"Right Ankle"},{"euler":{"heading":95.90165511170432,"pitch":-153.48551036011912,"roll":57.045079274595594},"location":"Right Hip"},{"euler":{"heading":176.60026379101313,"pitch":-112.96934048720937,"roll":-54.150734742975985},"location":"Right Knee"},{"euler":{"heading":36.157393977044514,"pitch":-127.27291264769048,"roll":59.377312091085294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.26"} +{"sensors":[{"euler":{"heading":243.56270928232092,"pitch":136.14124712823065,"roll":30.50122549394296},"location":"Left Knee"},{"euler":{"heading":91.10484701527892,"pitch":107.61143192784832,"roll":35.23041117333657},"location":"Left Ankle"},{"euler":{"heading":51.09285022072359,"pitch":-0.8899438646026707,"roll":5.449710202001915},"location":"Right Ankle"},{"euler":{"heading":96.39273960053389,"pitch":-153.3557093241072,"roll":55.77182134713603},"location":"Right Hip"},{"euler":{"heading":172.92773741191183,"pitch":-114.26615643848844,"roll":-52.65441126867839},"location":"Right Knee"},{"euler":{"heading":37.04165457934006,"pitch":-129.00187138292142,"roll":60.01458088197677},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.127"} +{"sensors":[{"euler":{"heading":219.73143835408885,"pitch":135.0646224154076,"roll":30.007352944548664},"location":"Left Knee"},{"euler":{"heading":92.22561231375103,"pitch":107.79403873506348,"roll":36.10112005600291},"location":"Left Ankle"},{"euler":{"heading":54.114815198651236,"pitch":-0.6759494781424037,"roll":6.048489181801724},"location":"Right Ankle"},{"euler":{"heading":95.5534656404805,"pitch":-153.6076383916965,"roll":55.16338921242243},"location":"Right Hip"},{"euler":{"heading":169.02871367072066,"pitch":-115.15204079463959,"roll":-50.54522014181055},"location":"Right Knee"},{"euler":{"heading":37.99373912140606,"pitch":-131.32043424462927,"roll":60.7006227937791},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.229"} +{"sensors":[{"euler":{"heading":199.30829451868,"pitch":133.92066017386685,"roll":28.6691176500938},"location":"Left Knee"},{"euler":{"heading":93.93430108237594,"pitch":108.52088486155714,"roll":37.97225805040262},"location":"Left Ankle"},{"euler":{"heading":55.953333678786116,"pitch":-0.1521045303281633,"roll":6.393640263621552},"location":"Right Ankle"},{"euler":{"heading":94.57936907643244,"pitch":-153.89062455252687,"roll":54.890800291180184},"location":"Right Hip"},{"euler":{"heading":166.8133423036486,"pitch":-116.75558671517564,"roll":-49.0406981276295},"location":"Right Knee"},{"euler":{"heading":39.100615209265456,"pitch":-133.41339082016634,"roll":61.43681051440119},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.329"} +{"sensors":[{"euler":{"heading":182.633715066812,"pitch":132.75359415648018,"roll":26.42720588508442},"location":"Left Knee"},{"euler":{"heading":97.80962097413834,"pitch":112.09379637540142,"roll":40.94378224536236},"location":"Left Ankle"},{"euler":{"heading":57.02050031090751,"pitch":0.39435592270465303,"roll":6.554276237259397},"location":"Right Ankle"},{"euler":{"heading":93.6964321687892,"pitch":-154.1140620972742,"roll":55.08297026206217},"location":"Right Hip"},{"euler":{"heading":166.21325807328375,"pitch":-118.68627804365808,"roll":-48.33037831486655},"location":"Right Knee"},{"euler":{"heading":38.76555368833891,"pitch":-132.6658017381497,"roll":61.61187946296107},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.431"} +{"sensors":[{"euler":{"heading":167.8078435601308,"pitch":131.99073474083215,"roll":24.465735296575975},"location":"Left Knee"},{"euler":{"heading":100.5286588767245,"pitch":113.3281667378613,"roll":43.430654020826125},"location":"Left Ankle"},{"euler":{"heading":57.649700279816756,"pitch":1.0799203304341878,"roll":6.492598613533457},"location":"Right Ankle"},{"euler":{"heading":92.87053895191029,"pitch":-154.18390588754679,"roll":55.705923235855956},"location":"Right Hip"},{"euler":{"heading":166.7481822659554,"pitch":-120.98015023929227,"roll":-48.08484048337989},"location":"Right Knee"},{"euler":{"heading":37.53899831950502,"pitch":-130.73672156433472,"roll":61.02569151666497},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.533"} +{"sensors":[{"euler":{"heading":151.45205920411775,"pitch":132.54166126674895,"roll":24.112911766918376},"location":"Left Knee"},{"euler":{"heading":99.98204298905205,"pitch":112.08285006407517,"roll":43.50008861874352},"location":"Left Ankle"},{"euler":{"heading":57.79723025183508,"pitch":1.8219282973907691,"roll":6.330838752180111},"location":"Right Ankle"},{"euler":{"heading":92.30848505671926,"pitch":-154.13426529879212,"roll":56.54783091227036},"location":"Right Hip"},{"euler":{"heading":167.93586403935987,"pitch":-123.44463521536305,"roll":-48.19510643504191},"location":"Right Knee"},{"euler":{"heading":36.02884848755452,"pitch":-128.83179940790123,"roll":60.01687236499848},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.634"} +{"sensors":[{"euler":{"heading":168.575603283706,"pitch":134.43124514007405,"roll":25.38912059022654},"location":"Left Knee"},{"euler":{"heading":96.24008869014683,"pitch":110.43081505766766,"roll":39.24382975686917},"location":"Left Ankle"},{"euler":{"heading":57.34250722665158,"pitch":2.5147354676516924,"roll":6.0977548769621},"location":"Right Ankle"},{"euler":{"heading":92.10263655104734,"pitch":-154.1208387689129,"roll":57.418047821043324},"location":"Right Hip"},{"euler":{"heading":169.6297776354239,"pitch":-126.16892169382675,"roll":-48.68809579153772},"location":"Right Knee"},{"euler":{"heading":34.87596363879907,"pitch":-127.22986946711112,"roll":59.16518512849863},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.735"} +{"sensors":[{"euler":{"heading":183.0117929553354,"pitch":136.91312062606664,"roll":26.962708531203887},"location":"Left Knee"},{"euler":{"heading":91.97232982113215,"pitch":108.9627335519009,"roll":35.89444678118225},"location":"Left Ankle"},{"euler":{"heading":56.17075650398642,"pitch":2.9507619208865234,"roll":5.68172938926589},"location":"Right Ankle"},{"euler":{"heading":92.16737289594262,"pitch":-154.30250489202163,"roll":58.29499303893899},"location":"Right Hip"},{"euler":{"heading":171.6667998718815,"pitch":-129.31452952444408,"roll":-49.60678621238395},"location":"Right Knee"},{"euler":{"heading":34.60086727491917,"pitch":-126.49438252040001,"roll":58.62991661564877},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.836"} +{"sensors":[{"euler":{"heading":197.36061365980188,"pitch":138.29680856346,"roll":28.372687678083498},"location":"Left Knee"},{"euler":{"heading":89.78759683901895,"pitch":108.26646019671081,"roll":35.37375210306403},"location":"Left Ankle"},{"euler":{"heading":53.94118085358778,"pitch":2.511935728797871,"roll":5.2448064503393015},"location":"Right Ankle"},{"euler":{"heading":92.64438560634835,"pitch":-154.77225440281947,"roll":58.971743735045095},"location":"Right Hip"},{"euler":{"heading":173.61261988469337,"pitch":-133.22682657199968,"roll":-51.03360759114556},"location":"Right Knee"},{"euler":{"heading":34.58453054742725,"pitch":-126.15744426836001,"roll":58.29817495408389},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.936"} +{"sensors":[{"euler":{"heading":211.4620522938217,"pitch":138.692127707114,"roll":29.372918910275146},"location":"Left Knee"},{"euler":{"heading":88.62133715511705,"pitch":107.81481417703974,"roll":34.292626892757625},"location":"Left Ankle"},{"euler":{"heading":50.347062768229,"pitch":1.8544921559180843,"roll":4.501575805305372},"location":"Right Ankle"},{"euler":{"heading":93.76119704571352,"pitch":-154.25127896253753,"roll":58.97456936154059},"location":"Right Hip"},{"euler":{"heading":176.00760789622404,"pitch":-102.68539391479972,"roll":-52.323996832031},"location":"Right Knee"},{"euler":{"heading":34.59482749268453,"pitch":-125.829199841524,"roll":58.305857458675504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.38"} +{"sensors":[{"euler":{"heading":225.00334706443954,"pitch":138.4041649364026,"roll":30.185627019247633},"location":"Left Knee"},{"euler":{"heading":88.48420343960534,"pitch":107.56458275933576,"roll":33.72586420348186},"location":"Left Ankle"},{"euler":{"heading":47.799856491406096,"pitch":0.8502929403262758,"roll":4.257668224774834},"location":"Right Ankle"},{"euler":{"heading":95.51632734114216,"pitch":-153.30740106628377,"roll":58.12711242538653},"location":"Right Hip"},{"euler":{"heading":177.52559710660165,"pitch":-110.29185452331974,"roll":-53.4540971488279},"location":"Right Knee"},{"euler":{"heading":35.185344743416074,"pitch":-126.32127985737161,"roll":58.612771712807955},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.138"} +{"sensors":[{"euler":{"heading":237.7967623579956,"pitch":137.66374844276234,"roll":30.748314317322873},"location":"Left Knee"},{"euler":{"heading":88.8295330956448,"pitch":107.4643744834022,"roll":33.590777783133674},"location":"Left Ankle"},{"euler":{"heading":47.76987084226549,"pitch":-0.0034863537063518635,"roll":4.494401402297351},"location":"Right Ankle"},{"euler":{"heading":97.12094460702795,"pitch":-152.6266609596554,"roll":56.73315118284788},"location":"Right Hip"},{"euler":{"heading":176.4917873959415,"pitch":-113.65641907098777,"roll":-53.814937433945104},"location":"Right Knee"},{"euler":{"heading":36.060560269074465,"pitch":-127.50790187163446,"roll":59.08274454152716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.239"} +{"sensors":[{"euler":{"heading":214.01708612219605,"pitch":136.65362359848612,"roll":30.848482885590588},"location":"Left Knee"},{"euler":{"heading":89.75282978608033,"pitch":107.58043703506198,"roll":33.96920000482031},"location":"Left Ankle"},{"euler":{"heading":49.73663375803894,"pitch":-0.33438771833571673,"roll":5.063711262067616},"location":"Right Ankle"},{"euler":{"heading":97.82135014632516,"pitch":-152.42024486368987,"roll":55.43483606456309},"location":"Right Hip"},{"euler":{"heading":173.19885865634734,"pitch":-114.972027163889,"roll":-52.6209436905506},"location":"Right Knee"},{"euler":{"heading":36.97950424216702,"pitch":-129.025861684471,"roll":59.68697008737445},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.340"} +{"sensors":[{"euler":{"heading":193.19037750997643,"pitch":135.47576123863752,"roll":30.46363459703153},"location":"Left Knee"},{"euler":{"heading":91.23379680747229,"pitch":107.96614333155578,"roll":34.94103000433828},"location":"Left Ankle"},{"euler":{"heading":52.83797038223505,"pitch":-0.307198946502145,"roll":5.694840135860855},"location":"Right Ankle"},{"euler":{"heading":97.23296513169264,"pitch":-152.5407203773209,"roll":54.77260245810679},"location":"Right Hip"},{"euler":{"heading":169.38522279071262,"pitch":-115.6998244475001,"roll":-50.70259932149554},"location":"Right Knee"},{"euler":{"heading":37.994053817950316,"pitch":-131.04827551602392,"roll":60.380773078637006},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.442"} +{"sensors":[{"euler":{"heading":175.35258975897878,"pitch":134.19693511477377,"roll":29.36102113732838},"location":"Left Knee"},{"euler":{"heading":93.11666712672508,"pitch":108.80702899840021,"roll":36.67192700390445},"location":"Left Ankle"},{"euler":{"heading":55.141673344011544,"pitch":-0.07022905185193049,"roll":6.08785612227477},"location":"Right Ankle"},{"euler":{"heading":96.20341861852337,"pitch":-152.88664833958882,"roll":54.551592212296114},"location":"Right Hip"},{"euler":{"heading":166.98420051164135,"pitch":-116.9485920027501,"roll":-49.307339389345984},"location":"Right Knee"},{"euler":{"heading":39.16339843615528,"pitch":-133.25594796442152,"roll":61.0864457707733},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.542"} +{"sensors":[{"euler":{"heading":160.9048307830809,"pitch":133.0397416032964,"roll":27.18741902359554},"location":"Left Knee"},{"euler":{"heading":96.60500041405257,"pitch":111.9138260985602,"roll":39.498484303514005},"location":"Left Ankle"},{"euler":{"heading":56.37125600961039,"pitch":-0.031956146666737434,"roll":6.241570510047294},"location":"Right Ankle"},{"euler":{"heading":95.55807675667103,"pitch":-153.17298350562993,"roll":54.60268299106651},"location":"Right Hip"},{"euler":{"heading":166.0170304604772,"pitch":-118.3662328024751,"roll":-48.78285545041139},"location":"Right Knee"},{"euler":{"heading":38.95955859253976,"pitch":-133.28660316797937,"roll":61.25280119369597},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.643"} +{"sensors":[{"euler":{"heading":148.49559770477282,"pitch":132.21701744296675,"roll":25.012427121235987},"location":"Left Knee"},{"euler":{"heading":99.40700037264732,"pitch":114.00994348870418,"roll":42.092385873162605},"location":"Left Ankle"},{"euler":{"heading":57.40913040864936,"pitch":-0.0975105320000637,"roll":6.236163459042564},"location":"Right Ankle"},{"euler":{"heading":94.72101908100393,"pitch":-153.59943515506694,"roll":55.15491469195986},"location":"Right Hip"},{"euler":{"heading":165.8153274144295,"pitch":-119.8983595222276,"roll":-48.77331990537025},"location":"Right Knee"},{"euler":{"heading":37.98860273328578,"pitch":-131.63294285118144,"roll":60.846271074326374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.744"} +{"sensors":[{"euler":{"heading":135.14603793429555,"pitch":132.47656569867007,"roll":24.223684409112387},"location":"Left Knee"},{"euler":{"heading":99.61005033538258,"pitch":112.94019913983377,"roll":42.901897285846346},"location":"Left Ankle"},{"euler":{"heading":58.06821736778443,"pitch":-0.13150947880005734,"roll":5.962547113138307},"location":"Right Ankle"},{"euler":{"heading":94.33641717290355,"pitch":-153.97074163956023,"roll":55.889423222763874},"location":"Right Hip"},{"euler":{"heading":166.14629467298656,"pitch":-121.60852357000483,"roll":-49.18973791483323},"location":"Right Knee"},{"euler":{"heading":36.6772424599572,"pitch":-129.8571485660633,"roll":59.90539396689374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.846"} +{"sensors":[{"euler":{"heading":155.050184140866,"pitch":134.00390912880306,"roll":25.17631596820115},"location":"Left Knee"},{"euler":{"heading":96.61779530184432,"pitch":111.4961792258504,"roll":40.95545755726171},"location":"Left Ankle"},{"euler":{"heading":58.16764563100599,"pitch":-0.0308585309200516,"roll":5.841292401824476},"location":"Right Ankle"},{"euler":{"heading":94.0840254556132,"pitch":-154.35491747560422,"roll":56.69423090048748},"location":"Right Hip"},{"euler":{"heading":167.1629152056879,"pitch":-123.76642121300435,"roll":-49.87701412334991},"location":"Right Knee"},{"euler":{"heading":35.54701821396148,"pitch":-128.20893370945697,"roll":59.07110457020437},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.947"} +{"sensors":[{"euler":{"heading":171.0514157267794,"pitch":136.46601821592276,"roll":26.758684371381037},"location":"Left Knee"},{"euler":{"heading":92.29976577165989,"pitch":109.80906130326537,"roll":37.441161801535536},"location":"Left Ankle"},{"euler":{"heading":57.550881067905394,"pitch":0.16597732217195357,"roll":5.5134131616420285},"location":"Right Ankle"},{"euler":{"heading":93.97562291005188,"pitch":-154.8319257280438,"roll":57.56230781043874},"location":"Right Hip"},{"euler":{"heading":168.76537368511913,"pitch":-126.51477909170391,"roll":-50.86431271101492},"location":"Right Knee"},{"euler":{"heading":35.24231639256533,"pitch":-127.33804033851128,"roll":58.482744113183934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.47"} +{"sensors":[{"euler":{"heading":186.54627415410147,"pitch":137.98816639433048,"roll":28.176565934242934},"location":"Left Knee"},{"euler":{"heading":89.22603919449391,"pitch":108.75940517293884,"roll":34.865795621381984},"location":"Left Ankle"},{"euler":{"heading":56.139542961114856,"pitch":0.24937958995475823,"roll":5.068321845477826},"location":"Right Ankle"},{"euler":{"heading":94.0155606190467,"pitch":-155.61748315523946,"roll":58.462327029394864},"location":"Right Hip"},{"euler":{"heading":170.7638363166072,"pitch":-130.23830118253352,"roll":-52.109131439913426},"location":"Right Knee"},{"euler":{"heading":35.318084753308796,"pitch":-126.70423630466016,"roll":58.084469701865544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.148"} +{"sensors":[{"euler":{"heading":201.93539673869134,"pitch":138.45809975489743,"roll":29.240159340818643},"location":"Left Knee"},{"euler":{"heading":88.08468527504452,"pitch":108.17096465564495,"roll":33.710466059243785},"location":"Left Ankle"},{"euler":{"heading":53.31933866500337,"pitch":-0.23805836904071762,"roll":4.680239660930043},"location":"Right Ankle"},{"euler":{"heading":94.82025455714202,"pitch":-155.5932348397155,"roll":58.82234432645538},"location":"Right Hip"},{"euler":{"heading":173.2374526849465,"pitch":-99.75822106428018,"roll":-53.26071829592209},"location":"Right Knee"},{"euler":{"heading":35.361276277977915,"pitch":-126.32756267419414,"roll":57.96352273167899},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.249"} +{"sensors":[{"euler":{"heading":216.4356070648222,"pitch":138.2872897794077,"roll":30.00989340673678},"location":"Left Knee"},{"euler":{"heading":87.88246674754008,"pitch":107.77886819008046,"roll":33.15191945331941},"location":"Left Ankle"},{"euler":{"heading":50.19365479850303,"pitch":-1.1142525321366459,"roll":4.412215694837039},"location":"Right Ankle"},{"euler":{"heading":96.25072910142782,"pitch":-154.89016135574394,"roll":58.333859893809844},"location":"Right Hip"},{"euler":{"heading":175.19495741645187,"pitch":-72.27614895785217,"roll":-54.25339646632988},"location":"Right Knee"},{"euler":{"heading":35.756398650180124,"pitch":-126.63230640677473,"roll":58.12967045851109},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.350"} +{"sensors":[{"euler":{"heading":229.78579635833998,"pitch":137.77731080146694,"roll":30.527654066063103},"location":"Left Knee"},{"euler":{"heading":88.53797007278607,"pitch":107.53848137107241,"roll":33.45547750798747},"location":"Left Ankle"},{"euler":{"heading":49.186789318652735,"pitch":-1.7528272789229813,"roll":4.464744125353335},"location":"Right Ankle"},{"euler":{"heading":97.81940619128505,"pitch":-153.91989522016956,"roll":57.35047390442886},"location":"Right Hip"},{"euler":{"heading":174.8817116748067,"pitch":-80.26728406206696,"roll":-54.7343068196969},"location":"Right Knee"},{"euler":{"heading":36.35575878516211,"pitch":-127.58157576609726,"roll":58.510453412659984},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.450"} +{"sensors":[{"euler":{"heading":242.36971672250598,"pitch":136.98707972132024,"roll":30.693638659456795},"location":"Left Knee"},{"euler":{"heading":89.57792306550746,"pitch":107.44088323396517,"roll":34.05992975718872},"location":"Left Ankle"},{"euler":{"heading":50.430610386787464,"pitch":-2.052544551030683,"roll":5.218269712818002},"location":"Right Ankle"},{"euler":{"heading":98.43121557215655,"pitch":-153.3841556981526,"roll":56.30292651398597},"location":"Right Hip"},{"euler":{"heading":172.24979050732603,"pitch":-85.25305565586027,"roll":-53.77337613772721},"location":"Right Knee"},{"euler":{"heading":36.9264329066459,"pitch":-129.14216818948753,"roll":58.92190807139399},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.551"} +{"sensors":[{"euler":{"heading":218.3702450502554,"pitch":135.9946217491882,"roll":30.355524793511115},"location":"Left Knee"},{"euler":{"heading":91.04513075895672,"pitch":107.52804491056865,"roll":35.10393678146985},"location":"Left Ankle"},{"euler":{"heading":53.28129934810872,"pitch":-1.9972900959276148,"roll":5.7901927415362024},"location":"Right Ankle"},{"euler":{"heading":98.1005940149409,"pitch":-153.28949012833735,"roll":55.610133862587375},"location":"Right Hip"},{"euler":{"heading":168.56856145659341,"pitch":-88.92775009027424,"roll":-51.82103852395449},"location":"Right Knee"},{"euler":{"heading":37.70878961598131,"pitch":-131.08420137053878,"roll":59.473467264254595},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.651"} +{"sensors":[{"euler":{"heading":197.62697054522985,"pitch":134.8264095742694,"roll":29.382472314160005},"location":"Left Knee"},{"euler":{"heading":93.14061768306105,"pitch":108.10024041951179,"roll":36.88729310332287},"location":"Left Ankle"},{"euler":{"heading":55.46566941329785,"pitch":-1.8100610863348532,"roll":6.104923467382582},"location":"Right Ankle"},{"euler":{"heading":97.19678461344681,"pitch":-153.4355411155036,"roll":55.30537047632864},"location":"Right Hip"},{"euler":{"heading":166.01795531093407,"pitch":-92.60372508124684,"roll":-50.28268467155904},"location":"Right Knee"},{"euler":{"heading":38.831660654383185,"pitch":-133.4382812334849,"roll":60.08862053782914},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.752"} +{"sensors":[{"euler":{"heading":180.48302349070687,"pitch":133.85626861684247,"roll":27.294225082744006},"location":"Left Knee"},{"euler":{"heading":95.88905591475495,"pitch":110.20271637756062,"roll":39.59856379299058},"location":"Left Ankle"},{"euler":{"heading":56.59410247196807,"pitch":-1.616554977701368,"roll":6.219431120644323},"location":"Right Ankle"},{"euler":{"heading":96.72085615210213,"pitch":-153.53573700395324,"roll":55.26233342869578},"location":"Right Hip"},{"euler":{"heading":164.87865977984066,"pitch":-96.41835257312216,"roll":-49.52316620440313},"location":"Right Knee"},{"euler":{"heading":38.83599458894487,"pitch":-133.7194531101364,"roll":60.429758484046225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.853"} +{"sensors":[{"euler":{"heading":165.64722114163618,"pitch":133.13314175515822,"roll":25.208552574469607},"location":"Left Knee"},{"euler":{"heading":98.56890032327945,"pitch":112.13869473980456,"roll":42.37620741369153},"location":"Left Ankle"},{"euler":{"heading":57.15969222477127,"pitch":-1.479899479931231,"roll":6.1662380085798905},"location":"Right Ankle"},{"euler":{"heading":95.75502053689192,"pitch":-153.80716330355793,"roll":55.754850085826206},"location":"Right Hip"},{"euler":{"heading":164.9532938018566,"pitch":-100.21401731580995,"roll":-49.42084958396282},"location":"Right Knee"},{"euler":{"heading":37.81489513005038,"pitch":-131.9662577991228,"roll":60.1305326356416},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.953"} +{"sensors":[{"euler":{"heading":149.8824990274726,"pitch":133.43232757964242,"roll":24.587697317022645},"location":"Left Knee"},{"euler":{"heading":98.88076029095151,"pitch":111.06857526582411,"roll":43.34483667232239},"location":"Left Ankle"},{"euler":{"heading":57.462473002294146,"pitch":-1.538159531938108,"roll":5.949614207721902},"location":"Right Ankle"},{"euler":{"heading":95.32951848320273,"pitch":-154.00144697320212,"roll":56.42311507724359},"location":"Right Hip"},{"euler":{"heading":165.36421442167094,"pitch":-103.75511558422896,"roll":-49.79751462556654},"location":"Right Knee"},{"euler":{"heading":36.32090561704535,"pitch":-130.1071320192105,"roll":59.27372937207744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.53"} +{"sensors":[{"euler":{"heading":168.10049912472536,"pitch":134.90784482167817,"roll":25.61642758532038},"location":"Left Knee"},{"euler":{"heading":96.24893426185636,"pitch":109.86171773924171,"roll":41.28535300509015},"location":"Left Ankle"},{"euler":{"heading":57.284975702064735,"pitch":-1.6718435787442973,"roll":5.742152786949712},"location":"Right Ankle"},{"euler":{"heading":95.29031663488247,"pitch":-154.00130227588193,"roll":57.18705356951923},"location":"Right Hip"},{"euler":{"heading":166.11529297950383,"pitch":-107.36710402580606,"roll":-50.467763163009884},"location":"Right Knee"},{"euler":{"heading":35.22631505534081,"pitch":-128.44016881728945,"roll":58.4901064348697},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.154"} +{"sensors":[{"euler":{"heading":182.67794921225283,"pitch":137.26706033951035,"roll":27.23603482678834},"location":"Left Knee"},{"euler":{"heading":92.26779083567072,"pitch":108.33179596531754,"roll":37.863067704581134},"location":"Left Ankle"},{"euler":{"heading":56.500228131858265,"pitch":-1.7171592208698678,"roll":5.455437508254741},"location":"Right Ankle"},{"euler":{"heading":95.33628497139424,"pitch":-154.44492204829373,"roll":57.924598212567304},"location":"Right Hip"},{"euler":{"heading":167.35376368155346,"pitch":-111.34914362322546,"roll":-51.4584868467089},"location":"Right Knee"},{"euler":{"heading":34.78493354980673,"pitch":-127.2524019355605,"roll":57.972345791382736},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.255"} +{"sensors":[{"euler":{"heading":197.14765429102755,"pitch":138.72785430555933,"roll":28.70618134410951},"location":"Left Knee"},{"euler":{"heading":89.44726175210366,"pitch":107.45486636878579,"roll":35.32676093412302},"location":"Left Ankle"},{"euler":{"heading":54.81895531867244,"pitch":-1.995443298782881,"roll":4.953643757429267},"location":"Right Ankle"},{"euler":{"heading":95.55890647425483,"pitch":-155.34417984346436,"roll":58.71338839131057},"location":"Right Hip"},{"euler":{"heading":168.96213731339813,"pitch":-116.08297926090292,"roll":-52.83138816203801},"location":"Right Knee"},{"euler":{"heading":34.99394019482606,"pitch":-126.43966174200446,"roll":57.65636121224447},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.355"} +{"sensors":[{"euler":{"heading":211.3266388619248,"pitch":139.1925688750034,"roll":29.85431320969856},"location":"Left Knee"},{"euler":{"heading":88.3150355768933,"pitch":106.9281297319072,"roll":34.08158484071072},"location":"Left Ankle"},{"euler":{"heading":51.82455978680519,"pitch":-2.420898968904593,"roll":4.27077938168634},"location":"Right Ankle"},{"euler":{"heading":96.58426582682934,"pitch":-155.23476185911795,"roll":58.867049552179516},"location":"Right Hip"},{"euler":{"heading":171.41592358205833,"pitch":-86.88093133481263,"roll":-54.035749345834205},"location":"Right Knee"},{"euler":{"heading":35.100796175343454,"pitch":-125.80819556780402,"roll":57.66572509102002},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.456"} +{"sensors":[{"euler":{"heading":224.19397497573232,"pitch":139.20456198750304,"roll":30.687631888728706},"location":"Left Knee"},{"euler":{"heading":87.88978201920396,"pitch":106.4353167587165,"roll":33.42342635663965},"location":"Left Ankle"},{"euler":{"heading":48.904603808124676,"pitch":-2.9163090720141343,"roll":3.8687014435177063},"location":"Right Ankle"},{"euler":{"heading":98.04458924414641,"pitch":-154.34878567320615,"roll":58.24284459696157},"location":"Right Hip"},{"euler":{"heading":173.3493312238525,"pitch":-60.28033820133137,"roll":-54.85092441125079},"location":"Right Knee"},{"euler":{"heading":35.42821655780911,"pitch":-126.15237601102362,"roll":57.936652581918025},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.558"} +{"sensors":[{"euler":{"heading":235.9808274781591,"pitch":138.93410578875273,"roll":31.225118699855834},"location":"Left Knee"},{"euler":{"heading":88.18205381728356,"pitch":106.04803508284485,"roll":33.56233372097569},"location":"Left Ankle"},{"euler":{"heading":48.22039342731221,"pitch":-3.337178164812721,"roll":4.025581299165935},"location":"Right Ankle"},{"euler":{"heading":99.48388031973178,"pitch":-153.34515710588553,"roll":57.10606013726541},"location":"Right Hip"},{"euler":{"heading":173.14564810146723,"pitch":-69.58355438119823,"roll":-55.15333197012571},"location":"Right Knee"},{"euler":{"heading":35.8103949020282,"pitch":-126.97463840992125,"roll":58.367987323726226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.658"} +{"sensors":[{"euler":{"heading":247.5702447303432,"pitch":138.16569520987747,"roll":31.42760682987025},"location":"Left Knee"},{"euler":{"heading":88.98259843555522,"pitch":105.89323157456037,"roll":34.09985034887812},"location":"Left Ankle"},{"euler":{"heading":49.635854084580984,"pitch":-3.3659603483314493,"roll":4.6230231692493415},"location":"Right Ankle"},{"euler":{"heading":100.1917422877586,"pitch":-152.81064139529698,"roll":55.84545412353887},"location":"Right Hip"},{"euler":{"heading":170.73108329132052,"pitch":-75.71269894307841,"roll":-54.15049877311314},"location":"Right Knee"},{"euler":{"heading":36.36060541182538,"pitch":-128.04592456892914,"roll":58.92493859135361},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.759"} +{"sensors":[{"euler":{"heading":258.6819702573089,"pitch":137.16787568888972,"roll":31.084846146883226},"location":"Left Knee"},{"euler":{"heading":90.2405885919997,"pitch":105.81640841710434,"roll":35.10861531399031},"location":"Left Ankle"},{"euler":{"heading":52.68476867612289,"pitch":-3.0231143134983043,"roll":5.198220852324408},"location":"Right Ankle"},{"euler":{"heading":99.97256805898274,"pitch":-152.57332725576728,"roll":55.01715871118499},"location":"Right Hip"},{"euler":{"heading":167.19547496218846,"pitch":-80.36642904877058,"roll":-52.091698895801834},"location":"Right Knee"},{"euler":{"heading":36.96829487064284,"pitch":-129.56633211203624,"roll":59.569944732218254},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.860"} +{"sensors":[{"euler":{"heading":233.426273231578,"pitch":136.05108812000074,"roll":30.170111532194905},"location":"Left Knee"},{"euler":{"heading":92.10402973279973,"pitch":106.0597675753939,"roll":36.766503782591286},"location":"Left Ankle"},{"euler":{"heading":55.35379180851061,"pitch":-2.5270528821484737,"roll":5.553398767091967},"location":"Right Ankle"},{"euler":{"heading":98.86281125308447,"pitch":-152.62224453019056,"roll":54.55294284006649},"location":"Right Hip"},{"euler":{"heading":164.0821774659696,"pitch":-84.89228614389353,"roll":-50.145029006221655},"location":"Right Knee"},{"euler":{"heading":37.89021538357856,"pitch":-131.9409489008326,"roll":60.294200258996426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.962"} +{"sensors":[{"euler":{"heading":212.16489590842022,"pitch":135.11472930800068,"roll":28.165600378975416},"location":"Left Knee"},{"euler":{"heading":94.59987675951976,"pitch":107.66004081785451,"roll":39.48985340433216},"location":"Left Ankle"},{"euler":{"heading":56.63091262765955,"pitch":-1.9180975939336264,"roll":5.648058890382771},"location":"Right Ankle"},{"euler":{"heading":98.14528012777603,"pitch":-152.5600200771715,"roll":54.34139855605984},"location":"Right Hip"},{"euler":{"heading":162.88020971937266,"pitch":-89.65305752950418,"roll":-49.011776105599495},"location":"Right Knee"},{"euler":{"heading":38.2199438452207,"pitch":-133.26560401074934,"roll":60.727280233096785},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.62"} +{"sensors":[{"euler":{"heading":194.8484063175782,"pitch":133.6032563772006,"roll":25.830290341077873},"location":"Left Knee"},{"euler":{"heading":98.07738908356778,"pitch":111.27528673606906,"roll":42.26586806389894},"location":"Left Ankle"},{"euler":{"heading":57.4803213648936,"pitch":-1.338787834540264,"roll":5.614503001344494},"location":"Right Ankle"},{"euler":{"heading":97.01200211499844,"pitch":-152.66026806945433,"roll":54.70100870045386},"location":"Right Hip"},{"euler":{"heading":163.1796887474354,"pitch":-94.40025177655377,"roll":-48.62309849503955},"location":"Right Knee"},{"euler":{"heading":37.729199460698624,"pitch":-131.8702936096744,"roll":60.69205220978711},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.164"} +{"sensors":[{"euler":{"heading":177.9885656858204,"pitch":133.35543073948057,"roll":24.447261306970084},"location":"Left Knee"},{"euler":{"heading":99.775900175211,"pitch":111.50400806246216,"roll":43.96428125750904},"location":"Left Ankle"},{"euler":{"heading":58.06978922840424,"pitch":-0.8424090510862376,"roll":5.459302701210045},"location":"Right Ankle"},{"euler":{"heading":96.3608019034986,"pitch":-152.6629912625089,"roll":55.37465783040848},"location":"Right Hip"},{"euler":{"heading":163.93671987269184,"pitch":-98.8539765988984,"roll":-48.7045386455356},"location":"Right Knee"},{"euler":{"heading":36.33127951462876,"pitch":-130.02701424870696,"roll":59.8728469888084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.265"} +{"sensors":[{"euler":{"heading":185.39595911723836,"pitch":134.5573876655325,"roll":25.027535176273076},"location":"Left Knee"},{"euler":{"heading":97.95456015768991,"pitch":110.29110725621595,"roll":42.85535313175814},"location":"Left Ankle"},{"euler":{"heading":58.162810305563816,"pitch":-0.23316814597761393,"roll":5.269622431089041},"location":"Right Ankle"},{"euler":{"heading":95.94972171314873,"pitch":-152.60294213625804,"roll":56.174692047367635},"location":"Right Hip"},{"euler":{"heading":165.35554788542265,"pitch":-103.46857893900857,"roll":-49.04658478098204},"location":"Right Knee"},{"euler":{"heading":34.57940156316589,"pitch":-128.36181282383626,"roll":58.79806228992756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.365"} +{"sensors":[{"euler":{"heading":193.53761320551453,"pitch":136.88914889897924,"roll":26.54353165864577},"location":"Left Knee"},{"euler":{"heading":93.81535414192092,"pitch":108.81199653059436,"roll":39.53231781858233},"location":"Left Ankle"},{"euler":{"heading":57.67777927500744,"pitch":0.4526486686201475,"roll":4.992660187980137},"location":"Right Ankle"},{"euler":{"heading":95.62974954183387,"pitch":-152.63639792263223,"roll":57.08847284263087},"location":"Right Hip"},{"euler":{"heading":167.41374309688038,"pitch":-108.29047104510771,"roll":-49.74192630288383},"location":"Right Knee"},{"euler":{"heading":33.7089614068493,"pitch":-127.14438154145265,"roll":58.0432560609348},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.466"} +{"sensors":[{"euler":{"heading":201.31510188496307,"pitch":138.95023400908133,"roll":27.864178492781193},"location":"Left Knee"},{"euler":{"heading":90.27756872772883,"pitch":107.90579687753493,"roll":36.4978360367241},"location":"Left Ankle"},{"euler":{"heading":56.547501347506696,"pitch":0.8886338017581328,"roll":4.493394169182124},"location":"Right Ankle"},{"euler":{"heading":95.44802458765048,"pitch":-152.99775813036902,"roll":58.129625558367785},"location":"Right Hip"},{"euler":{"heading":169.70361878719234,"pitch":-113.50517394059695,"roll":-50.81773367259545},"location":"Right Knee"},{"euler":{"heading":33.494315266164364,"pitch":-126.51119338730739,"roll":57.53893045484132},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.567"} +{"sensors":[{"euler":{"heading":214.7898416964668,"pitch":139.8177106081732,"roll":28.959010643503074},"location":"Left Knee"},{"euler":{"heading":88.69981185495595,"pitch":107.41521718978143,"roll":34.99805243305169},"location":"Left Ankle"},{"euler":{"heading":54.180251212756026,"pitch":0.5935204215823194,"roll":4.106554752263912},"location":"Right Ankle"},{"euler":{"heading":95.71572212888543,"pitch":-153.17923231733212,"roll":58.91041300253101},"location":"Right Hip"},{"euler":{"heading":172.20200690847312,"pitch":-119.87965654653726,"roll":-52.192210305335905},"location":"Right Knee"},{"euler":{"heading":33.40113373954793,"pitch":-126.01007404857666,"roll":57.36003740935719},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.667"} +{"sensors":[{"euler":{"heading":227.81085752682012,"pitch":139.84843954735587,"roll":29.831859579152766},"location":"Left Knee"},{"euler":{"heading":88.14233066946036,"pitch":107.17994547080329,"roll":34.11074718974652},"location":"Left Ankle"},{"euler":{"heading":50.774726091480424,"pitch":-0.2595816205759126,"roll":3.6583992770375207},"location":"Right Ankle"},{"euler":{"heading":96.8128999159969,"pitch":-152.60505908559892,"roll":58.62562170227791},"location":"Right Hip"},{"euler":{"heading":174.4880562176258,"pitch":-90.47919089188355,"roll":-53.42923927480231},"location":"Right Knee"},{"euler":{"heading":33.736020365593134,"pitch":-126.06531664371899,"roll":57.530283668421475},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.768"} +{"sensors":[{"euler":{"heading":240.24227177413812,"pitch":139.2698455926203,"roll":30.467423621237494},"location":"Left Knee"},{"euler":{"heading":88.30309760251433,"pitch":107.14320092372297,"roll":33.78092247077187},"location":"Left Ankle"},{"euler":{"heading":49.009753482332385,"pitch":-0.9586234585183214,"roll":3.511309349333769},"location":"Right Ankle"},{"euler":{"heading":98.36910992439721,"pitch":-151.76955317703906,"roll":57.70055953205012},"location":"Right Hip"},{"euler":{"heading":174.6767505958632,"pitch":-97.1750218026952,"roll":-54.16131534732209},"location":"Right Knee"},{"euler":{"heading":34.59991832903382,"pitch":-126.70878497934709,"roll":57.99600530157933},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.868"} +{"sensors":[{"euler":{"heading":252.0367945967243,"pitch":138.32411103335826,"roll":30.783181259113746},"location":"Left Knee"},{"euler":{"heading":89.0102878422629,"pitch":107.28513083135068,"roll":33.865330223694684},"location":"Left Ankle"},{"euler":{"heading":49.67127813409915,"pitch":-1.4940111126664894,"roll":3.991428414400392},"location":"Right Ankle"},{"euler":{"heading":99.42594893195749,"pitch":-151.36759785933515,"roll":56.42425357884511},"location":"Right Hip"},{"euler":{"heading":172.27157553627688,"pitch":-100.62626962242568,"roll":-53.47018381258988},"location":"Right Knee"},{"euler":{"heading":35.53367649613044,"pitch":-128.0441564814124,"roll":58.5526547714214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.968"} +{"sensors":[{"euler":{"heading":227.30186513705186,"pitch":137.14794993002243,"roll":30.63611313320237},"location":"Left Knee"},{"euler":{"heading":90.15300905803662,"pitch":107.61286774821562,"roll":34.39754720132522},"location":"Left Ankle"},{"euler":{"heading":52.17290032068923,"pitch":-1.3758600013998405,"roll":4.761035572960353},"location":"Right Ankle"},{"euler":{"heading":99.35835403876175,"pitch":-151.28083807340164,"roll":55.5943282209606},"location":"Right Hip"},{"euler":{"heading":168.4756679826492,"pitch":-102.90739266018312,"roll":-51.460665431330895},"location":"Right Knee"},{"euler":{"heading":36.536558846517394,"pitch":-129.78974083327117,"roll":59.23488929427926},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.69"} +{"sensors":[{"euler":{"heading":205.55292862334667,"pitch":135.78315493702019,"roll":30.010001819882135},"location":"Left Knee"},{"euler":{"heading":91.88145815223297,"pitch":108.14533097339407,"roll":35.570292481192695},"location":"Left Ankle"},{"euler":{"heading":55.043110288620305,"pitch":-0.9820240012598564,"roll":5.303682015664317},"location":"Right Ankle"},{"euler":{"heading":98.35376863488558,"pitch":-151.5965042660615,"roll":55.12239539886454},"location":"Right Hip"},{"euler":{"heading":165.0531011843843,"pitch":-105.22290339416482,"roll":-49.339598888197806},"location":"Right Knee"},{"euler":{"heading":37.770402961865656,"pitch":-132.15451674994404,"roll":59.97390036485134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.170"} +{"sensors":[{"euler":{"heading":187.31638576101201,"pitch":134.46733944331817,"roll":28.28400163789392},"location":"Left Knee"},{"euler":{"heading":94.10581233700967,"pitch":109.59954787605466,"roll":37.763263233073424},"location":"Left Ankle"},{"euler":{"heading":56.557549259758275,"pitch":-0.6900716011338709,"roll":5.604563814097886},"location":"Right Ankle"},{"euler":{"heading":97.48089177139703,"pitch":-151.92435383945536,"roll":55.01640585897809},"location":"Right Hip"},{"euler":{"heading":163.31029106594588,"pitch":-107.72561305474834,"roll":-48.13063899937803},"location":"Right Knee"},{"euler":{"heading":38.9183626656791,"pitch":-133.98906507494965,"roll":60.6827603283662},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.271"} +{"sensors":[{"euler":{"heading":172.6284971849108,"pitch":133.06435549898634,"roll":25.880601474104527},"location":"Left Knee"},{"euler":{"heading":98.1327311033087,"pitch":113.6020930884492,"roll":40.69943690976608},"location":"Left Ankle"},{"euler":{"heading":57.420544333782445,"pitch":-0.42106444102048385,"roll":5.694107432688098},"location":"Right Ankle"},{"euler":{"heading":96.35780259425732,"pitch":-152.38816845550983,"roll":55.42726527308028},"location":"Right Hip"},{"euler":{"heading":163.0105119593513,"pitch":-110.3343017492735,"roll":-47.680075099440224},"location":"Right Knee"},{"euler":{"heading":38.61402639911119,"pitch":-132.9214085674547,"roll":60.820734295529576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.374"} +{"sensors":[{"euler":{"heading":158.7468974664197,"pitch":132.6016699490877,"roll":24.136291326694074},"location":"Left Knee"},{"euler":{"heading":100.27570799297783,"pitch":114.41063377960428,"roll":42.92324321878947},"location":"Left Ankle"},{"euler":{"heading":57.8972399004042,"pitch":-0.19770799691843544,"roll":5.618446689419288},"location":"Right Ankle"},{"euler":{"heading":95.54077233483159,"pitch":-152.72435160995883,"roll":56.165788745772254},"location":"Right Hip"},{"euler":{"heading":163.5719607634162,"pitch":-112.96337157434616,"roll":-47.768317589496206},"location":"Right Knee"},{"euler":{"heading":37.40262375920007,"pitch":-131.20426771070925,"roll":60.18866086597662},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.475"} +{"sensors":[{"euler":{"heading":178.22220771977774,"pitch":133.4665029541789,"roll":24.316412194024668},"location":"Left Knee"},{"euler":{"heading":98.66063719368005,"pitch":113.02582040164386,"roll":42.149668896910526},"location":"Left Ankle"},{"euler":{"heading":57.91376591036378,"pitch":0.05331280277340811,"roll":5.52535202047736},"location":"Right Ankle"},{"euler":{"heading":95.00544510134843,"pitch":-153.00816644896295,"roll":57.04920987119503},"location":"Right Hip"},{"euler":{"heading":164.6772646870746,"pitch":-115.75453441691155,"roll":-48.27273583054659},"location":"Right Knee"},{"euler":{"heading":36.08736138328006,"pitch":-129.34009093963832,"roll":59.35104477937896},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.576"} +{"sensors":[{"euler":{"heading":192.39998694779996,"pitch":135.57610265876102,"roll":25.816020974622205},"location":"Left Knee"},{"euler":{"heading":94.57582347431205,"pitch":111.29823836147948,"roll":39.02220200721948},"location":"Left Ankle"},{"euler":{"heading":57.434889319327404,"pitch":0.3729815224960673,"roll":5.316566818429624},"location":"Right Ankle"},{"euler":{"heading":94.66115059121358,"pitch":-153.41359980406668,"roll":57.93178888407553},"location":"Right Hip"},{"euler":{"heading":166.28453821836712,"pitch":-118.9165809752204,"roll":-49.09546224749193},"location":"Right Knee"},{"euler":{"heading":35.259875244952056,"pitch":-127.93733184567449,"roll":58.72844030144106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.677"} +{"sensors":[{"euler":{"heading":204.85373825301997,"pitch":137.77474239288492,"roll":27.334418877159987},"location":"Left Knee"},{"euler":{"heading":90.84324112688084,"pitch":110.11216452533154,"roll":35.93873180649753},"location":"Left Ankle"},{"euler":{"heading":56.122650387394664,"pitch":0.5544333702464606,"roll":5.028660136586662},"location":"Right Ankle"},{"euler":{"heading":94.52628553209223,"pitch":-154.05348982366002,"roll":58.85735999566798},"location":"Right Hip"},{"euler":{"heading":168.29983439653043,"pitch":-122.67492287769836,"roll":-50.32341602274274},"location":"Right Knee"},{"euler":{"heading":35.04638772045685,"pitch":-127.25609866110705,"roll":58.28684627129695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.778"} +{"sensors":[{"euler":{"heading":217.80586442771798,"pitch":138.6972681535964,"roll":28.57597698944399},"location":"Left Knee"},{"euler":{"heading":89.12766701419277,"pitch":109.33219807279839,"roll":34.457358625847775},"location":"Left Ankle"},{"euler":{"heading":53.6791353486552,"pitch":-0.007259966778185467,"roll":4.6445441229279965},"location":"Right Ankle"},{"euler":{"heading":94.99240697888301,"pitch":-154.498140841294,"roll":59.40912399610118},"location":"Right Hip"},{"euler":{"heading":170.4323509568774,"pitch":-127.81993058992853,"roll":-51.96607442046847},"location":"Right Knee"},{"euler":{"heading":35.029248948411166,"pitch":-126.78048879499634,"roll":58.12066164416726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.878"} +{"sensors":[{"euler":{"heading":230.43152798494617,"pitch":138.84004133823677,"roll":29.443379290499593},"location":"Left Knee"},{"euler":{"heading":88.3086503127735,"pitch":108.74272826551855,"roll":33.549122763263},"location":"Left Ankle"},{"euler":{"heading":50.21747181378968,"pitch":-0.812783970100367,"roll":4.0425897106351965},"location":"Right Ankle"},{"euler":{"heading":96.26191628099471,"pitch":-153.9045767571646,"roll":59.14321159649106},"location":"Right Hip"},{"euler":{"heading":173.03286586118966,"pitch":-97.80668753093568,"roll":-53.206966978421626},"location":"Right Knee"},{"euler":{"heading":35.35132405357005,"pitch":-126.83993991549671,"roll":58.28984547975053},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.979"} +{"sensors":[{"euler":{"heading":242.18212518645157,"pitch":138.53103720441308,"roll":30.117791361449633},"location":"Left Knee"},{"euler":{"heading":88.09653528149616,"pitch":108.24970543896669,"roll":33.1692104869367},"location":"Left Ankle"},{"euler":{"heading":48.42072463241071,"pitch":-1.5752555730903302,"roll":3.863330739571677},"location":"Right Ankle"},{"euler":{"heading":97.99197465289525,"pitch":-152.98286908144814,"roll":58.16639043684195},"location":"Right Hip"},{"euler":{"heading":173.7983292750707,"pitch":-104.00101877784212,"roll":-54.14252028057947},"location":"Right Knee"},{"euler":{"heading":36.00994164821305,"pitch":-127.66219592394705,"roll":58.69836093177548},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.80"} +{"sensors":[{"euler":{"heading":253.43891266780642,"pitch":137.79043348397178,"roll":30.49976222530467},"location":"Left Knee"},{"euler":{"heading":88.46813175334655,"pitch":107.97473489507001,"roll":33.227289438243034},"location":"Left Ankle"},{"euler":{"heading":48.79115216916964,"pitch":-2.2989800157812974,"roll":4.41449766561451},"location":"Right Ankle"},{"euler":{"heading":99.28027718760573,"pitch":-152.42833217330335,"roll":56.83725139315776},"location":"Right Hip"},{"euler":{"heading":171.75599634756364,"pitch":-106.77591690005791,"roll":-53.80951825252153},"location":"Right Knee"},{"euler":{"heading":36.82144748339175,"pitch":-128.97722633155234,"roll":59.234774838597936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.181"} +{"sensors":[{"euler":{"heading":228.2387714010258,"pitch":136.7426401355746,"roll":30.474786002774202},"location":"Left Knee"},{"euler":{"heading":89.35881857801189,"pitch":107.92726140556302,"roll":33.70456049441873},"location":"Left Ankle"},{"euler":{"heading":51.09953695225268,"pitch":-2.369082014203168,"roll":5.20429789905306},"location":"Right Ankle"},{"euler":{"heading":99.70849946884516,"pitch":-152.17299895597301,"roll":55.76602625384198},"location":"Right Hip"},{"euler":{"heading":167.71164671280727,"pitch":-108.36082521005213,"roll":-51.85356642726937},"location":"Right Knee"},{"euler":{"heading":37.71430273505258,"pitch":-130.8295036983971,"roll":59.83004735473814},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.282"} +{"sensors":[{"euler":{"heading":206.2023942609232,"pitch":135.54962612201712,"roll":29.914807402496784},"location":"Left Knee"},{"euler":{"heading":90.7854367202107,"pitch":108.12203526500672,"roll":34.74660444497685},"location":"Left Ankle"},{"euler":{"heading":54.23958325702741,"pitch":-2.0446738127828517,"roll":5.733868109147754},"location":"Right Ankle"},{"euler":{"heading":98.86264952196065,"pitch":-152.3056990603757,"roll":55.25817362845778},"location":"Right Hip"},{"euler":{"heading":163.54048204152653,"pitch":-109.79974268904692,"roll":-49.449459784542434},"location":"Right Knee"},{"euler":{"heading":38.75537246154732,"pitch":-133.3028033285574,"roll":60.46579261926433},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.382"} +{"sensors":[{"euler":{"heading":187.33215483483087,"pitch":134.5071635098154,"roll":28.404576662247106},"location":"Left Knee"},{"euler":{"heading":92.52564304818964,"pitch":108.79108173850605,"roll":36.62194400047917},"location":"Left Ankle"},{"euler":{"heading":55.928124931324675,"pitch":-1.7527064315045666,"roll":6.041731298232978},"location":"Right Ankle"},{"euler":{"heading":97.93263456976459,"pitch":-152.56262915433814,"roll":55.019856265612006},"location":"Right Hip"},{"euler":{"heading":161.03018383737387,"pitch":-111.71976842014224,"roll":-47.82326380608819},"location":"Right Knee"},{"euler":{"heading":39.87358521539259,"pitch":-136.06002299570164,"roll":61.069213357337894},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.483"} +{"sensors":[{"euler":{"heading":172.26768935134777,"pitch":133.07519715883387,"roll":26.107868996022393},"location":"Left Knee"},{"euler":{"heading":96.42307874337068,"pitch":112.33072356465546,"roll":39.65349960043125},"location":"Left Ankle"},{"euler":{"heading":56.82906243819221,"pitch":-1.3211857883541098,"roll":6.112558168409681},"location":"Right Ankle"},{"euler":{"heading":97.09562111278812,"pitch":-152.69386623890432,"roll":55.330370639050805},"location":"Right Hip"},{"euler":{"heading":160.27716545363648,"pitch":-113.99154157812802,"roll":-46.99093742547938},"location":"Right Knee"},{"euler":{"heading":39.679976693853334,"pitch":-136.22277069613148,"roll":61.299792021604105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.583"} +{"sensors":[{"euler":{"heading":158.834670416213,"pitch":132.34267744295047,"roll":24.109582096420155},"location":"Left Knee"},{"euler":{"heading":99.23702086903361,"pitch":113.92890120818991,"roll":42.39439964038813},"location":"Left Ankle"},{"euler":{"heading":57.30240619437299,"pitch":-0.8265672095186989,"roll":5.982552351568713},"location":"Right Ankle"},{"euler":{"heading":96.19855900150931,"pitch":-152.8932296150139,"roll":56.066083575145726},"location":"Right Hip"},{"euler":{"heading":160.81819890827285,"pitch":-116.37363742031522,"roll":-46.82309368293144},"location":"Right Knee"},{"euler":{"heading":38.586979024468,"pitch":-134.53174362651833,"roll":60.8698128194437},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.683"} +{"sensors":[{"euler":{"heading":143.6324533745917,"pitch":132.87715969865545,"roll":23.79237388677814},"location":"Left Knee"},{"euler":{"heading":99.01331878213026,"pitch":112.92976108737092,"roll":42.89870967634932},"location":"Left Ankle"},{"euler":{"heading":57.4909155749357,"pitch":-0.24391048856682906,"roll":5.759297116411842},"location":"Right Ankle"},{"euler":{"heading":95.60370310135839,"pitch":-152.9539066535125,"roll":56.97822521763115},"location":"Right Hip"},{"euler":{"heading":162.03637901744557,"pitch":-118.9300236782837,"roll":-47.0407843146383},"location":"Right Knee"},{"euler":{"heading":37.0470311220212,"pitch":-132.4348192638665,"roll":59.945331537499335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.784"} +{"sensors":[{"euler":{"heading":161.81295803713255,"pitch":134.7581937287899,"roll":25.088136498100326},"location":"Left Knee"},{"euler":{"heading":95.57448690391723,"pitch":111.31178497863382,"roll":40.571338708714386},"location":"Left Ankle"},{"euler":{"heading":57.166824017442124,"pitch":0.29923056028985384,"roll":5.502117404770658},"location":"Right Ankle"},{"euler":{"heading":95.24958279122255,"pitch":-153.12101598816125,"roll":57.92415269586803},"location":"Right Hip"},{"euler":{"heading":163.79524111570103,"pitch":-121.73702131045533,"roll":-47.655455883174476},"location":"Right Knee"},{"euler":{"heading":35.86732800981908,"pitch":-130.63508733747986,"roll":59.1257983837494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.885"} +{"sensors":[{"euler":{"heading":177.2566622334193,"pitch":137.21362435591092,"roll":26.679322848290294},"location":"Left Knee"},{"euler":{"heading":91.2857882135255,"pitch":109.87435648077044,"roll":37.039204837842945},"location":"Left Ankle"},{"euler":{"heading":56.162641615697915,"pitch":0.7193075042608685,"roll":5.226905664293593},"location":"Right Ankle"},{"euler":{"heading":95.06837451210029,"pitch":-153.6276643893451,"roll":58.94423742628123},"location":"Right Hip"},{"euler":{"heading":165.94071700413093,"pitch":-124.9508191794098,"roll":-48.69616029485703},"location":"Right Knee"},{"euler":{"heading":35.56184520883718,"pitch":-129.7278286037319,"roll":58.60696854537446},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.986"} +{"sensors":[{"euler":{"heading":192.58099601007737,"pitch":138.64851192031983,"roll":28.080140563461267},"location":"Left Knee"},{"euler":{"heading":88.78220939217296,"pitch":109.14942083269341,"roll":34.87903435405865},"location":"Left Ankle"},{"euler":{"heading":54.12137745412813,"pitch":0.4223767538347817,"roll":4.704215097864234},"location":"Right Ankle"},{"euler":{"heading":95.29903706089026,"pitch":-154.47739795041062,"roll":59.74356368365311},"location":"Right Hip"},{"euler":{"heading":168.09664530371785,"pitch":-129.01198726146882,"roll":-50.320294265371324},"location":"Right Knee"},{"euler":{"heading":35.51816068795346,"pitch":-129.2362957433587,"roll":58.258771690837015},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.86"} +{"sensors":[{"euler":{"heading":207.54789640906964,"pitch":138.95866072828787,"roll":29.12212650711514},"location":"Left Knee"},{"euler":{"heading":87.81648845295565,"pitch":108.63447874942408,"roll":33.82238091865279},"location":"Left Ankle"},{"euler":{"heading":50.584239708715316,"pitch":-0.2448609215486965,"roll":3.9400435880778106},"location":"Right Ankle"},{"euler":{"heading":96.33163335480123,"pitch":-154.09215815536956,"roll":59.8379573152878},"location":"Right Hip"},{"euler":{"heading":170.9557307733461,"pitch":-98.84203853532195,"roll":-51.700764838834196},"location":"Right Knee"},{"euler":{"heading":35.64134461915811,"pitch":-128.81891616902286,"roll":58.30789452175331},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.187"} +{"sensors":[{"euler":{"heading":221.7618567681627,"pitch":138.58779465545908,"roll":29.978663856403628},"location":"Left Knee"},{"euler":{"heading":87.85358960766008,"pitch":108.41478087448166,"roll":33.29639282678751},"location":"Left Ankle"},{"euler":{"heading":47.78206573784379,"pitch":-0.9766248293938269,"roll":3.6147892292700297},"location":"Right Ankle"},{"euler":{"heading":97.9484700193211,"pitch":-153.1579423398326,"roll":59.079161583759024},"location":"Right Hip"},{"euler":{"heading":172.3976576960115,"pitch":-106.05158468178975,"roll":-52.836938354950775},"location":"Right Knee"},{"euler":{"heading":36.2459601572423,"pitch":-129.14952455212057,"roll":58.67085506957798},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.287"} +{"sensors":[{"euler":{"heading":235.03567109134644,"pitch":137.84776518991316,"roll":30.524547470763267},"location":"Left Knee"},{"euler":{"heading":88.43073064689408,"pitch":108.29830278703349,"roll":33.28550354410876},"location":"Left Ankle"},{"euler":{"heading":47.38510916405941,"pitch":-1.7289623464544444,"roll":3.740810306343027},"location":"Right Ankle"},{"euler":{"heading":99.459873017389,"pitch":-152.40464810584933,"roll":57.78374542538312},"location":"Right Hip"},{"euler":{"heading":171.45164192641033,"pitch":-109.24642621361077,"roll":-53.1282445194557},"location":"Right Knee"},{"euler":{"heading":37.071364141518075,"pitch":-130.1658220969085,"roll":59.11001956262018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.388"} +{"sensors":[{"euler":{"heading":211.6571039822118,"pitch":136.82548867092186,"roll":30.67209272368694},"location":"Left Knee"},{"euler":{"heading":89.31890758220467,"pitch":108.28722250833016,"roll":33.60695318969788},"location":"Left Ankle"},{"euler":{"heading":49.13409824765347,"pitch":-2.137316111809,"roll":4.447979275708724},"location":"Right Ankle"},{"euler":{"heading":100.28888571565011,"pitch":-152.0266832952644,"roll":56.524120882844805},"location":"Right Hip"},{"euler":{"heading":167.9689777337693,"pitch":-110.59678359224971,"roll":-51.59667006751013},"location":"Right Knee"},{"euler":{"heading":38.00172772736627,"pitch":-131.71173988721765,"roll":59.655267606358166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.489"} +{"sensors":[{"euler":{"heading":191.18514358399062,"pitch":135.57418980382968,"roll":30.37363345131825},"location":"Left Knee"},{"euler":{"heading":90.71201682398421,"pitch":108.48975025749715,"roll":34.42125787072809},"location":"Left Ankle"},{"euler":{"heading":52.30193842288813,"pitch":-2.1360845006281,"roll":5.109431348137853},"location":"Right Ankle"},{"euler":{"heading":99.90999714408511,"pitch":-151.98651496573797,"roll":55.834208794560325},"location":"Right Hip"},{"euler":{"heading":163.74707996039237,"pitch":-111.59960523302473,"roll":-49.368253060759116},"location":"Right Knee"},{"euler":{"heading":39.07030495462965,"pitch":-133.79056589849588,"roll":60.308490845722346},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.590"} +{"sensors":[{"euler":{"heading":173.60412922559155,"pitch":134.24802082344672,"roll":29.355020106186426},"location":"Left Knee"},{"euler":{"heading":92.6845651415858,"pitch":109.14702523174745,"roll":36.02288208365528},"location":"Left Ankle"},{"euler":{"heading":54.70299458059932,"pitch":-1.8412260505652902,"roll":5.510988213324067},"location":"Right Ankle"},{"euler":{"heading":98.98149742967661,"pitch":-152.26911346916415,"roll":55.5382879151043},"location":"Right Hip"},{"euler":{"heading":160.82862196435315,"pitch":-113.12714470972226,"roll":-47.59392775468321},"location":"Right Knee"},{"euler":{"heading":40.250774459166685,"pitch":-135.9490093086463,"roll":60.98389176115012},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.691"} +{"sensors":[{"euler":{"heading":159.3562163030324,"pitch":133.06696874110204,"roll":27.238268095567786},"location":"Left Knee"},{"euler":{"heading":95.95360862742723,"pitch":111.88857270857271,"roll":38.858093875289754},"location":"Left Ankle"},{"euler":{"heading":56.026445122539386,"pitch":-1.5821034455087613,"roll":5.678639391991661},"location":"Right Ankle"},{"euler":{"heading":98.28334768670895,"pitch":-152.50470212224775,"roll":55.66570912359387},"location":"Right Hip"},{"euler":{"heading":159.80200976791784,"pitch":-114.84568023875003,"roll":-46.77203497921489},"location":"Right Knee"},{"euler":{"heading":40.23819701325002,"pitch":-136.2041083777817,"roll":61.18550258503511},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.792"} +{"sensors":[{"euler":{"heading":147.39559467272915,"pitch":131.89777186699183,"roll":25.064441286011007},"location":"Left Knee"},{"euler":{"heading":99.0832477646845,"pitch":114.89971543771544,"roll":41.65353448776078},"location":"Left Ankle"},{"euler":{"heading":56.78630061028545,"pitch":-1.2426431009578853,"roll":5.667025452792496},"location":"Right Ankle"},{"euler":{"heading":97.49251291803805,"pitch":-152.75423191002298,"roll":56.25538821123448},"location":"Right Hip"},{"euler":{"heading":160.00305879112605,"pitch":-116.89861221487504,"roll":-46.5448314812934},"location":"Right Knee"},{"euler":{"heading":39.33937731192502,"pitch":-134.32744754000353,"roll":60.8232023265316},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.893"} +{"sensors":[{"euler":{"heading":134.70603520545626,"pitch":131.93299468029267,"roll":24.207997157409906},"location":"Left Knee"},{"euler":{"heading":99.73742298821605,"pitch":114.2409938939439,"roll":42.800681038984706},"location":"Left Ankle"},{"euler":{"heading":57.08267054925691,"pitch":-0.7433787908620968,"roll":5.519072907513246},"location":"Right Ankle"},{"euler":{"heading":96.92451162623425,"pitch":-152.86005871902069,"roll":57.111099390111036},"location":"Right Hip"},{"euler":{"heading":160.89650291201346,"pitch":-119.12125099338755,"roll":-46.652848333164066},"location":"Right Knee"},{"euler":{"heading":38.02418958073252,"pitch":-132.28845278600318,"roll":59.98463209387844},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.993"} +{"sensors":[{"euler":{"heading":154.64168168491062,"pitch":133.4896952122634,"roll":25.218447441668914},"location":"Left Knee"},{"euler":{"heading":97.11993068939445,"pitch":112.54814450454951,"roll":41.10811293508623},"location":"Left Ankle"},{"euler":{"heading":56.861903494331216,"pitch":-0.15654091177588703,"roll":5.292165616761922},"location":"Right Ankle"},{"euler":{"heading":96.43206046361082,"pitch":-153.0553028471186,"roll":58.062489451099935},"location":"Right Hip"},{"euler":{"heading":162.38810262081213,"pitch":-121.6216258940488,"roll":-47.08756349984766},"location":"Right Knee"},{"euler":{"heading":36.73427062265927,"pitch":-130.37835750740285,"roll":59.1549188844906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.94"} +{"sensors":[{"euler":{"heading":170.51501351641957,"pitch":136.02197569103706,"roll":26.834102697502022},"location":"Left Knee"},{"euler":{"heading":92.789187620455,"pitch":110.63708005409457,"roll":37.75980164157761},"location":"Left Ankle"},{"euler":{"heading":56.0819631448981,"pitch":0.3403631794017017,"roll":5.01919905508573},"location":"Right Ankle"},{"euler":{"heading":96.11385441724974,"pitch":-153.50602256240674,"roll":59.05624050598995},"location":"Right Hip"},{"euler":{"heading":164.4055423587309,"pitch":-124.50321330464394,"roll":-48.0163071498629},"location":"Right Knee"},{"euler":{"heading":36.17334356039334,"pitch":-129.29677175666257,"roll":58.59567699604154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.194"} +{"sensors":[{"euler":{"heading":186.15726216477762,"pitch":137.66352812193335,"roll":28.30069242775182},"location":"Left Knee"},{"euler":{"heading":89.5102688584095,"pitch":109.35462204868512,"roll":35.09632147741985},"location":"Left Ankle"},{"euler":{"heading":54.44876683040829,"pitch":0.25632686146153155,"roll":4.548529149577157},"location":"Right Ankle"},{"euler":{"heading":96.20871897552476,"pitch":-154.27417030616607,"roll":59.781866455390954},"location":"Right Hip"},{"euler":{"heading":166.4399881228578,"pitch":-128.02164197417954,"roll":-49.53342643487661},"location":"Right Knee"},{"euler":{"heading":36.118509204354005,"pitch":-128.7545945809963,"roll":58.298609296437384},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.295"} +{"sensors":[{"euler":{"heading":200.97903594829987,"pitch":138.47217530974,"roll":29.36437318497664},"location":"Left Knee"},{"euler":{"heading":87.60924197256855,"pitch":108.2566598438166,"roll":33.71793932967786},"location":"Left Ankle"},{"euler":{"heading":51.37264014736746,"pitch":-0.1755558246846216,"roll":4.0311762346194415},"location":"Right Ankle"},{"euler":{"heading":97.03784707797229,"pitch":-154.24675327554948,"roll":59.87867980985186},"location":"Right Hip"},{"euler":{"heading":168.839739310572,"pitch":-132.8444777767616,"roll":-50.911333791388955},"location":"Right Knee"},{"euler":{"heading":35.981658283918605,"pitch":-128.45413512289667,"roll":58.299998366793645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.396"} +{"sensors":[{"euler":{"heading":214.8998823534699,"pitch":138.68745777876603,"roll":30.134185866478976},"location":"Left Knee"},{"euler":{"heading":86.3420677753117,"pitch":107.36224385943495,"roll":32.802395396710075},"location":"Left Ankle"},{"euler":{"heading":48.46037613263072,"pitch":-0.7517502422161595,"roll":3.684308611157497},"location":"Right Ankle"},{"euler":{"heading":98.30906237017507,"pitch":-153.50332794799453,"roll":59.21581182886668},"location":"Right Hip"},{"euler":{"heading":170.42451537951482,"pitch":-136.58502999908544,"roll":-51.88270041225006},"location":"Right Knee"},{"euler":{"heading":36.28974245552675,"pitch":-128.871221610607,"roll":58.56374853011428},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.496"} +{"sensors":[{"euler":{"heading":227.92864411812292,"pitch":138.42496200088942,"roll":30.62701727983108},"location":"Left Knee"},{"euler":{"heading":85.62036099778054,"pitch":106.63851947349147,"roll":32.36590585703907},"location":"Left Ankle"},{"euler":{"heading":47.78308851936765,"pitch":-1.4578252179945435,"roll":3.8596277500417475},"location":"Right Ankle"},{"euler":{"heading":99.82815613315756,"pitch":-152.7217451531951,"roll":58.04423064598001},"location":"Right Hip"},{"euler":{"heading":169.35081384156334,"pitch":-137.0702769991769,"roll":-52.03818037102506},"location":"Right Knee"},{"euler":{"heading":36.823268209974074,"pitch":-129.7778494495463,"roll":58.96987367710286},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.597"} +{"sensors":[{"euler":{"heading":240.31702970631065,"pitch":137.8074658008005,"roll":30.739315551847973},"location":"Left Knee"},{"euler":{"heading":85.52707489800248,"pitch":106.11216752614233,"roll":32.39806527133516},"location":"Left Ankle"},{"euler":{"heading":49.51727966743089,"pitch":-1.643292696195089,"roll":4.198664975037573},"location":"Right Ankle"},{"euler":{"heading":100.81409051984181,"pitch":-152.30582063787557,"roll":56.77105758138201},"location":"Right Hip"},{"euler":{"heading":166.16573245740702,"pitch":-135.9069992992592,"roll":-50.68436233392255},"location":"Right Knee"},{"euler":{"heading":37.49094138897667,"pitch":-131.18756450459168,"roll":59.46663630939257},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.698"} +{"sensors":[{"euler":{"heading":252.24782673567958,"pitch":136.91421922072044,"roll":30.396633996663176},"location":"Left Knee"},{"euler":{"heading":86.06186740820225,"pitch":105.7884507735281,"roll":33.002008744201646},"location":"Left Ankle"},{"euler":{"heading":52.69680170068781,"pitch":-1.5602134265755803,"roll":4.728798477533816},"location":"Right Ankle"},{"euler":{"heading":100.61393146785764,"pitch":-152.13773857408802,"roll":56.043951823243816},"location":"Right Hip"},{"euler":{"heading":162.2304092116663,"pitch":-134.2975493693333,"roll":-48.38467610053029},"location":"Right Knee"},{"euler":{"heading":38.34809725007901,"pitch":-133.10005805413252,"roll":60.06997267845331},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.799"} +{"sensors":[{"euler":{"heading":227.94179406211163,"pitch":135.8102972986484,"roll":29.46322059699686},"location":"Left Knee"},{"euler":{"heading":87.35568066738203,"pitch":105.90960569617529,"roll":34.40805786978148},"location":"Left Ankle"},{"euler":{"heading":55.22087153061903,"pitch":-1.4166920839180221,"roll":5.049668629780435},"location":"Right Ankle"},{"euler":{"heading":99.57753832107188,"pitch":-152.3114647166792,"roll":55.627056640919434},"location":"Right Hip"},{"euler":{"heading":159.4323682904997,"pitch":-133.28029443239998,"roll":-46.56495849047726},"location":"Right Knee"},{"euler":{"heading":39.42578752507111,"pitch":-135.61505224871925,"roll":60.694225410607984},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.900"} +{"sensors":[{"euler":{"heading":207.62261465590046,"pitch":134.69176756878358,"roll":27.498148537297173},"location":"Left Knee"},{"euler":{"heading":89.97011260064383,"pitch":107.80614512655777,"roll":37.254752082803336},"location":"Left Ankle"},{"euler":{"heading":56.455034377557126,"pitch":-1.4562728755262202,"roll":5.157201766802392},"location":"Right Ankle"},{"euler":{"heading":99.1072844889647,"pitch":-152.36156824501128,"roll":55.514350976827494},"location":"Right Hip"},{"euler":{"heading":157.95163146144975,"pitch":-132.62726498915998,"roll":-45.57721264142954},"location":"Right Knee"},{"euler":{"heading":39.870708772564,"pitch":-136.78479702384732,"roll":61.05605286954719},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.0"} +{"sensors":[{"euler":{"heading":190.99160319031043,"pitch":133.11634081190522,"roll":25.179583683567454},"location":"Left Knee"},{"euler":{"heading":93.08560134057944,"pitch":111.038030613902,"roll":40.360526874523},"location":"Left Ankle"},{"euler":{"heading":57.228280939801415,"pitch":-1.5606455879735983,"roll":5.085231590122152},"location":"Right Ankle"},{"euler":{"heading":98.30905604006823,"pitch":-152.61916142051015,"roll":55.98166587914474},"location":"Right Hip"},{"euler":{"heading":157.79396831530477,"pitch":-132.20203849024398,"roll":-45.41324137728658},"location":"Right Knee"},{"euler":{"heading":39.3148878953076,"pitch":-135.1688173214626,"roll":60.98794758259247},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.101"} +{"sensors":[{"euler":{"heading":174.6674428712794,"pitch":132.9422067307147,"roll":23.85537531521071},"location":"Left Knee"},{"euler":{"heading":94.0457912065215,"pitch":110.6529775525118,"roll":41.86197418707071},"location":"Left Ankle"},{"euler":{"heading":57.80545284582128,"pitch":-1.7295810291762386,"roll":4.895458431109937},"location":"Right Ankle"},{"euler":{"heading":97.95940043606142,"pitch":-152.71349527845913,"roll":56.63349929123027},"location":"Right Hip"},{"euler":{"heading":158.14582148377428,"pitch":-131.94433464121957,"roll":-45.728167239557926},"location":"Right Knee"},{"euler":{"heading":37.97714910577684,"pitch":-133.23318558931635,"roll":60.13915282433322},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.202"} +{"sensors":[{"euler":{"heading":191.48194858415147,"pitch":134.14173605764324,"roll":24.52608778368964},"location":"Left Knee"},{"euler":{"heading":91.99746208586936,"pitch":109.21892979726061,"roll":40.45077676836364},"location":"Left Ankle"},{"euler":{"heading":57.999907561239155,"pitch":-1.8378729262586146,"roll":4.674662587998943},"location":"Right Ankle"},{"euler":{"heading":97.87596039245528,"pitch":-152.81089575061324,"roll":57.326399362107246},"location":"Right Hip"},{"euler":{"heading":158.99373933539687,"pitch":-132.1186511770976,"roll":-46.392850515602134},"location":"Right Knee"},{"euler":{"heading":36.62318419519916,"pitch":-131.3098670303847,"roll":59.1564875418999},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.303"} +{"sensors":[{"euler":{"heading":204.16500372573634,"pitch":136.37756245187893,"roll":26.07972900532068},"location":"Left Knee"},{"euler":{"heading":87.99771587728243,"pitch":107.64703681753456,"roll":37.155699091527275},"location":"Left Ankle"},{"euler":{"heading":57.449916805115244,"pitch":-1.6978356336327531,"roll":4.319696329199049},"location":"Right Ankle"},{"euler":{"heading":97.93211435320976,"pitch":-152.91105617555192,"roll":58.02500942589652},"location":"Right Hip"},{"euler":{"heading":160.54436540185716,"pitch":-133.03178605938785,"roll":-47.37231546404192},"location":"Right Knee"},{"euler":{"heading":35.610865775679244,"pitch":-129.72888032734625,"roll":58.32833878770991},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.404"} +{"sensors":[{"euler":{"heading":215.9047533531627,"pitch":138.50230620669103,"roll":27.52175610478861},"location":"Left Knee"},{"euler":{"heading":84.59169428955418,"pitch":106.8323331357811,"roll":34.12762918237455},"location":"Left Ankle"},{"euler":{"heading":56.16742512460372,"pitch":-1.5405520702694777,"roll":3.762726696279144},"location":"Right Ankle"},{"euler":{"heading":98.0201529178888,"pitch":-153.34495055799673,"roll":58.772508483306865},"location":"Right Hip"},{"euler":{"heading":162.58992886167144,"pitch":-134.80985745344907,"roll":-48.69758391763773},"location":"Right Knee"},{"euler":{"heading":35.331029198111324,"pitch":-128.88724229461164,"roll":57.79550490893892},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.505"} +{"sensors":[{"euler":{"heading":228.05802801784645,"pitch":139.39582558602194,"roll":28.71333049430975},"location":"Left Knee"},{"euler":{"heading":83.05752486059876,"pitch":106.44909982220298,"roll":32.64611626413709},"location":"Left Ankle"},{"euler":{"heading":53.50068261214335,"pitch":-1.9552468632425302,"roll":3.23645402665123},"location":"Right Ankle"},{"euler":{"heading":98.54938762609991,"pitch":-153.51045550219706,"roll":59.307757634976184},"location":"Right Hip"},{"euler":{"heading":164.97468597550431,"pitch":-138.01637170810415,"roll":-50.44657552587395},"location":"Right Knee"},{"euler":{"heading":35.19167627830019,"pitch":-128.26101806515047,"roll":57.56595441804504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.607"} +{"sensors":[{"euler":{"heading":240.02097521606183,"pitch":139.39374302741976,"roll":29.62324744487878},"location":"Left Knee"},{"euler":{"heading":82.68927237453889,"pitch":106.32293983998268,"roll":31.769004637723384},"location":"Left Ankle"},{"euler":{"heading":49.95686435092902,"pitch":-2.6597221769182773,"roll":2.644058623986107},"location":"Right Ankle"},{"euler":{"heading":99.76319886348992,"pitch":-152.92815995197736,"roll":59.020731871478574},"location":"Right Hip"},{"euler":{"heading":167.50846737795388,"pitch":-106.41473453729374,"roll":-51.95816797328656},"location":"Right Knee"},{"euler":{"heading":35.45375865047018,"pitch":-128.21616625863544,"roll":57.62810897624054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.708"} +{"sensors":[{"euler":{"heading":251.37512769445567,"pitch":138.7856187246778,"roll":30.3609227003909},"location":"Left Knee"},{"euler":{"heading":83.020345137085,"pitch":106.36564585598441,"roll":31.423354173951047},"location":"Left Ankle"},{"euler":{"heading":48.18617791583612,"pitch":-3.1874999592264497,"roll":2.5046527615874963},"location":"Right Ankle"},{"euler":{"heading":101.09937897714093,"pitch":-152.11034395677962,"roll":58.12490868433072},"location":"Right Hip"},{"euler":{"heading":168.4138706401585,"pitch":-111.55451108356436,"roll":-52.862351175957905},"location":"Right Knee"},{"euler":{"heading":36.22088278542316,"pitch":-128.9445496327719,"roll":57.97779807861649},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.809"} +{"sensors":[{"euler":{"heading":261.99386492501014,"pitch":137.85705685221,"roll":30.856080430351813},"location":"Left Knee"},{"euler":{"heading":83.93706062337651,"pitch":106.62283127038597,"roll":31.574768756555944},"location":"Left Ankle"},{"euler":{"heading":49.03006012425251,"pitch":-3.493749963303805,"roll":2.891687485428747},"location":"Right Ankle"},{"euler":{"heading":101.90194107942685,"pitch":-151.66805956110167,"roll":56.931167815897645},"location":"Right Hip"},{"euler":{"heading":166.57873357614267,"pitch":-113.59280997520793,"roll":-52.382366058362116},"location":"Right Knee"},{"euler":{"heading":36.99879450688084,"pitch":-130.1750946694947,"roll":58.45501827075484},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.909"} +{"sensors":[{"euler":{"heading":236.26947843250912,"pitch":136.590101166989,"roll":30.926722387316634},"location":"Left Knee"},{"euler":{"heading":85.27460456103887,"pitch":107.09179814334738,"roll":32.16104188090035},"location":"Left Ankle"},{"euler":{"heading":51.527054111827255,"pitch":-3.3381249669734245,"roll":3.527518736885873},"location":"Right Ankle"},{"euler":{"heading":101.91174697148416,"pitch":-151.62625360499152,"roll":55.88180103430788},"location":"Right Hip"},{"euler":{"heading":163.10211021852842,"pitch":-114.45852897768714,"roll":-50.562879452525905},"location":"Right Knee"},{"euler":{"heading":37.92391505619276,"pitch":-131.86383520254526,"roll":59.04701644367936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.10"} +{"sensors":[{"euler":{"heading":213.6925305892582,"pitch":135.1685910502901,"roll":30.50280014858497},"location":"Left Knee"},{"euler":{"heading":87.14089410493499,"pitch":107.79511832901264,"roll":33.36993769281031},"location":"Left Ankle"},{"euler":{"heading":54.31809870064453,"pitch":-2.991812470276082,"roll":4.0435168631972855},"location":"Right Ankle"},{"euler":{"heading":101.07057227433575,"pitch":-151.8948782444924,"roll":55.27487093087709},"location":"Right Hip"},{"euler":{"heading":159.7231491966756,"pitch":-115.34392607991842,"roll":-48.481591507273315},"location":"Right Knee"},{"euler":{"heading":38.99402355057349,"pitch":-134.05870168229075,"roll":59.71106479931143},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.111"} +{"sensors":[{"euler":{"heading":194.3982775303324,"pitch":133.87048194526108,"roll":29.033770133726474},"location":"Left Knee"},{"euler":{"heading":89.32055469444148,"pitch":109.00935649611138,"roll":35.66419392352928},"location":"Left Ankle"},{"euler":{"heading":56.06128883058008,"pitch":-2.655131223248474,"roll":4.332915176877558},"location":"Right Ankle"},{"euler":{"heading":100.06976504690218,"pitch":-152.24289042004315,"roll":55.09738383778939},"location":"Right Hip"},{"euler":{"heading":158.10083427700803,"pitch":-116.67203347192658,"roll":-47.302182356545984},"location":"Right Knee"},{"euler":{"heading":39.91337119551614,"pitch":-135.72783151406168,"roll":60.34620831938029},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.212"} +{"sensors":[{"euler":{"heading":178.58344977729917,"pitch":132.49593375073496,"roll":26.867893120353827},"location":"Left Knee"},{"euler":{"heading":93.19474922499734,"pitch":112.41467084650024,"roll":38.82902453117636},"location":"Left Ankle"},{"euler":{"heading":57.08640994752208,"pitch":-2.3646181009236265,"roll":4.474623659189802},"location":"Right Ankle"},{"euler":{"heading":99.05028854221196,"pitch":-152.59985137803886,"roll":55.40014545401045},"location":"Right Hip"},{"euler":{"heading":157.87825084930725,"pitch":-118.17983012473393,"roll":-46.903214120891384},"location":"Right Knee"},{"euler":{"heading":39.509534075964524,"pitch":-135.2362983626555,"roll":60.40533748744226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.312"} +{"sensors":[{"euler":{"heading":163.62510479956927,"pitch":132.0150903756615,"roll":25.293603808318444},"location":"Left Knee"},{"euler":{"heading":95.3440243024976,"pitch":112.51695376185022,"roll":41.15862207805872},"location":"Left Ankle"},{"euler":{"heading":57.67776895276987,"pitch":-2.0594062908312636,"roll":4.452161293270821},"location":"Right Ankle"},{"euler":{"heading":98.13275968799076,"pitch":-152.90861624023498,"roll":56.09138090860941},"location":"Right Hip"},{"euler":{"heading":158.45292576437654,"pitch":-119.92434711226053,"roll":-46.94414270880225},"location":"Right Knee"},{"euler":{"heading":38.23983066836807,"pitch":-133.63141852638995,"roll":59.85230373869804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.413"} +{"sensors":[{"euler":{"heading":182.09384431961237,"pitch":132.90108133809534,"roll":25.582993427486603},"location":"Left Knee"},{"euler":{"heading":94.05337187224785,"pitch":110.8402583856652,"roll":40.73025987025285},"location":"Left Ankle"},{"euler":{"heading":57.89749205749288,"pitch":-1.5347156617481372,"roll":4.12569516394374},"location":"Right Ankle"},{"euler":{"heading":97.46948371919169,"pitch":-153.05525461621147,"roll":56.932242817748474},"location":"Right Hip"},{"euler":{"heading":159.7576331879389,"pitch":-122.05066240103449,"roll":-47.30597843792202},"location":"Right Knee"},{"euler":{"heading":36.65959760153127,"pitch":-131.78077667375095,"roll":58.92957336482824},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.515"} +{"sensors":[{"euler":{"heading":195.44070988765114,"pitch":135.12972320428582,"roll":27.16219408473794},"location":"Left Knee"},{"euler":{"heading":90.16053468502307,"pitch":109.13123254709868,"roll":37.81348388322757},"location":"Left Ankle"},{"euler":{"heading":57.607742851743595,"pitch":-0.9437440955733236,"roll":3.8256256475493657},"location":"Right Ankle"},{"euler":{"heading":97.01628534727253,"pitch":-153.23097915459033,"roll":57.77026853597363},"location":"Right Hip"},{"euler":{"heading":161.613119869145,"pitch":-124.52684616093104,"roll":-47.97538059412982},"location":"Right Knee"},{"euler":{"heading":35.39363784137814,"pitch":-130.20894900637586,"roll":58.12411602834541},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.616"} +{"sensors":[{"euler":{"heading":207.31538889888606,"pitch":137.56050088385726,"roll":28.702224676264148},"location":"Left Knee"},{"euler":{"heading":86.21948121652076,"pitch":107.85560929238882,"roll":34.55088549490481},"location":"Left Ankle"},{"euler":{"heading":56.47196856656924,"pitch":-0.5243696860159912,"roll":3.343063082794429},"location":"Right Ankle"},{"euler":{"heading":96.92715681254528,"pitch":-153.67663123913132,"roll":58.56199168237627},"location":"Right Hip"},{"euler":{"heading":163.82680788223053,"pitch":-127.60541154483793,"roll":-49.18409253471684},"location":"Right Knee"},{"euler":{"heading":34.948024057240325,"pitch":-129.42555410573829,"roll":57.54920442551088},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.720"} +{"sensors":[{"euler":{"heading":219.70885000899744,"pitch":138.72320079547154,"roll":29.988252208637732},"location":"Left Knee"},{"euler":{"heading":84.5037830948687,"pitch":107.35754836314993,"roll":32.64579694541433},"location":"Left Ankle"},{"euler":{"heading":54.26227170991231,"pitch":-0.8219327174143921,"roll":2.9212567745149864},"location":"Right Ankle"},{"euler":{"heading":97.30944113129075,"pitch":-154.0652181152182,"roll":57.53704251413865},"location":"Right Hip"},{"euler":{"heading":166.04412709400748,"pitch":-131.59487039035415,"roll":-50.79693328124516},"location":"Right Knee"},{"euler":{"heading":34.803221651516296,"pitch":-128.92049869516444,"roll":57.23803398295979},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.821"} +{"sensors":[{"euler":{"heading":232.0004650080977,"pitch":138.9321307159244,"roll":31.01442698777396},"location":"Left Knee"},{"euler":{"heading":83.77215478538183,"pitch":107.13429352683494,"roll":31.7187172508729},"location":"Left Ankle"},{"euler":{"heading":50.64229453892108,"pitch":-1.4834894456729528,"roll":2.354131097063488},"location":"Right Ankle"},{"euler":{"heading":98.36599701816169,"pitch":-153.55869630369637,"roll":57.445838262724784},"location":"Right Hip"},{"euler":{"heading":168.78346438460673,"pitch":-100.81663335131873,"roll":-52.16098995312065},"location":"Right Knee"},{"euler":{"heading":34.935399486364666,"pitch":-128.615948825648,"roll":57.295480584663814},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.922"} +{"sensors":[{"euler":{"heading":243.78791850728794,"pitch":138.48266764433194,"roll":31.831734288996564},"location":"Left Knee"},{"euler":{"heading":84.05118930684365,"pitch":107.13961417415145,"roll":31.37184552578561},"location":"Left Ankle"},{"euler":{"heading":48.47181508502897,"pitch":-2.3163905011056576,"roll":2.2249679873571395},"location":"Right Ankle"},{"euler":{"heading":99.76064731634553,"pitch":-152.81532667332675,"roll":56.70750443645231},"location":"Right Hip"},{"euler":{"heading":169.67386794614606,"pitch":-106.85372001618687,"roll":-53.13239095780858},"location":"Right Knee"},{"euler":{"heading":35.4731095377282,"pitch":-129.0481039430832,"roll":57.597182526197436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.23"} +{"sensors":[{"euler":{"heading":254.94037665655915,"pitch":137.64690087989874,"roll":32.34231086009691},"location":"Left Knee"},{"euler":{"heading":84.66482037615928,"pitch":107.1881527567363,"roll":31.39716097320705},"location":"Left Ankle"},{"euler":{"heading":48.855883576526075,"pitch":-2.9847514509950916,"roll":2.6087211886214257},"location":"Right Ankle"},{"euler":{"heading":100.94708258471098,"pitch":-152.2775440059941,"roll":55.59300399280708},"location":"Right Hip"},{"euler":{"heading":167.84398115153144,"pitch":-109.39959801456818,"roll":-52.81290186202772},"location":"Right Knee"},{"euler":{"heading":36.19454858395538,"pitch":-130.28079354877488,"roll":58.024964273577694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.123"} +{"sensors":[{"euler":{"heading":229.55883899090324,"pitch":136.56971079190885,"roll":32.389329774087216},"location":"Left Knee"},{"euler":{"heading":85.59833833854336,"pitch":107.34433748106267,"roll":31.819944875886346},"location":"Left Ankle"},{"euler":{"heading":51.47029521887347,"pitch":-2.8425263058955825,"roll":2.9853490697592835},"location":"Right Ankle"},{"euler":{"heading":101.20862432623989,"pitch":-152.0872896053947,"roll":54.62745359352637},"location":"Right Hip"},{"euler":{"heading":164.3908330363783,"pitch":-110.80963821311136,"roll":-51.019111675824945},"location":"Right Knee"},{"euler":{"heading":37.00009372555984,"pitch":-131.89021419389738,"roll":58.59121784621993},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.225"} +{"sensors":[{"euler":{"heading":207.19670509181293,"pitch":135.34398971271796,"roll":31.969146796678498},"location":"Left Knee"},{"euler":{"heading":87.06975450468903,"pitch":107.6599037329564,"roll":32.83795038829771},"location":"Left Ankle"},{"euler":{"heading":54.36701569698612,"pitch":-2.552023675306024,"roll":3.4993141627833553},"location":"Right Ankle"},{"euler":{"heading":100.1815118936159,"pitch":-152.37231064485522,"roll":54.18345823417373},"location":"Right Hip"},{"euler":{"heading":160.85174973274047,"pitch":-111.95992439180023,"roll":-48.81095050824245},"location":"Right Knee"},{"euler":{"heading":37.968834353003864,"pitch":-133.99494277450765,"roll":59.294596061597936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.325"} +{"sensors":[{"euler":{"heading":187.92703458263162,"pitch":134.14709074144616,"roll":30.72848211701065},"location":"Left Knee"},{"euler":{"heading":88.91277905422012,"pitch":108.29391335966076,"roll":34.81665534946794},"location":"Left Ankle"},{"euler":{"heading":56.12406412728751,"pitch":-2.1030713077754215,"roll":3.78063274650502},"location":"Right Ankle"},{"euler":{"heading":98.86336070425432,"pitch":-152.7913295803697,"roll":54.221362410756356},"location":"Right Hip"},{"euler":{"heading":158.99157475946643,"pitch":-113.64518195262022,"roll":-47.3548554574182},"location":"Right Knee"},{"euler":{"heading":39.07820091770348,"pitch":-136.0204484970569,"roll":59.99638645543814},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.426"} +{"sensors":[{"euler":{"heading":172.17808112436845,"pitch":133.05113166730155,"roll":28.524383905309584},"location":"Left Knee"},{"euler":{"heading":92.5902511487981,"pitch":111.18952202369468,"roll":37.94748981452115},"location":"Left Ankle"},{"euler":{"heading":57.26790771455876,"pitch":-1.5490141769978794,"roll":3.8338194718545178},"location":"Right Ankle"},{"euler":{"heading":97.5957746338289,"pitch":-153.20594662233273,"roll":54.686726169680725},"location":"Right Hip"},{"euler":{"heading":158.76116728351977,"pitch":-115.6306637573582,"roll":-46.700619911676384},"location":"Right Knee"},{"euler":{"heading":38.82038082593313,"pitch":-135.6371536473512,"roll":60.19674780989433},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.527"} +{"sensors":[{"euler":{"heading":158.3102730119316,"pitch":132.3272685005714,"roll":26.56569551477863},"location":"Left Knee"},{"euler":{"heading":95.0874760339183,"pitch":111.72056982132521,"roll":40.47149083306903},"location":"Left Ankle"},{"euler":{"heading":57.84111694310289,"pitch":-1.0253627592980914,"roll":3.744187524669066},"location":"Right Ankle"},{"euler":{"heading":96.56119717044601,"pitch":-153.54785196009945,"roll":55.45555355271266},"location":"Right Hip"},{"euler":{"heading":159.4350505551678,"pitch":-117.7675973816224,"roll":-46.60555792050875},"location":"Right Knee"},{"euler":{"heading":37.70084274333982,"pitch":-134.08593828261607,"roll":59.7395730289049},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.627"} +{"sensors":[{"euler":{"heading":142.89174571073843,"pitch":132.96329165051426,"roll":26.221625963300767},"location":"Left Knee"},{"euler":{"heading":94.27872843052648,"pitch":110.6485128391927,"roll":40.43684174976213},"location":"Left Ankle"},{"euler":{"heading":57.9757552487926,"pitch":-0.4665764833682823,"roll":3.56976877220216},"location":"Right Ankle"},{"euler":{"heading":95.9363274534014,"pitch":-153.7055667640895,"roll":56.378748197441396},"location":"Right Hip"},{"euler":{"heading":160.66029549965103,"pitch":-120.04083764346015,"roll":-46.89500212845788},"location":"Right Knee"},{"euler":{"heading":36.39950846900584,"pitch":-132.22109445435447,"roll":58.971865726014414},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.727"} +{"sensors":[{"euler":{"heading":161.27132113966462,"pitch":134.97946248546285,"roll":27.499463366970694},"location":"Left Knee"},{"euler":{"heading":90.61960558747384,"pitch":109.52741155527343,"roll":37.67440757478592},"location":"Left Ankle"},{"euler":{"heading":57.59067972391335,"pitch":0.08008116496854595,"roll":3.287791894981944},"location":"Right Ankle"},{"euler":{"heading":95.63019470806125,"pitch":-153.91626008768057,"roll":57.328373377697254},"location":"Right Hip"},{"euler":{"heading":162.37551594968593,"pitch":-122.60550387911414,"roll":-47.5555019156121},"location":"Right Knee"},{"euler":{"heading":35.409557622105254,"pitch":-130.74273500891903,"roll":58.26217915341297},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.829"} +{"sensors":[{"euler":{"heading":176.93168902569815,"pitch":137.40026623691656,"roll":28.96201703027363},"location":"Left Knee"},{"euler":{"heading":86.59514502872645,"pitch":108.5246703997461,"roll":34.28196681730733},"location":"Left Ankle"},{"euler":{"heading":56.54411175152201,"pitch":0.49082304847169134,"roll":2.8652627054837496},"location":"Right Ankle"},{"euler":{"heading":95.67342523725513,"pitch":-154.30588407891253,"roll":58.21428603992753},"location":"Right Hip"},{"euler":{"heading":164.53171435471737,"pitch":-125.75120349120273,"roll":-48.67495172405089},"location":"Right Knee"},{"euler":{"heading":35.25610185989473,"pitch":-129.97471150802713,"roll":57.75471123807168},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.929"} +{"sensors":[{"euler":{"heading":192.42602012312832,"pitch":138.61648961322493,"roll":30.30956532724627},"location":"Left Knee"},{"euler":{"heading":84.67313052585381,"pitch":107.99095335977148,"roll":32.285020135576595},"location":"Left Ankle"},{"euler":{"heading":54.339700576369815,"pitch":0.14174074362452216,"roll":2.3537364349353744},"location":"Right Ankle"},{"euler":{"heading":96.23733271352961,"pitch":-154.7815456710213,"roll":58.79285743593478},"location":"Right Hip"},{"euler":{"heading":166.67854291924561,"pitch":-129.81983314208247,"roll":-50.40745655164581},"location":"Right Knee"},{"euler":{"heading":35.33049167390526,"pitch":-129.6772403572244,"roll":57.51049011426451},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.30"} +{"sensors":[{"euler":{"heading":207.4396681108155,"pitch":138.80484065190245,"roll":31.391108794521642},"location":"Left Knee"},{"euler":{"heading":83.92456747326843,"pitch":107.78560802379434,"roll":31.262768122018937},"location":"Left Ankle"},{"euler":{"heading":50.62448051873283,"pitch":-0.24743333073793006,"roll":1.5496127914418372},"location":"Right Ankle"},{"euler":{"heading":97.50109944217665,"pitch":-154.40339110391915,"roll":58.588571692341304},"location":"Right Hip"},{"euler":{"heading":169.41693862732106,"pitch":-99.13159982787423,"roll":-51.82921089648123},"location":"Right Knee"},{"euler":{"heading":35.69744250651473,"pitch":-129.54076632150196,"roll":57.65944110283806},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.130"} +{"sensors":[{"euler":{"heading":221.58945129973395,"pitch":138.4181065867122,"roll":32.20199791506948},"location":"Left Knee"},{"euler":{"heading":84.64461072594158,"pitch":107.78829722141491,"roll":31.255241309817045},"location":"Left Ankle"},{"euler":{"heading":48.01203246685955,"pitch":-1.022689997664137,"roll":1.2946515122976534},"location":"Right Ankle"},{"euler":{"heading":99.23223949795899,"pitch":-153.67555199352725,"roll":57.57346452310718},"location":"Right Hip"},{"euler":{"heading":170.35649476458894,"pitch":-105.5934398450868,"roll":-52.89003980683311},"location":"Right Knee"},{"euler":{"heading":36.396448255863255,"pitch":-130.13668968935178,"roll":58.04349699255425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.230"} +{"sensors":[{"euler":{"heading":234.76175616976056,"pitch":137.732545928041,"roll":32.66929812356253},"location":"Left Knee"},{"euler":{"heading":85.24264965334741,"pitch":107.66571749927341,"roll":31.410967178835342},"location":"Left Ankle"},{"euler":{"heading":48.0608292201736,"pitch":-1.6579209978977234,"roll":1.521436361067888},"location":"Right Ankle"},{"euler":{"heading":100.76526554816309,"pitch":-153.13924679417454,"roll":56.11611807079646},"location":"Right Hip"},{"euler":{"heading":168.75834528813004,"pitch":-108.27784586057814,"roll":-52.6697858261498},"location":"Right Knee"},{"euler":{"heading":37.238053430276935,"pitch":-131.4042707204166,"roll":58.57664729329883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.331"} +{"sensors":[{"euler":{"heading":247.1855805527845,"pitch":136.7842913352369,"roll":32.721118311206276},"location":"Left Knee"},{"euler":{"heading":86.21213468801268,"pitch":107.64914574934608,"roll":31.938620460951807},"location":"Left Ankle"},{"euler":{"heading":50.49849629815624,"pitch":-1.810878898107951,"roll":2.0630427249610994},"location":"Right Ankle"},{"euler":{"heading":101.25748899334678,"pitch":-152.8753221147571,"roll":54.954506263716816},"location":"Right Hip"},{"euler":{"heading":165.01376075931705,"pitch":-109.60631127452032,"roll":-50.927807243534815},"location":"Right Knee"},{"euler":{"heading":38.09549808724924,"pitch":-133.12009364837493,"roll":59.21273256396894},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.431"} +{"sensors":[{"euler":{"heading":222.97952249750605,"pitch":135.64336220171322,"roll":32.28025648008565},"location":"Left Knee"},{"euler":{"heading":87.79092121921141,"pitch":107.85298117441147,"roll":33.019758414856625},"location":"Left Ankle"},{"euler":{"heading":53.55489666834062,"pitch":-1.8422910082971562,"roll":2.7442384524649897},"location":"Right Ankle"},{"euler":{"heading":100.4879900940121,"pitch":-152.96903990328138,"roll":54.37155563734514},"location":"Right Hip"},{"euler":{"heading":160.93738468338537,"pitch":-110.5269301470683,"roll":-48.64752651918133},"location":"Right Knee"},{"euler":{"heading":39.154698278524315,"pitch":-135.46433428353743,"roll":59.89770930757205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.531"} +{"sensors":[{"euler":{"heading":202.00032024775544,"pitch":134.4790259815419,"roll":31.07723083207708},"location":"Left Knee"},{"euler":{"heading":89.78057909729027,"pitch":108.38018305697032,"roll":34.924032573370965},"location":"Left Ankle"},{"euler":{"heading":55.74315700150656,"pitch":-1.4393119074674405,"roll":3.1510646072184905},"location":"Right Ankle"},{"euler":{"heading":99.25794108461089,"pitch":-153.24713591295324,"roll":54.25315007361063},"location":"Right Hip"},{"euler":{"heading":158.26864621504686,"pitch":-112.27423713236146,"roll":-46.8390238672632},"location":"Right Knee"},{"euler":{"heading":40.20172845067188,"pitch":-137.9804008551837,"roll":60.50793837681485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.632"} +{"sensors":[{"euler":{"heading":184.8377882229799,"pitch":133.2498733833877,"roll":28.91950774886937},"location":"Left Knee"},{"euler":{"heading":93.44002118756124,"pitch":111.2671647512733,"roll":37.90037931603387},"location":"Left Ankle"},{"euler":{"heading":56.87509130135591,"pitch":-1.0266307167206965,"roll":3.292208146496642},"location":"Right Ankle"},{"euler":{"heading":98.4758969761498,"pitch":-153.34742232165794,"roll":54.45283506624956},"location":"Right Hip"},{"euler":{"heading":157.16053159354217,"pitch":-114.27806341912532,"roll":-45.880121480536886},"location":"Right Knee"},{"euler":{"heading":40.319055605604696,"pitch":-138.60111076966533,"roll":60.70714453913337},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.732"} +{"sensors":[{"euler":{"heading":170.06650940068192,"pitch":132.38113604504892,"roll":26.596306973982436},"location":"Left Knee"},{"euler":{"heading":96.30226906880512,"pitch":113.10294827614598,"roll":40.772841384430485},"location":"Left Ankle"},{"euler":{"heading":57.65008217122032,"pitch":-0.4802176450486268,"roll":3.237987331846978},"location":"Right Ankle"},{"euler":{"heading":97.28455727853482,"pitch":-153.55643008949215,"roll":55.14505155962461},"location":"Right Hip"},{"euler":{"heading":157.46322843418798,"pitch":-116.5440070772128,"roll":-45.4608593324832},"location":"Right Knee"},{"euler":{"heading":39.274650045044226,"pitch":-136.89099969269878,"roll":60.59268008522004},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.833"} +{"sensors":[{"euler":{"heading":154.87235846061373,"pitch":132.48052244054404,"roll":25.592926276584194},"location":"Left Knee"},{"euler":{"heading":96.74704216192461,"pitch":112.09265344853138,"roll":41.80180724598744},"location":"Left Ankle"},{"euler":{"heading":57.97882395409829,"pitch":0.0928041194562359,"roll":3.03293859866228},"location":"Right Ankle"},{"euler":{"heading":96.39360155068134,"pitch":-153.66953708054294,"roll":57.62429640366215},"location":"Right Hip"},{"euler":{"heading":158.7106555907692,"pitch":-118.88335636949152,"roll":-45.614773399234885},"location":"Right Knee"},{"euler":{"heading":37.659685040539806,"pitch":-134.8581497234289,"roll":59.789662076698036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.934"} +{"sensors":[{"euler":{"heading":172.77887261455237,"pitch":134.01997019648962,"roll":26.433633648925777},"location":"Left Knee"},{"euler":{"heading":93.97858794573216,"pitch":110.57088810367824,"roll":40.0028765213887},"location":"Left Ankle"},{"euler":{"heading":57.96219155868846,"pitch":0.45852370751061233,"roll":2.8796447387960518},"location":"Right Ankle"},{"euler":{"heading":95.6792413956132,"pitch":-153.99633337248864,"roll":58.449366763295934},"location":"Right Hip"},{"euler":{"heading":160.28334003169226,"pitch":-121.27627073254237,"roll":-46.1720460593114},"location":"Right Knee"},{"euler":{"heading":36.08746653648583,"pitch":-132.84108475108602,"roll":58.97319586902824},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.34"} +{"sensors":[{"euler":{"heading":186.82598535309717,"pitch":136.54297317684066,"roll":27.984020284033203},"location":"Left Knee"},{"euler":{"heading":89.49947915115895,"pitch":108.81379929331042,"roll":36.42133886924984},"location":"Left Ankle"},{"euler":{"heading":57.297222402819614,"pitch":0.7251713367595511,"roll":2.5166802649164466},"location":"Right Ankle"},{"euler":{"heading":95.33631725605188,"pitch":-154.57795003523975,"roll":59.29193008696634},"location":"Right Hip"},{"euler":{"heading":162.13625602852304,"pitch":-123.84239365928815,"roll":-47.186091453380264},"location":"Right Knee"},{"euler":{"heading":35.309969882837244,"pitch":-131.50697627597742,"roll":58.394626282125415},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.136"} +{"sensors":[{"euler":{"heading":200.86213681778744,"pitch":138.30742585915658,"roll":29.354368255629883},"location":"Left Knee"},{"euler":{"heading":86.23703123604305,"pitch":107.81991936397938,"roll":33.60420498232486},"location":"Left Ankle"},{"euler":{"heading":55.780000162537654,"pitch":0.602654203083596,"roll":2.065012238424802},"location":"Right Ankle"},{"euler":{"heading":95.43393553044669,"pitch":-155.53890503171576,"roll":60.1002370782697},"location":"Right Hip"},{"euler":{"heading":164.11638042567074,"pitch":-126.95190429335935,"roll":-48.70498230804223},"location":"Right Knee"},{"euler":{"heading":35.46022289455352,"pitch":-130.77502864837967,"roll":58.12391365391288},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.237"} +{"sensors":[{"euler":{"heading":214.73842313600872,"pitch":138.9891832732409,"roll":30.450181430066895},"location":"Left Knee"},{"euler":{"heading":85.00082811243875,"pitch":107.35667742758145,"roll":32.375034484092374},"location":"Left Ankle"},{"euler":{"heading":52.570750146283885,"pitch":0.06738878277523636,"roll":1.4522610145823218},"location":"Right Ankle"},{"euler":{"heading":96.50304197740202,"pitch":-155.61001452854418,"roll":60.133963370442736},"location":"Right Hip"},{"euler":{"heading":166.47974238310368,"pitch":-131.8067138640234,"roll":-50.45948407723801},"location":"Right Knee"},{"euler":{"heading":35.40170060509816,"pitch":-130.2162757835417,"roll":57.9865222885216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.337"} +{"sensors":[{"euler":{"heading":228.01458082240785,"pitch":138.89651494591683,"roll":31.261413287060204},"location":"Left Knee"},{"euler":{"heading":84.50074530119488,"pitch":107.03350968482331,"roll":31.61878103568314},"location":"Left Ankle"},{"euler":{"heading":49.0386751316555,"pitch":-0.7956000955022874,"roll":1.0195349131240896},"location":"Right Ankle"},{"euler":{"heading":98.19648777966182,"pitch":-154.80526307568977,"roll":59.37681703339847},"location":"Right Hip"},{"euler":{"heading":168.65676814479332,"pitch":-136.47604247762106,"roll":-51.78228566951421},"location":"Right Knee"},{"euler":{"heading":35.81153054458835,"pitch":-130.24464820518753,"roll":58.15662005966944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.439"} +{"sensors":[{"euler":{"heading":240.43187274016708,"pitch":138.25061345132517,"roll":31.922771958354186},"location":"Left Knee"},{"euler":{"heading":84.8756707710754,"pitch":106.91140871634099,"roll":31.463152932114827},"location":"Left Ankle"},{"euler":{"heading":47.80980761848995,"pitch":-1.534790085952059,"roll":1.1175814218116806},"location":"Right Ankle"},{"euler":{"heading":99.78933900169565,"pitch":-153.8747367681208,"roll":58.12663533005862},"location":"Right Hip"},{"euler":{"heading":168.366091330314,"pitch":-137.60343822985897,"roll":-52.34155710256279},"location":"Right Knee"},{"euler":{"heading":36.63037749012952,"pitch":-131.0951833846688,"roll":58.540958053702504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.540"} +{"sensors":[{"euler":{"heading":252.26993546615037,"pitch":137.25055210619266,"roll":32.255494762518765},"location":"Left Knee"},{"euler":{"heading":85.63810369396786,"pitch":106.9265178447069,"roll":31.629337638903344},"location":"Left Ankle"},{"euler":{"heading":49.191326856640956,"pitch":-2.006311077356853,"roll":1.6995732796305127},"location":"Right Ankle"},{"euler":{"heading":100.61040510152608,"pitch":-153.43726309130872,"roll":56.78272179705276},"location":"Right Hip"},{"euler":{"heading":165.63573219728258,"pitch":-136.44934440687308,"roll":-51.40740139230651},"location":"Right Knee"},{"euler":{"heading":37.579839741116565,"pitch":-132.54191504620192,"roll":59.036862248332255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.641"} +{"sensors":[{"euler":{"heading":227.53669191953534,"pitch":136.0129968955734,"roll":32.123695286266894},"location":"Left Knee"},{"euler":{"heading":86.81179332457107,"pitch":107.14011606023621,"roll":32.22890387501301},"location":"Left Ankle"},{"euler":{"heading":52.04094417097686,"pitch":-1.9494299696211679,"roll":2.5233659516674614},"location":"Right Ankle"},{"euler":{"heading":100.31186459137348,"pitch":-153.33728678217787,"roll":55.92944961734749},"location":"Right Hip"},{"euler":{"heading":161.90340897755434,"pitch":-134.89815996618577,"roll":-49.34791125307586},"location":"Right Knee"},{"euler":{"heading":38.521855767004915,"pitch":-134.33147354158172,"roll":59.65192602349903},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.741"} +{"sensors":[{"euler":{"heading":205.90177272758183,"pitch":134.68044720601605,"roll":31.398825757640207},"location":"Left Knee"},{"euler":{"heading":88.53686399211396,"pitch":107.60110445421259,"roll":33.51226348751171},"location":"Left Ankle"},{"euler":{"heading":54.74309975387917,"pitch":-1.591986972659051,"roll":3.0710293565007154},"location":"Right Ankle"},{"euler":{"heading":99.13067813223613,"pitch":-153.60980810396006,"roll":55.536504655612745},"location":"Right Hip"},{"euler":{"heading":158.9755680797989,"pitch":-133.9145939695672,"roll":-47.50062012776827},"location":"Right Knee"},{"euler":{"heading":39.557170190304426,"pitch":-136.64832618742355,"roll":60.28673342114913},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.842"} +{"sensors":[{"euler":{"heading":187.64909545482365,"pitch":133.43740248541445,"roll":29.621443181876188},"location":"Left Knee"},{"euler":{"heading":90.70192759290256,"pitch":108.97849400879133,"roll":35.898537138760545},"location":"Left Ankle"},{"euler":{"heading":56.175039778491254,"pitch":-1.201538275393146,"roll":3.3264264208506438},"location":"Right Ankle"},{"euler":{"heading":98.23011031901252,"pitch":-153.81757729356406,"roll":55.47035419005147},"location":"Right Hip"},{"euler":{"heading":157.72176127181902,"pitch":-133.66063457261046,"roll":-46.41930811499145},"location":"Right Knee"},{"euler":{"heading":40.13895317127398,"pitch":-137.9647435686812,"roll":60.758060079034216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.943"} +{"sensors":[{"euler":{"heading":172.86543590934127,"pitch":131.931162236873,"roll":27.30304886368857},"location":"Left Knee"},{"euler":{"heading":94.01298483361231,"pitch":111.9931446079122,"roll":38.80868342488449},"location":"Left Ankle"},{"euler":{"heading":57.10128580064213,"pitch":-0.6126344478538315,"roll":3.3375337787655797},"location":"Right Ankle"},{"euler":{"heading":97.21959928711128,"pitch":-154.02331956420767,"roll":55.87956877104632},"location":"Right Hip"},{"euler":{"heading":158.02458514463711,"pitch":-133.87582111534942,"roll":-46.06487730349231},"location":"Right Knee"},{"euler":{"heading":39.77505785414658,"pitch":-136.51201921181308,"roll":60.86975407113079},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.44"} +{"sensors":[{"euler":{"heading":158.34764231840717,"pitch":131.6567960131857,"roll":25.903993977319715},"location":"Left Knee"},{"euler":{"heading":95.46793635025108,"pitch":110.42508014712098,"roll":40.459065082396044},"location":"Left Ankle"},{"euler":{"heading":57.46615722057792,"pitch":-0.007621003068448262,"roll":3.260030400889022},"location":"Right Ankle"},{"euler":{"heading":96.50388935840014,"pitch":-154.1022376077869,"roll":56.59161189394169},"location":"Right Hip"},{"euler":{"heading":159.0471266301734,"pitch":-134.38823900381448,"roll":-46.17088957314308},"location":"Right Knee"},{"euler":{"heading":38.47255206873192,"pitch":-134.54831729063176,"roll":60.164028664017714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.145"} +{"sensors":[{"euler":{"heading":177.11287808656644,"pitch":132.82236641186714,"roll":26.376094579587743},"location":"Left Knee"},{"euler":{"heading":93.53364271522597,"pitch":109.34507213240889,"roll":39.26315857415644},"location":"Left Ankle"},{"euler":{"heading":57.41329149852013,"pitch":0.46189109723839655,"roll":3.15277736080012},"location":"Right Ankle"},{"euler":{"heading":96.07225042256013,"pitch":-154.18576384700822,"roll":57.42620070454752},"location":"Right Hip"},{"euler":{"heading":160.44866396715608,"pitch":-135.17441510343303,"roll":-46.66005061582877},"location":"Right Knee"},{"euler":{"heading":37.10029686185873,"pitch":-132.6622355615686,"roll":59.29137579761594},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.246"} +{"sensors":[{"euler":{"heading":191.8703402779098,"pitch":135.00887977068044,"roll":27.77598512162897},"location":"Left Knee"},{"euler":{"heading":89.41152844370338,"pitch":108.141814919168,"roll":35.8743427167408},"location":"Left Ankle"},{"euler":{"heading":56.80321234866812,"pitch":0.9094519875145569,"roll":2.8937496247201078},"location":"Right Ankle"},{"euler":{"heading":95.84002538030413,"pitch":-154.4859374623074,"roll":58.24608063409277},"location":"Right Hip"},{"euler":{"heading":162.33504757044048,"pitch":-136.38197359308973,"roll":-47.5440455542459},"location":"Right Knee"},{"euler":{"heading":36.29026717567286,"pitch":-131.30851200541173,"roll":58.574738217854346},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.347"} +{"sensors":[{"euler":{"heading":205.30205625011882,"pitch":137.00174179361238,"roll":29.079636609466075},"location":"Left Knee"},{"euler":{"heading":85.93912559933304,"pitch":107.2838834272512,"roll":33.00565844506672},"location":"Left Ankle"},{"euler":{"heading":55.516641113801306,"pitch":1.1497567887631013,"roll":2.410624662248097},"location":"Right Ankle"},{"euler":{"heading":95.77477284227372,"pitch":-155.15609371607667,"roll":59.08397257068349},"location":"Right Hip"},{"euler":{"heading":164.54529281339643,"pitch":-138.25002623378074,"roll":-48.858390998821314},"location":"Right Knee"},{"euler":{"heading":36.14249045810558,"pitch":-130.52141080487056,"roll":58.11726439606891},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.448"} +{"sensors":[{"euler":{"heading":218.81560062510692,"pitch":137.70156761425113,"roll":30.152922948519468},"location":"Left Knee"},{"euler":{"heading":84.18896303939974,"pitch":106.82424508452608,"roll":31.46134260056005},"location":"Left Ankle"},{"euler":{"heading":53.046227002421176,"pitch":0.8285311098867911,"roll":2.0508121960232875},"location":"Right Ankle"},{"euler":{"heading":96.16604555804635,"pitch":-155.559234344469,"roll":59.72557531361514},"location":"Right Hip"},{"euler":{"heading":167.0595135320568,"pitch":-141.61252361040266,"roll":-50.45380189893918},"location":"Right Knee"},{"euler":{"heading":36.00949141229502,"pitch":-129.9692697243835,"roll":57.94303795646202},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.549"} +{"sensors":[{"euler":{"heading":231.78404056259623,"pitch":137.687660852826,"roll":30.90013065366752},"location":"Left Knee"},{"euler":{"heading":83.35131673545976,"pitch":106.53557057607347,"roll":30.583958340504047},"location":"Left Ankle"},{"euler":{"heading":49.722854302179066,"pitch":0.27692799889811204,"roll":1.708230976420959},"location":"Right Ankle"},{"euler":{"heading":97.20569100224172,"pitch":-154.9908109100221,"roll":59.57801778225363},"location":"Right Hip"},{"euler":{"heading":169.94731217885112,"pitch":-110.0887712493624,"roll":-51.70842170904527},"location":"Right Knee"},{"euler":{"heading":36.28354227106552,"pitch":-130.06609275194518,"roll":58.08623416081582},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.650"} +{"sensors":[{"euler":{"heading":244.0243865063366,"pitch":137.12514476754342,"roll":31.51011758830077},"location":"Left Knee"},{"euler":{"heading":83.47243506191379,"pitch":106.45701351846613,"roll":30.269312506453645},"location":"Left Ankle"},{"euler":{"heading":48.22556887196116,"pitch":-0.20076480099169916,"roll":1.674907878778863},"location":"Right Ankle"},{"euler":{"heading":98.56637190201755,"pitch":-154.1042298190199,"roll":58.695216004028275},"location":"Right Hip"},{"euler":{"heading":170.671330960966,"pitch":-115.20489412442616,"roll":-52.48132953814074},"location":"Right Knee"},{"euler":{"heading":36.855188043958975,"pitch":-130.72198347675067,"roll":58.452610744734244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.751"} +{"sensors":[{"euler":{"heading":219.70319785570297,"pitch":136.13138029078908,"roll":31.840355829470692},"location":"Left Knee"},{"euler":{"heading":84.1751915557224,"pitch":106.60506216661952,"roll":30.34238125580828},"location":"Left Ankle"},{"euler":{"heading":49.309261984765044,"pitch":-0.5806883208925293,"roll":2.076167090900977},"location":"Right Ankle"},{"euler":{"heading":99.5472347118158,"pitch":-153.59380683711794,"roll":57.41944440362545},"location":"Right Hip"},{"euler":{"heading":168.6604478648694,"pitch":-117.05940471198355,"roll":-52.05819658432667},"location":"Right Knee"},{"euler":{"heading":37.55091923956308,"pitch":-131.9747851290756,"roll":58.90734967026083},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.852"} +{"sensors":[{"euler":{"heading":198.52662807013266,"pitch":134.84324226171017,"roll":31.712570246523626},"location":"Left Knee"},{"euler":{"heading":85.32017240015017,"pitch":106.95080594995758,"roll":30.826893130227454},"location":"Left Ankle"},{"euler":{"heading":52.00958578628854,"pitch":-0.6726194888032764,"roll":2.7123003818108793},"location":"Right Ankle"},{"euler":{"heading":99.47376124063422,"pitch":-153.54067615340617,"roll":56.4587499632629},"location":"Right Hip"},{"euler":{"heading":164.64440307838248,"pitch":-117.5222142407852,"roll":-50.164876925894006},"location":"Right Knee"},{"euler":{"heading":38.48957731560677,"pitch":-133.73355661616804,"roll":59.51036470323474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.952"} +{"sensors":[{"euler":{"heading":180.0677152631194,"pitch":133.48391803553915,"roll":30.997563221871264},"location":"Left Knee"},{"euler":{"heading":86.95690516013516,"pitch":107.48072535496183,"roll":31.91295381720471},"location":"Left Ankle"},{"euler":{"heading":54.90237720765969,"pitch":-0.5741075399229487,"roll":3.2348203436297918},"location":"Right Ankle"},{"euler":{"heading":98.5076351165708,"pitch":-153.81785853806554,"roll":55.96912496693661},"location":"Right Hip"},{"euler":{"heading":160.99246277054425,"pitch":-117.98874281670669,"roll":-48.12963923330461},"location":"Right Knee"},{"euler":{"heading":39.6031195840461,"pitch":-136.16645095455124,"roll":60.14682823291127},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.53"} +{"sensors":[{"euler":{"heading":164.53594373680747,"pitch":132.39177623198523,"roll":29.160306899684137},"location":"Left Knee"},{"euler":{"heading":88.91746464412165,"pitch":108.47640281946566,"roll":34.17165843548424},"location":"Left Ankle"},{"euler":{"heading":56.518389486893724,"pitch":-0.4416967859306538,"roll":3.423838309266813},"location":"Right Ankle"},{"euler":{"heading":97.85687160491372,"pitch":-154.01107268425898,"roll":55.82221247024295},"location":"Right Hip"},{"euler":{"heading":159.16821649348984,"pitch":-119.05236853503602,"roll":-46.985425309974154},"location":"Right Knee"},{"euler":{"heading":40.34280762564149,"pitch":-137.7185558590961,"roll":60.700895409620145},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.154"} +{"sensors":[{"euler":{"heading":152.16984936312673,"pitch":131.10884860878673,"roll":26.719276209715726},"location":"Left Knee"},{"euler":{"heading":92.27571817970949,"pitch":111.4225125375191,"roll":37.191992591935815},"location":"Left Ankle"},{"euler":{"heading":57.51655053820435,"pitch":-0.20377710733758844,"roll":3.518954478340132},"location":"Right Ankle"},{"euler":{"heading":96.77743444442235,"pitch":-154.37246541583306,"roll":56.23374122321866},"location":"Right Hip"},{"euler":{"heading":158.77639484414087,"pitch":-120.34713168153243,"roll":-46.53688277897674},"location":"Right Knee"},{"euler":{"heading":39.80852686307734,"pitch":-136.7842002731865,"roll":60.805805868658126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.254"} +{"sensors":[{"euler":{"heading":140.14036442681407,"pitch":130.79171374790806,"roll":25.103598588744152},"location":"Left Knee"},{"euler":{"heading":94.21689636173855,"pitch":111.61151128376719,"roll":39.291543332742236},"location":"Left Ankle"},{"euler":{"heading":58.18989548438391,"pitch":0.20410060339617042,"roll":3.3483090305061185},"location":"Right Ankle"},{"euler":{"heading":96.04969099998013,"pitch":-154.58521887424976,"roll":56.947867100896794},"location":"Right Hip"},{"euler":{"heading":159.4487553597268,"pitch":-122.03741851337918,"roll":-46.564444501079066},"location":"Right Knee"},{"euler":{"heading":38.352674176769604,"pitch":-134.98078024586786,"roll":60.150225281792316},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.356"} +{"sensors":[{"euler":{"heading":160.87632798413267,"pitch":131.96254237311726,"roll":25.443238729869737},"location":"Left Knee"},{"euler":{"heading":92.6327067255647,"pitch":110.25661015539048,"roll":38.61238899946802},"location":"Left Ankle"},{"euler":{"heading":58.55215593594552,"pitch":0.7149405430565534,"roll":3.1009781274555066},"location":"Right Ankle"},{"euler":{"heading":95.46347189998211,"pitch":-154.7141969868248,"roll":57.796830390807116},"location":"Right Hip"},{"euler":{"heading":160.71637982375412,"pitch":-124.05867666204128,"roll":-46.93300005097116},"location":"Right Knee"},{"euler":{"heading":36.53615675909264,"pitch":-132.97645222128108,"roll":59.17270275361309},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.457"} +{"sensors":[{"euler":{"heading":176.5449451857194,"pitch":134.37253813580554,"roll":26.973914856882764},"location":"Left Knee"},{"euler":{"heading":88.47568605300823,"pitch":108.63719913985143,"roll":35.43865009952122},"location":"Left Ankle"},{"euler":{"heading":58.27819034235097,"pitch":1.2496964887508981,"roll":2.772130314709956},"location":"Right Ankle"},{"euler":{"heading":95.14212470998389,"pitch":-154.9427772881423,"roll":58.635897351726406},"location":"Right Hip"},{"euler":{"heading":162.5634918413787,"pitch":-126.45905899583715,"roll":-47.652200045874046},"location":"Right Knee"},{"euler":{"heading":35.29504108318338,"pitch":-131.44755699915297,"roll":58.405432478251775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.557"} +{"sensors":[{"euler":{"heading":190.60295066714747,"pitch":136.81653432222498,"roll":28.50152337119449},"location":"Left Knee"},{"euler":{"heading":84.58436744770741,"pitch":107.4484792258663,"roll":32.1760350895691},"location":"Left Ankle"},{"euler":{"heading":57.14412130811587,"pitch":1.5934768398758083,"roll":2.2386672832389602},"location":"Right Ankle"},{"euler":{"heading":95.0529122389855,"pitch":-155.59224955932808,"roll":59.44105761655377},"location":"Right Hip"},{"euler":{"heading":164.68839265724083,"pitch":-129.27565309625345,"roll":-48.805730041286644},"location":"Right Knee"},{"euler":{"heading":34.80303697486504,"pitch":-130.52155129923767,"roll":57.8648892304266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.658"} +{"sensors":[{"euler":{"heading":204.92390560043273,"pitch":137.9661308900025,"roll":29.75762103407504},"location":"Left Knee"},{"euler":{"heading":82.63218070293667,"pitch":106.69113130327966,"roll":30.483431580612187},"location":"Left Ankle"},{"euler":{"heading":53.21095917730428,"pitch":0.9778791558882276,"roll":1.8523005549150642},"location":"Right Ankle"},{"euler":{"heading":95.45387101508695,"pitch":-156.13302460339528,"roll":59.89695185489839},"location":"Right Hip"},{"euler":{"heading":166.77580339151675,"pitch":-133.42308778662812,"roll":-50.56265703715798},"location":"Right Knee"},{"euler":{"heading":34.460233277378535,"pitch":-129.8568961693139,"roll":57.540900307383936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.758"} +{"sensors":[{"euler":{"heading":218.66276504038944,"pitch":138.30076780100225,"roll":30.663108930667537},"location":"Left Knee"},{"euler":{"heading":81.53771263264301,"pitch":106.1282681729517,"roll":29.42258842255097},"location":"Left Ankle"},{"euler":{"heading":49.89611325957386,"pitch":0.3675912402994048,"roll":1.4733204994235578},"location":"Right Ankle"},{"euler":{"heading":96.51473391357825,"pitch":-155.50722214305577,"roll":59.64475666940855},"location":"Right Hip"},{"euler":{"heading":169.67322305236507,"pitch":-102.41827900796531,"roll":-51.86264133344219},"location":"Right Knee"},{"euler":{"heading":34.414209949640686,"pitch":-129.70245655238253,"roll":57.53681027664555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.859"} +{"sensors":[{"euler":{"heading":231.4527385363505,"pitch":138.15194102090203,"roll":31.296798037600784},"location":"Left Knee"},{"euler":{"heading":81.0151913693787,"pitch":105.68419135565654,"roll":28.961579580295872},"location":"Left Ankle"},{"euler":{"heading":48.13775193361648,"pitch":-0.11916788373053566,"roll":1.432238449481202},"location":"Right Ankle"},{"euler":{"heading":97.95701052222043,"pitch":-154.5439999287502,"roll":58.7552810024677},"location":"Right Hip"},{"euler":{"heading":170.47465074712858,"pitch":-108.24520110716878,"roll":-52.63887720009797},"location":"Right Knee"},{"euler":{"heading":34.66653895467662,"pitch":-130.14471089714428,"roll":57.78312924898099},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.959"} +{"sensors":[{"euler":{"heading":243.56996468271547,"pitch":137.56174691881182,"roll":31.66086823384071},"location":"Left Knee"},{"euler":{"heading":81.15742223244084,"pitch":105.36577222009089,"roll":28.977921622266287},"location":"Left Ankle"},{"euler":{"heading":48.97397674025483,"pitch":-0.6260010953574822,"roll":1.8702646045330817},"location":"Right Ankle"},{"euler":{"heading":99.09255946999839,"pitch":-153.8270999358752,"roll":57.62350290222093},"location":"Right Hip"},{"euler":{"heading":168.13343567241574,"pitch":-110.52693099645191,"roll":-52.01248948008818},"location":"Right Knee"},{"euler":{"heading":35.15613505920896,"pitch":-131.04898980742985,"roll":58.1673163240829},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.59"} +{"sensors":[{"euler":{"heading":219.30671821444392,"pitch":136.52432222693062,"roll":31.65728141045664},"location":"Left Knee"},{"euler":{"heading":82.04793000919675,"pitch":105.39794499808181,"roll":29.49262946003966},"location":"Left Ankle"},{"euler":{"heading":51.957829066229344,"pitch":-0.7196509858217339,"roll":2.295738144079774},"location":"Right Ankle"},{"euler":{"heading":99.43330352299856,"pitch":-153.63188994228767,"roll":56.59865261199883},"location":"Right Hip"},{"euler":{"heading":164.4950921051742,"pitch":-111.53673789680673,"roll":-50.12374053207936},"location":"Right Knee"},{"euler":{"heading":35.86552155328806,"pitch":-132.30034082668686,"roll":58.719334691674604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.159"} +{"sensors":[{"euler":{"heading":198.13854639299953,"pitch":135.30314000423755,"roll":31.141553269410977},"location":"Left Knee"},{"euler":{"heading":83.50563700827706,"pitch":105.66440049827364,"roll":30.574616514035693},"location":"Left Ankle"},{"euler":{"heading":55.205796159606415,"pitch":-0.6914358872395605,"roll":2.859914329671797},"location":"Right Ankle"},{"euler":{"heading":98.5587231706987,"pitch":-153.88745094805893,"roll":55.98253735079895},"location":"Right Hip"},{"euler":{"heading":160.53933289465678,"pitch":-112.33306410712606,"roll":-47.861366478871425},"location":"Right Knee"},{"euler":{"heading":36.72896939795926,"pitch":-134.13905674401818,"roll":59.37240122250714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.260"} +{"sensors":[{"euler":{"heading":180.06219175369958,"pitch":133.9790760038138,"roll":29.73364794246988},"location":"Left Knee"},{"euler":{"heading":85.54257330744936,"pitch":106.46671044844628,"roll":32.573404862632124},"location":"Left Ankle"},{"euler":{"heading":57.06021654364577,"pitch":-0.3285422985156045,"roll":3.1676728967046173},"location":"Right Ankle"},{"euler":{"heading":97.83410085362883,"pitch":-154.06120585325303,"roll":55.67803361571906},"location":"Right Hip"},{"euler":{"heading":158.3228996051911,"pitch":-113.89350769641347,"roll":-46.362729830984286},"location":"Right Knee"},{"euler":{"heading":37.806072458163335,"pitch":-136.18140106961636,"roll":60.02266110025643},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.361"} +{"sensors":[{"euler":{"heading":165.81222257832962,"pitch":132.6749184034324,"roll":27.37903314822289},"location":"Left Knee"},{"euler":{"heading":89.52581597670442,"pitch":109.63253940360165,"roll":35.76606437636892},"location":"Left Ankle"},{"euler":{"heading":58.041694889281196,"pitch":0.19806193133595595,"roll":3.2821556070341553},"location":"Right Ankle"},{"euler":{"heading":97.44444076826595,"pitch":-154.04883526792773,"roll":55.69773025414715},"location":"Right Hip"},{"euler":{"heading":157.515609644672,"pitch":-115.69165692677213,"roll":-45.61395684788586},"location":"Right Knee"},{"euler":{"heading":37.406715212347,"pitch":-135.95701096265472,"roll":60.09539499023079},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.462"} +{"sensors":[{"euler":{"heading":153.03100032049667,"pitch":131.85742656308915,"roll":25.4223798334006},"location":"Left Knee"},{"euler":{"heading":92.11698437903398,"pitch":110.8067854632415,"roll":38.20195793873203},"location":"Left Ankle"},{"euler":{"heading":58.55627540035308,"pitch":0.7407557382023604,"roll":3.11644004633074},"location":"Right Ankle"},{"euler":{"heading":96.89374669143935,"pitch":-154.06270174113496,"roll":56.17795722873244},"location":"Right Hip"},{"euler":{"heading":157.9827986802048,"pitch":-117.7349912340949,"roll":-45.47756116309727},"location":"Right Knee"},{"euler":{"heading":36.3347936911123,"pitch":-134.16130986638925,"roll":59.61710549120771},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.563"} +{"sensors":[{"euler":{"heading":137.827900288447,"pitch":132.57168390678024,"roll":25.280141850060545},"location":"Left Knee"},{"euler":{"heading":91.33028594113058,"pitch":109.75110691691735,"roll":38.11926214485882},"location":"Left Ankle"},{"euler":{"heading":58.85064786031777,"pitch":1.2854301643821244,"roll":2.886046041697666},"location":"Right Ankle"},{"euler":{"heading":96.66687202229542,"pitch":-153.96268156702146,"roll":56.8789115058592},"location":"Right Hip"},{"euler":{"heading":159.06576881218433,"pitch":-119.8427421106854,"roll":-45.76730504678754},"location":"Right Knee"},{"euler":{"heading":34.895064322001076,"pitch":-132.22642887975033,"roll":58.68039494208694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.664"} +{"sensors":[{"euler":{"heading":156.77011025960232,"pitch":134.47701551610223,"roll":26.589627665054493},"location":"Left Knee"},{"euler":{"heading":87.80975734701752,"pitch":108.5009962252256,"roll":35.476085930372946},"location":"Left Ankle"},{"euler":{"heading":58.659333074285996,"pitch":1.769387147943912,"roll":2.6536914375278995},"location":"Right Ankle"},{"euler":{"heading":96.63768482006589,"pitch":-154.0039134103193,"roll":57.58477035527328},"location":"Right Hip"},{"euler":{"heading":160.5716919309659,"pitch":-122.13971789961687,"roll":-46.36557454210879},"location":"Right Knee"},{"euler":{"heading":33.23055788980097,"pitch":-131.12878599177532,"roll":57.57485544787825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.764"} +{"sensors":[{"euler":{"heading":173.31184923364208,"pitch":136.71681396449202,"roll":28.118164898549043},"location":"Left Knee"},{"euler":{"heading":84.01003161231577,"pitch":107.31964660270305,"roll":32.265977337335656},"location":"Left Ankle"},{"euler":{"heading":57.8121497668574,"pitch":2.2424484331495207,"roll":2.1883222937751095},"location":"Right Ankle"},{"euler":{"heading":96.6614163380593,"pitch":-154.26602206928737,"roll":58.40129331974595},"location":"Right Hip"},{"euler":{"heading":162.6895227378693,"pitch":-124.89449610965518,"roll":-47.44151708789791},"location":"Right Knee"},{"euler":{"heading":32.795002100820874,"pitch":-130.09715739259778,"roll":56.97361990309042},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.865"} +{"sensors":[{"euler":{"heading":189.2494143102779,"pitch":138.00138256804283,"roll":29.506348408694137},"location":"Left Knee"},{"euler":{"heading":81.6965284510842,"pitch":106.72518194243274,"roll":30.10187960360209},"location":"Left Ankle"},{"euler":{"heading":55.99343479017166,"pitch":2.1369535898345684,"roll":1.6694900643975985},"location":"Right Ankle"},{"euler":{"heading":96.92652470425338,"pitch":-154.91441986235864,"roll":59.11741398777136},"location":"Right Hip"},{"euler":{"heading":164.93307046408236,"pitch":-128.26129649868966,"roll":-49.07861537910812},"location":"Right Knee"},{"euler":{"heading":32.771751890738784,"pitch":-129.57494165333802,"roll":56.68250791278138},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.967"} +{"sensors":[{"euler":{"heading":204.48072287925012,"pitch":138.34499431123857,"roll":30.480713567824726},"location":"Left Knee"},{"euler":{"heading":80.6456256059758,"pitch":106.16516374818947,"roll":29.11669164324188},"location":"Left Ankle"},{"euler":{"heading":52.5253413111545,"pitch":1.7357582308511117,"roll":1.0900410579578386},"location":"Right Ankle"},{"euler":{"heading":97.75887223382806,"pitch":-154.7542278761228,"roll":59.18692258899423},"location":"Right Hip"},{"euler":{"heading":167.57726341767412,"pitch":-133.3601668488207,"roll":-50.57700384119731},"location":"Right Knee"},{"euler":{"heading":32.782076701664906,"pitch":-129.27369748800422,"roll":56.714257121503245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.71"} +{"sensors":[{"euler":{"heading":218.6889005913251,"pitch":138.2104948801147,"roll":31.163892211042253},"location":"Left Knee"},{"euler":{"heading":80.28106304537822,"pitch":105.74864737337053,"roll":28.617522478917692},"location":"Left Ankle"},{"euler":{"heading":49.785307180039055,"pitch":1.2809324077660005,"roll":0.8310369521620548},"location":"Right Ankle"},{"euler":{"heading":99.01423501044525,"pitch":-154.08505508851053,"roll":58.51198033009481},"location":"Right Hip"},{"euler":{"heading":169.18828707590671,"pitch":-136.84915016393865,"roll":-51.66930345707758},"location":"Right Knee"},{"euler":{"heading":33.13511903149841,"pitch":-129.8025777392038,"roll":56.98658140935292},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.172"} +{"sensors":[{"euler":{"heading":232.05751053219262,"pitch":137.60819539210326,"roll":31.578752989938028},"location":"Left Knee"},{"euler":{"heading":80.49670674084041,"pitch":105.41128263603348,"roll":28.587020231025924},"location":"Left Ankle"},{"euler":{"heading":51.13802646203516,"pitch":0.6090891669894004,"roll":1.0729332569458494},"location":"Right Ankle"},{"euler":{"heading":100.23156150940073,"pitch":-153.34529957965947,"roll":57.435782297085325},"location":"Right Hip"},{"euler":{"heading":167.99445836831603,"pitch":-136.83298514754478,"roll":-51.80237311136983},"location":"Right Knee"},{"euler":{"heading":33.71535712834857,"pitch":-131.01606996528344,"roll":57.369173268417626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.272"} +{"sensors":[{"euler":{"heading":208.94550947897338,"pitch":136.62237585289293,"roll":31.589627690944226},"location":"Left Knee"},{"euler":{"heading":81.30953606675637,"pitch":105.37015437243014,"roll":29.015818207923335},"location":"Left Ankle"},{"euler":{"heading":53.20547381583164,"pitch":0.33568025029046034,"roll":1.5343899312512645},"location":"Right Ankle"},{"euler":{"heading":100.57090535846066,"pitch":-153.11076962169352,"roll":56.36720406737679},"location":"Right Hip"},{"euler":{"heading":164.71376253148443,"pitch":-135.4246866327903,"roll":-50.334635800232846},"location":"Right Knee"},{"euler":{"heading":34.47507141551372,"pitch":-132.5707129687551,"roll":57.894755941575866},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.372"} +{"sensors":[{"euler":{"heading":188.86345853107605,"pitch":135.39763826760364,"roll":31.124414921849805},"location":"Left Knee"},{"euler":{"heading":82.72233246008074,"pitch":105.57688893518713,"roll":29.989236387131},"location":"Left Ankle"},{"euler":{"heading":56.32867643424848,"pitch":0.19586222526141428,"roll":2.1497009381261383},"location":"Right Ankle"},{"euler":{"heading":99.68256482261461,"pitch":-153.34969265952418,"roll":55.78673366063911},"location":"Right Hip"},{"euler":{"heading":160.686136278336,"pitch":-133.83221796951128,"roll":-48.03242222020957},"location":"Right Knee"},{"euler":{"heading":35.52756427396235,"pitch":-134.6948916718796,"roll":58.54903034741828},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.473"} +{"sensors":[{"euler":{"heading":171.73961267796844,"pitch":134.13287444084327,"roll":29.886973429664824},"location":"Left Knee"},{"euler":{"heading":84.51884921407267,"pitch":106.16295004166841,"roll":31.765312748417905},"location":"Left Ankle"},{"euler":{"heading":58.24580879082363,"pitch":0.37002600273527286,"roll":2.5097308443135247},"location":"Right Ankle"},{"euler":{"heading":98.60805834035315,"pitch":-153.69597339357176,"roll":55.4955602945752},"location":"Right Hip"},{"euler":{"heading":158.1987726505024,"pitch":-133.09899617256016,"roll":-46.366679998188616},"location":"Right Knee"},{"euler":{"heading":36.781057846566114,"pitch":-137.02540250469164,"roll":59.20037731267646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.574"} +{"sensors":[{"euler":{"heading":157.92190141017159,"pitch":133.14458699675896,"roll":27.560776086698343},"location":"Left Knee"},{"euler":{"heading":87.81071429266541,"pitch":108.50290503750156,"roll":34.851281473576115},"location":"Left Ankle"},{"euler":{"heading":59.33372791174127,"pitch":0.5705234024617456,"roll":2.6712577598821725},"location":"Right Ankle"},{"euler":{"heading":97.58475250631784,"pitch":-153.9888760542146,"roll":55.621004265117676},"location":"Right Hip"},{"euler":{"heading":157.35389538545218,"pitch":-132.90159655530417,"roll":-45.511261998369754},"location":"Right Knee"},{"euler":{"heading":36.42795206190951,"pitch":-137.2541122542225,"roll":59.38033958140881},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.674"} +{"sensors":[{"euler":{"heading":146.00471126915443,"pitch":132.24262829708306,"roll":25.34844847802851},"location":"Left Knee"},{"euler":{"heading":90.75464286339889,"pitch":110.05261453375141,"roll":37.8724033262185},"location":"Left Ankle"},{"euler":{"heading":59.975355120567144,"pitch":0.7447210622155711,"roll":2.641631983893955},"location":"Right Ankle"},{"euler":{"heading":96.49502725568607,"pitch":-154.3212384487931,"roll":56.12765383860591},"location":"Right Hip"},{"euler":{"heading":157.63725584690698,"pitch":-133.08643689977376,"roll":-45.27263579853278},"location":"Right Knee"},{"euler":{"heading":35.18515685571856,"pitch":-135.64745102880025,"roll":59.02355562326794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.775"} +{"sensors":[{"euler":{"heading":133.12924014223898,"pitch":132.38086546737475,"roll":24.582353630225658},"location":"Left Knee"},{"euler":{"heading":90.966678577059,"pitch":109.14735308037626,"roll":38.70391299359665},"location":"Left Ankle"},{"euler":{"heading":60.45906960851043,"pitch":0.926498955994014,"roll":2.5462187855045597},"location":"Right Ankle"},{"euler":{"heading":95.86427453011746,"pitch":-154.50786460391382,"roll":56.80863845474532},"location":"Right Hip"},{"euler":{"heading":158.4297802622163,"pitch":-133.43404320979639,"roll":-45.4516222186795},"location":"Right Knee"},{"euler":{"heading":33.6916411701467,"pitch":-133.79520592592021,"roll":58.23995006094115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.875"} +{"sensors":[{"euler":{"heading":153.34131612801508,"pitch":133.88027892063727,"roll":25.617868267203093},"location":"Left Knee"},{"euler":{"heading":88.0575107193531,"pitch":107.83261777233864,"roll":36.68977169423699},"location":"Left Ankle"},{"euler":{"heading":60.46941264765939,"pitch":1.2463490603946126,"roll":2.360346906954104},"location":"Right Ankle"},{"euler":{"heading":95.57159707710572,"pitch":-154.50707814352242,"roll":57.57152460927079},"location":"Right Hip"},{"euler":{"heading":159.81180223599466,"pitch":-134.21563888881676,"roll":-45.931459996811554},"location":"Right Knee"},{"euler":{"heading":32.49747705313203,"pitch":-132.1469353333282,"roll":57.55970505484703},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.976"} +{"sensors":[{"euler":{"heading":169.81968451521357,"pitch":136.20475102857355,"roll":27.199831440482786},"location":"Left Knee"},{"euler":{"heading":84.0205096474178,"pitch":106.29935599510478,"roll":33.32704452481329},"location":"Left Ankle"},{"euler":{"heading":59.83497138289345,"pitch":1.5904641543551514,"roll":1.9930622162586937},"location":"Right Ankle"},{"euler":{"heading":95.52693736939516,"pitch":-154.6188703291702,"roll":58.395622148343705},"location":"Right Hip"},{"euler":{"heading":161.6743720123952,"pitch":-135.3753249999351,"roll":-46.8508139971304},"location":"Right Knee"},{"euler":{"heading":32.07272934781883,"pitch":-131.30724179999538,"roll":57.10998454936232},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.77"} +{"sensors":[{"euler":{"heading":185.77521606369223,"pitch":137.7092759257162,"roll":28.59234829643451},"location":"Left Knee"},{"euler":{"heading":81.33720868267602,"pitch":105.4006703955943,"roll":30.969340072331963},"location":"Left Ankle"},{"euler":{"heading":58.2452242446041,"pitch":1.6751677389196362,"roll":1.4687559946328244},"location":"Right Ankle"},{"euler":{"heading":95.87424363245565,"pitch":-154.85073329625317,"roll":59.16855993350934},"location":"Right Hip"},{"euler":{"heading":163.93818481115568,"pitch":-137.4002924999416,"roll":-48.34698259741736},"location":"Right Knee"},{"euler":{"heading":32.03420641303695,"pitch":-130.90151761999584,"roll":56.817736094426095},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.179"} +{"sensors":[{"euler":{"heading":201.410194457323,"pitch":138.1758483331446,"roll":29.61436346679106},"location":"Left Knee"},{"euler":{"heading":80.12848781440842,"pitch":104.96685335603487,"roll":29.75365606509877},"location":"Left Ankle"},{"euler":{"heading":55.06445182014369,"pitch":1.3139009650276725,"roll":0.9156303951695419},"location":"Right Ankle"},{"euler":{"heading":96.77431926921008,"pitch":-154.45940996662785,"roll":59.151703940158406},"location":"Right Hip"},{"euler":{"heading":166.2756163300401,"pitch":-141.11651324994745,"roll":-49.96853433767562},"location":"Right Knee"},{"euler":{"heading":32.06203577173326,"pitch":-130.66136585799626,"roll":56.81096248498349},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.279"} +{"sensors":[{"euler":{"heading":216.0566750115907,"pitch":138.02701349983013,"roll":30.321677120111953},"location":"Left Knee"},{"euler":{"heading":80.11563903296758,"pitch":104.77016802043138,"roll":29.334540458588897},"location":"Left Ankle"},{"euler":{"heading":53.039256638129324,"pitch":0.7887608685249052,"roll":0.7303173556525877},"location":"Right Ankle"},{"euler":{"heading":98.19063734228908,"pitch":-153.74471896996505,"roll":58.349033546142564},"location":"Right Hip"},{"euler":{"heading":167.4918046970361,"pitch":-142.8798619249527,"roll":-51.20918090390806},"location":"Right Knee"},{"euler":{"heading":32.29958219455993,"pitch":-131.07647927219662,"roll":57.011116236485144},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.380"} +{"sensors":[{"euler":{"heading":229.88225751043163,"pitch":137.3618121498471,"roll":30.78950940810076},"location":"Left Knee"},{"euler":{"heading":80.97907512967082,"pitch":104.81190121838824,"roll":29.66358641273001},"location":"Left Ankle"},{"euler":{"heading":53.51658097431639,"pitch":0.09738478167241471,"roll":1.0572856200873288},"location":"Right Ankle"},{"euler":{"heading":99.33407360806018,"pitch":-153.05774707296854,"roll":57.26413019152831},"location":"Right Hip"},{"euler":{"heading":165.87387422733246,"pitch":-141.51687573245746,"roll":-51.08826281351726},"location":"Right Knee"},{"euler":{"heading":32.95087397510394,"pitch":-132.10633134497695,"roll":57.41000461283663},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.481"} +{"sensors":[{"euler":{"heading":207.11903175938846,"pitch":136.3256309348624,"roll":30.798058467290687},"location":"Left Knee"},{"euler":{"heading":82.26241761670373,"pitch":105.05571109654943,"roll":30.37222777145701},"location":"Left Ankle"},{"euler":{"heading":55.93992287688475,"pitch":-0.21860369649482678,"roll":1.7515570580785962},"location":"Right Ankle"},{"euler":{"heading":99.36941624725416,"pitch":-152.9644723656717,"roll":56.35021717237548},"location":"Right Hip"},{"euler":{"heading":162.57398680459923,"pitch":-139.34018815921172,"roll":-49.36068653216554},"location":"Right Knee"},{"euler":{"heading":33.79953657759354,"pitch":-133.64569821047925,"roll":57.91900415155297},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.581"} +{"sensors":[{"euler":{"heading":187.42587858344965,"pitch":135.08056784137617,"roll":30.24325262056162},"location":"Left Knee"},{"euler":{"heading":84.25492585503336,"pitch":105.6126399868945,"roll":31.71625499431131},"location":"Left Ankle"},{"euler":{"heading":58.98343058919628,"pitch":-0.34674332684534415,"roll":2.4201513522707367},"location":"Right Ankle"},{"euler":{"heading":98.55747462252874,"pitch":-153.23052512910454,"roll":55.75269545513793},"location":"Right Hip"},{"euler":{"heading":158.74158812413933,"pitch":-137.33741934329055,"roll":-47.105867878948985},"location":"Right Knee"},{"euler":{"heading":34.63208291983419,"pitch":-135.48737838943134,"roll":58.48960373639767},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.682"} +{"sensors":[{"euler":{"heading":170.82079072510467,"pitch":133.81001105723857,"roll":28.656427358505457},"location":"Left Knee"},{"euler":{"heading":86.84193326953003,"pitch":106.53887598820505,"roll":34.23837949488018},"location":"Left Ankle"},{"euler":{"heading":60.566337530276655,"pitch":-0.16831899416080973,"roll":2.7718862170436633},"location":"Right Ankle"},{"euler":{"heading":97.88297716027587,"pitch":-153.4762226161941,"roll":55.42742590962414},"location":"Right Hip"},{"euler":{"heading":156.4299293117254,"pitch":-136.2536774089615,"roll":-45.514031091054086},"location":"Right Knee"},{"euler":{"heading":35.562624627850774,"pitch":-137.22614055048822,"roll":59.103143362757905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.783"} +{"sensors":[{"euler":{"heading":157.6824616525942,"pitch":132.49150995151473,"roll":26.31578462265491},"location":"Left Knee"},{"euler":{"heading":90.49523994257703,"pitch":109.70998838938455,"roll":37.20204154539216},"location":"Left Ankle"},{"euler":{"heading":61.328453777248995,"pitch":0.09851290525527123,"roll":2.894697595339297},"location":"Right Ankle"},{"euler":{"heading":97.08217944424828,"pitch":-153.7411003545747,"roll":55.50343331866173},"location":"Right Hip"},{"euler":{"heading":155.75568638055287,"pitch":-135.71580966806533,"roll":-44.74387798194868},"location":"Right Knee"},{"euler":{"heading":35.1376121650657,"pitch":-136.5597764954394,"roll":59.29907902648212},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.884"} +{"sensors":[{"euler":{"heading":145.1579654873348,"pitch":132.07985895636327,"roll":24.677956160389417},"location":"Left Knee"},{"euler":{"heading":92.32071594831933,"pitch":110.0639895504461,"roll":39.27558739085295},"location":"Left Ankle"},{"euler":{"heading":61.7268583995241,"pitch":0.38866161472974414,"roll":2.811477835805367},"location":"Right Ankle"},{"euler":{"heading":96.51771149982345,"pitch":-153.77324031911724,"roll":56.02808998679556},"location":"Right Hip"},{"euler":{"heading":156.1426177424976,"pitch":-135.6067287012588,"roll":-44.51949018375381},"location":"Right Knee"},{"euler":{"heading":34.04260094855913,"pitch":-134.96004884589544,"roll":58.825421123833905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.984"} +{"sensors":[{"euler":{"heading":165.7734189386013,"pitch":133.08437306072693,"roll":24.903910544350477},"location":"Left Knee"},{"euler":{"heading":90.8823943534874,"pitch":108.67009059540149,"roll":38.660528651767656},"location":"Left Ankle"},{"euler":{"heading":61.84167255957169,"pitch":0.6435454532567697,"roll":2.7053300522248303},"location":"Right Ankle"},{"euler":{"heading":96.0909403498411,"pitch":-153.83966628720552,"roll":56.775280988116},"location":"Right Hip"},{"euler":{"heading":157.12210596824784,"pitch":-135.7460558311329,"roll":-44.78004116537843},"location":"Right Knee"},{"euler":{"heading":32.68834085370322,"pitch":-133.1077939613059,"roll":58.03037901145051},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.87"} +{"sensors":[{"euler":{"heading":181.13982704474117,"pitch":135.30093575465423,"roll":26.38226948991543},"location":"Left Knee"},{"euler":{"heading":87.16915491813866,"pitch":107.24058153586134,"roll":35.794475786590894},"location":"Left Ankle"},{"euler":{"heading":61.47625530361452,"pitch":0.9041909079310928,"roll":2.5035470470023475},"location":"Right Ankle"},{"euler":{"heading":95.713096314857,"pitch":-154.09319965848496,"roll":57.635252889304404},"location":"Right Hip"},{"euler":{"heading":158.70989537142307,"pitch":-136.28395024801964,"roll":-45.47078704884059},"location":"Right Knee"},{"euler":{"heading":31.600756768332893,"pitch":-131.6157645651753,"roll":57.32734111030546},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.188"} +{"sensors":[{"euler":{"heading":194.57584434026705,"pitch":137.72084217918882,"roll":27.87529254092389},"location":"Left Knee"},{"euler":{"heading":83.3397394263248,"pitch":105.97902338227522,"roll":32.546278207931806},"location":"Left Ankle"},{"euler":{"heading":60.49737977325307,"pitch":1.2075218171379836,"roll":2.103192342302113},"location":"Right Ankle"},{"euler":{"heading":95.5292866833713,"pitch":-154.71512969263648,"roll":58.57172760037397},"location":"Right Hip"},{"euler":{"heading":160.6076558342808,"pitch":-137.13680522321766,"roll":-46.704958343956534},"location":"Right Knee"},{"euler":{"heading":31.309431091499604,"pitch":-130.8416881086578,"roll":56.76335699927492},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.288"} +{"sensors":[{"euler":{"heading":208.04950990624036,"pitch":138.95500796126996,"roll":29.175263286831502},"location":"Left Knee"},{"euler":{"heading":81.66201548369231,"pitch":105.44987104404771,"roll":30.635400387138628},"location":"Left Ankle"},{"euler":{"heading":58.54764179592777,"pitch":0.9742696354241851,"roll":1.6178731080719015},"location":"Right Ankle"},{"euler":{"heading":96.02010801503417,"pitch":-155.12486672337283,"roll":59.239554840336574},"location":"Right Hip"},{"euler":{"heading":162.80939025085272,"pitch":-139.1231247008959,"roll":-48.59071250956088},"location":"Right Knee"},{"euler":{"heading":31.178487982349644,"pitch":-130.34501929779202,"roll":56.449521299347424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.390"} +{"sensors":[{"euler":{"heading":221.3820589156163,"pitch":139.25325716514297,"roll":30.138986958148354},"location":"Left Knee"},{"euler":{"heading":80.63331393532309,"pitch":105.08613393964295,"roll":29.565610348424762},"location":"Left Ankle"},{"euler":{"heading":55.38662761633499,"pitch":0.3643426718817665,"roll":1.1373357972647113},"location":"Right Ankle"},{"euler":{"heading":97.28059721353075,"pitch":-154.46238005103555,"roll":59.02184935630292},"location":"Right Hip"},{"euler":{"heading":165.26595122576745,"pitch":-142.4670622308063,"roll":-50.194141258604795},"location":"Right Knee"},{"euler":{"heading":31.31063918411468,"pitch":-130.06676736801282,"roll":56.49206916941268},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.491"} +{"sensors":[{"euler":{"heading":234.1313530240547,"pitch":138.95918144862867,"roll":30.89383826233352},"location":"Left Knee"},{"euler":{"heading":80.35123254179078,"pitch":104.84627054567865,"roll":28.990299313582288},"location":"Left Ankle"},{"euler":{"heading":53.62296485470149,"pitch":-0.1595915953064102,"roll":0.9923522175382402},"location":"Right Ankle"},{"euler":{"heading":99.00253749217768,"pitch":-153.459892045932,"roll":58.06966442067264},"location":"Right Hip"},{"euler":{"heading":165.60810610319072,"pitch":-143.2141060077257,"roll":-50.99347713274432},"location":"Right Knee"},{"euler":{"heading":31.935825265703215,"pitch":-130.70384063121153,"roll":56.761612252471416},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.592"} +{"sensors":[{"euler":{"heading":246.10571772164923,"pitch":138.2945133037658,"roll":31.32945443610017},"location":"Left Knee"},{"euler":{"heading":80.50360928761171,"pitch":104.69289349111078,"roll":28.87876938222406},"location":"Left Ankle"},{"euler":{"heading":54.05441836923135,"pitch":-0.7811324357757693,"roll":1.4181169957844162},"location":"Right Ankle"},{"euler":{"heading":100.24603374295991,"pitch":-152.82015284133882,"roll":56.831447978605375},"location":"Right Hip"},{"euler":{"heading":163.52854549287164,"pitch":-141.70519540695312,"roll":-50.44412941946988},"location":"Right Knee"},{"euler":{"heading":32.8297427391329,"pitch":-132.0459565680904,"roll":57.191701027224276},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.693"} +{"sensors":[{"euler":{"heading":221.5701459494843,"pitch":137.32756197338924,"roll":31.321508992490156},"location":"Left Knee"},{"euler":{"heading":81.11574835885054,"pitch":104.7048541419997,"roll":29.228392444001656},"location":"Left Ankle"},{"euler":{"heading":56.11147653230822,"pitch":-1.1217691921981925,"roll":2.1513052962059747},"location":"Right Ankle"},{"euler":{"heading":100.59643036866392,"pitch":-152.64438755720494,"roll":55.83580318074484},"location":"Right Hip"},{"euler":{"heading":159.90069094358446,"pitch":-139.4659258662578,"roll":-48.57471647752289},"location":"Right Knee"},{"euler":{"heading":33.815518465219604,"pitch":-133.77261091128136,"roll":57.74128092450185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.794"} +{"sensors":[{"euler":{"heading":200.16938135453586,"pitch":136.21980577605032,"roll":30.75810809324114},"location":"Left Knee"},{"euler":{"heading":82.31667352296549,"pitch":104.94061872779973,"roll":30.19930319960149},"location":"Left Ankle"},{"euler":{"heading":58.9253288790774,"pitch":-1.1470922729783732,"roll":2.711174766585377},"location":"Right Ankle"},{"euler":{"heading":99.61803733179752,"pitch":-152.93619880148447,"roll":55.45222286267036},"location":"Right Hip"},{"euler":{"heading":156.31687184922603,"pitch":-137.52558327963203,"roll":-46.3547448297706},"location":"Right Knee"},{"euler":{"heading":34.833966618697644,"pitch":-135.89534982015323,"roll":58.32340283205167},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.894"} +{"sensors":[{"euler":{"heading":182.11494321908228,"pitch":134.9790751984453,"roll":29.338547283917027},"location":"Left Knee"},{"euler":{"heading":84.22250617066895,"pitch":105.70280685501976,"roll":32.17937287964134},"location":"Left Ankle"},{"euler":{"heading":60.42029599116966,"pitch":-0.9511330456805358,"roll":2.9650572899268393},"location":"Right Ankle"},{"euler":{"heading":98.48748359861777,"pitch":-153.36132892133602,"roll":55.338250576403325},"location":"Right Hip"},{"euler":{"heading":154.44143466430342,"pitch":-136.44802495166883,"roll":-44.96927034679354},"location":"Right Knee"},{"euler":{"heading":36.03806995682788,"pitch":-137.9370648381379,"roll":58.94106254884651},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.995"} +{"sensors":[{"euler":{"heading":167.64719889717406,"pitch":133.68116767860076,"roll":27.060942555525326},"location":"Left Knee"},{"euler":{"heading":87.64400555360206,"pitch":108.43252616951779,"roll":35.10518559167721},"location":"Left Ankle"},{"euler":{"heading":61.2032663920527,"pitch":-0.6872697411124822,"roll":2.9873015609341556},"location":"Right Ankle"},{"euler":{"heading":97.388735238756,"pitch":-153.67519602920243,"roll":55.679425518763},"location":"Right Hip"},{"euler":{"heading":154.25354119787306,"pitch":-135.89697245650194,"roll":-44.422343312114194},"location":"Right Knee"},{"euler":{"heading":35.7592629611451,"pitch":-137.69335835432412,"roll":59.115706293961864},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.95"} +{"sensors":[{"euler":{"heading":154.20122900745665,"pitch":133.13180091074068,"roll":25.273598299972793},"location":"Left Knee"},{"euler":{"heading":89.74210499824186,"pitch":108.74552355256601,"roll":37.28216703250949},"location":"Left Ankle"},{"euler":{"heading":61.62668975284743,"pitch":-0.499792767001234,"roll":2.90107140484074},"location":"Right Ankle"},{"euler":{"heading":96.5311117148804,"pitch":-153.9639264262822,"roll":56.3927329668867},"location":"Right Hip"},{"euler":{"heading":154.80318707808576,"pitch":-135.61352521085175,"roll":-44.44885898090278},"location":"Right Knee"},{"euler":{"heading":34.65208666503059,"pitch":-136.23652251889172,"roll":58.74788566456568},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.196"} +{"sensors":[{"euler":{"heading":174.13735610671097,"pitch":133.9248708196666,"roll":25.296238469975513},"location":"Left Knee"},{"euler":{"heading":88.66789449841768,"pitch":107.58347119730942,"roll":37.003950329258544},"location":"Left Ankle"},{"euler":{"heading":61.614020777562686,"pitch":-0.34981349030111064,"roll":2.748464264356666},"location":"Right Ankle"},{"euler":{"heading":96.02175054339236,"pitch":-154.17378378365396,"roll":57.247209670198025},"location":"Right Hip"},{"euler":{"heading":155.94161837027718,"pitch":-135.67092268976657,"roll":-44.9164730828125},"location":"Right Knee"},{"euler":{"heading":33.24937799852753,"pitch":-134.40662026700255,"roll":58.06059709810911},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.297"} +{"sensors":[{"euler":{"heading":188.86112049603986,"pitch":135.90738373769994,"roll":26.66661462297796},"location":"Left Knee"},{"euler":{"heading":85.30110504857592,"pitch":106.19387407757849,"roll":34.44105529633269},"location":"Left Ankle"},{"euler":{"heading":61.08386869980642,"pitch":-0.06483214127099957,"roll":2.454867837921},"location":"Right Ankle"},{"euler":{"heading":95.74457548905313,"pitch":-154.4314054052886,"roll":58.07248870317822},"location":"Right Hip"},{"euler":{"heading":157.66620653324946,"pitch":-136.3225804207899,"roll":-45.74982577453125},"location":"Right Knee"},{"euler":{"heading":32.243190198674775,"pitch":-132.9034582403023,"roll":57.479537388298205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.397"} +{"sensors":[{"euler":{"heading":201.70000844643587,"pitch":138.14164536392994,"roll":28.156203160680164},"location":"Left Knee"},{"euler":{"heading":81.75224454371833,"pitch":105.16823666982064,"roll":31.390699766699424},"location":"Left Ankle"},{"euler":{"heading":59.85673182982578,"pitch":0.24165107285610044,"roll":1.9406310541289},"location":"Right Ankle"},{"euler":{"heading":95.74511794014782,"pitch":-154.83201486475974,"roll":58.933989832860405},"location":"Right Hip"},{"euler":{"heading":159.88708587992454,"pitch":-137.5903223787109,"roll":-47.03109319707813},"location":"Right Knee"},{"euler":{"heading":31.9251211788073,"pitch":-132.0756124162721,"roll":57.050333649468385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.498"} +{"sensors":[{"euler":{"heading":214.9550076017923,"pitch":139.15873082753694,"roll":29.321832844612146},"location":"Left Knee"},{"euler":{"heading":80.2082700893465,"pitch":104.72016300283858,"roll":29.720379790029483},"location":"Left Ankle"},{"euler":{"heading":57.3398086468432,"pitch":-0.08251403442950964,"roll":1.40906794871601},"location":"Right Ankle"},{"euler":{"heading":96.48310614613304,"pitch":-154.8050633782838,"roll":59.45934084957437},"location":"Right Hip"},{"euler":{"heading":162.3358772919321,"pitch":-140.17504014083983,"roll":-48.85298387737031},"location":"Right Knee"},{"euler":{"heading":31.80760906092657,"pitch":-131.5118011746449,"roll":56.87030028452155},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.598"} +{"sensors":[{"euler":{"heading":228.04700684161307,"pitch":139.28035774478326,"roll":30.202149560150932},"location":"Left Knee"},{"euler":{"heading":79.64994308041186,"pitch":104.59814670255471,"roll":28.892091811026535},"location":"Left Ankle"},{"euler":{"heading":53.88707778215888,"pitch":-0.4367626309865587,"roll":0.855661153844409},"location":"Right Ankle"},{"euler":{"heading":97.69104553151973,"pitch":-154.03080704045541,"roll":59.10090676461693},"location":"Right Hip"},{"euler":{"heading":165.0397895627389,"pitch":-143.52003612675585,"roll":-50.54893548963328},"location":"Right Knee"},{"euler":{"heading":32.08309815483391,"pitch":-131.49812105718038,"roll":56.99577025606939},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.699"} +{"sensors":[{"euler":{"heading":240.56730615745175,"pitch":138.77107197030494,"roll":30.86318460413584},"location":"Left Knee"},{"euler":{"heading":80.56619877237067,"pitch":104.76958203229924,"roll":29.04663262992388},"location":"Left Ankle"},{"euler":{"heading":52.21087000394299,"pitch":-0.8805863678879029,"roll":0.6638450384599681},"location":"Right Ankle"},{"euler":{"heading":99.37194097836776,"pitch":-153.09022633640987,"roll":58.028316088155236},"location":"Right Hip"},{"euler":{"heading":165.542060606465,"pitch":-143.93053251408026,"roll":-51.49404194066995},"location":"Right Knee"},{"euler":{"heading":32.793538339350526,"pitch":-132.23580895146233,"roll":57.31494323046246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.799"} +{"sensors":[{"euler":{"heading":252.47307554170658,"pitch":137.81896477327444,"roll":31.208116143722258},"location":"Left Knee"},{"euler":{"heading":81.6533288951336,"pitch":105.01762382906932,"roll":29.516969366931495},"location":"Left Ankle"},{"euler":{"heading":53.10228300354869,"pitch":-1.3800277310991127,"roll":1.0724605346139713},"location":"Right Ankle"},{"euler":{"heading":100.32224688053098,"pitch":-152.6562037027689,"roll":56.731734479339714},"location":"Right Hip"},{"euler":{"heading":163.4316045458185,"pitch":-142.06247926267224,"roll":-50.95088774660296},"location":"Right Knee"},{"euler":{"heading":33.61418450541547,"pitch":-133.5497280563161,"roll":57.72094890741622},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.900"} +{"sensors":[{"euler":{"heading":227.85076798753593,"pitch":136.630818295947,"roll":31.06855452935003},"location":"Left Knee"},{"euler":{"heading":83.08799600562025,"pitch":105.4596114461624,"roll":30.371522430238343},"location":"Left Ankle"},{"euler":{"heading":55.654554703193824,"pitch":-1.4545249579892015,"roll":1.7527144811525743},"location":"Right Ankle"},{"euler":{"heading":100.15252219247789,"pitch":-152.62808333249203,"roll":55.908561031405746},"location":"Right Hip"},{"euler":{"heading":159.68844409123665,"pitch":-139.68748133640503,"roll":-48.868298971942664},"location":"Right Knee"},{"euler":{"heading":34.640266054873926,"pitch":-135.3072552506845,"roll":58.2676040166746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.1"} +{"sensors":[{"euler":{"heading":206.42194118878234,"pitch":135.2989864663523,"roll":30.31794907641503},"location":"Left Knee"},{"euler":{"heading":85.16669640505823,"pitch":106.16990030154616,"roll":31.90937018721451},"location":"Left Ankle"},{"euler":{"heading":58.239099232874445,"pitch":-1.3715724621902814,"roll":2.227443033037317},"location":"Right Ankle"},{"euler":{"heading":99.09976997323011,"pitch":-152.98402499924282,"roll":55.59270492826517},"location":"Right Hip"},{"euler":{"heading":156.244599682113,"pitch":-137.86248320276454,"roll":-46.750219074748394},"location":"Right Knee"},{"euler":{"heading":35.81373944938654,"pitch":-137.42652972561606,"roll":58.85334361500715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.102"} +{"sensors":[{"euler":{"heading":188.6672470699041,"pitch":134.12533781971706,"roll":28.35490416877353},"location":"Left Knee"},{"euler":{"heading":87.47502676455241,"pitch":107.58416027139155,"roll":34.38093316849306},"location":"Left Ankle"},{"euler":{"heading":59.640189309587,"pitch":-1.2094152159712535,"roll":2.3484487297335854},"location":"Right Ankle"},{"euler":{"heading":98.2397929759071,"pitch":-153.31062249931855,"roll":55.53968443543866},"location":"Right Hip"},{"euler":{"heading":154.5701397139017,"pitch":-136.71373488248807,"roll":-45.506447167273556},"location":"Right Knee"},{"euler":{"heading":36.33861550444789,"pitch":-138.41512675305447,"roll":59.268009253506435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.202"} +{"sensors":[{"euler":{"heading":174.16927236291372,"pitch":132.85030403774536,"roll":25.919413751896176},"location":"Left Knee"},{"euler":{"heading":90.55252408809717,"pitch":110.35074424425241,"roll":37.14283985164376},"location":"Left Ankle"},{"euler":{"heading":60.5074203786283,"pitch":-1.0822236943741281,"roll":2.382353856760227},"location":"Right Ankle"},{"euler":{"heading":97.25956367831638,"pitch":-153.6983102493867,"roll":55.94196599189479},"location":"Right Hip"},{"euler":{"heading":154.28812574251157,"pitch":-135.86111139423926,"roll":-45.0558024505462},"location":"Right Knee"},{"euler":{"heading":35.8610039540031,"pitch":-137.06111407774904,"roll":59.3287083281558},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.303"} +{"sensors":[{"euler":{"heading":159.68984512662234,"pitch":132.50277363397083,"roll":24.56497237670656},"location":"Left Knee"},{"euler":{"heading":92.13477167928745,"pitch":110.19066981982718,"roll":38.859805866479384},"location":"Left Ankle"},{"euler":{"heading":61.131678340765475,"pitch":-0.8990013249367153,"roll":2.2691184710842043},"location":"Right Ankle"},{"euler":{"heading":96.52735731048475,"pitch":-154.02222922444804,"roll":56.68526939270531},"location":"Right Hip"},{"euler":{"heading":154.70931316826042,"pitch":-135.32500025481534,"roll":-45.075222205491585},"location":"Right Knee"},{"euler":{"heading":34.6311535586028,"pitch":-135.32375266997414,"roll":58.727087495340214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.404"} +{"sensors":[{"euler":{"heading":178.38336061396012,"pitch":133.62749627057377,"roll":25.077225139035903},"location":"Left Knee"},{"euler":{"heading":90.2712945113587,"pitch":108.96535283784446,"roll":37.880075279831445},"location":"Left Ankle"},{"euler":{"heading":61.268510506688926,"pitch":-0.6216011924430438,"roll":2.135956623975784},"location":"Right Ankle"},{"euler":{"heading":96.09962157943627,"pitch":-154.22625630200324,"roll":57.49799245343478},"location":"Right Hip"},{"euler":{"heading":155.73838185143438,"pitch":-135.32375022933383,"roll":-45.47394998494243},"location":"Right Knee"},{"euler":{"heading":33.22428820274252,"pitch":-133.46637740297675,"roll":57.9918787458062},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.504"} +{"sensors":[{"euler":{"heading":192.63252455256412,"pitch":135.8959966435164,"roll":26.55075262513231},"location":"Left Knee"},{"euler":{"heading":86.26291506022284,"pitch":107.43756755406002,"roll":34.5795677518483},"location":"Left Ankle"},{"euler":{"heading":60.77290945602004,"pitch":-0.26569107319873947,"roll":1.9098609615782058},"location":"Right Ankle"},{"euler":{"heading":95.80215942149265,"pitch":-154.55363067180292,"roll":58.33569320809131},"location":"Right Hip"},{"euler":{"heading":157.35204366629094,"pitch":-135.70387520640045,"roll":-46.31405498644819},"location":"Right Knee"},{"euler":{"heading":32.433109382468274,"pitch":-132.18223966267908,"roll":57.43644087122558},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.605"} +{"sensors":[{"euler":{"heading":205.5630220973077,"pitch":138.00639697916478,"roll":27.964427362619084},"location":"Left Knee"},{"euler":{"heading":82.91787355420055,"pitch":106.43756079865403,"roll":31.69661097666347},"location":"Left Ankle"},{"euler":{"heading":59.45186851041804,"pitch":0.010878034121134472,"roll":1.4126248654203852},"location":"Right Ankle"},{"euler":{"heading":95.75944347934337,"pitch":-155.19826760462263,"roll":59.220873887282174},"location":"Right Hip"},{"euler":{"heading":159.33558929966185,"pitch":-136.64598768576042,"roll":-47.66389948780338},"location":"Right Knee"},{"euler":{"heading":32.22729844422145,"pitch":-131.5640156964112,"roll":57.01779678410303},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.706"} +{"sensors":[{"euler":{"heading":218.88796988757693,"pitch":138.86200728124828,"roll":29.080484626357176},"location":"Left Knee"},{"euler":{"heading":80.9135861987805,"pitch":105.78755471878864,"roll":30.089449878997126},"location":"Left Ankle"},{"euler":{"heading":56.75043165937623,"pitch":-0.21520976929097899,"roll":1.0151123788783467},"location":"Right Ankle"},{"euler":{"heading":96.47724913140904,"pitch":-155.11594084416038,"roll":59.70503649855396},"location":"Right Hip"},{"euler":{"heading":161.72078036969566,"pitch":-139.26888891718437,"roll":-49.42875953902304},"location":"Right Knee"},{"euler":{"heading":32.217068599799305,"pitch":-131.20136412677007,"roll":56.83476710569272},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.807"} +{"sensors":[{"euler":{"heading":231.55542289881924,"pitch":139.00080655312345,"roll":29.916186163721463},"location":"Left Knee"},{"euler":{"heading":79.59097757890244,"pitch":105.25879924690977,"roll":29.005504891097413},"location":"Left Ankle"},{"euler":{"heading":53.46913849343861,"pitch":-0.8186887923618811,"roll":0.6198511409905121},"location":"Right Ankle"},{"euler":{"heading":97.97327421826813,"pitch":-154.27934675974436,"roll":59.234532848698564},"location":"Right Hip"},{"euler":{"heading":164.06120233272608,"pitch":-142.42950002546593,"roll":-51.12963358512074},"location":"Right Knee"},{"euler":{"heading":32.52661173981937,"pitch":-131.5374777140931,"roll":56.895040395123445},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.907"} +{"sensors":[{"euler":{"heading":243.31238060893733,"pitch":138.72572589781112,"roll":30.493317547349317},"location":"Left Knee"},{"euler":{"heading":78.9568798210122,"pitch":104.85166932221881,"roll":28.554954401987672},"location":"Left Ankle"},{"euler":{"heading":52.17847464409475,"pitch":-1.193069913125693,"roll":0.45786602689146094},"location":"Right Ankle"},{"euler":{"heading":99.73844679644132,"pitch":-153.27641208376994,"roll":58.10482956382871},"location":"Right Hip"},{"euler":{"heading":164.56758209945346,"pitch":-142.72405002291933,"roll":-51.947920226608666},"location":"Right Knee"},{"euler":{"heading":33.005200565837434,"pitch":-132.3274799426838,"roll":57.1617863556111},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.8"} +{"sensors":[{"euler":{"heading":254.5373925480436,"pitch":138.09065330803,"roll":30.743985792614385},"location":"Left Knee"},{"euler":{"heading":78.87369183891097,"pitch":104.61025238999694,"roll":28.530708961788907},"location":"Left Ankle"},{"euler":{"heading":53.304377179685275,"pitch":-1.4550129218131238,"roll":0.8620794242023149},"location":"Right Ankle"},{"euler":{"heading":100.78335211679719,"pitch":-152.79877087539293,"roll":56.79434660744584},"location":"Right Hip"},{"euler":{"heading":162.16082388950812,"pitch":-140.94539502062742,"roll":-50.9906282039478},"location":"Right Knee"},{"euler":{"heading":33.48593050925369,"pitch":-133.5134819484154,"roll":57.53310772004999},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.108"} +{"sensors":[{"euler":{"heading":229.40865329323924,"pitch":137.112837977227,"roll":30.544587213352948},"location":"Left Knee"},{"euler":{"heading":79.44882265501988,"pitch":104.61172715099725,"roll":29.071388065610016},"location":"Left Ankle"},{"euler":{"heading":56.19893946171675,"pitch":-1.6595116296318115,"roll":1.5696214817820835},"location":"Right Ankle"},{"euler":{"heading":100.43001690511747,"pitch":-152.87514378785363,"roll":56.13366194670125},"location":"Right Hip"},{"euler":{"heading":158.27599150055732,"pitch":-138.43210551856467,"roll":-48.61031538355302},"location":"Right Knee"},{"euler":{"heading":34.13733745832832,"pitch":-135.16213375357387,"roll":58.04854694804499},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.211"} +{"sensors":[{"euler":{"heading":207.66778796391532,"pitch":135.9328041795043,"roll":29.740128492017654},"location":"Left Knee"},{"euler":{"heading":80.7226903895179,"pitch":104.94430443589754,"roll":30.351749259049015},"location":"Left Ankle"},{"euler":{"heading":58.68529551554508,"pitch":-1.5873104666686304,"roll":2.037659333603875},"location":"Right Ankle"},{"euler":{"heading":99.44951521460573,"pitch":-153.1376294090683,"roll":55.80154575203113},"location":"Right Hip"},{"euler":{"heading":155.08589235050158,"pitch":-136.67639496670822,"roll":-46.52428384519772},"location":"Right Knee"},{"euler":{"heading":35.19860371249548,"pitch":-137.28342037821648,"roll":58.61869225324049},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.312"} +{"sensors":[{"euler":{"heading":189.7822591675238,"pitch":134.82077376155388,"roll":27.75986564281589},"location":"Left Knee"},{"euler":{"heading":83.10042135056611,"pitch":106.39987399230779,"roll":32.98532433314411},"location":"Left Ankle"},{"euler":{"heading":59.960515963990574,"pitch":-1.3535794200017675,"roll":2.1963934002434877},"location":"Right Ankle"},{"euler":{"heading":98.97331369314516,"pitch":-153.17386646816146,"roll":55.69639117682802},"location":"Right Hip"},{"euler":{"heading":153.48355311545143,"pitch":-135.5962554700374,"roll":-45.25935546067795},"location":"Right Knee"},{"euler":{"heading":35.32874334124594,"pitch":-137.89882834039483,"roll":58.83807302791644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.413"} +{"sensors":[{"euler":{"heading":174.62278325077142,"pitch":133.9511963853985,"roll":25.5713790785343},"location":"Left Knee"},{"euler":{"heading":85.53412921550951,"pitch":108.02238659307702,"roll":35.736791899829704},"location":"Left Ankle"},{"euler":{"heading":60.764464367591515,"pitch":-1.3619714780015908,"roll":2.1642540602191387},"location":"Right Ankle"},{"euler":{"heading":98.18223232383065,"pitch":-153.41272982134532,"roll":56.08925205914522},"location":"Right Hip"},{"euler":{"heading":153.0476978039063,"pitch":-134.54912992303366,"roll":-44.82091991461016},"location":"Right Knee"},{"euler":{"heading":34.54586900712135,"pitch":-136.41519550635536,"roll":58.591765725124795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.514"} +{"sensors":[{"euler":{"heading":159.13550492569428,"pitch":133.95607674685866,"roll":24.632991170680867},"location":"Left Knee"},{"euler":{"heading":86.27446629395857,"pitch":107.52014793376931,"roll":36.938112709846735},"location":"Left Ankle"},{"euler":{"heading":61.38801793083237,"pitch":-1.4070243302014318,"roll":1.947828654197225},"location":"Right Ankle"},{"euler":{"heading":97.92650909144758,"pitch":-153.50895683921078,"roll":56.71782685323069},"location":"Right Hip"},{"euler":{"heading":153.09917802351566,"pitch":-133.6942169307303,"roll":-44.85132792314915},"location":"Right Knee"},{"euler":{"heading":33.13503210640921,"pitch":-134.68617595571982,"roll":57.79508915261231},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.614"} +{"sensors":[{"euler":{"heading":177.22820443312486,"pitch":135.2042190721728,"roll":25.41969205361278},"location":"Left Knee"},{"euler":{"heading":84.35326966456272,"pitch":106.52438314039239,"roll":35.59430143886206},"location":"Left Ankle"},{"euler":{"heading":61.59296613774913,"pitch":-1.3663218971812887,"roll":1.7842957887775024},"location":"Right Ankle"},{"euler":{"heading":97.73385818230284,"pitch":-153.5705611552897,"roll":57.47104416790762},"location":"Right Hip"},{"euler":{"heading":153.84551022116412,"pitch":-133.38104523765728,"roll":-45.25994513083424},"location":"Right Knee"},{"euler":{"heading":31.765278895768294,"pitch":-132.89255836014783,"roll":56.97808023735108},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.715"} +{"sensors":[{"euler":{"heading":191.12413398981238,"pitch":137.52754716495554,"roll":26.946472848251506},"location":"Left Knee"},{"euler":{"heading":80.57419269810644,"pitch":105.00944482635316,"roll":32.50362129497586},"location":"Left Ankle"},{"euler":{"heading":61.22116952397422,"pitch":-1.3046897074631598,"roll":1.5496162098997524},"location":"Right Ankle"},{"euler":{"heading":97.56672236407256,"pitch":-153.95100503976076,"roll":58.28018975111686},"location":"Right Hip"},{"euler":{"heading":155.12345919904772,"pitch":-133.41794071389154,"roll":-46.12770061775082},"location":"Right Knee"},{"euler":{"heading":30.920001006191466,"pitch":-131.59705252413306,"roll":56.42402221361597},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.816"} +{"sensors":[{"euler":{"heading":204.18672059083116,"pitch":139.47479244846,"roll":28.370575563426357},"location":"Left Knee"},{"euler":{"heading":77.3480234282958,"pitch":104.10225034371784,"roll":29.790759165478274},"location":"Left Ankle"},{"euler":{"heading":60.1365525715768,"pitch":-1.1867207367168437,"roll":0.9759045889097773},"location":"Right Ankle"},{"euler":{"heading":97.46005012766531,"pitch":-154.6496545357847,"roll":59.24592077600518},"location":"Right Hip"},{"euler":{"heading":156.76736327914296,"pitch":-134.0448966425024,"roll":-47.42743055597574},"location":"Right Knee"},{"euler":{"heading":30.709250905572322,"pitch":-130.84984727171977,"roll":56.03161999225438},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.917"} +{"sensors":[{"euler":{"heading":217.63679853174804,"pitch":140.189813203614,"roll":29.45226800708372},"location":"Left Knee"},{"euler":{"heading":75.89447108546622,"pitch":103.62952530934606,"roll":28.367933248930445},"location":"Left Ankle"},{"euler":{"heading":57.87289731441912,"pitch":-1.5367986630451593,"roll":0.4533141300187995},"location":"Right Ankle"},{"euler":{"heading":97.90779511489879,"pitch":-154.88468908220622,"roll":59.958828698404666},"location":"Right Hip"},{"euler":{"heading":159.00937695122866,"pitch":-136.23415697825217,"roll":-49.303437500378166},"location":"Right Knee"},{"euler":{"heading":30.600825815015092,"pitch":-130.2086125445478,"roll":55.85970799302894},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.18"} +{"sensors":[{"euler":{"heading":230.54811867857325,"pitch":140.1145818832526,"roll":30.375791206375347},"location":"Left Knee"},{"euler":{"heading":75.4175239769196,"pitch":103.40407277841146,"roll":27.5498899240374},"location":"Left Ankle"},{"euler":{"heading":54.61060758297721,"pitch":-1.8456187967406437,"roll":-0.017017282983080473},"location":"Right Ankle"},{"euler":{"heading":98.81701560340892,"pitch":-154.3337201739856,"roll":59.6504458285642},"location":"Right Hip"},{"euler":{"heading":161.4521892561058,"pitch":-139.30449128042696,"roll":-50.941843750340354},"location":"Right Knee"},{"euler":{"heading":30.884493233513584,"pitch":-130.16900129009304,"roll":56.02373719372605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.118"} +{"sensors":[{"euler":{"heading":242.41830681071593,"pitch":139.68437369492736,"roll":31.013212085737813},"location":"Left Knee"},{"euler":{"heading":75.52577157922765,"pitch":103.18866550057032,"roll":27.357400931633663},"location":"Left Ankle"},{"euler":{"heading":53.07454682467949,"pitch":-2.2548069170665794,"roll":-0.17781555468477242},"location":"Right Ankle"},{"euler":{"heading":100.14781404306804,"pitch":-153.60659815658704,"roll":58.59790124570778},"location":"Right Hip"},{"euler":{"heading":161.78197033049523,"pitch":-139.49904215238428,"roll":-51.735159375306324},"location":"Right Knee"},{"euler":{"heading":31.252293910162226,"pitch":-130.82085116108374,"roll":56.34636347435345},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.219"} +{"sensors":[{"euler":{"heading":253.76397612964436,"pitch":138.85968632543464,"roll":31.343140877164032},"location":"Left Knee"},{"euler":{"heading":76.05444442130488,"pitch":103.1322989505133,"roll":27.521660838470297},"location":"Left Ankle"},{"euler":{"heading":54.129592142211536,"pitch":-2.7418262253599215,"roll":0.32746600078370486},"location":"Right Ankle"},{"euler":{"heading":100.81428263876124,"pitch":-153.27093834092835,"roll":57.319361121137},"location":"Right Hip"},{"euler":{"heading":159.4225232974457,"pitch":-137.72413793714585,"roll":-50.786643437775695},"location":"Right Knee"},{"euler":{"heading":31.895814519146004,"pitch":-132.12626604497535,"roll":56.7929771269181},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.319"} +{"sensors":[{"euler":{"heading":228.62507851667993,"pitch":137.76746769289116,"roll":31.233826789447633},"location":"Left Knee"},{"euler":{"heading":76.98024997917439,"pitch":103.20031905546199,"roll":28.113244754623267},"location":"Left Ankle"},{"euler":{"heading":56.947882927990385,"pitch":-2.836393602823929,"roll":1.1197194007053344},"location":"Right Ankle"},{"euler":{"heading":100.49535437488512,"pitch":-153.3563445068355,"roll":56.4311750090233},"location":"Right Hip"},{"euler":{"heading":155.33027096770113,"pitch":-135.53922414343128,"roll":-48.37047909399813},"location":"Right Knee"},{"euler":{"heading":32.76248306723141,"pitch":-133.93863944047783,"roll":57.3949294142263},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.420"} +{"sensors":[{"euler":{"heading":206.73757066501193,"pitch":136.56572092360204,"roll":30.52919411050287},"location":"Left Knee"},{"euler":{"heading":78.41972498125695,"pitch":103.4677871499158,"roll":29.34567027916094},"location":"Left Ankle"},{"euler":{"heading":59.63434463519135,"pitch":-2.759004242541536,"roll":1.7077474606348009},"location":"Right Ankle"},{"euler":{"heading":99.52081893739661,"pitch":-153.65196005615195,"roll":55.96930750812097},"location":"Right Hip"},{"euler":{"heading":151.64099387093103,"pitch":-133.74155172908817,"roll":-45.99593118459831},"location":"Right Knee"},{"euler":{"heading":33.96123476050827,"pitch":-136.33852549643004,"roll":58.03043647280367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.521"} +{"sensors":[{"euler":{"heading":188.33256359851075,"pitch":135.22164883124185,"roll":28.907524699452583},"location":"Left Knee"},{"euler":{"heading":80.64025248313125,"pitch":104.44600843492422,"roll":31.79235325124485},"location":"Left Ankle"},{"euler":{"heading":60.92716017167221,"pitch":-2.3893538182873826,"roll":1.9994727145713207},"location":"Right Ankle"},{"euler":{"heading":98.57498704365695,"pitch":-153.88676405053675,"roll":55.77862675730887},"location":"Right Hip"},{"euler":{"heading":149.7081444838379,"pitch":-132.89864655617936,"roll":-44.496338066138485},"location":"Right Knee"},{"euler":{"heading":35.17761128445744,"pitch":-138.38592294678705,"roll":58.6898928255233},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.621"} +{"sensors":[{"euler":{"heading":173.75555723865966,"pitch":133.6682339481177,"roll":26.454272229507325},"location":"Left Knee"},{"euler":{"heading":84.73247723481812,"pitch":107.7326575914318,"roll":35.11311792612037},"location":"Left Ankle"},{"euler":{"heading":61.60319415450499,"pitch":-1.8129184364586446,"roll":2.080775443114189},"location":"Right Ankle"},{"euler":{"heading":97.73623833929125,"pitch":-153.96683764548308,"roll":56.063264081577984},"location":"Right Hip"},{"euler":{"heading":149.31233003545412,"pitch":-132.56503190056142,"roll":-43.75920425952464},"location":"Right Knee"},{"euler":{"heading":35.0848501560117,"pitch":-138.04733065210834,"roll":58.93340354297098},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.722"} +{"sensors":[{"euler":{"heading":159.9112515147937,"pitch":133.10141055330593,"roll":24.68384500655659},"location":"Left Knee"},{"euler":{"heading":86.90297951133631,"pitch":107.99064183228863,"roll":37.36430613350833},"location":"Left Ankle"},{"euler":{"heading":61.8678747390545,"pitch":-1.1941265928127802,"roll":2.05394789880277},"location":"Right Ankle"},{"euler":{"heading":97.05011450536213,"pitch":-154.02015388093477,"roll":56.800687673420185},"location":"Right Hip"},{"euler":{"heading":149.93109703190873,"pitch":-132.54602871050528,"roll":-43.59578383357217},"location":"Right Knee"},{"euler":{"heading":34.10136514041053,"pitch":-136.55509758689752,"roll":58.571313188673884},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.822"} +{"sensors":[{"euler":{"heading":179.18262636331434,"pitch":133.95376949797534,"roll":24.877960505900933},"location":"Left Knee"},{"euler":{"heading":85.58768156020268,"pitch":106.83532764905976,"roll":36.77162552015749},"location":"Left Ankle"},{"euler":{"heading":61.76233726514906,"pitch":-0.5872139335315021,"roll":1.942303108922493},"location":"Right Ankle"},{"euler":{"heading":96.60760305482593,"pitch":-154.13063849284129,"roll":57.695618906078174},"location":"Right Hip"},{"euler":{"heading":151.02548732871787,"pitch":-132.75392583945475,"roll":-43.81745545021495},"location":"Right Knee"},{"euler":{"heading":32.859978626369475,"pitch":-134.67458782820776,"roll":57.9454318698065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.923"} +{"sensors":[{"euler":{"heading":193.4206137269829,"pitch":135.9958925481778,"roll":26.321414455310844},"location":"Left Knee"},{"euler":{"heading":81.97266340418241,"pitch":105.43929488415378,"roll":33.919462968141744},"location":"Left Ankle"},{"euler":{"heading":61.086103538634156,"pitch":0.0027574598216481006,"roll":1.7605727980302437},"location":"Right Ankle"},{"euler":{"heading":96.37184274934333,"pitch":-154.34882464355715,"roll":58.576057015470354},"location":"Right Hip"},{"euler":{"heading":152.68543859584608,"pitch":-133.34728325550927,"roll":-44.47945990519346},"location":"Right Knee"},{"euler":{"heading":31.93648076373253,"pitch":-133.66962904538698,"roll":57.31338868282585},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.23"} +{"sensors":[{"euler":{"heading":207.33480235428462,"pitch":137.52755329336003,"roll":27.570523009779762},"location":"Left Knee"},{"euler":{"heading":79.21914706376417,"pitch":104.67661539573841,"roll":31.671266671327572},"location":"Left Ankle"},{"euler":{"heading":59.47749318477074,"pitch":0.2837317138394833,"roll":1.3282655182272192},"location":"Right Ankle"},{"euler":{"heading":96.553408474409,"pitch":-154.64519217920142,"roll":59.32470131392332},"location":"Right Hip"},{"euler":{"heading":154.90439473626148,"pitch":-134.59380492995834,"roll":-45.71276391467411},"location":"Right Knee"},{"euler":{"heading":31.805332687359275,"pitch":-132.8964161408483,"roll":57.04454981454327},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.124"} +{"sensors":[{"euler":{"heading":221.10132211885616,"pitch":138.09979796402402,"roll":28.53847070880179},"location":"Left Knee"},{"euler":{"heading":78.12223235738776,"pitch":104.36520385616457,"roll":30.316640004194817},"location":"Left Ankle"},{"euler":{"heading":56.30474386629367,"pitch":-0.007141457544465046,"roll":0.8954389664044973},"location":"Right Ankle"},{"euler":{"heading":97.5230676269681,"pitch":-154.1994229612813,"roll":59.498481182530995},"location":"Right Hip"},{"euler":{"heading":157.51395526263533,"pitch":-137.1156744369625,"roll":-47.52273752320671},"location":"Right Knee"},{"euler":{"heading":31.78729941862335,"pitch":-132.46302452676346,"roll":56.96509483308894},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.224"} +{"sensors":[{"euler":{"heading":234.21618990697056,"pitch":137.95856816762162,"roll":29.347123637921612},"location":"Left Knee"},{"euler":{"heading":78.32250912164899,"pitch":104.37868347054811,"roll":30.053726003775335},"location":"Left Ankle"},{"euler":{"heading":53.56176947966431,"pitch":-0.5126773117900185,"roll":0.5683950697640475},"location":"Right Ankle"},{"euler":{"heading":98.96451086427129,"pitch":-153.38573066515318,"roll":58.8111330642779},"location":"Right Hip"},{"euler":{"heading":159.4938097363718,"pitch":-139.07910699326627,"roll":-49.06421377088604},"location":"Right Knee"},{"euler":{"heading":32.214819476761015,"pitch":-132.6479720740871,"roll":57.16233534978005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.325"} +{"sensors":[{"euler":{"heading":246.65082091627352,"pitch":137.31271135085947,"roll":29.93116127412945},"location":"Left Knee"},{"euler":{"heading":79.4402582094841,"pitch":104.6033151234933,"roll":30.398353403397802},"location":"Left Ankle"},{"euler":{"heading":53.03059253169788,"pitch":-1.0614095806110169,"roll":0.6365555627876428},"location":"Right Ankle"},{"euler":{"heading":100.33055977784417,"pitch":-152.69090759863786,"roll":57.60501975785011},"location":"Right Hip"},{"euler":{"heading":159.0881787627346,"pitch":-138.49619629393965,"roll":-49.42654239379743},"location":"Right Knee"},{"euler":{"heading":33.08708752908491,"pitch":-133.6394248666784,"roll":57.63360181480205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.426"} +{"sensors":[{"euler":{"heading":222.36698882464617,"pitch":136.41269021577352,"roll":30.11304514671651},"location":"Left Knee"},{"euler":{"heading":80.45248238853569,"pitch":104.80548361114398,"roll":30.939768063058022},"location":"Left Ankle"},{"euler":{"heading":54.7775332785281,"pitch":-1.6490186225499153,"roll":1.0354000065088784},"location":"Right Ankle"},{"euler":{"heading":100.94750380005976,"pitch":-152.60306683877408,"roll":56.307017782065095},"location":"Right Hip"},{"euler":{"heading":156.19811088646117,"pitch":-136.4465766645457,"roll":-48.17763815441769},"location":"Right Knee"},{"euler":{"heading":34.090878776176424,"pitch":-135.35048238001056,"roll":58.176491633321845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.527"} +{"sensors":[{"euler":{"heading":201.15528994218155,"pitch":135.28392119419618,"roll":29.814240632044857},"location":"Left Knee"},{"euler":{"heading":82.00723414968212,"pitch":105.26868525002959,"roll":31.989541256752222},"location":"Left Ankle"},{"euler":{"heading":57.606029950675286,"pitch":-2.027866760294924,"roll":1.8068600058579904},"location":"Right Ankle"},{"euler":{"heading":100.50900342005379,"pitch":-152.80526015489667,"roll":55.54506600385859},"location":"Right Hip"},{"euler":{"heading":152.19079979781506,"pitch":-134.23316899809112,"roll":-45.83487433897593},"location":"Right Knee"},{"euler":{"heading":35.200540898558785,"pitch":-137.6091841420095,"roll":58.75884246998966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.627"} +{"sensors":[{"euler":{"heading":183.0022609479634,"pitch":134.02427907477656,"roll":28.789066568840372},"location":"Left Knee"},{"euler":{"heading":84.26901073471392,"pitch":106.20431672502664,"roll":34.040587131077004},"location":"Left Ankle"},{"euler":{"heading":59.82667695560776,"pitch":-1.8938300842654316,"roll":2.2636740052721915},"location":"Right Ankle"},{"euler":{"heading":99.36435307804841,"pitch":-153.224734139407,"roll":55.34055940347273},"location":"Right Hip"},{"euler":{"heading":149.37171981803357,"pitch":-133.009852098282,"roll":-43.876386905078334},"location":"Right Knee"},{"euler":{"heading":36.511736808702906,"pitch":-139.99826572780856,"roll":59.30795822299069},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.728"} +{"sensors":[{"euler":{"heading":167.99578485316707,"pitch":132.9968511672989,"roll":26.666409911956336},"location":"Left Knee"},{"euler":{"heading":87.21085966124254,"pitch":108.24013505252398,"roll":37.061528417969306},"location":"Left Ankle"},{"euler":{"heading":60.87525926004698,"pitch":-1.6794470758388886,"roll":2.4248066047449726},"location":"Right Ankle"},{"euler":{"heading":98.73416777024357,"pitch":-153.4960107254663,"roll":55.45025346312546},"location":"Right Hip"},{"euler":{"heading":148.15954783623022,"pitch":-132.25261688845382,"roll":-42.8137482145705},"location":"Right Knee"},{"euler":{"heading":36.56056312783262,"pitch":-140.2609391550277,"roll":59.48341240069163},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.828"} +{"sensors":[{"euler":{"heading":155.27120636785034,"pitch":132.07841605056902,"roll":24.393518920760705},"location":"Left Knee"},{"euler":{"heading":89.98977369511829,"pitch":109.74112154727159,"roll":39.98037557617238},"location":"Left Ankle"},{"euler":{"heading":61.41898333404229,"pitch":-1.3490023682549996,"roll":2.363575944270475},"location":"Right Ankle"},{"euler":{"heading":97.76075099321922,"pitch":-153.9276596529197,"roll":56.136478116812924},"location":"Right Hip"},{"euler":{"heading":148.1498430526072,"pitch":-131.92110519960843,"roll":-42.36987339311345},"location":"Right Knee"},{"euler":{"heading":35.517006815049356,"pitch":-138.40984523952494,"roll":59.285071160622465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.929"} +{"sensors":[{"euler":{"heading":142.0440857310653,"pitch":132.12057444551212,"roll":23.454167028684637},"location":"Left Knee"},{"euler":{"heading":89.84079632560646,"pitch":108.58575939254445,"roll":40.49483801855514},"location":"Left Ankle"},{"euler":{"heading":61.52083500063806,"pitch":-0.9078521314294997,"roll":2.1897183498434276},"location":"Right Ankle"},{"euler":{"heading":97.2846758938973,"pitch":-154.05989368762772,"roll":56.960330305131635},"location":"Right Hip"},{"euler":{"heading":149.0536087473465,"pitch":-131.8789946796476,"roll":-42.47663605380211},"location":"Right Knee"},{"euler":{"heading":34.19030613354442,"pitch":-136.52511071557245,"roll":58.525314044560226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.29"} +{"sensors":[{"euler":{"heading":153.81467715795878,"pitch":133.69601700096092,"roll":24.396250325816176},"location":"Left Knee"},{"euler":{"heading":86.31296669304581,"pitch":107.13968345329,"roll":37.97660421669963},"location":"Left Ankle"},{"euler":{"heading":61.16250150057426,"pitch":-0.37956691828654976,"roll":1.9707465148590848},"location":"Right Ankle"},{"euler":{"heading":97.00620830450758,"pitch":-154.25390431886495,"roll":57.84554727461847},"location":"Right Hip"},{"euler":{"heading":150.51699787261185,"pitch":-132.18484521168284,"roll":-42.9852224484219},"location":"Right Knee"},{"euler":{"heading":33.07752552018998,"pitch":-134.8538496440152,"roll":57.8290326401042},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.129"} +{"sensors":[{"euler":{"heading":165.5582094421629,"pitch":136.15141530086484,"roll":25.950375293234558},"location":"Left Knee"},{"euler":{"heading":81.94417002374124,"pitch":105.775715107961,"roll":34.39769379502967},"location":"Left Ankle"},{"euler":{"heading":60.14000135051683,"pitch":0.13963977354210522,"roll":1.5986718633731762},"location":"Right Ankle"},{"euler":{"heading":97.09308747405683,"pitch":-154.49101388697846,"roll":58.692242547156624},"location":"Right Hip"},{"euler":{"heading":152.54029808535066,"pitch":-132.89136069051457,"roll":-44.03045020357971},"location":"Right Knee"},{"euler":{"heading":32.588522968170984,"pitch":-133.9059646796137,"roll":57.27112937609378},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.230"} +{"sensors":[{"euler":{"heading":182.6648884979466,"pitch":137.51752377077835,"roll":27.230337763911102},"location":"Left Knee"},{"euler":{"heading":79.34350302136711,"pitch":105.2918935971649,"roll":32.0016744155267},"location":"Left Ankle"},{"euler":{"heading":58.044751215465155,"pitch":0.1631757961878947,"roll":1.1200546770358586},"location":"Right Ankle"},{"euler":{"heading":97.49627872665114,"pitch":-154.79816249828062,"roll":59.41051829244096},"location":"Right Hip"},{"euler":{"heading":154.9050182768156,"pitch":-134.1334746214631,"roll":-45.80240518322174},"location":"Right Knee"},{"euler":{"heading":32.504670671353885,"pitch":-133.45286821165234,"roll":56.944016438484404},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.331"} +{"sensors":[{"euler":{"heading":199.06714964815194,"pitch":137.9532713937005,"roll":28.226053987519993},"location":"Left Knee"},{"euler":{"heading":78.1966527192304,"pitch":105.16895423744842,"roll":30.72025697397403},"location":"Left Ankle"},{"euler":{"heading":54.69027609391864,"pitch":-0.12189178343089474,"roll":0.6017992093322728},"location":"Right Ankle"},{"euler":{"heading":98.68415085398603,"pitch":-154.34959624845257,"roll":59.400716463196865},"location":"Right Hip"},{"euler":{"heading":157.60826644913405,"pitch":-136.9513771593168,"roll":-47.74091466489956},"location":"Right Knee"},{"euler":{"heading":32.529203604218495,"pitch":-133.2638313904871,"roll":56.89336479463597},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.431"} +{"sensors":[{"euler":{"heading":214.73543468333673,"pitch":137.62669425433046,"roll":29.053448588767992},"location":"Left Knee"},{"euler":{"heading":79.19573744730735,"pitch":105.49580881370358,"roll":30.710731276576627},"location":"Left Ankle"},{"euler":{"heading":52.19624848452678,"pitch":-0.8159526050878053,"roll":0.3728692883990456},"location":"Right Ankle"},{"euler":{"heading":100.12823576858743,"pitch":-153.53338662360733,"roll":58.64814481687718},"location":"Right Hip"},{"euler":{"heading":159.14743980422065,"pitch":-138.5124894433851,"roll":-49.304323198409605},"location":"Right Knee"},{"euler":{"heading":33.15753324379664,"pitch":-133.7686982514384,"roll":57.122778315172376},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.531"} +{"sensors":[{"euler":{"heading":193.54939121500306,"pitch":136.8015248288974,"roll":29.641853729891196},"location":"Left Knee"},{"euler":{"heading":80.12616370257662,"pitch":105.92122793233321,"roll":30.877158148918966},"location":"Left Ankle"},{"euler":{"heading":52.145373636074105,"pitch":-1.728107344579025,"roll":0.5105823595591411},"location":"Right Ankle"},{"euler":{"heading":101.4841621917287,"pitch":-152.9425479612466,"roll":57.33958033518946},"location":"Right Hip"},{"euler":{"heading":158.2014458237986,"pitch":-137.2674904990466,"roll":-49.55514087856864},"location":"Right Knee"},{"euler":{"heading":34.18552991941698,"pitch":-135.04807842629455,"roll":57.52925048365514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.632"} +{"sensors":[{"euler":{"heading":175.12570209350275,"pitch":135.67762234600767,"roll":29.79641835690208},"location":"Left Knee"},{"euler":{"heading":81.41354733231896,"pitch":106.4603551390999,"roll":31.40819233402707},"location":"Left Ankle"},{"euler":{"heading":54.12458627246669,"pitch":-2.3052966101211227,"roll":1.222024123603227},"location":"Right Ankle"},{"euler":{"heading":102.02949597255582,"pitch":-152.77954316512194,"roll":56.14937230167052},"location":"Right Hip"},{"euler":{"heading":154.84380124141873,"pitch":-135.16574144914193,"roll":-47.93712679071178},"location":"Right Knee"},{"euler":{"heading":35.298226927475284,"pitch":-136.7995205836651,"roll":57.97632543528963},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.732"} +{"sensors":[{"euler":{"heading":159.18813188415248,"pitch":134.3473601114069,"roll":29.429276521211875},"location":"Left Knee"},{"euler":{"heading":83.34719259908707,"pitch":107.2705696251899,"roll":32.536123100624366},"location":"Left Ankle"},{"euler":{"heading":57.224627645220025,"pitch":-2.4872669491090105,"roll":1.9060717112429044},"location":"Right Ankle"},{"euler":{"heading":101.18904637530024,"pitch":-153.08283884860975,"roll":55.621935071503465},"location":"Right Hip"},{"euler":{"heading":150.69067111727688,"pitch":-133.16791730422776,"roll":-45.4121641116406},"location":"Right Knee"},{"euler":{"heading":36.57465423472776,"pitch":-138.95706852529858,"roll":58.52869289176067},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.833"} +{"sensors":[{"euler":{"heading":145.66306869573725,"pitch":133.15012410026623,"roll":28.161348869090688},"location":"Left Knee"},{"euler":{"heading":85.63747333917836,"pitch":108.23726266267093,"roll":34.68251079056193},"location":"Left Ankle"},{"euler":{"heading":59.07716488069803,"pitch":-2.37604025419811,"roll":2.2154645401186137},"location":"Right Ankle"},{"euler":{"heading":100.41389173777021,"pitch":-153.44330496374877,"roll":55.40974156435312},"location":"Right Hip"},{"euler":{"heading":148.00285400554918,"pitch":-132.088625573805,"roll":-43.61469770047654},"location":"Right Knee"},{"euler":{"heading":38.029688811254985,"pitch":-141.04261167276871,"roll":59.16332360258461},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.934"} +{"sensors":[{"euler":{"heading":134.84051182616355,"pitch":132.2663616902396,"roll":25.90771398218162},"location":"Left Knee"},{"euler":{"heading":88.62372600526052,"pitch":110.40728639640385,"roll":37.664259711505736},"location":"Left Ankle"},{"euler":{"heading":59.98819839262823,"pitch":-2.375936228778299,"roll":2.3626680861067526},"location":"Right Ankle"},{"euler":{"heading":99.81625256399319,"pitch":-153.73647446737388,"roll":55.61876740791781},"location":"Right Hip"},{"euler":{"heading":146.99006860499426,"pitch":-131.3047630164245,"roll":-42.76572793042889},"location":"Right Knee"},{"euler":{"heading":37.614219930129494,"pitch":-140.62585050549183,"roll":59.26574124232616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.34"} +{"sensors":[{"euler":{"heading":125.1814606435472,"pitch":131.65222552121563,"roll":23.923192583963456},"location":"Left Knee"},{"euler":{"heading":90.43010340473448,"pitch":110.40405775676348,"roll":40.104083740355165},"location":"Left Ankle"},{"euler":{"heading":60.458128553365405,"pitch":-2.3070926059004693,"roll":2.338901277496077},"location":"Right Ankle"},{"euler":{"heading":99.10337730759387,"pitch":-154.1190770206365,"roll":56.263140667126024},"location":"Right Hip"},{"euler":{"heading":146.99731174449485,"pitch":-130.83053671478206,"roll":-42.545405137386},"location":"Right Knee"},{"euler":{"heading":36.29654793711655,"pitch":-138.66951545494265,"roll":58.83916711809354},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.135"} +{"sensors":[{"euler":{"heading":113.66956457919247,"pitch":132.18075296909407,"roll":23.599623325567112},"location":"Left Knee"},{"euler":{"heading":89.36209306426103,"pitch":108.90740198108713,"roll":39.84992536631965},"location":"Left Ankle"},{"euler":{"heading":60.52481569802886,"pitch":-2.1763833453104224,"roll":2.2300111497464696},"location":"Right Ankle"},{"euler":{"heading":98.8180395768345,"pitch":-154.24466931857285,"roll":57.055576600413424},"location":"Right Hip"},{"euler":{"heading":147.70383057004537,"pitch":-130.62248304330387,"roll":-42.8471146236474},"location":"Right Knee"},{"euler":{"heading":34.9418931434049,"pitch":-136.75256390944838,"roll":58.042750406284185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.238"} +{"sensors":[{"euler":{"heading":135.25260812127323,"pitch":134.11892767218467,"roll":24.9584109930104},"location":"Left Knee"},{"euler":{"heading":85.37588375783493,"pitch":107.36041178297842,"roll":36.789932829687686},"location":"Left Ankle"},{"euler":{"heading":60.02858412822597,"pitch":-1.9212450107793801,"roll":2.019510034771823},"location":"Right Ankle"},{"euler":{"heading":98.71748561915105,"pitch":-154.47020238671558,"roll":57.81251894037208},"location":"Right Hip"},{"euler":{"heading":148.95219751304086,"pitch":-130.8977347389735,"roll":-43.48740316128266},"location":"Right Knee"},{"euler":{"heading":33.82895382906441,"pitch":-135.20855751850354,"roll":57.419725365655765},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.339"} +{"sensors":[{"euler":{"heading":153.9398473091459,"pitch":136.28828490496622,"roll":26.44381989370936},"location":"Left Knee"},{"euler":{"heading":81.25079538205144,"pitch":106.21812060468058,"roll":33.285939546718915},"location":"Left Ankle"},{"euler":{"heading":58.806975715403375,"pitch":-1.5416205097014422,"roll":1.480059031294641},"location":"Right Ankle"},{"euler":{"heading":98.82698705723595,"pitch":-154.80443214804404,"roll":58.51876704633487},"location":"Right Hip"},{"euler":{"heading":150.91322776173678,"pitch":-131.81421126507615,"roll":-44.66366284515439},"location":"Right Knee"},{"euler":{"heading":33.23980844615797,"pitch":-134.2377017666532,"roll":56.95275282909019},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.440"} +{"sensors":[{"euler":{"heading":172.38961257823132,"pitch":137.1969564144696,"roll":27.630687904338426},"location":"Left Knee"},{"euler":{"heading":79.35071584384629,"pitch":105.60255854421251,"roll":31.219845592047022},"location":"Left Ankle"},{"euler":{"heading":56.357528143863036,"pitch":-1.799958458731298,"roll":1.0445531281651768},"location":"Right Ankle"},{"euler":{"heading":99.41303835151236,"pitch":-155.04273893323963,"roll":59.06689034170139},"location":"Right Hip"},{"euler":{"heading":153.1969049855631,"pitch":-133.37654013856854,"roll":-46.609796560638955},"location":"Right Knee"},{"euler":{"heading":32.92832760154218,"pitch":-133.6389315899879,"roll":56.73247754618117},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.541"} +{"sensors":[{"euler":{"heading":190.2256513204082,"pitch":137.14601077302265,"roll":28.630119113904584},"location":"Left Knee"},{"euler":{"heading":78.52189425946166,"pitch":105.34230268979127,"roll":30.072861032842322},"location":"Left Ankle"},{"euler":{"heading":52.884275329476736,"pitch":-2.4387126128581684,"roll":0.552597815348659},"location":"Right Ankle"},{"euler":{"heading":100.60923451636113,"pitch":-154.43846503991568,"roll":58.81020130753125},"location":"Right Hip"},{"euler":{"heading":155.85846448700678,"pitch":-136.2888861247117,"roll":-48.51756690457506},"location":"Right Knee"},{"euler":{"heading":33.316744841387965,"pitch":-133.6375384309891,"roll":56.90922979156306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.641"} +{"sensors":[{"euler":{"heading":206.95308618836737,"pitch":136.5814096957204,"roll":29.335857202514127},"location":"Left Knee"},{"euler":{"heading":79.3197048335155,"pitch":105.30182242081214,"roll":30.059324929558088},"location":"Left Ankle"},{"euler":{"heading":51.252097796529064,"pitch":-3.1823413515723518,"roll":0.23483803381379315},"location":"Right Ankle"},{"euler":{"heading":102.28581106472501,"pitch":-153.54461853592414,"roll":57.81668117677813},"location":"Right Hip"},{"euler":{"heading":156.60386803830613,"pitch":-136.61624751224053,"roll":-49.68456021411755},"location":"Right Knee"},{"euler":{"heading":34.091320357249174,"pitch":-134.5925345878902,"roll":57.21205681240675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.742"} +{"sensors":[{"euler":{"heading":186.56402756953065,"pitch":135.67951872614836,"roll":29.677271482262718},"location":"Left Knee"},{"euler":{"heading":80.11273435016395,"pitch":105.30914017873093,"roll":30.31589243660228},"location":"Left Ankle"},{"euler":{"heading":52.08938801687616,"pitch":-4.145357216415117,"roll":0.7801042304324138},"location":"Right Ankle"},{"euler":{"heading":103.28847995825251,"pitch":-153.02765668233175,"roll":56.59751305910032},"location":"Right Hip"},{"euler":{"heading":154.49973123447552,"pitch":-134.7296227610165,"roll":-49.0411041927058},"location":"Right Knee"},{"euler":{"heading":34.950938321524255,"pitch":-136.0957811291012,"roll":57.590851131166076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.843"} +{"sensors":[{"euler":{"heading":168.9013748125776,"pitch":134.58656685353353,"roll":29.490794334036448},"location":"Left Knee"},{"euler":{"heading":81.26396091514755,"pitch":105.50322616085785,"roll":31.028053192942053},"location":"Left Ankle"},{"euler":{"heading":55.049199215188544,"pitch":-4.105821494773605,"roll":1.4208438073891725},"location":"Right Ankle"},{"euler":{"heading":103.02213196242727,"pitch":-152.95614101409856,"roll":55.8627617531903},"location":"Right Hip"},{"euler":{"heading":150.793508111028,"pitch":-132.84416048491485,"roll":-46.62449377343522},"location":"Right Knee"},{"euler":{"heading":35.78709448937183,"pitch":-137.8299530161911,"roll":58.07551601804947},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.944"} +{"sensors":[{"euler":{"heading":153.5549873313198,"pitch":133.42791016818018,"roll":28.704214900632806},"location":"Left Knee"},{"euler":{"heading":83.0375648236328,"pitch":105.86540354477208,"roll":32.506497873647845},"location":"Left Ankle"},{"euler":{"heading":57.67552929366969,"pitch":-3.7889893452962444,"roll":1.8475094266502552},"location":"Right Ankle"},{"euler":{"heading":102.05116876618455,"pitch":-153.17927691268872,"roll":55.52023557787127},"location":"Right Hip"},{"euler":{"heading":147.4454072999252,"pitch":-131.4659944364234,"roll":-44.2557943960917},"location":"Right Knee"},{"euler":{"heading":36.82713504043465,"pitch":-139.86570771457198,"roll":58.65546441624453},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.45"} +{"sensors":[{"euler":{"heading":141.08073859818782,"pitch":132.44761915136218,"roll":26.796293410569525},"location":"Left Knee"},{"euler":{"heading":84.85880834126952,"pitch":106.71636319029487,"roll":34.86209808628306},"location":"Left Ankle"},{"euler":{"heading":59.16422636430272,"pitch":-3.63509041076662,"roll":1.9752584839852296},"location":"Right Ankle"},{"euler":{"heading":101.5023018895661,"pitch":-153.39884922141985,"roll":55.45571202008415},"location":"Right Hip"},{"euler":{"heading":145.7821165699327,"pitch":-130.43814499278105,"roll":-42.917714956482534},"location":"Right Knee"},{"euler":{"heading":37.394421536391185,"pitch":-140.7166369431148,"roll":59.02741797462008},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.146"} +{"sensors":[{"euler":{"heading":131.34141473836905,"pitch":131.32160723622596,"roll":24.466664069512575},"location":"Left Knee"},{"euler":{"heading":87.46667750714258,"pitch":108.65722687126538,"roll":37.73838827765476},"location":"Left Ankle"},{"euler":{"heading":60.02280372787245,"pitch":-3.559081369689958,"roll":1.9652326355867067},"location":"Right Ankle"},{"euler":{"heading":100.72082170060949,"pitch":-153.72771429927786,"roll":55.91639081807574},"location":"Right Hip"},{"euler":{"heading":145.36015491293944,"pitch":-129.69433049350295,"roll":-42.35719346083428},"location":"Right Knee"},{"euler":{"heading":36.68622938275207,"pitch":-139.1074732488033,"roll":58.912176177158074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.247"} +{"sensors":[{"euler":{"heading":121.43852326453215,"pitch":131.25194651260335,"roll":23.14499766256132},"location":"Left Knee"},{"euler":{"heading":88.48250975642833,"pitch":108.25400418413885,"roll":39.14579944988928},"location":"Left Ankle"},{"euler":{"heading":60.4892733550852,"pitch":-3.5281732327209627,"roll":1.793709372028036},"location":"Right Ankle"},{"euler":{"heading":100.22373953054854,"pitch":-153.9674428693501,"roll":56.60600173626817},"location":"Right Hip"},{"euler":{"heading":145.7053894216455,"pitch":-129.11239744415266,"roll":-42.37147411475085},"location":"Right Knee"},{"euler":{"heading":35.31760644447686,"pitch":-137.21547592392298,"roll":58.15220855944227},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.348"} +{"sensors":[{"euler":{"heading":144.13842093807892,"pitch":132.59550186134302,"roll":23.93674789630519},"location":"Left Knee"},{"euler":{"heading":86.2655087807855,"pitch":106.95985376572497,"roll":37.69371950490035},"location":"Left Ankle"},{"euler":{"heading":60.60284601957669,"pitch":-3.4628559094488667,"roll":1.6080884348252322},"location":"Right Ankle"},{"euler":{"heading":100.12011557749369,"pitch":-154.17694858241506,"roll":57.364151562641354},"location":"Right Hip"},{"euler":{"heading":146.54735047948094,"pitch":-128.83865769973738,"roll":-42.83432670327577},"location":"Right Knee"},{"euler":{"heading":34.06084580002917,"pitch":-135.38767833153068,"roll":57.37448770349805},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.449"} +{"sensors":[{"euler":{"heading":162.09332884427104,"pitch":134.8797016752087,"roll":25.599323106674667},"location":"Left Knee"},{"euler":{"heading":82.14520790270694,"pitch":105.55761838915248,"roll":34.17434755441032},"location":"Left Ankle"},{"euler":{"heading":59.99256141761902,"pitch":-3.32907031850398,"roll":1.284779591342709},"location":"Right Ankle"},{"euler":{"heading":100.23310401974433,"pitch":-154.52175372417355,"roll":58.08398640637722},"location":"Right Hip"},{"euler":{"heading":147.88011543153286,"pitch":-128.90479192976363,"roll":-43.782144032948196},"location":"Right Knee"},{"euler":{"heading":33.46726122002626,"pitch":-134.22391049837762,"roll":56.83703893314825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.550"} +{"sensors":[{"euler":{"heading":179.55899595984394,"pitch":136.29798150768784,"roll":27.0518907960072},"location":"Left Knee"},{"euler":{"heading":78.90568711243624,"pitch":104.82685655023724,"roll":31.281912798969284},"location":"Left Ankle"},{"euler":{"heading":58.49955527585712,"pitch":-3.227413286653582,"roll":0.693801632208438},"location":"Right Ankle"},{"euler":{"heading":100.62229361776991,"pitch":-155.0383283517562,"roll":58.756837765739505},"location":"Right Hip"},{"euler":{"heading":149.79210388837956,"pitch":-129.74556273678726,"roll":-45.397679629653375},"location":"Right Knee"},{"euler":{"heading":33.483035098023635,"pitch":-133.47651944853988,"roll":56.54708503983343},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.650"} +{"sensors":[{"euler":{"heading":196.34059636385956,"pitch":136.79318335691906,"roll":28.196701716406483},"location":"Left Knee"},{"euler":{"heading":77.50886840119263,"pitch":104.58167089521352,"roll":29.809971519072356},"location":"Left Ankle"},{"euler":{"heading":55.2933497482714,"pitch":-3.529671957988224,"roll":-0.06932853101240588},"location":"Right Ankle"},{"euler":{"heading":101.56631425599292,"pitch":-154.8657455165806,"roll":58.89990398916555},"location":"Right Hip"},{"euler":{"heading":152.2566434995416,"pitch":-132.08975646310853,"roll":-47.53916166668804},"location":"Right Knee"},{"euler":{"heading":33.24723158822127,"pitch":-132.8351175036859,"roll":56.44237653585009},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.751"} +{"sensors":[{"euler":{"heading":211.9815367274736,"pitch":136.67636502122716,"roll":29.114531544765835},"location":"Left Knee"},{"euler":{"heading":76.96423156107336,"pitch":104.41100380569216,"roll":28.94772436716512},"location":"Left Ankle"},{"euler":{"heading":52.351514773444265,"pitch":-3.976704762189401,"roll":-0.5248956779111653},"location":"Right Ankle"},{"euler":{"heading":102.90968283039363,"pitch":-154.21667096492254,"roll":58.259913590249},"location":"Right Hip"},{"euler":{"heading":154.04347914958745,"pitch":-133.67453081679767,"roll":-49.23524550001924},"location":"Right Knee"},{"euler":{"heading":33.49750842939914,"pitch":-133.1328557533173,"roll":56.60438888226508},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.853"} +{"sensors":[{"euler":{"heading":226.40213305472625,"pitch":136.16497851910444,"roll":29.784328390289254},"location":"Left Knee"},{"euler":{"heading":77.52405840496603,"pitch":104.30115342512295,"roll":28.940451930448607},"location":"Left Ankle"},{"euler":{"heading":51.84136329609984,"pitch":-4.504034285970461,"roll":-0.37240611012004876},"location":"Right Ankle"},{"euler":{"heading":104.08746454735427,"pitch":-153.55125386843028,"roll":57.1901722312241},"location":"Right Hip"},{"euler":{"heading":153.1516312346287,"pitch":-133.0320777351179,"roll":-49.31797095001732},"location":"Right Knee"},{"euler":{"heading":34.05400758645923,"pitch":-134.21332017798557,"roll":56.92519999403857},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.954"} +{"sensors":[{"euler":{"heading":204.0244197492536,"pitch":135.317230667194,"roll":30.005895551260327},"location":"Left Knee"},{"euler":{"heading":78.19040256446942,"pitch":104.29603808261065,"roll":29.271406737403748},"location":"Left Ankle"},{"euler":{"heading":53.53222696648986,"pitch":-4.603630857373415,"roll":0.4585845008919562},"location":"Right Ankle"},{"euler":{"heading":104.29121809261885,"pitch":-153.33362848158725,"roll":57.8336550081017},"location":"Right Hip"},{"euler":{"heading":149.97396811116582,"pitch":-131.5726199616061,"roll":-47.42992385501559},"location":"Right Knee"},{"euler":{"heading":34.779856827813305,"pitch":-135.71073816018702,"roll":57.37017999463472},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.54"} +{"sensors":[{"euler":{"heading":184.55947777432826,"pitch":134.2855076004746,"roll":29.667805996134295},"location":"Left Knee"},{"euler":{"heading":79.30261230802249,"pitch":104.41018427434959,"roll":30.113016063663373},"location":"Left Ankle"},{"euler":{"heading":56.44150426984088,"pitch":-4.599517771636073,"roll":1.0877260508027606},"location":"Right Ankle"},{"euler":{"heading":103.24959628335696,"pitch":-153.61901563342855,"roll":57.312789507291534},"location":"Right Hip"},{"euler":{"heading":146.17657130004923,"pitch":-129.8653579654455,"roll":-44.82443146951403},"location":"Right Knee"},{"euler":{"heading":35.745621145031976,"pitch":-137.69591434416833,"roll":57.93316199517125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.155"} +{"sensors":[{"euler":{"heading":167.84102999689546,"pitch":133.28820684042714,"roll":28.551025396520867},"location":"Left Knee"},{"euler":{"heading":80.99735107722024,"pitch":104.65666584691463,"roll":31.864214457297034},"location":"Left Ankle"},{"euler":{"heading":58.35360384285679,"pitch":-3.9958159944724656,"roll":1.3977034457224846},"location":"Right Ankle"},{"euler":{"heading":101.90588665502128,"pitch":-153.98836407008568,"roll":57.10651055656238},"location":"Right Hip"},{"euler":{"heading":143.67141417004433,"pitch":-129.26007216890096,"roll":-42.75448832256263},"location":"Right Knee"},{"euler":{"heading":36.70855903052878,"pitch":-139.5388229097515,"roll":58.521095795654126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.255"} +{"sensors":[{"euler":{"heading":154.53192699720591,"pitch":132.34688615638441,"roll":26.42092285686878},"location":"Left Knee"},{"euler":{"heading":83.76011596949822,"pitch":106.48474926222318,"roll":34.45904301156733},"location":"Left Ankle"},{"euler":{"heading":59.336993458571115,"pitch":-3.308734395025219,"roll":1.4454331011502362},"location":"Right Ankle"},{"euler":{"heading":100.90904798951915,"pitch":-154.2270276630771,"roll":57.23960950090614},"location":"Right Hip"},{"euler":{"heading":143.0605227530399,"pitch":-128.94031495201085,"roll":-41.69153949030637},"location":"Right Knee"},{"euler":{"heading":36.000203127475906,"pitch":-138.95994061877636,"roll":58.618986216088715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.356"} +{"sensors":[{"euler":{"heading":142.70998429748533,"pitch":131.87469754074598,"roll":24.547580571181904},"location":"Left Knee"},{"euler":{"heading":85.43410437254839,"pitch":106.94252433600086,"roll":36.4318887104106},"location":"Left Ankle"},{"euler":{"heading":59.928294112714006,"pitch":-2.7341109555226972,"roll":1.3321397910352126},"location":"Right Ankle"},{"euler":{"heading":99.90564319056725,"pitch":-154.4480748967694,"roll":57.79689855081553},"location":"Right Hip"},{"euler":{"heading":143.3482204777359,"pitch":-128.84628345680977,"roll":-41.253635541275735},"location":"Right Knee"},{"euler":{"heading":34.63143281472832,"pitch":-137.33269655689872,"roll":58.113337594479844},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.457"} +{"sensors":[{"euler":{"heading":129.0702358677368,"pitch":132.54972778667138,"roll":24.280322514063712},"location":"Left Knee"},{"euler":{"heading":84.45319393529356,"pitch":106.02327190240078,"roll":36.094949839369534},"location":"Left Ankle"},{"euler":{"heading":60.19796470144261,"pitch":-2.2106998599704277,"roll":1.1926758119316914},"location":"Right Ankle"},{"euler":{"heading":99.34632887151054,"pitch":-154.49076740709248,"roll":58.54845869573398},"location":"Right Hip"},{"euler":{"heading":144.2321484299623,"pitch":-128.9366551111288,"roll":-41.29702198714816},"location":"Right Knee"},{"euler":{"heading":33.08703953325549,"pitch":-135.52442690120887,"roll":57.30200383503186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.558"} +{"sensors":[{"euler":{"heading":149.13196228096314,"pitch":134.43225500800423,"roll":25.546040262657343},"location":"Left Knee"},{"euler":{"heading":80.93287454176419,"pitch":104.8396947121607,"roll":33.347954855432576},"location":"Left Ankle"},{"euler":{"heading":59.915668231298355,"pitch":-1.6833798739733852,"roll":0.9796582307385222},"location":"Right Ankle"},{"euler":{"heading":99.04919598435949,"pitch":-154.59169066638324,"roll":59.26236282616058},"location":"Right Hip"},{"euler":{"heading":145.68393358696608,"pitch":-129.36798960001593,"roll":-41.792319788433346},"location":"Right Knee"},{"euler":{"heading":31.872085579929944,"pitch":-134.065734211088,"roll":56.62180345152868},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.658"} +{"sensors":[{"euler":{"heading":166.14376605286685,"pitch":136.66402950720382,"roll":27.09768623639161},"location":"Left Knee"},{"euler":{"heading":77.20833708758778,"pitch":103.58697524094464,"roll":30.14440936988932},"location":"Left Ankle"},{"euler":{"heading":58.81785140816852,"pitch":-1.1462918865760465,"roll":0.46919240766467},"location":"Right Ankle"},{"euler":{"heading":98.98802638592353,"pitch":-154.90752159974494,"roll":59.998626543544525},"location":"Right Hip"},{"euler":{"heading":147.7592902282695,"pitch":-130.20619064001434,"roll":-42.92558780959001},"location":"Right Knee"},{"euler":{"heading":31.391127021936953,"pitch":-133.2091607899792,"roll":56.18462310637581},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.759"} +{"sensors":[{"euler":{"heading":183.10438944758016,"pitch":137.64762655648343,"roll":28.28791761275245},"location":"Left Knee"},{"euler":{"heading":75.41875337882901,"pitch":102.89702771685018,"roll":28.379968432900387},"location":"Left Ankle"},{"euler":{"heading":56.73606626735167,"pitch":-1.137912697918442,"roll":-0.04022683310179698},"location":"Right Ankle"},{"euler":{"heading":99.38922374733117,"pitch":-155.29801943977046,"roll":60.53001388919007},"location":"Right Hip"},{"euler":{"heading":150.00211120544256,"pitch":-131.32932157601292,"roll":-44.93302902863101},"location":"Right Knee"},{"euler":{"heading":31.24576431974326,"pitch":-132.75074471098128,"roll":55.94741079573823},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.863"} +{"sensors":[{"euler":{"heading":199.55020050282215,"pitch":137.7703639008351,"roll":29.115375851477207},"location":"Left Knee"},{"euler":{"heading":74.54562804094611,"pitch":102.60107494516517,"roll":27.51697158961035},"location":"Left Ankle"},{"euler":{"heading":53.6874596406165,"pitch":-1.2428714281265978,"roll":-0.5299541497916173},"location":"Right Ankle"},{"euler":{"heading":100.65030137259807,"pitch":-154.5807174957934,"roll":60.17701250027107},"location":"Right Hip"},{"euler":{"heading":152.4769000848983,"pitch":-133.77138941841162,"roll":-46.75847612576791},"location":"Right Knee"},{"euler":{"heading":31.39618788776893,"pitch":-132.51317023988315,"roll":56.00891971616441},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.965"} +{"sensors":[{"euler":{"heading":215.00143045253995,"pitch":137.31207751075158,"roll":29.78508826632949},"location":"Left Knee"},{"euler":{"heading":75.6223152368515,"pitch":102.67846745064865,"roll":27.815274430649318},"location":"Left Ankle"},{"euler":{"heading":52.19371367655485,"pitch":-1.3748342853139381,"roll":-0.7769587348124556},"location":"Right Ankle"},{"euler":{"heading":102.29152123533825,"pitch":-153.71639574621406,"roll":59.05931125024396},"location":"Right Hip"},{"euler":{"heading":153.02296007640845,"pitch":-134.17550047657045,"roll":-47.620128513191126},"location":"Right Knee"},{"euler":{"heading":31.96281909899204,"pitch":-133.03060321589484,"roll":56.283027744547965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.65"} +{"sensors":[{"euler":{"heading":193.53878740728595,"pitch":136.49961975967642,"roll":30.125329439696543},"location":"Left Knee"},{"euler":{"heading":76.54133371316637,"pitch":102.8168707055838,"roll":28.264996987584386},"location":"Left Ankle"},{"euler":{"heading":53.13684230889937,"pitch":-1.7998508567825444,"roll":-0.5055128613312101},"location":"Right Ankle"},{"euler":{"heading":103.50611911180442,"pitch":-153.26975617159266,"roll":57.60963012521956},"location":"Right Hip"},{"euler":{"heading":151.1519140687676,"pitch":-132.6142004289134,"roll":-46.88936566187201},"location":"Right Knee"},{"euler":{"heading":32.73528718909284,"pitch":-134.15879289430535,"roll":56.67347497009317},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.166"} +{"sensors":[{"euler":{"heading":174.86615866655737,"pitch":135.4621577837088,"roll":30.03779649572689},"location":"Left Knee"},{"euler":{"heading":77.74970034184973,"pitch":103.09768363502542,"roll":29.044747288825945},"location":"Left Ankle"},{"euler":{"heading":56.14815807800944,"pitch":-1.93236577110429,"roll":-0.08621157519808909},"location":"Right Ankle"},{"euler":{"heading":103.61800720062399,"pitch":-153.2115305544334,"roll":56.48616711269761},"location":"Right Hip"},{"euler":{"heading":147.45547266189084,"pitch":-130.75903038602206,"roll":-44.60667909568481},"location":"Right Knee"},{"euler":{"heading":33.593008470183555,"pitch":-135.8179136048748,"roll":57.13112747308385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.266"} +{"sensors":[{"euler":{"heading":158.72329279990163,"pitch":134.3034420053379,"roll":29.409016846154202},"location":"Left Knee"},{"euler":{"heading":79.51848030766476,"pitch":103.63166527152288,"roll":30.409022559943352},"location":"Left Ankle"},{"euler":{"heading":58.71459227020849,"pitch":-1.720379193993861,"roll":0.4974095823217199},"location":"Right Ankle"},{"euler":{"heading":102.3937064805616,"pitch":-153.62162749899005,"roll":56.018800401427846},"location":"Right Hip"},{"euler":{"heading":143.80992539570175,"pitch":-129.55187734741986,"roll":-42.10851118611633},"location":"Right Knee"},{"euler":{"heading":34.5649576231652,"pitch":-137.91737224438734,"roll":57.668014725775464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.368"} +{"sensors":[{"euler":{"heading":145.50096351991147,"pitch":132.9918478048041,"roll":27.836865161538782},"location":"Left Knee"},{"euler":{"heading":81.79788227689829,"pitch":104.71224874437058,"roll":32.83687030394901},"location":"Left Ankle"},{"euler":{"heading":60.06188304318764,"pitch":-1.4670912745944749,"roll":0.6664186240895479},"location":"Right Ankle"},{"euler":{"heading":101.64808583250546,"pitch":-153.88446474909105,"roll":55.82942036128507},"location":"Right Hip"},{"euler":{"heading":141.93518285613158,"pitch":-128.93418961267787,"roll":-40.5851600675047},"location":"Right Knee"},{"euler":{"heading":35.54596186084868,"pitch":-139.3693850199486,"roll":58.244963253197916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.469"} +{"sensors":[{"euler":{"heading":135.06336716792035,"pitch":131.9051630243237,"roll":25.459428645384904},"location":"Left Knee"},{"euler":{"heading":83.95559404920847,"pitch":106.40977386993353,"roll":35.565683273554114},"location":"Left Ankle"},{"euler":{"heading":61.06194473886888,"pitch":-1.5016321471350276,"roll":0.8435267616805932},"location":"Right Ankle"},{"euler":{"heading":100.6770272492549,"pitch":-154.35226827418194,"roll":56.14647832515656},"location":"Right Hip"},{"euler":{"heading":141.5041645705184,"pitch":-128.4282706514101,"roll":-39.964144060754236},"location":"Right Knee"},{"euler":{"heading":34.91011567476381,"pitch":-138.61369651795374,"roll":58.301716927878125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.569"} +{"sensors":[{"euler":{"heading":125.19453045112832,"pitch":131.45214672189135,"roll":23.682235780846415},"location":"Left Knee"},{"euler":{"heading":85.57253464428763,"pitch":106.17504648294017,"roll":37.50911494619871},"location":"Left Ankle"},{"euler":{"heading":61.768250264981994,"pitch":-1.5389689324215248,"roll":0.8779240855125339},"location":"Right Ankle"},{"euler":{"heading":99.89682452432942,"pitch":-154.76079144676376,"roll":56.8693304926409},"location":"Right Hip"},{"euler":{"heading":141.74124811346658,"pitch":-128.16044358626908,"roll":-39.823979654678816},"location":"Right Knee"},{"euler":{"heading":33.66285410728743,"pitch":-137.10857686615836,"roll":57.76529523509031},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.670"} +{"sensors":[{"euler":{"heading":112.83757740601548,"pitch":132.15068204970223,"roll":23.664012202761775},"location":"Left Knee"},{"euler":{"heading":84.52778117985888,"pitch":104.98879183464616,"roll":36.964453451578834},"location":"Left Ankle"},{"euler":{"heading":62.01642523848379,"pitch":-1.3788220391793722,"roll":0.7838816769612805},"location":"Right Ankle"},{"euler":{"heading":99.42589207189647,"pitch":-155.0284623020874,"roll":57.71989744337681},"location":"Right Hip"},{"euler":{"heading":142.6608733021199,"pitch":-128.28814922764218,"roll":-40.08533168921093},"location":"Right Knee"},{"euler":{"heading":32.315318696558684,"pitch":-135.31021917954251,"roll":56.99501571158128},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.770"} +{"sensors":[{"euler":{"heading":134.17881966541393,"pitch":134.204363844732,"roll":25.160110982485598},"location":"Left Knee"},{"euler":{"heading":80.78125306187299,"pitch":103.77116265118156,"roll":33.88050810642095},"location":"Left Ankle"},{"euler":{"heading":61.62728271463541,"pitch":-1.022189835261435,"roll":0.6117435092651525},"location":"Right Ankle"},{"euler":{"heading":99.03955286470683,"pitch":-155.40686607187865,"roll":58.61040769903913},"location":"Right Hip"},{"euler":{"heading":144.31353597190792,"pitch":-128.84683430487797,"roll":-40.80179852028984},"location":"Right Knee"},{"euler":{"heading":31.383786826902817,"pitch":-133.95419726158826,"roll":56.40801414042315},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.871"} +{"sensors":[{"euler":{"heading":153.14843769887256,"pitch":136.36517746025882,"roll":26.669099884237042},"location":"Left Knee"},{"euler":{"heading":77.18437775568569,"pitch":102.9440463860634,"roll":30.717457295778853},"location":"Left Ankle"},{"euler":{"heading":60.36455444317187,"pitch":-0.5762208517352915,"roll":0.08806915833863727},"location":"Right Ankle"},{"euler":{"heading":98.89184757823617,"pitch":-155.99742946469078,"roll":59.51811692913522},"location":"Right Hip"},{"euler":{"heading":146.50093237471714,"pitch":-129.86215087439018,"roll":-42.05911866826086},"location":"Right Knee"},{"euler":{"heading":31.08290814421254,"pitch":-133.20877753542945,"roll":55.998462726380836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.972"} +{"sensors":[{"euler":{"heading":172.1085939289853,"pitch":137.20365971423294,"roll":27.827189895813337},"location":"Left Knee"},{"euler":{"heading":75.58468998011713,"pitch":102.69339174745707,"roll":28.94571156620097},"location":"Left Ankle"},{"euler":{"heading":57.94684899885468,"pitch":-0.7998487665617623,"roll":-0.37073775749522647},"location":"Right Ankle"},{"euler":{"heading":99.45891282041255,"pitch":-156.10393651822173,"roll":60.12255523622169},"location":"Right Hip"},{"euler":{"heading":148.90083913724544,"pitch":-131.49468578695115,"roll":-44.115706801434776},"location":"Right Knee"},{"euler":{"heading":30.999617329791285,"pitch":-132.6503997818865,"roll":55.804866453742754},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.73"} +{"sensors":[{"euler":{"heading":190.24148453608677,"pitch":137.12704374280966,"roll":28.763220906232004},"location":"Left Knee"},{"euler":{"heading":75.08247098210543,"pitch":102.69905257271137,"roll":28.032390409580874},"location":"Left Ankle"},{"euler":{"heading":54.495914098969216,"pitch":-1.263613889905586,"roll":-0.9024139817457038},"location":"Right Ankle"},{"euler":{"heading":100.7692715383713,"pitch":-155.43104286639957,"roll":59.81029971259953},"location":"Right Hip"},{"euler":{"heading":151.4795052235209,"pitch":-133.97021720825603,"roll":-46.1478861212913},"location":"Right Knee"},{"euler":{"heading":31.387155596812157,"pitch":-132.71035980369786,"roll":55.93687980836848},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.173"} +{"sensors":[{"euler":{"heading":206.99233608247812,"pitch":136.5830893685287,"roll":29.4743988156088},"location":"Left Knee"},{"euler":{"heading":76.17422388389488,"pitch":102.93539731544024,"roll":28.191651368622786},"location":"Left Ankle"},{"euler":{"heading":52.7713226890723,"pitch":-1.8060025009150276,"roll":-1.1309225835711334},"location":"Right Ankle"},{"euler":{"heading":102.56734438453417,"pitch":-154.4504385797596,"roll":58.71676974133958},"location":"Right Hip"},{"euler":{"heading":151.7690547011688,"pitch":-134.13569548743044,"roll":-47.06434750916217},"location":"Right Knee"},{"euler":{"heading":32.11094003713094,"pitch":-133.67682382332808,"roll":56.20569182753164},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.274"} +{"sensors":[{"euler":{"heading":186.58060247423032,"pitch":135.71228043167585,"roll":29.833208934047924},"location":"Left Knee"},{"euler":{"heading":77.1443014955054,"pitch":103.17310758389623,"roll":28.541236231760507},"location":"Left Ankle"},{"euler":{"heading":53.64419042016507,"pitch":-2.562902250823525,"roll":-0.7178303252140201},"location":"Right Ankle"},{"euler":{"heading":103.71060994608075,"pitch":-153.94914472178365,"roll":57.28884276720563},"location":"Right Hip"},{"euler":{"heading":149.54839923105195,"pitch":-132.5221259386874,"roll":-46.245412758245955},"location":"Right Knee"},{"euler":{"heading":32.837346033417845,"pitch":-135.22789144099528,"roll":56.47887264477848},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.374"} +{"sensors":[{"euler":{"heading":168.93504222680727,"pitch":134.61605238850828,"roll":29.668638040643135},"location":"Left Knee"},{"euler":{"heading":78.40487134595486,"pitch":103.5620468255066,"roll":29.305862608584455},"location":"Left Ankle"},{"euler":{"heading":57.829771378148564,"pitch":-2.762862025741173,"roll":0.16020270730738184},"location":"Right Ankle"},{"euler":{"heading":103.79579895147268,"pitch":-153.8729802496053,"roll":56.247458490485066},"location":"Right Hip"},{"euler":{"heading":145.72480930794674,"pitch":-130.65741334481865,"roll":-43.83962148242136},"location":"Right Knee"},{"euler":{"heading":33.65361143007606,"pitch":-136.99885229689576,"roll":56.91848538030063},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.474"} +{"sensors":[{"euler":{"heading":153.74778800412656,"pitch":133.42944714965745,"roll":28.90177423657882},"location":"Left Knee"},{"euler":{"heading":80.28938421135939,"pitch":104.18084214295595,"roll":30.75027634772601},"location":"Left Ankle"},{"euler":{"heading":60.63429424033371,"pitch":-2.6365758231670555,"roll":0.7629324365766437},"location":"Right Ankle"},{"euler":{"heading":102.80996905632541,"pitch":-154.15443222464475,"roll":55.81646264143656},"location":"Right Hip"},{"euler":{"heading":142.11482837715207,"pitch":-129.2541720103368,"roll":-41.336909334179225},"location":"Right Knee"},{"euler":{"heading":34.682000287068455,"pitch":-139.16771706720618,"roll":57.382886842270565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.575"} +{"sensors":[{"euler":{"heading":141.2167592037139,"pitch":132.38650243469172,"roll":27.099096812920937},"location":"Left Knee"},{"euler":{"heading":82.46669579022345,"pitch":105.11900792866037,"roll":33.20649871295341},"location":"Left Ankle"},{"euler":{"heading":61.95836481630034,"pitch":-2.4104182408503503,"roll":1.0303891929189795},"location":"Right Ankle"},{"euler":{"heading":102.19147215069287,"pitch":-154.3202390021803,"roll":55.5723163772929},"location":"Right Hip"},{"euler":{"heading":140.15334553943686,"pitch":-128.61000480930312,"roll":-39.7657184007613},"location":"Right Knee"},{"euler":{"heading":35.38255025836161,"pitch":-140.47594536048558,"roll":57.819598158043505},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.675"} +{"sensors":[{"euler":{"heading":131.55758328334252,"pitch":131.24160219122257,"roll":24.695437131628843},"location":"Left Knee"},{"euler":{"heading":85.77002621120111,"pitch":107.71335713579434,"roll":36.39209884165807},"location":"Left Ankle"},{"euler":{"heading":62.60627833467031,"pitch":-2.1631264167653153,"roll":1.1586002736270815},"location":"Right Ankle"},{"euler":{"heading":101.51607493562359,"pitch":-154.48821510196228,"roll":55.82133473956361},"location":"Right Hip"},{"euler":{"heading":139.55051098549316,"pitch":-128.2052543283728,"roll":-38.976646560685175},"location":"Right Knee"},{"euler":{"heading":34.844295232525454,"pitch":-139.27835082443704,"roll":57.906388342239154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.776"} +{"sensors":[{"euler":{"heading":122.14557495500829,"pitch":130.8799419721003,"roll":23.032143418465957},"location":"Left Knee"},{"euler":{"heading":87.79302359008099,"pitch":107.6920214222149,"roll":38.56538895749226},"location":"Left Ankle"},{"euler":{"heading":62.85190050120328,"pitch":-1.9780637750887837,"roll":1.1052402462643733},"location":"Right Ankle"},{"euler":{"heading":101.13321744206124,"pitch":-154.60189359176607,"roll":56.48295126560725},"location":"Right Hip"},{"euler":{"heading":139.88920988694383,"pitch":-127.94097889553554,"roll":-38.81648190461666},"location":"Right Knee"},{"euler":{"heading":33.53486570927291,"pitch":-137.38801574199334,"roll":57.32199950801524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.876"} +{"sensors":[{"euler":{"heading":145.71851745950747,"pitch":131.8669477748903,"roll":23.260179076619362},"location":"Left Knee"},{"euler":{"heading":86.4637212310729,"pitch":106.38531927999342,"roll":37.90885006174304},"location":"Left Ankle"},{"euler":{"heading":62.76671045108296,"pitch":-1.8240073975799054,"roll":0.9884662216379361},"location":"Right Ankle"},{"euler":{"heading":100.92614569785512,"pitch":-154.76670423258946,"roll":57.309656139046524},"location":"Right Hip"},{"euler":{"heading":140.76278889824945,"pitch":-127.84688100598198,"roll":-39.09733371415499},"location":"Right Knee"},{"euler":{"heading":32.137629138345616,"pitch":-135.467964167794,"roll":56.53979955721372},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.977"} +{"sensors":[{"euler":{"heading":163.65916571355672,"pitch":134.06775299740127,"roll":24.859161168957428},"location":"Left Knee"},{"euler":{"heading":82.5423491079656,"pitch":105.00928735199409,"roll":34.63046505556874},"location":"Left Ankle"},{"euler":{"heading":62.121289405974665,"pitch":-1.6353566578219147,"roll":0.7896195994741425},"location":"Right Ankle"},{"euler":{"heading":100.77103112806961,"pitch":-155.12128380933052,"roll":58.17244052514187},"location":"Right Hip"},{"euler":{"heading":142.20526000842452,"pitch":-128.08719290538377,"roll":-39.850100342739495},"location":"Right Knee"},{"euler":{"heading":31.230116224511054,"pitch":-134.08366775101462,"roll":56.01706960149235},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.77"} +{"sensors":[{"euler":{"heading":179.49324914220108,"pitch":136.36722769766115,"roll":26.448245052061687},"location":"Left Knee"},{"euler":{"heading":78.64436419716905,"pitch":103.93335861679468,"roll":31.329918550011868},"location":"Left Ankle"},{"euler":{"heading":60.7904104653772,"pitch":-1.3843209920397235,"roll":0.4481576395267282},"location":"Right Ankle"},{"euler":{"heading":100.76267801526265,"pitch":-155.6966554283975,"roll":59.09269647262769},"location":"Right Hip"},{"euler":{"heading":144.22848400758207,"pitch":-128.7909736148454,"roll":-41.108840308465545},"location":"Right Knee"},{"euler":{"heading":30.932104602059947,"pitch":-133.28155097591315,"roll":55.67786264134312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.178"} +{"sensors":[{"euler":{"heading":195.45642422798096,"pitch":137.38675492789503,"roll":27.73467054685552},"location":"Left Knee"},{"euler":{"heading":76.62992777745214,"pitch":103.47752275511522,"roll":29.47192669501068},"location":"Left Ankle"},{"euler":{"heading":58.411369418839485,"pitch":-1.6521388928357512,"roll":0.028341875574055375},"location":"Right Ankle"},{"euler":{"heading":101.3114102137364,"pitch":-156.09573988555775,"roll":59.739676825364924},"location":"Right Hip"},{"euler":{"heading":146.58063560682388,"pitch":-130.11187625336086,"roll":-43.11670627761899},"location":"Right Knee"},{"euler":{"heading":31.00764414185395,"pitch":-132.69714587832183,"roll":55.635076377208804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.278"} +{"sensors":[{"euler":{"heading":211.01078180518286,"pitch":137.49807943510552,"roll":28.65495349216997},"location":"Left Knee"},{"euler":{"heading":75.72943499970692,"pitch":103.3610204796037,"roll":28.543484025509613},"location":"Left Ankle"},{"euler":{"heading":54.713982476955536,"pitch":-1.9119250035521762,"roll":-0.6432423119833502},"location":"Right Ankle"},{"euler":{"heading":102.88026919236276,"pitch":-155.41116589700198,"roll":59.47820914282843},"location":"Right Hip"},{"euler":{"heading":149.0100720461415,"pitch":-132.57568862802478,"roll":-45.042535649857086},"location":"Right Knee"},{"euler":{"heading":31.46312972766856,"pitch":-132.50243129048965,"roll":55.94656873948792},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.379"} +{"sensors":[{"euler":{"heading":225.60345362466458,"pitch":137.02952149159498,"roll":29.270708142952973},"location":"Left Knee"},{"euler":{"heading":75.84399149973623,"pitch":103.40616843164332,"roll":28.395385622958653},"location":"Left Ankle"},{"euler":{"heading":52.33633422925998,"pitch":-2.358232503196959,"roll":-0.9789180807850153},"location":"Right Ankle"},{"euler":{"heading":104.6797422731265,"pitch":-154.5700493073018,"roll":58.37413822854559},"location":"Right Hip"},{"euler":{"heading":149.84656484152737,"pitch":-133.1118697652223,"roll":-46.29453208487138},"location":"Right Knee"},{"euler":{"heading":32.06056675490171,"pitch":-132.83968816144068,"roll":56.41441186553913},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.479"} +{"sensors":[{"euler":{"heading":203.10560826219813,"pitch":136.35156934243548,"roll":27.956137328657675},"location":"Left Knee"},{"euler":{"heading":76.10959234976261,"pitch":103.403051588479,"roll":28.56209706066279},"location":"Left Ankle"},{"euler":{"heading":52.28395080633398,"pitch":-3.116159252877263,"roll":-0.39352627270651375},"location":"Right Ankle"},{"euler":{"heading":106.11176804581385,"pitch":-153.98179437657163,"roll":56.986724405691035},"location":"Right Hip"},{"euler":{"heading":148.02440835737463,"pitch":-131.6569327887001,"roll":-45.802578876384246},"location":"Right Knee"},{"euler":{"heading":32.72326007941154,"pitch":-133.9619693452966,"roll":56.87297067898522},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.580"} +{"sensors":[{"euler":{"heading":183.43879743597833,"pitch":135.42891240819193,"roll":27.973023595791908},"location":"Left Knee"},{"euler":{"heading":76.88613311478635,"pitch":103.4877464296311,"roll":29.118387354596514},"location":"Left Ankle"},{"euler":{"heading":54.611805725700584,"pitch":-3.5170433275895365,"roll":0.3770763545641377},"location":"Right Ankle"},{"euler":{"heading":106.48184124123247,"pitch":-153.74611493891447,"roll":55.94430196512193},"location":"Right Hip"},{"euler":{"heading":144.34071752163717,"pitch":-129.7599895098301,"roll":-43.59107098874582},"location":"Right Knee"},{"euler":{"heading":33.607184071470385,"pitch":-135.65952241076695,"roll":57.3856736110867},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.680"} +{"sensors":[{"euler":{"heading":166.4199176923805,"pitch":134.39852116737273,"roll":27.413221236212717},"location":"Left Knee"},{"euler":{"heading":78.16626980330771,"pitch":103.695221786668,"roll":30.244048619136866},"location":"Left Ankle"},{"euler":{"heading":57.65062515313053,"pitch":-3.609088994830583,"roll":0.983118719107724},"location":"Right Ankle"},{"euler":{"heading":105.47740711710922,"pitch":-153.97150344502302,"roll":55.54987176860974},"location":"Right Hip"},{"euler":{"heading":140.98789576947348,"pitch":-128.16524055884707,"roll":-41.16946388987124},"location":"Right Knee"},{"euler":{"heading":34.68396566432335,"pitch":-137.89982016969026,"roll":57.92835624997803},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.781"} +{"sensors":[{"euler":{"heading":152.37167592314245,"pitch":133.49616905063547,"roll":25.828149112591447},"location":"Left Knee"},{"euler":{"heading":80.09964282297695,"pitch":104.4319496080012,"roll":32.50089375722318},"location":"Left Ankle"},{"euler":{"heading":59.29181263781747,"pitch":-3.623180095347525,"roll":1.2348068471969516},"location":"Right Ankle"},{"euler":{"heading":104.52341640539831,"pitch":-154.3243531005207,"roll":55.35113459174877},"location":"Right Hip"},{"euler":{"heading":139.22660619252613,"pitch":-127.24246650296237,"roll":-39.75251750088412},"location":"Right Knee"},{"euler":{"heading":35.48431909789102,"pitch":-139.49108815272123,"roll":58.41677062498023},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.881"} +{"sensors":[{"euler":{"heading":141.52200833082819,"pitch":132.45280214557192,"roll":23.5578342013323},"location":"Left Knee"},{"euler":{"heading":83.30842854067926,"pitch":106.55125464720109,"roll":35.669554381500866},"location":"Left Ankle"},{"euler":{"heading":60.28138137403573,"pitch":-3.554612085812773,"roll":1.3175761624772564},"location":"Right Ankle"},{"euler":{"heading":103.28357476485849,"pitch":-154.76066779046866,"roll":55.691021132573894},"location":"Right Hip"},{"euler":{"heading":138.9101955732735,"pitch":-126.68696985266614,"roll":-39.10226575079571},"location":"Right Knee"},{"euler":{"heading":34.63588718810192,"pitch":-138.2044793374491,"roll":58.55634356248221},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.982"} +{"sensors":[{"euler":{"heading":130.89480749774538,"pitch":132.17002193101473,"roll":22.070800781199072},"location":"Left Knee"},{"euler":{"heading":85.42133568661134,"pitch":106.564879182481,"roll":37.88384894335078},"location":"Left Ankle"},{"euler":{"heading":60.82199323663216,"pitch":-3.480400877231496,"roll":1.2233185462295308},"location":"Right Ankle"},{"euler":{"heading":102.44896728837264,"pitch":-155.10335101142178,"roll":56.359419019316505},"location":"Right Hip"},{"euler":{"heading":139.36917601594615,"pitch":-126.38077286739953,"roll":-39.01078917571614},"location":"Right Knee"},{"euler":{"heading":33.15354846929173,"pitch":-136.2590314037042,"roll":57.981959206233995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.82"} +{"sensors":[{"euler":{"heading":142.89907674797084,"pitch":133.21551973791327,"roll":22.576220703079166},"location":"Left Knee"},{"euler":{"heading":84.06670211795021,"pitch":105.13339126423288,"roll":37.289214049015705},"location":"Left Ankle"},{"euler":{"heading":60.98354391296894,"pitch":-3.3636107895083467,"roll":1.107236691606578},"location":"Right Ankle"},{"euler":{"heading":101.82907055953538,"pitch":-155.3992659102796,"roll":57.17972711738486},"location":"Right Hip"},{"euler":{"heading":140.31350841435153,"pitch":-126.35519558065957,"roll":-39.32221025814453},"location":"Right Knee"},{"euler":{"heading":31.769443622362555,"pitch":-134.2768782633338,"roll":57.2837632856106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.183"} +{"sensors":[{"euler":{"heading":160.79666907317375,"pitch":135.38146776412194,"roll":24.31859863277125},"location":"Left Knee"},{"euler":{"heading":80.19753190615519,"pitch":103.7450521378096,"roll":34.04779264411413},"location":"Left Ankle"},{"euler":{"heading":60.528939521672044,"pitch":-3.1209997105575122,"roll":0.85901302244592},"location":"Right Ankle"},{"euler":{"heading":101.48991350358185,"pitch":-155.85308931925167,"roll":57.999254405646376},"location":"Right Hip"},{"euler":{"heading":141.76965757291637,"pitch":-126.58842602259362,"roll":-40.10248923233008},"location":"Right Knee"},{"euler":{"heading":30.9674992601263,"pitch":-132.9116904370004,"roll":56.81788695704954},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.284"} +{"sensors":[{"euler":{"heading":177.41075216585637,"pitch":137.31832098770974,"roll":25.899238769494122},"location":"Left Knee"},{"euler":{"heading":76.62152871553967,"pitch":102.81429692402862,"roll":30.89926337970272},"location":"Left Ankle"},{"euler":{"heading":59.23229556950484,"pitch":-2.915149739501761,"roll":0.323111720201328},"location":"Right Ankle"},{"euler":{"heading":101.42842215322366,"pitch":-156.5865303873265,"roll":58.79307896508174},"location":"Right Hip"},{"euler":{"heading":143.70519181562474,"pitch":-127.18583342033426,"roll":-41.49849030909707},"location":"Right Knee"},{"euler":{"heading":30.74574933411367,"pitch":-132.18927139330037,"roll":56.504848261344584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.385"} +{"sensors":[{"euler":{"heading":193.45092694927072,"pitch":138.23023888893877,"roll":27.134314892544708},"location":"Left Knee"},{"euler":{"heading":74.7031258439857,"pitch":102.20161723162576,"roll":29.17183704173245},"location":"Left Ankle"},{"euler":{"heading":56.74656601255436,"pitch":-3.3923847655515855,"roll":-0.18419945181880482},"location":"Right Ankle"},{"euler":{"heading":101.93557993790131,"pitch":-156.66537734859386,"roll":59.120021068573564},"location":"Right Hip"},{"euler":{"heading":145.9784226340623,"pitch":-128.54850007830083,"roll":-43.70489127818737},"location":"Right Knee"},{"euler":{"heading":30.296174400702302,"pitch":-131.42659425397034,"roll":56.37311343521013},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.486"} +{"sensors":[{"euler":{"heading":208.63083425434365,"pitch":138.4884650000449,"roll":28.020883403290238},"location":"Left Knee"},{"euler":{"heading":73.58281325958713,"pitch":101.72520550846319,"roll":28.098403337559205},"location":"Left Ankle"},{"euler":{"heading":53.52815941129892,"pitch":-3.796896288996427,"roll":-0.6595295066369243},"location":"Right Ankle"},{"euler":{"heading":102.9982719441112,"pitch":-155.93008961373448,"roll":58.62676896171621},"location":"Right Hip"},{"euler":{"heading":148.60558037065607,"pitch":-130.87490007047074,"roll":-45.73440215036863},"location":"Right Knee"},{"euler":{"heading":30.129056960632074,"pitch":-131.3214348285733,"roll":56.548302091689116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.586"} +{"sensors":[{"euler":{"heading":222.6865008289093,"pitch":138.3583685000404,"roll":28.650045062961212},"location":"Left Knee"},{"euler":{"heading":73.25578193362841,"pitch":101.38393495761687,"roll":27.757313003803286},"location":"Left Ankle"},{"euler":{"heading":52.494093470169034,"pitch":-4.185956660096784,"roll":-0.6748265559732319},"location":"Right Ankle"},{"euler":{"heading":104.29844474970008,"pitch":-155.13083065236103,"roll":57.53909206554459},"location":"Right Hip"},{"euler":{"heading":148.97627233359046,"pitch":-130.99366006342368,"roll":-46.48596193533177},"location":"Right Knee"},{"euler":{"heading":30.272401264568867,"pitch":-131.80179134571597,"roll":56.899721882520204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.687"} +{"sensors":[{"euler":{"heading":236.01785074601835,"pitch":137.84128165003636,"roll":28.97254055666509},"location":"Left Knee"},{"euler":{"heading":73.38020374026557,"pitch":101.17679146185519,"roll":27.794081703422957},"location":"Left Ankle"},{"euler":{"heading":53.600934123152136,"pitch":-4.673610994087106,"roll":0.011406099624091226},"location":"Right Ankle"},{"euler":{"heading":105.18735027473008,"pitch":-154.71774758712493,"roll":56.27268285899012},"location":"Right Hip"},{"euler":{"heading":146.69114510023144,"pitch":-129.48179405708132,"roll":-45.4686157417986},"location":"Right Knee"},{"euler":{"heading":30.701411138111983,"pitch":-133.02161221114437,"roll":57.278499694268184},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.788"} +{"sensors":[{"euler":{"heading":212.89731567141652,"pitch":136.91340348503272,"roll":28.906536500998584},"location":"Left Knee"},{"euler":{"heading":74.12343336623901,"pitch":101.22786231566967,"roll":28.32717353308066},"location":"Left Ankle"},{"euler":{"heading":56.55959071083692,"pitch":-4.831249894678396,"roll":0.8290154896616821},"location":"Right Ankle"},{"euler":{"heading":105.07486524725708,"pitch":-154.58347282841245,"roll":55.476664573091114},"location":"Right Hip"},{"euler":{"heading":142.8970305902083,"pitch":-127.77736465137319,"roll":-43.00925416761874},"location":"Right Knee"},{"euler":{"heading":31.537520024300786,"pitch":-134.73195099002993,"roll":57.75689972484136},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.889"} +{"sensors":[{"euler":{"heading":192.94508410427488,"pitch":135.79706313652943,"roll":28.234632850898727},"location":"Left Knee"},{"euler":{"heading":75.47359002961511,"pitch":101.5488260841027,"roll":29.538206179772594},"location":"Left Ankle"},{"euler":{"heading":58.99738163975323,"pitch":-4.435624905210557,"roll":1.327363940695514},"location":"Right Ankle"},{"euler":{"heading":104.16112872253137,"pitch":-154.6688755455712,"roll":55.135248115782005},"location":"Right Hip"},{"euler":{"heading":139.44482753118746,"pitch":-126.81212818623587,"roll":-40.55207875085687},"location":"Right Knee"},{"euler":{"heading":32.69626802187071,"pitch":-136.99000589102693,"roll":58.28120975235723},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.989"} +{"sensors":[{"euler":{"heading":176.5255756938474,"pitch":134.5486068228765,"roll":26.423669565808854},"location":"Left Knee"},{"euler":{"heading":77.7887310266536,"pitch":102.82519347569244,"roll":32.00313556179534},"location":"Left Ankle"},{"euler":{"heading":60.16639347577791,"pitch":-3.954562414689501,"roll":1.4821275466259627},"location":"Right Ankle"},{"euler":{"heading":103.51376585027823,"pitch":-154.65823799101412,"roll":55.034223304203806},"location":"Right Hip"},{"euler":{"heading":137.7128447780687,"pitch":-126.52466536761229,"roll":-39.053120875771185},"location":"Right Knee"},{"euler":{"heading":33.62664121968364,"pitch":-138.52225530192422,"roll":58.77183877712151},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.90"} +{"sensors":[{"euler":{"heading":163.44801812446266,"pitch":133.39999614058885,"roll":24.031302609227968},"location":"Left Knee"},{"euler":{"heading":80.80985792398823,"pitch":105.14267412812319,"roll":34.9340720056158},"location":"Left Ankle"},{"euler":{"heading":60.787254128200125,"pitch":-3.315356173220551,"roll":1.4651647919633666},"location":"Right Ankle"},{"euler":{"heading":102.2311392652504,"pitch":-154.83616419191273,"roll":55.47455097378343},"location":"Right Hip"},{"euler":{"heading":137.77281030026182,"pitch":-126.70969883085107,"roll":-38.36030878819407},"location":"Right Knee"},{"euler":{"heading":33.007727097715275,"pitch":-137.3325297717318,"roll":58.87590489940936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.191"} +{"sensors":[{"euler":{"heading":150.4407163120164,"pitch":133.12249652652997,"roll":22.61567234830517},"location":"Left Knee"},{"euler":{"heading":82.53512213158942,"pitch":105.04715671531088,"roll":36.784414805054226},"location":"Left Ankle"},{"euler":{"heading":61.158528715380115,"pitch":-2.6713205558984963,"roll":1.2686483127670298},"location":"Right Ankle"},{"euler":{"heading":101.40177533872536,"pitch":-154.88379777272146,"roll":56.18959587640509},"location":"Right Hip"},{"euler":{"heading":138.66427927023565,"pitch":-126.99497894776596,"roll":-38.22427790937466},"location":"Right Knee"},{"euler":{"heading":31.62570438794375,"pitch":-135.5492767945586,"roll":58.28206440946843},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.291"} +{"sensors":[{"euler":{"heading":160.7528946808148,"pitch":134.18524687387696,"roll":23.085355113474655},"location":"Left Knee"},{"euler":{"heading":81.05660991843048,"pitch":103.98619104377978,"roll":35.89347332454881},"location":"Left Ankle"},{"euler":{"heading":61.21142584384211,"pitch":-2.0666885003086466,"roll":1.0417834814903268},"location":"Right Ankle"},{"euler":{"heading":100.79909780485282,"pitch":-154.99541799544932,"roll":57.03938628876458},"location":"Right Hip"},{"euler":{"heading":140.0853513432121,"pitch":-127.40173105298936,"roll":-38.5393501184372},"location":"Right Knee"},{"euler":{"heading":30.213133949149373,"pitch":-133.68809911510274,"roll":57.48510796852159},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.392"} +{"sensors":[{"euler":{"heading":171.5526052127333,"pitch":136.22922218648927,"roll":24.57056960212719},"location":"Left Knee"},{"euler":{"heading":77.36344892658742,"pitch":102.88757193940181,"roll":32.77912599209393},"location":"Left Ankle"},{"euler":{"heading":60.6902832594579,"pitch":-1.4600196502777818,"roll":0.7313551333412941},"location":"Right Ankle"},{"euler":{"heading":100.40043802436755,"pitch":-155.2833761959044,"roll":57.929197659888125},"location":"Right Hip"},{"euler":{"heading":142.04556620889088,"pitch":-128.02405794769044,"roll":-39.354165106593484},"location":"Right Knee"},{"euler":{"heading":29.329320554234435,"pitch":-132.28178920359247,"roll":56.85534717166943},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.492"} +{"sensors":[{"euler":{"heading":186.99734469145997,"pitch":138.17504996784035,"roll":26.15726264191447},"location":"Left Knee"},{"euler":{"heading":73.98335403392869,"pitch":102.31131474546163,"roll":29.657463392884537},"location":"Left Ankle"},{"euler":{"heading":59.221254933512114,"pitch":-1.0327676852500036,"roll":0.23321962000716467},"location":"Right Ankle"},{"euler":{"heading":100.29789422193079,"pitch":-155.94878857631394,"roll":58.86127789389931},"location":"Right Hip"},{"euler":{"heading":144.3660095880018,"pitch":-128.8029021529214,"roll":-40.80624859593414},"location":"Right Knee"},{"euler":{"heading":29.352638498810993,"pitch":-131.69111028323323,"roll":56.513562454502484},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.592"} +{"sensors":[{"euler":{"heading":202.63511022231398,"pitch":138.8262949710563,"roll":27.410286377723025},"location":"Left Knee"},{"euler":{"heading":72.74751863053582,"pitch":102.19893327091548,"roll":28.160467053596083},"location":"Left Ankle"},{"euler":{"heading":56.6053794401609,"pitch":-1.3794909167250033,"roll":-0.24635234199355183},"location":"Right Ankle"},{"euler":{"heading":100.75560479973771,"pitch":-156.26015971868256,"roll":59.47515010450938},"location":"Right Hip"},{"euler":{"heading":146.9356586292016,"pitch":-130.06011193762927,"roll":-43.15687373634073},"location":"Right Knee"},{"euler":{"heading":29.517374648929895,"pitch":-131.31574925490992,"roll":56.35595620905224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.693"} +{"sensors":[{"euler":{"heading":217.62159920008258,"pitch":138.76866547395068,"roll":28.250507739950724},"location":"Left Knee"},{"euler":{"heading":72.29776676748224,"pitch":102.22903994382393,"roll":27.181920348236474},"location":"Left Ankle"},{"euler":{"heading":53.363591496144814,"pitch":-2.235291825052503,"roll":-0.8467171077941966},"location":"Right Ankle"},{"euler":{"heading":101.95504431976394,"pitch":-155.62789374681432,"roll":59.22138509405845},"location":"Right Hip"},{"euler":{"heading":149.27959276628144,"pitch":-132.11660074386634,"roll":-45.52243636270666},"location":"Right Knee"},{"euler":{"heading":29.809387184036908,"pitch":-131.3404243294189,"roll":56.495360588147015},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.794"} +{"sensors":[{"euler":{"heading":231.47818928007433,"pitch":138.2792989265556,"roll":28.92545696595565},"location":"Left Knee"},{"euler":{"heading":72.49924009073403,"pitch":102.35613594944155,"roll":26.819978313412825},"location":"Left Ankle"},{"euler":{"heading":51.727232346530336,"pitch":-3.018012642547253,"roll":-1.1370453970147771},"location":"Right Ankle"},{"euler":{"heading":103.57828988778755,"pitch":-154.7463543721329,"roll":58.08674658465261},"location":"Right Hip"},{"euler":{"heading":149.9828834896533,"pitch":-132.26744066947973,"roll":-46.707692726435994},"location":"Right Knee"},{"euler":{"heading":30.28469846563322,"pitch":-132.13763189647702,"roll":56.72082452933231},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.895"} +{"sensors":[{"euler":{"heading":208.6928703520669,"pitch":137.32636903390005,"roll":29.332911269360086},"location":"Left Knee"},{"euler":{"heading":73.36806608166064,"pitch":102.7455223544974,"roll":26.894230482071546},"location":"Left Ankle"},{"euler":{"heading":52.6420091118773,"pitch":-3.5912113782925275,"roll":-0.8358408573132994},"location":"Right Ankle"},{"euler":{"heading":104.6767108990088,"pitch":-154.33421893491962,"roll":56.54682192618735},"location":"Right Hip"},{"euler":{"heading":147.97209514068797,"pitch":-130.85944660253176,"roll":-45.961923453792394},"location":"Right Knee"},{"euler":{"heading":30.956228619069897,"pitch":-133.49261870682932,"roll":57.01749207639908},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.996"} +{"sensors":[{"euler":{"heading":188.9235833168602,"pitch":136.07498213051005,"roll":29.299620142424075},"location":"Left Knee"},{"euler":{"heading":74.58125947349458,"pitch":103.22722011904767,"roll":27.37355743386439},"location":"Left Ankle"},{"euler":{"heading":55.046558200689574,"pitch":-3.675840240463275,"roll":-0.06475677158196946},"location":"Right Ankle"},{"euler":{"heading":104.59653980910792,"pitch":-154.31329704142766,"roll":55.41713973356861},"location":"Right Hip"},{"euler":{"heading":144.1436356266192,"pitch":-129.1422519422786,"roll":-43.578231108413156},"location":"Right Knee"},{"euler":{"heading":31.766855757162908,"pitch":-135.17460683614638,"roll":57.45949286875917},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.96"} +{"sensors":[{"euler":{"heading":171.6874749851742,"pitch":134.77998391745905,"roll":28.68215812818167},"location":"Left Knee"},{"euler":{"heading":76.32313352614513,"pitch":103.77949810714291,"roll":28.498701690477954},"location":"Left Ankle"},{"euler":{"heading":58.04190238062062,"pitch":-3.5207562164169475,"roll":0.5667189055762275},"location":"Right Ankle"},{"euler":{"heading":103.11813582819714,"pitch":-154.7882173372849,"roll":54.93792576021175},"location":"Right Hip"},{"euler":{"heading":140.16052206395727,"pitch":-127.77802674805073,"roll":-40.80165799757184},"location":"Right Knee"},{"euler":{"heading":32.66517018144662,"pitch":-137.35089615253176,"roll":57.90729358188326},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.197"} +{"sensors":[{"euler":{"heading":157.2562274866568,"pitch":133.53323552571314,"roll":27.145192315363502},"location":"Left Knee"},{"euler":{"heading":78.72207017353061,"pitch":104.66404829642863,"roll":30.83633152143016},"location":"Left Ankle"},{"euler":{"heading":59.70646214255856,"pitch":-3.337430594775253,"roll":0.8537970150186047},"location":"Right Ankle"},{"euler":{"heading":102.13132224537743,"pitch":-155.1468956035564,"roll":54.781633184190575},"location":"Right Hip"},{"euler":{"heading":137.91946985756155,"pitch":-127.08147407324566,"roll":-39.01524219781466},"location":"Right Knee"},{"euler":{"heading":33.46740316330196,"pitch":-139.0470565372786,"roll":58.36656422369494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.297"} +{"sensors":[{"euler":{"heading":145.85560473799111,"pitch":132.29866197314183,"roll":24.793173083827153},"location":"Left Knee"},{"euler":{"heading":82.41861315617754,"pitch":106.99764346678577,"roll":34.23394836928715},"location":"Left Ankle"},{"euler":{"heading":60.723315928302696,"pitch":-3.1786875352977275,"roll":0.9559173135167442},"location":"Right Ankle"},{"euler":{"heading":100.89944002083969,"pitch":-155.62595604320077,"roll":55.14096986577152},"location":"Right Hip"},{"euler":{"heading":137.0525228718054,"pitch":-126.6733266659211,"roll":-38.04496797803319},"location":"Right Knee"},{"euler":{"heading":32.920662846971766,"pitch":-137.94860088355074,"roll":58.55490780132544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.398"} +{"sensors":[{"euler":{"heading":135.613794264192,"pitch":131.64379577582764,"roll":22.795105775444437},"location":"Left Knee"},{"euler":{"heading":84.7767518405598,"pitch":107.1166291201072,"roll":36.77930353235843},"location":"Left Ankle"},{"euler":{"heading":61.28848433547243,"pitch":-2.860818781767955,"roll":0.8665755821650698},"location":"Right Ankle"},{"euler":{"heading":100.07824601875572,"pitch":-155.88836043888068,"roll":55.85187287919437},"location":"Right Hip"},{"euler":{"heading":137.30352058462486,"pitch":-126.61849399932899,"roll":-37.65922118022988},"location":"Right Knee"},{"euler":{"heading":31.67234656227459,"pitch":-136.04749079519567,"roll":58.0369170211929},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.499"} +{"sensors":[{"euler":{"heading":123.4711648377728,"pitch":132.32941619824487,"roll":22.696845197899993},"location":"Left Knee"},{"euler":{"heading":83.95532665650381,"pitch":106.08621620809649,"roll":36.63887317912259},"location":"Left Ankle"},{"euler":{"heading":61.390885901925195,"pitch":-2.2559869035911593,"roll":0.6736680239485628},"location":"Right Ankle"},{"euler":{"heading":99.52667141688015,"pitch":-155.93077439499262,"roll":56.71668559127493},"location":"Right Hip"},{"euler":{"heading":138.30441852616238,"pitch":-126.9566445993961,"roll":-37.66204906220689},"location":"Right Knee"},{"euler":{"heading":30.342611906047132,"pitch":-134.0927417156761,"roll":57.22697531907361},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.600"} +{"sensors":[{"euler":{"heading":137.74904835399553,"pitch":134.32147457842038,"roll":24.058410678109997},"location":"Left Knee"},{"euler":{"heading":80.36604399085344,"pitch":104.65884458728685,"roll":33.61248586121034},"location":"Left Ankle"},{"euler":{"heading":60.983047311732676,"pitch":-1.5241382132320433,"roll":0.39380122155370656},"location":"Right Ankle"},{"euler":{"heading":99.11775427519214,"pitch":-156.05644695549336,"roll":57.67001703214744},"location":"Right Hip"},{"euler":{"heading":139.94272667354613,"pitch":-127.5984801394565,"roll":-38.177094155986204},"location":"Right Knee"},{"euler":{"heading":29.37710071544242,"pitch":-132.73971754410852,"roll":56.56677778716625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.701"} +{"sensors":[{"euler":{"heading":151.249143518596,"pitch":136.65807712057835,"roll":25.658819610299},"location":"Left Knee"},{"euler":{"heading":76.56693959176809,"pitch":103.56171012855818,"roll":30.307487275089304},"location":"Left Ankle"},{"euler":{"heading":59.73474258055941,"pitch":-0.9154743919088391,"roll":-0.06432890060166407},"location":"Right Ankle"},{"euler":{"heading":98.93097884767292,"pitch":-156.41955225994403,"roll":58.6655153289327},"location":"Right Hip"},{"euler":{"heading":142.10470400619153,"pitch":-128.42613212551086,"roll":-39.32813474038758},"location":"Right Knee"},{"euler":{"heading":29.026890643898177,"pitch":-132.11574578969766,"roll":56.14135000844963},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.802"} +{"sensors":[{"euler":{"heading":170.1179791667364,"pitch":137.83601940852054,"roll":26.9054376492691},"location":"Left Knee"},{"euler":{"heading":74.68524563259129,"pitch":103.01178911570237,"roll":28.545488547580376},"location":"Left Ankle"},{"euler":{"heading":57.442518322503474,"pitch":-1.2301769527179551,"roll":-0.5641460105414976},"location":"Right Ankle"},{"euler":{"heading":99.41913096290563,"pitch":-156.65884703394963,"roll":59.21146379603943},"location":"Right Hip"},{"euler":{"heading":144.45048360557237,"pitch":-129.28976891295977,"roll":-41.45782126634882},"location":"Right Knee"},{"euler":{"heading":28.917951579508358,"pitch":-131.7479212107279,"roll":55.94596500760467},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.903"} +{"sensors":[{"euler":{"heading":188.04368125006278,"pitch":138.17116746766848,"roll":27.90239388434219},"location":"Left Knee"},{"euler":{"heading":73.77297106933217,"pitch":102.76061020413213,"roll":27.39718969282234},"location":"Left Ankle"},{"euler":{"heading":53.817016490253124,"pitch":-1.5509092574461598,"roll":-1.2639814094873478},"location":"Right Ankle"},{"euler":{"heading":100.93346786661506,"pitch":-155.83046233055467,"roll":58.827817416435494},"location":"Right Hip"},{"euler":{"heading":147.21168524501516,"pitch":-131.4607920216638,"roll":-43.45578913971394},"location":"Right Knee"},{"euler":{"heading":29.169906421557524,"pitch":-131.81062908965512,"roll":56.02636850684421},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.4"} +{"sensors":[{"euler":{"heading":204.7268131250565,"pitch":137.92280072090165,"roll":28.71840449590797},"location":"Left Knee"},{"euler":{"heading":73.57067396239896,"pitch":102.62204918371893,"roll":26.838720723540106},"location":"Left Ankle"},{"euler":{"heading":51.67906484122781,"pitch":-1.9145683317015438,"roll":-1.5625832685386132},"location":"Right Ankle"},{"euler":{"heading":102.70887107995357,"pitch":-154.85991609749922,"roll":57.657535674791944},"location":"Right Hip"},{"euler":{"heading":148.26551672051366,"pitch":-132.13971281949742,"roll":-44.56021022574255},"location":"Right Knee"},{"euler":{"heading":29.95291577940177,"pitch":-132.6358161806896,"roll":56.32373165615979},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.105"} +{"sensors":[{"euler":{"heading":184.44163181255087,"pitch":137.2117706488115,"roll":29.221564046317173},"location":"Left Knee"},{"euler":{"heading":74.00735656615906,"pitch":102.66609426534704,"roll":26.729848651186096},"location":"Left Ankle"},{"euler":{"heading":52.12990835710503,"pitch":-2.4918614985313896,"roll":-1.2938249416847518},"location":"Right Ankle"},{"euler":{"heading":103.99423397195822,"pitch":-154.3676744877493,"roll":56.15428210731275},"location":"Right Hip"},{"euler":{"heading":146.4764650484623,"pitch":-130.93824153754767,"roll":-43.96668920316829},"location":"Right Knee"},{"euler":{"heading":30.957624201461595,"pitch":-133.95348456262064,"roll":56.778858490543804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.206"} +{"sensors":[{"euler":{"heading":166.9224686312958,"pitch":136.14684358393035,"roll":29.311907641685455},"location":"Left Knee"},{"euler":{"heading":74.92537090954315,"pitch":102.93073483881234,"roll":27.07561378606749},"location":"Left Ankle"},{"euler":{"heading":55.023167521394534,"pitch":-2.736425348678251,"roll":-0.7081924475162766},"location":"Right Ankle"},{"euler":{"heading":104.3448105747624,"pitch":-154.21840703897436,"roll":55.00760389658148},"location":"Right Hip"},{"euler":{"heading":142.5663185436161,"pitch":-129.2444173837929,"roll":-41.601270282851466},"location":"Right Knee"},{"euler":{"heading":32.124361781315436,"pitch":-135.7268861063586,"roll":57.38222264148943},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.306"} +{"sensors":[{"euler":{"heading":151.82397176816622,"pitch":134.95090922553732,"roll":28.82446687751691},"location":"Left Knee"},{"euler":{"heading":76.42033381858883,"pitch":103.43766135493111,"roll":28.05555240746074},"location":"Left Ankle"},{"euler":{"heading":58.058350769255085,"pitch":-2.850282813810426,"roll":0.043876797235350984},"location":"Right Ankle"},{"euler":{"heading":103.21032951728617,"pitch":-154.56531633507694,"roll":54.63809350692333},"location":"Right Hip"},{"euler":{"heading":138.5159366892545,"pitch":-127.84497564541361,"roll":-38.92239325456632},"location":"Right Knee"},{"euler":{"heading":33.29317560318389,"pitch":-137.92919749572275,"roll":58.01275037734048},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.407"} +{"sensors":[{"euler":{"heading":139.38532459134962,"pitch":133.6495683029836,"roll":27.38577018976522},"location":"Left Knee"},{"euler":{"heading":78.53455043672994,"pitch":104.312645219438,"roll":30.231247166714667},"location":"Left Ankle"},{"euler":{"heading":59.89626569232958,"pitch":-2.671504532429384,"roll":0.3957391175118159},"location":"Right Ankle"},{"euler":{"heading":102.03304656555756,"pitch":-155.01503470156925,"roll":54.643034156231},"location":"Right Hip"},{"euler":{"heading":136.08934302032904,"pitch":-127.23547808087226,"roll":-37.123903929109694},"location":"Right Knee"},{"euler":{"heading":34.4826080428655,"pitch":-139.56127774615047,"roll":58.66147533960644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.508"} +{"sensors":[{"euler":{"heading":129.84054213221467,"pitch":132.62836147268524,"roll":25.0534431707887},"location":"Left Knee"},{"euler":{"heading":82.29984539305696,"pitch":106.9876306974942,"roll":33.5331224500432},"location":"Left Ankle"},{"euler":{"heading":61.14413912309662,"pitch":-2.3793540791864456,"roll":0.5249152057606343},"location":"Right Ankle"},{"euler":{"heading":100.9109919090018,"pitch":-155.45103123141232,"roll":55.0474807406079},"location":"Right Hip"},{"euler":{"heading":135.44915871829613,"pitch":-127.06818027278504,"roll":-36.130263536198726},"location":"Right Knee"},{"euler":{"heading":33.83434723857895,"pitch":-138.43639997153542,"roll":58.814077805645795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.608"} +{"sensors":[{"euler":{"heading":121.1189879189932,"pitch":131.84677532541673,"roll":23.29184885370983},"location":"Left Knee"},{"euler":{"heading":85.25736085375127,"pitch":107.78261762774478,"roll":35.96106020503888},"location":"Left Ankle"},{"euler":{"heading":61.91722521078697,"pitch":-1.9226686712678012,"roll":0.4599236851845709},"location":"Right Ankle"},{"euler":{"heading":100.14489271810162,"pitch":-155.6684281082711,"roll":55.79898266654711},"location":"Right Hip"},{"euler":{"heading":135.7792428464665,"pitch":-127.19886224550655,"roll":-35.70473718257885},"location":"Right Knee"},{"euler":{"heading":32.582162514721055,"pitch":-136.5052599743819,"roll":58.276420025081215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.709"} +{"sensors":[{"euler":{"heading":109.83833912709387,"pitch":132.61209779287506,"roll":23.13766396833885},"location":"Left Knee"},{"euler":{"heading":84.58787476837614,"pitch":106.89185586497031,"roll":35.783704184535},"location":"Left Ankle"},{"euler":{"heading":62.25050268970827,"pitch":-1.3241518041410212,"roll":0.2326813166661138},"location":"Right Ankle"},{"euler":{"heading":99.63665344629145,"pitch":-155.70158529744398,"roll":56.725334399892404},"location":"Right Hip"},{"euler":{"heading":136.76381856181985,"pitch":-127.6414760209559,"roll":-35.68426346432096},"location":"Right Knee"},{"euler":{"heading":31.18644626324895,"pitch":-134.4609839769437,"roll":57.455028022573096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.810"} +{"sensors":[{"euler":{"heading":125.49200521438449,"pitch":134.65713801358757,"roll":24.455147571504966},"location":"Left Knee"},{"euler":{"heading":80.85408729153852,"pitch":105.54642027847328,"roll":32.905333766081505},"location":"Left Ankle"},{"euler":{"heading":62.00670242073745,"pitch":-0.6667366237269191,"roll":-0.04058681500049757},"location":"Right Ankle"},{"euler":{"heading":99.3417381016623,"pitch":-155.8251767676996,"roll":57.671550959903165},"location":"Right Hip"},{"euler":{"heading":138.41243670563787,"pitch":-128.3523284188603,"roll":-36.140837117888864},"location":"Right Knee"},{"euler":{"heading":30.192801636924056,"pitch":-132.93988557924934,"roll":56.822025220315794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.911"} +{"sensors":[{"euler":{"heading":140.39280469294604,"pitch":136.93517421222882,"roll":25.97838281435447},"location":"Left Knee"},{"euler":{"heading":77.14992856238466,"pitch":104.57302825062595,"roll":29.758550389473356},"location":"Left Ankle"},{"euler":{"heading":60.893532178663705,"pitch":-0.1375629613542272,"roll":-0.5865281335004479},"location":"Right Ankle"},{"euler":{"heading":99.37006429149608,"pitch":-156.09890909092962,"roll":58.591895863912846},"location":"Right Hip"},{"euler":{"heading":140.5024430350741,"pitch":-129.20459557697427,"roll":-37.22050340609998},"location":"Right Knee"},{"euler":{"heading":30.02977147323165,"pitch":-132.2708970213244,"roll":56.42107269828421},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.12"} +{"sensors":[{"euler":{"heading":160.66602422365145,"pitch":137.97915679100595,"roll":27.136794532919026},"location":"Left Knee"},{"euler":{"heading":75.4911857061462,"pitch":104.27197542556335,"roll":27.907695350526023},"location":"Left Ankle"},{"euler":{"heading":58.641678960797336,"pitch":-0.4300566652188045,"roll":-1.059125320150403},"location":"Right Ankle"},{"euler":{"heading":99.72055786234648,"pitch":-156.64526818183666,"roll":59.320206277521564},"location":"Right Hip"},{"euler":{"heading":142.8834487315667,"pitch":-130.12788601927684,"roll":-39.18595306548998},"location":"Right Knee"},{"euler":{"heading":30.101794325908486,"pitch":-131.95005731919196,"roll":56.23521542845579},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.112"} +{"sensors":[{"euler":{"heading":180.0744218012863,"pitch":138.09374111190536,"roll":27.985615079627124},"location":"Left Knee"},{"euler":{"heading":74.62956713553157,"pitch":104.21352788300703,"roll":26.991925815473422},"location":"Left Ankle"},{"euler":{"heading":55.1775110647176,"pitch":-0.9620509986969241,"roll":-1.7657127881353627},"location":"Right Ankle"},{"euler":{"heading":100.66100207611183,"pitch":-156.286991363653,"roll":59.338185649769414},"location":"Right Hip"},{"euler":{"heading":145.77635385841003,"pitch":-132.14009741734915,"roll":-41.56110775894099},"location":"Right Knee"},{"euler":{"heading":30.497864893317637,"pitch":-131.86755158727277,"roll":56.46169388561021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.213"} +{"sensors":[{"euler":{"heading":197.95447962115765,"pitch":137.72811700071483,"roll":28.630803571664412},"location":"Left Knee"},{"euler":{"heading":74.63536042197842,"pitch":104.26717509470635,"roll":26.611483233926084},"location":"Left Ankle"},{"euler":{"heading":52.916009958245844,"pitch":-1.5408458988272318,"roll":-2.182891509321826},"location":"Right Ankle"},{"euler":{"heading":102.22615186850064,"pitch":-155.50829222728768,"roll":58.498117084792476},"location":"Right Hip"},{"euler":{"heading":147.39246847256902,"pitch":-132.85733767561425,"roll":-43.317496983046894},"location":"Right Knee"},{"euler":{"heading":31.116828403985874,"pitch":-132.6995464285455,"roll":56.81552449704919},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.315"} +{"sensors":[{"euler":{"heading":178.70278165904188,"pitch":136.91155530064336,"roll":29.03022321449797},"location":"Left Knee"},{"euler":{"heading":75.22182437978057,"pitch":104.54045758523571,"roll":26.644084910533476},"location":"Left Ankle"},{"euler":{"heading":53.08690896242126,"pitch":-2.1805113089445087,"roll":-1.9896023583896436},"location":"Right Ankle"},{"euler":{"heading":103.59103668165058,"pitch":-154.92621300455892,"roll":57.11080537631323},"location":"Right Hip"},{"euler":{"heading":146.57822162531212,"pitch":-131.76535390805282,"roll":-43.435747284742206},"location":"Right Knee"},{"euler":{"heading":31.986395563587287,"pitch":-134.13584178569096,"roll":57.22772204734427},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.416"} +{"sensors":[{"euler":{"heading":162.0075034931377,"pitch":135.88914977057902,"roll":28.983450893048172},"location":"Left Knee"},{"euler":{"heading":76.15589194180251,"pitch":104.83016182671216,"roll":27.067176419480127},"location":"Left Ankle"},{"euler":{"heading":55.184468066179136,"pitch":-2.531210178050058,"roll":-1.0906421225506793},"location":"Right Ankle"},{"euler":{"heading":103.91318301348552,"pitch":-154.77109170410304,"roll":55.899724838681905},"location":"Right Hip"},{"euler":{"heading":143.28289946278093,"pitch":-130.05756851724755,"roll":-41.62342255626799},"location":"Right Knee"},{"euler":{"heading":32.91275600722856,"pitch":-135.90350760712187,"roll":57.73619984260985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.517"} +{"sensors":[{"euler":{"heading":147.31925314382391,"pitch":134.85023479352114,"roll":28.48510580374336},"location":"Left Knee"},{"euler":{"heading":77.45905274762227,"pitch":105.11589564404095,"roll":28.054208777532118},"location":"Left Ankle"},{"euler":{"heading":58.20352125956123,"pitch":-2.4968391602450524,"roll":-0.3815779102956113},"location":"Right Ankle"},{"euler":{"heading":102.64061471213698,"pitch":-155.17523253369274,"roll":55.59725235481372},"location":"Right Hip"},{"euler":{"heading":139.35460951650285,"pitch":-128.6080616655228,"roll":-38.96108030064119},"location":"Right Knee"},{"euler":{"heading":34.00898040650571,"pitch":-138.2631568464097,"roll":58.25007985834887},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.618"} +{"sensors":[{"euler":{"heading":135.12482782944153,"pitch":133.79646131416902,"roll":27.080345223369026},"location":"Left Knee"},{"euler":{"heading":79.30064747286005,"pitch":105.66680607963686,"roll":30.21128789977891},"location":"Left Ankle"},{"euler":{"heading":60.089419133605105,"pitch":-2.390905244220547,"roll":-0.012170119266050106},"location":"Right Ankle"},{"euler":{"heading":101.63280324092328,"pitch":-155.60770928032346,"roll":55.55627711933235},"location":"Right Hip"},{"euler":{"heading":136.86914856485257,"pitch":-127.82225549897052,"roll":-37.11497227057707},"location":"Right Knee"},{"euler":{"heading":35.09558236585514,"pitch":-139.93059116176872,"roll":58.76257187251398},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.719"} +{"sensors":[{"euler":{"heading":125.91234504649738,"pitch":132.66681518275212,"roll":24.822310701032123},"location":"Left Knee"},{"euler":{"heading":82.84558272557405,"pitch":107.93137547167316,"roll":33.565159109801016},"location":"Left Ankle"},{"euler":{"heading":61.2492272202446,"pitch":-2.145564719798492,"roll":0.1515468926605549},"location":"Right Ankle"},{"euler":{"heading":100.53202291683095,"pitch":-156.0281883522911,"roll":55.94439940739912},"location":"Right Hip"},{"euler":{"heading":135.82598370836732,"pitch":-127.49002994907347,"roll":-36.01597504351936},"location":"Right Knee"},{"euler":{"heading":34.45477412926962,"pitch":-138.57503204559185,"roll":58.892564685262585},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.820"} +{"sensors":[{"euler":{"heading":117.62111054184764,"pitch":133.7313836644769,"roll":22.89632963092891},"location":"Left Knee"},{"euler":{"heading":84.98602445301664,"pitch":108.02573792450585,"roll":36.171143198820914},"location":"Left Ankle"},{"euler":{"heading":61.98680449822014,"pitch":-1.812258247818643,"roll":0.11764220339449942},"location":"Right Ankle"},{"euler":{"heading":99.90382062514786,"pitch":-156.212869517062,"roll":56.60620946665921},"location":"Right Hip"},{"euler":{"heading":135.94338533753057,"pitch":-127.47852695416613,"roll":-35.564377539167424},"location":"Right Knee"},{"euler":{"heading":33.12804671634266,"pitch":-136.63002884103267,"roll":58.32205821673633},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.921"} +{"sensors":[{"euler":{"heading":106.87149948766289,"pitch":134.37074529802922,"roll":22.744196667836018},"location":"Left Knee"},{"euler":{"heading":84.14992200771498,"pitch":106.69191413205526,"roll":36.07277887893882},"location":"Left Ankle"},{"euler":{"heading":62.27562404839813,"pitch":-1.4310324230367788,"roll":-0.08787201694495053},"location":"Right Ankle"},{"euler":{"heading":99.58218856263308,"pitch":-156.2978325653558,"roll":57.42683851999329},"location":"Right Hip"},{"euler":{"heading":136.72404680377753,"pitch":-127.63067425874952,"roll":-35.58918978525068},"location":"Right Knee"},{"euler":{"heading":31.702742044708394,"pitch":-134.6232759569294,"roll":57.4273523950627},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.21"} +{"sensors":[{"euler":{"heading":122.9530995388966,"pitch":136.3024207682263,"roll":24.21352700105242},"location":"Left Knee"},{"euler":{"heading":80.49742980694349,"pitch":105.17272271884974,"roll":33.228000991044944},"location":"Left Ankle"},{"euler":{"heading":62.02306164355832,"pitch":-1.131679180733101,"roll":-0.3040848152504555},"location":"Right Ankle"},{"euler":{"heading":99.43646970636978,"pitch":-156.58679930882022,"roll":58.27790466799396},"location":"Right Hip"},{"euler":{"heading":137.97664212339978,"pitch":-127.93010683287457,"roll":-36.111520806725615},"location":"Right Knee"},{"euler":{"heading":30.632467840237556,"pitch":-133.08594836123646,"roll":56.74086715555643},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.122"} +{"sensors":[{"euler":{"heading":142.60153958500695,"pitch":138.6221786914037,"roll":25.90467430094718},"location":"Left Knee"},{"euler":{"heading":76.59768682624915,"pitch":103.89295044696476,"roll":29.78645089194045},"location":"Left Ankle"},{"euler":{"heading":60.97075547920249,"pitch":-0.868511262659791,"roll":-0.78617633372541},"location":"Right Ankle"},{"euler":{"heading":99.5803227357328,"pitch":-157.1156193779382,"roll":59.106364201194566},"location":"Right Hip"},{"euler":{"heading":139.7102279110598,"pitch":-128.36834614958713,"roll":-37.26911872605305},"location":"Right Knee"},{"euler":{"heading":30.4254710562138,"pitch":-132.3898535251128,"roll":56.335530440000795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.222"} +{"sensors":[{"euler":{"heading":161.94138562650625,"pitch":139.76621082226333,"roll":27.314206870852463},"location":"Left Knee"},{"euler":{"heading":74.91916814362423,"pitch":103.3911554022683,"roll":27.820305802746404},"location":"Left Ankle"},{"euler":{"heading":58.76117993128224,"pitch":-1.2191601363938118,"roll":-1.263808700352869},"location":"Right Ankle"},{"euler":{"heading":100.22854046215953,"pitch":-157.50405744014438,"roll":59.61447778107512},"location":"Right Hip"},{"euler":{"heading":141.87045511995382,"pitch":-129.0315115346284,"roll":-39.36720685344775},"location":"Right Knee"},{"euler":{"heading":30.31417395059242,"pitch":-132.01961817260153,"roll":56.05822739600072},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.323"} +{"sensors":[{"euler":{"heading":180.14099706385565,"pitch":140.108339740037,"roll":28.382786183767216},"location":"Left Knee"},{"euler":{"heading":73.88975132926181,"pitch":102.93953986204147,"roll":26.725775222471764},"location":"Left Ankle"},{"euler":{"heading":55.11631193815402,"pitch":-1.2909941227544308,"roll":-1.9186778303175822},"location":"Right Ankle"},{"euler":{"heading":101.50568641594357,"pitch":-156.66615169612993,"roll":59.3342800029676},"location":"Right Hip"},{"euler":{"heading":144.86465960795843,"pitch":-131.31586038116558,"roll":-41.442986168102976},"location":"Right Knee"},{"euler":{"heading":30.18275655553318,"pitch":-131.84890635534137,"roll":56.046154656400645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.424"} +{"sensors":[{"euler":{"heading":196.9331473574701,"pitch":139.95375576603328,"roll":29.219507565390497},"location":"Left Knee"},{"euler":{"heading":73.36327619633563,"pitch":102.48308587583733,"roll":26.121947700224588},"location":"Left Ankle"},{"euler":{"heading":52.667180744338616,"pitch":-1.586894710478988,"roll":-2.164310047285824},"location":"Right Ankle"},{"euler":{"heading":103.11136777434922,"pitch":-155.74328652651695,"roll":58.238352002670844},"location":"Right Hip"},{"euler":{"heading":146.2719436471626,"pitch":-132.14677434304903,"roll":-42.79868755129268},"location":"Right Knee"},{"euler":{"heading":30.345730899979863,"pitch":-132.36401571980724,"roll":56.26653919076058},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.525"} +{"sensors":[{"euler":{"heading":212.6585826217231,"pitch":139.40213018942995,"roll":29.741306808851448},"location":"Left Knee"},{"euler":{"heading":73.29569857670207,"pitch":102.1347772882536,"roll":25.92850293020213},"location":"Left Ankle"},{"euler":{"heading":52.80046266990475,"pitch":-2.221955239431089,"roll":-1.8791290425572416},"location":"Right Ankle"},{"euler":{"heading":104.35023099691429,"pitch":-155.18145787386524,"roll":56.76451680240376},"location":"Right Hip"},{"euler":{"heading":145.02599928244635,"pitch":-130.95084690874413,"roll":-42.55631879616342},"location":"Right Knee"},{"euler":{"heading":30.82990780998188,"pitch":-133.32761414782652,"roll":56.74613527168453},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.626"} +{"sensors":[{"euler":{"heading":191.5364743595508,"pitch":138.52441717048697,"roll":29.810926127966304},"location":"Left Knee"},{"euler":{"heading":73.65987871903185,"pitch":101.93379955942825,"roll":26.198152637181916},"location":"Left Ankle"},{"euler":{"heading":55.226666402914276,"pitch":-2.6310097154879806,"roll":-1.1037161383015173},"location":"Right Ankle"},{"euler":{"heading":104.51520789722287,"pitch":-155.06331208647873,"roll":55.68806512216339},"location":"Right Hip"},{"euler":{"heading":141.36089935420173,"pitch":-129.1495122178697,"roll":-40.39443691654708},"location":"Right Knee"},{"euler":{"heading":31.41566702898369,"pitch":-134.67610273304388,"roll":57.346521744516075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.727"} +{"sensors":[{"euler":{"heading":173.18907692359574,"pitch":135.88447545343828,"roll":29.379833515169675},"location":"Left Knee"},{"euler":{"heading":74.64389084712866,"pitch":101.89666960348544,"roll":27.115837373463727},"location":"Left Ankle"},{"euler":{"heading":58.472749762622854,"pitch":-2.880408743939183,"roll":-0.3620945244713655},"location":"Right Ankle"},{"euler":{"heading":103.63243710750058,"pitch":-155.25073087783085,"roll":55.31925860994705},"location":"Right Hip"},{"euler":{"heading":137.49355941878156,"pitch":-127.51581099608273,"roll":-37.698743224892375},"location":"Right Knee"},{"euler":{"heading":32.19285032608532,"pitch":-136.37099245973948,"roll":57.98686957006447},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.828"} +{"sensors":[{"euler":{"heading":157.67641923123617,"pitch":134.89602790809445,"roll":28.16685016365271},"location":"Left Knee"},{"euler":{"heading":76.5170017624158,"pitch":102.20700264313689,"roll":29.204253636117354},"location":"Left Ankle"},{"euler":{"heading":60.41922478636057,"pitch":-2.6798678695452645,"roll":0.011614927975771072},"location":"Right Ankle"},{"euler":{"heading":102.60044339675052,"pitch":-155.55690779004777,"roll":55.18108274895235},"location":"Right Hip"},{"euler":{"heading":135.0379534769034,"pitch":-126.85797989647446,"roll":-35.80386890240314},"location":"Right Knee"},{"euler":{"heading":33.01106529347679,"pitch":-138.02764321376554,"roll":58.650682613058024},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.929"} +{"sensors":[{"euler":{"heading":145.54627730811254,"pitch":133.662675117285,"roll":26.08141514728744},"location":"Left Knee"},{"euler":{"heading":80.30280158617423,"pitch":104.2050523788232,"roll":32.66507827250562},"location":"Left Ankle"},{"euler":{"heading":61.46480230772452,"pitch":-2.299381082590738,"roll":0.191703435178194},"location":"Right Ankle"},{"euler":{"heading":101.76539905707547,"pitch":-155.644967011043,"roll":55.41922447405712},"location":"Right Hip"},{"euler":{"heading":134.22790812921306,"pitch":-126.70968190682703,"roll":-34.76723201216283},"location":"Right Knee"},{"euler":{"heading":32.716208764129114,"pitch":-137.518628892389,"roll":58.860614351752226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.30"} +{"sensors":[{"euler":{"heading":135.02289957730127,"pitch":132.9839076055565,"roll":24.154523632558696},"location":"Left Knee"},{"euler":{"heading":82.99752142755682,"pitch":104.34704714094087,"roll":35.498570445255055},"location":"Left Ankle"},{"euler":{"heading":62.23707207695207,"pitch":-1.7569429743316642,"roll":0.11003309166037459},"location":"Right Ankle"},{"euler":{"heading":100.90760915136792,"pitch":-155.7367203099387,"roll":56.021052026651404},"location":"Right Hip"},{"euler":{"heading":134.34886731629175,"pitch":-126.91371371614433,"roll":-34.22800881094655},"location":"Right Knee"},{"euler":{"heading":31.519587887716202,"pitch":-135.5355160031501,"roll":58.405802916577},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.131"} +{"sensors":[{"euler":{"heading":122.23310961957115,"pitch":133.62301684500085,"roll":23.901571269302828},"location":"Left Knee"},{"euler":{"heading":82.58526928480114,"pitch":103.22484242684679,"roll":35.67371340072955},"location":"Left Ankle"},{"euler":{"heading":62.650864869256864,"pitch":-1.1062486768984978,"roll":-0.12597021750566287},"location":"Right Ankle"},{"euler":{"heading":100.37934823623114,"pitch":-155.64429827894483,"roll":56.78144682398627},"location":"Right Hip"},{"euler":{"heading":135.17648058466256,"pitch":-127.34734234452989,"roll":-34.12395792985189},"location":"Right Knee"},{"euler":{"heading":30.08012909894458,"pitch":-133.5132144028351,"roll":57.5027226249193},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.232"} +{"sensors":[{"euler":{"heading":136.49729865761404,"pitch":135.56696516050076,"roll":25.205164142372546},"location":"Left Knee"},{"euler":{"heading":79.23299235632103,"pitch":101.95235818416211,"roll":33.06259206065659},"location":"Left Ankle"},{"euler":{"heading":62.554528382331185,"pitch":-0.470623809208648,"roll":-0.3883731957550966},"location":"Right Ankle"},{"euler":{"heading":100.09141341260802,"pitch":-155.65486845105033,"roll":57.61580214158765},"location":"Right Hip"},{"euler":{"heading":136.5338325261963,"pitch":-127.9126081100769,"roll":-34.492812136866704},"location":"Right Knee"},{"euler":{"heading":28.303366189050124,"pitch":-132.47439296255158,"roll":56.48370036242738},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.332"} +{"sensors":[{"euler":{"heading":154.79756879185265,"pitch":137.9165186444507,"roll":26.778397728135293},"location":"Left Knee"},{"euler":{"heading":75.49094312068894,"pitch":100.9883723657459,"roll":29.718832854590932},"location":"Left Ankle"},{"euler":{"heading":61.81782554409807,"pitch":-0.004811428287783193,"roll":-0.8495358761795869},"location":"Right Ankle"},{"euler":{"heading":100.24477207134723,"pitch":-155.73313160594532,"roll":58.42297192742889},"location":"Right Hip"},{"euler":{"heading":138.35544927357668,"pitch":-128.4650972990692,"roll":-35.51853092318003},"location":"Right Knee"},{"euler":{"heading":28.004279570145112,"pitch":-131.87070366629644,"roll":55.97908032618464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.433"} +{"sensors":[{"euler":{"heading":172.9990619126674,"pitch":139.1686167800056,"roll":28.075557955321766},"location":"Left Knee"},{"euler":{"heading":73.72309880862005,"pitch":100.82703512917132,"roll":27.57194956913184},"location":"Left Ankle"},{"euler":{"heading":59.84229298968826,"pitch":-0.11058028545900489,"roll":-1.4020822885616284},"location":"Right Ankle"},{"euler":{"heading":100.78904486421251,"pitch":-155.9285684453508,"roll":59.018174734686},"location":"Right Hip"},{"euler":{"heading":140.58240434621902,"pitch":-129.0123375691623,"roll":-37.51667783086203},"location":"Right Knee"},{"euler":{"heading":27.922601613130603,"pitch":-131.49613329966678,"roll":55.71867229356618},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.534"} +{"sensors":[{"euler":{"heading":190.28665572140068,"pitch":139.55800510200504,"roll":29.03675215978959},"location":"Left Knee"},{"euler":{"heading":72.45703892775805,"pitch":100.68808161625418,"roll":26.28975461221866},"location":"Left Ankle"},{"euler":{"heading":56.308063690719436,"pitch":-0.5995222569131045,"roll":-2.243124059705466},"location":"Right Ankle"},{"euler":{"heading":102.02889037779127,"pitch":-155.44196160081572,"roll":58.753857261217405},"location":"Right Hip"},{"euler":{"heading":143.17416391159713,"pitch":-130.44860381224606,"roll":-39.87751004777583},"location":"Right Knee"},{"euler":{"heading":28.12409145181754,"pitch":-131.47151996970013,"roll":55.79680506420956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.635"} +{"sensors":[{"euler":{"heading":206.43924014926063,"pitch":139.38345459180454,"roll":29.758076943810632},"location":"Left Knee"},{"euler":{"heading":72.38633503498224,"pitch":100.70677345462877,"roll":25.82952915099679},"location":"Left Ankle"},{"euler":{"heading":53.8085073216475,"pitch":-1.227070031221794,"roll":-2.6563116537349196},"location":"Right Ankle"},{"euler":{"heading":103.76350134001214,"pitch":-154.63526544073417,"roll":57.703471535095666},"location":"Right Hip"},{"euler":{"heading":144.30674752043743,"pitch":-130.69749343102146,"roll":-41.30850904299825},"location":"Right Knee"},{"euler":{"heading":28.72418230663579,"pitch":-132.2306179727301,"roll":56.0608745577886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.735"} +{"sensors":[{"euler":{"heading":221.44531613433458,"pitch":138.8388591326241,"roll":30.188519249429568},"location":"Left Knee"},{"euler":{"heading":72.47895153148401,"pitch":100.67359610916591,"roll":25.765326235897113},"location":"Left Ankle"},{"euler":{"heading":53.940156589482754,"pitch":-2.1481130280996146,"roll":-2.453180488361428},"location":"Right Ankle"},{"euler":{"heading":105.13715120601093,"pitch":-154.12173889666076,"roll":56.270624381586096},"location":"Right Hip"},{"euler":{"heading":142.8073227683937,"pitch":-129.2714940879193,"roll":-40.94015813869843},"location":"Right Knee"},{"euler":{"heading":29.570514075972213,"pitch":-133.58255617545709,"roll":56.46103710200974},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.836"} +{"sensors":[{"euler":{"heading":199.6570345209011,"pitch":137.9987232193617,"roll":30.18216732448661},"location":"Left Knee"},{"euler":{"heading":73.13730637833561,"pitch":100.76248649824933,"roll":26.232543612307403},"location":"Left Ankle"},{"euler":{"heading":56.571140930534476,"pitch":-2.6520517252896534,"roll":-1.864112439525285},"location":"Right Ankle"},{"euler":{"heading":105.65468608540984,"pitch":-153.9908150069947,"roll":55.09981194342748},"location":"Right Hip"},{"euler":{"heading":139.16409049155433,"pitch":-127.50059467912737,"roll":-38.80239232482858},"location":"Right Knee"},{"euler":{"heading":30.538462668374994,"pitch":-135.26180055791139,"roll":56.95868339180876},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.937"} +{"sensors":[{"euler":{"heading":180.70383106881098,"pitch":136.96760089742554,"roll":29.68270059203795},"location":"Left Knee"},{"euler":{"heading":74.54232574050205,"pitch":101.1049878484244,"roll":27.415539251076666},"location":"Left Ankle"},{"euler":{"heading":59.49527683748103,"pitch":-3.030596552760688,"roll":-1.0777011955727565},"location":"Right Ankle"},{"euler":{"heading":104.68921747686886,"pitch":-154.22923350629523,"roll":54.76483074908474},"location":"Right Hip"},{"euler":{"heading":135.1851814423989,"pitch":-125.98178521121464,"roll":-36.09715309234572},"location":"Right Knee"},{"euler":{"heading":31.553366401537495,"pitch":-137.22312050212025,"roll":57.512815052627886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.38"} +{"sensors":[{"euler":{"heading":164.77719796192991,"pitch":135.74584080768298,"roll":28.451930532834155},"location":"Left Knee"},{"euler":{"heading":76.70059316645184,"pitch":101.88198906358197,"roll":29.598985325969},"location":"Left Ankle"},{"euler":{"heading":61.345749153732925,"pitch":-3.1087868974846193,"roll":-0.7074310760154807},"location":"Right Ankle"},{"euler":{"heading":103.53279572918198,"pitch":-154.6750601556657,"roll":54.70709767417627},"location":"Right Hip"},{"euler":{"heading":132.647913298159,"pitch":-125.23360669009318,"roll":-34.23743778311115},"location":"Right Knee"},{"euler":{"heading":32.94177976138375,"pitch":-139.30080845190824,"roll":58.1177835473651},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.138"} +{"sensors":[{"euler":{"heading":152.20572816573693,"pitch":134.6087567269147,"roll":26.30673747955074},"location":"Left Knee"},{"euler":{"heading":80.34928384980665,"pitch":104.20004015722378,"roll":32.7390867933721},"location":"Left Ankle"},{"euler":{"heading":62.41742423835963,"pitch":-2.8979082077361578,"roll":-0.5741879684139327},"location":"Right Ankle"},{"euler":{"heading":102.63576615626378,"pitch":-154.95130414009915,"roll":55.06138790675865},"location":"Right Hip"},{"euler":{"heading":131.7018719683431,"pitch":-125.02899602108386,"roll":-33.20119400480004},"location":"Right Knee"},{"euler":{"heading":32.62260178524537,"pitch":-139.1019776067174,"roll":58.19975519262859},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.239"} +{"sensors":[{"euler":{"heading":141.05390534916324,"pitch":133.9541310542232,"roll":24.388563731595667},"location":"Left Knee"},{"euler":{"heading":82.789355464826,"pitch":105.05503614150142,"roll":35.25267811403489},"location":"Left Ankle"},{"euler":{"heading":63.00693181452367,"pitch":-2.683117386962542,"roll":-0.6230191715725395},"location":"Right Ankle"},{"euler":{"heading":101.7034395406374,"pitch":-155.19367372608926,"roll":55.72399911608279},"location":"Right Hip"},{"euler":{"heading":131.72543477150882,"pitch":-125.10109641897547,"roll":-32.762324604320035},"location":"Right Knee"},{"euler":{"heading":31.547841606720837,"pitch":-137.34802984604568,"roll":57.86727967336573},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.339"} +{"sensors":[{"euler":{"heading":128.00476481424693,"pitch":134.5712179488009,"roll":24.268457358436102},"location":"Left Knee"},{"euler":{"heading":82.1979199183434,"pitch":104.04953252735127,"roll":35.346160302631404},"location":"Left Ankle"},{"euler":{"heading":63.2749886330713,"pitch":-2.433555648266288,"roll":-0.9544672544152856},"location":"Right Ankle"},{"euler":{"heading":101.23934558657366,"pitch":-155.30555635348034,"roll":56.53284920447451},"location":"Right Hip"},{"euler":{"heading":132.37789129435794,"pitch":-125.28473677707794,"roll":-32.792342143888035},"location":"Right Knee"},{"euler":{"heading":30.249307446048753,"pitch":-135.4194768614411,"roll":57.080551706029155},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.441"} +{"sensors":[{"euler":{"heading":148.01053833282222,"pitch":136.4453461539208,"roll":25.647861622592494},"location":"Left Knee"},{"euler":{"heading":78.89687792650906,"pitch":102.94457927461615,"roll":32.76154427236826},"location":"Left Ankle"},{"euler":{"heading":63.009989769764175,"pitch":-2.152700083439659,"roll":-1.3152705289737572},"location":"Right Ankle"},{"euler":{"heading":101.0466610279163,"pitch":-155.48125071813232,"roll":57.32331428402706},"location":"Right Hip"},{"euler":{"heading":133.60885216492215,"pitch":-125.64376309937015,"roll":-33.31935792949923},"location":"Right Knee"},{"euler":{"heading":29.00562670144388,"pitch":-133.933779175297,"roll":56.316246535426245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.541"} +{"sensors":[{"euler":{"heading":164.55948449954,"pitch":138.93831153852872,"roll":27.358075460333247},"location":"Left Knee"},{"euler":{"heading":74.97594013385816,"pitch":101.61887134715454,"roll":29.235389845131436},"location":"Left Ankle"},{"euler":{"heading":61.915240792787756,"pitch":-1.8624300750956932,"roll":-1.8462434760763815},"location":"Right Ankle"},{"euler":{"heading":101.21699492512468,"pitch":-155.7268756463191,"roll":58.11598285562436},"location":"Right Hip"},{"euler":{"heading":135.33546694842994,"pitch":-126.07938678943313,"roll":-34.46867213654931},"location":"Right Knee"},{"euler":{"heading":28.780064031299492,"pitch":-133.0591512577673,"roll":55.90337188188362},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.642"} +{"sensors":[{"euler":{"heading":181.10353604958598,"pitch":140.28198038467585,"roll":28.841017914299922},"location":"Left Knee"},{"euler":{"heading":72.72209612047236,"pitch":100.97573421243908,"roll":26.911850860618294},"location":"Left Ankle"},{"euler":{"heading":59.46746671350898,"pitch":-2.138687067586124,"roll":-2.4553691284687433},"location":"Right Ankle"},{"euler":{"heading":101.82029543261223,"pitch":-156.12293808168718,"roll":58.65438457006193},"location":"Right Hip"},{"euler":{"heading":137.62067025358695,"pitch":-126.62769811048982,"roll":-36.615554922894376},"location":"Right Knee"},{"euler":{"heading":28.908307628169545,"pitch":-132.62198613199058,"roll":55.66303469369526},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.743"} +{"sensors":[{"euler":{"heading":197.0244324446274,"pitch":140.73503234620827,"roll":29.838166122869932},"location":"Left Knee"},{"euler":{"heading":71.44988650842512,"pitch":100.50316079119517,"roll":25.739415774556466},"location":"Left Ankle"},{"euler":{"heading":55.72697004215809,"pitch":-2.5123183608275115,"roll":-3.134832215621869},"location":"Right Ankle"},{"euler":{"heading":103.138265889351,"pitch":-155.67939427351845,"roll":58.52019611305574},"location":"Right Hip"},{"euler":{"heading":140.30235322822827,"pitch":-128.29617829944084,"roll":-38.972749430604935},"location":"Right Knee"},{"euler":{"heading":28.898726865352593,"pitch":-132.21603751879152,"roll":55.67173122432574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.844"} +{"sensors":[{"euler":{"heading":211.85323920016467,"pitch":140.69902911158744,"roll":30.54184951058294},"location":"Left Knee"},{"euler":{"heading":71.05489785758262,"pitch":100.21534471207566,"roll":25.12797419710082},"location":"Left Ankle"},{"euler":{"heading":53.00427303794228,"pitch":-2.8048365247447604,"roll":-3.446348994059682},"location":"Right Ankle"},{"euler":{"heading":104.7806893004159,"pitch":-154.8427048461666,"roll":57.661926501750166},"location":"Right Hip"},{"euler":{"heading":141.99711790540545,"pitch":-129.21656046949676,"roll":-40.71297448754444},"location":"Right Knee"},{"euler":{"heading":29.077604178817335,"pitch":-132.60068376691237,"roll":55.80455810189317},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.945"} +{"sensors":[{"euler":{"heading":225.6429152801482,"pitch":140.3166262004287,"roll":30.987664559524646},"location":"Left Knee"},{"euler":{"heading":71.18065807182435,"pitch":99.9000602408681,"roll":25.221426777390736},"location":"Left Ankle"},{"euler":{"heading":52.866345734148055,"pitch":-3.4118528722702846,"roll":-3.195464094653714},"location":"Right Ankle"},{"euler":{"heading":106.00262037037432,"pitch":-154.16468436154997,"roll":56.45823385157515},"location":"Right Hip"},{"euler":{"heading":141.1661561148649,"pitch":-128.43240442254708,"roll":-40.79167703879},"location":"Right Knee"},{"euler":{"heading":29.619843760935602,"pitch":-133.58436539022114,"roll":56.19910229170386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.46"} +{"sensors":[{"euler":{"heading":238.85987375213338,"pitch":139.5349635803858,"roll":31.095148103572182},"location":"Left Knee"},{"euler":{"heading":71.76259226464192,"pitch":99.7288042167813,"roll":25.680534099651663},"location":"Left Ankle"},{"euler":{"heading":55.267211160733254,"pitch":-3.8269175850432564,"roll":-2.5821676851883426},"location":"Right Ankle"},{"euler":{"heading":106.2898583333369,"pitch":-154.00446592539498,"roll":55.41866046641764},"location":"Right Hip"},{"euler":{"heading":137.88704050337842,"pitch":-126.83916398029237,"roll":-38.875009334911},"location":"Right Knee"},{"euler":{"heading":30.426609384842042,"pitch":-135.08842885119904,"roll":56.679192062533474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.146"} +{"sensors":[{"euler":{"heading":215.52388637692005,"pitch":138.50021722234723,"roll":30.741883293214965},"location":"Left Knee"},{"euler":{"heading":73.10508303817772,"pitch":99.86217379510317,"roll":26.799980689686496},"location":"Left Ankle"},{"euler":{"heading":58.28424004465993,"pitch":-4.256725826538931,"roll":-1.6739509166695083},"location":"Right Ankle"},{"euler":{"heading":105.27962250000321,"pitch":-154.3727693328555,"roll":54.995544419775875},"location":"Right Hip"},{"euler":{"heading":133.97958645304058,"pitch":-125.34274758226313,"roll":-36.1937584014199},"location":"Right Knee"},{"euler":{"heading":31.446448446357838,"pitch":-137.07958596607915,"roll":57.28627285628013},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.247"} +{"sensors":[{"euler":{"heading":195.67149773922804,"pitch":137.21269550011252,"roll":29.605194963893467},"location":"Left Knee"},{"euler":{"heading":75.09457473435995,"pitch":100.32595641559286,"roll":28.926232620717848},"location":"Left Ankle"},{"euler":{"heading":60.14331604019394,"pitch":-4.487303243885037,"roll":-1.2878058250025575},"location":"Right Ankle"},{"euler":{"heading":104.1329102500029,"pitch":-154.94799239956996,"roll":54.795989977798286},"location":"Right Hip"},{"euler":{"heading":131.51912780773654,"pitch":-124.29597282403681,"roll":-34.474382561277906},"location":"Right Knee"},{"euler":{"heading":32.70805360172206,"pitch":-138.89037736947125,"roll":57.95139557065211},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.348"} +{"sensors":[{"euler":{"heading":179.62309796530525,"pitch":135.94142595010126,"roll":27.48217546750412},"location":"Left Knee"},{"euler":{"heading":78.04761726092397,"pitch":102.11211077403357,"roll":32.021109358646065},"location":"Left Ankle"},{"euler":{"heading":61.397734436174545,"pitch":-4.757322919496533,"roll":-0.9965252425023018},"location":"Right Ankle"},{"euler":{"heading":103.1696192250026,"pitch":-155.46569315961295,"roll":54.99764098001846},"location":"Right Hip"},{"euler":{"heading":130.52346502696287,"pitch":-123.68512554163314,"roll":-33.608194305150114},"location":"Right Knee"},{"euler":{"heading":32.29974824154985,"pitch":-138.36383963252413,"roll":58.1312560135869},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.449"} +{"sensors":[{"euler":{"heading":165.10453816877472,"pitch":135.25978335509114,"roll":25.67770792075371},"location":"Left Knee"},{"euler":{"heading":80.04285553483157,"pitch":102.22589969663022,"roll":34.30024842278146},"location":"Left Ankle"},{"euler":{"heading":62.2392109925571,"pitch":-4.98784062754688,"roll":-0.8406227182520716},"location":"Right Ankle"},{"euler":{"heading":102.35265730250235,"pitch":-155.98162384365168,"roll":55.62287688201661},"location":"Right Hip"},{"euler":{"heading":130.28986852426658,"pitch":-123.27286298746982,"roll":-33.2786248746351},"location":"Right Knee"},{"euler":{"heading":31.288523417394867,"pitch":-136.67745566927172,"roll":57.75563041222821},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.550"} +{"sensors":[{"euler":{"heading":184.31908435189726,"pitch":135.80255501958203,"roll":25.68493712867834},"location":"Left Knee"},{"euler":{"heading":79.37606998134842,"pitch":101.12205972696721,"roll":34.10147358050332},"location":"Left Ankle"},{"euler":{"heading":62.61528989330139,"pitch":-5.082806564792191,"roll":-0.9253104464268644},"location":"Right Ankle"},{"euler":{"heading":101.86739157225212,"pitch":-156.3334614592865,"roll":56.44808919381496},"location":"Right Hip"},{"euler":{"heading":130.79838167183993,"pitch":-123.11432668872284,"roll":-33.46326238717159},"location":"Right Knee"},{"euler":{"heading":30.097171075655382,"pitch":-134.89721010234456,"roll":57.03631737100539},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.651"} +{"sensors":[{"euler":{"heading":198.10592591670755,"pitch":137.64104951762383,"roll":27.116443415810505},"location":"Left Knee"},{"euler":{"heading":76.23846298321358,"pitch":99.96610375427049,"roll":31.472576222452986},"location":"Left Ankle"},{"euler":{"heading":62.46001090397125,"pitch":-5.024525908312973,"roll":-1.032779401784178},"location":"Right Ankle"},{"euler":{"heading":101.53690241502692,"pitch":-156.80011531335785,"roll":57.30328027443346},"location":"Right Hip"},{"euler":{"heading":132.01854350465595,"pitch":-123.26539401985056,"roll":-34.14818614845443},"location":"Right Knee"},{"euler":{"heading":29.137453968089844,"pitch":-133.2824890921101,"roll":56.45143563390485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.752"} +{"sensors":[{"euler":{"heading":209.58908332503682,"pitch":140.01444456586145,"roll":28.692299074229457},"location":"Left Knee"},{"euler":{"heading":72.67711668489223,"pitch":98.77574337884344,"roll":28.150318600207687},"location":"Left Ankle"},{"euler":{"heading":61.52025981357413,"pitch":-4.815823317481676,"roll":-1.5357514616057604},"location":"Right Ankle"},{"euler":{"heading":101.45196217352424,"pitch":-157.48885378202206,"roll":58.185452246990124},"location":"Right Hip"},{"euler":{"heading":133.82918915419035,"pitch":-123.5951046178655,"roll":-35.452117533608984},"location":"Right Knee"},{"euler":{"heading":28.99245857128086,"pitch":-132.4354901828991,"roll":56.08754207051437},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.852"} +{"sensors":[{"euler":{"heading":221.91767499253314,"pitch":141.1380001092753,"roll":29.954319166806513},"location":"Left Knee"},{"euler":{"heading":70.996905016403,"pitch":98.48566904095911,"roll":26.12903674018692},"location":"Left Ankle"},{"euler":{"heading":59.511983832216714,"pitch":-4.977990985733508,"roll":-2.1134263154451842},"location":"Right Ankle"},{"euler":{"heading":101.87551595617182,"pitch":-158.00246840381985,"roll":58.81690702229112},"location":"Right Hip"},{"euler":{"heading":136.12127023877133,"pitch":-124.21059415607897,"roll":-37.62565578024808},"location":"Right Knee"},{"euler":{"heading":29.118212714152776,"pitch":-131.94819116460917,"roll":55.90378786346294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.953"} +{"sensors":[{"euler":{"heading":233.90090749327985,"pitch":141.41795009834777,"roll":30.840137250125863},"location":"Left Knee"},{"euler":{"heading":69.92221451476271,"pitch":98.2371021368632,"roll":25.003633066168227},"location":"Left Ankle"},{"euler":{"heading":55.76703544899504,"pitch":-5.230191887160157,"roll":-2.9395836839006657},"location":"Right Ankle"},{"euler":{"heading":103.31296436055464,"pitch":-157.34597156343787,"roll":58.62271632006201},"location":"Right Hip"},{"euler":{"heading":138.7716432148942,"pitch":-125.89578474047107,"roll":-40.03809020222327},"location":"Right Knee"},{"euler":{"heading":29.268891442737498,"pitch":-131.84087204814824,"roll":55.98215907711665},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.54"} +{"sensors":[{"euler":{"heading":245.09206674395188,"pitch":141.251155088513,"roll":31.424873525113277},"location":"Left Knee"},{"euler":{"heading":69.58624306328645,"pitch":98.10089192317689,"roll":24.490769759551405},"location":"Left Ankle"},{"euler":{"heading":53.027831904095535,"pitch":-5.500922698444142,"roll":-3.2893753155105996},"location":"Right Ankle"},{"euler":{"heading":104.83166792449919,"pitch":-156.45512440709408,"roll":57.74794468805581},"location":"Right Hip"},{"euler":{"heading":140.08197889340477,"pitch":-126.44995626642397,"roll":-41.49053118200095},"location":"Right Knee"},{"euler":{"heading":29.554502298463753,"pitch":-132.38178484333343,"roll":56.196443169404986},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.154"} +{"sensors":[{"euler":{"heading":255.7078600695567,"pitch":140.7322895796617,"roll":31.74488617260195},"location":"Left Knee"},{"euler":{"heading":70.0401187569578,"pitch":98.0345527308592,"roll":24.785442783596267},"location":"Left Ankle"},{"euler":{"heading":53.20004871368599,"pitch":-5.950830428599728,"roll":-2.93543778395954},"location":"Right Ankle"},{"euler":{"heading":105.77975113204927,"pitch":-155.73461196638468,"roll":56.66690021925023},"location":"Right Hip"},{"euler":{"heading":138.6675310040643,"pitch":-125.48621063978158,"roll":-41.00397806380086},"location":"Right Knee"},{"euler":{"heading":30.017802068617378,"pitch":-133.38110635900009,"roll":56.58304885246449},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.255"} +{"sensors":[{"euler":{"heading":266.037074062601,"pitch":139.89031062169553,"roll":31.657897555341755},"location":"Left Knee"},{"euler":{"heading":70.89235688126202,"pitch":98.11859745777329,"roll":25.488148505236644},"location":"Left Ankle"},{"euler":{"heading":55.705043842317394,"pitch":-5.9682473857397556,"roll":-2.279394005563586},"location":"Right Ankle"},{"euler":{"heading":105.78927601884435,"pitch":-155.5299007697462,"roll":55.79396019732521},"location":"Right Hip"},{"euler":{"heading":135.40077790365788,"pitch":-124.17508957580341,"roll":-38.822330257420774},"location":"Right Knee"},{"euler":{"heading":30.59102186175564,"pitch":-134.70549572310009,"roll":57.05599396721804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.356"} +{"sensors":[{"euler":{"heading":240.0771166563409,"pitch":138.901279559526,"roll":31.01085779980758},"location":"Left Knee"},{"euler":{"heading":72.29062119313582,"pitch":98.32548771199596,"roll":26.814333654712982},"location":"Left Ankle"},{"euler":{"heading":58.734539458085656,"pitch":-6.146422647165781,"roll":-1.5202046050072275},"location":"Right Ankle"},{"euler":{"heading":104.77909841695991,"pitch":-155.7519106927716,"roll":55.38956417759269},"location":"Right Hip"},{"euler":{"heading":131.90445011329209,"pitch":-122.82008061822307,"roll":-36.2338472316787},"location":"Right Knee"},{"euler":{"heading":31.319419675580075,"pitch":-136.41619615079009,"roll":57.581644570496245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.456"} +{"sensors":[{"euler":{"heading":217.94440499070683,"pitch":137.6861516035734,"roll":29.578522019826824},"location":"Left Knee"},{"euler":{"heading":74.46780907382224,"pitch":98.76168894079636,"roll":29.157900289241688},"location":"Left Ankle"},{"euler":{"heading":60.3173355122771,"pitch":-5.8130303824492024,"roll":-1.2244341445065048},"location":"Right Ankle"},{"euler":{"heading":103.71368857526392,"pitch":-156.00796962349443,"roll":55.18185775983342},"location":"Right Hip"},{"euler":{"heading":129.70775510196287,"pitch":-122.51932255640077,"roll":-34.40421250851084},"location":"Right Knee"},{"euler":{"heading":32.46247770802207,"pitch":-138.34332653571107,"roll":58.12348011344662},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.557"} +{"sensors":[{"euler":{"heading":199.84371449163615,"pitch":136.44253644321606,"roll":27.33316981784414},"location":"Left Knee"},{"euler":{"heading":77.53977816644002,"pitch":100.66052004671673,"roll":32.26086026031752},"location":"Left Ankle"},{"euler":{"heading":61.123101961049386,"pitch":-5.662977344204283,"roll":-1.0894907300558543},"location":"Right Ankle"},{"euler":{"heading":102.71731971773752,"pitch":-156.332172661145,"roll":55.45117198385008},"location":"Right Hip"},{"euler":{"heading":129.0744795917666,"pitch":-122.2486403007607,"roll":-33.545041257659754},"location":"Right Knee"},{"euler":{"heading":31.891229937219865,"pitch":-137.87774388213995,"roll":58.26113210210196},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.657"} +{"sensors":[{"euler":{"heading":183.58434304247254,"pitch":135.64828279889446,"roll":25.393602836059728},"location":"Left Knee"},{"euler":{"heading":79.76080034979603,"pitch":101.07571804204505,"roll":34.67227423428577},"location":"Left Ankle"},{"euler":{"heading":61.74204176494445,"pitch":-5.540429609783854,"roll":-1.2055416570502688},"location":"Right Ankle"},{"euler":{"heading":101.89558774596378,"pitch":-156.7114553950305,"roll":56.137304785465076},"location":"Right Hip"},{"euler":{"heading":129.17953163258994,"pitch":-122.01127627068463,"roll":-33.29053713189378},"location":"Right Knee"},{"euler":{"heading":30.839606943497877,"pitch":-136.43371949392596,"roll":57.84751889189177},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.758"} +{"sensors":[{"euler":{"heading":166.0009087382253,"pitch":135.870954519005,"roll":25.104242552453755},"location":"Left Knee"},{"euler":{"heading":79.49097031481642,"pitch":100.49939623784056,"roll":34.7362968108572},"location":"Left Ankle"},{"euler":{"heading":61.930337588450016,"pitch":-5.373886648805469,"roll":-1.403737491345242},"location":"Right Ankle"},{"euler":{"heading":101.48102897136741,"pitch":-157.04655985552745,"roll":56.94857430691857},"location":"Right Hip"},{"euler":{"heading":129.78657846933095,"pitch":-121.91639864361618,"roll":-33.4989834187044},"location":"Right Knee"},{"euler":{"heading":29.74314624914809,"pitch":-134.7153475445334,"roll":57.162767002702594},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.859"} +{"sensors":[{"euler":{"heading":182.31956786440276,"pitch":137.43385906710452,"roll":26.43756829720838},"location":"Left Knee"},{"euler":{"heading":76.57937328333477,"pitch":99.5807066140565,"roll":32.30641712977148},"location":"Left Ankle"},{"euler":{"heading":61.54355382960502,"pitch":-5.092747983924921,"roll":-1.6008637422107177},"location":"Right Ankle"},{"euler":{"heading":101.12667607423067,"pitch":-157.5356538699747,"roll":57.866216876226716},"location":"Right Hip"},{"euler":{"heading":131.03917062239785,"pitch":-122.13100877925456,"roll":-34.16158507683396},"location":"Right Knee"},{"euler":{"heading":28.900081624233284,"pitch":-133.27506279008006,"roll":56.57774030243234},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.960"} +{"sensors":[{"euler":{"heading":195.6501110779625,"pitch":139.78422316039408,"roll":28.081311467487545},"location":"Left Knee"},{"euler":{"heading":72.8839359550013,"pitch":98.65388595265085,"roll":28.794525416794336},"location":"Left Ankle"},{"euler":{"heading":60.332948446644515,"pitch":-4.7022231855324295,"roll":-2.215777367989646},"location":"Right Ankle"},{"euler":{"heading":101.05775846680761,"pitch":-158.19458848297722,"roll":58.767095188604046},"location":"Right Hip"},{"euler":{"heading":132.92275356015807,"pitch":-122.6116579013291,"roll":-35.426676569150565},"location":"Right Knee"},{"euler":{"heading":28.753823461809958,"pitch":-132.45380651107206,"roll":56.21371627218911},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.63"} +{"sensors":[{"euler":{"heading":209.70384997016626,"pitch":140.83705084435468,"roll":29.404430320738793},"location":"Left Knee"},{"euler":{"heading":71.18929235950118,"pitch":98.64474735738577,"roll":26.7400728751149},"location":"Left Ankle"},{"euler":{"heading":57.780903601980064,"pitch":-4.863250866979186,"roll":-2.8004496311906815},"location":"Right Ankle"},{"euler":{"heading":101.56448262012685,"pitch":-158.6313796346795,"roll":59.40913566974365},"location":"Right Hip"},{"euler":{"heading":135.34297820414227,"pitch":-123.40049211119619,"roll":-37.64025891223551},"location":"Right Knee"},{"euler":{"heading":28.853441115628964,"pitch":-131.92717585996485,"roll":55.9985946449702},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.164"} +{"sensors":[{"euler":{"heading":223.47721497314964,"pitch":140.9345957599192,"roll":30.370237288664914},"location":"Left Knee"},{"euler":{"heading":70.46411312355106,"pitch":98.8677726216472,"roll":25.72231558760341},"location":"Left Ankle"},{"euler":{"heading":53.990313241782054,"pitch":-5.089425780281268,"roll":-3.539154668071613},"location":"Right Ankle"},{"euler":{"heading":102.83303435811416,"pitch":-157.96824167121153,"roll":59.21197210276928},"location":"Right Hip"},{"euler":{"heading":138.09618038372804,"pitch":-125.15419290007657,"roll":-39.976233021011964},"location":"Right Knee"},{"euler":{"heading":29.086847004066065,"pitch":-131.67820827396838,"roll":56.11748518047318},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.265"} +{"sensors":[{"euler":{"heading":236.1982434758347,"pitch":140.6161361839273,"roll":31.039463559798424},"location":"Left Knee"},{"euler":{"heading":71.18020181119596,"pitch":99.1434953594825,"roll":25.77508402884307},"location":"Left Ankle"},{"euler":{"heading":52.010031917603854,"pitch":-5.380483202253141,"roll":-3.741489201264452},"location":"Right Ankle"},{"euler":{"heading":104.38723092230275,"pitch":-156.92766750409038,"roll":58.37827489249235},"location":"Right Hip"},{"euler":{"heading":138.98031234535523,"pitch":-123.88877361006891,"roll":-41.17235971891077},"location":"Right Knee"},{"euler":{"heading":29.57191230365946,"pitch":-132.42913744657153,"roll":56.343236662425866},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.366"} +{"sensors":[{"euler":{"heading":248.13466912825123,"pitch":139.96702256553456,"roll":31.41676720381858},"location":"Left Knee"},{"euler":{"heading":71.76218163007637,"pitch":99.36039582353425,"roll":26.028825625958767},"location":"Left Ankle"},{"euler":{"heading":52.77152872584347,"pitch":-5.886184882027828,"roll":-3.2985902811380066},"location":"Right Ankle"},{"euler":{"heading":105.37350783007247,"pitch":-156.15990075368137,"roll":57.296697403243115},"location":"Right Hip"},{"euler":{"heading":137.1197811108197,"pitch":-122.98739624906202,"roll":-40.39887374701969},"location":"Right Knee"},{"euler":{"heading":30.089721073293514,"pitch":-133.54872370191438,"roll":56.665162996183284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.467"} +{"sensors":[{"euler":{"heading":223.64620221542611,"pitch":138.9515703089811,"roll":31.400090483436724},"location":"Left Knee"},{"euler":{"heading":72.71721346706873,"pitch":99.71185624118084,"roll":26.70719306336289},"location":"Left Ankle"},{"euler":{"heading":55.33812585325912,"pitch":-6.110066393825045,"roll":-2.406231253024206},"location":"Right Ankle"},{"euler":{"heading":105.27990704706522,"pitch":-156.03141067831325,"roll":56.542027662918805},"location":"Right Hip"},{"euler":{"heading":133.78280299973773,"pitch":-121.71365662415582,"roll":-38.01523637231772},"location":"Right Knee"},{"euler":{"heading":30.849498965964163,"pitch":-135.01260133172295,"roll":57.098646696564956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.567"} +{"sensors":[{"euler":{"heading":202.31283199388352,"pitch":137.775163278083,"roll":30.828831435093054},"location":"Left Knee"},{"euler":{"heading":74.35174212036186,"pitch":100.19692061706276,"roll":28.023973757026603},"location":"Left Ankle"},{"euler":{"heading":58.06056326793321,"pitch":-6.199059754442541,"roll":-1.7156081277217854},"location":"Right Ankle"},{"euler":{"heading":104.3456663423587,"pitch":-156.2470196104819,"roll":56.200324896626924},"location":"Right Hip"},{"euler":{"heading":130.55452269976396,"pitch":-120.68604096174023,"roll":-35.607462735085946},"location":"Right Knee"},{"euler":{"heading":31.845799069367747,"pitch":-136.97384119855064,"roll":57.58253202690846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.669"} +{"sensors":[{"euler":{"heading":184.30029879449518,"pitch":136.5101469502747,"roll":29.32719829158375},"location":"Left Knee"},{"euler":{"heading":76.28531790832568,"pitch":100.78347855535648,"roll":30.20282638132394},"location":"Left Ankle"},{"euler":{"heading":59.4545069411399,"pitch":-6.035403778998287,"roll":-1.4815473149496068},"location":"Right Ankle"},{"euler":{"heading":103.50484970812283,"pitch":-156.53481764943373,"roll":56.055292406964234},"location":"Right Hip"},{"euler":{"heading":128.63657042978755,"pitch":-120.37993686556621,"roll":-33.97796646157735},"location":"Right Knee"},{"euler":{"heading":32.24246916243097,"pitch":-137.87645707869558,"roll":57.90552882421761},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.769"} +{"sensors":[{"euler":{"heading":169.54526891504568,"pitch":135.30913225524722,"roll":27.194478462425376},"location":"Left Knee"},{"euler":{"heading":78.70678611749311,"pitch":102.26763069982084,"roll":32.963793743191545},"location":"Left Ankle"},{"euler":{"heading":60.50280624702591,"pitch":-6.000613401098458,"roll":-1.3396425834546462},"location":"Right Ankle"},{"euler":{"heading":102.44811473731056,"pitch":-157.03133588449037,"roll":56.46226316626782},"location":"Right Hip"},{"euler":{"heading":128.0416633868088,"pitch":-120.1794431790096,"roll":-33.16141981541962},"location":"Right Knee"},{"euler":{"heading":31.399472246187877,"pitch":-136.65756137082602,"roll":57.802475941795855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.870"} +{"sensors":[{"euler":{"heading":155.1907420235411,"pitch":134.90946902972252,"roll":25.893780616182838},"location":"Left Knee"},{"euler":{"heading":80.09235750574379,"pitch":101.91586762983876,"roll":34.53616436887239},"location":"Left Ankle"},{"euler":{"heading":61.308775622323324,"pitch":-6.000552060988612,"roll":-1.3556783251091815},"location":"Right Ankle"},{"euler":{"heading":101.92205326357951,"pitch":-157.45945229604135,"roll":57.15978684964104},"location":"Right Hip"},{"euler":{"heading":128.09374704812794,"pitch":-119.95524886110864,"roll":-32.93277783387766},"location":"Right Knee"},{"euler":{"heading":30.18452502156909,"pitch":-135.30430523374343,"roll":57.17222834761627},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.971"} +{"sensors":[{"euler":{"heading":174.77791782118697,"pitch":135.66227212675025,"roll":26.279402554564555},"location":"Left Knee"},{"euler":{"heading":78.87062175516941,"pitch":101.20553086685489,"roll":33.63879793198515},"location":"Left Ankle"},{"euler":{"heading":61.684148060091,"pitch":-5.975496854889752,"roll":-1.4451104925982634},"location":"Right Ankle"},{"euler":{"heading":101.72984793722156,"pitch":-157.9072570664372,"roll":57.968808164676936},"location":"Right Hip"},{"euler":{"heading":128.60937234331513,"pitch":-119.79722397499779,"roll":-33.177000050489895},"location":"Right Knee"},{"euler":{"heading":29.153572519412183,"pitch":-133.7676247103691,"roll":56.49875551285464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.72"} +{"sensors":[{"euler":{"heading":189.59387603906828,"pitch":137.60229491407523,"roll":27.813962299108102},"location":"Left Knee"},{"euler":{"heading":75.37730957965246,"pitch":100.24747778016939,"roll":30.54366813878664},"location":"Left Ankle"},{"euler":{"heading":61.3282332540819,"pitch":-5.815447169400777,"roll":-1.8505994433384372},"location":"Right Ankle"},{"euler":{"heading":101.79436314349941,"pitch":-158.3665313597935,"roll":58.81567734820925},"location":"Right Hip"},{"euler":{"heading":129.7484351089836,"pitch":-119.88000157749802,"roll":-33.93430004544091},"location":"Right Knee"},{"euler":{"heading":28.650715267470968,"pitch":-132.66586223933217,"roll":55.99262996156918},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.173"} +{"sensors":[{"euler":{"heading":203.68448843516146,"pitch":139.2483154226677,"roll":29.163816069197292},"location":"Left Knee"},{"euler":{"heading":72.19582862168723,"pitch":99.76648000215246,"roll":27.576801324907976},"location":"Left Ankle"},{"euler":{"heading":59.93290992867371,"pitch":-5.5901524524607,"roll":-2.4217894990045936},"location":"Right Ankle"},{"euler":{"heading":102.00242682914947,"pitch":-158.99237822381417,"roll":59.62160961338832},"location":"Right Hip"},{"euler":{"heading":131.56109159808526,"pitch":-120.36075141974823,"roll":-35.34087004089682},"location":"Right Knee"},{"euler":{"heading":28.52314374072387,"pitch":-132.00552601539894,"roll":55.624616965412265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.273"} +{"sensors":[{"euler":{"heading":217.89728959164532,"pitch":139.74223388040093,"roll":30.184934462277564},"location":"Left Knee"},{"euler":{"heading":71.0137457595185,"pitch":99.88983200193721,"roll":26.050371192417177},"location":"Left Ankle"},{"euler":{"heading":56.895868935806334,"pitch":-5.57488720721463,"roll":-3.0483605491041343},"location":"Right Ankle"},{"euler":{"heading":102.88968414623453,"pitch":-158.84939040143274,"roll":59.953198652049494},"location":"Right Hip"},{"euler":{"heading":134.16748243827672,"pitch":-121.61842627777341,"roll":-37.625533036807134},"location":"Right Knee"},{"euler":{"heading":28.458329366651487,"pitch":-131.37997341385903,"roll":55.47465526887104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.374"} +{"sensors":[{"euler":{"heading":231.62006063248077,"pitch":139.42426049236084,"roll":31.01019101604981},"location":"Left Knee"},{"euler":{"heading":71.01862118356665,"pitch":100.33834880174349,"roll":25.38283407317546},"location":"Left Ankle"},{"euler":{"heading":53.5375320422257,"pitch":-5.8173984864931665,"roll":-3.543524494193721},"location":"Right Ankle"},{"euler":{"heading":104.41946573161107,"pitch":-157.90820136128946,"roll":59.47037878684455},"location":"Right Hip"},{"euler":{"heading":136.30073419444906,"pitch":-123.03158364999608,"roll":-39.73797973312642},"location":"Right Knee"},{"euler":{"heading":28.93124642998634,"pitch":-131.52947607247313,"roll":55.633439741983935},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.475"} +{"sensors":[{"euler":{"heading":208.6205545692327,"pitch":138.59433444312478,"roll":31.58417191444483},"location":"Left Knee"},{"euler":{"heading":72.51675906520998,"pitch":101.02951392156913,"roll":25.744550665857915},"location":"Left Ankle"},{"euler":{"heading":52.44002883800313,"pitch":-6.273158637843849,"roll":-3.6329220447743493},"location":"Right Ankle"},{"euler":{"heading":105.99626915844996,"pitch":-156.89238122516053,"roll":58.373340908160095},"location":"Right Hip"},{"euler":{"heading":136.05816077500415,"pitch":-122.67842528499648,"roll":-40.29543175981378},"location":"Right Knee"},{"euler":{"heading":29.86937178698771,"pitch":-132.4515284652258,"roll":55.99509576778554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.576"} +{"sensors":[{"euler":{"heading":188.48974911230943,"pitch":137.4536509988123,"roll":31.782004723000348},"location":"Left Knee"},{"euler":{"heading":73.72758315868899,"pitch":101.63906252941223,"roll":26.226345599272122},"location":"Left Ankle"},{"euler":{"heading":53.91477595420282,"pitch":-6.733342774059465,"roll":-3.100879840296914},"location":"Right Ankle"},{"euler":{"heading":107.32164224260497,"pitch":-156.24689310264446,"roll":56.96725681734409},"location":"Right Hip"},{"euler":{"heading":133.46484469750374,"pitch":-121.38558275649683,"roll":-38.87213858383241},"location":"Right Knee"},{"euler":{"heading":30.91368460828894,"pitch":-133.83137561870325,"roll":56.48308619100699},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.676"} +{"sensors":[{"euler":{"heading":170.9970242010785,"pitch":136.10828589893106,"roll":31.485054250700315},"location":"Left Knee"},{"euler":{"heading":75.15482484282009,"pitch":102.30015627647101,"roll":27.078711039344913},"location":"Left Ankle"},{"euler":{"heading":56.723298358782536,"pitch":-6.891258496653518,"roll":-2.140791856267223},"location":"Right Ankle"},{"euler":{"heading":106.96447801834447,"pitch":-156.30345379238003,"roll":57.664281135609684},"location":"Right Hip"},{"euler":{"heading":129.66836022775337,"pitch":-120.14077448084714,"roll":-36.15367472544917},"location":"Right Knee"},{"euler":{"heading":32.00981614746004,"pitch":-135.52948805683292,"roll":57.0972775719063},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.777"} +{"sensors":[{"euler":{"heading":155.99732178097065,"pitch":134.75370730903796,"roll":30.467798825630286},"location":"Left Knee"},{"euler":{"heading":77.13934235853809,"pitch":103.0263906488239,"roll":28.702089935410424},"location":"Left Ankle"},{"euler":{"heading":58.900968522904286,"pitch":-6.633382646988166,"roll":-1.4892126706405007},"location":"Right Ankle"},{"euler":{"heading":105.85553021651003,"pitch":-156.685608413142,"roll":57.06660302204872},"location":"Right Hip"},{"euler":{"heading":126.86402420497802,"pitch":-119.61419703276243,"roll":-33.99455725290425},"location":"Right Knee"},{"euler":{"heading":33.340084532714044,"pitch":-137.62028925114964,"roll":57.80629981471567},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.878"} +{"sensors":[{"euler":{"heading":143.9163396028736,"pitch":133.51583657813418,"roll":28.389768943067256},"location":"Left Knee"},{"euler":{"heading":79.58790812268427,"pitch":104.35500158394152,"roll":31.256880941869383},"location":"Left Ankle"},{"euler":{"heading":60.04212167061386,"pitch":-6.15129438228935,"roll":-1.4840414035764506},"location":"Right Ankle"},{"euler":{"heading":105.19497719485904,"pitch":-156.82329757182782,"roll":56.95369271984384},"location":"Right Hip"},{"euler":{"heading":125.51512178448023,"pitch":-119.5527773294862,"roll":-32.72010152761383},"location":"Right Knee"},{"euler":{"heading":33.568576079442636,"pitch":-137.93326032603468,"roll":58.11941983324411},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.979"} +{"sensors":[{"euler":{"heading":133.99345564258624,"pitch":132.46425292032077,"roll":26.03204204876053},"location":"Left Knee"},{"euler":{"heading":82.33536731041585,"pitch":106.13825142554737,"roll":34.09369284768245},"location":"Left Ankle"},{"euler":{"heading":60.90040950355248,"pitch":-5.598664944060416,"roll":-1.3418872632188057},"location":"Right Ankle"},{"euler":{"heading":104.35047947537313,"pitch":-156.99096781464505,"roll":57.339573447859465},"location":"Right Hip"},{"euler":{"heading":125.38235960603221,"pitch":-119.8849995965376,"roll":-32.07934137485245},"location":"Right Knee"},{"euler":{"heading":32.811718471498374,"pitch":-136.30243429343122,"roll":58.0324778499197},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.79"} +{"sensors":[{"euler":{"heading":123.24411007832762,"pitch":132.5053276282887,"roll":24.953837843884475},"location":"Left Knee"},{"euler":{"heading":83.57683057937426,"pitch":105.69317628299264,"roll":35.071823562914204},"location":"Left Ankle"},{"euler":{"heading":61.34786855319724,"pitch":-4.888798449654374,"roll":-1.5139485368969252},"location":"Right Ankle"},{"euler":{"heading":103.80293152783582,"pitch":-157.02937103318055,"roll":57.94936610307352},"location":"Right Hip"},{"euler":{"heading":126.012873645429,"pitch":-120.44024963688385,"roll":-31.921407237367205},"location":"Right Knee"},{"euler":{"heading":31.36179662434854,"pitch":-134.6096908640881,"roll":57.19173006492773},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.183"} +{"sensors":[{"euler":{"heading":137.16969907049486,"pitch":134.06104486545985,"roll":25.758454059496028},"location":"Left Knee"},{"euler":{"heading":81.19414752143683,"pitch":104.59885865469337,"roll":33.21464120662279},"location":"Left Ankle"},{"euler":{"heading":61.381831697877516,"pitch":-4.143668604688937,"roll":-1.7875536832072327},"location":"Right Ankle"},{"euler":{"heading":103.47888837505225,"pitch":-157.15768392986251,"roll":58.66692949276617},"location":"Right Hip"},{"euler":{"heading":127.23033628088609,"pitch":-121.10872467319547,"roll":-32.229266513630485},"location":"Right Knee"},{"euler":{"heading":29.913116961913687,"pitch":-132.83622177767927,"roll":56.35380705843496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.284"} +{"sensors":[{"euler":{"heading":155.55272916344538,"pitch":136.49869037891386,"roll":27.270108653546423},"location":"Left Knee"},{"euler":{"heading":77.06223276929315,"pitch":103.25772278922405,"roll":29.80567708596051},"location":"Left Ankle"},{"euler":{"heading":60.67489852808976,"pitch":-3.4105517442200433,"roll":-2.2212983148865098},"location":"Right Ankle"},{"euler":{"heading":103.26224953754704,"pitch":-157.4294155368763,"roll":59.431486543489555},"location":"Right Hip"},{"euler":{"heading":129.19480265279748,"pitch":-121.99160220587594,"roll":-33.15633986226744},"location":"Right Knee"},{"euler":{"heading":29.27805526572232,"pitch":-131.87759959991135,"roll":55.787176352591466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.385"} +{"sensors":[{"euler":{"heading":173.65995624710084,"pitch":137.93632134102248,"roll":28.52434778819178},"location":"Left Knee"},{"euler":{"heading":74.23100949236384,"pitch":102.62570051030164,"roll":27.49385937736446},"location":"Left Ankle"},{"euler":{"heading":58.98240867528079,"pitch":-3.050746569798039,"roll":-2.742918483397859},"location":"Right Ankle"},{"euler":{"heading":103.43602458379233,"pitch":-157.79272398318867,"roll":60.0133378891406},"location":"Right Hip"},{"euler":{"heading":131.70657238751772,"pitch":-122.95494198528834,"roll":-34.934455876040694},"location":"Right Knee"},{"euler":{"heading":28.975249739150087,"pitch":-131.32108963992022,"roll":55.48345871733232},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.486"} +{"sensors":[{"euler":{"heading":191.15646062239077,"pitch":138.38018920692025,"roll":29.440663009372603},"location":"Left Knee"},{"euler":{"heading":72.81415854312745,"pitch":102.36313045927147,"roll":26.125723439628015},"location":"Left Ankle"},{"euler":{"heading":55.62166780775271,"pitch":-3.1644219128182356,"roll":-3.0748766350580734},"location":"Right Ankle"},{"euler":{"heading":104.6174221254131,"pitch":-157.1197015848698,"roll":59.81825410022654},"location":"Right Hip"},{"euler":{"heading":134.44216514876595,"pitch":-124.61569778675951,"roll":-37.172260288436625},"location":"Right Knee"},{"euler":{"heading":29.02147476523508,"pitch":-131.1327306759282,"roll":55.47886284559909},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.586"} +{"sensors":[{"euler":{"heading":207.6220645601517,"pitch":138.14842028622823,"roll":30.190346708435346},"location":"Left Knee"},{"euler":{"heading":73.1139926888147,"pitch":102.39556741334432,"roll":25.994401095665214},"location":"Left Ankle"},{"euler":{"heading":53.090751026977436,"pitch":-3.222979721536412,"roll":-3.292388971552266},"location":"Right Ankle"},{"euler":{"heading":106.34942991287178,"pitch":-155.97023142638284,"roll":58.90517869020389},"location":"Right Hip"},{"euler":{"heading":135.77919863388937,"pitch":-125.61662800808357,"roll":-38.58003425959296},"location":"Right Knee"},{"euler":{"heading":29.588077288711574,"pitch":-131.8632076083354,"roll":55.65597656103918},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.687"} +{"sensors":[{"euler":{"heading":186.9973581041365,"pitch":137.5023282576054,"roll":30.68381203759181},"location":"Left Knee"},{"euler":{"heading":74.00884341993323,"pitch":102.5872606720099,"roll":26.207460986098692},"location":"Left Ankle"},{"euler":{"heading":53.031675924279696,"pitch":-3.600681749382771,"roll":-3.0569000743970394},"location":"Right Ankle"},{"euler":{"heading":107.7332369215846,"pitch":-155.24195828374457,"roll":57.4771608211835},"location":"Right Hip"},{"euler":{"heading":134.67002877050044,"pitch":-124.80496520727522,"roll":-38.334530833633664},"location":"Right Knee"},{"euler":{"heading":30.435519559840415,"pitch":-133.03313684750185,"roll":56.096628904935265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.787"} +{"sensors":[{"euler":{"heading":169.11012229372287,"pitch":136.51459543184487,"roll":30.80293083383263},"location":"Left Knee"},{"euler":{"heading":74.88920907793991,"pitch":102.85353460480893,"roll":26.680464887488824},"location":"Left Ankle"},{"euler":{"heading":55.39725833185173,"pitch":-4.040613574444494,"roll":-2.5012100669573356},"location":"Right Ankle"},{"euler":{"heading":108.34116322942614,"pitch":-154.93651245537012,"roll":56.13569473906515},"location":"Right Hip"},{"euler":{"heading":131.6405258934504,"pitch":-123.3244686865477,"roll":-36.5698277502703},"location":"Right Knee"},{"euler":{"heading":31.416967603856378,"pitch":-134.62982316275168,"roll":56.630716014441745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.887"} +{"sensors":[{"euler":{"heading":153.76786006435057,"pitch":135.29438588866037,"roll":30.385137750449367},"location":"Left Knee"},{"euler":{"heading":76.34403817014592,"pitch":103.35568114432803,"roll":27.724918398739945},"location":"Left Ankle"},{"euler":{"heading":57.945032498666556,"pitch":-4.136552217000045,"roll":-1.8073390602616022},"location":"Right Ankle"},{"euler":{"heading":107.53829690648354,"pitch":-155.09911120983313,"roll":55.515875265158634},"location":"Right Hip"},{"euler":{"heading":127.91397330410535,"pitch":-122.04827181789294,"roll":-33.98784497524327},"location":"Right Knee"},{"euler":{"heading":32.50027084347074,"pitch":-136.5355908464765,"roll":57.26764441299757},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.988"} +{"sensors":[{"euler":{"heading":140.9285740579155,"pitch":133.98369729979436,"roll":29.15287397540443},"location":"Left Knee"},{"euler":{"heading":78.92213435313134,"pitch":103.98261302989523,"roll":29.93367655886595},"location":"Left Ankle"},{"euler":{"heading":59.7755292487999,"pitch":-4.14789699530004,"roll":-1.495355154235442},"location":"Right Ankle"},{"euler":{"heading":106.4969672158352,"pitch":-155.48920008884983,"roll":55.33303773864277},"location":"Right Hip"},{"euler":{"heading":125.43507597369482,"pitch":-121.45594463610364,"roll":-32.12656047771895},"location":"Right Knee"},{"euler":{"heading":33.73774375912366,"pitch":-138.20703176182886,"roll":58.00337997169781},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.89"} +{"sensors":[{"euler":{"heading":130.97946665212396,"pitch":132.8478275698149,"roll":26.906336577863986},"location":"Left Knee"},{"euler":{"heading":81.9049209178182,"pitch":105.87810172690571,"roll":32.78405890297935},"location":"Left Ankle"},{"euler":{"heading":60.92922632391991,"pitch":-4.089357295770036,"roll":-1.3708196388118976},"location":"Right Ankle"},{"euler":{"heading":105.44102049425167,"pitch":-155.89028007996484,"roll":55.5934839647785},"location":"Right Hip"},{"euler":{"heading":124.41656837632534,"pitch":-121.21660017249327,"roll":-31.132654429947053},"location":"Right Knee"},{"euler":{"heading":33.24521938321129,"pitch":-137.81757858564598,"roll":58.084291974528035},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.190"} +{"sensors":[{"euler":{"heading":122.11901998691157,"pitch":132.25679481283342,"roll":24.990702920077585},"location":"Left Knee"},{"euler":{"heading":83.61442882603639,"pitch":106.49654155421514,"roll":34.99940301268142},"location":"Left Ankle"},{"euler":{"heading":61.592553691527925,"pitch":-3.9741715661930326,"roll":-1.3399876749307078},"location":"Right Ankle"},{"euler":{"heading":104.62191844482652,"pitch":-156.29500207196836,"roll":56.20913556830065},"location":"Right Hip"},{"euler":{"heading":124.53741153869281,"pitch":-121.19494015524396,"roll":-30.82563898695235},"location":"Right Knee"},{"euler":{"heading":32.164447444890165,"pitch":-136.29207072708138,"roll":57.65086277707523},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.291"} +{"sensors":[{"euler":{"heading":111.2571179882204,"pitch":132.8498653315501,"roll":24.735382628069825},"location":"Left Knee"},{"euler":{"heading":83.04673594343275,"pitch":105.48438739879363,"roll":35.09946271141328},"location":"Left Ankle"},{"euler":{"heading":61.82079832237514,"pitch":-3.7892544095737293,"roll":-1.518488907437637},"location":"Right Ankle"},{"euler":{"heading":104.01597660034388,"pitch":-156.69675186477153,"roll":57.02572201147059},"location":"Right Hip"},{"euler":{"heading":125.27117038482353,"pitch":-121.33169613971955,"roll":-30.968075088257116},"location":"Right Knee"},{"euler":{"heading":30.554252700401147,"pitch":-134.57536365437323,"roll":56.80452649936771},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.391"} +{"sensors":[{"euler":{"heading":133.21890618939835,"pitch":134.72112879839509,"roll":26.02434436526284},"location":"Left Knee"},{"euler":{"heading":79.65456234908947,"pitch":104.17344865891427,"roll":32.59576644027195},"location":"Left Ankle"},{"euler":{"heading":61.51996849013763,"pitch":-3.466578968616356,"roll":-1.7916400166938735},"location":"Right Ankle"},{"euler":{"heading":103.5456289403095,"pitch":-157.21457667829438,"roll":57.87314981032354},"location":"Right Hip"},{"euler":{"heading":126.56905334634119,"pitch":-121.7235265257476,"roll":-31.527517579431404},"location":"Right Knee"},{"euler":{"heading":62.480077430361035,"pitch":-134.52407728893593,"roll":55.067823849430944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.492"} +{"sensors":[{"euler":{"heading":152.1720155704585,"pitch":137.0552659185556,"roll":27.55315992873656},"location":"Left Knee"},{"euler":{"heading":75.49535611418054,"pitch":102.91235379302285,"roll":29.061189796244758},"location":"Left Ankle"},{"euler":{"heading":60.47422164112387,"pitch":-3.0824210717547205,"roll":-2.2812260150244863},"location":"Right Ankle"},{"euler":{"heading":103.35981604627855,"pitch":-157.87436901046493,"roll":58.72333482929119},"location":"Right Hip"},{"euler":{"heading":128.54339801170707,"pitch":-122.31992387317284,"roll":-32.674765821488265},"location":"Right Knee"},{"euler":{"heading":58.89456968732493,"pitch":-133.44666956004232,"roll":54.81104146448785},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.593"} +{"sensors":[{"euler":{"heading":171.10481401341266,"pitch":138.15598932670002,"roll":28.735343935862904},"location":"Left Knee"},{"euler":{"heading":73.27707050276248,"pitch":102.39611841372057,"roll":27.11757081662028},"location":"Left Ankle"},{"euler":{"heading":58.22054947701149,"pitch":-3.1929289645792487,"roll":-2.790603413522038},"location":"Right Ankle"},{"euler":{"heading":103.73633444165071,"pitch":-158.28068210941845,"roll":59.344751346362074},"location":"Right Hip"},{"euler":{"heading":131.02655821053636,"pitch":-122.96293148585556,"roll":-34.844789239339434},"location":"Right Knee"},{"euler":{"heading":55.673862718592446,"pitch":-132.9395026040381,"roll":54.56118731803907},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.693"} +{"sensors":[{"euler":{"heading":189.1818326120714,"pitch":138.32789039403002,"roll":29.618059542276615},"location":"Left Knee"},{"euler":{"heading":72.21186345248624,"pitch":102.25025657234852,"roll":26.037063734958252},"location":"Left Ankle"},{"euler":{"heading":54.56099452931034,"pitch":-3.398636068121324,"roll":-3.386543072169834},"location":"Right Ankle"},{"euler":{"heading":105.19395099748564,"pitch":-157.6838638984766,"roll":59.14152621172587},"location":"Right Hip"},{"euler":{"heading":133.69890238948273,"pitch":-124.37288833727001,"roll":-37.23531031540549},"location":"Right Knee"},{"euler":{"heading":53.300226446733205,"pitch":-132.82680234363428,"roll":54.71756858623516},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.794"} +{"sensors":[{"euler":{"heading":205.69489935086426,"pitch":138.08260135462703,"roll":30.262503588048954},"location":"Left Knee"},{"euler":{"heading":72.77192710723762,"pitch":102.26898091511367,"roll":26.145857361462426},"location":"Left Ankle"},{"euler":{"heading":52.05489507637931,"pitch":-3.733772461309192,"roll":-3.622888764952851},"location":"Right Ankle"},{"euler":{"heading":106.82455589773708,"pitch":-156.67172750862895,"roll":58.321123590553285},"location":"Right Hip"},{"euler":{"heading":134.89776215053445,"pitch":-124.87309950354302,"roll":-38.730529283864946},"location":"Right Knee"},{"euler":{"heading":51.226453802059886,"pitch":-133.51287210927086,"roll":54.93956172761165},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.894"} +{"sensors":[{"euler":{"heading":185.21915941577785,"pitch":137.39934121916434,"roll":30.67375322924406},"location":"Left Knee"},{"euler":{"heading":73.50098439651386,"pitch":102.42333282360232,"roll":26.456271625316184},"location":"Left Ankle"},{"euler":{"heading":52.06815556874138,"pitch":-4.279145215178272,"roll":-3.3168498884575657},"location":"Right Ankle"},{"euler":{"heading":108.05460030796337,"pitch":-155.81080475776605,"roll":57.13901123149795},"location":"Right Hip"},{"euler":{"heading":133.557985935481,"pitch":-123.95453955318871,"roll":-38.46372635547846},"location":"Right Knee"},{"euler":{"heading":49.7225584218539,"pitch":-134.73658489834378,"roll":55.32060555485048},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.995"} +{"sensors":[{"euler":{"heading":167.54724347420006,"pitch":136.39690709724792,"roll":30.650127906319653},"location":"Left Knee"},{"euler":{"heading":74.44463595686247,"pitch":102.66849954124208,"roll":27.154394462784566},"location":"Left Ankle"},{"euler":{"heading":54.592590011867244,"pitch":-4.638730693660445,"roll":-2.785164899611809},"location":"Right Ankle"},{"euler":{"heading":108.41789027716703,"pitch":-155.55472428198945,"roll":55.96886010834816},"location":"Right Hip"},{"euler":{"heading":130.52093734193292,"pitch":-122.53408559786985,"roll":-36.47985371993061},"location":"Right Knee"},{"euler":{"heading":48.550302579668504,"pitch":-136.3129264085094,"roll":55.80104499936544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.96"} +{"sensors":[{"euler":{"heading":152.29251912678006,"pitch":135.23846638752312,"roll":30.097615115687688},"location":"Left Knee"},{"euler":{"heading":76.05642236117623,"pitch":103.06414958711787,"roll":28.47020501650611},"location":"Left Ankle"},{"euler":{"heading":57.47708101068052,"pitch":-4.962357624294402,"roll":-2.0128984096506284},"location":"Right Ankle"},{"euler":{"heading":107.50110124945033,"pitch":-155.7117518537905,"roll":55.48447409751334},"location":"Right Hip"},{"euler":{"heading":127.00634360773962,"pitch":-121.24942703808287,"roll":-33.781868347937554},"location":"Right Knee"},{"euler":{"heading":47.82027232170165,"pitch":-138.26913376765847,"roll":56.41469049942889},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.197"} +{"sensors":[{"euler":{"heading":139.58826721410207,"pitch":134.02711974877082,"roll":28.71285360411892},"location":"Left Knee"},{"euler":{"heading":78.33203012505862,"pitch":103.59523462840609,"roll":30.7356845148555},"location":"Left Ankle"},{"euler":{"heading":59.141872909612474,"pitch":-4.759871861864962,"roll":-1.8241085686855656},"location":"Right Ankle"},{"euler":{"heading":106.4697411245053,"pitch":-155.96557666841144,"roll":55.267276687762006},"location":"Right Hip"},{"euler":{"heading":124.64945924696566,"pitch":-120.90573433427458,"roll":-31.9349315131438},"location":"Right Knee"},{"euler":{"heading":47.350745089531486,"pitch":-140.02347039089264,"roll":57.060721449486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.298"} +{"sensors":[{"euler":{"heading":129.79194049269188,"pitch":132.91815777389374,"roll":26.422818243707027},"location":"Left Knee"},{"euler":{"heading":81.28632711255275,"pitch":105.57946116556548,"roll":33.84336606336995},"location":"Left Ankle"},{"euler":{"heading":60.06518561865123,"pitch":-4.496384675678466,"roll":-1.735447711817009},"location":"Right Ankle"},{"euler":{"heading":105.57901701205478,"pitch":-156.1877690015703,"roll":55.47179901898581},"location":"Right Hip"},{"euler":{"heading":124.0595133222691,"pitch":-120.79641090084714,"roll":-30.99768836182942},"location":"Right Knee"},{"euler":{"heading":45.446920580578336,"pitch":-139.5211233518034,"roll":57.2233993045374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.399"} +{"sensors":[{"euler":{"heading":121.06899644342269,"pitch":132.25134199650438,"roll":24.430536419336324},"location":"Left Knee"},{"euler":{"heading":82.77644440129748,"pitch":105.53401504900893,"roll":36.04652945703295},"location":"Left Ankle"},{"euler":{"heading":60.5461670567861,"pitch":-4.1029962081106195,"roll":-1.8619029406353083},"location":"Right Ankle"},{"euler":{"heading":104.9836153108493,"pitch":-156.27524210141328,"roll":56.03711911708723},"location":"Right Hip"},{"euler":{"heading":124.34106199004219,"pitch":-120.91676981076243,"roll":-30.62916952564648},"location":"Right Knee"},{"euler":{"heading":43.064728522520504,"pitch":-138.00651101662305,"roll":56.801059374083664},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.499"} +{"sensors":[{"euler":{"heading":110.58084679908043,"pitch":132.86370779685393,"roll":24.037482777402694},"location":"Left Knee"},{"euler":{"heading":81.67379996116773,"pitch":104.40561354410804,"roll":35.63562651132966},"location":"Left Ankle"},{"euler":{"heading":60.64780035110749,"pitch":-3.673946587299558,"roll":-2.1882126465717775},"location":"Right Ankle"},{"euler":{"heading":104.71650377976438,"pitch":-156.30396789127195,"roll":56.73340720537851},"location":"Right Hip"},{"euler":{"heading":125.06945579103797,"pitch":-121.13134282968619,"roll":-30.71000257308183},"location":"Right Knee"},{"euler":{"heading":40.602005670268454,"pitch":-136.19335991496075,"roll":56.0647034366753},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.599"} +{"sensors":[{"euler":{"heading":133.0352621191724,"pitch":134.82733701716853,"roll":25.296234499662425},"location":"Left Knee"},{"euler":{"heading":77.93766996505097,"pitch":103.24630218969723,"roll":32.5783138601967},"location":"Left Ankle"},{"euler":{"heading":60.289270315996745,"pitch":-3.244051928569602,"roll":-2.5006413819146},"location":"Right Ankle"},{"euler":{"heading":104.46360340178795,"pitch":-156.59232110214475,"roll":57.50381648484066},"location":"Right Hip"},{"euler":{"heading":126.40626021193417,"pitch":-121.54945854671757,"roll":-31.22025231577365},"location":"Right Knee"},{"euler":{"heading":38.60430510324161,"pitch":-134.6115239234647,"roll":55.476983093007775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.700"} +{"sensors":[{"euler":{"heading":151.91298590725515,"pitch":137.2696033154517,"roll":26.897861049696186},"location":"Left Knee"},{"euler":{"heading":74.02515296854587,"pitch":102.33417197072751,"roll":29.06423247417703},"location":"Left Ankle"},{"euler":{"heading":59.14784328439708,"pitch":-2.775896735712642,"roll":-3.13182724372314},"location":"Right Ankle"},{"euler":{"heading":104.36099306160915,"pitch":-157.15183899193028,"roll":58.3346848363566},"location":"Right Hip"},{"euler":{"heading":128.44063419074075,"pitch":-122.11951269204582,"roll":-32.423227084196284},"location":"Right Knee"},{"euler":{"heading":37.44387459291745,"pitch":-133.7878715311182,"roll":55.110534783706996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.800"} +{"sensors":[{"euler":{"heading":170.77793731652963,"pitch":138.5238929839065,"roll":28.20807494472657},"location":"Left Knee"},{"euler":{"heading":71.97263767169127,"pitch":102.04450477365475,"roll":26.926559226759327},"location":"Left Ankle"},{"euler":{"heading":56.783058955957365,"pitch":-2.754557062141378,"roll":-3.712394519350826},"location":"Right Ankle"},{"euler":{"heading":104.62489375544824,"pitch":-157.83665509273726,"roll":58.994966352720944},"location":"Right Hip"},{"euler":{"heading":130.92157077166667,"pitch":-122.65756142284124,"roll":-34.53090437577666},"location":"Right Knee"},{"euler":{"heading":36.76823713362571,"pitch":-133.3403343780064,"roll":55.0057313053363},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.901"} +{"sensors":[{"euler":{"heading":188.89389358487668,"pitch":138.75900368551586,"roll":29.21226745025391},"location":"Left Knee"},{"euler":{"heading":71.02537390452216,"pitch":102.05880429628928,"roll":25.771403304083396},"location":"Left Ankle"},{"euler":{"heading":53.117253060361634,"pitch":-2.9916013559272403,"roll":-4.547405067415744},"location":"Right Ankle"},{"euler":{"heading":106.03740437990342,"pitch":-157.52173958346353,"roll":58.89546971744885},"location":"Right Hip"},{"euler":{"heading":133.7419136945,"pitch":-124.16680528055713,"roll":-37.027813938198996},"location":"Right Knee"},{"euler":{"heading":36.49766342026314,"pitch":-133.20630094020575,"roll":55.192658174802666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.2"} +{"sensors":[{"euler":{"heading":205.992004226389,"pitch":138.2831033169643,"roll":30.016040705228523},"location":"Left Knee"},{"euler":{"heading":71.18533651406995,"pitch":102.34042386666036,"roll":25.338012973675056},"location":"Left Ankle"},{"euler":{"heading":49.98677775432547,"pitch":-3.5361912203345165,"roll":-4.936414560674169},"location":"Right Ankle"},{"euler":{"heading":107.87741394191309,"pitch":-156.57581562511717,"roll":58.05592274570397},"location":"Right Hip"},{"euler":{"heading":135.08647232505,"pitch":-124.58137475250142,"roll":-38.875032544379096},"location":"Right Knee"},{"euler":{"heading":36.69789707823683,"pitch":-133.85442084618518,"roll":55.5296423573224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.103"} +{"sensors":[{"euler":{"heading":185.84280380375012,"pitch":137.41104298526787,"roll":30.583186634705672},"location":"Left Knee"},{"euler":{"heading":72.05430286266295,"pitch":102.67513147999432,"roll":25.472961676307552},"location":"Left Ankle"},{"euler":{"heading":49.21309997889293,"pitch":-4.113822098301065,"roll":-4.936523104606753},"location":"Right Ankle"},{"euler":{"heading":109.47717254772179,"pitch":-155.72448406260546,"roll":56.700330471133576},"location":"Right Hip"},{"euler":{"heading":134.30907509254502,"pitch":-123.79823727725127,"roll":-39.050029289941186},"location":"Right Knee"},{"euler":{"heading":37.13435737041315,"pitch":-135.12522876156666,"roll":55.98292812159016},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.204"} +{"sensors":[{"euler":{"heading":168.2835234233751,"pitch":136.30743868674108,"roll":30.712367971235107},"location":"Left Knee"},{"euler":{"heading":73.11137257639666,"pitch":103.0326183319949,"roll":25.925665508676797},"location":"Left Ankle"},{"euler":{"heading":51.28553998100364,"pitch":-4.677439888470959,"roll":-4.299120794146078},"location":"Right Ankle"},{"euler":{"heading":110.54820529294962,"pitch":-155.2207856563449,"roll":55.25529742402022},"location":"Right Hip"},{"euler":{"heading":131.4469175832905,"pitch":-122.29966354952614,"roll":-37.30127636094707},"location":"Right Knee"},{"euler":{"heading":37.552171633371835,"pitch":-136.78770588541,"roll":56.47838530943115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.304"} +{"sensors":[{"euler":{"heading":153.0739210810376,"pitch":135.06419481806697,"roll":30.316131174111597},"location":"Left Knee"},{"euler":{"heading":74.500235318757,"pitch":103.44185649879542,"roll":26.851848957809118},"location":"Left Ankle"},{"euler":{"heading":54.413235982903274,"pitch":-4.922195899623864,"roll":-3.3442087147314705},"location":"Right Ankle"},{"euler":{"heading":109.92463476365467,"pitch":-155.21745709071044,"roll":54.4797676816182},"location":"Right Hip"},{"euler":{"heading":127.64597582496147,"pitch":-121.10719719457353,"roll":-34.56489872485236},"location":"Right Knee"},{"euler":{"heading":38.10320447003465,"pitch":-138.858935296869,"roll":57.06179677848804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.405"} +{"sensors":[{"euler":{"heading":140.09777897293387,"pitch":133.82027533626027,"roll":29.203268056700438},"location":"Left Knee"},{"euler":{"heading":76.45021178688131,"pitch":104.01017084891589,"roll":28.635414062028207},"location":"Left Ankle"},{"euler":{"heading":56.73441238461295,"pitch":-4.836226309661478,"roll":-2.7972878432583235},"location":"Right Ankle"},{"euler":{"heading":108.3884212872892,"pitch":-155.7019613816394,"roll":54.28179091345638},"location":"Right Hip"},{"euler":{"heading":125.02512824246531,"pitch":-120.64647747511619,"roll":-32.45215885236713},"location":"Right Knee"},{"euler":{"heading":38.90538402303118,"pitch":-141.1792917671821,"roll":57.68686710063923},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.506"} +{"sensors":[{"euler":{"heading":129.96925107564047,"pitch":132.78824780263423,"roll":26.995441251030392},"location":"Left Knee"},{"euler":{"heading":79.36144060819319,"pitch":105.8466537640243,"roll":31.834372655825387},"location":"Left Ankle"},{"euler":{"heading":58.00472114615166,"pitch":-4.677603678695331,"roll":-2.605059058932491},"location":"Right Ankle"},{"euler":{"heading":107.3870791585603,"pitch":-156.01301524347545,"roll":54.459861822110746},"location":"Right Hip"},{"euler":{"heading":124.1288654182188,"pitch":-120.45057972760458,"roll":-31.350692967130417},"location":"Right Knee"},{"euler":{"heading":38.30859562072807,"pitch":-141.3051125904639,"roll":57.91193039057531},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.607"} +{"sensors":[{"euler":{"heading":121.55982596807644,"pitch":131.8281730223708,"roll":24.764647125927354},"location":"Left Knee"},{"euler":{"heading":81.98154654737388,"pitch":106.40573838762187,"roll":34.98218539024285},"location":"Left Ankle"},{"euler":{"heading":58.94174903153649,"pitch":-4.484843310825798,"roll":-2.550803153039242},"location":"Right Ankle"},{"euler":{"heading":106.32337124270427,"pitch":-156.4367137191279,"roll":55.07012563989967},"location":"Right Hip"},{"euler":{"heading":124.13472887639692,"pitch":-120.50552175484412,"roll":-30.846873670417377},"location":"Right Knee"},{"euler":{"heading":36.846486058655266,"pitch":-139.4308513314175,"roll":57.67073735151777},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.708"} +{"sensors":[{"euler":{"heading":112.2288433712688,"pitch":131.83910572013372,"roll":23.919432413334622},"location":"Left Knee"},{"euler":{"heading":82.5708918926365,"pitch":105.47766454885969,"roll":35.715216851218564},"location":"Left Ankle"},{"euler":{"heading":59.51632412838284,"pitch":-4.136358979743218,"roll":-2.683222837735318},"location":"Right Ankle"},{"euler":{"heading":105.64728411843384,"pitch":-156.65554234721515,"roll":55.819363075909706},"location":"Right Hip"},{"euler":{"heading":124.79000598875723,"pitch":-120.79246957935972,"roll":-30.79968630337564},"location":"Right Knee"},{"euler":{"heading":34.97433745278974,"pitch":-137.33776619827574,"roll":56.847413616366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.808"} +{"sensors":[{"euler":{"heading":135.18095903414192,"pitch":133.44269514812035,"roll":24.971239172001162},"location":"Left Knee"},{"euler":{"heading":79.53880270337284,"pitch":104.21114809397372,"roll":33.49994516609671},"location":"Left Ankle"},{"euler":{"heading":59.58344171554455,"pitch":-3.697723081768896,"roll":-2.839900553961786},"location":"Right Ankle"},{"euler":{"heading":105.15130570659048,"pitch":-156.94623811249366,"roll":56.643676768318734},"location":"Right Hip"},{"euler":{"heading":126.06100538988152,"pitch":-121.26322262142375,"roll":-31.219717673038076},"location":"Right Knee"},{"euler":{"heading":33.30190370751077,"pitch":-135.3539895784482,"roll":56.1064222547294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.908"} +{"sensors":[{"euler":{"heading":154.05036313072773,"pitch":135.9234256333083,"roll":26.636615254801047},"location":"Left Knee"},{"euler":{"heading":75.33492243303556,"pitch":102.97128328457636,"roll":29.862450649487037},"location":"Left Ankle"},{"euler":{"heading":58.9125975439901,"pitch":-3.1467007735920065,"roll":-3.3996604985656074},"location":"Right Ankle"},{"euler":{"heading":104.85492513593144,"pitch":-157.3953643012443,"roll":57.523059091486864},"location":"Right Hip"},{"euler":{"heading":127.95490485089337,"pitch":-121.83065035928138,"roll":-32.228995905734266},"location":"Right Knee"},{"euler":{"heading":32.57171333675969,"pitch":-134.21234062060338,"roll":55.67078002925646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.10"} +{"sensors":[{"euler":{"heading":172.26407681765497,"pitch":137.5248330699775,"roll":28.085453729320943},"location":"Left Knee"},{"euler":{"heading":72.501430189732,"pitch":102.32415495611873,"roll":27.301205584538334},"location":"Left Ankle"},{"euler":{"heading":56.990087789591094,"pitch":-2.994530696232806,"roll":-3.953444448709047},"location":"Right Ankle"},{"euler":{"heading":105.04443262233829,"pitch":-157.8183278711199,"roll":58.208253182338176},"location":"Right Hip"},{"euler":{"heading":130.40316436580403,"pitch":-122.39758532335324,"roll":-34.12484631516084},"location":"Right Knee"},{"euler":{"heading":32.25204200308372,"pitch":-133.56610655854305,"roll":55.45370202633082},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.110"} +{"sensors":[{"euler":{"heading":189.78141913588948,"pitch":138.09109976297975,"roll":29.164408356388847},"location":"Left Knee"},{"euler":{"heading":71.0825371707588,"pitch":101.97298946050685,"roll":25.9460850260845},"location":"Left Ankle"},{"euler":{"heading":53.516079010631984,"pitch":-3.0325776266095255,"roll":-4.7018500038381426},"location":"Right Ankle"},{"euler":{"heading":106.18373936010447,"pitch":-157.2739950840079,"roll":58.08742786410436},"location":"Right Hip"},{"euler":{"heading":133.11909792922364,"pitch":-123.85782679101793,"roll":-36.506111683644754},"location":"Right Knee"},{"euler":{"heading":31.93308780277535,"pitch":-133.14074590268876,"roll":55.439581823697736},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.211"} +{"sensors":[{"euler":{"heading":206.15952722230054,"pitch":138.05698978668178,"roll":29.972967520749965},"location":"Left Knee"},{"euler":{"heading":70.69303345368292,"pitch":101.85069051445618,"roll":25.32022652347605},"location":"Left Ankle"},{"euler":{"heading":50.558221109568784,"pitch":-3.391819863948573,"roll":-5.037915003454329},"location":"Right Ankle"},{"euler":{"heading":107.67161542409403,"pitch":-156.3590955756071,"roll":57.25368507769393},"location":"Right Hip"},{"euler":{"heading":135.11968813630128,"pitch":-124.71579411191614,"roll":-38.49925051528028},"location":"Right Knee"},{"euler":{"heading":31.914779022497818,"pitch":-133.3391713124199,"roll":55.62687364132797},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.311"} +{"sensors":[{"euler":{"heading":221.2185745000705,"pitch":137.7200408080136,"roll":30.44442076867497},"location":"Left Knee"},{"euler":{"heading":71.01748010831463,"pitch":101.71562146301056,"roll":25.41945387112845},"location":"Left Ankle"},{"euler":{"heading":50.07739899861191,"pitch":-3.9276378775537157,"roll":-4.890373503108896},"location":"Right Ankle"},{"euler":{"heading":109.03570388168464,"pitch":-155.56068601804643,"roll":56.04706656992454},"location":"Right Hip"},{"euler":{"heading":134.68896932267117,"pitch":-124.11921470072453,"roll":-38.78682546375226},"location":"Right Knee"},{"euler":{"heading":32.10455112024804,"pitch":-134.1490041811779,"roll":55.96418627719517},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.412"} +{"sensors":[{"euler":{"heading":199.37171705006347,"pitch":137.04803672721226,"roll":30.599978691807472},"location":"Left Knee"},{"euler":{"heading":71.58448209748316,"pitch":101.60030931670951,"roll":25.82125848401561},"location":"Left Ankle"},{"euler":{"heading":52.15715909875072,"pitch":-4.453624089798344,"roll":-4.207586152798007},"location":"Right Ankle"},{"euler":{"heading":109.58838349351618,"pitch":-155.22336741624179,"roll":54.917359912932085},"location":"Right Hip"},{"euler":{"heading":132.01382239040404,"pitch":-122.72604323065207,"roll":-37.21439291737703},"location":"Right Knee"},{"euler":{"heading":32.64409600822324,"pitch":-135.56535376306013,"roll":56.39901764947565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.512"} +{"sensors":[{"euler":{"heading":180.36579534505714,"pitch":136.17448305449105,"roll":30.258730822626724},"location":"Left Knee"},{"euler":{"heading":72.66353388773484,"pitch":101.60902838503857,"roll":26.75788263561405},"location":"Left Ankle"},{"euler":{"heading":55.23519318887565,"pitch":-5.04576168081851,"roll":-3.3055775375182064},"location":"Right Ankle"},{"euler":{"heading":109.08579514416456,"pitch":-155.2385306746176,"roll":54.413123921638885},"location":"Right Hip"},{"euler":{"heading":128.45619015136364,"pitch":-121.05968890758686,"roll":-34.64295362563933},"location":"Right Knee"},{"euler":{"heading":33.38593640740091,"pitch":-137.3900683867541,"roll":56.940365884528084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.613"} +{"sensors":[{"euler":{"heading":164.14796581055143,"pitch":135.15078474904195,"roll":29.270357740364055},"location":"Left Knee"},{"euler":{"heading":74.42843049896136,"pitch":101.86687554653471,"roll":28.488344372052644},"location":"Left Ankle"},{"euler":{"heading":57.79917386998808,"pitch":-5.291185512736659,"roll":-2.6625197837663857},"location":"Right Ankle"},{"euler":{"heading":107.84596562974811,"pitch":-155.58342760715587,"roll":54.390561529475},"location":"Right Hip"},{"euler":{"heading":125.68557113622728,"pitch":-120.16622001682818,"roll":-32.4911582630754},"location":"Right Knee"},{"euler":{"heading":34.49109276666082,"pitch":-139.6010615480787,"roll":57.50882929607528},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.714"} +{"sensors":[{"euler":{"heading":151.3769192294963,"pitch":134.04820627413775,"roll":27.21832196632765},"location":"Left Knee"},{"euler":{"heading":76.91683744906523,"pitch":103.42393799188125,"roll":31.095759934847383},"location":"Left Ankle"},{"euler":{"heading":59.36925648298928,"pitch":-5.305816961462994,"roll":-2.4275178053897473},"location":"Right Ankle"},{"euler":{"heading":107.0863690667733,"pitch":-155.8250848464403,"roll":54.5765053765275},"location":"Right Hip"},{"euler":{"heading":124.27951402260456,"pitch":-119.76834801514536,"roll":-31.154542436767862},"location":"Right Knee"},{"euler":{"heading":34.53573348999474,"pitch":-138.54095539327082,"roll":57.76419636646775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.815"} +{"sensors":[{"euler":{"heading":140.7142273065467,"pitch":133.04963564672397,"roll":25.096489769694887},"location":"Left Knee"},{"euler":{"heading":79.1564037041587,"pitch":104.81904419269313,"roll":33.598683941362644},"location":"Left Ankle"},{"euler":{"heading":60.463580834690354,"pitch":-5.231485265316694,"roll":-2.4910160248507727},"location":"Right Ankle"},{"euler":{"heading":106.22148216009597,"pitch":-156.09882636179626,"roll":55.162604838874756},"location":"Right Hip"},{"euler":{"heading":124.03281262034412,"pitch":-119.69151321363084,"roll":-30.520338193091074},"location":"Right Knee"},{"euler":{"heading":33.682160140995265,"pitch":-137.18060985394374,"roll":57.65027672982098},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.916"} +{"sensors":[{"euler":{"heading":129.16155457589204,"pitch":133.02592208205158,"roll":24.2930907927254},"location":"Left Knee"},{"euler":{"heading":79.59701333374284,"pitch":104.33088977342382,"roll":34.29506554722638},"location":"Left Ankle"},{"euler":{"heading":61.310972751221314,"pitch":-5.220836738785025,"roll":-2.735664422365695},"location":"Right Ankle"},{"euler":{"heading":105.73683394408638,"pitch":-156.36394372561662,"roll":55.865094354987285},"location":"Right Hip"},{"euler":{"heading":124.38578135830971,"pitch":-119.59736189226776,"roll":-30.43705437378197},"location":"Right Knee"},{"euler":{"heading":32.288944126895736,"pitch":-135.68129886854936,"roll":56.966499056838884},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.17"} +{"sensors":[{"euler":{"heading":150.43289911830283,"pitch":134.39832987384642,"roll":25.276281713452864},"location":"Left Knee"},{"euler":{"heading":77.21856200036855,"pitch":103.23530079608145,"roll":32.465558992503745},"location":"Left Ankle"},{"euler":{"heading":61.63612547609918,"pitch":-5.161253064906523,"roll":-2.9245979801291258},"location":"Right Ankle"},{"euler":{"heading":105.53815054967775,"pitch":-156.67754935305496,"roll":56.57858491948856},"location":"Right Hip"},{"euler":{"heading":125.27220322247875,"pitch":-119.57512570304098,"roll":-30.830848936403772},"location":"Right Knee"},{"euler":{"heading":30.941299714206163,"pitch":-134.11316898169443,"roll":56.269849151155},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.117"} +{"sensors":[{"euler":{"heading":167.54585920647256,"pitch":136.79599688646178,"roll":26.91115354210758},"location":"Left Knee"},{"euler":{"heading":73.4217058003317,"pitch":102.0180207164733,"roll":29.05650309325337},"location":"Left Ankle"},{"euler":{"heading":61.20376292848927,"pitch":-4.920127758415871,"roll":-3.438388182116213},"location":"Right Ankle"},{"euler":{"heading":105.44058549470998,"pitch":-157.04104441774948,"roll":57.383226427539704},"location":"Right Hip"},{"euler":{"heading":126.84498290023089,"pitch":-119.79261313273689,"roll":-31.754014042763398},"location":"Right Knee"},{"euler":{"heading":30.222169742785546,"pitch":-133.033102083525,"roll":55.7491142360395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.218"} +{"sensors":[{"euler":{"heading":183.9225232858253,"pitch":138.6038971978156,"roll":28.332538187896823},"location":"Left Knee"},{"euler":{"heading":70.46078522029852,"pitch":101.30371864482598,"roll":26.325852783928035},"location":"Left Ankle"},{"euler":{"heading":58.34588663564035,"pitch":-4.740614982574284,"roll":-4.082049363904591},"location":"Right Ankle"},{"euler":{"heading":105.621526945239,"pitch":-157.68068997597453,"roll":58.157403784785735},"location":"Right Hip"},{"euler":{"heading":128.9729846102078,"pitch":-120.1008518194632,"roll":-33.36611263848706},"location":"Right Knee"},{"euler":{"heading":30.168702768506993,"pitch":-132.3172918751725,"roll":55.44295281243555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.319"} +{"sensors":[{"euler":{"heading":200.18027095724278,"pitch":139.18725747803404,"roll":29.46803436910714},"location":"Left Knee"},{"euler":{"heading":69.11470669826866,"pitch":101.08584678034339,"roll":24.86201750553523},"location":"Left Ankle"},{"euler":{"heading":55.423797972076315,"pitch":-4.9603034843168565,"roll":-4.711344427514133},"location":"Right Ankle"},{"euler":{"heading":106.3968742507151,"pitch":-157.62512097837708,"roll":58.472913406307164},"location":"Right Hip"},{"euler":{"heading":131.631936149187,"pitch":-120.84076663751688,"roll":-35.929501374638356},"location":"Right Knee"},{"euler":{"heading":30.070582491656292,"pitch":-131.84181268765525,"roll":55.379907531191996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.422"} +{"sensors":[{"euler":{"heading":215.3184938615185,"pitch":139.16853173023063,"roll":30.32748093219643},"location":"Left Knee"},{"euler":{"heading":68.3657360284418,"pitch":100.85226210230906,"roll":23.92581575498171},"location":"Left Ankle"},{"euler":{"heading":52.043918174868686,"pitch":-5.076773135885171,"roll":-5.26520998476272},"location":"Right Ankle"},{"euler":{"heading":107.97593682564359,"pitch":-156.76885888053937,"roll":57.806872065676444},"location":"Right Hip"},{"euler":{"heading":133.9312425342683,"pitch":-122.0316899737652,"roll":-38.11780123717452},"location":"Right Knee"},{"euler":{"heading":30.357274242490664,"pitch":-132.41388141888973,"roll":55.5169167780728},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.523"} +{"sensors":[{"euler":{"heading":229.19914447536667,"pitch":138.80792855720756,"roll":30.91348283897679},"location":"Left Knee"},{"euler":{"heading":68.54791242559763,"pitch":100.71078589207815,"roll":23.745734179483538},"location":"Left Ankle"},{"euler":{"heading":50.71452635738182,"pitch":-5.400345822296654,"roll":-5.357438986286448},"location":"Right Ankle"},{"euler":{"heading":109.47834314307923,"pitch":-155.82947299248545,"roll":56.6699348591088},"location":"Right Hip"},{"euler":{"heading":133.70686828084146,"pitch":-121.77852097638868,"roll":-38.68102111345707},"location":"Right Knee"},{"euler":{"heading":30.9215468182416,"pitch":-133.63499327700075,"roll":55.83397510026552},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.626"} +{"sensors":[{"euler":{"heading":206.27923002783,"pitch":138.1083857014868,"roll":31.159634555079116},"location":"Left Knee"},{"euler":{"heading":69.00562118303787,"pitch":100.60845730287033,"roll":23.939910761535184},"location":"Left Ankle"},{"euler":{"heading":51.98682372164364,"pitch":-5.860311240066989,"roll":-4.796695087657803},"location":"Right Ankle"},{"euler":{"heading":110.1117588287713,"pitch":-155.43402569323692,"roll":55.47169137319792},"location":"Right Hip"},{"euler":{"heading":131.34243145275732,"pitch":-120.60691887874981,"roll":-37.375419002111364},"location":"Right Knee"},{"euler":{"heading":31.43564213641744,"pitch":-135.10899394930067,"roll":56.25057759023897},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.726"} +{"sensors":[{"euler":{"heading":186.407557025047,"pitch":137.12879713133813,"roll":30.949921099571206},"location":"Left Knee"},{"euler":{"heading":70.07380906473409,"pitch":100.6601115725833,"roll":24.739669685381667},"location":"Left Ankle"},{"euler":{"heading":55.35689134947928,"pitch":-6.04303011606029,"roll":-4.0482755788920235},"location":"Right Ankle"},{"euler":{"heading":109.70683294589418,"pitch":-155.32187312391324,"roll":54.83077223587813},"location":"Right Hip"},{"euler":{"heading":127.5956883074816,"pitch":-119.37122699087483,"roll":-34.65662710190023},"location":"Right Knee"},{"euler":{"heading":32.092077922775694,"pitch":-136.7168445543706,"roll":56.86301983121507},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.828"} +{"sensors":[{"euler":{"heading":169.2668013225423,"pitch":136.00341741820432,"roll":30.17367898961409},"location":"Left Knee"},{"euler":{"heading":71.84767815826069,"pitch":100.93785041532497,"roll":26.3344527168435},"location":"Left Ankle"},{"euler":{"heading":58.07120221453135,"pitch":-5.894977104454261,"roll":-3.4059480210028212},"location":"Right Ankle"},{"euler":{"heading":108.23614965130476,"pitch":-155.6646858115219,"roll":54.64144501229032},"location":"Right Hip"},{"euler":{"heading":124.33611947673344,"pitch":-118.83410429178736,"roll":-32.165964391710204},"location":"Right Knee"},{"euler":{"heading":33.02037013049813,"pitch":-138.82016009893354,"roll":57.50796784809357},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.928"} +{"sensors":[{"euler":{"heading":155.12762119028807,"pitch":134.9843256763839,"roll":28.381311090652684},"location":"Left Knee"},{"euler":{"heading":74.02541034243463,"pitch":101.73156537379248,"roll":28.969757445159154},"location":"Left Ankle"},{"euler":{"heading":59.71408199307822,"pitch":-5.674229394008836,"roll":-3.2028532189025394},"location":"Right Ankle"},{"euler":{"heading":107.15628468617429,"pitch":-155.96696723036973,"roll":54.75230051106129},"location":"Right Hip"},{"euler":{"heading":122.5712575290601,"pitch":-118.71319386260862,"roll":-30.593117952539185},"location":"Right Knee"},{"euler":{"heading":33.424583117448314,"pitch":-139.93814408904018,"roll":57.963421063284216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.28"} +{"sensors":[{"euler":{"heading":144.12110907125927,"pitch":133.6983931087455,"roll":26.005679981587413},"location":"Left Knee"},{"euler":{"heading":76.88536930819117,"pitch":103.43965883641323,"roll":32.16028170064324},"location":"Left Ankle"},{"euler":{"heading":60.786423793770396,"pitch":-5.288056454607952,"roll":-3.0888178970122855},"location":"Right Ankle"},{"euler":{"heading":105.85940621755687,"pitch":-156.39527050733278,"roll":55.358320459955166},"location":"Right Hip"},{"euler":{"heading":122.1578817761541,"pitch":-118.94812447634776,"roll":-29.796306157285265},"location":"Right Knee"},{"euler":{"heading":32.419624805703485,"pitch":-138.28182968013616,"roll":57.9608289569558},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.129"} +{"sensors":[{"euler":{"heading":133.24024816413333,"pitch":133.47230379787095,"roll":24.642611983428672},"location":"Left Knee"},{"euler":{"heading":78.24683237737206,"pitch":102.98319295277192,"roll":33.731753530578914},"location":"Left Ankle"},{"euler":{"heading":61.43903141439336,"pitch":-4.959250809147157,"roll":-3.186186107311057},"location":"Right Ankle"},{"euler":{"heading":105.01721559580119,"pitch":-156.6369934565995,"roll":56.09123841395966},"location":"Right Hip"},{"euler":{"heading":122.59834359853869,"pitch":-119.23456202871299,"roll":-29.541675541556742},"location":"Right Knee"},{"euler":{"heading":30.771412325133138,"pitch":-136.41614671212255,"roll":57.27724606126023},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.230"} +{"sensors":[{"euler":{"heading":154.69122334772,"pitch":134.63757341808386,"roll":25.234600785085803},"location":"Left Knee"},{"euler":{"heading":76.49714913963486,"pitch":101.91612365749472,"roll":32.47107817752102},"location":"Left Ankle"},{"euler":{"heading":61.670128272954024,"pitch":-4.719575728232441,"roll":-3.4113174965799518},"location":"Right Ankle"},{"euler":{"heading":104.60299403622108,"pitch":-156.96079411093956,"roll":56.919614572563695},"location":"Right Hip"},{"euler":{"heading":123.57600923868482,"pitch":-119.4611058258417,"roll":-29.837507987401068},"location":"Right Knee"},{"euler":{"heading":29.256771092619825,"pitch":-134.4245320409103,"roll":56.487021455134204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.331"} +{"sensors":[{"euler":{"heading":171.528351012948,"pitch":136.89881607627547,"roll":26.823640706577223},"location":"Left Knee"},{"euler":{"heading":72.76618422567138,"pitch":100.85576129174525,"roll":29.13647035976892},"location":"Left Ankle"},{"euler":{"heading":61.27811544565862,"pitch":-4.353868155409198,"roll":-3.9076857469219566},"location":"Right Ankle"},{"euler":{"heading":104.41769463259898,"pitch":-157.4272146998456,"roll":57.73390311530733},"location":"Right Hip"},{"euler":{"heading":125.16840831481635,"pitch":-119.83374524325754,"roll":-30.660007188660963},"location":"Right Knee"},{"euler":{"heading":28.43734398335784,"pitch":-132.85082883681926,"roll":55.91956930962078},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.432"} +{"sensors":[{"euler":{"heading":187.0755159116532,"pitch":139.04643446864793,"roll":28.2725266359195},"location":"Left Knee"},{"euler":{"heading":69.47706580310424,"pitch":100.40768516257073,"roll":25.99782332379203},"location":"Left Ankle"},{"euler":{"heading":60.031553901092764,"pitch":-3.9809813398682783,"roll":-4.529417172229761},"location":"Right Ankle"},{"euler":{"heading":104.50717516933908,"pitch":-158.25324322986103,"roll":58.57301280377659},"location":"Right Hip"},{"euler":{"heading":127.22656748333472,"pitch":-120.27537071893178,"roll":-32.11900646979487},"location":"Right Knee"},{"euler":{"heading":28.337359585022057,"pitch":-131.96574595313734,"roll":55.53386237865871},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.532"} +{"sensors":[{"euler":{"heading":202.6742143204879,"pitch":139.90429102178314,"roll":29.464023972327553},"location":"Left Knee"},{"euler":{"heading":67.96060922279382,"pitch":100.27316664631365,"roll":24.335540991412827},"location":"Left Ankle"},{"euler":{"heading":57.54714851098348,"pitch":-4.076633205881451,"roll":-5.051475455006784},"location":"Right Ankle"},{"euler":{"heading":105.00020765240518,"pitch":-158.89666890687494,"roll":59.203211523398934},"location":"Right Hip"},{"euler":{"heading":129.76641073500124,"pitch":-120.8415836470386,"roll":-34.40710582281538},"location":"Right Knee"},{"euler":{"heading":28.309873626519853,"pitch":-131.25667135782362,"roll":55.38672614079284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.633"} +{"sensors":[{"euler":{"heading":217.5442928884391,"pitch":139.95761191960483,"roll":30.311371575094796},"location":"Left Knee"},{"euler":{"heading":67.32704830051443,"pitch":100.2520999816823,"roll":23.476986892271544},"location":"Left Ankle"},{"euler":{"heading":53.792433659885134,"pitch":-4.106469885293306,"roll":-5.715077909506106},"location":"Right Ankle"},{"euler":{"heading":106.18768688716466,"pitch":-158.33825201618745,"roll":59.05789037105904},"location":"Right Hip"},{"euler":{"heading":132.62726966150112,"pitch":-122.52617528233475,"roll":-36.92889524053385},"location":"Right Knee"},{"euler":{"heading":28.541386263867867,"pitch":-130.96225422204125,"roll":55.585553526713554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.734"} +{"sensors":[{"euler":{"heading":231.12736359959518,"pitch":139.66810072764434,"roll":30.861484417585316},"location":"Left Knee"},{"euler":{"heading":67.51309347046299,"pitch":100.27063998351409,"roll":23.279288203044388},"location":"Left Ankle"},{"euler":{"heading":51.34444029389662,"pitch":-4.333322896763975,"roll":-5.931070118555496},"location":"Right Ankle"},{"euler":{"heading":107.6939181984482,"pitch":-157.4231768145687,"roll":58.283351333953135},"location":"Right Hip"},{"euler":{"heading":133.92704269535102,"pitch":-123.19855775410127,"roll":-38.529755716480466},"location":"Right Knee"},{"euler":{"heading":28.82474763748108,"pitch":-131.43477879983712,"roll":55.9207481740422},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.835"} +{"sensors":[{"euler":{"heading":243.90212723963566,"pitch":139.02004065487992,"roll":31.150335975826785},"location":"Left Knee"},{"euler":{"heading":67.99303412341669,"pitch":100.31232598516269,"roll":23.432609382739948},"location":"Left Ankle"},{"euler":{"heading":51.484996264506954,"pitch":-4.806240607087577,"roll":-5.544213106699947},"location":"Right Ankle"},{"euler":{"heading":108.87452637860339,"pitch":-156.63710913311186,"roll":57.09876620055782},"location":"Right Hip"},{"euler":{"heading":132.4530884258159,"pitch":-122.34120197869116,"roll":-38.13303014483242},"location":"Right Knee"},{"euler":{"heading":29.323522873732976,"pitch":-132.64130091985342,"roll":56.28492335663799},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.936"} +{"sensors":[{"euler":{"heading":220.26816451567208,"pitch":137.97428658939194,"roll":31.066552378244108},"location":"Left Knee"},{"euler":{"heading":68.93123071107503,"pitch":100.51234338664642,"roll":23.983098444465956},"location":"Left Ankle"},{"euler":{"heading":53.72399663805626,"pitch":-5.07561654637882,"roll":-4.671041796029953},"location":"Right Ankle"},{"euler":{"heading":109.05582374074305,"pitch":-156.3671482198007,"roll":56.08888958050204},"location":"Right Hip"},{"euler":{"heading":129.1952795832343,"pitch":-121.02583178082205,"roll":-35.91972713034918},"location":"Right Knee"},{"euler":{"heading":30.091170586359677,"pitch":-134.36467082786808,"roll":56.75018102097419},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.37"} +{"sensors":[{"euler":{"heading":199.74134806410487,"pitch":136.67685793045274,"roll":30.4973971404197},"location":"Left Knee"},{"euler":{"heading":70.46310763996753,"pitch":100.89860904798178,"roll":25.134788600019363},"location":"Left Ankle"},{"euler":{"heading":56.47659697425064,"pitch":-5.268054891740938,"roll":-3.8914376164269573},"location":"Right Ankle"},{"euler":{"heading":108.03774136666875,"pitch":-156.56793339782064,"roll":55.61750062245184},"location":"Right Hip"},{"euler":{"heading":125.73200162491088,"pitch":-119.89199860273985,"roll":-33.32775441731426},"location":"Right Knee"},{"euler":{"heading":31.200803527723707,"pitch":-136.56570374508127,"roll":57.36266291887677},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.138"} +{"sensors":[{"euler":{"heading":182.39221325769438,"pitch":135.25917213740746,"roll":29.11640742637773},"location":"Left Knee"},{"euler":{"heading":72.64804687597078,"pitch":101.6212481431836,"roll":27.31505974001743},"location":"Left Ankle"},{"euler":{"heading":57.89143727682558,"pitch":-5.091249402566844,"roll":-3.6272938547842615},"location":"Right Ankle"},{"euler":{"heading":107.19646723000189,"pitch":-156.74864005803857,"roll":55.38700056020666},"location":"Right Hip"},{"euler":{"heading":123.65880146241979,"pitch":-119.56529874246587,"roll":-31.657478975582837},"location":"Right Knee"},{"euler":{"heading":32.474473174951335,"pitch":-138.47788337057315,"roll":58.0326466269891},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.238"} +{"sensors":[{"euler":{"heading":168.37174193192496,"pitch":134.04575492366672,"roll":26.811016683739958},"location":"Left Knee"},{"euler":{"heading":76.3957421883737,"pitch":103.77787332886524,"roll":30.689803766015686},"location":"Left Ankle"},{"euler":{"heading":58.77104354914302,"pitch":-4.66337446231016,"roll":-3.5145644693058355},"location":"Right Ankle"},{"euler":{"heading":106.2768205070017,"pitch":-156.93002605223472,"roll":55.68580050418599},"location":"Right Hip"},{"euler":{"heading":123.04917131617782,"pitch":-119.63376886821929,"roll":-30.747981078024555},"location":"Right Knee"},{"euler":{"heading":31.9270258574562,"pitch":-138.02384503351584,"roll":58.07313196429019},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.339"} +{"sensors":[{"euler":{"heading":155.5220677387325,"pitch":133.50992943130004,"roll":24.992415015365964},"location":"Left Knee"},{"euler":{"heading":78.63116796953634,"pitch":103.65633599597871,"roll":33.12082338941411},"location":"Left Ankle"},{"euler":{"heading":59.26893919422872,"pitch":-4.1282870160791445,"roll":-3.6443580223752523},"location":"Right Ankle"},{"euler":{"heading":105.52413845630153,"pitch":-157.05577344701126,"roll":56.36097045376739},"location":"Right Hip"},{"euler":{"heading":123.53175418456004,"pitch":-119.97664198139736,"roll":-30.460682970222102},"location":"Right Knee"},{"euler":{"heading":30.50932327171058,"pitch":-136.47146053016428,"roll":57.45956876786117},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.440"} +{"sensors":[{"euler":{"heading":175.56361096485924,"pitch":134.34643648817004,"roll":25.16817351382937},"location":"Left Knee"},{"euler":{"heading":77.9055511725827,"pitch":102.67820239638084,"roll":32.8899910504727},"location":"Left Ankle"},{"euler":{"heading":59.51704527480585,"pitch":-3.5654583144712304,"roll":-3.9861722201377274},"location":"Right Ankle"},{"euler":{"heading":105.05297461067137,"pitch":-157.18769610231016,"roll":57.17487340839066},"location":"Right Hip"},{"euler":{"heading":124.57232876610404,"pitch":-120.43522778325763,"roll":-30.62711467319989},"location":"Right Knee"},{"euler":{"heading":28.952140944539522,"pitch":-134.56181447714786,"roll":56.61361189107505},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.541"} +{"sensors":[{"euler":{"heading":190.46349986837333,"pitch":136.45554283935303,"roll":26.701356162446434},"location":"Left Knee"},{"euler":{"heading":74.46499605532443,"pitch":101.57288215674275,"roll":30.06349194542543},"location":"Left Ankle"},{"euler":{"heading":59.24034074732526,"pitch":-2.9776624830241074,"roll":-4.4063049981239555},"location":"Right Ankle"},{"euler":{"heading":104.67892714960425,"pitch":-157.56267649207913,"roll":58.0573860675516},"location":"Right Hip"},{"euler":{"heading":126.30884588949363,"pitch":-121.07920500493186,"roll":-31.3269032058799},"location":"Right Knee"},{"euler":{"heading":27.88817685008557,"pitch":-132.9681330294331,"roll":55.95225070196755},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.642"} +{"sensors":[{"euler":{"heading":203.829649881536,"pitch":138.65998855541773,"roll":28.193720546201792},"location":"Left Knee"},{"euler":{"heading":70.749746449792,"pitch":100.88434394106848,"roll":26.732142750882886},"location":"Left Ankle"},{"euler":{"heading":56.51630667259274,"pitch":-2.4173962347216964,"roll":-5.0344244983115605},"location":"Right Ankle"},{"euler":{"heading":104.48603443464383,"pitch":-158.23765884287124,"roll":59.02664746079644},"location":"Right Hip"},{"euler":{"heading":128.72796130054428,"pitch":-121.84628450443869,"roll":-32.70046288529191},"location":"Right Knee"},{"euler":{"heading":27.518109165077014,"pitch":-132.03381972648978,"roll":55.5257756317708},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.742"} +{"sensors":[{"euler":{"heading":217.75293489338242,"pitch":139.49398969987595,"roll":29.405598491581614},"location":"Left Knee"},{"euler":{"heading":68.8747718048128,"pitch":100.78340954696164,"roll":24.9401784757946},"location":"Left Ankle"},{"euler":{"heading":54.22717600533346,"pitch":-2.469406611249527,"roll":-5.574732048480405},"location":"Right Ankle"},{"euler":{"heading":104.82493099117946,"pitch":-158.8888929585841,"roll":59.7927327147168},"location":"Right Hip"},{"euler":{"heading":131.48016517048984,"pitch":-122.53040605399482,"roll":-34.986666596762724},"location":"Right Knee"},{"euler":{"heading":27.560048248569313,"pitch":-131.44918775384082,"roll":55.31694806859372},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.843"} +{"sensors":[{"euler":{"heading":231.6213914040442,"pitch":139.28209072988835,"roll":30.421288642423455},"location":"Left Knee"},{"euler":{"heading":68.49354462433152,"pitch":101.17381859226548,"roll":24.07741062821514},"location":"Left Ankle"},{"euler":{"heading":50.579458404800114,"pitch":-2.822465950124575,"roll":-6.286008843632364},"location":"Right Ankle"},{"euler":{"heading":106.12368789206151,"pitch":-158.3125036627257,"roll":59.638459443245125},"location":"Right Hip"},{"euler":{"heading":134.38214865344085,"pitch":-124.03361544859536,"roll":-37.65674993708645},"location":"Right Knee"},{"euler":{"heading":27.979043423712383,"pitch":-131.02301897845672,"roll":55.51025326173435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.944"} +{"sensors":[{"euler":{"heading":208.6592522636398,"pitch":138.56638165689952,"roll":31.18540977818111},"location":"Left Knee"},{"euler":{"heading":69.88794016189837,"pitch":101.79393673303893,"roll":24.357169565393626},"location":"Left Ankle"},{"euler":{"heading":48.2902625643201,"pitch":-3.3464693551121174,"roll":-6.676157959269127},"location":"Right Ankle"},{"euler":{"heading":108.21756910285536,"pitch":-157.28125329645314,"roll":58.56211349892062},"location":"Right Hip"},{"euler":{"heading":135.43768378809676,"pitch":-124.14900390373582,"roll":-39.33482494337781},"location":"Right Knee"},{"euler":{"heading":28.649889081341147,"pitch":-131.67696708061106,"roll":55.76547793556092},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.45"} +{"sensors":[{"euler":{"heading":188.46832703727583,"pitch":137.5284934912096,"roll":31.654368800363002},"location":"Left Knee"},{"euler":{"heading":71.05539614570853,"pitch":102.38329305973504,"roll":24.733952608854263},"location":"Left Ankle"},{"euler":{"heading":48.692486307888096,"pitch":-4.086822419600906,"roll":-6.358542163342214},"location":"Right Ankle"},{"euler":{"heading":109.68331219256984,"pitch":-156.64687796680784,"roll":56.999652149028556},"location":"Right Hip"},{"euler":{"heading":133.9376654092871,"pitch":-122.96535351336225,"roll":-39.04509244904003},"location":"Right Knee"},{"euler":{"heading":29.47240017320703,"pitch":-132.88427037254996,"roll":56.10143014200483},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.145"} +{"sensors":[{"euler":{"heading":170.85899433354825,"pitch":136.23189414208863,"roll":31.726431920326704},"location":"Left Knee"},{"euler":{"heading":72.39360653113768,"pitch":103.02621375376154,"roll":25.39180734796884},"location":"Left Ankle"},{"euler":{"heading":51.61073767709929,"pitch":-4.565640177640815,"roll":-5.510187947007993},"location":"Right Ankle"},{"euler":{"heading":110.18998097331286,"pitch":-156.36344017012706,"roll":55.6934369341257},"location":"Right Hip"},{"euler":{"heading":130.38764886835838,"pitch":-121.43131816202603,"roll":-36.80933320413603},"location":"Right Knee"},{"euler":{"heading":30.36266015588633,"pitch":-134.58959333529498,"roll":56.47253712780435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.246"} +{"sensors":[{"euler":{"heading":155.77309490019343,"pitch":134.77745472787976,"roll":31.197538728294035},"location":"Left Knee"},{"euler":{"heading":74.31049587802391,"pitch":103.8423423783854,"roll":26.646376613171956},"location":"Left Ankle"},{"euler":{"heading":54.49341390938936,"pitch":-4.690326159876734,"roll":-4.584169152307194},"location":"Right Ankle"},{"euler":{"heading":109.08348287598159,"pitch":-156.68959615311437,"roll":55.16159324071313},"location":"Right Hip"},{"euler":{"heading":126.50513398152255,"pitch":-120.30693634582343,"roll":-34.00964988372243},"location":"Right Knee"},{"euler":{"heading":31.307644140297697,"pitch":-136.58063400176547,"roll":56.95653341502392},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.347"} +{"sensors":[{"euler":{"heading":143.1082854101741,"pitch":133.37470925509177,"roll":29.721534855464633},"location":"Left Knee"},{"euler":{"heading":76.04819629022153,"pitch":104.47685814054685,"roll":28.475488951854764},"location":"Left Ankle"},{"euler":{"heading":56.51282251845043,"pitch":-4.57754354388906,"roll":-4.182002237076475},"location":"Right Ankle"},{"euler":{"heading":107.78138458838343,"pitch":-157.20813653780294,"roll":55.07043391664182},"location":"Right Hip"},{"euler":{"heading":124.36087058337029,"pitch":-120.0262427112411,"roll":-32.23993489535019},"location":"Right Knee"},{"euler":{"heading":32.15187972626793,"pitch":-138.02257060158894,"roll":57.473380073521525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.448"} +{"sensors":[{"euler":{"heading":133.08495686915668,"pitch":132.31848832958258,"roll":27.36188136991817},"location":"Left Knee"},{"euler":{"heading":79.18712666119939,"pitch":106.34167232649217,"roll":31.67794005666929},"location":"Left Ankle"},{"euler":{"heading":57.83654026660539,"pitch":-4.282289189500154,"roll":-3.9388020133688273},"location":"Right Ankle"},{"euler":{"heading":106.4844961295451,"pitch":-157.71232288402265,"roll":55.438390524977635},"location":"Right Hip"},{"euler":{"heading":123.54978352503326,"pitch":-120.098618440117,"roll":-31.20344140581517},"location":"Right Knee"},{"euler":{"heading":31.317941753641136,"pitch":-137.07031354143004,"roll":57.49479206616938},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.549"} +{"sensors":[{"euler":{"heading":124.05771118224102,"pitch":131.70538949662432,"roll":25.406943232926352},"location":"Left Knee"},{"euler":{"heading":81.22466399507945,"pitch":106.12000509384296,"roll":34.103896051002366},"location":"Left Ankle"},{"euler":{"heading":58.621636239944856,"pitch":-3.8540602705501383,"roll":-3.907421812031945},"location":"Right Ankle"},{"euler":{"heading":105.49229651659059,"pitch":-158.10359059562037,"roll":56.10080147247987},"location":"Right Hip"},{"euler":{"heading":123.95105517252995,"pitch":-120.4825065961053,"roll":-30.833097265233654},"location":"Right Knee"},{"euler":{"heading":29.754897578277024,"pitch":-135.40078218728704,"roll":56.86406285955244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.649"} +{"sensors":[{"euler":{"heading":112.80819006401693,"pitch":132.5723505469619,"roll":25.09124890963372},"location":"Left Knee"},{"euler":{"heading":80.09594759557152,"pitch":104.86425458445868,"roll":33.86225644590213},"location":"Left Ankle"},{"euler":{"heading":59.021972615950375,"pitch":-3.2624042434951246,"roll":-4.2104296308287505},"location":"Right Ankle"},{"euler":{"heading":104.86181686493153,"pitch":-158.42448153605832,"roll":56.87822132523189},"location":"Right Hip"},{"euler":{"heading":124.89969965527696,"pitch":-121.04050593649477,"roll":-30.931037538710292},"location":"Right Knee"},{"euler":{"heading":28.266907820449322,"pitch":-133.56695396855835,"roll":56.0401565735972},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.750"} +{"sensors":[{"euler":{"heading":134.95862105761523,"pitch":134.66511549226573,"roll":26.42587401867035},"location":"Left Knee"},{"euler":{"heading":76.31135283601436,"pitch":103.71532912601282,"roll":30.92603080131192},"location":"Left Ankle"},{"euler":{"heading":58.83852535435534,"pitch":-2.6236638191456123,"roll":-4.2331366677458755},"location":"Right Ankle"},{"euler":{"heading":104.43813517843837,"pitch":-158.9320333824525,"roll":57.727899192708705},"location":"Right Hip"},{"euler":{"heading":126.46597968974928,"pitch":-121.7302053428453,"roll":-31.487933784839264},"location":"Right Knee"},{"euler":{"heading":27.383967038404393,"pitch":-132.21650857170252,"roll":55.44864091623749},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.851"} +{"sensors":[{"euler":{"heading":154.47525895185373,"pitch":136.92985394303915,"roll":27.783286616803316},"location":"Left Knee"},{"euler":{"heading":72.26146755241292,"pitch":102.79379621341154,"roll":27.42092772118073},"location":"Left Ankle"},{"euler":{"heading":57.87342281891981,"pitch":-2.098797437231051,"roll":-4.528573000971289},"location":"Right Ankle"},{"euler":{"heading":104.21307166059454,"pitch":-159.70133004420723,"roll":58.65510927343784},"location":"Right Hip"},{"euler":{"heading":128.70063172077434,"pitch":-122.44468480856077,"roll":-32.751640406355335},"location":"Right Knee"},{"euler":{"heading":27.126820334563952,"pitch":-131.58235771453226,"roll":55.060026824613736},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.952"} +{"sensors":[{"euler":{"heading":173.64648305666836,"pitch":137.94311854873524,"roll":28.886207955122988},"location":"Left Knee"},{"euler":{"heading":69.98532079717164,"pitch":102.4769165920704,"roll":25.397584949062654},"location":"Left Ankle"},{"euler":{"heading":55.48608053702783,"pitch":-2.207667693507946,"roll":-4.87571570087416},"location":"Right Ankle"},{"euler":{"heading":104.71051449453509,"pitch":-159.99994703978652,"roll":59.19584834609405},"location":"Right Hip"},{"euler":{"heading":131.2743185486969,"pitch":-123.1627163277047,"roll":-35.0202263657198},"location":"Right Knee"},{"euler":{"heading":26.970388301107555,"pitch":-131.01162194307904,"roll":54.904024142152366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.53"} +{"sensors":[{"euler":{"heading":191.91308475100152,"pitch":138.0800566938617,"roll":29.741337159610687},"location":"Left Knee"},{"euler":{"heading":69.00553871745447,"pitch":102.54797493286335,"roll":24.320326454156387},"location":"Left Ankle"},{"euler":{"heading":51.699972483325055,"pitch":-2.4056509241571513,"roll":-5.388144130786745},"location":"Right Ankle"},{"euler":{"heading":106.41446304508158,"pitch":-159.13120233580787,"roll":58.80126351148465},"location":"Right Hip"},{"euler":{"heading":133.8468866938272,"pitch":-124.52144469493423,"roll":-37.380703729147825},"location":"Right Knee"},{"euler":{"heading":27.2295994709968,"pitch":-130.94795974877113,"roll":55.06362172793713},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.153"} +{"sensors":[{"euler":{"heading":173.04052627590136,"pitch":137.59080102447555,"roll":30.42345344364962},"location":"Left Knee"},{"euler":{"heading":69.89248484570902,"pitch":102.99317743957702,"roll":24.45704380874075},"location":"Left Ankle"},{"euler":{"heading":49.267475234992546,"pitch":-3.046335831741436,"roll":-5.54932971770807},"location":"Right Ankle"},{"euler":{"heading":108.49176674057342,"pitch":-157.9743321022271,"roll":57.64613716033619},"location":"Right Hip"},{"euler":{"heading":134.49969802444448,"pitch":-124.40055022544081,"roll":-38.77388335623304},"location":"Right Knee"},{"euler":{"heading":27.84413952389712,"pitch":-131.678163773894,"roll":55.31975955514342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.254"} +{"sensors":[{"euler":{"heading":156.59272364831122,"pitch":136.681720922028,"roll":30.86860809928466},"location":"Left Knee"},{"euler":{"heading":70.83448636113812,"pitch":103.43135969561932,"roll":24.730089427866677},"location":"Left Ankle"},{"euler":{"heading":49.3907277114933,"pitch":-3.947952248567293,"roll":-5.188146745937263},"location":"Right Ankle"},{"euler":{"heading":110.19259006651608,"pitch":-157.2956488920044,"roll":55.981523444302574},"location":"Right Hip"},{"euler":{"heading":132.98097822200003,"pitch":-122.93549520289673,"roll":-38.42774502060974},"location":"Right Knee"},{"euler":{"heading":28.790975571507406,"pitch":-133.0853473965046,"roll":55.70653359962908},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.354"} +{"sensors":[{"euler":{"heading":142.3709512834801,"pitch":135.45729882982522,"roll":30.931747289356196},"location":"Left Knee"},{"euler":{"heading":72.03853772502431,"pitch":103.9132237260574,"roll":25.35708048508001},"location":"Left Ankle"},{"euler":{"heading":51.95790494034397,"pitch":-4.603157023710564,"roll":-4.363082071343536},"location":"Right Ankle"},{"euler":{"heading":111.08583105986446,"pitch":-156.91608400280396,"roll":54.54587109987232},"location":"Right Hip"},{"euler":{"heading":129.52038039980002,"pitch":-121.12319568260706,"roll":-36.28497051854877},"location":"Right Knee"},{"euler":{"heading":30.018128014356666,"pitch":-134.93306265685413,"roll":56.279630239666176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.455"} +{"sensors":[{"euler":{"heading":130.2963561551321,"pitch":134.07406894684271,"roll":30.42607256042058},"location":"Left Knee"},{"euler":{"heading":73.77843395252188,"pitch":104.53440135345166,"roll":26.527622436572013},"location":"Left Ankle"},{"euler":{"heading":54.99336444630958,"pitch":-4.930341321339508,"roll":-3.3080238642091824},"location":"Right Ankle"},{"euler":{"heading":110.33349795387802,"pitch":-156.98072560252356,"roll":54.00378398988509},"location":"Right Hip"},{"euler":{"heading":125.38709235982002,"pitch":-119.79212611434636,"roll":-33.32522346669389},"location":"Right Knee"},{"euler":{"heading":31.410065212921,"pitch":-137.26475639116873,"roll":56.95166721569956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.555"} +{"sensors":[{"euler":{"heading":120.17922053961888,"pitch":132.75416205215845,"roll":29.12721530437852},"location":"Left Knee"},{"euler":{"heading":76.0380905572697,"pitch":105.2059612181065,"roll":28.637360192914812},"location":"Left Ankle"},{"euler":{"heading":56.84402800167862,"pitch":-4.868557189205558,"roll":-2.6772214777882644},"location":"Right Ankle"},{"euler":{"heading":109.05639815849023,"pitch":-157.42640304227123,"roll":53.878405590896584},"location":"Right Hip"},{"euler":{"heading":122.64213312383802,"pitch":-119.22541350291172,"roll":-31.198951120024503},"location":"Right Knee"},{"euler":{"heading":33.0378086916289,"pitch":-139.78828075205186,"roll":57.725250494129604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.657"} +{"sensors":[{"euler":{"heading":112.455048485657,"pitch":131.8974958469426,"roll":26.770743773940666},"location":"Left Knee"},{"euler":{"heading":79.32178150154273,"pitch":106.97286509629586,"roll":31.87987417362333},"location":"Left Ankle"},{"euler":{"heading":58.05337520151076,"pitch":-4.519201470285003,"roll":-2.4032493300094377},"location":"Right Ankle"},{"euler":{"heading":108.02575834264121,"pitch":-157.74001273804413,"roll":54.221815031806926},"location":"Right Hip"},{"euler":{"heading":121.49666981145423,"pitch":-119.18412215262055,"roll":-30.004056008022054},"location":"Right Knee"},{"euler":{"heading":32.75902782246602,"pitch":-139.84695267684668,"roll":57.95272544471664},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.757"} +{"sensors":[{"euler":{"heading":105.9532936370913,"pitch":131.09524626224834,"roll":24.543669396546598},"location":"Left Knee"},{"euler":{"heading":81.28960335138846,"pitch":107.35057858666629,"roll":34.798136756261},"location":"Left Ankle"},{"euler":{"heading":58.785537681359685,"pitch":-4.036031323256503,"roll":-2.375424397008494},"location":"Right Ankle"},{"euler":{"heading":106.8419325083771,"pitch":-158.18476146423973,"roll":54.93713352862624},"location":"Right Hip"},{"euler":{"heading":121.39075283030881,"pitch":-119.4907099373585,"roll":-29.40365040721985},"location":"Right Knee"},{"euler":{"heading":31.326875040219416,"pitch":-137.912257409162,"roll":57.56370290024498},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.858"} +{"sensors":[{"euler":{"heading":98.15171427338218,"pitch":131.4107216360235,"roll":23.70180245689194},"location":"Left Knee"},{"euler":{"heading":81.06689301624962,"pitch":106.09052072799966,"roll":35.3370730806349},"location":"Left Ankle"},{"euler":{"heading":59.16948391322372,"pitch":-3.5136781909308525,"roll":-2.5441319573076444},"location":"Right Ankle"},{"euler":{"heading":106.15773925753939,"pitch":-158.50378531781575,"roll":55.74342017576362},"location":"Right Hip"},{"euler":{"heading":122.15792754727794,"pitch":-119.89163894362267,"roll":-29.375785366497865},"location":"Right Knee"},{"euler":{"heading":29.656687536197474,"pitch":-135.6710316682458,"roll":56.676082610220476},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.958"} +{"sensors":[{"euler":{"heading":115.11779284604397,"pitch":133.18839947242117,"roll":24.712872211202747},"location":"Left Knee"},{"euler":{"heading":77.76020371462467,"pitch":104.57521865519969,"roll":32.98461577257141},"location":"Left Ankle"},{"euler":{"heading":59.07753552190135,"pitch":-2.9873103718377676,"roll":-2.83346876157688},"location":"Right Ankle"},{"euler":{"heading":105.66696533178545,"pitch":-159.0534067860342,"roll":56.63157815818725},"location":"Right Hip"},{"euler":{"heading":123.49213479255015,"pitch":-120.36497504926041,"roll":-29.850706829848082},"location":"Right Knee"},{"euler":{"heading":28.41601878257773,"pitch":-133.77892850142123,"roll":55.92097434919843},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.59"} +{"sensors":[{"euler":{"heading":131.59351356143958,"pitch":135.77580952517906,"roll":26.241584990082472},"location":"Left Knee"},{"euler":{"heading":73.5091833431622,"pitch":103.29894678967973,"roll":29.26740419531427},"location":"Left Ankle"},{"euler":{"heading":58.194781969711215,"pitch":-2.507329334653991,"roll":-3.381371885419192},"location":"Right Ankle"},{"euler":{"heading":105.43776879860691,"pitch":-159.81681610743078,"roll":57.58717034236853},"location":"Right Hip"},{"euler":{"heading":125.36792131329514,"pitch":-120.87847754433437,"roll":-30.915636146863275},"location":"Right Knee"},{"euler":{"heading":28.061916904319958,"pitch":-132.7322856512791,"roll":55.49137691427859},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.160"} +{"sensors":[{"euler":{"heading":152.61541220529563,"pitch":137.34197857266116,"roll":27.579926491074225},"location":"Left Knee"},{"euler":{"heading":70.83326500884598,"pitch":102.88155211071177,"roll":26.884413775782843},"location":"Left Ankle"},{"euler":{"heading":55.9440537727401,"pitch":-2.750346401188592,"roll":-3.8807346968772727},"location":"Right Ankle"},{"euler":{"heading":105.63774191874623,"pitch":-160.64138449668772,"roll":58.32220330813168},"location":"Right Hip"},{"euler":{"heading":127.57487918196564,"pitch":-121.18437978990093,"roll":-32.78032253217695},"location":"Right Knee"},{"euler":{"heading":28.093225213887962,"pitch":-132.0653070861512,"roll":55.28598922285073},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.260"} +{"sensors":[{"euler":{"heading":172.3351209847661,"pitch":137.97653071539506,"roll":28.609433841966805},"location":"Left Knee"},{"euler":{"heading":69.39368850796139,"pitch":102.5933968996406,"roll":25.43972239820456},"location":"Left Ankle"},{"euler":{"heading":52.27464839546609,"pitch":-2.887811761069733,"roll":-4.555161227189545},"location":"Right Ankle"},{"euler":{"heading":106.93021772687162,"pitch":-160.18974604701896,"roll":58.26498297731851},"location":"Right Hip"},{"euler":{"heading":130.29239126376908,"pitch":-122.44094181091084,"roll":-35.20854027895926},"location":"Right Knee"},{"euler":{"heading":27.965152692499167,"pitch":-131.59002637753608,"roll":55.31989030056566},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.361"} +{"sensors":[{"euler":{"heading":190.8016088862895,"pitch":137.95387764385555,"roll":29.398490457770123},"location":"Left Knee"},{"euler":{"heading":68.74181965716525,"pitch":102.42780720967654,"roll":24.627000158384103},"location":"Left Ankle"},{"euler":{"heading":49.309683555919484,"pitch":-3.02403058496276,"roll":-4.849645104470591},"location":"Right Ankle"},{"euler":{"heading":108.68719595418446,"pitch":-158.98952144231706,"roll":57.31348467958666},"location":"Right Hip"},{"euler":{"heading":132.28815213739216,"pitch":-123.40934762981976,"roll":-37.037686251063334},"location":"Right Knee"},{"euler":{"heading":28.174887423249253,"pitch":-131.95602373978247,"roll":55.537901270509096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.461"} +{"sensors":[{"euler":{"heading":171.99644799766057,"pitch":137.37723987946998,"roll":29.98989141199311},"location":"Left Knee"},{"euler":{"heading":69.22388769144872,"pitch":102.42877648870889,"roll":24.58305014254569},"location":"Left Ankle"},{"euler":{"heading":48.62246520032753,"pitch":-3.321627526466484,"roll":-4.7396805940235325},"location":"Right Ankle"},{"euler":{"heading":110.32472635876601,"pitch":-158.04056929808533,"roll":55.73838621162799},"location":"Right Hip"},{"euler":{"heading":131.50308692365294,"pitch":-122.88091286683779,"roll":-37.183917625957},"location":"Right Knee"},{"euler":{"heading":28.788648680924325,"pitch":-133.01042136580423,"roll":55.915361143458185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.562"} +{"sensors":[{"euler":{"heading":155.7718031978945,"pitch":136.377015891523,"roll":30.234652270793802},"location":"Left Knee"},{"euler":{"heading":70.10149892230385,"pitch":102.55464883983801,"roll":24.868495128291123},"location":"Left Ankle"},{"euler":{"heading":50.316468680294776,"pitch":-3.4144647738198355,"roll":-4.165712534621179},"location":"Right Ankle"},{"euler":{"heading":111.25475372288942,"pitch":-157.5615123682768,"roll":54.11454759046519},"location":"Right Hip"},{"euler":{"heading":128.64652823128765,"pitch":-121.692821580154,"roll":-35.4655258633613},"location":"Right Knee"},{"euler":{"heading":29.697283812831895,"pitch":-134.61562922922383,"roll":56.44257502911237},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.663"} +{"sensors":[{"euler":{"heading":141.80712287810508,"pitch":135.2080643023707,"roll":29.923687043714423},"location":"Left Knee"},{"euler":{"heading":71.29759903007347,"pitch":102.76168395585421,"roll":25.637895615462014},"location":"Left Ankle"},{"euler":{"heading":53.2223218122653,"pitch":-3.4417682964378518,"roll":-3.1366412811590614},"location":"Right Ankle"},{"euler":{"heading":110.80427835060047,"pitch":-157.39911113144913,"roll":53.25309283141867},"location":"Right Hip"},{"euler":{"heading":124.68187540815889,"pitch":-120.56728942213861,"roll":-32.606473277025174},"location":"Right Knee"},{"euler":{"heading":30.583805431548704,"pitch":-136.62281630630144,"roll":57.060817526201134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.763"} +{"sensors":[{"euler":{"heading":129.92016059029456,"pitch":134.13100787213364,"roll":28.906318339342985},"location":"Left Knee"},{"euler":{"heading":72.87408912706613,"pitch":102.97301556026879,"roll":27.111606053915814},"location":"Left Ankle"},{"euler":{"heading":55.956339631038766,"pitch":-3.2163414667940664,"roll":-2.366727153043155},"location":"Right Ankle"},{"euler":{"heading":109.21135051554042,"pitch":-157.66545001830423,"roll":53.03403354827681},"location":"Right Hip"},{"euler":{"heading":121.463687867343,"pitch":-120.06056047992475,"roll":-30.095825949322656},"location":"Right Knee"},{"euler":{"heading":31.694174888393835,"pitch":-139.2355346756713,"roll":57.685985773581024},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.864"} +{"sensors":[{"euler":{"heading":120.39064453126511,"pitch":133.29290708492027,"roll":26.884436505408686},"location":"Left Knee"},{"euler":{"heading":75.24293021435952,"pitch":103.9007140042419,"roll":29.994195448524234},"location":"Left Ankle"},{"euler":{"heading":57.45445566793489,"pitch":-2.80095732011466,"roll":-2.04255443773884},"location":"Right Ankle"},{"euler":{"heading":108.22146546398638,"pitch":-157.7426550164738,"roll":53.17438019344913},"location":"Right Hip"},{"euler":{"heading":119.8298190806087,"pitch":-120.01700443193228,"roll":-28.56749335439039},"location":"Right Knee"},{"euler":{"heading":31.949757399554453,"pitch":-140.34323120810416,"roll":58.042387196222926},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.964"} +{"sensors":[{"euler":{"heading":113.67033007813859,"pitch":131.94486637642825,"roll":24.345992854867816},"location":"Left Knee"},{"euler":{"heading":78.45613719292356,"pitch":106.05439260381772,"roll":33.21977590367181},"location":"Left Ankle"},{"euler":{"heading":58.4465101011414,"pitch":-2.445861588103194,"roll":-1.9945489939649559},"location":"Right Ankle"},{"euler":{"heading":107.03681891758774,"pitch":-157.99963951482644,"roll":53.75694217410422},"location":"Right Hip"},{"euler":{"heading":119.65308717254784,"pitch":-120.18405398873905,"roll":-27.86074401895135},"location":"Right Knee"},{"euler":{"heading":30.873531659599006,"pitch":-138.74015808729374,"roll":57.888148476600634},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.65"} +{"sensors":[{"euler":{"heading":107.14704707032473,"pitch":131.61912973878543,"roll":22.536393569381037},"location":"Left Knee"},{"euler":{"heading":80.52302347363121,"pitch":106.14270334343595,"roll":35.40404831330463},"location":"Left Ankle"},{"euler":{"heading":59.20185909102726,"pitch":-2.2450254292928746,"roll":-2.1138440945684605},"location":"Right Ankle"},{"euler":{"heading":106.45188702582897,"pitch":-158.1621755633438,"roll":54.5437479566938},"location":"Right Hip"},{"euler":{"heading":120.13777845529306,"pitch":-120.22189858986515,"roll":-27.743419617056215},"location":"Right Knee"},{"euler":{"heading":29.136178493639108,"pitch":-136.67864227856438,"roll":56.99308362894057},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.166"} +{"sensors":[{"euler":{"heading":122.39484236329227,"pitch":132.59471676490688,"roll":22.651504212442934},"location":"Left Knee"},{"euler":{"heading":79.28947112626808,"pitch":105.29093300909237,"roll":34.78864348197416},"location":"Left Ankle"},{"euler":{"heading":59.53167318192453,"pitch":-2.0642728863635873,"roll":-2.3587096851116147},"location":"Right Ankle"},{"euler":{"heading":106.33794832324607,"pitch":-158.27720800700942,"roll":55.37062316102442},"location":"Right Hip"},{"euler":{"heading":121.13025060976375,"pitch":-120.30595873087864,"roll":-28.094077655350596},"location":"Right Knee"},{"euler":{"heading":27.660060644275198,"pitch":-134.60452805070793,"roll":56.00002526604651},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.267"} +{"sensors":[{"euler":{"heading":137.65535812696305,"pitch":134.7164950884162,"roll":24.16760379119864},"location":"Left Knee"},{"euler":{"heading":75.29802401364128,"pitch":104.21183970818313,"roll":31.434779133776747},"location":"Left Ankle"},{"euler":{"heading":59.26600586373208,"pitch":-1.8515955977272285,"roll":-2.7415887166004533},"location":"Right Ankle"},{"euler":{"heading":106.42290349092146,"pitch":-158.39323720630847,"roll":56.21481084492198},"location":"Right Hip"},{"euler":{"heading":122.77972554878738,"pitch":-120.56286285779078,"roll":-28.978419889815537},"location":"Right Knee"},{"euler":{"heading":26.73155457984768,"pitch":-132.89407524563714,"roll":55.33127273944186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.368"} +{"sensors":[{"euler":{"heading":156.33982231426677,"pitch":137.20734557957456,"roll":25.882093412078778},"location":"Left Knee"},{"euler":{"heading":71.46822161227716,"pitch":103.29065573736483,"roll":27.916301220399074},"location":"Left Ankle"},{"euler":{"heading":58.233155277358875,"pitch":-1.4914360379545055,"roll":-3.436179844940408},"location":"Right Ankle"},{"euler":{"heading":106.46186314182931,"pitch":-158.89766348567764,"roll":57.262079760429785},"location":"Right Hip"},{"euler":{"heading":124.99550299390866,"pitch":-121.0378265720117,"roll":-30.343077900833983},"location":"Right Knee"},{"euler":{"heading":26.658399121862914,"pitch":-131.94841772107344,"roll":54.94189546549768},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.469"} +{"sensors":[{"euler":{"heading":175.2245900828401,"pitch":138.3741110216171,"roll":27.3001340708709},"location":"Left Knee"},{"euler":{"heading":69.50889945104944,"pitch":103.20534016362835,"roll":25.774671098359164},"location":"Left Ankle"},{"euler":{"heading":56.08483974962299,"pitch":-1.723542434159055,"roll":-4.148811860446368},"location":"Right Ankle"},{"euler":{"heading":106.93442682764639,"pitch":-159.5391471371099,"roll":58.129621784386806},"location":"Right Hip"},{"euler":{"heading":127.7584526945178,"pitch":-121.40904391481052,"roll":-32.733770110750584},"location":"Right Knee"},{"euler":{"heading":26.861309209676627,"pitch":-131.3035759489661,"roll":54.78520591894791},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.570"} +{"sensors":[{"euler":{"heading":193.5208810745561,"pitch":138.44294991945537,"roll":28.463870663783812},"location":"Left Knee"},{"euler":{"heading":68.74550950594451,"pitch":103.44105614726553,"roll":24.565953988523248},"location":"Left Ankle"},{"euler":{"heading":52.35135577466069,"pitch":-1.7261881907431496,"roll":-5.221430674401731},"location":"Right Ankle"},{"euler":{"heading":108.33473414488175,"pitch":-158.82273242339892,"roll":58.14165960594813},"location":"Right Hip"},{"euler":{"heading":131.03260742506603,"pitch":-122.99938952332948,"roll":-35.49164309967553},"location":"Right Knee"},{"euler":{"heading":27.443928288708964,"pitch":-130.8919683540695,"roll":55.02543532705312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.670"} +{"sensors":[{"euler":{"heading":174.36254296710047,"pitch":138.01115492750984,"roll":29.32998359740543},"location":"Left Knee"},{"euler":{"heading":68.63970855535007,"pitch":103.69695053253898,"roll":23.93435858967092},"location":"Left Ankle"},{"euler":{"heading":49.14747019719462,"pitch":-2.272319371668835,"roll":-5.799287606961558},"location":"Right Ankle"},{"euler":{"heading":110.37626073039358,"pitch":-157.69670918105902,"roll":57.177493645353316},"location":"Right Hip"},{"euler":{"heading":132.77934668255944,"pitch":-123.52445057099654,"roll":-37.62997878970798},"location":"Right Knee"},{"euler":{"heading":28.162035459838066,"pitch":-131.41527151866254,"roll":55.37914179434781},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.771"} +{"sensors":[{"euler":{"heading":157.64503867039042,"pitch":137.09128943475886,"roll":29.94073523766489},"location":"Left Knee"},{"euler":{"heading":69.51323769981506,"pitch":104.12725547928508,"roll":23.98467273070383},"location":"Left Ankle"},{"euler":{"heading":48.47647317747516,"pitch":-2.9700874345019512,"roll":-5.781858846265402},"location":"Right Ankle"},{"euler":{"heading":112.18238465735422,"pitch":-156.88328826295313,"roll":55.53474428081799},"location":"Right Hip"},{"euler":{"heading":132.1076620143035,"pitch":-122.65325551389688,"roll":-37.98573091073718},"location":"Right Knee"},{"euler":{"heading":29.139581913854258,"pitch":-132.71124436679628,"roll":55.82247761491303},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.871"} +{"sensors":[{"euler":{"heading":143.3430348033514,"pitch":135.86966049128299,"roll":30.0966617138984},"location":"Left Knee"},{"euler":{"heading":70.61816392983356,"pitch":104.57077993135658,"roll":24.34245545763345},"location":"Left Ankle"},{"euler":{"heading":50.27257585972764,"pitch":-3.4730786910517564,"roll":-5.122422961638862},"location":"Right Ankle"},{"euler":{"heading":113.04539619161879,"pitch":-156.5199594366578,"roll":53.91876985273619},"location":"Right Hip"},{"euler":{"heading":129.25939581287315,"pitch":-121.1691799625072,"roll":-36.28090781966346},"location":"Right Knee"},{"euler":{"heading":30.244373722468833,"pitch":-134.54011993011665,"roll":56.36522985342173},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.972"} +{"sensors":[{"euler":{"heading":131.03373132301627,"pitch":134.55769444215468,"roll":29.67449554250856},"location":"Left Knee"},{"euler":{"heading":72.08759753685021,"pitch":105.01370193822093,"roll":25.214459911870108},"location":"Left Ankle"},{"euler":{"heading":53.401568273754876,"pitch":-3.925770821946581,"roll":-4.028930665474976},"location":"Right Ankle"},{"euler":{"heading":112.74085657245692,"pitch":-156.31171349299203,"roll":53.09564286746257},"location":"Right Hip"},{"euler":{"heading":125.33345623158584,"pitch":-119.75226196625648,"roll":-33.32156703769712},"location":"Right Knee"},{"euler":{"heading":31.38868635022195,"pitch":-136.936107937105,"roll":56.972456868079554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.73"} +{"sensors":[{"euler":{"heading":120.65535819071464,"pitch":133.3331749979392,"roll":28.463295988257705},"location":"Left Knee"},{"euler":{"heading":74.1225877831652,"pitch":105.54983174439883,"roll":26.986763920683096},"location":"Left Ankle"},{"euler":{"heading":55.72391144637939,"pitch":-3.783193739751923,"roll":-3.319787598927479},"location":"Right Ankle"},{"euler":{"heading":111.31052091521123,"pitch":-156.62429214369283,"roll":52.86732858071632},"location":"Right Hip"},{"euler":{"heading":122.21886060842726,"pitch":-119.27703576963084,"roll":-30.87691033392741},"location":"Right Knee"},{"euler":{"heading":32.69981771519976,"pitch":-139.5237471433945,"roll":57.6564611812716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.173"} +{"sensors":[{"euler":{"heading":112.93357237164318,"pitch":132.18735749814527,"roll":26.210716389431937},"location":"Left Knee"},{"euler":{"heading":77.62282900484868,"pitch":107.48234856995894,"roll":30.22558752861479},"location":"Left Ankle"},{"euler":{"heading":56.92027030174145,"pitch":-3.4861243657767305,"roll":-3.0003088390347314},"location":"Right Ankle"},{"euler":{"heading":110.3669688236901,"pitch":-156.66186292932355,"roll":53.099345722644685},"location":"Right Hip"},{"euler":{"heading":120.79072454758455,"pitch":-119.22433219266776,"roll":-29.532969300534667},"location":"Right Knee"},{"euler":{"heading":32.27358594367978,"pitch":-139.82137242905506,"roll":57.79081506314444},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.274"} +{"sensors":[{"euler":{"heading":106.84646513447886,"pitch":131.26237174833074,"roll":23.827144750488745},"location":"Left Knee"},{"euler":{"heading":80.46054610436383,"pitch":109.12786371296305,"roll":33.44677877575331},"location":"Left Ankle"},{"euler":{"heading":57.70324327156731,"pitch":-3.2000119291990576,"roll":-2.9190279551312583},"location":"Right Ankle"},{"euler":{"heading":109.35527194132109,"pitch":-156.80192663639122,"roll":53.77066115038022},"location":"Right Hip"},{"euler":{"heading":120.5429020928261,"pitch":-119.32064897340098,"roll":-28.9171723704812},"location":"Right Knee"},{"euler":{"heading":30.8462273493118,"pitch":-137.93298518614955,"roll":57.430483556830005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.375"} +{"sensors":[{"euler":{"heading":99.92431862103098,"pitch":131.37988457349766,"roll":22.61943027543987},"location":"Left Knee"},{"euler":{"heading":81.68324149392744,"pitch":108.75882734166674,"roll":35.08335089817798},"location":"Left Ankle"},{"euler":{"heading":58.18291894441058,"pitch":-2.9612607362791517,"roll":-2.9896251596181322},"location":"Right Ankle"},{"euler":{"heading":108.74474474718899,"pitch":-156.8092339727521,"roll":54.656095035342204},"location":"Right Hip"},{"euler":{"heading":121.06361188354349,"pitch":-119.38858407606088,"roll":-28.83795513343308},"location":"Right Knee"},{"euler":{"heading":28.974104614380618,"pitch":-135.7709366675346,"roll":56.44993520114701},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.476"} +{"sensors":[{"euler":{"heading":116.23188675892789,"pitch":132.9168961161479,"roll":23.263737247895886},"location":"Left Knee"},{"euler":{"heading":79.6961673445347,"pitch":107.36419460750008,"roll":33.862515808360186},"location":"Left Ankle"},{"euler":{"heading":58.22087704996952,"pitch":-2.8088846626512365,"roll":-3.146912643656319},"location":"Right Ankle"},{"euler":{"heading":108.4640202724701,"pitch":-156.9533105754769,"roll":55.60298553180799},"location":"Right Hip"},{"euler":{"heading":122.11975069518914,"pitch":-119.43722566845479,"roll":-29.285409620089773},"location":"Right Knee"},{"euler":{"heading":27.476694152942557,"pitch":-133.85009300078116,"roll":55.554941681032304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.577"} +{"sensors":[{"euler":{"heading":132.2836980830351,"pitch":135.27520650453312,"roll":24.7936135231063},"location":"Left Knee"},{"euler":{"heading":75.56405061008124,"pitch":105.94652514675008,"roll":30.47626422752417},"location":"Left Ankle"},{"euler":{"heading":57.73003934497257,"pitch":-2.627996196386113,"roll":-3.407221379290687},"location":"Right Ankle"},{"euler":{"heading":108.26136824522308,"pitch":-157.4579795179292,"roll":56.61768697862719},"location":"Right Hip"},{"euler":{"heading":123.75152562567023,"pitch":-119.64350310160931,"roll":-30.294368658080796},"location":"Right Knee"},{"euler":{"heading":26.954024737648304,"pitch":-132.50258370070304,"roll":55.11194751292908},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.678"} +{"sensors":[{"euler":{"heading":152.68032827473158,"pitch":136.98518585407982,"roll":26.37675217079567},"location":"Left Knee"},{"euler":{"heading":72.29514554907311,"pitch":105.36437263207507,"roll":27.597387804771753},"location":"Left Ankle"},{"euler":{"heading":56.394535410475314,"pitch":-2.590196576747502,"roll":-4.003999241361619},"location":"Right Ankle"},{"euler":{"heading":108.25398142070077,"pitch":-158.5434315661363,"roll":57.655918280764475},"location":"Right Hip"},{"euler":{"heading":126.00762306310321,"pitch":-119.7041527914484,"roll":-32.146181792272714},"location":"Right Knee"},{"euler":{"heading":27.477372263883474,"pitch":-131.80857533063275,"roll":55.06950276163617},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.778"} +{"sensors":[{"euler":{"heading":172.52479544725844,"pitch":137.61166726867182,"roll":27.589076953716106},"location":"Left Knee"},{"euler":{"heading":70.7281309941658,"pitch":105.16543536886758,"roll":25.993899024294578},"location":"Left Ankle"},{"euler":{"heading":53.661331869427784,"pitch":-2.831176919072752,"roll":-4.7910993172254575},"location":"Right Ankle"},{"euler":{"heading":109.1348332786307,"pitch":-158.67658840952268,"roll":58.17157645268803},"location":"Right Hip"},{"euler":{"heading":128.9318607567929,"pitch":-120.58998751230357,"roll":-34.887813613045445},"location":"Right Knee"},{"euler":{"heading":27.59213503749513,"pitch":-131.21521779756947,"roll":55.11255248547256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.879"} +{"sensors":[{"euler":{"heading":155.4910659025326,"pitch":137.38800054180464,"roll":28.536419258344495},"location":"Left Knee"},{"euler":{"heading":70.21156789474922,"pitch":105.28014183198081,"roll":25.07575912186512},"location":"Left Ankle"},{"euler":{"heading":50.10769868248501,"pitch":-3.2105592271654766,"roll":-5.499489385502912},"location":"Right Ankle"},{"euler":{"heading":110.77134995076763,"pitch":-157.8839295685704,"roll":57.62316880741923},"location":"Right Hip"},{"euler":{"heading":131.61992468111362,"pitch":-121.59348876107322,"roll":-37.4490322517409},"location":"Right Knee"},{"euler":{"heading":28.157921533745615,"pitch":-131.24994601781253,"roll":55.4075472369253},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.980"} +{"sensors":[{"euler":{"heading":140.48570931227934,"pitch":136.74295048762417,"roll":29.295277332510047},"location":"Left Knee"},{"euler":{"heading":70.5841611052743,"pitch":105.46462764878274,"roll":24.80568320967861},"location":"Left Ankle"},{"euler":{"heading":48.128178814236506,"pitch":-3.7770033044489293,"roll":-5.805790446952621},"location":"Right Ankle"},{"euler":{"heading":112.84421495569087,"pitch":-156.95178661171337,"roll":56.242101926677314},"location":"Right Hip"},{"euler":{"heading":132.51418221300224,"pitch":-121.3216398849659,"roll":-38.69787902656681},"location":"Right Knee"},{"euler":{"heading":29.054629380371054,"pitch":-132.19995141603127,"roll":55.841792513232775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.81"} +{"sensors":[{"euler":{"heading":127.48088838105141,"pitch":135.78740543886175,"roll":29.728249599259044},"location":"Left Knee"},{"euler":{"heading":71.27574499474687,"pitch":105.66816488390447,"roll":24.81886488871075},"location":"Left Ankle"},{"euler":{"heading":49.02786093281286,"pitch":-4.430552974004037,"roll":-5.4502114022573585},"location":"Right Ankle"},{"euler":{"heading":114.22854346012178,"pitch":-156.46285795054206,"roll":54.536641734009585},"location":"Right Hip"},{"euler":{"heading":129.08151399170202,"pitch":-119.96447589646932,"roll":-37.77184112391013},"location":"Right Knee"},{"euler":{"heading":30.08666644233395,"pitch":-133.91120627442814,"roll":56.3201132619095},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.182"} +{"sensors":[{"euler":{"heading":116.41404954294629,"pitch":134.58366489497558,"roll":29.71792463933314},"location":"Left Knee"},{"euler":{"heading":72.34192049527218,"pitch":105.97009839551403,"roll":25.249478399839678},"location":"Left Ankle"},{"euler":{"heading":51.66257483953157,"pitch":-4.937497676603633,"roll":-4.455190262031622},"location":"Right Ankle"},{"euler":{"heading":114.3744391141096,"pitch":-156.27907215548785,"roll":53.364227560608626},"location":"Right Hip"},{"euler":{"heading":125.48586259253183,"pitch":-118.44927830682239,"roll":-35.144657011519115},"location":"Right Knee"},{"euler":{"heading":31.221749798100557,"pitch":-135.96383564698533,"roll":56.92560193571855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.283"} +{"sensors":[{"euler":{"heading":106.99139458865166,"pitch":133.35029840547804,"roll":29.12113217539983},"location":"Left Knee"},{"euler":{"heading":74.00147844574497,"pitch":106.36683855596263,"roll":26.38078055985571},"location":"Left Ankle"},{"euler":{"heading":54.702567355578424,"pitch":-5.18124790894327,"roll":-3.5034212358284598},"location":"Right Ankle"},{"euler":{"heading":113.04324520269866,"pitch":-156.57616493993908,"roll":53.165304804547766},"location":"Right Hip"},{"euler":{"heading":122.04977633327864,"pitch":-117.57310047614016,"roll":-32.40519131036721},"location":"Right Knee"},{"euler":{"heading":32.4245748182905,"pitch":-138.4924520822868,"roll":57.56429174214669},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.383"} +{"sensors":[{"euler":{"heading":99.4672551297865,"pitch":132.25276856493025,"roll":27.55901895785985},"location":"Left Knee"},{"euler":{"heading":75.97008060117048,"pitch":106.84265470036637,"roll":28.66145250387014},"location":"Left Ankle"},{"euler":{"heading":56.482310620020584,"pitch":-5.025623118048943,"roll":-3.1905791122456137},"location":"Right Ankle"},{"euler":{"heading":111.5951706824288,"pitch":-157.02479844594515,"roll":53.31752432409299},"location":"Right Hip"},{"euler":{"heading":119.86354869995078,"pitch":-117.30954042852615,"roll":-30.49592217933049},"location":"Right Knee"},{"euler":{"heading":33.51961733646145,"pitch":-140.29945687405814,"roll":58.18911256793203},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.484"} +{"sensors":[{"euler":{"heading":94.40802961680785,"pitch":130.87749170843722,"roll":25.17186706207386},"location":"Left Knee"},{"euler":{"heading":79.36057254105343,"pitch":108.70213923032973,"roll":32.09530725348313},"location":"Left Ankle"},{"euler":{"heading":57.68407955801853,"pitch":-4.854310806244048,"roll":-3.015271201021052},"location":"Right Ankle"},{"euler":{"heading":110.29815361418592,"pitch":-157.50356860135065,"roll":53.9232718916837},"location":"Right Hip"},{"euler":{"heading":119.1021938299557,"pitch":-117.35983638567353,"roll":-29.471329961397437},"location":"Right Knee"},{"euler":{"heading":32.811405602815306,"pitch":-139.02576118665232,"roll":58.28895131113883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.588"} +{"sensors":[{"euler":{"heading":90.11722665512707,"pitch":130.4272425375935,"roll":23.004680355866476},"location":"Left Knee"},{"euler":{"heading":81.53701528694809,"pitch":108.61942530729675,"roll":34.72327652813482},"location":"Left Ankle"},{"euler":{"heading":58.509421602216676,"pitch":-4.425129725619644,"roll":-3.069994080918947},"location":"Right Ankle"},{"euler":{"heading":109.29958825276734,"pitch":-157.8657117412156,"roll":54.81219470251533},"location":"Right Hip"},{"euler":{"heading":119.51072444696013,"pitch":-117.73635274710618,"roll":-29.030446965257696},"location":"Right Knee"},{"euler":{"heading":31.086515042533776,"pitch":-137.0169350679871,"roll":57.54755618002495},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.688"} +{"sensors":[{"euler":{"heading":83.81175398961436,"pitch":131.13451828383415,"roll":22.59171232027983},"location":"Left Knee"},{"euler":{"heading":80.60206375825328,"pitch":107.36998277656707,"roll":34.62594887532134},"location":"Left Ankle"},{"euler":{"heading":58.86472944199501,"pitch":-3.8638667530576796,"roll":-3.1754946728270523},"location":"Right Ankle"},{"euler":{"heading":108.6383794274906,"pitch":-158.11039056709404,"roll":55.8059752322638},"location":"Right Hip"},{"euler":{"heading":120.42840200226412,"pitch":-118.26271747239556,"roll":-29.03990226873193},"location":"Right Knee"},{"euler":{"heading":29.3028635382804,"pitch":-134.9027415611884,"roll":56.536550562022455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.790"} +{"sensors":[{"euler":{"heading":102.52432859065293,"pitch":133.22106645545074,"roll":23.82629108825185},"location":"Left Knee"},{"euler":{"heading":76.85435738242795,"pitch":105.85173449891036,"roll":31.80710398778921},"location":"Left Ankle"},{"euler":{"heading":58.71575649779551,"pitch":-3.2774800777519113,"roll":-3.382945205544347},"location":"Right Ankle"},{"euler":{"heading":108.16829148474154,"pitch":-158.61185151038464,"roll":56.81912770903742},"location":"Right Hip"},{"euler":{"heading":121.90431180203771,"pitch":-118.80519572515601,"roll":-29.57966204185874},"location":"Right Knee"},{"euler":{"heading":28.097577184452362,"pitch":-133.26871740506957,"roll":55.78289550582021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.891"} +{"sensors":[{"euler":{"heading":120.29064573158763,"pitch":135.84270980990567,"roll":25.499911979426663},"location":"Left Knee"},{"euler":{"heading":72.58767164418516,"pitch":104.50406104901933,"roll":28.063893589010288},"location":"Left Ankle"},{"euler":{"heading":57.987930848015964,"pitch":-2.8059820699767206,"roll":-3.9384006849899125},"location":"Right Ankle"},{"euler":{"heading":107.85146233626739,"pitch":-159.50691635934618,"roll":57.93096493813368},"location":"Right Hip"},{"euler":{"heading":123.94513062183394,"pitch":-119.25592615264041,"roll":-30.78419583767287},"location":"Right Knee"},{"euler":{"heading":27.887819466007127,"pitch":-132.4668456645626,"roll":55.40460595523819},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.992"} +{"sensors":[{"euler":{"heading":142.86158115842886,"pitch":137.1709388289151,"roll":26.924920781483998},"location":"Left Knee"},{"euler":{"heading":69.98515447976665,"pitch":104.02865494411739,"roll":25.63875423010926},"location":"Left Ankle"},{"euler":{"heading":56.12038776321437,"pitch":-3.1753838629790487,"roll":-4.513310616490921},"location":"Right Ankle"},{"euler":{"heading":108.14131610264066,"pitch":-160.35622472341157,"roll":58.70036844432031},"location":"Right Hip"},{"euler":{"heading":126.33186755965055,"pitch":-119.26158353737638,"roll":-33.09952625390558},"location":"Right Knee"},{"euler":{"heading":28.155287519406414,"pitch":-132.07016109810635,"roll":55.27039535971437},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.93"} +{"sensors":[{"euler":{"heading":164.181673042586,"pitch":137.4538449460236,"roll":27.9699287033356},"location":"Left Knee"},{"euler":{"heading":68.94913903178998,"pitch":104.05703944970566,"roll":24.437378807098334},"location":"Left Ankle"},{"euler":{"heading":52.28334898689293,"pitch":-3.520345476681144,"roll":-5.580729554841829},"location":"Right Ankle"},{"euler":{"heading":109.8021844923766,"pitch":-159.55810225107044,"roll":58.45533159988828},"location":"Right Hip"},{"euler":{"heading":129.1236808036855,"pitch":-120.35417518363874,"roll":-35.652073628515026},"location":"Right Knee"},{"euler":{"heading":28.527258767465774,"pitch":-131.8068949882957,"roll":55.42460582374294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.200"} +{"sensors":[{"euler":{"heading":148.15725573832742,"pitch":137.00846045142123,"roll":28.86668583300204},"location":"Left Knee"},{"euler":{"heading":69.647975128611,"pitch":104.46383550473509,"roll":24.3936409263885},"location":"Left Ankle"},{"euler":{"heading":49.34251408820364,"pitch":-4.09331092901303,"roll":-5.922656599357647},"location":"Right Ankle"},{"euler":{"heading":111.85946604313895,"pitch":-158.3772920259634,"roll":57.32854843989946},"location":"Right Hip"},{"euler":{"heading":130.15506272331695,"pitch":-120.36250766527488,"roll":-37.086866265663524},"location":"Right Knee"},{"euler":{"heading":29.2245328907192,"pitch":-132.30120548946616,"roll":55.682145241368644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.300"} +{"sensors":[{"euler":{"heading":134.2352801644947,"pitch":136.2013644062791,"roll":29.448767249701838},"location":"Left Knee"},{"euler":{"heading":70.4144276157499,"pitch":104.79870195426157,"roll":24.54177683374965},"location":"Left Ankle"},{"euler":{"heading":48.927012679383274,"pitch":-4.765229836111727,"roll":-5.786640939421882},"location":"Right Ankle"},{"euler":{"heading":113.52351943882505,"pitch":-157.61456282336707,"roll":55.63944359590951},"location":"Right Hip"},{"euler":{"heading":129.04580645098525,"pitch":-119.29500689874739,"roll":-36.70317963909717},"location":"Right Knee"},{"euler":{"heading":29.99582960164728,"pitch":-133.32733494051953,"roll":56.10143071723178},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.401"} +{"sensors":[{"euler":{"heading":122.22425214804522,"pitch":135.1437279656512,"roll":29.628890524731656},"location":"Left Knee"},{"euler":{"heading":71.52923485417492,"pitch":105.16258175883542,"roll":25.037599150374685},"location":"Left Ankle"},{"euler":{"heading":50.965561411444945,"pitch":-5.088706852500555,"roll":-5.176726845479694},"location":"Right Ankle"},{"euler":{"heading":114.34616749494255,"pitch":-157.17810654103036,"roll":54.075499236318564},"location":"Right Hip"},{"euler":{"heading":125.97247580588673,"pitch":-118.10300620887264,"roll":-34.532861675187455},"location":"Right Knee"},{"euler":{"heading":30.896246641482556,"pitch":-134.9508514464676,"roll":56.6225376455086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.502"} +{"sensors":[{"euler":{"heading":111.9143269332407,"pitch":133.9606051690861,"roll":29.30975147225849},"location":"Left Knee"},{"euler":{"heading":73.15756136875743,"pitch":105.55882358295187,"roll":26.08383923533722},"location":"Left Ankle"},{"euler":{"heading":53.81275527030045,"pitch":-5.373586167250499,"roll":-4.196554160931724},"location":"Right Ankle"},{"euler":{"heading":113.74280074544829,"pitch":-157.07279588692734,"roll":53.38669931268671},"location":"Right Hip"},{"euler":{"heading":122.53147822529806,"pitch":-117.04270558798538,"roll":-31.78582550766871},"location":"Right Knee"},{"euler":{"heading":31.8191219773343,"pitch":-137.05576630182085,"roll":57.22278388095774},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.603"} +{"sensors":[{"euler":{"heading":102.86039423991663,"pitch":132.8270446521775,"roll":28.46627632503264},"location":"Left Knee"},{"euler":{"heading":75.06680523188169,"pitch":105.9404412246567,"roll":28.019205311803496},"location":"Left Ankle"},{"euler":{"heading":56.08772974327041,"pitch":-5.3799775505254495,"roll":-3.5518987448385513},"location":"Right Ankle"},{"euler":{"heading":112.32477067090346,"pitch":-157.47801629823462,"roll":53.36052938141804},"location":"Right Hip"},{"euler":{"heading":120.04083040276826,"pitch":-116.69468502918684,"roll":-29.607242956901842},"location":"Right Knee"},{"euler":{"heading":32.868459779600876,"pitch":-139.16268967163876,"roll":57.88175549286197},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.703"} +{"sensors":[{"euler":{"heading":96.44310481592497,"pitch":131.85684018695974,"roll":26.432148692529378},"location":"Left Knee"},{"euler":{"heading":78.01012470869352,"pitch":107.37764710219103,"roll":31.079784780623147},"location":"Left Ankle"},{"euler":{"heading":57.44770676894337,"pitch":-5.254479795472904,"roll":-3.2842088703546963},"location":"Right Ankle"},{"euler":{"heading":111.21729360381312,"pitch":-157.76771466841114,"roll":53.75572644327624},"location":"Right Hip"},{"euler":{"heading":118.84924736249144,"pitch":-116.75646652626817,"roll":-28.27776866121166},"location":"Right Knee"},{"euler":{"heading":32.09411380164079,"pitch":-138.7589207044749,"roll":57.968579943575776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.804"} +{"sensors":[{"euler":{"heading":91.47379433433247,"pitch":131.0774061682638,"roll":24.28893382327644},"location":"Left Knee"},{"euler":{"heading":80.49036223782417,"pitch":107.78363239197193,"roll":34.13430630256083},"location":"Left Ankle"},{"euler":{"heading":58.390436092049036,"pitch":-5.0665318159256145,"roll":-3.268287983319227},"location":"Right Ankle"},{"euler":{"heading":110.21431424343182,"pitch":-158.05344320157005,"roll":54.51140379894861},"location":"Right Hip"},{"euler":{"heading":118.79557262624229,"pitch":-116.98706987364136,"roll":-27.706241795090495},"location":"Right Knee"},{"euler":{"heading":30.37845242147671,"pitch":-136.7955286340274,"roll":57.365471949218204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.906"} +{"sensors":[{"euler":{"heading":85.36391490089922,"pitch":131.35716555143742,"roll":23.347540440948798},"location":"Left Knee"},{"euler":{"heading":80.74132601404176,"pitch":106.88651915277475,"roll":34.977125672304744},"location":"Left Ankle"},{"euler":{"heading":59.00139248284414,"pitch":-4.766128634333053,"roll":-3.472709184987304},"location":"Right Ankle"},{"euler":{"heading":109.51788281908864,"pitch":-158.24184888141306,"roll":55.42901341905375},"location":"Right Hip"},{"euler":{"heading":119.35351536361806,"pitch":-117.32586288627724,"roll":-27.535617615581447},"location":"Right Knee"},{"euler":{"heading":28.421857179329038,"pitch":-134.61597577062466,"roll":56.27892475429638},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.7"} +{"sensors":[{"euler":{"heading":103.37752341080929,"pitch":133.15894899629367,"roll":24.25028639685392},"location":"Left Knee"},{"euler":{"heading":77.94844341263759,"pitch":105.39786723749728,"roll":32.94816310507427},"location":"Left Ankle"},{"euler":{"heading":59.14500323455973,"pitch":-4.4582657708997475,"roll":-3.669188266488574},"location":"Right Ankle"},{"euler":{"heading":109.11609453717978,"pitch":-158.58641399327175,"roll":56.40486207714838},"location":"Right Hip"},{"euler":{"heading":120.43691382725625,"pitch":-117.69952659764952,"roll":-27.913305854023303},"location":"Right Knee"},{"euler":{"heading":26.854671461396133,"pitch":-132.7356281935622,"roll":55.338532278866744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.108"} +{"sensors":[{"euler":{"heading":120.89602106972836,"pitch":135.83055409666432,"roll":25.91900775716853},"location":"Left Knee"},{"euler":{"heading":73.54109907137384,"pitch":103.98308051374755,"roll":29.165846794566846},"location":"Left Ankle"},{"euler":{"heading":58.68050291110376,"pitch":-4.099939193809774,"roll":-4.089769439839717},"location":"Right Ankle"},{"euler":{"heading":108.7669850834618,"pitch":-159.35902259394456,"roll":57.47062586943355},"location":"Right Hip"},{"euler":{"heading":122.07447244453063,"pitch":-118.08582393788457,"roll":-28.86572526862097},"location":"Right Knee"},{"euler":{"heading":26.30670431525652,"pitch":-131.518315374206,"roll":54.84842905098007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.208"} +{"sensors":[{"euler":{"heading":142.12516896275554,"pitch":137.8099986869979,"roll":27.495856981451677},"location":"Left Knee"},{"euler":{"heading":70.19948916423645,"pitch":103.5035224623728,"roll":26.249262115110163},"location":"Left Ankle"},{"euler":{"heading":57.237452619993384,"pitch":-3.9461952744287965,"roll":-4.668292495855746},"location":"Right Ankle"},{"euler":{"heading":108.73403657511562,"pitch":-160.4481203345501,"roll":58.436063282490196},"location":"Right Hip"},{"euler":{"heading":124.17952520007756,"pitch":-118.30849154409611,"roll":-30.597902741758872},"location":"Right Knee"},{"euler":{"heading":26.72603388373087,"pitch":-130.9414838367854,"roll":54.73858614588207},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.310"} +{"sensors":[{"euler":{"heading":162.50015206647998,"pitch":138.6852488182981,"roll":28.77127128330651},"location":"Left Knee"},{"euler":{"heading":68.7482902478128,"pitch":103.25942021613552,"roll":24.718085903599146},"location":"Left Ankle"},{"euler":{"heading":54.20120735799404,"pitch":-4.182825746985917,"roll":-5.363963246270172},"location":"Right Ankle"},{"euler":{"heading":109.82313291760407,"pitch":-160.3470583010951,"roll":58.63620695424118},"location":"Right Hip"},{"euler":{"heading":126.7428226800698,"pitch":-119.00889238968651,"roll":-33.16311246758299},"location":"Right Knee"},{"euler":{"heading":26.897180495357784,"pitch":-130.62858545310687,"roll":54.764727531293865},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.410"} +{"sensors":[{"euler":{"heading":181.650136859832,"pitch":138.7229739364683,"roll":29.76289415497586},"location":"Left Knee"},{"euler":{"heading":68.06721122303152,"pitch":103.18972819452196,"roll":24.096277313239234},"location":"Left Ankle"},{"euler":{"heading":50.49358662219464,"pitch":-4.770793172287325,"roll":-5.990066921643155},"location":"Right Ankle"},{"euler":{"heading":111.96581962584366,"pitch":-159.1811024709856,"roll":57.86008625881706},"location":"Right Hip"},{"euler":{"heading":129.03729041206282,"pitch":-119.73925315071787,"roll":-35.59680122082469},"location":"Right Knee"},{"euler":{"heading":27.463712445822008,"pitch":-131.10322690779617,"roll":54.95075477816448},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.511"} +{"sensors":[{"euler":{"heading":199.32262317384883,"pitch":138.30692654282146,"roll":30.530354739478277},"location":"Left Knee"},{"euler":{"heading":68.61049010072837,"pitch":103.25200537506976,"roll":24.06164958191531},"location":"Left Ankle"},{"euler":{"heading":48.58172795997518,"pitch":-5.299963855058593,"roll":-6.30356022947884},"location":"Right Ankle"},{"euler":{"heading":114.0192376632593,"pitch":-157.97549222388704,"roll":56.436577632935354},"location":"Right Hip"},{"euler":{"heading":129.15856137085655,"pitch":-119.4153278356461,"roll":-36.50587109874222},"location":"Right Knee"},{"euler":{"heading":28.229841201239807,"pitch":-132.18665421701655,"roll":55.27442930034803},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.611"} +{"sensors":[{"euler":{"heading":179.85911085646396,"pitch":137.48873388853931,"roll":30.99606926553045},"location":"Left Knee"},{"euler":{"heading":69.21194109065554,"pitch":103.35805483756279,"roll":24.23673462372378},"location":"Left Ankle"},{"euler":{"heading":49.20480516397767,"pitch":-5.9324674695527335,"roll":-5.998204206530957},"location":"Right Ankle"},{"euler":{"heading":115.47356389693338,"pitch":-157.25294300149832,"roll":54.73666986964182},"location":"Right Hip"},{"euler":{"heading":127.3489552337709,"pitch":-118.2612950520815,"roll":-35.742783988868},"location":"Right Knee"},{"euler":{"heading":29.05685708111583,"pitch":-133.7367387953149,"roll":55.69698637031323},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.712"} +{"sensors":[{"euler":{"heading":162.98569977081758,"pitch":136.3586104996854,"roll":31.05896233897741},"location":"Left Knee"},{"euler":{"heading":70.34699698159,"pitch":103.61599935380652,"roll":24.856811161351402},"location":"Left Ankle"},{"euler":{"heading":52.1030746475799,"pitch":-6.1142207225974605,"roll":-5.204633785877862},"location":"Right Ankle"},{"euler":{"heading":116.06995750724005,"pitch":-156.71514870134848,"roll":53.55050288267764},"location":"Right Hip"},{"euler":{"heading":123.6203097103938,"pitch":-117.09141554687335,"roll":-33.0747555899812},"location":"Right Knee"},{"euler":{"heading":30.076171373004247,"pitch":-135.69431491578342,"roll":56.26478773328191},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.814"} +{"sensors":[{"euler":{"heading":148.43712979373583,"pitch":135.14774944971685,"roll":30.496816105079667},"location":"Left Knee"},{"euler":{"heading":72.112297283431,"pitch":104.00439941842586,"roll":26.233630045216263},"location":"Left Ankle"},{"euler":{"heading":55.180267182821915,"pitch":-6.321548650337714,"roll":-4.196670407290076},"location":"Right Ankle"},{"euler":{"heading":115.01296175651605,"pitch":-156.76863383121363,"roll":53.22670259440988},"location":"Right Hip"},{"euler":{"heading":119.80827873935442,"pitch":-116.35102399218601,"roll":-30.273530030983082},"location":"Right Knee"},{"euler":{"heading":31.137304235703823,"pitch":-138.0248834242051,"roll":56.87580895995373},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.915"} +{"sensors":[{"euler":{"heading":136.43091681436226,"pitch":134.00797450474516,"roll":28.8971344945717},"location":"Left Knee"},{"euler":{"heading":73.9010675550879,"pitch":104.44770947658328,"roll":28.435267040694637},"location":"Left Ankle"},{"euler":{"heading":57.01224046453972,"pitch":-6.339393785303943,"roll":-3.7207533665610684},"location":"Right Ankle"},{"euler":{"heading":114.20541558086444,"pitch":-156.91052044809226,"roll":53.28528233496889},"location":"Right Hip"},{"euler":{"heading":117.51495086541898,"pitch":-116.15967159296741,"roll":-28.546177027884774},"location":"Right Knee"},{"euler":{"heading":32.07357381213344,"pitch":-139.26614508178457,"roll":57.494478063958354},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.17"} +{"sensors":[{"euler":{"heading":127.43782513292605,"pitch":132.51342705427066,"roll":26.61992104511453},"location":"Left Knee"},{"euler":{"heading":77.48596079957912,"pitch":106.49668852892496,"roll":31.922990336625173},"location":"Left Ankle"},{"euler":{"heading":58.21101641808575,"pitch":-6.124204406773549,"roll":-3.3986780299049615},"location":"Right Ankle"},{"euler":{"heading":113.253624022778,"pitch":-157.08821840328304,"roll":53.794254101472},"location":"Right Hip"},{"euler":{"heading":116.79470577887709,"pitch":-116.26870443367068,"roll":-27.579059325096296},"location":"Right Knee"},{"euler":{"heading":31.634966430920098,"pitch":-138.4645305736061,"roll":57.56378025756252},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.118"} +{"sensors":[{"euler":{"heading":119.07529261963344,"pitch":131.8808343488436,"roll":24.83917894060308},"location":"Left Knee"},{"euler":{"heading":79.8061147196212,"pitch":106.59701967603247,"roll":34.424441302962656},"location":"Left Ankle"},{"euler":{"heading":58.98366477627717,"pitch":-5.743033966096195,"roll":-3.3463102269144653},"location":"Right Ankle"},{"euler":{"heading":112.50951162050019,"pitch":-157.19189656295472,"roll":54.5898286913248},"location":"Right Hip"},{"euler":{"heading":117.17773520098937,"pitch":-116.6793339903036,"roll":-27.252403392586665},"location":"Right Knee"},{"euler":{"heading":28.496469787828087,"pitch":-136.5618275162455,"roll":56.81365223180627},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.219"} +{"sensors":[{"euler":{"heading":108.2115133576701,"pitch":132.61775091395924,"roll":24.77401104654277},"location":"Left Knee"},{"euler":{"heading":78.86300324765908,"pitch":105.49356770842924,"roll":34.15074717266639},"location":"Left Ankle"},{"euler":{"heading":59.32279829864946,"pitch":-5.287480569486576,"roll":-3.399179204223019},"location":"Right Ankle"},{"euler":{"heading":111.91481045845018,"pitch":-157.36645690665927,"roll":55.54334582219232},"location":"Right Hip"},{"euler":{"heading":118.17871168089044,"pitch":-117.18015059127325,"roll":-27.402163053328},"location":"Right Knee"},{"euler":{"heading":27.05307280904528,"pitch":-134.44314476462097,"roll":55.844787008625644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.320"} +{"sensors":[{"euler":{"heading":130.3591120219031,"pitch":134.90597582256333,"roll":26.352859941888497},"location":"Left Knee"},{"euler":{"heading":75.17670292289317,"pitch":104.21296093758632,"roll":30.916922455399753},"location":"Left Ankle"},{"euler":{"heading":59.140518468784514,"pitch":-4.758732512537918,"roll":-3.7842612838007175},"location":"Right Ankle"},{"euler":{"heading":111.61082941260517,"pitch":-157.67981121599337,"roll":56.51401123997309},"location":"Right Hip"},{"euler":{"heading":119.72959051280141,"pitch":-117.70588553214593,"roll":-28.0681967479952},"location":"Right Knee"},{"euler":{"heading":26.322765528140753,"pitch":-132.98008028815886,"roll":55.16655830776308},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.421"} +{"sensors":[{"euler":{"heading":150.2169508197128,"pitch":137.227878240307,"roll":27.90507394769965},"location":"Left Knee"},{"euler":{"heading":71.23403263060386,"pitch":103.4229148438277,"roll":27.41898020985978},"location":"Left Ankle"},{"euler":{"heading":58.18271662190607,"pitch":-4.439109261284126,"roll":-4.318335155420646},"location":"Right Ankle"},{"euler":{"heading":111.58099647134466,"pitch":-158.19308009439405,"roll":57.46886011597578},"location":"Right Hip"},{"euler":{"heading":121.93163146152126,"pitch":-118.14779697893134,"roll":-29.49887707319568},"location":"Right Knee"},{"euler":{"heading":26.284238975326677,"pitch":-132.30082225934297,"roll":54.812402476986776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.522"} +{"sensors":[{"euler":{"heading":169.65150573774153,"pitch":138.3050904162763,"roll":29.214566552929686},"location":"Left Knee"},{"euler":{"heading":68.95437936754348,"pitch":103.09937335944493,"roll":25.339582188873802},"location":"Left Ankle"},{"euler":{"heading":55.470694959715466,"pitch":-4.763948335155714,"roll":-4.874001639878582},"location":"Right Ankle"},{"euler":{"heading":112.17914682421019,"pitch":-158.13002208495465,"roll":57.940724104378205},"location":"Right Hip"},{"euler":{"heading":124.73846831536913,"pitch":-118.60801728103822,"roll":-32.01773936587611},"location":"Right Knee"},{"euler":{"heading":26.20581507779401,"pitch":-131.71449003340868,"roll":54.6811622292881},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.623"} +{"sensors":[{"euler":{"heading":188.00510516396739,"pitch":138.51833137464868,"roll":30.305609897636717},"location":"Left Knee"},{"euler":{"heading":68.25894143078914,"pitch":103.09568602350043,"roll":24.36812396998642},"location":"Left Ankle"},{"euler":{"heading":51.82987546374392,"pitch":-5.081303501640143,"roll":-5.574101475890724},"location":"Right Ankle"},{"euler":{"heading":113.93623214178919,"pitch":-157.1107698764592,"roll":57.42165169394038},"location":"Right Hip"},{"euler":{"heading":127.53337148383221,"pitch":-119.8034655529344,"roll":-34.5409654292885},"location":"Right Knee"},{"euler":{"heading":26.49148357001461,"pitch":-131.6680410300678,"roll":54.83179600635929},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.724"} +{"sensors":[{"euler":{"heading":205.09209464757066,"pitch":138.13524823718382,"roll":31.206298907873048},"location":"Left Knee"},{"euler":{"heading":68.80804728771022,"pitch":103.3236174211504,"roll":24.25631157298778},"location":"Left Ankle"},{"euler":{"heading":49.703137917369524,"pitch":-5.416923151476129,"roll":-5.904191328301652},"location":"Right Ankle"},{"euler":{"heading":115.80510892761028,"pitch":-156.03094288881326,"roll":56.12323652454635},"location":"Right Hip"},{"euler":{"heading":128.330034335449,"pitch":-119.86061899764096,"roll":-35.84936888635965},"location":"Right Knee"},{"euler":{"heading":27.16108521301315,"pitch":-132.40748692706103,"roll":55.142366405723365},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.825"} +{"sensors":[{"euler":{"heading":184.9641351828136,"pitch":137.44672341346543,"roll":31.691919017085745},"location":"Left Knee"},{"euler":{"heading":69.3147425589392,"pitch":103.44750567903536,"roll":24.330680415689002},"location":"Left Ankle"},{"euler":{"heading":49.99532412563258,"pitch":-6.025230836328516,"roll":-5.651272195471487},"location":"Right Ankle"},{"euler":{"heading":117.26209803484926,"pitch":-155.45909859993193,"roll":54.36716287209172},"location":"Right Hip"},{"euler":{"heading":126.8282809019041,"pitch":-118.76205709787686,"roll":-35.38318199772368},"location":"Right Knee"},{"euler":{"heading":27.769976691711832,"pitch":-133.61673823435493,"roll":55.54062976515103},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.925"} +{"sensors":[{"euler":{"heading":167.47397166453226,"pitch":136.5208010721189,"roll":31.716477115377174},"location":"Left Knee"},{"euler":{"heading":70.17076830304528,"pitch":103.68400511113182,"roll":24.822612374120105},"location":"Left Ankle"},{"euler":{"heading":52.48329171306932,"pitch":-6.297707752695665,"roll":-4.842394975924337},"location":"Right Ankle"},{"euler":{"heading":117.74838823136434,"pitch":-155.16318873993873,"roll":52.97419658488255},"location":"Right Hip"},{"euler":{"heading":123.45795281171368,"pitch":-117.56710138808918,"roll":-33.138613797951315},"location":"Right Knee"},{"euler":{"heading":28.42422902254065,"pitch":-135.20506441091942,"roll":56.049066788635926},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.25"} +{"sensors":[{"euler":{"heading":152.32032449807903,"pitch":135.44372096490702,"roll":31.201079403839458},"location":"Left Knee"},{"euler":{"heading":71.67869147274075,"pitch":104.04060460001864,"roll":25.971601136708095},"location":"Left Ankle"},{"euler":{"heading":55.4412125417624,"pitch":-6.199186977426098,"roll":-3.8456554783319037},"location":"Right Ankle"},{"euler":{"heading":116.41104940822791,"pitch":-155.39061986594487,"roll":52.5580269263943},"location":"Right Hip"},{"euler":{"heading":119.51840753054232,"pitch":-116.82914124928027,"roll":-30.193502418156182},"location":"Right Knee"},{"euler":{"heading":29.213056120286588,"pitch":-137.2470579698275,"roll":56.62541010977233},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.128"} +{"sensors":[{"euler":{"heading":139.75704204827113,"pitch":134.2618488684163,"roll":28.21847146345551},"location":"Left Knee"},{"euler":{"heading":73.74832232546667,"pitch":104.35529414001678,"roll":28.074441023037284},"location":"Left Ankle"},{"euler":{"heading":57.69084128758616,"pitch":-6.0355182796834885,"roll":-3.4235899304987134},"location":"Right Ankle"},{"euler":{"heading":114.80744446740513,"pitch":-155.9640578793504,"roll":52.67097423375487},"location":"Right Hip"},{"euler":{"heading":117.0165667774881,"pitch":-116.63372712435225,"roll":-28.149152176340564},"location":"Right Knee"},{"euler":{"heading":30.19800050825793,"pitch":-138.92860217284476,"roll":57.2691190987951},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.228"} +{"sensors":[{"euler":{"heading":130.12508784344402,"pitch":133.0669139815747,"roll":26.06537431710996},"location":"Left Knee"},{"euler":{"heading":77.01099009292001,"pitch":106.2385147260151,"roll":31.373246920733557},"location":"Left Ankle"},{"euler":{"heading":59.09675715882754,"pitch":-5.83821645171514,"roll":-3.1499809374488423},"location":"Right Ankle"},{"euler":{"heading":113.44545002066462,"pitch":-156.46765209141537,"roll":53.16637681037938},"location":"Right Hip"},{"euler":{"heading":116.0086600997393,"pitch":-116.72660441191704,"roll":-26.99048695870651},"location":"Right Knee"},{"euler":{"heading":29.265700457432136,"pitch":-138.0419919555603,"roll":57.29220718891559},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.329"} +{"sensors":[{"euler":{"heading":121.71257905909961,"pitch":132.42272258341723,"roll":24.196336885398964},"location":"Left Knee"},{"euler":{"heading":79.34114108362802,"pitch":106.4209132534136,"roll":34.1046722286602},"location":"Left Ankle"},{"euler":{"heading":60.055831442944786,"pitch":-5.4668948065436265,"roll":-3.1224828437039585},"location":"Right Ankle"},{"euler":{"heading":112.44465501859817,"pitch":-156.82713688227383,"roll":53.92473912934145},"location":"Right Hip"},{"euler":{"heading":116.12654408976537,"pitch":-117.13519397072534,"roll":-26.478938262835857},"location":"Right Knee"},{"euler":{"heading":27.732880411688924,"pitch":-136.04404276000426,"roll":56.68798647002403},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.430"} +{"sensors":[{"euler":{"heading":111.09757115318966,"pitch":132.96170032507553,"roll":23.964203196859067},"location":"Left Knee"},{"euler":{"heading":79.01952697526521,"pitch":105.32882192807224,"roll":34.362955005794184},"location":"Left Ankle"},{"euler":{"heading":60.52524829865031,"pitch":-4.920205325889264,"roll":-3.3102345593335625},"location":"Right Ankle"},{"euler":{"heading":111.72518951673835,"pitch":-157.05067319404645,"roll":54.819765216407305},"location":"Right Hip"},{"euler":{"heading":116.98888968078884,"pitch":-117.7529245736528,"roll":-26.43729443655227},"location":"Right Knee"},{"euler":{"heading":25.340842370520033,"pitch":-134.22713848400383,"roll":55.53168782302163},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.531"} +{"sensors":[{"euler":{"heading":133.0440640378707,"pitch":134.98428029256797,"roll":25.42403287717316},"location":"Left Knee"},{"euler":{"heading":75.67382427773869,"pitch":103.92718973526502,"roll":31.807909505214766},"location":"Left Ankle"},{"euler":{"heading":60.485223468785286,"pitch":-4.384434793300338,"roll":-3.4917111034002066},"location":"Right Ankle"},{"euler":{"heading":111.25892056506451,"pitch":-157.30185587464183,"roll":55.787788694766576},"location":"Right Hip"},{"euler":{"heading":118.20250071270996,"pitch":-118.38388211628752,"roll":-26.768564992897048},"location":"Right Knee"},{"euler":{"heading":23.86925813346803,"pitch":-132.73567463560346,"roll":54.70976904071947},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.632"} +{"sensors":[{"euler":{"heading":151.72715763408362,"pitch":137.67960226331118,"roll":27.169129589455846},"location":"Left Knee"},{"euler":{"heading":71.36894184996483,"pitch":102.69697076173851,"roll":27.90836855469329},"location":"Left Ankle"},{"euler":{"heading":59.76170112190676,"pitch":-3.8334913139703044,"roll":-4.061289993060186},"location":"Right Ankle"},{"euler":{"heading":111.00177850855808,"pitch":-157.81542028717766,"roll":56.83400982528992},"location":"Right Hip"},{"euler":{"heading":120.05725064143897,"pitch":-118.92674390465876,"roll":-27.754208493607344},"location":"Right Knee"},{"euler":{"heading":23.663582320121225,"pitch":-131.85585717204313,"roll":54.332542136647525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.733"} +{"sensors":[{"euler":{"heading":170.0669418706753,"pitch":139.27414203698007,"roll":28.708466630510262},"location":"Left Knee"},{"euler":{"heading":68.47579766496835,"pitch":102.15227368556467,"roll":25.24878169922396},"location":"Left Ankle"},{"euler":{"heading":58.02928100971609,"pitch":-3.825142182573274,"roll":-4.686410993754167},"location":"Right Ankle"},{"euler":{"heading":111.27660065770228,"pitch":-158.45887825845992,"roll":57.70060884276093},"location":"Right Hip"},{"euler":{"heading":122.46402557729508,"pitch":-119.14656951419289,"roll":-29.710037644246608},"location":"Right Knee"},{"euler":{"heading":23.940974088109105,"pitch":-131.35777145483883,"roll":54.168037922982776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.833"} +{"sensors":[{"euler":{"heading":187.94149768360776,"pitch":139.72172783328205,"roll":29.912619967459236},"location":"Left Knee"},{"euler":{"heading":66.98446789847152,"pitch":101.9682963170082,"roll":23.730153529301568},"location":"Left Ankle"},{"euler":{"heading":54.31385290874448,"pitch":-3.805127964315947,"roll":-5.580269894378751},"location":"Right Ankle"},{"euler":{"heading":112.64894059193205,"pitch":-157.96299043261394,"roll":57.69304795848484},"location":"Right Hip"},{"euler":{"heading":125.12387301956556,"pitch":-120.0381625627736,"roll":-32.18278387982195},"location":"Right Knee"},{"euler":{"heading":24.290626679298192,"pitch":-131.00324430935495,"roll":54.2512341306845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.934"} +{"sensors":[{"euler":{"heading":204.541097915247,"pitch":139.55580504995385,"roll":30.871357970713312},"location":"Left Knee"},{"euler":{"heading":66.47352110862437,"pitch":101.94021668530738,"roll":22.96338817637141},"location":"Left Ankle"},{"euler":{"heading":51.007467617870034,"pitch":-4.130865167884353,"roll":-6.0347429049408765},"location":"Right Ankle"},{"euler":{"heading":114.72779653273885,"pitch":-156.74794138935255,"roll":56.84249316263636},"location":"Right Hip"},{"euler":{"heading":126.89898571760901,"pitch":-120.57809630649625,"roll":-34.170755491839756},"location":"Right Knee"},{"euler":{"heading":24.861564011368372,"pitch":-131.52166987841946,"roll":54.432360717616056},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.36"} +{"sensors":[{"euler":{"heading":220.0244881237223,"pitch":138.88147454495845,"roll":31.60922217364198},"location":"Left Knee"},{"euler":{"heading":67.10741899776193,"pitch":102.08994501677664,"roll":22.967049358734272},"location":"Left Ankle"},{"euler":{"heading":50.287970856083035,"pitch":-4.774028651095918,"roll":-5.987518614446789},"location":"Right Ankle"},{"euler":{"heading":116.47376687946496,"pitch":-155.7668972504173,"roll":55.37699384637273},"location":"Right Hip"},{"euler":{"heading":126.00908714584811,"pitch":-119.63278667584662,"roll":-34.26617994265578},"location":"Right Knee"},{"euler":{"heading":25.71290761023154,"pitch":-132.63825289057752,"roll":54.82037464585446},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.137"} +{"sensors":[{"euler":{"heading":198.61578931135008,"pitch":137.88082709046262,"roll":31.954549956277784},"location":"Left Knee"},{"euler":{"heading":67.88417709798574,"pitch":102.27470051509897,"roll":23.27034442286085},"location":"Left Ankle"},{"euler":{"heading":51.89042377047473,"pitch":-5.346625785986326,"roll":-5.50126675300211},"location":"Right Ankle"},{"euler":{"heading":117.40764019151847,"pitch":-155.35895752537556,"roll":53.82679446173545},"location":"Right Hip"},{"euler":{"heading":123.2394284312633,"pitch":-118.22575800826196,"roll":-32.4833119483902},"location":"Right Knee"},{"euler":{"heading":26.654116849208386,"pitch":-134.18692760151976,"roll":55.33208718126901},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.238"} +{"sensors":[{"euler":{"heading":179.97296038021508,"pitch":136.65524438141637,"roll":31.759094960650007},"location":"Left Knee"},{"euler":{"heading":69.18325938818717,"pitch":102.60973046358907,"roll":24.080809980574763},"location":"Left Ankle"},{"euler":{"heading":54.95138139342726,"pitch":-5.655713207387694,"roll":-4.594890077701899},"location":"Right Ankle"},{"euler":{"heading":117.39812617236663,"pitch":-155.048061772838,"roll":52.969115015561904},"location":"Right Hip"},{"euler":{"heading":119.31548558813698,"pitch":-117.08443220743577,"roll":-29.503730753551185},"location":"Right Knee"},{"euler":{"heading":27.70745516428755,"pitch":-136.11823484136778,"roll":55.96137846314211},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.338"} +{"sensors":[{"euler":{"heading":163.90691434219357,"pitch":135.33971994327473,"roll":30.976935464585008},"location":"Left Knee"},{"euler":{"heading":71.24618344936844,"pitch":103.07375741723018,"roll":25.76022898251729},"location":"Left Ankle"},{"euler":{"heading":55.893743254084534,"pitch":-5.390141886648925,"roll":-3.947901069931709},"location":"Right Ankle"},{"euler":{"heading":115.78956355512997,"pitch":-155.4245055955542,"roll":52.859703514005716},"location":"Right Hip"},{"euler":{"heading":116.25893702932328,"pitch":-116.8384889866922,"roll":-27.02210767819607},"location":"Right Knee"},{"euler":{"heading":29.055459647858797,"pitch":-138.337661357231,"roll":56.65899061682791},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.439"} +{"sensors":[{"euler":{"heading":150.55372290797422,"pitch":134.41199794894726,"roll":28.947991918126508},"location":"Left Knee"},{"euler":{"heading":73.4778151044316,"pitch":103.85388167550717,"roll":28.546706084265562},"location":"Left Ankle"},{"euler":{"heading":57.648118928676084,"pitch":-5.288627697984032,"roll":-3.7718609629385385},"location":"Right Ankle"},{"euler":{"heading":114.73560719961698,"pitch":-155.69455503599877,"roll":53.18623316260515},"location":"Right Hip"},{"euler":{"heading":114.77054332639095,"pitch":-116.692140088023,"roll":-25.53864691037646},"location":"Right Knee"},{"euler":{"heading":29.068663683072916,"pitch":-138.78514522150792,"roll":56.89309155514512},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.539"} +{"sensors":[{"euler":{"heading":139.9983506171768,"pitch":133.33329815405253,"roll":26.653192726313858},"location":"Left Knee"},{"euler":{"heading":75.94253359398844,"pitch":105.02474350795646,"roll":31.660785475839006},"location":"Left Ankle"},{"euler":{"heading":58.89580703580848,"pitch":-5.184764928185629,"roll":-3.6634248666446845},"location":"Right Ankle"},{"euler":{"heading":113.52454647965529,"pitch":-156.0563495323989,"roll":53.88010984634464},"location":"Right Hip"},{"euler":{"heading":114.35598899375185,"pitch":-116.7729260792207,"roll":-24.791032219338813},"location":"Right Knee"},{"euler":{"heading":27.936797314765624,"pitch":-136.9816306993571,"roll":56.66003239963061},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.639"} +{"sensors":[{"euler":{"heading":129.08601555545914,"pitch":133.28746833864727,"roll":25.444123453682472},"location":"Left Knee"},{"euler":{"heading":76.99203023458959,"pitch":104.39101915716083,"roll":33.082206928255104},"location":"Left Ankle"},{"euler":{"heading":59.662476332227634,"pitch":-5.078788435367066,"roll":-3.7470823799802164},"location":"Right Ankle"},{"euler":{"heading":112.80334183168975,"pitch":-156.325714579159,"roll":54.69834886171017},"location":"Right Hip"},{"euler":{"heading":114.87664009437667,"pitch":-116.85188347129863,"roll":-24.693178997404935},"location":"Right Knee"},{"euler":{"heading":26.37436758328906,"pitch":-134.95846762942142,"roll":55.83152915966755},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.742"} +{"sensors":[{"euler":{"heading":150.74616399991322,"pitch":134.67122150478255,"roll":26.174711108314227},"location":"Left Knee"},{"euler":{"heading":74.97407721113063,"pitch":103.20191724144475,"roll":31.64273623542959},"location":"Left Ankle"},{"euler":{"heading":59.93997869900487,"pitch":-5.10840959183036,"roll":-3.9036241419821947},"location":"Right Ankle"},{"euler":{"heading":112.37925764852078,"pitch":-156.81189312124312,"roll":55.54101397553916},"location":"Right Hip"},{"euler":{"heading":115.907726084939,"pitch":-116.79794512416876,"roll":-25.155111097664445},"location":"Right Knee"},{"euler":{"heading":25.068180824960155,"pitch":-133.06887086647927,"roll":55.02337624370079},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.842"} +{"sensors":[{"euler":{"heading":167.87154759992188,"pitch":137.1853493543043,"roll":27.750989997482808},"location":"Left Knee"},{"euler":{"heading":71.00791949001757,"pitch":102.01297551730026,"roll":28.128462611886633},"location":"Left Ankle"},{"euler":{"heading":59.627230829104384,"pitch":-4.910068632647324,"roll":-4.475761727783976},"location":"Right Ankle"},{"euler":{"heading":112.1663318836687,"pitch":-157.3557038091188,"roll":56.486912577985244},"location":"Right Hip"},{"euler":{"heading":117.4919534764451,"pitch":-116.92440061175189,"roll":-26.070849987898},"location":"Right Knee"},{"euler":{"heading":24.57386274246414,"pitch":-131.74948377983137,"roll":54.50228861933071},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.943"} +{"sensors":[{"euler":{"heading":183.94689283992972,"pitch":139.38556441887386,"roll":29.163390997734528},"location":"Left Knee"},{"euler":{"heading":67.56962754101582,"pitch":101.49917796557024,"roll":24.890616350697968},"location":"Left Ankle"},{"euler":{"heading":56.86450774619395,"pitch":-4.706561769382591,"roll":-5.103185555005578},"location":"Right Ankle"},{"euler":{"heading":112.06844869530184,"pitch":-158.31388342820694,"roll":57.46322132018672},"location":"Right Hip"},{"euler":{"heading":119.6552581288006,"pitch":-117.1257105505767,"roll":-27.638764989108203},"location":"Right Knee"},{"euler":{"heading":24.691476468217726,"pitch":-131.06203540184825,"roll":54.183309757397645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.44"} +{"sensors":[{"euler":{"heading":200.15845355593677,"pitch":140.23450797698646,"roll":30.347051897961077},"location":"Left Knee"},{"euler":{"heading":65.93766478691424,"pitch":101.43676016901323,"roll":23.101554715628172},"location":"Left Ankle"},{"euler":{"heading":52.90305697157456,"pitch":-4.7671555924443325,"roll":-5.811616999505021},"location":"Right Ankle"},{"euler":{"heading":112.81160382577166,"pitch":-158.70124508538623,"roll":57.891899188168054},"location":"Right Hip"},{"euler":{"heading":122.35848231592054,"pitch":-117.06313949551904,"roll":-30.287388490197387},"location":"Right Knee"},{"euler":{"heading":24.897328821395956,"pitch":-130.49333186166342,"roll":54.096228781657885},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.144"} +{"sensors":[{"euler":{"heading":215.61760820034308,"pitch":140.21730717928781,"roll":31.39359670816497},"location":"Left Knee"},{"euler":{"heading":65.30014830822282,"pitch":101.5180841521119,"roll":22.016399244065358},"location":"Left Ankle"},{"euler":{"heading":49.6252512744171,"pitch":-4.777940033199899,"roll":-6.567955299554519},"location":"Right Ankle"},{"euler":{"heading":114.39919344319449,"pitch":-157.81862057684762,"roll":57.44020926935125},"location":"Right Hip"},{"euler":{"heading":125.32888408432848,"pitch":-118.38182554596715,"roll":-32.90864964117765},"location":"Right Knee"},{"euler":{"heading":25.47009593925636,"pitch":-130.57524867549708,"roll":54.2741059034921},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.245"} +{"sensors":[{"euler":{"heading":229.9245973803088,"pitch":139.72057646135903,"roll":32.21673703734847},"location":"Left Knee"},{"euler":{"heading":65.61388347740053,"pitch":101.7287757369007,"roll":21.671009319658822},"location":"Left Ankle"},{"euler":{"heading":48.043976146975396,"pitch":-5.137646029879909,"roll":-6.904909769599068},"location":"Right Ankle"},{"euler":{"heading":116.34052409887505,"pitch":-156.69925851916287,"roll":56.214938342416126},"location":"Right Hip"},{"euler":{"heading":126.30224567589565,"pitch":-118.53739299137044,"roll":-34.361534677059886},"location":"Right Knee"},{"euler":{"heading":26.298086345330724,"pitch":-131.44272380794737,"roll":54.62169531314289},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.346"} +{"sensors":[{"euler":{"heading":207.2258876422779,"pitch":138.93601881522312,"roll":32.663813333613625},"location":"Left Knee"},{"euler":{"heading":66.06499512966049,"pitch":101.90589816321062,"roll":21.66015838769294},"location":"Left Ankle"},{"euler":{"heading":49.095828532277864,"pitch":-5.673881426891918,"roll":-6.558168792639162},"location":"Right Ankle"},{"euler":{"heading":117.60022168898755,"pitch":-156.10433266724658,"roll":54.624694508174514},"location":"Right Hip"},{"euler":{"heading":124.49077110830609,"pitch":-117.49615369223339,"roll":-33.5816312093539},"location":"Right Knee"},{"euler":{"heading":26.974527710797652,"pitch":-132.68595142715265,"roll":55.0220257818286},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.447"} +{"sensors":[{"euler":{"heading":187.4845488780501,"pitch":137.8486669337008,"roll":32.65368200025226},"location":"Left Knee"},{"euler":{"heading":66.86474561669445,"pitch":102.22155834688957,"roll":22.100392548923647},"location":"Left Ankle"},{"euler":{"heading":52.011245679050084,"pitch":-6.056493284202727,"roll":-5.483601913375246},"location":"Right Ankle"},{"euler":{"heading":117.7401995200888,"pitch":-155.73139940052195,"roll":53.62472505735706},"location":"Right Hip"},{"euler":{"heading":121.01669399747549,"pitch":-116.30903832301006,"roll":-31.13596808841851},"location":"Right Knee"},{"euler":{"heading":27.633324939717888,"pitch":-134.1111062844374,"roll":55.563573203645745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.549"} +{"sensors":[{"euler":{"heading":170.3048439902451,"pitch":136.62630024033072,"roll":32.03831380022704},"location":"Left Knee"},{"euler":{"heading":68.259521055025,"pitch":102.65565251220062,"roll":23.18410329403128},"location":"Left Ankle"},{"euler":{"heading":55.24762111114508,"pitch":-6.194593955782454,"roll":-4.535241722037721},"location":"Right Ankle"},{"euler":{"heading":116.45992956807993,"pitch":-155.95200946046975,"roll":53.24350255162136},"location":"Right Hip"},{"euler":{"heading":117.62127459772793,"pitch":-115.59688449070906,"roll":-28.50362127957666},"location":"Right Knee"},{"euler":{"heading":28.3512424457461,"pitch":-135.99999565599367,"roll":56.12596588328117},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.650"} +{"sensors":[{"euler":{"heading":155.96810959122058,"pitch":135.38867021629767,"roll":30.484482420204333},"location":"Left Knee"},{"euler":{"heading":70.12106894952251,"pitch":103.01508726098056,"roll":25.403192964628154},"location":"Left Ankle"},{"euler":{"heading":57.379109000030574,"pitch":-6.237634560204208,"roll":-4.144217549833949},"location":"Right Ankle"},{"euler":{"heading":115.07018661127194,"pitch":-156.40055851442278,"roll":53.27540229645923},"location":"Right Hip"},{"euler":{"heading":115.60914713795515,"pitch":-115.39969604163815,"roll":-26.797009151618994},"location":"Right Knee"},{"euler":{"heading":29.041118201171493,"pitch":-137.1374960903943,"roll":56.70711929495305},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.751"} +{"sensors":[{"euler":{"heading":144.58379863209854,"pitch":134.2435531946679,"roll":28.1735341781839},"location":"Left Knee"},{"euler":{"heading":73.15896205457027,"pitch":104.36357853488252,"roll":28.76912366816534},"location":"Left Ankle"},{"euler":{"heading":58.95994810002752,"pitch":-6.320121104183787,"roll":-3.8485457948505544},"location":"Right Ankle"},{"euler":{"heading":113.63191795014475,"pitch":-156.9292526629805,"roll":53.722862066813306},"location":"Right Hip"},{"euler":{"heading":114.97323242415963,"pitch":-115.34722643747433,"roll":-25.948558236457096},"location":"Right Knee"},{"euler":{"heading":27.974506381054344,"pitch":-136.02999648135489,"roll":56.711407365457745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.852"} +{"sensors":[{"euler":{"heading":134.2129187688887,"pitch":133.67544787520112,"roll":26.26243076036551},"location":"Left Knee"},{"euler":{"heading":75.51806584911324,"pitch":104.20847068139427,"roll":31.323461301348807},"location":"Left Ankle"},{"euler":{"heading":60.04520329002477,"pitch":-6.194358993765408,"roll":-3.751191215365499},"location":"Right Ankle"},{"euler":{"heading":112.60622615513029,"pitch":-157.28007739668246,"roll":54.45682586013198},"location":"Right Hip"},{"euler":{"heading":115.30715918174367,"pitch":-115.5625037937269,"roll":-25.70370241281139},"location":"Right Knee"},{"euler":{"heading":26.38330574294891,"pitch":-134.3332468332194,"roll":56.05901662891198},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.953"} +{"sensors":[{"euler":{"heading":121.35412689199983,"pitch":134.376653087681,"roll":26.06118768432896},"location":"Left Knee"},{"euler":{"heading":74.81625926420192,"pitch":102.89387361325485,"roll":31.272365171213927},"location":"Left Ankle"},{"euler":{"heading":60.6719329610223,"pitch":-5.912423094388868,"roll":-3.8823220938289493},"location":"Right Ankle"},{"euler":{"heading":111.79560353961726,"pitch":-157.51456965701422,"roll":55.33614327411878},"location":"Right Hip"},{"euler":{"heading":116.2326932635693,"pitch":-115.99375341435422,"roll":-25.90208217153025},"location":"Right Knee"},{"euler":{"heading":24.663725168654018,"pitch":-132.37492214989746,"roll":55.14686496602078},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.54"} +{"sensors":[{"euler":{"heading":141.76246420279983,"pitch":136.4952377789129,"roll":27.417568915896062},"location":"Left Knee"},{"euler":{"heading":71.37213333778172,"pitch":101.53573625192938,"roll":28.488878654092535},"location":"Left Ankle"},{"euler":{"heading":60.629739664920066,"pitch":-5.439930784949982,"roll":-4.131589884446054},"location":"Right Ankle"},{"euler":{"heading":111.15979318565554,"pitch":-157.88186269131282,"roll":56.24002894670691},"location":"Right Hip"},{"euler":{"heading":117.79692393721237,"pitch":-116.6131280729188,"roll":-26.586873954377225},"location":"Right Knee"},{"euler":{"heading":23.359852651788618,"pitch":-130.7686799349077,"roll":54.45717846941871},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.154"} +{"sensors":[{"euler":{"heading":159.54246778251985,"pitch":139.0144640010216,"roll":28.882062024306457},"location":"Left Knee"},{"euler":{"heading":67.32867000400356,"pitch":100.36966262673644,"roll":24.802490788683283},"location":"Left Ankle"},{"euler":{"heading":59.86676569842807,"pitch":-4.945937706454983,"roll":-4.6434308960014485},"location":"Right Ankle"},{"euler":{"heading":110.86256386708999,"pitch":-158.46867642218155,"roll":57.14727605203622},"location":"Right Hip"},{"euler":{"heading":119.90473154349114,"pitch":-117.17681526562691,"roll":-27.909436558939504},"location":"Right Knee"},{"euler":{"heading":23.067617386609754,"pitch":-129.99181194141696,"roll":54.06771062247684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.255"} +{"sensors":[{"euler":{"heading":178.04447100426788,"pitch":140.07551760091943,"roll":30.043855821875812},"location":"Left Knee"},{"euler":{"heading":65.2395530036032,"pitch":100.3576963640628,"roll":22.528491709814954},"location":"Left Ankle"},{"euler":{"heading":57.955089128585264,"pitch":-4.882593935809485,"roll":-5.160337806401304},"location":"Right Ankle"},{"euler":{"heading":111.032557480381,"pitch":-159.2030587799634,"roll":57.8512984468326},"location":"Right Hip"},{"euler":{"heading":122.43925838914203,"pitch":-117.64038373906423,"roll":-30.068492903045552},"location":"Right Knee"},{"euler":{"heading":23.11710564794878,"pitch":-129.54263074727527,"roll":53.84218956022915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.356"} +{"sensors":[{"euler":{"heading":195.8212739038411,"pitch":140.0804658408275,"roll":30.97697023968823},"location":"Left Knee"},{"euler":{"heading":64.14059770324289,"pitch":100.47192672765654,"roll":21.34439253883346},"location":"Left Ankle"},{"euler":{"heading":54.25958021572674,"pitch":-4.731834542228537,"roll":-6.056804025761174},"location":"Right Ankle"},{"euler":{"heading":112.2418017323429,"pitch":-158.6202529019671,"roll":57.68491860214934},"location":"Right Hip"},{"euler":{"heading":125.34533255022784,"pitch":-118.97634536515781,"roll":-32.630393612740995},"location":"Right Knee"},{"euler":{"heading":23.530395083153902,"pitch":-129.15086767254775,"roll":54.02047060420624},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.457"} +{"sensors":[{"euler":{"heading":211.995396513457,"pitch":139.70991925674474,"roll":31.579273215719407},"location":"Left Knee"},{"euler":{"heading":63.7765379329186,"pitch":100.53723405489089,"roll":20.797453284950112},"location":"Left Ankle"},{"euler":{"heading":51.39612219415407,"pitch":-4.739901088005683,"roll":-6.4636236231850575},"location":"Right Ankle"},{"euler":{"heading":113.99887155910862,"pitch":-157.6207276117704,"roll":56.66017674193441},"location":"Right Hip"},{"euler":{"heading":126.98579929520506,"pitch":-119.65371082864203,"roll":-34.49235425146689},"location":"Right Knee"},{"euler":{"heading":23.83360557483851,"pitch":-129.50453090529297,"roll":54.30592354378562},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.558"} +{"sensors":[{"euler":{"heading":226.7521068621113,"pitch":139.13267733107028,"roll":31.89634589414747},"location":"Left Knee"},{"euler":{"heading":64.08638413962674,"pitch":100.5022606494018,"roll":20.8677079564551},"location":"Left Ankle"},{"euler":{"heading":50.90025997473866,"pitch":-4.672160979205115,"roll":-6.436011260866552},"location":"Right Ankle"},{"euler":{"heading":115.50523440319776,"pitch":-156.68365485059337,"roll":55.21915906774097},"location":"Right Hip"},{"euler":{"heading":126.30596936568455,"pitch":-119.33208974577784,"roll":-34.586868826320206},"location":"Right Knee"},{"euler":{"heading":24.18149501735466,"pitch":-130.42282781476368,"roll":54.712831189407055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.658"} +{"sensors":[{"euler":{"heading":204.68314617590016,"pitch":138.28190959796325,"roll":31.837961304732723},"location":"Left Knee"},{"euler":{"heading":64.65274572566408,"pitch":100.55203458446164,"roll":21.24343716080959},"location":"Left Ankle"},{"euler":{"heading":52.4789839772648,"pitch":-4.642444881284604,"roll":-5.636160134779897},"location":"Right Ankle"},{"euler":{"heading":116.32346096287799,"pitch":-156.19028936553406,"roll":53.78474316096687},"location":"Right Hip"},{"euler":{"heading":123.6378724291161,"pitch":-118.47388077120006,"roll":-32.84693194368819},"location":"Right Knee"},{"euler":{"heading":24.738345515619194,"pitch":-131.74304503328733,"roll":55.27279807046635},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.759"} +{"sensors":[{"euler":{"heading":185.39608155831016,"pitch":137.25371863816693,"roll":31.35416517425945},"location":"Left Knee"},{"euler":{"heading":65.72497115309767,"pitch":100.65308112601548,"roll":22.094093444728635},"location":"Left Ankle"},{"euler":{"heading":55.55608557953832,"pitch":-4.940700393156144,"roll":-4.6412941213019066},"location":"Right Ankle"},{"euler":{"heading":115.82236486659019,"pitch":-156.15251042898066,"roll":52.98751884487018},"location":"Right Hip"},{"euler":{"heading":120.00533518620449,"pitch":-117.32024269408006,"roll":-30.043488749319373},"location":"Right Knee"},{"euler":{"heading":25.458260964057278,"pitch":-133.58749052995861,"roll":55.92676826341972},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.859"} +{"sensors":[{"euler":{"heading":168.84397340247915,"pitch":136.15959677435023,"roll":30.237498656833505},"location":"Left Knee"},{"euler":{"heading":67.4024740377879,"pitch":100.84402301341393,"roll":23.83468410025577},"location":"Left Ankle"},{"euler":{"heading":58.16297702158449,"pitch":-5.084130353840529,"roll":-3.9834147091717163},"location":"Right Ankle"},{"euler":{"heading":114.29012837993118,"pitch":-156.4185093860826,"roll":52.86376696038316},"location":"Right Hip"},{"euler":{"heading":117.05480166758404,"pitch":-116.70696842467207,"roll":-27.62038987438744},"location":"Right Knee"},{"euler":{"heading":26.59993486765155,"pitch":-135.99124147696276,"roll":56.640341437077744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.960"} +{"sensors":[{"euler":{"heading":155.54082606223125,"pitch":135.04988709691523,"roll":28.088748791150156},"location":"Left Knee"},{"euler":{"heading":71.68722663400911,"pitch":102.05337071207255,"roll":27.038715690230198},"location":"Left Ankle"},{"euler":{"heading":59.65917931942604,"pitch":-5.100717318456477,"roll":-3.7038232382545444},"location":"Right Ankle"},{"euler":{"heading":113.44861554193807,"pitch":-156.49540844747435,"roll":52.964890264344845},"location":"Right Hip"},{"euler":{"heading":115.46807150082564,"pitch":-116.48002158220487,"roll":-26.133350886948694},"location":"Right Knee"},{"euler":{"heading":26.839941380886394,"pitch":-136.7296173292665,"roll":57.03255729336997},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.61"} +{"sensors":[{"euler":{"heading":144.99299345600812,"pitch":133.83239838722372,"roll":25.57987391203514},"location":"Left Knee"},{"euler":{"heading":74.4997539706082,"pitch":103.5292836408653,"roll":30.43484412120718},"location":"Left Ankle"},{"euler":{"heading":60.63701138748343,"pitch":-5.190645586610829,"roll":-3.66469091442909},"location":"Right Ankle"},{"euler":{"heading":112.37250398774427,"pitch":-156.7958676027269,"roll":53.55590123791036},"location":"Right Hip"},{"euler":{"heading":115.27751435074309,"pitch":-116.35076942398439,"roll":-25.513765798253825},"location":"Right Knee"},{"euler":{"heading":26.018447242797755,"pitch":-135.18790559633985,"roll":56.94180156403297},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.162"} +{"sensors":[{"euler":{"heading":134.19994411040733,"pitch":133.57415854850134,"roll":24.159386520831625},"location":"Left Knee"},{"euler":{"heading":75.82477857354739,"pitch":103.00135527677878,"roll":32.19135970908646},"location":"Left Ankle"},{"euler":{"heading":61.34831024873509,"pitch":-5.284081027949746,"roll":-3.885721822986181},"location":"Right Ankle"},{"euler":{"heading":111.69775358896985,"pitch":-157.0600308424542,"roll":54.43156111411933},"location":"Right Hip"},{"euler":{"heading":115.73101291566879,"pitch":-116.19069248158596,"roll":-25.449889218428442},"location":"Right Knee"},{"euler":{"heading":24.69785251851798,"pitch":-133.41286503670585,"roll":56.21637140762967},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.262"} +{"sensors":[{"euler":{"heading":156.0986996993666,"pitch":134.6667426936512,"roll":24.718447868748463},"location":"Left Knee"},{"euler":{"heading":74.08605071619266,"pitch":101.9012197491009,"roll":31.090973738177816},"location":"Left Ankle"},{"euler":{"heading":61.49472922386158,"pitch":-5.386922925154773,"roll":-4.028399640687564},"location":"Right Ankle"},{"euler":{"heading":111.35297823007286,"pitch":-157.39777775820878,"roll":55.3571550027074},"location":"Right Hip"},{"euler":{"heading":116.72666162410192,"pitch":-116.05287323342736,"roll":-25.9111502965856},"location":"Right Knee"},{"euler":{"heading":23.509317266666184,"pitch":-131.63407853303528,"roll":55.44473426686671},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.362"} +{"sensors":[{"euler":{"heading":173.51382972942994,"pitch":136.8125684242861,"roll":26.221603081873617},"location":"Left Knee"},{"euler":{"heading":70.1711956445734,"pitch":100.88609777419082,"roll":27.694376364360032},"location":"Left Ankle"},{"euler":{"heading":61.02025630147543,"pitch":-5.223230632639296,"roll":-4.319309676618808},"location":"Right Ankle"},{"euler":{"heading":111.06143040706559,"pitch":-157.9204999823879,"roll":56.35893950243666},"location":"Right Hip"},{"euler":{"heading":118.37274546169172,"pitch":-116.26008591008463,"roll":-26.87628526692704},"location":"Right Knee"},{"euler":{"heading":23.020885539999565,"pitch":-130.34567067973177,"roll":54.950260840180036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.464"} +{"sensors":[{"euler":{"heading":189.58119675648697,"pitch":138.66881158185748,"roll":27.711942773686257},"location":"Left Knee"},{"euler":{"heading":66.89782608011606,"pitch":100.50373799677173,"roll":24.68743872792403},"location":"Left Ankle"},{"euler":{"heading":59.705730671327885,"pitch":-4.9946575693753665,"roll":-4.981128708956927},"location":"Right Ankle"},{"euler":{"heading":110.96153736635904,"pitch":-158.9159499841491,"roll":57.385545552193},"location":"Right Hip"},{"euler":{"heading":120.56672091552255,"pitch":-116.45907731907617,"roll":-28.53240674023434},"location":"Right Knee"},{"euler":{"heading":23.28754698599961,"pitch":-129.7673536117586,"roll":54.66148475616204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.564"} +{"sensors":[{"euler":{"heading":205.66057708083827,"pitch":139.27068042367173,"roll":28.89074849631763},"location":"Left Knee"},{"euler":{"heading":65.43304347210446,"pitch":100.54086419709456,"roll":23.081194855131628},"location":"Left Ankle"},{"euler":{"heading":57.09765760419509,"pitch":-5.15144181243783,"roll":-5.670515838061235},"location":"Right Ankle"},{"euler":{"heading":111.60913362972315,"pitch":-159.2618549857342,"roll":57.978240996973696},"location":"Right Hip"},{"euler":{"heading":123.4475488239703,"pitch":-116.91941958716856,"roll":-31.24791606621091},"location":"Right Knee"},{"euler":{"heading":23.55254228739965,"pitch":-129.31561825058276,"roll":54.63283628054584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.665"} +{"sensors":[{"euler":{"heading":221.07576937275445,"pitch":139.01861238130456,"roll":29.85792364668587},"location":"Left Knee"},{"euler":{"heading":65.07098912489401,"pitch":100.92427777738511,"roll":22.154325369618466},"location":"Left Ankle"},{"euler":{"heading":53.669141843775584,"pitch":-5.261297631194047,"roll":-6.3597142542551115},"location":"Right Ankle"},{"euler":{"heading":112.94822026675084,"pitch":-158.5356694871608,"roll":57.61791689727633},"location":"Right Hip"},{"euler":{"heading":126.02779394157326,"pitch":-117.8087276284517,"roll":-33.860624459589815},"location":"Right Knee"},{"euler":{"heading":24.216038058659684,"pitch":-129.50280642552448,"roll":54.87580265249126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.766"} +{"sensors":[{"euler":{"heading":199.24319243547902,"pitch":138.4167511431741,"roll":30.54088128201728},"location":"Left Knee"},{"euler":{"heading":65.57014021240461,"pitch":101.29434999964661,"roll":22.02014283265662},"location":"Left Ankle"},{"euler":{"heading":51.63972765939803,"pitch":-5.372667868074643,"roll":-6.7674928288296},"location":"Right Ankle"},{"euler":{"heading":114.43464824007576,"pitch":-157.6321025384447,"roll":56.5373752075487},"location":"Right Hip"},{"euler":{"heading":126.54376454741595,"pitch":-117.76535486560654,"roll":-34.92456201363083},"location":"Right Knee"},{"euler":{"heading":24.900684252793717,"pitch":-130.29002578297204,"roll":55.26322238724214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.866"} +{"sensors":[{"euler":{"heading":180.09387319193112,"pitch":137.5563260288567,"roll":30.843043153815554},"location":"Left Knee"},{"euler":{"heading":66.30687619116415,"pitch":101.60866499968196,"roll":22.25562854939096},"location":"Left Ankle"},{"euler":{"heading":52.33825489345823,"pitch":-5.610401081267179,"roll":-6.415743545946641},"location":"Right Ankle"},{"euler":{"heading":115.35368341606818,"pitch":-157.09389228460023,"roll":55.09613768679383},"location":"Right Hip"},{"euler":{"heading":124.71438809267435,"pitch":-116.92631937904589,"roll":-33.97585581226775},"location":"Right Knee"},{"euler":{"heading":25.604365827514346,"pitch":-131.49227320467483,"roll":55.74315014851793},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.967"} +{"sensors":[{"euler":{"heading":163.50948587273803,"pitch":136.438193425971,"roll":30.708738838433998},"location":"Left Knee"},{"euler":{"heading":67.31368857204774,"pitch":101.95404849971376,"roll":22.842565694451864},"location":"Left Ankle"},{"euler":{"heading":54.779429404112406,"pitch":-5.755610973140461,"roll":-5.455419191351977},"location":"Right Ankle"},{"euler":{"heading":115.23081507446136,"pitch":-156.90325305614022,"roll":53.96152391811445},"location":"Right Hip"},{"euler":{"heading":121.24919928340691,"pitch":-115.8774374411413,"roll":-31.44077023104098},"location":"Right Knee"},{"euler":{"heading":26.48142924476291,"pitch":-133.28054588420736,"roll":56.34383513366613},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.69"} +{"sensors":[{"euler":{"heading":149.25228728546423,"pitch":135.2131240833739,"roll":30.000364954590598},"location":"Left Knee"},{"euler":{"heading":68.88856971484297,"pitch":102.3648936497424,"roll":24.058309125006677},"location":"Left Ankle"},{"euler":{"heading":57.638986463701166,"pitch":-5.792549875826415,"roll":-4.59737727221678},"location":"Right Ankle"},{"euler":{"heading":113.82023356701522,"pitch":-157.1566777505262,"roll":53.577871526303014},"location":"Right Hip"},{"euler":{"heading":117.70552935506622,"pitch":-115.17719369702718,"roll":-28.60294320793688},"location":"Right Knee"},{"euler":{"heading":27.608286320286624,"pitch":-135.67749129578664,"roll":56.99070162029952},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.169"} +{"sensors":[{"euler":{"heading":137.4020585569178,"pitch":134.24181167503653,"roll":28.275328459131536},"location":"Left Knee"},{"euler":{"heading":70.92471274335868,"pitch":102.85340428476817,"roll":26.508728212506007},"location":"Left Ankle"},{"euler":{"heading":59.26883781733105,"pitch":-5.838294888243774,"roll":-4.156389544995101},"location":"Right Ankle"},{"euler":{"heading":112.7319602103137,"pitch":-157.43475997547358,"roll":53.58258437367272},"location":"Right Hip"},{"euler":{"heading":115.61622641955961,"pitch":-114.98447432732446,"roll":-26.761398887143194},"location":"Right Knee"},{"euler":{"heading":28.39120768825796,"pitch":-137.27224216620797,"roll":57.51663145826957},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.270"} +{"sensors":[{"euler":{"heading":128.549352701226,"pitch":133.0426305075329,"roll":25.904045613218383},"location":"Left Knee"},{"euler":{"heading":74.94474146902282,"pitch":105.27431385629136,"roll":30.082855391255407},"location":"Left Ankle"},{"euler":{"heading":60.32945403559795,"pitch":-5.910715399419397,"roll":-3.9095005904955915},"location":"Right Ankle"},{"euler":{"heading":111.59626418928234,"pitch":-157.7975339779262,"roll":54.061825936305446},"location":"Right Hip"},{"euler":{"heading":114.97335377760365,"pitch":-114.91727689459202,"roll":-25.804008998428877},"location":"Right Knee"},{"euler":{"heading":28.039586919432164,"pitch":-136.40751794958717,"roll":57.658718312442616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.370"} +{"sensors":[{"euler":{"heading":120.22566743110342,"pitch":132.5008674567796,"roll":24.076141051896546},"location":"Left Knee"},{"euler":{"heading":77.09401732212054,"pitch":105.24688247066223,"roll":32.51831985212986},"location":"Left Ankle"},{"euler":{"heading":60.984008632038154,"pitch":-5.900893859477457,"roll":-3.8748005314460325},"location":"Right Ankle"},{"euler":{"heading":111.06163777035411,"pitch":-157.9802805801336,"roll":54.8056433426749},"location":"Right Hip"},{"euler":{"heading":115.10726839984329,"pitch":-114.95054920513283,"roll":-25.417358098585993},"location":"Right Knee"},{"euler":{"heading":26.97312822748895,"pitch":-134.84176615462846,"roll":57.10534648119835},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.471"} +{"sensors":[{"euler":{"heading":108.84685068799307,"pitch":133.26328071110163,"roll":24.11852694670689},"location":"Left Knee"},{"euler":{"heading":76.05961558990847,"pitch":103.897194223596,"roll":32.06023786691688},"location":"Left Ankle"},{"euler":{"heading":61.29185776883434,"pitch":-5.8420544735297115,"roll":-3.97482047830143},"location":"Right Ankle"},{"euler":{"heading":110.80547399331871,"pitch":-158.16975252212026,"roll":55.64382900840741},"location":"Right Hip"},{"euler":{"heading":115.66529155985896,"pitch":-114.98674428461955,"roll":-25.513122288727395},"location":"Right Knee"},{"euler":{"heading":25.688315404740056,"pitch":-133.0575895391656,"roll":56.29481183307852},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.572"} +{"sensors":[{"euler":{"heading":131.29966561919377,"pitch":135.23070263999148,"roll":25.5316742520362},"location":"Left Knee"},{"euler":{"heading":72.31615403091763,"pitch":102.6137248012364,"roll":29.05421408022519},"location":"Left Ankle"},{"euler":{"heading":61.10642199195091,"pitch":-5.65159902617674,"roll":-4.164838430471287},"location":"Right Ankle"},{"euler":{"heading":110.58117659398685,"pitch":-158.57777726990824,"roll":56.54819610756667},"location":"Right Hip"},{"euler":{"heading":116.80501240387306,"pitch":-115.16306985615759,"roll":-26.043060059854657},"location":"Right Knee"},{"euler":{"heading":24.73823386426605,"pitch":-131.55183058524906,"roll":55.64033064977067},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.673"} +{"sensors":[{"euler":{"heading":150.8634490572744,"pitch":137.59513237599234,"roll":27.066006826832584},"location":"Left Knee"},{"euler":{"heading":68.40953862782587,"pitch":101.71485232111276,"roll":25.56754267220267},"location":"Left Ankle"},{"euler":{"heading":60.22077979275582,"pitch":-5.3676891235590665,"roll":-4.698354587424158},"location":"Right Ankle"},{"euler":{"heading":110.43555893458816,"pitch":-159.3387495429174,"roll":57.54962649681},"location":"Right Hip"},{"euler":{"heading":118.59951116348577,"pitch":-115.41551287054183,"roll":-27.182504053869195},"location":"Right Knee"},{"euler":{"heading":24.839410477839444,"pitch":-130.89039752672417,"roll":55.282547584793605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.773"} +{"sensors":[{"euler":{"heading":170.11460415154698,"pitch":138.7668691383931,"roll":28.403156144149325},"location":"Left Knee"},{"euler":{"heading":66.48733476504329,"pitch":101.53711708900148,"roll":23.417038404982403},"location":"Left Ankle"},{"euler":{"heading":58.12995181348024,"pitch":-5.3809202112031596,"roll":-5.247269128681743},"location":"Right Ankle"},{"euler":{"heading":110.59200304112935,"pitch":-160.2486245886257,"roll":58.388413847129},"location":"Right Hip"},{"euler":{"heading":120.95206004713721,"pitch":-115.64896158348766,"roll":-29.15800364848228},"location":"Right Knee"},{"euler":{"heading":25.1804694300555,"pitch":-130.60135777405176,"roll":55.10429282631425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.874"} +{"sensors":[{"euler":{"heading":188.1406437363923,"pitch":139.1339322245538,"roll":29.337840529734393},"location":"Left Knee"},{"euler":{"heading":65.18860128853896,"pitch":101.23340538010135,"roll":22.137834564484162},"location":"Left Ankle"},{"euler":{"heading":54.56695663213222,"pitch":-5.374078190082844,"roll":-5.978792215813568},"location":"Right Ankle"},{"euler":{"heading":111.84530273701641,"pitch":-159.8862621297631,"roll":58.3245724624161},"location":"Right Hip"},{"euler":{"heading":123.96935404242349,"pitch":-116.85906542513891,"roll":-31.748453283634053},"location":"Right Knee"},{"euler":{"heading":25.61867248704995,"pitch":-130.6912219966466,"roll":55.268863543682826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.975"} +{"sensors":[{"euler":{"heading":204.91407936275309,"pitch":138.9080390020984,"roll":30.104056476760952},"location":"Left Knee"},{"euler":{"heading":64.57599115968506,"pitch":101.03506484209122,"roll":21.36780110803575},"location":"Left Ankle"},{"euler":{"heading":51.641510968919,"pitch":-5.2241703710745595,"roll":-6.280912994232212},"location":"Right Ankle"},{"euler":{"heading":113.27952246331478,"pitch":-158.88513591678682,"roll":57.53586521617449},"location":"Right Hip"},{"euler":{"heading":125.62866863818115,"pitch":-117.72940888262502,"roll":-33.56110795527065},"location":"Right Knee"},{"euler":{"heading":26.194305238344953,"pitch":-131.42209979698194,"roll":55.58572718931455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.75"} +{"sensors":[{"euler":{"heading":184.46642142647778,"pitch":138.40473510188858,"roll":30.493650829084856},"location":"Left Knee"},{"euler":{"heading":64.47464204371656,"pitch":100.8628083578821,"roll":21.162270997232174},"location":"Left Ankle"},{"euler":{"heading":51.177359872027104,"pitch":-5.358003333967104,"roll":-6.0528216948089915},"location":"Right Ankle"},{"euler":{"heading":114.4390702169833,"pitch":-158.00912232510814,"roll":56.294778694557046},"location":"Right Hip"},{"euler":{"heading":124.89080177436304,"pitch":-117.38771799436253,"roll":-33.579997159743584},"location":"Right Knee"},{"euler":{"heading":26.693624714510456,"pitch":-132.49238981728374,"roll":56.0021544703831},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.177"} +{"sensors":[{"euler":{"heading":166.79477928383002,"pitch":137.59551159169973,"roll":30.500535746176375},"location":"Left Knee"},{"euler":{"heading":64.7771778393449,"pitch":100.8265275220939,"roll":21.352293897508954},"location":"Left Ankle"},{"euler":{"heading":53.4658738848244,"pitch":-5.6034530005703935,"roll":-5.353789525328092},"location":"Right Ankle"},{"euler":{"heading":114.63891319528497,"pitch":-157.62696009259733,"roll":55.24655082510134},"location":"Right Hip"},{"euler":{"heading":122.17047159692673,"pitch":-116.38644619492628,"roll":-31.684497443769224},"location":"Right Knee"},{"euler":{"heading":27.48676224305941,"pitch":-134.02440083555535,"roll":56.57693902334479},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.278"} +{"sensors":[{"euler":{"heading":151.60905135544704,"pitch":136.56096043252975,"roll":30.05048217155874},"location":"Left Knee"},{"euler":{"heading":65.71821005541041,"pitch":100.95012476988451,"roll":22.11081450775806},"location":"Left Ankle"},{"euler":{"heading":56.675536496341955,"pitch":-5.999357700513354,"roll":-4.418410572795283},"location":"Right Ankle"},{"euler":{"heading":113.68127187575647,"pitch":-157.6642640833376,"roll":54.94689574259121},"location":"Right Hip"},{"euler":{"heading":118.80967443723407,"pitch":-115.30405157543366,"roll":-28.928547699392304},"location":"Right Knee"},{"euler":{"heading":28.60058601875347,"pitch":-136.13446075199982,"roll":57.21924512101032},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.378"} +{"sensors":[{"euler":{"heading":138.96064621990232,"pitch":135.31111438927678,"roll":28.820433954402866},"location":"Left Knee"},{"euler":{"heading":67.40263904986936,"pitch":101.42386229289608,"roll":23.805983056982257},"location":"Left Ankle"},{"euler":{"heading":58.94548284670776,"pitch":-6.118171930462019,"roll":-3.8578195155157546},"location":"Right Ankle"},{"euler":{"heading":112.68814468818083,"pitch":-157.83533767500384,"roll":54.877206168332094},"location":"Right Hip"},{"euler":{"heading":116.34745699351066,"pitch":-114.93614641789028,"roll":-26.835692929453074},"location":"Right Knee"},{"euler":{"heading":30.021777416878123,"pitch":-138.17726467679984,"roll":57.934820608909284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.480"} +{"sensors":[{"euler":{"heading":129.2145815979121,"pitch":134.1800029503491,"roll":26.613390558962582},"location":"Left Knee"},{"euler":{"heading":70.59987514488243,"pitch":102.95647606360647,"roll":26.95663475128403},"location":"Left Ankle"},{"euler":{"heading":60.24468456203699,"pitch":-6.2376047374158174,"roll":-3.647037563964179},"location":"Right Ankle"},{"euler":{"heading":111.88183021936275,"pitch":-158.02055390750346,"roll":55.15823555149889},"location":"Right Hip"},{"euler":{"heading":115.5064612941596,"pitch":-114.74253177610126,"roll":-25.745873636507767},"location":"Right Knee"},{"euler":{"heading":29.81334967519031,"pitch":-138.09078820911986,"roll":58.091338548018356},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.580"} +{"sensors":[{"euler":{"heading":120.78062343812088,"pitch":133.4995026553142,"roll":24.583301503066327},"location":"Left Knee"},{"euler":{"heading":73.07738763039418,"pitch":103.41082845724583,"roll":29.68597127615563},"location":"Left Ankle"},{"euler":{"heading":61.332716105833285,"pitch":-6.320094263674235,"roll":-3.5448338075677612},"location":"Right Ankle"},{"euler":{"heading":111.02489719742648,"pitch":-158.2997485167531,"roll":55.77991199634901},"location":"Right Hip"},{"euler":{"heading":115.47456516474365,"pitch":-114.72452859849113,"roll":-25.271286272856994},"location":"Right Knee"},{"euler":{"heading":28.66326470767128,"pitch":-136.4067093882079,"roll":57.794704693216524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.681"} +{"sensors":[{"euler":{"heading":110.54631109430879,"pitch":133.82455238978278,"roll":24.049971352759695},"location":"Left Knee"},{"euler":{"heading":73.17589886735477,"pitch":102.40099561152124,"roll":30.329874148540068},"location":"Left Ankle"},{"euler":{"heading":61.974444495249955,"pitch":-6.200584837306812,"roll":-3.715350426810985},"location":"Right Ankle"},{"euler":{"heading":110.64740747768383,"pitch":-158.26977366507782,"roll":56.5331707967141},"location":"Right Hip"},{"euler":{"heading":116.07710864826929,"pitch":-114.94582573864201,"roll":-25.231657645571296},"location":"Right Knee"},{"euler":{"heading":27.290688236904153,"pitch":-134.6410384493871,"roll":57.00898422389487},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.782"} +{"sensors":[{"euler":{"heading":133.7166799848779,"pitch":135.2983471508045,"roll":25.132474217483725},"location":"Left Knee"},{"euler":{"heading":70.4395589806193,"pitch":101.30464605036912,"roll":28.05938673368606},"location":"Left Ankle"},{"euler":{"heading":62.070750045724964,"pitch":-5.999276353576131,"roll":-3.9063153841298868},"location":"Right Ankle"},{"euler":{"heading":110.57641672991545,"pitch":-158.33029629857003,"roll":57.28610371704269},"location":"Right Hip"},{"euler":{"heading":117.13814778344236,"pitch":-115.24499316477782,"roll":-25.66474188101417},"location":"Right Knee"},{"euler":{"heading":26.199119413213737,"pitch":-132.9644346044484,"roll":56.345585801505386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.882"} +{"sensors":[{"euler":{"heading":153.06376198639012,"pitch":137.58101243572406,"roll":26.737976795735356},"location":"Left Knee"},{"euler":{"heading":66.52685308255737,"pitch":100.23668144533221,"roll":24.528448060317455},"location":"Left Ankle"},{"euler":{"heading":61.60117504115247,"pitch":-5.680598718218518,"roll":-4.371933845716898},"location":"Right Ankle"},{"euler":{"heading":110.62502505692392,"pitch":-158.64101666871304,"roll":58.101243345338425},"location":"Right Hip"},{"euler":{"heading":118.83058300509813,"pitch":-115.52674384830004,"roll":-26.692017692912753},"location":"Right Knee"},{"euler":{"heading":25.935457471892363,"pitch":-132.07424114400357,"roll":55.92977722135485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.983"} +{"sensors":[{"euler":{"heading":171.5448857877511,"pitch":139.05416119215167,"roll":28.195429116161822},"location":"Left Knee"},{"euler":{"heading":63.71791777430163,"pitch":99.956763300799,"roll":21.88810325428571},"location":"Left Ankle"},{"euler":{"heading":60.103557537037226,"pitch":-5.368788846396666,"roll":-5.022240461145208},"location":"Right Ankle"},{"euler":{"heading":110.81252255123152,"pitch":-159.35816500184174,"roll":58.85986901080459},"location":"Right Hip"},{"euler":{"heading":121.07252470458832,"pitch":-115.84906946347004,"roll":-28.39781592362148},"location":"Right Knee"},{"euler":{"heading":26.12941172470313,"pitch":-131.46681702960322,"roll":55.72429949921936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.84"} +{"sensors":[{"euler":{"heading":189.634147208976,"pitch":139.46749507293652,"roll":29.26963620454564},"location":"Left Knee"},{"euler":{"heading":62.546125996871474,"pitch":99.99858697071909,"roll":20.63054292885714},"location":"Left Ankle"},{"euler":{"heading":57.024451783333504,"pitch":-5.219409961757,"roll":-5.757516415030687},"location":"Right Ankle"},{"euler":{"heading":111.60627029610838,"pitch":-159.39109850165758,"roll":59.11138210972413},"location":"Right Hip"},{"euler":{"heading":123.83402223412949,"pitch":-116.43916251712304,"roll":-31.001784331259334},"location":"Right Knee"},{"euler":{"heading":26.33522055223282,"pitch":-131.2076353266429,"roll":55.75811954929743},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.185"} +{"sensors":[{"euler":{"heading":206.4894824880784,"pitch":139.20824556564287,"roll":30.130172584091078},"location":"Left Knee"},{"euler":{"heading":62.141513397184326,"pitch":100.09247827364719,"roll":19.817488635971426},"location":"Left Ankle"},{"euler":{"heading":53.484506605000156,"pitch":-5.1599689655813,"roll":-6.450514773527618},"location":"Right Ankle"},{"euler":{"heading":113.10814326649754,"pitch":-158.47698865149184,"roll":58.556493898751725},"location":"Right Hip"},{"euler":{"heading":126.64437001071656,"pitch":-117.43899626541074,"roll":-33.5203558981334},"location":"Right Knee"},{"euler":{"heading":26.80169849700954,"pitch":-131.77437179397862,"roll":55.96355759436769},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.285"} +{"sensors":[{"euler":{"heading":186.09678423927056,"pitch":138.56242100907858,"roll":30.70465532568197},"location":"Left Knee"},{"euler":{"heading":62.30861205746589,"pitch":100.23948044628247,"roll":19.523239772374282},"location":"Left Ankle"},{"euler":{"heading":51.72355594450014,"pitch":-5.33147206902317,"roll":-6.6367132961748565},"location":"Right Ankle"},{"euler":{"heading":114.60982893984779,"pitch":-157.51678978634266,"roll":57.30709450887656},"location":"Right Hip"},{"euler":{"heading":127.29243300964491,"pitch":-117.28884663886967,"roll":-34.430820308320065},"location":"Right Knee"},{"euler":{"heading":27.452778647308588,"pitch":-132.90318461458077,"roll":56.310951834930925},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.386"} +{"sensors":[{"euler":{"heading":168.3308558153435,"pitch":137.64367890817073,"roll":30.884189793113773},"location":"Left Knee"},{"euler":{"heading":62.77150085171931,"pitch":100.42178240165423,"roll":19.602165795136855},"location":"Left Ankle"},{"euler":{"heading":52.73245035005013,"pitch":-5.8670748621208535,"roll":-6.129291966557371},"location":"Right Ankle"},{"euler":{"heading":115.40509604586302,"pitch":-157.0651108077084,"roll":55.83263505798891},"location":"Right Hip"},{"euler":{"heading":125.27568970868043,"pitch":-116.15371197498271,"roll":-33.21273827748806},"location":"Right Knee"},{"euler":{"heading":28.24500078257773,"pitch":-134.4816161531227,"roll":56.77985665143783},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.486"} +{"sensors":[{"euler":{"heading":153.06652023380917,"pitch":136.46056101735365,"roll":30.583270813802397},"location":"Left Knee"},{"euler":{"heading":63.70060076654738,"pitch":100.6983541614888,"roll":20.191949215623172},"location":"Left Ankle"},{"euler":{"heading":55.80295531504512,"pitch":-6.280367375908768,"roll":-5.253862769901634},"location":"Right Ankle"},{"euler":{"heading":115.08958644127671,"pitch":-156.90234972693756,"roll":54.98687155219002},"location":"Right Hip"},{"euler":{"heading":121.68562073781239,"pitch":-114.96959077748446,"roll":-30.472714449739254},"location":"Right Knee"},{"euler":{"heading":29.301750704319957,"pitch":-136.50220453781043,"roll":57.364370986294055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.587"} +{"sensors":[{"euler":{"heading":140.13486821042827,"pitch":135.25200491561827,"roll":29.59369373242216},"location":"Left Knee"},{"euler":{"heading":65.23679068989264,"pitch":101.06601874533992,"roll":21.597754294060856},"location":"Left Ankle"},{"euler":{"heading":58.54140978354061,"pitch":-6.383580638317891,"roll":-4.47847649291147},"location":"Right Ankle"},{"euler":{"heading":114.10562779714904,"pitch":-156.9808647542438,"roll":54.76318439697101},"location":"Right Hip"},{"euler":{"heading":118.35455866403116,"pitch":-114.46013169973601,"roll":-27.987943004765327},"location":"Right Knee"},{"euler":{"heading":30.552825633887963,"pitch":-138.77073408402939,"roll":57.977933887664655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.688"} +{"sensors":[{"euler":{"heading":129.84638138938544,"pitch":134.17055442405646,"roll":27.471824359179944},"location":"Left Knee"},{"euler":{"heading":67.80061162090338,"pitch":101.97191687080593,"roll":24.494228864654772},"location":"Left Ankle"},{"euler":{"heading":60.00601880518655,"pitch":-6.520222574486103,"roll":-4.349378843620324},"location":"Right Ankle"},{"euler":{"heading":113.68881501743414,"pitch":-157.02027827881943,"roll":54.76811595727391},"location":"Right Hip"},{"euler":{"heading":116.63160279762805,"pitch":-114.12661852976241,"roll":-26.514148704288793},"location":"Right Knee"},{"euler":{"heading":30.903793070499166,"pitch":-139.74991067562644,"roll":58.23639049889819},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.788"} +{"sensors":[{"euler":{"heading":121.9929932504469,"pitch":133.02224898165082,"roll":25.02464192326195},"location":"Left Knee"},{"euler":{"heading":71.70805045881305,"pitch":103.62472518372533,"roll":28.444805978189294},"location":"Left Ankle"},{"euler":{"heading":61.086666924667895,"pitch":-6.6744503170374925,"roll":-4.183190959258291},"location":"Right Ankle"},{"euler":{"heading":113.01368351569073,"pitch":-157.23700045093747,"roll":55.18505436154652},"location":"Right Hip"},{"euler":{"heading":116.03094251786524,"pitch":-113.88270667678617,"roll":-25.737733833859913},"location":"Right Knee"},{"euler":{"heading":30.13841376344925,"pitch":-138.33741960806378,"roll":58.16900144900837},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.889"} +{"sensors":[{"euler":{"heading":113.63119392540221,"pitch":132.84502408348573,"roll":23.584677730935756},"location":"Left Knee"},{"euler":{"heading":73.71224541293174,"pitch":103.1810026653528,"roll":30.806575380370365},"location":"Left Ankle"},{"euler":{"heading":61.74675023220111,"pitch":-6.632005285333744,"roll":-4.171121863332463},"location":"Right Ankle"},{"euler":{"heading":112.76231516412166,"pitch":-157.23830040584372,"roll":55.779048925391876},"location":"Right Hip"},{"euler":{"heading":116.10284826607872,"pitch":-113.90068600910756,"roll":-25.457710450473922},"location":"Right Knee"},{"euler":{"heading":28.605822387104325,"pitch":-136.3724276472574,"roll":57.36460130410754},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.990"} +{"sensors":[{"euler":{"heading":128.461824532862,"pitch":134.01052167513714,"roll":24.16995995784218},"location":"Left Knee"},{"euler":{"heading":72.44102087163856,"pitch":101.93165239881752,"roll":30.144667842333327},"location":"Left Ankle"},{"euler":{"heading":61.928325208981,"pitch":-6.48130475680037,"roll":-4.279009676999217},"location":"Right Ankle"},{"euler":{"heading":112.64233364770949,"pitch":-157.30822036525933,"roll":56.46364403285269},"location":"Right Hip"},{"euler":{"heading":116.77381343947086,"pitch":-114.04811740819682,"roll":-25.68693940542653},"location":"Right Knee"},{"euler":{"heading":27.001490148393895,"pitch":-134.31643488253167,"roll":56.42814117369679},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.92"} +{"sensors":[{"euler":{"heading":148.3531420795758,"pitch":136.32196950762344,"roll":25.740463962057966},"location":"Left Knee"},{"euler":{"heading":68.6719187844747,"pitch":100.63848715893577,"roll":26.942701058099995},"location":"Left Ankle"},{"euler":{"heading":61.5229926880829,"pitch":-6.114424281120333,"roll":-4.751108709299295},"location":"Right Ankle"},{"euler":{"heading":112.60310028293856,"pitch":-157.50239832873342,"roll":57.21727962956742},"location":"Right Hip"},{"euler":{"heading":118.01518209552377,"pitch":-114.38080566737713,"roll":-26.430745464883877},"location":"Right Knee"},{"euler":{"heading":26.032591133554504,"pitch":-132.79104139427852,"roll":55.760327056327114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.193"} +{"sensors":[{"euler":{"heading":166.78032787161823,"pitch":138.4210225568611,"roll":27.172667565852173},"location":"Left Knee"},{"euler":{"heading":65.19222690602723,"pitch":99.9871384430422,"roll":23.760930952289996},"location":"Left Ankle"},{"euler":{"heading":60.35194341927461,"pitch":-5.6592318530083,"roll":-5.369747838369366},"location":"Right Ankle"},{"euler":{"heading":112.5990402546447,"pitch":-158.08965849586008,"roll":58.01430166661068},"location":"Right Hip"},{"euler":{"heading":119.8824138859714,"pitch":-114.81147510063943,"roll":-27.83142091839549},"location":"Right Knee"},{"euler":{"heading":25.698082020199056,"pitch":-131.96818725485068,"roll":55.2780443506944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.294"} +{"sensors":[{"euler":{"heading":184.96479508445643,"pitch":139.303920301175,"roll":28.311650809266954},"location":"Left Knee"},{"euler":{"heading":64.1855042154245,"pitch":100.01342459873798,"roll":22.366087857060997},"location":"Left Ankle"},{"euler":{"heading":57.760499077347156,"pitch":-5.81830866770747,"roll":-5.92652305453243},"location":"Right Ankle"},{"euler":{"heading":113.10788622918024,"pitch":-158.37444264627408,"roll":58.44412149994962},"location":"Right Hip"},{"euler":{"heading":122.39417249737427,"pitch":-115.03657759057549,"roll":-30.348278826555944},"location":"Right Knee"},{"euler":{"heading":25.48452381817915,"pitch":-131.29011852936563,"roll":55.11898991562496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.396"} +{"sensors":[{"euler":{"heading":202.0558155760108,"pitch":139.4547782710575,"roll":29.17423572834026},"location":"Left Knee"},{"euler":{"heading":63.685703793882055,"pitch":100.05583213886419,"roll":21.348229071354897},"location":"Left Ankle"},{"euler":{"heading":54.04694916961244,"pitch":-5.605227800936723,"roll":-6.871370749079187},"location":"Right Ankle"},{"euler":{"heading":114.39084760626221,"pitch":-157.72449838164667,"roll":58.07470934995466},"location":"Right Hip"},{"euler":{"heading":125.06725524763684,"pitch":-116.05791983151795,"roll":-32.78845094390035},"location":"Right Knee"},{"euler":{"heading":25.511071436361235,"pitch":-131.12985667642909,"roll":55.19459092406246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.496"} +{"sensors":[{"euler":{"heading":182.08773401840972,"pitch":139.00305044395176,"roll":29.875562155506238},"location":"Left Knee"},{"euler":{"heading":64.02963341449386,"pitch":100.37524892497778,"roll":20.900906164219407},"location":"Left Ankle"},{"euler":{"heading":52.0422542526512,"pitch":-5.694705020843052,"roll":-7.109233674171268},"location":"Right Ankle"},{"euler":{"heading":115.851762845636,"pitch":-156.827048543482,"roll":56.97348841495919},"location":"Right Hip"},{"euler":{"heading":125.97927972287316,"pitch":-116.32087784836617,"roll":-33.95335584951032},"location":"Right Knee"},{"euler":{"heading":25.87871429272511,"pitch":-131.4793710087862,"roll":55.49388183165622},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.597"} +{"sensors":[{"euler":{"heading":164.86021061656874,"pitch":138.0277453995566,"roll":30.294255939955615},"location":"Left Knee"},{"euler":{"heading":64.99542007304447,"pitch":100.91897403248001,"roll":20.960815547797466},"location":"Left Ankle"},{"euler":{"heading":52.66927882738608,"pitch":-6.056484518758747,"roll":-6.779560306754141},"location":"Right Ankle"},{"euler":{"heading":116.80408656107241,"pitch":-156.33809368913379,"roll":55.47613957346328},"location":"Right Hip"},{"euler":{"heading":124.28760175058585,"pitch":-115.58254006352955,"roll":-33.164270264559285},"location":"Right Knee"},{"euler":{"heading":26.472092863452602,"pitch":-132.25643390790756,"roll":55.9507436484906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.698"} +{"sensors":[{"euler":{"heading":150.00543955491187,"pitch":136.76872085960093,"roll":30.296080345960053},"location":"Left Knee"},{"euler":{"heading":66.37712806574002,"pitch":101.552076629232,"roll":21.439733993017718},"location":"Left Ankle"},{"euler":{"heading":55.696100944647476,"pitch":-6.3383360668828725,"roll":-5.964104276078727},"location":"Right Ankle"},{"euler":{"heading":117.14242790496517,"pitch":-156.09803432022042,"roll":54.22227561611695},"location":"Right Hip"},{"euler":{"heading":120.93384157552727,"pitch":-114.4930360571766,"roll":-30.735343238103358},"location":"Right Knee"},{"euler":{"heading":27.199883577107343,"pitch":-133.4307905171168,"roll":56.53691928364154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.799"} +{"sensors":[{"euler":{"heading":137.23614559942067,"pitch":135.33559877364084,"roll":29.766472311364048},"location":"Left Knee"},{"euler":{"heading":68.20816525916602,"pitch":102.2718689663088,"roll":22.470760593715948},"location":"Left Ankle"},{"euler":{"heading":58.682740850182725,"pitch":-6.473252460194585,"roll":-4.973943848470855},"location":"Right Ankle"},{"euler":{"heading":116.04068511446866,"pitch":-156.30698088819838,"roll":53.70629805450526},"location":"Right Hip"},{"euler":{"heading":117.15920741797454,"pitch":-113.73748245145893,"roll":-27.836808914293023},"location":"Right Knee"},{"euler":{"heading":28.19864521939661,"pitch":-135.1439614654051,"roll":57.24572735527738},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.899"} +{"sensors":[{"euler":{"heading":126.7812810394786,"pitch":133.95828889627677,"roll":28.321075080227644},"location":"Left Knee"},{"euler":{"heading":70.40609873324942,"pitch":102.95718206967791,"roll":24.542434534344356},"location":"Left Ankle"},{"euler":{"heading":60.789466765164455,"pitch":-6.407177214175126,"roll":-4.489049463623769},"location":"Right Ankle"},{"euler":{"heading":114.71786660302179,"pitch":-156.74503279937855,"roll":53.64191824905473},"location":"Right Hip"},{"euler":{"heading":114.7057866761771,"pitch":-113.54498420631305,"roll":-25.82187802286372},"location":"Right Knee"},{"euler":{"heading":29.39753069745695,"pitch":-136.9920653188646,"roll":57.996154619749646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.0"} +{"sensors":[{"euler":{"heading":119.02190293553075,"pitch":132.7624600066491,"roll":26.00146757220488},"location":"Left Knee"},{"euler":{"heading":74.52173885992448,"pitch":105.19271386271012,"roll":28.00069108090992},"location":"Left Ankle"},{"euler":{"heading":62.15427008864801,"pitch":-6.210209492757613,"roll":-4.171394517261392},"location":"Right Ankle"},{"euler":{"heading":113.60232994271962,"pitch":-157.1080295194407,"roll":53.927726424149256},"location":"Right Hip"},{"euler":{"heading":113.6727080085594,"pitch":-113.69048578568174,"roll":-24.64594022057735},"location":"Right Knee"},{"euler":{"heading":29.014027627711258,"pitch":-136.68660878697816,"roll":58.19653915777468},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.102"} +{"sensors":[{"euler":{"heading":112.32596264197767,"pitch":132.01746400598418,"roll":23.976320814984394},"location":"Left Knee"},{"euler":{"heading":77.47581497393203,"pitch":105.74844247643911,"roll":30.57562197281893},"location":"Left Ankle"},{"euler":{"heading":62.98884307978321,"pitch":-5.957938543481853,"roll":-4.091755065535253},"location":"Right Ankle"},{"euler":{"heading":112.78584694844767,"pitch":-157.39722656749663,"roll":54.52245378173433},"location":"Right Hip"},{"euler":{"heading":113.56168720770347,"pitch":-113.98393720711357,"roll":-24.112596198519615},"location":"Right Knee"},{"euler":{"heading":28.093874864940133,"pitch":-135.08669790828034,"roll":57.85813524199722},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.202"} +{"sensors":[{"euler":{"heading":103.0371163777799,"pitch":132.61571760538578,"roll":23.647438733485956},"location":"Left Knee"},{"euler":{"heading":76.97198347653884,"pitch":104.99234822879521,"roll":30.505559775537037},"location":"Left Ankle"},{"euler":{"heading":63.48370877180489,"pitch":-5.530894689133667,"roll":-4.245079558981727},"location":"Right Ankle"},{"euler":{"heading":112.1760122536029,"pitch":-157.645003910747,"roll":55.3327084035609},"location":"Right Hip"},{"euler":{"heading":114.04301848693314,"pitch":-114.45429348640222,"roll":-24.032586578667654},"location":"Right Knee"},{"euler":{"heading":26.809487378446118,"pitch":-133.1717781174523,"roll":57.1285717177975},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.303"} +{"sensors":[{"euler":{"heading":120.1084047400019,"pitch":134.59164584484722,"roll":24.957694860137362},"location":"Left Knee"},{"euler":{"heading":73.46228512888496,"pitch":103.88686340591569,"roll":27.698753797983333},"location":"Left Ankle"},{"euler":{"heading":63.379087894624405,"pitch":-5.009055220220301,"roll":-4.464321603083555},"location":"Right Ankle"},{"euler":{"heading":111.88341102824262,"pitch":-157.8992535196723,"roll":56.186937563204815},"location":"Right Hip"},{"euler":{"heading":115.21996663823982,"pitch":-115.058864137762,"roll":-24.51057792080089},"location":"Right Knee"},{"euler":{"heading":25.922288640601504,"pitch":-131.78585030570707,"roll":56.53446454601775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.404"} +{"sensors":[{"euler":{"heading":136.3163142660017,"pitch":136.9449812603625,"roll":26.474425374123626},"location":"Left Knee"},{"euler":{"heading":69.79730661599648,"pitch":103.04817706532413,"roll":24.447628418185},"location":"Left Ankle"},{"euler":{"heading":62.40367910516197,"pitch":-4.4081496981982715,"roll":-5.005389442775199},"location":"Right Ankle"},{"euler":{"heading":111.80756992541836,"pitch":-158.39682816770508,"roll":57.105743806884334},"location":"Right Hip"},{"euler":{"heading":117.11671997441584,"pitch":-115.6842277239858,"roll":-25.672020128720803},"location":"Right Knee"},{"euler":{"heading":25.655059776541354,"pitch":-131.05726527513636,"roll":56.06226809141597},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.504"} +{"sensors":[{"euler":{"heading":157.66593283940153,"pitch":138.04423313432625,"roll":27.626982836711264},"location":"Left Knee"},{"euler":{"heading":68.33007595439683,"pitch":102.87460935879173,"roll":22.6841155763665},"location":"Left Ankle"},{"euler":{"heading":60.13206119464577,"pitch":-4.342334728378445,"roll":-5.586100498497679},"location":"Right Ankle"},{"euler":{"heading":112.23306293287654,"pitch":-158.88214535093456,"roll":57.7451694261959},"location":"Right Hip"},{"euler":{"heading":119.66129797697425,"pitch":-115.96580495158722,"roll":-27.823568115848722},"location":"Right Knee"},{"euler":{"heading":25.62705379888722,"pitch":-130.50153874762273,"roll":55.84979128227438},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.605"} +{"sensors":[{"euler":{"heading":177.84308955546138,"pitch":138.19605982089362,"roll":28.53303455304014},"location":"Left Knee"},{"euler":{"heading":67.71581835895715,"pitch":102.81839842291257,"roll":21.81570401872985},"location":"Left Ankle"},{"euler":{"heading":56.587605075181195,"pitch":-4.7831012555406005,"roll":-6.221240448647912},"location":"Right Ankle"},{"euler":{"heading":113.44100663958889,"pitch":-158.41893081584112,"roll":57.62065248357631},"location":"Right Hip"},{"euler":{"heading":122.73266817927683,"pitch":-116.7254744564285,"roll":-30.59121130426385},"location":"Right Knee"},{"euler":{"heading":25.951848418998498,"pitch":-130.31388487286046,"roll":56.03981215404694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.705"} +{"sensors":[{"euler":{"heading":160.34628059991525,"pitch":137.87020383880426,"roll":29.23598109773613},"location":"Left Knee"},{"euler":{"heading":67.80048652306144,"pitch":102.86155858062132,"roll":21.484133616856866},"location":"Left Ankle"},{"euler":{"heading":53.822594567663074,"pitch":-5.111041129986541,"roll":-6.58661640378312},"location":"Right Ankle"},{"euler":{"heading":115.00315597563001,"pitch":-157.539537734257,"roll":56.72733723521868},"location":"Right Hip"},{"euler":{"heading":124.44065136134915,"pitch":-116.99667701078565,"roll":-32.34459017383747},"location":"Right Knee"},{"euler":{"heading":26.431663577098647,"pitch":-130.88249638557443,"roll":56.39208093864225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.806"} +{"sensors":[{"euler":{"heading":144.99915253992373,"pitch":137.25193345492383,"roll":29.64988298796252},"location":"Left Knee"},{"euler":{"heading":68.3891878707553,"pitch":102.9441527225592,"roll":21.62322025517118},"location":"Left Ankle"},{"euler":{"heading":53.39033511089677,"pitch":-5.612437016987887,"roll":-6.359204763404809},"location":"Right Ankle"},{"euler":{"heading":116.37159037806701,"pitch":-156.83558396083131,"roll":55.36085351169681},"location":"Right Hip"},{"euler":{"heading":123.57158622521425,"pitch":-116.30950930970708,"roll":-32.18513115645372},"location":"Right Knee"},{"euler":{"heading":27.119747219388785,"pitch":-132.27549674701697,"roll":56.79662284477803},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.907"} +{"sensors":[{"euler":{"heading":131.97423728593137,"pitch":136.23299010943146,"roll":29.71614468916627},"location":"Left Knee"},{"euler":{"heading":69.45651908367977,"pitch":103.21848745030329,"roll":22.129648229654062},"location":"Left Ankle"},{"euler":{"heading":55.076301599807095,"pitch":-6.038693315289098,"roll":-5.379534287064328},"location":"Right Ankle"},{"euler":{"heading":116.81568134026031,"pitch":-156.6145255647482,"roll":54.093518160527125},"location":"Right Hip"},{"euler":{"heading":120.54567760269282,"pitch":-115.22230837873637,"roll":-30.07286804080835},"location":"Right Knee"},{"euler":{"heading":28.05777249744991,"pitch":-134.06044707231527,"roll":57.34821056030023},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.7"} +{"sensors":[{"euler":{"heading":120.94556355733823,"pitch":135.02219109848832,"roll":29.263280220249644},"location":"Left Knee"},{"euler":{"heading":71.0358671753118,"pitch":103.62163870527297,"roll":23.210433406688654},"location":"Left Ankle"},{"euler":{"heading":58.306171439826386,"pitch":-6.303573983760189,"roll":-4.397830858357896},"location":"Right Ankle"},{"euler":{"heading":115.99036320623429,"pitch":-156.76557300827338,"roll":53.62166634447441},"location":"Right Hip"},{"euler":{"heading":116.74110984242354,"pitch":-114.28757754086274,"roll":-27.034331236727514},"location":"Right Knee"},{"euler":{"heading":29.233245247704918,"pitch":-136.30440236508375,"roll":57.98838950427021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.108"} +{"sensors":[{"euler":{"heading":111.93850720160442,"pitch":133.7449719886395,"roll":28.06820219822468},"location":"Left Knee"},{"euler":{"heading":73.27603045778062,"pitch":104.29697483474567,"roll":25.25189006601979},"location":"Left Ankle"},{"euler":{"heading":60.40680429584375,"pitch":-6.34821658538417,"roll":-3.8580477725221063},"location":"Right Ankle"},{"euler":{"heading":114.77257688561087,"pitch":-157.10151570744603,"roll":53.50324971002697},"location":"Right Hip"},{"euler":{"heading":114.0794988581812,"pitch":-114.05881978677647,"roll":-24.787148113054762},"location":"Right Knee"},{"euler":{"heading":30.666170722934424,"pitch":-138.63021212857538,"roll":58.66455055384319},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.208"} +{"sensors":[{"euler":{"heading":105.40090648144398,"pitch":132.60172478977555,"roll":25.830131978402214},"location":"Left Knee"},{"euler":{"heading":76.97342741200256,"pitch":106.3422773512711,"roll":28.651701059417814},"location":"Left Ankle"},{"euler":{"heading":61.60362386625937,"pitch":-6.307144926845753,"roll":-3.6472429952698957},"location":"Right Ankle"},{"euler":{"heading":113.98281919704979,"pitch":-157.39761413670143,"roll":53.74667473902427},"location":"Right Hip"},{"euler":{"heading":113.06529897236308,"pitch":-114.05293780809883,"roll":-23.583433301749285},"location":"Right Knee"},{"euler":{"heading":30.405803650640983,"pitch":-138.67969091571786,"roll":58.816845498458875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.309"} +{"sensors":[{"euler":{"heading":100.06081583329959,"pitch":131.85405231079798,"roll":23.603368780561993},"location":"Left Knee"},{"euler":{"heading":79.31983467080231,"pitch":106.45179961614399,"roll":31.49903095347603},"location":"Left Ankle"},{"euler":{"heading":62.46201147963343,"pitch":-6.226430434161178,"roll":-3.6450186957429063},"location":"Right Ankle"},{"euler":{"heading":113.14078727734483,"pitch":-157.6828527230313,"roll":54.42825726512184},"location":"Right Hip"},{"euler":{"heading":113.01501907512679,"pitch":-114.20389402728895,"roll":-23.037589971574356},"location":"Right Knee"},{"euler":{"heading":29.365223285576885,"pitch":-137.05547182414608,"roll":58.516410948612986},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.409"} +{"sensors":[{"euler":{"heading":93.22348424996963,"pitch":132.2311470797182,"roll":23.005531902505794},"location":"Left Knee"},{"euler":{"heading":78.76285120372208,"pitch":105.23161965452958,"roll":31.736627858128426},"location":"Left Ankle"},{"euler":{"heading":62.93456033167009,"pitch":-6.08503739074506,"roll":-3.8367668261686156},"location":"Right Ankle"},{"euler":{"heading":112.61420854961034,"pitch":-157.93331745072817,"roll":55.27918153860966},"location":"Right Hip"},{"euler":{"heading":113.60726716761411,"pitch":-114.43975462456007,"roll":-23.00883097441692},"location":"Right Knee"},{"euler":{"heading":27.872450957019197,"pitch":-135.17492464173148,"roll":57.658519853751685},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.510"} +{"sensors":[{"euler":{"heading":118.40113582497267,"pitch":133.93303237174638,"roll":24.179978712255217},"location":"Left Knee"},{"euler":{"heading":75.34281608334987,"pitch":103.95220768907663,"roll":29.156715072315585},"location":"Left Ankle"},{"euler":{"heading":62.89735429850308,"pitch":-5.870283651670554,"roll":-4.165590143551754},"location":"Right Ankle"},{"euler":{"heading":112.32153769464931,"pitch":-158.29623570565536,"roll":56.1325133847487},"location":"Right Hip"},{"euler":{"heading":114.80279045085271,"pitch":-114.72077916210407,"roll":-23.52044787697523},"location":"Right Knee"},{"euler":{"heading":26.660205861317277,"pitch":-133.50743217755834,"roll":56.89891786837652},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.611"} +{"sensors":[{"euler":{"heading":134.8610222424754,"pitch":136.41472913457176,"roll":25.7682308410297},"location":"Left Knee"},{"euler":{"heading":71.26478447501489,"pitch":102.77573692016897,"roll":25.503543565084026},"location":"Left Ankle"},{"euler":{"heading":62.151368868652774,"pitch":-5.564505286503499,"roll":-4.61778112919658},"location":"Right Ankle"},{"euler":{"heading":112.18938392518439,"pitch":-158.89786213508984,"roll":57.100512046273835},"location":"Right Hip"},{"euler":{"heading":116.63501140576744,"pitch":-114.99870124589366,"roll":-24.649653089277706},"location":"Right Knee"},{"euler":{"heading":26.36918527518555,"pitch":-132.5754389598025,"roll":56.41527608153888},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.711"} +{"sensors":[{"euler":{"heading":155.74367001822787,"pitch":137.87950622111458,"roll":27.216407756926728},"location":"Left Knee"},{"euler":{"heading":68.91330602751341,"pitch":102.51066322815207,"roll":23.090689208575622},"location":"Left Ankle"},{"euler":{"heading":60.4299819817875,"pitch":-5.570554757853149,"roll":-5.281003016276922},"location":"Right Ankle"},{"euler":{"heading":112.42044553266595,"pitch":-159.79557592158085,"roll":57.83421084164645},"location":"Right Hip"},{"euler":{"heading":119.0027602651907,"pitch":-115.03008112130429,"roll":-26.678437780349938},"location":"Right Knee"},{"euler":{"heading":26.538516747666996,"pitch":-131.99289506382226,"roll":56.15499847338499},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.811"} +{"sensors":[{"euler":{"heading":175.6255530164051,"pitch":138.39155559900314,"roll":28.226016981234054},"location":"Left Knee"},{"euler":{"heading":67.71572542476207,"pitch":102.26584690533687,"roll":21.91287028771806},"location":"Left Ankle"},{"euler":{"heading":56.905733783608746,"pitch":-5.3384992820678345,"roll":-6.20915271464923},"location":"Right Ankle"},{"euler":{"heading":113.45340097939936,"pitch":-159.54101832942277,"roll":57.90078975748181},"location":"Right Hip"},{"euler":{"heading":122.15873423867164,"pitch":-116.01457300917386,"roll":-29.410594002314944},"location":"Right Knee"},{"euler":{"heading":26.534665072900296,"pitch":-131.53110555744004,"roll":56.1769986260465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.912"} +{"sensors":[{"euler":{"heading":193.93174771476458,"pitch":138.32740003910283,"roll":29.053415283110652},"location":"Left Knee"},{"euler":{"heading":67.26290288228586,"pitch":102.21426221480318,"roll":21.165333258946255},"location":"Left Ankle"},{"euler":{"heading":53.540160405247875,"pitch":-5.242149353861051,"roll":-6.700737443184307},"location":"Right Ankle"},{"euler":{"heading":114.89556088145943,"pitch":-158.62441649648048,"roll":57.16696078173363},"location":"Right Hip"},{"euler":{"heading":124.30536081480447,"pitch":-116.83811570825647,"roll":-31.494534602083448},"location":"Right Knee"},{"euler":{"heading":26.687448565610268,"pitch":-131.79674500169602,"roll":56.359298763441856},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.12"} +{"sensors":[{"euler":{"heading":175.13232294328813,"pitch":137.68216003519257,"roll":29.70432375479959},"location":"Left Knee"},{"euler":{"heading":67.78661259405727,"pitch":102.47408599332287,"roll":21.08004993305163},"location":"Left Ankle"},{"euler":{"heading":52.81739436472309,"pitch":-5.111684418474946,"roll":-6.755663698865877},"location":"Right Ankle"},{"euler":{"heading":116.18100479331349,"pitch":-157.80572484683242,"roll":55.78151470356026},"location":"Right Hip"},{"euler":{"heading":123.77482473332404,"pitch":-116.67930413743083,"roll":-31.563831141875102},"location":"Right Knee"},{"euler":{"heading":27.306203709049242,"pitch":-132.66082050152642,"roll":56.75461888709767},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.113"} +{"sensors":[{"euler":{"heading":159.0628406489593,"pitch":136.5389440316733,"roll":30.02139137931963},"location":"Left Knee"},{"euler":{"heading":68.73295133465155,"pitch":102.90792739399059,"roll":21.35329493974647},"location":"Left Ankle"},{"euler":{"heading":54.48565492825079,"pitch":-5.613015976627452,"roll":-6.09259732897929},"location":"Right Ankle"},{"euler":{"heading":116.61915431398215,"pitch":-157.5189023621492,"roll":54.36586323320424},"location":"Right Hip"},{"euler":{"heading":121.11609225999163,"pitch":-115.51762372368776,"roll":-29.888698027687592},"location":"Right Knee"},{"euler":{"heading":28.18808333814432,"pitch":-133.98848845137377,"roll":57.3166569983879},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.214"} +{"sensors":[{"euler":{"heading":145.2128065840634,"pitch":135.20379962850598,"roll":29.83175224138767},"location":"Left Knee"},{"euler":{"heading":70.0034062011864,"pitch":103.37963465459154,"roll":22.055465445771823},"location":"Left Ankle"},{"euler":{"heading":57.643339435425716,"pitch":-5.982964378964707,"roll":-5.014587596081361},"location":"Right Ankle"},{"euler":{"heading":115.85098888258393,"pitch":-157.52326212593428,"roll":53.704276909883816},"location":"Right Hip"},{"euler":{"heading":117.11698303399247,"pitch":-114.48461135131899,"roll":-26.849828224918834},"location":"Right Knee"},{"euler":{"heading":29.23177500432989,"pitch":-135.8896396062364,"roll":57.95999129854911},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.316"} +{"sensors":[{"euler":{"heading":133.39777592565707,"pitch":133.81466966565537,"roll":29.023577017248904},"location":"Left Knee"},{"euler":{"heading":71.84681558106776,"pitch":103.95417118913238,"roll":23.481168901194643},"location":"Left Ankle"},{"euler":{"heading":60.32900549188315,"pitch":-6.0659179410682365,"roll":-4.281878836473225},"location":"Right Ankle"},{"euler":{"heading":114.30338999432556,"pitch":-157.94593591334086,"roll":53.53384921889544},"location":"Right Hip"},{"euler":{"heading":113.99903473059322,"pitch":-114.0986502161871,"roll":-24.352345402426952},"location":"Right Knee"},{"euler":{"heading":30.5398475038969,"pitch":-138.31942564561277,"roll":58.620242168694205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.417"} +{"sensors":[{"euler":{"heading":123.92049833309136,"pitch":132.80195269908984,"roll":27.077469315524016},"location":"Left Knee"},{"euler":{"heading":74.51838402296099,"pitch":105.07750407021915,"roll":26.43305201107518},"location":"Left Ankle"},{"euler":{"heading":61.814854942694836,"pitch":-5.959326146961413,"roll":-3.9599409528259026},"location":"Right Ankle"},{"euler":{"heading":113.610550994893,"pitch":-158.08259232200678,"roll":53.542964297005895},"location":"Right Hip"},{"euler":{"heading":112.1928812575339,"pitch":-114.13878519456838,"roll":-22.792110862184256},"location":"Right Knee"},{"euler":{"heading":30.779612753507212,"pitch":-139.0562330810515,"roll":58.93321795182479},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.517"} +{"sensors":[{"euler":{"heading":116.80344849978223,"pitch":131.66550742918085,"roll":24.707222383971615},"location":"Left Knee"},{"euler":{"heading":78.0477956206649,"pitch":106.64475366319724,"roll":30.127246809967666},"location":"Left Ankle"},{"euler":{"heading":62.73961944842536,"pitch":-5.613393532265271,"roll":-3.9326968575433123},"location":"Right Ankle"},{"euler":{"heading":112.69949589540371,"pitch":-158.2180830898061,"roll":53.97616786730531},"location":"Right Hip"},{"euler":{"heading":111.6485931317805,"pitch":-114.53740667511155,"roll":-21.956649775965833},"location":"Right Knee"},{"euler":{"heading":29.782901478156493,"pitch":-137.23810977294633,"roll":58.752396156642305},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.618"} +{"sensors":[{"euler":{"heading":109.441853649804,"pitch":131.48645668626278,"roll":23.186500145574453},"location":"Left Knee"},{"euler":{"heading":79.42426605859842,"pitch":105.97402829687752,"roll":31.9770221289709},"location":"Left Ankle"},{"euler":{"heading":63.40940750358283,"pitch":-5.3395541790387435,"roll":-4.139427171788981},"location":"Right Ankle"},{"euler":{"heading":112.28579630586334,"pitch":-158.2087747808255,"roll":54.62230108057478},"location":"Right Hip"},{"euler":{"heading":111.82123381860247,"pitch":-114.8836660076004,"roll":-21.67973479836925},"location":"Right Knee"},{"euler":{"heading":27.792111330340845,"pitch":-135.3580487956517,"roll":57.770906540978075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.718"} +{"sensors":[{"euler":{"heading":124.6539182848236,"pitch":132.8128110176365,"roll":23.711600131017008},"location":"Left Knee"},{"euler":{"heading":77.61308945273858,"pitch":104.43912546718977,"roll":30.685569916073813},"location":"Left Ankle"},{"euler":{"heading":63.63721675322455,"pitch":-5.16184876113487,"roll":-4.269234454610083},"location":"Right Ankle"},{"euler":{"heading":112.125966675277,"pitch":-158.31289730274298,"roll":55.3413209725173},"location":"Right Hip"},{"euler":{"heading":112.50786043674222,"pitch":-115.15154940684036,"roll":-21.880511318532324},"location":"Right Knee"},{"euler":{"heading":59.58165019730676,"pitch":-135.21599391608655,"roll":55.39381588688027},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.819"} +{"sensors":[{"euler":{"heading":139.97602645634126,"pitch":135.05027991587286,"roll":25.184190117915307},"location":"Left Knee"},{"euler":{"heading":73.65178050746472,"pitch":103.1139629204708,"roll":27.367012924466433},"location":"Left Ankle"},{"euler":{"heading":63.1797450779021,"pitch":-4.870663885021383,"roll":-4.648561009149075},"location":"Right Ankle"},{"euler":{"heading":112.1508700077493,"pitch":-158.5003575724687,"roll":56.11343887526557},"location":"Right Hip"},{"euler":{"heading":113.913324393068,"pitch":-115.51139446615633,"roll":-22.698710186679094},"location":"Right Knee"},{"euler":{"heading":55.210985177576084,"pitch":-133.7381445244779,"roll":54.823184298192245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.923"} +{"sensors":[{"euler":{"heading":159.75342381070715,"pitch":137.1390019242856,"roll":26.647021106123777},"location":"Left Knee"},{"euler":{"heading":70.27410245671825,"pitch":102.51506662842372,"roll":24.27406163201979},"location":"Left Ankle"},{"euler":{"heading":61.974270570111884,"pitch":-4.602347496519244,"roll":-5.252454908234167},"location":"Right Ankle"},{"euler":{"heading":112.26078300697438,"pitch":-159.07532181522183,"roll":56.96459498773901},"location":"Right Hip"},{"euler":{"heading":115.9469919537612,"pitch":-115.7790050195407,"roll":-24.222589168011183},"location":"Right Knee"},{"euler":{"heading":52.07738665981848,"pitch":-133.3080800720301,"roll":54.49086586837302},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.23"} +{"sensors":[{"euler":{"heading":178.95933142963645,"pitch":138.02510173185703,"roll":27.8448189955114},"location":"Left Knee"},{"euler":{"heading":68.59669221104643,"pitch":102.18230996558135,"roll":22.65915546881781},"location":"Left Ankle"},{"euler":{"heading":59.1643435131007,"pitch":-4.79211274686732,"roll":-5.920959417410751},"location":"Right Ankle"},{"euler":{"heading":113.00970470627695,"pitch":-159.23653963369964,"roll":57.393135488965115},"location":"Right Hip"},{"euler":{"heading":118.57729275838508,"pitch":-115.85110451758665,"roll":-26.76283025121007},"location":"Right Knee"},{"euler":{"heading":49.21964799383663,"pitch":-132.8960220648271,"roll":54.42302928153572},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.123"} +{"sensors":[{"euler":{"heading":161.11964828667283,"pitch":138.09759155867135,"roll":28.804087095960263},"location":"Left Knee"},{"euler":{"heading":67.6370229899418,"pitch":101.97657896902322,"roll":21.58073992193603},"location":"Left Ankle"},{"euler":{"heading":55.52290916179063,"pitch":-4.931651472180588,"roll":-6.685113475669676},"location":"Right Ankle"},{"euler":{"heading":114.39623423564926,"pitch":-158.45038567032967,"roll":56.9975719400686},"location":"Right Hip"},{"euler":{"heading":121.35706348254658,"pitch":-116.49724406582799,"roll":-29.324047226089064},"location":"Right Knee"},{"euler":{"heading":47.09768319445297,"pitch":-133.1126698583444,"roll":54.599476353382144},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.224"} +{"sensors":[{"euler":{"heading":145.25143345800555,"pitch":137.77533240280422,"roll":29.49242838636424},"location":"Left Knee"},{"euler":{"heading":67.21707069094762,"pitch":101.7851710721209,"roll":20.997665929742425},"location":"Left Ankle"},{"euler":{"heading":53.65186824561157,"pitch":-5.27598632496253,"roll":-6.979102128102709},"location":"Right Ankle"},{"euler":{"heading":115.90036081208433,"pitch":-157.5178471032967,"roll":56.010314746061745},"location":"Right Hip"},{"euler":{"heading":122.19010713429192,"pitch":-116.36626965924519,"roll":-30.46039250348016},"location":"Right Knee"},{"euler":{"heading":45.41291487500767,"pitch":-133.91390287250996,"roll":54.920778718043934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.325"} +{"sensors":[{"euler":{"heading":131.39504011220498,"pitch":137.1727991625238,"roll":29.861935547727818},"location":"Left Knee"},{"euler":{"heading":67.28911362185286,"pitch":101.62540396490881,"roll":20.847899336768183},"location":"Left Ankle"},{"euler":{"heading":54.54918142105041,"pitch":-6.035887692466277,"roll":-6.412441915292438},"location":"Right Ankle"},{"euler":{"heading":116.62907473087591,"pitch":-157.02231239296702,"roll":54.859283271455574},"location":"Right Hip"},{"euler":{"heading":120.35859642086274,"pitch":-115.34214269332067,"roll":-29.476853253132145},"location":"Right Knee"},{"euler":{"heading":44.202873387506905,"pitch":-135.51626258525897,"roll":55.309950846239545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.426"} +{"sensors":[{"euler":{"heading":119.71178610098448,"pitch":136.19926924627143,"roll":29.838241992955034},"location":"Left Knee"},{"euler":{"heading":67.96645225966758,"pitch":101.69411356841793,"roll":21.19435940309137},"location":"Left Ankle"},{"euler":{"heading":57.831763278945374,"pitch":-6.5572989232196495,"roll":-5.5774477237631945},"location":"Right Ankle"},{"euler":{"heading":116.24116725778833,"pitch":-156.97008115367032,"roll":54.154604944310016},"location":"Right Hip"},{"euler":{"heading":116.84773677877648,"pitch":-114.2016784239886,"roll":-26.85416792781893},"location":"Right Knee"},{"euler":{"heading":43.45133604875622,"pitch":-137.46463632673306,"roll":55.82895576161559},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.526"} +{"sensors":[{"euler":{"heading":110.00935749088603,"pitch":134.9918423216443,"roll":29.216917793659533},"location":"Left Knee"},{"euler":{"heading":69.24480703370082,"pitch":101.98720221157615,"roll":22.237423462782235},"location":"Left Ankle"},{"euler":{"heading":60.74858695105084,"pitch":-6.7015690308976845,"roll":-4.625952951386876},"location":"Right Ankle"},{"euler":{"heading":115.0358005320095,"pitch":-157.2793230383033,"roll":53.901644449879015},"location":"Right Hip"},{"euler":{"heading":113.16296310089884,"pitch":-113.47526058158974,"roll":-24.037501135037036},"location":"Right Knee"},{"euler":{"heading":43.1374524438806,"pitch":-139.73067269405976,"roll":56.439810185454036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.627"} +{"sensors":[{"euler":{"heading":102.51467174179743,"pitch":133.6364080894799,"roll":27.58272601429358},"location":"Left Knee"},{"euler":{"heading":71.41407633033074,"pitch":102.79473199041854,"roll":24.513681116504014},"location":"Left Ankle"},{"euler":{"heading":62.54247825594575,"pitch":-6.525162127807916,"roll":-4.188357656248189},"location":"Right Ankle"},{"euler":{"heading":114.21972047880855,"pitch":-157.48889073447296,"roll":53.84898000489111},"location":"Right Hip"},{"euler":{"heading":110.79666679080896,"pitch":-113.40898452343076,"roll":-22.16500102153333},"location":"Right Knee"},{"euler":{"heading":43.01120719949254,"pitch":-141.47635542465378,"roll":57.06457916690863},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.728"} +{"sensors":[{"euler":{"heading":97.37570456761769,"pitch":132.5102672805319,"roll":25.205703412864224},"location":"Left Knee"},{"euler":{"heading":74.82891869729768,"pitch":104.8090087913767,"roll":27.874813004853614},"location":"Left Ankle"},{"euler":{"heading":63.625730430351176,"pitch":-6.128895915027124,"roll":-4.07577189062337},"location":"Right Ankle"},{"euler":{"heading":113.3414984309277,"pitch":-157.70875166102567,"roll":54.214082004402},"location":"Right Hip"},{"euler":{"heading":110.01075011172807,"pitch":-113.69308607108769,"roll":-21.161000919379997},"location":"Right Knee"},{"euler":{"heading":41.16633647954328,"pitch":-140.7787198821884,"roll":57.19562125021777},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.828"} +{"sensors":[{"euler":{"heading":91.97563411085592,"pitch":132.20299055247872,"roll":23.685133071577802},"location":"Left Knee"},{"euler":{"heading":76.29602682756791,"pitch":104.58435791223903,"roll":29.674831704368252},"location":"Left Ankle"},{"euler":{"heading":64.18815738731605,"pitch":-5.772256323524411,"roll":-4.193194701561033},"location":"Right Ankle"},{"euler":{"heading":112.66359858783493,"pitch":-157.9003764949231,"roll":54.948923803961804},"location":"Right Hip"},{"euler":{"heading":110.14717510055527,"pitch":-114.06127746397893,"roll":-20.788650827441998},"location":"Right Knee"},{"euler":{"heading":38.618452831588954,"pitch":-139.08209789396957,"roll":56.651059125196},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.930"} +{"sensors":[{"euler":{"heading":109.19057069977032,"pitch":133.28894149723087,"roll":24.054119764420022},"location":"Left Knee"},{"euler":{"heading":74.80392414481113,"pitch":103.61967212101513,"roll":28.588598533931428},"location":"Left Ankle"},{"euler":{"heading":64.41934164858445,"pitch":-5.563780691171971,"roll":-4.36762523140493},"location":"Right Ankle"},{"euler":{"heading":112.28473872905144,"pitch":-158.2540888454308,"roll":55.797781423565624},"location":"Right Hip"},{"euler":{"heading":110.78870759049975,"pitch":-114.31139971758104,"roll":-20.8910357446978},"location":"Right Knee"},{"euler":{"heading":36.12535754843006,"pitch":-137.05513810457262,"roll":55.9672032126764},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.30"} +{"sensors":[{"euler":{"heading":126.2340136297933,"pitch":135.55379734750778,"roll":25.511207787978023},"location":"Left Knee"},{"euler":{"heading":71.10478173033002,"pitch":102.53895490891362,"roll":25.323488680538286},"location":"Left Ankle"},{"euler":{"heading":64.146157483726,"pitch":-5.282402622054774,"roll":-4.6996127082644374},"location":"Right Ankle"},{"euler":{"heading":111.9812648561463,"pitch":-158.78492996088772,"roll":56.718003281209064},"location":"Right Hip"},{"euler":{"heading":112.05358683144978,"pitch":-114.66775974582293,"roll":-21.52068217022802},"location":"Right Knee"},{"euler":{"heading":34.281571793587055,"pitch":-135.48087429411535,"roll":55.42048289140877},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.131"} +{"sensors":[{"euler":{"heading":142.04186226681398,"pitch":137.86716761275702,"roll":26.98508700918022},"location":"Left Knee"},{"euler":{"heading":67.57555355729701,"pitch":101.82255941802225,"roll":22.128639812484458},"location":"Left Ankle"},{"euler":{"heading":63.2315417353534,"pitch":-5.041662359849297,"roll":-5.2359014374379935},"location":"Right Ankle"},{"euler":{"heading":111.93938837053167,"pitch":-159.61268696479897,"roll":57.646202953088164},"location":"Right Hip"},{"euler":{"heading":114.0232281483048,"pitch":-114.94473377124065,"roll":-22.88111395320522},"location":"Right Knee"},{"euler":{"heading":33.14716461422835,"pitch":-134.5327868647038,"roll":55.0534346022679},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.232"} +{"sensors":[{"euler":{"heading":162.75642604013257,"pitch":138.8992008514813,"roll":28.192828308262197},"location":"Left Knee"},{"euler":{"heading":66.16174820156732,"pitch":101.59030347622003,"roll":20.75952583123601},"location":"Left Ankle"},{"euler":{"heading":61.03338756181807,"pitch":-5.281246123864367,"roll":-5.918561293694194},"location":"Right Ankle"},{"euler":{"heading":112.39544953347851,"pitch":-160.25766826831907,"roll":58.29408265777935},"location":"Right Hip"},{"euler":{"heading":116.69590533347431,"pitch":-114.91901039411658,"roll":-25.3055025578847},"location":"Right Knee"},{"euler":{"heading":32.37619815280552,"pitch":-133.8420081782334,"roll":54.95434114204111},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.333"} +{"sensors":[{"euler":{"heading":182.21828343611932,"pitch":139.10928076633317,"roll":29.09229547743598},"location":"Left Knee"},{"euler":{"heading":65.2455733814106,"pitch":101.46877312859803,"roll":19.73982324811241},"location":"Left Ankle"},{"euler":{"heading":56.99879880563626,"pitch":-5.30312151147793,"roll":-7.051705164324774},"location":"Right Ankle"},{"euler":{"heading":113.69965458013067,"pitch":-159.65690144148718,"roll":58.13967439200141},"location":"Right Hip"},{"euler":{"heading":119.70756480012689,"pitch":-115.57710935470493,"roll":-28.05620230209623},"location":"Right Knee"},{"euler":{"heading":31.95107833752497,"pitch":-133.62030736041007,"roll":55.152657027837},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.433"} +{"sensors":[{"euler":{"heading":164.07770509250741,"pitch":138.82960268969987,"roll":29.80181592969238},"location":"Left Knee"},{"euler":{"heading":64.89601604326954,"pitch":101.41564581573823,"roll":19.21584092330117},"location":"Left Ankle"},{"euler":{"heading":54.211418925072635,"pitch":-5.585309360330137,"roll":-7.515284647892297},"location":"Right Ankle"},{"euler":{"heading":115.3546891221176,"pitch":-158.67246129733846,"roll":57.21320695280127},"location":"Right Hip"},{"euler":{"heading":120.7993083201142,"pitch":-115.53189841923444,"roll":-29.50058207188661},"location":"Right Knee"},{"euler":{"heading":31.837220503772475,"pitch":-134.13327662436905,"roll":55.524891325053304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.534"} +{"sensors":[{"euler":{"heading":148.3136845832567,"pitch":138.20914242072988,"roll":30.209134336723142},"location":"Left Knee"},{"euler":{"heading":65.4314144389426,"pitch":101.53033123416441,"roll":19.394256830971052},"location":"Left Ankle"},{"euler":{"heading":54.09027703256537,"pitch":-6.295528424297123,"roll":-7.195006183103068},"location":"Right Ankle"},{"euler":{"heading":116.53797020990585,"pitch":-157.9427151676046,"roll":55.904386257521146},"location":"Right Hip"},{"euler":{"heading":119.3443774881028,"pitch":-114.647458577311,"roll":-28.888023864697946},"location":"Right Knee"},{"euler":{"heading":31.784748453395228,"pitch":-135.19494896193214,"roll":55.878652192547975},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.635"} +{"sensors":[{"euler":{"heading":134.74481612493102,"pitch":137.3257281786569,"roll":30.150720903050832},"location":"Left Knee"},{"euler":{"heading":66.43827299504834,"pitch":101.69604811074797,"roll":20.023581147873948},"location":"Left Ankle"},{"euler":{"heading":56.06874932930884,"pitch":-6.95347558186741,"roll":-6.231755564792761},"location":"Right Ankle"},{"euler":{"heading":116.79667318891526,"pitch":-157.69219365084413,"roll":54.857697631769035},"location":"Right Hip"},{"euler":{"heading":116.19118973929251,"pitch":-113.5389627195799,"roll":-26.567971478228152},"location":"Right Knee"},{"euler":{"heading":31.937523608055706,"pitch":-136.60045406573894,"roll":56.30953697329318},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.736"} +{"sensors":[{"euler":{"heading":123.12033451243792,"pitch":136.26190536079122,"roll":29.61064881274575},"location":"Left Knee"},{"euler":{"heading":67.8631956955435,"pitch":101.89519329967318,"roll":21.164973033086554},"location":"Left Ankle"},{"euler":{"heading":59.07437439637795,"pitch":-7.551878023680669,"roll":-5.171080008313485},"location":"Right Ankle"},{"euler":{"heading":115.96075587002375,"pitch":-157.78547428575973,"roll":54.55317786859213},"location":"Right Hip"},{"euler":{"heading":112.80332076536327,"pitch":-112.5913164476219,"roll":-23.798674330405337},"location":"Right Knee"},{"euler":{"heading":32.40002124725014,"pitch":-138.40290865916506,"roll":56.86608327596386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.837"} +{"sensors":[{"euler":{"heading":113.69580106119413,"pitch":134.9982148247121,"roll":28.293333931471178},"location":"Left Knee"},{"euler":{"heading":69.92062612598914,"pitch":102.31192396970587,"roll":23.2547257297779},"location":"Left Ankle"},{"euler":{"heading":61.25443695674015,"pitch":-7.940440221312603,"roll":-4.566472007482136},"location":"Right Ankle"},{"euler":{"heading":114.80843028302138,"pitch":-158.24442685718378,"roll":54.47911008173292},"location":"Right Hip"},{"euler":{"heading":110.52298868882694,"pitch":-112.13218480285971,"roll":-21.812556897364804},"location":"Right Knee"},{"euler":{"heading":33.09126912252513,"pitch":-140.12511779324856,"roll":57.43572494836748},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.938"} +{"sensors":[{"euler":{"heading":106.90747095507471,"pitch":133.7171433422409,"roll":26.14525053832406},"location":"Left Knee"},{"euler":{"heading":72.58481351339023,"pitch":103.33698157273528,"roll":26.18550315680011},"location":"Left Ankle"},{"euler":{"heading":62.628993261066135,"pitch":-8.183896199181342,"roll":-4.209824806733922},"location":"Right Ankle"},{"euler":{"heading":113.89633725471924,"pitch":-158.6762341714654,"roll":54.70619907355963},"location":"Right Hip"},{"euler":{"heading":109.53318981994425,"pitch":-111.98771632257373,"roll":-20.731301207628324},"location":"Right Knee"},{"euler":{"heading":32.28214221027261,"pitch":-139.66885601392372,"roll":57.617152453530736},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.39"} +{"sensors":[{"euler":{"heading":100.22297385956723,"pitch":133.1766790080168,"roll":24.630725484491656},"location":"Left Knee"},{"euler":{"heading":74.25133216205121,"pitch":103.39078341546175,"roll":28.0357028411201},"location":"Left Ankle"},{"euler":{"heading":63.441093934959525,"pitch":-8.221756579263207,"roll":-4.09509232606053},"location":"Right Ankle"},{"euler":{"heading":113.06920352924732,"pitch":-159.00861075431885,"roll":55.310579166203674},"location":"Right Hip"},{"euler":{"heading":109.42987083794984,"pitch":-112.12019469031635,"roll":-20.26442108686549},"location":"Right Knee"},{"euler":{"heading":30.753927989245348,"pitch":-138.13947041253135,"roll":57.242937208177665},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.140"} +{"sensors":[{"euler":{"heading":90.48817647361051,"pitch":133.99026110721513,"roll":24.79890293604249},"location":"Left Knee"},{"euler":{"heading":73.40744894584608,"pitch":102.40170507391558,"roll":27.63213255700809},"location":"Left Ankle"},{"euler":{"heading":63.85323454146358,"pitch":-8.043330921336887,"roll":-4.323083093454477},"location":"Right Ankle"},{"euler":{"heading":112.45603317632259,"pitch":-159.28274967888697,"roll":56.129521249583306},"location":"Right Hip"},{"euler":{"heading":109.81813375415486,"pitch":-112.45192522128472,"roll":-20.22547897817894},"location":"Right Knee"},{"euler":{"heading":28.847285190320815,"pitch":-136.22552337127823,"roll":56.556143487359904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.241"} +{"sensors":[{"euler":{"heading":115.13310882624947,"pitch":135.84748499649362,"roll":26.106512642438243},"location":"Left Knee"},{"euler":{"heading":70.22295405126148,"pitch":101.46778456652403,"roll":23.418919301307284},"location":"Left Ankle"},{"euler":{"heading":63.78041108731722,"pitch":-7.895247829203198,"roll":-4.553274784109029},"location":"Right Ankle"},{"euler":{"heading":112.14167985869034,"pitch":-159.8169747109983,"roll":56.92281912462498},"location":"Right Hip"},{"euler":{"heading":110.75507037873938,"pitch":-112.70048269915625,"roll":-20.734181080361047},"location":"Right Knee"},{"euler":{"heading":27.481306671288735,"pitch":-134.6404710341504,"roll":55.94427913862392},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.342"} +{"sensors":[{"euler":{"heading":136.80729794362452,"pitch":138.00023649684425,"roll":27.51461137819442},"location":"Left Knee"},{"euler":{"heading":66.98815864613533,"pitch":100.75225610987164,"roll":20.614527371176557},"location":"Left Ankle"},{"euler":{"heading":62.989869978585496,"pitch":-7.799473046282879,"roll":-5.122947305698127},"location":"Right Ankle"},{"euler":{"heading":112.21501187282132,"pitch":-160.54152723989847,"roll":57.774287212162484},"location":"Right Hip"},{"euler":{"heading":112.37331334086545,"pitch":-112.74918442924064,"roll":-21.942012972324942},"location":"Right Knee"},{"euler":{"heading":26.951926004159862,"pitch":-133.80767393073538,"roll":55.53110122476153},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.442"} +{"sensors":[{"euler":{"heading":158.08906814926206,"pitch":138.90021284715982,"roll":28.62565024037498},"location":"Left Knee"},{"euler":{"heading":65.3330927815218,"pitch":100.51453049888448,"roll":19.153074634058903},"location":"Left Ankle"},{"euler":{"heading":60.803382980726944,"pitch":-8.03827574165459,"roll":-5.7231525751283145},"location":"Right Ankle"},{"euler":{"heading":112.6622606855392,"pitch":-160.89987451590864,"roll":58.38435849094624},"location":"Right Hip"},{"euler":{"heading":114.75473200677891,"pitch":-112.64926598631658,"roll":-24.17906167509245},"location":"Right Knee"},{"euler":{"heading":26.450483403743878,"pitch":-132.95815653766184,"roll":55.31549110228538},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.544"} +{"sensors":[{"euler":{"heading":142.33641133433588,"pitch":138.94769156244382,"roll":29.394335216337485},"location":"Left Knee"},{"euler":{"heading":64.54353350336962,"pitch":100.46307744899603,"roll":18.412767170653016},"location":"Left Ankle"},{"euler":{"heading":57.154294682654246,"pitch":-8.428198167489132,"roll":-6.463337317615483},"location":"Right Ankle"},{"euler":{"heading":114.05853461698527,"pitch":-160.28488706431776,"roll":58.033422641851615},"location":"Right Hip"},{"euler":{"heading":117.59175880610103,"pitch":-113.10933938768491,"roll":-26.917405507583204},"location":"Right Knee"},{"euler":{"heading":26.48043506336949,"pitch":-132.67484088389565,"roll":55.44644199205684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.644"} +{"sensors":[{"euler":{"heading":128.29027020090228,"pitch":138.64042240619943,"roll":29.929901694703737},"location":"Left Knee"},{"euler":{"heading":64.60168015303266,"pitch":100.49176970409643,"roll":18.333990453587713},"location":"Left Ankle"},{"euler":{"heading":55.33261521438882,"pitch":-8.679128350740218,"roll":-6.804503585853935},"location":"Right Ankle"},{"euler":{"heading":115.83393115528675,"pitch":-159.35639835788598,"roll":56.94258037766645},"location":"Right Hip"},{"euler":{"heading":117.12633292549093,"pitch":-112.90465544891643,"roll":-28.219414956824885},"location":"Right Knee"},{"euler":{"heading":26.644891557032544,"pitch":-133.1448567955061,"roll":55.714297792851156},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.745"} +{"sensors":[{"euler":{"heading":116.26124318081206,"pitch":137.9638801655795,"roll":30.186911525233363},"location":"Left Knee"},{"euler":{"heading":65.1540121377294,"pitch":100.66134273368678,"roll":18.65059140822894},"location":"Left Ankle"},{"euler":{"heading":56.12435369294994,"pitch":-8.986215515666196,"roll":-6.3615532272685416},"location":"Right Ankle"},{"euler":{"heading":116.75678803975808,"pitch":-158.69575852209738,"roll":55.69207233989981},"location":"Right Hip"},{"euler":{"heading":115.62619963294185,"pitch":-112.12043990402478,"roll":-27.316223461142396},"location":"Right Knee"},{"euler":{"heading":27.05540240132929,"pitch":-134.22412111595548,"roll":56.10536801356604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.846"} +{"sensors":[{"euler":{"heading":106.29136886273085,"pitch":136.91124214902155,"roll":29.993220372710027},"location":"Left Knee"},{"euler":{"heading":66.19486092395645,"pitch":100.98270846031811,"roll":19.398032267406048},"location":"Left Ankle"},{"euler":{"heading":58.77441832365495,"pitch":-9.312593964099577,"roll":-5.369147904541688},"location":"Right Ankle"},{"euler":{"heading":116.61235923578228,"pitch":-158.44493266988766,"roll":54.854115105909834},"location":"Right Hip"},{"euler":{"heading":112.48232966964767,"pitch":-111.2146459136223,"roll":-24.71585111502816},"location":"Right Knee"},{"euler":{"heading":27.78736216119636,"pitch":-135.75795900435995,"roll":56.638581212209445},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.947"} +{"sensors":[{"euler":{"heading":98.14348197645776,"pitch":135.6388679341194,"roll":29.237648335439022},"location":"Left Knee"},{"euler":{"heading":67.97537483156081,"pitch":101.5281876142863,"roll":20.895729040665444},"location":"Left Ankle"},{"euler":{"heading":61.52822649128946,"pitch":-9.475084567689619,"roll":-4.557233114087519},"location":"Right Ankle"},{"euler":{"heading":115.68862331220404,"pitch":-158.5129394028989,"roll":54.58120359531885},"location":"Right Hip"},{"euler":{"heading":109.1465967026829,"pitch":-110.66193132226007,"roll":-21.975516003525343},"location":"Right Knee"},{"euler":{"heading":28.639875945076724,"pitch":-137.56341310392395,"roll":57.20597309098851},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.47"} +{"sensors":[{"euler":{"heading":91.99163377881199,"pitch":134.34373114070746,"roll":27.56388350189512},"location":"Left Knee"},{"euler":{"heading":70.32783734840474,"pitch":102.30661885285767,"roll":23.5999061365989},"location":"Left Ankle"},{"euler":{"heading":63.025403842160515,"pitch":-9.333826110920658,"roll":-4.301509802678767},"location":"Right Ankle"},{"euler":{"heading":114.80726098098364,"pitch":-158.705395462609,"roll":54.58558323578696},"location":"Right Hip"},{"euler":{"heading":107.0756870324146,"pitch":-110.72698819003406,"roll":-20.13421440317281},"location":"Right Knee"},{"euler":{"heading":29.55713835056905,"pitch":-139.00707179353157,"roll":57.71662578188966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.147"} +{"sensors":[{"euler":{"heading":88.0299704009308,"pitch":132.9718580266367,"roll":25.16374515170561},"location":"Left Knee"},{"euler":{"heading":73.64505361356427,"pitch":104.0572069675719,"roll":27.089915522939013},"location":"Left Ankle"},{"euler":{"heading":63.916613457944464,"pitch":-9.287943499828591,"roll":-4.190108822410891},"location":"Right Ankle"},{"euler":{"heading":113.98903488288528,"pitch":-158.9661059163481,"roll":55.00827491220827},"location":"Right Hip"},{"euler":{"heading":106.41811832917314,"pitch":-110.85428937103066,"roll":-19.18329296285553},"location":"Right Knee"},{"euler":{"heading":29.295174515512148,"pitch":-138.15011461417842,"roll":57.907463203700694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.248"} +{"sensors":[{"euler":{"heading":82.48322336083771,"pitch":132.46217222397306,"roll":23.516120636535046},"location":"Left Knee"},{"euler":{"heading":75.63054825220784,"pitch":104.02023627081472,"roll":29.33092397064511},"location":"Left Ankle"},{"euler":{"heading":64.50620211215002,"pitch":-9.209149149845732,"roll":-4.202347940169802},"location":"Right Ankle"},{"euler":{"heading":113.50888139459676,"pitch":-159.1694953247133,"roll":55.70119742098745},"location":"Right Hip"},{"euler":{"heading":106.47630649625583,"pitch":-110.9563604339276,"roll":-18.839963666569975},"location":"Right Knee"},{"euler":{"heading":28.196907063960936,"pitch":-136.62885315276057,"roll":57.37921688333063},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.348"} +{"sensors":[{"euler":{"heading":75.05990102475394,"pitch":133.23470500157575,"roll":23.764508572881542},"location":"Left Knee"},{"euler":{"heading":74.62374342698706,"pitch":103.15571264373324,"roll":28.8540815735806},"location":"Left Ankle"},{"euler":{"heading":64.63683190093502,"pitch":-8.93198423486116,"roll":-4.300863146152822},"location":"Right Ankle"},{"euler":{"heading":113.18299325513709,"pitch":-159.40879579224196,"roll":56.487327678888704},"location":"Right Hip"},{"euler":{"heading":107.03492584663024,"pitch":-111.20447439053484,"roll":-18.93096729991298},"location":"Right Knee"},{"euler":{"heading":26.864716357564845,"pitch":-134.84096783748453,"roll":56.628795194997565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.449"} +{"sensors":[{"euler":{"heading":101.14141092227854,"pitch":135.22373450141816,"roll":25.28805771559339},"location":"Left Knee"},{"euler":{"heading":71.31136908428836,"pitch":102.07139137935992,"roll":26.03117341622254},"location":"Left Ankle"},{"euler":{"heading":64.25439871084153,"pitch":-8.432535811375045,"roll":-4.55827683153754},"location":"Right Ankle"},{"euler":{"heading":112.9021939296234,"pitch":-159.80541621301776,"roll":57.28859491099984},"location":"Right Hip"},{"euler":{"heading":108.23143326196723,"pitch":-111.66527695148136,"roll":-19.531620569921685},"location":"Right Knee"},{"euler":{"heading":25.934494721808363,"pitch":-133.45687105373608,"roll":56.03466567549781},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.550"} +{"sensors":[{"euler":{"heading":124.70226983005068,"pitch":137.22636105127634,"roll":26.784251944034054},"location":"Left Knee"},{"euler":{"heading":68.15523217585952,"pitch":101.39550224142393,"roll":23.128056074600284},"location":"Left Ankle"},{"euler":{"heading":63.103958839757375,"pitch":-7.8767822302375405,"roll":-5.258699148383786},"location":"Right Ankle"},{"euler":{"heading":112.79322453666106,"pitch":-160.46237459171599,"roll":58.16598541989986},"location":"Right Hip"},{"euler":{"heading":110.14578993577051,"pitch":-112.06749925633324,"roll":-20.91595851292952},"location":"Right Knee"},{"euler":{"heading":25.716045249627527,"pitch":-132.86118394836248,"roll":55.68119910794803},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.651"} +{"sensors":[{"euler":{"heading":147.11954284704564,"pitch":138.14747494614872,"roll":27.97457674963065},"location":"Left Knee"},{"euler":{"heading":66.40845895827357,"pitch":100.98095201728154,"roll":21.365250467140257},"location":"Left Ankle"},{"euler":{"heading":60.56856295578164,"pitch":-7.839104007213787,"roll":-5.932829233545408},"location":"Right Ankle"},{"euler":{"heading":113.23265208299496,"pitch":-160.53488713254438,"roll":58.618136877909876},"location":"Right Hip"},{"euler":{"heading":112.78746094219346,"pitch":-112.14824933069991,"roll":-23.33061266163657},"location":"Right Knee"},{"euler":{"heading":25.325690724664774,"pitch":-132.36881555352622,"roll":55.54432919715323},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.752"} +{"sensors":[{"euler":{"heading":167.8888385623411,"pitch":138.43272745153385,"roll":28.864619074667587},"location":"Left Knee"},{"euler":{"heading":65.40511306244622,"pitch":100.62035681555338,"roll":20.328725420426235},"location":"Left Ankle"},{"euler":{"heading":57.01170666020347,"pitch":-7.680193606492408,"roll":-6.6145463101908675},"location":"Right Ankle"},{"euler":{"heading":114.40313687469548,"pitch":-159.75014841928996,"roll":58.21257319011889},"location":"Right Hip"},{"euler":{"heading":115.74621484797412,"pitch":-113.01467439762992,"roll":-25.935051395472914},"location":"Right Knee"},{"euler":{"heading":25.211871652198298,"pitch":-132.61318399817358,"roll":55.639896277437906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.853"} +{"sensors":[{"euler":{"heading":186.89995470610702,"pitch":138.35195470638047,"roll":29.46565716720083},"location":"Left Knee"},{"euler":{"heading":65.3458517562016,"pitch":100.37082113399805,"roll":20.095852878383614},"location":"Left Ankle"},{"euler":{"heading":54.97928599418313,"pitch":-7.549674245843168,"roll":-6.915591679171781},"location":"Right Ankle"},{"euler":{"heading":115.63157318722594,"pitch":-158.793883577361,"roll":57.19131587110701},"location":"Right Hip"},{"euler":{"heading":116.70909336317672,"pitch":-113.19445695786693,"roll":-27.122796255925625},"location":"Right Knee"},{"euler":{"heading":25.37818448697847,"pitch":-133.52686559835624,"roll":55.90090664969412},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.954"} +{"sensors":[{"euler":{"heading":168.5912092354963,"pitch":137.92925923574242,"roll":29.73159145048075},"location":"Left Knee"},{"euler":{"heading":65.56126658058145,"pitch":100.10248902059824,"roll":20.21126759054525},"location":"Left Ankle"},{"euler":{"heading":55.61260739476482,"pitch":-7.788456821258851,"roll":-6.542782511254603},"location":"Right Ankle"},{"euler":{"heading":116.36216586850335,"pitch":-158.13949521962488,"roll":55.940934283996306},"location":"Right Hip"},{"euler":{"heading":114.95068402685905,"pitch":-112.55626126208024,"roll":-26.210516630333064},"location":"Right Knee"},{"euler":{"heading":25.734116038280625,"pitch":-134.9804290385206,"roll":56.21706598472471},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.54"} +{"sensors":[{"euler":{"heading":153.02583831194667,"pitch":137.13008331216818,"roll":29.570932305432674},"location":"Left Knee"},{"euler":{"heading":66.3613899225233,"pitch":100.07349011853842,"roll":20.87139083149073},"location":"Left Ankle"},{"euler":{"heading":58.30134665528834,"pitch":-8.059611139132967,"roll":-5.682254260129143},"location":"Right Ankle"},{"euler":{"heading":116.17594928165302,"pitch":-157.9192956976624,"roll":55.05309085559667},"location":"Right Hip"},{"euler":{"heading":111.84936562417315,"pitch":-111.68813513587222,"roll":-23.683214967299758},"location":"Right Knee"},{"euler":{"heading":26.316954434452562,"pitch":-136.66988613466856,"roll":56.670359386252244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.155"} +{"sensors":[{"euler":{"heading":139.81700448075202,"pitch":136.13582498095138,"roll":28.870089074889407},"location":"Left Knee"},{"euler":{"heading":67.93775093027098,"pitch":100.33489110668458,"roll":22.271751748341657},"location":"Left Ankle"},{"euler":{"heading":61.20246198975951,"pitch":-8.272400025219671,"roll":-4.876528834116229},"location":"Right Ankle"},{"euler":{"heading":114.91460435348772,"pitch":-158.13361612789615,"roll":54.766531770037005},"location":"Right Hip"},{"euler":{"heading":108.53317906175585,"pitch":-111.14432162228499,"roll":-20.99614347056978},"location":"Right Knee"},{"euler":{"heading":27.185258991007306,"pitch":-138.74039752120171,"roll":57.15957344762702},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.256"} +{"sensors":[{"euler":{"heading":129.14780403267682,"pitch":134.97224248285625,"roll":27.295580167400466},"location":"Left Knee"},{"euler":{"heading":69.89397583724389,"pitch":100.84515199601613,"roll":24.707076573507493},"location":"Left Ankle"},{"euler":{"heading":62.800965790783565,"pitch":-8.238910022697704,"roll":-4.607625950704606},"location":"Right Ankle"},{"euler":{"heading":114.07314391813895,"pitch":-158.23900451510653,"roll":54.70862859303331},"location":"Right Hip"},{"euler":{"heading":106.38611115558027,"pitch":-111.2173894600565,"roll":-19.2340291235128},"location":"Right Knee"},{"euler":{"heading":28.166733091906575,"pitch":-140.36635776908156,"roll":57.59986610286432},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.357"} +{"sensors":[{"euler":{"heading":121.27052362940913,"pitch":133.86251823457062,"roll":24.95977215066042},"location":"Left Knee"},{"euler":{"heading":72.5483282535195,"pitch":102.15438679641451,"roll":27.942618916156746},"location":"Left Ankle"},{"euler":{"heading":63.939619211705214,"pitch":-8.333769020427933,"roll":-4.484363355634146},"location":"Right Ankle"},{"euler":{"heading":113.13457952632506,"pitch":-158.49010406359588,"roll":55.04401573372998},"location":"Right Hip"},{"euler":{"heading":105.81000004002225,"pitch":-111.31440051405085,"roll":-18.373126211161523},"location":"Right Knee"},{"euler":{"heading":27.375059782715915,"pitch":-139.3422219921734,"roll":57.60862949257789},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.458"} +{"sensors":[{"euler":{"heading":113.71847126646821,"pitch":133.50751641111356,"roll":23.257544935594378},"location":"Left Knee"},{"euler":{"heading":74.23099542816755,"pitch":101.93269811677307,"roll":29.792107024541075},"location":"Left Ankle"},{"euler":{"heading":64.6331572905347,"pitch":-8.48789211838514,"roll":-4.504677020070732},"location":"Right Ankle"},{"euler":{"heading":112.75862157369255,"pitch":-158.6160936572363,"roll":55.670864160356984},"location":"Right Hip"},{"euler":{"heading":106.04775003602003,"pitch":-111.33296046264577,"roll":-18.148313590045372},"location":"Right Knee"},{"euler":{"heading":25.97505380444432,"pitch":-137.65174979295605,"roll":56.98526654332011},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.559"} +{"sensors":[{"euler":{"heading":128.6841241398214,"pitch":134.4880147700022,"roll":23.65054044203494},"location":"Left Knee"},{"euler":{"heading":72.85789588535079,"pitch":101.09567830509576,"roll":28.875396322086967},"location":"Left Ankle"},{"euler":{"heading":64.95109156148123,"pitch":-8.576602906546626,"roll":-4.729209318063659},"location":"Right Ankle"},{"euler":{"heading":112.7515094163233,"pitch":-158.68573429151266,"roll":56.328777744321286},"location":"Right Hip"},{"euler":{"heading":106.80547503241803,"pitch":-111.3434144163812,"roll":-18.433482231040838},"location":"Right Knee"},{"euler":{"heading":24.67129842399989,"pitch":-135.86782481366043,"roll":56.1929898889881},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.660"} +{"sensors":[{"euler":{"heading":149.32821172583925,"pitch":136.48296329300197,"roll":25.141736397831448},"location":"Left Knee"},{"euler":{"heading":69.3408562968157,"pitch":100.26111047458619,"roll":25.712856689878272},"location":"Left Ankle"},{"euler":{"heading":64.5934824053331,"pitch":-8.437692615891963,"roll":-5.1437883862572935},"location":"Right Ankle"},{"euler":{"heading":112.82010847469097,"pitch":-158.8984108623614,"roll":57.00839996988916},"location":"Right Hip"},{"euler":{"heading":108.19992752917624,"pitch":-111.54032297474308,"roll":-19.246384007936754},"location":"Right Knee"},{"euler":{"heading":23.7791685815999,"pitch":-134.29354233229438,"roll":55.58619090008929},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.761"} +{"sensors":[{"euler":{"heading":167.88914055325534,"pitch":138.39716696370178,"roll":26.633812758048304},"location":"Left Knee"},{"euler":{"heading":66.00677066713413,"pitch":99.57249942712758,"roll":22.485321020890446},"location":"Left Ankle"},{"euler":{"heading":63.4966341647998,"pitch":-8.112673354302768,"roll":-5.898159547631564},"location":"Right Ankle"},{"euler":{"heading":113.00684762722187,"pitch":-159.42106977612525,"roll":57.80130997290024},"location":"Right Hip"},{"euler":{"heading":110.17368477625861,"pitch":-111.78004067726877,"roll":-20.659245607143077},"location":"Right Knee"},{"euler":{"heading":23.588751723439913,"pitch":-133.39543809906496,"roll":55.16507181008037},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.862"} +{"sensors":[{"euler":{"heading":186.52522649792982,"pitch":139.0199502673316,"roll":27.807931482243475},"location":"Left Knee"},{"euler":{"heading":64.48109360042072,"pitch":99.60899948441484,"roll":20.674288918801402},"location":"Left Ankle"},{"euler":{"heading":61.221970748319826,"pitch":-8.176406018872491,"roll":-6.664593592868408},"location":"Right Ankle"},{"euler":{"heading":113.63116286449969,"pitch":-159.84146279851274,"roll":58.40867897561022},"location":"Right Hip"},{"euler":{"heading":112.83756629863275,"pitch":-111.6332866095419,"roll":-23.08082104642877},"location":"Right Knee"},{"euler":{"heading":23.867376551095923,"pitch":-132.89964428915846,"roll":54.99231462907233},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.962"} +{"sensors":[{"euler":{"heading":168.28520384813683,"pitch":138.76795524059844,"roll":28.745888334019128},"location":"Left Knee"},{"euler":{"heading":64.10798424037866,"pitch":99.93559953597335,"roll":19.71936002692126},"location":"Left Ankle"},{"euler":{"heading":57.437273673487844,"pitch":-7.940015416985242,"roll":-7.7231342335815665},"location":"Right Ankle"},{"euler":{"heading":114.89304657804972,"pitch":-159.21356651866145,"roll":58.2240610780492},"location":"Right Hip"},{"euler":{"heading":115.81005966876947,"pitch":-112.21370794858771,"roll":-25.835238941785892},"location":"Right Knee"},{"euler":{"heading":24.43063889598633,"pitch":-132.80967986024262,"roll":55.1743331661651},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.63"} +{"sensors":[{"euler":{"heading":152.28793346332316,"pitch":138.0661597165386,"roll":29.446299500617215},"location":"Left Knee"},{"euler":{"heading":64.46593581634079,"pitch":100.34203958237603,"roll":19.366174024229135},"location":"Left Ankle"},{"euler":{"heading":54.81854630613906,"pitch":-8.033513875286717,"roll":-8.23832081022341},"location":"Right Ankle"},{"euler":{"heading":116.39749192024476,"pitch":-158.2984598667953,"roll":57.31415497024429},"location":"Right Hip"},{"euler":{"heading":117.28530370189253,"pitch":-112.21733715372895,"roll":-27.4829650476073},"location":"Right Knee"},{"euler":{"heading":25.1813250063877,"pitch":-133.57246187421836,"roll":55.48189984954859},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.163"} +{"sensors":[{"euler":{"heading":138.43414011699085,"pitch":137.03454374488476,"roll":29.832919550555495},"location":"Left Knee"},{"euler":{"heading":65.19434223470671,"pitch":100.83283562413844,"roll":19.36705662180622},"location":"Left Ankle"},{"euler":{"heading":54.91169167552516,"pitch":-8.605162487758045,"roll":-8.001988729201068},"location":"Right Ankle"},{"euler":{"heading":117.3577427282203,"pitch":-157.69986388011577,"roll":56.02648947321986},"location":"Right Hip"},{"euler":{"heading":116.04427333170328,"pitch":-111.35810343835605,"roll":-26.94091854284657},"location":"Right Knee"},{"euler":{"heading":26.07569250574893,"pitch":-134.89646568679652,"roll":55.87120986459373},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.264"} +{"sensors":[{"euler":{"heading":126.62197610529176,"pitch":135.81233937039627,"roll":29.718377595499945},"location":"Left Knee"},{"euler":{"heading":66.11240801123604,"pitch":101.3058020617246,"roll":19.7428509596256},"location":"Left Ankle"},{"euler":{"heading":57.314272507972646,"pitch":-9.025896238982241,"roll":-7.008039856280962},"location":"Right Ankle"},{"euler":{"heading":117.23446845539827,"pitch":-157.5798774921042,"roll":55.07384052589787},"location":"Right Hip"},{"euler":{"heading":112.70234599853296,"pitch":-110.39729309452045,"roll":-24.409326688561915},"location":"Right Knee"},{"euler":{"heading":27.024373255174034,"pitch":-136.54431911811687,"roll":56.377838878134355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.365"} +{"sensors":[{"euler":{"heading":116.55977849476258,"pitch":134.53735543335665,"roll":29.04653983594995},"location":"Left Knee"},{"euler":{"heading":67.41366721011244,"pitch":101.78772185555215,"roll":20.66856586366304},"location":"Left Ankle"},{"euler":{"heading":60.24534525717539,"pitch":-9.273306615084017,"roll":-5.969735870652865},"location":"Right Ankle"},{"euler":{"heading":115.87977160985845,"pitch":-157.97188974289378,"roll":54.72270647330809},"location":"Right Hip"},{"euler":{"heading":109.07586139867966,"pitch":-109.7513137850684,"roll":-21.549644019705724},"location":"Right Knee"},{"euler":{"heading":28.134435929656632,"pitch":-138.6586372063052,"roll":56.93380499032092},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.465"} +{"sensors":[{"euler":{"heading":108.56005064528632,"pitch":133.308619890021,"roll":27.404385852354956},"location":"Left Knee"},{"euler":{"heading":69.3785504891012,"pitch":102.24644966999693,"roll":22.770459277296737},"location":"Left Ankle"},{"euler":{"heading":61.97081073145785,"pitch":-9.133475953575616,"roll":-5.491512283587579},"location":"Right Ankle"},{"euler":{"heading":114.7792944488726,"pitch":-158.3309507686044,"roll":54.59418582597728},"location":"Right Hip"},{"euler":{"heading":106.75577525881171,"pitch":-109.71993240656155,"roll":-19.663429617735154},"location":"Right Knee"},{"euler":{"heading":29.22099233669097,"pitch":-140.09902348567468,"roll":57.45292449128883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.566"} +{"sensors":[{"euler":{"heading":102.7977955807577,"pitch":132.2215079010189,"roll":25.05769726711946},"location":"Left Knee"},{"euler":{"heading":72.32819544019108,"pitch":103.49680470299725,"roll":25.987163349567062},"location":"Left Ankle"},{"euler":{"heading":63.067479658312074,"pitch":-8.938878358218055,"roll":-5.073611055228821},"location":"Right Ankle"},{"euler":{"heading":113.67636500398535,"pitch":-158.70410569174396,"roll":54.903517243379554},"location":"Right Hip"},{"euler":{"heading":105.63644773293055,"pitch":-109.97293916590542,"roll":-18.559586655961642},"location":"Right Knee"},{"euler":{"heading":28.26764310302187,"pitch":-139.08287113710722,"roll":57.45138204215995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.667"} +{"sensors":[{"euler":{"heading":97.20551602268192,"pitch":131.868107110917,"roll":23.301927540407515},"location":"Left Knee"},{"euler":{"heading":74.16412589617197,"pitch":103.20337423269754,"roll":28.075947014610357},"location":"Left Ankle"},{"euler":{"heading":63.80448169248087,"pitch":-8.651240522396249,"roll":-4.866249949705939},"location":"Right Ankle"},{"euler":{"heading":112.99622850358682,"pitch":-158.87744512256955,"roll":55.5381655190416},"location":"Right Hip"},{"euler":{"heading":105.5290529596375,"pitch":-110.40689524931489,"roll":-18.12862799036548},"location":"Right Knee"},{"euler":{"heading":26.815878792719683,"pitch":-137.5120840233965,"roll":56.80624383794396},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.768"} +{"sensors":[{"euler":{"heading":113.46621442041373,"pitch":132.75629639982532,"roll":23.371734786366765},"location":"Left Knee"},{"euler":{"heading":72.99771330655477,"pitch":102.1580368094278,"roll":27.51210231314932},"location":"Left Ankle"},{"euler":{"heading":64.10528352323279,"pitch":-8.361116470156624,"roll":-4.892124954735345},"location":"Right Ankle"},{"euler":{"heading":112.64035565322814,"pitch":-159.03970061031262,"roll":56.371848967137446},"location":"Right Hip"},{"euler":{"heading":106.02614766367374,"pitch":-110.8099557243834,"roll":-18.20326519132893},"location":"Right Knee"},{"euler":{"heading":25.340540913447715,"pitch":-135.64212562105686,"roll":56.031869454149565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.869"} +{"sensors":[{"euler":{"heading":135.60709297837238,"pitch":134.9056667598428,"roll":24.884561307730092},"location":"Left Knee"},{"euler":{"heading":69.4666919758993,"pitch":101.10473312848501,"roll":24.51089208183439},"location":"Left Ankle"},{"euler":{"heading":63.78850517090951,"pitch":-7.875004823140961,"roll":-5.146662459261811},"location":"Right Ankle"},{"euler":{"heading":112.36382008790532,"pitch":-159.44823054928136,"roll":57.21591407042371},"location":"Right Hip"},{"euler":{"heading":107.19228289730637,"pitch":-111.31021015194506,"roll":-18.82043867219604},"location":"Right Knee"},{"euler":{"heading":24.431486822102944,"pitch":-134.2716630589512,"roll":55.46618250873461},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.970"} +{"sensors":[{"euler":{"heading":156.35263368053515,"pitch":136.61510008385852,"roll":26.289855176957083},"location":"Left Knee"},{"euler":{"heading":66.50752277830937,"pitch":100.63800981563651,"roll":21.84105287365095},"location":"Left Ankle"},{"euler":{"heading":62.403404653818555,"pitch":-7.450004340826865,"roll":-5.66324621333563},"location":"Right Ankle"},{"euler":{"heading":112.4211880791148,"pitch":-160.14715749435325,"roll":58.05057266338134},"location":"Right Hip"},{"euler":{"heading":109.20430460757574,"pitch":-111.69168913675055,"roll":-20.313394804976436},"location":"Right Knee"},{"euler":{"heading":24.28833813989265,"pitch":-133.51324675305608,"roll":55.12581425786115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.73"} +{"sensors":[{"euler":{"heading":176.15487031248165,"pitch":137.30984007547266,"roll":27.398369659261377},"location":"Left Knee"},{"euler":{"heading":65.07552050047843,"pitch":100.53670883407287,"roll":20.281947586285852},"location":"Left Ankle"},{"euler":{"heading":59.6755641884367,"pitch":-7.286253906744179,"roll":-6.203171592002067},"location":"Right Ankle"},{"euler":{"heading":113.10406927120331,"pitch":-160.16994174491794,"roll":58.426765397043205},"location":"Right Hip"},{"euler":{"heading":111.94012414681816,"pitch":-111.9725202230755,"roll":-22.819555324478795},"location":"Right Knee"},{"euler":{"heading":24.128254325903388,"pitch":-133.06192207775047,"roll":55.019482832075035},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.174"} +{"sensors":[{"euler":{"heading":158.61438328123347,"pitch":137.39135606792541,"roll":28.18978269333524},"location":"Left Knee"},{"euler":{"heading":64.3054684504306,"pitch":100.48928795066558,"roll":19.39750282765727},"location":"Left Ankle"},{"euler":{"heading":56.40175776959303,"pitch":-7.313878516069762,"roll":-6.66410443280186},"location":"Right Ankle"},{"euler":{"heading":114.349912344083,"pitch":-159.27794757042614,"roll":58.027838857338885},"location":"Right Hip"},{"euler":{"heading":114.66486173213636,"pitch":-112.63151820076796,"roll":-25.368849792030918},"location":"Right Knee"},{"euler":{"heading":24.30292889331305,"pitch":-133.51197986997542,"roll":55.16128454886753},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.274"} +{"sensors":[{"euler":{"heading":143.39044495311012,"pitch":136.99597046113286,"roll":28.739554424001717},"location":"Left Knee"},{"euler":{"heading":64.88117160538754,"pitch":100.58410915559902,"roll":19.495252544891546},"location":"Left Ankle"},{"euler":{"heading":54.84283199263373,"pitch":-7.476240664462786,"roll":-6.847693989521675},"location":"Right Ankle"},{"euler":{"heading":115.7524211096747,"pitch":-158.3001528133835,"roll":56.906304971604996},"location":"Right Hip"},{"euler":{"heading":115.32962555892271,"pitch":-112.51836638069116,"roll":-26.46321481282783},"location":"Right Knee"},{"euler":{"heading":24.922636003981747,"pitch":-134.5982818829779,"roll":55.495156093980775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.375"} +{"sensors":[{"euler":{"heading":130.3076504577991,"pitch":136.22762341501956,"roll":28.98434898160155},"location":"Left Knee"},{"euler":{"heading":65.60555444484879,"pitch":100.77569824003912,"roll":19.889477290402393},"location":"Left Ankle"},{"euler":{"heading":55.90854879337036,"pitch":-7.9098665980165075,"roll":-6.344174590569508},"location":"Right Ankle"},{"euler":{"heading":116.44592899870723,"pitch":-157.87013753204516,"roll":55.4969244744445},"location":"Right Hip"},{"euler":{"heading":113.51541300303045,"pitch":-111.67902974262205,"roll":-25.416893331545047},"location":"Right Knee"},{"euler":{"heading":25.749122403583574,"pitch":-136.2259536946801,"roll":55.901890484582694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.476"} +{"sensors":[{"euler":{"heading":119.34563541201919,"pitch":135.1486110735176,"roll":28.742164083441395},"location":"Left Knee"},{"euler":{"heading":66.81999900036392,"pitch":101.1168784160352,"roll":20.763029561362156},"location":"Left Ankle"},{"euler":{"heading":58.680193914033325,"pitch":-8.243879938214857,"roll":-5.272257131512557},"location":"Right Ankle"},{"euler":{"heading":116.04508609883652,"pitch":-157.75187377884063,"roll":54.684732027000045},"location":"Right Hip"},{"euler":{"heading":110.2263717027274,"pitch":-110.78612676835985,"roll":-22.668953998390542},"location":"Right Knee"},{"euler":{"heading":26.792960163225217,"pitch":-138.2096083252121,"roll":56.43045143612442},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.577"} +{"sensors":[{"euler":{"heading":110.16107187081728,"pitch":134.06499996616583,"roll":27.867947675097255},"location":"Left Knee"},{"euler":{"heading":68.68174910032754,"pitch":101.5614405744317,"roll":22.41797660522594},"location":"Left Ankle"},{"euler":{"heading":61.349674522629996,"pitch":-8.031991944393372,"roll":-4.470031418361301},"location":"Right Ankle"},{"euler":{"heading":114.70932748895287,"pitch":-158.04543640095656,"roll":54.541258824300044},"location":"Right Hip"},{"euler":{"heading":106.93498453245466,"pitch":-110.62626409152386,"roll":-20.020808598551486},"location":"Right Knee"},{"euler":{"heading":27.9824141469027,"pitch":-140.5198974926909,"roll":56.962406292511986},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.678"} +{"sensors":[{"euler":{"heading":103.49496468373555,"pitch":133.23974996954925,"roll":25.71240290758753},"location":"Left Knee"},{"euler":{"heading":71.06982419029478,"pitch":102.35529651698853,"roll":25.28867894470335},"location":"Left Ankle"},{"euler":{"heading":62.858457070366995,"pitch":-7.691292749954036,"roll":-4.3417782765251705},"location":"Right Ankle"},{"euler":{"heading":113.73839474005759,"pitch":-158.2971427608609,"roll":54.668382941870036},"location":"Right Hip"},{"euler":{"heading":105.1102360792092,"pitch":-110.80738768237148,"roll":-18.343727738696337},"location":"Right Knee"},{"euler":{"heading":28.01542273221243,"pitch":-140.9991577434218,"roll":57.328665663260786},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.778"} +{"sensors":[{"euler":{"heading":98.65796821536199,"pitch":132.28452497259434,"roll":23.322412616828778},"location":"Left Knee"},{"euler":{"heading":73.8065917712653,"pitch":103.50101686528967,"roll":28.547311050233017},"location":"Left Ankle"},{"euler":{"heading":63.8913613633303,"pitch":-7.372163474958632,"roll":-4.238850448872654},"location":"Right Ankle"},{"euler":{"heading":112.60830526605183,"pitch":-158.6861784847748,"roll":55.27029464768304},"location":"Right Hip"},{"euler":{"heading":104.58671247128828,"pitch":-111.21414891413434,"roll":-17.484354964826707},"location":"Right Knee"},{"euler":{"heading":26.93888045899119,"pitch":-139.04299196907962,"roll":57.25829909693471},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.880"} +{"sensors":[{"euler":{"heading":92.8109213938258,"pitch":132.28107247533492,"roll":22.1151713551459},"location":"Left Knee"},{"euler":{"heading":74.83843259413877,"pitch":102.86341517876072,"roll":29.942579945209715},"location":"Left Ankle"},{"euler":{"heading":64.58972522699727,"pitch":-7.078697127462768,"roll":-4.239965403985389},"location":"Right Ankle"},{"euler":{"heading":112.10997473944666,"pitch":-158.91756063629734,"roll":55.99326518291473},"location":"Right Hip"},{"euler":{"heading":104.81554122415946,"pitch":-111.52398402272091,"roll":-17.223419468344037},"location":"Right Knee"},{"euler":{"heading":25.469992413092072,"pitch":-136.99494277217167,"roll":56.55746918724124},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.981"} +{"sensors":[{"euler":{"heading":110.20482925444321,"pitch":133.59046522780145,"roll":22.85365421963131},"location":"Left Knee"},{"euler":{"heading":72.82958933472489,"pitch":101.73957366088464,"roll":28.473321950688742},"location":"Left Ankle"},{"euler":{"heading":64.72450270429755,"pitch":-6.652077414716492,"roll":-4.3972188635868505},"location":"Right Ankle"},{"euler":{"heading":111.855227265502,"pitch":-159.2070545726676,"roll":56.775188664623265},"location":"Right Hip"},{"euler":{"heading":105.70898710174352,"pitch":-111.90283562044883,"roll":-17.526077521509634},"location":"Right Knee"},{"euler":{"heading":24.222993171782868,"pitch":-135.01419849495448,"roll":55.88297226851712},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.82"} +{"sensors":[{"euler":{"heading":127.0780963289989,"pitch":135.8501687050213,"roll":24.39953879766818},"location":"Left Knee"},{"euler":{"heading":68.8966304012524,"pitch":100.44686629479618,"roll":24.97598975561987},"location":"Left Ankle"},{"euler":{"heading":64.3083024338678,"pitch":-6.168119673244843,"roll":-4.694996977228166},"location":"Right Ankle"},{"euler":{"heading":111.7384545389518,"pitch":-159.67384911540083,"roll":57.64141979816094},"location":"Right Hip"},{"euler":{"heading":107.23808839156916,"pitch":-112.27505205840394,"roll":-18.36096976935867},"location":"Right Knee"},{"euler":{"heading":23.600693854604582,"pitch":-133.69402864545904,"roll":55.425925041665415},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.182"} +{"sensors":[{"euler":{"heading":148.970286696099,"pitch":137.35265183451918,"roll":25.81583491790136},"location":"Left Knee"},{"euler":{"heading":65.75071736112716,"pitch":100.03967966531657,"roll":22.047140780057887},"location":"Left Ankle"},{"euler":{"heading":62.98997219048101,"pitch":-5.745057705920359,"roll":-5.431747279505349},"location":"Right Ankle"},{"euler":{"heading":111.93335908505662,"pitch":-160.34396420386074,"roll":58.48352781834485},"location":"Right Hip"},{"euler":{"heading":109.53927955241225,"pitch":-112.52879685256356,"roll":-19.999872792422806},"location":"Right Knee"},{"euler":{"heading":23.67187446914412,"pitch":-132.94962578091315,"roll":55.202082537498875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.283"} +{"sensors":[{"euler":{"heading":169.8232580264891,"pitch":137.89863665106725,"roll":26.959251426111226},"location":"Left Knee"},{"euler":{"heading":64.50064562501444,"pitch":100.06696169878491,"roll":20.636176702052097},"location":"Left Ankle"},{"euler":{"heading":59.972224971432915,"pitch":-5.770551935328323,"roll":-6.238572551554814},"location":"Right Ankle"},{"euler":{"heading":112.76502317655097,"pitch":-160.31581778347467,"roll":58.81017503651036},"location":"Right Hip"},{"euler":{"heading":112.55410159717103,"pitch":-112.6446671673072,"roll":-22.749885513180526},"location":"Right Knee"},{"euler":{"heading":23.59843702222971,"pitch":-132.51716320282185,"roll":55.169374283748994},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.385"} +{"sensors":[{"euler":{"heading":153.5221822238402,"pitch":137.65877298596052,"roll":27.844576283500103},"location":"Left Knee"},{"euler":{"heading":64.113081062513,"pitch":100.32276552890642,"roll":19.76630903184689},"location":"Left Ankle"},{"euler":{"heading":56.73750247428963,"pitch":-5.937246741795491,"roll":-6.883465296399333},"location":"Right Ankle"},{"euler":{"heading":114.20727085889587,"pitch":-159.40298600512722,"roll":58.285407532859324},"location":"Right Hip"},{"euler":{"heading":114.84244143745393,"pitch":-112.76770045057648,"roll":-25.093646961862476},"location":"Right Knee"},{"euler":{"heading":24.08859332000674,"pitch":-132.73419688253966,"roll":55.3899368553741},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.485"} +{"sensors":[{"euler":{"heading":139.33246400145617,"pitch":136.93039568736447,"roll":28.541368655150094},"location":"Left Knee"},{"euler":{"heading":64.43302295626171,"pitch":100.72173897601579,"roll":19.4709281286622},"location":"Left Ankle"},{"euler":{"heading":55.657502226860665,"pitch":-6.218522067615942,"roll":-7.0701187667594},"location":"Right Ankle"},{"euler":{"heading":115.91154377300629,"pitch":-158.30018740461452,"roll":57.106866779573394},"location":"Right Hip"},{"euler":{"heading":114.79569729370854,"pitch":-112.33468040551884,"roll":-25.578032265676228},"location":"Right Knee"},{"euler":{"heading":24.917233988006068,"pitch":-133.7045271942857,"roll":55.7071931698367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.586"} +{"sensors":[{"euler":{"heading":127.06796760131056,"pitch":135.90610611862803,"roll":28.874731789635085},"location":"Left Knee"},{"euler":{"heading":65.04597066063555,"pitch":101.07456507841421,"roll":19.49258531579598},"location":"Left Ankle"},{"euler":{"heading":57.2730020041746,"pitch":-6.7466698608543485,"roll":-6.406856890083461},"location":"Right Ankle"},{"euler":{"heading":117.08288939570566,"pitch":-157.7076686641531,"roll":55.714930101616055},"location":"Right Hip"},{"euler":{"heading":112.2161275643377,"pitch":-111.26996236496696,"roll":-23.838979039108608},"location":"Right Knee"},{"euler":{"heading":25.888010589205464,"pitch":-135.20907447485712,"roll":56.09272385285303},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.687"} +{"sensors":[{"euler":{"heading":116.5424208411795,"pitch":134.76549550676523,"roll":28.674758610671578},"location":"Left Knee"},{"euler":{"heading":65.79762359457199,"pitch":101.3483585705728,"roll":19.955826784216384},"location":"Left Ankle"},{"euler":{"heading":60.33945180375714,"pitch":-7.197002874768914,"roll":-5.259921201075115},"location":"Right Ankle"},{"euler":{"heading":116.9246004561351,"pitch":-157.59940179773778,"roll":54.93093709145445},"location":"Right Hip"},{"euler":{"heading":108.55701480790393,"pitch":-110.22421612847026,"roll":-20.905081135197747},"location":"Right Knee"},{"euler":{"heading":26.83670953028492,"pitch":-137.0444170273714,"roll":56.53345146756773},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.787"} +{"sensors":[{"euler":{"heading":107.73192875706155,"pitch":133.6576959560887,"roll":27.732282749604423},"location":"Left Knee"},{"euler":{"heading":67.08661123511479,"pitch":101.67602271351552,"roll":21.216494105794748},"location":"Left Ankle"},{"euler":{"heading":63.04300662338143,"pitch":-7.396052587292022,"roll":-4.402679080967604},"location":"Right Ankle"},{"euler":{"heading":115.76964041052159,"pitch":-157.92696161796403,"roll":54.73784338230901},"location":"Right Hip"},{"euler":{"heading":105.38881332711354,"pitch":-109.80179451562324,"roll":-18.408323021677973},"location":"Right Knee"},{"euler":{"heading":27.90928857725643,"pitch":-139.22747532463424,"roll":56.99885632081096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.888"} +{"sensors":[{"euler":{"heading":101.30873588135539,"pitch":132.71692636047985,"roll":25.70280447464398},"location":"Left Knee"},{"euler":{"heading":69.20295011160331,"pitch":102.43967044216397,"roll":23.96359469521527},"location":"Left Ankle"},{"euler":{"heading":64.73870596104328,"pitch":-7.368947328562821,"roll":-4.174911172870844},"location":"Right Ankle"},{"euler":{"heading":114.92392636946944,"pitch":-158.20301545616763,"roll":54.83905904407811},"location":"Right Hip"},{"euler":{"heading":103.41868199440218,"pitch":-109.85911506406092,"roll":-16.786240719510175},"location":"Right Knee"},{"euler":{"heading":28.274609719530787,"pitch":-140.15472779217083,"roll":57.30522068872987},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.989"} +{"sensors":[{"euler":{"heading":96.70286229321985,"pitch":131.73273372443185,"roll":23.34502402717958},"location":"Left Knee"},{"euler":{"heading":72.10765510044298,"pitch":103.53945339794758,"roll":27.173485225693742},"location":"Left Ankle"},{"euler":{"heading":65.87108536493895,"pitch":-7.307052595706539,"roll":-3.9699200555837595},"location":"Right Ankle"},{"euler":{"heading":113.75028373252249,"pitch":-158.6827139105509,"roll":55.4301531396703},"location":"Right Hip"},{"euler":{"heading":102.66431379496197,"pitch":-110.19195355765484,"roll":-15.920116647559158},"location":"Right Knee"},{"euler":{"heading":27.25964874757771,"pitch":-138.57675501295375,"roll":57.25594861985688},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.90"} +{"sensors":[{"euler":{"heading":91.04507606389787,"pitch":131.71571035198866,"roll":22.14802162446162},"location":"Left Knee"},{"euler":{"heading":73.24688959039868,"pitch":102.82300805815282,"roll":28.57488670312437},"location":"Left Ankle"},{"euler":{"heading":66.48397682844505,"pitch":-7.0138473361358855,"roll":-4.085428050025383},"location":"Right Ankle"},{"euler":{"heading":113.09400535927024,"pitch":-158.9331925194958,"roll":56.19963782570327},"location":"Right Hip"},{"euler":{"heading":102.69163241546578,"pitch":-110.69775820188937,"roll":-15.609354982803243},"location":"Right Knee"},{"euler":{"heading":25.63368387281994,"pitch":-136.78782951165837,"roll":56.524103757871195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.190"} +{"sensors":[{"euler":{"heading":108.57181845750807,"pitch":133.0816393167898,"roll":22.933219462015458},"location":"Left Knee"},{"euler":{"heading":71.15970063135882,"pitch":101.75945725233754,"roll":26.992398032811934},"location":"Left Ankle"},{"euler":{"heading":66.57932914560055,"pitch":-6.643712602522297,"roll":-4.233135245022845},"location":"Right Ankle"},{"euler":{"heading":112.74085482334321,"pitch":-159.17112326754622,"roll":57.00467404313295},"location":"Right Hip"},{"euler":{"heading":103.2849691739192,"pitch":-111.18423238170044,"roll":-15.804669484522918},"location":"Right Knee"},{"euler":{"heading":24.145315485537946,"pitch":-134.90904656049256,"roll":55.802943382084074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.291"} +{"sensors":[{"euler":{"heading":131.13963661175728,"pitch":135.2672253851108,"roll":24.583647515813915},"location":"Left Knee"},{"euler":{"heading":67.43748056822294,"pitch":100.62101152710379,"roll":23.618158229530742},"location":"Left Ankle"},{"euler":{"heading":65.9588962310405,"pitch":-6.1605913422700675,"roll":-4.628571720520561},"location":"Right Ankle"},{"euler":{"heading":112.6167693410089,"pitch":-159.5415109407916,"roll":57.829206638819656},"location":"Right Hip"},{"euler":{"heading":104.58147225652728,"pitch":-111.6470591435304,"roll":-16.599202536070628},"location":"Right Knee"},{"euler":{"heading":23.399533936984152,"pitch":-133.6681419044433,"roll":55.272649043875674},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.392"} +{"sensors":[{"euler":{"heading":152.86942295058157,"pitch":136.64050284659973,"roll":25.96278276423252},"location":"Left Knee"},{"euler":{"heading":64.69373251140064,"pitch":100.20891037439341,"roll":21.08134240657767},"location":"Left Ankle"},{"euler":{"heading":64.42550660793646,"pitch":-5.869532208043061,"roll":-5.3094645484685055},"location":"Right Ankle"},{"euler":{"heading":113.01759240690802,"pitch":-159.97485984671243,"roll":58.471285974937686},"location":"Right Hip"},{"euler":{"heading":106.74832503087455,"pitch":-111.80110322917736,"roll":-18.351782282463567},"location":"Right Knee"},{"euler":{"heading":23.403330543285737,"pitch":-132.94507771399898,"roll":55.10163413948811},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.493"} +{"sensors":[{"euler":{"heading":173.46373065552342,"pitch":137.07645256193976,"roll":27.08525448780927},"location":"Left Knee"},{"euler":{"heading":63.63685926026058,"pitch":100.15676933695407,"roll":19.841958165919902},"location":"Left Ankle"},{"euler":{"heading":61.120455947142815,"pitch":-5.632578987238755,"roll":-6.028518093621655},"location":"Right Ankle"},{"euler":{"heading":114.05958316621722,"pitch":-159.70862386204118,"roll":58.574157377443925},"location":"Right Hip"},{"euler":{"heading":109.2422425277871,"pitch":-112.03974290625963,"roll":-20.816604054217212},"location":"Right Knee"},{"euler":{"heading":23.444247488957163,"pitch":-132.58806994259908,"roll":55.11022072553931},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.593"} +{"sensors":[{"euler":{"heading":156.49235758997108,"pitch":137.0250573057458,"roll":27.807979039028346},"location":"Left Knee"},{"euler":{"heading":63.30442333423452,"pitch":100.13484240325867,"roll":19.264012349327913},"location":"Left Ankle"},{"euler":{"heading":57.83966035242853,"pitch":-5.8318210885148805,"roll":-6.4381662842594904},"location":"Right Ankle"},{"euler":{"heading":115.52237484959551,"pitch":-158.86901147583706,"roll":57.997991639699535},"location":"Right Hip"},{"euler":{"heading":111.0117682750084,"pitch":-112.09826861563367,"roll":-22.884943648795492},"location":"Right Knee"},{"euler":{"heading":23.812322740061447,"pitch":-132.85426294833917,"roll":55.430448652985376},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.693"} +{"sensors":[{"euler":{"heading":141.330621830974,"pitch":136.81630157517122,"roll":28.183431135125513},"location":"Left Knee"},{"euler":{"heading":63.542731000811074,"pitch":99.99010816293281,"roll":19.300111114395122},"location":"Left Ankle"},{"euler":{"heading":56.768194317185674,"pitch":-6.267388979663393,"roll":-6.388099655833542},"location":"Right Ankle"},{"euler":{"heading":116.93888736463596,"pitch":-158.08211032825335,"roll":56.923192475729586},"location":"Right Hip"},{"euler":{"heading":110.67309144750756,"pitch":-111.4821917540703,"roll":-23.215199283915943},"location":"Right Knee"},{"euler":{"heading":24.3810904660553,"pitch":-133.91883665350525,"roll":55.862403787686844},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.794"} +{"sensors":[{"euler":{"heading":128.2350596478766,"pitch":136.4221714176541,"roll":28.14008802161296},"location":"Left Knee"},{"euler":{"heading":64.19470790072997,"pitch":99.76609734663954,"roll":19.79510000295561},"location":"Left Ankle"},{"euler":{"heading":57.93512488546711,"pitch":-6.821900081697054,"roll":-5.511789690250188},"location":"Right Ankle"},{"euler":{"heading":117.63874862817237,"pitch":-157.67389929542801,"roll":55.80587322815663},"location":"Right Hip"},{"euler":{"heading":108.34953230275681,"pitch":-110.49647257866329,"roll":-21.59992935552435},"location":"Right Knee"},{"euler":{"heading":25.192981419449772,"pitch":-135.62695298815473,"roll":56.35741340891816},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.894"} +{"sensors":[{"euler":{"heading":117.27405368308894,"pitch":135.7424542758887,"roll":27.669829219451664},"location":"Left Knee"},{"euler":{"heading":65.34398711065697,"pitch":99.6394876119756,"roll":20.80934000266005},"location":"Left Ankle"},{"euler":{"heading":61.1728623969204,"pitch":-7.352210073527349,"roll":-4.560610721225169},"location":"Right Ankle"},{"euler":{"heading":117.07487376535514,"pitch":-157.56275936588523,"roll":55.36278590534097},"location":"Right Hip"},{"euler":{"heading":105.03332907248114,"pitch":-109.62182532079696,"roll":-18.652436419971913},"location":"Right Knee"},{"euler":{"heading":26.286183277504797,"pitch":-137.83925768933926,"roll":56.91542206802635},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.995"} +{"sensors":[{"euler":{"heading":108.44039831478004,"pitch":134.86195884829982,"roll":26.5528462975065},"location":"Left Knee"},{"euler":{"heading":67.09708839959127,"pitch":99.75678885077804,"roll":22.603406002394046},"location":"Left Ankle"},{"euler":{"heading":63.56807615722836,"pitch":-7.660739066174615,"roll":-3.9920496491026523},"location":"Right Ankle"},{"euler":{"heading":115.97363638881963,"pitch":-157.83148342929672,"roll":55.11400731480688},"location":"Right Hip"},{"euler":{"heading":102.33624616523304,"pitch":-109.30964278871727,"roll":-16.230942777974725},"location":"Right Knee"},{"euler":{"heading":27.582564949754317,"pitch":-140.26158192040535,"roll":57.536379861223715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.95"} +{"sensors":[{"euler":{"heading":102.20260848330204,"pitch":133.89451296346985,"roll":24.441311667755848},"location":"Left Knee"},{"euler":{"heading":70.23737955963215,"pitch":101.03735996570023,"roll":25.893065402154644},"location":"Left Ankle"},{"euler":{"heading":64.78001854150553,"pitch":-7.832165159557153,"roll":-3.780344684192387},"location":"Right Ankle"},{"euler":{"heading":115.50127274993767,"pitch":-157.91083508636706,"roll":55.19635658332619},"location":"Right Hip"},{"euler":{"heading":100.92762154870974,"pitch":-109.15367850984555,"roll":-14.814098500177254},"location":"Right Knee"},{"euler":{"heading":27.761808454778887,"pitch":-140.8416737283648,"roll":57.80149187510135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.195"} +{"sensors":[{"euler":{"heading":97.81359763497184,"pitch":132.82381166712287,"roll":22.109680500980264},"location":"Left Knee"},{"euler":{"heading":73.53239160366894,"pitch":102.87737396913022,"roll":29.31625886193918},"location":"Left Ankle"},{"euler":{"heading":65.57076668735498,"pitch":-8.067698643601439,"roll":-3.7960602157731484},"location":"Right Ankle"},{"euler":{"heading":114.8448954749439,"pitch":-158.18850157773036,"roll":55.801720924993575},"location":"Right Hip"},{"euler":{"heading":100.62235939383876,"pitch":-109.094560658861,"roll":-14.157688650159528},"location":"Right Knee"},{"euler":{"heading":26.929377609301,"pitch":-139.28250635552834,"roll":57.621342687591216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.296"} +{"sensors":[{"euler":{"heading":92.50098787147466,"pitch":132.62268050041058,"roll":21.01121245088224},"location":"Left Knee"},{"euler":{"heading":75.18540244330204,"pitch":102.84588657221721,"roll":30.922132975745264},"location":"Left Ankle"},{"euler":{"heading":66.08244001861948,"pitch":-8.367178779241295,"roll":-4.1352041941958335},"location":"Right Ankle"},{"euler":{"heading":114.8041559274495,"pitch":-158.36340141995734,"roll":56.484048832494224},"location":"Right Hip"},{"euler":{"heading":100.9851234544549,"pitch":-108.8226045929749,"roll":-14.098169785143575},"location":"Right Knee"},{"euler":{"heading":25.7114398483709,"pitch":-137.46050571997552,"roll":56.884208418832095},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.396"} +{"sensors":[{"euler":{"heading":119.1321390843272,"pitch":133.77291245036952,"roll":21.941341205794018},"location":"Left Knee"},{"euler":{"heading":73.52936219897184,"pitch":101.9175479149955,"roll":29.59866967817074},"location":"Left Ankle"},{"euler":{"heading":66.03669601675753,"pitch":-8.561710901317166,"roll":-4.346683774776251},"location":"Right Ankle"},{"euler":{"heading":115.03624033470456,"pitch":-158.59581127796162,"roll":57.16064394924481},"location":"Right Hip"},{"euler":{"heading":101.8303611090094,"pitch":-108.62159413367742,"roll":-14.532102806629219},"location":"Right Knee"},{"euler":{"heading":24.740295863533813,"pitch":-135.62070514797796,"roll":56.17703757694889},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.496"} +{"sensors":[{"euler":{"heading":140.67517517589448,"pitch":135.97687120533257,"roll":23.747207085214615},"location":"Left Knee"},{"euler":{"heading":70.04517597907466,"pitch":100.74454312349594,"roll":26.338802710353665},"location":"Left Ankle"},{"euler":{"heading":65.35177641508177,"pitch":-8.51178981118545,"roll":-4.718265397298626},"location":"Right Ankle"},{"euler":{"heading":115.2888663012341,"pitch":-159.04248015016546,"roll":57.900829554320325},"location":"Right Hip"},{"euler":{"heading":103.25982499810846,"pitch":-108.57818472030968,"roll":-15.528892525966299},"location":"Right Knee"},{"euler":{"heading":24.303766277180433,"pitch":-134.27738463318016,"roll":55.703083819254005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.597"} +{"sensors":[{"euler":{"heading":161.21390765830503,"pitch":137.3104340847993,"roll":25.328736376693154},"location":"Left Knee"},{"euler":{"heading":67.2406583811672,"pitch":100.08258881114635,"roll":23.573672439318297},"location":"Left Ankle"},{"euler":{"heading":63.716598773573594,"pitch":-8.329360830066905,"roll":-5.540188857568763},"location":"Right Ankle"},{"euler":{"heading":115.65997967111069,"pitch":-159.7944821351489,"roll":58.654496598888294},"location":"Right Hip"},{"euler":{"heading":105.2963424982976,"pitch":-108.5391162482787,"roll":-17.16350327336967},"location":"Right Knee"},{"euler":{"heading":24.62338964946239,"pitch":-133.38714616986215,"roll":55.5327754373286},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.697"} +{"sensors":[{"euler":{"heading":180.84876689247452,"pitch":137.74189067631937,"roll":26.60836273902384},"location":"Left Knee"},{"euler":{"heading":66.26659254305048,"pitch":99.92432993003172,"roll":22.335055195386467},"location":"Left Ankle"},{"euler":{"heading":60.663688896216236,"pitch":-8.252674747060215,"roll":-6.517419971811887},"location":"Right Ankle"},{"euler":{"heading":116.44398170399961,"pitch":-159.758783921634,"roll":58.92029693899946},"location":"Right Hip"},{"euler":{"heading":108.05420824846786,"pitch":-108.36020462345083,"roll":-19.834652946032705},"location":"Right Knee"},{"euler":{"heading":24.729800684516153,"pitch":-132.88593155287595,"roll":55.54199789359574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.798"} +{"sensors":[{"euler":{"heading":163.12014020322707,"pitch":137.63020160868743,"roll":27.510026465121456},"location":"Left Knee"},{"euler":{"heading":65.73993328874543,"pitch":99.81314693702856,"roll":21.46404967584782},"location":"Left Ankle"},{"euler":{"heading":57.30982000659461,"pitch":-8.333657272354195,"roll":-7.240677974630699},"location":"Right Ankle"},{"euler":{"heading":117.66208353359966,"pitch":-159.0079055294706,"roll":58.47201724509952},"location":"Right Hip"},{"euler":{"heading":110.75503742362108,"pitch":-108.59293416110575,"roll":-22.426187651429434},"location":"Right Knee"},{"euler":{"heading":25.01307061606454,"pitch":-132.95983839758836,"roll":55.80029810423617},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.898"} +{"sensors":[{"euler":{"heading":147.48312618290439,"pitch":137.1984314478187,"roll":28.12152381860931},"location":"Left Knee"},{"euler":{"heading":65.64718995987089,"pitch":99.75058224332571,"roll":21.13639470826304},"location":"Left Ankle"},{"euler":{"heading":56.09133800593516,"pitch":-8.675291545118776,"roll":-7.279110177167629},"location":"Right Ankle"},{"euler":{"heading":118.9458751802397,"pitch":-158.16961497652355,"roll":57.36231552058957},"location":"Right Hip"},{"euler":{"heading":111.27953368125898,"pitch":-108.39614074499517,"roll":-23.22731888628649},"location":"Right Knee"},{"euler":{"heading":25.486763554458086,"pitch":-133.77635455782953,"roll":56.14526829381255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.999"} +{"sensors":[{"euler":{"heading":134.14731356461394,"pitch":136.40983830303685,"roll":28.371871436748382},"location":"Left Knee"},{"euler":{"heading":66.1199709638838,"pitch":99.85052401899314,"roll":21.316505237436736},"location":"Left Ankle"},{"euler":{"heading":57.513454205341645,"pitch":-8.9952623906069,"roll":-6.513699159450867},"location":"Right Ankle"},{"euler":{"heading":119.50753766221573,"pitch":-157.7276534788712,"roll":56.05108396853061},"location":"Right Hip"},{"euler":{"heading":108.97033031313308,"pitch":-107.81277667049565,"roll":-21.73583699765784},"location":"Right Knee"},{"euler":{"heading":26.01308719901228,"pitch":-134.99246910204658,"roll":56.5432414644313},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.99"} +{"sensors":[{"euler":{"heading":122.83258220815254,"pitch":135.44385447273316,"roll":28.097184293073543},"location":"Left Knee"},{"euler":{"heading":66.93922386749543,"pitch":100.00922161709383,"roll":21.941104713693065},"location":"Left Ankle"},{"euler":{"heading":60.305858784807484,"pitch":-9.18948615154621,"roll":-5.43732924350578},"location":"Right Ankle"},{"euler":{"heading":119.05678389599416,"pitch":-157.59863813098409,"roll":55.20847557167755},"location":"Right Hip"},{"euler":{"heading":105.28579728181978,"pitch":-107.16899900344609,"roll":-18.83100329789206},"location":"Right Knee"},{"euler":{"heading":26.686778479111055,"pitch":-136.51822219184191,"roll":57.04516731798817},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.200"} +{"sensors":[{"euler":{"heading":113.36182398733729,"pitch":134.45571902545984,"roll":27.18121586376619},"location":"Left Knee"},{"euler":{"heading":68.40780148074589,"pitch":100.32079945538445,"roll":23.415744242323758},"location":"Left Ankle"},{"euler":{"heading":62.994022906326734,"pitch":-8.94553753639159,"roll":-4.6873463191552025},"location":"Right Ankle"},{"euler":{"heading":117.64485550639475,"pitch":-157.83252431788569,"roll":54.9438780145098},"location":"Right Hip"},{"euler":{"heading":101.8197175536378,"pitch":-107.15209910310149,"roll":-16.129152968102854},"location":"Right Knee"},{"euler":{"heading":27.45560063119995,"pitch":-138.48514997265772,"roll":57.55940058618935},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.301"} +{"sensors":[{"euler":{"heading":106.32564158860356,"pitch":133.63514712291385,"roll":25.194344277389572},"location":"Left Knee"},{"euler":{"heading":70.8795213326713,"pitch":101.263719509846,"roll":26.24291981809138},"location":"Left Ankle"},{"euler":{"heading":64.38212061569406,"pitch":-8.507233782752433,"roll":-4.487361687239682},"location":"Right Ankle"},{"euler":{"heading":116.62411995575528,"pitch":-157.88052188609714,"roll":54.90574021305882},"location":"Right Hip"},{"euler":{"heading":99.66899579827403,"pitch":-107.54313919279134,"roll":-14.391237671292568},"location":"Right Knee"},{"euler":{"heading":27.716290568079955,"pitch":-139.54288497539196,"roll":57.84721052757042},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.402"} +{"sensors":[{"euler":{"heading":101.49932742974322,"pitch":132.56538241062248,"roll":22.843659849650614},"location":"Left Knee"},{"euler":{"heading":73.50406919940417,"pitch":102.5935975588614,"roll":29.106127836282244},"location":"Left Ankle"},{"euler":{"heading":65.25640855412466,"pitch":-8.10026040447719,"roll":-4.413625518515714},"location":"Right Ankle"},{"euler":{"heading":115.44920796017975,"pitch":-158.11746969748745,"roll":55.29641619175294},"location":"Right Hip"},{"euler":{"heading":98.82709621844663,"pitch":-108.10132527351222,"roll":-13.420863904163312},"location":"Right Knee"},{"euler":{"heading":26.91966151127196,"pitch":-138.36359647785275,"roll":57.749989474813376},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.502"} +{"sensors":[{"euler":{"heading":95.9868946867689,"pitch":132.42759416956022,"roll":21.484293864685554},"location":"Left Knee"},{"euler":{"heading":74.35991227946376,"pitch":102.27798780297528,"roll":30.283015052654022},"location":"Left Ankle"},{"euler":{"heading":65.8245176987122,"pitch":-7.796484364029471,"roll":-4.484762966664142},"location":"Right Ankle"},{"euler":{"heading":114.92928716416178,"pitch":-158.25572272773869,"roll":55.97302457257764},"location":"Right Hip"},{"euler":{"heading":98.91938659660198,"pitch":-108.466192746161,"roll":-13.15377751374698},"location":"Right Knee"},{"euler":{"heading":25.446445360144764,"pitch":-136.83973683006747,"roll":56.99999052733204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.603"} +{"sensors":[{"euler":{"heading":112.85070521809202,"pitch":133.5473347526042,"roll":22.004614478217},"location":"Left Knee"},{"euler":{"heading":72.38642105151739,"pitch":101.37518902267776,"roll":28.885963547388624},"location":"Left Ankle"},{"euler":{"heading":65.96081592884099,"pitch":-7.610585927626524,"roll":-4.6675366699977285},"location":"Right Ankle"},{"euler":{"heading":114.6738584477456,"pitch":-158.51140045496484,"roll":56.675722115319886},"location":"Right Hip"},{"euler":{"heading":99.62744793694179,"pitch":-108.7008234715449,"roll":-13.450899762372284},"location":"Right Knee"},{"euler":{"heading":23.114300824130286,"pitch":-135.6995131470607,"roll":55.82499147459883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.705"} +{"sensors":[{"euler":{"heading":129.3781346962828,"pitch":135.5926012773438,"roll":23.579153030395304},"location":"Left Knee"},{"euler":{"heading":68.79777894636565,"pitch":100.15642012040999,"roll":25.734867192649762},"location":"Left Ankle"},{"euler":{"heading":65.4459843359569,"pitch":-7.312027334863872,"roll":-5.013283002997956},"location":"Right Ankle"},{"euler":{"heading":114.66897260297105,"pitch":-158.79776040946834,"roll":57.376899903787894},"location":"Right Hip"},{"euler":{"heading":101.00845314324762,"pitch":-109.0119911243904,"roll":-14.324559786135056},"location":"Right Knee"},{"euler":{"heading":22.196620741717258,"pitch":-134.39831183235464,"roll":55.21749232713895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.805"} +{"sensors":[{"euler":{"heading":150.52157122665454,"pitch":137.30209114960942,"roll":25.196237727355776},"location":"Left Knee"},{"euler":{"heading":65.79300105172909,"pitch":99.447028108369,"roll":22.905130473384784},"location":"Left Ankle"},{"euler":{"heading":64.1451359023612,"pitch":-6.918324601377486,"roll":-5.73695470269816},"location":"Right Ankle"},{"euler":{"heading":114.79582534267395,"pitch":-159.5492343685215,"roll":58.1579599134091},"location":"Right Hip"},{"euler":{"heading":103.04510782892287,"pitch":-109.21079201195136,"roll":-15.885853807521551},"location":"Right Knee"},{"euler":{"heading":22.058208667545532,"pitch":-133.68973064911918,"roll":54.87699309442505},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.908"} +{"sensors":[{"euler":{"heading":170.8819141039891,"pitch":137.9531320346485,"roll":26.439113954620197},"location":"Left Knee"},{"euler":{"heading":64.40120094655619,"pitch":99.1398252975321,"roll":21.383367426046306},"location":"Left Ankle"},{"euler":{"heading":61.67437231212509,"pitch":-6.957742141239738,"roll":-6.488259232428344},"location":"Right Ankle"},{"euler":{"heading":115.47874280840657,"pitch":-159.79431093166934,"roll":58.529663922068195},"location":"Right Hip"},{"euler":{"heading":105.64059704603059,"pitch":-109.06471281075623,"roll":-18.366018426769397},"location":"Right Knee"},{"euler":{"heading":22.07738780079098,"pitch":-133.23950758420727,"roll":54.77679378498255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.9"} +{"sensors":[{"euler":{"heading":154.0937226935902,"pitch":137.87656883118365,"roll":27.413952559158176},"location":"Left Knee"},{"euler":{"heading":63.82358085190057,"pitch":99.00084276777889,"roll":20.445030683441676},"location":"Left Ankle"},{"euler":{"heading":58.11318508091258,"pitch":-6.699467927115764,"roll":-7.41443330918551},"location":"Right Ankle"},{"euler":{"heading":116.4933685275659,"pitch":-159.1086298385024,"roll":58.15169752986138},"location":"Right Hip"},{"euler":{"heading":108.61403734142755,"pitch":-109.55824152968061,"roll":-21.02941658409246},"location":"Right Knee"},{"euler":{"heading":22.500899020711884,"pitch":-133.56555682578656,"roll":54.9241144064843},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.110"} +{"sensors":[{"euler":{"heading":139.4531004242312,"pitch":137.41391194806528,"roll":28.085057303242362},"location":"Left Knee"},{"euler":{"heading":63.77247276671052,"pitch":98.95075849100101,"roll":20.019277615097508},"location":"Left Ankle"},{"euler":{"heading":56.295616572821324,"pitch":-6.910771134404188,"roll":-7.69798997826696},"location":"Right Ankle"},{"euler":{"heading":117.70653167480931,"pitch":-158.26026685465217,"roll":57.13652777687524},"location":"Right Hip"},{"euler":{"heading":109.5588836072848,"pitch":-109.43366737671255,"roll":-22.113974925683213},"location":"Right Knee"},{"euler":{"heading":23.138309118640695,"pitch":-134.3902511432079,"roll":55.25045296583587},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.210"} +{"sensors":[{"euler":{"heading":126.91404038180808,"pitch":136.64127075325877,"roll":28.370301572918127},"location":"Left Knee"},{"euler":{"heading":64.13897549003947,"pitch":99.04318264190091,"roll":20.011099853587755},"location":"Left Ankle"},{"euler":{"heading":57.29730491553919,"pitch":-7.525944020963769,"roll":-7.159440980440264},"location":"Right Ankle"},{"euler":{"heading":118.16087850732839,"pitch":-157.77174016918696,"roll":56.01037499918772},"location":"Right Hip"},{"euler":{"heading":107.87799524655632,"pitch":-108.75905063904129,"roll":-20.921327433114893},"location":"Right Knee"},{"euler":{"heading":23.818228206776624,"pitch":-135.55122602888713,"roll":55.662907669252284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.311"} +{"sensors":[{"euler":{"heading":116.38513634362727,"pitch":135.62089367793288,"roll":28.170771415626312},"location":"Left Knee"},{"euler":{"heading":64.97507794103552,"pitch":99.28886437771082,"roll":20.503739868228983},"location":"Left Ankle"},{"euler":{"heading":60.10507442398528,"pitch":-7.910849618867393,"roll":-6.105996882396237},"location":"Right Ankle"},{"euler":{"heading":117.49479065659555,"pitch":-157.80081615226828,"roll":55.38433749926895},"location":"Right Hip"},{"euler":{"heading":104.6089457219007,"pitch":-108.03314557513717,"roll":-18.166694689803403},"location":"Right Knee"},{"euler":{"heading":24.71140538609896,"pitch":-137.0148534259984,"roll":56.215366902327055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.412"} +{"sensors":[{"euler":{"heading":107.55912270926454,"pitch":134.4713043101396,"roll":27.391194274063682},"location":"Left Knee"},{"euler":{"heading":66.40257014693198,"pitch":99.64747793993973,"roll":21.778365881406085},"location":"Left Ankle"},{"euler":{"heading":62.732066981586755,"pitch":-8.076014656980654,"roll":-5.320397194156614},"location":"Right Ankle"},{"euler":{"heading":116.214061590936,"pitch":-158.20198453704145,"roll":55.145903749342054},"location":"Right Hip"},{"euler":{"heading":101.69805114971062,"pitch":-107.77983101762345,"roll":-15.743775220823064},"location":"Right Knee"},{"euler":{"heading":25.752764847489065,"pitch":-138.83211808339857,"roll":56.818830212094355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.513"} +{"sensors":[{"euler":{"heading":101.09696043833809,"pitch":133.43042387912564,"roll":25.508324846657313},"location":"Left Knee"},{"euler":{"heading":68.49981313223878,"pitch":100.30148014594577,"roll":24.51302929326548},"location":"Left Ankle"},{"euler":{"heading":64.52136028342808,"pitch":-8.174663191282589,"roll":-4.950857474740952},"location":"Right Ankle"},{"euler":{"heading":115.4676554318424,"pitch":-158.5192860833373,"roll":55.16256337440785},"location":"Right Hip"},{"euler":{"heading":100.19699603473957,"pitch":-107.8643479158611,"roll":-14.250647698740758},"location":"Right Knee"},{"euler":{"heading":26.03998836274016,"pitch":-139.18640627505872,"roll":57.18694719088492},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.613"} +{"sensors":[{"euler":{"heading":96.38101439450428,"pitch":132.51863149121309,"roll":23.251242361991583},"location":"Left Knee"},{"euler":{"heading":71.0248318190149,"pitch":101.2213321313512,"roll":27.71797636393893},"location":"Left Ankle"},{"euler":{"heading":65.86922425508527,"pitch":-8.21344687215433,"roll":-4.643271727266857},"location":"Right Ankle"},{"euler":{"heading":114.59588988865816,"pitch":-158.92360747500356,"roll":55.68380703696707},"location":"Right Hip"},{"euler":{"heading":99.58979643126561,"pitch":-108.046663124275,"roll":-13.438082928866683},"location":"Right Knee"},{"euler":{"heading":25.192239526466146,"pitch":-137.44276564755285,"roll":57.099502471796434},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.714"} +{"sensors":[{"euler":{"heading":90.81166295505385,"pitch":132.38551834209179,"roll":22.119868125792426},"location":"Left Knee"},{"euler":{"heading":71.85359863711342,"pitch":100.5929489182161,"roll":28.85867872754504},"location":"Left Ankle"},{"euler":{"heading":66.66980182957674,"pitch":-8.142102184938897,"roll":-4.503944554540172},"location":"Right Ankle"},{"euler":{"heading":114.18630089979234,"pitch":-159.2124967275032,"roll":56.334176333270364},"location":"Right Hip"},{"euler":{"heading":99.71831678813906,"pitch":-108.3232468118475,"roll":-13.225524635980014},"location":"Right Knee"},{"euler":{"heading":24.010515573819532,"pitch":-135.66098908279756,"roll":56.37705222461679},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.814"} +{"sensors":[{"euler":{"heading":108.44299665954847,"pitch":133.5844665078826,"roll":22.820381313213186},"location":"Left Knee"},{"euler":{"heading":69.44323877340209,"pitch":99.50240402639449,"roll":27.154060854790536},"location":"Left Ankle"},{"euler":{"heading":66.90907164661907,"pitch":-7.952891966445008,"roll":-4.509800099086155},"location":"Right Ankle"},{"euler":{"heading":113.99892080981311,"pitch":-159.4724970547529,"roll":57.04450869994333},"location":"Right Hip"},{"euler":{"heading":100.35273510932517,"pitch":-108.64717213066275,"roll":-13.465472172382013},"location":"Right Knee"},{"euler":{"heading":22.896964016437583,"pitch":-133.8073901745178,"roll":55.708097002155114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.915"} +{"sensors":[{"euler":{"heading":125.83619699359362,"pitch":135.75726985709434,"roll":24.33834318189187},"location":"Left Knee"},{"euler":{"heading":65.66141489606187,"pitch":98.52716362375503,"roll":23.707404769311484},"location":"Left Ankle"},{"euler":{"heading":66.44941448195716,"pitch":-7.507602769800506,"roll":-4.858820089177539},"location":"Right Ankle"},{"euler":{"heading":113.87402872883182,"pitch":-159.8627473492776,"roll":57.833807829948995},"location":"Right Hip"},{"euler":{"heading":101.71121159839265,"pitch":-109.12620491759648,"roll":-14.31892495514381},"location":"Right Knee"},{"euler":{"heading":22.313517614793824,"pitch":-132.670401157066,"roll":55.1935373019396},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.17"} +{"sensors":[{"euler":{"heading":147.70882729423425,"pitch":137.46279287138492,"roll":25.71075886370268},"location":"Left Knee"},{"euler":{"heading":62.80152340645568,"pitch":98.24944726137953,"roll":21.017914292380336},"location":"Left Ankle"},{"euler":{"heading":65.18572303376145,"pitch":-7.094342492820457,"roll":-5.410438080259786},"location":"Right Ankle"},{"euler":{"heading":113.93662585594863,"pitch":-160.62022261434987,"roll":58.6129270469541},"location":"Right Hip"},{"euler":{"heading":103.67134043855339,"pitch":-109.48858442583685,"roll":-15.82453245962943},"location":"Right Knee"},{"euler":{"heading":22.350915853314444,"pitch":-131.97211104135943,"roll":54.961683571745645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.118"} +{"sensors":[{"euler":{"heading":133.11294456481085,"pitch":137.89151358424644,"roll":26.802182977332414},"location":"Left Knee"},{"euler":{"heading":61.79012106581011,"pitch":98.35575253524158,"roll":19.841122863142303},"location":"Left Ankle"},{"euler":{"heading":62.3734007303853,"pitch":-6.909908243538411,"roll":-6.006894272233807},"location":"Right Ankle"},{"euler":{"heading":114.61171327035376,"pitch":-160.60195035291488,"roll":58.96413434225869},"location":"Right Hip"},{"euler":{"heading":106.38545639469805,"pitch":-109.80222598325317,"roll":-18.367079213666486},"location":"Right Knee"},{"euler":{"heading":22.472074267983,"pitch":-131.7436499372235,"roll":54.89051521457108},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.218"} +{"sensors":[{"euler":{"heading":120.62040010832976,"pitch":137.6836122258218,"roll":27.578214679599174},"location":"Left Knee"},{"euler":{"heading":61.4923589592291,"pitch":98.60142728171742,"roll":19.157010576828075},"location":"Left Ankle"},{"euler":{"heading":58.911060657346766,"pitch":-6.9126674191845705,"roll":-6.606204845010427},"location":"Right Ankle"},{"euler":{"heading":115.97554194331839,"pitch":-159.7417553176234,"roll":58.52397090803282},"location":"Right Hip"},{"euler":{"heading":109.04691075522825,"pitch":-110.17825338492786,"roll":-20.89912129229984},"location":"Right Knee"},{"euler":{"heading":22.9186168411847,"pitch":-131.98178494350114,"roll":55.11396369311397},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.319"} +{"sensors":[{"euler":{"heading":109.68336009749679,"pitch":137.15275100323964,"roll":28.070393211639256},"location":"Left Knee"},{"euler":{"heading":61.80562306330619,"pitch":98.87878455354569,"roll":19.047559519145267},"location":"Left Ankle"},{"euler":{"heading":57.14495459161209,"pitch":-7.133900677266114,"roll":-6.8330843605093845},"location":"Right Ankle"},{"euler":{"heading":117.27798774898656,"pitch":-158.86132978586105,"roll":57.42157381722954},"location":"Right Hip"},{"euler":{"heading":109.85471967970544,"pitch":-109.95417804643508,"roll":-21.890459163069856},"location":"Right Knee"},{"euler":{"heading":23.539255157066233,"pitch":-132.78360644915102,"roll":55.50256732380257},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.420"} +{"sensors":[{"euler":{"heading":100.4400240877471,"pitch":136.32497590291567,"roll":28.250853890475334},"location":"Left Knee"},{"euler":{"heading":62.637560756975574,"pitch":99.25340609819112,"roll":19.36780356723074},"location":"Left Ankle"},{"euler":{"heading":57.94920913245089,"pitch":-7.570510609539503,"roll":-6.293525924458446},"location":"Right Ankle"},{"euler":{"heading":118.0314389740879,"pitch":-158.43144680727497,"roll":55.99816643550659},"location":"Right Hip"},{"euler":{"heading":107.9692477117349,"pitch":-109.25876024179156,"roll":-20.68266324676287},"location":"Right Knee"},{"euler":{"heading":24.34782964135961,"pitch":-134.26774580423591,"roll":55.971060591422315},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.521"} +{"sensors":[{"euler":{"heading":92.8210216789724,"pitch":135.2362283126241,"roll":28.0007685014278},"location":"Left Knee"},{"euler":{"heading":63.78630468127802,"pitch":99.690565488372,"roll":20.087273210507668},"location":"Left Ankle"},{"euler":{"heading":60.504288219205804,"pitch":-8.175959548585553,"roll":-5.182923332012601},"location":"Right Ankle"},{"euler":{"heading":117.71579507667911,"pitch":-158.35080212654745,"roll":55.04209979195593},"location":"Right Hip"},{"euler":{"heading":104.6660729405614,"pitch":-108.3141342176124,"roll":-17.870646922086586},"location":"Right Knee"},{"euler":{"heading":25.344296677223653,"pitch":-135.99722122381235,"roll":56.58645453228009},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.622"} +{"sensors":[{"euler":{"heading":86.68891951107517,"pitch":134.0251054813617,"roll":27.13819165128502},"location":"Left Knee"},{"euler":{"heading":65.59517421315022,"pitch":100.2590089395348,"roll":21.666045889456903},"location":"Left Ankle"},{"euler":{"heading":63.30385939728523,"pitch":-8.139613593726999,"roll":-4.327130998811341},"location":"Right Ankle"},{"euler":{"heading":116.34421556901121,"pitch":-158.6532219138927,"roll":54.794139812760335},"location":"Right Hip"},{"euler":{"heading":101.28696564650528,"pitch":-108.22022079585116,"roll":-15.158582229877926},"location":"Right Knee"},{"euler":{"heading":26.56611700950129,"pitch":-138.1662491014311,"roll":57.25905907905208},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.723"} +{"sensors":[{"euler":{"heading":82.84502755996766,"pitch":132.94134493322554,"roll":25.111872486156518},"location":"Left Knee"},{"euler":{"heading":68.61690679183519,"pitch":101.76435804558132,"roll":24.668191300511214},"location":"Left Ankle"},{"euler":{"heading":64.84222345755671,"pitch":-7.956902234354299,"roll":-4.025667898930206},"location":"Right Ankle"},{"euler":{"heading":115.4910440121101,"pitch":-158.86914972250347,"roll":54.73972583148431},"location":"Right Hip"},{"euler":{"heading":99.15826908185475,"pitch":-108.44194871626605,"roll":-13.373974006890133},"location":"Right Knee"},{"euler":{"heading":27.04700530855116,"pitch":-139.030874191288,"roll":57.74565317114687},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.826"} +{"sensors":[{"euler":{"heading":80.8042748039709,"pitch":131.628460439903,"roll":22.806935237540866},"location":"Left Knee"},{"euler":{"heading":71.86146611265167,"pitch":103.9316722410232,"roll":27.670122170460093},"location":"Left Ankle"},{"euler":{"heading":65.87675111180104,"pitch":-7.629962010918869,"roll":-3.8418511090371856},"location":"Right Ankle"},{"euler":{"heading":114.42943961089908,"pitch":-159.22598475025313,"roll":55.197003248335875},"location":"Right Hip"},{"euler":{"heading":98.12994217366928,"pitch":-108.92900384463945,"roll":-12.28657660620112},"location":"Right Knee"},{"euler":{"heading":26.64855477769604,"pitch":-137.5965367721592,"roll":57.85858785403219},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.927"} +{"sensors":[{"euler":{"heading":77.6363473235738,"pitch":131.4093643959127,"roll":21.501241713786783},"location":"Left Knee"},{"euler":{"heading":73.09406950138651,"pitch":103.75100501692089,"roll":29.171859953414085},"location":"Left Ankle"},{"euler":{"heading":66.57032600062094,"pitch":-7.235715809826983,"roll":-3.832665998133467},"location":"Right Ankle"},{"euler":{"heading":113.91774564980918,"pitch":-159.39713627522784,"roll":55.88355292350229},"location":"Right Hip"},{"euler":{"heading":97.86069795630236,"pitch":-109.43610346017552,"roll":-11.776668945581008},"location":"Right Knee"},{"euler":{"heading":25.51494929992644,"pitch":-135.72438309494328,"roll":57.27897906862897},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.27"} +{"sensors":[{"euler":{"heading":96.51646259121642,"pitch":132.73717795632143,"roll":22.069867542408105},"location":"Left Knee"},{"euler":{"heading":71.22841255124786,"pitch":102.5134045152288,"roll":27.854673958072677},"location":"Left Ankle"},{"euler":{"heading":66.79454340055884,"pitch":-6.668394228844285,"roll":-3.9431493983201205},"location":"Right Ankle"},{"euler":{"heading":113.51347108482825,"pitch":-159.55742264770504,"roll":56.68894763115206},"location":"Right Hip"},{"euler":{"heading":98.17462816067211,"pitch":-110.06124311415797,"roll":-11.749002051022908},"location":"Right Knee"},{"euler":{"heading":24.163454369933795,"pitch":-133.85819478544894,"roll":56.52608116176608},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.127"} +{"sensors":[{"euler":{"heading":114.9523163320948,"pitch":135.0572101606893,"roll":23.662880788167296},"location":"Left Knee"},{"euler":{"heading":67.23057129612307,"pitch":101.24331406370592,"roll":24.40045656226541},"location":"Left Ankle"},{"euler":{"heading":66.39633906050295,"pitch":-5.951554805959857,"roll":-4.1675844584881085},"location":"Right Ankle"},{"euler":{"heading":113.24962397634543,"pitch":-159.87668038293455,"roll":57.551302868036856},"location":"Right Hip"},{"euler":{"heading":99.22591534460491,"pitch":-110.71761880274218,"roll":-12.330351845920617},"location":"Right Knee"},{"euler":{"heading":23.459608932940416,"pitch":-132.71612530690405,"roll":56.03597304558947},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.229"} +{"sensors":[{"euler":{"heading":138.46333469888532,"pitch":136.69523914462036,"roll":25.015342709350566},"location":"Left Knee"},{"euler":{"heading":63.98251416651077,"pitch":100.58773265733534,"roll":21.49791090603887},"location":"Left Ankle"},{"euler":{"heading":65.00670515445266,"pitch":-5.331399325363871,"roll":-4.763326012639298},"location":"Right Ankle"},{"euler":{"heading":113.36841157871089,"pitch":-160.2515123446411,"roll":58.35242258123317},"location":"Right Hip"},{"euler":{"heading":101.16582381014442,"pitch":-111.20835692246797,"roll":-13.766066661328555},"location":"Right Knee"},{"euler":{"heading":23.532398039646374,"pitch":-132.17576277621365,"roll":55.769875741030525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.330"} +{"sensors":[{"euler":{"heading":160.5607512289968,"pitch":137.41946523015832,"roll":26.08880843841551},"location":"Left Knee"},{"euler":{"heading":62.78426274985969,"pitch":100.2852093916018,"roll":20.298119815434983},"location":"Left Ankle"},{"euler":{"heading":62.18103463900739,"pitch":-5.235759392827484,"roll":-5.261993411375368},"location":"Right Ankle"},{"euler":{"heading":114.0940704208398,"pitch":-160.14511111017697,"roll":58.62968032310985},"location":"Right Hip"},{"euler":{"heading":103.96174142912997,"pitch":-111.53752123022117,"roll":-16.3144599951957},"location":"Right Knee"},{"euler":{"heading":23.354158235681737,"pitch":-131.99568649859228,"roll":55.61163816692748},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.430"} +{"sensors":[{"euler":{"heading":145.22342610609712,"pitch":137.3837687071425,"roll":26.948677594573958},"location":"Left Knee"},{"euler":{"heading":62.199586474873726,"pitch":100.31293845244163,"roll":19.443307833891485},"location":"Left Ankle"},{"euler":{"heading":58.80043117510665,"pitch":-5.1809334535447356,"roll":-5.8045440702378315},"location":"Right Ankle"},{"euler":{"heading":115.34091337875581,"pitch":-159.29309999915927,"roll":58.07921229079887},"location":"Right Hip"},{"euler":{"heading":106.67806728621697,"pitch":-112.10251910719906,"roll":-18.67051399567613},"location":"Right Knee"},{"euler":{"heading":23.799992412113564,"pitch":-132.38361784873305,"roll":55.850474350234734},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.530"} +{"sensors":[{"euler":{"heading":131.6760834954874,"pitch":137.07039183642826,"roll":27.46630983511656},"location":"Left Knee"},{"euler":{"heading":61.98587782738635,"pitch":100.21914460719746,"roll":19.080227050502337},"location":"Left Ankle"},{"euler":{"heading":57.24538805759599,"pitch":-5.431590108190262,"roll":-5.899089663214048},"location":"Right Ankle"},{"euler":{"heading":116.76307204088023,"pitch":-158.51378999924336,"roll":56.85254106171898},"location":"Right Hip"},{"euler":{"heading":107.32276055759527,"pitch":-111.84851719647915,"roll":-19.640962596108523},"location":"Right Knee"},{"euler":{"heading":24.40749317090221,"pitch":-133.46400606385976,"roll":56.202926915211265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.631"} +{"sensors":[{"euler":{"heading":120.18347514593866,"pitch":136.36960265278543,"roll":27.68217885160491},"location":"Left Knee"},{"euler":{"heading":62.431040044647716,"pitch":100.27848014647772,"roll":19.190954345452106},"location":"Left Ankle"},{"euler":{"heading":58.54584925183639,"pitch":-6.0071810973712365,"roll":-5.315430696892643},"location":"Right Ankle"},{"euler":{"heading":117.46801483679221,"pitch":-158.22491099931904,"roll":55.46103695554709},"location":"Right Hip"},{"euler":{"heading":105.30923450183575,"pitch":-110.90116547683124,"roll":-18.39561633649767},"location":"Right Knee"},{"euler":{"heading":25.27299385381199,"pitch":-135.0551054574738,"roll":56.67638422369014},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.733"} +{"sensors":[{"euler":{"heading":110.69637763134479,"pitch":135.3076423875069,"roll":27.42646096644442},"location":"Left Knee"},{"euler":{"heading":63.45043604018295,"pitch":100.56938213182994,"roll":19.8593589109069},"location":"Left Ankle"},{"euler":{"heading":61.47876432665275,"pitch":-6.431462987634113,"roll":-4.190137627203379},"location":"Right Ankle"},{"euler":{"heading":117.27121335311298,"pitch":-158.14616989938713,"roll":54.65868325999238},"location":"Right Hip"},{"euler":{"heading":101.92831105165217,"pitch":-109.91104892914811,"roll":-15.699804702847906},"location":"Right Knee"},{"euler":{"heading":26.264444468430792,"pitch":-136.78709491172643,"roll":57.26499580132113},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.834"} +{"sensors":[{"euler":{"heading":102.97048986821031,"pitch":134.1143781487562,"roll":26.54631486979998},"location":"Left Knee"},{"euler":{"heading":65.18664243616466,"pitch":101.06244391864695,"roll":21.279673019816208},"location":"Left Ankle"},{"euler":{"heading":64.54963789398748,"pitch":-6.588316688870702,"roll":-3.3898738644830413},"location":"Right Ankle"},{"euler":{"heading":115.93784201780169,"pitch":-158.55030290944842,"roll":54.35531493399314},"location":"Right Hip"},{"euler":{"heading":98.48547994648696,"pitch":-109.36369403623331,"roll":-12.911074232563116},"location":"Right Knee"},{"euler":{"heading":27.356750021587715,"pitch":-138.9396354205538,"roll":57.83224622118902},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.934"} +{"sensors":[{"euler":{"heading":97.31719088138928,"pitch":133.22794033388058,"roll":24.56668338281998},"location":"Left Knee"},{"euler":{"heading":67.8304781925482,"pitch":101.94369952678225,"roll":24.320455717834587},"location":"Left Ankle"},{"euler":{"heading":66.20092410458874,"pitch":-6.748235019983632,"roll":-3.0946364780347375},"location":"Right Ankle"},{"euler":{"heading":115.06905781602151,"pitch":-158.86402261850358,"roll":54.28853344059383},"location":"Right Hip"},{"euler":{"heading":96.31193195183826,"pitch":-109.32107463260998,"roll":-11.126216809306804},"location":"Right Knee"},{"euler":{"heading":27.971075019428945,"pitch":-140.3269218784984,"roll":58.24277159907012},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.35"} +{"sensors":[{"euler":{"heading":93.76672179325035,"pitch":131.94264630049253,"roll":22.153765044537984},"location":"Left Knee"},{"euler":{"heading":70.95368037329338,"pitch":103.58057957410402,"roll":27.65716014605113},"location":"Left Ankle"},{"euler":{"heading":67.30583169412986,"pitch":-6.848411517985269,"roll":-2.9914228302312638},"location":"Right Ankle"},{"euler":{"heading":114.06215203441937,"pitch":-159.34012035665324,"roll":54.690930096534444},"location":"Right Hip"},{"euler":{"heading":95.43698875665443,"pitch":-109.426467169349,"roll":-10.157345128376125},"location":"Right Knee"},{"euler":{"heading":27.35521751748605,"pitch":-137.5192296906486,"roll":58.330994439163106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.136"} +{"sensors":[{"euler":{"heading":89.69004961392532,"pitch":131.61713167044329,"roll":20.607138540084186},"location":"Left Knee"},{"euler":{"heading":72.60206233596405,"pitch":103.39752161669362,"roll":29.47894413144602},"location":"Left Ankle"},{"euler":{"heading":68.06274852471688,"pitch":-6.832320366186742,"roll":-3.0110305472081373},"location":"Right Ankle"},{"euler":{"heading":113.53093683097744,"pitch":-159.69360832098792,"roll":55.378087086881},"location":"Right Hip"},{"euler":{"heading":95.230789880989,"pitch":-109.5838204524141,"roll":-9.735360615538513},"location":"Right Knee"},{"euler":{"heading":26.03219576573745,"pitch":-135.86730672158373,"roll":57.7541449952468},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.236"} +{"sensors":[{"euler":{"heading":81.9897946525328,"pitch":132.54916850339896,"roll":21.008924686075765},"location":"Left Knee"},{"euler":{"heading":71.12310610236764,"pitch":102.43276945502426,"roll":28.462299718301416},"location":"Left Ankle"},{"euler":{"heading":68.3127236722452,"pitch":-6.536588329568069,"roll":-3.191177492487324},"location":"Right Ankle"},{"euler":{"heading":113.2590931478797,"pitch":-159.93674748888913,"roll":56.16527837819291},"location":"Right Hip"},{"euler":{"heading":95.5264608928901,"pitch":-109.9441884071727,"roll":-9.74307455398466},"location":"Right Knee"},{"euler":{"heading":24.691476189163705,"pitch":-134.01182604942537,"roll":57.00998049572212},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.336"} +{"sensors":[{"euler":{"heading":101.70956518727952,"pitch":134.62550165305908,"roll":22.58303221746819},"location":"Left Knee"},{"euler":{"heading":67.59829549213089,"pitch":101.22699250952182,"roll":25.384819746471276},"location":"Left Ankle"},{"euler":{"heading":68.02520130502067,"pitch":-6.0329294966112625,"roll":-3.5595597432385917},"location":"Right Ankle"},{"euler":{"heading":113.18943383309173,"pitch":-160.21182274000023,"roll":56.98000054037362},"location":"Right Hip"},{"euler":{"heading":96.44256480360109,"pitch":-110.45601956645544,"roll":-10.343767098586195},"location":"Right Knee"},{"euler":{"heading":23.741078570247335,"pitch":-132.59814344448284,"roll":56.402732446149905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.437"} +{"sensors":[{"euler":{"heading":120.02610866855157,"pitch":136.58170148775318,"roll":24.14972899572137},"location":"Left Knee"},{"euler":{"heading":64.3134659429178,"pitch":100.58554325856964,"roll":22.371337771824148},"location":"Left Ankle"},{"euler":{"heading":67.08518117451861,"pitch":-5.529636546950136,"roll":-4.234853768914732},"location":"Right Ankle"},{"euler":{"heading":113.28299044978255,"pitch":-160.6718904660002,"roll":57.85075048633626},"location":"Right Hip"},{"euler":{"heading":98.16080832324097,"pitch":-110.8854176098099,"roll":-11.578140388727576},"location":"Right Knee"},{"euler":{"heading":23.3919707132226,"pitch":-131.94457910003456,"roll":55.95620920153492},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.538"} +{"sensors":[{"euler":{"heading":143.6734978016964,"pitch":137.40478133897787,"roll":25.384756096149232},"location":"Left Knee"},{"euler":{"heading":62.70711934862602,"pitch":100.27698893271268,"roll":20.746703994641734},"location":"Left Ankle"},{"euler":{"heading":64.82041305706674,"pitch":-5.564172892255122,"roll":-4.930118392023259},"location":"Right Ankle"},{"euler":{"heading":113.75469140480429,"pitch":-160.9984514194002,"roll":58.465675437702636},"location":"Right Hip"},{"euler":{"heading":100.77597749091689,"pitch":-110.88437584882892,"roll":-13.851576349854819},"location":"Right Knee"},{"euler":{"heading":23.19027364190034,"pitch":-131.6001211900311,"roll":55.72308828138142},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.639"} +{"sensors":[{"euler":{"heading":129.8248980215268,"pitch":137.5080532050801,"roll":26.33378048653431},"location":"Left Knee"},{"euler":{"heading":61.91140741376342,"pitch":100.18679003944142,"roll":19.690783595177564},"location":"Left Ankle"},{"euler":{"heading":61.33212175136007,"pitch":-5.476505603029611,"roll":-5.843356552820934},"location":"Right Ankle"},{"euler":{"heading":114.71047226432385,"pitch":-160.43610627746017,"roll":58.43160789393237},"location":"Right Hip"},{"euler":{"heading":103.92337974182522,"pitch":-111.30218826394602,"roll":-16.610168714869335},"location":"Right Knee"},{"euler":{"heading":23.246246277710306,"pitch":-131.658859071028,"roll":55.794529453243285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.740"} +{"sensors":[{"euler":{"heading":117.97365821937412,"pitch":137.0947478845721,"roll":27.025402437880878},"location":"Left Knee"},{"euler":{"heading":61.76401667238708,"pitch":100.21811103549727,"roll":19.184205235659807},"location":"Left Ankle"},{"euler":{"heading":59.242659576224064,"pitch":-5.760105042726649,"roll":-6.127770897538841},"location":"Right Ankle"},{"euler":{"heading":115.97692503789146,"pitch":-159.55499564971416,"roll":57.63219710453914},"location":"Right Hip"},{"euler":{"heading":105.4747917676427,"pitch":-111.18446943755143,"roll":-18.324151843382403},"location":"Right Knee"},{"euler":{"heading":23.746621649939275,"pitch":-132.4679731639252,"roll":56.07757650791896},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.841"} +{"sensors":[{"euler":{"heading":107.76379239743672,"pitch":136.3915230961149,"roll":27.41036219409279},"location":"Left Knee"},{"euler":{"heading":62.11261500514837,"pitch":100.34004993194755,"roll":19.140784712093826},"location":"Left Ankle"},{"euler":{"heading":59.71214361860166,"pitch":-6.296594538453984,"roll":-5.777493807784958},"location":"Right Ankle"},{"euler":{"heading":117.11673253410231,"pitch":-158.87449608474276,"roll":56.34397739408523},"location":"Right Hip"},{"euler":{"heading":104.58356259087843,"pitch":-110.47227249379628,"roll":-17.941736659044164},"location":"Right Knee"},{"euler":{"heading":24.484459484945347,"pitch":-134.01492584753268,"roll":56.42606885712706},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.942"} +{"sensors":[{"euler":{"heading":99.24991315769304,"pitch":135.4211207865034,"roll":27.388075974683513},"location":"Left Knee"},{"euler":{"heading":62.92010350463353,"pitch":100.6622949387528,"roll":19.539206240884443},"location":"Left Ankle"},{"euler":{"heading":62.553429256741495,"pitch":-6.666935084608586,"roll":-4.930994427006462},"location":"Right Ankle"},{"euler":{"heading":116.98005928069209,"pitch":-158.7682964762685,"roll":55.37207965467671},"location":"Right Hip"},{"euler":{"heading":101.30020633179059,"pitch":-109.52504524441665,"roll":-15.447562993139748},"location":"Right Knee"},{"euler":{"heading":25.348513536450813,"pitch":-135.81968326277942,"roll":56.90221197141436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.42"} +{"sensors":[{"euler":{"heading":92.14367184192373,"pitch":134.32900870785306,"roll":26.84926837721516},"location":"Left Knee"},{"euler":{"heading":64.40309315417018,"pitch":101.15231544487752,"roll":20.616535616796},"location":"Left Ankle"},{"euler":{"heading":65.67933633106735,"pitch":-6.7689915761477275,"roll":-3.9316449843058163},"location":"Right Ankle"},{"euler":{"heading":115.62580335262288,"pitch":-159.18521682864164,"roll":55.009871689209035},"location":"Right Hip"},{"euler":{"heading":97.53268569861153,"pitch":-108.99754071997498,"roll":-12.440306693825773},"location":"Right Knee"},{"euler":{"heading":26.276162182805734,"pitch":-137.9752149365015,"roll":57.41199077427293},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.143"} +{"sensors":[{"euler":{"heading":87.00430465773137,"pitch":133.16485783706776,"roll":25.345591539493643},"location":"Left Knee"},{"euler":{"heading":66.52528383875315,"pitch":101.73708390038976,"roll":22.8986320551164},"location":"Left Ankle"},{"euler":{"heading":67.48015269796062,"pitch":-6.735842418532955,"roll":-3.3947304858752347},"location":"Right Ankle"},{"euler":{"heading":114.6507230173606,"pitch":-159.52919514577746,"roll":54.94013452028813},"location":"Right Hip"},{"euler":{"heading":95.04816712875038,"pitch":-108.96028664797748,"roll":-10.471276024443197},"location":"Right Knee"},{"euler":{"heading":27.117295964525162,"pitch":-139.59644344285132,"roll":57.89579169684564},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.243"} +{"sensors":[{"euler":{"heading":84.17887419195823,"pitch":132.129622053361,"roll":22.95478238554428},"location":"Left Knee"},{"euler":{"heading":70.46650545487785,"pitch":103.7633755103508,"roll":26.52751884960476},"location":"Left Ankle"},{"euler":{"heading":68.61338742816456,"pitch":-6.5747581766796594,"roll":-3.1427574372877114},"location":"Right Ankle"},{"euler":{"heading":113.52315071562455,"pitch":-159.96377563119972,"roll":55.37112106825933},"location":"Right Hip"},{"euler":{"heading":93.66210041587534,"pitch":-109.30175798317974,"roll":-9.286648421998878},"location":"Right Knee"},{"euler":{"heading":26.42431636807265,"pitch":-138.8430490985662,"roll":57.91871252716108},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.343"} +{"sensors":[{"euler":{"heading":81.69848677276241,"pitch":131.5354098480249,"roll":20.946804146989855},"location":"Left Knee"},{"euler":{"heading":73.29485490939007,"pitch":104.02453795931572,"roll":29.393516964644284},"location":"Left Ankle"},{"euler":{"heading":69.2582986853481,"pitch":-6.192282359011694,"roll":-3.1722316935589405},"location":"Right Ankle"},{"euler":{"heading":112.8708356440621,"pitch":-160.20489806807976,"roll":56.0902589614334},"location":"Right Hip"},{"euler":{"heading":93.2208903742878,"pitch":-109.89658218486177,"roll":-8.71423357979899},"location":"Right Knee"},{"euler":{"heading":24.975634731265387,"pitch":-137.20249418870958,"roll":57.28934127444497},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.445"} +{"sensors":[{"euler":{"heading":76.26613809548617,"pitch":132.13811886322242,"roll":20.68337373229087},"location":"Left Knee"},{"euler":{"heading":72.78411941845106,"pitch":102.98458416338416,"roll":29.497915268179856},"location":"Left Ankle"},{"euler":{"heading":69.56996881681329,"pitch":-5.623054123110524,"roll":-3.3925085242030466},"location":"Right Ankle"},{"euler":{"heading":112.4962520796559,"pitch":-160.3344082612718,"roll":56.956233065290064},"location":"Right Hip"},{"euler":{"heading":93.34255133685902,"pitch":-110.5506739663756,"roll":-8.59281022181909},"location":"Right Knee"},{"euler":{"heading":23.47182125813885,"pitch":-135.35099476983862,"roll":56.41665714700048},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.545"} +{"sensors":[{"euler":{"heading":96.27702428593756,"pitch":134.13055697690018,"roll":22.152536359061784},"location":"Left Knee"},{"euler":{"heading":69.64320747660595,"pitch":101.74237574704574,"roll":27.00437374136187},"location":"Left Ankle"},{"euler":{"heading":69.36297193513195,"pitch":-4.985748710799472,"roll":-3.6845076717827423},"location":"Right Ankle"},{"euler":{"heading":112.39037687169031,"pitch":-160.54471743514463,"roll":57.82935975876106},"location":"Right Hip"},{"euler":{"heading":94.17704620317312,"pitch":-111.22685656973805,"roll":-9.02102919963718},"location":"Right Knee"},{"euler":{"heading":22.380889132324967,"pitch":-133.82214529285477,"roll":55.70624143230043},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.645"} +{"sensors":[{"euler":{"heading":115.33057185734381,"pitch":136.59875127921018,"roll":23.812282723155608},"location":"Left Knee"},{"euler":{"heading":65.80388672894536,"pitch":100.82438817234116,"roll":23.472686367225684},"location":"Left Ankle"},{"euler":{"heading":68.40792474161876,"pitch":-4.305923839719524,"roll":-4.341056904604469},"location":"Right Ankle"},{"euler":{"heading":112.55133918452128,"pitch":-160.89649569163018,"roll":58.721423782884955},"location":"Right Hip"},{"euler":{"heading":95.85934158285582,"pitch":-111.77917091276424,"roll":-10.162676279673462},"location":"Right Knee"},{"euler":{"heading":22.04905021909247,"pitch":-132.92118076356928,"roll":55.21061728907039},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.746"} +{"sensors":[{"euler":{"heading":139.09126467160945,"pitch":137.90762615128915,"roll":25.306054450840048},"location":"Left Knee"},{"euler":{"heading":64.19849805605082,"pitch":100.98569935510704,"roll":21.544167730503116},"location":"Left Ankle"},{"euler":{"heading":66.16713226745688,"pitch":-4.162831455747572,"roll":-5.044451214144022},"location":"Right Ankle"},{"euler":{"heading":113.17120526606915,"pitch":-161.33809612246716,"roll":59.38678140459646},"location":"Right Hip"},{"euler":{"heading":98.47965742457023,"pitch":-111.81375382148782,"roll":-12.315158651706117},"location":"Right Knee"},{"euler":{"heading":22.169145197183223,"pitch":-132.57906268721234,"roll":54.908305560163356},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.846"} +{"sensors":[{"euler":{"heading":125.42588820444851,"pitch":138.27311353616022,"roll":26.462949005756045},"location":"Left Knee"},{"euler":{"heading":63.21614825044574,"pitch":101.09337941959635,"roll":20.446000957452803},"location":"Left Ankle"},{"euler":{"heading":62.36916904071119,"pitch":-4.177798310172815,"roll":-5.99625609272962},"location":"Right Ankle"},{"euler":{"heading":114.47908473946224,"pitch":-160.73553651022044,"roll":59.34810326413682},"location":"Right Hip"},{"euler":{"heading":101.50669168211321,"pitch":-112.03862843933904,"roll":-15.083642786535506},"location":"Right Knee"},{"euler":{"heading":22.3897306774649,"pitch":-132.3211564184911,"roll":54.97372500414702},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.947"} +{"sensors":[{"euler":{"heading":113.74579938400366,"pitch":137.9895521825442,"roll":27.36665410518044},"location":"Left Knee"},{"euler":{"heading":62.92578342540117,"pitch":101.2527914776367,"roll":19.82015086170752},"location":"Left Ankle"},{"euler":{"heading":59.54475213664008,"pitch":-4.578768479155533,"roll":-6.546630483456659},"location":"Right Ankle"},{"euler":{"heading":116.11867626551602,"pitch":-159.7182328591984,"roll":58.46954293772313},"location":"Right Hip"},{"euler":{"heading":103.18727251390189,"pitch":-111.77226559540513,"roll":-16.950278507881954},"location":"Right Knee"},{"euler":{"heading":22.875757609718413,"pitch":-132.870290776642,"roll":55.207602503732325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.47"} +{"sensors":[{"euler":{"heading":103.86496944560331,"pitch":137.2593469642898,"roll":27.954988694662397},"location":"Left Knee"},{"euler":{"heading":63.395705082861056,"pitch":101.60251232987304,"roll":19.76938577553677},"location":"Left Ankle"},{"euler":{"heading":58.971526922976075,"pitch":-5.30214163123998,"roll":-6.516967435110994},"location":"Right Ankle"},{"euler":{"heading":117.57555863896442,"pitch":-158.94640957327854,"roll":57.07883864395082},"location":"Right Hip"},{"euler":{"heading":102.6372952625117,"pitch":-110.97628903586462,"roll":-16.867750657093758},"location":"Right Knee"},{"euler":{"heading":23.61318184874657,"pitch":-133.90201169897782,"roll":55.618092253359094},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.149"} +{"sensors":[{"euler":{"heading":95.72847250104297,"pitch":136.2834122678608,"roll":28.05948982519616},"location":"Left Knee"},{"euler":{"heading":64.21863457457495,"pitch":102.00476109688573,"roll":20.129947197983093},"location":"Left Ankle"},{"euler":{"heading":60.661874230678464,"pitch":-6.021927468115982,"roll":-5.6465206915998944},"location":"Right Ankle"},{"euler":{"heading":118.23050277506798,"pitch":-158.6017686159507,"roll":55.72095477955574},"location":"Right Hip"},{"euler":{"heading":100.06731573626053,"pitch":-109.92866013227817,"roll":-14.830975591384384},"location":"Right Knee"},{"euler":{"heading":24.426863663871917,"pitch":-135.33681052908003,"roll":56.13128302802319},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.250"} +{"sensors":[{"euler":{"heading":88.99312525093869,"pitch":135.09257104107473,"roll":27.728540842676544},"location":"Left Knee"},{"euler":{"heading":65.57802111711746,"pitch":102.51678498719717,"roll":20.991952478184785},"location":"Left Ankle"},{"euler":{"heading":63.708186807610616,"pitch":-6.475984721304385,"roll":-4.506868622439905},"location":"Right Ankle"},{"euler":{"heading":117.81370249756118,"pitch":-158.61034175435563,"roll":54.96760930160017},"location":"Right Hip"},{"euler":{"heading":94.90433416263447,"pitch":-109.16079411905037,"roll":-11.804128032245945},"location":"Right Knee"},{"euler":{"heading":25.352927297484726,"pitch":-137.22187947617203,"roll":56.69940472522087},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.351"} +{"sensors":[{"euler":{"heading":83.71256272584483,"pitch":133.83956393696727,"roll":26.73693675840889},"location":"Left Knee"},{"euler":{"heading":67.57646900540571,"pitch":103.14010648847746,"roll":22.674007230366307},"location":"Left Ankle"},{"euler":{"heading":66.21861812684955,"pitch":-6.659636249173946,"roll":-3.687431760195915},"location":"Right Ankle"},{"euler":{"heading":116.62608224780506,"pitch":-158.97430757892008,"roll":54.73334837144016},"location":"Right Hip"},{"euler":{"heading":91.92640074637103,"pitch":-108.96346470714533,"roll":-9.38621522902135},"location":"Right Knee"},{"euler":{"heading":26.505134567736253,"pitch":-139.44344152855484,"roll":57.27946425269879},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.452"} +{"sensors":[{"euler":{"heading":80.36005645326036,"pitch":132.93060754327055,"roll":24.619493082568003},"location":"Left Knee"},{"euler":{"heading":70.53757210486515,"pitch":104.34484583962971,"roll":25.831606507329678},"location":"Left Ankle"},{"euler":{"heading":67.5905063141646,"pitch":-6.7749226242565515,"roll":-3.318688584176323},"location":"Right Ankle"},{"euler":{"heading":116.09472402302455,"pitch":-159.14562682102806,"roll":54.84126353429615},"location":"Right Hip"},{"euler":{"heading":90.16501067173394,"pitch":-109.0046182364308,"roll":-7.891343706119214},"location":"Right Knee"},{"euler":{"heading":26.68587111096263,"pitch":-140.25534737569936,"roll":57.52651782742891},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.552"} +{"sensors":[{"euler":{"heading":78.61155080793432,"pitch":131.8000467889435,"roll":22.232543774311203},"location":"Left Knee"},{"euler":{"heading":73.44006489437864,"pitch":105.81661125566674,"roll":28.98594585659671},"location":"Left Ankle"},{"euler":{"heading":68.42520568274814,"pitch":-6.678680361830896,"roll":-3.268069725758691},"location":"Right Ankle"},{"euler":{"heading":115.24150162072209,"pitch":-159.44356413892527,"roll":55.46338718086653},"location":"Right Hip"},{"euler":{"heading":89.51725960456055,"pitch":-109.42915641278772,"roll":-7.102209335507292},"location":"Right Knee"},{"euler":{"heading":25.979783999866367,"pitch":-138.72981263812943,"roll":57.51136604468603},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.653"} +{"sensors":[{"euler":{"heading":75.2816457271409,"pitch":131.79504211004914,"roll":21.109289396880087},"location":"Left Knee"},{"euler":{"heading":74.17730840494077,"pitch":105.05370013010008,"roll":30.156101270937043},"location":"Left Ankle"},{"euler":{"heading":68.79518511447333,"pitch":-6.4733123256478065,"roll":-3.385012753182822},"location":"Right Ankle"},{"euler":{"heading":114.84235145864989,"pitch":-159.63045772503273,"roll":56.29204846277988},"location":"Right Hip"},{"euler":{"heading":89.70928364410449,"pitch":-109.84874077150894,"roll":-6.860738401956564},"location":"Right Knee"},{"euler":{"heading":24.63180559987973,"pitch":-136.8943313743165,"roll":56.83522944021743},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.756"} +{"sensors":[{"euler":{"heading":94.6472311544268,"pitch":133.12178789904422,"roll":21.904610457192078},"location":"Left Knee"},{"euler":{"heading":71.6408275644467,"pitch":103.59833011709007,"roll":28.484241143843338},"location":"Left Ankle"},{"euler":{"heading":68.740666603026,"pitch":-6.200981093083026,"roll":-3.6152614778645398},"location":"Right Ankle"},{"euler":{"heading":114.6518663127849,"pitch":-159.84241195252946,"roll":57.1690936165019},"location":"Right Hip"},{"euler":{"heading":90.48210527969405,"pitch":-110.27636669435805,"roll":-7.124664561760907},"location":"Right Knee"},{"euler":{"heading":23.274875039891757,"pitch":-135.08614823688484,"roll":56.15170649619569},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.856"} +{"sensors":[{"euler":{"heading":113.33250803898413,"pitch":135.21585910913979,"roll":23.46414941147287},"location":"Left Knee"},{"euler":{"heading":67.68299480800202,"pitch":102.16349710538107,"roll":25.079567029459007},"location":"Left Ankle"},{"euler":{"heading":68.1853499427234,"pitch":-5.8683829837747234,"roll":-3.8037353300780863},"location":"Right Ankle"},{"euler":{"heading":114.63042968150643,"pitch":-160.27067075727652,"roll":58.05843425485171},"location":"Right Hip"},{"euler":{"heading":91.96514475172465,"pitch":-110.64248002492224,"roll":-7.993448105584816},"location":"Right Knee"},{"euler":{"heading":22.716137535902583,"pitch":-133.85253341319637,"roll":55.680285846576126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.957"} +{"sensors":[{"euler":{"heading":137.34300723508574,"pitch":136.55052319822582,"roll":24.905234470325585},"location":"Left Knee"},{"euler":{"heading":64.60219532720183,"pitch":101.62214739484295,"roll":22.284110326513105},"location":"Left Ankle"},{"euler":{"heading":66.79806494845107,"pitch":-5.631544685397251,"roll":-4.235861797070278},"location":"Right Ankle"},{"euler":{"heading":114.94863671335578,"pitch":-161.00610368154886,"roll":58.90884082936654},"location":"Right Hip"},{"euler":{"heading":94.1686302765522,"pitch":-110.74698202243002,"roll":-9.637853295026336},"location":"Right Knee"},{"euler":{"heading":22.925773782312323,"pitch":-133.19228007187672,"roll":55.46850726191852},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.58"} +{"sensors":[{"euler":{"heading":124.27120651157716,"pitch":136.88922087840325,"roll":25.920961023293028},"location":"Left Knee"},{"euler":{"heading":63.204475794481645,"pitch":101.37243265535866,"roll":20.849449293861795},"location":"Left Ankle"},{"euler":{"heading":64.08075845360597,"pitch":-5.887140216857526,"roll":-4.8185256173632505},"location":"Right Ankle"},{"euler":{"heading":116.0850230420202,"pitch":-161.02424331339398,"roll":59.14920674642989},"location":"Right Hip"},{"euler":{"heading":97.06426724889698,"pitch":-110.47853382018702,"roll":-12.280317965523704},"location":"Right Knee"},{"euler":{"heading":23.11444640408109,"pitch":-132.82930206468905,"roll":55.52790653572667},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.159"} +{"sensors":[{"euler":{"heading":113.06908586041945,"pitch":136.62529879056294,"roll":26.666364920963723},"location":"Left Knee"},{"euler":{"heading":62.54027821503348,"pitch":101.29143938982281,"roll":20.002004364475617},"location":"Left Ankle"},{"euler":{"heading":60.647682608245375,"pitch":-6.4609261951717745,"roll":-5.4616730556269255},"location":"Right Ankle"},{"euler":{"heading":117.71402073781817,"pitch":-160.21556898205458,"roll":58.584286071786906},"location":"Right Hip"},{"euler":{"heading":99.84534052400728,"pitch":-110.26818043816833,"roll":-14.921036168971334},"location":"Right Knee"},{"euler":{"heading":23.67800176367298,"pitch":-133.10887185822014,"roll":55.85011588215401},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.259"} +{"sensors":[{"euler":{"heading":103.19342727437751,"pitch":136.06276891150665,"roll":27.16222842886735},"location":"Left Knee"},{"euler":{"heading":62.523750393530136,"pitch":101.19979545084053,"roll":19.708053928028058},"location":"Left Ankle"},{"euler":{"heading":59.03291434742084,"pitch":-7.108583575654597,"roll":-5.721755750064234},"location":"Right Ankle"},{"euler":{"heading":119.44261866403636,"pitch":-159.19401208384912,"roll":57.45085746460822},"location":"Right Hip"},{"euler":{"heading":100.71080647160656,"pitch":-109.7726123943515,"roll":-15.960182552074201},"location":"Right Knee"},{"euler":{"heading":24.422701587305685,"pitch":-134.19173467239813,"roll":56.24635429393861},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.360"} +{"sensors":[{"euler":{"heading":94.98033454693977,"pitch":135.21899202035598,"roll":27.27725558598062},"location":"Left Knee"},{"euler":{"heading":62.92137535417712,"pitch":101.22356590575647,"roll":19.79349853522525},"location":"Left Ankle"},{"euler":{"heading":59.68587291267876,"pitch":-7.9727252180891375,"roll":-4.99958017505781},"location":"Right Ankle"},{"euler":{"heading":120.55460679763273,"pitch":-158.4371108754642,"roll":56.105771718147395},"location":"Right Hip"},{"euler":{"heading":99.03972582444591,"pitch":-108.76410115491635,"roll":-14.84541429686678},"location":"Right Knee"},{"euler":{"heading":25.186681428575117,"pitch":-135.68506120515832,"roll":56.715468864544746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.461"} +{"sensors":[{"euler":{"heading":88.23230109224579,"pitch":134.1533428183204,"roll":26.96203002738256},"location":"Left Knee"},{"euler":{"heading":63.89798781875942,"pitch":101.38870931518082,"roll":20.401648681702724},"location":"Left Ankle"},{"euler":{"heading":62.44228562141089,"pitch":-8.287952696280223,"roll":-3.980872157552029},"location":"Right Ankle"},{"euler":{"heading":120.58039611786945,"pitch":-158.0621497879178,"roll":55.213944546332655},"location":"Right Hip"},{"euler":{"heading":95.59825324200132,"pitch":-107.97519103942471,"roll":-12.067122867180103},"location":"Right Knee"},{"euler":{"heading":26.074263285717606,"pitch":-137.4665550846425,"roll":57.25017197809028},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.562"} +{"sensors":[{"euler":{"heading":82.8840709830212,"pitch":132.99425853648836,"roll":26.028327024644305},"location":"Left Knee"},{"euler":{"heading":65.52068903688348,"pitch":101.67483838366273,"roll":21.798983813532452},"location":"Left Ankle"},{"euler":{"heading":64.8730570592698,"pitch":-8.390407426652201,"roll":-3.251534941796826},"location":"Right Ankle"},{"euler":{"heading":119.36610650608252,"pitch":-158.268434809126,"roll":54.85505009169939},"location":"Right Hip"},{"euler":{"heading":92.05717791780118,"pitch":-107.70892193548225,"roll":-9.341660580462092},"location":"Right Knee"},{"euler":{"heading":27.30433695714585,"pitch":-139.78864957617824,"roll":57.88140478028126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.663"} +{"sensors":[{"euler":{"heading":79.60816388471909,"pitch":132.10733268283954,"roll":23.919244322179875},"location":"Left Knee"},{"euler":{"heading":67.98112013319513,"pitch":102.51985454529647,"roll":24.681585432179208},"location":"Left Ankle"},{"euler":{"heading":66.12950135334282,"pitch":-8.357616683986981,"roll":-2.9638814476171436},"location":"Right Ankle"},{"euler":{"heading":118.92949585547427,"pitch":-158.2228413282134,"roll":54.77579508252945},"location":"Right Hip"},{"euler":{"heading":89.88271012602107,"pitch":-107.78802974193403,"roll":-7.644994522415883},"location":"Right Knee"},{"euler":{"heading":27.717653261431266,"pitch":-140.77853461856043,"roll":58.21826430225313},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.763"} +{"sensors":[{"euler":{"heading":78.15984749624718,"pitch":131.0153494145556,"roll":21.427319889961886},"location":"Left Knee"},{"euler":{"heading":71.26425811987562,"pitch":104.27411909076682,"roll":27.87592688896129},"location":"Left Ankle"},{"euler":{"heading":66.86030121800854,"pitch":-8.165605015588284,"roll":-2.917493302855429},"location":"Right Ankle"},{"euler":{"heading":118.09279626992685,"pitch":-158.3943071953921,"roll":55.2294655742765},"location":"Right Hip"},{"euler":{"heading":89.06318911341897,"pitch":-108.22797676774063,"roll":-6.7429950701742944},"location":"Right Knee"},{"euler":{"heading":27.014637935288143,"pitch":-139.28818115670438,"roll":58.24018787202782},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.864"} +{"sensors":[{"euler":{"heading":75.59386274662246,"pitch":130.83256447310004,"roll":20.065837900965697},"location":"Left Knee"},{"euler":{"heading":72.61283230788806,"pitch":104.08420718169013,"roll":29.36958420006516},"location":"Left Ankle"},{"euler":{"heading":67.13052109620769,"pitch":-7.880294514029456,"roll":-3.0632439725698863},"location":"Right Ankle"},{"euler":{"heading":117.76476664293418,"pitch":-158.3736264758529,"roll":55.906519016848854},"location":"Right Hip"},{"euler":{"heading":89.01937020207707,"pitch":-108.68642909096657,"roll":-6.412445563156865},"location":"Right Knee"},{"euler":{"heading":25.80692414175933,"pitch":-137.51561304103393,"roll":57.603669084825036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.965"} +{"sensors":[{"euler":{"heading":94.75322647196022,"pitch":131.99930802579001,"roll":20.678004110869125},"location":"Left Knee"},{"euler":{"heading":70.43904907709926,"pitch":103.08203646352112,"roll":27.976375780058643},"location":"Left Ankle"},{"euler":{"heading":66.96121898658691,"pitch":-7.4360150626265105,"roll":-3.2881695753128977},"location":"Right Ankle"},{"euler":{"heading":117.52578997864077,"pitch":-158.4050138282676,"roll":56.69711711516397},"location":"Right Hip"},{"euler":{"heading":89.59868318186936,"pitch":-109.23653618186992,"roll":-6.577451006841179},"location":"Right Knee"},{"euler":{"heading":24.413731727583396,"pitch":-135.57030173693053,"roll":56.855802176342536},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.66"} +{"sensors":[{"euler":{"heading":113.47165382476419,"pitch":134.136877223211,"roll":22.241453699782216},"location":"Left Knee"},{"euler":{"heading":66.57014416938934,"pitch":101.886332817169,"roll":24.628738202052777},"location":"Left Ankle"},{"euler":{"heading":66.25884708792823,"pitch":-6.848663556363859,"roll":-3.684352617781608},"location":"Right Ankle"},{"euler":{"heading":117.3544609807767,"pitch":-158.55826244544087,"roll":57.53990540364757},"location":"Right Hip"},{"euler":{"heading":90.90131486368243,"pitch":-109.86913256368294,"roll":-7.325955906157061},"location":"Right Knee"},{"euler":{"heading":23.528608554825055,"pitch":-134.14452156323748,"roll":56.25772195870828},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.167"} +{"sensors":[{"euler":{"heading":130.75573844228776,"pitch":136.0419395008899,"roll":23.742308329803997},"location":"Left Knee"},{"euler":{"heading":63.1193797524504,"pitch":101.2914495354521,"roll":21.503364381847497},"location":"Left Ankle"},{"euler":{"heading":64.7767123791354,"pitch":-6.295047200727473,"roll":-4.2596673560034475},"location":"Right Ankle"},{"euler":{"heading":117.31276488269901,"pitch":-159.10868620089678,"roll":58.44216486328282},"location":"Right Hip"},{"euler":{"heading":93.0111833773142,"pitch":-110.28846930731464,"roll":-8.793360315541356},"location":"Right Knee"},{"euler":{"heading":23.29449769934255,"pitch":-133.31131940691373,"roll":55.86319976283745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.268"} +{"sensors":[{"euler":{"heading":118.13641459805899,"pitch":136.71274555080092,"roll":24.9243274968236},"location":"Left Knee"},{"euler":{"heading":61.58869177720536,"pitch":101.18105458190689,"roll":19.896777943662748},"location":"Left Ankle"},{"euler":{"heading":62.03654114122186,"pitch":-6.371792480654726,"roll":-4.952450620403103},"location":"Right Ankle"},{"euler":{"heading":117.95648839442912,"pitch":-157.66031758080712,"roll":58.91044837695454},"location":"Right Hip"},{"euler":{"heading":96.05381503958277,"pitch":-110.01587237658319,"roll":-11.39527428398722},"location":"Right Knee"},{"euler":{"heading":23.083797929408295,"pitch":-132.73643746622236,"roll":55.68312978655371},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.369"} +{"sensors":[{"euler":{"heading":107.7477731382531,"pitch":136.51022099572083,"roll":25.881894747141242},"location":"Left Knee"},{"euler":{"heading":61.11107259948483,"pitch":101.41919912371621,"roll":18.957100149296476},"location":"Left Ankle"},{"euler":{"heading":58.589137027099675,"pitch":-6.565863232589253,"roll":-5.882205558362792},"location":"Right Ankle"},{"euler":{"heading":119.1670895549862,"pitch":-157.1630358227264,"roll":58.43815353925909},"location":"Right Hip"},{"euler":{"heading":98.9921835356245,"pitch":-109.93303513892488,"roll":-14.018246855588497},"location":"Right Knee"},{"euler":{"heading":23.469168136467466,"pitch":-132.80654371960014,"roll":55.83981680789834},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.469"} +{"sensors":[{"euler":{"heading":98.92299582442779,"pitch":135.72169889614875,"roll":26.61245527242712},"location":"Left Knee"},{"euler":{"heading":61.44371533953635,"pitch":101.8210292113446,"roll":18.648890134366827},"location":"Left Ankle"},{"euler":{"heading":57.017723324389706,"pitch":-7.096776909330328,"roll":-6.306485002526514},"location":"Right Ankle"},{"euler":{"heading":120.89413059948758,"pitch":-156.50923224045377,"roll":57.17558818533318},"location":"Right Hip"},{"euler":{"heading":99.79921518206206,"pitch":-109.3459816250324,"roll":-15.028922170029647},"location":"Right Knee"},{"euler":{"heading":24.34100132282072,"pitch":-133.55713934764015,"roll":56.224585127108504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.570"} +{"sensors":[{"euler":{"heading":91.49944624198501,"pitch":134.66202900653388,"roll":26.95745974518441},"location":"Left Knee"},{"euler":{"heading":62.511843805582714,"pitch":102.30767629021014,"roll":18.984001120930145},"location":"Left Ankle"},{"euler":{"heading":57.847200991950736,"pitch":-7.824599218397295,"roll":-5.719586502273862},"location":"Right Ankle"},{"euler":{"heading":121.79846753953883,"pitch":-156.30205901640838,"roll":55.689279366799866},"location":"Right Hip"},{"euler":{"heading":98.21304366385586,"pitch":-108.32388346252915,"roll":-13.988529953026683},"location":"Right Knee"},{"euler":{"heading":25.25690119053865,"pitch":-134.87017541287614,"roll":56.65212661439766},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.671"} +{"sensors":[{"euler":{"heading":85.37450161778652,"pitch":133.4520761058805,"roll":26.811713770665968},"location":"Left Knee"},{"euler":{"heading":63.85440942502444,"pitch":102.78940866118913,"roll":19.70435100883713},"location":"Left Ankle"},{"euler":{"heading":60.60623089275567,"pitch":-8.210889296557566,"roll":-4.635127852046476},"location":"Right Ankle"},{"euler":{"heading":121.67487078558496,"pitch":-156.35935311476754,"roll":54.77035143011988},"location":"Right Hip"},{"euler":{"heading":94.80423929747026,"pitch":-107.44149511627624,"roll":-11.277176957724015},"location":"Right Knee"},{"euler":{"heading":26.212461071484785,"pitch":-136.50190787158851,"roll":57.218163952957894},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.772"} +{"sensors":[{"euler":{"heading":80.48705145600788,"pitch":132.22561849529245,"roll":26.04929239359937},"location":"Left Knee"},{"euler":{"heading":65.787718482522,"pitch":103.34796779507022,"roll":21.165165907953416},"location":"Left Ankle"},{"euler":{"heading":63.3831078034801,"pitch":-8.22105036690181,"roll":-3.8028650668418282},"location":"Right Ankle"},{"euler":{"heading":120.33238370702647,"pitch":-156.8984178032908,"roll":54.48706628710789},"location":"Right Hip"},{"euler":{"heading":91.43631536772324,"pitch":-107.18484560464861,"roll":-8.730709261951613},"location":"Right Knee"},{"euler":{"heading":27.316214964336307,"pitch":-138.63921708442967,"roll":57.777597557662105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.874"} +{"sensors":[{"euler":{"heading":77.21959631040708,"pitch":131.25930664576322,"roll":24.213113154239434},"location":"Left Knee"},{"euler":{"heading":68.0901966342698,"pitch":103.9819210155632,"roll":23.842399317158073},"location":"Left Ankle"},{"euler":{"heading":64.9635470231321,"pitch":-8.16144533021163,"roll":-3.4538285601576453},"location":"Right Ankle"},{"euler":{"heading":119.40539533632382,"pitch":-157.33982602296172,"roll":54.49460965839711},"location":"Right Hip"},{"euler":{"heading":89.33643383095092,"pitch":-107.37886104418376,"roll":-7.020138335756452},"location":"Right Knee"},{"euler":{"heading":27.878343467902678,"pitch":-139.8940453759867,"roll":58.14983780189589},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.974"} +{"sensors":[{"euler":{"heading":75.77263667936639,"pitch":130.1208759811869,"roll":21.841801838815492},"location":"Left Knee"},{"euler":{"heading":71.03742697084283,"pitch":105.16497891400688,"roll":27.139409385442264},"location":"Left Ankle"},{"euler":{"heading":65.98594232081889,"pitch":-7.932800797190467,"roll":-3.352195704141881},"location":"Right Ankle"},{"euler":{"heading":118.36485580269145,"pitch":-157.81209342066555,"roll":54.9888986925574},"location":"Right Hip"},{"euler":{"heading":88.49029044785584,"pitch":-107.89097493976539,"roll":-6.136874502180807},"location":"Right Knee"},{"euler":{"heading":27.37175912111241,"pitch":-138.77964083838805,"roll":58.22235402170631},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.74"} +{"sensors":[{"euler":{"heading":73.41412301142975,"pitch":130.07753838306823,"roll":20.332621654933945},"location":"Left Knee"},{"euler":{"heading":72.24618427375856,"pitch":104.38598102260619,"roll":28.856718446898036},"location":"Left Ankle"},{"euler":{"heading":66.56234808873701,"pitch":-7.67077071747142,"roll":-3.385726133727693},"location":"Right Ankle"},{"euler":{"heading":117.69712022242231,"pitch":-158.162134078599,"roll":55.733758823301656},"location":"Right Hip"},{"euler":{"heading":88.47251140307026,"pitch":-108.40812744578885,"roll":-5.860687051962727},"location":"Right Knee"},{"euler":{"heading":25.86583320900117,"pitch":-137.07667675454925,"roll":57.54386861953569},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.175"} +{"sensors":[{"euler":{"heading":92.63521071028678,"pitch":131.21353454476142,"roll":20.81185948944055},"location":"Left Knee"},{"euler":{"heading":70.4590658463827,"pitch":103.17863292034558,"roll":27.708546602208234},"location":"Left Ankle"},{"euler":{"heading":66.82486327986331,"pitch":-7.409943645724278,"roll":-3.553403520354924},"location":"Right Ankle"},{"euler":{"heading":117.38365820018008,"pitch":-158.4834206707391,"roll":56.5478829409715},"location":"Right Hip"},{"euler":{"heading":89.03151026276323,"pitch":-108.84856470120997,"roll":-6.080868346766454},"location":"Right Knee"},{"euler":{"heading":24.341749888101052,"pitch":-135.24400907909433,"roll":56.71448175758212},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.276"} +{"sensors":[{"euler":{"heading":111.58418963925811,"pitch":133.29218109028528,"roll":22.380673540496495},"location":"Left Knee"},{"euler":{"heading":66.67565926174443,"pitch":101.97951962831102,"roll":24.42519194198741},"location":"Left Ankle"},{"euler":{"heading":66.47987695187697,"pitch":-6.96269928115185,"roll":-4.123063168319431},"location":"Right Ankle"},{"euler":{"heading":117.30154238016208,"pitch":-158.89757860366518,"roll":57.34309464687435},"location":"Right Hip"},{"euler":{"heading":90.24085923648691,"pitch":-109.33245823108898,"roll":-6.85403151208981},"location":"Right Knee"},{"euler":{"heading":23.401324899290945,"pitch":-134.09460817118492,"roll":55.99928358182392},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.376"} +{"sensors":[{"euler":{"heading":135.3507706753323,"pitch":135.18796298125676,"roll":23.886356186446847},"location":"Left Knee"},{"euler":{"heading":63.44559333556999,"pitch":101.29406766547993,"roll":21.48892274778867},"location":"Left Ankle"},{"euler":{"heading":65.16938925668929,"pitch":-6.591429353036665,"roll":-4.823256851487488},"location":"Right Ankle"},{"euler":{"heading":117.47763814214586,"pitch":-159.66407074329868,"roll":58.07128518218691},"location":"Right Hip"},{"euler":{"heading":92.32927331283823,"pitch":-109.64921240798009,"roll":-8.456128360880829},"location":"Right Knee"},{"euler":{"heading":23.15494240936185,"pitch":-133.24764735406643,"roll":55.58685522364153},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.477"} +{"sensors":[{"euler":{"heading":121.82194360779908,"pitch":134.46916668313108,"roll":25.097720567802163},"location":"Left Knee"},{"euler":{"heading":61.776034002012985,"pitch":100.92716089893194,"roll":19.840030473009804},"location":"Left Ankle"},{"euler":{"heading":62.27120033102036,"pitch":-6.626036417732999,"roll":-5.5596811663387395},"location":"Right Ankle"},{"euler":{"heading":118.31112432793128,"pitch":-159.86016366896882,"roll":58.25790666396822},"location":"Right Hip"},{"euler":{"heading":95.1338459815544,"pitch":-109.50304116718209,"roll":-11.041765524792748},"location":"Right Knee"},{"euler":{"heading":22.689448168425667,"pitch":-132.50413261865978,"roll":55.396919701277376},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.578"} +{"sensors":[{"euler":{"heading":110.43349924701918,"pitch":134.76600001481796,"roll":26.01294851102195},"location":"Left Knee"},{"euler":{"heading":60.879680601811685,"pitch":100.72819480903875,"roll":18.824777425708824},"location":"Left Ankle"},{"euler":{"heading":58.83158029791833,"pitch":-6.838432775959699,"roll":-6.184963049704866},"location":"Right Ankle"},{"euler":{"heading":119.61751189513816,"pitch":-159.09914730207194,"roll":57.7008659975714},"location":"Right Hip"},{"euler":{"heading":97.68296138339896,"pitch":-109.6714870504639,"roll":-13.456338972313475},"location":"Right Knee"},{"euler":{"heading":22.6517533515831,"pitch":-132.4662193567938,"roll":55.500977731149646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.679"} +{"sensors":[{"euler":{"heading":100.67139932231727,"pitch":134.60190001333615,"roll":26.667903659919755},"location":"Left Knee"},{"euler":{"heading":60.747962541630514,"pitch":100.64287532813488,"roll":18.411049683137943},"location":"Left Ankle"},{"euler":{"heading":57.3109222681265,"pitch":-7.25458949836373,"roll":-6.397716744734379},"location":"Right Ankle"},{"euler":{"heading":121.03701070562434,"pitch":-158.20798257186476,"roll":56.51202939781426},"location":"Right Hip"},{"euler":{"heading":98.36466524505907,"pitch":-109.35433834541752,"roll":-14.166955075082129},"location":"Right Knee"},{"euler":{"heading":22.99907801642479,"pitch":-133.06959742111442,"roll":55.82587995803468},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.779"} +{"sensors":[{"euler":{"heading":92.50425939008555,"pitch":134.03546001200255,"roll":26.98861329392778},"location":"Left Knee"},{"euler":{"heading":60.96691628746747,"pitch":100.6535877953214,"roll":18.36369471482415},"location":"Left Ankle"},{"euler":{"heading":58.36733004131385,"pitch":-8.066630548527357,"roll":-5.807945070260941},"location":"Right Ankle"},{"euler":{"heading":121.7833096350619,"pitch":-157.73093431467828,"roll":55.19207645803283},"location":"Right Hip"},{"euler":{"heading":96.47819872055317,"pitch":-108.48140451087576,"roll":-12.819009567573916},"location":"Right Knee"},{"euler":{"heading":23.630420214782312,"pitch":-134.26888767900297,"roll":56.23079196223122},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.880"} +{"sensors":[{"euler":{"heading":85.978833451077,"pitch":133.16941401080229,"roll":26.852251964535004},"location":"Left Knee"},{"euler":{"heading":61.76397465872073,"pitch":100.90697901578926,"roll":18.827325243341736},"location":"Left Ankle"},{"euler":{"heading":61.211847037182466,"pitch":-8.484967493674622,"roll":-4.739650563234847},"location":"Right Ankle"},{"euler":{"heading":121.62997867155572,"pitch":-157.57034088321046,"roll":54.36661881222955},"location":"Right Hip"},{"euler":{"heading":93.20537884849786,"pitch":-107.78951405978819,"roll":-9.955858610816524},"location":"Right Knee"},{"euler":{"heading":24.492378193304084,"pitch":-135.77949891110268,"roll":56.7889627660081},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.980"} +{"sensors":[{"euler":{"heading":80.74345010596929,"pitch":132.17122260972207,"roll":26.167026768081502},"location":"Left Knee"},{"euler":{"heading":63.143827192848654,"pitch":101.29128111421034,"roll":19.938342719007565},"location":"Left Ankle"},{"euler":{"heading":64.00941233346423,"pitch":-8.54897074430716,"roll":-3.940685506911363},"location":"Right Ankle"},{"euler":{"heading":120.22948080440015,"pitch":-157.95705679488944,"roll":54.129956931006596},"location":"Right Hip"},{"euler":{"heading":89.69109096364808,"pitch":-107.67306265380938,"roll":-7.335272749734871},"location":"Right Knee"},{"euler":{"heading":25.64314037397368,"pitch":-137.8140490199924,"roll":57.42881648940729},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.81"} +{"sensors":[{"euler":{"heading":77.19410509537236,"pitch":131.48535034874988,"roll":24.38782409127335},"location":"Left Knee"},{"euler":{"heading":64.8794444735638,"pitch":101.58715300278931,"roll":22.28200844710681},"location":"Left Ankle"},{"euler":{"heading":65.8084711001178,"pitch":-8.519073669876445,"roll":-3.7591169562202267},"location":"Right Ankle"},{"euler":{"heading":119.54403272396014,"pitch":-158.1551011154005,"roll":54.154461237905934},"location":"Right Hip"},{"euler":{"heading":87.40323186728328,"pitch":-107.83700638842845,"roll":-5.595495474761384},"location":"Right Knee"},{"euler":{"heading":26.466326336576312,"pitch":-139.18264411799316,"roll":57.860934840466555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.182"} +{"sensors":[{"euler":{"heading":75.35594458583512,"pitch":130.7305653138749,"roll":22.136541682146017},"location":"Left Knee"},{"euler":{"heading":67.27900002620741,"pitch":102.47843770251038,"roll":25.24130760239613},"location":"Left Ankle"},{"euler":{"heading":67.16512399010603,"pitch":-8.5359163028888,"roll":-3.564455260598204},"location":"Right Ankle"},{"euler":{"heading":118.37712945156414,"pitch":-158.67084100386046,"roll":54.695265114115344},"location":"Right Hip"},{"euler":{"heading":86.51290868055494,"pitch":-108.2158057495856,"roll":-4.6671959272852455},"location":"Right Knee"},{"euler":{"heading":25.81969370291868,"pitch":-138.46437970619385,"roll":57.8185913564199},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.283"} +{"sensors":[{"euler":{"heading":72.84535012725162,"pitch":130.58250878248742,"roll":20.735387513931418},"location":"Left Knee"},{"euler":{"heading":68.57610002358668,"pitch":102.01184393225934,"roll":26.81717684215652},"location":"Left Ankle"},{"euler":{"heading":67.99236159109542,"pitch":-8.494824672599922,"roll":-3.5830097345383836},"location":"Right Ankle"},{"euler":{"heading":117.75816650640773,"pitch":-158.9912569034744,"roll":55.40698860270381},"location":"Right Hip"},{"euler":{"heading":86.45536781249945,"pitch":-108.57547517462704,"roll":-4.337976334556721},"location":"Right Knee"},{"euler":{"heading":24.60647433262681,"pitch":-136.89294173557448,"roll":57.21798222077791},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.385"} +{"sensors":[{"euler":{"heading":66.79831511452646,"pitch":131.5492579042387,"roll":21.174348762538276},"location":"Left Knee"},{"euler":{"heading":67.218490021228,"pitch":101.0794095390334,"roll":25.816709157940867},"location":"Left Ankle"},{"euler":{"heading":68.39312543198588,"pitch":-8.44534220533993,"roll":-3.743458761084545},"location":"Right Ankle"},{"euler":{"heading":117.66359985576696,"pitch":-159.21088121312698,"roll":56.15378974243343},"location":"Right Hip"},{"euler":{"heading":86.99108103124951,"pitch":-108.81792765716435,"roll":-4.541678701101049},"location":"Right Knee"},{"euler":{"heading":23.214576899364133,"pitch":-135.19739756201704,"roll":56.364933998700124},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.485"} +{"sensors":[{"euler":{"heading":94.77473360307381,"pitch":133.49433211381483,"roll":22.738163886284447},"location":"Left Knee"},{"euler":{"heading":63.82164101910521,"pitch":100.09646858513007,"roll":22.74753824214678},"location":"Left Ankle"},{"euler":{"heading":68.0475628887873,"pitch":-8.250807984805936,"roll":-4.200362884976091},"location":"Right Ankle"},{"euler":{"heading":117.82223987019026,"pitch":-159.5022930918143,"roll":56.88216076819009},"location":"Right Hip"},{"euler":{"heading":88.12322292812456,"pitch":-109.05488489144793,"roll":-5.281260830990945},"location":"Right Knee"},{"euler":{"heading":22.43686920942772,"pitch":-133.92765780581533,"roll":55.70344059883011},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.586"} +{"sensors":[{"euler":{"heading":119.54726024276643,"pitch":135.56364890243336,"roll":24.383097497656003},"location":"Left Knee"},{"euler":{"heading":60.57697691719469,"pitch":99.48057172661706,"roll":19.622784417932102},"location":"Left Ankle"},{"euler":{"heading":66.87405659990857,"pitch":-7.9319771863253425,"roll":-4.842826596478481},"location":"Right Ankle"},{"euler":{"heading":118.10876588317123,"pitch":-160.12706378263286,"roll":57.60019469137108},"location":"Right Hip"},{"euler":{"heading":89.93590063531211,"pitch":-109.26189640230314,"roll":-6.671884747891851},"location":"Right Knee"},{"euler":{"heading":22.32443228848495,"pitch":-133.1723920252338,"roll":55.2518465389471},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.687"} +{"sensors":[{"euler":{"heading":143.48003421848978,"pitch":134.80728401219002,"roll":25.694787747890402},"location":"Left Knee"},{"euler":{"heading":59.16927922547522,"pitch":99.35751455395535,"roll":18.035505976138893},"location":"Left Ankle"},{"euler":{"heading":64.3804009399177,"pitch":-7.945029467692809,"roll":-5.577293936830634},"location":"Right Ankle"},{"euler":{"heading":118.66038929485411,"pitch":-160.76435740436958,"roll":58.20892522223397},"location":"Right Hip"},{"euler":{"heading":92.7235605717809,"pitch":-109.17945676207283,"roll":-9.098446273102667},"location":"Right Knee"},{"euler":{"heading":22.423239059636455,"pitch":-132.5864028227104,"roll":55.032911885052386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.787"} +{"sensors":[{"euler":{"heading":129.9757807966408,"pitch":134.93905561097102,"roll":26.631558973101363},"location":"Left Knee"},{"euler":{"heading":58.7023513029277,"pitch":99.44676309855983,"roll":17.219455378525005},"location":"Left Ankle"},{"euler":{"heading":60.61736084592594,"pitch":-7.750526520923529,"roll":-6.55081454314757},"location":"Right Ankle"},{"euler":{"heading":119.7568503653687,"pitch":-160.30042166393264,"roll":58.038032700010575},"location":"Right Hip"},{"euler":{"heading":95.8012045146028,"pitch":-109.64276108586554,"roll":-11.926101645792402},"location":"Right Knee"},{"euler":{"heading":22.59966515367281,"pitch":-132.26526254043938,"roll":55.12337069654715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.889"} +{"sensors":[{"euler":{"heading":118.07195271697672,"pitch":134.74515004987393,"roll":27.274653075791228},"location":"Left Knee"},{"euler":{"heading":58.70086617263493,"pitch":99.49583678870385,"roll":16.897509840672505},"location":"Left Ankle"},{"euler":{"heading":58.24937476133334,"pitch":-7.844223868831176,"roll":-7.020733088832814},"location":"Right Ankle"},{"euler":{"heading":121.28116532883183,"pitch":-159.3891294975394,"roll":57.06547943000952},"location":"Right Hip"},{"euler":{"heading":97.60858406314253,"pitch":-109.703484977279,"roll":-13.745991481213164},"location":"Right Knee"},{"euler":{"heading":22.98344863830553,"pitch":-132.76998628639544,"roll":55.37353362689244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.989"} +{"sensors":[{"euler":{"heading":109.45225744527906,"pitch":134.20188504488652,"roll":27.634687768212103},"location":"Left Knee"},{"euler":{"heading":59.218279555371446,"pitch":99.68375310983348,"roll":16.989008856605253},"location":"Left Ankle"},{"euler":{"heading":58.511937285200005,"pitch":-8.466051481948059,"roll":-6.637409779949532},"location":"Right Ankle"},{"euler":{"heading":122.25304879594864,"pitch":-158.75646654778546,"roll":55.77143148700857},"location":"Right Hip"},{"euler":{"heading":96.88522565682827,"pitch":-108.93313647955111,"roll":-13.452642333091848},"location":"Right Knee"},{"euler":{"heading":23.441353774474976,"pitch":-133.78673765775588,"roll":55.69868026420319},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.89"} +{"sensors":[{"euler":{"heading":100.93828170075116,"pitch":133.33169654039787,"roll":27.577468991390894},"location":"Left Knee"},{"euler":{"heading":60.1464515998343,"pitch":100.04037779885013,"roll":17.48385797094473},"location":"Left Ankle"},{"euler":{"heading":60.704493556680006,"pitch":-8.988196333753253,"roll":-5.573668801954579},"location":"Right Ankle"},{"euler":{"heading":122.17774391635379,"pitch":-158.55581989300694,"roll":54.74428833830771},"location":"Right Hip"},{"euler":{"heading":94.17795309114544,"pitch":-108.033572831596,"roll":-11.226128099782665},"location":"Right Knee"},{"euler":{"heading":24.07846839702748,"pitch":-134.9893138919803,"roll":56.21006223778288},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.190"} +{"sensors":[{"euler":{"heading":93.83820353067605,"pitch":132.3672768863581,"roll":26.988472092251804},"location":"Left Knee"},{"euler":{"heading":61.54430643985087,"pitch":100.42384001896512,"roll":18.529222173850258},"location":"Left Ankle"},{"euler":{"heading":63.64029420101201,"pitch":-9.314376700377927,"roll":-4.591301921759121},"location":"Right Ankle"},{"euler":{"heading":120.89746952471842,"pitch":-158.83773790370623,"roll":54.35110950447694},"location":"Right Hip"},{"euler":{"heading":90.9226577820309,"pitch":-107.3927155484364,"roll":-8.353515289804399},"location":"Right Knee"},{"euler":{"heading":24.820621557324735,"pitch":-136.69038250278226,"roll":56.77030601400459},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.291"} +{"sensors":[{"euler":{"heading":88.46063317760844,"pitch":131.46179919772229,"roll":25.483374883026627},"location":"Left Knee"},{"euler":{"heading":63.60237579586578,"pitch":100.75020601706862,"roll":20.676299956465233},"location":"Left Ankle"},{"euler":{"heading":65.37001478091082,"pitch":-9.251689030340135,"roll":-4.182171729583209},"location":"Right Ankle"},{"euler":{"heading":119.67022257224657,"pitch":-159.19771411333562,"roll":54.27849855402924},"location":"Right Hip"},{"euler":{"heading":88.43664200382781,"pitch":-107.48469399359276,"roll":-6.311913760823959},"location":"Right Knee"},{"euler":{"heading":25.438559401592265,"pitch":-138.00259425250403,"roll":57.31202541260413},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.392"} +{"sensors":[{"euler":{"heading":85.0083198598476,"pitch":130.62186927795005,"roll":23.303787394723965},"location":"Left Knee"},{"euler":{"heading":67.01088821627921,"pitch":101.71893541536177,"roll":24.23366996081871},"location":"Left Ankle"},{"euler":{"heading":66.57051330281975,"pitch":-9.114020127306121,"roll":-3.9264545566248885},"location":"Right Ankle"},{"euler":{"heading":118.47820031502192,"pitch":-159.56544270200206,"roll":54.631898698626316},"location":"Right Hip"},{"euler":{"heading":87.21172780344504,"pitch":-107.91122459423347,"roll":-5.118222384741563},"location":"Right Knee"},{"euler":{"heading":24.638453461433038,"pitch":-136.98358482725362,"roll":57.34332287134372},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.493"} +{"sensors":[{"euler":{"heading":81.49498787386284,"pitch":130.37843235015507,"roll":21.735908655251567},"location":"Left Knee"},{"euler":{"heading":69.26604939465129,"pitch":101.4157918738256,"roll":26.466552964736838},"location":"Left Ankle"},{"euler":{"heading":67.35721197253777,"pitch":-8.85886811457551,"roll":-3.8963091009624},"location":"Right Ankle"},{"euler":{"heading":117.66788028351974,"pitch":-159.91514843180187,"roll":55.293708828763684},"location":"Right Hip"},{"euler":{"heading":86.75930502310054,"pitch":-108.43885213481013,"roll":-4.531400146267407},"location":"Right Knee"},{"euler":{"heading":23.212108115289737,"pitch":-135.22272634452827,"roll":56.777740584209354},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.594"} +{"sensors":[{"euler":{"heading":74.68923908647656,"pitch":131.37808911513957,"roll":21.95606778972641},"location":"Left Knee"},{"euler":{"heading":68.43319445518617,"pitch":100.30546268644304,"roll":25.913647668263156},"location":"Left Ankle"},{"euler":{"heading":67.658990775284,"pitch":-8.441731303117958,"roll":-4.100428190866159},"location":"Right Ankle"},{"euler":{"heading":117.07609225516777,"pitch":-160.1548835886217,"roll":56.13308794588732},"location":"Right Hip"},{"euler":{"heading":86.90837452079049,"pitch":-109.01371692132912,"roll":-4.428260131640666},"location":"Right Knee"},{"euler":{"heading":21.859647303760763,"pitch":-133.38795371007546,"roll":56.01246652578842},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.695"} +{"sensors":[{"euler":{"heading":95.13906517782891,"pitch":133.5027802036256,"roll":23.447961010753772},"location":"Left Knee"},{"euler":{"heading":64.92737500966756,"pitch":99.23741641779874,"roll":22.95353290143684},"location":"Left Ankle"},{"euler":{"heading":67.4118416977556,"pitch":-7.885058172806162,"roll":-4.384135371779544},"location":"Right Ankle"},{"euler":{"heading":116.77473302965099,"pitch":-160.5518952297595,"roll":56.982279151298584},"location":"Right Hip"},{"euler":{"heading":87.81128706871144,"pitch":-109.5685952291962,"roll":-4.9479341184766},"location":"Right Knee"},{"euler":{"heading":20.904932573384688,"pitch":-131.8804083390679,"roll":55.42371987320958},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.796"} +{"sensors":[{"euler":{"heading":114.25015866004603,"pitch":135.82125218326306,"roll":24.946914909678394},"location":"Left Knee"},{"euler":{"heading":61.3346375087008,"pitch":98.54492477601887,"roll":19.701929611293156},"location":"Left Ankle"},{"euler":{"heading":66.24565752798004,"pitch":-7.246552355525546,"roll":-5.133221834601589},"location":"Right Ankle"},{"euler":{"heading":116.8535097266859,"pitch":-160.99045570678356,"roll":57.74655123616873},"location":"Right Hip"},{"euler":{"heading":89.5364083618403,"pitch":-109.9992357062766,"roll":-6.203140706628941},"location":"Right Knee"},{"euler":{"heading":20.61443931604622,"pitch":-131.07361750516114,"roll":54.987597885888626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.897"} +{"sensors":[{"euler":{"heading":138.47514279404143,"pitch":136.92662696493676,"roll":26.189723418710557},"location":"Left Knee"},{"euler":{"heading":59.738673757830725,"pitch":98.484182298417,"roll":18.019236650163844},"location":"Left Ankle"},{"euler":{"heading":63.927341775182036,"pitch":-7.128147119972992,"roll":-5.794899651141431},"location":"Right Ankle"},{"euler":{"heading":117.13690875401731,"pitch":-161.5164101361052,"roll":58.421896112551856},"location":"Right Hip"},{"euler":{"heading":92.21401752565629,"pitch":-110.00556213564894,"roll":-8.451576635966047},"location":"Right Knee"},{"euler":{"heading":20.584245384441598,"pitch":-130.66000575464503,"roll":54.77008809729976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.997"} +{"sensors":[{"euler":{"heading":125.1401285146373,"pitch":137.0652142684431,"roll":27.170751076839505},"location":"Left Knee"},{"euler":{"heading":59.058556382047655,"pitch":98.6045140685753,"roll":17.06106298514746},"location":"Left Ankle"},{"euler":{"heading":60.184607597663835,"pitch":-6.734082407975692,"roll":-6.734159686027287},"location":"Right Ankle"},{"euler":{"heading":118.14196787861559,"pitch":-160.9897691224947,"roll":58.36720650129667},"location":"Right Hip"},{"euler":{"heading":95.11136577309067,"pitch":-110.52375592208405,"roll":-11.081418972369443},"location":"Right Knee"},{"euler":{"heading":20.850820845997436,"pitch":-130.57525517918052,"roll":54.93057928756979},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.99"} +{"sensors":[{"euler":{"heading":113.70111566317357,"pitch":136.6961928415988,"roll":27.872425969155554},"location":"Left Knee"},{"euler":{"heading":59.02145074384289,"pitch":98.76281266171777,"roll":16.60495668663271},"location":"Left Ankle"},{"euler":{"heading":57.65989683789745,"pitch":-6.6856741671781235,"roll":-6.966993717424558},"location":"Right Ankle"},{"euler":{"heading":119.37777109075402,"pitch":-160.10954221024522,"roll":57.555485851167006},"location":"Right Hip"},{"euler":{"heading":96.36272919578161,"pitch":-110.52138032987564,"roll":-12.660777075132499},"location":"Right Knee"},{"euler":{"heading":21.428238761397694,"pitch":-131.25522966126246,"roll":55.281271358812816},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.200"} +{"sensors":[{"euler":{"heading":104.09350409685622,"pitch":135.90782355743892,"roll":28.27268337224},"location":"Left Knee"},{"euler":{"heading":59.60680566945861,"pitch":99.086531395546,"roll":16.663211017969438},"location":"Left Ankle"},{"euler":{"heading":57.63765715410771,"pitch":-7.017106750460311,"roll":-6.645294345682102},"location":"Right Ankle"},{"euler":{"heading":120.28374398167863,"pitch":-159.4360879892207,"roll":56.33118726605031},"location":"Right Hip"},{"euler":{"heading":95.25145627620346,"pitch":-109.90674229688808,"roll":-12.21969936761925},"location":"Right Knee"},{"euler":{"heading":22.304164885257926,"pitch":-132.4672066951362,"roll":55.77814422293154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.300"} +{"sensors":[{"euler":{"heading":96.1841536871706,"pitch":134.80454120169503,"roll":28.226665035016},"location":"Left Knee"},{"euler":{"heading":60.53987510251275,"pitch":99.51537825599141,"roll":17.153139916172492},"location":"Left Ankle"},{"euler":{"heading":59.63014143869694,"pitch":-7.65289607541428,"roll":-5.580764911113892},"location":"Right Ankle"},{"euler":{"heading":120.30536958351077,"pitch":-159.24872919029863,"roll":55.29181853944528},"location":"Right Hip"},{"euler":{"heading":92.6513106485831,"pitch":-108.86606806719928,"roll":-10.197729430857324},"location":"Right Knee"},{"euler":{"heading":23.261248396732135,"pitch":-133.94548602562259,"roll":56.40032980063839},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.401"} +{"sensors":[{"euler":{"heading":89.60948831845356,"pitch":133.61783708152552,"roll":27.6539985315144},"location":"Left Knee"},{"euler":{"heading":61.96088759226148,"pitch":100.02009043039227,"roll":18.21907592455524},"location":"Left Ankle"},{"euler":{"heading":62.90462729482725,"pitch":-7.9938564678728525,"roll":-4.535188420002504},"location":"Right Ankle"},{"euler":{"heading":119.03108262515968,"pitch":-159.59260627126878,"roll":55.025136685500755},"location":"Right Hip"},{"euler":{"heading":89.1049295837248,"pitch":-108.19821126047935,"roll":-7.096706487771591},"location":"Right Knee"},{"euler":{"heading":24.185123557058922,"pitch":-135.77593742306033,"roll":57.06029682057455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.502"} +{"sensors":[{"euler":{"heading":84.7172894866082,"pitch":132.43105337337298,"roll":26.21359867836296},"location":"Left Knee"},{"euler":{"heading":64.00854883303533,"pitch":100.54308138735306,"roll":20.322168332099718},"location":"Left Ankle"},{"euler":{"heading":64.95166456534453,"pitch":-8.188220821085567,"roll":-3.962919578002254},"location":"Right Ankle"},{"euler":{"heading":117.86547436264371,"pitch":-160.06459564414192,"roll":54.92262301695068},"location":"Right Hip"},{"euler":{"heading":86.57568662535232,"pitch":-108.02839013443143,"roll":-4.937035838994432},"location":"Right Knee"},{"euler":{"heading":25.197861201353028,"pitch":-137.6108436807543,"roll":57.75426713851709},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.602"} +{"sensors":[{"euler":{"heading":82.00806053794739,"pitch":131.21919803603566,"roll":23.879738810526664},"location":"Left Knee"},{"euler":{"heading":67.40769394973181,"pitch":102.12002324861774,"roll":23.796201498889747},"location":"Left Ankle"},{"euler":{"heading":66.09399810881008,"pitch":-8.16314873897701,"roll":-3.710377620202028},"location":"Right Ankle"},{"euler":{"heading":116.82892692637934,"pitch":-160.5081360797277,"roll":55.21786071525562},"location":"Right Hip"},{"euler":{"heading":85.23686796281709,"pitch":-108.26305112098828,"roll":-3.6683322550949886},"location":"Right Knee"},{"euler":{"heading":24.828075081217726,"pitch":-137.04350931267888,"roll":57.978840424665385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.704"} +{"sensors":[{"euler":{"heading":79.71350448415265,"pitch":130.67852823243211,"roll":21.804264929473998},"location":"Left Knee"},{"euler":{"heading":69.77317455475863,"pitch":102.23927092375597,"roll":26.604081349000772},"location":"Left Ankle"},{"euler":{"heading":66.87209829792907,"pitch":-7.97183386507931,"roll":-3.7080898581818253},"location":"Right Ankle"},{"euler":{"heading":116.1960342337414,"pitch":-160.79482247175494,"roll":55.846074643730056},"location":"Right Hip"},{"euler":{"heading":84.66318116653538,"pitch":-108.71799600888946,"roll":-3.02024902958549},"location":"Right Knee"},{"euler":{"heading":23.882767573095954,"pitch":-135.314158381411,"roll":57.61845638219885},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.804"} +{"sensors":[{"euler":{"heading":74.69215403573739,"pitch":131.1419254091889,"roll":21.492588436526596},"location":"Left Knee"},{"euler":{"heading":69.60210709928276,"pitch":101.25909383138038,"roll":26.974923214100695},"location":"Left Ankle"},{"euler":{"heading":67.28488846813616,"pitch":-7.6934004785713785,"roll":-3.818530872363643},"location":"Right Ankle"},{"euler":{"heading":115.88268081036726,"pitch":-161.03409022457944,"roll":56.60521717935705},"location":"Right Hip"},{"euler":{"heading":84.70311304988184,"pitch":-109.1774464080005,"roll":-2.8682241266269406},"location":"Right Knee"},{"euler":{"heading":22.68824081578636,"pitch":-133.3514925432699,"roll":56.92536074397897},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.905"} +{"sensors":[{"euler":{"heading":102.55418863216366,"pitch":132.77773286827,"roll":22.749579592873935},"location":"Left Knee"},{"euler":{"heading":66.52939638935449,"pitch":100.12693444824235,"roll":24.496180892690624},"location":"Left Ankle"},{"euler":{"heading":67.16889962132255,"pitch":-7.299060430714241,"roll":-4.061677785127278},"location":"Right Ankle"},{"euler":{"heading":115.77566272933053,"pitch":-161.40568120212149,"roll":57.38219546142135},"location":"Right Hip"},{"euler":{"heading":85.37030174489365,"pitch":-109.64095176720045,"roll":-3.2501517139642466},"location":"Right Knee"},{"euler":{"heading":21.763166734207726,"pitch":-131.6350932889429,"roll":56.351574669581076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.7"} +{"sensors":[{"euler":{"heading":126.5175197689473,"pitch":134.94995958144298,"roll":24.362121633586543},"location":"Left Knee"},{"euler":{"heading":62.895206750419035,"pitch":99.25174100341812,"roll":21.140312803421562},"location":"Left Ankle"},{"euler":{"heading":66.2957596591903,"pitch":-6.819154387642817,"roll":-4.736760006614551},"location":"Right Ankle"},{"euler":{"heading":115.97934645639748,"pitch":-161.96511308190932,"roll":58.16897591527921},"location":"Right Hip"},{"euler":{"heading":86.8145215704043,"pitch":-109.88310659048041,"roll":-4.318886542567822},"location":"Right Knee"},{"euler":{"heading":21.693100060786954,"pitch":-130.8840839600486,"roll":56.010167202622974},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.107"} +{"sensors":[{"euler":{"heading":149.64076779205257,"pitch":135.99246362329868,"roll":25.69465947022789},"location":"Left Knee"},{"euler":{"heading":61.224436075377135,"pitch":99.17656690307632,"roll":19.107531523079405},"location":"Left Ankle"},{"euler":{"heading":64.02868369327126,"pitch":-6.9872389488785345,"roll":-5.475584005953096},"location":"Right Ankle"},{"euler":{"heading":116.64391181075774,"pitch":-162.24985177371838,"roll":58.5895783237513},"location":"Right Hip"},{"euler":{"heading":89.40806941336388,"pitch":-109.56354593143237,"roll":-6.5494978883110395},"location":"Right Knee"},{"euler":{"heading":21.65504005470826,"pitch":-130.43317556404375,"roll":55.865400482360684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.208"} +{"sensors":[{"euler":{"heading":135.20169101284733,"pitch":136.3057172609688,"roll":26.643943523205103},"location":"Left Knee"},{"euler":{"heading":60.16449246783942,"pitch":98.9401602127687,"roll":18.021778370771464},"location":"Left Ankle"},{"euler":{"heading":60.41331532394414,"pitch":-6.732265053990681,"roll":-6.546775605357787},"location":"Right Ankle"},{"euler":{"heading":118.17327062968198,"pitch":-161.53111659634655,"roll":58.34937049137617},"location":"Right Hip"},{"euler":{"heading":92.2860124720275,"pitch":-109.80094133828914,"roll":-9.138298099479936},"location":"Right Knee"},{"euler":{"heading":21.814536049237432,"pitch":-130.36485800763938,"roll":55.97261043412462},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.308"} +{"sensors":[{"euler":{"heading":122.6127719115626,"pitch":136.18764553487193,"roll":27.285799170884594},"location":"Left Knee"},{"euler":{"heading":59.61679322105548,"pitch":98.79614419149183,"roll":17.419600533694318},"location":"Left Ankle"},{"euler":{"heading":57.85323379154973,"pitch":-6.9902885485916135,"roll":-6.96084804482201},"location":"Right Ankle"},{"euler":{"heading":119.6934435667138,"pitch":-160.5467549367119,"roll":57.48943344223856},"location":"Right Hip"},{"euler":{"heading":93.65116122482475,"pitch":-109.56459720446023,"roll":-10.686968289531944},"location":"Right Knee"},{"euler":{"heading":22.23933244431369,"pitch":-130.85962220687543,"roll":56.32534939071216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.409"} +{"sensors":[{"euler":{"heading":111.68274472040635,"pitch":135.78763098138472,"roll":27.600969253796134},"location":"Left Knee"},{"euler":{"heading":59.51136389894994,"pitch":98.67277977234266,"roll":17.265140480324884},"location":"Left Ankle"},{"euler":{"heading":57.91166041239475,"pitch":-7.572509693732452,"roll":-6.633513240339809},"location":"Right Ankle"},{"euler":{"heading":120.88034921004243,"pitch":-159.6983294430407,"roll":56.315490098014706},"location":"Right Hip"},{"euler":{"heading":92.73604510234227,"pitch":-108.95188748401421,"roll":-10.105771460578751},"location":"Right Knee"},{"euler":{"heading":22.759149199882323,"pitch":-131.8361599861879,"roll":56.79906445164095},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.510"} +{"sensors":[{"euler":{"heading":102.6769702483657,"pitch":134.99011788324626,"roll":27.50962232841652},"location":"Left Knee"},{"euler":{"heading":59.960227509054945,"pitch":98.7430017951084,"roll":17.594876432292395},"location":"Left Ankle"},{"euler":{"heading":60.045494371155286,"pitch":-8.102758724359207,"roll":-5.607661916305829},"location":"Right Ankle"},{"euler":{"heading":121.0048142890382,"pitch":-159.37849649873664,"roll":55.33394108821324},"location":"Right Hip"},{"euler":{"heading":89.81869059210806,"pitch":-108.12544873561279,"roll":-7.695194314520876},"location":"Right Knee"},{"euler":{"heading":23.50823427989409,"pitch":-133.14629398756912,"roll":57.42540800647686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.610"} +{"sensors":[{"euler":{"heading":95.22802322352914,"pitch":133.95360609492164,"roll":26.98366009557487},"location":"Left Knee"},{"euler":{"heading":61.15170475814945,"pitch":98.99995161559755,"roll":18.541638789063157},"location":"Left Ankle"},{"euler":{"heading":63.097194934039756,"pitch":-8.454982851923287,"roll":-4.628145724675246},"location":"Right Ankle"},{"euler":{"heading":120.04183286013438,"pitch":-159.54689684886296,"roll":54.950546979391916},"location":"Right Hip"},{"euler":{"heading":86.23057153289724,"pitch":-107.56290386205151,"roll":-4.6006748830687885},"location":"Right Knee"},{"euler":{"heading":24.519910851904683,"pitch":-134.99416458881223,"roll":58.182867205829176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.711"} +{"sensors":[{"euler":{"heading":89.58647090117621,"pitch":132.85824548542948,"roll":25.666544086017385},"location":"Left Knee"},{"euler":{"heading":63.02403428233451,"pitch":99.4124564540378,"roll":20.587474910156843},"location":"Left Ankle"},{"euler":{"heading":64.81872544063577,"pitch":-8.440734566730958,"roll":-4.146581152207721},"location":"Right Ankle"},{"euler":{"heading":119.09389957412095,"pitch":-159.75470716397666,"roll":54.78049228145273},"location":"Right Hip"},{"euler":{"heading":83.40126437960753,"pitch":-107.68786347584637,"roll":-2.5093573947619094},"location":"Right Knee"},{"euler":{"heading":25.655419766714218,"pitch":-136.807248129931,"roll":58.89583048524626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.815"} +{"sensors":[{"euler":{"heading":86.32157381105858,"pitch":131.74742093688653,"roll":23.381139677415646},"location":"Left Knee"},{"euler":{"heading":66.54038085410107,"pitch":100.95871080863401,"roll":23.99122741914116},"location":"Left Ankle"},{"euler":{"heading":65.6931028965722,"pitch":-8.265411110057862,"roll":-3.9944230369869493},"location":"Right Ankle"},{"euler":{"heading":118.40950961670887,"pitch":-159.85423644757898,"roll":54.95869305330746},"location":"Right Hip"},{"euler":{"heading":81.64863794164678,"pitch":-108.01282712826173,"roll":-1.1584216552857183},"location":"Right Knee"},{"euler":{"heading":25.371127790042795,"pitch":-136.2077733169379,"roll":59.15624743672163},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.915"} +{"sensors":[{"euler":{"heading":83.92066642995273,"pitch":130.94767884319788,"roll":21.186775709674084},"location":"Left Knee"},{"euler":{"heading":69.15509276869096,"pitch":101.33783972777061,"roll":26.979604677227044},"location":"Left Ankle"},{"euler":{"heading":66.11129260691499,"pitch":-7.976369999052076,"roll":-4.101230733288254},"location":"Right Ankle"},{"euler":{"heading":117.83105865503799,"pitch":-159.9188128028211,"roll":55.437823747976715},"location":"Right Hip"},{"euler":{"heading":81.04002414748211,"pitch":-108.58654441543557,"roll":-0.5488294897571465},"location":"Right Knee"},{"euler":{"heading":24.346515011038516,"pitch":-134.3557459852441,"roll":58.78437269304947},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.16"} +{"sensors":[{"euler":{"heading":79.69734978695746,"pitch":131.1591609588781,"roll":20.499348138706676},"location":"Left Knee"},{"euler":{"heading":69.09583349182186,"pitch":100.39780575499356,"roll":27.36914420950434},"location":"Left Ankle"},{"euler":{"heading":66.28141334622349,"pitch":-7.578732999146869,"roll":-4.309857659959429},"location":"Right Ankle"},{"euler":{"heading":117.6854527895342,"pitch":-159.87068152253897,"roll":56.062791373179046},"location":"Right Hip"},{"euler":{"heading":81.0922717327339,"pitch":-109.14663997389202,"roll":-0.43769654078143183},"location":"Right Knee"},{"euler":{"heading":23.086863509934666,"pitch":-132.4514213867197,"roll":57.98718542374452},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.117"} +{"sensors":[{"euler":{"heading":99.17136480826173,"pitch":132.71824486299028,"roll":21.60566332483601},"location":"Left Knee"},{"euler":{"heading":66.30500014263968,"pitch":99.2330251794942,"roll":24.91972978855391},"location":"Left Ankle"},{"euler":{"heading":66.00327201160114,"pitch":-7.020859699232182,"roll":-4.591371893963487},"location":"Right Ankle"},{"euler":{"heading":117.51065751058078,"pitch":-160.0898633702851,"roll":56.77526223586114},"location":"Right Hip"},{"euler":{"heading":81.66429455946053,"pitch":-109.76947597650283,"roll":-0.7751768867032887},"location":"Right Knee"},{"euler":{"heading":21.8094271589412,"pitch":-130.6687792480477,"roll":57.26346688137007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.217"} +{"sensors":[{"euler":{"heading":117.85422832743555,"pitch":134.90892037669124,"roll":23.132596992352408},"location":"Left Knee"},{"euler":{"heading":62.64950012837572,"pitch":98.38472266154479,"roll":21.62150680969852},"location":"Left Ankle"},{"euler":{"heading":65.04044481044103,"pitch":-6.362523729308964,"roll":-5.088484704567138},"location":"Right Ankle"},{"euler":{"heading":117.39084175952271,"pitch":-160.54962703325657,"roll":57.61648601227503},"location":"Right Hip"},{"euler":{"heading":82.94161510351448,"pitch":-110.34252837885255,"roll":-1.7101591980329598},"location":"Right Knee"},{"euler":{"heading":21.35973444304708,"pitch":-129.69565132324294,"roll":56.818370193233065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.317"} +{"sensors":[{"euler":{"heading":141.781305494692,"pitch":136.2305283390221,"roll":24.51308729311717},"location":"Left Knee"},{"euler":{"heading":60.58455011553815,"pitch":98.19625039539031,"roll":19.54060612872867},"location":"Left Ankle"},{"euler":{"heading":62.76765032939693,"pitch":-6.038771356378067,"roll":-5.804636234110424},"location":"Right Ankle"},{"euler":{"heading":117.64550758357045,"pitch":-161.01341432993092,"roll":58.30483741104754},"location":"Right Hip"},{"euler":{"heading":85.29120359316303,"pitch":-110.5520255409673,"roll":-3.614143278229664},"location":"Right Knee"},{"euler":{"heading":21.061260998742373,"pitch":-129.23233619091866,"roll":56.48028317390976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.418"} +{"sensors":[{"euler":{"heading":128.3406749452228,"pitch":136.6449755051199,"roll":25.524278563805453},"location":"Left Knee"},{"euler":{"heading":59.66984510398434,"pitch":98.10787535585128,"roll":18.361545515855802},"location":"Left Ankle"},{"euler":{"heading":59.12213529645724,"pitch":-5.8286442207402605,"roll":-6.767922610699382},"location":"Right Ankle"},{"euler":{"heading":118.5684568252134,"pitch":-160.53082289693785,"roll":58.311853669942785},"location":"Right Hip"},{"euler":{"heading":88.38083323384674,"pitch":-110.59682298687059,"roll":-6.402728950406698},"location":"Right Knee"},{"euler":{"heading":21.023884898868136,"pitch":-129.1091025718268,"roll":56.476004856518784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.518"} +{"sensors":[{"euler":{"heading":116.65035745070051,"pitch":136.46797795460793,"roll":26.39060070742491},"location":"Left Knee"},{"euler":{"heading":59.45911059358591,"pitch":98.12833782026615,"roll":17.662890964270222},"location":"Left Ankle"},{"euler":{"heading":56.43492176681151,"pitch":-5.970779798666234,"roll":-7.434880349629444},"location":"Right Ankle"},{"euler":{"heading":119.94286114269207,"pitch":-159.65274060724408,"roll":57.53066830294851},"location":"Right Hip"},{"euler":{"heading":90.58649991046208,"pitch":-110.46839068818355,"roll":-8.449956055366028},"location":"Right Knee"},{"euler":{"heading":21.440246408981324,"pitch":-129.81694231464414,"roll":56.74090437086691},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.619"} +{"sensors":[{"euler":{"heading":106.63532170563047,"pitch":135.88368015914716,"roll":26.93279063668242},"location":"Left Knee"},{"euler":{"heading":59.75694953422732,"pitch":98.21550403823954,"roll":17.4966018678432},"location":"Left Ankle"},{"euler":{"heading":56.178929590130366,"pitch":-6.792451818799611,"roll":-7.3476423146664995},"location":"Right Ankle"},{"euler":{"heading":121.11732502842287,"pitch":-158.9624665465197,"roll":56.277601472653664},"location":"Right Hip"},{"euler":{"heading":90.71534991941587,"pitch":-109.71530161936519,"roll":-8.648710449829425},"location":"Right Knee"},{"euler":{"heading":22.183721768083192,"pitch":-131.12274808317972,"roll":57.17931393378022},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.720"} +{"sensors":[{"euler":{"heading":98.42803953506743,"pitch":134.97031214323246,"roll":26.989511573014177},"location":"Left Knee"},{"euler":{"heading":60.50625458080459,"pitch":98.46270363441559,"roll":17.79694168105888},"location":"Left Ankle"},{"euler":{"heading":57.92978663111733,"pitch":-7.513206636919651,"roll":-6.39412808319985},"location":"Right Ankle"},{"euler":{"heading":121.48684252558058,"pitch":-158.68496989186772,"roll":55.131091325388304},"location":"Right Hip"},{"euler":{"heading":88.42506492747428,"pitch":-108.76877145742868,"roll":-6.827589404846482},"location":"Right Knee"},{"euler":{"heading":23.096599591274874,"pitch":-132.84797327486174,"roll":57.7176325404022},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.820"} +{"sensors":[{"euler":{"heading":91.73523558156069,"pitch":133.87953092890922,"roll":26.496810415712762},"location":"Left Knee"},{"euler":{"heading":61.81187912272413,"pitch":98.89143327097403,"roll":18.72974751295299},"location":"Left Ankle"},{"euler":{"heading":61.0743079680056,"pitch":-7.8556359732276855,"roll":-5.2734652748798645},"location":"Right Ankle"},{"euler":{"heading":120.78190827302254,"pitch":-158.72272290268094,"roll":54.66798219284948},"location":"Right Hip"},{"euler":{"heading":84.85755843472685,"pitch":-108.11689431168583,"roll":-3.863580464361834},"location":"Right Knee"},{"euler":{"heading":24.024439632147388,"pitch":-134.86942594737556,"roll":58.327119286361985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.921"} +{"sensors":[{"euler":{"heading":86.88046202340462,"pitch":132.67282783601829,"roll":25.159629374141485},"location":"Left Knee"},{"euler":{"heading":63.874441210451714,"pitch":99.54603994387664,"roll":20.756772761657693},"location":"Left Ankle"},{"euler":{"heading":63.09187717120504,"pitch":-7.707572375904917,"roll":-4.646118747391879},"location":"Right Ankle"},{"euler":{"heading":119.60371744572029,"pitch":-159.08170061241285,"roll":54.463683973564535},"location":"Right Hip"},{"euler":{"heading":81.70305259125416,"pitch":-108.12395488051726,"roll":-1.5084724179256508},"location":"Right Knee"},{"euler":{"heading":25.04699566893265,"pitch":-136.682483352638,"roll":59.01940735772578},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.21"} +{"sensors":[{"euler":{"heading":84.16741582106415,"pitch":131.69929505241646,"roll":22.787416436727337},"location":"Left Knee"},{"euler":{"heading":67.21824708940655,"pitch":101.01018594948897,"roll":24.249845485491925},"location":"Left Ankle"},{"euler":{"heading":64.21393945408454,"pitch":-7.418065138314425,"roll":-4.400256872652691},"location":"Right Ankle"},{"euler":{"heading":118.82459570114827,"pitch":-159.29228055117156,"roll":54.62356557620809},"location":"Right Hip"},{"euler":{"heading":79.70149733212875,"pitch":-108.45530939246554,"roll":-0.05137517613308562},"location":"Right Knee"},{"euler":{"heading":24.617296102039383,"pitch":-136.4142350173742,"roll":59.179966621953206},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.121"} +{"sensors":[{"euler":{"heading":82.00067423895774,"pitch":130.99186554717483,"roll":20.639924793054604},"location":"Left Knee"},{"euler":{"heading":70.20892238046589,"pitch":101.24666735454008,"roll":27.362360936942736},"location":"Left Ankle"},{"euler":{"heading":64.89254550867608,"pitch":-7.076258624482983,"roll":-4.403981185387422},"location":"Right Ankle"},{"euler":{"heading":117.97963613103346,"pitch":-159.5755524960544,"roll":55.19870901858728},"location":"Right Hip"},{"euler":{"heading":78.82509759891587,"pitch":-109.04727845321898,"roll":0.6787623414802231},"location":"Right Knee"},{"euler":{"heading":23.486816491835445,"pitch":-134.6478115156368,"roll":58.71821995975789},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.222"} +{"sensors":[{"euler":{"heading":77.60060681506197,"pitch":131.38017899245736,"roll":20.050932313749147},"location":"Left Knee"},{"euler":{"heading":70.2880301424193,"pitch":100.39700061908609,"roll":27.907374843248462},"location":"Left Ankle"},{"euler":{"heading":65.23454095780848,"pitch":-6.762382762034685,"roll":-4.54483306684868},"location":"Right Ankle"},{"euler":{"heading":117.63792251793011,"pitch":-159.71174724644897,"roll":55.91008811672856},"location":"Right Hip"},{"euler":{"heading":78.76758783902429,"pitch":-109.56130060789708,"roll":0.8358861073322008},"location":"Right Knee"},{"euler":{"heading":22.063134842651902,"pitch":-132.7580303640731,"roll":57.80264796378211},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.322"} +{"sensors":[{"euler":{"heading":97.37179613355578,"pitch":132.9734110932116,"roll":21.220839082374233},"location":"Left Knee"},{"euler":{"heading":67.35297712817737,"pitch":99.43855055717748,"roll":25.597887358923614},"location":"Left Ankle"},{"euler":{"heading":65.15483686202762,"pitch":-6.429894485831216,"roll":-4.796599760163812},"location":"Right Ankle"},{"euler":{"heading":117.6553802661371,"pitch":-159.87182252180406,"roll":56.587829305055706},"location":"Right Hip"},{"euler":{"heading":79.37207905512186,"pitch":-109.96767054710737,"roll":0.45229749659898066},"location":"Right Knee"},{"euler":{"heading":20.88182135838671,"pitch":-131.0822273276658,"roll":57.022383167403895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.422"} +{"sensors":[{"euler":{"heading":116.2783665202002,"pitch":135.13856998389045,"roll":22.86125517413681},"location":"Left Knee"},{"euler":{"heading":63.605179415359636,"pitch":98.61969550145973,"roll":22.200598623031254},"location":"Left Ankle"},{"euler":{"heading":64.35810317582485,"pitch":-5.936905037248095,"roll":-5.223189784147431},"location":"Right Ankle"},{"euler":{"heading":117.90234223952339,"pitch":-160.10964026962367,"roll":57.27279637455014},"location":"Right Hip"},{"euler":{"heading":80.72862114960968,"pitch":-110.32090349239664,"roll":-0.5491822530609174},"location":"Right Knee"},{"euler":{"heading":20.606139222548038,"pitch":-130.13650459489924,"roll":56.520144850663506},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.523"} +{"sensors":[{"euler":{"heading":140.28802986818016,"pitch":136.3747129855014,"roll":24.331379656723133},"location":"Left Knee"},{"euler":{"heading":61.425911473823675,"pitch":98.42022595131377,"roll":19.93053876072813},"location":"Left Ankle"},{"euler":{"heading":62.491042858242366,"pitch":-5.680714533523286,"roll":-5.963370805732688},"location":"Right Ankle"},{"euler":{"heading":118.43710801557106,"pitch":-160.5986762426613,"roll":57.87051673709513},"location":"Right Hip"},{"euler":{"heading":83.11200903464871,"pitch":-110.24506314315697,"roll":-2.4817640277548256},"location":"Right Knee"},{"euler":{"heading":20.633025300293234,"pitch":-129.6291041354093,"roll":56.20563036559715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.623"} +{"sensors":[{"euler":{"heading":126.82797688136215,"pitch":136.79349168695126,"roll":25.33574169105082},"location":"Left Knee"},{"euler":{"heading":60.158320326441306,"pitch":98.2407033561824,"roll":18.649984884655314},"location":"Left Ankle"},{"euler":{"heading":59.291938572418125,"pitch":-5.493893080170957,"roll":-6.960783725159419},"location":"Right Ankle"},{"euler":{"heading":119.63714721401395,"pitch":-160.33880861839518,"roll":57.80221506338562},"location":"Right Hip"},{"euler":{"heading":86.18830813118385,"pitch":-110.28305682884127,"roll":-5.177337624979343},"location":"Right Knee"},{"euler":{"heading":20.650972770263913,"pitch":-129.33494372186837,"roll":56.19131732903744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.723"} +{"sensors":[{"euler":{"heading":115.13267919322593,"pitch":136.73289251825614,"roll":26.07716752194574},"location":"Left Knee"},{"euler":{"heading":59.48623829379718,"pitch":98.14163302056417,"roll":17.853736396189785},"location":"Left Ankle"},{"euler":{"heading":56.562744715176315,"pitch":-5.594503772153861,"roll":-7.5584553526434775},"location":"Right Ankle"},{"euler":{"heading":121.14218249261256,"pitch":-159.62367775655565,"roll":56.996993557047055},"location":"Right Hip"},{"euler":{"heading":88.38197731806547,"pitch":-109.94225114595714,"roll":-7.328353862481409},"location":"Right Knee"},{"euler":{"heading":20.998375493237525,"pitch":-129.72019934968154,"roll":56.422185596133694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.824"} +{"sensors":[{"euler":{"heading":104.95066127390334,"pitch":136.37835326643054,"roll":26.544450769751165},"location":"Left Knee"},{"euler":{"heading":59.29386446441746,"pitch":98.05246971850775,"roll":17.524612756570807},"location":"Left Ankle"},{"euler":{"heading":56.06897024365868,"pitch":-6.278803394938476,"roll":-7.49635981737913},"location":"Right Ankle"},{"euler":{"heading":122.47796424335131,"pitch":-158.98630998090007,"roll":55.73479420134235},"location":"Right Hip"},{"euler":{"heading":88.66252958625893,"pitch":-109.16052603136144,"roll":-7.658018476233268},"location":"Right Knee"},{"euler":{"heading":21.617287943913773,"pitch":-130.68567941471338,"roll":56.88621703652033},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.924"} +{"sensors":[{"euler":{"heading":96.66809514651301,"pitch":135.5092679397875,"roll":26.75875569277605},"location":"Left Knee"},{"euler":{"heading":59.77072801797571,"pitch":98.30972274665697,"roll":17.628401480913727},"location":"Left Ankle"},{"euler":{"heading":57.78707321929282,"pitch":-7.107173055444628,"roll":-6.671723835641217},"location":"Right Ankle"},{"euler":{"heading":122.98016781901617,"pitch":-158.80017898281008,"roll":54.43631478120812},"location":"Right Hip"},{"euler":{"heading":86.75877662763304,"pitch":-108.1694734282253,"roll":-6.023466628609941},"location":"Right Knee"},{"euler":{"heading":22.549309149522397,"pitch":-132.14211147324204,"roll":57.4600953328683},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.24"} +{"sensors":[{"euler":{"heading":89.87003563186171,"pitch":134.47084114580875,"roll":26.464130123498446},"location":"Left Knee"},{"euler":{"heading":60.78740521617814,"pitch":98.67875047199128,"roll":18.284311332822355},"location":"Left Ankle"},{"euler":{"heading":60.91461589736354,"pitch":-7.852705749900165,"roll":-5.467051452077095},"location":"Right Ankle"},{"euler":{"heading":122.53215103711457,"pitch":-158.84516108452908,"roll":53.7614333030873},"location":"Right Hip"},{"euler":{"heading":83.70789896486974,"pitch":-107.31502608540278,"roll":-3.1461199657489467},"location":"Right Knee"},{"euler":{"heading":23.500628234570158,"pitch":-133.92165032591782,"roll":58.07033579958147},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.125"} +{"sensors":[{"euler":{"heading":84.67053206867554,"pitch":133.31750703122788,"roll":25.492717111148604},"location":"Left Knee"},{"euler":{"heading":62.45241469456033,"pitch":99.17962542479216,"roll":19.730880199540124},"location":"Left Ankle"},{"euler":{"heading":63.52940430762719,"pitch":-8.123685174910149,"roll":-4.639096306869386},"location":"Right Ankle"},{"euler":{"heading":121.22268593340311,"pitch":-159.20439497607617,"roll":53.46653997277858},"location":"Right Hip"},{"euler":{"heading":80.81835906838278,"pitch":-107.1710234768625,"roll":-0.7315079691740518},"location":"Right Knee"},{"euler":{"heading":24.66306541111314,"pitch":-136.22948529332604,"roll":58.688302219623324},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.225"} +{"sensors":[{"euler":{"heading":81.36597886180799,"pitch":132.4920063281051,"roll":23.412195400033745},"location":"Left Knee"},{"euler":{"heading":65.0509232251043,"pitch":99.96166288231295,"roll":22.77029217958611},"location":"Left Ankle"},{"euler":{"heading":65.01396387686448,"pitch":-8.186316657419134,"roll":-4.343936676182448},"location":"Right Ankle"},{"euler":{"heading":120.4441673400628,"pitch":-159.45895547846857,"roll":53.40738597550072},"location":"Right Hip"},{"euler":{"heading":78.9865231615445,"pitch":-107.39767112917625,"roll":0.7353928277433534},"location":"Right Knee"},{"euler":{"heading":25.09675887000183,"pitch":-137.41903676399343,"roll":59.056971997660995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.326"} +{"sensors":[{"euler":{"heading":79.77938097562719,"pitch":131.33655569529458,"roll":20.983475860030374},"location":"Left Knee"},{"euler":{"heading":68.04583090259388,"pitch":101.16549659408166,"roll":26.280762961627502},"location":"Left Ankle"},{"euler":{"heading":65.84381748917804,"pitch":-7.817684991677221,"roll":-4.297043008564203},"location":"Right Ankle"},{"euler":{"heading":119.39350060605653,"pitch":-159.68805993062173,"roll":53.922897377950655},"location":"Right Hip"},{"euler":{"heading":77.98787084539005,"pitch":-108.10165401625864,"roll":1.561853544969018},"location":"Right Knee"},{"euler":{"heading":24.31208298300165,"pitch":-135.75213308759407,"roll":59.0450247978949},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.426"} +{"sensors":[{"euler":{"heading":77.13894287806448,"pitch":131.25290012576514,"roll":19.597628274027336},"location":"Left Knee"},{"euler":{"heading":69.80999781233449,"pitch":100.7614469346735,"roll":28.002686665464754},"location":"Left Ankle"},{"euler":{"heading":66.29693574026024,"pitch":-7.492166492509499,"roll":-4.4110887077077825},"location":"Right Ankle"},{"euler":{"heading":118.96665054545089,"pitch":-159.74425393755956,"roll":54.586857640155586},"location":"Right Hip"},{"euler":{"heading":77.86408376085105,"pitch":-108.67273861463278,"roll":1.7681681904721163},"location":"Right Knee"},{"euler":{"heading":22.880874684701485,"pitch":-133.77066977883467,"roll":58.29052231810541},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.526"} +{"sensors":[{"euler":{"heading":96.06879859025804,"pitch":134.11511011318862,"roll":20.231615446624602},"location":"Left Knee"},{"euler":{"heading":68.15399803110104,"pitch":99.51030224120616,"roll":26.78366799891828},"location":"Left Ankle"},{"euler":{"heading":66.35474216623422,"pitch":-7.230449843258549,"roll":-4.582479836937004},"location":"Right Ankle"},{"euler":{"heading":118.7449854909058,"pitch":-159.91357854380362,"roll":55.34692187614003},"location":"Right Hip"},{"euler":{"heading":78.38392538476594,"pitch":-109.14296475316951,"roll":1.4726013714249047},"location":"Right Knee"},{"euler":{"heading":21.492787216231335,"pitch":-131.7436028009512,"roll":57.480220086294864},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.627"} +{"sensors":[{"euler":{"heading":114.73066873123224,"pitch":136.09109910186976,"roll":21.82095390196214},"location":"Left Knee"},{"euler":{"heading":64.48234822799094,"pitch":98.47177201708554,"roll":23.499051199026454},"location":"Left Ankle"},{"euler":{"heading":65.75676794961079,"pitch":-6.738654858932695,"roll":-4.930481853243305},"location":"Right Ankle"},{"euler":{"heading":118.69548694181523,"pitch":-160.17847068942325,"roll":56.18722968852603},"location":"Right Hip"},{"euler":{"heading":79.49553284628935,"pitch":-109.69116827785257,"roll":0.6753412342824142},"location":"Right Knee"},{"euler":{"heading":20.7185084946082,"pitch":-130.1692425208561,"roll":56.90094807766538},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.728"} +{"sensors":[{"euler":{"heading":132.14510185810903,"pitch":137.63823919168277,"roll":23.30135851176593},"location":"Left Knee"},{"euler":{"heading":61.19661340519185,"pitch":98.16209481537699,"roll":20.35539607912381},"location":"Left Ankle"},{"euler":{"heading":64.52484115464972,"pitch":-6.314789373039425,"roll":-5.649933667918975},"location":"Right Ankle"},{"euler":{"heading":118.75718824763372,"pitch":-160.8543736204809,"roll":57.13100671967343},"location":"Right Hip"},{"euler":{"heading":81.32722956166042,"pitch":-110.02830145006732,"roll":-0.7796928891458274},"location":"Right Knee"},{"euler":{"heading":20.73415764514738,"pitch":-129.3710682687705,"roll":56.61710326989885},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.829"} +{"sensors":[{"euler":{"heading":119.57434167229813,"pitch":138.1306652725145,"roll":24.514972660589336},"location":"Left Knee"},{"euler":{"heading":59.70820206467266,"pitch":98.2333853338393,"roll":18.732356471211432},"location":"Left Ankle"},{"euler":{"heading":61.94735703918475,"pitch":-6.333310435735483,"roll":-6.409940301127078},"location":"Right Ankle"},{"euler":{"heading":119.31271942287036,"pitch":-161.03768625843284,"roll":57.69915604770609},"location":"Right Hip"},{"euler":{"heading":84.10700660549438,"pitch":-109.8629713050606,"roll":-3.2704736002312447},"location":"Right Knee"},{"euler":{"heading":20.68574188063264,"pitch":-128.83396144189345,"roll":56.50539294290897},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.930"} +{"sensors":[{"euler":{"heading":108.95440750506833,"pitch":137.91759874526306,"roll":25.425975394530404},"location":"Left Knee"},{"euler":{"heading":58.9936318582054,"pitch":98.44129680045536,"roll":17.69037082409029},"location":"Left Ankle"},{"euler":{"heading":58.308871335266275,"pitch":-6.437479392161935,"roll":-7.22519627101437},"location":"Right Ankle"},{"euler":{"heading":120.53144748058332,"pitch":-160.36516763258956,"roll":57.43549044293548},"location":"Right Hip"},{"euler":{"heading":87.22130594494494,"pitch":-109.85792417455454,"roll":-6.11842624020812},"location":"Right Knee"},{"euler":{"heading":21.023417692569378,"pitch":-128.9255652977041,"roll":56.70485364861808},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.30"} +{"sensors":[{"euler":{"heading":99.7402167545615,"pitch":137.27583887073675,"roll":26.133377855077363},"location":"Left Knee"},{"euler":{"heading":58.95051867238486,"pitch":98.71591712040983,"roll":17.208833741681264},"location":"Left Ankle"},{"euler":{"heading":56.50923420173965,"pitch":-6.906231452945741,"roll":-7.6026766439129325},"location":"Right Ankle"},{"euler":{"heading":121.984552732525,"pitch":-159.5599008693306,"roll":56.45444139864194},"location":"Right Hip"},{"euler":{"heading":88.66792535045046,"pitch":-109.47838175709909,"roll":-7.575333616187308},"location":"Right Knee"},{"euler":{"heading":21.73357592331244,"pitch":-129.72675876793372,"roll":57.11561828375628},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.131"} +{"sensors":[{"euler":{"heading":92.03494507910536,"pitch":136.32325498366308,"roll":26.488790069569628},"location":"Left Knee"},{"euler":{"heading":60.23046680514638,"pitch":99.18807540836885,"roll":17.775450367513137},"location":"Left Ankle"},{"euler":{"heading":57.35206078156568,"pitch":-7.765608307651167,"roll":-7.19865897952164},"location":"Right Ankle"},{"euler":{"heading":122.92359745927251,"pitch":-159.19141078239755,"roll":55.07774725877774},"location":"Right Hip"},{"euler":{"heading":87.73238281540542,"pitch":-108.55554358138919,"roll":-6.636550254568577},"location":"Right Knee"},{"euler":{"heading":22.5852183309812,"pitch":-131.14158289114033,"roll":57.616556455380646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.231"} +{"sensors":[{"euler":{"heading":85.75645057119482,"pitch":135.14092948529677,"roll":26.396161062612663},"location":"Left Knee"},{"euler":{"heading":61.76367012463174,"pitch":99.68176786753196,"roll":18.716655330761824},"location":"Left Ankle"},{"euler":{"heading":59.86685470340912,"pitch":-8.501547476886051,"roll":-6.091293081569476},"location":"Right Ankle"},{"euler":{"heading":122.93748771334528,"pitch":-159.0910197041578,"roll":53.98872253289997},"location":"Right Hip"},{"euler":{"heading":84.92789453386487,"pitch":-107.54373922325027,"roll":-4.172895229111719},"location":"Right Knee"},{"euler":{"heading":23.582946497883082,"pitch":-132.9149246020263,"roll":58.25490080984258},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.332"} +{"sensors":[{"euler":{"heading":80.69330551407535,"pitch":133.9268365367671,"roll":25.725294956351398},"location":"Left Knee"},{"euler":{"heading":63.80605311216856,"pitch":100.19484108077877,"roll":20.301239797685643},"location":"Left Ankle"},{"euler":{"heading":62.96766923306821,"pitch":-8.820142729197446,"roll":-5.063413773412528},"location":"Right Ankle"},{"euler":{"heading":121.76873894201076,"pitch":-159.32566773374202,"roll":53.558600279609976},"location":"Right Hip"},{"euler":{"heading":81.51635508047839,"pitch":-107.07061530092524,"roll":-1.1806057062005473},"location":"Right Knee"},{"euler":{"heading":24.649651848094773,"pitch":-135.12343214182368,"roll":58.93566072885832},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.433"} +{"sensors":[{"euler":{"heading":77.34272496266782,"pitch":132.78415288309037,"roll":24.09651546071626},"location":"Left Knee"},{"euler":{"heading":66.51294780095171,"pitch":100.8566069727009,"roll":23.083615817917078},"location":"Left Ankle"},{"euler":{"heading":64.71465230976139,"pitch":-8.656878456277703,"roll":-4.625822396071276},"location":"Right Ankle"},{"euler":{"heading":120.47936504780968,"pitch":-159.68060096036783,"roll":53.47149025164899},"location":"Right Hip"},{"euler":{"heading":78.84596957243056,"pitch":-107.36355377083272,"roll":0.9062048644195073},"location":"Right Knee"},{"euler":{"heading":25.584686663285297,"pitch":-137.1048389276413,"roll":59.49834465597249},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.533"} +{"sensors":[{"euler":{"heading":75.99595246640104,"pitch":131.46823759478133,"roll":21.711863914644635},"location":"Left Knee"},{"euler":{"heading":70.04290302085654,"pitch":102.57094627543081,"roll":26.44400423612537},"location":"Left Ankle"},{"euler":{"heading":65.67443707878526,"pitch":-8.278690610649933,"roll":-4.494490156464148},"location":"Right Ankle"},{"euler":{"heading":119.50017854302871,"pitch":-159.93754086433105,"roll":53.78684122648409},"location":"Right Hip"},{"euler":{"heading":77.19887261518751,"pitch":-108.04594839374946,"roll":2.1530843779775566},"location":"Right Knee"},{"euler":{"heading":25.169967996956768,"pitch":-136.64435503487718,"roll":59.64226019037524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.634"} +{"sensors":[{"euler":{"heading":74.57760721976094,"pitch":130.9901638353032,"roll":19.778177523180172},"location":"Left Knee"},{"euler":{"heading":72.0011127187709,"pitch":102.39510164788773,"roll":28.699603812512834},"location":"Left Ankle"},{"euler":{"heading":66.40074337090674,"pitch":-8.007071549584941,"roll":-4.495041140817734},"location":"Right Ankle"},{"euler":{"heading":118.76266068872584,"pitch":-160.16253677789794,"roll":54.48940710383569},"location":"Right Hip"},{"euler":{"heading":76.64148535366876,"pitch":-108.69760355437451,"roll":2.687775940179801},"location":"Right Knee"},{"euler":{"heading":23.815471197261093,"pitch":-134.97366953138948,"roll":59.12803417133772},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.734"} +{"sensors":[{"euler":{"heading":93.23859649778485,"pitch":131.7036474517729,"roll":19.625359770862154},"location":"Left Knee"},{"euler":{"heading":70.98225144689381,"pitch":101.30559148309896,"roll":28.285893431261552},"location":"Left Ankle"},{"euler":{"heading":66.69816903381607,"pitch":-7.675114394626447,"roll":-4.6392870267359605},"location":"Right Ankle"},{"euler":{"heading":118.38639461985326,"pitch":-160.29628310010816,"roll":55.28421639345212},"location":"Right Hip"},{"euler":{"heading":76.68983681830188,"pitch":-109.25909319893707,"roll":2.750248346161821},"location":"Right Knee"},{"euler":{"heading":22.258924077534985,"pitch":-133.06380257825052,"roll":58.246480754203944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.835"} +{"sensors":[{"euler":{"heading":111.68348684800637,"pitch":133.47703270659562,"roll":21.00032379377594},"location":"Left Knee"},{"euler":{"heading":67.47152630220444,"pitch":100.14378233478907,"roll":25.3823040881354},"location":"Left Ankle"},{"euler":{"heading":66.50960213043446,"pitch":-7.145102955163802,"roll":-4.962858324062365},"location":"Right Ankle"},{"euler":{"heading":118.20400515786794,"pitch":-160.52290479009733,"roll":56.09329475410691},"location":"Right Hip"},{"euler":{"heading":77.3396031364717,"pitch":-109.88943387904337,"roll":2.3064735115456387},"location":"Right Knee"},{"euler":{"heading":21.101781669781488,"pitch":-131.37617232042547,"roll":57.50933267878355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.936"} +{"sensors":[{"euler":{"heading":129.15263816320572,"pitch":135.62307943593606,"roll":22.625291414398347},"location":"Left Knee"},{"euler":{"heading":63.674373671984,"pitch":99.31065410131016,"roll":21.98782367932186},"location":"Left Ankle"},{"euler":{"heading":65.69614191739102,"pitch":-6.555592659647422,"roll":-5.5915724916561285},"location":"Right Ankle"},{"euler":{"heading":118.24610464208115,"pitch":-160.88311431108758,"roll":56.96521527869622},"location":"Right Hip"},{"euler":{"heading":78.67439282282452,"pitch":-110.40049049113904,"roll":1.300826160391075},"location":"Right Knee"},{"euler":{"heading":20.73535350280334,"pitch":-130.51355508838293,"roll":56.9833994109052},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.37"} +{"sensors":[{"euler":{"heading":116.37487434688515,"pitch":136.71077149234245,"roll":23.987762272958513},"location":"Left Knee"},{"euler":{"heading":61.7194363047856,"pitch":99.27333869117915,"roll":20.082791311389673},"location":"Left Ankle"},{"euler":{"heading":63.80777772565192,"pitch":-6.32503339368268,"roll":-6.3824152424905165},"location":"Right Ankle"},{"euler":{"heading":118.63399417787305,"pitch":-161.22605287997882,"roll":57.6624437508266},"location":"Right Hip"},{"euler":{"heading":81.12570354054208,"pitch":-110.52294144202514,"roll":-0.7105064556480327},"location":"Right Knee"},{"euler":{"heading":20.718068152523003,"pitch":-130.11844957954463,"roll":56.722559469814684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.137"} +{"sensors":[{"euler":{"heading":105.74988691219664,"pitch":136.84594434310821,"roll":25.001486045662663},"location":"Left Knee"},{"euler":{"heading":60.678742674307045,"pitch":99.45225482206124,"roll":18.818262180250706},"location":"Left Ankle"},{"euler":{"heading":60.34574995308673,"pitch":-6.298780054314412,"roll":-7.500423718241466},"location":"Right Ankle"},{"euler":{"heading":119.69559476008574,"pitch":-160.80969759198095,"roll":57.61494937574394},"location":"Right Hip"},{"euler":{"heading":84.23813318648789,"pitch":-110.32064729782263,"roll":-3.5519558100832294},"location":"Right Knee"},{"euler":{"heading":20.877511337270704,"pitch":-129.92535462159017,"roll":56.76905352283322},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.238"} +{"sensors":[{"euler":{"heading":96.91239822097698,"pitch":136.3988499087974,"roll":25.701337441096396},"location":"Left Knee"},{"euler":{"heading":60.31711840687635,"pitch":99.7445293398551,"roll":18.142685962225638},"location":"Left Ankle"},{"euler":{"heading":57.43617495777806,"pitch":-6.975152048882972,"roll":-8.04413134641732},"location":"Right Ankle"},{"euler":{"heading":121.29478528407716,"pitch":-159.95997783278284,"roll":56.84720443816955},"location":"Right Hip"},{"euler":{"heading":86.66431986783911,"pitch":-109.70733256804037,"roll":-5.790510229074906},"location":"Right Knee"},{"euler":{"heading":21.471010203543635,"pitch":-130.47656915943116,"roll":57.0358981705499},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.339"} +{"sensors":[{"euler":{"heading":89.57740839887929,"pitch":135.59021491791765,"roll":26.087453696986756},"location":"Left Knee"},{"euler":{"heading":60.60415656618871,"pitch":100.1325764058696,"roll":18.00966736600307},"location":"Left Ankle"},{"euler":{"heading":56.93630746200025,"pitch":-7.840136843994675,"roll":-7.927218211775588},"location":"Right Ankle"},{"euler":{"heading":122.51530675566946,"pitch":-159.28273004950455,"roll":55.63123399435259},"location":"Right Hip"},{"euler":{"heading":87.0291378810552,"pitch":-109.01784931123633,"roll":-6.280209206167415},"location":"Right Knee"},{"euler":{"heading":22.261409183189272,"pitch":-131.48516224348805,"roll":57.476058353494906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.440"} +{"sensors":[{"euler":{"heading":83.59466755899135,"pitch":134.51869342612588,"roll":26.122458327288083},"location":"Left Knee"},{"euler":{"heading":61.36249090956984,"pitch":100.61306876528265,"roll":18.296200629402765},"location":"Left Ankle"},{"euler":{"heading":58.93017671580023,"pitch":-8.393623159595208,"roll":-7.134496390598029},"location":"Right Ankle"},{"euler":{"heading":122.78877608010252,"pitch":-159.0357070445541,"roll":54.468110594917334},"location":"Right Hip"},{"euler":{"heading":84.62622409294968,"pitch":-108.1848143801127,"roll":-4.427188285550674},"location":"Right Knee"},{"euler":{"heading":23.266518264870346,"pitch":-133.14914601913927,"roll":58.034702518145416},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.541"} +{"sensors":[{"euler":{"heading":78.69770080309222,"pitch":133.3543240835133,"roll":25.710212494559276},"location":"Left Knee"},{"euler":{"heading":62.701241818612864,"pitch":101.10801188875439,"roll":19.16658056646249},"location":"Left Ankle"},{"euler":{"heading":62.024659044220215,"pitch":-8.641760843635687,"roll":-6.033546751538226},"location":"Right Ankle"},{"euler":{"heading":121.69739847209227,"pitch":-159.2508863400987,"roll":53.952549535425604},"location":"Right Hip"},{"euler":{"heading":81.00735168365472,"pitch":-107.57258294210143,"roll":-1.3782194569956063},"location":"Right Knee"},{"euler":{"heading":24.446116438383314,"pitch":-135.44673141722535,"roll":58.662482266330876},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.643"} +{"sensors":[{"euler":{"heading":75.19043072278299,"pitch":132.17514167516197,"roll":24.52044124510335},"location":"Left Knee"},{"euler":{"heading":64.63111763675158,"pitch":101.59096069987895,"roll":21.087422509816243},"location":"Left Ankle"},{"euler":{"heading":64.36594313979819,"pitch":-8.69633475927212,"roll":-5.242692076384404},"location":"Right Ankle"},{"euler":{"heading":120.47140862488305,"pitch":-159.65704770608886,"roll":53.77604458188304},"location":"Right Hip"},{"euler":{"heading":78.16286651528924,"pitch":-107.50907464789128,"roll":0.8596024887039544},"location":"Right Knee"},{"euler":{"heading":25.72025479454498,"pitch":-137.70205827550282,"roll":59.31498403969779},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.744"} +{"sensors":[{"euler":{"heading":73.70888765050469,"pitch":131.21387750764578,"roll":22.237147120593015},"location":"Left Knee"},{"euler":{"heading":68.27425587307643,"pitch":103.20686462989106,"roll":24.491180258834618},"location":"Left Ankle"},{"euler":{"heading":65.54184882581838,"pitch":-8.657951283344907,"roll":-4.924672868745963},"location":"Right Ankle"},{"euler":{"heading":119.76801776239475,"pitch":-159.88509293547997,"roll":53.92344012369474},"location":"Right Hip"},{"euler":{"heading":76.37782986376031,"pitch":-107.74566718310216,"roll":2.1986422398335588},"location":"Right Knee"},{"euler":{"heading":25.37947931509048,"pitch":-137.63185244795253,"roll":59.47098563572801},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.845"} +{"sensors":[{"euler":{"heading":72.95049888545422,"pitch":130.3987397568812,"roll":20.038432408533712},"location":"Left Knee"},{"euler":{"heading":71.10308028576878,"pitch":103.86117816690196,"roll":27.429562232951156},"location":"Left Ankle"},{"euler":{"heading":66.29391394323655,"pitch":-8.467156155010416,"roll":-4.857205581871367},"location":"Right Ankle"},{"euler":{"heading":119.05996598615528,"pitch":-160.071583641932,"roll":54.50609611132527},"location":"Right Hip"},{"euler":{"heading":75.62754687738429,"pitch":-108.28360046479195,"roll":2.7975280158502027},"location":"Right Knee"},{"euler":{"heading":24.329031383581434,"pitch":-135.86241720315726,"roll":59.04888707215521},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.946"} +{"sensors":[{"euler":{"heading":70.0054489969088,"pitch":130.77136578119308,"roll":19.415839167680343},"location":"Left Knee"},{"euler":{"heading":71.14902225719192,"pitch":102.90631035021178,"roll":27.66785600965604},"location":"Left Ankle"},{"euler":{"heading":66.8270225489129,"pitch":-8.095440539509374,"roll":-4.96523502368423},"location":"Right Ankle"},{"euler":{"heading":118.81646938753974,"pitch":-160.0894252777388,"roll":55.20548650019274},"location":"Right Hip"},{"euler":{"heading":75.46479218964586,"pitch":-108.90524041831276,"roll":2.9552752142651824},"location":"Right Knee"},{"euler":{"heading":22.97112824522329,"pitch":-133.81992548284154,"roll":58.13149836493969},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.47"} +{"sensors":[{"euler":{"heading":90.46115409721791,"pitch":132.47547920307377,"roll":22.249255250912306},"location":"Left Knee"},{"euler":{"heading":68.21537003147273,"pitch":101.5094293151906,"roll":25.488570408690435},"location":"Left Ankle"},{"euler":{"heading":66.88182029402161,"pitch":-7.523396485558437,"roll":-5.237461521315807},"location":"Right Ankle"},{"euler":{"heading":118.78482244878577,"pitch":-160.1492327499649,"roll":55.953687850173466},"location":"Right Hip"},{"euler":{"heading":75.86206297068128,"pitch":-109.58971637648149,"roll":2.628497692838664},"location":"Right Knee"},{"euler":{"heading":21.65526542070096,"pitch":-131.9941829345574,"roll":57.28709852844572},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.147"} +{"sensors":[{"euler":{"heading":109.89003868749612,"pitch":134.80918128276642,"roll":23.824329725821077},"location":"Left Knee"},{"euler":{"heading":64.18133302832545,"pitch":100.18348638367155,"roll":21.964713367821393},"location":"Left Ankle"},{"euler":{"heading":66.34363826461946,"pitch":-6.964806837002593,"roll":-5.7824653691842265},"location":"Right Ankle"},{"euler":{"heading":118.90009020390721,"pitch":-160.40930947496844,"roll":56.81456906515612},"location":"Right Hip"},{"euler":{"heading":77.13210667361315,"pitch":-110.08074473883335,"roll":1.6281479235547975},"location":"Right Knee"},{"euler":{"heading":21.102238878630864,"pitch":-130.93226464110165,"roll":56.70213867560115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.250"} +{"sensors":[{"euler":{"heading":134.5572848187465,"pitch":136.0970131544898,"roll":25.21689675323897},"location":"Left Knee"},{"euler":{"heading":61.23194972549291,"pitch":99.9213877453044,"roll":19.418242031039252},"location":"Left Ankle"},{"euler":{"heading":64.92802443815751,"pitch":-6.699576153302334,"roll":-6.566718832265804},"location":"Right Ankle"},{"euler":{"heading":119.42258118351648,"pitch":-160.88712852747162,"roll":57.53936215864051},"location":"Right Hip"},{"euler":{"heading":79.55639600625184,"pitch":-110.09767026495003,"roll":-0.28466686880068215},"location":"Right Knee"},{"euler":{"heading":21.235764990767777,"pitch":-130.38278817699148,"roll":56.388174808041036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.352"} +{"sensors":[{"euler":{"heading":121.99530633687185,"pitch":136.41231183904083,"roll":26.195207077915075},"location":"Left Knee"},{"euler":{"heading":60.02750475294362,"pitch":99.81674897077397,"roll":18.21391782793533},"location":"Left Ankle"},{"euler":{"heading":61.77272199434176,"pitch":-6.698368537972101,"roll":-7.553796949039223},"location":"Right Ankle"},{"euler":{"heading":120.59282306516484,"pitch":-160.70466567472445,"roll":57.60417594277646},"location":"Right Hip"},{"euler":{"heading":82.80075640562667,"pitch":-109.76290323845502,"roll":-3.237450181920614},"location":"Right Knee"},{"euler":{"heading":21.293438491691,"pitch":-130.08825935929232,"roll":56.336857327236935},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.453"} +{"sensors":[{"euler":{"heading":111.30827570318466,"pitch":136.04608065513673,"roll":26.994436370123566},"location":"Left Knee"},{"euler":{"heading":59.66225427764926,"pitch":99.96007407369657,"roll":17.386276045141795},"location":"Left Ankle"},{"euler":{"heading":58.51419979490758,"pitch":-7.128531684174892,"roll":-8.279667254135301},"location":"Right Ankle"},{"euler":{"heading":122.35229075864837,"pitch":-159.890449107252,"roll":56.84375834849881},"location":"Right Hip"},{"euler":{"heading":85.751930765064,"pitch":-109.39911291460952,"roll":-5.851205163728553},"location":"Right Knee"},{"euler":{"heading":21.7265946425219,"pitch":-130.3731834233631,"roll":56.559421594513246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.554"} +{"sensors":[{"euler":{"heading":102.17119813286621,"pitch":135.31022258962307,"roll":27.48249273311121},"location":"Left Knee"},{"euler":{"heading":60.14602884988434,"pitch":100.25156666632691,"roll":17.322648440627617},"location":"Left Ankle"},{"euler":{"heading":57.687779815416825,"pitch":-7.659428515757403,"roll":-8.407950528721772},"location":"Right Ankle"},{"euler":{"heading":123.78581168278353,"pitch":-159.1576541965268,"roll":55.57188251364893},"location":"Right Hip"},{"euler":{"heading":86.35798768855761,"pitch":-108.80295162314857,"roll":-6.553584647355697},"location":"Right Knee"},{"euler":{"heading":22.37893517826971,"pitch":-131.31086508102678,"roll":56.94097943506193},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.654"} +{"sensors":[{"euler":{"heading":94.59782831957959,"pitch":134.26670033066077,"roll":27.59049345980009},"location":"Left Knee"},{"euler":{"heading":61.11267596489591,"pitch":100.67640999969423,"roll":17.684133596564855},"location":"Left Ankle"},{"euler":{"heading":59.244001833875146,"pitch":-8.218485664181664,"roll":-7.685905475849595},"location":"Right Ankle"},{"euler":{"heading":124.21348051450519,"pitch":-158.90438877687413,"roll":54.27719426228404},"location":"Right Hip"},{"euler":{"heading":84.69718891970184,"pitch":-107.86640646083373,"roll":-5.054476182620127},"location":"Right Knee"},{"euler":{"heading":23.17854166044274,"pitch":-132.79227857292412,"roll":57.46563149155573},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.755"} +{"sensors":[{"euler":{"heading":88.28179548762164,"pitch":133.13378029759468,"roll":27.18144411382008},"location":"Left Knee"},{"euler":{"heading":62.332658368406314,"pitch":101.00876899972481,"roll":18.50322023690837},"location":"Left Ankle"},{"euler":{"heading":62.419601650487635,"pitch":-8.834137097763499,"roll":-6.498564928264636},"location":"Right Ankle"},{"euler":{"heading":123.40463246305467,"pitch":-159.0576998991867,"roll":53.66822483605564},"location":"Right Hip"},{"euler":{"heading":81.74622002773165,"pitch":-106.95476581475036,"roll":-2.1990285643581147},"location":"Right Knee"},{"euler":{"heading":24.010687494398468,"pitch":-134.6568007156317,"roll":58.069068342400165},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.856"} +{"sensors":[{"euler":{"heading":83.25361593885947,"pitch":132.06415226783523,"roll":26.107049702438076},"location":"Left Knee"},{"euler":{"heading":64.11189253156569,"pitch":101.34539209975233,"roll":20.121648213217533},"location":"Left Ankle"},{"euler":{"heading":65.10264148543888,"pitch":-8.969473387987149,"roll":-5.773708435438172},"location":"Right Ankle"},{"euler":{"heading":121.79541921674921,"pitch":-159.63317990926802,"roll":53.69515235245008},"location":"Right Hip"},{"euler":{"heading":78.8153480249585,"pitch":-106.97803923327533,"roll":0.30212429207769675},"location":"Right Knee"},{"euler":{"heading":25.17836874495862,"pitch":-137.04737064406854,"roll":58.718411508160145},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.960"} +{"sensors":[{"euler":{"heading":80.10325434497352,"pitch":131.4202370410517,"roll":23.92134473219427},"location":"Left Knee"},{"euler":{"heading":66.86945327840913,"pitch":102.0483528897771,"roll":23.29698339189578},"location":"Left Ankle"},{"euler":{"heading":66.74237733689499,"pitch":-9.016276049188434,"roll":-5.408837591894355},"location":"Right Ankle"},{"euler":{"heading":120.94087729507429,"pitch":-159.97611191834122,"roll":53.87563711720507},"location":"Right Hip"},{"euler":{"heading":76.85881322246264,"pitch":-107.3052353099478,"roll":1.9094118628699273},"location":"Right Knee"},{"euler":{"heading":25.298031870462758,"pitch":-138.0176335796617,"roll":58.96532035734413},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.60"} +{"sensors":[{"euler":{"heading":78.68042891047618,"pitch":130.35946333694653,"roll":21.479210258974845},"location":"Left Knee"},{"euler":{"heading":69.39500795056821,"pitch":103.1122676007994,"roll":26.5110350527062},"location":"Left Ankle"},{"euler":{"heading":67.7806396032055,"pitch":-8.90214844426959,"roll":-5.324203832704919},"location":"Right Ankle"},{"euler":{"heading":119.94678956556686,"pitch":-160.3410007265071,"roll":54.46307340548457},"location":"Right Hip"},{"euler":{"heading":75.88543190021639,"pitch":-107.88096177895304,"roll":2.7809706765829345},"location":"Right Knee"},{"euler":{"heading":24.493228683416483,"pitch":-136.39087022169554,"roll":58.893788321609726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.161"} +{"sensors":[{"euler":{"heading":76.19363601942855,"pitch":130.22351700325189,"roll":20.26253923307736},"location":"Left Knee"},{"euler":{"heading":68.9430071555114,"pitch":102.74479084071947,"roll":27.597431547435583},"location":"Left Ankle"},{"euler":{"heading":68.45257564288495,"pitch":-8.611933599842631,"roll":-5.5042834494344275},"location":"Right Ankle"},{"euler":{"heading":119.63961060901018,"pitch":-160.4944006538564,"roll":55.16676606493611},"location":"Right Hip"},{"euler":{"heading":75.64063871019475,"pitch":-108.42411560105774,"roll":3.0841236089246413},"location":"Right Knee"},{"euler":{"heading":23.181405815074836,"pitch":-134.408033199526,"roll":58.08565948944876},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.264"} +{"sensors":[{"euler":{"heading":95.7680224174857,"pitch":131.5136653029267,"roll":20.967535309769623},"location":"Left Knee"},{"euler":{"heading":66.67370643996026,"pitch":101.67656175664753,"roll":25.850188392692026},"location":"Left Ankle"},{"euler":{"heading":68.57606807859645,"pitch":-8.181990239858369,"roll":-5.710105104490985},"location":"Right Ankle"},{"euler":{"heading":119.51939954810916,"pitch":-160.67621058847075,"roll":55.9313394584425},"location":"Right Hip"},{"euler":{"heading":75.95782483917527,"pitch":-108.97545404095196,"roll":2.9069612480321774},"location":"Right Knee"},{"euler":{"heading":21.813265233567353,"pitch":-132.4609798795734,"roll":57.22709354050389},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.365"} +{"sensors":[{"euler":{"heading":114.62247017573713,"pitch":133.72479877263405,"roll":22.483281778792662},"location":"Left Knee"},{"euler":{"heading":62.68758579596423,"pitch":100.44015558098279,"roll":22.29016955342282},"location":"Left Ankle"},{"euler":{"heading":68.09346127073681,"pitch":-7.670041215872533,"roll":-6.132844594041887},"location":"Right Ankle"},{"euler":{"heading":119.58620959329825,"pitch":-160.95858952962368,"roll":56.81320551259825},"location":"Right Hip"},{"euler":{"heading":77.03704235525774,"pitch":-109.44040863685676,"roll":2.12251512322896},"location":"Right Knee"},{"euler":{"heading":54.40693871021062,"pitch":-132.29613189161606,"roll":55.8481341864535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.465"} +{"sensors":[{"euler":{"heading":138.91022315816343,"pitch":135.35231889537064,"roll":23.859953600913396},"location":"Left Knee"},{"euler":{"heading":59.43132721636781,"pitch":100.0273900228845,"roll":19.25490259808054},"location":"Left Ankle"},{"euler":{"heading":66.57786514366313,"pitch":-7.265537094285279,"roll":-6.882060134637698},"location":"Right Ankle"},{"euler":{"heading":119.91508863396842,"pitch":-161.3939805766613,"roll":57.63188496133843},"location":"Right Hip"},{"euler":{"heading":79.08958811973196,"pitch":-109.6151177731711,"roll":0.47901361090606387},"location":"Right Knee"},{"euler":{"heading":50.50374483918956,"pitch":-131.92901870245447,"roll":55.31332076780815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.566"} +{"sensors":[{"euler":{"heading":125.80670084234708,"pitch":136.00458700583357,"roll":24.94895824082206},"location":"Left Knee"},{"euler":{"heading":58.375694494731036,"pitch":99.98090102059605,"roll":18.048162338272487},"location":"Left Ankle"},{"euler":{"heading":63.46382862929682,"pitch":-7.251483384856752,"roll":-7.662604121173929},"location":"Right Ankle"},{"euler":{"heading":120.79232977057158,"pitch":-161.2295825189952,"roll":57.90619646520459},"location":"Right Hip"},{"euler":{"heading":82.14312930775877,"pitch":-109.25985599585398,"roll":-2.275137750184543},"location":"Right Knee"},{"euler":{"heading":46.8596203552706,"pitch":-131.69236683220902,"roll":54.994488691027335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.666"} +{"sensors":[{"euler":{"heading":114.81978075811237,"pitch":135.87912830525022,"roll":25.829062416739852},"location":"Left Knee"},{"euler":{"heading":58.05062504525794,"pitch":100.25156091853644,"roll":17.230846104445238},"location":"Left Ankle"},{"euler":{"heading":59.96744576636714,"pitch":-7.1763350463710776,"roll":-8.421343709056536},"location":"Right Ankle"},{"euler":{"heading":122.36934679351442,"pitch":-160.26287426709567,"roll":57.440576818684136},"location":"Right Hip"},{"euler":{"heading":84.90381637698289,"pitch":-109.27137039626858,"roll":-4.791373975166088},"location":"Right Knee"},{"euler":{"heading":44.192408319743535,"pitch":-131.92938014898812,"roll":55.0700398219246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.767"} +{"sensors":[{"euler":{"heading":105.38780268230113,"pitch":135.22871547472522,"roll":26.527406175065867},"location":"Left Knee"},{"euler":{"heading":58.464312540732145,"pitch":100.6451548266828,"roll":16.939011494000713},"location":"Left Ankle"},{"euler":{"heading":58.47695118973043,"pitch":-7.40870154173397,"roll":-8.629209338150883},"location":"Right Ankle"},{"euler":{"heading":123.907412114163,"pitch":-159.2490868403861,"roll":56.334019136815726},"location":"Right Hip"},{"euler":{"heading":85.63843473928459,"pitch":-108.86923335664173,"roll":-5.62473657764948},"location":"Right Knee"},{"euler":{"heading":42.298167487769184,"pitch":-132.8989421340893,"roll":55.313035839732144},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.867"} +{"sensors":[{"euler":{"heading":97.62402241407102,"pitch":134.17459392725272,"roll":26.84966555755928},"location":"Left Knee"},{"euler":{"heading":59.33038128665893,"pitch":101.16813934401452,"roll":17.070110344600643},"location":"Left Ankle"},{"euler":{"heading":59.51050607075739,"pitch":-8.005331387560574,"roll":-7.9850384043357945},"location":"Right Ankle"},{"euler":{"heading":124.8791709027467,"pitch":-158.7116781563475,"roll":54.95061722313415},"location":"Right Hip"},{"euler":{"heading":83.99334126535614,"pitch":-107.97606002097757,"roll":-4.3622629198845315},"location":"Right Knee"},{"euler":{"heading":40.974600738992265,"pitch":-134.30904792068037,"roll":55.74423225575893},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.968"} +{"sensors":[{"euler":{"heading":91.06162017266392,"pitch":132.88213453452744,"roll":26.833449001803352},"location":"Left Knee"},{"euler":{"heading":60.72234315799304,"pitch":101.84507540961307,"roll":17.694349310140577},"location":"Left Ankle"},{"euler":{"heading":62.36570546368165,"pitch":-8.467298248804518,"roll":-6.767784563902215},"location":"Right Ankle"},{"euler":{"heading":124.99125381247202,"pitch":-158.46551034071274,"roll":53.96805550082074},"location":"Right Hip"},{"euler":{"heading":80.71275713882054,"pitch":-107.13470401887982,"roll":-1.5135366278960785},"location":"Right Knee"},{"euler":{"heading":40.07089066509304,"pitch":-135.97814312861234,"roll":56.30730903018304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.69"} +{"sensors":[{"euler":{"heading":85.79295815539754,"pitch":131.5189210810747,"roll":26.193854101623018},"location":"Left Knee"},{"euler":{"heading":62.78760884219374,"pitch":102.56056786865177,"roll":19.08116437912652},"location":"Left Ankle"},{"euler":{"heading":65.30413491731349,"pitch":-8.364318423924066,"roll":-5.822256107511994},"location":"Right Ankle"},{"euler":{"heading":123.67337843122483,"pitch":-158.79395930664148,"roll":53.67124995073867},"location":"Right Hip"},{"euler":{"heading":76.87898142493849,"pitch":-106.93373361699184,"roll":1.4628170348935294},"location":"Right Knee"},{"euler":{"heading":39.332551598583734,"pitch":-137.9240788157511,"roll":56.90782812716474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.170"} +{"sensors":[{"euler":{"heading":82.0386623398578,"pitch":130.37952897296722,"roll":24.480718691460716},"location":"Left Knee"},{"euler":{"heading":65.20884795797437,"pitch":103.0670110817866,"roll":21.79804794121387},"location":"Left Ankle"},{"euler":{"heading":67.11747142558215,"pitch":-8.45288658153166,"roll":-5.346280496760795},"location":"Right Ankle"},{"euler":{"heading":123.03104058810234,"pitch":-158.97706337597734,"roll":53.6103749556648},"location":"Right Hip"},{"euler":{"heading":74.36608328244463,"pitch":-107.04036025529265,"roll":3.3727853314041765},"location":"Right Knee"},{"euler":{"heading":38.274296438725365,"pitch":-139.200420934176,"roll":57.36079531444827},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.270"} +{"sensors":[{"euler":{"heading":80.15979610587202,"pitch":129.2478260756705,"roll":22.088896822314645},"location":"Left Knee"},{"euler":{"heading":68.66921316217693,"pitch":104.17280997360794,"roll":25.50574314709248},"location":"Left Ankle"},{"euler":{"heading":68.24947428302394,"pitch":-8.326347923378494,"roll":-5.149152447084716},"location":"Right Ankle"},{"euler":{"heading":122.20918652929211,"pitch":-159.25435703837962,"roll":53.96183746009832},"location":"Right Hip"},{"euler":{"heading":73.12947495420018,"pitch":-107.57382422976339,"roll":4.391756798263759},"location":"Right Knee"},{"euler":{"heading":36.20936679485283,"pitch":-137.91162884075842,"roll":57.405965783003445},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.371"} +{"sensors":[{"euler":{"heading":77.60006649528482,"pitch":129.02929346810345,"roll":20.58000714008318},"location":"Left Knee"},{"euler":{"heading":70.45854184595925,"pitch":103.47427897624715,"roll":27.630168832383234},"location":"Left Ankle"},{"euler":{"heading":68.83077685472155,"pitch":-8.024963131040645,"roll":-5.190487202376245},"location":"Right Ankle"},{"euler":{"heading":121.7882678763629,"pitch":-159.26017133454167,"roll":54.609403714088494},"location":"Right Hip"},{"euler":{"heading":72.69152745878016,"pitch":-108.22269180678705,"roll":4.815081118437384},"location":"Right Knee"},{"euler":{"heading":33.46968011536755,"pitch":-136.14546595668259,"roll":56.64661920470311},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.471"} +{"sensors":[{"euler":{"heading":71.24005984575635,"pitch":130.2138641212931,"roll":20.99700642607486},"location":"Left Knee"},{"euler":{"heading":69.17518766136332,"pitch":102.00810107862243,"roll":26.904651949144913},"location":"Left Ankle"},{"euler":{"heading":69.0476991692494,"pitch":-7.74121681793658,"roll":-5.383938482138621},"location":"Right Ankle"},{"euler":{"heading":121.5219410887266,"pitch":-159.3779042010875,"roll":55.385963342679645},"location":"Right Hip"},{"euler":{"heading":72.98487471290214,"pitch":-108.80042262610836,"roll":4.658573006593645},"location":"Right Knee"},{"euler":{"heading":30.616462103830795,"pitch":-134.21841936101433,"roll":55.7319572842328},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.572"} +{"sensors":[{"euler":{"heading":92.32855386118072,"pitch":132.3987277091638,"roll":22.572305783467378},"location":"Left Knee"},{"euler":{"heading":65.576418895227,"pitch":100.7885409707602,"roll":23.807936754230422},"location":"Left Ankle"},{"euler":{"heading":68.84917925232446,"pitch":-7.392095136142922,"roll":-5.751794633924759},"location":"Right Ankle"},{"euler":{"heading":121.40724697985394,"pitch":-159.64011378097874,"roll":56.18486700841168},"location":"Right Hip"},{"euler":{"heading":73.93638724161192,"pitch":-109.35788036349753,"roll":3.9989657059342805},"location":"Right Knee"},{"euler":{"heading":28.429815893447717,"pitch":-132.6903274249129,"roll":55.00251155580952},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.672"} +{"sensors":[{"euler":{"heading":111.92694847506264,"pitch":134.77135493824744,"roll":24.17132520512064},"location":"Left Knee"},{"euler":{"heading":61.806277005704295,"pitch":99.99093687368418,"roll":20.34589307880738},"location":"Left Ankle"},{"euler":{"heading":67.95801132709202,"pitch":-6.97788562252863,"roll":-6.401615170532283},"location":"Right Ankle"},{"euler":{"heading":121.44152228186854,"pitch":-160.22610240288088,"roll":57.06013030757051},"location":"Right Hip"},{"euler":{"heading":75.68649851745073,"pitch":-109.70334232714778,"roll":2.5928191353408523},"location":"Right Knee"},{"euler":{"heading":27.06183430410295,"pitch":-131.8837946824216,"roll":54.50851040022857},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.773"} +{"sensors":[{"euler":{"heading":136.6467536275564,"pitch":135.9004694444227,"roll":25.57919268460858},"location":"Left Knee"},{"euler":{"heading":60.10064930513387,"pitch":99.82934318631577,"roll":18.567553770926644},"location":"Left Ankle"},{"euler":{"heading":65.86846019438282,"pitch":-7.148847060275767,"roll":-7.148953653479055},"location":"Right Ankle"},{"euler":{"heading":121.9473700536817,"pitch":-160.7034921625928,"roll":57.679117276813464},"location":"Right Hip"},{"euler":{"heading":78.57409866570566,"pitch":-109.370508094433,"roll":0.07103722180676675},"location":"Right Knee"},{"euler":{"heading":26.030650873692654,"pitch":-131.33291521417945,"roll":54.27640936020572},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.874"} +{"sensors":[{"euler":{"heading":123.91957826480076,"pitch":136.11667249998044,"roll":26.665023416147722},"location":"Left Knee"},{"euler":{"heading":59.11558437462048,"pitch":99.95890886768419,"roll":17.34829839383398},"location":"Left Ankle"},{"euler":{"heading":62.237864174944534,"pitch":-6.915212354248191,"roll":-7.99655828813115},"location":"Right Ankle"},{"euler":{"heading":123.07138304831352,"pitch":-160.07689294633352,"roll":57.53620554913212},"location":"Right Hip"},{"euler":{"heading":81.7479387991351,"pitch":-109.68345728498971,"roll":-2.79231650037391},"location":"Right Knee"},{"euler":{"heading":25.365085786323387,"pitch":-131.1496236927615,"roll":54.36126842418515},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.975"} +{"sensors":[{"euler":{"heading":112.92762043832069,"pitch":135.8675052499824,"roll":27.42352107453295},"location":"Left Knee"},{"euler":{"heading":58.75402593715843,"pitch":100.16926798091576,"roll":16.71971855445058},"location":"Left Ankle"},{"euler":{"heading":59.65782775745008,"pitch":-6.773691118823372,"roll":-8.303152459318035},"location":"Right Ankle"},{"euler":{"heading":124.45174474348217,"pitch":-159.17545365170017,"roll":56.66383499421891},"location":"Right Hip"},{"euler":{"heading":83.48564491922158,"pitch":-109.63386155649074,"roll":-4.631834850336519},"location":"Right Knee"},{"euler":{"heading":24.95982720769105,"pitch":-131.50341132348535,"roll":54.656391581766634},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.75"} +{"sensors":[{"euler":{"heading":103.66610839448862,"pitch":135.05575472498415,"roll":28.024918967079657},"location":"Left Knee"},{"euler":{"heading":59.30987334344259,"pitch":100.59609118282418,"roll":16.66649669900552},"location":"Left Ankle"},{"euler":{"heading":59.598294981705074,"pitch":-6.977572006941035,"roll":-7.997837213386232},"location":"Right Ankle"},{"euler":{"heading":125.46282026913394,"pitch":-158.47040828653016,"roll":55.42870149479702},"location":"Right Hip"},{"euler":{"heading":82.76208042729942,"pitch":-109.04547540084167,"roll":-2.7499013653028674},"location":"Right Knee"},{"euler":{"heading":25.170094486921947,"pitch":-132.54682019113682,"roll":55.12200242358997},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.175"} +{"sensors":[{"euler":{"heading":96.05574755503976,"pitch":133.89392925248575,"roll":28.153677070371693},"location":"Left Knee"},{"euler":{"heading":60.28513600909833,"pitch":101.07398206454178,"roll":17.07484702910497},"location":"Left Ankle"},{"euler":{"heading":61.56346548353457,"pitch":-7.3735648062469314,"roll":-6.979303492047609},"location":"Right Ankle"},{"euler":{"heading":125.43528824222055,"pitch":-158.34211745787715,"roll":54.36708134531732},"location":"Right Hip"},{"euler":{"heading":80.1046223845695,"pitch":-108.3034278607575,"roll":-0.7374112287725809},"location":"Right Knee"},{"euler":{"heading":25.446835038229754,"pitch":-133.71713817202314,"roll":55.734802181230975},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.276"} +{"sensors":[{"euler":{"heading":89.70642279953577,"pitch":132.6607863272372,"roll":27.713309363334524},"location":"Left Knee"},{"euler":{"heading":61.7378724081885,"pitch":101.5353338580876,"roll":18.07361232619447},"location":"Left Ankle"},{"euler":{"heading":64.70711893518111,"pitch":-7.648708325622239,"roll":-5.912623142842848},"location":"Right Ankle"},{"euler":{"heading":124.3792594179985,"pitch":-158.58915571208945,"roll":53.86787321078559},"location":"Right Hip"},{"euler":{"heading":76.78166014611254,"pitch":-107.89183507468175,"roll":2.061329894104677},"location":"Right Knee"},{"euler":{"heading":25.68965153440678,"pitch":-135.22042435482084,"roll":56.38632196310788},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.377"} +{"sensors":[{"euler":{"heading":84.64203051958219,"pitch":131.45095769451348,"roll":26.61072842700107},"location":"Left Knee"},{"euler":{"heading":64.24533516736966,"pitch":102.00680047227884,"roll":20.266251093575026},"location":"Left Ankle"},{"euler":{"heading":66.736407041663,"pitch":-7.446337493060015,"roll":-5.290110828558563},"location":"Right Ankle"},{"euler":{"heading":122.82883347619865,"pitch":-159.0427401408805,"roll":53.68733588970703},"location":"Right Hip"},{"euler":{"heading":73.84099413150129,"pitch":-108.23390156721359,"roll":4.142696904694209},"location":"Right Knee"},{"euler":{"heading":26.1644363809661,"pitch":-137.11713191933876,"roll":57.04768976679709},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.477"} +{"sensors":[{"euler":{"heading":81.62157746762396,"pitch":130.48711192506212,"roll":24.418405584300963},"location":"Left Knee"},{"euler":{"heading":67.6583016506327,"pitch":103.29362042505096,"roll":23.664625984217523},"location":"Left Ankle"},{"euler":{"heading":67.76901633749671,"pitch":-6.995453743754013,"roll":-5.067349745702708},"location":"Right Ankle"},{"euler":{"heading":121.7459501285788,"pitch":-159.32596612679245,"roll":53.86860230073633},"location":"Right Hip"},{"euler":{"heading":72.05064471835117,"pitch":-108.81051141049224,"roll":5.315927214224788},"location":"Right Knee"},{"euler":{"heading":25.422992742869493,"pitch":-137.24291872740488,"roll":57.230420790117385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.578"} +{"sensors":[{"euler":{"heading":79.83441972086158,"pitch":129.5759007325559,"roll":22.07031502587087},"location":"Left Knee"},{"euler":{"heading":70.29247148556942,"pitch":103.87050838254586,"roll":26.666913385795773},"location":"Left Ankle"},{"euler":{"heading":68.39836470374703,"pitch":-6.514658369378612,"roll":-5.166864771132437},"location":"Right Ankle"},{"euler":{"heading":120.79010511572092,"pitch":-159.63086951411321,"roll":54.4567420706627},"location":"Right Hip"},{"euler":{"heading":71.36433024651605,"pitch":-109.52321026944301,"roll":5.82183449280231},"location":"Right Knee"},{"euler":{"heading":24.005693468582542,"pitch":-135.7311268546644,"roll":56.90737871110564},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.678"} +{"sensors":[{"euler":{"heading":76.70097774877541,"pitch":129.78081065930033,"roll":20.963283523283785},"location":"Left Knee"},{"euler":{"heading":70.73197433701247,"pitch":103.13345754429129,"roll":27.493972047216197},"location":"Left Ankle"},{"euler":{"heading":68.73977823337233,"pitch":-6.081942532440751,"roll":-5.300178294019194},"location":"Right Ankle"},{"euler":{"heading":120.23609460414883,"pitch":-159.83653256270188,"roll":55.22356786359643},"location":"Right Hip"},{"euler":{"heading":71.37789722186444,"pitch":-110.1708892424987,"roll":5.82715104352208},"location":"Right Knee"},{"euler":{"heading":22.15512412172429,"pitch":-133.93301416919797,"roll":56.06039083999508},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.779"} +{"sensors":[{"euler":{"heading":97.76837997389788,"pitch":131.3464795933703,"roll":21.885705170955408},"location":"Left Knee"},{"euler":{"heading":67.99627690331123,"pitch":101.79511178986216,"roll":25.53207484249458},"location":"Left Ankle"},{"euler":{"heading":68.6408004100351,"pitch":-5.567498279196676,"roll":-5.570160464617274},"location":"Right Ankle"},{"euler":{"heading":119.79998514373396,"pitch":-160.1341293064317,"roll":56.09496107723679},"location":"Right Hip"},{"euler":{"heading":71.98385749967801,"pitch":-110.84130031824884,"roll":5.369435939169872},"location":"Right Knee"},{"euler":{"heading":20.52086170955186,"pitch":-132.20846275227817,"roll":55.273101755995576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.880"} +{"sensors":[{"euler":{"heading":116.4977919765081,"pitch":133.68058163403327,"roll":23.465884653859867},"location":"Left Knee"},{"euler":{"heading":63.80289921298011,"pitch":100.48435061087595,"roll":21.891367358245123},"location":"Left Ankle"},{"euler":{"heading":67.88922036903159,"pitch":-4.998248451277008,"roll":-6.1006444181555475},"location":"Right Ankle"},{"euler":{"heading":119.64498662936057,"pitch":-160.57071637578852,"roll":56.99171496951311},"location":"Right Hip"},{"euler":{"heading":73.41047174971021,"pitch":-111.35717028642395,"roll":4.2949923452528855},"location":"Right Knee"},{"euler":{"heading":19.643775538596675,"pitch":-131.13761647705036,"roll":54.745791580396016},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.981"} +{"sensors":[{"euler":{"heading":140.5042627788573,"pitch":135.10627347062996,"roll":24.900546188473882},"location":"Left Knee"},{"euler":{"heading":60.5413592916821,"pitch":100.06716554978837,"roll":18.94598062242061},"location":"Left Ankle"},{"euler":{"heading":65.95654833212843,"pitch":-4.4984236061493075,"roll":-6.878079976339993},"location":"Right Ankle"},{"euler":{"heading":119.85548796642452,"pitch":-161.20739473820967,"roll":57.8175434725618},"location":"Right Hip"},{"euler":{"heading":75.7631745747392,"pitch":-111.52770325778157,"roll":2.427993110727597},"location":"Right Knee"},{"euler":{"heading":19.52939798473701,"pitch":-130.54885482934532,"roll":54.47746242235641},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.83"} +{"sensors":[{"euler":{"heading":127.46008650097157,"pitch":135.46439612356696,"roll":25.991741569626495},"location":"Left Knee"},{"euler":{"heading":59.668473362513886,"pitch":100.18544899480953,"roll":17.90138256017855},"location":"Left Ankle"},{"euler":{"heading":62.72339349891559,"pitch":-4.317331245534377,"roll":-7.702771978705995},"location":"Right Ankle"},{"euler":{"heading":120.77618916978207,"pitch":-161.1679052643887,"roll":58.148289125305624},"location":"Right Hip"},{"euler":{"heading":79.05560711726528,"pitch":-111.25618293200341,"roll":-0.4460562003451627},"location":"Right Knee"},{"euler":{"heading":19.476458186263308,"pitch":-130.2502193464108,"roll":54.410966180120774},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.184"} +{"sensors":[{"euler":{"heading":116.52657785087442,"pitch":135.04295651121026,"roll":26.842567412663843},"location":"Left Knee"},{"euler":{"heading":59.3703760262625,"pitch":100.53565409532858,"roll":17.079994304160696},"location":"Left Ankle"},{"euler":{"heading":59.369804149024034,"pitch":-4.598098120980939,"roll":-8.401244780835395},"location":"Right Ankle"},{"euler":{"heading":122.29857025280387,"pitch":-160.40111473794983,"roll":57.614710212775066},"location":"Right Hip"},{"euler":{"heading":82.36879640553876,"pitch":-110.76806463880308,"roll":-3.4889505803106466},"location":"Right Knee"},{"euler":{"heading":19.985062367636978,"pitch":-130.56894741176973,"roll":54.6573695621087},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.284"} +{"sensors":[{"euler":{"heading":106.95517006578697,"pitch":134.37616086008924,"roll":27.33331067139746},"location":"Left Knee"},{"euler":{"heading":59.53333842363625,"pitch":100.75083868579573,"roll":16.840744873744626},"location":"Left Ankle"},{"euler":{"heading":58.001573734121635,"pitch":-5.388288308882846,"roll":-8.592370302751856},"location":"Right Ankle"},{"euler":{"heading":123.9999632275235,"pitch":-159.58600326415484,"roll":56.41573919149756},"location":"Right Hip"},{"euler":{"heading":83.87566676498489,"pitch":-110.01625817492278,"roll":-4.896305522279582},"location":"Right Knee"},{"euler":{"heading":20.705306130873282,"pitch":-131.65580267059275,"roll":55.03538260589783},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.384"} +{"sensors":[{"euler":{"heading":98.95340305920827,"pitch":133.41354477408032,"roll":27.456229604257715},"location":"Left Knee"},{"euler":{"heading":60.46750458127263,"pitch":101.13825481721616,"roll":17.225420386370164},"location":"Left Ankle"},{"euler":{"heading":59.22641636070947,"pitch":-6.1807094779945615,"roll":-7.914383272476671},"location":"Right Ankle"},{"euler":{"heading":124.79371690477114,"pitch":-159.18365293773937,"roll":55.0554152723478},"location":"Right Hip"},{"euler":{"heading":82.4756000884864,"pitch":-108.9771323574305,"roll":-3.919174970051624},"location":"Right Knee"},{"euler":{"heading":21.447275517785954,"pitch":-133.04647240353347,"roll":55.531844345308045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.485"} +{"sensors":[{"euler":{"heading":92.38931275328744,"pitch":132.2534402966723,"roll":27.116856643831944},"location":"Left Knee"},{"euler":{"heading":61.78325412314537,"pitch":101.59317933549454,"roll":18.034128347733148},"location":"Left Ankle"},{"euler":{"heading":62.01002472463853,"pitch":-6.712638530195106,"roll":-6.735444945229005},"location":"Right Ankle"},{"euler":{"heading":124.28934521429403,"pitch":-159.16528764396543,"roll":54.268623745113025},"location":"Right Hip"},{"euler":{"heading":79.27804007963776,"pitch":-108.07941912168745,"roll":-1.2460074730464616},"location":"Right Knee"},{"euler":{"heading":22.28379796600736,"pitch":-134.74182516318012,"roll":56.14740991077724},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.585"} +{"sensors":[{"euler":{"heading":87.1816314779587,"pitch":131.04684626700507,"roll":26.15517097944875},"location":"Left Knee"},{"euler":{"heading":63.65492871083083,"pitch":102.0838614019451,"roll":19.511965512959833},"location":"Left Ankle"},{"euler":{"heading":64.63402225217467,"pitch":-6.847624677175595,"roll":-5.936900450706104},"location":"Right Ankle"},{"euler":{"heading":123.04791069286463,"pitch":-159.4425088795689,"roll":53.99801137060172},"location":"Right Hip"},{"euler":{"heading":75.906486071674,"pitch":-107.6964772095187,"roll":1.4785932742581847},"location":"Right Knee"},{"euler":{"heading":23.405418169406627,"pitch":-137.0051426468621,"roll":56.78891891969952},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.686"} +{"sensors":[{"euler":{"heading":83.63221833016284,"pitch":130.18591164030457,"roll":24.089653881503878},"location":"Left Knee"},{"euler":{"heading":66.15818583974774,"pitch":102.6192252617506,"roll":22.47951896166385},"location":"Left Ankle"},{"euler":{"heading":66.10187002695722,"pitch":-6.8316122094580365,"roll":-5.593210405635494},"location":"Right Ankle"},{"euler":{"heading":122.20561962357817,"pitch":-159.623257991612,"roll":53.98571023354155},"location":"Right Hip"},{"euler":{"heading":73.5345874645066,"pitch":-107.90807948856684,"roll":3.2057339468323662},"location":"Right Knee"},{"euler":{"heading":24.077376352465965,"pitch":-138.4233783821759,"roll":57.26002702772956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.787"} +{"sensors":[{"euler":{"heading":81.90024649714655,"pitch":129.0235704762741,"roll":21.55568849335349},"location":"Left Knee"},{"euler":{"heading":69.51736725577297,"pitch":103.83855273557555,"roll":26.037817065497464},"location":"Left Ankle"},{"euler":{"heading":67.0354330242615,"pitch":-6.685950988512233,"roll":-5.540139365071944},"location":"Right Ankle"},{"euler":{"heading":121.34755766122035,"pitch":-159.86718219245083,"roll":54.405889210187404},"location":"Right Hip"},{"euler":{"heading":72.41237871805595,"pitch":-108.41102153971016,"roll":4.103910552149129},"location":"Right Knee"},{"euler":{"heading":23.67588871721937,"pitch":-137.29354054395833,"roll":57.490274324956616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.888"} +{"sensors":[{"euler":{"heading":79.7102218474319,"pitch":128.7024634286467,"roll":19.87511964401814},"location":"Left Knee"},{"euler":{"heading":71.00313053019568,"pitch":103.43594746201799,"roll":27.884035358947717},"location":"Left Ankle"},{"euler":{"heading":67.61938972183535,"pitch":-6.37985588966101,"roll":-5.636125428564751},"location":"Right Ankle"},{"euler":{"heading":120.84405189509832,"pitch":-160.08046397320572,"roll":55.10280028916867},"location":"Right Hip"},{"euler":{"heading":72.17114084625035,"pitch":-109.05741938573915,"roll":4.406019496934216},"location":"Right Knee"},{"euler":{"heading":22.502049845497435,"pitch":-135.4891864895625,"roll":56.984996892460956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.988"} +{"sensors":[{"euler":{"heading":73.9016996626887,"pitch":129.85096708578203,"roll":20.168857679616327},"location":"Left Knee"},{"euler":{"heading":69.1965674771761,"pitch":102.2736027158162,"roll":26.733131823052943},"location":"Left Ankle"},{"euler":{"heading":67.7324507496518,"pitch":-6.010620300694908,"roll":-5.847512885708276},"location":"Right Ankle"},{"euler":{"heading":120.59089670558849,"pitch":-160.30991757588518,"roll":55.8925202602518},"location":"Right Hip"},{"euler":{"heading":72.58527676162531,"pitch":-109.63292744716524,"roll":4.196667547240795},"location":"Right Knee"},{"euler":{"heading":21.101844860947693,"pitch":-133.68401784060626,"roll":56.18024720321486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.89"} +{"sensors":[{"euler":{"heading":94.63027969641983,"pitch":132.05962037720383,"roll":21.764471911654695},"location":"Left Knee"},{"euler":{"heading":65.25191072945849,"pitch":100.88374244423458,"roll":23.32856864074765},"location":"Left Ankle"},{"euler":{"heading":67.29045567468663,"pitch":-5.565808270625418,"roll":-6.269011597137448},"location":"Right Ankle"},{"euler":{"heading":120.55680703502965,"pitch":-160.61642581829668,"roll":56.68451823422662},"location":"Right Hip"},{"euler":{"heading":73.70799908546277,"pitch":-110.13838470244872,"roll":3.420750792516715},"location":"Right Knee"},{"euler":{"heading":20.110410374852922,"pitch":-132.41561605654564,"roll":55.50597248289338},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.190"} +{"sensors":[{"euler":{"heading":119.80475172677785,"pitch":134.19740833948345,"roll":23.369274720489226},"location":"Left Knee"},{"euler":{"heading":61.520469656512645,"pitch":99.93911819981112,"roll":19.88946177667289},"location":"Left Ankle"},{"euler":{"heading":66.16141010721796,"pitch":-5.1154774435628765,"roll":-6.898360437423703},"location":"Right Ankle"},{"euler":{"heading":120.65737633152669,"pitch":-161.223533236467,"roll":57.46606641080396},"location":"Right Hip"},{"euler":{"heading":74.9809491769165,"pitch":-110.33079623220385,"roll":2.3786757132650433},"location":"Right Knee"},{"euler":{"heading":19.65561933736763,"pitch":-131.65530445089107,"roll":55.02412523460404},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.290"} +{"sensors":[{"euler":{"heading":108.19302655410007,"pitch":135.0589175055351,"roll":24.657347248440303},"location":"Left Knee"},{"euler":{"heading":60.01217269086138,"pitch":99.70770637983001,"roll":18.4005155990056},"location":"Left Ankle"},{"euler":{"heading":63.78901909649616,"pitch":-5.203929699206588,"roll":-7.633524393681332},"location":"Right Ankle"},{"euler":{"heading":121.26663869837402,"pitch":-161.7636799128203,"roll":57.98195976972357},"location":"Right Hip"},{"euler":{"heading":77.55160425922486,"pitch":-109.84771660898346,"roll":0.20330814193853897},"location":"Right Knee"},{"euler":{"heading":19.496307403630865,"pitch":-131.14602400580196,"roll":54.76546271114364},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.391"} +{"sensors":[{"euler":{"heading":98.72997389869008,"pitch":135.0655257549816,"roll":25.579112523596272},"location":"Left Knee"},{"euler":{"heading":59.03595542177524,"pitch":99.69943574184703,"roll":17.26046403910504},"location":"Left Ankle"},{"euler":{"heading":59.94136718684655,"pitch":-5.233536729285929,"roll":-8.670171954313199},"location":"Right Ankle"},{"euler":{"heading":122.65872482853662,"pitch":-161.14356192153826,"roll":57.677513792751206},"location":"Right Hip"},{"euler":{"heading":80.42144383330238,"pitch":-109.63794494808512,"roll":-2.379522672255315},"location":"Right Knee"},{"euler":{"heading":19.58417666326778,"pitch":-130.88142160522176,"roll":54.82641644002928},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.492"} +{"sensors":[{"euler":{"heading":90.58197650882107,"pitch":134.66522317948343,"roll":26.189951271236644},"location":"Left Knee"},{"euler":{"heading":58.60110987959772,"pitch":99.71699216766233,"roll":16.646917635194537},"location":"Left Ankle"},{"euler":{"heading":57.340980468161895,"pitch":-5.5976830563573365,"roll":-9.16565475888188},"location":"Right Ankle"},{"euler":{"heading":124.29910234568295,"pitch":-160.26045572938443,"roll":56.653512413476086},"location":"Right Hip"},{"euler":{"heading":81.71054944997213,"pitch":-109.14290045327661,"roll":-3.7353204050297837},"location":"Right Knee"},{"euler":{"heading":19.900758996941,"pitch":-131.3745294446996,"roll":55.043774796026355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.593"} +{"sensors":[{"euler":{"heading":83.76127885793896,"pitch":133.9112008615351,"roll":26.55845614411298},"location":"Left Knee"},{"euler":{"heading":59.22224889163795,"pitch":99.9640429508961,"roll":16.800975871675085},"location":"Left Ankle"},{"euler":{"heading":57.43188242134571,"pitch":-6.431664750721603,"roll":-8.811589282993692},"location":"Right Ankle"},{"euler":{"heading":125.45044211111465,"pitch":-159.659410156446,"roll":55.26316117212848},"location":"Right Hip"},{"euler":{"heading":80.64574450497493,"pitch":-108.16611040794895,"roll":-2.9555383645268054},"location":"Right Knee"},{"euler":{"heading":20.460683097246903,"pitch":-132.46832650022964,"roll":55.37064731642373},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.694"} +{"sensors":[{"euler":{"heading":78.03515097214508,"pitch":133.0200807753816,"roll":26.596360529701684},"location":"Left Knee"},{"euler":{"heading":60.28752400247416,"pitch":100.2613886558065,"roll":17.464628284507576},"location":"Left Ankle"},{"euler":{"heading":60.07619417921114,"pitch":-6.938498275649443,"roll":-7.942930354694323},"location":"Right Ankle"},{"euler":{"heading":125.51789790000319,"pitch":-159.4997191408014,"roll":54.09934505491563},"location":"Right Hip"},{"euler":{"heading":77.51867005447744,"pitch":-107.20574936715406,"roll":-0.26623452807412473},"location":"Right Knee"},{"euler":{"heading":21.033364787522217,"pitch":-133.78399385020668,"roll":55.82108258478135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.794"} +{"sensors":[{"euler":{"heading":73.40038587493058,"pitch":132.0305726978434,"roll":26.142974476731517},"location":"Left Knee"},{"euler":{"heading":61.77752160222674,"pitch":100.54149979022586,"roll":18.624415456056816},"location":"Left Ankle"},{"euler":{"heading":63.32482476129003,"pitch":-7.413398448084499,"roll":-6.879887319224891},"location":"Right Ankle"},{"euler":{"heading":124.18485811000288,"pitch":-159.77474722672127,"roll":53.739410549424065},"location":"Right Hip"},{"euler":{"heading":73.8480530490297,"pitch":-106.61017443043865,"roll":3.035388924733288},"location":"Right Knee"},{"euler":{"heading":21.786278308769994,"pitch":-135.57434446518602,"roll":56.37647432630322},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.895"} +{"sensors":[{"euler":{"heading":70.21659728743752,"pitch":131.02126542805908,"roll":24.897427029058363},"location":"Left Knee"},{"euler":{"heading":63.76851944200407,"pitch":100.81859981120327,"roll":20.630723910451138},"location":"Left Ankle"},{"euler":{"heading":65.64859228516103,"pitch":-7.57205860327605,"roll":-6.266898587302403},"location":"Right Ankle"},{"euler":{"heading":122.7038722990026,"pitch":-160.22227250404916,"roll":53.57796949448166},"location":"Right Hip"},{"euler":{"heading":70.79449774412673,"pitch":-106.68040698739479,"roll":5.4693500322599595},"location":"Right Knee"},{"euler":{"heading":22.920150477892996,"pitch":-137.7919100186674,"roll":57.01382689367289},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.995"} +{"sensors":[{"euler":{"heading":68.85743755869377,"pitch":130.29413888525318,"roll":22.645184326152528},"location":"Left Knee"},{"euler":{"heading":67.24166749780366,"pitch":101.94298983008294,"roll":24.142651519406023},"location":"Left Ankle"},{"euler":{"heading":66.98998305664493,"pitch":-7.571102742948446,"roll":-5.990208728572162},"location":"Right Ankle"},{"euler":{"heading":121.59598506910234,"pitch":-160.53129525364426,"roll":53.88267254503349},"location":"Right Hip"},{"euler":{"heading":68.92129796971406,"pitch":-107.13736628865531,"roll":6.953665029033964},"location":"Right Knee"},{"euler":{"heading":22.428135430103698,"pitch":-137.89396901680067,"roll":57.16244420430561},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.97"} +{"sensors":[{"euler":{"heading":68.2341938028244,"pitch":129.68347499672785,"roll":20.436915893537275},"location":"Left Knee"},{"euler":{"heading":69.78625074802329,"pitch":101.94244084707464,"roll":27.122136367465423},"location":"Left Ankle"},{"euler":{"heading":67.83473475098045,"pitch":-7.526492468653601,"roll":-5.972437855714945},"location":"Right Ankle"},{"euler":{"heading":120.68638656219211,"pitch":-160.92816572827982,"roll":54.525655290530146},"location":"Right Hip"},{"euler":{"heading":68.12291817274266,"pitch":-107.65487965978978,"roll":7.683298526130567},"location":"Right Knee"},{"euler":{"heading":21.147821887093325,"pitch":-136.1733221151206,"roll":56.852449783875045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.198"} +{"sensors":[{"euler":{"heading":65.82952442254195,"pitch":130.00887749705507,"roll":19.66197430418355},"location":"Left Knee"},{"euler":{"heading":69.63262567322096,"pitch":100.98569676236717,"roll":27.566172730718883},"location":"Left Ankle"},{"euler":{"heading":68.19501127588241,"pitch":-7.430093221788241,"roll":-6.25644407014345},"location":"Right Ankle"},{"euler":{"heading":120.31774790597291,"pitch":-161.12909915545183,"roll":55.229339761477135},"location":"Right Hip"},{"euler":{"heading":68.10437635546839,"pitch":-108.01439169381081,"roll":7.858718673517512},"location":"Right Knee"},{"euler":{"heading":19.745539698383993,"pitch":-134.31223990360854,"roll":56.085954805487546},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.298"} +{"sensors":[{"euler":{"heading":59.534071980287756,"pitch":131.54548974734956,"roll":22.364526873765193},"location":"Left Knee"},{"euler":{"heading":66.61936310589886,"pitch":99.85587708613045,"roll":25.247055457646994},"location":"Left Ankle"},{"euler":{"heading":68.01926014829417,"pitch":-7.193333899609417,"roll":-6.480799663129105},"location":"Right Ankle"},{"euler":{"heading":120.36097311537563,"pitch":-161.28493923990666,"roll":55.95015578532942},"location":"Right Hip"},{"euler":{"heading":68.58768871992154,"pitch":-108.35045252442973,"roll":7.554096806165761},"location":"Right Knee"},{"euler":{"heading":18.570985728545594,"pitch":-132.6247659132477,"roll":55.3586093249388},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.399"} +{"sensors":[{"euler":{"heading":88.02441478225899,"pitch":133.75344077261462,"roll":23.99682418638867},"location":"Left Knee"},{"euler":{"heading":62.73867679530897,"pitch":98.7640393775174,"roll":21.716099911882292},"location":"Left Ankle"},{"euler":{"heading":67.19233413346475,"pitch":-6.805250509648475,"roll":-6.938969696816194},"location":"Right Ankle"},{"euler":{"heading":120.61237580383806,"pitch":-161.56894531591598,"roll":56.661390206796476},"location":"Right Hip"},{"euler":{"heading":69.7726698479294,"pitch":-108.62790727198676,"roll":6.629937125549185},"location":"Right Knee"},{"euler":{"heading":18.045137155691037,"pitch":-131.66228932192294,"roll":54.81024839244492},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.499"} +{"sensors":[{"euler":{"heading":114.84697330403309,"pitch":135.00309669535318,"roll":25.447141767749805},"location":"Left Knee"},{"euler":{"heading":60.152309115778074,"pitch":98.40638543976567,"roll":19.18198992069406},"location":"Left Ankle"},{"euler":{"heading":65.24810072011829,"pitch":-6.724725458683627,"roll":-7.6450727271345755},"location":"Right Ankle"},{"euler":{"heading":121.16363822345426,"pitch":-162.0558007843244,"roll":57.195251186116835},"location":"Right Hip"},{"euler":{"heading":72.07040286313645,"pitch":-108.45261654478809,"roll":4.760693412994267},"location":"Right Knee"},{"euler":{"heading":17.946873440121934,"pitch":-131.12106038973064,"roll":54.48547355320043},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.600"} +{"sensors":[{"euler":{"heading":104.00602597362978,"pitch":135.40903702581787,"roll":26.427427590974823},"location":"Left Knee"},{"euler":{"heading":58.78082820420026,"pitch":98.1782468957891,"roll":17.801290928624656},"location":"Left Ankle"},{"euler":{"heading":61.854540648106465,"pitch":-6.5522529128152645,"roll":-8.543065454421118},"location":"Right Ankle"},{"euler":{"heading":122.46602440110884,"pitch":-161.67522070589195,"roll":57.03197606750515},"location":"Right Hip"},{"euler":{"heading":75.01961257682281,"pitch":-108.33860489030928,"roll":2.0346240716948403},"location":"Right Knee"},{"euler":{"heading":17.877186096109742,"pitch":-130.81520435075757,"roll":54.43067619788039},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.702"} +{"sensors":[{"euler":{"heading":94.7304233762668,"pitch":135.26813332323607,"roll":27.21593483187734},"location":"Left Knee"},{"euler":{"heading":58.20274538378024,"pitch":98.17917220621018,"roll":16.93366183576219},"location":"Left Ankle"},{"euler":{"heading":59.25033658329582,"pitch":-6.440777621533738,"roll":-9.045008908979007},"location":"Right Ankle"},{"euler":{"heading":123.88817196099797,"pitch":-160.80144863530273,"roll":56.235028460754634},"location":"Right Hip"},{"euler":{"heading":77.13015131914052,"pitch":-108.12349440127836,"roll":-0.06258833547464371},"location":"Right Knee"},{"euler":{"heading":18.07071748649877,"pitch":-131.18993391568182,"roll":54.57510857809235},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.803"} +{"sensors":[{"euler":{"heading":86.92613103864012,"pitch":134.74131999091247,"roll":27.70059134868961},"location":"Left Knee"},{"euler":{"heading":58.13872084540222,"pitch":98.22375498558917,"roll":16.60279565218597},"location":"Left Ankle"},{"euler":{"heading":59.187802924966235,"pitch":-7.059199859380365,"roll":-8.753008018081108},"location":"Right Ankle"},{"euler":{"heading":124.95560476489817,"pitch":-160.12755377177245,"roll":54.986525614679174},"location":"Right Hip"},{"euler":{"heading":77.07963618722647,"pitch":-107.40489496115053,"roll":-0.11882950192717934},"location":"Right Knee"},{"euler":{"heading":18.488645737848895,"pitch":-131.95844052411363,"roll":54.905097720283116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.904"} +{"sensors":[{"euler":{"heading":80.61476793477611,"pitch":133.87968799182124,"roll":27.786782213820647},"location":"Left Knee"},{"euler":{"heading":58.524848760862,"pitch":98.42637948703026,"roll":16.698766086967375},"location":"Left Ankle"},{"euler":{"heading":61.587772632469616,"pitch":-7.697029873442328,"roll":-7.846457216272997},"location":"Right Ankle"},{"euler":{"heading":125.19129428840836,"pitch":-159.93354839459522,"roll":53.81912305321126},"location":"Right Hip"},{"euler":{"heading":74.87167256850383,"pitch":-106.46440546503548,"roll":1.8243034482655387},"location":"Right Knee"},{"euler":{"heading":19.096031164064005,"pitch":-133.11884647170226,"roll":55.38958794825481},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.5"} +{"sensors":[{"euler":{"heading":75.5720411412985,"pitch":132.8479691926391,"roll":27.37685399243858},"location":"Left Knee"},{"euler":{"heading":59.3973638847758,"pitch":98.71499153832724,"roll":17.372639478270635},"location":"Left Ankle"},{"euler":{"heading":64.71649536922266,"pitch":-8.377326886098096,"roll":-6.661811494645697},"location":"Right Ankle"},{"euler":{"heading":124.32841485956753,"pitch":-160.04644355513568,"roll":53.33096074789013},"location":"Right Hip"},{"euler":{"heading":71.89700531165344,"pitch":-105.76171491853194,"roll":4.679373103438985},"location":"Right Knee"},{"euler":{"heading":20.036428047657605,"pitch":-134.81946182453203,"roll":56.013129153429325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.107"} +{"sensors":[{"euler":{"heading":71.84608702716865,"pitch":131.7694222733752,"roll":26.301668593194723},"location":"Left Knee"},{"euler":{"heading":60.85137749629823,"pitch":99.07474238449453,"roll":18.891625530443573},"location":"Left Ankle"},{"euler":{"heading":66.89484583230039,"pitch":-8.614594197488287,"roll":-5.939380345181127},"location":"Right Ankle"},{"euler":{"heading":123.04557337361078,"pitch":-160.37304919962213,"roll":53.17286467310112},"location":"Right Hip"},{"euler":{"heading":69.2198047804881,"pitch":-105.80429342667875,"roll":6.8926857930950876},"location":"Right Knee"},{"euler":{"heading":21.276535242891846,"pitch":-136.86251564207882,"roll":56.686816238086394},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.208"} +{"sensors":[{"euler":{"heading":70.11772832445179,"pitch":130.94873004603767,"roll":24.071501733875248},"location":"Left Knee"},{"euler":{"heading":63.422489746668404,"pitch":100.24226814604508,"roll":21.883712977399217},"location":"Left Ankle"},{"euler":{"heading":68.12411124907035,"pitch":-8.60313477773946,"roll":-5.689192310663015},"location":"Right Ankle"},{"euler":{"heading":122.2160160362497,"pitch":-160.57949427965994,"roll":53.255578205791004},"location":"Right Hip"},{"euler":{"heading":67.5728243024393,"pitch":-106.18636408401089,"roll":8.215917213785579},"location":"Right Knee"},{"euler":{"heading":21.117631718602663,"pitch":-137.10126407787095,"roll":56.893134614277756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.309"} +{"sensors":[{"euler":{"heading":69.52470549200662,"pitch":129.9726070414339,"roll":21.739351560487723},"location":"Left Knee"},{"euler":{"heading":66.22399077200157,"pitch":101.11804133144058,"roll":24.9390916796593},"location":"Left Ankle"},{"euler":{"heading":68.92420012416332,"pitch":-8.361571299965513,"roll":-5.689023079596713},"location":"Right Ankle"},{"euler":{"heading":121.26316443262473,"pitch":-160.84654485169395,"roll":53.7925203852119},"location":"Right Hip"},{"euler":{"heading":66.79054187219538,"pitch":-106.9302276756098,"roll":8.86307549240702},"location":"Right Knee"},{"euler":{"heading":20.0746185467424,"pitch":-135.38488767008386,"roll":56.616321152849984},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.410"} +{"sensors":[{"euler":{"heading":67.54723494280596,"pitch":129.9815963372905,"roll":20.627916404438952},"location":"Left Knee"},{"euler":{"heading":67.05784169480141,"pitch":100.49373719829651,"roll":25.80143251169337},"location":"Left Ankle"},{"euler":{"heading":69.30678011174699,"pitch":-7.981664169968962,"roll":-5.888870771637041},"location":"Right Ankle"},{"euler":{"heading":120.78059798936226,"pitch":-160.93689036652458,"roll":54.538268346690714},"location":"Right Hip"},{"euler":{"heading":66.63648768497585,"pitch":-107.67470490804882,"roll":9.020517943166318},"location":"Right Knee"},{"euler":{"heading":18.65465669206816,"pitch":-133.59014890307546,"roll":55.79843903756499},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.510"} +{"sensors":[{"euler":{"heading":61.24251144852536,"pitch":131.35843670356147,"roll":21.558874763995057},"location":"Left Knee"},{"euler":{"heading":64.64580752532127,"pitch":99.50686347846687,"roll":23.933789260524033},"location":"Left Ankle"},{"euler":{"heading":69.22610210057229,"pitch":-7.502247752972066,"roll":-6.187483694473338},"location":"Right Ankle"},{"euler":{"heading":120.60878819042604,"pitch":-161.04320132987212,"roll":55.34069151202164},"location":"Right Hip"},{"euler":{"heading":67.13533891647826,"pitch":-108.36973441724395,"roll":8.655966148849686},"location":"Right Knee"},{"euler":{"heading":17.389191022861343,"pitch":-131.84988401276792,"roll":55.00609513380849},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.612"} +{"sensors":[{"euler":{"heading":89.40576030367282,"pitch":133.55384303320534,"roll":23.29673728759555},"location":"Left Knee"},{"euler":{"heading":60.88747677278914,"pitch":98.31242713062018,"roll":20.452910334471632},"location":"Left Ankle"},{"euler":{"heading":68.51599189051507,"pitch":-6.989522977674859,"roll":-6.643735325026005},"location":"Right Ankle"},{"euler":{"heading":120.53540937138344,"pitch":-161.3576311968849,"roll":56.231622360819486},"location":"Right Hip"},{"euler":{"heading":68.48430502483043,"pitch":-108.88901097551955,"roll":7.665369533964717},"location":"Right Knee"},{"euler":{"heading":16.78152192057521,"pitch":-130.88364561149115,"roll":54.455485620427645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.712"} +{"sensors":[{"euler":{"heading":116.03393427330553,"pitch":134.9422087298848,"roll":24.810813558835996},"location":"Left Knee"},{"euler":{"heading":58.04872909551023,"pitch":97.73118441755817,"roll":17.75761930102447},"location":"Left Ankle"},{"euler":{"heading":66.99564270146357,"pitch":-6.665570679907374,"roll":-7.404361792523404},"location":"Right Ankle"},{"euler":{"heading":120.8068684342451,"pitch":-161.87811807719643,"roll":57.00846012473754},"location":"Right Hip"},{"euler":{"heading":70.8171245223474,"pitch":-109.0438598779676,"roll":5.842582580568245},"location":"Right Knee"},{"euler":{"heading":16.728369728517688,"pitch":-130.32028105034203,"roll":54.12868705838488},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.813"} +{"sensors":[{"euler":{"heading":105.080540845975,"pitch":135.42298785689633,"roll":25.935982202952395},"location":"Left Knee"},{"euler":{"heading":56.86885618595921,"pitch":97.59556597580236,"roll":16.456857370922023},"location":"Left Ankle"},{"euler":{"heading":63.94607843131721,"pitch":-6.3990136119166365,"roll":-8.095175613271063},"location":"Right Ankle"},{"euler":{"heading":121.4199315908206,"pitch":-161.95280626947678,"roll":57.35136411226379},"location":"Right Hip"},{"euler":{"heading":73.93541207011266,"pitch":-108.90822389017085,"roll":3.064574322511421},"location":"Right Knee"},{"euler":{"heading":16.52428275566592,"pitch":-130.03200294530782,"roll":53.98456835254639},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.914"} +{"sensors":[{"euler":{"heading":95.5537367613775,"pitch":135.4494390712067,"roll":26.71113398265716},"location":"Left Knee"},{"euler":{"heading":56.206970567363285,"pitch":97.46725937822214,"roll":15.58617163382982},"location":"Left Ankle"},{"euler":{"heading":60.80772058818549,"pitch":-6.521612250724973,"roll":-8.560658051943957},"location":"Right Ankle"},{"euler":{"heading":122.42793843173854,"pitch":-161.3325256425291,"roll":56.99122770103741},"location":"Right Hip"},{"euler":{"heading":76.7231208631014,"pitch":-108.64865150115375,"roll":0.44561689026027906},"location":"Right Knee"},{"euler":{"heading":16.671854480099327,"pitch":-130.39130265077705,"roll":54.148611517291755},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.15"} +{"sensors":[{"euler":{"heading":87.60461308523975,"pitch":135.06074516408603,"roll":27.158770584391448},"location":"Left Knee"},{"euler":{"heading":56.25502351062696,"pitch":97.45178344039994,"roll":15.39630447044684},"location":"Left Ankle"},{"euler":{"heading":59.52694852936695,"pitch":-6.8819510256524765,"roll":-8.667092246749561},"location":"Right Ankle"},{"euler":{"heading":123.51639458856468,"pitch":-160.56177307827622,"roll":56.00460493093367},"location":"Right Hip"},{"euler":{"heading":77.61955877679125,"pitch":-108.15253635103838,"roll":-0.5051947987657488},"location":"Right Knee"},{"euler":{"heading":17.160919032089396,"pitch":-131.33342238569935,"roll":54.50250036556258},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.116"} +{"sensors":[{"euler":{"heading":81.38165177671577,"pitch":134.17342064767743,"roll":27.261643525952305},"location":"Left Knee"},{"euler":{"heading":56.98577115956427,"pitch":97.74410509635996,"roll":15.712924023402156},"location":"Left Ankle"},{"euler":{"heading":60.69925367643025,"pitch":-7.506255923087229,"roll":-8.075383022074606},"location":"Right Ankle"},{"euler":{"heading":123.84600512970822,"pitch":-160.3118457704486,"roll":54.7353944378403},"location":"Right Hip"},{"euler":{"heading":76.16385289911213,"pitch":-107.30603271593455,"roll":0.6765746811108262},"location":"Right Knee"},{"euler":{"heading":17.863577128880458,"pitch":-132.52508014712942,"roll":54.98975032900633},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.217"} +{"sensors":[{"euler":{"heading":76.37473659904418,"pitch":133.1060785829097,"roll":26.910479173357075},"location":"Left Knee"},{"euler":{"heading":58.187194043607846,"pitch":98.11969458672397,"roll":16.51663162106194},"location":"Left Ankle"},{"euler":{"heading":63.69807830878723,"pitch":-8.111880330778508,"roll":-6.924094719867146},"location":"Right Ankle"},{"euler":{"heading":123.2051546167374,"pitch":-160.29941119340376,"roll":54.06810499405627},"location":"Right Hip"},{"euler":{"heading":73.19121760920092,"pitch":-106.51917944434109,"roll":3.4839172129997436},"location":"Right Knee"},{"euler":{"heading":18.777219415992413,"pitch":-134.19132213241647,"roll":55.584525296105696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.319"} +{"sensors":[{"euler":{"heading":72.53726293913977,"pitch":131.97047072461874,"roll":25.96943125602137},"location":"Left Knee"},{"euler":{"heading":59.949724639247066,"pitch":98.52647512805157,"roll":18.027468458955745},"location":"Left Ankle"},{"euler":{"heading":66.25327047790852,"pitch":-8.425692297700657,"roll":-6.231685247880431},"location":"Right Ankle"},{"euler":{"heading":121.87838915506367,"pitch":-160.57572007406338,"roll":53.83004449465065},"location":"Right Hip"},{"euler":{"heading":70.03459584828083,"pitch":-106.31726149990699,"roll":6.116775491699769},"location":"Right Knee"},{"euler":{"heading":19.855747474393173,"pitch":-136.36593991917482,"roll":56.176072766495125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.420"} +{"sensors":[{"euler":{"heading":70.4960366452258,"pitch":131.09217365215687,"roll":23.797488130419232},"location":"Left Knee"},{"euler":{"heading":62.42350217532236,"pitch":99.33632761524643,"roll":21.230971613060174},"location":"Left Ankle"},{"euler":{"heading":67.84044343011767,"pitch":-8.620623067930591,"roll":-5.933516723092389},"location":"Right Ankle"},{"euler":{"heading":121.33430023955731,"pitch":-160.71189806665706,"roll":53.78454004518559},"location":"Right Hip"},{"euler":{"heading":68.11863626345276,"pitch":-106.4042853499163,"roll":7.7488479425297925},"location":"Right Knee"},{"euler":{"heading":20.25142272695386,"pitch":-137.36059592725735,"roll":56.545965489845614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.521"} +{"sensors":[{"euler":{"heading":70.04018298070322,"pitch":129.9517062869412,"roll":21.436489317377312},"location":"Left Knee"},{"euler":{"heading":65.84365195779013,"pitch":100.7151948537218,"roll":24.857874451754157},"location":"Left Ankle"},{"euler":{"heading":68.90014908710592,"pitch":-8.671060761137532,"roll":-5.80266505078315},"location":"Right Ankle"},{"euler":{"heading":120.50712021560159,"pitch":-161.02195825999135,"roll":54.243586040667026},"location":"Right Hip"},{"euler":{"heading":67.21302263710749,"pitch":-106.83260681492467,"roll":8.617713148276813},"location":"Right Knee"},{"euler":{"heading":19.60128045425847,"pitch":-136.03703633453162,"roll":56.447618940861055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.622"} +{"sensors":[{"euler":{"heading":68.3861646826329,"pitch":129.88778565824708,"roll":20.21159038563958},"location":"Left Knee"},{"euler":{"heading":67.42178676201111,"pitch":100.31867536834962,"roll":26.63458700657874},"location":"Left Ankle"},{"euler":{"heading":69.50388417839532,"pitch":-8.73520468502378,"roll":-5.834898545704835},"location":"Right Ankle"},{"euler":{"heading":120.31265819404143,"pitch":-161.12601243399223,"roll":54.88172743660032},"location":"Right Hip"},{"euler":{"heading":67.08547037339673,"pitch":-107.2305961334322,"roll":8.899691833449133},"location":"Right Knee"},{"euler":{"heading":18.122402408832624,"pitch":-134.25208270107845,"roll":55.63410704677496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.723"} +{"sensors":[{"euler":{"heading":62.46004821436961,"pitch":131.21150709242238,"roll":20.990431347075624},"location":"Left Knee"},{"euler":{"heading":65.94835808581,"pitch":99.32430783151464,"roll":25.57112830592087},"location":"Left Ankle"},{"euler":{"heading":69.67849576055579,"pitch":-8.755434216521403,"roll":-5.982658691134352},"location":"Right Ankle"},{"euler":{"heading":120.30014237463729,"pitch":-161.21966119059303,"roll":55.55605469294029},"location":"Right Hip"},{"euler":{"heading":67.54567333605706,"pitch":-107.58253652008898,"roll":8.66597265010422},"location":"Right Knee"},{"euler":{"heading":16.660162167949363,"pitch":-132.4331244309706,"roll":54.72069634209746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.823"} +{"sensors":[{"euler":{"heading":90.88904339293265,"pitch":133.37160638318016,"roll":22.635138212368062},"location":"Left Knee"},{"euler":{"heading":62.328522277229006,"pitch":98.28562704836318,"roll":22.282765475328784},"location":"Left Ankle"},{"euler":{"heading":69.17314618450021,"pitch":-8.529890794869262,"roll":-6.490642822020917},"location":"Right Ankle"},{"euler":{"heading":120.68887813717356,"pitch":-161.27894507153374,"roll":56.162949223646265},"location":"Right Hip"},{"euler":{"heading":68.68485600245135,"pitch":-107.89928286808009,"roll":7.836875385093797},"location":"Right Knee"},{"euler":{"heading":15.781645951154426,"pitch":-130.99606198787353,"roll":54.029876707887716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.924"} +{"sensors":[{"euler":{"heading":116.89388905363938,"pitch":135.25319574486215,"roll":24.240374391131255},"location":"Left Knee"},{"euler":{"heading":59.0206700495061,"pitch":97.92581434352687,"roll":19.110738927795904},"location":"Left Ankle"},{"euler":{"heading":68.01208156605018,"pitch":-8.108151715382336,"roll":-7.266578539818825},"location":"Right Ankle"},{"euler":{"heading":121.1074903234562,"pitch":-161.63230056438036,"roll":56.83415430128164},"location":"Right Hip"},{"euler":{"heading":70.64762040220621,"pitch":-108.09685458127208,"roll":6.278187846584417},"location":"Right Knee"},{"euler":{"heading":15.728481356038984,"pitch":-130.2402057890862,"roll":53.63313903709895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.25"} +{"sensors":[{"euler":{"heading":105.80450014827544,"pitch":135.94662617037594,"roll":25.49133695201813},"location":"Left Knee"},{"euler":{"heading":57.57485304455549,"pitch":97.94573290917418,"roll":17.512165035016313},"location":"Left Ankle"},{"euler":{"heading":65.57962340944518,"pitch":-8.078586543844104,"roll":-8.096170685836944},"location":"Right Ankle"},{"euler":{"heading":121.79674129111058,"pitch":-162.03157050794232,"roll":57.30698887115348},"location":"Right Hip"},{"euler":{"heading":73.58285836198559,"pitch":-107.76216912314487,"roll":3.800369061925975},"location":"Right Knee"},{"euler":{"heading":15.686883220435085,"pitch":-129.60993521017758,"roll":53.419825133389054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.126"} +{"sensors":[{"euler":{"heading":96.7490501334479,"pitch":135.77071355333834,"roll":26.448453256816318},"location":"Left Knee"},{"euler":{"heading":57.07986774009994,"pitch":98.12615961825676,"roll":16.610948531514683},"location":"Left Ankle"},{"euler":{"heading":61.77166106850066,"pitch":-7.926977889459693,"roll":-9.12405361725325},"location":"Right Ankle"},{"euler":{"heading":123.04831716199953,"pitch":-161.5409134571481,"roll":57.00128998403814},"location":"Right Hip"},{"euler":{"heading":76.89332252578703,"pitch":-107.69220221083039,"roll":0.8390821557333772},"location":"Right Knee"},{"euler":{"heading":15.986944898391577,"pitch":-129.51769168915982,"roll":53.55284262005015},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.229"} +{"sensors":[{"euler":{"heading":88.99289512010311,"pitch":135.18739219800452,"roll":27.134857931134686},"location":"Left Knee"},{"euler":{"heading":57.115630966089945,"pitch":98.3822936564311,"roll":16.168603678363215},"location":"Left Ankle"},{"euler":{"heading":59.488244961650594,"pitch":-8.084280100513723,"roll":-9.605398255527925},"location":"Right Ankle"},{"euler":{"heading":124.43723544579959,"pitch":-160.8118221114333,"roll":56.08866098563433},"location":"Right Hip"},{"euler":{"heading":78.47899027320834,"pitch":-107.29798198974736,"roll":-0.7635760598399606},"location":"Right Knee"},{"euler":{"heading":16.61325040855242,"pitch":-130.00967252024384,"roll":53.95380835804514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.330"} +{"sensors":[{"euler":{"heading":82.5873556080928,"pitch":134.31865297820406,"roll":27.446372138021218},"location":"Left Knee"},{"euler":{"heading":57.64781786948095,"pitch":98.744064290788,"roll":16.270493310526895},"location":"Left Ankle"},{"euler":{"heading":60.03317046548553,"pitch":-8.72585209046235,"roll":-9.207358429975132},"location":"Right Ankle"},{"euler":{"heading":125.16226190121964,"pitch":-160.35563990028996,"roll":54.942294887070894},"location":"Right Hip"},{"euler":{"heading":77.5373412458875,"pitch":-106.54943379077262,"roll":-0.04346845385596454},"location":"Right Knee"},{"euler":{"heading":17.35817536769718,"pitch":-130.98995526821946,"roll":54.49592752224063},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.431"} +{"sensors":[{"euler":{"heading":77.36612004728352,"pitch":133.29928768038366,"roll":27.276734924219095},"location":"Left Knee"},{"euler":{"heading":58.43928608253286,"pitch":99.1009078617092,"roll":16.780943979474205},"location":"Left Ankle"},{"euler":{"heading":62.90485341893698,"pitch":-9.240766881416116,"roll":-8.23037258697762},"location":"Right Ankle"},{"euler":{"heading":124.75228571109768,"pitch":-161.90132591026097,"roll":54.2043153983638},"location":"Right Hip"},{"euler":{"heading":74.64610712129875,"pitch":-105.81949041169536,"roll":2.6108783915296323},"location":"Right Knee"},{"euler":{"heading":18.122357830927463,"pitch":-132.29720974139752,"roll":55.140084770016564},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.532"} +{"sensors":[{"euler":{"heading":73.29200804255517,"pitch":132.1443589123453,"roll":26.567811431797185},"location":"Left Knee"},{"euler":{"heading":59.820357474279575,"pitch":99.50331707553829,"roll":17.902849581526784},"location":"Left Ankle"},{"euler":{"heading":65.65811807704328,"pitch":-9.491690193274506,"roll":-7.319835328279857},"location":"Right Ankle"},{"euler":{"heading":123.37705713998793,"pitch":-162.07369331923488,"roll":53.98388385852743},"location":"Right Hip"},{"euler":{"heading":71.41274640916889,"pitch":-105.46879137052582,"roll":5.537290552376669},"location":"Right Knee"},{"euler":{"heading":19.153872047834717,"pitch":-134.13623876725777,"roll":55.888576293014914},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.632"} +{"sensors":[{"euler":{"heading":70.70655723829965,"pitch":131.06742302111076,"roll":24.879780288617468},"location":"Left Knee"},{"euler":{"heading":62.050821726851616,"pitch":99.97173536798446,"roll":20.318814623374106},"location":"Left Ankle"},{"euler":{"heading":67.12355626933896,"pitch":-9.430021173947054,"roll":-7.012851795451871},"location":"Right Ankle"},{"euler":{"heading":122.37060142598914,"pitch":-162.1225739873114,"roll":53.97299547267469},"location":"Right Hip"},{"euler":{"heading":68.852721768252,"pitch":-105.72816223347324,"roll":7.502311497139003},"location":"Right Knee"},{"euler":{"heading":19.988484843051246,"pitch":-135.560114890532,"roll":56.49346866371342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.733"} +{"sensors":[{"euler":{"heading":69.99215151446968,"pitch":130.04193071899968,"roll":22.49805225975572},"location":"Left Knee"},{"euler":{"heading":66.30823955416646,"pitch":101.61206183118603,"roll":24.2181831610367},"location":"Left Ankle"},{"euler":{"heading":68.11745064240507,"pitch":-9.230769056552349,"roll":-6.867816615906684},"location":"Right Ankle"},{"euler":{"heading":121.23979128339023,"pitch":-162.32281658858025,"roll":54.43194592540723},"location":"Right Hip"},{"euler":{"heading":67.3799495914268,"pitch":-106.43034601012593,"roll":8.658330347425103},"location":"Right Knee"},{"euler":{"heading":19.070886358746122,"pitch":-134.4103534014788,"roll":56.475371797342085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.834"} +{"sensors":[{"euler":{"heading":69.06793636302271,"pitch":129.70023764709973,"roll":20.66699703378015},"location":"Left Knee"},{"euler":{"heading":68.80866559874981,"pitch":101.43210564806743,"roll":26.90886484493303},"location":"Left Ankle"},{"euler":{"heading":68.71195557816458,"pitch":-9.063942150897114,"roll":-6.868534954316016},"location":"Right Ankle"},{"euler":{"heading":120.73456215505122,"pitch":-162.45303492972224,"roll":55.138751332866505},"location":"Right Hip"},{"euler":{"heading":66.92945463228412,"pitch":-106.98731140911335,"roll":9.129997312682592},"location":"Right Knee"},{"euler":{"heading":17.64504772287151,"pitch":-132.70681806133092,"roll":55.821584617607876},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.935"} +{"sensors":[{"euler":{"heading":64.87989272672044,"pitch":130.50521388238977,"roll":20.712797330402136},"location":"Left Knee"},{"euler":{"heading":67.90279903887483,"pitch":100.4888950832607,"roll":26.55547836043973},"location":"Left Ankle"},{"euler":{"heading":68.83451002034812,"pitch":-8.913797935807402,"roll":-7.012931458884414},"location":"Right Ankle"},{"euler":{"heading":120.6611059395461,"pitch":-162.49523143675,"roll":55.91862619957986},"location":"Right Hip"},{"euler":{"heading":67.1615091690557,"pitch":-107.36358026820201,"roll":9.054497581414333},"location":"Right Knee"},{"euler":{"heading":16.38054295058436,"pitch":-131.01113625519784,"roll":55.00817615584709},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.36"} +{"sensors":[{"euler":{"heading":93.7169034540484,"pitch":132.39219249415078,"roll":22.210267597361923},"location":"Left Knee"},{"euler":{"heading":64.40626913498735,"pitch":99.48375557493463,"roll":23.562430524395758},"location":"Left Ankle"},{"euler":{"heading":68.41980901831332,"pitch":-8.547418142226663,"roll":-7.3741383129959726},"location":"Right Ankle"},{"euler":{"heading":120.63249534559151,"pitch":-162.758208293075,"roll":56.726763579621874},"location":"Right Hip"},{"euler":{"heading":68.02660825215014,"pitch":-107.82722224138182,"roll":8.3990478232729},"location":"Right Knee"},{"euler":{"heading":15.536238655525924,"pitch":-129.76627262967804,"roll":54.42610854026238},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.138"} +{"sensors":[{"euler":{"heading":118.97646310864357,"pitch":134.51547324473572,"roll":23.807990837625734},"location":"Left Knee"},{"euler":{"heading":60.89064222148862,"pitch":98.70413001744117,"roll":20.343687471956184},"location":"Left Ankle"},{"euler":{"heading":67.36532811648199,"pitch":-8.048926328003997,"roll":-8.030474481696375},"location":"Right Ankle"},{"euler":{"heading":120.72549581103236,"pitch":-163.2761374637675,"roll":57.56033722165969},"location":"Right Hip"},{"euler":{"heading":69.71769742693513,"pitch":-108.16950001724364,"roll":7.04039304094561},"location":"Right Knee"},{"euler":{"heading":15.082614789973332,"pitch":-129.05214536671025,"roll":53.970997686236146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.239"} +{"sensors":[{"euler":{"heading":107.48506679777921,"pitch":135.28892592026216,"roll":25.083441753863163},"location":"Left Knee"},{"euler":{"heading":59.232827999339754,"pitch":98.55871701569706,"roll":18.565568724760567},"location":"Left Ankle"},{"euler":{"heading":64.6037953048338,"pitch":-7.925283695203598,"roll":-8.814927033526738},"location":"Right Ankle"},{"euler":{"heading":121.40919622992914,"pitch":-163.35477371739074,"roll":58.06055349949372},"location":"Right Hip"},{"euler":{"heading":72.57717768424162,"pitch":-107.90880001551928,"roll":4.580103736851049},"location":"Right Knee"},{"euler":{"heading":14.986853310975999,"pitch":-128.59068083003922,"roll":53.77389791761254},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.340"} +{"sensors":[{"euler":{"heading":98.21156011800129,"pitch":135.18503332823596,"roll":26.10009757847685},"location":"Left Knee"},{"euler":{"heading":58.603295199405785,"pitch":98.70909531412735,"roll":17.50276185228451},"location":"Left Ankle"},{"euler":{"heading":60.918415774350414,"pitch":-7.826505325683238,"roll":-9.689684330174064},"location":"Right Ankle"},{"euler":{"heading":122.89952660693623,"pitch":-162.60679634565167,"roll":57.660748149544354},"location":"Right Hip"},{"euler":{"heading":75.79445991581747,"pitch":-107.81792001396735,"roll":1.715843363165944},"location":"Right Knee"},{"euler":{"heading":15.4444179798784,"pitch":-128.6316127470353,"roll":53.902758125851285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.441"} +{"sensors":[{"euler":{"heading":90.18415410620116,"pitch":134.74777999541237,"roll":26.802587820629164},"location":"Left Knee"},{"euler":{"heading":58.59921567946521,"pitch":98.86318578271462,"roll":17.02123566705606},"location":"Left Ankle"},{"euler":{"heading":58.82032419691537,"pitch":-7.943854793114914,"roll":-10.226965897156658},"location":"Right Ankle"},{"euler":{"heading":124.42832394624261,"pitch":-161.73986671108653,"roll":56.61967333458992},"location":"Right Hip"},{"euler":{"heading":77.49001392423573,"pitch":-107.47987801257062,"roll":0.13800902684934968},"location":"Right Knee"},{"euler":{"heading":16.08122618189056,"pitch":-129.31845147233176,"roll":54.24998231326616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.541"} +{"sensors":[{"euler":{"heading":83.49698869558105,"pitch":134.01675199587115,"roll":27.14107903856625},"location":"Left Knee"},{"euler":{"heading":58.95804411151869,"pitch":99.04561720444318,"roll":16.931612100350456},"location":"Left Ankle"},{"euler":{"heading":59.37579177722384,"pitch":-8.618219313803422,"roll":-9.848019307440993},"location":"Right Ankle"},{"euler":{"heading":125.12299155161836,"pitch":-161.20338003997787,"roll":55.37645600113093},"location":"Right Hip"},{"euler":{"heading":76.79726253181217,"pitch":-106.69439021131357,"roll":0.7242081241644148},"location":"Right Knee"},{"euler":{"heading":16.810603563701505,"pitch":-130.49910632509858,"roll":54.73748408193955},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.641"} +{"sensors":[{"euler":{"heading":78.20353982602296,"pitch":133.02132679628403,"roll":26.976971134709625},"location":"Left Knee"},{"euler":{"heading":59.624739700366824,"pitch":99.26605548399885,"roll":17.31970089031541},"location":"Left Ankle"},{"euler":{"heading":62.33196259950145,"pitch":-9.318897382423081,"roll":-8.863217376696893},"location":"Right Ankle"},{"euler":{"heading":125.06069239645653,"pitch":-160.9267920359801,"roll":54.45756040101784},"location":"Right Hip"},{"euler":{"heading":74.26753627863096,"pitch":-105.82495119018222,"roll":3.1205373117479733},"location":"Right Knee"},{"euler":{"heading":17.579543207331355,"pitch":-131.95544569258874,"roll":55.32623567374559},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.742"} +{"sensors":[{"euler":{"heading":74.13318584342066,"pitch":131.86919411665562,"roll":26.241774021238662},"location":"Left Knee"},{"euler":{"heading":61.01226573033014,"pitch":99.62069993559898,"roll":18.42523080128387},"location":"Left Ankle"},{"euler":{"heading":65.29251633955131,"pitch":-9.674507644180773,"roll":-7.795645639027203},"location":"Right Ankle"},{"euler":{"heading":123.86712315681088,"pitch":-161.1466128323821,"roll":54.018054360916054},"location":"Right Hip"},{"euler":{"heading":71.11578265076787,"pitch":-105.517456071164,"roll":5.908483580573176},"location":"Right Knee"},{"euler":{"heading":18.62783888659822,"pitch":-133.84115112332987,"roll":56.05611210637104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.842"} +{"sensors":[{"euler":{"heading":71.6823672590786,"pitch":130.77602470499005,"roll":24.511346619114796},"location":"Left Knee"},{"euler":{"heading":63.15478915729713,"pitch":100.07737994203909,"roll":20.832707721155483},"location":"Left Ankle"},{"euler":{"heading":66.85076470559619,"pitch":-9.463306879762696,"roll":-7.416081075124484},"location":"Right Ankle"},{"euler":{"heading":122.9179108411298,"pitch":-161.32570154914387,"roll":53.84124892482445},"location":"Right Hip"},{"euler":{"heading":68.72295438569108,"pitch":-105.8594604640476,"roll":7.730135222515859},"location":"Right Knee"},{"euler":{"heading":19.6275549979384,"pitch":-135.43203601099688,"roll":56.73800089573394},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.942"} +{"sensors":[{"euler":{"heading":71.07663053317074,"pitch":129.67967223449105,"roll":22.091461957203318},"location":"Left Knee"},{"euler":{"heading":66.48931024156742,"pitch":101.60089194783518,"roll":24.193186949039937},"location":"Left Ankle"},{"euler":{"heading":67.79068823503658,"pitch":-9.016976191786426,"roll":-7.255722967612035},"location":"Right Ankle"},{"euler":{"heading":122.17611975701682,"pitch":-161.42438139422947,"roll":54.113374032342},"location":"Right Hip"},{"euler":{"heading":67.35065894712199,"pitch":-106.63601441764284,"roll":8.757121700264273},"location":"Right Knee"},{"euler":{"heading":19.36479949814456,"pitch":-134.70758240989719,"roll":56.98295080616055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.43"} +{"sensors":[{"euler":{"heading":70.15646747985366,"pitch":129.39295501104195,"roll":20.257315761482985},"location":"Left Knee"},{"euler":{"heading":67.91537921741069,"pitch":101.15330275305168,"roll":26.305118254135945},"location":"Left Ankle"},{"euler":{"heading":68.28036941153293,"pitch":-8.502778572607783,"roll":-7.2989006708508315},"location":"Right Ankle"},{"euler":{"heading":121.71475778131514,"pitch":-161.3881932548065,"roll":54.689536629107806},"location":"Right Hip"},{"euler":{"heading":66.77184305240979,"pitch":-107.45366297587856,"roll":9.175159530237845},"location":"Right Knee"},{"euler":{"heading":18.184569548330106,"pitch":-133.13682416890748,"roll":56.49090572554449},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.144"} +{"sensors":[{"euler":{"heading":65.7845707318683,"pitch":130.25990950993776,"roll":20.300334185334687},"location":"Left Knee"},{"euler":{"heading":66.79884129566962,"pitch":100.0879724777465,"roll":25.75585642872235},"location":"Left Ankle"},{"euler":{"heading":68.44608247037964,"pitch":-7.908750715347004,"roll":-7.531510603765748},"location":"Right Ankle"},{"euler":{"heading":121.51203200318363,"pitch":-161.33062392932587,"roll":55.40183296619703},"location":"Right Hip"},{"euler":{"heading":66.78215874716881,"pitch":-108.2270466782907,"roll":9.11389357721406},"location":"Right Knee"},{"euler":{"heading":16.703612593497095,"pitch":-131.40439175201675,"roll":55.63556515299005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.244"} +{"sensors":[{"euler":{"heading":87.16236365868147,"pitch":132.146418558944,"roll":21.70780076680122},"location":"Left Knee"},{"euler":{"heading":63.53770716610266,"pitch":98.91042522997185,"roll":22.761520785850117},"location":"Left Ankle"},{"euler":{"heading":68.13897422334168,"pitch":-7.2616256438123035,"roll":-7.884609543389174},"location":"Right Ankle"},{"euler":{"heading":121.42332880286527,"pitch":-161.4850615363933,"roll":56.180399669577326},"location":"Right Hip"},{"euler":{"heading":67.47269287245193,"pitch":-108.92309201046163,"roll":8.540004219492655},"location":"Right Knee"},{"euler":{"heading":15.558251334147386,"pitch":-129.85145257681506,"roll":54.88450863769104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.345"} +{"sensors":[{"euler":{"heading":107.35237729281333,"pitch":134.3067767030496,"roll":23.2870206901211},"location":"Left Knee"},{"euler":{"heading":60.0089364494924,"pitch":98.33188270697467,"roll":19.491618707265108},"location":"Left Ankle"},{"euler":{"heading":67.28757680100752,"pitch":-6.6417130794310735,"roll":-8.583648589050258},"location":"Right Ankle"},{"euler":{"heading":121.54349592257874,"pitch":-161.85530538275398,"roll":57.0061097026196},"location":"Right Hip"},{"euler":{"heading":69.03792358520674,"pitch":-109.40578280941547,"roll":7.31100379754339},"location":"Right Knee"},{"euler":{"heading":15.221176200732648,"pitch":-129.19755731913355,"roll":54.383557773921936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.446"} +{"sensors":[{"euler":{"heading":96.848389563532,"pitch":135.42609903274465,"roll":24.60206862110899},"location":"Left Knee"},{"euler":{"heading":58.314292804543165,"pitch":98.27369443627721,"roll":17.692456836538597},"location":"Left Ankle"},{"euler":{"heading":65.15881912090677,"pitch":-6.408791771487967,"roll":-9.375283730145233},"location":"Right Ankle"},{"euler":{"heading":122.00789633032088,"pitch":-162.1010248444786,"roll":57.67424873235764},"location":"Right Hip"},{"euler":{"heading":71.84038122668606,"pitch":-109.41520452847392,"roll":5.061153417789051},"location":"Right Knee"},{"euler":{"heading":15.024058580659382,"pitch":-128.8590515872202,"roll":54.057701996529744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.547"} +{"sensors":[{"euler":{"heading":88.5198006071788,"pitch":135.54598912947017,"roll":25.673111758998093},"location":"Left Knee"},{"euler":{"heading":57.70161352408885,"pitch":98.57757499264949,"roll":16.61071115288474},"location":"Left Ankle"},{"euler":{"heading":61.38043720881609,"pitch":-6.2429125943391695,"roll":-10.387755357130711},"location":"Right Ankle"},{"euler":{"heading":123.28210669728878,"pitch":-161.59717236003075,"roll":57.43182385912188},"location":"Right Hip"},{"euler":{"heading":75.36884310401746,"pitch":-109.19868407562655,"roll":1.9925380760101463},"location":"Right Knee"},{"euler":{"heading":15.384152722593445,"pitch":-128.84814642849818,"roll":54.16443179687678},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.648"} +{"sensors":[{"euler":{"heading":81.66157054646092,"pitch":135.02889021652317,"roll":26.518300583098284},"location":"Left Knee"},{"euler":{"heading":57.712702171679965,"pitch":99.00106749338454,"roll":16.055890037596267},"location":"Left Ankle"},{"euler":{"heading":58.74864348793449,"pitch":-6.431121334905253,"roll":-10.96147982141764},"location":"Right Ankle"},{"euler":{"heading":124.77264602755992,"pitch":-160.8312051240277,"roll":56.45739147320969},"location":"Right Hip"},{"euler":{"heading":77.46945879361571,"pitch":-108.7163156680639,"roll":0.04328426840913169},"location":"Right Knee"},{"euler":{"heading":16.1832374503341,"pitch":-129.53833178564835,"roll":54.5292386171891},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.748"} +{"sensors":[{"euler":{"heading":75.88291349181483,"pitch":134.28225119487087,"roll":26.96647052478846},"location":"Left Knee"},{"euler":{"heading":58.04768195451197,"pitch":99.29471074404609,"roll":15.956551033836641},"location":"Left Ankle"},{"euler":{"heading":58.62377913914104,"pitch":-7.088009201414728,"roll":-10.884081839275877},"location":"Right Ankle"},{"euler":{"heading":125.67038142480392,"pitch":-160.36683461162494,"roll":55.099152325888724},"location":"Right Hip"},{"euler":{"heading":77.49751291425414,"pitch":-107.92593410125751,"roll":-0.042294158431781484},"location":"Right Knee"},{"euler":{"heading":16.97116370530069,"pitch":-130.84699860708352,"roll":54.98256475547019},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.849"} +{"sensors":[{"euler":{"heading":71.25087214263336,"pitch":133.3477760753838,"roll":26.938573472309614},"location":"Left Knee"},{"euler":{"heading":58.69916375906078,"pitch":99.59023966964148,"roll":16.267145930452976},"location":"Left Ankle"},{"euler":{"heading":61.030151225226945,"pitch":-7.704208281273256,"roll":-10.03942365534829},"location":"Right Ankle"},{"euler":{"heading":125.75959328232354,"pitch":-160.16765115046246,"roll":53.97048709329985},"location":"Right Hip"},{"euler":{"heading":75.27276162282874,"pitch":-107.06459069113177,"roll":1.9306852574113966},"location":"Right Knee"},{"euler":{"heading":17.749047334770623,"pitch":-132.41854874637517,"roll":55.54680827992318},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.949"} +{"sensors":[{"euler":{"heading":67.63828492837003,"pitch":132.25674846784543,"roll":26.369716125078654},"location":"Left Knee"},{"euler":{"heading":59.9542473831547,"pitch":99.96871570267734,"roll":17.18418133740768},"location":"Left Ankle"},{"euler":{"heading":64.18963610270426,"pitch":-8.17753745314593,"roll":-8.88548128981346},"location":"Right Ankle"},{"euler":{"heading":124.45238395409118,"pitch":-160.43213603541622,"roll":53.604688383969865},"location":"Right Hip"},{"euler":{"heading":71.92048546054586,"pitch":-106.62688162201859,"roll":4.950116731670257},"location":"Right Knee"},{"euler":{"heading":18.586642601293562,"pitch":-134.36419387173765,"roll":56.223377451930865},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.50"} +{"sensors":[{"euler":{"heading":65.56195643553303,"pitch":131.08732362106088,"roll":24.95774451257079},"location":"Left Knee"},{"euler":{"heading":61.83382264483923,"pitch":100.41559413240961,"roll":19.134513203666913},"location":"Left Ankle"},{"euler":{"heading":66.33942249243383,"pitch":-8.372283707831338,"roll":-8.253183160832116},"location":"Right Ankle"},{"euler":{"heading":123.19464555868205,"pitch":-160.8451724318746,"roll":53.475469545572885},"location":"Right Hip"},{"euler":{"heading":69.19718691449128,"pitch":-106.71419345981673,"roll":7.242605058503232},"location":"Right Knee"},{"euler":{"heading":19.715478341164207,"pitch":-136.4090244845639,"roll":56.93853970673778},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.151"} +{"sensors":[{"euler":{"heading":65.43076079197974,"pitch":130.0973412589548,"roll":22.574470061313715},"location":"Left Knee"},{"euler":{"heading":65.34419038035531,"pitch":101.97403471916866,"roll":22.49606188330022},"location":"Left Ankle"},{"euler":{"heading":67.68673024319044,"pitch":-8.547555337048204,"roll":-7.8903648447489045},"location":"Right Ankle"},{"euler":{"heading":122.39393100281384,"pitch":-161.14815518868713,"roll":53.746672591015596},"location":"Right Hip"},{"euler":{"heading":67.84621822304216,"pitch":-107.06777411383506,"roll":8.47459455265291},"location":"Right Knee"},{"euler":{"heading":19.325180507047786,"pitch":-136.2118720361075,"roll":57.082185736064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.251"} +{"sensors":[{"euler":{"heading":65.70643471278176,"pitch":129.48135713305933,"roll":20.385773055182344},"location":"Left Knee"},{"euler":{"heading":68.07227134231978,"pitch":102.3016312472518,"roll":25.515205694970202},"location":"Left Ankle"},{"euler":{"heading":68.5993072188714,"pitch":-8.774049803343384,"roll":-7.713828360274014},"location":"Right Ankle"},{"euler":{"heading":121.88578790253247,"pitch":-161.43958966981842,"roll":54.29075533191404},"location":"Right Hip"},{"euler":{"heading":67.44909640073794,"pitch":-107.29849670245156,"roll":9.02088509738762},"location":"Right Knee"},{"euler":{"heading":18.392662456343007,"pitch":-134.61568483249675,"roll":56.686467162457596},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.352"} +{"sensors":[{"euler":{"heading":63.57329124150358,"pitch":129.80197141975341,"roll":19.840945749664108},"location":"Left Knee"},{"euler":{"heading":68.2087942080878,"pitch":101.69021812252663,"roll":26.032435125473185},"location":"Left Ankle"},{"euler":{"heading":69.13312649698426,"pitch":-8.977894823009047,"roll":-7.761195524246613},"location":"Right Ankle"},{"euler":{"heading":121.85970911227923,"pitch":-161.63938070283658,"roll":54.95542979872264},"location":"Right Hip"},{"euler":{"heading":67.61668676066415,"pitch":-107.4248970322064,"roll":9.125046587648857},"location":"Right Knee"},{"euler":{"heading":17.18464621070871,"pitch":-132.8416163492471,"roll":55.886570446211834},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.453"} +{"sensors":[{"euler":{"heading":57.46596211735323,"pitch":131.38427427777808,"roll":21.0693511746977},"location":"Left Knee"},{"euler":{"heading":65.29416478727902,"pitch":100.62119631027396,"roll":23.822941612925867},"location":"Left Ankle"},{"euler":{"heading":69.18856384728583,"pitch":-9.061355340708142,"roll":-7.966325971821952},"location":"Right Ankle"},{"euler":{"heading":122.13623820105131,"pitch":-161.83794263255294,"roll":55.60988681885038},"location":"Right Hip"},{"euler":{"heading":68.41751808459773,"pitch":-107.51365732898576,"roll":8.656291928883972},"location":"Right Knee"},{"euler":{"heading":16.15368158963784,"pitch":-131.1699547143224,"roll":55.14791340159066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.553"} +{"sensors":[{"euler":{"heading":86.33811590561791,"pitch":133.63334685000027,"roll":22.86866605722793},"location":"Left Knee"},{"euler":{"heading":61.35849830855111,"pitch":99.50907667924656,"roll":20.23439745163328},"location":"Left Ankle"},{"euler":{"heading":68.62595746255725,"pitch":-8.998969806637328,"roll":-8.569693374639757},"location":"Right Ankle"},{"euler":{"heading":122.67261438094619,"pitch":-162.10414836929763,"roll":56.26139813696534},"location":"Right Hip"},{"euler":{"heading":69.86951627613796,"pitch":-107.52479159608718,"roll":7.628162735995575},"location":"Right Knee"},{"euler":{"heading":15.894563430674058,"pitch":-130.21545924289015,"roll":54.670622061431594},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.654"} +{"sensors":[{"euler":{"heading":113.41055431505612,"pitch":134.97626216500024,"roll":24.531799451505137},"location":"Left Knee"},{"euler":{"heading":58.64139847769601,"pitch":99.05191901132191,"roll":17.610957706469954},"location":"Left Ankle"},{"euler":{"heading":67.18211171630153,"pitch":-8.817822825973595,"roll":-9.293974037175781},"location":"Right Ankle"},{"euler":{"heading":123.33035294285156,"pitch":-162.62498353236785,"roll":56.92900832326881},"location":"Right Hip"},{"euler":{"heading":72.03881464852417,"pitch":-107.39731243647847,"roll":5.884096462396018},"location":"Right Knee"},{"euler":{"heading":16.142607087606653,"pitch":-129.58766331860113,"roll":54.39105985528843},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.754"} +{"sensors":[{"euler":{"heading":102.9819988835505,"pitch":135.3161359485002,"roll":25.803619506354625},"location":"Left Knee"},{"euler":{"heading":57.46475862992641,"pitch":99.02172711018973,"roll":16.24361193582296},"location":"Left Ankle"},{"euler":{"heading":64.07015054467138,"pitch":-8.679790543376235,"roll":-10.239576633458203},"location":"Right Ankle"},{"euler":{"heading":124.44731764856641,"pitch":-162.52498517913105,"roll":57.10485749094193},"location":"Right Hip"},{"euler":{"heading":75.15993318367175,"pitch":-107.04508119283064,"roll":3.045686816156416},"location":"Right Knee"},{"euler":{"heading":16.353346378845988,"pitch":-129.19139698674104,"roll":54.35820386975959},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.855"} +{"sensors":[{"euler":{"heading":94.09629899519545,"pitch":135.12202235365018,"roll":26.717007555719164},"location":"Left Knee"},{"euler":{"heading":56.91828276693377,"pitch":98.98205439917075,"roll":15.338000742240663},"location":"Left Ankle"},{"euler":{"heading":60.62563549020424,"pitch":-8.886811489038612,"roll":-11.021868970112383},"location":"Right Ankle"},{"euler":{"heading":125.97133588370977,"pitch":-161.84123666121795,"roll":56.46312174184774},"location":"Right Hip"},{"euler":{"heading":78.10643986530458,"pitch":-106.59057307354757,"roll":0.2973681345407746},"location":"Right Knee"},{"euler":{"heading":16.686761740961387,"pitch":-129.55975728806695,"roll":54.51613348278364},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.956"} +{"sensors":[{"euler":{"heading":86.57416909567591,"pitch":134.52232011828517,"roll":27.37655680014725},"location":"Left Knee"},{"euler":{"heading":57.09520449024039,"pitch":99.09009895925368,"roll":15.060450668016596},"location":"Left Ankle"},{"euler":{"heading":59.250571941183814,"pitch":-9.423130340134751,"roll":-11.000932073101145},"location":"Right Ankle"},{"euler":{"heading":127.17420229533879,"pitch":-161.07586299509614,"roll":55.298059567662975},"location":"Right Hip"},{"euler":{"heading":78.83329587877412,"pitch":-106.06901576619282,"roll":-0.5323686789133029},"location":"Right Knee"},{"euler":{"heading":17.386835566865248,"pitch":-130.47253155926026,"roll":54.92702013450527},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.57"} +{"sensors":[{"euler":{"heading":80.40425218610832,"pitch":133.67633810645665,"roll":27.613901120132525},"location":"Left Knee"},{"euler":{"heading":57.59818404121635,"pitch":99.24358906332832,"roll":15.160655601214938},"location":"Left Ankle"},{"euler":{"heading":60.56301474706544,"pitch":-10.312067306121277,"roll":-10.31958886579103},"location":"Right Ankle"},{"euler":{"heading":127.41928206580492,"pitch":-160.7620266955865,"roll":53.98700361089668},"location":"Right Hip"},{"euler":{"heading":77.13121629089672,"pitch":-105.11211418957355,"roll":0.7958681889780275},"location":"Right Knee"},{"euler":{"heading":18.060652010178725,"pitch":-131.80027840333423,"roll":55.45931812105474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.157"} +{"sensors":[{"euler":{"heading":75.46382696749748,"pitch":132.689954295811,"roll":27.31501100811927},"location":"Left Knee"},{"euler":{"heading":58.48836563709472,"pitch":99.39423015699549,"roll":15.769590041093444},"location":"Left Ankle"},{"euler":{"heading":63.3942132723589,"pitch":-10.662110575509148,"roll":-9.125129979211927},"location":"Right Ankle"},{"euler":{"heading":126.76485385922443,"pitch":-160.71707402602786,"roll":53.21330324980701},"location":"Right Hip"},{"euler":{"heading":73.84934466180705,"pitch":-104.56965277061619,"roll":3.703781370080225},"location":"Right Knee"},{"euler":{"heading":18.723336809160852,"pitch":-133.4765005630008,"roll":56.04463630894927},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.258"} +{"sensors":[{"euler":{"heading":71.82369427074774,"pitch":131.6084588662299,"roll":26.352259907307346},"location":"Left Knee"},{"euler":{"heading":60.13952907338525,"pitch":99.69230714129594,"roll":17.2863810369841},"location":"Left Ankle"},{"euler":{"heading":65.90479194512301,"pitch":-10.470899517958234,"roll":-8.325116981290735},"location":"Right Ankle"},{"euler":{"heading":125.28211847330198,"pitch":-160.93911662342506,"roll":53.03572292482632},"location":"Right Hip"},{"euler":{"heading":70.32066019562635,"pitch":-104.73143749355458,"roll":6.439653233072203},"location":"Right Knee"},{"euler":{"heading":19.619753128244767,"pitch":-135.4663505067007,"roll":56.683922678054344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.359"} +{"sensors":[{"euler":{"heading":70.05382484367296,"pitch":130.7601129796069,"roll":24.24828391657661},"location":"Left Knee"},{"euler":{"heading":62.95057616604673,"pitch":100.54807642716635,"roll":20.357742933285692},"location":"Left Ankle"},{"euler":{"heading":67.58931275061072,"pitch":-10.230059566162412,"roll":-8.017605283161663},"location":"Right Ankle"},{"euler":{"heading":124.29140662597177,"pitch":-161.12020496108258,"roll":53.15090063234369},"location":"Right Hip"},{"euler":{"heading":67.98859417606371,"pitch":-105.22704374419912,"roll":8.176937909764984},"location":"Right Knee"},{"euler":{"heading":19.62027781542029,"pitch":-136.11346545603064,"roll":56.97178041024891},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.460"} +{"sensors":[{"euler":{"heading":69.92969235930566,"pitch":129.5966016816462,"roll":21.81720552491895},"location":"Left Knee"},{"euler":{"heading":65.99926854944206,"pitch":101.86201878444972,"roll":23.734468639957125},"location":"Left Ankle"},{"euler":{"heading":68.59288147554965,"pitch":-9.90080360954617,"roll":-7.822094754845497},"location":"Right Ankle"},{"euler":{"heading":123.1560159633746,"pitch":-161.46443446497435,"roll":53.735810569109326},"location":"Right Hip"},{"euler":{"heading":66.79598475845734,"pitch":-106.0480893697792,"roll":9.109244118788485},"location":"Right Knee"},{"euler":{"heading":18.83325003387826,"pitch":-134.6833689104276,"roll":56.80585236922402},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.561"} +{"sensors":[{"euler":{"heading":68.87422312337509,"pitch":129.48694151348158,"roll":20.297984972427056},"location":"Left Knee"},{"euler":{"heading":67.51184169449786,"pitch":101.53831690600474,"roll":25.367271775961413},"location":"Left Ankle"},{"euler":{"heading":69.25234332799468,"pitch":-9.573223248591553,"roll":-7.833635279360948},"location":"Right Ankle"},{"euler":{"heading":122.62791436703714,"pitch":-161.6742410184769,"roll":54.4372295121984},"location":"Right Hip"},{"euler":{"heading":66.41638628261161,"pitch":-106.72453043280129,"roll":9.460819706909636},"location":"Right Knee"},{"euler":{"heading":17.45617503049044,"pitch":-132.90878201938483,"roll":56.025267132301614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.662"} +{"sensors":[{"euler":{"heading":63.243050811037584,"pitch":130.73199736213343,"roll":20.95568647518435},"location":"Left Knee"},{"euler":{"heading":65.85440752504807,"pitch":100.43448521540427,"roll":24.14304459836527},"location":"Left Ankle"},{"euler":{"heading":69.47710899519521,"pitch":-9.0721509237324,"roll":-7.994021751424853},"location":"Right Ankle"},{"euler":{"heading":122.44012293033343,"pitch":-161.85056691662922,"roll":55.22475656097856},"location":"Right Hip"},{"euler":{"heading":66.54974765435045,"pitch":-107.36457738952116,"roll":9.364737736218672},"location":"Right Knee"},{"euler":{"heading":16.141807527441394,"pitch":-131.14915381744635,"roll":55.19149041907145},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.763"} +{"sensors":[{"euler":{"heading":91.70624572993383,"pitch":132.90254762592008,"roll":22.610117827665917},"location":"Left Knee"},{"euler":{"heading":62.03771677254326,"pitch":99.25353669386384,"roll":20.741240138528745},"location":"Left Ankle"},{"euler":{"heading":69.13564809567569,"pitch":-8.37118583135916,"roll":-8.507119576282367},"location":"Right Ankle"},{"euler":{"heading":122.3586106373001,"pitch":-162.18426022496632,"roll":56.07728090488071},"location":"Right Hip"},{"euler":{"heading":67.3385228889154,"pitch":-108.03436965056905,"roll":8.703263962596806},"location":"Right Knee"},{"euler":{"heading":15.452626774697256,"pitch":-129.9529884357017,"roll":54.60359137716431},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.864"} +{"sensors":[{"euler":{"heading":117.81687115694045,"pitch":134.7122928633281,"roll":24.161606044899326},"location":"Left Knee"},{"euler":{"heading":58.87769509528894,"pitch":98.65318302447746,"roll":17.84836612467587},"location":"Left Ankle"},{"euler":{"heading":67.85958328610812,"pitch":-7.634067248223244,"roll":-9.268907618654131},"location":"Right Ankle"},{"euler":{"heading":122.47899957357009,"pitch":-162.66583420246968,"roll":56.850802814392644},"location":"Right Hip"},{"euler":{"heading":69.11092060002386,"pitch":-108.49968268551214,"roll":7.245437566337125},"location":"Right Knee"},{"euler":{"heading":15.24486409722753,"pitch":-129.32018959213156,"roll":54.21823223944788},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.964"} +{"sensors":[{"euler":{"heading":106.5726840412464,"pitch":135.44106357699528,"roll":25.395445440409397},"location":"Left Knee"},{"euler":{"heading":57.36492558576005,"pitch":98.4003647220297,"roll":16.351029512208285},"location":"Left Ankle"},{"euler":{"heading":64.95487495749731,"pitch":-7.376910523400919,"roll":-9.948266856788717},"location":"Right Ankle"},{"euler":{"heading":123.33734961621309,"pitch":-162.5930007822227,"roll":57.14072253295338},"location":"Right Hip"},{"euler":{"heading":72.24357854002147,"pitch":-108.25596441696094,"roll":4.520893809703412},"location":"Right Knee"},{"euler":{"heading":15.082877687504778,"pitch":-128.9569206329184,"roll":54.07140901550309},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.66"} +{"sensors":[{"euler":{"heading":97.28416563712177,"pitch":135.42820721929576,"roll":26.29965089636846},"location":"Left Knee"},{"euler":{"heading":56.565933027184045,"pitch":98.36032824982674,"roll":15.428426560987457},"location":"Left Ankle"},{"euler":{"heading":61.27813746174758,"pitch":-7.157969471060826,"roll":-10.640940171109845},"location":"Right Ankle"},{"euler":{"heading":124.76611465459179,"pitch":-161.83370070400045,"roll":56.56415027965805},"location":"Right Hip"},{"euler":{"heading":75.41297068601932,"pitch":-108.20536797526485,"roll":1.6938044287330705},"location":"Right Knee"},{"euler":{"heading":15.462089918754302,"pitch":-129.2237285696266,"roll":54.27051811395279},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.167"} +{"sensors":[{"euler":{"heading":89.3182490734096,"pitch":135.02913649736618,"roll":26.925935806731616},"location":"Left Knee"},{"euler":{"heading":56.45308972446564,"pitch":98.39304542484408,"roll":15.079333904888712},"location":"Left Ankle"},{"euler":{"heading":59.369073715572824,"pitch":-7.342172523954744,"roll":-10.926846153998861},"location":"Right Ankle"},{"euler":{"heading":126.10825318913263,"pitch":-161.05033063360042,"roll":55.413985251692246},"location":"Right Hip"},{"euler":{"heading":76.81542361741738,"pitch":-107.74733117773836,"roll":0.49317398585976346},"location":"Right Knee"},{"euler":{"heading":16.04088092687887,"pitch":-129.99510571266393,"roll":54.68096630255751},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.269"} +{"sensors":[{"euler":{"heading":82.81142416606865,"pitch":134.30122284762956,"roll":27.195842226058453},"location":"Left Knee"},{"euler":{"heading":56.83903075201908,"pitch":98.59749088235968,"roll":15.14640051439984},"location":"Left Ankle"},{"euler":{"heading":60.08216634401554,"pitch":-8.089205271559269,"roll":-10.409161538598974},"location":"Right Ankle"},{"euler":{"heading":126.48492787021937,"pitch":-160.7765475702404,"roll":54.091336726523025},"location":"Right Hip"},{"euler":{"heading":75.85888125567564,"pitch":-106.99134805996452,"roll":1.281356587273787},"location":"Right Knee"},{"euler":{"heading":16.643042834190982,"pitch":-131.10809514139754,"roll":55.20036967230176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.369"} +{"sensors":[{"euler":{"heading":77.60528174946178,"pitch":133.3961005628666,"roll":26.970008003452605},"location":"Left Knee"},{"euler":{"heading":57.698877676817176,"pitch":98.85649179412371,"roll":15.706760462959856},"location":"Left Ankle"},{"euler":{"heading":63.111449709613986,"pitch":-8.792784744403342,"roll":-9.399495384739078},"location":"Right Ankle"},{"euler":{"heading":125.93643508319744,"pitch":-160.82389281321636,"roll":53.219703053870724},"location":"Right Hip"},{"euler":{"heading":73.29799313010808,"pitch":-106.19221325396808,"roll":3.7094709285464087},"location":"Right Knee"},{"euler":{"heading":17.334988550771886,"pitch":-132.55978562725778,"roll":55.81158270507159},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.470"} +{"sensors":[{"euler":{"heading":73.53225357451561,"pitch":132.28774050657992,"roll":26.173007203107343},"location":"Left Knee"},{"euler":{"heading":59.27273990913546,"pitch":99.23334261471135,"roll":17.01108441666387},"location":"Left Ankle"},{"euler":{"heading":66.00655473865258,"pitch":-9.176006269963008,"roll":-8.35954584626517},"location":"Right Ankle"},{"euler":{"heading":124.51779157487769,"pitch":-161.18525353189472,"roll":52.966482748483656},"location":"Right Hip"},{"euler":{"heading":70.26819381709727,"pitch":-105.92924192857127,"roll":6.288523835691768},"location":"Right Knee"},{"euler":{"heading":18.382739695694696,"pitch":-134.528807064532,"roll":56.52417443456443},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.571"} +{"sensors":[{"euler":{"heading":71.19777821706404,"pitch":131.35271645592192,"roll":24.268206482796607},"location":"Left Knee"},{"euler":{"heading":61.47046591822191,"pitch":99.69750835324022,"roll":19.691225974997483},"location":"Left Ankle"},{"euler":{"heading":67.76214926478733,"pitch":-9.433405642966708,"roll":-7.8048412616386535},"location":"Right Ankle"},{"euler":{"heading":123.84726241738993,"pitch":-161.36047817870525,"roll":52.89483447363529},"location":"Right Hip"},{"euler":{"heading":68.26012443538754,"pitch":-106.06131773571414,"roll":7.884671452122591},"location":"Right Knee"},{"euler":{"heading":19.28196572612523,"pitch":-135.8946763580788,"roll":57.13425699110799},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.672"} +{"sensors":[{"euler":{"heading":70.78425039535763,"pitch":130.14869481032974,"roll":21.81013583451695},"location":"Left Knee"},{"euler":{"heading":64.41091932639972,"pitch":100.8840075179162,"roll":23.147103377497736},"location":"Left Ankle"},{"euler":{"heading":68.8234343383086,"pitch":-9.471315078670036,"roll":-7.543107135474788},"location":"Right Ankle"},{"euler":{"heading":122.96878617565093,"pitch":-161.63068036083473,"roll":53.22410102627176},"location":"Right Hip"},{"euler":{"heading":67.31536199184879,"pitch":-106.61143596214274,"roll":8.702454306910333},"location":"Right Knee"},{"euler":{"heading":18.92251915351271,"pitch":-134.79270872227093,"roll":57.27708129199719},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.772"} +{"sensors":[{"euler":{"heading":69.81207535582188,"pitch":129.82757532929676,"roll":20.154122251065253},"location":"Left Knee"},{"euler":{"heading":66.46357739375975,"pitch":100.87060676612458,"roll":25.157393039747962},"location":"Left Ankle"},{"euler":{"heading":69.46609090447774,"pitch":-9.399183570803032,"roll":-7.57629642192731},"location":"Right Ankle"},{"euler":{"heading":122.63440755808585,"pitch":-161.78636232475125,"roll":53.82044092364459},"location":"Right Hip"},{"euler":{"heading":67.18382579266391,"pitch":-107.10654236592846,"roll":8.925958876219301},"location":"Right Knee"},{"euler":{"heading":17.76776723816144,"pitch":-133.09468785004384,"roll":56.680623162797474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.873"} +{"sensors":[{"euler":{"heading":64.8558678202397,"pitch":130.8073177963671,"roll":20.43246002595873},"location":"Left Knee"},{"euler":{"heading":65.32346965438377,"pitch":99.75229608951213,"roll":24.447903735773163},"location":"Left Ankle"},{"euler":{"heading":69.76323181402996,"pitch":-9.271765213722729,"roll":-7.6936667797345795},"location":"Right Ankle"},{"euler":{"heading":122.50221680227727,"pitch":-161.98272609227612,"roll":54.55714683128013},"location":"Right Hip"},{"euler":{"heading":67.64044321339752,"pitch":-107.52713812933561,"roll":8.652112988597372},"location":"Right Knee"},{"euler":{"heading":16.5222405143453,"pitch":-131.34146906503946,"roll":55.86881084651773},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.973"} +{"sensors":[{"euler":{"heading":93.55778103821572,"pitch":132.68908601673039,"roll":22.026714023362857},"location":"Left Knee"},{"euler":{"heading":61.803622688945396,"pitch":98.75831648056092,"roll":21.32186336219585},"location":"Left Ankle"},{"euler":{"heading":69.51190863262697,"pitch":-9.007088692350456,"roll":-8.161800101761122},"location":"Right Ankle"},{"euler":{"heading":122.67699512204955,"pitch":-162.2282034830485,"roll":55.27018214815212},"location":"Right Hip"},{"euler":{"heading":68.68264889205777,"pitch":-107.87442431640204,"roll":7.886901689737634},"location":"Right Knee"},{"euler":{"heading":15.70126646291077,"pitch":-129.90107215853553,"roll":55.24442976186596},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.74"} +{"sensors":[{"euler":{"heading":118.96450293439416,"pitch":134.75767741505734,"roll":23.71779262102657},"location":"Left Knee"},{"euler":{"heading":58.29201042005086,"pitch":98.09498483250484,"roll":18.039677025976268},"location":"Left Ankle"},{"euler":{"heading":68.36071776936427,"pitch":-8.68137982311541,"roll":-8.80187009158501},"location":"Right Ankle"},{"euler":{"heading":123.0405456098446,"pitch":-162.75538313474365,"roll":56.02441393333691},"location":"Right Hip"},{"euler":{"heading":70.595634002852,"pitch":-108.01823188476185,"roll":6.360711520763871},"location":"Right Knee"},{"euler":{"heading":15.537389816619694,"pitch":-129.24846494268198,"roll":54.82623678567937},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.175"} +{"sensors":[{"euler":{"heading":107.43680264095475,"pitch":135.68190967355162,"roll":25.058513358923918},"location":"Left Knee"},{"euler":{"heading":56.650309378045776,"pitch":97.87923634925436,"roll":16.29195932337864},"location":"Left Ankle"},{"euler":{"heading":65.99964599242784,"pitch":-8.70074184080387,"roll":-9.54043308242651},"location":"Right Ankle"},{"euler":{"heading":123.86149104886015,"pitch":-162.9673448212693,"roll":56.478222540003216},"location":"Right Hip"},{"euler":{"heading":73.6423206025668,"pitch":-107.57890869628567,"roll":3.7308903686874837},"location":"Right Knee"},{"euler":{"heading":15.583650834957725,"pitch":-128.8111184484138,"roll":54.649863107111436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.276"} +{"sensors":[{"euler":{"heading":97.84937237685928,"pitch":135.86996870619646,"roll":26.021412023031527},"location":"Left Knee"},{"euler":{"heading":55.6665284402412,"pitch":97.76006271432892,"roll":15.125263391040779},"location":"Left Ankle"},{"euler":{"heading":62.537181393185065,"pitch":-8.505667656723483,"roll":-10.29888977418386},"location":"Right Ankle"},{"euler":{"heading":125.37534194397414,"pitch":-162.24561033914236,"roll":56.1991502860029},"location":"Right Hip"},{"euler":{"heading":76.96558854231012,"pitch":-107.6397678266571,"roll":0.7390513318187351},"location":"Right Knee"},{"euler":{"heading":15.925285751461953,"pitch":-128.9737566035724,"roll":54.803626796400295},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.377"} +{"sensors":[{"euler":{"heading":89.65193513917336,"pitch":135.5892218355768,"roll":26.719270820728376},"location":"Left Knee"},{"euler":{"heading":55.29362559621708,"pitch":97.72155644289603,"roll":14.556487051936701},"location":"Left Ankle"},{"euler":{"heading":60.57721325386656,"pitch":-8.536350891051136,"roll":-10.619000796765473},"location":"Right Ankle"},{"euler":{"heading":126.84405774957673,"pitch":-161.37104930522813,"roll":55.29173525740261},"location":"Right Hip"},{"euler":{"heading":78.4690296880791,"pitch":-107.3320410439914,"roll":-0.8473538013631386},"location":"Right Knee"},{"euler":{"heading":16.476507176315756,"pitch":-129.54513094321516,"roll":55.17951411676027},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.477"} +{"sensors":[{"euler":{"heading":82.77424162525604,"pitch":135.00529965201912,"roll":27.10359373865554},"location":"Left Knee"},{"euler":{"heading":55.43926303659538,"pitch":97.78690079860644,"roll":14.46958834674303},"location":"Left Ankle"},{"euler":{"heading":61.194491928479906,"pitch":-9.282715801946022,"roll":-10.163350717088925},"location":"Right Ankle"},{"euler":{"heading":127.72215197461907,"pitch":-160.82769437470532,"roll":54.11881173166235},"location":"Right Hip"},{"euler":{"heading":77.8533767192712,"pitch":-106.55508693959226,"roll":-0.34386842122682476},"location":"Right Knee"},{"euler":{"heading":17.15385645868418,"pitch":-130.60936784889364,"roll":55.65531270508424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.578"} +{"sensors":[{"euler":{"heading":77.19056746273043,"pitch":134.2047696868172,"roll":27.061984364789986},"location":"Left Knee"},{"euler":{"heading":55.97033673293584,"pitch":97.8832107187458,"roll":14.847629512068728},"location":"Left Ankle"},{"euler":{"heading":64.24379273563191,"pitch":-9.991944221751421,"roll":-9.172015645380032},"location":"Right Ankle"},{"euler":{"heading":127.56868677715717,"pitch":-160.7324249372348,"roll":53.219430558496114},"location":"Right Hip"},{"euler":{"heading":75.49928904734408,"pitch":-105.69332824563304,"roll":1.9467684208958578},"location":"Right Knee"},{"euler":{"heading":17.944720812815763,"pitch":-132.09218106400428,"roll":56.21478143457582},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.678"} +{"sensors":[{"euler":{"heading":72.85276071645738,"pitch":133.18429271813548,"roll":26.518285928310988},"location":"Left Knee"},{"euler":{"heading":57.22330305964226,"pitch":98.13863964687123,"roll":15.912866560861856},"location":"Left Ankle"},{"euler":{"heading":67.34441346206873,"pitch":-10.53649979957628,"roll":-8.03606408084203},"location":"Right Ankle"},{"euler":{"heading":126.39931809944146,"pitch":-160.98418244351132,"roll":52.90998750264651},"location":"Right Hip"},{"euler":{"heading":72.43686014260967,"pitch":-105.21149542106974,"roll":4.833341578806272},"location":"Right Knee"},{"euler":{"heading":18.993998731534187,"pitch":-133.93296295760385,"roll":56.89955329111824},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.779"} +{"sensors":[{"euler":{"heading":70.07373464481164,"pitch":132.05336344632195,"roll":25.14770733547989},"location":"Left Knee"},{"euler":{"heading":59.288472753678036,"pitch":98.4872756821841,"roll":18.22782990477567},"location":"Left Ankle"},{"euler":{"heading":69.19122211586186,"pitch":-10.739099819618652,"roll":-7.501207672757826},"location":"Right Ankle"},{"euler":{"heading":125.32813628949731,"pitch":-161.32326419916018,"roll":52.762738752381864},"location":"Right Hip"},{"euler":{"heading":70.15567412834872,"pitch":-105.24034587896277,"roll":6.787507420925645},"location":"Right Knee"},{"euler":{"heading":20.05709885838077,"pitch":-135.52716666184347,"roll":57.528347962006414},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.879"} +{"sensors":[{"euler":{"heading":69.32261118033047,"pitch":130.94177710168975,"roll":22.801686601931902},"location":"Left Knee"},{"euler":{"heading":62.83462547831024,"pitch":99.86354811396569,"roll":21.761296914298104},"location":"Left Ankle"},{"euler":{"heading":70.48459990427568,"pitch":-10.790189837656786,"roll":-7.194836905482044},"location":"Right Ankle"},{"euler":{"heading":124.43907266054758,"pitch":-161.60343777924416,"roll":53.02396487714368},"location":"Right Hip"},{"euler":{"heading":68.83385671551385,"pitch":-105.72256129106648,"roll":7.915006678833081},"location":"Right Knee"},{"euler":{"heading":19.54513897254269,"pitch":-134.82444999565914,"roll":57.581763165805775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.980"} +{"sensors":[{"euler":{"heading":68.77785006229742,"pitch":130.24759939152077,"roll":20.934017941738713},"location":"Left Knee"},{"euler":{"heading":65.26366293047921,"pitch":100.07719330256913,"roll":24.20391722286829},"location":"Left Ankle"},{"euler":{"heading":71.41738991384811,"pitch":-10.829920853891108,"roll":-7.10035321493384},"location":"Right Ankle"},{"euler":{"heading":123.91391539449283,"pitch":-161.88059400131974,"roll":53.590318389429314},"location":"Right Hip"},{"euler":{"heading":68.35047104396247,"pitch":-106.12530516195983,"roll":8.429756010949774},"location":"Right Knee"},{"euler":{"heading":18.503125075288423,"pitch":-133.27325499609321,"roll":57.0110868492252},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.82"} +{"sensors":[{"euler":{"heading":65.00006505606767,"pitch":130.7915894523687,"roll":20.91561614756484},"location":"Left Knee"},{"euler":{"heading":64.54979663743129,"pitch":99.34447397231223,"roll":23.927275500581462},"location":"Left Ankle"},{"euler":{"heading":71.8881509224633,"pitch":-10.671928768502,"roll":-7.221567893440456},"location":"Right Ankle"},{"euler":{"heading":123.87877385504355,"pitch":-161.95503460118775,"roll":54.26253655048638},"location":"Right Hip"},{"euler":{"heading":68.39667393956623,"pitch":-106.58777464576386,"roll":8.461780409854796},"location":"Right Knee"},{"euler":{"heading":17.39656256775958,"pitch":-131.5771794964839,"roll":56.16622816430269},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.183"} +{"sensors":[{"euler":{"heading":94.1563085504609,"pitch":132.48743050713182,"roll":22.39280453280836},"location":"Left Knee"},{"euler":{"heading":61.33856697368816,"pitch":98.57877657508101,"roll":21.097047950523315},"location":"Left Ankle"},{"euler":{"heading":71.81808583021697,"pitch":-10.2297358916518,"roll":-7.511911104096411},"location":"Right Ankle"},{"euler":{"heading":123.8971464695392,"pitch":-162.10328114106898,"roll":54.99253289543774},"location":"Right Hip"},{"euler":{"heading":68.9882565456096,"pitch":-107.16649718118747,"roll":7.990602368869317},"location":"Right Knee"},{"euler":{"heading":16.388156310983625,"pitch":-130.1194615468355,"roll":55.374605347872425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.284"} +{"sensors":[{"euler":{"heading":119.58442769541482,"pitch":134.61368745641863,"roll":23.953524079527526},"location":"Left Knee"},{"euler":{"heading":57.692210276319344,"pitch":97.80214891757291,"roll":17.668593155470983},"location":"Left Ankle"},{"euler":{"heading":71.05502724719528,"pitch":-9.60676230248662,"roll":-8.24821999368677},"location":"Right Ankle"},{"euler":{"heading":124.06368182258528,"pitch":-162.3804530269621,"roll":55.80577960589397},"location":"Right Hip"},{"euler":{"heading":70.47693089104864,"pitch":-107.58734746306872,"roll":6.816542131982386},"location":"Right Knee"},{"euler":{"heading":15.961840679885263,"pitch":-129.35751539215198,"roll":54.787144813085185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.385"} +{"sensors":[{"euler":{"heading":108.10098492587333,"pitch":135.60231871077676,"roll":25.264421671574773},"location":"Left Knee"},{"euler":{"heading":55.95423924868741,"pitch":97.94068402581563,"roll":15.532983839923885},"location":"Left Ankle"},{"euler":{"heading":69.09952452247576,"pitch":-9.283586072237958,"roll":-9.079647994318094},"location":"Right Ankle"},{"euler":{"heading":124.54481364032675,"pitch":-162.7299077242659,"roll":56.41270164530457},"location":"Right Hip"},{"euler":{"heading":73.08548780194377,"pitch":-107.54111271676186,"roll":4.628637918784147},"location":"Right Knee"},{"euler":{"heading":15.846906611896738,"pitch":-129.0217638529368,"roll":54.43968033177667},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.485"} +{"sensors":[{"euler":{"heading":98.665886433286,"pitch":135.71083683969908,"roll":26.225479504417297},"location":"Left Knee"},{"euler":{"heading":54.93381532381867,"pitch":97.94661562323407,"roll":14.385935455931497},"location":"Left Ankle"},{"euler":{"heading":65.22707207022819,"pitch":-8.848977465014162,"roll":-10.109183194886285},"location":"Right Ankle"},{"euler":{"heading":125.57783227629407,"pitch":-162.25691695183932,"roll":56.30268148077412},"location":"Right Hip"},{"euler":{"heading":76.3331890217494,"pitch":-107.43075144508568,"roll":1.665774126905732},"location":"Right Knee"},{"euler":{"heading":15.905965950707065,"pitch":-128.96333746764313,"roll":54.389462298599},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.586"} +{"sensors":[{"euler":{"heading":90.71804778995741,"pitch":135.2210031557292,"roll":26.99043155397557},"location":"Left Knee"},{"euler":{"heading":54.7466837914368,"pitch":98.19570406091067,"roll":13.766091910338346},"location":"Left Ankle"},{"euler":{"heading":62.51061486320537,"pitch":-8.751579718512746,"roll":-10.648264875397658},"location":"Right Ankle"},{"euler":{"heading":126.97004904866468,"pitch":-161.44997525665536,"roll":55.484913332696706},"location":"Right Hip"},{"euler":{"heading":78.11862011957447,"pitch":-107.15642630057711,"roll":-0.11955328578484137},"location":"Right Knee"},{"euler":{"heading":16.446619355636358,"pitch":-129.4607537208788,"roll":54.6567660687391},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.688"} +{"sensors":[{"euler":{"heading":84.10249301096167,"pitch":134.3426528401563,"roll":27.472638398578013},"location":"Left Knee"},{"euler":{"heading":55.165765412293126,"pitch":98.53863365481962,"roll":13.645732719304512},"location":"Left Ankle"},{"euler":{"heading":62.32205337688483,"pitch":-9.35142174666147,"roll":-10.433438387857892},"location":"Right Ankle"},{"euler":{"heading":127.91679414379821,"pitch":-160.88622773098984,"roll":54.29892199942704},"location":"Right Hip"},{"euler":{"heading":77.68800810761702,"pitch":-106.4032836705194,"roll":0.1986520427936428},"location":"Right Knee"},{"euler":{"heading":17.245707420072723,"pitch":-130.59592834879095,"roll":55.0848394618652},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.788"} +{"sensors":[{"euler":{"heading":78.74849370986551,"pitch":133.23338755614066,"roll":27.506624558720212},"location":"Left Knee"},{"euler":{"heading":55.836688871063814,"pitch":98.87227028933766,"roll":13.89990944737406},"location":"Left Ankle"},{"euler":{"heading":64.58359803919635,"pitch":-9.960029571995324,"roll":-9.608844549072103},"location":"Right Ankle"},{"euler":{"heading":127.7938647294184,"pitch":-160.84135495789084,"roll":53.269029799484336},"location":"Right Hip"},{"euler":{"heading":75.46295729685532,"pitch":-105.46920530346746,"roll":2.3350368385142786},"location":"Right Knee"},{"euler":{"heading":18.146136678065453,"pitch":-131.96758551391184,"roll":55.65760551567868},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.889"} +{"sensors":[{"euler":{"heading":74.51739433887896,"pitch":131.98504880052658,"roll":27.03721210284819},"location":"Left Knee"},{"euler":{"heading":57.00301998395744,"pitch":99.2662932604039,"roll":14.697418502636655},"location":"Left Ankle"},{"euler":{"heading":67.6627382352767,"pitch":-10.589026614795792,"roll":-8.391710094164893},"location":"Right Ankle"},{"euler":{"heading":126.68947825647656,"pitch":-161.08221946210176,"roll":52.9671268195359},"location":"Right Hip"},{"euler":{"heading":72.39166156716979,"pitch":-104.85978477312072,"roll":5.289033154662851},"location":"Right Knee"},{"euler":{"heading":19.22527301025891,"pitch":-133.80832696252065,"roll":56.379344964110814},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.989"} +{"sensors":[{"euler":{"heading":71.55315490499106,"pitch":130.68029392047393,"roll":25.870990892563373},"location":"Left Knee"},{"euler":{"heading":58.715217985561694,"pitch":99.70216393436351,"roll":16.27767665237299},"location":"Left Ankle"},{"euler":{"heading":69.85271441174903,"pitch":-10.761373953316212,"roll":-7.6587890847484035},"location":"Right Ankle"},{"euler":{"heading":125.37678043082892,"pitch":-161.4927475158916,"roll":52.901664137582316},"location":"Right Hip"},{"euler":{"heading":69.64624541045282,"pitch":-104.96130629580865,"roll":7.485129839196567},"location":"Right Knee"},{"euler":{"heading":20.77774570923302,"pitch":-136.1337442662686,"roll":57.16016046769974},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.89"} +{"sensors":[{"euler":{"heading":70.44783941449195,"pitch":129.72476452842653,"roll":23.590141803307034},"location":"Left Knee"},{"euler":{"heading":61.46869618700553,"pitch":101.00069754092716,"roll":19.31240898713569},"location":"Left Ankle"},{"euler":{"heading":71.19869297057413,"pitch":-10.516486557984592,"roll":-7.349160176273563},"location":"Right Ankle"},{"euler":{"heading":124.69535238774603,"pitch":-161.66222276430244,"roll":53.14899772382409},"location":"Right Hip"},{"euler":{"heading":67.88162086940754,"pitch":-105.5901756662278,"roll":8.83661685527691},"location":"Right Knee"},{"euler":{"heading":21.16247113830972,"pitch":-136.90786983964173,"roll":57.437894420929766},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.190"} +{"sensors":[{"euler":{"heading":70.57180547304276,"pitch":128.49603807558387,"roll":21.22487762297633},"location":"Left Knee"},{"euler":{"heading":64.10307656830497,"pitch":102.12562778683446,"roll":22.31241808842212},"location":"Left Ankle"},{"euler":{"heading":71.95382367351672,"pitch":-10.064837902186133,"roll":-7.370494158646206},"location":"Right Ankle"},{"euler":{"heading":123.95081714897142,"pitch":-161.95225048787222,"roll":53.78409795144168},"location":"Right Hip"},{"euler":{"heading":66.98095878246679,"pitch":-106.36240809960502,"roll":9.49670516974922},"location":"Right Knee"},{"euler":{"heading":20.833724024478748,"pitch":-135.71083285567755,"roll":57.40660497883679},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.291"} +{"sensors":[{"euler":{"heading":69.08962492573848,"pitch":128.5026842680255,"roll":20.114889860678698},"location":"Left Knee"},{"euler":{"heading":65.01776891147448,"pitch":101.73181500815102,"roll":23.306176279579912},"location":"Left Ankle"},{"euler":{"heading":72.30219130616506,"pitch":-9.602104111967519,"roll":-7.652194742781585},"location":"Right Ankle"},{"euler":{"heading":123.58698543407428,"pitch":-162.194525439085,"roll":54.561938156297515},"location":"Right Hip"},{"euler":{"heading":66.80161290422011,"pitch":-106.99491728964452,"roll":9.584534652774298},"location":"Right Knee"},{"euler":{"heading":19.662851622030875,"pitch":-133.9272495701098,"roll":56.68469448095311},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.391"} +{"sensors":[{"euler":{"heading":63.455662433164626,"pitch":129.82741584122294,"roll":20.959650874610826},"location":"Left Knee"},{"euler":{"heading":62.740992020327035,"pitch":100.5648835073359,"roll":21.56305865162192},"location":"Left Ankle"},{"euler":{"heading":72.20322217554855,"pitch":-9.179393700770767,"roll":-7.899475268503427},"location":"Right Ankle"},{"euler":{"heading":123.42828689066685,"pitch":-162.68132289517652,"roll":55.374494340667766},"location":"Right Hip"},{"euler":{"heading":67.2527016137981,"pitch":-107.45167556068007,"roll":9.169831187496868},"location":"Right Knee"},{"euler":{"heading":18.50906645982779,"pitch":-132.25327461309882,"roll":55.90372503285781},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.492"} +{"sensors":[{"euler":{"heading":92.37884618984816,"pitch":131.98217425710064,"roll":22.551185787149745},"location":"Left Knee"},{"euler":{"heading":59.066892818294335,"pitch":99.33339515660232,"roll":18.219252786459727},"location":"Left Ankle"},{"euler":{"heading":71.5266499579937,"pitch":-8.71145433069369,"roll":-8.303277741653085},"location":"Right Ankle"},{"euler":{"heading":123.47920820160017,"pitch":-163.3131906056589,"roll":56.249544906600995},"location":"Right Hip"},{"euler":{"heading":68.49618145241828,"pitch":-107.78150800461206,"roll":8.115348068747183},"location":"Right Knee"},{"euler":{"heading":17.97065981384501,"pitch":-131.28419715178896,"roll":55.36960252957203},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.593"} +{"sensors":[{"euler":{"heading":83.27846157086336,"pitch":133.35270683139058,"roll":24.04606720843477},"location":"Left Knee"},{"euler":{"heading":56.503953536464905,"pitch":98.76880564094209,"roll":15.828577507813756},"location":"Left Ankle"},{"euler":{"heading":69.79898496219433,"pitch":-8.44655889762432,"roll":-9.041699967487776},"location":"Right Ankle"},{"euler":{"heading":123.90628738144017,"pitch":-163.91312154509302,"roll":56.9558404159409},"location":"Right Hip"},{"euler":{"heading":70.84031330717646,"pitch":-107.75960720415085,"roll":6.060063261872465},"location":"Right Knee"},{"euler":{"heading":17.648593832460513,"pitch":-130.73702743661008,"roll":54.97014227661483},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.694"} +{"sensors":[{"euler":{"heading":76.09436541377703,"pitch":133.86118614825153,"roll":25.091460487591295},"location":"Left Knee"},{"euler":{"heading":55.20355818281842,"pitch":98.41067507684788,"roll":14.53321975703238},"location":"Left Ankle"},{"euler":{"heading":66.2815864659749,"pitch":-7.964403007861887,"roll":-9.943779970739},"location":"Right Ankle"},{"euler":{"heading":125.07190864329615,"pitch":-163.4905593905837,"roll":56.94150637434681},"location":"Right Hip"},{"euler":{"heading":74.08753197645882,"pitch":-107.83989648373577,"roll":3.1915569356852185},"location":"Right Knee"},{"euler":{"heading":17.452484449214463,"pitch":-130.50707469294906,"roll":54.88562804895335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.795"} +{"sensors":[{"euler":{"heading":70.04117887239933,"pitch":133.90006753342638,"roll":25.844814438832167},"location":"Left Knee"},{"euler":{"heading":54.52695236453658,"pitch":98.2196075691631,"roll":13.711147781329142},"location":"Left Ankle"},{"euler":{"heading":62.9846778193774,"pitch":-7.886712707075699,"roll":-10.436901973665101},"location":"Right Ankle"},{"euler":{"heading":126.52721777896654,"pitch":-162.52275345152535,"roll":56.22235573691213},"location":"Right Hip"},{"euler":{"heading":76.54127877881294,"pitch":-107.6246568353622,"roll":0.7786512421166969},"location":"Right Knee"},{"euler":{"heading":17.519736004293016,"pitch":-130.91261722365417,"roll":55.02206524405802},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.896"} +{"sensors":[{"euler":{"heading":65.2745609851594,"pitch":133.41006078008374,"roll":26.379082994948952},"location":"Left Knee"},{"euler":{"heading":54.61800712808292,"pitch":98.27264681224679,"roll":13.446283003196228},"location":"Left Ankle"},{"euler":{"heading":62.01121003743967,"pitch":-8.479291436368129,"roll":-10.349461776298591},"location":"Right Ankle"},{"euler":{"heading":127.45574600106988,"pitch":-161.77672810637281,"roll":55.06262016322091},"location":"Right Hip"},{"euler":{"heading":75.34340090093164,"pitch":-107.03094115182599,"roll":0.4882861179050272},"location":"Right Knee"},{"euler":{"heading":17.955262403863713,"pitch":-131.73385550128876,"roll":55.38235871965222},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.996"} +{"sensors":[{"euler":{"heading":61.678354886643454,"pitch":132.53155470207537,"roll":26.522424695454056},"location":"Left Knee"},{"euler":{"heading":55.199956415274634,"pitch":98.52038213102212,"roll":13.626654702876607},"location":"Left Ankle"},{"euler":{"heading":63.94758903369571,"pitch":-9.218862292731316,"roll":-9.514515598668732},"location":"Right Ankle"},{"euler":{"heading":127.5976714009629,"pitch":-161.50530529573552,"roll":53.943858146898826},"location":"Right Hip"},{"euler":{"heading":73.63406081083848,"pitch":-106.1965970366434,"roll":2.2019575061145247},"location":"Right Knee"},{"euler":{"heading":18.628486163477344,"pitch":-132.97921995115988,"roll":55.925372847687},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.97"} +{"sensors":[{"euler":{"heading":59.21051939797911,"pitch":131.45339923186785,"roll":26.10143222590865},"location":"Left Knee"},{"euler":{"heading":56.36121077374717,"pitch":98.91209391791992,"roll":14.426489232588946},"location":"Left Ankle"},{"euler":{"heading":66.99658013032614,"pitch":-9.746976063458185,"roll":-8.388064038801858},"location":"Right Ankle"},{"euler":{"heading":126.7629042608666,"pitch":-161.54852476616196,"roll":53.48072233220894},"location":"Right Hip"},{"euler":{"heading":70.71440472975462,"pitch":-105.66443733297906,"roll":5.038011755503073},"location":"Right Knee"},{"euler":{"heading":19.31563754712961,"pitch":-134.3875479560439,"roll":56.5390855629183},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.198"} +{"sensors":[{"euler":{"heading":57.8207174581812,"pitch":130.34555930868106,"roll":24.891289003317784},"location":"Left Knee"},{"euler":{"heading":58.21258969637245,"pitch":99.38963452612794,"roll":16.108840309330052},"location":"Left Ankle"},{"euler":{"heading":69.35317211729352,"pitch":-10.084778457112366,"roll":-7.5805076349216725},"location":"Right Ankle"},{"euler":{"heading":125.64911383477995,"pitch":-161.83117228954578,"roll":53.34515009898805},"location":"Right Hip"},{"euler":{"heading":68.29921425677915,"pitch":-105.69174359968116,"roll":7.196710579952766},"location":"Right Knee"},{"euler":{"heading":20.140323792416652,"pitch":-136.1175431604395,"roll":57.14142700662647},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.300"} +{"sensors":[{"euler":{"heading":58.14489571236308,"pitch":129.39850337781294,"roll":22.658410102986007},"location":"Left Knee"},{"euler":{"heading":61.11633072673521,"pitch":100.27567107351514,"roll":19.335456278397047},"location":"Left Ankle"},{"euler":{"heading":70.73660490556418,"pitch":-10.301300611401128,"roll":-7.228706871429505},"location":"Right Ankle"},{"euler":{"heading":124.94045245130197,"pitch":-162.03555506059118,"roll":53.48563508908925},"location":"Right Hip"},{"euler":{"heading":66.84429283110123,"pitch":-106.01631923971304,"roll":8.52703952195749},"location":"Right Knee"},{"euler":{"heading":19.888791413174985,"pitch":-136.33703884439558,"roll":57.308534305963825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.400"} +{"sensors":[{"euler":{"heading":59.44915614112677,"pitch":128.46490304003166,"roll":20.261319092687405},"location":"Left Knee"},{"euler":{"heading":63.998447654061685,"pitch":101.12310396616363,"roll":22.670660650557345},"location":"Left Ankle"},{"euler":{"heading":71.58169441500776,"pitch":-10.514920550261015,"roll":-7.1120861842865555},"location":"Right Ankle"},{"euler":{"heading":124.32140720617177,"pitch":-162.31324955453206,"roll":53.96207158018033},"location":"Right Hip"},{"euler":{"heading":66.55986354799111,"pitch":-106.37718731574175,"roll":9.043085569761741},"location":"Right Knee"},{"euler":{"heading":19.068662271857487,"pitch":-134.72833495995602,"roll":56.98393087536744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.501"} +{"sensors":[{"euler":{"heading":59.2854905270141,"pitch":128.53716273602848,"roll":19.185187183418662},"location":"Left Knee"},{"euler":{"heading":64.99860288865553,"pitch":100.47954356954726,"roll":24.047344585501612},"location":"Left Ankle"},{"euler":{"heading":72.06727497350698,"pitch":-10.700928495234916,"roll":-7.2633775658579},"location":"Right Ankle"},{"euler":{"heading":124.1517664855546,"pitch":-162.50692459907887,"roll":54.6096144221623},"location":"Right Hip"},{"euler":{"heading":66.953877193192,"pitch":-106.58321858416758,"roll":9.013777012785567},"location":"Right Knee"},{"euler":{"heading":17.655546044671738,"pitch":-132.9367514639604,"roll":56.0917877878307},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.601"} +{"sensors":[{"euler":{"heading":53.38819147431269,"pitch":129.85219646242564,"roll":20.079168465076798},"location":"Left Knee"},{"euler":{"heading":63.15499259978998,"pitch":99.45033921259254,"roll":22.542610126951452},"location":"Left Ankle"},{"euler":{"heading":72.02929747615629,"pitch":-10.812085645711425,"roll":-7.474539809272111},"location":"Right Ankle"},{"euler":{"heading":124.24908983699915,"pitch":-162.71873213917098,"roll":55.286152979946074},"location":"Right Hip"},{"euler":{"heading":67.9522394738728,"pitch":-106.72489672575082,"roll":8.46239931150701},"location":"Right Knee"},{"euler":{"heading":16.421241440204565,"pitch":-131.24307631756437,"roll":55.23885900904763},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.701"} +{"sensors":[{"euler":{"heading":83.19937232688142,"pitch":132.02322681618307,"roll":21.80875161856912},"location":"Left Knee"},{"euler":{"heading":59.36449333981098,"pitch":98.34905529133329,"roll":19.050849114256305},"location":"Left Ankle"},{"euler":{"heading":71.33261772854065,"pitch":-10.624627081140284,"roll":-8.0708358283449},"location":"Right Ankle"},{"euler":{"heading":124.48668085329925,"pitch":-162.9656089252539,"roll":55.98878768195147},"location":"Right Hip"},{"euler":{"heading":69.45701552648552,"pitch":-106.97115705317574,"roll":7.409909380356309},"location":"Right Knee"},{"euler":{"heading":15.766617296184108,"pitch":-130.14376868580794,"roll":54.67122310814287},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.802"} +{"sensors":[{"euler":{"heading":110.52943509419327,"pitch":133.75840413456478,"roll":23.41537645671221},"location":"Left Knee"},{"euler":{"heading":56.121794005829884,"pitch":97.77039976219996,"roll":15.945764202830677},"location":"Left Ankle"},{"euler":{"heading":69.95560595568658,"pitch":-10.287164373026256,"roll":-8.926252245510412},"location":"Right Ankle"},{"euler":{"heading":124.72551276796932,"pitch":-163.6440480327285,"roll":56.802408913756324},"location":"Right Hip"},{"euler":{"heading":71.63006397383697,"pitch":-107.13029134785818,"roll":5.712668442320679},"location":"Right Knee"},{"euler":{"heading":17.3087055665657,"pitch":-129.46689181722715,"roll":54.33535079732859},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.903"} +{"sensors":[{"euler":{"heading":100.51399158477395,"pitch":134.3888137211083,"roll":24.66758881104099},"location":"Left Knee"},{"euler":{"heading":54.790864605246895,"pitch":97.58710978597996,"roll":14.526187782547611},"location":"Left Ankle"},{"euler":{"heading":67.04754536011792,"pitch":-10.183447935723631,"roll":-9.833627020959371},"location":"Right Ankle"},{"euler":{"heading":125.45921149117238,"pitch":-163.92339322945568,"roll":57.28466802238069},"location":"Right Hip"},{"euler":{"heading":74.73580757645327,"pitch":-106.77976221307236,"roll":3.022651598088611},"location":"Right Knee"},{"euler":{"heading":17.13408500990913,"pitch":-129.07020263550444,"roll":54.21431571759573},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.3"} +{"sensors":[{"euler":{"heading":92.15634242629655,"pitch":134.31243234899748,"roll":25.632079929936893},"location":"Left Knee"},{"euler":{"heading":54.130528144722206,"pitch":97.59714880738197,"roll":13.51731900429285},"location":"Left Ankle"},{"euler":{"heading":63.31779082410613,"pitch":-10.033853142151269,"roll":-10.606514318863434},"location":"Right Ankle"},{"euler":{"heading":126.71954034205515,"pitch":-163.27480390651013,"roll":56.88120122014263},"location":"Right Hip"},{"euler":{"heading":78.05597681880795,"pitch":-106.76428599176512,"roll":0.026636438279749708},"location":"Right Knee"},{"euler":{"heading":17.251926508918217,"pitch":-129.21318237195402,"roll":54.374134145836166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.104"} +{"sensors":[{"euler":{"heading":85.0094581836669,"pitch":133.80618911409775,"roll":26.375121936943202},"location":"Left Knee"},{"euler":{"heading":54.15497533024999,"pitch":97.74993392664376,"roll":13.053087103863565},"location":"Left Ankle"},{"euler":{"heading":61.36101174169552,"pitch":-10.074217827936142,"roll":-10.92086288697709},"location":"Right Ankle"},{"euler":{"heading":128.01008630784963,"pitch":-162.42232351585912,"roll":55.836831098128364},"location":"Right Hip"},{"euler":{"heading":79.50662913692715,"pitch":-106.56910739258862,"roll":-1.5010272055482254},"location":"Right Knee"},{"euler":{"heading":17.614233858026395,"pitch":-129.91061413475862,"roll":54.71797073125255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.204"} +{"sensors":[{"euler":{"heading":79.15851236530021,"pitch":132.994320202688,"roll":26.743859743248883},"location":"Left Knee"},{"euler":{"heading":55.026977797224994,"pitch":98.08744053397939,"roll":13.310278393477208},"location":"Left Ankle"},{"euler":{"heading":62.06866056752597,"pitch":-10.735546045142527,"roll":-10.24752659827938},"location":"Right Ankle"},{"euler":{"heading":128.54657767706468,"pitch":-161.96759116427322,"roll":54.54689798831553},"location":"Right Hip"},{"euler":{"heading":78.50596622323444,"pitch":-105.79969665332976,"roll":-0.7759244849934029},"location":"Right Knee"},{"euler":{"heading":18.059060472223756,"pitch":-130.92580272128276,"roll":55.1961736581273},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.305"} +{"sensors":[{"euler":{"heading":74.5489111287702,"pitch":131.9136381824192,"roll":26.669473768923996},"location":"Left Knee"},{"euler":{"heading":56.2242800175025,"pitch":98.50994648058146,"roll":13.973000554129488},"location":"Left Ankle"},{"euler":{"heading":64.70554451077336,"pitch":-11.261991440628275,"roll":-8.985273938451442},"location":"Right Ankle"},{"euler":{"heading":128.2981699093582,"pitch":-161.78333204784587,"roll":53.63595818948398},"location":"Right Hip"},{"euler":{"heading":75.636619600911,"pitch":-105.0697269879968,"roll":1.7766679635059375},"location":"Right Knee"},{"euler":{"heading":18.67815442500138,"pitch":-132.1457224491545,"roll":55.82030629231457},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.406"} +{"sensors":[{"euler":{"heading":71.02527001589318,"pitch":130.69727436417728,"roll":26.065026392031598},"location":"Left Knee"},{"euler":{"heading":57.88310201575225,"pitch":98.98395183252332,"roll":15.22570049871654},"location":"Left Ankle"},{"euler":{"heading":67.59124005969603,"pitch":-11.654542296565449,"roll":-7.899246544606298},"location":"Right Ankle"},{"euler":{"heading":127.24960291842238,"pitch":-161.89874884306127,"roll":53.09111237053558},"location":"Right Hip"},{"euler":{"heading":72.47920764081991,"pitch":-104.63150428919712,"roll":4.636501167155344},"location":"Right Knee"},{"euler":{"heading":19.504088982501244,"pitch":-133.83740020423906,"roll":56.544525663083114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.507"} +{"sensors":[{"euler":{"heading":68.79774301430388,"pitch":129.55879692775954,"roll":24.646023752828437},"location":"Left Knee"},{"euler":{"heading":60.03854181417703,"pitch":99.38555664927098,"roll":17.471880448844885},"location":"Left Ankle"},{"euler":{"heading":69.26961605372642,"pitch":-11.495338066908904,"roll":-7.315571890145668},"location":"Right Ankle"},{"euler":{"heading":126.29339262658014,"pitch":-161.94012395875512,"roll":52.925751133482024},"location":"Right Hip"},{"euler":{"heading":69.78753687673793,"pitch":-104.96210386027742,"roll":6.66660105043981},"location":"Right Knee"},{"euler":{"heading":20.47243008425112,"pitch":-135.65991018381516,"roll":57.227573096774805},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.608"} +{"sensors":[{"euler":{"heading":68.37421871287349,"pitch":128.54041723498358,"roll":22.325171377545594},"location":"Left Knee"},{"euler":{"heading":63.65968763275933,"pitch":100.89700098434389,"roll":20.899692403960398},"location":"Left Ankle"},{"euler":{"heading":70.30515444835379,"pitch":-11.095804260218014,"roll":-7.084014701131101},"location":"Right Ankle"},{"euler":{"heading":125.42655336392214,"pitch":-162.0711115628796,"roll":53.201926020133826},"location":"Right Hip"},{"euler":{"heading":68.29003318906413,"pitch":-105.55964347424968,"roll":7.868690945395829},"location":"Right Knee"},{"euler":{"heading":20.100187075826007,"pitch":-135.67516916543366,"roll":57.304815787097326},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.708"} +{"sensors":[{"euler":{"heading":68.51179684158613,"pitch":127.94887551148523,"roll":20.161404239791036},"location":"Left Knee"},{"euler":{"heading":66.0499688694834,"pitch":101.0635508859095,"roll":23.522223163564355},"location":"Left Ankle"},{"euler":{"heading":70.92463900351841,"pitch":-10.867473834196213,"roll":-7.1006132310179915},"location":"Right Ankle"},{"euler":{"heading":124.79014802752992,"pitch":-162.36400040659163,"roll":53.79423341812045},"location":"Right Hip"},{"euler":{"heading":67.90477987015772,"pitch":-105.99117912682472,"roll":8.331821850856247},"location":"Right Knee"},{"euler":{"heading":19.027668368243408,"pitch":-134.3639022488903,"roll":56.8618342083876},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.809"} +{"sensors":[{"euler":{"heading":66.22311715742752,"pitch":128.61023796033672,"roll":19.601513815811934},"location":"Left Knee"},{"euler":{"heading":65.48872198253505,"pitch":100.35094579731856,"roll":23.48875084720792},"location":"Left Ankle"},{"euler":{"heading":71.11342510316658,"pitch":-10.524476450776593,"roll":-7.271801907916192},"location":"Right Ankle"},{"euler":{"heading":124.51738322477694,"pitch":-162.50260036593247,"roll":54.52731007630841},"location":"Right Hip"},{"euler":{"heading":68.03305188314195,"pitch":-106.44206121414224,"roll":8.329889665770622},"location":"Right Knee"},{"euler":{"heading":17.606151531419066,"pitch":-132.72126202400128,"roll":56.02565078754884},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.911"} +{"sensors":[{"euler":{"heading":95.01330544168476,"pitch":130.44296416430305,"roll":20.941362434230744},"location":"Left Knee"},{"euler":{"heading":62.20234978428155,"pitch":99.15335121758672,"roll":20.88987576248713},"location":"Left Ankle"},{"euler":{"heading":70.78958259284991,"pitch":-9.984528805698933,"roll":-7.632121717124574},"location":"Right Ankle"},{"euler":{"heading":124.40939490229924,"pitch":-162.64609032933924,"roll":55.23707906867757},"location":"Right Hip"},{"euler":{"heading":68.62974669482776,"pitch":-106.99785509272802,"roll":7.86565069919356},"location":"Right Knee"},{"euler":{"heading":16.32053637827716,"pitch":-131.18038582160113,"roll":55.260585708793954},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.12"} +{"sensors":[{"euler":{"heading":114.3119748975163,"pitch":132.79866774787274,"roll":22.64097619080767},"location":"Left Knee"},{"euler":{"heading":58.219614805853396,"pitch":98.06926609582804,"roll":17.319638186238418},"location":"Left Ankle"},{"euler":{"heading":69.74812433356492,"pitch":-9.32982592512904,"roll":-8.225159545412117},"location":"Right Ankle"},{"euler":{"heading":124.43720541206932,"pitch":-162.98773129640531,"roll":55.982121161809815},"location":"Right Hip"},{"euler":{"heading":69.96677202534498,"pitch":-107.47931958345522,"roll":6.772835629274204},"location":"Right Knee"},{"euler":{"heading":15.619732740449447,"pitch":-130.18109723944102,"roll":54.70952713791456},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.112"} +{"sensors":[{"euler":{"heading":103.37452740776467,"pitch":134.02505097308548,"roll":23.976878571726907},"location":"Left Knee"},{"euler":{"heading":55.71640332526806,"pitch":98.03108948624524,"roll":14.937674367614576},"location":"Left Ankle"},{"euler":{"heading":67.61706190020843,"pitch":-8.871843332616136,"roll":-9.052643590870906},"location":"Right Ankle"},{"euler":{"heading":124.7497348708624,"pitch":-163.5014581667648,"roll":56.72140904562883},"location":"Right Hip"},{"euler":{"heading":72.48259482281048,"pitch":-107.6063876251097,"roll":4.7393020663467835},"location":"Right Knee"},{"euler":{"heading":15.314009466404501,"pitch":-129.56298751549693,"roll":54.30107442412311},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.213"} +{"sensors":[{"euler":{"heading":94.6183246669882,"pitch":134.30379587577693,"roll":24.966690714554215},"location":"Left Knee"},{"euler":{"heading":54.58851299274126,"pitch":97.9967305376207,"roll":13.825156930853119},"location":"Left Ankle"},{"euler":{"heading":64.03660571018759,"pitch":-8.453408999354522,"roll":-10.034879231783815},"location":"Right Ankle"},{"euler":{"heading":125.87476138377616,"pitch":-163.12006235008832,"roll":56.75551814106595},"location":"Right Hip"},{"euler":{"heading":75.75308534052944,"pitch":-107.71449886259875,"roll":1.8653718597121047},"location":"Right Knee"},{"euler":{"heading":15.320108519764052,"pitch":-129.25043876394724,"roll":54.258466981710804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.313"} +{"sensors":[{"euler":{"heading":87.31899220028937,"pitch":133.89841628819923,"roll":25.813771643098793},"location":"Left Knee"},{"euler":{"heading":54.385911693467136,"pitch":98.29080748385864,"roll":13.192641237767807},"location":"Left Ankle"},{"euler":{"heading":61.06419513916883,"pitch":-8.43931809941907,"roll":-10.612641308605435},"location":"Right Ankle"},{"euler":{"heading":127.10603524539854,"pitch":-162.3893061150795,"roll":56.00496632695936},"location":"Right Hip"},{"euler":{"heading":78.0152768064765,"pitch":-107.46179897633887,"roll":-0.34616532625910557},"location":"Right Knee"},{"euler":{"heading":15.781847667787646,"pitch":-129.49414488755252,"roll":54.520120283539725},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.414"} +{"sensors":[{"euler":{"heading":81.12459298026043,"pitch":133.2148246593793,"roll":26.326144478788915},"location":"Left Knee"},{"euler":{"heading":54.709820524120424,"pitch":98.60547673547278,"roll":13.098377113991026},"location":"Left Ankle"},{"euler":{"heading":60.62652562525195,"pitch":-8.989136289477164,"roll":-10.582627177744891},"location":"Right Ankle"},{"euler":{"heading":128.3641817208587,"pitch":-161.66912550357156,"roll":54.773219694263425},"location":"Right Hip"},{"euler":{"heading":78.05124912582886,"pitch":-106.865619078705,"roll":-0.48654879363319503},"location":"Right Knee"},{"euler":{"heading":16.497412901008882,"pitch":-130.38848039879727,"roll":54.974358255185756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.515"} +{"sensors":[{"euler":{"heading":76.0871336822344,"pitch":132.34334219344137,"roll":26.387280030910027},"location":"Left Knee"},{"euler":{"heading":55.338838471708385,"pitch":98.84492906192551,"roll":13.401039402591923},"location":"Left Ankle"},{"euler":{"heading":62.70137306272676,"pitch":-9.771472660529449,"roll":-9.718114459970401},"location":"Right Ankle"},{"euler":{"heading":128.64651354877284,"pitch":-161.4772129532144,"roll":53.56464772483708},"location":"Right Hip"},{"euler":{"heading":75.97737421324598,"pitch":-105.9478071708345,"roll":1.4121060857301244},"location":"Right Knee"},{"euler":{"heading":17.253921610907994,"pitch":-131.62463235891755,"roll":55.545672429667185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.615"} +{"sensors":[{"euler":{"heading":72.10967031401096,"pitch":131.30275797409723,"roll":25.992302027819022},"location":"Left Knee"},{"euler":{"heading":56.411204624537554,"pitch":99.11043615573297,"roll":14.173435462332732},"location":"Left Ankle"},{"euler":{"heading":65.80623575645409,"pitch":-10.519325394476503,"roll":-8.415053013973361},"location":"Right Ankle"},{"euler":{"heading":127.96936219389556,"pitch":-161.56074165789295,"roll":52.858182952353374},"location":"Right Hip"},{"euler":{"heading":72.95463679192139,"pitch":-105.27177645375104,"roll":4.3646454771571115},"location":"Right Knee"},{"euler":{"heading":18.153529449817196,"pitch":-133.2184191230258,"roll":56.21610518670047},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.716"} +{"sensors":[{"euler":{"heading":69.36120328260986,"pitch":130.2037321766875,"roll":24.924321825037122},"location":"Left Knee"},{"euler":{"heading":58.1638341620838,"pitch":99.46189254015968,"roll":15.71859191609946},"location":"Left Ankle"},{"euler":{"heading":68.20061218080868,"pitch":-10.911142855028853,"roll":-7.5860477125760255},"location":"Right Ankle"},{"euler":{"heading":126.88492597450602,"pitch":-161.75466749210366,"roll":52.534864657118035},"location":"Right Hip"},{"euler":{"heading":70.25292311272925,"pitch":-105.19459880837594,"roll":6.753180929441401},"location":"Right Knee"},{"euler":{"heading":19.213176504835477,"pitch":-135.26532721072323,"roll":56.888244668030424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.816"} +{"sensors":[{"euler":{"heading":68.31883295434888,"pitch":129.16460895901875,"roll":22.84438964253341},"location":"Left Knee"},{"euler":{"heading":60.96620074587542,"pitch":100.22820328614372,"roll":18.827982724489516},"location":"Left Ankle"},{"euler":{"heading":69.61180096272781,"pitch":-10.882528569525968,"roll":-7.164942941318423},"location":"Right Ankle"},{"euler":{"heading":126.44018337705542,"pitch":-161.7104507428933,"roll":52.43762819140623},"location":"Right Hip"},{"euler":{"heading":68.25263080145633,"pitch":-105.56263892753836,"roll":8.25911283649726},"location":"Right Knee"},{"euler":{"heading":19.879358854351928,"pitch":-136.5200444896509,"roll":57.29317020122738},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.918"} +{"sensors":[{"euler":{"heading":68.73069965891399,"pitch":127.83564806311688,"roll":20.33495067828007},"location":"Left Knee"},{"euler":{"heading":64.41958067128787,"pitch":101.41788295752936,"roll":22.607684452040566},"location":"Left Ankle"},{"euler":{"heading":70.26937086645503,"pitch":-10.713025712573371,"roll":-7.1234486471865806},"location":"Right Ankle"},{"euler":{"heading":126.22741503934988,"pitch":-161.67690566860395,"roll":52.75011537226561},"location":"Right Hip"},{"euler":{"heading":67.5211177213107,"pitch":-106.03137503478453,"roll":8.951951552847536},"location":"Right Knee"},{"euler":{"heading":19.628922968916736,"pitch":-135.3867900406858,"roll":57.32635318110465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.18"} +{"sensors":[{"euler":{"heading":68.1638796930226,"pitch":127.64583325680519,"roll":18.757705610452064},"location":"Left Knee"},{"euler":{"heading":66.22762260415908,"pitch":100.84484466177642,"roll":24.671916006836508},"location":"Left Ankle"},{"euler":{"heading":70.67368377980954,"pitch":-10.435473141316033,"roll":-7.448603782467922},"location":"Right Ankle"},{"euler":{"heading":126.24842353541489,"pitch":-161.52796510174358,"roll":53.35635383503905},"location":"Right Hip"},{"euler":{"heading":67.40025594917964,"pitch":-106.57823753130609,"roll":9.119256397562783},"location":"Right Knee"},{"euler":{"heading":18.484780672025064,"pitch":-133.73561103661723,"roll":56.581217862994194},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.119"} +{"sensors":[{"euler":{"heading":63.69749172372034,"pitch":128.70624993112466,"roll":19.26318504940686},"location":"Left Knee"},{"euler":{"heading":64.82986034374318,"pitch":99.96661019559878,"roll":23.598474406152857},"location":"Left Ankle"},{"euler":{"heading":70.69381540182859,"pitch":-10.01067582718443,"roll":-7.69749340422113},"location":"Right Ankle"},{"euler":{"heading":126.25483118187341,"pitch":-161.56891859156923,"roll":54.09571845153515},"location":"Right Hip"},{"euler":{"heading":67.72273035426167,"pitch":-107.18291377817549,"roll":8.876080757806504},"location":"Right Knee"},{"euler":{"heading":17.211302604822556,"pitch":-131.96204993295552,"roll":55.69184607669477},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.220"} +{"sensors":[{"euler":{"heading":92.78399255134832,"pitch":130.7856249380122,"roll":20.993116544466176},"location":"Left Knee"},{"euler":{"heading":61.08437430936886,"pitch":98.8449491760389,"roll":20.26362696553757},"location":"Left Ankle"},{"euler":{"heading":70.15568386164573,"pitch":-9.390858244465987,"roll":-8.171494063799017},"location":"Right Ankle"},{"euler":{"heading":126.41684806368607,"pitch":-161.7057767324123,"roll":54.86114660638164},"location":"Right Hip"},{"euler":{"heading":68.72545731883551,"pitch":-107.76462240035794,"roll":8.075972682025853},"location":"Right Knee"},{"euler":{"heading":16.571422344340302,"pitch":-130.74084493965998,"roll":55.0476614690253},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.321"} +{"sensors":[{"euler":{"heading":83.8118432962135,"pitch":132.507062444211,"roll":22.55005489001956},"location":"Left Knee"},{"euler":{"heading":57.87593687843197,"pitch":98.53545425843501,"roll":17.34976426898381},"location":"Left Ankle"},{"euler":{"heading":68.79636547548115,"pitch":-9.095522420019389,"roll":-9.079344657419115},"location":"Right Ankle"},{"euler":{"heading":126.94391325731748,"pitch":-162.06644905917108,"roll":55.600031945743474},"location":"Right Hip"},{"euler":{"heading":70.72791158695196,"pitch":-107.95066016032214,"roll":6.468375413823268},"location":"Right Knee"},{"euler":{"heading":16.589280109906273,"pitch":-130.06051044569398,"roll":54.62414532212277},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.422"} +{"sensors":[{"euler":{"heading":76.82440896659215,"pitch":133.13135619978988,"roll":23.770049401017605},"location":"Left Knee"},{"euler":{"heading":56.219593190588775,"pitch":98.44440883259152,"roll":15.73978784208543},"location":"Left Ankle"},{"euler":{"heading":65.74172892793304,"pitch":-9.204720178017451,"roll":-10.008910191677204},"location":"Right Ankle"},{"euler":{"heading":128.11202193158573,"pitch":-161.92230415325398,"roll":55.80252875116913},"location":"Right Hip"},{"euler":{"heading":73.88637042825677,"pitch":-107.42434414428993,"roll":3.734037872440941},"location":"Right Knee"},{"euler":{"heading":16.424102098915647,"pitch":-129.5419594011246,"roll":54.43048078991049},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.522"} +{"sensors":[{"euler":{"heading":71.14196806993293,"pitch":133.0619705798109,"roll":24.780544460915845},"location":"Left Knee"},{"euler":{"heading":55.4976338715299,"pitch":98.64996794933236,"roll":14.690809057876889},"location":"Left Ankle"},{"euler":{"heading":62.37380603513974,"pitch":-9.152998160215708,"roll":-10.720519172509483},"location":"Right Ankle"},{"euler":{"heading":129.51956973842715,"pitch":-161.1675737379286,"roll":55.22852587605222},"location":"Right Hip"},{"euler":{"heading":76.8477333854311,"pitch":-107.24440972986095,"roll":1.041884085196847},"location":"Right Knee"},{"euler":{"heading":16.581691889024082,"pitch":-129.48151346101213,"roll":54.556182710919444},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.622"} +{"sensors":[{"euler":{"heading":66.36527126293964,"pitch":132.65577352182981,"roll":25.47124001482426},"location":"Left Knee"},{"euler":{"heading":55.37912048437691,"pitch":98.85997115439913,"roll":14.2029781520892},"location":"Left Ankle"},{"euler":{"heading":61.380175431625766,"pitch":-9.475198344194137,"roll":-10.848467255258537},"location":"Right Ankle"},{"euler":{"heading":130.88011276458445,"pitch":-160.45081636413573,"roll":54.055673288447},"location":"Right Hip"},{"euler":{"heading":77.61921004688799,"pitch":-106.80746875687487,"roll":0.1689456766771622},"location":"Right Knee"},{"euler":{"heading":16.942272700121674,"pitch":-129.99586211491092,"roll":54.8818144398275},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.724"} +{"sensors":[{"euler":{"heading":62.54749413664568,"pitch":132.01519616964686,"roll":25.767866013341834},"location":"Left Knee"},{"euler":{"heading":55.603708435939225,"pitch":99.00522403895923,"roll":14.11393033688028},"location":"Left Ankle"},{"euler":{"heading":62.71090788846319,"pitch":-10.215178509774724,"roll":-9.807370529732683},"location":"Right Ankle"},{"euler":{"heading":131.392101488126,"pitch":-160.1744847277222,"roll":52.7938559596023},"location":"Right Hip"},{"euler":{"heading":76.03853904219919,"pitch":-105.93922188118738,"roll":1.4708011090094462},"location":"Right Knee"},{"euler":{"heading":17.366795430109505,"pitch":-131.08377590341982,"roll":55.28113299584476},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.824"} +{"sensors":[{"euler":{"heading":59.74899472298111,"pitch":131.11367655268216,"roll":25.60982941200765},"location":"Left Knee"},{"euler":{"heading":56.3870875923453,"pitch":99.2797016350633,"roll":14.546287303192253},"location":"Left Ankle"},{"euler":{"heading":65.78356709961687,"pitch":-10.88741065879725,"roll":-8.426633476759415},"location":"Right Ankle"},{"euler":{"heading":130.86539133931342,"pitch":-160.23203625494997,"roll":52.02072036364207},"location":"Right Hip"},{"euler":{"heading":73.05343513797928,"pitch":-105.13279969306865,"roll":4.248720998108502},"location":"Right Knee"},{"euler":{"heading":17.855115887098556,"pitch":-132.34414831307785,"roll":55.81551969626028},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.924"} +{"sensors":[{"euler":{"heading":57.849095250683,"pitch":130.04605889741396,"roll":24.948846470806885},"location":"Left Knee"},{"euler":{"heading":57.860878833110775,"pitch":99.68923147155698,"roll":15.672908572873029},"location":"Left Ankle"},{"euler":{"heading":68.43021038965519,"pitch":-11.104919592917526,"roll":-7.458970129083474},"location":"Right Ankle"},{"euler":{"heading":129.40385220538207,"pitch":-160.64633262945497,"roll":51.59989832727786},"location":"Right Hip"},{"euler":{"heading":69.87934162418135,"pitch":-104.86326972376179,"roll":6.836348898297652},"location":"Right Knee"},{"euler":{"heading":18.688354298388703,"pitch":-134.11598348177006,"roll":56.452717726634255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.25"} +{"sensors":[{"euler":{"heading":57.2891857256147,"pitch":129.15395300767256,"roll":23.272711823726198},"location":"Left Knee"},{"euler":{"heading":59.7685409497997,"pitch":99.87655832440129,"roll":17.955617715585728},"location":"Left Ankle"},{"euler":{"heading":70.29343935068967,"pitch":-11.181927633625774,"roll":-6.838073116175126},"location":"Right Ankle"},{"euler":{"heading":128.29471698484386,"pitch":-160.96294936650946,"roll":51.658658494550075},"location":"Right Hip"},{"euler":{"heading":67.62890746176322,"pitch":-105.07694275138562,"roll":8.527714008467887},"location":"Right Knee"},{"euler":{"heading":19.500768868549834,"pitch":-135.69813513359304,"roll":56.96369595397083},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.125"} +{"sensors":[{"euler":{"heading":58.479017153053235,"pitch":128.1323077069053,"roll":20.851690641353578},"location":"Left Knee"},{"euler":{"heading":63.39793685481973,"pitch":101.04515249196116,"roll":21.547555944027156},"location":"Left Ankle"},{"euler":{"heading":71.35159541562071,"pitch":-10.982484870263196,"roll":-6.641765804557614},"location":"Right Ankle"},{"euler":{"heading":127.25899528635948,"pitch":-161.35415442985854,"roll":52.07404264509506},"location":"Right Hip"},{"euler":{"heading":66.4222667155869,"pitch":-105.56924847624705,"roll":9.424942607621098},"location":"Right Knee"},{"euler":{"heading":19.11944198169485,"pitch":-135.21582162023373,"roll":56.98607635857375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.225"} +{"sensors":[{"euler":{"heading":59.44986543774792,"pitch":127.68157693621477,"roll":18.98527157721822},"location":"Left Knee"},{"euler":{"heading":65.55189316933776,"pitch":100.85938724276505,"roll":24.03655034962444},"location":"Left Ankle"},{"euler":{"heading":71.87268587405863,"pitch":-10.627986383236877,"roll":-6.771339224101853},"location":"Right Ankle"},{"euler":{"heading":126.92684575772353,"pitch":-161.44998898687268,"roll":52.69788838058555},"location":"Right Hip"},{"euler":{"heading":66.08004004402821,"pitch":-106.23107362862235,"roll":9.68869834685899},"location":"Right Knee"},{"euler":{"heading":18.138747783525364,"pitch":-133.81923945821035,"roll":56.36871872271638},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.326"} +{"sensors":[{"euler":{"heading":57.14237889397313,"pitch":128.4009192425933,"roll":19.024244419496398},"location":"Left Knee"},{"euler":{"heading":64.75920385240399,"pitch":99.92969851848855,"roll":23.601645314661997},"location":"Left Ankle"},{"euler":{"heading":71.96666728665276,"pitch":-10.227687744913188,"roll":-7.006705301691667},"location":"Right Ankle"},{"euler":{"heading":126.94666118195119,"pitch":-161.4862400881854,"roll":53.428099542527},"location":"Right Hip"},{"euler":{"heading":66.33453603962539,"pitch":-106.84546626576012,"roll":9.48232851217309},"location":"Right Knee"},{"euler":{"heading":16.41862300517283,"pitch":-132.5373155123893,"roll":55.250596850444744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.426"} +{"sensors":[{"euler":{"heading":87.29064100457583,"pitch":130.31707731833396,"roll":20.615569977546762},"location":"Left Knee"},{"euler":{"heading":61.63328346716359,"pitch":98.81797866663969,"roll":20.816480783195797},"location":"Left Ankle"},{"euler":{"heading":71.55125055798749,"pitch":-9.75491897042187,"roll":-7.4622847715225005},"location":"Right Ankle"},{"euler":{"heading":127.02699506375608,"pitch":-161.7063660793669,"roll":54.1915395882743},"location":"Right Hip"},{"euler":{"heading":67.30733243566286,"pitch":-107.39216963918412,"roll":8.715345660955782},"location":"Right Knee"},{"euler":{"heading":15.495510704655548,"pitch":-131.3085839611504,"roll":54.47553716540027},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.526"} +{"sensors":[{"euler":{"heading":113.94282690411825,"pitch":132.40411958650057,"roll":22.39151297979209},"location":"Left Knee"},{"euler":{"heading":58.39495512044723,"pitch":98.16118079997571,"roll":17.697332704876217},"location":"Left Ankle"},{"euler":{"heading":70.40862550218874,"pitch":-9.248177073379685,"roll":-8.366056294370251},"location":"Right Ankle"},{"euler":{"heading":127.29929555738047,"pitch":-162.1107294714302,"roll":55.003635629446876},"location":"Right Hip"},{"euler":{"heading":69.18284919209657,"pitch":-107.74670267526571,"roll":7.225061094860203},"location":"Right Knee"},{"euler":{"heading":15.208459634189992,"pitch":-130.63397556503537,"roll":53.94673344886024},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.626"} +{"sensors":[{"euler":{"heading":103.34229421370642,"pitch":133.3449576278505,"roll":23.802361681812883},"location":"Left Knee"},{"euler":{"heading":56.91170960840251,"pitch":97.95131271997815,"roll":15.896349434388595},"location":"Left Ankle"},{"euler":{"heading":67.84901295196987,"pitch":-9.335859366041715,"roll":-9.241950664933226},"location":"Right Ankle"},{"euler":{"heading":128.10061600164244,"pitch":-162.1809065242872,"roll":55.52202206650219},"location":"Right Hip"},{"euler":{"heading":72.27706427288692,"pitch":-107.45953240773913,"roll":4.646304985374183},"location":"Right Knee"},{"euler":{"heading":15.131363670770993,"pitch":-129.99557800853185,"roll":53.758310103974225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.727"} +{"sensors":[{"euler":{"heading":94.53931479233579,"pitch":133.55421186506544,"roll":24.847125513631596},"location":"Left Knee"},{"euler":{"heading":56.05178864756226,"pitch":97.75618144798034,"roll":14.862964490949736},"location":"Left Ankle"},{"euler":{"heading":64.17661165677288,"pitch":-9.308523429437544,"roll":-10.149005598439905},"location":"Right Ankle"},{"euler":{"heading":129.4968044014782,"pitch":-161.4190658718585,"roll":55.23856985985198},"location":"Right Hip"},{"euler":{"heading":75.63060784559822,"pitch":-107.36357916696522,"roll":1.6629244868367645},"location":"Right Knee"},{"euler":{"heading":15.436977303693894,"pitch":-129.96477020767867,"roll":53.857479093576806},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.828"} +{"sensors":[{"euler":{"heading":86.99163331310221,"pitch":133.2987906785589,"roll":25.631162962268437},"location":"Left Knee"},{"euler":{"heading":56.15285978280603,"pitch":97.66806330318231,"roll":14.520418041854763},"location":"Left Ankle"},{"euler":{"heading":62.10270049109559,"pitch":-9.40892108649379,"roll":-10.602855038595914},"location":"Right Ankle"},{"euler":{"heading":130.92212396133039,"pitch":-160.55840928467265,"roll":54.33971287386678},"location":"Right Hip"},{"euler":{"heading":77.1737970610384,"pitch":-107.0647212502687,"roll":0.07163203815308816},"location":"Right Knee"},{"euler":{"heading":16.043279573324504,"pitch":-130.4620431869108,"roll":54.196731184219125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.929"} +{"sensors":[{"euler":{"heading":80.51746998179199,"pitch":132.806411610703,"roll":26.036796666041592},"location":"Left Knee"},{"euler":{"heading":56.40632380452543,"pitch":97.47625697286408,"roll":14.549626237669287},"location":"Left Ankle"},{"euler":{"heading":62.62368044198603,"pitch":-10.02427897784441,"roll":-10.167569534736323},"location":"Right Ankle"},{"euler":{"heading":131.89241156519734,"pitch":-160.0025683562054,"roll":53.1807415864801},"location":"Right Hip"},{"euler":{"heading":76.40641735493456,"pitch":-106.31449912524184,"roll":0.6207188343377794},"location":"Right Knee"},{"euler":{"heading":16.732701615992056,"pitch":-131.5470888682197,"roll":54.664558065797216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.30"} +{"sensors":[{"euler":{"heading":75.3219729836128,"pitch":132.1007704496327,"roll":25.939366999437436},"location":"Left Knee"},{"euler":{"heading":57.03444142407288,"pitch":97.34738127557767,"roll":15.007163613902359},"location":"Left Ankle"},{"euler":{"heading":65.03631239778743,"pitch":-10.72185108005997,"roll":-9.057062581262691},"location":"Right Ankle"},{"euler":{"heading":131.7094204086776,"pitch":-159.93981152058484,"roll":52.281417427832096},"location":"Right Hip"},{"euler":{"heading":73.9595256194411,"pitch":-105.46429921271766,"roll":2.9461469509040015},"location":"Right Knee"},{"euler":{"heading":17.58443145439285,"pitch":-132.91112998139775,"roll":55.298102259217494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.131"} +{"sensors":[{"euler":{"heading":71.32727568525151,"pitch":131.16569340466944,"roll":25.38918029949369},"location":"Left Knee"},{"euler":{"heading":58.4372472816656,"pitch":97.41889314801992,"roll":16.168947252512123},"location":"Left Ankle"},{"euler":{"heading":68.23893115800868,"pitch":-11.318415972053973,"roll":-7.907606323136422},"location":"Right Ankle"},{"euler":{"heading":130.60722836780985,"pitch":-160.20833036852636,"roll":51.85952568504889},"location":"Right Hip"},{"euler":{"heading":70.85107305749698,"pitch":-104.9741192914459,"roll":5.9390322558136015},"location":"Right Knee"},{"euler":{"heading":18.500988308953563,"pitch":-134.57001698325797,"roll":55.987042033295744},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.231"} +{"sensors":[{"euler":{"heading":68.77579811672635,"pitch":130.2741240642025,"roll":24.019012269544323},"location":"Left Knee"},{"euler":{"heading":60.481022553499045,"pitch":97.52075383321792,"roll":18.41455252726091},"location":"Left Ankle"},{"euler":{"heading":70.19003804220782,"pitch":-11.605324374848575,"roll":-7.27309569082278},"location":"Right Ankle"},{"euler":{"heading":129.43400553102887,"pitch":-160.53124733167374,"roll":51.592323116544},"location":"Right Hip"},{"euler":{"heading":68.36596575174728,"pitch":-105.07045736230131,"roll":8.088879030232242},"location":"Right Knee"},{"euler":{"heading":19.45713947805821,"pitch":-136.3817652849322,"roll":56.65708782996617},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.332"} +{"sensors":[{"euler":{"heading":68.27946830505371,"pitch":129.19671165778226,"roll":21.74211104258989},"location":"Left Knee"},{"euler":{"heading":63.976670298149145,"pitch":98.69992844989613,"roll":21.879347274534823},"location":"Left Ankle"},{"euler":{"heading":71.27728423798703,"pitch":-11.888541937363717,"roll":-7.014536121740502},"location":"Right Ankle"},{"euler":{"heading":128.71560497792598,"pitch":-160.79062259850636,"roll":51.7830908048896},"location":"Right Hip"},{"euler":{"heading":67.25436917657255,"pitch":-105.29466162607119,"roll":9.204991127209018},"location":"Right Knee"},{"euler":{"heading":19.286425530252387,"pitch":-136.32483875643896,"roll":56.81012904696956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.432"} +{"sensors":[{"euler":{"heading":68.73277147454834,"pitch":128.33329049200404,"roll":19.436649938330902},"location":"Left Knee"},{"euler":{"heading":66.82275326833424,"pitch":99.19868560490653,"roll":24.916412547081343},"location":"Left Ankle"},{"euler":{"heading":72.07455581418833,"pitch":-12.093437743627346,"roll":-6.988082509566452},"location":"Right Ankle"},{"euler":{"heading":128.2502944801334,"pitch":-160.9990603386557,"roll":52.30478172440065},"location":"Right Hip"},{"euler":{"heading":66.96643225891529,"pitch":-105.55269546346406,"roll":9.603242014488115},"location":"Right Knee"},{"euler":{"heading":18.51403297722715,"pitch":-134.83610488079506,"roll":56.4041161422726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.533"} +{"sensors":[{"euler":{"heading":67.1094943270935,"pitch":128.48121144280364,"roll":18.67423494449781},"location":"Left Knee"},{"euler":{"heading":66.95297794150082,"pitch":98.62256704441587,"roll":25.393521292373208},"location":"Left Ankle"},{"euler":{"heading":72.3983502327695,"pitch":-12.177843969264611,"roll":-7.1767742586098064},"location":"Right Ankle"},{"euler":{"heading":128.21901503212004,"pitch":-161.03040430479012,"roll":52.93680355196058},"location":"Right Hip"},{"euler":{"heading":67.25728903302377,"pitch":-105.80992591711765,"roll":9.524167813039304},"location":"Right Knee"},{"euler":{"heading":17.318879679504434,"pitch":-133.07124439271556,"roll":55.52620452804534},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.634"} +{"sensors":[{"euler":{"heading":61.254794894384155,"pitch":129.9080902985233,"roll":19.91306145004803},"location":"Left Knee"},{"euler":{"heading":64.13268014735074,"pitch":97.74781033997428,"roll":23.07916916313589},"location":"Left Ankle"},{"euler":{"heading":72.22101520949255,"pitch":-11.92255957233815,"roll":-7.609096832748826},"location":"Right Ankle"},{"euler":{"heading":128.48461352890803,"pitch":-161.0211138743111,"roll":53.55562319676452},"location":"Right Hip"},{"euler":{"heading":67.9753101297214,"pitch":-106.22893332540589,"roll":9.003001031735375},"location":"Right Knee"},{"euler":{"heading":16.28699171155399,"pitch":-131.389119953444,"roll":54.70483407524081},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.735"} +{"sensors":[{"euler":{"heading":90.26056540494574,"pitch":132.11103126867096,"roll":21.759255305043226},"location":"Left Knee"},{"euler":{"heading":60.20691213261566,"pitch":96.89177930597685,"roll":19.408752246822303},"location":"Left Ankle"},{"euler":{"heading":71.4364136885433,"pitch":-11.461553615104334,"roll":-8.316937149473944},"location":"Right Ankle"},{"euler":{"heading":128.82365217601722,"pitch":-161.11900248688,"roll":54.26881087708807},"location":"Right Hip"},{"euler":{"heading":69.42152911674926,"pitch":-106.58728999286531,"roll":7.8714509285618375},"location":"Right Knee"},{"euler":{"heading":15.920792540398594,"pitch":-130.28770795809962,"roll":54.146850667716734},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.837"} +{"sensors":[{"euler":{"heading":81.52200886445117,"pitch":133.41867814180387,"roll":23.389579774538902},"location":"Left Knee"},{"euler":{"heading":57.6862209193541,"pitch":96.94635137537918,"roll":16.811627022140073},"location":"Left Ankle"},{"euler":{"heading":69.75527231968897,"pitch":-11.102898253593901,"roll":-9.297743434526549},"location":"Right Ankle"},{"euler":{"heading":129.27253695841551,"pitch":-161.600852238192,"roll":55.04817978937926},"location":"Right Hip"},{"euler":{"heading":71.77937620507433,"pitch":-106.56606099357879,"roll":5.934305835705653},"location":"Right Knee"},{"euler":{"heading":16.122463286358734,"pitch":-129.65893716228965,"roll":53.85716560094506},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.938"} +{"sensors":[{"euler":{"heading":74.84480797800605,"pitch":133.75181032762347,"roll":24.61312179708501},"location":"Left Knee"},{"euler":{"heading":56.59259882741869,"pitch":97.12046623784127,"roll":15.524214319926067},"location":"Left Ankle"},{"euler":{"heading":66.45474508772007,"pitch":-10.936358428234511,"roll":-10.399219091073894},"location":"Right Ankle"},{"euler":{"heading":130.23903326257397,"pitch":-161.6220170143728,"roll":55.32461181044134},"location":"Right Hip"},{"euler":{"heading":74.96393858456689,"pitch":-106.15945489422091,"roll":3.0158752521350882},"location":"Right Knee"},{"euler":{"heading":16.26021695772286,"pitch":-129.21804344606068,"roll":53.88394904085055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.39"} +{"sensors":[{"euler":{"heading":69.64157718020545,"pitch":133.32662929486114,"roll":25.551809617376513},"location":"Left Knee"},{"euler":{"heading":56.41458894467682,"pitch":97.54591961405715,"roll":14.78429288793346},"location":"Left Ankle"},{"euler":{"heading":63.04677057894806,"pitch":-10.986472585411061,"roll":-11.153047181966503},"location":"Right Ankle"},{"euler":{"heading":131.65262993631657,"pitch":-161.0598153129355,"roll":54.74840062939721},"location":"Right Hip"},{"euler":{"heading":77.64879472611021,"pitch":-105.61225940479883,"roll":0.4080377269215796},"location":"Right Knee"},{"euler":{"heading":16.965445261950574,"pitch":-129.27748910145462,"roll":54.2330541367655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.140"} +{"sensors":[{"euler":{"heading":65.2149194621849,"pitch":132.73771636537504,"roll":26.04037865563886},"location":"Left Knee"},{"euler":{"heading":56.94188005020914,"pitch":97.83507765265145,"roll":14.899613599140116},"location":"Left Ankle"},{"euler":{"heading":61.767093521053255,"pitch":-11.194075326869955,"roll":-11.393992463769852},"location":"Right Ankle"},{"euler":{"heading":133.1998669426849,"pitch":-160.32883378164198,"roll":53.61731056645749},"location":"Right Hip"},{"euler":{"heading":78.20266525349919,"pitch":-105.03853346431895,"roll":-0.26401604577057847},"location":"Right Knee"},{"euler":{"heading":17.762650735755518,"pitch":-129.96849019130917,"roll":54.734748723088956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.241"} +{"sensors":[{"euler":{"heading":61.67467751596641,"pitch":131.99519472883753,"roll":26.092590790074976},"location":"Left Knee"},{"euler":{"heading":57.78519204518823,"pitch":98.05156988738631,"roll":15.372152239226105},"location":"Left Ankle"},{"euler":{"heading":62.87163416894793,"pitch":-11.60591779418296,"roll":-10.610843217392866},"location":"Right Ankle"},{"euler":{"heading":133.83613024841642,"pitch":-159.92720040347777,"roll":52.411829509811746},"location":"Right Hip"},{"euler":{"heading":76.25739872814927,"pitch":-104.23468011788705,"roll":1.2186355588064794},"location":"Right Knee"},{"euler":{"heading":18.630135662179967,"pitch":-131.18414117217824,"roll":55.37377385078007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.342"} +{"sensors":[{"euler":{"heading":59.057209764369766,"pitch":130.98317525595377,"roll":25.758331711067477},"location":"Left Knee"},{"euler":{"heading":59.21917284066941,"pitch":98.37141289864768,"roll":16.378687015303495},"location":"Left Ankle"},{"euler":{"heading":65.99697075205313,"pitch":-12.095326014764664,"roll":-9.393508895653579},"location":"Right Ankle"},{"euler":{"heading":133.25251722357478,"pitch":-161.49073036313,"roll":51.70814655883057},"location":"Right Hip"},{"euler":{"heading":72.84415885533436,"pitch":-103.56746210609836,"roll":4.315522002925832},"location":"Right Knee"},{"euler":{"heading":19.61712209596197,"pitch":-132.6907270549604,"roll":56.211396465702066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.444"} +{"sensors":[{"euler":{"heading":57.46398878793279,"pitch":129.89735773035838,"roll":24.78874853996073},"location":"Left Knee"},{"euler":{"heading":61.447255556602464,"pitch":98.78427160878292,"roll":18.278318313773145},"location":"Left Ankle"},{"euler":{"heading":68.67852367684782,"pitch":-12.154543413288199,"roll":-8.52915800608822},"location":"Right Ankle"},{"euler":{"heading":132.25851550121732,"pitch":-161.42915732681703,"roll":51.449831902947516},"location":"Right Hip"},{"euler":{"heading":69.25349296980092,"pitch":-103.64821589548853,"roll":7.121469802633249},"location":"Right Knee"},{"euler":{"heading":20.674159886365775,"pitch":-134.53415434946436,"roll":57.03400681913186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.546"} +{"sensors":[{"euler":{"heading":57.36758990913951,"pitch":129.00137195732253,"roll":22.822373685964656},"location":"Left Knee"},{"euler":{"heading":64.54003000094222,"pitch":99.73084444790463,"roll":21.706736482395833},"location":"Left Ankle"},{"euler":{"heading":70.07942130916304,"pitch":-12.24533907195938,"roll":-8.176242205479397},"location":"Right Ankle"},{"euler":{"heading":131.58891395109558,"pitch":-161.39874159413534,"roll":51.51109871265277},"location":"Right Hip"},{"euler":{"heading":66.97814367282083,"pitch":-103.87714430593968,"roll":8.890572822369926},"location":"Right Knee"},{"euler":{"heading":21.3504938977292,"pitch":-135.70573891451792,"roll":57.57435613721867},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.648"} +{"sensors":[{"euler":{"heading":58.824580918225564,"pitch":127.68873476159028,"roll":20.40263631736819},"location":"Left Knee"},{"euler":{"heading":67.68602700084801,"pitch":100.73276000311418,"roll":25.17356283415625},"location":"Left Ankle"},{"euler":{"heading":70.80897917824673,"pitch":-12.058305164763443,"roll":-8.152367984931457},"location":"Right Ankle"},{"euler":{"heading":130.68002255598603,"pitch":-161.52761743472183,"roll":52.00998884138749},"location":"Right Hip"},{"euler":{"heading":65.73657930553875,"pitch":-104.47067987534572,"roll":9.876515540132933},"location":"Right Knee"},{"euler":{"heading":21.22794450795628,"pitch":-134.39766502306614,"roll":57.823170523496806},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.748"} +{"sensors":[{"euler":{"heading":59.310872826403006,"pitch":127.56361128543125,"roll":18.874872685631374},"location":"Left Knee"},{"euler":{"heading":69.18617430076321,"pitch":100.38448400280276,"roll":26.668706550740627},"location":"Left Ankle"},{"euler":{"heading":71.09683126042206,"pitch":-11.6712246482871,"roll":-8.337131186438311},"location":"Right Ankle"},{"euler":{"heading":130.17452030038743,"pitch":-161.46860569124965,"roll":52.70273995724874},"location":"Right Hip"},{"euler":{"heading":65.27542137498489,"pitch":-105.21111188781116,"roll":10.26386398611964},"location":"Right Knee"},{"euler":{"heading":20.19265005716065,"pitch":-132.53914852075954,"roll":57.24710347114713},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.849"} +{"sensors":[{"euler":{"heading":56.03603554376271,"pitch":128.69475015688812,"roll":19.368635417068237},"location":"Left Knee"},{"euler":{"heading":67.23630687068689,"pitch":99.59603560252249,"roll":25.145585895666564},"location":"Left Ankle"},{"euler":{"heading":71.04339813437986,"pitch":-11.104102183458389,"roll":-8.79091806779448},"location":"Right Ankle"},{"euler":{"heading":130.01956827034869,"pitch":-161.3592451221247,"roll":53.43871596152387},"location":"Right Hip"},{"euler":{"heading":65.3978792374864,"pitch":-105.92750069903003,"roll":10.162477587507677},"location":"Right Knee"},{"euler":{"heading":19.135885051444586,"pitch":-130.7477336686836,"roll":56.45364312403242},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.949"} +{"sensors":[{"euler":{"heading":86.25743198938645,"pitch":130.81902514119932,"roll":21.08177187536141},"location":"Left Knee"},{"euler":{"heading":63.1626761836182,"pitch":98.53018204227024,"roll":21.54352730609991},"location":"Left Ankle"},{"euler":{"heading":70.48905832094188,"pitch":-10.48119196511255,"roll":-9.349326261015033},"location":"Right Ankle"},{"euler":{"heading":130.17386144331383,"pitch":-161.29207060991223,"roll":54.17609436537148},"location":"Right Hip"},{"euler":{"heading":66.31434131373777,"pitch":-106.49725062912702,"roll":9.44622982875691},"location":"Right Knee"},{"euler":{"heading":18.578546546300128,"pitch":-129.51046030181524,"roll":55.83327881162918},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.49"} +{"sensors":[{"euler":{"heading":113.06918879044781,"pitch":132.8121226270794,"roll":22.779844687825275},"location":"Left Knee"},{"euler":{"heading":59.52765856525638,"pitch":98.04591383804322,"roll":18.22667457548992},"location":"Left Ankle"},{"euler":{"heading":69.0526524888477,"pitch":-9.801822768601296,"roll":-10.25189363491353},"location":"Right Ankle"},{"euler":{"heading":130.50647529898245,"pitch":-161.425363548921,"roll":54.914734928834335},"location":"Right Hip"},{"euler":{"heading":68.170407182364,"pitch":-106.84752556621433,"roll":7.97660684588122},"location":"Right Knee"},{"euler":{"heading":18.501941891670114,"pitch":-128.80941427163373,"roll":55.39370093046627},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.151"} +{"sensors":[{"euler":{"heading":102.91851991140304,"pitch":133.62466036437144,"roll":24.108110219042747},"location":"Left Knee"},{"euler":{"heading":57.97489270873074,"pitch":97.9850724542389,"roll":16.73525711794093},"location":"Left Ankle"},{"euler":{"heading":66.47238723996293,"pitch":-9.709140491741167,"roll":-11.139204271422177},"location":"Right Ankle"},{"euler":{"heading":131.09957776908422,"pitch":-161.67657719402894,"roll":55.5357614359509},"location":"Right Hip"},{"euler":{"heading":71.1471164641276,"pitch":-106.6190230095929,"roll":5.566446161293098},"location":"Right Knee"},{"euler":{"heading":18.476747702503104,"pitch":-128.24722284447037,"roll":55.21058083741964},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.252"} +{"sensors":[{"euler":{"heading":94.67666792026273,"pitch":133.6246943279343,"roll":25.109799197138475},"location":"Left Knee"},{"euler":{"heading":57.02115343785767,"pitch":98.20531520881501,"roll":15.567981406146837},"location":"Left Ankle"},{"euler":{"heading":62.80639851596664,"pitch":-9.53197644256705,"roll":-12.14403384427996},"location":"Right Ankle"},{"euler":{"heading":132.2646199921758,"pitch":-161.12766947462606,"roll":55.39468529235582},"location":"Right Hip"},{"euler":{"heading":74.30740481771485,"pitch":-106.56337070863361,"roll":2.716051545163788},"location":"Right Knee"},{"euler":{"heading":18.741572932252794,"pitch":-128.02875056002333,"roll":55.32702275367768},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.353"} +{"sensors":[{"euler":{"heading":87.60900112823647,"pitch":133.15597489514087,"roll":25.91756927742463},"location":"Left Knee"},{"euler":{"heading":56.85028809407191,"pitch":98.56603368793351,"roll":14.923683265532153},"location":"Left Ankle"},{"euler":{"heading":60.59450866436998,"pitch":-9.941278798310346,"roll":-12.567130459851963},"location":"Right Ankle"},{"euler":{"heading":133.7069079929582,"pitch":-160.33365252716345,"roll":54.49896676312024},"location":"Right Hip"},{"euler":{"heading":75.87041433594338,"pitch":-105.94453363777026,"roll":1.0631963906474091},"location":"Right Knee"},{"euler":{"heading":19.29866563902752,"pitch":-128.58212550402098,"roll":55.650570478309916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.454"} +{"sensors":[{"euler":{"heading":81.87310101541283,"pitch":132.19662740562677,"roll":26.469562349682167},"location":"Left Knee"},{"euler":{"heading":57.484009284664715,"pitch":99.13443031914017,"roll":14.912564938978939},"location":"Left Ankle"},{"euler":{"heading":61.216307797932984,"pitch":-10.740900918479312,"roll":-12.197917413866767},"location":"Right Ankle"},{"euler":{"heading":134.4674671936624,"pitch":-159.8377872744471,"roll":53.31782008680821},"location":"Right Hip"},{"euler":{"heading":74.97087290234904,"pitch":-105.01883027399325,"roll":1.6756267515826684},"location":"Right Knee"},{"euler":{"heading":20.062549075124767,"pitch":-129.67391295361887,"roll":56.116763430478926},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.555"} +{"sensors":[{"euler":{"heading":77.31079091387154,"pitch":130.9582146650641,"roll":26.560106114713953},"location":"Left Knee"},{"euler":{"heading":58.498108356198244,"pitch":99.76473728722615,"roll":15.321308445081046},"location":"Left Ankle"},{"euler":{"heading":63.882177018139686,"pitch":-11.404310826631383,"roll":-10.959375672480089},"location":"Right Ankle"},{"euler":{"heading":133.88322047429617,"pitch":-159.8915085470024,"roll":52.42353807812739},"location":"Right Hip"},{"euler":{"heading":72.26753561211414,"pitch":-104.26694724659393,"roll":4.239314076424401},"location":"Right Knee"},{"euler":{"heading":20.77504416761229,"pitch":-130.931521658257,"roll":56.73633708743104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.656"} +{"sensors":[{"euler":{"heading":73.76096182248439,"pitch":129.6248931985577,"roll":26.09784550324256},"location":"Left Knee"},{"euler":{"heading":59.967047520578426,"pitch":100.41951355850355,"roll":16.295427600572943},"location":"Left Ankle"},{"euler":{"heading":67.08770931632571,"pitch":-11.995129743968246,"roll":-9.61968810523208},"location":"Right Ankle"},{"euler":{"heading":132.09489842686656,"pitch":-160.44610769230215,"roll":51.98118427031466},"location":"Right Hip"},{"euler":{"heading":69.02203205090274,"pitch":-103.71525252193454,"roll":7.277882668781961},"location":"Right Knee"},{"euler":{"heading":21.60378975085106,"pitch":-132.5696194924313,"roll":57.48770337868794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.757"} +{"sensors":[{"euler":{"heading":71.47236564023596,"pitch":128.37490387870193,"roll":24.794310952918302},"location":"Left Knee"},{"euler":{"heading":62.14534276852058,"pitch":100.95881220265319,"roll":18.31588484051565},"location":"Left Ankle"},{"euler":{"heading":69.27268838469314,"pitch":-12.258116769571421,"roll":-8.870219294708873},"location":"Right Ankle"},{"euler":{"heading":130.7354085841799,"pitch":-160.84524692307193,"roll":51.801815843283194},"location":"Right Hip"},{"euler":{"heading":66.56357884581246,"pitch":-103.8562272697411,"roll":9.343844401903766},"location":"Right Knee"},{"euler":{"heading":22.637160775765956,"pitch":-134.35015754318817,"roll":58.28268304081915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.859"} +{"sensors":[{"euler":{"heading":70.86887907621237,"pitch":127.57491349083173,"roll":22.414879857626474},"location":"Left Knee"},{"euler":{"heading":65.50580849166852,"pitch":101.91918098238789,"roll":21.815546356464086},"location":"Left Ankle"},{"euler":{"heading":70.67666954622383,"pitch":-12.43230509261428,"roll":-8.470697365237987},"location":"Right Ankle"},{"euler":{"heading":129.71186772576192,"pitch":-161.30447223076473,"roll":52.02788425895488},"location":"Right Hip"},{"euler":{"heading":65.2634709612312,"pitch":-104.289354542767,"roll":10.52195996171339},"location":"Right Knee"},{"euler":{"heading":22.17344469818936,"pitch":-134.19639178886936,"roll":58.41066473673723},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.959"} +{"sensors":[{"euler":{"heading":70.87574116859113,"pitch":126.86742214174856,"roll":20.217141871863827},"location":"Left Knee"},{"euler":{"heading":68.14897764250166,"pitch":101.7710128841491,"roll":24.77149172081768},"location":"Left Ankle"},{"euler":{"heading":71.64650259160145,"pitch":-12.532824583352852,"roll":-8.348627628714189},"location":"Right Ankle"},{"euler":{"heading":128.92193095318572,"pitch":-161.69902500768828,"roll":52.587595833059396},"location":"Right Hip"},{"euler":{"heading":64.6683738651081,"pitch":-104.80416908849031,"roll":11.082263965542053},"location":"Right Knee"},{"euler":{"heading":21.068600228370425,"pitch":-132.52675260998242,"roll":57.957098263063514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.60"} +{"sensors":[{"euler":{"heading":68.79441705173203,"pitch":127.2431799275737,"roll":19.601677684677444},"location":"Left Knee"},{"euler":{"heading":67.8778298782515,"pitch":100.9376615957342,"roll":25.019342548735914},"location":"Left Ankle"},{"euler":{"heading":72.22560233244131,"pitch":-12.285792125017567,"roll":-8.54501486584277},"location":"Right Ankle"},{"euler":{"heading":128.63598785786715,"pitch":-161.84787250691946,"roll":53.28508624975346},"location":"Right Hip"},{"euler":{"heading":63.82653647859728,"pitch":-105.43625217964129,"roll":11.674037568987849},"location":"Right Knee"},{"euler":{"heading":19.76799020553338,"pitch":-130.7928273489842,"roll":57.02388843675716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.161"} +{"sensors":[{"euler":{"heading":62.79622534655883,"pitch":129.01261193481633,"roll":20.947759916209698},"location":"Left Knee"},{"euler":{"heading":64.64004689042636,"pitch":99.84389543616078,"roll":22.479908293862323},"location":"Left Ankle"},{"euler":{"heading":72.20929209919719,"pitch":-11.763462912515811,"roll":-8.790513379258494},"location":"Right Ankle"},{"euler":{"heading":128.55363907208044,"pitch":-161.9880852562275,"roll":54.00657762477812},"location":"Right Hip"},{"euler":{"heading":63.55013283073756,"pitch":-106.11137696167717,"roll":11.681633812089066},"location":"Right Knee"},{"euler":{"heading":18.609941184980045,"pitch":-129.30104461408578,"roll":56.18399959308145},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.261"} +{"sensors":[{"euler":{"heading":92.01660281190294,"pitch":131.2238507413347,"roll":22.659233924588726},"location":"Left Knee"},{"euler":{"heading":60.69479220138373,"pitch":98.9657558925447,"roll":18.95066746447609},"location":"Left Ankle"},{"euler":{"heading":71.44461288927747,"pitch":-10.99336662126423,"roll":-9.517712041332643},"location":"Right Ankle"},{"euler":{"heading":128.6420251648724,"pitch":-162.21427673060475,"roll":54.793419862300304},"location":"Right Hip"},{"euler":{"heading":64.22636954766381,"pitch":-106.66273926550946,"roll":10.95097043088016},"location":"Right Knee"},{"euler":{"heading":18.08644706648204,"pitch":-128.4396901526772,"roll":55.55934963377331},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.362"} +{"sensors":[{"euler":{"heading":83.80244253071265,"pitch":132.35146566720124,"roll":24.01206053212985},"location":"Left Knee"},{"euler":{"heading":58.43781298124536,"pitch":98.65668030329024,"roll":16.76810071802848},"location":"Left Ankle"},{"euler":{"heading":69.52515160034972,"pitch":-10.644029959137807,"roll":-10.40969083719938},"location":"Right Ankle"},{"euler":{"heading":129.08407264838516,"pitch":-162.47409905754427,"roll":55.451577876070274},"location":"Right Hip"},{"euler":{"heading":66.29748259289742,"pitch":-106.67146533895851,"roll":9.137123387792144},"location":"Right Knee"},{"euler":{"heading":17.727802359833838,"pitch":-127.86447113740948,"roll":55.128414670395976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.462"} +{"sensors":[{"euler":{"heading":77.19719827764139,"pitch":132.6913191004811,"roll":24.97960447891687},"location":"Left Knee"},{"euler":{"heading":57.131531683120826,"pitch":98.44726227296123,"roll":15.478790646225633},"location":"Left Ankle"},{"euler":{"heading":65.92263644031475,"pitch":-10.529626963224025,"roll":-11.374971753479441},"location":"Right Ankle"},{"euler":{"heading":130.35066538354664,"pitch":-162.03918915178986,"roll":55.26267008846325},"location":"Right Hip"},{"euler":{"heading":68.98648433360768,"pitch":-106.36681880506266,"roll":6.56091104901293},"location":"Right Knee"},{"euler":{"heading":17.661272123850456,"pitch":-127.64052402366853,"roll":55.12182320335638},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.563"} +{"sensors":[{"euler":{"heading":71.40872844987726,"pitch":132.590937190433,"roll":25.744144031025183},"location":"Left Knee"},{"euler":{"heading":57.074628514808744,"pitch":98.3525360456651,"roll":14.99966158160307},"location":"Left Ankle"},{"euler":{"heading":63.34912279628327,"pitch":-10.576664266901624,"roll":-11.899974578131497},"location":"Right Ankle"},{"euler":{"heading":131.74684884519198,"pitch":-161.2290202366109,"roll":54.42390307961693},"location":"Right Hip"},{"euler":{"heading":70.33783590024692,"pitch":-106.00513692455641,"roll":5.098569944111636},"location":"Right Knee"},{"euler":{"heading":17.93889491146541,"pitch":-128.25147162130168,"roll":55.39089088302074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.667"} +{"sensors":[{"euler":{"heading":66.56160560488954,"pitch":132.2318434713897,"roll":26.150979627922663},"location":"Left Knee"},{"euler":{"heading":57.323415663327864,"pitch":98.1735324410986,"roll":15.037195423442762},"location":"Left Ankle"},{"euler":{"heading":63.38921051665494,"pitch":-11.056497840211462,"roll":-11.653727120318347},"location":"Right Ankle"},{"euler":{"heading":132.69716396067278,"pitch":-160.63111821294981,"roll":53.35651277165523},"location":"Right Hip"},{"euler":{"heading":69.55405231022223,"pitch":-105.38587323210078,"roll":5.557462949700473},"location":"Right Knee"},{"euler":{"heading":18.34500542031887,"pitch":-129.33882445917152,"roll":55.80180179471867},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.768"} +{"sensors":[{"euler":{"heading":63.01169504440059,"pitch":131.44615912425076,"roll":26.179631665130398},"location":"Left Knee"},{"euler":{"heading":58.016074096995084,"pitch":98.21242919698875,"roll":15.502225881098486},"location":"Left Ankle"},{"euler":{"heading":65.87528946498945,"pitch":-11.494598056190316,"roll":-10.657104408286513},"location":"Right Ankle"},{"euler":{"heading":132.4836975646055,"pitch":-160.56175639165485,"roll":52.477111494489705},"location":"Right Hip"},{"euler":{"heading":66.83614707920002,"pitch":-104.5535359088907,"roll":7.920466654730426},"location":"Right Knee"},{"euler":{"heading":19.029254878286984,"pitch":-130.77994201325436,"roll":56.3716216152468},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.869"} +{"sensors":[{"euler":{"heading":60.541775539960526,"pitch":130.45154321182568,"roll":25.680418498617357},"location":"Left Knee"},{"euler":{"heading":59.426966687295575,"pitch":98.45993627728987,"roll":16.614503292988637},"location":"Left Ankle"},{"euler":{"heading":68.9377605184905,"pitch":-12.101388250571285,"roll":-9.316393967457861},"location":"Right Ankle"},{"euler":{"heading":131.44782780814495,"pitch":-160.79308075248937,"roll":52.01690034504074},"location":"Right Hip"},{"euler":{"heading":63.427532371280016,"pitch":-103.86693231800163,"roll":11.159669989257385},"location":"Right Knee"},{"euler":{"heading":19.88257939045829,"pitch":-132.58319781192893,"roll":57.109459453722124},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.970"} +{"sensors":[{"euler":{"heading":59.25009798596448,"pitch":129.40638889064311,"roll":24.46862664875562},"location":"Left Knee"},{"euler":{"heading":61.621770018566025,"pitch":98.87644264956089,"roll":18.628052963689772},"location":"Left Ankle"},{"euler":{"heading":71.26898446664146,"pitch":-12.159999425514156,"roll":-8.491004570712075},"location":"Right Ankle"},{"euler":{"heading":130.11554502733046,"pitch":-161.12002267724043,"roll":51.733960310536666},"location":"Right Hip"},{"euler":{"heading":60.12852913415202,"pitch":-103.82398908620146,"roll":13.781202990331646},"location":"Right Knee"},{"euler":{"heading":21.006821451412463,"pitch":-134.86862803073603,"roll":57.85476350834992},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.70"} +{"sensors":[{"euler":{"heading":59.525088187368034,"pitch":128.5720000015788,"roll":22.25301398388006},"location":"Left Knee"},{"euler":{"heading":64.68459301670943,"pitch":99.90754838460481,"roll":21.921497667320796},"location":"Left Ankle"},{"euler":{"heading":72.36083601997731,"pitch":-11.912749482962742,"roll":-8.173154113640868},"location":"Right Ankle"},{"euler":{"heading":129.40399052459742,"pitch":-161.2142704095164,"roll":51.841814279483},"location":"Right Hip"},{"euler":{"heading":57.765676220736815,"pitch":-104.22909017758133,"roll":15.478082691298482},"location":"Right Knee"},{"euler":{"heading":21.031139306271218,"pitch":-135.52551522766242,"roll":58.15053715751493},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.171"} +{"sensors":[{"euler":{"heading":60.60382936863123,"pitch":127.63980000142092,"roll":19.908962585492056},"location":"Left Knee"},{"euler":{"heading":67.06613371503849,"pitch":100.58554354614434,"roll":24.998097900588718},"location":"Left Ankle"},{"euler":{"heading":73.04350241797958,"pitch":-11.433974534666469,"roll":-8.218338702276782},"location":"Right Ankle"},{"euler":{"heading":128.5885914721377,"pitch":-161.43034336856476,"roll":52.42638285153471},"location":"Right Hip"},{"euler":{"heading":56.33910859866314,"pitch":-105.0874311598232,"roll":16.442774422168636},"location":"Right Knee"},{"euler":{"heading":20.4342753756441,"pitch":-133.9979637048962,"roll":58.01673344176344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.271"} +{"sensors":[{"euler":{"heading":60.19344643176811,"pitch":127.81332000127884,"roll":18.87431632694285},"location":"Left Knee"},{"euler":{"heading":67.41577034353465,"pitch":99.8457391915299,"roll":25.704538110529846},"location":"Left Ankle"},{"euler":{"heading":73.37665217618162,"pitch":-10.771827081199822,"roll":-8.602754832049104},"location":"Right Ankle"},{"euler":{"heading":128.14848232492392,"pitch":-161.4810590317083,"roll":53.18374456638124},"location":"Right Hip"},{"euler":{"heading":55.573947738796825,"pitch":-105.99743804384089,"roll":16.854746979951774},"location":"Right Knee"},{"euler":{"heading":19.16584783807969,"pitch":-132.17316733440657,"roll":57.3025600975871},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.372"} +{"sensors":[{"euler":{"heading":55.2616017885913,"pitch":129.33198800115096,"roll":19.974384694248567},"location":"Left Knee"},{"euler":{"heading":64.69294330918119,"pitch":98.79241527237691,"roll":23.62158429947686},"location":"Left Ankle"},{"euler":{"heading":73.26398695856345,"pitch":-9.988394373079839,"roll":-8.804979348844194},"location":"Right Ankle"},{"euler":{"heading":127.99613409243153,"pitch":-161.57670312853747,"roll":53.99662010974312},"location":"Right Hip"},{"euler":{"heading":55.43530296491715,"pitch":-106.84144423945679,"roll":16.750522281956595},"location":"Right Knee"},{"euler":{"heading":17.95551305427172,"pitch":-130.43085060096593,"roll":56.51605408782839},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.473"} +{"sensors":[{"euler":{"heading":85.02294160973217,"pitch":131.59878920103586,"roll":21.689446224823712},"location":"Left Knee"},{"euler":{"heading":60.736148978263074,"pitch":97.65067374513922,"roll":20.034425869529173},"location":"Left Ankle"},{"euler":{"heading":72.6000882627071,"pitch":-9.220804935771854,"roll":-9.411981413959776},"location":"Right Ankle"},{"euler":{"heading":127.99027068318838,"pitch":-161.85028281568373,"roll":54.90320809876881},"location":"Right Hip"},{"euler":{"heading":56.248022668425435,"pitch":-107.50729981551112,"roll":15.975470053760937},"location":"Right Knee"},{"euler":{"heading":17.378711748844548,"pitch":-129.35026554086934,"roll":55.90194867904555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.573"} +{"sensors":[{"euler":{"heading":76.88314744875895,"pitch":133.05766028093228,"roll":23.13300160234134},"location":"Left Knee"},{"euler":{"heading":57.75628408043677,"pitch":97.17310637062529,"roll":17.368483282576253},"location":"Left Ankle"},{"euler":{"heading":71.1650794364364,"pitch":-8.84872444219467,"roll":-10.2332832725638},"location":"Right Ankle"},{"euler":{"heading":128.14124361486955,"pitch":-162.49025453411534,"roll":55.76288728889193},"location":"Right Hip"},{"euler":{"heading":58.22322040158289,"pitch":-107.74406983396001,"roll":14.327923048384843},"location":"Right Knee"},{"euler":{"heading":17.172090573960094,"pitch":-128.5089889867824,"roll":55.518003811141},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.674"} +{"sensors":[{"euler":{"heading":70.62608270388306,"pitch":133.71439425283904,"roll":24.06345144210721},"location":"Left Knee"},{"euler":{"heading":56.405655672393095,"pitch":96.96204573356276,"roll":16.031634954318626},"location":"Left Ankle"},{"euler":{"heading":67.82357149279277,"pitch":-8.801351997975202,"roll":-11.034954945307419},"location":"Right Ankle"},{"euler":{"heading":128.8208692533826,"pitch":-162.64747908070382,"roll":56.042848560002746},"location":"Right Hip"},{"euler":{"heading":61.4258983614246,"pitch":-107.40091285056401,"roll":11.570130743546358},"location":"Right Knee"},{"euler":{"heading":16.704881516564086,"pitch":-127.80809008810418,"roll":55.3662034300269},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.775"} +{"sensors":[{"euler":{"heading":65.61972443349475,"pitch":133.72420482755516,"roll":24.813356297896487},"location":"Left Knee"},{"euler":{"heading":55.783840105153786,"pitch":97.0720911602065,"roll":15.172221458886764},"location":"Left Ankle"},{"euler":{"heading":64.68496434351349,"pitch":-9.002466798177682,"roll":-11.562709450776676},"location":"Right Ankle"},{"euler":{"heading":130.02003232804435,"pitch":-162.00773117263344,"roll":55.59481370400247},"location":"Right Hip"},{"euler":{"heading":64.27705852528214,"pitch":-106.88582156550763,"roll":8.969367669191723},"location":"Right Knee"},{"euler":{"heading":16.765643364907678,"pitch":-127.76478107929375,"roll":55.51083308702421},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.876"} +{"sensors":[{"euler":{"heading":61.676501990145276,"pitch":133.25178434479963,"roll":25.33827066810684},"location":"Left Knee"},{"euler":{"heading":55.65545609463841,"pitch":97.24613204418586,"roll":14.779999312998088},"location":"Left Ankle"},{"euler":{"heading":63.65396790916214,"pitch":-9.577220118359914,"roll":-11.506438505699009},"location":"Right Ankle"},{"euler":{"heading":131.13052909523992,"pitch":-161.3132080553701,"roll":54.54783233360222},"location":"Right Hip"},{"euler":{"heading":65.16810267275393,"pitch":-106.29098940895686,"roll":8.14743090227255},"location":"Right Knee"},{"euler":{"heading":17.264079028416912,"pitch":-128.26330297136437,"roll":55.909749778321796},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.977"} +{"sensors":[{"euler":{"heading":58.72135179113075,"pitch":132.47035591031965,"roll":25.535693601296156},"location":"Left Knee"},{"euler":{"heading":56.18991048517457,"pitch":97.59651883976727,"roll":14.964499381698278},"location":"Left Ankle"},{"euler":{"heading":65.10732111824592,"pitch":-10.363248106523924,"roll":-10.680794655129107},"location":"Right Ankle"},{"euler":{"heading":131.57372618571594,"pitch":-161.0443872498331,"roll":53.324299100242},"location":"Right Hip"},{"euler":{"heading":63.70129240547854,"pitch":-105.42439046806118,"roll":9.626437812045296},"location":"Right Knee"},{"euler":{"heading":18.08767112557522,"pitch":-129.47447267422794,"roll":56.50627480048962},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.79"} +{"sensors":[{"euler":{"heading":56.717966612017676,"pitch":131.48582031928768,"roll":25.25712424116654},"location":"Left Knee"},{"euler":{"heading":57.258419436657114,"pitch":98.02436695579054,"roll":15.64304944352845},"location":"Left Ankle"},{"euler":{"heading":68.08408900642134,"pitch":-11.145673295871532,"roll":-9.218965189616195},"location":"Right Ankle"},{"euler":{"heading":131.04135356714437,"pitch":-161.1024485248498,"roll":52.5418691902178},"location":"Right Hip"},{"euler":{"heading":60.987413164930686,"pitch":-104.60070142125507,"roll":12.501294030840768},"location":"Right Knee"},{"euler":{"heading":18.9289040130177,"pitch":-130.98952540680514,"roll":57.18064732044066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.179"} +{"sensors":[{"euler":{"heading":55.62116995081591,"pitch":130.3622382873589,"roll":24.412661817049884},"location":"Left Knee"},{"euler":{"heading":58.9513274929914,"pitch":98.55318026021149,"roll":17.059994499175605},"location":"Left Ankle"},{"euler":{"heading":70.6069301057792,"pitch":-11.33735596628438,"roll":-8.247068670654576},"location":"Right Ankle"},{"euler":{"heading":129.81221821042993,"pitch":-161.4109536723648,"roll":52.125182271196024},"location":"Right Hip"},{"euler":{"heading":57.83242184843762,"pitch":-104.35313127912957,"roll":15.251164627756692},"location":"Right Knee"},{"euler":{"heading":19.90476361171593,"pitch":-132.90307286612463,"roll":57.9000825883966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.280"} +{"sensors":[{"euler":{"heading":55.95280295573433,"pitch":129.413514458623,"roll":22.502645635344894},"location":"Left Knee"},{"euler":{"heading":61.41244474369227,"pitch":99.22286223419034,"roll":19.935245049258047},"location":"Left Ankle"},{"euler":{"heading":72.22123709520127,"pitch":-11.591120369655943,"roll":-7.666111803589119},"location":"Right Ankle"},{"euler":{"heading":129.19974638938695,"pitch":-161.57610830512832,"roll":51.96266404407642},"location":"Right Hip"},{"euler":{"heading":55.63042966359386,"pitch":-104.54281815121662,"roll":17.044798164981025},"location":"Right Knee"},{"euler":{"heading":20.258037250544337,"pitch":-133.75651557951218,"roll":58.31632432955695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.380"} +{"sensors":[{"euler":{"heading":57.701272660160896,"pitch":128.31591301276072,"roll":20.039881071810406},"location":"Left Knee"},{"euler":{"heading":64.96495026932305,"pitch":100.45057601077131,"roll":23.69172054433224},"location":"Left Ankle"},{"euler":{"heading":73.19911338568116,"pitch":-11.74450833269035,"roll":-7.418250623230207},"location":"Right Ankle"},{"euler":{"heading":128.49852175044825,"pitch":-161.8122474746155,"roll":52.22889763966878},"location":"Right Hip"},{"euler":{"heading":54.44863669723448,"pitch":-105.11353633609497,"roll":18.027818348482924},"location":"Right Knee"},{"euler":{"heading":19.494733525489902,"pitch":-132.23711402156096,"roll":58.14719189660126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.481"} +{"sensors":[{"euler":{"heading":58.21239539414481,"pitch":128.20307171148465,"roll":18.629642964629365},"location":"Left Knee"},{"euler":{"heading":66.63095524239075,"pitch":99.94926840969418,"roll":25.56629848989902},"location":"Left Ankle"},{"euler":{"heading":73.81670204711304,"pitch":-11.982557499421315,"roll":-7.332675560907186},"location":"Right Ankle"},{"euler":{"heading":128.22991957540344,"pitch":-161.97477272715395,"roll":52.762257875701906},"location":"Right Hip"},{"euler":{"heading":54.15377302751103,"pitch":-105.52718270248548,"roll":18.41253651363463},"location":"Right Knee"},{"euler":{"heading":17.957760172940915,"pitch":-130.38840261940487,"roll":57.26372270694113},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.582"} +{"sensors":[{"euler":{"heading":54.409905854730326,"pitch":129.3640145403362,"roll":19.279178668166427},"location":"Left Knee"},{"euler":{"heading":65.18660971815169,"pitch":98.71684156872477,"roll":24.54091864090912},"location":"Left Ankle"},{"euler":{"heading":74.09128184240174,"pitch":-12.109301749479183,"roll":-7.393158004816468},"location":"Right Ankle"},{"euler":{"heading":128.3069276178631,"pitch":-162.08354545443856,"roll":53.392282088131715},"location":"Right Hip"},{"euler":{"heading":54.482145724759924,"pitch":-105.84321443223693,"roll":18.271282862271168},"location":"Right Knee"},{"euler":{"heading":16.543234155646825,"pitch":-128.59956235746438,"roll":56.31860043624702},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.683"} +{"sensors":[{"euler":{"heading":84.8564152692573,"pitch":131.2963630863026,"roll":20.932510801349785},"location":"Left Knee"},{"euler":{"heading":61.58044874633652,"pitch":97.7514074118523,"roll":21.268076776818205},"location":"Left Ankle"},{"euler":{"heading":73.75090365816156,"pitch":-11.873371574531264,"roll":-7.8038422043348215},"location":"Right Ankle"},{"euler":{"heading":128.7449848560768,"pitch":-162.05019090899472,"roll":53.99680387931855},"location":"Right Hip"},{"euler":{"heading":55.32768115228394,"pitch":-106.20889298901325,"roll":17.612904576044052},"location":"Right Knee"},{"euler":{"heading":15.757660740082143,"pitch":-127.35210612171794,"roll":55.57424039262232},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.783"} +{"sensors":[{"euler":{"heading":112.13952374233156,"pitch":133.22922677767235,"roll":22.57050972121481},"location":"Left Knee"},{"euler":{"heading":58.00990387170287,"pitch":97.18876667066708,"roll":17.891269099136384},"location":"Left Ankle"},{"euler":{"heading":72.71956329234541,"pitch":-11.417284417078138,"roll":-8.50470798390134},"location":"Right Ankle"},{"euler":{"heading":129.22673637046913,"pitch":-162.26392181809524,"roll":54.6721234913867},"location":"Right Hip"},{"euler":{"heading":56.919913037055544,"pitch":-106.47550369011194,"roll":16.32036411843965},"location":"Right Knee"},{"euler":{"heading":15.456894666073929,"pitch":-126.59189550954613,"roll":55.035566353360096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.884"} +{"sensors":[{"euler":{"heading":102.2068213680984,"pitch":134.0250540999051,"roll":23.857208749093328},"location":"Left Knee"},{"euler":{"heading":56.06516348453258,"pitch":97.10114000360036,"roll":15.933392189222747},"location":"Left Ankle"},{"euler":{"heading":70.52260696311087,"pitch":-11.244305975370324,"roll":-9.454237185511207},"location":"Right Ankle"},{"euler":{"heading":129.8290627334222,"pitch":-162.59377963628572,"roll":55.29866114224803},"location":"Right Hip"},{"euler":{"heading":59.66542173334999,"pitch":-106.31545332110075,"roll":14.082077706595685},"location":"Right Knee"},{"euler":{"heading":15.386205199466536,"pitch":-125.93895595859152,"roll":54.713259718024084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.984"} +{"sensors":[{"euler":{"heading":94.08613923128856,"pitch":134.0475486899146,"roll":24.727737874183997},"location":"Left Knee"},{"euler":{"heading":55.12739713607933,"pitch":97.12227600324033,"roll":14.796302970300474},"location":"Left Ankle"},{"euler":{"heading":66.7515962667998,"pitch":-11.007375377833291,"roll":-10.658813466960087},"location":"Right Ankle"},{"euler":{"heading":131.05240646008,"pitch":-162.15940167265714,"roll":55.12504502802323},"location":"Right Hip"},{"euler":{"heading":63.01137956001499,"pitch":-106.15265798899067,"roll":11.098869935936115},"location":"Right Knee"},{"euler":{"heading":15.485084679519883,"pitch":-125.63881036273237,"roll":54.798183746221675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.85"} +{"sensors":[{"euler":{"heading":86.92127530815971,"pitch":133.71779382092313,"roll":25.348714086765597},"location":"Left Knee"},{"euler":{"heading":54.677157422471396,"pitch":97.10379840291631,"roll":14.122922673270427},"location":"Left Ankle"},{"euler":{"heading":63.945186640119815,"pitch":-11.050387840049963,"roll":-11.29918212026408},"location":"Right Ankle"},{"euler":{"heading":132.66591581407198,"pitch":-161.34971150539144,"roll":54.27504052522091},"location":"Right Hip"},{"euler":{"heading":64.99149160401349,"pitch":-105.7123921900916,"roll":9.163982942342505},"location":"Right Knee"},{"euler":{"heading":15.861576211567895,"pitch":-126.06867932645915,"roll":55.130865371599505},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.187"} +{"sensors":[{"euler":{"heading":80.90414777734374,"pitch":133.10226443883082,"roll":25.670092678089038},"location":"Left Knee"},{"euler":{"heading":55.31569168022426,"pitch":97.21841856262469,"roll":14.316880405943383},"location":"Left Ankle"},{"euler":{"heading":63.79441797610783,"pitch":-11.657849056044967,"roll":-11.038013908237673},"location":"Right Ankle"},{"euler":{"heading":133.8305742326648,"pitch":-160.7397403548523,"roll":53.09128647269882},"location":"Right Hip"},{"euler":{"heading":64.67359244361215,"pitch":-105.03490297108245,"roll":9.403834648108255},"location":"Right Knee"},{"euler":{"heading":16.606668590411104,"pitch":-127.19306139381324,"roll":55.649028834439555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.288"} +{"sensors":[{"euler":{"heading":76.15123299960938,"pitch":132.17328799494774,"roll":25.596833410280134},"location":"Left Knee"},{"euler":{"heading":56.50912251220184,"pitch":97.39032670636222,"roll":15.078942365349045},"location":"Left Ankle"},{"euler":{"heading":66.17122617849705,"pitch":-12.17331415044047,"roll":-10.002962517413906},"location":"Right Ankle"},{"euler":{"heading":133.96626680939832,"pitch":-160.60951631936706,"roll":52.06340782542894},"location":"Right Hip"},{"euler":{"heading":62.19998319925094,"pitch":-104.2064126739742,"roll":11.75095118329743},"location":"Right Knee"},{"euler":{"heading":17.464751731369994,"pitch":-128.6112552544319,"roll":56.2966259509956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.390"} +{"sensors":[{"euler":{"heading":72.63610969964843,"pitch":131.01220919545298,"roll":25.012150069252122},"location":"Left Knee"},{"euler":{"heading":58.17071026098166,"pitch":97.726294035726,"roll":16.358548128814142},"location":"Left Ankle"},{"euler":{"heading":69.23535356064735,"pitch":-12.662232735396424,"roll":-8.658916265672515},"location":"Right Ankle"},{"euler":{"heading":133.1633901284585,"pitch":-160.72356468743038,"roll":51.550817042886045},"location":"Right Hip"},{"euler":{"heading":58.89873487932585,"pitch":-103.75452140657679,"roll":14.894606064967686},"location":"Right Knee"},{"euler":{"heading":18.412026558232995,"pitch":-130.3563797289887,"roll":57.07946335589604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.491"} +{"sensors":[{"euler":{"heading":70.35374872968359,"pitch":129.8234882759077,"roll":23.75468506232691},"location":"Left Knee"},{"euler":{"heading":60.4536392348835,"pitch":98.2036646321534,"roll":18.37269331593273},"location":"Left Ankle"},{"euler":{"heading":71.46181820458263,"pitch":-12.789759461856782,"roll":-7.755524639105264},"location":"Right Ankle"},{"euler":{"heading":131.77205111561267,"pitch":-161.08245821868735,"roll":51.27073533859744},"location":"Right Hip"},{"euler":{"heading":55.95261139139327,"pitch":-103.77906926591912,"roll":17.37389545847092},"location":"Right Knee"},{"euler":{"heading":19.733323902409698,"pitch":-132.68324175608984,"roll":57.940267020306436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.592"} +{"sensors":[{"euler":{"heading":69.89337385671523,"pitch":128.90988944831693,"roll":21.42921655609422},"location":"Left Knee"},{"euler":{"heading":63.295775311395154,"pitch":99.07704816893806,"roll":21.460423984339457},"location":"Left Ankle"},{"euler":{"heading":72.70313638412436,"pitch":-12.654533515671105,"roll":-7.304972175194738},"location":"Right Ankle"},{"euler":{"heading":130.9948460040514,"pitch":-161.18046239681863,"roll":51.3061618047377},"location":"Right Hip"},{"euler":{"heading":53.80735025225395,"pitch":-104.19491233932722,"roll":18.911505912623827},"location":"Right Knee"},{"euler":{"heading":19.95374151216873,"pitch":-133.79616758048087,"roll":58.2274903182758},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.693"} +{"sensors":[{"euler":{"heading":70.4415364710437,"pitch":127.86265050348524,"roll":18.9737949004848},"location":"Left Knee"},{"euler":{"heading":66.19119778025564,"pitch":100.30059335204427,"roll":24.645631585905512},"location":"Left Ankle"},{"euler":{"heading":73.42657274571194,"pitch":-12.451580164103994,"roll":-7.255724957675265},"location":"Right Ankle"},{"euler":{"heading":130.20161140364627,"pitch":-161.39366615713678,"roll":51.806795624263934},"location":"Right Hip"},{"euler":{"heading":52.78911522702855,"pitch":-104.90667110539451,"roll":19.626605321361446},"location":"Right Knee"},{"euler":{"heading":19.18336736095186,"pitch":-132.36655082243277,"roll":58.073491286448224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.793"} +{"sensors":[{"euler":{"heading":69.72238282393934,"pitch":127.78263545313672,"roll":17.82016541043632},"location":"Left Knee"},{"euler":{"heading":67.21582800223007,"pitch":99.99553401683985,"roll":25.856068427314963},"location":"Left Ankle"},{"euler":{"heading":73.94641547114074,"pitch":-12.000172147693595,"roll":-7.548902461907739},"location":"Right Ankle"},{"euler":{"heading":129.76270026328166,"pitch":-161.4105495414231,"roll":52.544866061837546},"location":"Right Hip"},{"euler":{"heading":52.191453704325696,"pitch":-105.75975399485506,"roll":19.888944789225302},"location":"Right Knee"},{"euler":{"heading":17.777530624856674,"pitch":-130.5861457401895,"roll":57.184892157803404},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.894"} +{"sensors":[{"euler":{"heading":64.62514454154541,"pitch":129.15437190782305,"roll":18.73814886939269},"location":"Left Knee"},{"euler":{"heading":64.79424520200706,"pitch":99.05223061515588,"roll":24.082961584583465},"location":"Left Ankle"},{"euler":{"heading":73.92052392402667,"pitch":-11.337654932924236,"roll":-7.850262215716965},"location":"Right Ankle"},{"euler":{"heading":129.6989302369535,"pitch":-161.3632445872808,"roll":53.31537945565379},"location":"Right Hip"},{"euler":{"heading":52.128558333893125,"pitch":-106.57752859536956,"roll":19.675050310302773},"location":"Right Knee"},{"euler":{"heading":16.387277562371008,"pitch":-128.85253116617054,"roll":56.22890294202307},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.995"} +{"sensors":[{"euler":{"heading":87.10013008739088,"pitch":131.33893471704076,"roll":20.45808398245342},"location":"Left Knee"},{"euler":{"heading":60.70857068180636,"pitch":97.9720075536403,"roll":20.41216542612512},"location":"Left Ankle"},{"euler":{"heading":73.253471531624,"pitch":-10.497639439631811,"roll":-8.415235994145268},"location":"Right Ankle"},{"euler":{"heading":129.71028721325814,"pitch":-161.43942012855274,"roll":54.17134151008841},"location":"Right Hip"},{"euler":{"heading":52.859452500503814,"pitch":-107.3447757358326,"roll":18.826295279272493},"location":"Right Knee"},{"euler":{"heading":15.704799806133908,"pitch":-127.82977804955348,"roll":55.49976264782076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.95"} +{"sensors":[{"euler":{"heading":79.4026170786518,"pitch":132.69254124533668,"roll":21.94352558420808},"location":"Left Knee"},{"euler":{"heading":57.48771361362572,"pitch":97.67480679827626,"roll":17.46469888351261},"location":"Left Ankle"},{"euler":{"heading":71.7281243784616,"pitch":-9.829125495668631,"roll":-9.342462394730742},"location":"Right Ankle"},{"euler":{"heading":129.92050849193234,"pitch":-161.88297811569748,"roll":55.00420735907957},"location":"Right Hip"},{"euler":{"heading":54.73600725045343,"pitch":-107.72279816224933,"roll":17.143665751345242},"location":"Right Knee"},{"euler":{"heading":15.603069825520517,"pitch":-127.21555024459813,"roll":55.05603638303869},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.196"} +{"sensors":[{"euler":{"heading":73.41860537078662,"pitch":133.217037120803,"roll":23.04292302578727},"location":"Left Knee"},{"euler":{"heading":56.00769225226315,"pitch":97.65732611844864,"roll":15.97447899516135},"location":"Left Ankle"},{"euler":{"heading":68.68656194061543,"pitch":-9.77746294610177,"roll":-10.195716155257667},"location":"Right Ankle"},{"euler":{"heading":130.7409576427391,"pitch":-162.02593030412774,"roll":55.316286623171614},"location":"Right Hip"},{"euler":{"heading":57.99365652540809,"pitch":-107.31301834602439,"roll":14.35429917621072},"location":"Right Knee"},{"euler":{"heading":15.330262842968466,"pitch":-126.71274522013832,"roll":54.86293274473482},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.297"} +{"sensors":[{"euler":{"heading":68.70174483370796,"pitch":133.0453334087227,"roll":23.919880723208543},"location":"Left Knee"},{"euler":{"heading":55.40692302703683,"pitch":97.85409350660377,"roll":15.039531095645215},"location":"Left Ankle"},{"euler":{"heading":65.1429057465539,"pitch":-9.180966651491593,"roll":-11.163644539731902},"location":"Right Ankle"},{"euler":{"heading":132.06686187846518,"pitch":-161.26083727371497,"roll":54.890907960854456},"location":"Right Hip"},{"euler":{"heading":60.68804087286728,"pitch":-107.35046651142196,"roll":11.737619258589648},"location":"Right Knee"},{"euler":{"heading":15.547236558671619,"pitch":-126.91647069812448,"roll":55.00163947026134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.397"} +{"sensors":[{"euler":{"heading":64.93157035033717,"pitch":132.28455006785043,"roll":24.62164265088769},"location":"Left Knee"},{"euler":{"heading":55.60373072433315,"pitch":98.2874341559434,"roll":14.641827986080692},"location":"Left Ankle"},{"euler":{"heading":63.9348651718985,"pitch":-9.537869986342434,"roll":-11.15353008575871},"location":"Right Ankle"},{"euler":{"heading":133.53517569061867,"pitch":-160.4097535463435,"roll":53.720567164769015},"location":"Right Hip"},{"euler":{"heading":61.337986785580554,"pitch":-106.77791986027975,"roll":10.895107332730683},"location":"Right Knee"},{"euler":{"heading":16.380012902804456,"pitch":-127.98732362831204,"roll":55.370225523235206},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.503"} +{"sensors":[{"euler":{"heading":62.23216331530345,"pitch":131.08734506106538,"roll":24.95322838579892},"location":"Left Knee"},{"euler":{"heading":56.31835765189983,"pitch":98.92119074034908,"roll":14.715145187472622},"location":"Left Ankle"},{"euler":{"heading":65.22262865470866,"pitch":-10.271582987708191,"roll":-10.325677077182839},"location":"Right Ankle"},{"euler":{"heading":134.3066581215568,"pitch":-160.06877819170913,"roll":52.39226044829212},"location":"Right Hip"},{"euler":{"heading":60.054188107022505,"pitch":-105.81887787425178,"roll":12.030596599457615},"location":"Right Knee"},{"euler":{"heading":17.50451161252401,"pitch":-129.32609126548084,"roll":55.94570297091168},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.603"} +{"sensors":[{"euler":{"heading":60.49019698377311,"pitch":129.64736055495885,"roll":24.751655547219027},"location":"Left Knee"},{"euler":{"heading":57.48652188670985,"pitch":99.65407166631417,"roll":15.299880668725361},"location":"Left Ankle"},{"euler":{"heading":68.17536578923779,"pitch":-10.938174688937371,"roll":-8.861859369464554},"location":"Right Ankle"},{"euler":{"heading":134.1884923094011,"pitch":-160.08065037253823,"roll":51.54678440346291},"location":"Right Hip"},{"euler":{"heading":57.31751929632025,"pitch":-104.9119900868266,"roll":14.715036939511855},"location":"Right Knee"},{"euler":{"heading":18.81031045127161,"pitch":-130.94348213893275,"roll":56.73238267382052},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.704"} +{"sensors":[{"euler":{"heading":59.641177285395806,"pitch":128.170124499463,"roll":23.876489992497127},"location":"Left Knee"},{"euler":{"heading":59.35661969803887,"pitch":100.50116449968276,"roll":16.663642601852825},"location":"Left Ankle"},{"euler":{"heading":70.80782921031401,"pitch":-11.331857220043634,"roll":-7.744423432518099},"location":"Right Ankle"},{"euler":{"heading":133.094643078461,"pitch":-160.4538353352844,"roll":51.12335596311662},"location":"Right Hip"},{"euler":{"heading":54.467017366688225,"pitch":-104.51454107814395,"roll":17.20603324556067},"location":"Right Knee"},{"euler":{"heading":20.229279406144453,"pitch":-132.89288392503948,"roll":57.571644406438466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.804"} +{"sensors":[{"euler":{"heading":60.11455955685623,"pitch":127.0906120495167,"roll":21.820090993247415},"location":"Left Knee"},{"euler":{"heading":61.84595772823498,"pitch":101.28229804971448,"roll":19.44727834166754},"location":"Left Ankle"},{"euler":{"heading":72.47704628928261,"pitch":-11.61117149803927,"roll":-7.219981089266289},"location":"Right Ankle"},{"euler":{"heading":132.5664287706149,"pitch":-160.69595180175597,"roll":50.99852036680497},"location":"Right Hip"},{"euler":{"heading":52.614065630019404,"pitch":-104.63808697032955,"roll":18.7479299210046},"location":"Right Knee"},{"euler":{"heading":20.71260146553001,"pitch":-133.54109553253554,"roll":57.989479965794615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.905"} +{"sensors":[{"euler":{"heading":61.75310360117061,"pitch":126.02530084456502,"roll":19.331831893922676},"location":"Left Knee"},{"euler":{"heading":65.21136195541148,"pitch":102.28531824474305,"roll":23.07130050750079},"location":"Left Ankle"},{"euler":{"heading":73.57309166035435,"pitch":-11.675054348235344,"roll":-6.95423298033966},"location":"Right Ankle"},{"euler":{"heading":131.75353589355342,"pitch":-161.0888566215804,"roll":51.379918330124475},"location":"Right Hip"},{"euler":{"heading":51.53390906701746,"pitch":-105.0180282732966,"roll":19.60438692890414},"location":"Right Knee"},{"euler":{"heading":20.06634131897701,"pitch":-131.85573597928197,"roll":57.834281969215155},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.6"} +{"sensors":[{"euler":{"heading":62.28404324105355,"pitch":125.91027076010852,"roll":17.90489870453041},"location":"Left Knee"},{"euler":{"heading":66.85272575987032,"pitch":101.79428642026875,"roll":24.895420456750713},"location":"Left Ankle"},{"euler":{"heading":74.30328249431892,"pitch":-11.53879891341181,"roll":-7.015059682305694},"location":"Right Ankle"},{"euler":{"heading":131.3656823041981,"pitch":-161.26747095942235,"roll":51.991926497112026},"location":"Right Hip"},{"euler":{"heading":51.13676816031572,"pitch":-105.60372544596694,"roll":19.856448236013726},"location":"Right Knee"},{"euler":{"heading":18.728457187079307,"pitch":-130.10766238135378,"roll":56.963353772293644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.107"} +{"sensors":[{"euler":{"heading":58.6806389169482,"pitch":127.15049368409767,"roll":18.55815883407737},"location":"Left Knee"},{"euler":{"heading":65.1174531838833,"pitch":100.68985777824187,"roll":23.662128411075646},"location":"Left Ankle"},{"euler":{"heading":74.49170424488703,"pitch":-11.241169022070629,"roll":-7.257303714075125},"location":"Right Ankle"},{"euler":{"heading":131.14786407377827,"pitch":-161.41572386348014,"roll":52.730233847400825},"location":"Right Hip"},{"euler":{"heading":51.31059134428415,"pitch":-106.23085290137026,"roll":19.589553412412354},"location":"Right Knee"},{"euler":{"heading":17.380611468371377,"pitch":-128.4218961432184,"roll":56.03576839506428},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.208"} +{"sensors":[{"euler":{"heading":88.71257502525339,"pitch":129.3166943156879,"roll":20.339842950669635},"location":"Left Knee"},{"euler":{"heading":61.13695786549497,"pitch":99.59587200041769,"roll":20.083415569968082},"location":"Left Ankle"},{"euler":{"heading":73.93628382039833,"pitch":-10.729552119863568,"roll":-7.900323342667613},"location":"Right Ankle"},{"euler":{"heading":131.10807766640045,"pitch":-161.61790147713214,"roll":53.48846046266075},"location":"Right Hip"},{"euler":{"heading":52.27953220985574,"pitch":-106.82651761123323,"roll":18.674348071171117},"location":"Right Knee"},{"euler":{"heading":16.517550321534237,"pitch":-127.39220652889655,"roll":55.31969155555786},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.309"} +{"sensors":[{"euler":{"heading":80.74131752272805,"pitch":130.9100248841191,"roll":21.899608655602673},"location":"Left Knee"},{"euler":{"heading":58.02951207894547,"pitch":99.26128480037592,"roll":17.337574012971274},"location":"Left Ankle"},{"euler":{"heading":72.40515543835849,"pitch":-10.256596907877212,"roll":-8.741541008400851},"location":"Right Ankle"},{"euler":{"heading":131.3035198997604,"pitch":-162.0561113294189,"roll":54.183364416394674},"location":"Right Hip"},{"euler":{"heading":54.26407898887016,"pitch":-107.1001158501099,"roll":16.96941326405401},"location":"Right Knee"},{"euler":{"heading":16.340795289380814,"pitch":-126.6967358760069,"roll":54.90647240000207},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.410"} +{"sensors":[{"euler":{"heading":74.53593577045525,"pitch":131.5377723957072,"roll":23.128397790042406},"location":"Left Knee"},{"euler":{"heading":56.63281087105093,"pitch":99.30390632033833,"roll":15.860066611674146},"location":"Left Ankle"},{"euler":{"heading":69.40213989452265,"pitch":-10.33718721708949,"roll":-9.642386907560766},"location":"Right Ankle"},{"euler":{"heading":132.06066790978437,"pitch":-162.09425019647702,"roll":54.50252797475521},"location":"Right Hip"},{"euler":{"heading":57.56267108998315,"pitch":-106.67760426509892,"roll":14.209971937648607},"location":"Right Knee"},{"euler":{"heading":16.106715760442732,"pitch":-126.13331228840622,"roll":54.77207516000187},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.511"} +{"sensors":[{"euler":{"heading":69.70109219340974,"pitch":131.44024515613648,"roll":24.003058011038167},"location":"Left Knee"},{"euler":{"heading":56.10077978394584,"pitch":99.4422656883045,"roll":15.086559950506732},"location":"Left Ankle"},{"euler":{"heading":65.81817590507039,"pitch":-10.453468495380541,"roll":-10.64689821680469},"location":"Right Ankle"},{"euler":{"heading":133.64835111880592,"pitch":-161.3910751768293,"roll":53.95852517727969},"location":"Right Hip"},{"euler":{"heading":60.693903980984835,"pitch":-106.38484383858903,"roll":11.420224743883747},"location":"Right Knee"},{"euler":{"heading":16.34604418439846,"pitch":-126.2824810595656,"roll":54.93861764400168},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.612"} +{"sensors":[{"euler":{"heading":65.76848297406876,"pitch":130.93997064052283,"roll":24.62775220993435},"location":"Left Knee"},{"euler":{"heading":56.78445180555126,"pitch":99.70428911947405,"roll":15.215403955456061},"location":"Left Ankle"},{"euler":{"heading":64.31760831456336,"pitch":-11.020621645842487,"roll":-10.919708395124221},"location":"Right Ankle"},{"euler":{"heading":135.22726600692533,"pitch":-160.59571765914637,"roll":52.881422659551724},"location":"Right Hip"},{"euler":{"heading":61.93701358288635,"pitch":-105.62135945473014,"roll":10.253202269495372},"location":"Right Knee"},{"euler":{"heading":17.03643976595861,"pitch":-127.17298295360904,"roll":55.33225587960152},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.714"} +{"sensors":[{"euler":{"heading":62.754134676661884,"pitch":130.13347357647055,"roll":24.896226988940914},"location":"Left Knee"},{"euler":{"heading":57.68100662499614,"pitch":100.04011020752665,"roll":15.650113559910457},"location":"Left Ankle"},{"euler":{"heading":65.56709748310702,"pitch":-11.824809481258239,"roll":-10.1652375556118},"location":"Right Ankle"},{"euler":{"heading":135.9545394062328,"pitch":-160.20489589323174,"roll":51.70578039359655},"location":"Right Hip"},{"euler":{"heading":60.868312224597716,"pitch":-104.59047350925712,"roll":11.315382042545835},"location":"Right Knee"},{"euler":{"heading":17.78279578936275,"pitch":-128.52443465824814,"roll":55.83653029164137},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.814"} +{"sensors":[{"euler":{"heading":60.728721208995694,"pitch":129.0826262188235,"roll":24.687854290046822},"location":"Left Knee"},{"euler":{"heading":59.069155962496524,"pitch":100.567349186774,"roll":16.53510220391941},"location":"Left Ankle"},{"euler":{"heading":68.49163773479631,"pitch":-12.379828533132416,"roll":-8.854963800050621},"location":"Right Ankle"},{"euler":{"heading":135.60283546560953,"pitch":-160.19065630390855,"roll":50.9227023542369},"location":"Right Hip"},{"euler":{"heading":58.156481002137944,"pitch":-103.7939261583314,"roll":14.03384383829125},"location":"Right Knee"},{"euler":{"heading":18.679516210426478,"pitch":-130.20324119242332,"roll":56.477877262477236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.915"} +{"sensors":[{"euler":{"heading":59.51834908809613,"pitch":127.98061359694115,"roll":23.900318861042138},"location":"Left Knee"},{"euler":{"heading":61.12474036624687,"pitch":101.17311426809661,"roll":18.09409198352747},"location":"Left Ankle"},{"euler":{"heading":71.32997396131668,"pitch":-12.629345679819176,"roll":-7.694467420045559},"location":"Right Ankle"},{"euler":{"heading":133.96130191904857,"pitch":-160.7028406735177,"roll":50.58668211881321},"location":"Right Hip"},{"euler":{"heading":55.01583290192415,"pitch":-103.37703354249827,"roll":16.874209454462125},"location":"Right Knee"},{"euler":{"heading":19.774064589383833,"pitch":-132.332917073181,"roll":57.21133953622952},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.15"} +{"sensors":[{"euler":{"heading":59.62276417928652,"pitch":126.97005223724705,"roll":22.06653697493792},"location":"Left Knee"},{"euler":{"heading":63.21851632962219,"pitch":101.53705284128695,"roll":20.497182785174722},"location":"Left Ankle"},{"euler":{"heading":73.078226565185,"pitch":-12.76641111183726,"roll":-7.075020678041003},"location":"Right Ankle"},{"euler":{"heading":132.8526717271437,"pitch":-161.04505660616593,"roll":50.53426390693189},"location":"Right Hip"},{"euler":{"heading":52.582999611731736,"pitch":-103.55183018824845,"roll":18.743038509015914},"location":"Right Knee"},{"euler":{"heading":20.66540813044545,"pitch":-133.79962536586288,"roll":57.877705582606566},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.115"} +{"sensors":[{"euler":{"heading":61.12923776135787,"pitch":126.21679701352235,"roll":19.52238327744413},"location":"Left Knee"},{"euler":{"heading":66.56541469665997,"pitch":102.59584755715827,"roll":24.11621450665725},"location":"Left Ankle"},{"euler":{"heading":74.1516539086665,"pitch":-12.777270000653534,"roll":-6.805018610236903},"location":"Right Ankle"},{"euler":{"heading":131.70490455442933,"pitch":-161.49680094554935,"roll":50.9183375162387},"location":"Right Hip"},{"euler":{"heading":51.19344965055856,"pitch":-104.1216471694236,"roll":19.781234658114325},"location":"Right Knee"},{"euler":{"heading":19.848867317400906,"pitch":-132.8634128292766,"roll":57.877435024345914},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.216"} +{"sensors":[{"euler":{"heading":62.02881398522209,"pitch":126.07011731217011,"roll":17.676394949699716},"location":"Left Knee"},{"euler":{"heading":68.44637322699397,"pitch":101.89876280144244,"roll":26.310843055991526},"location":"Left Ankle"},{"euler":{"heading":74.84898851779985,"pitch":-12.768293000588182,"roll":-6.887016749213213},"location":"Right Ankle"},{"euler":{"heading":131.0781640989864,"pitch":-161.72212085099443,"roll":51.58900376461484},"location":"Right Hip"},{"euler":{"heading":50.72410468550271,"pitch":-104.75948245248124,"roll":20.14061119230289},"location":"Right Knee"},{"euler":{"heading":18.226480585660816,"pitch":-131.26457154634895,"roll":57.05844152191133},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.316"} +{"sensors":[{"euler":{"heading":59.313432586699875,"pitch":127.0881055809531,"roll":17.790005454729744},"location":"Left Knee"},{"euler":{"heading":67.18298590429457,"pitch":100.4776365212982,"roll":25.711008750392374},"location":"Left Ankle"},{"euler":{"heading":75.18908966601987,"pitch":-12.697713700529365,"roll":-7.154565074291892},"location":"Right Ankle"},{"euler":{"heading":130.84534768908776,"pitch":-161.856158765895,"roll":52.367603388153356},"location":"Right Hip"},{"euler":{"heading":50.88919421695245,"pitch":-105.33353420723311,"roll":19.989050073072605},"location":"Right Knee"},{"euler":{"heading":16.641332527094736,"pitch":-129.55061439171405,"roll":56.083847369720196},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.417"} +{"sensors":[{"euler":{"heading":53.87583932802989,"pitch":128.9542950228578,"roll":19.36100490925677},"location":"Left Knee"},{"euler":{"heading":63.564687313865115,"pitch":99.44237286916838,"roll":22.664907875353137},"location":"Left Ankle"},{"euler":{"heading":74.93893069941788,"pitch":-12.446692330476429,"roll":-7.564108566862703},"location":"Right Ankle"},{"euler":{"heading":130.804562920179,"pitch":-162.08929288930548,"roll":53.09959304933802},"location":"Right Hip"},{"euler":{"heading":51.7315247952572,"pitch":-105.8814307865098,"roll":19.227645065765344},"location":"Right Knee"},{"euler":{"heading":15.570949274385264,"pitch":-128.20805295254266,"roll":55.27546263274817},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.519"} +{"sensors":[{"euler":{"heading":48.6382553952269,"pitch":131.00261552057202,"roll":21.043654418331094},"location":"Left Knee"},{"euler":{"heading":59.6519685824786,"pitch":98.59188558225155,"roll":19.073417087817823},"location":"Left Ankle"},{"euler":{"heading":73.91378762947609,"pitch":-11.970773097428786,"roll":-8.307697710176432},"location":"Right Ankle"},{"euler":{"heading":130.8866066281611,"pitch":-162.53661360037495,"roll":53.870883744404225},"location":"Right Hip"},{"euler":{"heading":53.352122315731485,"pitch":-106.27453770785883,"roll":17.81738055918881},"location":"Right Knee"},{"euler":{"heading":15.263854346946738,"pitch":-127.4684976572884,"roll":54.72916636947336},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.620"} +{"sensors":[{"euler":{"heading":45.35567985570421,"pitch":131.8961039685148,"roll":22.401788976497983},"location":"Left Knee"},{"euler":{"heading":57.51177172423075,"pitch":98.3889470240264,"roll":16.89732537903604},"location":"Left Ankle"},{"euler":{"heading":71.72240886652848,"pitch":-11.892445787685908,"roll":-9.19567793915879},"location":"Right Ankle"},{"euler":{"heading":131.404195965345,"pitch":-163.02045224033748,"roll":54.4650453699638},"location":"Right Hip"},{"euler":{"heading":56.36691008415834,"pitch":-105.94708393707295,"roll":15.33564250326993},"location":"Right Knee"},{"euler":{"heading":15.112468912252064,"pitch":-126.90289789155956,"roll":54.38749973252603},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.721"} +{"sensors":[{"euler":{"heading":43.34511187013379,"pitch":131.93149357166334,"roll":23.392860078848184},"location":"Left Knee"},{"euler":{"heading":56.49809455180767,"pitch":98.46880232162376,"roll":15.757592841132437},"location":"Left Ankle"},{"euler":{"heading":67.88141797987564,"pitch":-11.528201208917316,"roll":-10.44486014524291},"location":"Right Ankle"},{"euler":{"heading":132.8075263688105,"pitch":-162.53090701630373,"roll":54.23104083296742},"location":"Right Hip"},{"euler":{"heading":59.47396907574251,"pitch":-105.78987554336565,"roll":12.427078252942938},"location":"Right Knee"},{"euler":{"heading":15.369972021026859,"pitch":-126.5938581024036,"roll":54.43624975927342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.821"} +{"sensors":[{"euler":{"heading":41.86060068312042,"pitch":131.563344214497,"roll":24.066074070963364},"location":"Left Knee"},{"euler":{"heading":56.55453509662691,"pitch":98.66567208946138,"roll":15.375583557019194},"location":"Left Ankle"},{"euler":{"heading":65.00577618188807,"pitch":-11.662881088025586,"roll":-11.08787413071862},"location":"Right Ankle"},{"euler":{"heading":134.48927373192944,"pitch":-161.72156631467337,"roll":53.30793674967068},"location":"Right Hip"},{"euler":{"heading":61.33907216816826,"pitch":-105.26088798902909,"roll":10.628120427648645},"location":"Right Knee"},{"euler":{"heading":15.764224818924173,"pitch":-127.09072229216325,"roll":54.67387478334608},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.923"} +{"sensors":[{"euler":{"heading":41.005790614808376,"pitch":130.8320097930473,"roll":24.49071666386703},"location":"Left Knee"},{"euler":{"heading":57.47408158696422,"pitch":99.01785488051524,"roll":15.681775201317276},"location":"Left Ankle"},{"euler":{"heading":64.81144856369926,"pitch":-12.446592979223027,"roll":-10.947836717646757},"location":"Right Ankle"},{"euler":{"heading":135.5340963587365,"pitch":-161.09940968320603,"roll":52.114643074703615},"location":"Right Hip"},{"euler":{"heading":60.88641495135143,"pitch":-104.28479919012618,"roll":11.077808384883781},"location":"Right Knee"},{"euler":{"heading":16.506552337031756,"pitch":-128.17540006294692,"roll":55.131487305011476},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.24"} +{"sensors":[{"euler":{"heading":40.87396155332754,"pitch":129.82380881374257,"roll":24.479144997480326},"location":"Left Knee"},{"euler":{"heading":58.545423428267796,"pitch":99.40356939246374,"roll":16.28234768118555},"location":"Left Ankle"},{"euler":{"heading":67.19280370732933,"pitch":-13.151933681300726,"roll":-9.921803045882081},"location":"Right Ankle"},{"euler":{"heading":135.48693672286285,"pitch":-160.92696871488545,"roll":51.12192876723326},"location":"Right Hip"},{"euler":{"heading":58.60402345621629,"pitch":-103.39381927111356,"roll":13.457527546395404},"location":"Right Knee"},{"euler":{"heading":17.368397103328583,"pitch":-129.56411005665223,"roll":55.724588574510335},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.124"} +{"sensors":[{"euler":{"heading":41.36156539799479,"pitch":128.66017793236833,"roll":23.956230497732296},"location":"Left Knee"},{"euler":{"heading":60.09088108544102,"pitch":99.87571245321737,"roll":17.397862913066994},"location":"Left Ankle"},{"euler":{"heading":70.3485233365964,"pitch":-13.730490313170653,"roll":-8.548372741293873},"location":"Right Ankle"},{"euler":{"heading":134.28199305057657,"pitch":-161.16552184339693,"roll":50.67848589050993},"location":"Right Hip"},{"euler":{"heading":55.68112111059466,"pitch":-102.92943734400221,"roll":16.449274791755865},"location":"Right Knee"},{"euler":{"heading":18.469057392995726,"pitch":-131.32019905098701,"roll":56.502129717059304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.225"} +{"sensors":[{"euler":{"heading":42.744158858195306,"pitch":127.56291013913149,"roll":22.604357447959067},"location":"Left Knee"},{"euler":{"heading":62.19429297689692,"pitch":100.33814120789565,"roll":19.395576621760295},"location":"Left Ankle"},{"euler":{"heading":72.65117100293676,"pitch":-13.744941281853588,"roll":-7.868535467164485},"location":"Right Ankle"},{"euler":{"heading":132.99754374551893,"pitch":-161.51771965905724,"roll":50.491887301458945},"location":"Right Hip"},{"euler":{"heading":53.0505089995352,"pitch":-103.13649360960198,"roll":18.64809731258028},"location":"Right Knee"},{"euler":{"heading":19.784651653696155,"pitch":-133.2006791458883,"roll":57.339416745353375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.325"} +{"sensors":[{"euler":{"heading":45.64474297237578,"pitch":126.55661912521835,"roll":20.300171703163162},"location":"Left Knee"},{"euler":{"heading":64.98736367920722,"pitch":101.61682708710609,"roll":22.237268959584267},"location":"Left Ankle"},{"euler":{"heading":73.92980390264309,"pitch":-13.645447153668231,"roll":-7.569181920448036},"location":"Right Ankle"},{"euler":{"heading":132.09778937096704,"pitch":-161.69094769315151,"roll":50.648948571313056},"location":"Right Hip"},{"euler":{"heading":51.29545809958167,"pitch":-103.76034424864179,"roll":19.958287581322253},"location":"Right Knee"},{"euler":{"heading":19.61868648832654,"pitch":-133.40561123129947,"roll":57.51172507081804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.426"} +{"sensors":[{"euler":{"heading":48.542768675138205,"pitch":125.8134572126965,"roll":18.276404532846847},"location":"Left Knee"},{"euler":{"heading":66.9573773112865,"pitch":102.27389437839548,"roll":24.46354206362584},"location":"Left Ankle"},{"euler":{"heading":74.74932351237878,"pitch":-13.48090243830141,"roll":-7.512263728403233},"location":"Right Ankle"},{"euler":{"heading":131.38801043387033,"pitch":-161.89060292383638,"roll":51.165303714181746},"location":"Right Hip"},{"euler":{"heading":50.440912289623505,"pitch":-104.49680982377761,"roll":20.549958823190032},"location":"Right Knee"},{"euler":{"heading":19.006817839493888,"pitch":-132.12755010816954,"roll":57.235552563736235},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.526"} +{"sensors":[{"euler":{"heading":48.88224180762439,"pitch":126.23211149142686,"roll":17.748764079562164},"location":"Left Knee"},{"euler":{"heading":66.81163958015786,"pitch":101.64025494055593,"roll":24.717187857263255},"location":"Left Ankle"},{"euler":{"heading":75.1743911611409,"pitch":-13.18906219447127,"roll":-7.78603735556291},"location":"Right Ankle"},{"euler":{"heading":130.9929593904833,"pitch":-161.95779263145275,"roll":51.88627334276357},"location":"Right Hip"},{"euler":{"heading":50.128071060661156,"pitch":-105.20962884139985,"roll":20.63246294087103},"location":"Right Knee"},{"euler":{"heading":17.7936360555445,"pitch":-130.4960450973526,"roll":56.43699730736262},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.627"} +{"sensors":[{"euler":{"heading":45.275267626861954,"pitch":127.82765034228417,"roll":18.95513767160595},"location":"Left Knee"},{"euler":{"heading":63.94297562214207,"pitch":100.48872944650034,"roll":22.501719071536932},"location":"Left Ankle"},{"euler":{"heading":75.03195204502681,"pitch":-12.776405975024142,"roll":-8.12618362000662},"location":"Right Ankle"},{"euler":{"heading":130.81866345143496,"pitch":-162.17451336830746,"roll":52.62889600848722},"location":"Right Hip"},{"euler":{"heading":50.559013954595045,"pitch":-105.85116595725987,"roll":20.16921664678393},"location":"Right Knee"},{"euler":{"heading":16.60802244999005,"pitch":-128.89019058761735,"roll":55.64329757662636},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.728"} +{"sensors":[{"euler":{"heading":76.70399086417576,"pitch":130.01363530805577,"roll":20.697123904445355},"location":"Left Knee"},{"euler":{"heading":59.861178059927866,"pitch":99.32735650185032,"roll":18.82654716438324},"location":"Left Ankle"},{"euler":{"heading":74.16625684052414,"pitch":-12.267515377521729,"roll":-8.857315258005958},"location":"Right Ankle"},{"euler":{"heading":130.93054710629147,"pitch":-162.54456203147672,"roll":53.434756407638496},"location":"Right Hip"},{"euler":{"heading":51.89061255913555,"pitch":-106.2597993615339,"roll":19.027294982105538},"location":"Right Knee"},{"euler":{"heading":16.372220204991045,"pitch":-128.15742152885562,"roll":55.08521781896373},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.829"} +{"sensors":[{"euler":{"heading":70.18984177775819,"pitch":131.17477177725019,"roll":22.214911514000818},"location":"Left Knee"},{"euler":{"heading":57.293810253935085,"pitch":98.83837085166529,"roll":16.456392447944914},"location":"Left Ankle"},{"euler":{"heading":72.18088115647174,"pitch":-11.884513839769557,"roll":-9.721583732205362},"location":"Right Ankle"},{"euler":{"heading":131.23749239566231,"pitch":-163.27760582832906,"roll":54.19128076687465},"location":"Right Hip"},{"euler":{"heading":54.207801303222,"pitch":-106.26506942538052,"roll":17.068315483894985},"location":"Right Knee"},{"euler":{"heading":16.453748184491943,"pitch":-127.56042937597006,"roll":54.757946037067356},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.930"} +{"sensors":[{"euler":{"heading":65.40835759998237,"pitch":131.43229459952516,"roll":23.230920362600738},"location":"Left Knee"},{"euler":{"heading":56.09567922854158,"pitch":98.65453376649876,"roll":15.292003203150422},"location":"Left Ankle"},{"euler":{"heading":68.55654304082456,"pitch":-11.696062455792601,"roll":-10.955675358984827},"location":"Right Ankle"},{"euler":{"heading":132.3324931560961,"pitch":-163.21859524549618,"roll":54.372152690187185},"location":"Right Hip"},{"euler":{"heading":57.5807711728998,"pitch":-105.82606248284247,"roll":14.105233935505487},"location":"Right Knee"},{"euler":{"heading":16.48962336604275,"pitch":-126.97938643837306,"roll":54.757151433360626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.31"} +{"sensors":[{"euler":{"heading":61.448771839984126,"pitch":131.25781513957264,"roll":23.914078326340665},"location":"Left Knee"},{"euler":{"heading":55.50486130568743,"pitch":98.5015803898489,"roll":14.600302882835381},"location":"Left Ankle"},{"euler":{"heading":65.2571387367421,"pitch":-11.626456210213341,"roll":-11.847607823086346},"location":"Right Ankle"},{"euler":{"heading":134.0554938404865,"pitch":-162.46548572094656,"roll":53.77243742116847},"location":"Right Hip"},{"euler":{"heading":60.34144405560983,"pitch":-105.31845623455823,"roll":11.519710541954938},"location":"Right Knee"},{"euler":{"heading":16.790661029438475,"pitch":-127.15644779453575,"roll":54.968936290024565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.131"} +{"sensors":[{"euler":{"heading":58.12264465598572,"pitch":130.91953362561537,"roll":24.253920493706598},"location":"Left Knee"},{"euler":{"heading":55.94187517511868,"pitch":98.42642235086402,"roll":14.734022594551844},"location":"Left Ankle"},{"euler":{"heading":64.2814248630679,"pitch":-11.920060589192008,"roll":-11.925347040777712},"location":"Right Ankle"},{"euler":{"heading":135.43119445643785,"pitch":-161.66268714885192,"roll":52.720193679051626},"location":"Right Hip"},{"euler":{"heading":60.71354965004885,"pitch":-104.5991106111024,"roll":10.961489487759444},"location":"Right Knee"},{"euler":{"heading":17.180344926494627,"pitch":-127.86580301508218,"roll":55.32829266102211},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.232"} +{"sensors":[{"euler":{"heading":55.68538019038714,"pitch":130.32758026305385,"roll":24.278528444335937},"location":"Left Knee"},{"euler":{"heading":56.49143765760681,"pitch":98.30878011577761,"roll":15.110620335096659},"location":"Left Ankle"},{"euler":{"heading":66.0532823767611,"pitch":-12.328054530272807,"roll":-11.032812336699942},"location":"Right Ankle"},{"euler":{"heading":135.76307501079407,"pitch":-161.28391843396673,"roll":51.67942431114647},"location":"Right Hip"},{"euler":{"heading":58.748444685043964,"pitch":-103.82044954999218,"roll":12.690340538983499},"location":"Right Knee"},{"euler":{"heading":17.762310433845165,"pitch":-129.02297271357398,"roll":55.8829633949199},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.332"} +{"sensors":[{"euler":{"heading":54.14809217134843,"pitch":129.45107223674847,"roll":23.931925599902343},"location":"Left Knee"},{"euler":{"heading":57.604793891846136,"pitch":98.40915210419986,"roll":15.943308301586994},"location":"Left Ankle"},{"euler":{"heading":68.916704139085,"pitch":-12.826499077245526,"roll":-9.710781103029948},"location":"Right Ankle"},{"euler":{"heading":134.88676750971467,"pitch":-161.34302659057008,"roll":51.13648188003182},"location":"Right Hip"},{"euler":{"heading":55.81110021653957,"pitch":-103.23215459499296,"roll":15.640056485085148},"location":"Right Knee"},{"euler":{"heading":18.529829390460648,"pitch":-130.42692544221657,"roll":56.60091705542791},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.433"} +{"sensors":[{"euler":{"heading":53.570782954213584,"pitch":128.46221501307363,"roll":22.97623303991211},"location":"Left Knee"},{"euler":{"heading":59.344314502661526,"pitch":98.66198689377988,"roll":17.486477471428294},"location":"Left Ankle"},{"euler":{"heading":71.3000337251765,"pitch":-13.131349169520973,"roll":-8.739702992726954},"location":"Right Ankle"},{"euler":{"heading":133.5355907587432,"pitch":-161.59622393151307,"roll":50.99158369202864},"location":"Right Hip"},{"euler":{"heading":53.11124019488562,"pitch":-103.18393913549367,"roll":18.032300836576635},"location":"Right Knee"},{"euler":{"heading":19.658096451414583,"pitch":-132.39673289799492,"roll":57.44082534988512},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.533"} +{"sensors":[{"euler":{"heading":54.44495465879223,"pitch":127.76599351176628,"roll":20.9223597359209},"location":"Left Knee"},{"euler":{"heading":61.58488305239537,"pitch":98.9832882044019,"roll":20.150329724285466},"location":"Left Ankle"},{"euler":{"heading":72.83253035265885,"pitch":-13.111964252568878,"roll":-8.22823269345426},"location":"Right Ankle"},{"euler":{"heading":132.4632816828689,"pitch":-161.83660153836178,"roll":51.14867532282578},"location":"Right Hip"},{"euler":{"heading":50.99386617539706,"pitch":-103.6467952219443,"roll":19.61657075291897},"location":"Right Knee"},{"euler":{"heading":19.992286806273125,"pitch":-133.31330960819542,"roll":57.89674281489661},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.634"} +{"sensors":[{"euler":{"heading":56.531709192913006,"pitch":126.87064416058965,"roll":18.47387376232881},"location":"Left Knee"},{"euler":{"heading":64.82639474715583,"pitch":99.51620938396172,"roll":23.83529675185692},"location":"Left Ankle"},{"euler":{"heading":73.88052731739296,"pitch":-13.10076782731199,"roll":-8.030409424108834},"location":"Right Ankle"},{"euler":{"heading":131.12320351458203,"pitch":-162.3779413845256,"roll":51.740057790543204},"location":"Right Hip"},{"euler":{"heading":49.969479557857355,"pitch":-104.33836569974989,"roll":20.411163677627076},"location":"Right Knee"},{"euler":{"heading":18.968058125645815,"pitch":-131.67572864737588,"roll":57.75081853340696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.735"} +{"sensors":[{"euler":{"heading":57.622288273621706,"pitch":126.8335797445307,"roll":16.98273638609593},"location":"Left Knee"},{"euler":{"heading":66.69375527244024,"pitch":99.10208844556554,"roll":25.733017076671228},"location":"Left Ankle"},{"euler":{"heading":74.59247458565366,"pitch":-12.996941044580792,"roll":-8.05236848169795},"location":"Right Ankle"},{"euler":{"heading":130.38588316312382,"pitch":-162.76514724607304,"roll":52.50980201148889},"location":"Right Hip"},{"euler":{"heading":49.62878160207162,"pitch":-105.03577912977491,"roll":20.645047309864367},"location":"Right Knee"},{"euler":{"heading":17.508752313081235,"pitch":-129.9206557826383,"roll":56.97573668006626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.835"} +{"sensors":[{"euler":{"heading":54.60380944625953,"pitch":128.00022177007762,"roll":17.528212747486336},"location":"Left Knee"},{"euler":{"heading":65.01187974519623,"pitch":97.97937960100899,"roll":24.522215369004105},"location":"Left Ankle"},{"euler":{"heading":74.8269771270883,"pitch":-12.772246940122713,"roll":-8.359631633528156},"location":"Right Ankle"},{"euler":{"heading":130.10354484681145,"pitch":-163.10738252146575,"roll":53.29007181034},"location":"Right Hip"},{"euler":{"heading":49.965903441864455,"pitch":-105.59470121679742,"roll":20.32429257887793},"location":"Right Knee"},{"euler":{"heading":16.33912708177311,"pitch":-128.23484020437448,"roll":56.178163012059635},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.936"} +{"sensors":[{"euler":{"heading":49.39967850163358,"pitch":129.97519959306985,"roll":19.3316414727377},"location":"Left Knee"},{"euler":{"heading":61.0106917706766,"pitch":97.1126916409081,"roll":20.894993832103694},"location":"Left Ankle"},{"euler":{"heading":74.36927941437948,"pitch":-12.332522246110443,"roll":-8.917418470175342},"location":"Right Ankle"},{"euler":{"heading":130.12444036213031,"pitch":-163.43414426931918,"roll":54.104814629306006},"location":"Right Hip"},{"euler":{"heading":51.05056309767801,"pitch":-106.07898109511768,"roll":19.39186332099014},"location":"Right Knee"},{"euler":{"heading":15.9489643735958,"pitch":-127.31135618393704,"roll":55.67909671085367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.37"} +{"sensors":[{"euler":{"heading":45.309710651470226,"pitch":131.55892963376286,"roll":20.960977325463933},"location":"Left Knee"},{"euler":{"heading":57.753372593608944,"pitch":96.7076724768173,"roll":17.874244448893325},"location":"Left Ankle"},{"euler":{"heading":72.78860147294154,"pitch":-11.936770021499399,"roll":-9.813176623157808},"location":"Right Ankle"},{"euler":{"heading":130.43074632591728,"pitch":-163.97822984238726,"roll":54.80058316637541},"location":"Right Hip"},{"euler":{"heading":53.20175678791021,"pitch":-106.21483298560592,"roll":17.61517698889113},"location":"Right Knee"},{"euler":{"heading":16.14781793623622,"pitch":-126.74272056554332,"roll":55.4236870397683},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.137"} +{"sensors":[{"euler":{"heading":42.72873958632321,"pitch":132.12803667038656,"roll":22.22112959291754},"location":"Left Knee"},{"euler":{"heading":56.20928533424805,"pitch":96.81190522913558,"roll":16.230570004003994},"location":"Left Ankle"},{"euler":{"heading":69.61599132564739,"pitch":-11.73059301934946,"roll":-10.85060896084203},"location":"Right Ankle"},{"euler":{"heading":131.22517169332556,"pitch":-164.16165685814855,"roll":55.176774849737875},"location":"Right Hip"},{"euler":{"heading":56.500331109119195,"pitch":-105.78084968704533,"roll":14.872409290002016},"location":"Right Knee"},{"euler":{"heading":16.1267861426126,"pitch":-126.255948508989,"roll":55.38131833579148},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.238"} +{"sensors":[{"euler":{"heading":41.18086562769089,"pitch":131.9839830033479,"roll":23.149016633625784},"location":"Left Knee"},{"euler":{"heading":55.482106800823246,"pitch":97.11821470622202,"roll":15.195013003603595},"location":"Left Ankle"},{"euler":{"heading":65.85439219308265,"pitch":-11.557533717414515,"roll":-11.909298064757827},"location":"Right Ankle"},{"euler":{"heading":132.608904523993,"pitch":-163.50799117233367,"roll":54.83409736476409},"location":"Right Hip"},{"euler":{"heading":59.631547998207274,"pitch":-105.5027647183408,"roll":11.985168361001815},"location":"Right Knee"},{"euler":{"heading":16.51410752835134,"pitch":-126.4428536580901,"roll":55.61818650221233},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.339"} +{"sensors":[{"euler":{"heading":40.26277906492181,"pitch":131.3543347030131,"roll":23.85286497026321},"location":"Left Knee"},{"euler":{"heading":55.527646120740926,"pitch":97.53764323559983,"roll":14.725511703243237},"location":"Left Ankle"},{"euler":{"heading":63.94395297377438,"pitch":-11.845530345673064,"roll":-12.324618258282044},"location":"Right Ankle"},{"euler":{"heading":133.9542640715937,"pitch":-162.67594205510034,"roll":53.88193762828768},"location":"Right Hip"},{"euler":{"heading":61.005893198386545,"pitch":-104.95248824650672,"roll":10.642901524901633},"location":"Right Knee"},{"euler":{"heading":17.312696775516205,"pitch":-127.27356829228108,"roll":56.0813678519911},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.439"} +{"sensors":[{"euler":{"heading":39.917751158429624,"pitch":130.4314012327118,"roll":24.230078473236887},"location":"Left Knee"},{"euler":{"heading":56.13113150866683,"pitch":98.07762891203986,"roll":14.784210532918914},"location":"Left Ankle"},{"euler":{"heading":64.70580767639694,"pitch":-12.629727311105757,"roll":-11.698406432453838},"location":"Right Ankle"},{"euler":{"heading":134.54008766443434,"pitch":-162.21459784959032,"roll":52.70624386545891},"location":"Right Hip"},{"euler":{"heading":60.04280387854789,"pitch":-103.91973942185605,"roll":11.572361372411471},"location":"Right Knee"},{"euler":{"heading":18.175177097964585,"pitch":-128.489961463053,"roll":56.68573106679199},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.540"} +{"sensors":[{"euler":{"heading":40.219726042586665,"pitch":129.36951110944062,"roll":24.025820625913198},"location":"Left Knee"},{"euler":{"heading":56.98051835780015,"pitch":98.55736602083587,"roll":15.262039479627024},"location":"Left Ankle"},{"euler":{"heading":67.32272690875725,"pitch":-13.235504579995181,"roll":-10.322315789208455},"location":"Right Ankle"},{"euler":{"heading":133.9860788979909,"pitch":-162.1868880646313,"roll":51.94811947891302},"location":"Right Hip"},{"euler":{"heading":57.394773490693105,"pitch":-103.01526547967045,"roll":14.327625235170323},"location":"Right Knee"},{"euler":{"heading":19.063909388168128,"pitch":-130.0034653167477,"roll":57.410907960112795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.641"} +{"sensors":[{"euler":{"heading":41.160253438328,"pitch":128.27630999849657,"roll":23.24823856332188},"location":"Left Knee"},{"euler":{"heading":58.369966522020135,"pitch":99.0391294187523,"roll":16.37333553166432},"location":"Left Ankle"},{"euler":{"heading":70.39670421788152,"pitch":-13.574454121995663,"roll":-9.03383421028761},"location":"Right Ankle"},{"euler":{"heading":132.38747100819182,"pitch":-162.57444925816816,"roll":51.73455753102172},"location":"Right Hip"},{"euler":{"heading":54.28029614162379,"pitch":-102.5699889317034,"roll":17.219862711653292},"location":"Right Knee"},{"euler":{"heading":20.113768449351316,"pitch":-132.09686878507296,"roll":58.20106716410152},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.742"} +{"sensors":[{"euler":{"heading":43.09422809449521,"pitch":127.19242899864692,"roll":21.554664706989694},"location":"Left Knee"},{"euler":{"heading":60.43296986981812,"pitch":99.44771647687706,"roll":18.61725197849789},"location":"Left Ankle"},{"euler":{"heading":72.36328379609337,"pitch":-13.773258709796098,"roll":-8.31170078925885},"location":"Right Ankle"},{"euler":{"heading":131.25497390737263,"pitch":-162.82950433235135,"roll":51.70485177791956},"location":"Right Hip"},{"euler":{"heading":51.83351652746142,"pitch":-102.75674003853308,"roll":19.20412644048796},"location":"Right Knee"},{"euler":{"heading":21.308641604416184,"pitch":-133.98718190656567,"roll":59.005960447691365},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.843"} +{"sensors":[{"euler":{"heading":46.30355528504569,"pitch":126.51068609878223,"roll":19.036698236290725},"location":"Left Knee"},{"euler":{"heading":64.14592288283632,"pitch":100.57794482918936,"roll":22.3930267806481},"location":"Left Ankle"},{"euler":{"heading":73.54570541648404,"pitch":-13.795932838816489,"roll":-7.961780710332966},"location":"Right Ankle"},{"euler":{"heading":130.13572651663537,"pitch":-163.2090538991162,"roll":52.096866600127605},"location":"Right Hip"},{"euler":{"heading":50.34391487471528,"pitch":-103.33731603467977,"roll":20.364963796439167},"location":"Right Knee"},{"euler":{"heading":20.771527443974566,"pitch":-133.4822137159091,"roll":59.15536440292223},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.944"} +{"sensors":[{"euler":{"heading":49.029449756541126,"pitch":126.222117488904,"roll":17.039278412661652},"location":"Left Knee"},{"euler":{"heading":66.24383059455269,"pitch":100.30140034627043,"roll":24.85372410258329},"location":"Left Ankle"},{"euler":{"heading":74.34113487483565,"pitch":-13.62258955493484,"roll":-7.953102639299669},"location":"Right Ankle"},{"euler":{"heading":129.27840386497184,"pitch":-163.5631485092046,"roll":52.780929940114845},"location":"Right Hip"},{"euler":{"heading":49.63452338724376,"pitch":-104.1535844312118,"roll":20.82846741679525},"location":"Right Knee"},{"euler":{"heading":19.36937469957711,"pitch":-131.7839923443182,"roll":58.633577962630014},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.45"} +{"sensors":[{"euler":{"heading":48.32025478088702,"pitch":127.09990574001361,"roll":16.910350571395487},"location":"Left Knee"},{"euler":{"heading":65.30694753509742,"pitch":99.00876031164339,"roll":24.51210169232496},"location":"Left Ankle"},{"euler":{"heading":74.58202138735209,"pitch":-13.222830599441357,"roll":-8.357792375369701},"location":"Right Ankle"},{"euler":{"heading":128.84431347847465,"pitch":-163.84433365828414,"roll":53.55283694610337},"location":"Right Hip"},{"euler":{"heading":49.58982104851939,"pitch":-104.90697598809062,"roll":20.764370675115725},"location":"Right Knee"},{"euler":{"heading":17.8574372296194,"pitch":-129.92434310988637,"roll":57.78897016636701},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.147"} +{"sensors":[{"euler":{"heading":44.36322930279832,"pitch":128.88366516601226,"roll":18.32556551425594},"location":"Left Knee"},{"euler":{"heading":61.88250278158768,"pitch":97.80163428047905,"roll":21.704641523092466},"location":"Left Ankle"},{"euler":{"heading":74.23006924861689,"pitch":-12.731797539497222,"roll":-8.809513137832731},"location":"Right Ankle"},{"euler":{"heading":128.7161321306272,"pitch":-164.27240029245573,"roll":54.31005325149303},"location":"Right Hip"},{"euler":{"heading":50.22458894366745,"pitch":-105.50377838928156,"roll":20.144183607604152},"location":"Right Knee"},{"euler":{"heading":16.82169350665746,"pitch":-128.36315879889773,"roll":57.11007314973031},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.248"} +{"sensors":[{"euler":{"heading":40.30815637251849,"pitch":130.87029864941104,"roll":19.993008962830345},"location":"Left Knee"},{"euler":{"heading":58.263002503428915,"pitch":97.12147085243114,"roll":18.371677370783217},"location":"Left Ankle"},{"euler":{"heading":72.9820623237552,"pitch":-12.1898677855475,"roll":-9.62856182404946},"location":"Right Ankle"},{"euler":{"heading":129.01326891756446,"pitch":-164.75141026321015,"roll":55.04154792634373},"location":"Right Hip"},{"euler":{"heading":51.86463004930071,"pitch":-105.7846505503534,"roll":18.767265246843735},"location":"Right Knee"},{"euler":{"heading":16.552024155991717,"pitch":-127.61434291900797,"roll":56.64906583475728},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.349"} +{"sensors":[{"euler":{"heading":37.96484073526664,"pitch":131.76451878446994,"roll":21.37495806654731},"location":"Left Knee"},{"euler":{"heading":56.48670225308602,"pitch":97.06557376718803,"roll":16.503259633704896},"location":"Left Ankle"},{"euler":{"heading":70.33385609137969,"pitch":-12.18963100699275,"roll":-10.484455641644514},"location":"Right Ankle"},{"euler":{"heading":129.718192025808,"pitch":-165.10751923688915,"roll":55.48739313370936},"location":"Right Hip"},{"euler":{"heading":54.99066704437064,"pitch":-105.39368549531807,"roll":16.253038722159364},"location":"Right Knee"},{"euler":{"heading":16.421821740392545,"pitch":-127.11540862710717,"roll":56.390409251281554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.451"} +{"sensors":[{"euler":{"heading":36.92460666173998,"pitch":131.87556690602295,"roll":22.29996225989258},"location":"Left Knee"},{"euler":{"heading":55.350532027777426,"pitch":97.05276639046923,"roll":15.334183670334406},"location":"Left Ankle"},{"euler":{"heading":66.58172048224172,"pitch":-11.883167906293474,"roll":-11.461010077480063},"location":"Right Ankle"},{"euler":{"heading":131.0901228232272,"pitch":-164.42801731320026,"roll":55.226153820338425},"location":"Right Hip"},{"euler":{"heading":58.18535033993358,"pitch":-105.36056694578627,"roll":13.315234849943428},"location":"Right Knee"},{"euler":{"heading":16.56088956635329,"pitch":-126.86636776439646,"roll":56.5013683261534},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.552"} +{"sensors":[{"euler":{"heading":36.36339599556598,"pitch":131.54426021542065,"roll":22.976216033903324},"location":"Left Knee"},{"euler":{"heading":54.79047882499969,"pitch":97.13498975142232,"roll":14.644515303300965},"location":"Left Ankle"},{"euler":{"heading":64.31104843401755,"pitch":-11.932351115664128,"roll":-11.908659069732057},"location":"Right Ankle"},{"euler":{"heading":132.46861054090448,"pitch":-163.56021558188021,"roll":54.422288438304584},"location":"Right Hip"},{"euler":{"heading":59.91681530594022,"pitch":-104.97451025120766,"roll":11.589961364949085},"location":"Right Knee"},{"euler":{"heading":16.96105060971796,"pitch":-127.29848098795682,"roll":56.79498149353806},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.652"} +{"sensors":[{"euler":{"heading":36.26455639600938,"pitch":130.88983419387858,"roll":23.391094430512993},"location":"Left Knee"},{"euler":{"heading":55.13018094249972,"pitch":97.4152407762801,"roll":14.555063772970868},"location":"Left Ankle"},{"euler":{"heading":64.7236935906158,"pitch":-12.720366004097716,"roll":-11.461543162758852},"location":"Right Ankle"},{"euler":{"heading":133.38424948681404,"pitch":-162.9541940236922,"roll":53.26755959447413},"location":"Right Hip"},{"euler":{"heading":59.5313837753462,"pitch":-104.1895592260869,"roll":12.074715228454178},"location":"Right Knee"},{"euler":{"heading":17.714945548746165,"pitch":-128.42488288916113,"roll":57.327983344184254},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.754"} +{"sensors":[{"euler":{"heading":36.76310075640845,"pitch":130.05710077449072,"roll":23.308234987461695},"location":"Left Knee"},{"euler":{"heading":55.95466284824975,"pitch":97.69871669865209,"roll":15.043307395673782},"location":"Left Ankle"},{"euler":{"heading":67.45132423155421,"pitch":-13.554579403687946,"roll":-10.240388846482968},"location":"Right Ankle"},{"euler":{"heading":133.11457453813264,"pitch":-162.896274621323,"roll":52.34080363502672},"location":"Right Hip"},{"euler":{"heading":57.284495397811575,"pitch":-103.19560330347821,"roll":14.492243705608761},"location":"Right Knee"},{"euler":{"heading":18.56845099387155,"pitch":-129.957394600245,"roll":57.97018500976583},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.855"} +{"sensors":[{"euler":{"heading":37.91179068076761,"pitch":129.13264069704167,"roll":22.627411488715524},"location":"Left Knee"},{"euler":{"heading":57.22169656342477,"pitch":97.98509502878689,"roll":16.132726656106406},"location":"Left Ankle"},{"euler":{"heading":70.69994180839879,"pitch":-14.174121463319151,"roll":-8.872599961834672},"location":"Right Ankle"},{"euler":{"heading":131.8593670843194,"pitch":-163.1566471591907,"roll":51.99422327152405},"location":"Right Hip"},{"euler":{"heading":54.237295858030414,"pitch":-102.7072929731304,"roll":17.611769335047885},"location":"Right Knee"},{"euler":{"heading":19.567855894484396,"pitch":-131.8866551402205,"roll":58.72941650878924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.955"} +{"sensors":[{"euler":{"heading":39.976861612690854,"pitch":128.2443766273375,"roll":21.06467033984397},"location":"Left Knee"},{"euler":{"heading":59.2432769070823,"pitch":98.3053355259082,"roll":18.313203990495765},"location":"Left Ankle"},{"euler":{"heading":72.78619762755892,"pitch":-14.275459316987238,"roll":-8.079089965651205},"location":"Right Ankle"},{"euler":{"heading":130.74843037588744,"pitch":-163.41598244327162,"roll":51.78230094437164},"location":"Right Hip"},{"euler":{"heading":51.488566272227374,"pitch":-102.96781367581735,"roll":19.894342401543096},"location":"Right Knee"},{"euler":{"heading":20.592320305035955,"pitch":-133.72298962619845,"roll":59.500224857910325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.56"} +{"sensors":[{"euler":{"heading":43.597925451421766,"pitch":127.45743896460374,"roll":18.595703305859573},"location":"Left Knee"},{"euler":{"heading":63.100199216374065,"pitch":99.72480197331738,"roll":22.013133591446188},"location":"Left Ankle"},{"euler":{"heading":73.93257786480302,"pitch":-14.160413385288514,"roll":-7.758680969086084},"location":"Right Ankle"},{"euler":{"heading":129.79858733829872,"pitch":-163.67438419894447,"roll":51.97282084993448},"location":"Right Hip"},{"euler":{"heading":49.63345964500464,"pitch":-103.53978230823563,"roll":21.273658161388788},"location":"Right Knee"},{"euler":{"heading":19.93308827453236,"pitch":-133.04444066357863,"roll":59.643952372119294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.156"} +{"sensors":[{"euler":{"heading":47.09438290627959,"pitch":127.02419506814337,"roll":16.467382975273615},"location":"Left Knee"},{"euler":{"heading":65.90892929473667,"pitch":100.03357177598565,"roll":25.02432023230157},"location":"Left Ankle"},{"euler":{"heading":74.80182007832272,"pitch":-14.019372046759663,"roll":-7.664062872177476},"location":"Right Ankle"},{"euler":{"heading":129.07497860446884,"pitch":-163.94444577905,"roll":52.52553876494103},"location":"Right Hip"},{"euler":{"heading":48.78261368050418,"pitch":-104.31080407741207,"roll":21.871292345249913},"location":"Right Knee"},{"euler":{"heading":18.539779447079127,"pitch":-131.24624659722076,"roll":59.01705713490736},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.257"} +{"sensors":[{"euler":{"heading":47.74744461565163,"pitch":127.57177556132903,"roll":16.064394677746254},"location":"Left Knee"},{"euler":{"heading":65.755536365263,"pitch":99.26771459838709,"roll":25.340638209071415},"location":"Left Ankle"},{"euler":{"heading":75.42788807049045,"pitch":-13.829934842083698,"roll":-7.81015658495973},"location":"Right Ankle"},{"euler":{"heading":128.84248074402197,"pitch":-164.081251201145,"roll":53.235484888446926},"location":"Right Hip"},{"euler":{"heading":48.52935231245376,"pitch":-104.99222366967086,"roll":22.00916311072492},"location":"Right Knee"},{"euler":{"heading":17.154551502371216,"pitch":-129.40287193749867,"roll":58.09660142141663},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.358"} +{"sensors":[{"euler":{"heading":44.397700154086465,"pitch":129.22709800519613,"roll":17.420455209971628},"location":"Left Knee"},{"euler":{"heading":62.611232728736695,"pitch":98.12219313854838,"roll":22.906574388164277},"location":"Left Ankle"},{"euler":{"heading":75.4788492634414,"pitch":-13.484441357875328,"roll":-8.085390926463758},"location":"Right Ankle"},{"euler":{"heading":128.98948266961978,"pitch":-164.1731260810305,"roll":53.924436399602236},"location":"Right Hip"},{"euler":{"heading":48.84516708120839,"pitch":-105.63050130270378,"roll":21.60199679965243},"location":"Right Knee"},{"euler":{"heading":16.057846352134096,"pitch":-127.88133474374881,"roll":57.30569127927497},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.459"} +{"sensors":[{"euler":{"heading":69.19543013867782,"pitch":131.3731382046765,"roll":19.172159688974467},"location":"Left Knee"},{"euler":{"heading":58.72510945586303,"pitch":97.14122382469354,"roll":19.390916949347847},"location":"Left Ankle"},{"euler":{"heading":74.78096433709726,"pitch":-12.954747222087795,"roll":-8.758101833817381},"location":"Right Ankle"},{"euler":{"heading":129.47803440265778,"pitch":-164.31206347292746,"roll":54.63824275964202},"location":"Right Hip"},{"euler":{"heading":50.04190037308756,"pitch":-106.06120117243341,"roll":20.529297119687186},"location":"Right Knee"},{"euler":{"heading":15.808311716920688,"pitch":-127.09945126937393,"roll":56.75637215134747},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.560"} +{"sensors":[{"euler":{"heading":63.74463712481004,"pitch":132.54832438420885,"roll":20.754943720077023},"location":"Left Knee"},{"euler":{"heading":56.38384851027673,"pitch":97.12710144222419,"roll":16.958075254413064},"location":"Left Ankle"},{"euler":{"heading":73.03411790338754,"pitch":-12.496772499879016,"roll":-9.676041650435643},"location":"Right Ankle"},{"euler":{"heading":130.161480962392,"pitch":-164.6433571256347,"roll":55.31816848367782},"location":"Right Hip"},{"euler":{"heading":52.2814603357788,"pitch":-106.14258105519008,"roll":18.613867407718466},"location":"Right Knee"},{"euler":{"heading":15.83998054522862,"pitch":-126.63325614243655,"roll":56.374484936212724},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.662"} +{"sensors":[{"euler":{"heading":59.89517341232904,"pitch":132.80599194578798,"roll":21.898199348069323},"location":"Left Knee"},{"euler":{"heading":55.282963659249056,"pitch":97.08939129800177,"roll":15.806017728971756},"location":"Left Ankle"},{"euler":{"heading":69.63695611304878,"pitch":-11.797095249891116,"roll":-10.845937485392078},"location":"Right Ankle"},{"euler":{"heading":131.5515828661528,"pitch":-164.26652141307125,"roll":55.34260163531004},"location":"Right Hip"},{"euler":{"heading":55.44706430220093,"pitch":-105.94082294967109,"roll":15.70248066694662},"location":"Right Knee"},{"euler":{"heading":16.005982490705758,"pitch":-126.32618052819291,"roll":56.39328644259145},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.762"} +{"sensors":[{"euler":{"heading":56.83690607109613,"pitch":132.46914275120918,"roll":22.802129413262392},"location":"Left Knee"},{"euler":{"heading":54.667167293324155,"pitch":97.1617021682016,"roll":14.900415956074582},"location":"Left Ankle"},{"euler":{"heading":66.5420105017439,"pitch":-11.767385724902006,"roll":-11.523843736852871},"location":"Right Ankle"},{"euler":{"heading":133.16517457953753,"pitch":-163.4086192717641,"roll":54.677091471779036},"location":"Right Hip"},{"euler":{"heading":58.02735787198084,"pitch":-105.52174065470398,"roll":13.269732600251958},"location":"Right Knee"},{"euler":{"heading":16.52413424163518,"pitch":-126.79356247537362,"roll":56.64145779833231},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.863"} +{"sensors":[{"euler":{"heading":54.52821546398652,"pitch":131.85347847608827,"roll":23.340666471936157},"location":"Left Knee"},{"euler":{"heading":54.56295056399175,"pitch":97.28303195138145,"roll":14.522874360467124},"location":"Left Ankle"},{"euler":{"heading":65.89405945156952,"pitch":-12.428147152411807,"roll":-11.471459363167584},"location":"Right Ankle"},{"euler":{"heading":134.5861571215838,"pitch":-162.6302573445877,"roll":53.55313232460114},"location":"Right Hip"},{"euler":{"heading":58.76837208478276,"pitch":-104.87581658923358,"roll":12.667759340226763},"location":"Right Knee"},{"euler":{"heading":17.271720817471664,"pitch":-127.79545622783627,"roll":57.08356201849909},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.964"} +{"sensors":[{"euler":{"heading":53.062893917587864,"pitch":130.93063062847943,"roll":23.51909982474254},"location":"Left Knee"},{"euler":{"heading":55.094155507592575,"pitch":97.56097875624332,"roll":14.626836924420413},"location":"Left Ankle"},{"euler":{"heading":67.89840350641256,"pitch":-13.222832437170625,"roll":-10.461813426850826},"location":"Right Ankle"},{"euler":{"heading":135.09004140942542,"pitch":-162.31098161012892,"roll":52.47281909214102},"location":"Right Hip"},{"euler":{"heading":57.36028487630448,"pitch":-103.97573493031022,"roll":14.194733406204087},"location":"Right Knee"},{"euler":{"heading":18.307048735724496,"pitch":-129.30341060505265,"roll":57.67520581664918},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.64"} +{"sensors":[{"euler":{"heading":52.33160452582908,"pitch":129.8375675656315,"roll":23.210939842268285},"location":"Left Knee"},{"euler":{"heading":56.078489956833316,"pitch":97.96113088061898,"roll":15.232903231978371},"location":"Left Ankle"},{"euler":{"heading":70.99606315577131,"pitch":-13.856799193453563,"roll":-8.959382084165743},"location":"Right Ankle"},{"euler":{"heading":134.48103726848288,"pitch":-162.40488344911603,"roll":51.91303718292692},"location":"Right Hip"},{"euler":{"heading":54.64925638867403,"pitch":-103.32191143727921,"roll":17.00651006558368},"location":"Right Knee"},{"euler":{"heading":19.495093862152046,"pitch":-131.08556954454738,"roll":58.445185234984265},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.164"} +{"sensors":[{"euler":{"heading":52.53594407324617,"pitch":128.66006080906834,"roll":22.196095858041456},"location":"Left Knee"},{"euler":{"heading":57.62689096114998,"pitch":98.44001779255709,"roll":16.615862908780535},"location":"Left Ankle"},{"euler":{"heading":73.29645684019418,"pitch":-14.033619274108206,"roll":-8.08219387574917},"location":"Right Ankle"},{"euler":{"heading":133.8954335416346,"pitch":-162.45814510420442,"roll":51.60923346463423},"location":"Right Hip"},{"euler":{"heading":52.153080749806634,"pitch":-103.30222029355129,"roll":19.205859059025315},"location":"Right Knee"},{"euler":{"heading":21.033084475936842,"pitch":-133.30826259009265,"roll":59.27566671148584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.264"} +{"sensors":[{"euler":{"heading":54.38234966592156,"pitch":127.87530472816151,"roll":19.94523627223731},"location":"Left Knee"},{"euler":{"heading":59.97045186503499,"pitch":99.28351601330138,"roll":19.70427661790248},"location":"Left Ankle"},{"euler":{"heading":74.64181115617477,"pitch":-14.067757346697386,"roll":-7.642724488174253},"location":"Right Ankle"},{"euler":{"heading":133.39339018747114,"pitch":-162.58108059378398,"roll":51.65456011817081},"location":"Right Hip"},{"euler":{"heading":50.39402267482597,"pitch":-103.67199826419616,"roll":20.579023153122783},"location":"Right Knee"},{"euler":{"heading":21.51727602834316,"pitch":-133.9399363310834,"roll":59.685600040337256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.365"} +{"sensors":[{"euler":{"heading":56.919114699329405,"pitch":126.90027425534537,"roll":17.588212645013577},"location":"Left Knee"},{"euler":{"heading":63.01090667853149,"pitch":100.16141441197125,"roll":23.090098956112232},"location":"Left Ankle"},{"euler":{"heading":75.46513004055728,"pitch":-13.760981612027647,"roll":-7.559702039356829},"location":"Right Ankle"},{"euler":{"heading":132.49155116872402,"pitch":-162.89172253440557,"roll":52.15160410635373},"location":"Right Hip"},{"euler":{"heading":49.198370407343376,"pitch":-104.52979843777655,"roll":21.314870837810506},"location":"Right Knee"},{"euler":{"heading":20.559298425508846,"pitch":-131.80844269797507,"roll":59.49204003630353},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.466"} +{"sensors":[{"euler":{"heading":57.89595322939647,"pitch":127.02274682981083,"roll":16.47314138051222},"location":"Left Knee"},{"euler":{"heading":64.07856601067834,"pitch":99.54527297077414,"roll":24.31858906050101},"location":"Left Ankle"},{"euler":{"heading":75.89361703650155,"pitch":-13.266133450824883,"roll":-7.891231835421146},"location":"Right Ankle"},{"euler":{"heading":132.1486460518516,"pitch":-162.95880028096502,"roll":52.767693695718364},"location":"Right Hip"},{"euler":{"heading":48.67853336660904,"pitch":-105.39556859399889,"roll":21.483383754029457},"location":"Right Knee"},{"euler":{"heading":19.072118582957962,"pitch":-129.70884842817756,"roll":58.59908603267318},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.567"} +{"sensors":[{"euler":{"heading":54.60635790645682,"pitch":128.37047214682974,"roll":17.325827242461},"location":"Left Knee"},{"euler":{"heading":61.97695940961051,"pitch":98.30949567369673,"roll":22.674230154450914},"location":"Left Ankle"},{"euler":{"heading":75.87300533285139,"pitch":-12.827020105742394,"roll":-8.233358651879032},"location":"Right Ankle"},{"euler":{"heading":132.07128144666646,"pitch":-163.12542025286854,"roll":53.47842432614652},"location":"Right Hip"},{"euler":{"heading":48.94818002994814,"pitch":-106.07476173459901,"roll":21.091295378626512},"location":"Right Knee"},{"euler":{"heading":17.808656724662168,"pitch":-127.82546358535981,"roll":57.720427429405866},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.667"} +{"sensors":[{"euler":{"heading":49.79572211581114,"pitch":130.36467493214678,"roll":18.980744518214898},"location":"Left Knee"},{"euler":{"heading":58.47301346864946,"pitch":97.09104610632706,"roll":19.325557139005824},"location":"Left Ankle"},{"euler":{"heading":75.22320479956626,"pitch":-12.331818095168154,"roll":-8.72252278669113},"location":"Right Ankle"},{"euler":{"heading":132.31415330199982,"pitch":-163.38787822758167,"roll":54.255581893531875},"location":"Right Hip"},{"euler":{"heading":50.07836202695333,"pitch":-106.56103556113911,"roll":20.075915840763862},"location":"Right Knee"},{"euler":{"heading":17.21529105219595,"pitch":-126.54916722682384,"roll":57.14213468646528},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.768"} +{"sensors":[{"euler":{"heading":46.33489990423002,"pitch":131.62820743893212,"roll":20.595170066393408},"location":"Left Knee"},{"euler":{"heading":55.869462121784515,"pitch":96.71944149569435,"roll":16.668001425105242},"location":"Left Ankle"},{"euler":{"heading":73.71963431960964,"pitch":-11.89863628565134,"roll":-9.531520508022016},"location":"Right Ankle"},{"euler":{"heading":132.94523797179986,"pitch":-163.6803404048235,"roll":55.042523704178684},"location":"Right Hip"},{"euler":{"heading":52.389275824258,"pitch":-106.6549320050252,"roll":18.155824256687474},"location":"Right Knee"},{"euler":{"heading":17.287511946976355,"pitch":-125.88175050414145,"roll":56.827921217818755},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.870"} +{"sensors":[{"euler":{"heading":43.95140991380702,"pitch":132.11538669503892,"roll":21.79190305975407},"location":"Left Knee"},{"euler":{"heading":54.68876590960606,"pitch":96.42249734612493,"roll":15.538701282594717},"location":"Left Ankle"},{"euler":{"heading":70.47267088764868,"pitch":-11.652522657086207,"roll":-10.678368457219815},"location":"Right Ankle"},{"euler":{"heading":134.21946417461987,"pitch":-163.38730636434116,"roll":55.23202133376082},"location":"Right Hip"},{"euler":{"heading":55.7815982418322,"pitch":-106.22068880452268,"roll":15.258991831018726},"location":"Right Knee"},{"euler":{"heading":17.33376075227872,"pitch":-125.48732545372732,"roll":56.782629096036885},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.970"} +{"sensors":[{"euler":{"heading":42.25001892242632,"pitch":132.09759802553504,"roll":22.643962753778663},"location":"Left Knee"},{"euler":{"heading":53.88238931864546,"pitch":96.16149761151243,"roll":14.697331154335245},"location":"Left Ankle"},{"euler":{"heading":66.88790379888381,"pitch":-11.612270391377587,"roll":-11.585531611497833},"location":"Right Ankle"},{"euler":{"heading":136.0975177571579,"pitch":-162.44857572790704,"roll":54.61506920038474},"location":"Right Hip"},{"euler":{"heading":58.85968841764898,"pitch":-105.81111992407043,"roll":12.520592647916853},"location":"Right Knee"},{"euler":{"heading":17.725384677050847,"pitch":-125.8385929083546,"roll":57.029366186433194},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.72"} +{"sensors":[{"euler":{"heading":41.02501703018369,"pitch":131.76283822298154,"roll":23.223316478400797},"location":"Left Knee"},{"euler":{"heading":53.65665038678092,"pitch":95.9640978503612,"roll":14.383848038901721},"location":"Left Ankle"},{"euler":{"heading":65.52411341899543,"pitch":-12.044793352239829,"roll":-11.82697845034805},"location":"Right Ankle"},{"euler":{"heading":137.6315159814421,"pitch":-161.54121815511635,"roll":53.54106228034627},"location":"Right Hip"},{"euler":{"heading":59.81121957588408,"pitch":-105.23000793166338,"roll":11.731033383125169},"location":"Right Knee"},{"euler":{"heading":18.309096209345764,"pitch":-126.77348361751913,"roll":57.48267956778987},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.172"} +{"sensors":[{"euler":{"heading":40.60376532716532,"pitch":131.0053044006834,"roll":23.444734830560716},"location":"Left Knee"},{"euler":{"heading":54.10348534810283,"pitch":96.01143806532508,"roll":14.59546323501155},"location":"Left Ankle"},{"euler":{"heading":66.83420207709588,"pitch":-12.852814017015845,"roll":-11.094280605313246},"location":"Right Ankle"},{"euler":{"heading":138.1496143832979,"pitch":-161.1058463396047,"roll":52.42445605231164},"location":"Right Hip"},{"euler":{"heading":58.51134761829567,"pitch":-104.43200713849706,"roll":13.101680044812653},"location":"Right Knee"},{"euler":{"heading":19.090686588411188,"pitch":-128.09613525576722,"roll":58.12191161101089},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.273"} +{"sensors":[{"euler":{"heading":40.92463879444879,"pitch":130.11102396061506,"roll":23.131511347504645},"location":"Left Knee"},{"euler":{"heading":54.968136813292546,"pitch":96.11654425879257,"roll":15.285916911510396},"location":"Left Ankle"},{"euler":{"heading":69.4570318693863,"pitch":-13.617532615314262,"roll":-9.728602544781921},"location":"Right Ankle"},{"euler":{"heading":137.5221529449681,"pitch":-161.16401170564424,"roll":51.71951044708048},"location":"Right Hip"},{"euler":{"heading":55.87271285646611,"pitch":-103.68255642464734,"roll":15.904012040331388},"location":"Right Knee"},{"euler":{"heading":19.93161792957007,"pitch":-129.7552717301905,"roll":58.8847204499098},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.374"} +{"sensors":[{"euler":{"heading":41.98842491500391,"pitch":129.17492156455356,"roll":22.168360212754184},"location":"Left Knee"},{"euler":{"heading":56.408823131963295,"pitch":96.30488983291332,"roll":16.713575220359356},"location":"Left Ankle"},{"euler":{"heading":71.77382868244767,"pitch":-13.849529353782836,"roll":-8.74324229030373},"location":"Right Ankle"},{"euler":{"heading":136.1386876504713,"pitch":-161.47886053507983,"roll":51.40380940237244},"location":"Right Hip"},{"euler":{"heading":53.0854415708195,"pitch":-103.59555078218261,"roll":18.45736083629825},"location":"Right Knee"},{"euler":{"heading":20.975956136613064,"pitch":-131.97974455717144,"roll":59.71499840491882},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.475"} +{"sensors":[{"euler":{"heading":44.32708242350352,"pitch":128.33867940809822,"roll":20.164024191478763},"location":"Left Knee"},{"euler":{"heading":58.77419081876697,"pitch":96.76815084962199,"roll":19.61096769832342},"location":"Left Ankle"},{"euler":{"heading":72.8839458142029,"pitch":-13.883326418404554,"roll":-8.425168061273357},"location":"Right Ankle"},{"euler":{"heading":135.15606888542416,"pitch":-161.65597448157183,"roll":51.294678462135195},"location":"Right Hip"},{"euler":{"heading":51.10814741373755,"pitch":-103.99224570396436,"roll":20.055374752668428},"location":"Right Knee"},{"euler":{"heading":21.465860522951758,"pitch":-132.9880201014543,"roll":60.35599856442694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.576"} +{"sensors":[{"euler":{"heading":47.82562418115317,"pitch":127.47981146728839,"roll":17.628871772330886},"location":"Left Knee"},{"euler":{"heading":61.871771736890274,"pitch":97.54133576465979,"roll":23.29987092849108},"location":"Left Ankle"},{"euler":{"heading":73.6018012327826,"pitch":-13.782493776564099,"roll":-8.345151255146021},"location":"Right Ankle"},{"euler":{"heading":133.80296199688175,"pitch":-162.14037703341467,"roll":51.71521061592168},"location":"Right Hip"},{"euler":{"heading":49.9160826723638,"pitch":-104.75552113356792,"roll":20.912337277401587},"location":"Right Knee"},{"euler":{"heading":20.463024470656585,"pitch":-131.23921809130889,"roll":60.33914870798425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.676"} +{"sensors":[{"euler":{"heading":50.26181176303785,"pitch":127.43183032055956,"roll":15.972234595097797},"location":"Left Knee"},{"euler":{"heading":63.622094563201244,"pitch":96.83095218819382,"roll":25.357383835641972},"location":"Left Ankle"},{"euler":{"heading":73.95412110950436,"pitch":-13.635494398907689,"roll":-8.45438612963142},"location":"Right Ankle"},{"euler":{"heading":132.99141579719358,"pitch":-162.4825893300732,"roll":52.399939554329514},"location":"Right Hip"},{"euler":{"heading":49.56822440512742,"pitch":-105.42371902021114,"roll":21.16485354966143},"location":"Right Knee"},{"euler":{"heading":18.879222023590927,"pitch":-129.184046282178,"roll":59.592733837185826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.777"} +{"sensors":[{"euler":{"heading":48.67313058673406,"pitch":128.4698972885036,"roll":16.30001113558802},"location":"Left Knee"},{"euler":{"heading":62.32863510688112,"pitch":95.71035696937444,"roll":24.302895452077774},"location":"Left Ankle"},{"euler":{"heading":73.93370899855393,"pitch":-13.49069495901692,"roll":-8.677697516668278},"location":"Right Ankle"},{"euler":{"heading":132.74852421747423,"pitch":-162.7530803970659,"roll":53.15369559889656},"location":"Right Hip"},{"euler":{"heading":49.93640196461468,"pitch":-105.90009711819002,"roll":20.90461819469529},"location":"Right Knee"},{"euler":{"heading":17.422549821231833,"pitch":-127.19689165396021,"roll":58.702210453467245},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.877"} +{"sensors":[{"euler":{"heading":72.31206752806065,"pitch":130.31665755965324,"roll":17.870010022029216},"location":"Left Knee"},{"euler":{"heading":58.93952159619301,"pitch":94.470571272437,"roll":21.303855906869995},"location":"Left Ankle"},{"euler":{"heading":73.35283809869854,"pitch":-13.25412546311523,"roll":-9.12867776500145},"location":"Right Ankle"},{"euler":{"heading":132.8611717957268,"pitch":-163.04652235735932,"roll":53.95082603900691},"location":"Right Hip"},{"euler":{"heading":51.06776176815321,"pitch":-106.19758740637103,"roll":20.04540637522576},"location":"Right Knee"},{"euler":{"heading":16.56779483910865,"pitch":-125.73345248856418,"roll":58.03823940812052},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.978"} +{"sensors":[{"euler":{"heading":65.51836077525459,"pitch":132.15999180368792,"roll":19.583009019826296},"location":"Left Knee"},{"euler":{"heading":55.70181943657371,"pitch":93.9422641451933,"roll":18.210970316182998},"location":"Left Ankle"},{"euler":{"heading":71.99255428882869,"pitch":-12.878712916803707,"roll":-9.903309988501306},"location":"Right Ankle"},{"euler":{"heading":133.2063046161541,"pitch":-163.5293701216234,"roll":54.749493435106224},"location":"Right Hip"},{"euler":{"heading":53.02348559133789,"pitch":-106.30282866573393,"roll":18.453365737703187},"location":"Right Knee"},{"euler":{"heading":16.342265355197785,"pitch":-125.01635723970777,"roll":57.634415467308465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.79"} +{"sensors":[{"euler":{"heading":60.95402469772913,"pitch":132.86274262331912,"roll":20.905958117843667},"location":"Left Knee"},{"euler":{"heading":54.45663749291634,"pitch":93.79178773067399,"roll":16.821123284564695},"location":"Left Ankle"},{"euler":{"heading":69.15579885994582,"pitch":-12.653341625123337,"roll":-10.856728989651176},"location":"Right Ankle"},{"euler":{"heading":133.9981741545387,"pitch":-163.62643310946106,"roll":55.1807940915956},"location":"Right Hip"},{"euler":{"heading":56.1586370322041,"pitch":-105.91629579916054,"roll":15.801779163932869},"location":"Right Knee"},{"euler":{"heading":16.226788819678006,"pitch":-124.58347151573699,"roll":57.43347392057762},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.180"} +{"sensors":[{"euler":{"heading":57.49612222795622,"pitch":132.8202183609872,"roll":21.977862306059304},"location":"Left Knee"},{"euler":{"heading":53.72347374362471,"pitch":93.7251089576066,"roll":15.714010956108226},"location":"Left Ankle"},{"euler":{"heading":65.46521897395124,"pitch":-12.131757462611004,"roll":-12.046056090686058},"location":"Right Ankle"},{"euler":{"heading":135.25460673908483,"pitch":-162.92628979851494,"roll":54.86271468243604},"location":"Right Hip"},{"euler":{"heading":59.23027332898369,"pitch":-105.82466621924449,"roll":13.059101247539582},"location":"Right Knee"},{"euler":{"heading":16.622859937710206,"pitch":-124.8251243641633,"roll":57.55887652851985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.280"} +{"sensors":[{"euler":{"heading":54.8027600051606,"pitch":132.3194465248885,"roll":22.736326075453373},"location":"Left Knee"},{"euler":{"heading":53.54487636926224,"pitch":93.76509806184593,"roll":15.142609860497403},"location":"Left Ankle"},{"euler":{"heading":63.543697076556114,"pitch":-12.437331716349904,"roll":-12.553950481617452},"location":"Right Ankle"},{"euler":{"heading":136.65414606517635,"pitch":-162.12116081866347,"roll":53.87019321419244},"location":"Right Hip"},{"euler":{"heading":60.71349599608532,"pitch":-105.25469959732004,"roll":11.771941122785625},"location":"Right Knee"},{"euler":{"heading":17.33557394393919,"pitch":-125.61136192774697,"roll":57.96548887566787},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.382"} +{"sensors":[{"euler":{"heading":53.00373400464454,"pitch":131.53750187239964,"roll":23.025193467908036},"location":"Left Knee"},{"euler":{"heading":54.37788873233602,"pitch":94.03858825566135,"roll":15.497098874447664},"location":"Left Ankle"},{"euler":{"heading":64.3643273689005,"pitch":-13.331098544714916,"roll":-12.036055433455708},"location":"Right Ankle"},{"euler":{"heading":137.4012314586587,"pitch":-161.67779473679713,"roll":52.645673892773196},"location":"Right Hip"},{"euler":{"heading":59.97339639647679,"pitch":-104.47297963758804,"roll":12.707247010507064},"location":"Right Knee"},{"euler":{"heading":17.99576654954527,"pitch":-126.70647573497227,"roll":58.475189988101086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.482"} +{"sensors":[{"euler":{"heading":51.997110604180094,"pitch":130.64625168515968,"roll":22.816424121117233},"location":"Left Knee"},{"euler":{"heading":55.53384985910242,"pitch":94.32222943009522,"roll":16.297388987002897},"location":"Left Ankle"},{"euler":{"heading":67.13414463201046,"pitch":-14.047988690243425,"roll":-10.751199890110136},"location":"Right Ankle"},{"euler":{"heading":136.84860831279286,"pitch":-161.6787652631174,"roll":51.86235650349588},"location":"Right Hip"},{"euler":{"heading":57.21355675682911,"pitch":-103.93818167382923,"roll":15.524022309456358},"location":"Right Knee"},{"euler":{"heading":18.73993989459074,"pitch":-128.29832816147504,"roll":59.13392098929098},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.583"} +{"sensors":[{"euler":{"heading":51.81614954376208,"pitch":129.64412651664372,"roll":22.01603170900551},"location":"Left Knee"},{"euler":{"heading":57.24296487319218,"pitch":94.6712564870857,"roll":17.786400088302607},"location":"Left Ankle"},{"euler":{"heading":69.84573016880941,"pitch":-14.355689821219084,"roll":-9.601079901099125},"location":"Right Ankle"},{"euler":{"heading":135.26999748151357,"pitch":-162.09213873680568,"roll":51.51362085314629},"location":"Right Hip"},{"euler":{"heading":54.1234510811462,"pitch":-103.85686350644632,"roll":18.315370078510725},"location":"Right Knee"},{"euler":{"heading":19.728445905131668,"pitch":-130.36224534532755,"roll":59.89552889036189},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.684"} +{"sensors":[{"euler":{"heading":53.13453458938587,"pitch":128.84221386497936,"roll":20.03317853810496},"location":"Left Knee"},{"euler":{"heading":59.493668385872965,"pitch":95.01663083837713,"roll":20.60776007947235},"location":"Left Ankle"},{"euler":{"heading":71.19240715192848,"pitch":-14.263870839097176,"roll":-9.234721910989212},"location":"Right Ankle"},{"euler":{"heading":134.1617477333622,"pitch":-162.3579248631251,"roll":51.406008767831665},"location":"Right Hip"},{"euler":{"heading":51.75485597303158,"pitch":-104.30867715580169,"roll":20.133833070659655},"location":"Right Knee"},{"euler":{"heading":20.6431013146185,"pitch":-131.9447708107948,"roll":60.612226001325695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.785"} +{"sensors":[{"euler":{"heading":55.864831130447286,"pitch":127.79549247848144,"roll":17.54236068429446},"location":"Left Knee"},{"euler":{"heading":63.09430154728567,"pitch":96.34621775453941,"roll":24.390734071525117},"location":"Left Ankle"},{"euler":{"heading":72.06066643673563,"pitch":-14.09373375518746,"roll":-9.004999719890291},"location":"Right Ankle"},{"euler":{"heading":132.90182296002598,"pitch":-162.7346323768126,"roll":51.7154078910485},"location":"Right Hip"},{"euler":{"heading":50.210620375728425,"pitch":-105.06530944022153,"roll":21.17669976359369},"location":"Right Knee"},{"euler":{"heading":20.028791183156653,"pitch":-130.48154372971533,"roll":60.757253401193125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.886"} +{"sensors":[{"euler":{"heading":57.73459801740256,"pitch":127.5784432306333,"roll":15.881874615865016},"location":"Left Knee"},{"euler":{"heading":65.09737139255711,"pitch":96.23659597908548,"roll":26.670410664372607},"location":"Left Ankle"},{"euler":{"heading":72.65459979306206,"pitch":-13.846860379668714,"roll":-8.998249747901262},"location":"Right Ankle"},{"euler":{"heading":132.2303906640234,"pitch":-162.92366913913136,"roll":52.34386710194366},"location":"Right Hip"},{"euler":{"heading":49.470808338155585,"pitch":-105.76502849619938,"roll":21.65277978723432},"location":"Right Knee"},{"euler":{"heading":18.76341206484099,"pitch":-128.58963935674382,"roll":60.07527806107382},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.987"} +{"sensors":[{"euler":{"heading":55.82988821566231,"pitch":128.53309890756998,"roll":16.156187154278513},"location":"Left Knee"},{"euler":{"heading":63.893884253301394,"pitch":95.28168638117694,"roll":25.753369597935347},"location":"Left Ankle"},{"euler":{"heading":72.81413981375586,"pitch":-13.462174341701843,"roll":-9.173424773111135},"location":"Right Ankle"},{"euler":{"heading":131.98235159762106,"pitch":-163.02505222521825,"roll":53.0594803917493},"location":"Right Hip"},{"euler":{"heading":49.40497750434003,"pitch":-106.40102564657944,"roll":21.56875180851089},"location":"Right Knee"},{"euler":{"heading":17.48707085835689,"pitch":-126.71192542106944,"roll":59.230250254966435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.88"} +{"sensors":[{"euler":{"heading":78.94064939409608,"pitch":130.317289016813,"roll":17.71556843885066},"location":"Left Knee"},{"euler":{"heading":60.223245827971255,"pitch":94.34101774305925,"roll":22.54678263814181},"location":"Left Ankle"},{"euler":{"heading":72.41397583238027,"pitch":-12.97845690753166,"roll":-9.568582295800022},"location":"Right Ankle"},{"euler":{"heading":132.02786643785896,"pitch":-163.18504700269642,"roll":53.772282352574365},"location":"Right Hip"},{"euler":{"heading":49.583229753906025,"pitch":-106.8734230819215,"roll":21.1868766276598},"location":"Right Knee"},{"euler":{"heading":16.707113772521204,"pitch":-125.2657328789625,"roll":58.60722522946979},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.189"} +{"sensors":[{"euler":{"heading":71.74658445468648,"pitch":132.1418101151317,"roll":19.394011594965594},"location":"Left Knee"},{"euler":{"heading":56.750921245174126,"pitch":93.94441596875332,"roll":19.29835437432763},"location":"Left Ankle"},{"euler":{"heading":71.26007824914225,"pitch":-12.405611216778494,"roll":-10.411724066220021},"location":"Right Ankle"},{"euler":{"heading":132.34382979407306,"pitch":-163.5102923024268,"roll":54.60130411731693},"location":"Right Hip"},{"euler":{"heading":50.718656778515424,"pitch":-107.08608077372936,"roll":20.16193896489382},"location":"Right Knee"},{"euler":{"heading":16.661402395269086,"pitch":-124.61415959106625,"roll":58.265252706522816},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.290"} +{"sensors":[{"euler":{"heading":66.87192600921783,"pitch":132.75887910361854,"roll":20.754610435469036},"location":"Left Knee"},{"euler":{"heading":55.044579120656714,"pitch":93.96247437187799,"roll":17.518518936894868},"location":"Left Ankle"},{"euler":{"heading":69.05282042422803,"pitch":-12.146300095100644,"roll":-11.27680165959802},"location":"Right Ankle"},{"euler":{"heading":133.04694681466577,"pitch":-163.64676307218411,"roll":55.22867370558524},"location":"Right Hip"},{"euler":{"heading":53.184291100663884,"pitch":-106.79622269635644,"roll":18.03324506840444},"location":"Right Knee"},{"euler":{"heading":16.864012155742177,"pitch":-124.36524363195964,"roll":58.15747743587053},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.391"} +{"sensors":[{"euler":{"heading":63.21598340829605,"pitch":132.60799119325668,"roll":21.735399391922137},"location":"Left Knee"},{"euler":{"heading":54.071371208591046,"pitch":94.05372693469019,"roll":16.34166704320538},"location":"Left Ankle"},{"euler":{"heading":65.36003838180523,"pitch":-12.00042008559058,"roll":-12.392871493638218},"location":"Right Ankle"},{"euler":{"heading":134.5797521331992,"pitch":-163.0070867649657,"roll":55.018306335026715},"location":"Right Hip"},{"euler":{"heading":56.428361990597494,"pitch":-106.32285042672079,"roll":15.179920561563996},"location":"Right Knee"},{"euler":{"heading":17.452610940167958,"pitch":-124.7162192687637,"roll":58.36047969228348},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.491"} +{"sensors":[{"euler":{"heading":60.28188506746645,"pitch":132.072192073931,"roll":22.399359452729925},"location":"Left Knee"},{"euler":{"heading":53.72673408773194,"pitch":94.22335424122117,"roll":15.72000033888484},"location":"Left Ankle"},{"euler":{"heading":62.83653454362471,"pitch":-11.931628077031522,"roll":-13.072334344274395},"location":"Right Ankle"},{"euler":{"heading":136.1905269198793,"pitch":-162.15012808846913,"roll":54.09147570152405},"location":"Right Hip"},{"euler":{"heading":58.34177579153774,"pitch":-105.82806538404871,"roll":13.436928505407597},"location":"Right Knee"},{"euler":{"heading":18.251099846151163,"pitch":-125.60709734188733,"roll":58.78693172305513},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.592"} +{"sensors":[{"euler":{"heading":58.2536965607198,"pitch":131.22122286653791,"roll":22.715673507456934},"location":"Left Knee"},{"euler":{"heading":54.62281067895874,"pitch":94.68226881709907,"roll":16.060500304996356},"location":"Left Ankle"},{"euler":{"heading":62.890381089262235,"pitch":-12.43221526932837,"roll":-12.808850909846955},"location":"Right Ankle"},{"euler":{"heading":137.27772422789135,"pitch":-161.6038652796222,"roll":52.76982813137164},"location":"Right Hip"},{"euler":{"heading":57.88884821238397,"pitch":-105.07650884564384,"roll":13.936985654866838},"location":"Right Knee"},{"euler":{"heading":19.24473986153605,"pitch":-127.19013760769859,"roll":59.33323855074963},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.693"} +{"sensors":[{"euler":{"heading":57.03457690464783,"pitch":130.13035057988412,"roll":22.612856156711242},"location":"Left Knee"},{"euler":{"heading":55.84802961106287,"pitch":95.23904193538917,"roll":16.773200274496723},"location":"Left Ankle"},{"euler":{"heading":65.07634298033601,"pitch":-13.088993742395534,"roll":-11.52796581886226},"location":"Right Ankle"},{"euler":{"heading":137.24995180510223,"pitch":-161.47472875166,"roll":51.65534531823448},"location":"Right Hip"},{"euler":{"heading":55.34996339114557,"pitch":-104.05635796107946,"roll":16.399537089380154},"location":"Right Knee"},{"euler":{"heading":20.395265875382446,"pitch":-129.13987384692874,"roll":60.03741469567467},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.794"} +{"sensors":[{"euler":{"heading":56.54986921418305,"pitch":128.96731552189573,"roll":21.93282054104012},"location":"Left Knee"},{"euler":{"heading":57.64447664995659,"pitch":95.84638774185026,"roll":18.13338024704705},"location":"Left Ankle"},{"euler":{"heading":68.23120868230241,"pitch":-13.767594368155981,"roll":-10.093919236976035},"location":"Right Ankle"},{"euler":{"heading":135.962456624592,"pitch":-161.796005876494,"roll":51.17106078641103},"location":"Right Hip"},{"euler":{"heading":52.28996705203102,"pitch":-103.33822216497151,"roll":19.403333380442138},"location":"Right Knee"},{"euler":{"heading":21.6807392878442,"pitch":-131.61963646223586,"roll":60.846173226107204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.895"} +{"sensors":[{"euler":{"heading":57.319882292764746,"pitch":127.89558396970617,"roll":20.252038486936108},"location":"Left Knee"},{"euler":{"heading":60.24877898496093,"pitch":96.47424896766525,"roll":20.726292222342344},"location":"Left Ankle"},{"euler":{"heading":70.08933781407217,"pitch":-13.822084931340383,"roll":-9.297027313278432},"location":"Right Ankle"},{"euler":{"heading":134.8787109621328,"pitch":-162.07890528884462,"roll":50.903954707769934},"location":"Right Hip"},{"euler":{"heading":49.63597034682792,"pitch":-103.39189994847436,"roll":21.469250042397928},"location":"Right Knee"},{"euler":{"heading":22.937665359059782,"pitch":-133.8951728160123,"roll":61.64280590349649},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.995"} +{"sensors":[{"euler":{"heading":59.49414406348827,"pitch":126.69352557273555,"roll":17.801834638242497},"location":"Left Knee"},{"euler":{"heading":64.16765108646484,"pitch":98.08307407089873,"roll":24.42866300010811},"location":"Left Ankle"},{"euler":{"heading":71.08665403266495,"pitch":-13.564876438206344,"roll":-8.95482458195059},"location":"Right Ankle"},{"euler":{"heading":134.1658398659195,"pitch":-162.23351475996017,"roll":51.069809236992946},"location":"Right Hip"},{"euler":{"heading":47.99112331214513,"pitch":-104.02145995362693,"roll":22.672325038158135},"location":"Right Knee"},{"euler":{"heading":22.812648823153804,"pitch":-133.10565553441106,"roll":61.94102531314684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.97"} +{"sensors":[{"euler":{"heading":61.57597965713944,"pitch":126.174173015462,"roll":15.740401174418249},"location":"Left Knee"},{"euler":{"heading":66.68838597781837,"pitch":96.33101666380887,"roll":27.2420467000973},"location":"Left Ankle"},{"euler":{"heading":71.85923862939846,"pitch":-13.26463879438571,"roll":-8.90934212375553},"location":"Right Ankle"},{"euler":{"heading":133.46175587932757,"pitch":-162.42891328396414,"roll":51.65657831329365},"location":"Right Hip"},{"euler":{"heading":47.03576098093062,"pitch":-104.80681395826424,"roll":23.267592534342324},"location":"Right Knee"},{"euler":{"heading":21.537633940838425,"pitch":-131.15758998096996,"roll":61.403172781832154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.197"} +{"sensors":[{"euler":{"heading":60.2683816914255,"pitch":127.05050571391581,"roll":15.610111056976423},"location":"Left Knee"},{"euler":{"heading":65.81954738003654,"pitch":95.33541499742799,"roll":26.99909203008757},"location":"Left Ankle"},{"euler":{"heading":72.26706476645862,"pitch":-12.88192491494714,"roll":-9.074657911379978},"location":"Right Ankle"},{"euler":{"heading":133.1280802913948,"pitch":-162.53602195556772,"roll":52.40342048196429},"location":"Right Hip"},{"euler":{"heading":46.67593488283756,"pitch":-105.55738256243782,"roll":23.35958328090809},"location":"Right Knee"},{"euler":{"heading":19.808870546754584,"pitch":-129.10433098287297,"roll":60.306605503648946},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.303"} +{"sensors":[{"euler":{"heading":82.71654352228296,"pitch":128.97045514252423,"roll":17.03659995127878},"location":"Left Knee"},{"euler":{"heading":62.27509264203289,"pitch":94.3581234976852,"roll":24.030432827078812},"location":"Left Ankle"},{"euler":{"heading":72.19035828981276,"pitch":-12.362482423452427,"roll":-9.40469212024198},"location":"Right Ankle"},{"euler":{"heading":133.14027226225534,"pitch":-162.66991976001094,"roll":53.138078433767866},"location":"Right Hip"},{"euler":{"heading":47.052091394553806,"pitch":-106.13914430619404,"roll":22.867374952817283},"location":"Right Knee"},{"euler":{"heading":18.55298349207913,"pitch":-127.46264788458566,"roll":59.43219495328405},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.404"} +{"sensors":[{"euler":{"heading":103.71988917005467,"pitch":131.2234096282718,"roll":18.826689956150904},"location":"Left Knee"},{"euler":{"heading":58.2850833778296,"pitch":93.54731114791669,"roll":20.40238954437093},"location":"Left Ankle"},{"euler":{"heading":71.42757246083148,"pitch":-11.776234181107185,"roll":-10.145472908217783},"location":"Right Ankle"},{"euler":{"heading":133.5699950360298,"pitch":-162.83417778400985,"roll":53.86177059039108},"location":"Right Hip"},{"euler":{"heading":48.38438225509843,"pitch":-106.45022987557464,"roll":21.655637457535555},"location":"Right Knee"},{"euler":{"heading":18.135185142871215,"pitch":-126.61638309612711,"roll":58.888975457955645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.505"} +{"sensors":[{"euler":{"heading":95.1166502530492,"pitch":132.37606866544462,"roll":20.350270960535813},"location":"Left Knee"},{"euler":{"heading":55.800325040046644,"pitch":93.52383003312502,"roll":18.012150589933835},"location":"Left Ankle"},{"euler":{"heading":69.54106521474833,"pitch":-11.492360762996467,"roll":-11.068425617396006},"location":"Right Ankle"},{"euler":{"heading":134.10049553242683,"pitch":-163.26326000560888,"roll":54.55684353135197},"location":"Right Hip"},{"euler":{"heading":50.908444029588594,"pitch":-106.33020688801717,"roll":19.558823711782},"location":"Right Knee"},{"euler":{"heading":18.165416628584094,"pitch":-126.2984947865144,"roll":58.60632791216008},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.606"} +{"sensors":[{"euler":{"heading":88.07998522774427,"pitch":132.67596179890018,"roll":21.48399386448223},"location":"Left Knee"},{"euler":{"heading":54.295292536041984,"pitch":93.60269702981253,"roll":16.454685530940452},"location":"Left Ankle"},{"euler":{"heading":66.1244586932735,"pitch":-10.836874686696822,"roll":-12.274083055656405},"location":"Right Ankle"},{"euler":{"heading":134.99669597918415,"pitch":-163.018184005048,"roll":54.73865917821678},"location":"Right Hip"},{"euler":{"heading":54.123849626629735,"pitch":-106.14718619921545,"roll":16.6591913406038},"location":"Right Knee"},{"euler":{"heading":18.198874965725686,"pitch":-126.12489530786296,"roll":58.65194512094408},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.707"} +{"sensors":[{"euler":{"heading":82.25323670496985,"pitch":132.43336561901015,"roll":22.354344478034008},"location":"Left Knee"},{"euler":{"heading":53.57826328243779,"pitch":93.78617732683128,"roll":15.527966977846408},"location":"Left Ankle"},{"euler":{"heading":62.91826282394615,"pitch":-10.59068721802714,"roll":-13.046674750090764},"location":"Right Ankle"},{"euler":{"heading":136.19077638126575,"pitch":-162.2226156045432,"roll":54.1335432603951},"location":"Right Hip"},{"euler":{"heading":56.705214663966764,"pitch":-105.91371757929392,"roll":14.249522206543421},"location":"Right Knee"},{"euler":{"heading":18.510237469153118,"pitch":-126.69990577707667,"roll":58.93050060884967},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.808"} +{"sensors":[{"euler":{"heading":77.54666303447287,"pitch":131.81502905710914,"roll":22.90016003023061},"location":"Left Knee"},{"euler":{"heading":53.73918695419401,"pitch":94.10130959414815,"roll":15.281420280061768},"location":"Left Ankle"},{"euler":{"heading":61.913936541551536,"pitch":-11.031618496224427,"roll":-13.117007275081688},"location":"Right Ankle"},{"euler":{"heading":137.1091987431392,"pitch":-161.66285404408887,"roll":52.87018893435559},"location":"Right Hip"},{"euler":{"heading":57.29719319757009,"pitch":-105.34734582136453,"roll":13.68706998588908},"location":"Right Knee"},{"euler":{"heading":19.109213722237808,"pitch":-127.898665199369,"roll":59.393700547964706},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.909"} +{"sensors":[{"euler":{"heading":73.8669967310256,"pitch":130.93977615139823,"roll":23.05389402720755},"location":"Left Knee"},{"euler":{"heading":54.63401825877462,"pitch":94.47867863473334,"roll":15.722028252055592},"location":"Left Ankle"},{"euler":{"heading":63.441292887396386,"pitch":-12.240956646601985,"roll":-12.117806547573519},"location":"Right Ankle"},{"euler":{"heading":132.87327886882528,"pitch":-161.59656863968,"roll":51.658170040920034},"location":"Right Hip"},{"euler":{"heading":55.773723877813076,"pitch":-104.17511123922807,"roll":15.274612987300173},"location":"Right Knee"},{"euler":{"heading":19.929542350014028,"pitch":-129.5775486794321,"roll":60.010580493168234},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.10"} +{"sensors":[{"euler":{"heading":71.13654705792304,"pitch":129.9582985362584,"roll":22.679754624486794},"location":"Left Knee"},{"euler":{"heading":56.03311643289716,"pitch":94.88706077126001,"roll":16.749825426850034},"location":"Left Ankle"},{"euler":{"heading":66.70966359865675,"pitch":-13.004360981941787,"roll":-10.531025892816167},"location":"Right Ankle"},{"euler":{"heading":132.27345098194274,"pitch":-161.82441177571198,"roll":51.19235303682803},"location":"Right Hip"},{"euler":{"heading":52.59010149003176,"pitch":-103.43885011530527,"roll":18.447151688570155},"location":"Right Knee"},{"euler":{"heading":20.799088115012626,"pitch":-131.5385438114889,"roll":60.73452244385141},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.111"} +{"sensors":[{"euler":{"heading":69.62914235213074,"pitch":128.93746868263258,"roll":21.580529162038115},"location":"Left Knee"},{"euler":{"heading":58.179804789607445,"pitch":95.41710469413401,"roll":18.712342884165032},"location":"Left Ankle"},{"euler":{"heading":69.55119723879108,"pitch":-13.391424883747609,"roll":-9.415423303534551},"location":"Right Ankle"},{"euler":{"heading":131.30860588374847,"pitch":-162.16072059814078,"roll":51.16061773314523},"location":"Right Hip"},{"euler":{"heading":49.40609134102859,"pitch":-103.40746510377474,"roll":21.10243651971314},"location":"Right Knee"},{"euler":{"heading":21.781679303511364,"pitch":-133.75343943034,"roll":61.43607019946627},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.212"} +{"sensors":[{"euler":{"heading":69.71622811691768,"pitch":128.18747181436933,"roll":19.397476245834305},"location":"Left Knee"},{"euler":{"heading":61.055574310646705,"pitch":96.3003942247206,"roll":21.91610859574853},"location":"Left Ankle"},{"euler":{"heading":71.10857751491197,"pitch":-13.533532395372848,"roll":-8.923880973181095},"location":"Right Ankle"},{"euler":{"heading":130.76524529537363,"pitch":-162.4758985383267,"roll":51.30080595983071},"location":"Right Hip"},{"euler":{"heading":47.159232206925736,"pitch":-103.72296859339727,"roll":22.817192867741827},"location":"Right Knee"},{"euler":{"heading":22.17226137316023,"pitch":-134.81559548730598,"roll":61.836213179519646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.313"} +{"sensors":[{"euler":{"heading":71.11960530522592,"pitch":127.2124746329324,"roll":16.838978621250877},"location":"Left Knee"},{"euler":{"heading":64.30001687958203,"pitch":97.47035480224855,"roll":25.424497736173677},"location":"Left Ankle"},{"euler":{"heading":72.11021976342077,"pitch":-13.586429155835564,"roll":-8.768992875862986},"location":"Right Ankle"},{"euler":{"heading":129.98872076583626,"pitch":-162.92830868449403,"roll":51.83947536384765},"location":"Right Hip"},{"euler":{"heading":45.830808986233166,"pitch":-104.30692173405754,"roll":23.779223580967646},"location":"Right Knee"},{"euler":{"heading":21.298785235844207,"pitch":-132.9340359385754,"roll":61.69009186156769},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.413"} +{"sensors":[{"euler":{"heading":71.48889477470333,"pitch":127.16622716963916,"roll":15.355080759125789},"location":"Left Knee"},{"euler":{"heading":65.58876519162382,"pitch":97.2858193220237,"roll":26.96329796255631},"location":"Left Ankle"},{"euler":{"heading":72.81169778707869,"pitch":-13.37153624025201,"roll":-8.842093588276688},"location":"Right Ankle"},{"euler":{"heading":129.61484868925265,"pitch":-163.23547781604464,"roll":52.58677782746288},"location":"Right Hip"},{"euler":{"heading":45.02272808760985,"pitch":-105.0699795606518,"roll":24.251301222870882},"location":"Right Knee"},{"euler":{"heading":19.70640671225979,"pitch":-130.70938234471785,"roll":60.802332675410916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.515"} +{"sensors":[{"euler":{"heading":91.85875529723299,"pitch":128.36835445267525,"roll":15.894572683213209},"location":"Left Knee"},{"euler":{"heading":63.61738867246144,"pitch":96.31348738982132,"roll":25.504468166300683},"location":"Left Ankle"},{"euler":{"heading":72.98052800837083,"pitch":-12.70938261622681,"roll":-9.18288422944902},"location":"Right Ankle"},{"euler":{"heading":129.6033638203274,"pitch":-163.29318003444018,"roll":53.38435004471659},"location":"Right Hip"},{"euler":{"heading":44.589205278848866,"pitch":-105.93173160458663,"roll":24.257421100583798},"location":"Right Knee"},{"euler":{"heading":18.14201604103381,"pitch":-128.66344411024608,"roll":59.80334940786983},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.616"} +{"sensors":[{"euler":{"heading":111.3916297675097,"pitch":130.50651900740772,"roll":17.480115414891888},"location":"Left Knee"},{"euler":{"heading":59.63689980521529,"pitch":95.00088865083919,"roll":22.035271349670616},"location":"Left Ankle"},{"euler":{"heading":72.63872520753374,"pitch":-11.86969435460413,"roll":-9.802095806504118},"location":"Right Ankle"},{"euler":{"heading":129.70552743829467,"pitch":-163.4576120309962,"roll":54.30216504024494},"location":"Right Hip"},{"euler":{"heading":44.94903475096398,"pitch":-106.71980844412798,"roll":23.67542899052542},"location":"Right Knee"},{"euler":{"heading":17.08406443693043,"pitch":-127.24709969922148,"roll":59.04176446708285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.717"} +{"sensors":[{"euler":{"heading":129.52746679075872,"pitch":132.40586710666693,"roll":19.0821038734027},"location":"Left Knee"},{"euler":{"heading":55.991959824693765,"pitch":94.40704978575528,"roll":18.681744214703556},"location":"Left Ankle"},{"euler":{"heading":71.60610268678037,"pitch":-11.238974919143718,"roll":-10.740636225853706},"location":"Right Ankle"},{"euler":{"heading":130.14122469446522,"pitch":-163.80560082789657,"roll":55.184448536220444},"location":"Right Hip"},{"euler":{"heading":46.53538127586758,"pitch":-107.05407759971519,"roll":22.270386091472876},"location":"Right Knee"},{"euler":{"heading":16.863157993237387,"pitch":-126.49113972929933,"roll":58.637588020374565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.817"} +{"sensors":[{"euler":{"heading":119.01222011168285,"pitch":133.07153039600024,"roll":20.392643486062433},"location":"Left Knee"},{"euler":{"heading":54.28651384222439,"pitch":94.33509480717976,"roll":16.9948197932332},"location":"Left Ankle"},{"euler":{"heading":69.16424241810233,"pitch":-11.052577427229346,"roll":-11.647822603268335},"location":"Right Ankle"},{"euler":{"heading":130.9646022250187,"pitch":-163.97504074510692,"roll":55.803503682598404},"location":"Right Hip"},{"euler":{"heading":49.53184314828082,"pitch":-106.71116983974366,"roll":19.83084748232559},"location":"Right Knee"},{"euler":{"heading":16.839342193913648,"pitch":-126.12952575636942,"roll":58.46132921833711},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.918"} +{"sensors":[{"euler":{"heading":110.27349810051456,"pitch":132.93937735640023,"roll":21.42837913745619},"location":"Left Knee"},{"euler":{"heading":53.33286245800195,"pitch":94.50783532646179,"roll":15.782837813909882},"location":"Left Ankle"},{"euler":{"heading":65.3790681762921,"pitch":-10.428569684506412,"roll":-12.870540342941503},"location":"Right Ankle"},{"euler":{"heading":132.49939200251683,"pitch":-163.25253667059624,"roll":55.56690331433857},"location":"Right Hip"},{"euler":{"heading":52.73490883345274,"pitch":-106.53380285576931,"roll":17.010262734093033},"location":"Right Knee"},{"euler":{"heading":17.317907974522285,"pitch":-126.42907318073247,"roll":58.59019629650341},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.19"} +{"sensors":[{"euler":{"heading":102.8461482904631,"pitch":132.26418962076022,"roll":22.24179122371057},"location":"Left Knee"},{"euler":{"heading":53.130826212201754,"pitch":94.86955179381562,"roll":15.098304032518895},"location":"Left Ankle"},{"euler":{"heading":62.84741135866289,"pitch":-10.448212716055771,"roll":-13.495986308647353},"location":"Right Ankle"},{"euler":{"heading":134.27445280226516,"pitch":-162.39603300353662,"roll":54.522712982904714},"location":"Right Hip"},{"euler":{"heading":54.64891795010747,"pitch":-106.05542257019238,"roll":15.290486460683729},"location":"Right Knee"},{"euler":{"heading":18.223617177070057,"pitch":-127.35491586265923,"roll":58.98742666685307},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.120"} +{"sensors":[{"euler":{"heading":96.6990334614168,"pitch":131.3190206586842,"roll":22.642612101339516},"location":"Left Knee"},{"euler":{"heading":54.086493590981576,"pitch":95.40134661443406,"roll":15.438473629267005},"location":"Left Ankle"},{"euler":{"heading":62.9189202227966,"pitch":-11.303391444450195,"roll":-13.265137677782619},"location":"Right Ankle"},{"euler":{"heading":130.60325752203866,"pitch":-162.01892970318298,"roll":53.11419168461425},"location":"Right Hip"},{"euler":{"heading":54.55277615509672,"pitch":-105.15613031317314,"roll":15.667687814615356},"location":"Right Knee"},{"euler":{"heading":19.170005459363054,"pitch":-128.7194242763933,"roll":59.53243400016776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.220"} +{"sensors":[{"euler":{"heading":91.68538011527512,"pitch":130.19961859281577,"roll":22.597100891205564},"location":"Left Knee"},{"euler":{"heading":55.40909423188342,"pitch":95.97371195299066,"roll":16.182126266340305},"location":"Left Ankle"},{"euler":{"heading":65.53952820051694,"pitch":-12.285552300005177,"roll":-12.101123910004357},"location":"Right Ankle"},{"euler":{"heading":131.0616817698348,"pitch":-161.9670367328647,"roll":52.05902251615282},"location":"Right Hip"},{"euler":{"heading":52.51624853958705,"pitch":-104.01551728185582,"roll":17.92591903315382},"location":"Right Knee"},{"euler":{"heading":20.15300491342675,"pitch":-130.42873184875398,"roll":60.21044060015099},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.321"} +{"sensors":[{"euler":{"heading":87.66684210374761,"pitch":129.1421567335342,"roll":21.962390802085007},"location":"Left Knee"},{"euler":{"heading":57.20568480869508,"pitch":96.45759075769159,"roll":17.563913639706275},"location":"Left Ankle"},{"euler":{"heading":68.61682538046526,"pitch":-13.08199707000466,"roll":-10.659761519003922},"location":"Right Ankle"},{"euler":{"heading":130.11176359285133,"pitch":-162.39533305957823,"roll":51.796870264537546},"location":"Right Hip"},{"euler":{"heading":49.63962368562835,"pitch":-103.25146555367024,"roll":20.895827129838437},"location":"Right Knee"},{"euler":{"heading":21.112704422084075,"pitch":-132.6983586638786,"roll":60.90814654013589},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.422"} +{"sensors":[{"euler":{"heading":85.35640789337285,"pitch":128.2029410601808,"roll":20.203651721876508},"location":"Left Knee"},{"euler":{"heading":59.685116327825575,"pitch":96.84933168192242,"roll":20.27002227573565},"location":"Left Ankle"},{"euler":{"heading":70.57389284241873,"pitch":-13.505047363004195,"roll":-9.72503536710353},"location":"Right Ankle"},{"euler":{"heading":129.6380872335662,"pitch":-162.6995497536204,"roll":51.792183238083794},"location":"Right Hip"},{"euler":{"heading":47.20691131706552,"pitch":-103.20131899830322,"roll":22.987494416854595},"location":"Right Knee"},{"euler":{"heading":22.013933979875667,"pitch":-134.34102279749075,"roll":61.61108188612231},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.523"} +{"sensors":[{"euler":{"heading":84.76451710403556,"pitch":127.3263969541627,"roll":17.758286549688858},"location":"Left Knee"},{"euler":{"heading":63.27910469504302,"pitch":97.75814851373018,"roll":24.074270048162084},"location":"Left Ankle"},{"euler":{"heading":71.79775355817685,"pitch":-13.767042626703777,"roll":-9.283781830393178},"location":"Right Ankle"},{"euler":{"heading":129.0492785102096,"pitch":-163.18584477825837,"roll":52.16296491427542},"location":"Right Hip"},{"euler":{"heading":45.761220185358965,"pitch":-103.5686870984729,"roll":24.176244975169137},"location":"Right Knee"},{"euler":{"heading":21.4062905818881,"pitch":-133.07567051774168,"roll":61.65622369751007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.625"} +{"sensors":[{"euler":{"heading":83.77556539363201,"pitch":127.13750725874644,"roll":16.038707894719973},"location":"Left Knee"},{"euler":{"heading":65.26994422553871,"pitch":97.37608366235716,"roll":26.348093043345877},"location":"Left Ankle"},{"euler":{"heading":72.73047820235917,"pitch":-13.9965883640334,"roll":-9.08665364735386},"location":"Right Ankle"},{"euler":{"heading":128.83185065918866,"pitch":-163.55476030043255,"roll":52.79041842284788},"location":"Right Hip"},{"euler":{"heading":45.00384816682307,"pitch":-104.08681838862562,"roll":24.764870477652224},"location":"Right Knee"},{"euler":{"heading":20.00316152369929,"pitch":-130.9806034659675,"roll":61.02810132775907},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.726"} +{"sensors":[{"euler":{"heading":79.3417588542688,"pitch":128.1300065328718,"roll":16.253587105247977},"location":"Left Knee"},{"euler":{"heading":63.94294980298484,"pitch":96.15097529612144,"roll":25.68828373901129},"location":"Left Ankle"},{"euler":{"heading":73.12618038212325,"pitch":-14.09067952763006,"roll":-9.115488282618474},"location":"Right Ankle"},{"euler":{"heading":129.1361655932698,"pitch":-163.6555342703893,"roll":53.50512658056309},"location":"Right Hip"},{"euler":{"heading":45.00346335014076,"pitch":-104.52188654976305,"roll":24.782133429887004},"location":"Right Knee"},{"euler":{"heading":18.55909537132936,"pitch":-129.03879311937075,"roll":60.05654119498316},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.827"} +{"sensors":[{"euler":{"heading":100.11383296884192,"pitch":130.04200587958462,"roll":17.79697839472318},"location":"Left Knee"},{"euler":{"heading":60.286154822686356,"pitch":95.0483777665093,"roll":22.594455365110164},"location":"Left Ankle"},{"euler":{"heading":72.92606234391093,"pitch":-13.944111574867055,"roll":-9.410189454356628},"location":"Right Ankle"},{"euler":{"heading":129.7225490339428,"pitch":-163.6524808433504,"roll":54.192113922506785},"location":"Right Hip"},{"euler":{"heading":45.58436701512669,"pitch":-104.93219789478675,"roll":24.235170086898304},"location":"Right Knee"},{"euler":{"heading":17.359435834196425,"pitch":-127.40366380743367,"roll":59.21963707548485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.928"} +{"sensors":[{"euler":{"heading":119.53369967195773,"pitch":132.12530529162615,"roll":19.561030555250863},"location":"Left Knee"},{"euler":{"heading":56.47003934041772,"pitch":94.31228998985837,"roll":19.116259828599148},"location":"Left Ankle"},{"euler":{"heading":71.98970610951984,"pitch":-13.56220041738035,"roll":-10.100420508920966},"location":"Right Ankle"},{"euler":{"heading":130.70029413054854,"pitch":-163.66848275901535,"roll":54.779152530256106},"location":"Right Hip"},{"euler":{"heading":46.96343031361402,"pitch":-105.11397810530808,"roll":22.936653078208472},"location":"Right Knee"},{"euler":{"heading":16.998492250776785,"pitch":-126.45079742669031,"roll":58.628923367936366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.29"} +{"sensors":[{"euler":{"heading":109.56782970476196,"pitch":133.06902476246353,"roll":21.048677499725777},"location":"Left Knee"},{"euler":{"heading":54.28553540637595,"pitch":94.26856099087254,"roll":17.017133845739234},"location":"Left Ankle"},{"euler":{"heading":69.83448549856786,"pitch":-13.318480375642316,"roll":-11.102878458028869},"location":"Right Ankle"},{"euler":{"heading":131.80526471749369,"pitch":-163.9703844831138,"roll":55.382487277230496},"location":"Right Hip"},{"euler":{"heading":49.42958728225262,"pitch":-104.87758029477727,"roll":20.892987770387627},"location":"Right Knee"},{"euler":{"heading":17.048643025699107,"pitch":-125.91821768402129,"roll":58.25353103114273},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.130"} +{"sensors":[{"euler":{"heading":101.49229673428576,"pitch":133.09962228621717,"roll":22.1688097497532},"location":"Left Knee"},{"euler":{"heading":53.138231865738355,"pitch":94.4792048917853,"roll":15.671670461165311},"location":"Left Ankle"},{"euler":{"heading":66.20728694871107,"pitch":-12.861632338078085,"roll":-12.442590612225981},"location":"Right Ankle"},{"euler":{"heading":133.50598824574433,"pitch":-163.51709603480242,"roll":55.30048854950745},"location":"Right Hip"},{"euler":{"heading":52.64912855402736,"pitch":-104.65232226529955,"roll":17.959938993348864},"location":"Right Knee"},{"euler":{"heading":17.350028723129196,"pitch":-125.75764591561916,"roll":58.25317792802846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.231"} +{"sensors":[{"euler":{"heading":94.63056706085717,"pitch":132.70216005759545,"roll":22.908178774777884},"location":"Left Knee"},{"euler":{"heading":52.54315867916452,"pitch":94.65003440260678,"roll":14.88575341504878},"location":"Left Ankle"},{"euler":{"heading":63.517808253839966,"pitch":-12.850469104270276,"roll":-13.273331551003384},"location":"Right Ankle"},{"euler":{"heading":135.4116394211699,"pitch":-162.7278864313222,"roll":54.445439694556704},"location":"Right Hip"},{"euler":{"heading":55.015465698624624,"pitch":-104.1808400387696,"roll":15.951445094013978},"location":"Right Knee"},{"euler":{"heading":17.84002585081628,"pitch":-126.21938132405725,"roll":58.51536013522561},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.332"} +{"sensors":[{"euler":{"heading":88.81751035477147,"pitch":132.0819440518359,"roll":23.298610897300094},"location":"Left Knee"},{"euler":{"heading":53.10134281124807,"pitch":94.8725309623461,"roll":15.047178073543902},"location":"Left Ankle"},{"euler":{"heading":63.39727742845597,"pitch":-13.540422193843249,"roll":-13.189748395903047},"location":"Right Ankle"},{"euler":{"heading":136.86422547905292,"pitch":-162.13634778819,"roll":53.17589572510103},"location":"Right Hip"},{"euler":{"heading":55.10766912876216,"pitch":-103.48150603489265,"roll":16.087550584612583},"location":"Right Knee"},{"euler":{"heading":18.53727326573465,"pitch":-127.29744319165154,"roll":59.020074121703054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.434"} +{"sensors":[{"euler":{"heading":84.18575931929432,"pitch":131.1862496466523,"roll":23.312499807570084},"location":"Left Knee"},{"euler":{"heading":54.016208530123265,"pitch":95.21652786611149,"roll":15.567460266189512},"location":"Left Ankle"},{"euler":{"heading":65.88254968561037,"pitch":-14.498879974458925,"roll":-12.027023556312743},"location":"Right Ankle"},{"euler":{"heading":137.20905293114762,"pitch":-161.960213009371,"roll":52.05205615259093},"location":"Right Hip"},{"euler":{"heading":53.215652215885946,"pitch":-102.62085543140338,"roll":18.185045526151324},"location":"Right Knee"},{"euler":{"heading":19.308545939161185,"pitch":-128.78019887248638,"roll":59.63681670953275},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.535"} +{"sensors":[{"euler":{"heading":80.64843338736489,"pitch":130.15512468198708,"roll":22.806249826813076},"location":"Left Knee"},{"euler":{"heading":55.52708767711094,"pitch":95.65737507950035,"roll":16.69821423957056},"location":"Left Ankle"},{"euler":{"heading":69.08179471704933,"pitch":-15.311491977013034,"roll":-10.461821200681468},"location":"Right Ankle"},{"euler":{"heading":136.50064763803286,"pitch":-162.05169170843388,"roll":51.54685053733184},"location":"Right Hip"},{"euler":{"heading":50.312836994297356,"pitch":-102.18376988826306,"roll":21.172790973536195},"location":"Right Knee"},{"euler":{"heading":20.11519134524507,"pitch":-130.47092898523775,"roll":60.35438503857948},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.636"} +{"sensors":[{"euler":{"heading":78.42109004862841,"pitch":129.08336221378838,"roll":21.56937484413177},"location":"Left Knee"},{"euler":{"heading":57.70562890939985,"pitch":96.17288757155032,"roll":18.703392815613505},"location":"Left Ankle"},{"euler":{"heading":71.4923652453444,"pitch":-15.56159277931173,"roll":-9.403139080613322},"location":"Right Ankle"},{"euler":{"heading":135.30683287422957,"pitch":-162.3652725375905,"roll":51.40466548359866},"location":"Right Hip"},{"euler":{"heading":47.65030329486762,"pitch":-102.43414289943675,"roll":23.424261876182577},"location":"Right Knee"},{"euler":{"heading":21.209922210720563,"pitch":-132.71758608671396,"roll":61.106446534721535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.737"} +{"sensors":[{"euler":{"heading":78.06648104376558,"pitch":128.23752599240953,"roll":19.28118735971859},"location":"Left Knee"},{"euler":{"heading":60.878816018459865,"pitch":97.3618488143953,"roll":21.983053534052154},"location":"Left Ankle"},{"euler":{"heading":72.90562872080996,"pitch":-15.486683501380558,"roll":-8.98782517255199},"location":"Right Ankle"},{"euler":{"heading":134.45739958680662,"pitch":-162.59749528383145,"roll":51.545448935238795},"location":"Right Hip"},{"euler":{"heading":45.754022965380855,"pitch":-103.05947860949308,"roll":24.781835688564318},"location":"Right Knee"},{"euler":{"heading":21.22642998964851,"pitch":-133.33332747804258,"roll":61.38955188124939},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.838"} +{"sensors":[{"euler":{"heading":78.42233293938902,"pitch":127.44502339316858,"roll":17.021818623746732},"location":"Left Knee"},{"euler":{"heading":63.17843441661388,"pitch":97.99441393295578,"roll":24.82849818064694},"location":"Left Ankle"},{"euler":{"heading":73.81506584872896,"pitch":-15.363015151242504,"roll":-8.86404265529679},"location":"Right Ankle"},{"euler":{"heading":133.47415962812596,"pitch":-162.95649575544832,"roll":52.128404041714916},"location":"Right Hip"},{"euler":{"heading":44.65987066884277,"pitch":-103.83478074854378,"roll":25.459902119707888},"location":"Right Knee"},{"euler":{"heading":20.191286990683658,"pitch":-131.61249473023832,"roll":61.13809669312445},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.938"} +{"sensors":[{"euler":{"heading":76.58634964545011,"pitch":127.89427105385172,"roll":16.25713676137206},"location":"Left Knee"},{"euler":{"heading":62.960590974952495,"pitch":97.0449725396602,"roll":25.264398362582245},"location":"Left Ankle"},{"euler":{"heading":74.26480926385607,"pitch":-15.170463636118253,"roll":-8.983888389767111},"location":"Right Ankle"},{"euler":{"heading":133.16424366531336,"pitch":-163.0795961799035,"roll":52.89681363754343},"location":"Right Hip"},{"euler":{"heading":44.3188836019585,"pitch":-104.5138026736894,"roll":25.5701619077371},"location":"Right Knee"},{"euler":{"heading":18.722158291615294,"pitch":-129.8012452572145,"roll":60.30553702381201},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.39"} +{"sensors":[{"euler":{"heading":71.0964646809051,"pitch":129.44859394846657,"roll":17.337673085234854},"location":"Left Knee"},{"euler":{"heading":59.85828187745725,"pitch":95.90922528569418,"roll":22.80045852632402},"location":"Left Ankle"},{"euler":{"heading":74.18207833747046,"pitch":-14.847167272506427,"roll":-9.379249550790401},"location":"Right Ankle"},{"euler":{"heading":133.29781929878203,"pitch":-163.14663656191314,"roll":53.65713227378909},"location":"Right Hip"},{"euler":{"heading":44.64949524176265,"pitch":-105.06242240632047,"roll":25.12564571696339},"location":"Right Knee"},{"euler":{"heading":17.474942462453765,"pitch":-128.17112073149306,"roll":59.45623332143081},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.141"} +{"sensors":[{"euler":{"heading":93.1743182128146,"pitch":131.5974845536199,"roll":19.12265577671137},"location":"Left Knee"},{"euler":{"heading":56.047453689711524,"pitch":94.77455275712475,"roll":19.21416267369162},"location":"Left Ankle"},{"euler":{"heading":73.25762050372342,"pitch":-14.312450545255784,"roll":-10.091324595711361},"location":"Right Ankle"},{"euler":{"heading":133.76803736890383,"pitch":-163.25072290572183,"roll":54.366419046410186},"location":"Right Hip"},{"euler":{"heading":45.80954571758639,"pitch":-105.41868016568841,"roll":24.006831145267054},"location":"Right Knee"},{"euler":{"heading":16.79619821620839,"pitch":-127.10400865834376,"roll":58.82310998928773},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.242"} +{"sensors":[{"euler":{"heading":85.37563639153313,"pitch":132.6939860982579,"roll":20.735390199040232},"location":"Left Knee"},{"euler":{"heading":53.52395832074037,"pitch":94.62209748141228,"roll":16.71149640632246},"location":"Left Ankle"},{"euler":{"heading":71.31935845335109,"pitch":-13.937455490730207,"roll":-11.094692136140225},"location":"Right Ankle"},{"euler":{"heading":134.60998363201344,"pitch":-163.53190061514965,"roll":54.92977714176917},"location":"Right Hip"},{"euler":{"heading":48.16609114582775,"pitch":-105.33931214911958,"roll":21.99364803074035},"location":"Right Knee"},{"euler":{"heading":16.77282839458755,"pitch":-126.38110779250938,"roll":58.42204899035896},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.343"} +{"sensors":[{"euler":{"heading":79.40682275237982,"pitch":132.90583748843213,"roll":21.97435117913621},"location":"Left Knee"},{"euler":{"heading":52.371562488666335,"pitch":94.67238773327107,"roll":15.327846765690214},"location":"Left Ankle"},{"euler":{"heading":67.79367260801598,"pitch":-13.481209941657186,"roll":-12.472722922526204},"location":"Right Ankle"},{"euler":{"heading":136.1239852688121,"pitch":-163.2287105536347,"roll":54.83054942759226},"location":"Right Hip"},{"euler":{"heading":51.411982031244975,"pitch":-105.03038093420761,"roll":19.088033227666315},"location":"Right Knee"},{"euler":{"heading":16.720545555128794,"pitch":-125.95549701325845,"roll":58.24859409132307},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.443"} +{"sensors":[{"euler":{"heading":74.57239047714185,"pitch":132.55275373958892,"roll":22.97691606122259},"location":"Left Knee"},{"euler":{"heading":51.8594062397997,"pitch":94.81139895994396,"roll":14.407562089121194},"location":"Left Ankle"},{"euler":{"heading":64.68305534721438,"pitch":-13.383088947491467,"roll":-13.437950630273583},"location":"Right Ankle"},{"euler":{"heading":137.8803367419309,"pitch":-162.44958949827122,"roll":54.00999448483304},"location":"Right Hip"},{"euler":{"heading":54.13953382812048,"pitch":-104.55234284078686,"roll":16.622979904899687},"location":"Right Knee"},{"euler":{"heading":17.167240999615913,"pitch":-126.15994731193261,"roll":58.379984682190766},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.544"} +{"sensors":[{"euler":{"heading":70.66515142942767,"pitch":131.90997836563002,"roll":23.59797445510033},"location":"Left Knee"},{"euler":{"heading":51.71721561581974,"pitch":94.93025906394956,"roll":13.960555880209075},"location":"Left Ankle"},{"euler":{"heading":63.89599981249294,"pitch":-13.963530052742321,"roll":-13.531655567246226},"location":"Right Ankle"},{"euler":{"heading":139.33605306773782,"pitch":-161.7858805484441,"roll":52.72774503634973},"location":"Right Hip"},{"euler":{"heading":54.94433044530843,"pitch":-103.90335855670818,"roll":16.035681914409718},"location":"Right Knee"},{"euler":{"heading":17.913016899654323,"pitch":-126.98770258073935,"roll":58.76698621397169},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.644"} +{"sensors":[{"euler":{"heading":67.68613628648491,"pitch":131.06898052906703,"roll":23.750677009590298},"location":"Left Knee"},{"euler":{"heading":51.920494054237764,"pitch":95.09973315755462,"roll":13.933250292188168},"location":"Left Ankle"},{"euler":{"heading":65.66889983124365,"pitch":-14.64842704746809,"roll":-12.584740010521603},"location":"Right Ankle"},{"euler":{"heading":135.26494776096405,"pitch":-161.56354249359973,"roll":51.54247053271476},"location":"Right Hip"},{"euler":{"heading":53.437397400777584,"pitch":-103.15677270103737,"roll":17.600863722968747},"location":"Right Knee"},{"euler":{"heading":18.677965209688892,"pitch":-128.17643232266542,"roll":59.29028759257452},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.745"} +{"sensors":[{"euler":{"heading":65.48627265783642,"pitch":130.15583247616033,"roll":23.419359308631268},"location":"Left Knee"},{"euler":{"heading":52.75969464881399,"pitch":95.27100984179917,"roll":14.58367526296935},"location":"Left Ankle"},{"euler":{"heading":68.64575984811928,"pitch":-15.30233434272128,"roll":-11.120016009469442},"location":"Right Ankle"},{"euler":{"heading":134.98220298486766,"pitch":-161.64468824423977,"roll":50.93822347944328},"location":"Right Hip"},{"euler":{"heading":50.76240766069983,"pitch":-102.61609543093364,"roll":20.459527350671873},"location":"Right Knee"},{"euler":{"heading":19.616418688720003,"pitch":-129.96503909039888,"roll":59.94875883331707},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.846"} +{"sensors":[{"euler":{"heading":64.21889539205279,"pitch":129.3527492285443,"roll":22.408673377768142},"location":"Left Knee"},{"euler":{"heading":54.22122518393259,"pitch":95.41890885761926,"roll":16.012807736672418},"location":"Left Ankle"},{"euler":{"heading":71.18743386330735,"pitch":-15.790850908449153,"roll":-10.033014408522499},"location":"Right Ankle"},{"euler":{"heading":133.8902326863809,"pitch":-162.0427194198158,"roll":50.75690113149896},"location":"Right Hip"},{"euler":{"heading":48.04241689462985,"pitch":-102.46073588784029,"roll":23.038574615604688},"location":"Right Knee"},{"euler":{"heading":20.529776819848003,"pitch":-132.22478518135898,"roll":60.591382949985366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.947"} +{"sensors":[{"euler":{"heading":64.55950585284751,"pitch":128.76747430568986,"roll":20.26780603999133},"location":"Left Knee"},{"euler":{"heading":56.68660266553933,"pitch":95.63326797185732,"roll":19.086526963005177},"location":"Left Ankle"},{"euler":{"heading":72.72494047697661,"pitch":-16.10551581760424,"roll":-9.542212967670249},"location":"Right Ankle"},{"euler":{"heading":133.2199594177428,"pitch":-162.37594747783422,"roll":50.76871101834906},"location":"Right Hip"},{"euler":{"heading":45.96942520516687,"pitch":-102.76466229905625,"roll":24.74096715404422},"location":"Right Knee"},{"euler":{"heading":20.839299137863204,"pitch":-133.18355666322307,"roll":60.950994654986836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.47"} +{"sensors":[{"euler":{"heading":66.10980526756276,"pitch":127.90947687512087,"roll":17.8785254359922},"location":"Left Knee"},{"euler":{"heading":59.5929423989854,"pitch":96.4199411746716,"roll":22.48412426670466},"location":"Left Ankle"},{"euler":{"heading":73.90244642927895,"pitch":-16.426214235843815,"roll":-9.194241670903224},"location":"Right Ankle"},{"euler":{"heading":132.39796347596854,"pitch":-162.8321027300508,"roll":51.19808991651416},"location":"Right Hip"},{"euler":{"heading":44.84748268465019,"pitch":-103.27569606915063,"roll":25.6856204386398},"location":"Right Knee"},{"euler":{"heading":19.792869224076885,"pitch":-131.52145099690077,"roll":60.66214518948815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.148"} +{"sensors":[{"euler":{"heading":66.2488247408065,"pitch":127.91227918760879,"roll":16.71567289239298},"location":"Left Knee"},{"euler":{"heading":60.70864815908686,"pitch":96.01544705720444,"roll":23.779461840034195},"location":"Left Ankle"},{"euler":{"heading":74.66220178635106,"pitch":-16.721092812259435,"roll":-9.049817503812903},"location":"Right Ankle"},{"euler":{"heading":132.2331671283717,"pitch":-163.08639245704572,"roll":51.84078092486274},"location":"Right Hip"},{"euler":{"heading":44.49398441618517,"pitch":-103.66062646223557,"roll":25.992058394775817},"location":"Right Knee"},{"euler":{"heading":18.351082301669198,"pitch":-129.7130558972107,"roll":59.82093067053934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.249"} +{"sensors":[{"euler":{"heading":62.25519226672585,"pitch":129.1585512688479,"roll":17.469105603153682},"location":"Left Knee"},{"euler":{"heading":58.74403334317818,"pitch":95.032652351484,"roll":22.426515656030773},"location":"Left Ankle"},{"euler":{"heading":74.98973160771597,"pitch":-16.861483531033493,"roll":-9.157335753431612},"location":"Right Ankle"},{"euler":{"heading":132.35360041553452,"pitch":-163.29025321134114,"roll":52.519202832376465},"location":"Right Hip"},{"euler":{"heading":44.70083597456666,"pitch":-103.98831381601201,"roll":25.761602555298236},"location":"Right Knee"},{"euler":{"heading":16.953474071502278,"pitch":-127.94175030748963,"roll":58.97633760348541},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.350"} +{"sensors":[{"euler":{"heading":56.62342304005327,"pitch":131.07394614196312,"roll":19.122195042838314},"location":"Left Knee"},{"euler":{"heading":55.40088000886036,"pitch":93.9981371163356,"roll":19.340114090427697},"location":"Left Ankle"},{"euler":{"heading":74.54700844694437,"pitch":-16.694085177930145,"roll":-9.572852178088452},"location":"Right Ankle"},{"euler":{"heading":132.81824037398107,"pitch":-163.39247789020703,"roll":53.17978254913882},"location":"Right Hip"},{"euler":{"heading":45.49950237710999,"pitch":-104.29573243441081,"roll":24.941692299768413},"location":"Right Knee"},{"euler":{"heading":16.039376664352048,"pitch":-126.57882527674067,"roll":58.27245384313687},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.450"} +{"sensors":[{"euler":{"heading":51.79233073604794,"pitch":132.7790515277668,"roll":20.722475538554484},"location":"Left Knee"},{"euler":{"heading":52.49204200797433,"pitch":93.58582340470204,"roll":16.59360268138493},"location":"Left Ankle"},{"euler":{"heading":73.33605760224995,"pitch":-16.26842666013713,"roll":-10.415566960279607},"location":"Right Ankle"},{"euler":{"heading":133.48641633658295,"pitch":-163.64698010118633,"roll":53.89305429422494},"location":"Right Hip"},{"euler":{"heading":47.030802139399,"pitch":-104.37865919096973,"roll":23.453773069791573},"location":"Right Knee"},{"euler":{"heading":15.791688997916843,"pitch":-125.77094274906662,"roll":57.776458458823186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.551"} +{"sensors":[{"euler":{"heading":48.93809766244315,"pitch":133.23239637499012,"roll":21.918977984699037},"location":"Left Knee"},{"euler":{"heading":51.2240878071769,"pitch":93.53974106423183,"roll":15.171742413246438},"location":"Left Ankle"},{"euler":{"heading":70.74620184202496,"pitch":-16.041583994123418,"roll":-11.436510264251647},"location":"Right Ankle"},{"euler":{"heading":134.63152470292465,"pitch":-163.6572820910677,"roll":54.341248864802445},"location":"Right Hip"},{"euler":{"heading":49.9777219254591,"pitch":-103.96579327187277,"roll":20.902145762812417},"location":"Right Knee"},{"euler":{"heading":15.812520098125159,"pitch":-125.25009847415997,"roll":57.555062612940866},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.652"} +{"sensors":[{"euler":{"heading":47.12553789619883,"pitch":132.9841567374911,"roll":22.833330186229134},"location":"Left Knee"},{"euler":{"heading":50.620429026459206,"pitch":93.62951695780865,"roll":14.329568171921796},"location":"Left Ankle"},{"euler":{"heading":66.95908165782247,"pitch":-15.137425594711075,"roll":-12.811609237826483},"location":"Right Ankle"},{"euler":{"heading":136.1183722326322,"pitch":-163.05405388196093,"roll":54.0883739783222},"location":"Right Hip"},{"euler":{"heading":52.91744973291319,"pitch":-103.88796394468551,"roll":18.086931186531174},"location":"Right Knee"},{"euler":{"heading":16.243768088312642,"pitch":-125.38758862674396,"roll":57.69955635164678},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.753"} +{"sensors":[{"euler":{"heading":45.906734106578945,"pitch":132.435741063742,"roll":23.368747167606223},"location":"Left Knee"},{"euler":{"heading":50.870886123813285,"pitch":93.90406526202779,"roll":14.152861354729616},"location":"Left Ankle"},{"euler":{"heading":64.64442349204022,"pitch":-14.817433035239969,"roll":-13.449198314043834},"location":"Right Ankle"},{"euler":{"heading":137.35653500936897,"pitch":-162.42364849376486,"roll":53.26078658048998},"location":"Right Hip"},{"euler":{"heading":54.531954759621875,"pitch":-103.61791755021697,"roll":16.434488067878057},"location":"Right Knee"},{"euler":{"heading":16.70689127948138,"pitch":-125.97382976406956,"roll":58.0983507164821},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.854"} +{"sensors":[{"euler":{"heading":45.42856069592105,"pitch":131.5609169573678,"roll":23.556872450845603},"location":"Left Knee"},{"euler":{"heading":52.14004751143196,"pitch":94.376158735825,"roll":14.825075219256656},"location":"Left Ankle"},{"euler":{"heading":65.0737311428362,"pitch":-15.323189731715972,"roll":-13.04802848263945},"location":"Right Ankle"},{"euler":{"heading":137.95838150843207,"pitch":-162.05003364438838,"roll":52.17845792244098},"location":"Right Hip"},{"euler":{"heading":54.03500928365969,"pitch":-102.99987579519528,"roll":16.95978926109025},"location":"Right Knee"},{"euler":{"heading":17.39245215153324,"pitch":-127.23269678766262,"roll":58.62601564483389},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.954"} +{"sensors":[{"euler":{"heading":45.59820462632894,"pitch":130.492325261631,"roll":23.28868520576104},"location":"Left Knee"},{"euler":{"heading":53.75104276028877,"pitch":94.8760428622425,"roll":15.89881769733099},"location":"Left Ankle"},{"euler":{"heading":67.96635802855258,"pitch":-15.822120758544376,"roll":-11.830725634375506},"location":"Right Ankle"},{"euler":{"heading":137.48754335758886,"pitch":-162.13253027994955,"roll":51.34811213019688},"location":"Right Hip"},{"euler":{"heading":51.475258355293725,"pitch":-102.33738821567576,"roll":19.457560334981228},"location":"Right Knee"},{"euler":{"heading":18.221956936379918,"pitch":-128.85942710889637,"roll":59.2946640803505},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.55"} +{"sensors":[{"euler":{"heading":46.41963416369605,"pitch":129.3430927354679,"roll":22.459816685184936},"location":"Left Knee"},{"euler":{"heading":55.89468848425989,"pitch":95.44468857601825,"roll":17.602685927597893},"location":"Left Ankle"},{"euler":{"heading":70.70097222569731,"pitch":-16.289908682689937,"roll":-10.516403070937956},"location":"Right Ankle"},{"euler":{"heading":136.05753902182997,"pitch":-162.5817772519546,"roll":51.007050917177196},"location":"Right Hip"},{"euler":{"heading":48.496482519764356,"pitch":-102.02864939410819,"roll":22.50555430148311},"location":"Right Knee"},{"euler":{"heading":19.318511242741927,"pitch":-131.09223439800672,"roll":60.04019767231546},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.156"} +{"sensors":[{"euler":{"heading":48.44642074732645,"pitch":128.22128346192113,"roll":20.626335016666445},"location":"Left Knee"},{"euler":{"heading":58.7177196358339,"pitch":96.10646971841642,"roll":20.592417334838103},"location":"Left Ankle"},{"euler":{"heading":72.02462500312758,"pitch":-16.323417814420946,"roll":-10.027262763844162},"location":"Right Ankle"},{"euler":{"heading":134.83303511964698,"pitch":-163.01734952675915,"roll":50.83134582545948},"location":"Right Hip"},{"euler":{"heading":46.04683426778792,"pitch":-102.28203445469737,"roll":24.5049988713348},"location":"Right Knee"},{"euler":{"heading":20.311660118467735,"pitch":-132.82676095820605,"roll":60.77992790508391},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.257"} +{"sensors":[{"euler":{"heading":51.7892786725938,"pitch":127.09290511572902,"roll":18.126201514999803},"location":"Left Knee"},{"euler":{"heading":62.56469767225051,"pitch":97.68957274657478,"roll":24.320675601354296},"location":"Left Ankle"},{"euler":{"heading":72.82216250281482,"pitch":-16.17232603297885,"roll":-9.768286487459745},"location":"Right Ankle"},{"euler":{"heading":133.86223160768228,"pitch":-163.36561457408325,"roll":51.123211242913534},"location":"Right Hip"},{"euler":{"heading":44.45465084100913,"pitch":-102.96008100922764,"roll":25.66699898420132},"location":"Right Knee"},{"euler":{"heading":19.936744106620964,"pitch":-131.76283486238543,"roll":60.90818511457552},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.358"} +{"sensors":[{"euler":{"heading":54.39160080533442,"pitch":126.79611460415612,"roll":16.25108136349982},"location":"Left Knee"},{"euler":{"heading":64.37697790502546,"pitch":97.2143654719173,"roll":26.626108041218867},"location":"Left Ankle"},{"euler":{"heading":73.22119625253335,"pitch":-15.917593429680968,"roll":-9.760207838713772},"location":"Right Ankle"},{"euler":{"heading":133.39475844691404,"pitch":-163.51655311667494,"roll":51.73589011862218},"location":"Right Hip"},{"euler":{"heading":43.609185756908225,"pitch":-103.65782290830488,"roll":26.187799085781187},"location":"Right Knee"},{"euler":{"heading":18.60556969595887,"pitch":-130.0365513761469,"roll":60.29236660311797},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.459"} +{"sensors":[{"euler":{"heading":53.33369072480098,"pitch":127.64150314374051,"roll":16.35097322714984},"location":"Left Knee"},{"euler":{"heading":63.28303011452291,"pitch":96.22417892472558,"roll":26.01974723709698},"location":"Left Ankle"},{"euler":{"heading":73.20532662728002,"pitch":-15.563334086712873,"roll":-9.934187054842395},"location":"Right Ankle"},{"euler":{"heading":133.36153260222264,"pitch":-163.57114780500746,"roll":52.43105110675996},"location":"Right Hip"},{"euler":{"heading":43.4420171812174,"pitch":-104.2795406174744,"roll":26.150269177203068},"location":"Right Knee"},{"euler":{"heading":17.132512726362982,"pitch":-128.1953962385322,"roll":59.33812994280618},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.560"} +{"sensors":[{"euler":{"heading":49.70032165232089,"pitch":129.23985282936647,"roll":17.822125904434856},"location":"Left Knee"},{"euler":{"heading":59.83597710307062,"pitch":95.31426103225303,"roll":23.03027251338728},"location":"Left Ankle"},{"euler":{"heading":72.62854396455202,"pitch":-15.057000678041586,"roll":-10.322018349358155},"location":"Right Ankle"},{"euler":{"heading":133.6691293420004,"pitch":-163.6515330245067,"roll":53.075445996083964},"location":"Right Hip"},{"euler":{"heading":44.02906546309566,"pitch":-104.76408655572695,"roll":25.50399225948276},"location":"Right Knee"},{"euler":{"heading":16.194261453726686,"pitch":-126.81960661467897,"roll":58.541816948525565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.662"} +{"sensors":[{"euler":{"heading":46.1115394870888,"pitch":130.90336754642982,"roll":19.46491331399137},"location":"Left Knee"},{"euler":{"heading":56.37737939276356,"pitch":94.79533492902773,"roll":19.820995262048555},"location":"Left Ankle"},{"euler":{"heading":71.33443956809683,"pitch":-14.420050610237428,"roll":-11.22731651442234},"location":"Right Ankle"},{"euler":{"heading":134.38346640780037,"pitch":-163.71762972205605,"roll":53.705401396475565},"location":"Right Hip"},{"euler":{"heading":45.4511589167861,"pitch":-104.98767790015425,"roll":24.203593033534485},"location":"Right Knee"},{"euler":{"heading":15.943585308354018,"pitch":-126.01889595321109,"roll":58.00013525367301},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.762"} +{"sensors":[{"euler":{"heading":44.212885538379915,"pitch":131.46928079178684,"roll":20.749671982592233},"location":"Left Knee"},{"euler":{"heading":54.5396414534872,"pitch":94.75955143612495,"roll":17.9576457358437},"location":"Left Ankle"},{"euler":{"heading":68.68224561128714,"pitch":-14.140545549213686,"roll":-12.260834862980106},"location":"Right Ankle"},{"euler":{"heading":135.53261976702032,"pitch":-163.56461674985044,"roll":54.003611256828016},"location":"Right Hip"},{"euler":{"heading":48.40604302510749,"pitch":-104.63891011013884,"roll":21.75823373018104},"location":"Right Knee"},{"euler":{"heading":15.842976777518617,"pitch":-125.35450635788997,"roll":57.71262172830571},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.863"} +{"sensors":[{"euler":{"heading":43.197846984541926,"pitch":131.39735271260815,"roll":21.58095478433301},"location":"Left Knee"},{"euler":{"heading":53.52317730813848,"pitch":94.80234629251245,"roll":16.76813116225933},"location":"Left Ankle"},{"euler":{"heading":64.93902105015843,"pitch":-13.745240994292319,"roll":-13.453501376682095},"location":"Right Ankle"},{"euler":{"heading":137.1981077903183,"pitch":-162.8019050748654,"roll":53.57825013114522},"location":"Right Hip"},{"euler":{"heading":51.465438722596744,"pitch":-104.37501909912496,"roll":19.032410357162934},"location":"Right Knee"},{"euler":{"heading":16.008679099766756,"pitch":-125.31905572210098,"roll":57.76010955547515},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.964"} +{"sensors":[{"euler":{"heading":42.37181228608773,"pitch":131.04511744134734,"roll":22.17910930589971},"location":"Left Knee"},{"euler":{"heading":53.020859577324636,"pitch":94.75336166326122,"roll":16.072568046033396},"location":"Left Ankle"},{"euler":{"heading":62.77011894514259,"pitch":-13.808216894863087,"roll":-14.051901239013885},"location":"Right Ankle"},{"euler":{"heading":138.44704701128646,"pitch":-162.10921456737887,"roll":52.676675118030694},"location":"Right Hip"},{"euler":{"heading":52.86264485033708,"pitch":-104.00001718921246,"roll":17.766669321446642},"location":"Right Knee"},{"euler":{"heading":16.50156118979008,"pitch":-126.04340014989089,"roll":58.12159859992764},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.65"} +{"sensors":[{"euler":{"heading":42.12213105747896,"pitch":130.4531056972126,"roll":22.404948375309743},"location":"Left Knee"},{"euler":{"heading":52.97502361959217,"pitch":94.7405254969351,"roll":15.840311241430056},"location":"Left Ankle"},{"euler":{"heading":63.26810705062833,"pitch":-14.564895205376779,"roll":-13.527961115112497},"location":"Right Ankle"},{"euler":{"heading":138.9148423101578,"pitch":-161.760793110641,"roll":51.66525760622763},"location":"Right Hip"},{"euler":{"heading":52.03263036530337,"pitch":-103.38126547029121,"roll":18.702502389301976},"location":"Right Knee"},{"euler":{"heading":17.188905070811074,"pitch":-127.48906013490179,"roll":58.64068873993487},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.165"} +{"sensors":[{"euler":{"heading":42.553667951731065,"pitch":129.61404512749135,"roll":22.17070353777877},"location":"Left Knee"},{"euler":{"heading":53.48377125763295,"pitch":94.8602229472416,"roll":16.12503011728705},"location":"Left Ankle"},{"euler":{"heading":66.1662963455655,"pitch":-15.283405684839101,"roll":-12.293915003601247},"location":"Right Ankle"},{"euler":{"heading":138.43585807914204,"pitch":-161.83471379957692,"roll":50.94873184560487},"location":"Right Hip"},{"euler":{"heading":49.57311732877303,"pitch":-102.7431389232621,"roll":21.28850215037178},"location":"Right Knee"},{"euler":{"heading":18.06376456372997,"pitch":-129.25890412141163,"roll":59.276619865941385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.266"} +{"sensors":[{"euler":{"heading":43.71080115655796,"pitch":128.64639061474222,"roll":21.341133184000892},"location":"Left Knee"},{"euler":{"heading":54.69164413186966,"pitch":95.12420065251744,"roll":17.137527105558345},"location":"Left Ankle"},{"euler":{"heading":69.07466671100896,"pitch":-15.98631511635519,"roll":-10.989523503241124},"location":"Right Ankle"},{"euler":{"heading":137.16727227122783,"pitch":-162.1949924196192,"roll":50.672608661044386},"location":"Right Hip"},{"euler":{"heading":46.75330559589573,"pitch":-102.39382503093589,"roll":24.2034019353346},"location":"Right Knee"},{"euler":{"heading":19.169888107356975,"pitch":-131.53301370927048,"roll":60.02395787934725},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.368"} +{"sensors":[{"euler":{"heading":46.06472104090217,"pitch":127.67550155326799,"roll":19.5132698656008},"location":"Left Knee"},{"euler":{"heading":56.828729718682695,"pitch":95.5367805872657,"roll":19.53002439500251},"location":"Left Ankle"},{"euler":{"heading":70.50470003990807,"pitch":-16.20018360471967,"roll":-10.515571152917012},"location":"Right Ankle"},{"euler":{"heading":136.36304504410506,"pitch":-162.39424317765727,"roll":50.48659779493995},"location":"Right Hip"},{"euler":{"heading":44.384225036306155,"pitch":-102.54194252784231,"roll":26.114311741801142},"location":"Right Knee"},{"euler":{"heading":20.20289929662128,"pitch":-133.33596233834345,"roll":60.671562091412525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.469"} +{"sensors":[{"euler":{"heading":49.670748936811954,"pitch":126.67670139794119,"roll":17.04319287904072},"location":"Left Knee"},{"euler":{"heading":60.058356746814425,"pitch":96.75185252853913,"roll":22.989521955502262},"location":"Left Ankle"},{"euler":{"heading":71.52923003591727,"pitch":-16.298915244247702,"roll":-10.19526403762531},"location":"Right Ankle"},{"euler":{"heading":135.43924053969457,"pitch":-162.66106885989154,"roll":50.83168801544595},"location":"Right Hip"},{"euler":{"heading":42.87080253267554,"pitch":-103.13149827505808,"roll":27.22788056762103},"location":"Right Knee"},{"euler":{"heading":19.63260936695915,"pitch":-132.37736610450912,"roll":60.71690588227128},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.569"} +{"sensors":[{"euler":{"heading":52.52867404313076,"pitch":126.37153125814707,"roll":15.29512359113665},"location":"Left Knee"},{"euler":{"heading":62.07127107213299,"pitch":96.50166727568522,"roll":25.109319759952037},"location":"Left Ankle"},{"euler":{"heading":72.13255703232554,"pitch":-16.394023719822933,"roll":-10.12573763386278},"location":"Right Ankle"},{"euler":{"heading":135.07031648572513,"pitch":-162.78246197390237,"roll":51.504769213901355},"location":"Right Hip"},{"euler":{"heading":42.296222279407985,"pitch":-103.69334844755227,"roll":27.65509251085893},"location":"Right Knee"},{"euler":{"heading":18.369348430263237,"pitch":-130.70837949405822,"roll":60.03896529404415},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.670"} +{"sensors":[{"euler":{"heading":51.70705663881769,"pitch":127.25937813233237,"roll":15.453111232022984},"location":"Left Knee"},{"euler":{"heading":61.05164396491969,"pitch":95.56400054811671,"roll":24.492137783956835},"location":"Left Ankle"},{"euler":{"heading":72.43180132909299,"pitch":-16.37962134784064,"roll":-10.363163870476502},"location":"Right Ankle"},{"euler":{"heading":135.1695348371526,"pitch":-162.76046577651212,"roll":52.26679229251122},"location":"Right Hip"},{"euler":{"heading":42.33535005146719,"pitch":-104.14901360279704,"roll":27.514583259773037},"location":"Right Knee"},{"euler":{"heading":17.082413587236914,"pitch":-129.00004154465242,"roll":59.10381876463973},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.771"} +{"sensors":[{"euler":{"heading":47.84885097493592,"pitch":128.97094031909916,"roll":17.095300108820688},"location":"Left Knee"},{"euler":{"heading":57.74647956842772,"pitch":94.63885049330503,"roll":21.51167400556115},"location":"Left Ankle"},{"euler":{"heading":72.0573711961837,"pitch":-16.17915921305658,"roll":-10.708097483428851},"location":"Right Ankle"},{"euler":{"heading":135.45258135343735,"pitch":-162.8344191988609,"roll":52.996363063260105},"location":"Right Hip"},{"euler":{"heading":43.10181504632047,"pitch":-104.51536224251734,"roll":26.731874933795734},"location":"Right Knee"},{"euler":{"heading":16.155422228513224,"pitch":-127.65628739018719,"roll":58.37468688817576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.871"} +{"sensors":[{"euler":{"heading":44.07646587744233,"pitch":130.68634628718925,"roll":18.86702009793862},"location":"Left Knee"},{"euler":{"heading":54.50308161158495,"pitch":94.05621544397452,"roll":18.398006605005037},"location":"Left Ankle"},{"euler":{"heading":70.82663407656533,"pitch":-15.754993291750921,"roll":-11.618537735085965},"location":"Right Ankle"},{"euler":{"heading":136.04482321809363,"pitch":-163.06972727897482,"roll":53.684226756934095},"location":"Right Hip"},{"euler":{"heading":44.810383541688424,"pitch":-104.61382601826561,"roll":25.189937440416163},"location":"Right Knee"},{"euler":{"heading":15.846130005661902,"pitch":-126.83440865116847,"roll":57.86846819935819},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.972"} +{"sensors":[{"euler":{"heading":42.2375692896981,"pitch":131.26146165847032,"roll":20.22406808814476},"location":"Left Knee"},{"euler":{"heading":52.87777345042646,"pitch":94.00684389957708,"roll":16.64570594450453},"location":"Left Ankle"},{"euler":{"heading":68.08147066890879,"pitch":-15.535743962575829,"roll":-12.706683961577369},"location":"Right Ankle"},{"euler":{"heading":137.04659089628427,"pitch":-162.98150455107734,"roll":53.99080408124068},"location":"Right Hip"},{"euler":{"heading":47.916845187519584,"pitch":-104.10869341643905,"roll":22.545943696374547},"location":"Right Knee"},{"euler":{"heading":15.736517005095711,"pitch":-126.21971778605163,"roll":57.61287137942237},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.73"} +{"sensors":[{"euler":{"heading":41.3388123607283,"pitch":131.1540654926233,"roll":21.201661279330285},"location":"Left Knee"},{"euler":{"heading":52.077496105383815,"pitch":94.09990950961938,"roll":15.581135350054078},"location":"Left Ankle"},{"euler":{"heading":64.67332360201792,"pitch":-15.344669566318247,"roll":-13.623515565419632},"location":"Right Ankle"},{"euler":{"heading":138.66693180665584,"pitch":-162.23335409596962,"roll":53.53547367311662},"location":"Right Hip"},{"euler":{"heading":50.93766066876763,"pitch":-103.66032407479516,"roll":19.84134932673709},"location":"Right Knee"},{"euler":{"heading":16.08161530458614,"pitch":-126.31024600744648,"roll":57.73283424148014},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.174"} +{"sensors":[{"euler":{"heading":40.92368112465547,"pitch":130.67615894336095,"roll":21.850245151397257},"location":"Left Knee"},{"euler":{"heading":52.54474649484544,"pitch":94.36491855865744,"roll":15.504271815048671},"location":"Left Ankle"},{"euler":{"heading":62.92474124181613,"pitch":-15.310202609686423,"roll":-14.13616400887767},"location":"Right Ankle"},{"euler":{"heading":139.69398862599027,"pitch":-161.60376868637266,"roll":52.638176305804954},"location":"Right Hip"},{"euler":{"heading":51.931394601890865,"pitch":-103.30054166731566,"roll":18.794714394063384},"location":"Right Knee"},{"euler":{"heading":16.63595377412753,"pitch":-127.01672140670183,"roll":58.10955081733213},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.275"} +{"sensors":[{"euler":{"heading":41.13131301218992,"pitch":129.85854304902486,"roll":22.14022063625753},"location":"Left Knee"},{"euler":{"heading":53.2277718453609,"pitch":94.6971767027917,"roll":15.785094633543805},"location":"Left Ankle"},{"euler":{"heading":63.70726711763452,"pitch":-15.87918234871778,"roll":-13.435047607989903},"location":"Right Ankle"},{"euler":{"heading":139.86833976339125,"pitch":-161.3871418177354,"roll":51.63060867522446},"location":"Right Hip"},{"euler":{"heading":50.68825514170178,"pitch":-102.6079875005841,"roll":19.958992954657045},"location":"Right Knee"},{"euler":{"heading":17.428608396714775,"pitch":-128.25254926603165,"roll":58.604845735598914},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.376"} +{"sensors":[{"euler":{"heading":41.88693171097093,"pitch":128.94143874412237,"roll":21.88244857263178},"location":"Left Knee"},{"euler":{"heading":54.24874466082481,"pitch":95.00870903251253,"roll":16.581585170189424},"location":"Left Ankle"},{"euler":{"heading":66.33654040587106,"pitch":-16.510014113846005,"roll":-12.097792847190913},"location":"Right Ankle"},{"euler":{"heading":139.11275578705212,"pitch":-161.68592763596186,"roll":51.08004780770201},"location":"Right Hip"},{"euler":{"heading":48.038179627531605,"pitch":-102.00343875052569,"roll":22.70059365919134},"location":"Right Knee"},{"euler":{"heading":18.366997557043298,"pitch":-129.97729433942848,"roll":59.238111162039026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.476"} +{"sensors":[{"euler":{"heading":43.25448853987383,"pitch":128.05354486971012,"roll":20.962953715368602},"location":"Left Knee"},{"euler":{"heading":55.94262019474233,"pitch":95.32033812926127,"roll":18.11092665317048},"location":"Left Ankle"},{"euler":{"heading":69.10288636528396,"pitch":-17.027762702461406,"roll":-10.775513562471822},"location":"Right Ankle"},{"euler":{"heading":137.4327302083469,"pitch":-162.24233487236566,"roll":50.92204302693181},"location":"Right Hip"},{"euler":{"heading":45.284361664778444,"pitch":-101.82184487547312,"roll":25.33053429327221},"location":"Right Knee"},{"euler":{"heading":19.492797801338966,"pitch":-132.35456490548563,"roll":59.876800045835125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.577"} +{"sensors":[{"euler":{"heading":46.01653968588645,"pitch":127.19819038273911,"roll":18.94165834383174},"location":"Left Knee"},{"euler":{"heading":58.0546081752681,"pitch":95.81330431633515,"roll":20.743583987853434},"location":"Left Ankle"},{"euler":{"heading":70.61134772875558,"pitch":-16.974986432215264,"roll":-10.491712206224639},"location":"Right Ankle"},{"euler":{"heading":136.3894571875122,"pitch":-162.55560138512908,"roll":50.886088724238626},"location":"Right Hip"},{"euler":{"heading":43.1371754983006,"pitch":-102.28966038792582,"roll":27.016230863944987},"location":"Right Knee"},{"euler":{"heading":20.04976802120507,"pitch":-133.30660841493707,"roll":60.34537004125161},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.677"} +{"sensors":[{"euler":{"heading":49.683635717297804,"pitch":126.3721213444652,"roll":16.528742509448566},"location":"Left Knee"},{"euler":{"heading":60.68664735774129,"pitch":96.61322388470163,"roll":23.937975589068092},"location":"Left Ankle"},{"euler":{"heading":71.77521295588002,"pitch":-17.01498778899374,"roll":-10.117540985602176},"location":"Right Ankle"},{"euler":{"heading":135.15051146876098,"pitch":-163.1375412466162,"roll":51.32247985181476},"location":"Right Hip"},{"euler":{"heading":41.76095794847054,"pitch":-102.89819434913325,"roll":28.00835777755049},"location":"Right Knee"},{"euler":{"heading":19.082291219084567,"pitch":-131.88844757344336,"roll":60.16708303712645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.778"} +{"sensors":[{"euler":{"heading":51.884022145568025,"pitch":126.33490921001868,"roll":15.21961825850371},"location":"Left Knee"},{"euler":{"heading":62.03048262196717,"pitch":96.08315149623147,"roll":25.362928030161285},"location":"Left Ankle"},{"euler":{"heading":72.59144166029203,"pitch":-17.044739010094364,"roll":-9.949536887041958},"location":"Right Ankle"},{"euler":{"heading":134.36671032188488,"pitch":-163.58628712195457,"roll":52.04023186663329},"location":"Right Hip"},{"euler":{"heading":41.07861215362349,"pitch":-103.38337491421993,"roll":28.395021999795443},"location":"Right Knee"},{"euler":{"heading":17.61156209717611,"pitch":-130.30585281609902,"roll":59.369124733413805},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.878"} +{"sensors":[{"euler":{"heading":49.920619931011224,"pitch":127.43891828901681,"roll":15.91640643265334},"location":"Left Knee"},{"euler":{"heading":60.17743435977045,"pitch":95.01858634660833,"roll":23.976635227145156},"location":"Left Ankle"},{"euler":{"heading":72.91979749426284,"pitch":-16.915265109084928,"roll":-10.042083198337764},"location":"Right Ankle"},{"euler":{"heading":134.0425392896964,"pitch":-163.96515840975914,"roll":52.836208679969964},"location":"Right Hip"},{"euler":{"heading":40.98950093826114,"pitch":-103.81378742279793,"roll":28.286769799815897},"location":"Right Knee"},{"euler":{"heading":16.344155887458502,"pitch":-128.6752675344891,"roll":58.62596226007243},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.979"} +{"sensors":[{"euler":{"heading":45.4910579379101,"pitch":129.35752646011514,"roll":17.781015789388004},"location":"Left Knee"},{"euler":{"heading":56.7721909237934,"pitch":93.7917277119475,"roll":20.71022170443064},"location":"Left Ankle"},{"euler":{"heading":72.57781774483657,"pitch":-16.598738598176435,"roll":-10.562874878503989},"location":"Right Ankle"},{"euler":{"heading":133.98828536072676,"pitch":-164.43739256878322,"roll":53.65258781197297},"location":"Right Hip"},{"euler":{"heading":41.65930084443502,"pitch":-104.08865868051814,"roll":27.564342819834305},"location":"Right Knee"},{"euler":{"heading":15.603490298712654,"pitch":-127.7389907810402,"roll":58.100866034065184},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.80"} +{"sensors":[{"euler":{"heading":42.604452144119094,"pitch":130.60302381410364,"roll":19.390414210449205},"location":"Left Knee"},{"euler":{"heading":54.251221831414064,"pitch":93.27505494075275,"roll":18.351699533987574},"location":"Left Ankle"},{"euler":{"heading":71.18878597035291,"pitch":-16.288864738358793,"roll":-11.41283739065359},"location":"Right Ankle"},{"euler":{"heading":134.35195682465408,"pitch":-164.9061533119049,"roll":54.40607903077567},"location":"Right Hip"},{"euler":{"heading":43.43712075999152,"pitch":-104.06104281246633,"roll":26.032908537850876},"location":"Right Knee"},{"euler":{"heading":15.274391268841388,"pitch":-127.12759170293617,"roll":57.71577943065867},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.180"} +{"sensors":[{"euler":{"heading":41.000256929707184,"pitch":131.05522143269326,"roll":20.545122789404285},"location":"Left Knee"},{"euler":{"heading":52.95734964827266,"pitch":93.13504944667748,"roll":16.872779580588816},"location":"Left Ankle"},{"euler":{"heading":67.98240737331761,"pitch":-15.691228264522914,"roll":-12.571553651588232},"location":"Right Ankle"},{"euler":{"heading":135.17301114218867,"pitch":-164.6905379807144,"roll":54.61547112769811},"location":"Right Hip"},{"euler":{"heading":46.318408683992374,"pitch":-103.7549385312197,"roll":23.423367684065788},"location":"Right Knee"},{"euler":{"heading":14.97195214195725,"pitch":-126.66483253264256,"roll":57.63795148759281},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.280"} +{"sensors":[{"euler":{"heading":40.018981236736465,"pitch":131.10594928942393,"roll":21.315610510463856},"location":"Left Knee"},{"euler":{"heading":52.50536468344539,"pitch":92.99654450200974,"roll":16.198001622529933},"location":"Left Ankle"},{"euler":{"heading":64.92791663598585,"pitch":-15.290855438070622,"roll":-13.40189828642941},"location":"Right Ankle"},{"euler":{"heading":136.1369600279698,"pitch":-164.09648418264297,"roll":54.1226740149283},"location":"Right Hip"},{"euler":{"heading":48.78656781559314,"pitch":-103.50444467809773,"roll":21.012280915659208},"location":"Right Knee"},{"euler":{"heading":14.949756927761525,"pitch":-127.0420992793783,"roll":57.79290633883353},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.381"} +{"sensors":[{"euler":{"heading":39.417083113062816,"pitch":130.88285436048153,"roll":21.80279945941747},"location":"Left Knee"},{"euler":{"heading":53.061078215100856,"pitch":92.89064005180876,"roll":16.30320146027694},"location":"Left Ankle"},{"euler":{"heading":64.11637497238728,"pitch":-15.64301989426356,"roll":-13.517958457786468},"location":"Right Ankle"},{"euler":{"heading":137.02951402517283,"pitch":-163.51183576437867,"roll":53.154156613435475},"location":"Right Hip"},{"euler":{"heading":49.257911034033825,"pitch":-102.91650021028796,"roll":20.542302824093287},"location":"Right Knee"},{"euler":{"heading":15.404781234985371,"pitch":-128.25038935144048,"roll":58.19486570495018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.481"} +{"sensors":[{"euler":{"heading":39.36287480175654,"pitch":130.41331892443338,"roll":21.903769513475726},"location":"Left Knee"},{"euler":{"heading":53.67997039359078,"pitch":92.77032604662789,"roll":16.735381314249246},"location":"Left Ankle"},{"euler":{"heading":65.88598747514855,"pitch":-16.334967904837203,"roll":-12.666162612007822},"location":"Right Ankle"},{"euler":{"heading":136.92031262265556,"pitch":-163.3731521879408,"roll":52.31374095209193},"location":"Right Hip"},{"euler":{"heading":47.657119930630444,"pitch":-102.11860018925917,"roll":22.18182254168396},"location":"Right Knee"},{"euler":{"heading":16.070553111486834,"pitch":-129.99410041629642,"roll":58.67537913445517},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.582"} +{"sensors":[{"euler":{"heading":40.10158732158089,"pitch":129.75323703199004,"roll":21.39464256212815},"location":"Left Knee"},{"euler":{"heading":54.730723354231706,"pitch":92.73079344196509,"roll":17.70559318282432},"location":"Left Ankle"},{"euler":{"heading":68.91613872763371,"pitch":-16.870221114353484,"roll":-11.23079635080704},"location":"Right Ankle"},{"euler":{"heading":136.19703136038999,"pitch":-163.50458696914671,"roll":51.88861685688274},"location":"Right Hip"},{"euler":{"heading":44.8351579375674,"pitch":-101.68174017033326,"roll":25.057390287515563},"location":"Right Knee"},{"euler":{"heading":17.03224780033815,"pitch":-132.20719037466677,"roll":59.26409122100965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.683"} +{"sensors":[{"euler":{"heading":41.7476785894228,"pitch":129.06541332879104,"roll":20.148928305915337},"location":"Left Knee"},{"euler":{"heading":56.52015101880854,"pitch":92.80771409776858,"roll":19.566283864541887},"location":"Left Ankle"},{"euler":{"heading":71.38702485487033,"pitch":-17.095699002918135,"roll":-10.201466715726337},"location":"Right Ankle"},{"euler":{"heading":135.189828224351,"pitch":-163.67912827223205,"roll":51.79975517119447},"location":"Right Hip"},{"euler":{"heading":42.33914214381066,"pitch":-101.88231615329994,"roll":27.42040125876401},"location":"Right Knee"},{"euler":{"heading":18.279023020304336,"pitch":-134.78647133720008,"roll":59.856432098908684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.784"} +{"sensors":[{"euler":{"heading":45.02916073048051,"pitch":128.38387199591193,"roll":17.884035475323802},"location":"Left Knee"},{"euler":{"heading":58.88063591692769,"pitch":93.32069268799172,"roll":22.4846554780877},"location":"Left Ankle"},{"euler":{"heading":72.6045723693833,"pitch":-16.87362910262632,"roll":-9.868820044153704},"location":"Right Ankle"},{"euler":{"heading":134.42084540191593,"pitch":-163.82371544500884,"roll":51.94477965407503},"location":"Right Hip"},{"euler":{"heading":40.198977929429596,"pitch":-102.53158453796995,"roll":28.922111132887608},"location":"Right Knee"},{"euler":{"heading":18.551120718273904,"pitch":-135.6578242034801,"roll":60.202038889017814},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.885"} +{"sensors":[{"euler":{"heading":48.63249465743247,"pitch":127.70173479632074,"roll":15.539381927791423},"location":"Left Knee"},{"euler":{"heading":61.236322325234916,"pitch":93.67612341919255,"roll":25.60493993027893},"location":"Left Ankle"},{"euler":{"heading":73.31911513244498,"pitch":-16.51126619236369,"roll":-9.900688039738334},"location":"Right Ankle"},{"euler":{"heading":133.48501086172433,"pitch":-164.15384390050798,"roll":52.60030168866753},"location":"Right Hip"},{"euler":{"heading":38.93533013648664,"pitch":-103.45342608417295,"roll":29.62990001959885},"location":"Right Knee"},{"euler":{"heading":17.833508646446514,"pitch":-134.2482917831321,"roll":60.14433500011603},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.986"} +{"sensors":[{"euler":{"heading":50.181745191689224,"pitch":127.85031131668866,"roll":14.61669373501228},"location":"Left Knee"},{"euler":{"heading":61.87519009271143,"pitch":92.8397610772733,"roll":26.494445937251037},"location":"Left Ankle"},{"euler":{"heading":73.70595361920049,"pitch":-16.12263957312732,"roll":-10.248119235764502},"location":"Right Ankle"},{"euler":{"heading":132.9552597755519,"pitch":-164.40095951045717,"roll":53.43402151980078},"location":"Right Hip"},{"euler":{"heading":38.42929712283798,"pitch":-104.26433347575565,"roll":29.791910017638966},"location":"Right Knee"},{"euler":{"heading":16.618907781801866,"pitch":-132.53596260481888,"roll":59.47365150010443},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.87"} +{"sensors":[{"euler":{"heading":47.8448206725203,"pitch":128.9902801850198,"roll":15.692524361511053},"location":"Left Knee"},{"euler":{"heading":59.500171083440286,"pitch":92.05578496954597,"roll":24.52625134352593},"location":"Left Ankle"},{"euler":{"heading":73.51660825728044,"pitch":-15.660375615814589,"roll":-10.64205731218805},"location":"Right Ankle"},{"euler":{"heading":133.0784837979967,"pitch":-164.43586355941144,"roll":54.1906193678207},"location":"Right Hip"},{"euler":{"heading":38.57386741055418,"pitch":-104.88790012818008,"roll":29.45646901587507},"location":"Right Knee"},{"euler":{"heading":15.55076700362168,"pitch":-130.807366344337,"roll":58.75753635009399},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.188"} +{"sensors":[{"euler":{"heading":44.48533860526827,"pitch":130.59125216651782,"roll":17.57952192535995},"location":"Left Knee"},{"euler":{"heading":55.74390397509626,"pitch":91.63145647259137,"roll":20.89237620917334},"location":"Left Ankle"},{"euler":{"heading":72.49619743155239,"pitch":-14.94433805423313,"roll":-11.546601580969247},"location":"Right Ankle"},{"euler":{"heading":133.83313541819706,"pitch":-164.26102720347032,"roll":54.79655743103863},"location":"Right Hip"},{"euler":{"heading":39.660230669498766,"pitch":-105.37411011536207,"roll":28.323322114287564},"location":"Right Knee"},{"euler":{"heading":15.07069030325951,"pitch":-129.7516297099033,"roll":58.088032715084594},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.289"} +{"sensors":[{"euler":{"heading":42.44930474474145,"pitch":131.37587694986604,"roll":19.259069732823953},"location":"Left Knee"},{"euler":{"heading":52.99451357758664,"pitch":91.89331082533224,"roll":18.140638588256003},"location":"Left Ankle"},{"euler":{"heading":70.32157768839716,"pitch":-14.506154248809818,"roll":-12.698191422872323},"location":"Right Ankle"},{"euler":{"heading":135.12482187637735,"pitch":-164.2349244831233,"roll":55.25440168793477},"location":"Right Hip"},{"euler":{"heading":42.1504576025489,"pitch":-105.31794910382587,"roll":26.253489902858806},"location":"Right Knee"},{"euler":{"heading":15.31362127293356,"pitch":-128.99521673891297,"roll":57.779229443576135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.390"} +{"sensors":[{"euler":{"heading":41.5106242702673,"pitch":131.31328925487944,"roll":20.53941275954156},"location":"Left Knee"},{"euler":{"heading":52.05131221982798,"pitch":92.42272974279902,"roll":16.776574729430404},"location":"Left Ankle"},{"euler":{"heading":66.62066991955744,"pitch":-13.693038823928836,"roll":-14.27212228058509},"location":"Right Ankle"},{"euler":{"heading":137.13733968873962,"pitch":-163.60518203481098,"roll":55.15396151914129},"location":"Right Hip"},{"euler":{"heading":45.37916184229401,"pitch":-105.07365419344328,"roll":23.371890912572926},"location":"Right Knee"},{"euler":{"heading":15.676009145640204,"pitch":-128.6581950650217,"roll":57.676306499218526},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.491"} +{"sensors":[{"euler":{"heading":41.32206184324057,"pitch":130.6632103293915,"roll":21.485471483587403},"location":"Left Knee"},{"euler":{"heading":52.11493099784518,"pitch":93.34920676851912,"roll":16.073917256487366},"location":"Left Ankle"},{"euler":{"heading":63.471102927601706,"pitch":-13.542484941535953,"roll":-15.238660052526583},"location":"Right Ankle"},{"euler":{"heading":139.29235571986567,"pitch":-162.5509138313299,"roll":54.288565367227164},"location":"Right Hip"},{"euler":{"heading":47.67874565806461,"pitch":-104.46628877409896,"roll":21.24720182131563},"location":"Right Knee"},{"euler":{"heading":16.433408231076186,"pitch":-128.91112555851953,"roll":57.81492584929668},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.592"} +{"sensors":[{"euler":{"heading":41.67735565891651,"pitch":129.62188929645234,"roll":22.111924335228665},"location":"Left Knee"},{"euler":{"heading":53.12843789806066,"pitch":94.34553609166721,"roll":16.07277553083863},"location":"Left Ankle"},{"euler":{"heading":62.76149263484154,"pitch":-14.169486447382358,"roll":-15.471044047273924},"location":"Right Ankle"},{"euler":{"heading":141.1068701478791,"pitch":-161.7020724481969,"roll":52.965958830504455},"location":"Right Hip"},{"euler":{"heading":48.085871092258145,"pitch":-103.52590989668906,"roll":20.97248163918407},"location":"Right Knee"},{"euler":{"heading":17.383817407968568,"pitch":-129.7262630026676,"roll":58.102183264367014},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.693"} +{"sensors":[{"euler":{"heading":42.415870093024864,"pitch":128.4284503668071,"roll":22.300731901705802},"location":"Left Knee"},{"euler":{"heading":54.159344108254594,"pitch":95.1484824825005,"roll":16.434247977754765},"location":"Left Ankle"},{"euler":{"heading":64.8853433713574,"pitch":-15.177537802644123,"roll":-14.548939642546532},"location":"Right Ankle"},{"euler":{"heading":141.7086831330912,"pitch":-161.3818652033772,"roll":51.75061294745401},"location":"Right Hip"},{"euler":{"heading":46.40228398303233,"pitch":-102.34206890702016,"roll":22.937733475265663},"location":"Right Knee"},{"euler":{"heading":18.53918566717171,"pitch":-131.15988670240085,"roll":58.55446493793032},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.793"} +{"sensors":[{"euler":{"heading":43.72428308372238,"pitch":127.1481053301264,"roll":21.914408711535224},"location":"Left Knee"},{"euler":{"heading":55.46840969742914,"pitch":95.93363423425045,"roll":17.24707317997929},"location":"Left Ankle"},{"euler":{"heading":68.00930903422166,"pitch":-15.928534022379711,"roll":-12.89404567829188},"location":"Right Ankle"},{"euler":{"heading":140.9003148197821,"pitch":-161.5749286830395,"roll":51.23805165270861},"location":"Right Hip"},{"euler":{"heading":43.4745555847291,"pitch":-101.42036201631815,"roll":25.931460127739097},"location":"Right Knee"},{"euler":{"heading":19.779017100454542,"pitch":-132.92514803216076,"roll":59.14901844413729},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.895"} +{"sensors":[{"euler":{"heading":45.75185477535015,"pitch":125.96454479711376,"roll":20.679217840381703},"location":"Left Knee"},{"euler":{"heading":57.30906872768623,"pitch":96.64652081082541,"roll":18.94111586198136},"location":"Left Ankle"},{"euler":{"heading":70.4208781307995,"pitch":-16.37943062014174,"roll":-11.592141110462693},"location":"Right Ankle"},{"euler":{"heading":139.9040333378039,"pitch":-161.99868581473558,"roll":50.92049648743775},"location":"Right Hip"},{"euler":{"heading":41.02085002625619,"pitch":-101.23457581468634,"roll":28.175814114965185},"location":"Right Knee"},{"euler":{"heading":21.019865390409088,"pitch":-134.69513322894468,"roll":59.802866599723565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.996"} +{"sensors":[{"euler":{"heading":49.157919297815134,"pitch":125.1930903174024,"roll":18.311296056343533},"location":"Left Knee"},{"euler":{"heading":60.55941185491761,"pitch":97.38186872974288,"roll":22.309504275783222},"location":"Left Ankle"},{"euler":{"heading":71.99754031771955,"pitch":-16.553987558127567,"roll":-11.270426999416424},"location":"Right Ankle"},{"euler":{"heading":139.0636300040235,"pitch":-162.361317233262,"roll":51.003446838693975},"location":"Right Hip"},{"euler":{"heading":39.22501502363057,"pitch":-101.56111823321771,"roll":29.589482703468665},"location":"Right Knee"},{"euler":{"heading":20.630378851368178,"pitch":-134.2381199060502,"roll":59.86007993975121},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.97"} +{"sensors":[{"euler":{"heading":52.442127368033624,"pitch":124.64253128566216,"roll":16.19266645070918},"location":"Left Knee"},{"euler":{"heading":63.60347066942585,"pitch":97.6436818567686,"roll":25.572303848204903},"location":"Left Ankle"},{"euler":{"heading":73.16028628594759,"pitch":-16.711088802314812,"roll":-10.855884299474782},"location":"Right Ankle"},{"euler":{"heading":138.31976700362117,"pitch":-162.74393550993582,"roll":51.49060215482458},"location":"Right Hip"},{"euler":{"heading":38.17126352126751,"pitch":-102.16125640989594,"roll":30.3242844331218},"location":"Right Knee"},{"euler":{"heading":19.30484096623136,"pitch":-132.2955579154452,"roll":59.274071945776086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.198"} +{"sensors":[{"euler":{"heading":53.34791463123026,"pitch":125.12827815709595,"roll":15.654649805638263},"location":"Left Knee"},{"euler":{"heading":64.11812360248327,"pitch":96.75431367109174,"roll":26.340073463384414},"location":"Left Ankle"},{"euler":{"heading":73.90050765735285,"pitch":-16.821229922083333,"roll":-10.782795869527304},"location":"Right Ankle"},{"euler":{"heading":137.98779030325903,"pitch":-163.00704195894224,"roll":52.17904193934212},"location":"Right Hip"},{"euler":{"heading":37.81663716914076,"pitch":-102.70138076890635,"roll":30.51060598980962},"location":"Right Knee"},{"euler":{"heading":17.674356869608225,"pitch":-130.60975212390068,"roll":58.171664751198485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.299"} +{"sensors":[{"euler":{"heading":50.24437316810724,"pitch":126.73420034138636,"roll":16.976684825074436},"location":"Left Knee"},{"euler":{"heading":61.28131124223494,"pitch":95.75388230398256,"roll":24.218566117045974},"location":"Left Ankle"},{"euler":{"heading":74.07295689161757,"pitch":-16.820356929875,"roll":-10.954516282574573},"location":"Right Ankle"},{"euler":{"heading":137.98276127293312,"pitch":-163.27508776304802,"roll":52.87363774540791},"location":"Right Hip"},{"euler":{"heading":38.10997345222669,"pitch":-103.12499269201572,"roll":30.128295390828658},"location":"Right Knee"},{"euler":{"heading":16.388171182647405,"pitch":-129.2237769115106,"roll":57.27324827607864},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.399"} +{"sensors":[{"euler":{"heading":46.10118585129651,"pitch":128.89828030724772,"roll":18.77901634256699},"location":"Left Knee"},{"euler":{"heading":57.31568011801145,"pitch":94.64099407358431,"roll":20.646709505341377},"location":"Left Ankle"},{"euler":{"heading":73.47816120245581,"pitch":-16.4883212368875,"roll":-11.534064654317117},"location":"Right Ankle"},{"euler":{"heading":138.10323514563981,"pitch":-163.66632898674322,"roll":53.65502397086712},"location":"Right Hip"},{"euler":{"heading":39.26147610700402,"pitch":-103.43749342281416,"roll":29.021715851745792},"location":"Right Knee"},{"euler":{"heading":15.936854064382665,"pitch":-128.52014922035954,"roll":56.68967344847077},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.500"} +{"sensors":[{"euler":{"heading":43.65356726616687,"pitch":130.10220227652295,"roll":20.307364708310292},"location":"Left Knee"},{"euler":{"heading":54.74661210621031,"pitch":94.26439466622588,"roll":18.22578855480724},"location":"Left Ankle"},{"euler":{"heading":71.51784508221023,"pitch":-16.00823911319875,"roll":-12.405658188885406},"location":"Right Ankle"},{"euler":{"heading":138.58666163107583,"pitch":-164.1121960880689,"roll":54.358271573780414},"location":"Right Hip"},{"euler":{"heading":41.516578496303616,"pitch":-103.42499408053274,"roll":27.032044266571216},"location":"Right Knee"},{"euler":{"heading":15.786918657944398,"pitch":-128.1931342983236,"roll":56.2832061036237},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.601"} +{"sensors":[{"euler":{"heading":42.28196053955018,"pitch":130.41698204887064,"roll":21.457878237479264},"location":"Left Knee"},{"euler":{"heading":53.56570089558928,"pitch":94.1692051996033,"roll":16.903209699326517},"location":"Left Ankle"},{"euler":{"heading":68.0098105739892,"pitch":-15.394915201878877,"roll":-13.583842369996866},"location":"Right Ankle"},{"euler":{"heading":140.05299546796823,"pitch":-163.50722647926204,"roll":54.37869441640237},"location":"Right Hip"},{"euler":{"heading":44.47742064667325,"pitch":-103.18249467247946,"roll":24.141339839914096},"location":"Right Knee"},{"euler":{"heading":15.964476792149958,"pitch":-128.13007086849123,"roll":56.27363549326133},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.702"} +{"sensors":[{"euler":{"heading":41.64126448559516,"pitch":130.08153384398358,"roll":22.318340413731338},"location":"Left Knee"},{"euler":{"heading":53.30288080603035,"pitch":94.32728467964297,"roll":16.194138729393867},"location":"Left Ankle"},{"euler":{"heading":64.85257951659028,"pitch":-14.89917368169099,"roll":-14.512958132997179},"location":"Right Ankle"},{"euler":{"heading":141.8789459211714,"pitch":-162.43775383133584,"roll":53.64082497476213},"location":"Right Hip"},{"euler":{"heading":46.548428582005926,"pitch":-102.81424520523153,"roll":22.008455855922687},"location":"Right Knee"},{"euler":{"heading":16.511779112934963,"pitch":-128.9483137816421,"roll":56.483771943935196},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.803"} +{"sensors":[{"euler":{"heading":41.53338803703564,"pitch":129.42338045958522,"roll":22.824006372358205},"location":"Left Knee"},{"euler":{"heading":54.147592725427316,"pitch":94.63830621167868,"roll":16.330974856454482},"location":"Left Ankle"},{"euler":{"heading":64.18607156493125,"pitch":-15.271756313521891,"roll":-14.611662319697462},"location":"Right Ankle"},{"euler":{"heading":143.13480132905428,"pitch":-161.61272844820226,"roll":52.48924247728592},"location":"Right Hip"},{"euler":{"heading":46.76858572380534,"pitch":-102.08282068470838,"roll":21.73261027033042},"location":"Right Knee"},{"euler":{"heading":17.104351201641467,"pitch":-130.0097324034779,"roll":56.829144749541676},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.904"} +{"sensors":[{"euler":{"heading":42.05504923333208,"pitch":128.4935424136267,"roll":22.891605735122386},"location":"Left Knee"},{"euler":{"heading":55.00783345288458,"pitch":94.9432255905108,"roll":16.754127370809034},"location":"Left Ankle"},{"euler":{"heading":66.36121440843813,"pitch":-16.007080682169704,"roll":-13.462996087727717},"location":"Right Ankle"},{"euler":{"heading":143.37132119614887,"pitch":-161.16395560338205,"roll":51.44656822955733},"location":"Right Hip"},{"euler":{"heading":44.78547715142481,"pitch":-101.12453861623754,"roll":23.634349243297375},"location":"Right Knee"},{"euler":{"heading":17.86266608147732,"pitch":-131.4400091631301,"roll":57.29623027458751},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.4"} +{"sensors":[{"euler":{"heading":43.18704430999887,"pitch":127.38168817226403,"roll":22.42119516161015},"location":"Left Knee"},{"euler":{"heading":56.31955010759613,"pitch":95.39265303145973,"roll":17.69746463372813},"location":"Left Ankle"},{"euler":{"heading":69.37509296759433,"pitch":-16.500122613952733,"roll":-12.035446478954945},"location":"Right Ankle"},{"euler":{"heading":142.53418907653398,"pitch":-161.22256004304387,"roll":50.7831614066016},"location":"Right Hip"},{"euler":{"heading":41.61317943628232,"pitch":-100.4433347546138,"roll":26.727164318967638},"location":"Right Knee"},{"euler":{"heading":18.770149473329592,"pitch":-133.1335082468171,"roll":57.960357247128755},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.105"} +{"sensors":[{"euler":{"heading":45.11833987899898,"pitch":126.31851935503764,"roll":21.147825645449135},"location":"Left Knee"},{"euler":{"heading":58.48134509683652,"pitch":95.89713772831377,"roll":19.61521817035532},"location":"Left Ankle"},{"euler":{"heading":71.6438336708349,"pitch":-16.77511035255746,"roll":-11.02565183105945},"location":"Right Ankle"},{"euler":{"heading":141.2120201688806,"pitch":-161.5690540387395,"roll":50.54234526594144},"location":"Right Hip"},{"euler":{"heading":38.67061149265409,"pitch":-100.38025127915243,"roll":29.310697887070877},"location":"Right Knee"},{"euler":{"heading":19.661884525996633,"pitch":-134.96390742213538,"roll":58.63307152241588},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.205"} +{"sensors":[{"euler":{"heading":48.331505891099084,"pitch":125.41166741953387,"roll":18.84554308090422},"location":"Left Knee"},{"euler":{"heading":61.439460587152865,"pitch":96.8199239554824,"roll":23.009946353319787},"location":"Left Ankle"},{"euler":{"heading":73.05445030375141,"pitch":-16.910099317301714,"roll":-10.573086647953506},"location":"Right Ankle"},{"euler":{"heading":140.44706815199254,"pitch":-161.80589863486557,"roll":50.6006107393473},"location":"Right Hip"},{"euler":{"heading":36.75355034338868,"pitch":-100.79222615123719,"roll":30.892128098363788},"location":"Right Knee"},{"euler":{"heading":19.77069607339697,"pitch":-135.22376667992185,"roll":58.91976437017429},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.309"} +{"sensors":[{"euler":{"heading":52.10460530198918,"pitch":124.50175067758047,"roll":16.4172387728138},"location":"Left Knee"},{"euler":{"heading":64.73301452843758,"pitch":97.65668155993416,"roll":26.45895171798781},"location":"Left Ankle"},{"euler":{"heading":73.98025527337627,"pitch":-16.950339385571542,"roll":-10.359527983158156},"location":"Right Ankle"},{"euler":{"heading":139.50861133679328,"pitch":-162.17530877137904,"roll":51.14679966541258},"location":"Right Hip"},{"euler":{"heading":35.55319530904982,"pitch":-101.59425353611348,"roll":31.796665288527407},"location":"Right Knee"},{"euler":{"heading":18.949876466057272,"pitch":-133.71389001192966,"roll":58.67153793315687},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.409"} +{"sensors":[{"euler":{"heading":54.12539477179027,"pitch":124.59532560982244,"roll":15.28176489553242},"location":"Left Knee"},{"euler":{"heading":66.07846307559382,"pitch":97.07851340394075,"roll":27.85055654618903},"location":"Left Ankle"},{"euler":{"heading":74.71347974603864,"pitch":-16.93655544701439,"roll":-10.37982518484234},"location":"Right Ankle"},{"euler":{"heading":138.98900020311396,"pitch":-162.44527789424114,"roll":51.88211969887132},"location":"Right Hip"},{"euler":{"heading":34.97287577814484,"pitch":-102.34107818250214,"roll":32.16074875967467},"location":"Right Knee"},{"euler":{"heading":17.473638819451544,"pitch":-131.9675010107367,"roll":57.79813413984118},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.510"} +{"sensors":[{"euler":{"heading":51.79410529461124,"pitch":125.9295430488402,"roll":16.228588405979178},"location":"Left Knee"},{"euler":{"heading":64.05186676803444,"pitch":96.10191206354668,"roll":26.028000891570127},"location":"Left Ankle"},{"euler":{"heading":74.92963177143479,"pitch":-16.68664990231295,"roll":-10.629342666358106},"location":"Right Ankle"},{"euler":{"heading":138.67135018280257,"pitch":-162.68825010481706,"roll":52.6814077289842},"location":"Right Hip"},{"euler":{"heading":34.869338200330354,"pitch":-103.08822036425194,"roll":31.994673883707204},"location":"Right Knee"},{"euler":{"heading":16.03252493750639,"pitch":-130.20825090966304,"roll":56.91207072585706},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.611"} +{"sensors":[{"euler":{"heading":47.63344476515012,"pitch":127.98658874395619,"roll":18.12447956538126},"location":"Left Knee"},{"euler":{"heading":59.852930091230995,"pitch":95.022970857192,"roll":22.250200802413115},"location":"Left Ankle"},{"euler":{"heading":74.3929185942913,"pitch":-16.099234912081656,"roll":-11.322658399722295},"location":"Right Ankle"},{"euler":{"heading":138.5792151645223,"pitch":-162.96942509433538,"roll":53.532016956085776},"location":"Right Hip"},{"euler":{"heading":35.46365438029732,"pitch":-103.77939832782674,"roll":31.195206495336485},"location":"Right Knee"},{"euler":{"heading":15.448022443755754,"pitch":-129.15617581869674,"roll":56.32711365327136},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.712"} +{"sensors":[{"euler":{"heading":44.83885028863511,"pitch":129.3941798695606,"roll":19.812031608843135},"location":"Left Knee"},{"euler":{"heading":56.698887082107895,"pitch":94.72692377147281,"roll":19.418930722171805},"location":"Left Ankle"},{"euler":{"heading":72.85987673486217,"pitch":-15.470561420873489,"roll":-12.259142559750066},"location":"Right Ankle"},{"euler":{"heading":138.8962936480701,"pitch":-163.41623258490185,"roll":54.322565260477205},"location":"Right Hip"},{"euler":{"heading":37.19853894226759,"pitch":-104.05145849504407,"roll":29.58193584580284},"location":"Right Knee"},{"euler":{"heading":15.57822019938018,"pitch":-128.57180823682708,"roll":55.994402287944226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.812"} +{"sensors":[{"euler":{"heading":43.198715259771596,"pitch":129.91101188260453,"roll":21.118328447958824},"location":"Left Knee"},{"euler":{"heading":55.103998373897106,"pitch":94.67923139432553,"roll":17.802037649954624},"location":"Left Ankle"},{"euler":{"heading":69.71763906137595,"pitch":-14.96100527878614,"roll":-13.32072830377506},"location":"Right Ankle"},{"euler":{"heading":140.0379142832631,"pitch":-163.13710932641166,"roll":54.60905873442949},"location":"Right Hip"},{"euler":{"heading":40.19743504804083,"pitch":-103.79631264553967,"roll":26.873742261222556},"location":"Right Knee"},{"euler":{"heading":15.576648179442163,"pitch":-128.10212741314436,"roll":55.9199620591498},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.913"} +{"sensors":[{"euler":{"heading":42.26009373379444,"pitch":129.89491069434408,"roll":21.937745603162945},"location":"Left Knee"},{"euler":{"heading":54.17484853650739,"pitch":94.66130825489297,"roll":16.76558388495916},"location":"Left Ankle"},{"euler":{"heading":66.01462515523835,"pitch":-14.608654750907526,"roll":-14.269905473397554},"location":"Right Ankle"},{"euler":{"heading":141.66537285493678,"pitch":-162.3296483937705,"roll":54.004402860986545},"location":"Right Hip"},{"euler":{"heading":43.15269154323675,"pitch":-103.34793138098571,"roll":24.111368035100302},"location":"Right Knee"},{"euler":{"heading":15.818983361497947,"pitch":-128.44816467182994,"roll":56.10296585323482},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.14"} +{"sensors":[{"euler":{"heading":41.627834360415,"pitch":129.69916962490967,"roll":22.387721042846653},"location":"Left Knee"},{"euler":{"heading":54.61361368285665,"pitch":94.70767742940367,"roll":16.732775496463244},"location":"Left Ankle"},{"euler":{"heading":64.18191263971451,"pitch":-14.629039275816773,"roll":-14.717914926057798},"location":"Right Ankle"},{"euler":{"heading":143.0300855694431,"pitch":-161.57793355439344,"roll":52.90396257488789},"location":"Right Hip"},{"euler":{"heading":44.12492238891308,"pitch":-102.62563824288713,"roll":23.056481231590272},"location":"Right Knee"},{"euler":{"heading":16.212085025348152,"pitch":-129.29709820464694,"roll":56.50516926791134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.115"} +{"sensors":[{"euler":{"heading":41.5275509243735,"pitch":129.2980026624187,"roll":22.45519893856199},"location":"Left Knee"},{"euler":{"heading":55.114752314570985,"pitch":94.6119096864633,"roll":17.02199794681692},"location":"Left Ankle"},{"euler":{"heading":65.28247137574306,"pitch":-15.159885348235097,"roll":-14.014873433452019},"location":"Right Ankle"},{"euler":{"heading":143.42707701249878,"pitch":-161.2638901989541,"roll":51.7323163173991},"location":"Right Hip"},{"euler":{"heading":42.66868015002177,"pitch":-101.66932441859844,"roll":24.432083108431243},"location":"Right Knee"},{"euler":{"heading":16.672126522813336,"pitch":-130.54863838418225,"roll":57.02340234112021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.220"} +{"sensors":[{"euler":{"heading":42.187295831936154,"pitch":128.63695239617684,"roll":22.059679044705792},"location":"Left Knee"},{"euler":{"heading":55.972027083113886,"pitch":94.57571871781697,"roll":17.79479815213523},"location":"Left Ankle"},{"euler":{"heading":68.09797423816875,"pitch":-15.818896813411587,"roll":-12.619636090106816},"location":"Right Ankle"},{"euler":{"heading":142.8593693112489,"pitch":-161.3187511790587,"roll":50.965334685659194},"location":"Right Hip"},{"euler":{"heading":40.1205621350196,"pitch":-100.86489197673859,"roll":27.276374797588122},"location":"Right Knee"},{"euler":{"heading":17.454913870532003,"pitch":-132.25627454576403,"roll":57.69606210700819},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.321"} +{"sensors":[{"euler":{"heading":43.50606624874254,"pitch":127.82950715655916,"roll":21.122461140235213},"location":"Left Knee"},{"euler":{"heading":57.4998243748025,"pitch":94.76814684603528,"roll":19.296568336921705},"location":"Left Ankle"},{"euler":{"heading":70.88192681435187,"pitch":-16.29325713207043,"roll":-11.413922481096135},"location":"Right Ankle"},{"euler":{"heading":141.18593238012403,"pitch":-161.7556260611528,"roll":50.68130121709328},"location":"Right Hip"},{"euler":{"heading":37.18350592151764,"pitch":-100.65965277906474,"roll":30.12373731782931},"location":"Right Knee"},{"euler":{"heading":18.440672483478803,"pitch":-134.51814709118764,"roll":58.42020589630737},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.421"} +{"sensors":[{"euler":{"heading":46.04920962386829,"pitch":127.02780644090325,"roll":19.185215026211694},"location":"Left Knee"},{"euler":{"heading":58.237341937322256,"pitch":95.15383216143175,"roll":21.891911503229537},"location":"Left Ankle"},{"euler":{"heading":72.25623413291669,"pitch":-16.432681418863385,"roll":-10.928780232986522},"location":"Right Ankle"},{"euler":{"heading":140.01733914211164,"pitch":-162.02381345503753,"roll":50.550671095383954},"location":"Right Hip"},{"euler":{"heading":34.90265532936588,"pitch":-100.99368750115828,"roll":31.94261358604638},"location":"Right Knee"},{"euler":{"heading":19.015355235130922,"pitch":-135.94758238206887,"roll":59.02818530667664},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.522"} +{"sensors":[{"euler":{"heading":49.813038661481464,"pitch":126.07502579681292,"roll":16.660443523590526},"location":"Left Knee"},{"euler":{"heading":61.39485774359004,"pitch":96.00094894528857,"roll":25.458970352906586},"location":"Left Ankle"},{"euler":{"heading":73.27436071962502,"pitch":-16.508163276977047,"roll":-10.70465220968787},"location":"Right Ankle"},{"euler":{"heading":138.53435522790048,"pitch":-162.4776821095338,"roll":50.90185398584556},"location":"Right Hip"},{"euler":{"heading":33.51238979642929,"pitch":-101.90056875104244,"roll":32.917102227441745},"location":"Right Knee"},{"euler":{"heading":18.138819711617828,"pitch":-134.415324143862,"roll":59.11286677600897},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.622"} +{"sensors":[{"euler":{"heading":52.912984795333315,"pitch":125.88002321713162,"roll":14.806899171231475},"location":"Left Knee"},{"euler":{"heading":63.36162196923104,"pitch":95.47585405075972,"roll":27.59432331761593},"location":"Left Ankle"},{"euler":{"heading":73.96567464766252,"pitch":-16.50734694927934,"roll":-10.777936988719084},"location":"Right Ankle"},{"euler":{"heading":137.75591970511041,"pitch":-162.68616389858042,"roll":51.54916858726101},"location":"Right Hip"},{"euler":{"heading":32.89240081678636,"pitch":-102.7730118759382,"roll":33.281642004697574},"location":"Right Knee"},{"euler":{"heading":16.531187740456048,"pitch":-132.5050417294758,"roll":58.38908009840807},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.723"} +{"sensors":[{"euler":{"heading":52.184186315799984,"pitch":126.88577089541846,"roll":15.069959254108328},"location":"Left Knee"},{"euler":{"heading":62.187959772307934,"pitch":94.64076864568376,"roll":26.86614098585434},"location":"Left Ankle"},{"euler":{"heading":74.20035718289627,"pitch":-16.37536225435141,"roll":-10.987643289847176},"location":"Right Ankle"},{"euler":{"heading":137.54282773459937,"pitch":-162.7175475087224,"roll":52.29425172853491},"location":"Right Hip"},{"euler":{"heading":32.77191073510773,"pitch":-103.51446068834437,"roll":33.165977804227815},"location":"Right Knee"},{"euler":{"heading":50.528068966410444,"pitch":-131.06078755652823,"roll":57.25642208856726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.824"} +{"sensors":[{"euler":{"heading":48.690767684219985,"pitch":128.6784438058766,"roll":16.731713328697495},"location":"Left Knee"},{"euler":{"heading":58.58791379507714,"pitch":94.00794178111539,"roll":23.623276887268908},"location":"Left Ankle"},{"euler":{"heading":73.84282146460664,"pitch":-16.10657602891627,"roll":-11.532628960862459},"location":"Right Ankle"},{"euler":{"heading":137.59479496113943,"pitch":-162.83954275785015,"roll":53.05232655568142},"location":"Right Hip"},{"euler":{"heading":33.38846966159696,"pitch":-104.11926461950993,"roll":32.46188002380503},"location":"Right Knee"},{"euler":{"heading":46.0690120697694,"pitch":-129.76095880087541,"roll":56.54952987971053},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.926"} +{"sensors":[{"euler":{"heading":45.027940915797984,"pitch":130.50434942528895,"roll":18.571041995827745},"location":"Left Knee"},{"euler":{"heading":55.01662241556943,"pitch":93.56964760300386,"roll":20.148449198542018},"location":"Left Ankle"},{"euler":{"heading":72.83353931814598,"pitch":-15.633418426024642,"roll":-12.354366064776213},"location":"Right Ankle"},{"euler":{"heading":137.8728154650255,"pitch":-163.20558848206514,"roll":53.91584390011328},"location":"Right Hip"},{"euler":{"heading":34.830872695437264,"pitch":-104.48858815755894,"roll":31.115692021424525},"location":"Right Knee"},{"euler":{"heading":42.780860862792466,"pitch":-128.92861292078788,"roll":56.10082689173949},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.27"} +{"sensors":[{"euler":{"heading":43.56889682421819,"pitch":131.07891448276007,"roll":20.04518779624497},"location":"Left Knee"},{"euler":{"heading":53.189960174012484,"pitch":93.93143284270347,"roll":18.152354278687817},"location":"Left Ankle"},{"euler":{"heading":70.66268538633138,"pitch":-15.357576583422178,"roll":-13.431429458298592},"location":"Right Ankle"},{"euler":{"heading":138.55428391852297,"pitch":-163.79127963385864,"roll":54.74925951010196},"location":"Right Hip"},{"euler":{"heading":37.61653542589354,"pitch":-104.26472934180305,"roll":28.854122819282075},"location":"Right Knee"},{"euler":{"heading":40.49027477651322,"pitch":-128.4795016287091,"roll":55.915744202565534},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.128"} +{"sensors":[{"euler":{"heading":43.12450714179638,"pitch":130.72727303448406,"roll":21.184419016620474},"location":"Left Knee"},{"euler":{"heading":52.57096415661124,"pitch":94.64453955843312,"roll":16.987118850819034},"location":"Left Ankle"},{"euler":{"heading":66.97766684769823,"pitch":-14.740568925079959,"roll":-14.963286512468732},"location":"Right Ankle"},{"euler":{"heading":140.04260552667068,"pitch":-163.33090167047277,"roll":54.743083559091765},"location":"Right Hip"},{"euler":{"heading":40.94863188330419,"pitch":-104.08200640762276,"roll":25.812460537353868},"location":"Right Knee"},{"euler":{"heading":38.7662472988619,"pitch":-128.2690514658382,"roll":56.17416978230899},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.228"} +{"sensors":[{"euler":{"heading":43.02455642761674,"pitch":130.00454573103565,"roll":21.99097711495843},"location":"Left Knee"},{"euler":{"heading":52.57636774095012,"pitch":95.34883560258982,"roll":16.35090696573713},"location":"Left Ankle"},{"euler":{"heading":63.97365016292841,"pitch":-14.516512032571963,"roll":-15.96070786122186},"location":"Right Ankle"},{"euler":{"heading":141.81959497400362,"pitch":-162.52281150342552,"roll":53.91877520318259},"location":"Right Hip"},{"euler":{"heading":43.34751869497377,"pitch":-103.61755576686048,"roll":23.63746448361848},"location":"Right Knee"},{"euler":{"heading":37.36462256897571,"pitch":-128.98589631925438,"roll":56.56300280407809},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.329"} +{"sensors":[{"euler":{"heading":43.39085078485507,"pitch":128.97284115793207,"roll":22.460629403462587},"location":"Left Knee"},{"euler":{"heading":53.593730966855105,"pitch":96.22645204233083,"roll":16.540816269163418},"location":"Left Ankle"},{"euler":{"heading":63.47628514663557,"pitch":-15.077360829314767,"roll":-15.995887075099674},"location":"Right Ankle"},{"euler":{"heading":142.94388547660327,"pitch":-161.91428035308297,"roll":52.63314768286433},"location":"Right Hip"},{"euler":{"heading":43.444016825476396,"pitch":-102.78080019017443,"roll":23.636218035256633},"location":"Right Knee"},{"euler":{"heading":36.23441031207815,"pitch":-130.10605668732896,"roll":57.08170252367029},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.430"} +{"sensors":[{"euler":{"heading":44.270515706369565,"pitch":127.80055704213888,"roll":22.47081646311633},"location":"Left Knee"},{"euler":{"heading":54.884357870169595,"pitch":97.08505683809776,"roll":17.092984642247078},"location":"Left Ankle"},{"euler":{"heading":65.68490663197201,"pitch":-15.87587474638329,"roll":-14.865048367589706},"location":"Right Ankle"},{"euler":{"heading":142.96199692894294,"pitch":-161.69785231777468,"roll":51.4760829145779},"location":"Right Hip"},{"euler":{"heading":41.41836514292876,"pitch":-101.871470171157,"roll":25.76009623173097},"location":"Right Knee"},{"euler":{"heading":35.33596928087034,"pitch":-131.53920101859606,"roll":57.761032271303264},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.530"} +{"sensors":[{"euler":{"heading":45.56846413573261,"pitch":126.58925133792499,"roll":21.9487348168047},"location":"Left Knee"},{"euler":{"heading":56.53967208315264,"pitch":97.78905115428799,"roll":18.227436178022373},"location":"Left Ankle"},{"euler":{"heading":68.5351659687748,"pitch":-16.30703727174496,"roll":-13.334793530830737},"location":"Right Ankle"},{"euler":{"heading":141.59704723604867,"pitch":-161.9905670859972,"roll":50.87222462312012},"location":"Right Hip"},{"euler":{"heading":38.26402862863588,"pitch":-101.2343231540413,"roll":28.777836608557873},"location":"Right Knee"},{"euler":{"heading":34.5898723527833,"pitch":-133.26653091673646,"roll":58.53492904417294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.631"} +{"sensors":[{"euler":{"heading":47.53661772215935,"pitch":125.4990762041325,"roll":20.63511133512423},"location":"Left Knee"},{"euler":{"heading":58.860704874837374,"pitch":98.43514603885919,"roll":20.26719256022014},"location":"Left Ankle"},{"euler":{"heading":70.66914937189733,"pitch":-16.701333544570463,"roll":-12.382564177747664},"location":"Right Ankle"},{"euler":{"heading":140.03734251244381,"pitch":-162.5102603773975,"roll":50.697502160808106},"location":"Right Hip"},{"euler":{"heading":35.425125765772286,"pitch":-101.34839083863717,"roll":31.162552947702086},"location":"Right Knee"},{"euler":{"heading":34.230885117504975,"pitch":-135.4336278250628,"roll":59.300186139755645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.731"} +{"sensors":[{"euler":{"heading":50.85795594994342,"pitch":124.76166858371926,"roll":18.23410020161181},"location":"Left Knee"},{"euler":{"heading":62.46213438735364,"pitch":99.48538143497326,"roll":23.740473304198126},"location":"Left Ankle"},{"euler":{"heading":72.0522344347076,"pitch":-16.862450190113417,"roll":-11.906807759972898},"location":"Right Ankle"},{"euler":{"heading":138.97110826119945,"pitch":-162.89673433965774,"roll":50.89650194472729},"location":"Right Hip"},{"euler":{"heading":33.43886318919506,"pitch":-101.86355175477347,"roll":32.633797652931875},"location":"Right Knee"},{"euler":{"heading":32.75779660575448,"pitch":-135.57151504255654,"roll":59.57641752578009},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.831"} +{"sensors":[{"euler":{"heading":54.23466035494908,"pitch":124.11050172534733,"roll":16.00444018145063},"location":"Left Knee"},{"euler":{"heading":65.25342094861828,"pitch":99.64309329147594,"roll":26.935175973778314},"location":"Left Ankle"},{"euler":{"heading":72.95326099123685,"pitch":-16.826205171102075,"roll":-11.791126983975607},"location":"Right Ankle"},{"euler":{"heading":137.9989974350795,"pitch":-163.30706090569197,"roll":51.488101750254565},"location":"Right Hip"},{"euler":{"heading":32.013726870275555,"pitch":-102.67094657929613,"roll":33.46416788763869},"location":"Right Knee"},{"euler":{"heading":30.60701694517903,"pitch":-133.95186353830087,"roll":59.31252577320208},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.933"} +{"sensors":[{"euler":{"heading":55.19869431945418,"pitch":124.58695155281261,"roll":15.447746163305567},"location":"Left Knee"},{"euler":{"heading":65.35307885375646,"pitch":98.63503396232834,"roll":27.491658376400483},"location":"Left Ankle"},{"euler":{"heading":73.39543489211316,"pitch":-16.631084653991866,"roll":-11.880764285578048},"location":"Right Ankle"},{"euler":{"heading":137.54284769157155,"pitch":-163.5076048151228,"roll":52.23304157522911},"location":"Right Hip"},{"euler":{"heading":31.299854183248,"pitch":-103.51635192136652,"roll":33.69900109887482},"location":"Right Knee"},{"euler":{"heading":28.183815250661127,"pitch":-132.1816771844708,"roll":58.52502319588187},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.34"} +{"sensors":[{"euler":{"heading":52.07257488750876,"pitch":126.25325639753135,"roll":16.79047154697501},"location":"Left Knee"},{"euler":{"heading":62.236520968380816,"pitch":97.4340305660955,"roll":25.117492538760434},"location":"Left Ankle"},{"euler":{"heading":73.33089140290186,"pitch":-16.28047618859268,"roll":-12.123937857020243},"location":"Right Ankle"},{"euler":{"heading":137.3698129224144,"pitch":-163.73809433361052,"roll":53.0034874177062},"location":"Right Hip"},{"euler":{"heading":31.2323687649232,"pitch":-104.22721672922987,"roll":33.385350988987334},"location":"Right Knee"},{"euler":{"heading":26.071683725595015,"pitch":-130.66350946602373,"roll":57.81002087629369},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.135"} +{"sensors":[{"euler":{"heading":47.784067398757884,"pitch":128.49668075777822,"roll":18.64267439227751},"location":"Left Knee"},{"euler":{"heading":58.02536887154274,"pitch":96.22187750948595,"roll":21.37449328488439},"location":"Left Ankle"},{"euler":{"heading":72.64780226261168,"pitch":-15.739928569733411,"roll":-12.842794071318218},"location":"Right Ankle"},{"euler":{"heading":137.55158163017296,"pitch":-163.97053490024945,"roll":53.80313867593558},"location":"Right Hip"},{"euler":{"heading":32.11538188843088,"pitch":-104.74824505630687,"roll":32.365565890088604},"location":"Right Knee"},{"euler":{"heading":24.958265353035515,"pitch":-129.99090851942137,"roll":57.30401878866432},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.236"} +{"sensors":[{"euler":{"heading":45.2681606588821,"pitch":129.6970126820004,"roll":20.20965695304976},"location":"Left Knee"},{"euler":{"heading":55.322831984388465,"pitch":95.98093975853735,"roll":18.805793956395952},"location":"Left Ankle"},{"euler":{"heading":70.6705220363505,"pitch":-15.340935712760071,"roll":-13.877264664186397},"location":"Right Ankle"},{"euler":{"heading":138.21517346715567,"pitch":-164.1047314102245,"roll":54.26657480834202},"location":"Right Hip"},{"euler":{"heading":34.435093699587796,"pitch":-104.7546705506762,"roll":30.322759301079746},"location":"Right Knee"},{"euler":{"heading":23.887438817731965,"pitch":-129.57306766747925,"roll":56.961116909797894},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.337"} +{"sensors":[{"euler":{"heading":43.86634459299389,"pitch":130.06481141380036,"roll":21.344941257744782},"location":"Left Knee"},{"euler":{"heading":53.74054878594962,"pitch":95.75159578268362,"roll":17.33771456075636},"location":"Left Ankle"},{"euler":{"heading":66.92221983271546,"pitch":-14.369342141484065,"roll":-15.202038197767758},"location":"Right Ankle"},{"euler":{"heading":139.6374061204401,"pitch":-163.53800826920207,"roll":54.12741732750782},"location":"Right Hip"},{"euler":{"heading":37.404084329629015,"pitch":-104.58545349560859,"roll":27.50298337097177},"location":"Right Knee"},{"euler":{"heading":23.192444935958772,"pitch":-129.46576090073134,"roll":56.990005218818105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.438"} +{"sensors":[{"euler":{"heading":43.2609601336945,"pitch":129.75208027242033,"roll":22.254197131970304},"location":"Left Knee"},{"euler":{"heading":53.12274390735466,"pitch":95.88268620441526,"roll":16.460193104680727},"location":"Left Ankle"},{"euler":{"heading":63.96749784944391,"pitch":-13.813657927335658,"roll":-15.975584377990984},"location":"Right Ankle"},{"euler":{"heading":141.1299155083961,"pitch":-162.52795744228186,"roll":53.39592559475704},"location":"Right Hip"},{"euler":{"heading":39.519925896666116,"pitch":-104.40190814604775,"roll":25.34018503387459},"location":"Right Knee"},{"euler":{"heading":22.973200442362895,"pitch":-129.9941848106582,"roll":57.2222546969363},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.539"} +{"sensors":[{"euler":{"heading":43.322364120325055,"pitch":128.9893722451783,"roll":22.835027418773272},"location":"Left Knee"},{"euler":{"heading":53.104219516619196,"pitch":96.16316758397375,"roll":16.089173794212655},"location":"Left Ankle"},{"euler":{"heading":63.64574806449952,"pitch":-14.344792134602093,"roll":-15.946775940191886},"location":"Right Ankle"},{"euler":{"heading":142.3856739575565,"pitch":-161.80016169805367,"roll":52.125083035281335},"location":"Right Hip"},{"euler":{"heading":39.805433306999504,"pitch":-103.79296733144297,"roll":25.068666530487132},"location":"Right Knee"},{"euler":{"heading":23.219630398126604,"pitch":-131.02601632959238,"roll":57.643779227242675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.640"} +{"sensors":[{"euler":{"heading":43.952627708292546,"pitch":127.97168502066046,"roll":22.957774676895944},"location":"Left Knee"},{"euler":{"heading":53.500047564957285,"pitch":96.49060082557637,"roll":16.16775641479139},"location":"Left Ankle"},{"euler":{"heading":65.97492325804957,"pitch":-15.391562921141883,"roll":-14.758348346172697},"location":"Right Ankle"},{"euler":{"heading":138.34085656180085,"pitch":-161.55139552824832,"roll":50.925074731753206},"location":"Right Hip"},{"euler":{"heading":38.28738997629955,"pitch":-102.79492059829866,"roll":26.930549877438416},"location":"Right Knee"},{"euler":{"heading":23.691417358313945,"pitch":-132.53591469663314,"roll":58.17940130451841},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.741"} +{"sensors":[{"euler":{"heading":45.132364937463294,"pitch":126.81201651859442,"roll":22.511997209206353},"location":"Left Knee"},{"euler":{"heading":54.493792808461556,"pitch":97.01029074301873,"roll":16.888480773312253},"location":"Left Ankle"},{"euler":{"heading":69.12118093224461,"pitch":-16.252406629027696,"roll":-13.001263511555427},"location":"Right Ankle"},{"euler":{"heading":138.01302090562078,"pitch":-161.74625597542348,"roll":50.33256725857789},"location":"Right Hip"},{"euler":{"heading":35.483650978669594,"pitch":-101.9404285384688,"roll":29.956244889694574},"location":"Right Knee"},{"euler":{"heading":24.22852562248255,"pitch":-134.44482322696985,"roll":58.83021117406657},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.842"} +{"sensors":[{"euler":{"heading":46.987878443716966,"pitch":125.72456486673498,"roll":21.285797488285716},"location":"Left Knee"},{"euler":{"heading":56.4131635276154,"pitch":97.51551166871685,"roll":18.66213269598103},"location":"Left Ankle"},{"euler":{"heading":71.22781283902016,"pitch":-16.639665966124927,"roll":-11.963637160399884},"location":"Right Ankle"},{"euler":{"heading":137.0554688150587,"pitch":-162.31538037788116,"roll":50.0305605327201},"location":"Right Hip"},{"euler":{"heading":32.93528588080264,"pitch":-101.73388568462191,"roll":32.29187040072512},"location":"Right Knee"},{"euler":{"heading":25.199423060234295,"pitch":-136.88784090427285,"roll":59.47844005665991},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.942"} +{"sensors":[{"euler":{"heading":50.43909059934527,"pitch":125.04585838006147,"roll":18.788467739457147},"location":"Left Knee"},{"euler":{"heading":59.39059717485386,"pitch":98.29521050184518,"roll":22.114669426382928},"location":"Left Ankle"},{"euler":{"heading":72.53628155511815,"pitch":-16.831949369512433,"roll":-11.542273444359896},"location":"Right Ankle"},{"euler":{"heading":136.64992193355283,"pitch":-162.64009234009305,"roll":50.12750447944809},"location":"Right Hip"},{"euler":{"heading":31.216757292722374,"pitch":-102.06049711615972,"roll":33.70018336065261},"location":"Right Knee"},{"euler":{"heading":24.523230754210868,"pitch":-136.91155681384558,"roll":59.574346050993924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.43"} +{"sensors":[{"euler":{"heading":53.907681539410746,"pitch":124.37252254205532,"roll":16.540870965511434},"location":"Left Knee"},{"euler":{"heading":62.02653745736848,"pitch":98.56568945166066,"roll":25.396952483744634},"location":"Left Ankle"},{"euler":{"heading":73.44515339960633,"pitch":-16.89875443256119,"roll":-11.306796099923906},"location":"Right Ankle"},{"euler":{"heading":136.22867974019755,"pitch":-163.00733310608373,"roll":50.64600403150328},"location":"Right Hip"},{"euler":{"heading":30.063831563450137,"pitch":-102.62944740454375,"roll":34.48016502458735},"location":"Right Knee"},{"euler":{"heading":22.93965767878978,"pitch":-134.970401132461,"roll":59.07316144589453},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.145"} +{"sensors":[{"euler":{"heading":55.19816338546967,"pitch":124.74777028784979,"roll":15.868033868960291},"location":"Left Knee"},{"euler":{"heading":62.311383711631635,"pitch":97.5778705064946,"roll":26.08850723537017},"location":"Left Ankle"},{"euler":{"heading":73.98188805964568,"pitch":-16.752628989305073,"roll":-11.351116489931517},"location":"Right Ankle"},{"euler":{"heading":136.2995617661778,"pitch":-163.11284979547537,"roll":51.30640362835295},"location":"Right Hip"},{"euler":{"heading":29.463698407105124,"pitch":-103.30400266408938,"roll":34.70714852212861},"location":"Right Knee"},{"euler":{"heading":21.133191910910803,"pitch":-133.0046110192149,"roll":58.065845301305075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.245"} +{"sensors":[{"euler":{"heading":52.1720970469227,"pitch":126.30424325906482,"roll":17.23748048206426},"location":"Left Knee"},{"euler":{"heading":59.25524534046847,"pitch":96.46383345584515,"roll":23.62965651183315},"location":"Left Ankle"},{"euler":{"heading":73.99619925368111,"pitch":-16.452366090374568,"roll":-11.647254840938366},"location":"Right Ankle"},{"euler":{"heading":136.60710558956,"pitch":-163.18906481592782,"roll":52.01951326551766},"location":"Right Hip"},{"euler":{"heading":29.47357856639461,"pitch":-103.89860239768045,"roll":34.34893366991575},"location":"Right Knee"},{"euler":{"heading":19.707372719819723,"pitch":-131.32914991729342,"roll":57.24051077117457},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.346"} +{"sensors":[{"euler":{"heading":47.87988734223043,"pitch":128.43006893315834,"roll":19.169982433857832},"location":"Left Knee"},{"euler":{"heading":55.39847080642163,"pitch":95.39245011026064,"roll":20.004190860649835},"location":"Left Ankle"},{"euler":{"heading":73.25907932831299,"pitch":-15.863379481337113,"roll":-12.501279356844531},"location":"Right Ankle"},{"euler":{"heading":137.00264503060401,"pitch":-163.38265833433502,"roll":52.81131193896589},"location":"Right Hip"},{"euler":{"heading":30.438720709755152,"pitch":-104.45249215791242,"roll":33.28279030292418},"location":"Right Knee"},{"euler":{"heading":18.930385447837754,"pitch":-130.30248492556407,"roll":56.67270969405711},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.447"} +{"sensors":[{"euler":{"heading":45.22939860800739,"pitch":129.62456203984252,"roll":20.82173419047205},"location":"Left Knee"},{"euler":{"heading":52.83362372577947,"pitch":95.01570509923457,"roll":17.535021774584852},"location":"Left Ankle"},{"euler":{"heading":71.38942139548169,"pitch":-15.295791533203403,"roll":-13.532401421160078},"location":"Right Ankle"},{"euler":{"heading":137.69613052754363,"pitch":-163.72564250090153,"roll":53.5176807450693},"location":"Right Hip"},{"euler":{"heading":32.59484863877964,"pitch":-104.56349294212119,"roll":31.385761272631758},"location":"Right Knee"},{"euler":{"heading":18.74359690305398,"pitch":-129.75973643300767,"roll":56.4054387246514},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.547"} +{"sensors":[{"euler":{"heading":43.587708747206655,"pitch":130.03085583585826,"roll":22.002060771424844},"location":"Left Knee"},{"euler":{"heading":51.50651135320152,"pitch":94.80788458931112,"roll":16.150269597126368},"location":"Left Ankle"},{"euler":{"heading":68.02547925593353,"pitch":-14.747462379883062,"roll":-14.791661279044071},"location":"Right Ankle"},{"euler":{"heading":139.05776747478927,"pitch":-163.4030782508114,"roll":53.528412670562375},"location":"Right Hip"},{"euler":{"heading":35.86036377490168,"pitch":-104.13214364790907,"roll":28.422185145368584},"location":"Right Knee"},{"euler":{"heading":18.469237212748585,"pitch":-129.3587627897069,"roll":56.43989485218626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.648"} +{"sensors":[{"euler":{"heading":42.741437872485996,"pitch":129.87152025227243,"roll":22.82685469428236},"location":"Left Knee"},{"euler":{"heading":50.855860217881364,"pitch":94.73334613038,"roll":15.310242637413731},"location":"Left Ankle"},{"euler":{"heading":64.59168133034018,"pitch":-14.510216141894757,"roll":-15.662495151139664},"location":"Right Ankle"},{"euler":{"heading":140.77074072731034,"pitch":-162.56277042573026,"roll":52.95682140350614},"location":"Right Hip"},{"euler":{"heading":38.661827397411514,"pitch":-103.65017928311818,"roll":25.798716630831727},"location":"Right Knee"},{"euler":{"heading":18.703563491473727,"pitch":-129.88538651073623,"roll":56.70215536696763},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.748"} +{"sensors":[{"euler":{"heading":42.329794085237396,"pitch":129.3906182270452,"roll":23.337919224854126},"location":"Left Knee"},{"euler":{"heading":51.18277419609323,"pitch":94.72876151734201,"roll":15.285468373672359},"location":"Left Ankle"},{"euler":{"heading":63.28876319730616,"pitch":-14.821694527705283,"roll":-15.952495636025699},"location":"Right Ankle"},{"euler":{"heading":142.2436666545793,"pitch":-161.73774338315724,"roll":51.904889263155525},"location":"Right Hip"},{"euler":{"heading":39.58314465767037,"pitch":-102.82266135480636,"roll":24.918844967748555},"location":"Right Knee"},{"euler":{"heading":19.114457142326355,"pitch":-131.0218478596626,"roll":57.09443983027087},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.849"} +{"sensors":[{"euler":{"heading":42.55306467671365,"pitch":128.6140564043407,"roll":23.447877302368717},"location":"Left Knee"},{"euler":{"heading":51.870746776483905,"pitch":94.86213536560781,"roll":15.663171536305123},"location":"Left Ankle"},{"euler":{"heading":64.58488687757554,"pitch":-15.495775074934755,"roll":-15.144746072423128},"location":"Right Ankle"},{"euler":{"heading":138.09429998912137,"pitch":-161.45771904484153,"roll":50.77690033683997},"location":"Right Hip"},{"euler":{"heading":38.143580191903325,"pitch":-102.02164521932572,"roll":26.451960470973702},"location":"Right Knee"},{"euler":{"heading":19.665511428093723,"pitch":-132.41341307369635,"roll":57.64124584724379},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.951"} +{"sensors":[{"euler":{"heading":43.485258209042286,"pitch":127.65265076390662,"roll":23.009339572131847},"location":"Left Knee"},{"euler":{"heading":53.027422098835515,"pitch":95.07592182904703,"roll":16.54685438267461},"location":"Left Ankle"},{"euler":{"heading":67.432648189818,"pitch":-16.07744756744128,"roll":-13.692771465180815},"location":"Right Ankle"},{"euler":{"heading":137.90986999020924,"pitch":-161.53694714035737,"roll":50.14921030315598},"location":"Right Hip"},{"euler":{"heading":35.416722172712994,"pitch":-101.53198069739315,"roll":29.375514423876336},"location":"Right Knee"},{"euler":{"heading":20.46771028528435,"pitch":-134.2533217663267,"roll":58.33962126251941},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.52"} +{"sensors":[{"euler":{"heading":45.05548238813806,"pitch":126.70613568751597,"roll":21.90840561491866},"location":"Left Knee"},{"euler":{"heading":54.993429888951965,"pitch":95.33082964614233,"roll":18.46091894440715},"location":"Left Ankle"},{"euler":{"heading":69.9268833708362,"pitch":-16.575952810697153,"roll":-12.535994318662734},"location":"Right Ankle"},{"euler":{"heading":136.75638299118833,"pitch":-161.99575242632164,"roll":49.946789272840384},"location":"Right Hip"},{"euler":{"heading":32.7250499554417,"pitch":-101.54128262765383,"roll":31.956712981488703},"location":"Right Knee"},{"euler":{"heading":21.458439256755916,"pitch":-136.50923958969403,"roll":59.09315913626747},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.152"} +{"sensors":[{"euler":{"heading":48.099934149324255,"pitch":125.99802211876438,"roll":19.592565053426796},"location":"Left Knee"},{"euler":{"heading":57.55658690005677,"pitch":95.7852466815281,"roll":21.521077049966436},"location":"Left Ankle"},{"euler":{"heading":71.50294503375257,"pitch":-16.699607529627436,"roll":-11.93239488679646},"location":"Right Ankle"},{"euler":{"heading":136.4369946920695,"pitch":-162.12117718368947,"roll":49.877110345556346},"location":"Right Hip"},{"euler":{"heading":30.57129495989753,"pitch":-102.03715436488845,"roll":33.62354168333984},"location":"Right Knee"},{"euler":{"heading":21.331345331080325,"pitch":-137.28956563072464,"roll":59.44009322264072},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.254"} +{"sensors":[{"euler":{"heading":51.889940734391836,"pitch":125.21071990688795,"roll":17.039558548084116},"location":"Left Knee"},{"euler":{"heading":60.7696782100511,"pitch":96.40047201337529,"roll":25.225219344969794},"location":"Left Ankle"},{"euler":{"heading":72.47765053037732,"pitch":-16.579646776664692,"roll":-11.732905398116815},"location":"Right Ankle"},{"euler":{"heading":135.74954522286257,"pitch":-162.41530946532052,"roll":50.27064931100072},"location":"Right Hip"},{"euler":{"heading":29.195415463907775,"pitch":-103.0709389283996,"roll":34.48618751500585},"location":"Right Knee"},{"euler":{"heading":20.235710797972295,"pitch":-135.4418590676522,"roll":59.358583900376644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.354"} +{"sensors":[{"euler":{"heading":54.332196660952654,"pitch":125.22714791619916,"roll":15.623102693275705},"location":"Left Knee"},{"euler":{"heading":62.31146038904599,"pitch":95.86042481203776,"roll":26.877697410472816},"location":"Left Ankle"},{"euler":{"heading":73.3486354773396,"pitch":-16.490432098998223,"roll":-11.928364858305134},"location":"Right Ankle"},{"euler":{"heading":135.66834070057632,"pitch":-162.5112785187885,"roll":50.88733437990065},"location":"Right Hip"},{"euler":{"heading":28.582123917516995,"pitch":-103.93884503555964,"roll":34.77506876350527},"location":"Right Knee"},{"euler":{"heading":18.687139718175068,"pitch":-133.32267316088698,"roll":58.58522551033898},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.455"} +{"sensors":[{"euler":{"heading":52.66772699485739,"pitch":126.41693312457924,"roll":16.267042423948133},"location":"Left Knee"},{"euler":{"heading":60.342814350141396,"pitch":94.94938233083398,"roll":25.283677669425536},"location":"Left Ankle"},{"euler":{"heading":73.67002192960564,"pitch":-16.3226388890984,"roll":-12.154278372474622},"location":"Right Ankle"},{"euler":{"heading":135.9890066305187,"pitch":-162.52890066690966,"roll":51.542350941910584},"location":"Right Hip"},{"euler":{"heading":28.623911525765294,"pitch":-104.61371053200367,"roll":34.54756188715474},"location":"Right Knee"},{"euler":{"heading":17.274675746357563,"pitch":-131.28415584479828,"roll":57.745452959305084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.556"} +{"sensors":[{"euler":{"heading":49.01345429537165,"pitch":128.30023981212133,"roll":17.984088181553318},"location":"Left Knee"},{"euler":{"heading":56.47728291512726,"pitch":94.08569409775058,"roll":21.736559902482984},"location":"Left Ankle"},{"euler":{"heading":73.36551973664508,"pitch":-15.89662500018856,"roll":-12.726350535227159},"location":"Right Ankle"},{"euler":{"heading":136.55260596746683,"pitch":-162.5322606002187,"roll":52.200615847719526},"location":"Right Hip"},{"euler":{"heading":29.355270373188766,"pitch":-105.1773394788033,"roll":33.717805698439264},"location":"Right Knee"},{"euler":{"heading":16.522208171721807,"pitch":-129.81199026031845,"roll":57.11465766337457},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.657"} +{"sensors":[{"euler":{"heading":45.75585886583448,"pitch":129.9327158309092,"roll":19.710679363397986},"location":"Left Knee"},{"euler":{"heading":53.398304623614536,"pitch":93.65212468797552,"roll":18.800403912234685},"location":"Left Ankle"},{"euler":{"heading":72.16021776298057,"pitch":-15.363212500169706,"roll":-13.634965481704443},"location":"Right Ankle"},{"euler":{"heading":137.28484537072015,"pitch":-162.77278454019685,"roll":52.84930426294757},"location":"Right Hip"},{"euler":{"heading":31.11349333586989,"pitch":-105.35335553092298,"roll":32.11477512859534},"location":"Right Knee"},{"euler":{"heading":16.319987354549628,"pitch":-128.9245412342866,"roll":56.765691897037115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.758"} +{"sensors":[{"euler":{"heading":44.04277297925103,"pitch":130.55819424781828,"roll":20.96461142705819},"location":"Left Knee"},{"euler":{"heading":51.78972416125308,"pitch":93.43691221917797,"roll":17.151613521011218},"location":"Left Ankle"},{"euler":{"heading":69.40044598668251,"pitch":-15.083141250152735,"roll":-14.708968933533999},"location":"Right Ankle"},{"euler":{"heading":138.36261083364815,"pitch":-162.90175608617716,"roll":53.25187383665281},"location":"Right Hip"},{"euler":{"heading":34.3333940022829,"pitch":-104.88051997783069,"roll":29.472047615735807},"location":"Right Knee"},{"euler":{"heading":16.137988619094667,"pitch":-128.23833711085794,"roll":56.7078727073334},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.858"} +{"sensors":[{"euler":{"heading":43.03849568132593,"pitch":130.67112482303645,"roll":21.780650284352372},"location":"Left Knee"},{"euler":{"heading":50.71075174512778,"pitch":93.24322099726018,"roll":15.986452168910096},"location":"Left Ankle"},{"euler":{"heading":65.94790138801426,"pitch":-14.612327125137462,"roll":-15.7318220401806},"location":"Right Ankle"},{"euler":{"heading":139.93259975028332,"pitch":-162.40533047755943,"roll":52.851686452987536},"location":"Right Hip"},{"euler":{"heading":37.481304602054614,"pitch":-104.55496798004762,"roll":26.656092854162228},"location":"Right Knee"},{"euler":{"heading":16.405439757185203,"pitch":-128.21450339977216,"roll":56.96208543660006},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.959"} +{"sensors":[{"euler":{"heading":42.390896113193335,"pitch":130.4977623407328,"roll":22.283835255917133},"location":"Left Knee"},{"euler":{"heading":50.189676570615,"pitch":93.08139889753416,"roll":15.350306952019087},"location":"Left Ankle"},{"euler":{"heading":64.10936124921284,"pitch":-14.519844412623716,"roll":-16.277389836162538},"location":"Right Ankle"},{"euler":{"heading":141.476839775255,"pitch":-161.80229742980347,"roll":51.90401780768878},"location":"Right Hip"},{"euler":{"heading":38.958174141849156,"pitch":-104.04947118204286,"roll":25.271733568746004},"location":"Right Knee"},{"euler":{"heading":16.896145781466682,"pitch":-128.84930305979495,"roll":57.42212689294006},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.60"} +{"sensors":[{"euler":{"heading":42.28305650187401,"pitch":130.06048610665954,"roll":22.43045173032542},"location":"Left Knee"},{"euler":{"heading":50.2019589135535,"pitch":92.96075900778074,"roll":15.202776256817177},"location":"Left Ankle"},{"euler":{"heading":64.80467512429155,"pitch":-15.217859971361344,"roll":-15.724650852546283},"location":"Right Ankle"},{"euler":{"heading":137.7666557977295,"pitch":-161.54081768682312,"roll":50.7198660269199},"location":"Right Hip"},{"euler":{"heading":38.41860672766425,"pitch":-103.21952406383858,"roll":26.057060211871406},"location":"Right Knee"},{"euler":{"heading":17.581531203320015,"pitch":-130.09562275381546,"roll":57.98616420364605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.161"} +{"sensors":[{"euler":{"heading":42.898500851686606,"pitch":129.2481874959936,"roll":22.243656557292876},"location":"Left Knee"},{"euler":{"heading":50.77551302219815,"pitch":93.08968310700266,"roll":15.569998631135459},"location":"Left Ankle"},{"euler":{"heading":67.5554576118624,"pitch":-16.05232397422521,"roll":-14.245935767291655},"location":"Right Ankle"},{"euler":{"heading":137.98999021795655,"pitch":-161.6429859181408,"roll":49.885379424227914},"location":"Right Hip"},{"euler":{"heading":36.22049605489782,"pitch":-102.36632165745472,"roll":28.588854190684266},"location":"Right Knee"},{"euler":{"heading":18.542128082988015,"pitch":-131.6923104784339,"roll":58.69379778328145},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.262"} +{"sensors":[{"euler":{"heading":44.18990076651795,"pitch":128.27961874639425,"roll":21.50054090156359},"location":"Left Knee"},{"euler":{"heading":52.04796171997833,"pitch":93.39321479630239,"roll":16.65049876802191},"location":"Left Ankle"},{"euler":{"heading":70.68741185067616,"pitch":-16.74084157680269,"roll":-12.78384219056249},"location":"Right Ankle"},{"euler":{"heading":137.10974119616088,"pitch":-162.0974373263267,"roll":49.615591481805126},"location":"Right Hip"},{"euler":{"heading":33.317196449408044,"pitch":-101.99218949170924,"roll":31.629968771615843},"location":"Right Knee"},{"euler":{"heading":19.637915274689213,"pitch":-133.71057943059054,"roll":59.4869180049533},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.362"} +{"sensors":[{"euler":{"heading":46.514660689866155,"pitch":127.29540687175482,"roll":19.86923681140723},"location":"Left Knee"},{"euler":{"heading":54.1744155479805,"pitch":93.84139331667214,"roll":18.99794889121972},"location":"Left Ankle"},{"euler":{"heading":72.71867066560854,"pitch":-17.03550741912242,"roll":-11.95545797150624},"location":"Right Ankle"},{"euler":{"heading":136.3925170765448,"pitch":-162.51894359369405,"roll":49.49778233362461},"location":"Right Hip"},{"euler":{"heading":30.80422680446724,"pitch":-102.20547054253831,"roll":33.74822189445426},"location":"Right Knee"},{"euler":{"heading":20.786623747220293,"pitch":-135.60827148753148,"roll":60.22572620445797},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.463"} +{"sensors":[{"euler":{"heading":50.42569462087954,"pitch":126.36586618457933,"roll":17.338563130266508},"location":"Left Knee"},{"euler":{"heading":58.32572399318246,"pitch":95.61350398500493,"roll":22.89190400209775},"location":"Left Ankle"},{"euler":{"heading":74.01555359904768,"pitch":-17.03195667721018,"roll":-11.616162174355615},"location":"Right Ankle"},{"euler":{"heading":135.57201536889033,"pitch":-162.97329923432466,"roll":49.773004100262156},"location":"Right Hip"},{"euler":{"heading":28.923804124020517,"pitch":-103.09742348828448,"roll":35.023399705008835},"location":"Right Knee"},{"euler":{"heading":20.157961372498264,"pitch":-134.55369433877834,"roll":60.36565358401218},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.564"} +{"sensors":[{"euler":{"heading":54.02687515879158,"pitch":125.75427956612141,"roll":15.298456817239856},"location":"Left Knee"},{"euler":{"heading":61.10565159386421,"pitch":95.57090358650443,"roll":25.727713601887974},"location":"Left Ankle"},{"euler":{"heading":74.86399823914292,"pitch":-17.135011009489162,"roll":-11.492045956920053},"location":"Right Ankle"},{"euler":{"heading":135.1273138320013,"pitch":-163.36346931089219,"roll":50.345703690235936},"location":"Right Hip"},{"euler":{"heading":27.993923711618464,"pitch":-103.80643113945602,"roll":35.60230973450795},"location":"Right Knee"},{"euler":{"heading":18.685915235248437,"pitch":-132.5858249049005,"roll":59.72283822561096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.665"} +{"sensors":[{"euler":{"heading":54.655437642912425,"pitch":126.27885160950927,"roll":15.031111135515872},"location":"Left Knee"},{"euler":{"heading":60.80758643447779,"pitch":94.85131322785399,"roll":25.436192241699178},"location":"Left Ankle"},{"euler":{"heading":75.44009841522863,"pitch":-17.152759908540247,"roll":-11.54284136122805},"location":"Right Ankle"},{"euler":{"heading":135.07083244880118,"pitch":-163.67712237980297,"roll":51.04238332121235},"location":"Right Hip"},{"euler":{"heading":27.79453134045662,"pitch":-104.39453802551043,"roll":35.61082876105716},"location":"Right Knee"},{"euler":{"heading":17.136073711723597,"pitch":-130.41474241441045,"roll":58.78805440304986},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.767"} +{"sensors":[{"euler":{"heading":51.32739387862119,"pitch":127.88221644855835,"roll":16.584250021964287},"location":"Left Knee"},{"euler":{"heading":57.54557779103001,"pitch":94.0161819050686,"roll":22.411323017529263},"location":"Left Ankle"},{"euler":{"heading":75.51483857370577,"pitch":-16.831233917686223,"roll":-11.876057225105246},"location":"Right Ankle"},{"euler":{"heading":135.29499920392107,"pitch":-163.90941014182266,"roll":51.781894989091114},"location":"Right Hip"},{"euler":{"heading":27.95882820641096,"pitch":-105.03008422295939,"roll":35.17474588495144},"location":"Right Knee"},{"euler":{"heading":16.072466340551237,"pitch":-128.76701817296941,"roll":58.07174896274488},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.867"} +{"sensors":[{"euler":{"heading":47.61340449075907,"pitch":129.75024480370251,"roll":18.338325019767858},"location":"Left Knee"},{"euler":{"heading":53.85977001192701,"pitch":93.43331371456175,"roll":19.076440715776336},"location":"Left Ankle"},{"euler":{"heading":74.8196047163352,"pitch":-16.279360525917603,"roll":-12.675951502594723},"location":"Right Ankle"},{"euler":{"heading":135.66549928352896,"pitch":-164.2309691276404,"roll":52.616205490182004},"location":"Right Hip"},{"euler":{"heading":28.919195385769864,"pitch":-105.49582580066345,"roll":34.0760212964563},"location":"Right Knee"},{"euler":{"heading":15.571469706496114,"pitch":-127.80906635567248,"roll":57.55832406647039},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.968"} +{"sensors":[{"euler":{"heading":45.81456404168316,"pitch":130.51272032333227,"roll":19.710742517791072},"location":"Left Knee"},{"euler":{"heading":51.97379301073431,"pitch":93.48373234310557,"roll":17.118796644198703},"location":"Left Ankle"},{"euler":{"heading":72.8626442447017,"pitch":-15.888924473325844,"roll":-13.77710635233525},"location":"Right Ankle"},{"euler":{"heading":136.21144935517606,"pitch":-164.57037221487636,"roll":53.42333494116381},"location":"Right Hip"},{"euler":{"heading":31.17727584719288,"pitch":-105.53999322059711,"roll":32.03716916681067},"location":"Right Knee"},{"euler":{"heading":15.289322735846502,"pitch":-127.16565972010524,"roll":57.246241659823355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.69"} +{"sensors":[{"euler":{"heading":44.970607637514846,"pitch":130.57394829099906,"roll":20.633418266011965},"location":"Left Knee"},{"euler":{"heading":50.87016370966088,"pitch":93.54785910879501,"roll":15.894416979778834},"location":"Left Ankle"},{"euler":{"heading":69.28887982023154,"pitch":-15.13753202599326,"roll":-15.118145717101726},"location":"Right Ankle"},{"euler":{"heading":137.38405441965844,"pitch":-164.23833499338872,"roll":53.43100144704743},"location":"Right Hip"},{"euler":{"heading":34.44079826247359,"pitch":-105.2359938985374,"roll":29.039702250129604},"location":"Right Knee"},{"euler":{"heading":15.260390462261853,"pitch":-126.85534374809471,"roll":57.34036749384102},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.170"} +{"sensors":[{"euler":{"heading":44.44854687376336,"pitch":130.33530346189914,"roll":21.23257643941077},"location":"Left Knee"},{"euler":{"heading":50.28939733869479,"pitch":93.56182319791552,"roll":15.19247528180095},"location":"Left Ankle"},{"euler":{"heading":66.52249183820838,"pitch":-14.792528823393933,"roll":-15.981331145391554},"location":"Right Ankle"},{"euler":{"heading":138.7831489776926,"pitch":-163.61450149404988,"roll":52.744151302342686},"location":"Right Hip"},{"euler":{"heading":36.80296843622624,"pitch":-104.79364450868366,"roll":26.791982025116646},"location":"Right Knee"},{"euler":{"heading":15.534351416035669,"pitch":-127.31355937328524,"roll":57.68133074445692},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.271"} +{"sensors":[{"euler":{"heading":44.366192186387025,"pitch":129.78927311570925,"roll":21.571818795469696},"location":"Left Knee"},{"euler":{"heading":50.34170760482532,"pitch":93.71189087812397,"roll":15.010727753620856},"location":"Left Ankle"},{"euler":{"heading":66.17649265438754,"pitch":-15.11952594105454,"roll":-16.020698030852397},"location":"Right Ankle"},{"euler":{"heading":140.02358407992335,"pitch":-163.07805134464488,"roll":51.519736172108416},"location":"Right Hip"},{"euler":{"heading":37.122671592603616,"pitch":-104.1392800578153,"roll":26.76278382260498},"location":"Right Knee"},{"euler":{"heading":16.130916274432103,"pitch":-128.50095343595672,"roll":58.16319767001123},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.372"} +{"sensors":[{"euler":{"heading":45.06082296774832,"pitch":128.79159580413832,"roll":21.54588691592273},"location":"Left Knee"},{"euler":{"heading":51.032536844342786,"pitch":94.13445179031157,"roll":15.284654978258772},"location":"Left Ankle"},{"euler":{"heading":68.5963433889488,"pitch":-15.895073346949086,"roll":-14.862378227767158},"location":"Right Ankle"},{"euler":{"heading":136.177475671931,"pitch":-163.0139962101804,"roll":50.44276255489758},"location":"Right Hip"},{"euler":{"heading":35.31665443334325,"pitch":-103.31285205203378,"roll":28.75525544034448},"location":"Right Knee"},{"euler":{"heading":17.117824646988893,"pitch":-130.20710809236104,"roll":58.82187790301011},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.473"} +{"sensors":[{"euler":{"heading":46.3234906709735,"pitch":127.6686862237245,"roll":20.978798224330454},"location":"Left Knee"},{"euler":{"heading":52.21053315990851,"pitch":94.63350661128041,"roll":16.074939480432896},"location":"Left Ankle"},{"euler":{"heading":71.59295905005392,"pitch":-16.66806601225418,"roll":-13.263640404990442},"location":"Right Ankle"},{"euler":{"heading":135.7347281047379,"pitch":-163.22509658916235,"roll":49.942236299407824},"location":"Right Hip"},{"euler":{"heading":32.553738990008924,"pitch":-102.69406684683041,"roll":31.67347989631003},"location":"Right Knee"},{"euler":{"heading":18.187292182290005,"pitch":-132.31764728312493,"roll":59.577190112709104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.574"} +{"sensors":[{"euler":{"heading":48.42239160387615,"pitch":126.53931760135207,"roll":19.63091840189741},"location":"Left Knee"},{"euler":{"heading":54.08947984391766,"pitch":95.20140595015238,"roll":17.792445532389607},"location":"Left Ankle"},{"euler":{"heading":73.72116314504852,"pitch":-17.070009411028764,"roll":-12.131026364491397},"location":"Right Ankle"},{"euler":{"heading":134.88000529426412,"pitch":-163.65258693024612,"roll":49.62926266946704},"location":"Right Hip"},{"euler":{"heading":30.092115091008033,"pitch":-102.67466016214738,"roll":33.831131906679026},"location":"Right Knee"},{"euler":{"heading":19.356062964061007,"pitch":-134.72963255481244,"roll":60.32572110143819},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.675"} +{"sensors":[{"euler":{"heading":51.96140244348854,"pitch":125.68538584121686,"roll":17.18032656170767},"location":"Left Knee"},{"euler":{"heading":57.18053185952589,"pitch":96.16876535513714,"roll":21.206950979150648},"location":"Left Ankle"},{"euler":{"heading":75.01779683054367,"pitch":-17.294258469925886,"roll":-11.611673728042257},"location":"Right Ankle"},{"euler":{"heading":134.56700476483772,"pitch":-163.84357823722152,"roll":49.760086402520336},"location":"Right Hip"},{"euler":{"heading":28.31415358190723,"pitch":-103.07594414593264,"roll":35.091768716011124},"location":"Right Knee"},{"euler":{"heading":19.351706667654906,"pitch":-134.9879192993312,"roll":60.618148991294376},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.776"} +{"sensors":[{"euler":{"heading":55.771512199139686,"pitch":124.89184725709518,"roll":14.768543905536903},"location":"Left Knee"},{"euler":{"heading":60.2312286735733,"pitch":96.71438881962342,"roll":24.792505881235584},"location":"Left Ankle"},{"euler":{"heading":75.9097671474893,"pitch":-17.539832622933297,"roll":-11.388006355238032},"location":"Right Ankle"},{"euler":{"heading":134.11655428835394,"pitch":-164.25922041349938,"roll":50.3465777622683},"location":"Right Hip"},{"euler":{"heading":27.63273822371651,"pitch":-103.60584973133938,"roll":35.57009184441001},"location":"Right Knee"},{"euler":{"heading":18.160286000889414,"pitch":-133.10787736939807,"roll":60.23133409216494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.876"} +{"sensors":[{"euler":{"heading":57.78186097922572,"pitch":125.15266253138566,"roll":13.685439514983214},"location":"Left Knee"},{"euler":{"heading":61.22060580621597,"pitch":95.99919993766107,"roll":26.063255293112025},"location":"Left Ankle"},{"euler":{"heading":76.36254043274037,"pitch":-17.679599360639966,"roll":-11.49920571971423},"location":"Right Ankle"},{"euler":{"heading":134.27989885951854,"pitch":-164.42704837214944,"roll":51.05566998604147},"location":"Right Hip"},{"euler":{"heading":27.638214401344857,"pitch":-104.08276475820544,"roll":35.51308265996901},"location":"Right Knee"},{"euler":{"heading":16.544257400800472,"pitch":-131.07833963245827,"roll":59.24570068294845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.977"} +{"sensors":[{"euler":{"heading":55.303674881303145,"pitch":126.6061462782471,"roll":14.704395563484894},"location":"Left Knee"},{"euler":{"heading":58.929795225594376,"pitch":94.86802994389497,"roll":24.31317976380082},"location":"Left Ankle"},{"euler":{"heading":76.28878638946634,"pitch":-17.61788942457597,"roll":-11.830535147742808},"location":"Right Ankle"},{"euler":{"heading":134.8394089735667,"pitch":-164.47184353493452,"roll":51.693852987437324},"location":"Right Hip"},{"euler":{"heading":28.143142961210373,"pitch":-104.4682382823849,"roll":34.93677439397211},"location":"Right Knee"},{"euler":{"heading":15.177331660720425,"pitch":-129.19550566921245,"roll":58.364880614653615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.78"} +{"sensors":[{"euler":{"heading":51.04830739317283,"pitch":128.70803165042238,"roll":16.665206007136405},"location":"Left Knee"},{"euler":{"heading":54.81181570303494,"pitch":93.77497694950547,"roll":20.51936178742074},"location":"Left Ankle"},{"euler":{"heading":75.4599077505197,"pitch":-17.118600482118374,"roll":-12.653731632968526},"location":"Right Ankle"},{"euler":{"heading":135.52421807621002,"pitch":-164.50590918144107,"roll":52.32446768869359},"location":"Right Hip"},{"euler":{"heading":29.241328665089338,"pitch":-104.84641445414641,"roll":33.774346954574895},"location":"Right Knee"},{"euler":{"heading":14.603348494648381,"pitch":-128.0134551022912,"roll":57.815892553188256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.178"} +{"sensors":[{"euler":{"heading":48.10597665385555,"pitch":130.06847848538015,"roll":18.417435406422765},"location":"Left Knee"},{"euler":{"heading":51.55563413273145,"pitch":93.44122925455493,"roll":17.586175608678662},"location":"Left Ankle"},{"euler":{"heading":73.83266697546775,"pitch":-16.487990433906536,"roll":-13.719608469671675},"location":"Right Ankle"},{"euler":{"heading":136.403046268589,"pitch":-164.78656826329694,"roll":52.99827091982423},"location":"Right Hip"},{"euler":{"heading":31.292195798580405,"pitch":-104.93052300873177,"roll":31.87191225911741},"location":"Right Knee"},{"euler":{"heading":14.580513645183544,"pitch":-127.14960959206209,"roll":57.44055329786943},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.279"} +{"sensors":[{"euler":{"heading":46.47662898847,"pitch":130.59913063684215,"roll":19.66319186578049},"location":"Left Knee"},{"euler":{"heading":49.9813207194583,"pitch":93.32210632909943,"roll":15.977558047810797},"location":"Left Ankle"},{"euler":{"heading":70.82440027792097,"pitch":-15.814191390515882,"roll":-14.947647622704507},"location":"Right Ankle"},{"euler":{"heading":137.59399164173013,"pitch":-164.69541143696725,"roll":53.37344382784181},"location":"Right Hip"},{"euler":{"heading":34.512976218722365,"pitch":-104.6374707078586,"roll":29.022221033205668},"location":"Right Knee"},{"euler":{"heading":14.378712280665189,"pitch":-126.53464863285589,"roll":57.246497968082494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.380"} +{"sensors":[{"euler":{"heading":45.553966089623,"pitch":130.57046757315794,"roll":20.559372679202443},"location":"Left Knee"},{"euler":{"heading":49.03943864751247,"pitch":93.35239569618949,"roll":14.842302243029717},"location":"Left Ankle"},{"euler":{"heading":67.17321025012888,"pitch":-15.139022251464294,"roll":-16.096632860434056},"location":"Right Ankle"},{"euler":{"heading":139.15334247755712,"pitch":-163.90712029327054,"roll":53.04234944505763},"location":"Right Hip"},{"euler":{"heading":37.61792859685013,"pitch":-104.47372363707274,"roll":26.182498929885103},"location":"Right Knee"},{"euler":{"heading":14.628341052598671,"pitch":-126.7249337695703,"roll":57.42809817127424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.481"} +{"sensors":[{"euler":{"heading":45.1110694806607,"pitch":130.16967081584215,"roll":21.134685411282202},"location":"Left Knee"},{"euler":{"heading":48.741744782761224,"pitch":93.42340612657054,"roll":14.314322018726747},"location":"Left Ankle"},{"euler":{"heading":65.43088922511599,"pitch":-14.987620026317865,"roll":-16.64946957439065},"location":"Right Ankle"},{"euler":{"heading":140.6442582298014,"pitch":-163.14765826394347,"roll":52.06311450055187},"location":"Right Hip"},{"euler":{"heading":38.88113573716512,"pitch":-104.13260127336547,"roll":24.939249036896594},"location":"Right Knee"},{"euler":{"heading":15.196756947338804,"pitch":-127.56494039261328,"roll":57.81028835414682},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.581"} +{"sensors":[{"euler":{"heading":45.38746253259463,"pitch":129.32145373425794,"roll":21.38996687015398},"location":"Left Knee"},{"euler":{"heading":49.4925703044851,"pitch":93.81231551391349,"roll":14.607889816854073},"location":"Left Ankle"},{"euler":{"heading":66.27530030260439,"pitch":-15.70760802368608,"roll":-15.997022616951584},"location":"Right Ankle"},{"euler":{"heading":136.94858240682126,"pitch":-162.88914243754914,"roll":50.82555305049668},"location":"Right Hip"},{"euler":{"heading":37.986772163448606,"pitch":-103.26934114602892,"roll":25.939074133206937},"location":"Right Knee"},{"euler":{"heading":16.008331252604922,"pitch":-128.75844635335196,"roll":58.37300951873214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.681"} +{"sensors":[{"euler":{"heading":46.27996627933517,"pitch":128.22680836083214,"roll":21.107220183138583},"location":"Left Knee"},{"euler":{"heading":50.69331327403659,"pitch":94.30608396252214,"roll":15.390850835168665},"location":"Left Ankle"},{"euler":{"heading":69.02277027234396,"pitch":-16.43684722131747,"roll":-14.553570355256426},"location":"Right Ankle"},{"euler":{"heading":136.99747416613914,"pitch":-162.92522819379423,"roll":50.08049774544701},"location":"Right Hip"},{"euler":{"heading":35.25059494710375,"pitch":-102.48615703142603,"roll":28.757666719886245},"location":"Right Knee"},{"euler":{"heading":16.95749812734443,"pitch":-130.32010171801676,"roll":59.054458566858926},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.783"} +{"sensors":[{"euler":{"heading":47.858219651401654,"pitch":127.11662752474894,"roll":20.183998164824725},"location":"Left Knee"},{"euler":{"heading":52.49898194663293,"pitch":94.83797556626993,"roll":16.8642657516518},"location":"Left Ankle"},{"euler":{"heading":71.57049324510956,"pitch":-16.980662499185726,"roll":-13.204463319730783},"location":"Right Ankle"},{"euler":{"heading":136.0914767495252,"pitch":-163.3014553744148,"roll":49.74744797090231},"location":"Right Hip"},{"euler":{"heading":32.38178545239337,"pitch":-102.03129132828343,"roll":31.57565004789762},"location":"Right Knee"},{"euler":{"heading":18.067998314609987,"pitch":-132.49434154621508,"roll":59.80526271017303},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.884"} +{"sensors":[{"euler":{"heading":50.52864768626149,"pitch":126.30496477227405,"roll":18.153098348342255},"location":"Left Knee"},{"euler":{"heading":54.98033375196964,"pitch":95.24792800964293,"roll":19.69033917648662},"location":"Left Ankle"},{"euler":{"heading":72.95719392059861,"pitch":-17.145096249267155,"roll":-12.584016987757703},"location":"Right Ankle"},{"euler":{"heading":135.9010790745727,"pitch":-163.42755983697333,"roll":49.62895317381208},"location":"Right Hip"},{"euler":{"heading":30.02485690715404,"pitch":-102.1844121954551,"roll":33.41808504310786},"location":"Right Knee"},{"euler":{"heading":18.804948483148987,"pitch":-133.86990739159359,"roll":60.39348643915573},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.985"} +{"sensors":[{"euler":{"heading":54.175782917635345,"pitch":125.43071829504666,"roll":15.69403851350803},"location":"Left Knee"},{"euler":{"heading":58.56355037677268,"pitch":96.02938520867865,"roll":23.55255525883796},"location":"Left Ankle"},{"euler":{"heading":73.91147452853875,"pitch":-17.11183662434044,"roll":-12.275615288981932},"location":"Right Ankle"},{"euler":{"heading":135.54847116711542,"pitch":-163.597303853276,"roll":49.99105785643088},"location":"Right Hip"},{"euler":{"heading":28.459871216438636,"pitch":-102.89722097590959,"roll":34.482526538797075},"location":"Right Knee"},{"euler":{"heading":18.111953634834087,"pitch":-132.51416665243423,"roll":60.33538779524016},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.86"} +{"sensors":[{"euler":{"heading":56.90820462587181,"pitch":125.275146465542,"roll":14.099634662157227},"location":"Left Knee"},{"euler":{"heading":60.53844533909542,"pitch":95.55769668781078,"roll":25.697299732954164},"location":"Left Ankle"},{"euler":{"heading":74.45782707568488,"pitch":-17.063152961906397,"roll":-12.20430376008374},"location":"Right Ankle"},{"euler":{"heading":135.64362405040387,"pitch":-163.6500734679484,"roll":50.64820207078779},"location":"Right Hip"},{"euler":{"heading":27.676384094794773,"pitch":-103.50749887831864,"roll":34.93427388491737},"location":"Right Knee"},{"euler":{"heading":16.63825827135068,"pitch":-130.7502499871908,"roll":59.526849015716145},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.187"} +{"sensors":[{"euler":{"heading":55.91738416328463,"pitch":126.3038818189878,"roll":14.445921195941503},"location":"Left Knee"},{"euler":{"heading":59.40335080518588,"pitch":94.60192701902969,"roll":24.940069759658748},"location":"Left Ankle"},{"euler":{"heading":74.63704436811639,"pitch":-16.88808766571576,"roll":-12.296373384075366},"location":"Right Ankle"},{"euler":{"heading":135.99176164536348,"pitch":-163.69131612115356,"roll":51.395881863709015},"location":"Right Hip"},{"euler":{"heading":27.458745685315296,"pitch":-104.03174899048678,"roll":34.88459649642563},"location":"Right Knee"},{"euler":{"heading":15.205682444215611,"pitch":-128.94397498847175,"roll":58.56791411414453},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.288"} +{"sensors":[{"euler":{"heading":52.33189574695617,"pitch":128.08599363708902,"roll":16.095079076347353},"location":"Left Knee"},{"euler":{"heading":55.775515724667294,"pitch":93.74173431712671,"roll":21.739812783692873},"location":"Left Ankle"},{"euler":{"heading":74.27958993130476,"pitch":-16.386778899144183,"roll":-14.24798604566783},"location":"Right Ankle"},{"euler":{"heading":136.46133548082713,"pitch":-163.7346845090382,"roll":52.168793677338115},"location":"Right Hip"},{"euler":{"heading":27.750371116783768,"pitch":-104.5910740914381,"roll":34.29613684678307},"location":"Right Knee"},{"euler":{"heading":14.30386419979405,"pitch":-127.57457748962459,"roll":57.82362270273008},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.388"} +{"sensors":[{"euler":{"heading":48.86745617226055,"pitch":129.84614427338013,"roll":17.84182116871262},"location":"Left Knee"},{"euler":{"heading":52.266714152200564,"pitch":93.46131088541405,"roll":18.597081505323587},"location":"Left Ankle"},{"euler":{"heading":73.20163093817428,"pitch":-15.679351009229766,"roll":-14.916937441101046},"location":"Right Ankle"},{"euler":{"heading":136.9902019327444,"pitch":-164.02371605813437,"roll":53.008164309604304},"location":"Right Hip"},{"euler":{"heading":28.950334005105393,"pitch":-104.9382166822943,"roll":32.99152316210477},"location":"Right Knee"},{"euler":{"heading":14.023477779814646,"pitch":-126.79836974066214,"roll":57.335010432457075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.489"} +{"sensors":[{"euler":{"heading":47.4119605550345,"pitch":130.47402984604213,"roll":19.10763905184136},"location":"Left Knee"},{"euler":{"heading":50.62754273698051,"pitch":93.62142979687265,"roll":16.874873354791227},"location":"Left Ankle"},{"euler":{"heading":70.65646784435685,"pitch":-15.248915908306788,"roll":-15.812743696990943},"location":"Right Ankle"},{"euler":{"heading":137.84118173947,"pitch":-164.16509445232091,"roll":53.651097878643874},"location":"Right Hip"},{"euler":{"heading":31.855300604594856,"pitch":-104.61939501406486,"roll":30.49862084589429},"location":"Right Knee"},{"euler":{"heading":13.846130001833181,"pitch":-126.18103276659593,"roll":57.11400938921137},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.591"} +{"sensors":[{"euler":{"heading":46.758264499531045,"pitch":130.40787686143793,"roll":20.015625146657225},"location":"Left Knee"},{"euler":{"heading":49.73978846328246,"pitch":93.87178681718538,"roll":15.699886019312103},"location":"Left Ankle"},{"euler":{"heading":67.04707105992117,"pitch":-14.667774317476109,"roll":-16.81896932729185},"location":"Right Ankle"},{"euler":{"heading":139.419563565523,"pitch":-163.5423350070888,"roll":53.38598809077949},"location":"Right Hip"},{"euler":{"heading":35.05727054413537,"pitch":-104.29495551265838,"roll":27.611258761304864},"location":"Right Knee"},{"euler":{"heading":14.099017001649862,"pitch":-126.14417948993633,"roll":57.24635845029023},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.692"} +{"sensors":[{"euler":{"heading":46.319938049577935,"pitch":129.87958917529414,"roll":20.732812631991504},"location":"Left Knee"},{"euler":{"heading":49.59080961695422,"pitch":94.18460813546685,"roll":15.142397417380893},"location":"Left Ankle"},{"euler":{"heading":64.97986395392905,"pitch":-14.369746885728498,"roll":-17.474572394562664},"location":"Right Ankle"},{"euler":{"heading":141.0026072089707,"pitch":-162.80685150637993,"roll":52.42238928170154},"location":"Right Hip"},{"euler":{"heading":36.726543489721834,"pitch":-103.88420996139254,"roll":26.04388288517438},"location":"Right Knee"},{"euler":{"heading":14.676615301484878,"pitch":-126.8985115409427,"roll":57.59672260526121},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.792"} +{"sensors":[{"euler":{"heading":46.52544424462014,"pitch":128.96663025776473,"roll":21.084531368792355},"location":"Left Knee"},{"euler":{"heading":50.031728655258796,"pitch":94.69739732192016,"roll":15.040657675642803},"location":"Left Ankle"},{"euler":{"heading":65.43187755853614,"pitch":-14.814022197155648,"roll":-17.058365155106397},"location":"Right Ankle"},{"euler":{"heading":137.2835964880736,"pitch":-162.53241635574193,"roll":51.06140035353139},"location":"Right Hip"},{"euler":{"heading":36.216389140749655,"pitch":-103.1020389652533,"roll":26.626994596656942},"location":"Right Knee"},{"euler":{"heading":15.440203771336389,"pitch":-128.12116038684843,"roll":58.08080034473509},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.893"} +{"sensors":[{"euler":{"heading":47.39789982015812,"pitch":127.85746723198827,"roll":20.951078231913122},"location":"Left Knee"},{"euler":{"heading":50.85980578973292,"pitch":95.24015758972816,"roll":15.392841908078523},"location":"Left Ankle"},{"euler":{"heading":68.21993980268253,"pitch":-15.463869977440083,"roll":-15.671278639595757},"location":"Right Ankle"},{"euler":{"heading":133.86148683926626,"pitch":-162.55417472016774,"roll":49.992760318178256},"location":"Right Hip"},{"euler":{"heading":33.90725022667469,"pitch":-101.97308506872798,"roll":29.06429513699125},"location":"Right Knee"},{"euler":{"heading":16.35243339420275,"pitch":-129.6777943481636,"roll":58.71022031026158},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.994"} +{"sensors":[{"euler":{"heading":48.78310983814231,"pitch":126.72172050878945,"roll":20.23097040872181},"location":"Left Knee"},{"euler":{"heading":52.180075210759625,"pitch":95.74739183075535,"roll":16.359807717270673},"location":"Left Ankle"},{"euler":{"heading":71.21669582241428,"pitch":-16.242482979696074,"roll":-13.985400775636181},"location":"Right Ankle"},{"euler":{"heading":133.55033815533963,"pitch":-162.88000724815097,"roll":49.54348428636043},"location":"Right Hip"},{"euler":{"heading":31.016525204007223,"pitch":-101.15702656185518,"roll":32.13911562329213},"location":"Right Knee"},{"euler":{"heading":17.44219005478248,"pitch":-131.80376491334724,"roll":59.43919827923543},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.95"} +{"sensors":[{"euler":{"heading":51.04229885432808,"pitch":125.76204845791051,"roll":18.62037336784963},"location":"Left Knee"},{"euler":{"heading":54.26831768968366,"pitch":96.12890264767981,"roll":18.44882694554361},"location":"Left Ankle"},{"euler":{"heading":73.03252624017286,"pitch":-16.486984681726465,"roll":-12.999360698072563},"location":"Right Ankle"},{"euler":{"heading":133.21405433980567,"pitch":-163.18575652333587,"roll":49.332885857724385},"location":"Right Hip"},{"euler":{"heading":28.3898726836065,"pitch":-101.08507390566966,"roll":34.45645406096291},"location":"Right Knee"},{"euler":{"heading":18.69797104930423,"pitch":-134.3171384220125,"roll":60.18277845131188},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.196"} +{"sensors":[{"euler":{"heading":54.71931896889527,"pitch":124.87959361211946,"roll":16.095836031064668},"location":"Left Knee"},{"euler":{"heading":58.0789859207153,"pitch":97.45976238291183,"roll":22.09769425098925},"location":"Left Ankle"},{"euler":{"heading":74.18552361615556,"pitch":-16.45078621355382,"roll":-12.480674628265307},"location":"Right Ankle"},{"euler":{"heading":133.31139890582511,"pitch":-163.27968087100228,"roll":49.56834727195195},"location":"Right Hip"},{"euler":{"heading":26.48213541524585,"pitch":-101.55156651510269,"roll":35.85455865486662},"location":"Right Knee"},{"euler":{"heading":18.559423944373805,"pitch":-134.67917457981125,"roll":60.4207506061807},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.297"} +{"sensors":[{"euler":{"heading":58.447387072005746,"pitch":124.31038425090752,"roll":13.792502427958201},"location":"Left Knee"},{"euler":{"heading":60.78358732864377,"pitch":97.61378614462066,"roll":25.150424825890326},"location":"Left Ankle"},{"euler":{"heading":74.97322125454001,"pitch":-16.274457592198438,"roll":-12.301357165438777},"location":"Right Ankle"},{"euler":{"heading":133.47400901524261,"pitch":-163.42671278390205,"roll":50.15526254475676},"location":"Right Hip"},{"euler":{"heading":25.321421873721267,"pitch":-102.43390986359242,"roll":36.53160278937997},"location":"Right Knee"},{"euler":{"heading":17.528481549936423,"pitch":-132.78625712183012,"roll":60.116175545562626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.397"} +{"sensors":[{"euler":{"heading":59.86514836480517,"pitch":124.66684582581678,"roll":13.157002185162382},"location":"Left Knee"},{"euler":{"heading":60.7802285957794,"pitch":96.8961575301586,"roll":25.535382343301293},"location":"Left Ankle"},{"euler":{"heading":75.413399129086,"pitch":-15.872011832978593,"roll":-12.4337214488949},"location":"Right Ankle"},{"euler":{"heading":134.01410811371835,"pitch":-163.32779150551184,"roll":50.86473629028109},"location":"Right Hip"},{"euler":{"heading":24.58927968634914,"pitch":-103.36551887723317,"roll":36.74094251044197},"location":"Right Knee"},{"euler":{"heading":16.12563339494278,"pitch":-130.7201314096471,"roll":59.21705799100637},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.498"} +{"sensors":[{"euler":{"heading":56.79113352832466,"pitch":126.2939112432351,"roll":14.497551966646144},"location":"Left Knee"},{"euler":{"heading":57.62095573620146,"pitch":95.70029177714275,"roll":23.031844108971164},"location":"Left Ankle"},{"euler":{"heading":75.3283092161774,"pitch":-15.241060649680735,"roll":-12.78409930400541},"location":"Right Ankle"},{"euler":{"heading":134.6689473023465,"pitch":-163.20751235496067,"roll":51.62201266125298},"location":"Right Hip"},{"euler":{"heading":24.299101717714226,"pitch":-104.27271698950986,"roll":36.47309825939777},"location":"Right Knee"},{"euler":{"heading":14.869320055448503,"pitch":-128.9168682686824,"roll":58.37035219190574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.598"} +{"sensors":[{"euler":{"heading":52.60577017549219,"pitch":128.4082701189116,"roll":16.35404676998153},"location":"Left Knee"},{"euler":{"heading":53.727610162581314,"pitch":94.63026259942848,"roll":19.497409698074048},"location":"Left Ankle"},{"euler":{"heading":74.50172829455965,"pitch":-14.404454584712662,"roll":-13.46818937360487},"location":"Right Ankle"},{"euler":{"heading":135.40205257211187,"pitch":-163.18676111946462,"roll":52.447311395127684},"location":"Right Hip"},{"euler":{"heading":24.850441545942804,"pitch":-105.00169529055887,"roll":35.550788433457996},"location":"Right Knee"},{"euler":{"heading":14.282388049903654,"pitch":-127.70018144181417,"roll":57.795816972715166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.699"} +{"sensors":[{"euler":{"heading":50.12644315794297,"pitch":129.59244310702044,"roll":17.937392092983377},"location":"Left Knee"},{"euler":{"heading":51.423599146323184,"pitch":94.52348633948563,"roll":17.241418728266645},"location":"Left Ankle"},{"euler":{"heading":72.53280546510369,"pitch":-13.707759126241395,"roll":-14.452620436244384},"location":"Right Ankle"},{"euler":{"heading":136.45559731490067,"pitch":-163.2930850075182,"roll":53.24008025561492},"location":"Right Hip"},{"euler":{"heading":27.052897391348523,"pitch":-105.19527576150298,"roll":33.59570959011219},"location":"Right Knee"},{"euler":{"heading":14.15414924491329,"pitch":-126.99891329763275,"roll":57.441235275443645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.800"} +{"sensors":[{"euler":{"heading":48.988798842148675,"pitch":129.8831987963184,"roll":19.06240288368504},"location":"Left Knee"},{"euler":{"heading":50.06248923169087,"pitch":94.56488770553707,"roll":15.792276855439981},"location":"Left Ankle"},{"euler":{"heading":69.11077491859332,"pitch":-12.855733213617256,"roll":-15.626108392619946},"location":"Right Ankle"},{"euler":{"heading":138.0725375834106,"pitch":-162.87627650676637,"roll":53.37857223005343},"location":"Right Hip"},{"euler":{"heading":30.260107652213673,"pitch":-105.03824818535269,"roll":30.754888631100975},"location":"Right Knee"},{"euler":{"heading":14.263734320421962,"pitch":-126.52402196786949,"roll":57.472111747899284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.901"} +{"sensors":[{"euler":{"heading":48.45866895793381,"pitch":129.51362891668657,"roll":19.949912595316533},"location":"Left Knee"},{"euler":{"heading":49.53749030852178,"pitch":94.79589893498337,"roll":14.944299169895983},"location":"Left Ankle"},{"euler":{"heading":65.98094742673399,"pitch":-12.60140989225553,"roll":-16.557247553357954},"location":"Right Ankle"},{"euler":{"heading":139.88403382506954,"pitch":-162.22614885608974,"roll":52.596965007048084},"location":"Right Hip"},{"euler":{"heading":32.890346886992305,"pitch":-104.64692336681742,"roll":28.49189976799088},"location":"Right Knee"},{"euler":{"heading":14.799860888379767,"pitch":-126.78411977108254,"roll":57.79990057310936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.2"} +{"sensors":[{"euler":{"heading":48.26905206214043,"pitch":128.9497660250179,"roll":20.44867133578488},"location":"Left Knee"},{"euler":{"heading":49.964991277669604,"pitch":95.01005904148505,"roll":14.993619252906385},"location":"Left Ankle"},{"euler":{"heading":64.88910268406059,"pitch":-13.297518903029978,"roll":-16.85152279802216},"location":"Right Ankle"},{"euler":{"heading":141.7143804425626,"pitch":-161.65353397048077,"roll":51.37476850634328},"location":"Right Hip"},{"euler":{"heading":33.72631219829307,"pitch":-104.01348103013568,"roll":28.117709791191793},"location":"Right Knee"},{"euler":{"heading":15.58862479954179,"pitch":-127.99945779397429,"roll":58.27616051579843},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.103"} +{"sensors":[{"euler":{"heading":48.65464685592639,"pitch":128.13603942251612,"roll":20.52880420220639},"location":"Left Knee"},{"euler":{"heading":50.64349214990264,"pitch":95.23405313733656,"roll":15.400507327615747},"location":"Left Ankle"},{"euler":{"heading":65.98769241565454,"pitch":-14.38026701272698,"roll":-15.835120518219943},"location":"Right Ankle"},{"euler":{"heading":138.05544239830633,"pitch":-161.5381805734327,"roll":50.18104165570895},"location":"Right Hip"},{"euler":{"heading":32.578680978463765,"pitch":-102.98713292712212,"roll":29.749688812072616},"location":"Right Knee"},{"euler":{"heading":16.57351231958761,"pitch":-129.75576201457685,"roll":58.86729446421859},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.203"} +{"sensors":[{"euler":{"heading":49.645432170333756,"pitch":127.13493548026452,"roll":20.038423781985752},"location":"Left Knee"},{"euler":{"heading":51.93539293491238,"pitch":95.61064782360292,"roll":16.372956594854173},"location":"Left Ankle"},{"euler":{"heading":68.75142317408908,"pitch":-15.504740311454283,"roll":-14.18285846639795},"location":"Right Ankle"},{"euler":{"heading":138.2873981584757,"pitch":-161.60311251608942,"roll":49.562937490138054},"location":"Right Hip"},{"euler":{"heading":30.04581288061739,"pitch":-102.15716963440991,"roll":32.71221993086536},"location":"Right Knee"},{"euler":{"heading":17.72241108762885,"pitch":-132.04893581311916,"roll":59.53681501779673},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.303"} +{"sensors":[{"euler":{"heading":51.54963895330038,"pitch":126.19644193223807,"roll":18.75333140378718},"location":"Left Knee"},{"euler":{"heading":53.835603641421145,"pitch":95.98083304124263,"roll":18.166910935368755},"location":"Left Ankle"},{"euler":{"heading":71.33878085668017,"pitch":-16.204266280308854,"roll":-12.845822619758156},"location":"Right Ankle"},{"euler":{"heading":137.67740834262813,"pitch":-161.9303012644805,"roll":49.337893741124255},"location":"Right Hip"},{"euler":{"heading":27.484981592555652,"pitch":-101.86020267096893,"roll":35.222247937778825},"location":"Right Knee"},{"euler":{"heading":19.087669978865964,"pitch":-134.81279223180724,"roll":60.22063351601706},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.404"} +{"sensors":[{"euler":{"heading":54.894675057970346,"pitch":125.56429773901426,"roll":16.334248263408462},"location":"Left Knee"},{"euler":{"heading":57.03329327727903,"pitch":96.85774973711838,"roll":21.71896984183188},"location":"Left Ankle"},{"euler":{"heading":72.64240277101216,"pitch":-16.55883965227797,"roll":-12.32374035778234},"location":"Right Ankle"},{"euler":{"heading":138.0159175083653,"pitch":-161.89352113803247,"roll":49.316604367011834},"location":"Right Hip"},{"euler":{"heading":25.505233433300088,"pitch":-101.99918240387204,"roll":36.84377314400095},"location":"Right Knee"},{"euler":{"heading":19.54140298097937,"pitch":-135.71276300862652,"roll":60.686070164415355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.505"} +{"sensors":[{"euler":{"heading":58.686457552173316,"pitch":124.68286796511283,"roll":13.888323437067616},"location":"Left Knee"},{"euler":{"heading":59.92371394955113,"pitch":97.72822476340656,"roll":25.11582285764869},"location":"Left Ankle"},{"euler":{"heading":73.47816249391094,"pitch":-16.802955687050172,"roll":-12.103866322004105},"location":"Right Ankle"},{"euler":{"heading":137.79557575752878,"pitch":-162.13541902422924,"roll":49.84119393031065},"location":"Right Hip"},{"euler":{"heading":24.323460089970077,"pitch":-102.77426416348484,"roll":37.690645829600854},"location":"Right Knee"},{"euler":{"heading":18.806012682881434,"pitch":-133.82273670776388,"roll":60.567463147973825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.605"} +{"sensors":[{"euler":{"heading":60.93031179695599,"pitch":124.73333116860155,"roll":12.724491093360854},"location":"Left Knee"},{"euler":{"heading":61.04384255459601,"pitch":97.1804022870659,"roll":26.44799057188382},"location":"Left Ankle"},{"euler":{"heading":73.97409624451986,"pitch":-16.878910118345157,"roll":-12.137229689803695},"location":"Right Ankle"},{"euler":{"heading":138.0160181817759,"pitch":-162.2093771218063,"roll":50.63832453727959},"location":"Right Hip"},{"euler":{"heading":23.666114080973067,"pitch":-103.65308774713637,"roll":38.02783124664077},"location":"Right Knee"},{"euler":{"heading":17.42541141459329,"pitch":-131.7217130369875,"roll":59.729466833176446},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.705"} +{"sensors":[{"euler":{"heading":58.59978061726039,"pitch":126.05374805174141,"roll":13.702041984024769},"location":"Left Knee"},{"euler":{"heading":59.12695829913641,"pitch":95.97486205835932,"roll":24.88444151469544},"location":"Left Ankle"},{"euler":{"heading":74.04543662006787,"pitch":-16.759769106510642,"roll":-12.386006720823326},"location":"Right Ankle"},{"euler":{"heading":138.48316636359831,"pitch":-162.2196894096257,"roll":51.430742083551635},"location":"Right Hip"},{"euler":{"heading":23.587002672875762,"pitch":-104.39402897242273,"roll":37.8187981219767},"location":"Right Knee"},{"euler":{"heading":16.107870273133962,"pitch":-129.84329173328874,"roll":58.831520149858804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.806"} +{"sensors":[{"euler":{"heading":54.31480255553436,"pitch":128.04212324656726,"roll":15.625587785622294},"location":"Left Knee"},{"euler":{"heading":55.183012469222774,"pitch":94.72112585252339,"roll":21.302247363225895},"location":"Left Ankle"},{"euler":{"heading":73.4783929580611,"pitch":-16.446292195859577,"roll":-12.891156048740994},"location":"Right Ankle"},{"euler":{"heading":139.0785997272385,"pitch":-162.3539704686631,"roll":52.21266787519647},"location":"Right Hip"},{"euler":{"heading":24.39080240558819,"pitch":-104.92337607518046,"roll":36.93066830977903},"location":"Right Knee"},{"euler":{"heading":15.334583245820566,"pitch":-128.47146255995986,"roll":58.17336813487292},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.906"} +{"sensors":[{"euler":{"heading":51.23332229998093,"pitch":129.45041092191053,"roll":17.450529007060066},"location":"Left Knee"},{"euler":{"heading":51.9147112223005,"pitch":94.27401326727106,"roll":18.203272626903306},"location":"Left Ankle"},{"euler":{"heading":71.93055366225498,"pitch":-15.97041297627362,"roll":-13.889540443866894},"location":"Right Ankle"},{"euler":{"heading":139.84573975451465,"pitch":-162.7185734217968,"roll":53.06640108767683},"location":"Right Hip"},{"euler":{"heading":26.24547216502937,"pitch":-105.11853846766242,"roll":35.275101478801126},"location":"Right Knee"},{"euler":{"heading":15.35737492123851,"pitch":-127.64306630396388,"roll":57.78728132138563},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.7"} +{"sensors":[{"euler":{"heading":49.72249006998283,"pitch":129.8366198297195,"roll":18.86172610635406},"location":"Left Knee"},{"euler":{"heading":50.38574010007045,"pitch":94.34036194054396,"roll":16.532945364212974},"location":"Left Ankle"},{"euler":{"heading":69.05624829602948,"pitch":-15.529621678646258,"roll":-15.056836399480204},"location":"Right Ankle"},{"euler":{"heading":141.02366577906318,"pitch":-162.6154660796171,"roll":53.50351097890915},"location":"Right Hip"},{"euler":{"heading":29.389674948526434,"pitch":-104.76293462089617,"roll":32.56634133092101},"location":"Right Knee"},{"euler":{"heading":15.37788742911466,"pitch":-126.95375967356749,"roll":57.67730318924707},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.108"} +{"sensors":[{"euler":{"heading":48.84399106298455,"pitch":129.67170784674755,"roll":19.900553495718654},"location":"Left Knee"},{"euler":{"heading":49.5596660900634,"pitch":94.47507574648955,"roll":15.354650827791676},"location":"Left Ankle"},{"euler":{"heading":65.43812346642653,"pitch":-14.951659510781631,"roll":-16.457402759532187},"location":"Right Ankle"},{"euler":{"heading":142.55879920115686,"pitch":-162.08516947165538,"roll":53.165659881018236},"location":"Right Hip"},{"euler":{"heading":32.55070745367379,"pitch":-104.61789115880656,"roll":29.684707197828914},"location":"Right Knee"},{"euler":{"heading":15.608848686203194,"pitch":-126.85838370621073,"roll":57.853322870322366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.209"} +{"sensors":[{"euler":{"heading":48.1533419566861,"pitch":129.3107870620728,"roll":20.59174814614679},"location":"Left Knee"},{"euler":{"heading":49.28494948105706,"pitch":94.4963181718406,"roll":14.79418574501251},"location":"Left Ankle"},{"euler":{"heading":63.45681111978388,"pitch":-14.97524355970347,"roll":-17.14916248357897},"location":"Right Ankle"},{"euler":{"heading":143.94041928104116,"pitch":-161.55165252448987,"roll":52.224093892916414},"location":"Right Hip"},{"euler":{"heading":34.26438670830641,"pitch":-104.12485204292591,"roll":28.066236478046026},"location":"Right Knee"},{"euler":{"heading":16.054213817582877,"pitch":-127.66004533558966,"roll":58.205490583290135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.310"} +{"sensors":[{"euler":{"heading":48.106757761017484,"pitch":128.68595835586552,"roll":20.876323331532113},"location":"Left Knee"},{"euler":{"heading":49.893954532951355,"pitch":94.67168635465654,"roll":14.996017170511259},"location":"Left Ankle"},{"euler":{"heading":63.92363000780549,"pitch":-15.727719203733123,"roll":-16.57799623522107},"location":"Right Ankle"},{"euler":{"heading":140.10887735293704,"pitch":-161.32773727204088,"roll":51.05793450362477},"location":"Right Hip"},{"euler":{"heading":33.762948037475766,"pitch":-103.37486683863332,"roll":28.65961283024142},"location":"Right Knee"},{"euler":{"heading":16.54254243582459,"pitch":-129.06904080203068,"roll":58.60994152496112},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.410"} +{"sensors":[{"euler":{"heading":48.68983198491574,"pitch":127.83611252027897,"roll":20.701190998378905},"location":"Left Knee"},{"euler":{"heading":50.904559079656224,"pitch":94.9482677191909,"roll":15.640165453460133},"location":"Left Ankle"},{"euler":{"heading":66.45001700702494,"pitch":-16.65494728335981,"roll":-15.107696611698964},"location":"Right Ankle"},{"euler":{"heading":140.14173961764334,"pitch":-161.4637135448368,"roll":50.264641053262295},"location":"Right Hip"},{"euler":{"heading":31.505403233728188,"pitch":-102.53738015476999,"roll":31.07490154721728},"location":"Right Knee"},{"euler":{"heading":17.21953819224213,"pitch":-130.8746367218276,"roll":59.11769737246501},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.511"} +{"sensors":[{"euler":{"heading":50.027098786424176,"pitch":126.92125126825108,"roll":19.831071898541015},"location":"Left Knee"},{"euler":{"heading":52.54535317169061,"pitch":95.24094094727181,"roll":17.01364890811412},"location":"Left Ankle"},{"euler":{"heading":69.50501530632245,"pitch":-17.62070255502383,"roll":-13.596926950529069},"location":"Right Ankle"},{"euler":{"heading":139.352565655879,"pitch":-161.87359219035312,"roll":50.038176947936066},"location":"Right Hip"},{"euler":{"heading":28.92361291035537,"pitch":-102.08364213929299,"roll":33.87366139249555},"location":"Right Knee"},{"euler":{"heading":18.222584373017916,"pitch":-133.20592304964484,"roll":59.72467763521851},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.615"} +{"sensors":[{"euler":{"heading":52.55563890778176,"pitch":125.99787614142598,"roll":17.941714708686913},"location":"Left Knee"},{"euler":{"heading":54.87831785452155,"pitch":95.62309685254463,"roll":19.59353401730271},"location":"Left Ankle"},{"euler":{"heading":71.1920137756902,"pitch":-17.939882299521447,"roll":-13.062234255476161},"location":"Right Ankle"},{"euler":{"heading":138.6923090902911,"pitch":-162.2299829713178,"roll":49.896859253142466},"location":"Right Hip"},{"euler":{"heading":26.70000161931983,"pitch":-102.37527792536369,"roll":35.71129525324599},"location":"Right Knee"},{"euler":{"heading":19.250325935716127,"pitch":-135.02283074468036,"roll":60.33970987169666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.716"} +{"sensors":[{"euler":{"heading":56.331325017003586,"pitch":124.96058852728338,"roll":15.472543237818222},"location":"Left Knee"},{"euler":{"heading":58.409236069069394,"pitch":96.88578716729018,"roll":23.10918061557244},"location":"Left Ankle"},{"euler":{"heading":72.25406239812119,"pitch":-18.1708940695693,"roll":-12.781010829928546},"location":"Right Ankle"},{"euler":{"heading":138.24182818126198,"pitch":-162.58823467418605,"roll":50.19467332782822},"location":"Right Hip"},{"euler":{"heading":25.342501457387847,"pitch":-103.16275013282733,"roll":36.69641572792139},"location":"Right Knee"},{"euler":{"heading":18.762793342144516,"pitch":-134.08304767021232,"roll":60.449488884527},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.817"} +{"sensors":[{"euler":{"heading":59.32319251530323,"pitch":124.69577967455504,"roll":13.7190389140364},"location":"Left Knee"},{"euler":{"heading":60.18706246216245,"pitch":96.63470845056116,"roll":25.2920125540152},"location":"Left Ankle"},{"euler":{"heading":73.06615615830907,"pitch":-18.447554662612372,"roll":-12.64040974693569},"location":"Right Ankle"},{"euler":{"heading":138.20514536313578,"pitch":-162.79816120676745,"roll":50.7814559950454},"location":"Right Hip"},{"euler":{"heading":24.86450131164906,"pitch":-103.67772511954459,"roll":37.05802415512925},"location":"Right Knee"},{"euler":{"heading":17.592764007930064,"pitch":-132.4434929031911,"roll":59.8732899960743},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.918"} +{"sensors":[{"euler":{"heading":58.9158732637729,"pitch":125.46995170709954,"roll":13.890885022632759},"location":"Left Knee"},{"euler":{"heading":59.262106215946204,"pitch":95.82123760550505,"roll":24.74406129861368},"location":"Left Ankle"},{"euler":{"heading":73.48454054247816,"pitch":-18.540299196351135,"roll":-12.701368772242123},"location":"Right Ankle"},{"euler":{"heading":138.47838082682222,"pitch":-162.9308450860907,"roll":51.46581039554086},"location":"Right Hip"},{"euler":{"heading":24.784301180484157,"pitch":-104.14745260759014,"roll":37.008471739616326},"location":"Right Knee"},{"euler":{"heading":16.420987607137057,"pitch":-130.655393612872,"roll":59.092210996466875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.18"} +{"sensors":[{"euler":{"heading":55.60553593739561,"pitch":127.0917065363896,"roll":15.508046520369483},"location":"Left Knee"},{"euler":{"heading":55.86089559435158,"pitch":94.98286384495455,"roll":21.775905168752313},"location":"Left Ankle"},{"euler":{"heading":73.44233648823035,"pitch":-16.71126927671602,"roll":-12.974981895017912},"location":"Right Ankle"},{"euler":{"heading":138.89304274414,"pitch":-163.03151057748164,"roll":52.181729355986775},"location":"Right Hip"},{"euler":{"heading":25.04962106243574,"pitch":-104.68895734683113,"roll":36.476374565654694},"location":"Right Knee"},{"euler":{"heading":15.578888846423352,"pitch":-129.1461042515848,"roll":58.46423989682019},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.119"} +{"sensors":[{"euler":{"heading":51.988732343656046,"pitch":128.86378588275062,"roll":17.382241868332535},"location":"Left Knee"},{"euler":{"heading":52.281056034916425,"pitch":94.4158274604591,"roll":18.429564651877083},"location":"Left Ankle"},{"euler":{"heading":72.59810283940732,"pitch":-16.29639234904442,"roll":-13.796233705516121},"location":"Right Ankle"},{"euler":{"heading":139.503738469726,"pitch":-163.2221095197335,"roll":52.944806420388105},"location":"Right Hip"},{"euler":{"heading":26.069658956192164,"pitch":-105.02631161214802,"roll":35.291237109089224},"location":"Right Knee"},{"euler":{"heading":15.389749961781018,"pitch":-128.30024382642634,"roll":58.05531590713817},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.220"} +{"sensors":[{"euler":{"heading":50.28985910929044,"pitch":129.50240729447555,"roll":18.83151768149928},"location":"Left Knee"},{"euler":{"heading":50.277950431424784,"pitch":94.41799471441318,"roll":16.455358186689374},"location":"Left Ankle"},{"euler":{"heading":70.66954255546659,"pitch":-16.06050311413998,"roll":-14.85411033496451},"location":"Right Ankle"},{"euler":{"heading":140.39086462275338,"pitch":-163.26239856776016,"roll":53.5878257783493},"location":"Right Hip"},{"euler":{"heading":28.48144306057295,"pitch":-104.89868045093323,"roll":33.1121133981803},"location":"Right Knee"},{"euler":{"heading":15.369524965602917,"pitch":-127.60771944378371,"roll":57.818534316424355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.321"} +{"sensors":[{"euler":{"heading":49.423373198361396,"pitch":129.414666565028,"roll":19.892115913349354},"location":"Left Knee"},{"euler":{"heading":49.06890538828231,"pitch":94.44494524297187,"roll":15.084822368020436},"location":"Left Ankle"},{"euler":{"heading":67.25258829991994,"pitch":-15.34195280272598,"roll":-16.162449301468058},"location":"Right Ankle"},{"euler":{"heading":142.18927816047804,"pitch":-162.59865871098415,"roll":53.31654320051437},"location":"Right Hip"},{"euler":{"heading":31.502048754515656,"pitch":-104.69006240583991,"roll":30.22590205836227},"location":"Right Knee"},{"euler":{"heading":15.801322469042626,"pitch":-127.60319749940535,"roll":57.97418088478192},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.421"} +{"sensors":[{"euler":{"heading":48.668535878525255,"pitch":129.1419499085252,"roll":20.590404322014418},"location":"Left Knee"},{"euler":{"heading":48.39951484945408,"pitch":94.43170071867469,"roll":14.245090131218392},"location":"Left Ankle"},{"euler":{"heading":64.83357946992794,"pitch":-15.070257522453382,"roll":-16.99620437132125},"location":"Right Ankle"},{"euler":{"heading":143.67035034443023,"pitch":-161.98254283988575,"roll":52.40988888046293},"location":"Right Hip"},{"euler":{"heading":33.52684387906409,"pitch":-104.29605616525592,"roll":28.272061852526043},"location":"Right Knee"},{"euler":{"heading":16.33369022213836,"pitch":-128.3053777494648,"roll":58.34551279630374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.522"} +{"sensors":[{"euler":{"heading":48.35168229067273,"pitch":128.70275491767268,"roll":20.906363889812976},"location":"Left Knee"},{"euler":{"heading":48.56581336450867,"pitch":94.45103064680723,"roll":14.145581118096555},"location":"Left Ankle"},{"euler":{"heading":64.85022152293516,"pitch":-15.619481770208044,"roll":-16.915333934189125},"location":"Right Ankle"},{"euler":{"heading":139.93456530998722,"pitch":-161.6155385558972,"roll":51.20014999241664},"location":"Right Hip"},{"euler":{"heading":33.61165949115768,"pitch":-103.68520054873034,"roll":28.58235566727344},"location":"Right Knee"},{"euler":{"heading":16.925321199924525,"pitch":-129.66858997451834,"roll":58.804711516673365},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.623"} +{"sensors":[{"euler":{"heading":48.75401406160546,"pitch":127.90747942590542,"roll":20.85322750083168},"location":"Left Knee"},{"euler":{"heading":49.21548202805781,"pitch":94.6371775821265,"roll":14.499773006286901},"location":"Left Ankle"},{"euler":{"heading":67.35269937064164,"pitch":-16.526283593187237,"roll":-15.730050540770213},"location":"Right Ankle"},{"euler":{"heading":136.4161087789885,"pitch":-161.67273470030747,"roll":50.23013499317498},"location":"Right Hip"},{"euler":{"heading":31.800493542041913,"pitch":-102.81043049385731,"roll":30.774120100546096},"location":"Right Knee"},{"euler":{"heading":17.751539079932073,"pitch":-131.5017309770665,"roll":59.39924036500603},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.723"} +{"sensors":[{"euler":{"heading":49.87861265544492,"pitch":126.97298148331488,"roll":20.16790475074851},"location":"Left Knee"},{"euler":{"heading":50.450183825252026,"pitch":94.90470982391385,"roll":15.45604570565821},"location":"Left Ankle"},{"euler":{"heading":70.51742943357749,"pitch":-17.492405233868514,"roll":-14.057045486693193},"location":"Right Ankle"},{"euler":{"heading":136.14324790108967,"pitch":-161.97421123027672,"roll":49.83212149385748},"location":"Right Hip"},{"euler":{"heading":28.951694187837724,"pitch":-102.26688744447158,"roll":33.796708090491485},"location":"Right Knee"},{"euler":{"heading":18.770135171938865,"pitch":-133.88280787935986,"roll":60.071816328505435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.825"} +{"sensors":[{"euler":{"heading":52.02825138990043,"pitch":126.12568333498339,"roll":18.57611427567366},"location":"Left Knee"},{"euler":{"heading":52.555165442726825,"pitch":95.13298884152246,"roll":17.57919113509239},"location":"Left Ankle"},{"euler":{"heading":72.42818649021974,"pitch":-17.936914710481663,"roll":-13.107590938023874},"location":"Right Ankle"},{"euler":{"heading":135.5789231109807,"pitch":-162.43929010724904,"roll":49.398909344471726},"location":"Right Hip"},{"euler":{"heading":26.36277476905395,"pitch":-102.35269870002442,"roll":35.992037281442336},"location":"Right Knee"},{"euler":{"heading":19.96187165474498,"pitch":-136.63202709142388,"roll":60.7083846956549},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.925"} +{"sensors":[{"euler":{"heading":55.46292625091039,"pitch":125.09436500148506,"roll":16.149752848106292},"location":"Left Knee"},{"euler":{"heading":56.149648898454146,"pitch":96.2509399573702,"roll":21.221272021583154},"location":"Left Ankle"},{"euler":{"heading":73.37286784119777,"pitch":-18.080723239433496,"roll":-12.715581844221486},"location":"Right Ankle"},{"euler":{"heading":135.91478079988264,"pitch":-162.42036109652412,"roll":49.46526841002456},"location":"Right Hip"},{"euler":{"heading":24.588997292148555,"pitch":-102.81117883002199,"roll":37.2553335532981},"location":"Right Knee"},{"euler":{"heading":19.82193448927048,"pitch":-137.1250743822815,"roll":60.87504622608941},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.26"} +{"sensors":[{"euler":{"heading":59.06663362581935,"pitch":124.54742850133655,"roll":13.916027563295662},"location":"Left Knee"},{"euler":{"heading":58.590934008608734,"pitch":96.4945959616332,"roll":24.11789481942484},"location":"Left Ankle"},{"euler":{"heading":73.948081057078,"pitch":-18.266400915490145,"roll":-12.625273659799339},"location":"Right Ankle"},{"euler":{"heading":136.21705271989438,"pitch":-162.5345749868717,"roll":50.018741569022104},"location":"Right Hip"},{"euler":{"heading":23.7425975629337,"pitch":-103.43631094701979,"roll":37.82980019796829},"location":"Right Knee"},{"euler":{"heading":18.81474104034343,"pitch":-135.47506694405337,"roll":60.48754160348047},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.127"} +{"sensors":[{"euler":{"heading":60.28497026323742,"pitch":124.9489356512029,"roll":13.361924806966096},"location":"Left Knee"},{"euler":{"heading":58.46934060774787,"pitch":95.80138636546988,"roll":24.362355337482356},"location":"Left Ankle"},{"euler":{"heading":74.3345229513702,"pitch":-18.502260823941132,"roll":-12.793996293819406},"location":"Right Ankle"},{"euler":{"heading":137.02659744790495,"pitch":-162.4811174881845,"roll":50.710617412119895},"location":"Right Hip"},{"euler":{"heading":23.70583780664033,"pitch":-103.88017985231781,"roll":37.87182017817146},"location":"Right Knee"},{"euler":{"heading":17.53326693630909,"pitch":-133.55881024964805,"roll":59.588787443132425},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.227"} +{"sensors":[{"euler":{"heading":57.562723236913676,"pitch":126.34154208608261,"roll":14.725732326269487},"location":"Left Knee"},{"euler":{"heading":55.49740654697308,"pitch":95.10249772892288,"roll":21.95111980373412},"location":"Left Ankle"},{"euler":{"heading":74.15732065623318,"pitch":-18.59578474154702,"roll":-13.095846664437467},"location":"Right Ankle"},{"euler":{"heading":138.18643770311445,"pitch":-162.39550573936606,"roll":51.3270556709079},"location":"Right Hip"},{"euler":{"heading":24.297754025976296,"pitch":-104.13591186708602,"roll":37.37838816035432},"location":"Right Knee"},{"euler":{"heading":16.54869024267818,"pitch":-131.93417922468325,"roll":58.723658698819186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.327"} +{"sensors":[{"euler":{"heading":54.15645091322231,"pitch":128.16363787747434,"roll":16.51565909364254},"location":"Left Knee"},{"euler":{"heading":51.69766589227577,"pitch":94.4859979560306,"roll":18.46225782336071},"location":"Left Ankle"},{"euler":{"heading":73.33533859060987,"pitch":-18.32995626739232,"roll":-13.60501199799372},"location":"Right Ankle"},{"euler":{"heading":139.249043932803,"pitch":-162.46220516542945,"roll":52.01935010381712},"location":"Right Hip"},{"euler":{"heading":25.411728623378668,"pitch":-104.37232068037743,"roll":36.30304934431889},"location":"Right Knee"},{"euler":{"heading":16.193821218410363,"pitch":-130.72826130221492,"roll":58.10129282893727},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.429"} +{"sensors":[{"euler":{"heading":51.94705582190007,"pitch":129.15352408972691,"roll":18.139093184278288},"location":"Left Knee"},{"euler":{"heading":49.05289930304819,"pitch":94.58739816042754,"roll":15.959782041024638},"location":"Left Ankle"},{"euler":{"heading":71.61430473154888,"pitch":-17.89071064065309,"roll":-14.65701079819435},"location":"Right Ankle"},{"euler":{"heading":140.3678895395227,"pitch":-162.86598464888652,"roll":52.81741509343541},"location":"Right Hip"},{"euler":{"heading":27.676805761040804,"pitch":-104.21008861233969,"roll":34.341494409887005},"location":"Right Knee"},{"euler":{"heading":16.461939096569328,"pitch":-129.89918517199342,"roll":57.803663546043545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.529"} +{"sensors":[{"euler":{"heading":50.83985023971007,"pitch":129.39442168075422,"roll":19.18768386585046},"location":"Left Knee"},{"euler":{"heading":47.82885937274337,"pitch":94.84740834438479,"roll":14.670053836922175},"location":"Left Ankle"},{"euler":{"heading":68.552874258394,"pitch":-17.320389576587782,"roll":-15.960059718374916},"location":"Right Ankle"},{"euler":{"heading":141.93735058557044,"pitch":-162.9168861839979,"roll":53.148173584091865},"location":"Right Hip"},{"euler":{"heading":30.790375184936725,"pitch":-103.68907975110572,"roll":31.494844968898303},"location":"Right Knee"},{"euler":{"heading":16.646995186912395,"pitch":-129.25301665479407,"roll":57.86079719143919},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.630"} +{"sensors":[{"euler":{"heading":50.287115215739064,"pitch":129.0987295126788,"roll":19.925165479265413},"location":"Left Knee"},{"euler":{"heading":47.45222343546904,"pitch":95.2064175099463,"roll":13.946798453229958},"location":"Left Ankle"},{"euler":{"heading":65.2600868325546,"pitch":-16.769600618929005,"roll":-17.051553746537422},"location":"Right Ankle"},{"euler":{"heading":143.6561155270134,"pitch":-162.3564475655981,"roll":52.78335622568268},"location":"Right Hip"},{"euler":{"heading":33.44258766644305,"pitch":-103.19517177599515,"roll":28.970360472008473},"location":"Right Knee"},{"euler":{"heading":17.082295668221157,"pitch":-129.49021498931467,"roll":58.16846747229527},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.731"} +{"sensors":[{"euler":{"heading":50.06465369416516,"pitch":128.52635656141092,"roll":20.40139893133887},"location":"Left Knee"},{"euler":{"heading":47.857001091922136,"pitch":95.63577575895168,"roll":13.858368607906963},"location":"Left Ankle"},{"euler":{"heading":63.834078149299145,"pitch":-16.686390557036106,"roll":-17.52764837188368},"location":"Right Ankle"},{"euler":{"heading":145.02175397431208,"pitch":-161.8083028090383,"roll":51.92377060311442},"location":"Right Hip"},{"euler":{"heading":34.410828899798744,"pitch":-102.72565459839564,"roll":28.010824424807627},"location":"Right Knee"},{"euler":{"heading":17.73031610139904,"pitch":-130.5661934903832,"roll":58.551620725065746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.831"} +{"sensors":[{"euler":{"heading":50.42693832474864,"pitch":127.55497090526984,"roll":20.611259038204985},"location":"Left Knee"},{"euler":{"heading":49.05880098272992,"pitch":96.25344818305652,"roll":14.360031747116267},"location":"Left Ankle"},{"euler":{"heading":64.58817033436924,"pitch":-17.305251501332496,"roll":-16.91863353469531},"location":"Right Ankle"},{"euler":{"heading":141.28207857688085,"pitch":-163.22747252813448,"roll":50.83764354280298},"location":"Right Hip"},{"euler":{"heading":33.36349600981887,"pitch":-101.85933913855608,"roll":29.184741982326866},"location":"Right Knee"},{"euler":{"heading":18.638534491259136,"pitch":-132.18457414134488,"roll":59.02770865255917},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.932"} +{"sensors":[{"euler":{"heading":51.27799449227378,"pitch":126.39322381474285,"roll":20.387633134384487},"location":"Left Knee"},{"euler":{"heading":50.540420884456935,"pitch":96.82185336475087,"roll":15.21777857240464},"location":"Left Ankle"},{"euler":{"heading":67.24185330093232,"pitch":-18.143476351199247,"roll":-15.395520181225779},"location":"Right Ankle"},{"euler":{"heading":141.34762071919278,"pitch":-163.21097527532103,"roll":50.03512918852268},"location":"Right Hip"},{"euler":{"heading":30.95839640883698,"pitch":-100.99840522470048,"roll":31.86626778409418},"location":"Right Knee"},{"euler":{"heading":19.737181042133223,"pitch":-134.37861672721039,"roll":59.59368778730325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.32"} +{"sensors":[{"euler":{"heading":52.725195043046405,"pitch":125.28515143326857,"roll":19.50511982094604},"location":"Left Knee"},{"euler":{"heading":52.63012879601125,"pitch":97.37091802827578,"roll":16.802250715164178},"location":"Left Ankle"},{"euler":{"heading":69.96766797083909,"pitch":-18.704128716079325,"roll":-14.062218163103202},"location":"Right Ankle"},{"euler":{"heading":140.2691086472735,"pitch":-163.56487774778896,"roll":49.83161626967042},"location":"Right Hip"},{"euler":{"heading":27.95005676795328,"pitch":-100.62356470223042,"roll":34.77964100568476},"location":"Right Knee"},{"euler":{"heading":20.882212937919903,"pitch":-136.99075505448934,"roll":60.15931900857293},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.132"} +{"sensors":[{"euler":{"heading":55.40892553874177,"pitch":124.74413628994171,"roll":17.329607838851434},"location":"Left Knee"},{"euler":{"heading":55.27336591641013,"pitch":97.5838262254482,"roll":19.79702564364776},"location":"Left Ankle"},{"euler":{"heading":71.33340117375518,"pitch":-18.63996584447139,"roll":-13.630996346792882},"location":"Right Ankle"},{"euler":{"heading":140.01094778254617,"pitch":-163.59588997301006,"roll":49.79220464270338},"location":"Right Hip"},{"euler":{"heading":25.180051091157953,"pitch":-100.9299582320074,"roll":36.720426905116284},"location":"Right Knee"},{"euler":{"heading":21.556491644127913,"pitch":-138.6979295490404,"roll":60.58088710771564},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.234"} +{"sensors":[{"euler":{"heading":59.0867829848676,"pitch":123.66347266094753,"roll":14.79664705496629},"location":"Left Knee"},{"euler":{"heading":59.30852932476912,"pitch":98.78169360290339,"roll":23.717323079282984},"location":"Left Ankle"},{"euler":{"heading":72.31256105637966,"pitch":-18.375969260024252,"roll":-13.405396712113593},"location":"Right Ankle"},{"euler":{"heading":139.52235300429155,"pitch":-163.71130097570907,"roll":50.22548417843305},"location":"Right Hip"},{"euler":{"heading":23.24329598204216,"pitch":-101.79321240880665,"roll":37.86713421460466},"location":"Right Knee"},{"euler":{"heading":21.094592479715125,"pitch":-137.61563659413636,"roll":60.647798396944076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.334"} +{"sensors":[{"euler":{"heading":61.80935468638084,"pitch":123.62837539485278,"roll":13.154482349469662},"location":"Left Knee"},{"euler":{"heading":61.50267639229221,"pitch":98.49102424261305,"roll":26.076840771354686},"location":"Left Ankle"},{"euler":{"heading":72.8875549507417,"pitch":-17.825872334021827,"roll":-13.539857040902234},"location":"Right Ankle"},{"euler":{"heading":139.4826177038624,"pitch":-163.62767087813816,"roll":50.977935760589745},"location":"Right Hip"},{"euler":{"heading":21.856466383837944,"pitch":-102.87639116792599,"roll":38.4179207931442},"location":"Right Knee"},{"euler":{"heading":19.741383231743615,"pitch":-135.6790729347227,"roll":59.958018557249666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.435"} +{"sensors":[{"euler":{"heading":60.56591921774276,"pitch":124.75303785536751,"roll":13.607784114522696},"location":"Left Knee"},{"euler":{"heading":60.47740875306299,"pitch":97.46692181835175,"roll":25.13165669421922},"location":"Left Ankle"},{"euler":{"heading":73.01754945566753,"pitch":-17.124535100619646,"roll":-13.792121336812013},"location":"Right Ankle"},{"euler":{"heading":139.62810593347615,"pitch":-163.53990379032436,"roll":51.85514218453077},"location":"Right Hip"},{"euler":{"heading":21.02706974545415,"pitch":-103.8575020511334,"roll":38.47612871382978},"location":"Right Knee"},{"euler":{"heading":18.254744908569254,"pitch":-133.61741564125043,"roll":59.062216701524704},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.536"} +{"sensors":[{"euler":{"heading":56.44057729596848,"pitch":126.66523406983076,"roll":15.465755703070426},"location":"Left Knee"},{"euler":{"heading":56.73591787775669,"pitch":96.35772963651658,"roll":21.755991024797297},"location":"Left Ankle"},{"euler":{"heading":72.59079451010078,"pitch":-16.330831590557683,"roll":-14.225409203130813},"location":"Right Ankle"},{"euler":{"heading":139.95904534012854,"pitch":-163.5421634112919,"roll":52.67587796607769},"location":"Right Hip"},{"euler":{"heading":21.024362770908738,"pitch":-104.68425184602006,"roll":37.9035158424468},"location":"Right Knee"},{"euler":{"heading":17.285520417712327,"pitch":-132.1056740771254,"roll":58.374745031372235},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.637"} +{"sensors":[{"euler":{"heading":53.352769566371634,"pitch":128.15496066284769,"roll":17.237930132763385},"location":"Left Knee"},{"euler":{"heading":53.41857608998102,"pitch":95.92820667286492,"roll":18.967891922317566},"location":"Left Ankle"},{"euler":{"heading":71.30671505909069,"pitch":-15.547748431501914,"roll":-15.140368282817732},"location":"Right Ankle"},{"euler":{"heading":140.5256408061157,"pitch":-163.78169707016272,"roll":53.47704016946992},"location":"Right Hip"},{"euler":{"heading":22.271926493817865,"pitch":-105.08457666141807,"roll":36.52566425820212},"location":"Right Knee"},{"euler":{"heading":17.044468375941094,"pitch":-131.07635666941286,"roll":57.94352052823501},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.738"} +{"sensors":[{"euler":{"heading":51.604992609734474,"pitch":128.7269645965629,"roll":18.570387119487044},"location":"Left Knee"},{"euler":{"heading":51.51421848098292,"pitch":95.87913600557843,"roll":17.096102730085807},"location":"Left Ankle"},{"euler":{"heading":68.71354355318162,"pitch":-15.161723588351721,"roll":-16.22633145453596},"location":"Right Ankle"},{"euler":{"heading":141.59807672550414,"pitch":-163.79727736314646,"roll":53.97933615252293},"location":"Right Hip"},{"euler":{"heading":25.18848384443608,"pitch":-104.72611899527627,"roll":34.06684783238191},"location":"Right Knee"},{"euler":{"heading":16.765021538346986,"pitch":-130.27497100247157,"roll":57.749168475411516},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.838"} +{"sensors":[{"euler":{"heading":50.67574334876103,"pitch":128.64176813690662,"roll":19.57584840753834},"location":"Left Knee"},{"euler":{"heading":50.45654663288463,"pitch":96.0037224050206,"roll":15.855242457077226},"location":"Left Ankle"},{"euler":{"heading":65.07968919786346,"pitch":-14.776801229516549,"roll":-17.347448309082363},"location":"Right Ankle"},{"euler":{"heading":143.49451905295373,"pitch":-163.02379962683182,"roll":53.55015253727064},"location":"Right Hip"},{"euler":{"heading":28.519635459992475,"pitch":-104.31600709574865,"roll":31.22266304914372},"location":"Right Knee"},{"euler":{"heading":17.013519384512286,"pitch":-130.42872390222442,"roll":57.86800162787037},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.941"} +{"sensors":[{"euler":{"heading":50.16441901388493,"pitch":128.16509132321596,"roll":20.318263566784506},"location":"Left Knee"},{"euler":{"heading":50.679641969596176,"pitch":96.28460016451854,"roll":15.550968211369504},"location":"Left Ankle"},{"euler":{"heading":63.290470278077116,"pitch":-14.667871106564894,"roll":-18.050203478174126},"location":"Right Ankle"},{"euler":{"heading":145.25131714765834,"pitch":-162.24016966414865,"roll":52.48888728354358},"location":"Right Hip"},{"euler":{"heading":30.00517191399323,"pitch":-103.84690638617379,"roll":29.906646744229345},"location":"Right Knee"},{"euler":{"heading":17.580917446061058,"pitch":-131.26710151200197,"roll":58.162451465083336},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.41"} +{"sensors":[{"euler":{"heading":50.24172711249644,"pitch":127.32983219089436,"roll":20.661437210106055},"location":"Left Knee"},{"euler":{"heading":51.17417777263656,"pitch":96.61864014806669,"roll":15.614621390232555},"location":"Left Ankle"},{"euler":{"heading":64.14267325026941,"pitch":-15.269833995908405,"roll":-17.582683130356713},"location":"Right Ankle"},{"euler":{"heading":141.37618543289253,"pitch":-161.9786526977338,"roll":51.25874855518922},"location":"Right Hip"},{"euler":{"heading":29.14840472259391,"pitch":-103.09971574755642,"roll":31.10348206980641},"location":"Right Knee"},{"euler":{"heading":18.141575701454954,"pitch":-132.55914136080176,"roll":58.54620631857501},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.142"} +{"sensors":[{"euler":{"heading":50.8925544012468,"pitch":126.30934897180494,"roll":20.52029348909545},"location":"Left Knee"},{"euler":{"heading":52.16300999537291,"pitch":97.07552613326003,"roll":16.1406592512093},"location":"Left Ankle"},{"euler":{"heading":67.22840592524247,"pitch":-16.105350596317564,"roll":-16.230664817321042},"location":"Right Ankle"},{"euler":{"heading":141.43856688960327,"pitch":-162.0120374279604,"roll":50.4828736996703},"location":"Right Hip"},{"euler":{"heading":26.83981425033452,"pitch":-102.35224417280078,"roll":33.58688386282577},"location":"Right Knee"},{"euler":{"heading":18.864918131309462,"pitch":-134.2344772247216,"roll":59.03533568671751},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.242"} +{"sensors":[{"euler":{"heading":52.10329896112212,"pitch":125.30341407462444,"roll":19.730764140185904},"location":"Left Knee"},{"euler":{"heading":53.75295899583562,"pitch":97.51172351993402,"roll":17.345343326088372},"location":"Left Ankle"},{"euler":{"heading":69.89931533271823,"pitch":-16.794815536685807,"roll":-14.920098335588937},"location":"Right Ankle"},{"euler":{"heading":140.65096020064294,"pitch":-162.34208368516437,"roll":50.290836329703275},"location":"Right Hip"},{"euler":{"heading":24.324582825301068,"pitch":-102.1107697555207,"roll":36.04069547654319},"location":"Right Knee"},{"euler":{"heading":19.82842631817852,"pitch":-136.46727950224943,"roll":59.59430211804576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.343"} +{"sensors":[{"euler":{"heading":54.36171906500991,"pitch":124.710572667162,"roll":17.751437726167314},"location":"Left Knee"},{"euler":{"heading":55.558913096252056,"pitch":97.51055116794062,"roll":19.629558993479534},"location":"Left Ankle"},{"euler":{"heading":71.69688379944641,"pitch":-17.052833983017226,"roll":-14.259338502030044},"location":"Right Ankle"},{"euler":{"heading":140.37336418057865,"pitch":-162.48912531664794,"roll":50.33675269673295},"location":"Right Hip"},{"euler":{"heading":22.14212454277096,"pitch":-102.50594277996863,"roll":37.67412592888887},"location":"Right Knee"},{"euler":{"heading":20.401833686360668,"pitch":-137.82055155202448,"roll":60.01612190624119},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.443"} +{"sensors":[{"euler":{"heading":57.90054715850892,"pitch":123.8770154004458,"roll":15.332543953550582},"location":"Left Knee"},{"euler":{"heading":58.703021786626856,"pitch":98.18449605114655,"roll":23.047853094131582},"location":"Left Ankle"},{"euler":{"heading":72.78344541950176,"pitch":-17.097550584715506,"roll":-13.96465465182704},"location":"Right Ankle"},{"euler":{"heading":140.0422777625208,"pitch":-162.67146278498316,"roll":50.79057742705966},"location":"Right Hip"},{"euler":{"heading":20.752912088493865,"pitch":-103.46159850197176,"roll":38.512963335999984},"location":"Right Knee"},{"euler":{"heading":19.5429003177246,"pitch":-136.43849639682205,"roll":59.870759715617076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.544"} +{"sensors":[{"euler":{"heading":60.29174244265803,"pitch":123.93931386040123,"roll":13.936789558195523},"location":"Left Knee"},{"euler":{"heading":59.95771960796417,"pitch":97.6160464460319,"roll":24.536817784718423},"location":"Left Ankle"},{"euler":{"heading":73.47385087755158,"pitch":-17.200295526243956,"roll":-13.905689186644336},"location":"Right Ankle"},{"euler":{"heading":140.26304998626873,"pitch":-162.71681650648486,"roll":51.4802696843537},"location":"Right Hip"},{"euler":{"heading":20.27137087964448,"pitch":-104.2404386517746,"roll":38.711667002399984},"location":"Right Knee"},{"euler":{"heading":17.95736028595214,"pitch":-134.64464675713984,"roll":58.98368374405537},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.645"} +{"sensors":[{"euler":{"heading":58.66256819839222,"pitch":125.12038247436111,"roll":14.618110602375971},"location":"Left Knee"},{"euler":{"heading":58.10569764716775,"pitch":96.65444180142872,"roll":23.14563600624658},"location":"Left Ankle"},{"euler":{"heading":73.73896578979642,"pitch":-17.22401597361956,"roll":-14.090120267979902},"location":"Right Ankle"},{"euler":{"heading":140.87424498764184,"pitch":-162.63888485583638,"roll":52.22599271591834},"location":"Right Hip"},{"euler":{"heading":20.52548379168003,"pitch":-104.82264478659715,"roll":38.27800030215999},"location":"Right Knee"},{"euler":{"heading":16.605374257356928,"pitch":-132.74268208142587,"roll":58.022815369649834},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.747"} +{"sensors":[{"euler":{"heading":54.890061378553,"pitch":126.920844226925,"roll":16.518799542138375},"location":"Left Knee"},{"euler":{"heading":54.17637788245098,"pitch":95.91399762128584,"roll":19.649822405621922},"location":"Left Ankle"},{"euler":{"heading":73.35881921081679,"pitch":-17.101614376257608,"roll":-14.643608241181912},"location":"Right Ankle"},{"euler":{"heading":141.73057048887767,"pitch":-162.61249637025276,"roll":52.940893444326505},"location":"Right Hip"},{"euler":{"heading":21.52293541251203,"pitch":-105.21538030793744,"roll":37.337700271943994},"location":"Right Knee"},{"euler":{"heading":16.007336831621238,"pitch":-131.40591387328328,"roll":57.33303383268485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.847"} +{"sensors":[{"euler":{"heading":51.7385552406977,"pitch":128.44750980423248,"roll":18.366919587924535},"location":"Left Knee"},{"euler":{"heading":50.771240094205886,"pitch":95.60384785915726,"roll":16.49734016505973},"location":"Left Ankle"},{"euler":{"heading":72.22293728973511,"pitch":-16.816452938631848,"roll":-15.635497417063721},"location":"Right Ankle"},{"euler":{"heading":142.7950134399899,"pitch":-162.7824967332275,"roll":53.68430409989386},"location":"Right Hip"},{"euler":{"heading":23.52064187126083,"pitch":-105.25009227714371,"roll":35.685180244749596},"location":"Right Knee"},{"euler":{"heading":16.100353148459114,"pitch":-130.57782248595495,"roll":56.949730449416364},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.948"} +{"sensors":[{"euler":{"heading":49.989699716627925,"pitch":128.90900882380924,"roll":19.861477629132082},"location":"Left Knee"},{"euler":{"heading":48.9316160847853,"pitch":95.62471307324152,"roll":14.585106148553757},"location":"Left Ankle"},{"euler":{"heading":69.4443935607616,"pitch":-16.566057644768662,"roll":-16.92194767535735},"location":"Right Ankle"},{"euler":{"heading":144.69051209599093,"pitch":-162.58549705990478,"roll":53.94712368990447},"location":"Right Hip"},{"euler":{"heading":27.031077684134747,"pitch":-104.78758304942934,"roll":32.897912220274634},"location":"Right Knee"},{"euler":{"heading":16.190317833613204,"pitch":-130.10129023735948,"roll":56.767257404474734},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.49"} +{"sensors":[{"euler":{"heading":49.109479744965135,"pitch":128.63060794142834,"roll":21.037829866218875},"location":"Left Knee"},{"euler":{"heading":47.92595447630677,"pitch":95.78099176591738,"roll":13.364095533698382},"location":"Left Ankle"},{"euler":{"heading":65.68745420468544,"pitch":-15.990701880291796,"roll":-18.236002907821618},"location":"Right Ankle"},{"euler":{"heading":146.94646088639183,"pitch":-161.65819735391432,"roll":53.47741132091403},"location":"Right Hip"},{"euler":{"heading":30.477969915721275,"pitch":-104.38382474448642,"roll":29.92062099824717},"location":"Right Knee"},{"euler":{"heading":16.652536050251882,"pitch":-130.27866121362354,"roll":56.828031664027264},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.149"} +{"sensors":[{"euler":{"heading":48.66103177046862,"pitch":127.96754714728552,"roll":21.871546879596988},"location":"Left Knee"},{"euler":{"heading":48.5708590286761,"pitch":96.23414258932564,"roll":13.308935980328544},"location":"Left Ankle"},{"euler":{"heading":63.599958784216895,"pitch":-15.797881692262617,"roll":-18.98115261703946},"location":"Right Ankle"},{"euler":{"heading":148.93306479775265,"pitch":-160.77362761852288,"roll":52.38592018882263},"location":"Right Hip"},{"euler":{"heading":32.02392292414915,"pitch":-103.78294227003778,"roll":28.572308898422452},"location":"Right Knee"},{"euler":{"heading":17.312282445226696,"pitch":-130.95704509226118,"roll":57.12647849762454},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.252"} +{"sensors":[{"euler":{"heading":48.77617859342176,"pitch":127.00829243255697,"roll":22.271892191637292},"location":"Left Knee"},{"euler":{"heading":49.326273125808484,"pitch":96.68572833039309,"roll":13.565542382295689},"location":"Left Ankle"},{"euler":{"heading":64.13996290579522,"pitch":-16.449343523036354,"roll":-18.683037355335514},"location":"Right Ankle"},{"euler":{"heading":149.9585083179774,"pitch":-160.3275148566706,"roll":51.19732816994036},"location":"Right Hip"},{"euler":{"heading":31.465280631734235,"pitch":-102.898398043034,"roll":29.371328008580207},"location":"Right Knee"},{"euler":{"heading":18.04355420070403,"pitch":-132.02384058303508,"roll":57.513830647862086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.353"} +{"sensors":[{"euler":{"heading":49.57981073407959,"pitch":125.85121318930128,"roll":22.144702972473564},"location":"Left Knee"},{"euler":{"heading":50.38114581322763,"pitch":97.22340549735378,"roll":14.258988144066121},"location":"Left Ankle"},{"euler":{"heading":66.8072166152157,"pitch":-17.38565917073272,"roll":-17.420983619801962},"location":"Right Ankle"},{"euler":{"heading":150.02515748617967,"pitch":-160.26976337100353,"roll":50.28384535294632},"location":"Right Hip"},{"euler":{"heading":29.48750256856081,"pitch":-102.10855823873061,"roll":31.70919520772219},"location":"Right Knee"},{"euler":{"heading":18.85169878063363,"pitch":-133.40895652473156,"roll":58.006197583075874},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.454"} +{"sensors":[{"euler":{"heading":50.90307966067163,"pitch":124.68484187037116,"roll":21.411482675226207},"location":"Left Knee"},{"euler":{"heading":52.130531231904875,"pitch":97.8885649476184,"roll":15.62683932965951},"location":"Left Ankle"},{"euler":{"heading":69.67024495369412,"pitch":-18.228343253659446,"roll":-15.816385257821766},"location":"Right Ankle"},{"euler":{"heading":148.85389173756172,"pitch":-160.6490370339032,"roll":49.90546081765169},"location":"Right Hip"},{"euler":{"heading":26.95750231170473,"pitch":-101.79770241485755,"roll":34.39452568694997},"location":"Right Knee"},{"euler":{"heading":19.70402890257027,"pitch":-135.11181087225842,"roll":58.61807782476829},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.555"} +{"sensors":[{"euler":{"heading":53.187771694604464,"pitch":123.85385768333404,"roll":19.576584407703585},"location":"Left Knee"},{"euler":{"heading":54.35497810871439,"pitch":98.04345845285656,"roll":17.93290539669356},"location":"Left Ankle"},{"euler":{"heading":71.49697045832471,"pitch":-18.361758928293504,"roll":-15.278496732039589},"location":"Right Ankle"},{"euler":{"heading":148.08725256380555,"pitch":-160.8903833305129,"roll":49.78366473588652},"location":"Right Hip"},{"euler":{"heading":24.680502080534257,"pitch":-102.2116821733718,"roll":36.19882311825497},"location":"Right Knee"},{"euler":{"heading":20.37112601231324,"pitch":-136.4506297850326,"roll":59.11877004229146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.657"} +{"sensors":[{"euler":{"heading":56.700244525144015,"pitch":122.96847191500063,"roll":17.162675966933225},"location":"Left Knee"},{"euler":{"heading":57.056980297842955,"pitch":98.87036260757091,"roll":21.108364857024203},"location":"Left Ankle"},{"euler":{"heading":72.85977341249225,"pitch":-18.381833035464155,"roll":-14.83814705883563},"location":"Right Ankle"},{"euler":{"heading":147.08477730742501,"pitch":-161.2888449974616,"roll":50.105298262297865},"location":"Right Hip"},{"euler":{"heading":23.062451872480832,"pitch":-103.14676395603462,"roll":37.26644080642947},"location":"Right Knee"},{"euler":{"heading":19.590263411081917,"pitch":-135.36806680652933,"roll":59.05064303806231},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.757"} +{"sensors":[{"euler":{"heading":59.29272007262962,"pitch":123.00912472350058,"roll":15.602658370239903},"location":"Left Knee"},{"euler":{"heading":58.338782268058665,"pitch":98.45832634681382,"roll":22.660028371321783},"location":"Left Ankle"},{"euler":{"heading":73.76129607124302,"pitch":-18.412399731917738,"roll":-14.641832352952068},"location":"Right Ankle"},{"euler":{"heading":146.58879957668253,"pitch":-161.49121049771546,"roll":50.71351843606808},"location":"Right Hip"},{"euler":{"heading":22.21245668523275,"pitch":-103.95708756043116,"roll":37.72104672578652},"location":"Right Knee"},{"euler":{"heading":18.131237069973725,"pitch":-133.7125101258764,"roll":58.339328734256085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.858"} +{"sensors":[{"euler":{"heading":58.00719806536666,"pitch":124.12696225115053,"roll":16.06114253321591},"location":"Left Knee"},{"euler":{"heading":56.5924040412528,"pitch":97.46249371213243,"roll":21.412775534189606},"location":"Left Ankle"},{"euler":{"heading":74.17266646411872,"pitch":-18.408659758725964,"roll":-14.758899117656863},"location":"Right Ankle"},{"euler":{"heading":146.62366961901427,"pitch":-161.56083944794392,"roll":51.38591659246127},"location":"Right Hip"},{"euler":{"heading":22.147461016709475,"pitch":-104.54887880438804,"roll":37.586442053207875},"location":"Right Knee"},{"euler":{"heading":16.75561336297635,"pitch":-131.92250911328878,"roll":57.49289586083047},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.958"} +{"sensors":[{"euler":{"heading":54.25022825883,"pitch":125.92676602603548,"roll":17.87377827989432},"location":"Left Knee"},{"euler":{"heading":52.77691363712752,"pitch":96.62874434091918,"roll":18.052747980770647},"location":"Left Ankle"},{"euler":{"heading":73.97414981770685,"pitch":-18.186543782853366,"roll":-15.251759205891178},"location":"Right Ankle"},{"euler":{"heading":146.94255265711283,"pitch":-161.67975550314955,"roll":52.00982493321515},"location":"Right Hip"},{"euler":{"heading":22.80146491503853,"pitch":-105.01274092394924,"roll":36.83404784788709},"location":"Right Knee"},{"euler":{"heading":15.942552026678717,"pitch":-130.6177582019599,"roll":56.83110627474743},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.59"} +{"sensors":[{"euler":{"heading":50.943955432947,"pitch":127.61533942343193,"roll":19.611400451904892},"location":"Left Knee"},{"euler":{"heading":49.574222273414776,"pitch":96.07836990682726,"roll":15.134973182693582},"location":"Left Ankle"},{"euler":{"heading":72.92048483593616,"pitch":-17.81163940456803,"roll":-16.176583285302062},"location":"Right Ankle"},{"euler":{"heading":147.41079739140153,"pitch":-162.0430299528346,"roll":52.733842439893635},"location":"Right Hip"},{"euler":{"heading":24.502568423534676,"pitch":-105.12396683155431,"roll":35.32564306309838},"location":"Right Knee"},{"euler":{"heading":15.804546824010846,"pitch":-129.7997323817639,"roll":56.42924564727269},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.160"} +{"sensors":[{"euler":{"heading":49.0370598896523,"pitch":128.34130548108874,"roll":20.8940104067144},"location":"Left Knee"},{"euler":{"heading":47.8543000460733,"pitch":95.78303291614453,"roll":13.396475864424223},"location":"Left Ankle"},{"euler":{"heading":70.07843635234255,"pitch":-17.31797546411123,"roll":-17.402674956771854},"location":"Right Ankle"},{"euler":{"heading":148.65721765226138,"pitch":-161.96372695755113,"roll":53.02295819590427},"location":"Right Hip"},{"euler":{"heading":27.55856158118121,"pitch":-104.66782014839889,"roll":32.70557875678855},"location":"Right Knee"},{"euler":{"heading":15.536592141609761,"pitch":-129.05725914358752,"roll":56.21757108254542},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.261"} +{"sensors":[{"euler":{"heading":47.91460390068707,"pitch":128.38217493297986,"roll":21.904609366042962},"location":"Left Knee"},{"euler":{"heading":46.94387004146597,"pitch":95.69222962453009,"roll":12.4630782779818},"location":"Left Ankle"},{"euler":{"heading":67.0205927171083,"pitch":-16.823677917700106,"roll":-18.26865746109467},"location":"Right Ankle"},{"euler":{"heading":150.12274588703525,"pitch":-161.26110426179602,"roll":52.65816237631385},"location":"Right Hip"},{"euler":{"heading":30.27770542306309,"pitch":-104.08228813355899,"roll":30.228770881109693},"location":"Right Knee"},{"euler":{"heading":15.626682927448785,"pitch":-128.92028322922877,"roll":56.32706397429088},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.362"} +{"sensors":[{"euler":{"heading":47.23564351061836,"pitch":128.10020743968187,"roll":22.564148429438667},"location":"Left Knee"},{"euler":{"heading":47.630733037319374,"pitch":95.76050666207708,"roll":12.55427045018362},"location":"Left Ankle"},{"euler":{"heading":65.68103344539747,"pitch":-16.797560125930097,"roll":-18.635541714985205},"location":"Right Ankle"},{"euler":{"heading":151.39172129833173,"pitch":-160.55374383561642,"roll":51.748596138682466},"location":"Right Hip"},{"euler":{"heading":31.187434880756783,"pitch":-103.5240593202031,"roll":29.368393792998724},"location":"Right Knee"},{"euler":{"heading":15.876514634703907,"pitch":-129.42200490630592,"roll":56.63185757686179},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.463"} +{"sensors":[{"euler":{"heading":47.04957915955653,"pitch":127.59643669571369,"roll":22.8202335864948},"location":"Left Knee"},{"euler":{"heading":48.19890973358744,"pitch":95.66570599586937,"roll":12.88009340516526},"location":"Left Ankle"},{"euler":{"heading":66.55043010085774,"pitch":-17.399054113337087,"roll":-18.103237543486685},"location":"Right Ankle"},{"euler":{"heading":147.1150491684986,"pitch":-160.2733694520548,"roll":50.586236524814225},"location":"Right Hip"},{"euler":{"heading":30.318691392681107,"pitch":-102.67790338818278,"roll":30.375304413698853},"location":"Right Knee"},{"euler":{"heading":16.33261317123352,"pitch":-130.56730441567532,"roll":57.05617181917561},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.563"} +{"sensors":[{"euler":{"heading":47.57587124360088,"pitch":126.84929302614233,"roll":22.58196022784532},"location":"Left Knee"},{"euler":{"heading":49.1102687602287,"pitch":95.68038539628243,"roll":13.667084064648733},"location":"Left Ankle"},{"euler":{"heading":69.34538709077196,"pitch":-18.221648702003378,"roll":-16.855413789138016},"location":"Right Ankle"},{"euler":{"heading":147.3535442516487,"pitch":-160.28353250684933,"roll":49.658862872332804},"location":"Right Hip"},{"euler":{"heading":28.261822253412998,"pitch":-101.96636304936452,"roll":32.76902397232897},"location":"Right Knee"},{"euler":{"heading":16.968101854110166,"pitch":-132.07307397410779,"roll":57.650554637258054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.664"} +{"sensors":[{"euler":{"heading":48.88078411924079,"pitch":126.0081137235281,"roll":21.66751420506079},"location":"Left Knee"},{"euler":{"heading":50.81799188420583,"pitch":95.8998468566542,"roll":15.18787565818386},"location":"Left Ankle"},{"euler":{"heading":71.92334838169477,"pitch":-18.730733831803043,"roll":-15.482372410224215},"location":"Right Ankle"},{"euler":{"heading":146.41818982648385,"pitch":-160.62392925616442,"roll":49.330476585099525},"location":"Right Hip"},{"euler":{"heading":61.3793900280717,"pitch":-101.83847674442808,"roll":35.573371575096076},"location":"Right Knee"},{"euler":{"heading":17.67129166869915,"pitch":-134.084516576697,"roll":58.272999173532256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.765"} +{"sensors":[{"euler":{"heading":51.28645570731672,"pitch":125.2885523511753,"roll":19.738262784554713},"location":"Left Knee"},{"euler":{"heading":52.96119269578525,"pitch":95.85361217098878,"roll":17.669088092365474},"location":"Left Ankle"},{"euler":{"heading":73.2872635435253,"pitch":-18.75141044862274,"roll":-14.902885169201793},"location":"Right Ankle"},{"euler":{"heading":145.9201208438355,"pitch":-160.78653633054796,"roll":49.27867892658958},"location":"Right Hip"},{"euler":{"heading":55.39770102526453,"pitch":-102.30462906998528,"roll":37.38478441758647},"location":"Right Knee"},{"euler":{"heading":18.36666250182924,"pitch":-135.8073149190273,"roll":58.770699256179036},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.866"} +{"sensors":[{"euler":{"heading":55.12656013658505,"pitch":124.43469711605776,"roll":17.133186506099243},"location":"Left Knee"},{"euler":{"heading":56.196323426206725,"pitch":96.8745009538899,"roll":21.195929283128926},"location":"Left Ankle"},{"euler":{"heading":74.25853718917277,"pitch":-18.813769403760464,"roll":-14.593846652281615},"location":"Right Ankle"},{"euler":{"heading":145.24685875945192,"pitch":-161.1016326974932,"roll":49.68831103393062},"location":"Right Hip"},{"euler":{"heading":50.83918092273808,"pitch":-103.14916616298676,"roll":38.30880597582782},"location":"Right Knee"},{"euler":{"heading":17.579996251646318,"pitch":-134.88908342712458,"roll":58.69987933056113},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.967"} +{"sensors":[{"euler":{"heading":58.44515412292654,"pitch":124.22872740445199,"roll":15.138617855489318},"location":"Left Knee"},{"euler":{"heading":58.05169108358606,"pitch":96.57455085850093,"roll":23.276336354816035},"location":"Left Ankle"},{"euler":{"heading":75.0139334702555,"pitch":-18.932392463384417,"roll":-14.765711987053454},"location":"Right Ankle"},{"euler":{"heading":145.09717288350674,"pitch":-161.24146942774388,"roll":50.41322993053756},"location":"Right Hip"},{"euler":{"heading":47.499012830464274,"pitch":-103.88424954668808,"roll":38.59667537824504},"location":"Right Knee"},{"euler":{"heading":16.084496626481688,"pitch":-133.44392508441211,"roll":57.867391397505024},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.68"} +{"sensors":[{"euler":{"heading":58.375638710633886,"pitch":125.05585466400679,"roll":15.093506069940387},"location":"Left Knee"},{"euler":{"heading":56.93402197522745,"pitch":95.75459577265084,"roll":22.548702719334432},"location":"Left Ankle"},{"euler":{"heading":75.36254012322995,"pitch":-19.145403217045974,"roll":-15.095390788348109},"location":"Right Ankle"},{"euler":{"heading":145.4187055951561,"pitch":-161.3735724849695,"roll":51.15315693748381},"location":"Right Hip"},{"euler":{"heading":45.274111547417846,"pitch":-104.31457459201928,"roll":38.34325784042054},"location":"Right Knee"},{"euler":{"heading":14.63229696383352,"pitch":-131.73703257597091,"roll":56.89315225775452},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.168"} +{"sensors":[{"euler":{"heading":54.6380748395705,"pitch":126.73151919760612,"roll":16.796655462946347},"location":"Left Knee"},{"euler":{"heading":53.42811977770471,"pitch":94.82913619538577,"roll":19.425082447400992},"location":"Left Ankle"},{"euler":{"heading":75.10128611090695,"pitch":-19.199612895341378,"roll":-15.667101709513299},"location":"Right Ankle"},{"euler":{"heading":145.95183503564047,"pitch":-161.59871523647254,"roll":51.81284124373543},"location":"Right Hip"},{"euler":{"heading":43.977950392676064,"pitch":-104.55811713281736,"roll":37.50268205637849},"location":"Right Knee"},{"euler":{"heading":13.775317267450168,"pitch":-130.41332931837383,"roll":56.160087031979074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.269"} +{"sensors":[{"euler":{"heading":50.44926735561345,"pitch":128.6271172778455,"roll":18.829489916651713},"location":"Left Knee"},{"euler":{"heading":49.71030779993424,"pitch":94.1274725758472,"roll":15.807574202660891},"location":"Left Ankle"},{"euler":{"heading":74.00365749981626,"pitch":-18.83590160580724,"roll":-16.65664153856197},"location":"Right Ankle"},{"euler":{"heading":146.51915153207642,"pitch":-162.02009371282531,"roll":52.53780711936189},"location":"Right Hip"},{"euler":{"heading":43.53015535340846,"pitch":-104.68355541953562,"roll":36.04616385074065},"location":"Right Knee"},{"euler":{"heading":13.604035540705151,"pitch":-129.55949638653647,"roll":55.67532832878117},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.370"} +{"sensors":[{"euler":{"heading":48.3105906200521,"pitch":129.37065555006097,"roll":20.44029092498654},"location":"Left Knee"},{"euler":{"heading":47.68302701994082,"pitch":94.07722531826248,"roll":13.739316782394802},"location":"Left Ankle"},{"euler":{"heading":71.52204174983464,"pitch":-18.589811445226516,"roll":-17.890977384705774},"location":"Right Ankle"},{"euler":{"heading":147.5922363788688,"pitch":-162.4305843415428,"roll":53.1402764074257},"location":"Right Hip"},{"euler":{"heading":44.82088981806761,"pitch":-104.19019987758207,"roll":33.46654746566658},"location":"Right Knee"},{"euler":{"heading":13.831131986634636,"pitch":-128.8472967478828,"roll":55.451545495903055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.472"} +{"sensors":[{"euler":{"heading":47.19203155804689,"pitch":129.31483999505488,"roll":21.640011832487886},"location":"Left Knee"},{"euler":{"heading":46.96472431794674,"pitch":94.47575278643623,"roll":12.696635104155323},"location":"Left Ankle"},{"euler":{"heading":67.61983757485118,"pitch":-17.399580300703864,"roll":-19.4518796462352},"location":"Right Ankle"},{"euler":{"heading":149.16426274098194,"pitch":-161.88752590738852,"roll":53.08874876668314},"location":"Right Hip"},{"euler":{"heading":46.17630083626085,"pitch":-103.93367988982388,"roll":30.432392719099923},"location":"Right Knee"},{"euler":{"heading":14.223018787971172,"pitch":-128.30631707309453,"roll":55.61264094631275},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.572"} +{"sensors":[{"euler":{"heading":46.497828402242206,"pitch":128.9896059955494,"roll":22.394760649239096},"location":"Left Knee"},{"euler":{"heading":47.63075188615207,"pitch":94.8906775077926,"roll":12.683221593739791},"location":"Left Ankle"},{"euler":{"heading":64.70160381736605,"pitch":-16.659622270633477,"roll":-20.39419168161168},"location":"Right Ankle"},{"euler":{"heading":150.95408646688375,"pitch":-161.08627331664965,"roll":52.28612389001483},"location":"Right Hip"},{"euler":{"heading":46.60242075263477,"pitch":-103.35281190084149,"roll":28.32040344718993},"location":"Right Knee"},{"euler":{"heading":14.544466909174055,"pitch":-128.83818536578508,"roll":55.85137685168148},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.673"} +{"sensors":[{"euler":{"heading":46.373045562017985,"pitch":128.26564539599445,"roll":22.905284584315186},"location":"Left Knee"},{"euler":{"heading":48.35517669753686,"pitch":95.29535975701334,"roll":12.889899434365812},"location":"Left Ankle"},{"euler":{"heading":64.26269343562944,"pitch":-16.99366004357013,"roll":-20.34852251345051},"location":"Right Ankle"},{"euler":{"heading":152.04617782019537,"pitch":-160.5338959849847,"roll":51.11376150101334},"location":"Right Hip"},{"euler":{"heading":45.1671786773713,"pitch":-102.39878071075734,"roll":28.288363102470935},"location":"Right Knee"},{"euler":{"heading":15.17752021825665,"pitch":-129.96061682920657,"roll":56.26623916651333},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.774"} +{"sensors":[{"euler":{"heading":46.97324100581619,"pitch":127.22033085639501,"roll":22.97100612588367},"location":"Left Knee"},{"euler":{"heading":49.33840902778318,"pitch":95.79707378131201,"roll":13.463409490929232},"location":"Left Ankle"},{"euler":{"heading":66.2989240920665,"pitch":-17.79429403921312,"roll":-19.29492026210546},"location":"Right Ankle"},{"euler":{"heading":147.62906003817582,"pitch":-160.43050638648623,"roll":49.964885350912006},"location":"Right Hip"},{"euler":{"heading":42.11296080963417,"pitch":-101.5776526396816,"roll":30.28452679222384},"location":"Right Knee"},{"euler":{"heading":15.953518196430984,"pitch":-131.3333051462859,"roll":56.820865249861995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.875"} +{"sensors":[{"euler":{"heading":48.13216690523458,"pitch":126.02954777075551,"roll":22.5114055132953},"location":"Left Knee"},{"euler":{"heading":50.80456812500486,"pitch":96.39861640318081,"roll":14.51706854183631},"location":"Left Ankle"},{"euler":{"heading":69.58778168285986,"pitch":-18.59611463529181,"roll":-17.702928235894912},"location":"Right Ankle"},{"euler":{"heading":147.12240403435823,"pitch":-160.68745574783762,"roll":49.3058968158208},"location":"Right Hip"},{"euler":{"heading":38.26416472867075,"pitch":-100.98238737571344,"roll":33.143574113001456},"location":"Right Knee"},{"euler":{"heading":16.945666376787887,"pitch":-133.13122463165732,"roll":57.5325287248758},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.975"} +{"sensors":[{"euler":{"heading":49.918950214711124,"pitch":124.94534299367996,"roll":21.31026496196577},"location":"Left Knee"},{"euler":{"heading":53.180361312504374,"pitch":96.82750476286273,"roll":16.43411168765268},"location":"Left Ankle"},{"euler":{"heading":71.77275351457388,"pitch":-18.97400317176263,"roll":-16.382635412305422},"location":"Right Ankle"},{"euler":{"heading":145.7789136309224,"pitch":-161.29371017305388,"roll":49.031557134238724},"location":"Right Hip"},{"euler":{"heading":69.66274825580368,"pitch":-101.09664863814211,"roll":35.44796670170131},"location":"Right Knee"},{"euler":{"heading":18.1573497391091,"pitch":-135.4243521684916,"roll":58.341775852388224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.76"} +{"sensors":[{"euler":{"heading":52.88330519324002,"pitch":124.18830869431196,"roll":19.079238465769194},"location":"Left Knee"},{"euler":{"heading":55.56232518125394,"pitch":97.31975428657645,"roll":19.290700518887412},"location":"Left Ankle"},{"euler":{"heading":73.3267281631165,"pitch":-18.870352854586365,"roll":-15.831871871074881},"location":"Right Ankle"},{"euler":{"heading":145.11352226783015,"pitch":-161.5705891557485,"roll":49.172151420814856},"location":"Right Hip"},{"euler":{"heading":63.015223430223315,"pitch":-101.76198377432792,"roll":36.93442003153118},"location":"Right Knee"},{"euler":{"heading":18.39786476519819,"pitch":-136.37566695164244,"roll":58.67634826714941},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.177"} +{"sensors":[{"euler":{"heading":56.33872467391602,"pitch":123.60072782488076,"roll":16.665064619192275},"location":"Left Knee"},{"euler":{"heading":57.78109266312855,"pitch":97.56902885791881,"roll":22.267880466998673},"location":"Left Ankle"},{"euler":{"heading":74.37530534680485,"pitch":-18.608317569127728,"roll":-15.692434683967393},"location":"Right Ankle"},{"euler":{"heading":144.18342004104716,"pitch":-162.03228024017366,"roll":49.81118627873337},"location":"Right Hip"},{"euler":{"heading":57.45745108720099,"pitch":-102.69828539689513,"roll":37.68472802837807},"location":"Right Knee"},{"euler":{"heading":17.29557828867837,"pitch":-135.0381002564782,"roll":58.47746344043447},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.278"} +{"sensors":[{"euler":{"heading":58.32985220652442,"pitch":123.92815504239269,"roll":15.48605815727305},"location":"Left Knee"},{"euler":{"heading":58.196733396815695,"pitch":96.69337597212693,"roll":23.141092420298808},"location":"Left Ankle"},{"euler":{"heading":74.95027481212438,"pitch":-18.278735812214954,"roll":-15.791941215570656},"location":"Right Ankle"},{"euler":{"heading":143.59632803694245,"pitch":-162.3290522161563,"roll":50.71756765086004},"location":"Right Hip"},{"euler":{"heading":53.06170597848089,"pitch":-103.70970685720562,"roll":37.82250522554026},"location":"Right Knee"},{"euler":{"heading":15.678520459810535,"pitch":-133.42179023083037,"roll":57.654717096391025},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.379"} +{"sensors":[{"euler":{"heading":56.21561698587198,"pitch":125.34783953815342,"roll":16.462452341545745},"location":"Left Knee"},{"euler":{"heading":53.98956005713412,"pitch":95.94903837491424,"roll":20.95823317826893},"location":"Left Ankle"},{"euler":{"heading":74.98024733091195,"pitch":-17.98836223099346,"roll":-16.09399709401359},"location":"Right Ankle"},{"euler":{"heading":143.5866952332482,"pitch":-162.65239699454068,"roll":51.60206088577404},"location":"Right Hip"},{"euler":{"heading":49.8805353806328,"pitch":-104.40748617148506,"roll":37.38400470298624},"location":"Right Knee"},{"euler":{"heading":14.27941841382948,"pitch":-131.75461120774733,"roll":56.826745386751924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.484"} +{"sensors":[{"euler":{"heading":52.49405528728478,"pitch":127.35055558433808,"roll":18.23495710739117},"location":"Left Knee"},{"euler":{"heading":50.10935405142071,"pitch":95.15413453742282,"roll":17.34990986044204},"location":"Left Ankle"},{"euler":{"heading":74.33222259782075,"pitch":-17.483276007894112,"roll":-16.63459738461223},"location":"Right Ankle"},{"euler":{"heading":143.7155257099234,"pitch":-163.15590729508662,"roll":52.479354797196635},"location":"Right Hip"},{"euler":{"heading":47.829981842569524,"pitch":-104.94173755433656,"roll":36.320604232687614},"location":"Right Knee"},{"euler":{"heading":13.701476572446532,"pitch":-130.73540008697262,"roll":56.21907084807673},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.585"} +{"sensors":[{"euler":{"heading":50.363399758556305,"pitch":128.40300002590428,"roll":19.786461396652054},"location":"Left Knee"},{"euler":{"heading":47.41716864627864,"pitch":95.04497108368054,"roll":14.889918874397836},"location":"Left Ankle"},{"euler":{"heading":72.59275033803867,"pitch":-16.9099484071047,"roll":-17.521137646151008},"location":"Right Ankle"},{"euler":{"heading":144.31272313893106,"pitch":-163.74656656557795,"roll":53.218919317476974},"location":"Right Hip"},{"euler":{"heading":47.35323365831257,"pitch":-104.9850637989029,"roll":34.388543809418856},"location":"Right Knee"},{"euler":{"heading":13.74382891520188,"pitch":-130.01186007827536,"roll":55.90341376326906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.686"} +{"sensors":[{"euler":{"heading":49.25830978270067,"pitch":128.56270002331385,"roll":20.96406525698685},"location":"Left Knee"},{"euler":{"heading":46.256701781650776,"pitch":95.37172397531248,"roll":13.463426986958053},"location":"Left Ankle"},{"euler":{"heading":69.0897253042348,"pitch":-15.57520356639423,"roll":-18.61902388153591},"location":"Right Ankle"},{"euler":{"heading":146.04395082503797,"pitch":-163.20940990902017,"roll":53.315777385729284},"location":"Right Hip"},{"euler":{"heading":47.749160292481314,"pitch":-104.79280741901262,"roll":31.668439428476972},"location":"Right Knee"},{"euler":{"heading":13.900696023681691,"pitch":-129.57942407044783,"roll":55.90057238694215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.787"} +{"sensors":[{"euler":{"heading":49.02622880443061,"pitch":127.98143002098247,"roll":21.842658731288168},"location":"Left Knee"},{"euler":{"heading":46.2747816034857,"pitch":96.03455157778123,"roll":12.948334288262249},"location":"Left Ankle"},{"euler":{"heading":65.66825277381133,"pitch":-14.748933209754806,"roll":-19.31337149338232},"location":"Right Ankle"},{"euler":{"heading":147.97705574253416,"pitch":-162.27596891811814,"roll":52.65294964715636},"location":"Right Hip"},{"euler":{"heading":47.97424426323318,"pitch":-104.20727667711135,"roll":29.264095485629277},"location":"Right Knee"},{"euler":{"heading":14.516876421313523,"pitch":-129.87773166340304,"roll":56.12926514824794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.887"} +{"sensors":[{"euler":{"heading":49.11110592398755,"pitch":127.23328701888423,"roll":22.314642858159353},"location":"Left Knee"},{"euler":{"heading":47.58480344313713,"pitch":96.70609642000312,"roll":13.341000859436024},"location":"Left Ankle"},{"euler":{"heading":64.4451774964302,"pitch":-14.936539888779325,"roll":-19.63203434404409},"location":"Right Ankle"},{"euler":{"heading":149.64185016828077,"pitch":-161.53587202630635,"roll":51.46265468244073},"location":"Right Hip"},{"euler":{"heading":46.82681983690986,"pitch":-103.29279900940021,"roll":28.60018593706635},"location":"Right Knee"},{"euler":{"heading":15.327688779182171,"pitch":-130.90870849706275,"roll":56.56008863342315},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.988"} +{"sensors":[{"euler":{"heading":49.631245331588794,"pitch":126.3287083169958,"roll":22.358178572343416},"location":"Left Knee"},{"euler":{"heading":48.59507309882342,"pitch":97.14173677800281,"roll":13.894400773492421},"location":"Left Ankle"},{"euler":{"heading":65.81940974678719,"pitch":-15.736635899901394,"roll":-18.82508090963968},"location":"Right Ankle"},{"euler":{"heading":145.50266515145267,"pitch":-162.9572848236757,"roll":50.15388921419665},"location":"Right Hip"},{"euler":{"heading":43.819137853218876,"pitch":-102.27601910846019,"roll":30.252667343359715},"location":"Right Knee"},{"euler":{"heading":16.244919901263955,"pitch":-132.48658764735646,"roll":57.160329770080835},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.89"} +{"sensors":[{"euler":{"heading":50.66812079842992,"pitch":125.37083748529622,"roll":21.834860715109073},"location":"Left Knee"},{"euler":{"heading":50.035565788941085,"pitch":97.52756310020254,"roll":14.96746069614318},"location":"Left Ankle"},{"euler":{"heading":68.59996877210847,"pitch":-16.681722309911255,"roll":-17.192572818675714},"location":"Right Ankle"},{"euler":{"heading":145.2711486363074,"pitch":-162.98030634130814,"roll":49.45725029277699},"location":"Right Hip"},{"euler":{"heading":39.55597406789699,"pitch":-101.37966719761417,"roll":33.29615060902374},"location":"Right Knee"},{"euler":{"heading":17.20167791113756,"pitch":-134.41292888262083,"roll":57.84429679307275},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.190"} +{"sensors":[{"euler":{"heading":52.39505871858693,"pitch":124.37125373676659,"roll":20.638874643598168},"location":"Left Knee"},{"euler":{"heading":52.53200921004698,"pitch":97.9623067901823,"roll":16.92696462652886},"location":"Left Ankle"},{"euler":{"heading":70.88997189489763,"pitch":-17.21355007892013,"roll":-15.979565536808142},"location":"Right Ankle"},{"euler":{"heading":144.42528377267666,"pitch":-163.16977570717734,"roll":49.2115252634993},"location":"Right Hip"},{"euler":{"heading":71.2066266611073,"pitch":-101.20420047785277,"roll":36.07903554812137},"location":"Right Knee"},{"euler":{"heading":18.494010120023802,"pitch":-136.92788599435875,"roll":58.578617113765475},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.290"} +{"sensors":[{"euler":{"heading":55.293052846728244,"pitch":123.76537836308994,"roll":18.237487179238354},"location":"Left Knee"},{"euler":{"heading":54.885058289042284,"pitch":98.51607611116407,"roll":19.915518163875973},"location":"Left Ankle"},{"euler":{"heading":72.16972470540787,"pitch":-17.442195071028117,"roll":-15.456608983127328},"location":"Right Ankle"},{"euler":{"heading":144.276505395409,"pitch":-163.1777981364596,"roll":49.29037273714937},"location":"Right Hip"},{"euler":{"heading":64.31096399499656,"pitch":-101.63378043006749,"roll":37.808631993309234},"location":"Right Knee"},{"euler":{"heading":19.032109108021423,"pitch":-137.97259739492287,"roll":59.08950540238893},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.391"} +{"sensors":[{"euler":{"heading":59.08249756205542,"pitch":123.00759052678094,"roll":15.59498846131452},"location":"Left Knee"},{"euler":{"heading":57.271552460138054,"pitch":98.92071850004766,"roll":23.22396634748838},"location":"Left Ankle"},{"euler":{"heading":72.9777522348671,"pitch":-17.585475563925307,"roll":-15.242198084814596},"location":"Right Ankle"},{"euler":{"heading":143.5551048558681,"pitch":-163.52251832281362,"roll":49.861335463434436},"location":"Right Hip"},{"euler":{"heading":58.729867595496906,"pitch":-102.50165238706074,"roll":38.70276879397831},"location":"Right Knee"},{"euler":{"heading":18.303898197219283,"pitch":-136.50033765543057,"roll":59.09305486215004},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.495"} +{"sensors":[{"euler":{"heading":61.61174780584988,"pitch":123.08183147410286,"roll":14.085489615183068},"location":"Left Knee"},{"euler":{"heading":58.269397214124254,"pitch":98.3036466500429,"roll":24.57656971273954},"location":"Left Ankle"},{"euler":{"heading":73.57372701138038,"pitch":-17.658178007532776,"roll":-15.392978276333137},"location":"Right Ankle"},{"euler":{"heading":143.3808443702813,"pitch":-163.70776649053226,"roll":50.61895191709099},"location":"Right Hip"},{"euler":{"heading":54.30063083594722,"pitch":-103.25148714835467,"roll":39.01374191458048},"location":"Right Knee"},{"euler":{"heading":16.904758377497355,"pitch":-134.5940538898875,"roll":58.38374937593504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.596"} +{"sensors":[{"euler":{"heading":60.263073025264895,"pitch":124.27364832669257,"roll":14.639440653664762},"location":"Left Knee"},{"euler":{"heading":56.34870749271183,"pitch":97.30453198503861,"roll":23.09391274146559},"location":"Left Ankle"},{"euler":{"heading":73.66635431024235,"pitch":-17.586110206779498,"roll":-15.622430448699824},"location":"Right Ankle"},{"euler":{"heading":143.52400993325315,"pitch":-163.83698984147904,"roll":51.419556725381895},"location":"Right Hip"},{"euler":{"heading":50.8393177523525,"pitch":-103.85758843351921,"roll":38.79986772312243},"location":"Right Knee"},{"euler":{"heading":15.45803253974762,"pitch":-132.60339850089878,"roll":57.53287443834154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.697"} +{"sensors":[{"euler":{"heading":56.4180157227384,"pitch":126.21503349402332,"roll":16.475496588298284},"location":"Left Knee"},{"euler":{"heading":52.50133674344065,"pitch":96.20532878653475,"roll":19.584521467319032},"location":"Left Ankle"},{"euler":{"heading":73.14346887921812,"pitch":-17.246249186101547,"roll":-16.216437403829843},"location":"Right Ankle"},{"euler":{"heading":143.85285893992784,"pitch":-164.06579085733114,"roll":52.15885105284371},"location":"Right Hip"},{"euler":{"heading":48.38663597711725,"pitch":-104.34682959016729,"roll":37.97613095081019},"location":"Right Knee"},{"euler":{"heading":14.649729285772858,"pitch":-131.1868086508089,"roll":56.92333699450738},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.798"} +{"sensors":[{"euler":{"heading":53.50121415046456,"pitch":127.76228014462099,"roll":18.215446929468456},"location":"Left Knee"},{"euler":{"heading":49.17620306909659,"pitch":95.87854590788127,"roll":16.513569320587127},"location":"Left Ankle"},{"euler":{"heading":71.84162199129631,"pitch":-16.715374267491395,"roll":-17.26354366344686},"location":"Right Ankle"},{"euler":{"heading":144.29882304593508,"pitch":-164.54046177159802,"roll":52.96171594755934},"location":"Right Hip"},{"euler":{"heading":47.24797237940553,"pitch":-104.53089663115057,"roll":36.37226785572917},"location":"Right Knee"},{"euler":{"heading":14.478506357195574,"pitch":-130.26187778572802,"roll":56.506003295056644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.898"} +{"sensors":[{"euler":{"heading":51.91984273541811,"pitch":128.2110521301589,"roll":19.59390223652161},"location":"Left Knee"},{"euler":{"heading":47.546082762186934,"pitch":96.05944131709315,"roll":14.812212388528414},"location":"Left Ankle"},{"euler":{"heading":68.97620979216667,"pitch":-15.937586840742256,"roll":-18.430939297102174},"location":"Right Ankle"},{"euler":{"heading":145.2751907413416,"pitch":-164.57391559443823,"roll":53.59679435280341},"location":"Right Hip"},{"euler":{"heading":47.573175141464986,"pitch":-104.34655696803551,"roll":33.77879107015626},"location":"Right Knee"},{"euler":{"heading":14.324405721476015,"pitch":-129.3856900071552,"roll":56.36165296555098},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.999"} +{"sensors":[{"euler":{"heading":51.25285846187629,"pitch":127.877446917143,"roll":20.63451201286945},"location":"Left Knee"},{"euler":{"heading":46.92897448596825,"pitch":96.50349718538384,"roll":13.855991149675573},"location":"Left Ankle"},{"euler":{"heading":65.15983881295,"pitch":-14.88757815666803,"roll":-19.656595367391958},"location":"Right Ankle"},{"euler":{"heading":146.75392166720744,"pitch":-163.86027403499443,"roll":53.355864917523064},"location":"Right Hip"},{"euler":{"heading":48.20335762731849,"pitch":-104.09315127123197,"roll":30.932161963140633},"location":"Right Knee"},{"euler":{"heading":14.648215149328413,"pitch":-129.0408710064397,"roll":56.59423766899588},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.99"} +{"sensors":[{"euler":{"heading":50.946322615688665,"pitch":127.30845222542871,"roll":21.302310811582505},"location":"Left Knee"},{"euler":{"heading":47.26107703737142,"pitch":96.92814746684546,"roll":13.707892034708017},"location":"Left Ankle"},{"euler":{"heading":62.837604931655,"pitch":-14.780070341001226,"roll":-20.40343583065276},"location":"Right Ankle"},{"euler":{"heading":148.3597795004867,"pitch":-163.08049663149498,"roll":52.42027842577076},"location":"Right Hip"},{"euler":{"heading":47.620521864586635,"pitch":-103.37758614410879,"roll":29.48269576682657},"location":"Right Knee"},{"euler":{"heading":15.189643634395571,"pitch":-129.61178390579573,"roll":56.997313902096295},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.200"} +{"sensors":[{"euler":{"heading":51.1079403541198,"pitch":126.57760700288584,"roll":21.547079730424255},"location":"Left Knee"},{"euler":{"heading":47.81621933363428,"pitch":97.29783272016091,"roll":13.880852831237217},"location":"Left Ankle"},{"euler":{"heading":63.2475944384895,"pitch":-15.602063306901105,"roll":-20.050592247587485},"location":"Right Ankle"},{"euler":{"heading":144.59880155043803,"pitch":-162.7349469683455,"roll":51.09700058319369},"location":"Right Hip"},{"euler":{"heading":45.40221967812798,"pitch":-102.44607752969792,"roll":30.090676190143917},"location":"Right Knee"},{"euler":{"heading":15.689429270956015,"pitch":-130.73185551521615,"roll":57.43508251188667},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.300"} +{"sensors":[{"euler":{"heading":51.83464631870782,"pitch":125.70734630259727,"roll":21.31737175738183},"location":"Left Knee"},{"euler":{"heading":48.73459740027086,"pitch":97.67429944814482,"roll":14.474017548113494},"location":"Left Ankle"},{"euler":{"heading":65.96658499464056,"pitch":-16.585606976210993,"roll":-18.783033022828736},"location":"Right Ankle"},{"euler":{"heading":141.00142139539423,"pitch":-162.70520227151096,"roll":50.04980052487432},"location":"Right Hip"},{"euler":{"heading":41.54324771031518,"pitch":-101.56396977672813,"roll":32.51910857112952},"location":"Right Knee"},{"euler":{"heading":16.239236343860412,"pitch":-132.18991996369454,"roll":57.98532426069801},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.401"} +{"sensors":[{"euler":{"heading":53.05118168683703,"pitch":124.82411167233755,"roll":20.541884581643647},"location":"Left Knee"},{"euler":{"heading":50.22988766024377,"pitch":98.01936950333034,"roll":15.645365793302146},"location":"Left Ankle"},{"euler":{"heading":68.9574264951765,"pitch":-17.420796278589897,"roll":-17.17972972054586},"location":"Right Ankle"},{"euler":{"heading":140.31377925585483,"pitch":-163.09093204435987,"roll":49.66982047238689},"location":"Right Hip"},{"euler":{"heading":72.95767293928367,"pitch":-101.47007279905532,"roll":35.604697714016574},"location":"Right Knee"},{"euler":{"heading":17.10281270947437,"pitch":-134.43967796732508,"roll":58.58679183462821},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.502"} +{"sensors":[{"euler":{"heading":55.09606351815333,"pitch":124.1604505051038,"roll":18.68769612347928},"location":"Left Knee"},{"euler":{"heading":52.32564889421939,"pitch":98.0986825529973,"roll":17.962079213971933},"location":"Left Ankle"},{"euler":{"heading":70.59918384565886,"pitch":-17.641216650730907,"roll":-16.393006748491274},"location":"Right Ankle"},{"euler":{"heading":139.91365133026935,"pitch":-163.4130888399239,"roll":49.5028384251482},"location":"Right Hip"},{"euler":{"heading":101.32440564535531,"pitch":-101.8793155191498,"roll":37.80047794261492},"location":"Right Knee"},{"euler":{"heading":18.067531438526935,"pitch":-136.55196017059257,"roll":59.22811265116539},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.602"} +{"sensors":[{"euler":{"heading":58.748957166338,"pitch":123.48190545459342,"roll":16.06892651113135},"location":"Left Knee"},{"euler":{"heading":56.124334004797454,"pitch":99.27006429769757,"roll":21.79087129257474},"location":"Left Ankle"},{"euler":{"heading":71.58301546109297,"pitch":-17.739594985657817,"roll":-16.022456073642147},"location":"Right Ankle"},{"euler":{"heading":139.5222861972424,"pitch":-163.7280299559315,"roll":49.827554582633375},"location":"Right Hip"},{"euler":{"heading":91.47321508081978,"pitch":-102.72888396723482,"roll":39.045430148353425},"location":"Right Knee"},{"euler":{"heading":17.517028294674244,"pitch":-136.0530141535333,"roll":59.311551386048855},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.703"} +{"sensors":[{"euler":{"heading":62.1990614497042,"pitch":123.32121490913407,"roll":13.843283860018216},"location":"Left Knee"},{"euler":{"heading":58.55565060431771,"pitch":98.87430786792781,"roll":24.649284163317265},"location":"Left Ankle"},{"euler":{"heading":72.37471391498367,"pitch":-17.934385487092037,"roll":-15.938960466277933},"location":"Right Ankle"},{"euler":{"heading":139.40130757751817,"pitch":-164.05522696033836,"roll":50.53229912437004},"location":"Right Hip"},{"euler":{"heading":83.2696435727378,"pitch":-103.57474557051135,"roll":39.615887133518086},"location":"Right Knee"},{"euler":{"heading":15.98407546520682,"pitch":-134.34146273817998,"roll":58.78664624744397},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.804"} +{"sensors":[{"euler":{"heading":62.910405304733786,"pitch":123.99534341822067,"roll":13.402705474016395},"location":"Left Knee"},{"euler":{"heading":58.406335543885945,"pitch":97.83062708113503,"roll":24.884355746985538},"location":"Left Ankle"},{"euler":{"heading":72.90599252348531,"pitch":-18.10344693838283,"roll":-16.16381441965014},"location":"Right Ankle"},{"euler":{"heading":139.72367681976635,"pitch":-164.26845426430452,"roll":51.35406921193304},"location":"Right Hip"},{"euler":{"heading":76.51142921546402,"pitch":-104.19852101346022,"roll":39.68554842016628},"location":"Right Knee"},{"euler":{"heading":50.37941791868614,"pitch":-132.51981646436198,"roll":57.86423162269958},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.905"} +{"sensors":[{"euler":{"heading":59.73186477426041,"pitch":125.6645590763986,"roll":14.774934926614756},"location":"Left Knee"},{"euler":{"heading":55.17195198949735,"pitch":96.58506437302152,"roll":22.252170172286984},"location":"Left Ankle"},{"euler":{"heading":72.84664327113678,"pitch":-18.068102244544548,"roll":-16.466182977685126},"location":"Right Ankle"},{"euler":{"heading":140.1950591377897,"pitch":-164.56660883787407,"roll":52.13741229073974},"location":"Right Hip"},{"euler":{"heading":70.99153629391762,"pitch":-104.7224189121142,"roll":39.22324357814965},"location":"Right Knee"},{"euler":{"heading":45.48522612681752,"pitch":-130.8428348179258,"roll":57.07155846042962},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.6"} +{"sensors":[{"euler":{"heading":55.33367829683437,"pitch":127.80435316875874,"roll":16.76619143395328},"location":"Left Knee"},{"euler":{"heading":51.17350679054761,"pitch":95.41405793571937,"roll":18.495703155058287},"location":"Left Ankle"},{"euler":{"heading":72.17447894402311,"pitch":-17.68004202009009,"roll":-17.219564679916616},"location":"Right Ankle"},{"euler":{"heading":140.89430322401074,"pitch":-164.87869795408668,"roll":52.986171061665765},"location":"Right Hip"},{"euler":{"heading":66.72988266452586,"pitch":-105.09392702090278,"roll":38.15716922033469},"location":"Right Knee"},{"euler":{"heading":41.88045351413577,"pitch":-129.9023013361332,"roll":56.58315261438666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.106"} +{"sensors":[{"euler":{"heading":52.612810467150936,"pitch":128.87391785188288,"roll":18.564572290557955},"location":"Left Knee"},{"euler":{"heading":48.17490611149285,"pitch":95.36015214214743,"roll":15.839882839552457},"location":"Left Ankle"},{"euler":{"heading":70.3257810496208,"pitch":-17.112037818081085,"roll":-18.285108211924953},"location":"Right Ankle"},{"euler":{"heading":141.91112290160967,"pitch":-165.403328158678,"roll":53.768803955499195},"location":"Right Hip"},{"euler":{"heading":64.17564439807327,"pitch":-105.0220343188125,"roll":36.26020229830122},"location":"Right Knee"},{"euler":{"heading":39.2674081627222,"pitch":-129.2433212025199,"roll":56.393587352947996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.207"} +{"sensors":[{"euler":{"heading":51.226529420435845,"pitch":129.0365260666946,"roll":19.92061506150216},"location":"Left Knee"},{"euler":{"heading":47.11366550034357,"pitch":95.6741369279327,"roll":14.562144555597213},"location":"Left Ankle"},{"euler":{"heading":67.17445294465873,"pitch":-15.869584036272977,"roll":-19.51284739073246},"location":"Right Ankle"},{"euler":{"heading":143.52626061144872,"pitch":-165.1067453428102,"roll":54.07942355994928},"location":"Right Hip"},{"euler":{"heading":62.85807995826595,"pitch":-104.78858088693126,"roll":33.440432068471104},"location":"Right Knee"},{"euler":{"heading":36.834417346449975,"pitch":-128.7564890822679,"roll":56.4479786176532},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.308"} +{"sensors":[{"euler":{"heading":50.61012647839226,"pitch":128.60787346002513,"roll":20.916053555351947},"location":"Left Knee"},{"euler":{"heading":46.839798950309216,"pitch":96.09422323513942,"roll":13.743430100037491},"location":"Left Ankle"},{"euler":{"heading":63.694507650192854,"pitch":-14.96387563264568,"roll":-20.555312651659214},"location":"Right Ankle"},{"euler":{"heading":145.47988455030386,"pitch":-164.1585708085292,"roll":53.60273120395435},"location":"Right Hip"},{"euler":{"heading":61.559771962439356,"pitch":-104.30347279823813,"roll":30.958888861623993},"location":"Right Knee"},{"euler":{"heading":34.96347561180498,"pitch":-128.99959017404112,"roll":56.71568075588788},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.408"} +{"sensors":[{"euler":{"heading":50.48036383055303,"pitch":127.76583611402262,"roll":21.636948199816754},"location":"Left Knee"},{"euler":{"heading":47.324569055278296,"pitch":96.64105091162548,"roll":13.544087090033743},"location":"Left Ankle"},{"euler":{"heading":62.17505688517357,"pitch":-15.261238069381111,"roll":-20.981031386493292},"location":"Right Ankle"},{"euler":{"heading":147.3693960952735,"pitch":-163.2739637276763,"roll":52.454958083558914},"location":"Right Hip"},{"euler":{"heading":58.85379476619543,"pitch":-103.34187551841433,"roll":30.350499975461595},"location":"Right Knee"},{"euler":{"heading":33.823378050624484,"pitch":-130.037131156637,"roll":57.1816126802991},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.509"} +{"sensors":[{"euler":{"heading":50.888577447497724,"pitch":126.85175250262036,"roll":21.798253379835078},"location":"Left Knee"},{"euler":{"heading":47.954612149750474,"pitch":97.08944582046294,"roll":13.758428381030368},"location":"Left Ankle"},{"euler":{"heading":63.33880119665621,"pitch":-16.366364262443,"roll":-20.126678247843962},"location":"Right Ankle"},{"euler":{"heading":143.71370648574614,"pitch":-162.94031735490867,"roll":51.246962275203025},"location":"Right Hip"},{"euler":{"heading":54.424665289575884,"pitch":-102.3264379665729,"roll":32.02169997791543},"location":"Right Knee"},{"euler":{"heading":32.691040245562036,"pitch":-131.4146680409733,"roll":57.70095141226919},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.609"} +{"sensors":[{"euler":{"heading":51.76846970274795,"pitch":125.86032725235833,"roll":21.44342804185157},"location":"Left Knee"},{"euler":{"heading":49.034150934775425,"pitch":97.49300123841665,"roll":14.470085542927333},"location":"Left Ankle"},{"euler":{"heading":66.3674210769906,"pitch":-17.4859778361987,"roll":-18.44526042305957},"location":"Right Ankle"},{"euler":{"heading":143.66108583717153,"pitch":-162.8837856194178,"roll":50.78476604768272},"location":"Right Hip"},{"euler":{"heading":84.8884487606183,"pitch":-101.83129416991561,"roll":35.05077998012389},"location":"Right Knee"},{"euler":{"heading":31.809436221005832,"pitch":-133.16070123687598,"roll":58.33710627104227},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.710"} +{"sensors":[{"euler":{"heading":53.272872732473154,"pitch":124.89304452712251,"roll":20.37408523766641},"location":"Left Knee"},{"euler":{"heading":50.824485841297886,"pitch":97.799951114575,"roll":16.0418269886346},"location":"Left Ankle"},{"euler":{"heading":68.84942896929154,"pitch":-18.64363005257883,"roll":-17.20698438075361},"location":"Right Ankle"},{"euler":{"heading":143.0637272534544,"pitch":-163.15165705747603,"roll":50.587539442914455},"location":"Right Hip"},{"euler":{"heading":112.32460388455647,"pitch":-101.82316475292404,"roll":37.5394519821115},"location":"Right Knee"},{"euler":{"heading":31.20974259890525,"pitch":-135.2883811131884,"roll":58.97839564393805},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.811"} +{"sensors":[{"euler":{"heading":56.16433545922584,"pitch":124.32249007441027,"roll":18.11167671389977},"location":"Left Knee"},{"euler":{"heading":53.6232872571681,"pitch":98.2012060031175,"roll":19.11889428977114},"location":"Left Ankle"},{"euler":{"heading":70.39573607236238,"pitch":-19.473017047320948,"roll":-16.79878594267825},"location":"Right Ankle"},{"euler":{"heading":142.95735452810897,"pitch":-163.33649135172843,"roll":50.64753549862301},"location":"Right Hip"},{"euler":{"heading":101.61714349610082,"pitch":-102.32209827763165,"roll":39.041756783900354},"location":"Right Knee"},{"euler":{"heading":29.888768339014728,"pitch":-135.94704300186956,"roll":59.29305607954424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.912"} +{"sensors":[{"euler":{"heading":59.666651913303255,"pitch":123.61524106696925,"roll":15.800509042509791},"location":"Left Knee"},{"euler":{"heading":56.25470853145129,"pitch":98.53108540280576,"roll":22.31950486079403},"location":"Left Ankle"},{"euler":{"heading":71.60616246512615,"pitch":-20.206965342588852,"roll":-16.550157348410426},"location":"Right Ankle"},{"euler":{"heading":142.94911907529806,"pitch":-163.5715922165556,"roll":51.1702819487607},"location":"Right Hip"},{"euler":{"heading":92.61792914649074,"pitch":-102.8898884498685,"roll":39.837581105510324},"location":"Right Knee"},{"euler":{"heading":27.812391505113258,"pitch":-134.50233870168262,"roll":59.013750471589816},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.15"} +{"sensors":[{"euler":{"heading":61.24998672197293,"pitch":123.77246696027233,"roll":14.951708138258812},"location":"Left Knee"},{"euler":{"heading":57.16048767830616,"pitch":97.89672686252518,"roll":23.35630437471463},"location":"Left Ankle"},{"euler":{"heading":72.45804621861353,"pitch":-20.855018808329966,"roll":-16.526391613569384},"location":"Right Ankle"},{"euler":{"heading":143.42295716776826,"pitch":-163.72068299490002,"roll":51.82825375388463},"location":"Right Hip"},{"euler":{"heading":85.20613623184165,"pitch":-103.16964960488164,"roll":40.072572994959295},"location":"Right Knee"},{"euler":{"heading":25.381152354601934,"pitch":-132.87710483151434,"roll":58.18112542443084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.116"} +{"sensors":[{"euler":{"heading":58.76248804977564,"pitch":125.1077202642451,"roll":16.05653732443293},"location":"Left Knee"},{"euler":{"heading":55.01943891047555,"pitch":96.90705417627267,"roll":21.664423937243168},"location":"Left Ankle"},{"euler":{"heading":72.75599159675218,"pitch":-21.28826692749697,"roll":-16.705002452212447},"location":"Right Ankle"},{"euler":{"heading":144.11816145099144,"pitch":-163.90486469541003,"roll":52.476678378496175},"location":"Right Hip"},{"euler":{"heading":78.9917726086575,"pitch":-103.38393464439348,"roll":39.79031569546337},"location":"Right Knee"},{"euler":{"heading":23.23678711914174,"pitch":-131.32064434836292,"roll":57.36301288198776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.216"} +{"sensors":[{"euler":{"heading":54.48623924479808,"pitch":127.1719482378206,"roll":17.96338359198964},"location":"Left Knee"},{"euler":{"heading":51.223745019427994,"pitch":95.67259875864539,"roll":18.08548154351885},"location":"Left Ankle"},{"euler":{"heading":72.32414243707697,"pitch":-21.37194023474727,"roll":-17.297002206991202},"location":"Right Ankle"},{"euler":{"heading":144.90634530589227,"pitch":-164.26437822586902,"roll":53.11651054064656},"location":"Right Hip"},{"euler":{"heading":73.99259534779176,"pitch":-103.48304117995413,"roll":38.92378412591703},"location":"Right Knee"},{"euler":{"heading":21.83810840722757,"pitch":-130.20107991352663,"roll":56.820461593788984},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.317"} +{"sensors":[{"euler":{"heading":51.700115320318275,"pitch":128.46725341403854,"roll":19.623295232790678},"location":"Left Knee"},{"euler":{"heading":48.19512051748519,"pitch":95.05533888278086,"roll":15.245683389166963},"location":"Left Ankle"},{"euler":{"heading":71.08547819336928,"pitch":-21.234746211272544,"roll":-18.24855198629208},"location":"Right Ankle"},{"euler":{"heading":145.73446077530303,"pitch":-164.8441904032821,"roll":53.8236094865819},"location":"Right Hip"},{"euler":{"heading":70.48708581301258,"pitch":-103.29723706195873,"roll":37.306405713325326},"location":"Right Knee"},{"euler":{"heading":21.079297566504813,"pitch":-129.47472192217396,"roll":56.482165434410085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.417"} +{"sensors":[{"euler":{"heading":49.905103788286446,"pitch":128.9705280726347,"roll":20.885965709511613},"location":"Left Knee"},{"euler":{"heading":46.713108465736674,"pitch":94.88105499450278,"roll":13.646115050250268},"location":"Left Ankle"},{"euler":{"heading":68.00818037403235,"pitch":-20.480021590145288,"roll":-19.386196787662875},"location":"Right Ankle"},{"euler":{"heading":146.95476469777273,"pitch":-164.6972713629539,"roll":54.17874853792371},"location":"Right Hip"},{"euler":{"heading":68.42587723171133,"pitch":-102.76751335576286,"roll":34.6695151419928},"location":"Right Knee"},{"euler":{"heading":20.252617809854332,"pitch":-128.73349972995658,"roll":56.44019889096908},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.518"} +{"sensors":[{"euler":{"heading":48.614593409457804,"pitch":129.07972526537122,"roll":21.74736913856045},"location":"Left Knee"},{"euler":{"heading":45.904297619163,"pitch":94.66794949505251,"roll":12.706503545225242},"location":"Left Ankle"},{"euler":{"heading":64.42611233662912,"pitch":-19.194519431130757,"roll":-20.40382710889659},"location":"Right Ankle"},{"euler":{"heading":148.63428822799546,"pitch":-163.89004422665852,"roll":53.76087368413134},"location":"Right Hip"},{"euler":{"heading":66.3082895085402,"pitch":-102.34076202018659,"roll":32.15881362779351},"location":"Right Knee"},{"euler":{"heading":19.6898560288689,"pitch":-128.87889975696092,"roll":56.63992900187217},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.618"} +{"sensors":[{"euler":{"heading":47.70313406851203,"pitch":128.9967527388341,"roll":22.241382224704406},"location":"Left Knee"},{"euler":{"heading":46.29511785724671,"pitch":94.53865454554727,"roll":12.729603190702719},"location":"Left Ankle"},{"euler":{"heading":64.28350110296621,"pitch":-18.587567488017683,"roll":-20.99469439800693},"location":"Right Ankle"},{"euler":{"heading":149.97710940519593,"pitch":-163.07603980399267,"roll":52.83478631571821},"location":"Right Hip"},{"euler":{"heading":62.87121055768618,"pitch":-101.73168581816793,"roll":31.292932265014166},"location":"Right Knee"},{"euler":{"heading":19.42087042598201,"pitch":-129.75350978126482,"roll":57.03843610168495},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.719"} +{"sensors":[{"euler":{"heading":47.389070661660824,"pitch":128.6408274649507,"roll":22.373494002233965},"location":"Left Knee"},{"euler":{"heading":46.79060607152204,"pitch":94.33478909099254,"roll":13.012892871632447},"location":"Left Ankle"},{"euler":{"heading":65.15515099266959,"pitch":-19.178810739215916,"roll":-20.60147495820624},"location":"Right Ankle"},{"euler":{"heading":150.49814846467635,"pitch":-162.7496858235934,"roll":51.682557684146396},"location":"Right Hip"},{"euler":{"heading":58.227839501917565,"pitch":-101.02726723635114,"roll":32.44488903851275},"location":"Right Knee"},{"euler":{"heading":19.44128338338381,"pitch":-131.12815880313835,"roll":57.57209249151646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.821"} +{"sensors":[{"euler":{"heading":47.88141359549475,"pitch":128.10174471845562,"roll":21.929894602010567},"location":"Left Knee"},{"euler":{"heading":47.77404546436984,"pitch":94.1138101818933,"roll":13.786603584469201},"location":"Left Ankle"},{"euler":{"heading":68.21463589340263,"pitch":-20.298429665294325,"roll":-19.260077462385617},"location":"Right Ankle"},{"euler":{"heading":150.17333361820872,"pitch":-162.63096724123406,"roll":50.945551915731755},"location":"Right Hip"},{"euler":{"heading":52.91755555172581,"pitch":-100.74954051271602,"roll":35.01290013466148},"location":"Right Knee"},{"euler":{"heading":19.603405045045427,"pitch":-132.8715929228245,"roll":58.164883242364816},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.925"} +{"sensors":[{"euler":{"heading":49.049522235945275,"pitch":127.53532024661007,"roll":20.90565514180951},"location":"Left Knee"},{"euler":{"heading":49.40289091793286,"pitch":93.91492916370397,"roll":15.270443226022282},"location":"Left Ankle"},{"euler":{"heading":70.72442230406237,"pitch":-20.94983669876489,"roll":-18.059069716147057},"location":"Right Ankle"},{"euler":{"heading":148.76850025638785,"pitch":-162.78037051711064,"roll":50.819746724158584},"location":"Right Hip"},{"euler":{"heading":83.16954999655323,"pitch":-101.29958646144442,"roll":37.66786012119533},"location":"Right Knee"},{"euler":{"heading":19.918064540540882,"pitch":-135.09693363054205,"roll":58.823394918128336},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.25"} +{"sensors":[{"euler":{"heading":51.49457001235075,"pitch":127.10678822194907,"roll":18.85883962762856},"location":"Left Knee"},{"euler":{"heading":51.675101826139574,"pitch":93.69843624733358,"roll":17.962148903420054},"location":"Left Ankle"},{"euler":{"heading":71.98948007365614,"pitch":-20.9423530288884,"roll":-17.615662744532354},"location":"Right Ankle"},{"euler":{"heading":147.84790023074908,"pitch":-162.81483346539957,"roll":50.844022051742726},"location":"Right Hip"},{"euler":{"heading":110.4088449968979,"pitch":-102.26962781529997,"roll":39.3510741090758},"location":"Right Knee"},{"euler":{"heading":19.795008086486792,"pitch":-136.28724026748785,"roll":59.2723054263155},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.128"} +{"sensors":[{"euler":{"heading":55.27636301111568,"pitch":126.20235939975417,"roll":16.372955664865703},"location":"Left Knee"},{"euler":{"heading":54.47009164352561,"pitch":94.32234262260023,"roll":21.12218401307805},"location":"Left Ankle"},{"euler":{"heading":72.72803206629052,"pitch":-20.979367725999563,"roll":-17.51034647007912},"location":"Right Ankle"},{"euler":{"heading":146.7381102076742,"pitch":-163.11460011885964,"roll":51.33461984656846},"location":"Right Hip"},{"euler":{"heading":99.78046049720811,"pitch":-103.40516503376998,"roll":40.159716698168225},"location":"Right Knee"},{"euler":{"heading":18.584257277838113,"pitch":-134.93351624073907,"roll":59.20132488368395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.229"} +{"sensors":[{"euler":{"heading":58.04872671000412,"pitch":126.11962345977875,"roll":14.866910098379133},"location":"Left Knee"},{"euler":{"heading":55.68558247917306,"pitch":94.04010836034021,"roll":22.541215611770248},"location":"Left Ankle"},{"euler":{"heading":73.47397885966147,"pitch":-20.98143095339961,"roll":-17.62181182307121},"location":"Right Ankle"},{"euler":{"heading":146.3767991869068,"pitch":-163.20314010697368,"roll":52.06365786191161},"location":"Right Hip"},{"euler":{"heading":90.78366444748731,"pitch":-104.30839853039299,"roll":40.462495028351405},"location":"Right Knee"},{"euler":{"heading":16.825831550054303,"pitch":-133.22766461666515,"roll":58.431192395315556},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.330"} +{"sensors":[{"euler":{"heading":56.887604039003705,"pitch":127.10141111380088,"roll":15.44896908854122},"location":"Left Knee"},{"euler":{"heading":53.97952423125575,"pitch":93.59234752430619,"roll":21.137094050593227},"location":"Left Ankle"},{"euler":{"heading":73.63283097369532,"pitch":-20.75828785805965,"roll":-17.86588064076409},"location":"Right Ankle"},{"euler":{"heading":146.4328692682161,"pitch":-163.15157609627633,"roll":52.78854207572045},"location":"Right Hip"},{"euler":{"heading":83.14279800273859,"pitch":-105.03380867735369,"roll":40.247495525516264},"location":"Right Knee"},{"euler":{"heading":15.243248395048873,"pitch":-131.39864815499863,"roll":57.556823155784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.431"} +{"sensors":[{"euler":{"heading":53.373843635103334,"pitch":128.8100200024208,"roll":17.291572179687098},"location":"Left Knee"},{"euler":{"heading":50.25032180813018,"pitch":93.07686277187557,"roll":17.754634645533905},"location":"Left Ankle"},{"euler":{"heading":73.11329787632579,"pitch":-20.301209072253684,"roll":-18.40429257668768},"location":"Right Ankle"},{"euler":{"heading":146.73958234139448,"pitch":-163.1301684866487,"roll":53.55343786814841},"location":"Right Hip"},{"euler":{"heading":77.00351820246473,"pitch":-105.57417780961832,"roll":39.428995972964636},"location":"Right Knee"},{"euler":{"heading":14.537673555543986,"pitch":-130.17753333949875,"roll":57.019890840205605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.531"} +{"sensors":[{"euler":{"heading":50.592709271593,"pitch":130.07276800217872,"roll":18.949914961718388},"location":"Left Knee"},{"euler":{"heading":47.10028962731717,"pitch":92.98167649468802,"roll":14.841671180980516},"location":"Left Ankle"},{"euler":{"heading":71.75821808869321,"pitch":-19.71483816502832,"roll":-19.445113319018915},"location":"Right Ankle"},{"euler":{"heading":147.35312410725504,"pitch":-163.39215163798383,"roll":54.37309408133356},"location":"Right Hip"},{"euler":{"heading":72.52816638221826,"pitch":-105.6855100286565,"roll":37.97359637566817},"location":"Right Knee"},{"euler":{"heading":14.390156199989589,"pitch":-129.52853000554887,"roll":56.65540175618504},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.632"} +{"sensors":[{"euler":{"heading":49.477188344433706,"pitch":130.27174120196085,"roll":20.25492346554655},"location":"Left Knee"},{"euler":{"heading":45.65901066458545,"pitch":93.28975884521923,"roll":13.307504062882463},"location":"Left Ankle"},{"euler":{"heading":68.8886462798239,"pitch":-18.912104348525485,"roll":-20.731851987117025},"location":"Right Ankle"},{"euler":{"heading":148.74906169652954,"pitch":-163.14668647418546,"roll":54.72328467320021},"location":"Right Hip"},{"euler":{"heading":70.14409974399643,"pitch":-105.11695902579085,"roll":35.36373673810136},"location":"Right Knee"},{"euler":{"heading":14.57614057999063,"pitch":-129.206927004994,"roll":56.60236158056654},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.733"} +{"sensors":[{"euler":{"heading":49.10446950999034,"pitch":129.78831708176477,"roll":21.285681118991896},"location":"Left Knee"},{"euler":{"heading":45.24935959812691,"pitch":93.8670329606973,"roll":12.470503656594218},"location":"Left Ankle"},{"euler":{"heading":65.21228165184152,"pitch":-17.720893913672935,"roll":-21.952416788405323},"location":"Right Ankle"},{"euler":{"heading":150.5304055268766,"pitch":-162.25076782676692,"roll":54.288456205880195},"location":"Right Hip"},{"euler":{"heading":68.2546897695968,"pitch":-104.81776312321178,"roll":32.571113064291225},"location":"Right Knee"},{"euler":{"heading":15.124776521991567,"pitch":-129.39873430449458,"roll":56.84837542250988},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.834"} +{"sensors":[{"euler":{"heading":49.125272558991306,"pitch":128.9282353735883,"roll":22.00711300709271},"location":"Left Knee"},{"euler":{"heading":45.48067363831422,"pitch":94.53032966462757,"roll":12.154703290934798},"location":"Left Ankle"},{"euler":{"heading":63.134803486657376,"pitch":-17.47380452230564,"roll":-22.607175109564793},"location":"Right Ankle"},{"euler":{"heading":152.18361497418894,"pitch":-161.4756910440902,"roll":53.15336058529218},"location":"Right Hip"},{"euler":{"heading":65.27297079263712,"pitch":-104.1297368108906,"roll":31.345251757862105},"location":"Right Knee"},{"euler":{"heading":15.856048869792412,"pitch":-130.25886087404513,"roll":57.22603788025889},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.935"} +{"sensors":[{"euler":{"heading":49.637745303092174,"pitch":127.91041183622949,"roll":22.25640170638344},"location":"Left Knee"},{"euler":{"heading":46.0951062744828,"pitch":95.20229669816482,"roll":12.270482961841319},"location":"Left Ankle"},{"euler":{"heading":63.615073137991644,"pitch":-18.34517407007508,"roll":-21.983957598608313},"location":"Right Ankle"},{"euler":{"heading":148.32150347677003,"pitch":-161.23437193968118,"roll":51.800524526762956},"location":"Right Hip"},{"euler":{"heading":60.70817371337341,"pitch":-103.08551312980156,"roll":32.3294765820759},"location":"Right Knee"},{"euler":{"heading":16.532943982813173,"pitch":-131.5892247866406,"roll":57.647184092233005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.36"} +{"sensors":[{"euler":{"heading":50.71772077278296,"pitch":126.77562065260653,"roll":21.962011535745095},"location":"Left Knee"},{"euler":{"heading":47.098095647034526,"pitch":95.88206702834835,"roll":12.880934665657188},"location":"Left Ankle"},{"euler":{"heading":66.00981582419247,"pitch":-19.52315666306757,"roll":-20.279311838747482},"location":"Right Ankle"},{"euler":{"heading":148.47685312909306,"pitch":-161.33593474571308,"roll":50.95797207408666},"location":"Right Hip"},{"euler":{"heading":54.98110634203607,"pitch":-102.0144618168214,"roll":34.91527892386831},"location":"Right Knee"},{"euler":{"heading":17.342149584531857,"pitch":-133.28655230797656,"roll":58.20121568300971},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.136"} +{"sensors":[{"euler":{"heading":52.40844869550467,"pitch":125.72930858734588,"roll":20.972060382170586},"location":"Left Knee"},{"euler":{"heading":48.61328608233108,"pitch":96.42511032551351,"roll":14.192841199091468},"location":"Left Ankle"},{"euler":{"heading":68.67133424177322,"pitch":-20.327090996760816,"roll":-18.645130654872734},"location":"Right Ankle"},{"euler":{"heading":147.41041781618375,"pitch":-161.87734127114177,"roll":50.655924866678},"location":"Right Hip"},{"euler":{"heading":85.29549570783246,"pitch":-101.44426563513926,"roll":37.467501031481476},"location":"Right Knee"},{"euler":{"heading":18.17668462607867,"pitch":-135.31414707717892,"roll":58.76859411470874},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.237"} +{"sensors":[{"euler":{"heading":55.205103825954204,"pitch":125.0938777286113,"roll":18.849854343953528},"location":"Left Knee"},{"euler":{"heading":50.74570747409797,"pitch":96.65134929296217,"roll":16.798557079182324},"location":"Left Ankle"},{"euler":{"heading":70.1417008175959,"pitch":-20.481881897084737,"roll":-18.08686758938546},"location":"Right Ankle"},{"euler":{"heading":146.88187603456538,"pitch":-162.1271071440276,"roll":50.477832380010206},"location":"Right Hip"},{"euler":{"heading":112.65969613704922,"pitch":-101.61233907162534,"roll":39.09575092833333},"location":"Right Knee"},{"euler":{"heading":18.596516163470806,"pitch":-136.84523236946103,"roll":59.19173470323787},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.338"} +{"sensors":[{"euler":{"heading":58.94084344335879,"pitch":124.27198995575017,"roll":16.283618909558175},"location":"Left Knee"},{"euler":{"heading":53.84613672668817,"pitch":97.48621436366595,"roll":20.31870137126409},"location":"Left Ankle"},{"euler":{"heading":71.05878073583632,"pitch":-20.514943707376265,"roll":-17.665680830446913},"location":"Right Ankle"},{"euler":{"heading":146.07493843110885,"pitch":-162.57689642962484,"roll":50.83629914200919},"location":"Right Hip"},{"euler":{"heading":101.8437265233443,"pitch":-102.42610516446283,"roll":39.9549258355},"location":"Right Knee"},{"euler":{"heading":17.718114547123726,"pitch":-135.8794591325149,"roll":59.28506123291409},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.438"} +{"sensors":[{"euler":{"heading":61.634259099022906,"pitch":124.10104096017517,"roll":14.630257018602357},"location":"Left Knee"},{"euler":{"heading":55.81152305401936,"pitch":97.15634292729936,"roll":22.380581234137683},"location":"Left Ankle"},{"euler":{"heading":71.92165266225268,"pitch":-20.35719933663864,"roll":-17.567862747402224},"location":"Right Ankle"},{"euler":{"heading":145.62369458799796,"pitch":-162.89420678666235,"roll":51.56516922780827},"location":"Right Hip"},{"euler":{"heading":92.27185387100987,"pitch":-103.32099464801655,"roll":40.378183251950006},"location":"Right Knee"},{"euler":{"heading":16.315053092411354,"pitch":-134.21651321926342,"roll":58.712805109622686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.539"} +{"sensors":[{"euler":{"heading":60.50208318912062,"pitch":125.09718686415765,"roll":15.017231316742121},"location":"Left Knee"},{"euler":{"heading":54.38037074861742,"pitch":96.15945863456943,"roll":20.986273110723914},"location":"Left Ankle"},{"euler":{"heading":72.24823739602742,"pitch":-19.852729402974777,"roll":-17.723576472662003},"location":"Right Ankle"},{"euler":{"heading":145.54882512919818,"pitch":-163.12978610799613,"roll":52.36490230502744},"location":"Right Hip"},{"euler":{"heading":84.03216848390888,"pitch":-104.1826451832149,"roll":40.296614926755005},"location":"Right Knee"},{"euler":{"heading":14.80229778317022,"pitch":-132.26361189733709,"roll":57.91027459866042},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.639"} +{"sensors":[{"euler":{"heading":56.62062487020856,"pitch":127.03121817774189,"roll":16.78425818506791},"location":"Left Knee"},{"euler":{"heading":50.667333673755685,"pitch":95.1622627711125,"roll":17.72514579965152},"location":"Left Ankle"},{"euler":{"heading":72.06091365642467,"pitch":-19.1049564626773,"roll":-18.201218825395806},"location":"Right Ankle"},{"euler":{"heading":145.58144261627837,"pitch":-163.4230574971965,"roll":53.184662074524695},"location":"Right Hip"},{"euler":{"heading":77.203951635518,"pitch":-104.9393806648934,"roll":39.6669534340795},"location":"Right Knee"},{"euler":{"heading":13.9033180048532,"pitch":-130.99975070760337,"roll":57.25674713879438},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.740"} +{"sensors":[{"euler":{"heading":54.0460623831877,"pitch":128.3593463599677,"roll":18.324582366561117},"location":"Left Knee"},{"euler":{"heading":48.05685030638011,"pitch":94.79603649400126,"roll":15.53388121968637},"location":"Left Ankle"},{"euler":{"heading":70.8298222907822,"pitch":-18.294460816409572,"roll":-19.137346942856226},"location":"Right Ankle"},{"euler":{"heading":146.01704835465054,"pitch":-163.76200174747686,"roll":53.92869586707223},"location":"Right Hip"},{"euler":{"heading":72.4023064719662,"pitch":-105.25794259840407,"roll":38.15025809067156},"location":"Right Knee"},{"euler":{"heading":13.431736204367878,"pitch":-130.03102563684303,"roll":56.84982242491495},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.841"} +{"sensors":[{"euler":{"heading":52.678956144868934,"pitch":128.79216172397093,"roll":19.454624129905007},"location":"Left Knee"},{"euler":{"heading":46.6199152757421,"pitch":94.80393284460114,"roll":14.074243097717734},"location":"Left Ankle"},{"euler":{"heading":67.75309006170399,"pitch":-17.396264734768614,"roll":-20.167362248570605},"location":"Right Ankle"},{"euler":{"heading":147.10284351918548,"pitch":-163.46080157272917,"roll":54.123326280365006},"location":"Right Hip"},{"euler":{"heading":69.68082582476958,"pitch":-104.96339833856366,"roll":35.52898228160441},"location":"Right Knee"},{"euler":{"heading":13.06356258393109,"pitch":-129.30917307315872,"roll":56.78359018242345},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.942"} +{"sensors":[{"euler":{"heading":51.87356053038204,"pitch":128.58169555157383,"roll":20.371661716914506},"location":"Left Knee"},{"euler":{"heading":46.23917374816789,"pitch":95.02353956014103,"roll":13.43556878794596},"location":"Left Ankle"},{"euler":{"heading":64.3090310555336,"pitch":-16.612888261291754,"roll":-21.113126023713548},"location":"Right Ankle"},{"euler":{"heading":148.56130916726693,"pitch":-162.73347141545625,"roll":53.523493652328504},"location":"Right Hip"},{"euler":{"heading":67.18774324229263,"pitch":-104.4170585047073,"roll":33.138584053443964},"location":"Right Knee"},{"euler":{"heading":13.22595632553798,"pitch":-129.27825576584286,"roll":56.9989811641811},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.43"} +{"sensors":[{"euler":{"heading":51.65495447734384,"pitch":127.94227599641646,"roll":20.978245545223057},"location":"Left Knee"},{"euler":{"heading":46.9590063733511,"pitch":95.43368560412694,"roll":13.604511909151366},"location":"Left Ankle"},{"euler":{"heading":62.98437794998024,"pitch":-16.764099435162578,"roll":-21.539313421342197},"location":"Right Ankle"},{"euler":{"heading":149.92392825054023,"pitch":-162.07887427391063,"roll":52.383644287095656},"location":"Right Hip"},{"euler":{"heading":63.56271891806337,"pitch":-103.51910265423658,"roll":32.47472564809957},"location":"Right Knee"},{"euler":{"heading":13.809610692984183,"pitch":-130.02543018925857,"roll":57.43033304776299},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.144"} +{"sensors":[{"euler":{"heading":52.020709029609456,"pitch":127.0605483967748,"roll":21.149170990700753},"location":"Left Knee"},{"euler":{"heading":47.869355736016,"pitch":95.83406704371424,"roll":14.06906071823623},"location":"Left Ankle"},{"euler":{"heading":64.39844015498223,"pitch":-17.806439491646323,"roll":-20.597882079207977},"location":"Right Ankle"},{"euler":{"heading":146.04403542548621,"pitch":-161.92723684651958,"roll":51.08902985838609},"location":"Right Hip"},{"euler":{"heading":58.58144702625703,"pitch":-102.56719238881293,"roll":33.95225308328961},"location":"Right Knee"},{"euler":{"heading":14.622399623685764,"pitch":-131.52913717033272,"roll":57.98729974298669},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.244"} +{"sensors":[{"euler":{"heading":53.01238812664851,"pitch":126.09199355709733,"roll":20.73425389163068},"location":"Left Knee"},{"euler":{"heading":49.1449201624144,"pitch":96.25066033934282,"roll":15.030904646412608},"location":"Left Ankle"},{"euler":{"heading":67.433596139484,"pitch":-18.907045542481693,"roll":-18.81934387128718},"location":"Right Ankle"},{"euler":{"heading":145.82713188293758,"pitch":-162.13451316186763,"roll":50.31762687254748},"location":"Right Hip"},{"euler":{"heading":88.42955232363133,"pitch":-101.74797314993164,"roll":36.86327777496065},"location":"Right Knee"},{"euler":{"heading":15.453909661317187,"pitch":-133.26372345329943,"roll":58.651069768688025},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.345"} +{"sensors":[{"euler":{"heading":54.698649313983665,"pitch":125.1202942013876,"roll":19.629578502467613},"location":"Left Knee"},{"euler":{"heading":51.19917814617296,"pitch":96.75684430540855,"roll":16.840314181771348},"location":"Left Ankle"},{"euler":{"heading":70.1464865255356,"pitch":-19.44759098823352,"roll":-17.312409484158465},"location":"Right Ankle"},{"euler":{"heading":144.71316869464383,"pitch":-162.67106184568087,"roll":49.92336418529273},"location":"Right Hip"},{"euler":{"heading":114.6303470912682,"pitch":-101.44817583493848,"roll":39.58944999746459},"location":"Right Knee"},{"euler":{"heading":16.32726869518547,"pitch":-135.3123511079695,"roll":59.329712791819226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.446"} +{"sensors":[{"euler":{"heading":57.6912843825853,"pitch":124.39576478124883,"roll":17.379120652220852},"location":"Left Knee"},{"euler":{"heading":53.948010331555665,"pitch":97.39990987486769,"roll":20.075032763594212},"location":"Left Ankle"},{"euler":{"heading":71.53808787298203,"pitch":-19.43408188941017,"roll":-16.73116853574262},"location":"Right Ankle"},{"euler":{"heading":144.19810182517946,"pitch":-162.97270566111277,"roll":49.806027766763464},"location":"Right Hip"},{"euler":{"heading":138.4173123821414,"pitch":-102.02210825144464,"roll":41.380504997718134},"location":"Right Knee"},{"euler":{"heading":16.650791825666925,"pitch":-136.24986599717255,"roll":59.796741512637304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.547"} +{"sensors":[{"euler":{"heading":61.547155944326775,"pitch":123.48118830312396,"roll":14.797458586998767},"location":"Left Knee"},{"euler":{"heading":56.9219592984001,"pitch":98.28491888738093,"roll":23.467529487234792},"location":"Left Ankle"},{"euler":{"heading":72.32802908568382,"pitch":-19.03442370046915,"roll":-16.601801682168357},"location":"Right Ankle"},{"euler":{"heading":143.36579164266152,"pitch":-163.3629350950015,"roll":50.187924990087126},"location":"Right Hip"},{"euler":{"heading":160.08183114392727,"pitch":-103.26989742630018,"roll":42.40495449794632},"location":"Right Knee"},{"euler":{"heading":15.716962643100231,"pitch":-134.6498793974553,"roll":59.74206736137357},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.648"} +{"sensors":[{"euler":{"heading":63.6111903498941,"pitch":123.58931947281157,"roll":13.54271272829889},"location":"Left Knee"},{"euler":{"heading":58.24226336856009,"pitch":97.75642699864284,"roll":24.758276538511314},"location":"Left Ankle"},{"euler":{"heading":72.98272617711545,"pitch":-18.537231330422237,"roll":-16.704121513951524},"location":"Right Ankle"},{"euler":{"heading":142.93546247839538,"pitch":-163.60789158550136,"roll":50.90663249107841},"location":"Right Hip"},{"euler":{"heading":180.01114802953455,"pitch":-104.49915768367016,"roll":42.85820904815169},"location":"Right Knee"},{"euler":{"heading":50.095266378790214,"pitch":-132.72239145770976,"roll":58.96786062523622},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.749"} +{"sensors":[{"euler":{"heading":61.3563213149047,"pitch":124.96788752553041,"roll":14.369691455469},"location":"Left Knee"},{"euler":{"heading":56.13053703170408,"pitch":96.38078429877856,"roll":23.157448884660184},"location":"Left Ankle"},{"euler":{"heading":73.30320355940391,"pitch":-17.921008197380015,"roll":-17.002459362556372},"location":"Right Ankle"},{"euler":{"heading":142.97941623055584,"pitch":-163.72210242695124,"roll":51.69721924197057},"location":"Right Hip"},{"euler":{"heading":162.4162832265811,"pitch":-105.51174191530315,"roll":42.80363814333653},"location":"Right Knee"},{"euler":{"heading":80.9044897409112,"pitch":-130.75640231193879,"roll":58.1148245627126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.850"} +{"sensors":[{"euler":{"heading":57.46443918341423,"pitch":126.88359877297736,"roll":16.2077223099221},"location":"Left Knee"},{"euler":{"heading":51.936233328533675,"pitch":95.18020586890071,"roll":19.410453996194168},"location":"Left Ankle"},{"euler":{"heading":73.01663320346353,"pitch":-17.141407377642015,"roll":-17.564713426300735},"location":"Right Ankle"},{"euler":{"heading":143.38772460750027,"pitch":-163.74364218425612,"roll":52.50249731777352},"location":"Right Hip"},{"euler":{"heading":147.393404903923,"pitch":-106.29181772377284,"roll":42.10452432900287},"location":"Right Knee"},{"euler":{"heading":73.28904076682008,"pitch":-129.56826208074492,"roll":57.48459210644134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.951"} +{"sensors":[{"euler":{"heading":54.97424526507281,"pitch":128.04523889567963,"roll":17.84945007892989},"location":"Left Knee"},{"euler":{"heading":48.68635999568031,"pitch":94.77468528201064,"roll":16.51315859657475},"location":"Left Ankle"},{"euler":{"heading":71.84621988311717,"pitch":-16.346016639877814,"roll":-18.59574208367066},"location":"Right Ankle"},{"euler":{"heading":144.26770214675025,"pitch":-163.83802796583052,"roll":53.26474758599617},"location":"Right Hip"},{"euler":{"heading":135.17281441353072,"pitch":-106.61263595139556,"roll":40.57532189610259},"location":"Right Knee"},{"euler":{"heading":67.11013669013808,"pitch":-128.79893587267043,"roll":57.086132895797206},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.52"} +{"sensors":[{"euler":{"heading":53.55182073856553,"pitch":128.41571500611167,"roll":19.0145050710369},"location":"Left Knee"},{"euler":{"heading":46.973973996112285,"pitch":94.67221675380958,"roll":14.861842736917277},"location":"Left Ankle"},{"euler":{"heading":68.98659789480546,"pitch":-15.605164975890034,"roll":-19.829917875303597},"location":"Right Ankle"},{"euler":{"heading":145.77218193207523,"pitch":-163.56047516924747,"roll":53.49452282739655},"location":"Right Hip"},{"euler":{"heading":125.90553297217765,"pitch":-106.276372356256,"roll":37.95528970649233},"location":"Right Knee"},{"euler":{"heading":61.40537302112427,"pitch":-128.2502922854034,"roll":56.92751960621749},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.153"} +{"sensors":[{"euler":{"heading":52.89038866470898,"pitch":128.1241435055005,"roll":19.91930456393321},"location":"Left Knee"},{"euler":{"heading":46.139076596501056,"pitch":94.85499507842863,"roll":13.76315846322555},"location":"Left Ankle"},{"euler":{"heading":65.41293810532491,"pitch":-14.888398478301031,"roll":-20.959426087773238},"location":"Right Ankle"},{"euler":{"heading":147.5887137388677,"pitch":-162.76067765232273,"roll":52.9763205446569},"location":"Right Hip"},{"euler":{"heading":118.07747967495989,"pitch":-105.84873512063041,"roll":35.1347607358431},"location":"Right Knee"},{"euler":{"heading":56.82108571901184,"pitch":-128.46901305686305,"roll":57.13476764559574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.254"} +{"sensors":[{"euler":{"heading":52.77634979823809,"pitch":127.34297915495047,"roll":20.55237410753989},"location":"Left Knee"},{"euler":{"heading":46.11266893685095,"pitch":95.25074557058576,"roll":13.274342616902993},"location":"Left Ankle"},{"euler":{"heading":63.502894294792426,"pitch":-14.918308630470928,"roll":-21.582233478995914},"location":"Right Ankle"},{"euler":{"heading":149.49234236498094,"pitch":-161.97210988709048,"roll":51.816188490191216},"location":"Right Hip"},{"euler":{"heading":109.8009817074639,"pitch":-105.20136160856737,"roll":33.72753466225879},"location":"Right Knee"},{"euler":{"heading":53.220227147110656,"pitch":-129.37836175117675,"roll":57.53379088103617},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.354"} +{"sensors":[{"euler":{"heading":53.32371481841428,"pitch":126.31493123945542,"roll":20.703386696785902},"location":"Left Knee"},{"euler":{"heading":46.53265204316586,"pitch":95.7381710135272,"roll":13.240658355212695},"location":"Left Ankle"},{"euler":{"heading":64.13385486531318,"pitch":-15.801477767423837,"roll":-21.086510131096325},"location":"Right Ankle"},{"euler":{"heading":145.58685812848285,"pitch":-161.71864889838145,"roll":50.46581964117209},"location":"Right Hip"},{"euler":{"heading":100.38338353671752,"pitch":-104.22497544771063,"roll":34.52353119603291},"location":"Right Knee"},{"euler":{"heading":50.166954432399585,"pitch":-130.8155255760591,"roll":58.05541179293255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.455"} +{"sensors":[{"euler":{"heading":54.372593336572855,"pitch":125.19593811550988,"roll":20.326798027107312},"location":"Left Knee"},{"euler":{"heading":47.42938683884928,"pitch":96.32060391217448,"roll":13.754092519691426},"location":"Left Ankle"},{"euler":{"heading":66.60171937878187,"pitch":-16.890079990681453,"roll":-19.615359117986692},"location":"Right Ankle"},{"euler":{"heading":142.11567231563458,"pitch":-161.8092840085433,"roll":49.60673767705488},"location":"Right Hip"},{"euler":{"heading":126.30129518304577,"pitch":-103.27747790293957,"roll":36.93367807642962},"location":"Right Knee"},{"euler":{"heading":47.60650898915962,"pitch":-132.5964730184532,"roll":58.749870613639295},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.556"} +{"sensors":[{"euler":{"heading":56.085334002915566,"pitch":124.0575943039589,"roll":19.27536822439658},"location":"Left Knee"},{"euler":{"heading":49.067698154964354,"pitch":96.96354352095703,"roll":15.059933267722284},"location":"Left Ankle"},{"euler":{"heading":69.16654744090368,"pitch":-17.526071991613307,"roll":-18.24132320618802},"location":"Right Ankle"},{"euler":{"heading":141.43535508407115,"pitch":-162.30960560768898,"roll":49.38981390934939},"location":"Right Hip"},{"euler":{"heading":148.7774156647412,"pitch":-102.95598011264562,"roll":39.384060268786655},"location":"Right Knee"},{"euler":{"heading":45.65835809024366,"pitch":-134.91182571660786,"roll":59.499883552275364},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.657"} +{"sensors":[{"euler":{"heading":59.11430060262401,"pitch":123.320584873563,"roll":16.991581401956925},"location":"Left Knee"},{"euler":{"heading":51.27342833946793,"pitch":97.39218916886134,"roll":17.835189940950055},"location":"Left Ankle"},{"euler":{"heading":70.46239269681332,"pitch":-17.860964792451977,"roll":-17.65469088556922},"location":"Right Ankle"},{"euler":{"heading":141.54181957566402,"pitch":-162.55364504692008,"roll":49.41333251841445},"location":"Right Hip"},{"euler":{"heading":169.62467409826706,"pitch":-103.57913210138106,"roll":40.75190424190799},"location":"Right Knee"},{"euler":{"heading":43.2237722812193,"pitch":-135.91439314494707,"roll":59.95614519704783},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.758"} +{"sensors":[{"euler":{"heading":62.915370542361615,"pitch":122.41977638620672,"roll":14.373673261761233},"location":"Left Knee"},{"euler":{"heading":54.56483550552114,"pitch":98.2154702519752,"roll":21.50792094685505},"location":"Left Ankle"},{"euler":{"heading":71.42865342713199,"pitch":-18.043618313206778,"roll":-17.3704717970123},"location":"Right Ankle"},{"euler":{"heading":141.18763761809763,"pitch":-163.02328054222806,"roll":49.91574926657301},"location":"Right Hip"},{"euler":{"heading":152.80595668844038,"pitch":-104.47121889124296,"roll":41.482963817717184},"location":"Right Knee"},{"euler":{"heading":39.701395053097364,"pitch":-134.29795383045237,"roll":59.816780677343054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.858"} +{"sensors":[{"euler":{"heading":65.53008348812546,"pitch":122.37154874758605,"roll":12.798805935585111},"location":"Left Knee"},{"euler":{"heading":56.52710195496903,"pitch":97.85017322677768,"roll":23.53212885216955},"location":"Left Ankle"},{"euler":{"heading":71.9920380844188,"pitch":-18.089256481886103,"roll":-17.40842461731107},"location":"Right Ankle"},{"euler":{"heading":141.62512385628787,"pitch":-163.13345248800525,"roll":50.64917433991571},"location":"Right Hip"},{"euler":{"heading":138.23161101959636,"pitch":-105.26159700211866,"roll":41.61591743594547},"location":"Right Knee"},{"euler":{"heading":35.99375554778763,"pitch":-132.41815844740714,"roll":58.985102609608745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.959"} +{"sensors":[{"euler":{"heading":64.32707513931291,"pitch":123.45939387282745,"roll":13.312675342026601},"location":"Left Knee"},{"euler":{"heading":55.19939175947213,"pitch":96.84640590409992,"roll":22.616415966952594},"location":"Left Ankle"},{"euler":{"heading":72.09908427597692,"pitch":-17.955330833697495,"roll":-17.611332155579962},"location":"Right Ankle"},{"euler":{"heading":142.2313614706591,"pitch":-163.20760723920472,"roll":51.465506905924144},"location":"Right Hip"},{"euler":{"heading":125.58969991763674,"pitch":-105.89793730190681,"roll":41.27307569235092},"location":"Right Knee"},{"euler":{"heading":32.569379993008866,"pitch":-130.49509260266643,"roll":58.08034234864787},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.60"} +{"sensors":[{"euler":{"heading":60.67561762538162,"pitch":125.2572044855447,"roll":15.156407807823943},"location":"Left Knee"},{"euler":{"heading":51.441952583524916,"pitch":95.90551531368995,"roll":19.286024370257334},"location":"Left Ankle"},{"euler":{"heading":71.62667584837922,"pitch":-17.57229775032775,"roll":-18.156448940021967},"location":"Right Ankle"},{"euler":{"heading":142.9957253235932,"pitch":-163.37434651528426,"roll":52.268956215331734},"location":"Right Hip"},{"euler":{"heading":114.87447992587306,"pitch":-106.33939357171613,"roll":40.42701812311583},"location":"Right Knee"},{"euler":{"heading":29.987441993707982,"pitch":-129.24558334239978,"roll":57.403558113783085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.161"} +{"sensors":[{"euler":{"heading":57.626805862843455,"pitch":126.76273403699024,"roll":16.97201702704155},"location":"Left Knee"},{"euler":{"heading":48.035257325172424,"pitch":95.51496378232096,"roll":16.163671933231598},"location":"Left Ankle"},{"euler":{"heading":70.2765082635413,"pitch":-16.896317975294973,"roll":-19.17205404601977},"location":"Right Ankle"},{"euler":{"heading":143.79615279123388,"pitch":-163.82441186375584,"roll":53.123310593798564},"location":"Right Hip"},{"euler":{"heading":106.17453193328575,"pitch":-106.47420421454451,"roll":38.821816310804245},"location":"Right Knee"},{"euler":{"heading":28.088697794337186,"pitch":-128.4897750081598,"roll":57.000702302404775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.262"} +{"sensors":[{"euler":{"heading":55.96412527655911,"pitch":127.2802106332912,"roll":18.306065324337396},"location":"Left Knee"},{"euler":{"heading":46.33173159265518,"pitch":95.42596740408888,"roll":14.397304739908439},"location":"Left Ankle"},{"euler":{"heading":67.59885743718718,"pitch":-16.262936177765475,"roll":-20.311098641417793},"location":"Right Ankle"},{"euler":{"heading":145.2477875121105,"pitch":-163.82322067738025,"roll":53.623479534418706},"location":"Right Hip"},{"euler":{"heading":99.90082873995718,"pitch":-106.12053379309006,"roll":36.164634679723825},"location":"Right Knee"},{"euler":{"heading":26.448578014903468,"pitch":-127.95954750734381,"roll":56.8631320721643},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.362"} +{"sensors":[{"euler":{"heading":55.2802127489032,"pitch":126.93343956996208,"roll":19.29420879190366},"location":"Left Knee"},{"euler":{"heading":45.72355843338966,"pitch":95.73337066368,"roll":13.470074265917594},"location":"Left Ankle"},{"euler":{"heading":63.84522169346846,"pitch":-15.367892559988928,"roll":-21.567488777276015},"location":"Right Ankle"},{"euler":{"heading":147.14175876089945,"pitch":-163.04714860964222,"roll":53.38613158097684},"location":"Right Hip"},{"euler":{"heading":94.79824586596146,"pitch":-105.71473041378106,"roll":33.266921211751445},"location":"Right Knee"},{"euler":{"heading":25.54747021341312,"pitch":-127.99484275660943,"roll":57.10181886494787},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.463"} +{"sensors":[{"euler":{"heading":54.91469147401288,"pitch":126.29009561296587,"roll":20.008537912713294},"location":"Left Knee"},{"euler":{"heading":46.01995259005069,"pitch":96.147533597312,"roll":13.241816839325836},"location":"Left Ankle"},{"euler":{"heading":61.56694952412162,"pitch":-15.224853303990036,"roll":-22.473239899548414},"location":"Right Ankle"},{"euler":{"heading":149.16508288480952,"pitch":-162.173683748678,"roll":52.45376842287916},"location":"Right Hip"},{"euler":{"heading":89.29967127936533,"pitch":-105.03075737240296,"roll":31.615229090576303},"location":"Right Knee"},{"euler":{"heading":25.17397319207181,"pitch":-128.87660848094848,"roll":57.579136978453086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.564"} +{"sensors":[{"euler":{"heading":55.07322232661159,"pitch":125.32983605166929,"roll":20.351434121441965},"location":"Left Knee"},{"euler":{"heading":46.66795733104563,"pitch":96.55778023758081,"roll":13.317635155393253},"location":"Left Ankle"},{"euler":{"heading":61.647754571709456,"pitch":-16.29611797359103,"roll":-22.250915909593573},"location":"Right Ankle"},{"euler":{"heading":145.50482459632858,"pitch":-161.8000653738102,"roll":51.08964158059124},"location":"Right Hip"},{"euler":{"heading":82.70095415142879,"pitch":-103.75268163516266,"roll":31.947456181518675},"location":"Right Knee"},{"euler":{"heading":25.200325872864628,"pitch":-130.55769763285363,"roll":58.12122328060778},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.665"} +{"sensors":[{"euler":{"heading":55.70965009395043,"pitch":124.22810244650236,"roll":20.235040709297767},"location":"Left Knee"},{"euler":{"heading":47.67616159794106,"pitch":96.96450221382274,"roll":13.785871639853928},"location":"Left Ankle"},{"euler":{"heading":63.58297911453851,"pitch":-17.24150617623193,"roll":-20.963324318634218},"location":"Right Ankle"},{"euler":{"heading":141.9355921366957,"pitch":-161.6700588364292,"roll":49.974427422532116},"location":"Right Hip"},{"euler":{"heading":74.67460873628592,"pitch":-102.47741347164639,"roll":34.258960563366806},"location":"Right Knee"},{"euler":{"heading":25.442793285578166,"pitch":-132.67067786956827,"roll":58.76535095254701},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.765"} +{"sensors":[{"euler":{"heading":56.838685084555394,"pitch":123.12404220185212,"roll":19.530286638367993},"location":"Left Knee"},{"euler":{"heading":49.31479543814696,"pitch":97.39305199244046,"roll":14.926034475868537},"location":"Left Ankle"},{"euler":{"heading":66.58093120308466,"pitch":-18.104855558608737,"roll":-19.335741886770798},"location":"Right Ankle"},{"euler":{"heading":141.88578292302614,"pitch":-161.9280529527863,"roll":49.5082346802789},"location":"Right Hip"},{"euler":{"heading":102.11964786265733,"pitch":-101.70467212448175,"roll":37.464314507030124},"location":"Right Knee"},{"euler":{"heading":25.767263957020347,"pitch":-135.12861008261143,"roll":59.47006585729231},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.866"} +{"sensors":[{"euler":{"heading":58.95481657609986,"pitch":122.3116379816669,"roll":17.764757974531193},"location":"Left Knee"},{"euler":{"heading":51.483315894332264,"pitch":97.52874679319642,"roll":17.289681028281684},"location":"Left Ankle"},{"euler":{"heading":68.5103380827762,"pitch":-18.456870002747866,"roll":-18.42716769809372},"location":"Right Ankle"},{"euler":{"heading":141.82220463072355,"pitch":-162.26024765750768,"roll":49.46366121225101},"location":"Right Hip"},{"euler":{"heading":126.9139330763916,"pitch":-101.80295491203357,"roll":39.73663305632711},"location":"Right Knee"},{"euler":{"heading":25.990537561318312,"pitch":-137.1594990743503,"roll":60.216809271563086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.966"} +{"sensors":[{"euler":{"heading":62.38433491848988,"pitch":121.37422418350022,"roll":15.232032177078075},"location":"Left Knee"},{"euler":{"heading":55.27248430489904,"pitch":98.55087211387678,"roll":21.07946292545352},"location":"Left Ankle"},{"euler":{"heading":69.82805427449858,"pitch":-18.47368300247308,"roll":-18.00945092828435},"location":"Right Ankle"},{"euler":{"heading":141.6024841676512,"pitch":-162.6654728917569,"roll":49.804795091025916},"location":"Right Hip"},{"euler":{"heading":149.45378976875244,"pitch":-102.56015942083022,"roll":41.2379697506944},"location":"Right Knee"},{"euler":{"heading":24.87273380518648,"pitch":-136.52479916691527,"roll":60.40137834440678},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.67"} +{"sensors":[{"euler":{"heading":65.72715142664089,"pitch":120.9305517651502,"roll":13.077578959370268},"location":"Left Knee"},{"euler":{"heading":57.907735874409134,"pitch":98.34578490248911,"roll":23.90901663290817},"location":"Left Ankle"},{"euler":{"heading":70.73274884704873,"pitch":-18.238814702225774,"roll":-17.977255835455914},"location":"Right Ankle"},{"euler":{"heading":141.5297357508861,"pitch":-162.98642560258122,"roll":50.53056558192333},"location":"Right Hip"},{"euler":{"heading":170.0896607918772,"pitch":-103.71664347874719,"roll":42.01417277562496},"location":"Right Knee"},{"euler":{"heading":22.891710424667835,"pitch":-134.54731925022375,"roll":59.8674905099661},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.168"} +{"sensors":[{"euler":{"heading":66.3231862839768,"pitch":121.63749658863517,"roll":12.71982106343324},"location":"Left Knee"},{"euler":{"heading":57.529462286968226,"pitch":97.2737064122402,"roll":23.974364969617355},"location":"Left Ankle"},{"euler":{"heading":71.24072396234385,"pitch":-17.764933232003198,"roll":-18.20453025191032},"location":"Right Ankle"},{"euler":{"heading":141.70801217579748,"pitch":-163.1690330423231,"roll":51.433759023731},"location":"Right Hip"},{"euler":{"heading":189.02444471268947,"pitch":-104.80747913087248,"roll":42.28775549806247},"location":"Right Knee"},{"euler":{"heading":20.70878938220105,"pitch":-132.44258732520137,"roll":58.8932414589695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.269"} +{"sensors":[{"euler":{"heading":62.97836765557912,"pitch":123.42374692977167,"roll":14.222838957089918},"location":"Left Knee"},{"euler":{"heading":54.0140160582714,"pitch":96.00258577101619,"roll":21.21442847265562},"location":"Left Ankle"},{"euler":{"heading":71.23540156610947,"pitch":-17.138439908802876,"roll":-18.63407722671929},"location":"Right Ankle"},{"euler":{"heading":142.21846095821772,"pitch":-163.3396297380908,"roll":52.3716331213579},"location":"Right Hip"},{"euler":{"heading":170.78450024142052,"pitch":-105.64548121778523,"roll":41.95272994825622},"location":"Right Knee"},{"euler":{"heading":18.912910443980945,"pitch":-130.67332859268123,"roll":58.09766731307255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.369"} +{"sensors":[{"euler":{"heading":59.40553089002121,"pitch":125.36262223679451,"roll":16.144305061380926},"location":"Left Knee"},{"euler":{"heading":49.91886445244426,"pitch":95.26482719391457,"roll":17.642985625390057},"location":"Left Ankle"},{"euler":{"heading":70.58686140949852,"pitch":-16.43709591792259,"roll":-19.45191950404736},"location":"Right Ankle"},{"euler":{"heading":142.93411486239594,"pitch":-163.68066676428174,"roll":53.365719809222114},"location":"Right Hip"},{"euler":{"heading":155.50605021727847,"pitch":-106.10593309600672,"roll":40.8637069534306},"location":"Right Knee"},{"euler":{"heading":18.19661939958285,"pitch":-129.8059957334131,"roll":57.60040058176529},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.470"} +{"sensors":[{"euler":{"heading":57.49622780101909,"pitch":126.20136001311506,"roll":17.661124555242836},"location":"Left Knee"},{"euler":{"heading":47.62697800719984,"pitch":95.41959447452312,"roll":15.353687062851051},"location":"Left Ankle"},{"euler":{"heading":68.51567526854868,"pitch":-16.04338632613033,"roll":-20.562977553642625},"location":"Right Ankle"},{"euler":{"heading":144.14070337615635,"pitch":-163.9938500878536,"roll":54.16664782829991},"location":"Right Hip"},{"euler":{"heading":143.75544519555064,"pitch":-105.83283978640605,"roll":38.627336258087546},"location":"Right Knee"},{"euler":{"heading":17.701957459624566,"pitch":-129.20039616007182,"roll":57.35286052358877},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.576"} +{"sensors":[{"euler":{"heading":56.37785502091718,"pitch":126.38122401180355,"roll":18.688762099718552},"location":"Left Knee"},{"euler":{"heading":46.07053020647985,"pitch":95.39013502707081,"roll":14.093318356565947},"location":"Left Ankle"},{"euler":{"heading":64.73910774169381,"pitch":-15.132797693517299,"roll":-21.794179798278364},"location":"Right Ankle"},{"euler":{"heading":146.0516330385407,"pitch":-163.42571507906825,"roll":54.15623304546992},"location":"Right Hip"},{"euler":{"heading":134.12365067599558,"pitch":-105.48705580776544,"roll":35.63335263227879},"location":"Right Knee"},{"euler":{"heading":17.50676171366211,"pitch":-128.95535654406464,"roll":57.498824471229895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.676"} +{"sensors":[{"euler":{"heading":55.465069518825466,"pitch":126.2681016106232,"roll":19.4198858897467},"location":"Left Knee"},{"euler":{"heading":45.11972718583187,"pitch":95.36987152436373,"roll":13.302736520909352},"location":"Left Ankle"},{"euler":{"heading":61.87769696752443,"pitch":-14.594517924165569,"roll":-22.627261818450528},"location":"Right Ankle"},{"euler":{"heading":148.11521973468663,"pitch":-162.53939357116144,"roll":53.40935974092293},"location":"Right Hip"},{"euler":{"heading":124.69878560839602,"pitch":-104.8008502269889,"roll":33.58876736905091},"location":"Right Knee"},{"euler":{"heading":17.5873355422959,"pitch":-129.6285708896582,"roll":57.84269202410691},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.777"} +{"sensors":[{"euler":{"heading":55.193562566942916,"pitch":125.79754144956088,"roll":19.80914730077203},"location":"Left Knee"},{"euler":{"heading":44.745254467248685,"pitch":95.46413437192737,"roll":12.953712868818418},"location":"Left Ankle"},{"euler":{"heading":61.50242727077199,"pitch":-15.072566131749012,"roll":-22.745785636605476},"location":"Right Ankle"},{"euler":{"heading":149.37244776121796,"pitch":-161.9917042140453,"roll":52.205923766830644},"location":"Right Hip"},{"euler":{"heading":114.35390704755642,"pitch":-103.86451520429002,"roll":33.59864063214582},"location":"Right Knee"},{"euler":{"heading":17.82860198806631,"pitch":-130.84696380069238,"roll":58.28342282169622},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.878"} +{"sensors":[{"euler":{"heading":55.65545631024863,"pitch":124.8865373046048,"roll":19.853232570694825},"location":"Left Knee"},{"euler":{"heading":45.05197902052382,"pitch":95.82397093473463,"roll":13.114591581936576},"location":"Left Ankle"},{"euler":{"heading":63.25218454369479,"pitch":-16.196559518574112,"roll":-21.72745707294493},"location":"Right Ankle"},{"euler":{"heading":145.60395298509616,"pitch":-161.6737837926408,"roll":51.035331390147576},"location":"Right Hip"},{"euler":{"heading":103.27476634280079,"pitch":-102.828063683861,"roll":35.651276568931245},"location":"Right Knee"},{"euler":{"heading":18.37074178925968,"pitch":-132.42476742062314,"roll":58.8800805395266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.979"} +{"sensors":[{"euler":{"heading":56.66491067922377,"pitch":123.82288357414431,"roll":19.386659313625344},"location":"Left Knee"},{"euler":{"heading":46.05303111847144,"pitch":96.27907384126118,"roll":13.90313242374292},"location":"Left Ankle"},{"euler":{"heading":66.25196608932531,"pitch":-17.5456535667167,"roll":-20.042211365650438},"location":"Right Ankle"},{"euler":{"heading":145.48105768658655,"pitch":-161.81265541337672,"roll":50.43179825113282},"location":"Right Hip"},{"euler":{"heading":128.2097897085207,"pitch":-102.0952573154749,"roll":38.67989891203812},"location":"Right Knee"},{"euler":{"heading":19.221167610333712,"pitch":-134.61354067856084,"roll":59.58582248557394},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.80"} +{"sensors":[{"euler":{"heading":58.4234196113014,"pitch":122.9030952167299,"roll":18.104243382262812},"location":"Left Knee"},{"euler":{"heading":47.6477280066243,"pitch":96.53866645713507,"roll":15.669069181368627},"location":"Left Ankle"},{"euler":{"heading":68.32051948039278,"pitch":-18.184838210045033,"roll":-19.025490229085396},"location":"Right Ankle"},{"euler":{"heading":144.7517019179279,"pitch":-162.23138987203905,"roll":50.23861842601954},"location":"Right Hip"},{"euler":{"heading":150.17631073766864,"pitch":-102.16698158392741,"roll":41.09315902083431},"location":"Right Knee"},{"euler":{"heading":20.199050849300342,"pitch":-137.15843661070477,"roll":60.25849023701655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.181"} +{"sensors":[{"euler":{"heading":61.60607765017126,"pitch":122.35028569505691,"roll":15.650069044036531},"location":"Left Knee"},{"euler":{"heading":50.70170520596187,"pitch":97.14104981142157,"roll":19.089662263231766},"location":"Left Ankle"},{"euler":{"heading":69.5509675323535,"pitch":-18.62885438904053,"roll":-18.591691206176858},"location":"Right Ankle"},{"euler":{"heading":144.48903172613512,"pitch":-162.48950088483514,"roll":50.53350658341759},"location":"Right Hip"},{"euler":{"heading":170.58992966390178,"pitch":-102.60028342553467,"roll":42.49634311875088},"location":"Right Knee"},{"euler":{"heading":19.797895764370306,"pitch":-137.4488429496343,"roll":60.5013912133149},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.282"} +{"sensors":[{"euler":{"heading":65.14546988515413,"pitch":121.87150712555123,"roll":13.197562139632879},"location":"Left Knee"},{"euler":{"heading":53.381534685365686,"pitch":97.07069483027941,"roll":22.31194603690859},"location":"Left Ankle"},{"euler":{"heading":70.40837077911814,"pitch":-18.92221895013648,"roll":-18.48252208555917},"location":"Right Ankle"},{"euler":{"heading":144.1151285535216,"pitch":-162.87805079635163,"roll":51.236405925075836},"location":"Right Hip"},{"euler":{"heading":153.5559366975116,"pitch":-103.49025508298121,"roll":43.1654588068758},"location":"Right Knee"},{"euler":{"heading":18.355606187933276,"pitch":-135.57270865467086,"roll":60.145002091983415},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.385"} +{"sensors":[{"euler":{"heading":66.89342289663871,"pitch":122.20935641299612,"roll":12.215305925669592},"location":"Left Knee"},{"euler":{"heading":53.66213121682912,"pitch":96.16987534725148,"roll":23.12450143321773},"location":"Left Ankle"},{"euler":{"heading":70.98628370120633,"pitch":-19.036247055122832,"roll":-18.740519877003255},"location":"Right Ankle"},{"euler":{"heading":144.30361569816944,"pitch":-162.9839957167165,"roll":52.094015332568254},"location":"Right Hip"},{"euler":{"heading":138.65034302776044,"pitch":-104.28497957468309,"roll":43.33016292618822},"location":"Right Knee"},{"euler":{"heading":16.545045569139948,"pitch":-133.55918778920378,"roll":59.19925188278508},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.486"} +{"sensors":[{"euler":{"heading":64.88533060697485,"pitch":123.49467077169652,"roll":13.300025333102633},"location":"Left Knee"},{"euler":{"heading":50.83966809514621,"pitch":95.45913781252634,"roll":20.805801289895957},"location":"Left Ankle"},{"euler":{"heading":70.9939053310857,"pitch":-18.90762234961055,"roll":-19.078967889302927},"location":"Right Ankle"},{"euler":{"heading":144.8482541283525,"pitch":-163.01059614504484,"roll":52.91586379931143},"location":"Right Hip"},{"euler":{"heading":125.84155872498441,"pitch":-104.87523161721478,"roll":42.9721466335694},"location":"Right Knee"},{"euler":{"heading":15.046791012225952,"pitch":-131.6782690102834,"roll":58.30432669450657},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.586"} +{"sensors":[{"euler":{"heading":61.26554754627736,"pitch":125.35145369452687,"roll":15.27002279979237},"location":"Left Knee"},{"euler":{"heading":46.58070128563159,"pitch":94.6319740312737,"roll":17.00022116090636},"location":"Left Ankle"},{"euler":{"heading":70.31951479797713,"pitch":-18.423110114649493,"roll":-19.802321100372637},"location":"Right Ankle"},{"euler":{"heading":145.64467871551724,"pitch":-163.05328653054036,"roll":53.761777419380294},"location":"Right Hip"},{"euler":{"heading":115.05740285248596,"pitch":-105.2689584554933,"roll":41.993681970212464},"location":"Right Knee"},{"euler":{"heading":14.417111911003358,"pitch":-130.51669210925508,"roll":57.68014402505591},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.686"} +{"sensors":[{"euler":{"heading":58.68274279164963,"pitch":126.53505832507419,"roll":17.093020519813134},"location":"Left Knee"},{"euler":{"heading":43.34763115706843,"pitch":94.51252662814633,"roll":14.062699044815723},"location":"Left Ankle"},{"euler":{"heading":68.65631331817943,"pitch":-17.643299103184543,"roll":-20.922088990335375},"location":"Right Ankle"},{"euler":{"heading":146.69271084396553,"pitch":-163.34795787748632,"roll":54.55434967744227},"location":"Right Hip"},{"euler":{"heading":106.48291256723738,"pitch":-105.24206260994397,"roll":40.20681377319122},"location":"Right Knee"},{"euler":{"heading":14.512900719903023,"pitch":-129.63377289832957,"roll":57.38087962255032},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.787"} +{"sensors":[{"euler":{"heading":57.408218512484666,"pitch":126.76905249256677,"roll":18.43996846783182},"location":"Left Knee"},{"euler":{"heading":42.037868041361584,"pitch":94.68627396533171,"roll":12.75017914033415},"location":"Left Ankle"},{"euler":{"heading":65.37193198636149,"pitch":-16.566469192866087,"roll":-22.292380091301837},"location":"Right Ankle"},{"euler":{"heading":148.542189759569,"pitch":-162.9819120897377,"roll":54.72391470969804},"location":"Right Hip"},{"euler":{"heading":100.23462131051365,"pitch":-104.76785634894958,"roll":37.3736323958721},"location":"Right Knee"},{"euler":{"heading":14.480360647912722,"pitch":-128.97039560849663,"roll":57.24904166029529},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.888"} +{"sensors":[{"euler":{"heading":56.548646661236205,"pitch":126.5671472433101,"roll":19.39597162104864},"location":"Left Knee"},{"euler":{"heading":41.27783123722543,"pitch":94.92389656879854,"roll":11.843911226300737},"location":"Left Ankle"},{"euler":{"heading":61.815988787725345,"pitch":-15.59732227357948,"roll":-23.300642082171656},"location":"Right Ankle"},{"euler":{"heading":150.6067207836121,"pitch":-162.02747088076393,"roll":54.12027323872824},"location":"Right Hip"},{"euler":{"heading":94.58615917946229,"pitch":-104.22232071405463,"roll":34.79876915628489},"location":"Right Knee"},{"euler":{"heading":14.713574583121451,"pitch":-130.45460604764696,"roll":57.430387494265766},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.988"} +{"sensors":[{"euler":{"heading":55.95628199511258,"pitch":126.19168251897909,"roll":19.99387445894378},"location":"Left Knee"},{"euler":{"heading":41.02504811350288,"pitch":95.08775691191869,"roll":11.403270103670664},"location":"Left Ankle"},{"euler":{"heading":60.43438990895281,"pitch":-15.625090046221532,"roll":-23.73932787395449},"location":"Right Ankle"},{"euler":{"heading":152.25854870525092,"pitch":-161.26222379268754,"roll":52.945745914855415},"location":"Right Hip"},{"euler":{"heading":87.78379326151605,"pitch":-103.56258864264917,"roll":34.112642240656406},"location":"Right Knee"},{"euler":{"heading":15.035967124809307,"pitch":-130.97164544288228,"roll":57.77484874483919},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.89"} +{"sensors":[{"euler":{"heading":56.00440379560132,"pitch":125.44751426708119,"roll":20.250737013049402},"location":"Left Knee"},{"euler":{"heading":41.2350433021526,"pitch":95.34148122072682,"roll":11.350443093303598},"location":"Left Ankle"},{"euler":{"heading":61.915950918057526,"pitch":-16.45008104159938,"roll":-22.94664508655904},"location":"Right Ankle"},{"euler":{"heading":148.20769383472583,"pitch":-161.05475141341878,"roll":51.657421323369874},"location":"Right Hip"},{"euler":{"heading":79.55541393536444,"pitch":-102.53757977838426,"roll":35.70762801659077},"location":"Right Knee"},{"euler":{"heading":15.482370412328375,"pitch":-132.06823089859407,"roll":58.222363870355274},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.190"} +{"sensors":[{"euler":{"heading":56.65396341604119,"pitch":124.59651284037307,"roll":19.975663311744462},"location":"Left Knee"},{"euler":{"heading":41.96778897193734,"pitch":95.63858309865414,"roll":11.821648783973238},"location":"Left Ankle"},{"euler":{"heading":65.02435582625178,"pitch":-17.58007293743944,"roll":-21.37073057790314},"location":"Right Ankle"},{"euler":{"heading":148.18692445125328,"pitch":-161.1742762720769,"roll":50.80417919103289},"location":"Right Hip"},{"euler":{"heading":106.81237254182801,"pitch":-101.65882180054584,"roll":38.66811521493169},"location":"Right Knee"},{"euler":{"heading":16.059133371095538,"pitch":-133.47390780873468,"roll":58.80637748331975},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.290"} +{"sensors":[{"euler":{"heading":57.91356707443707,"pitch":123.74936155633576,"roll":19.059346980570016},"location":"Left Knee"},{"euler":{"heading":43.358510074743606,"pitch":95.89972478878873,"roll":13.020733905575915},"location":"Left Ankle"},{"euler":{"heading":67.79067024362661,"pitch":-18.465815643695496,"roll":-20.021157520112826},"location":"Right Ankle"},{"euler":{"heading":147.09948200612794,"pitch":-161.60684864486922,"roll":50.5050112719296},"location":"Right Hip"},{"euler":{"heading":130.9373852876452,"pitch":-101.35543962049125,"roll":41.48880369343852},"location":"Right Knee"},{"euler":{"heading":16.909470033985983,"pitch":-135.64526702786122,"roll":59.48198973498778},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.391"} +{"sensors":[{"euler":{"heading":60.253460366993366,"pitch":123.26192540070218,"roll":17.065912282513015},"location":"Left Knee"},{"euler":{"heading":45.62265906726925,"pitch":95.92850230990986,"roll":15.712410515018323},"location":"Left Ankle"},{"euler":{"heading":69.68660321926394,"pitch":-18.956734079325944,"roll":-19.306541768101546},"location":"Right Ankle"},{"euler":{"heading":146.62703380551517,"pitch":-161.7836637803823,"roll":50.42326014473664},"location":"Right Hip"},{"euler":{"heading":152.7748967588807,"pitch":-101.66364565844214,"roll":43.33367332409467},"location":"Right Knee"},{"euler":{"heading":17.587273030587383,"pitch":-136.9994903250751,"roll":60.071290761489},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.492"} +{"sensors":[{"euler":{"heading":63.803114330294036,"pitch":122.41698286063198,"roll":14.434321054261712},"location":"Left Knee"},{"euler":{"heading":49.054143160542324,"pitch":96.42940207891887,"roll":19.57241946351649},"location":"Left Ankle"},{"euler":{"heading":70.93044289733756,"pitch":-19.25481067139335,"roll":-18.925887591291392},"location":"Right Ankle"},{"euler":{"heading":145.97058042496366,"pitch":-162.1115474023441,"roll":50.74343413026297},"location":"Right Hip"},{"euler":{"heading":172.99115708299263,"pitch":-102.58478109259794,"roll":44.356555991685205},"location":"Right Knee"},{"euler":{"heading":16.803545727528647,"pitch":-135.74954129256759,"roll":60.08291168534011},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.593"} +{"sensors":[{"euler":{"heading":66.79155289726464,"pitch":122.38153457456878,"roll":12.565888948835541},"location":"Left Knee"},{"euler":{"heading":51.23622884448809,"pitch":95.82396187102698,"roll":22.102677517164842},"location":"Left Ankle"},{"euler":{"heading":71.7748986076038,"pitch":-19.46057960425402,"roll":-18.82704883216225},"location":"Right Ankle"},{"euler":{"heading":145.93602238246729,"pitch":-162.2378926621097,"roll":51.39409071723667},"location":"Right Hip"},{"euler":{"heading":155.76704137469335,"pitch":-103.47005298333814,"roll":44.74590039251669},"location":"Right Knee"},{"euler":{"heading":51.11694115477578,"pitch":-133.65583716331082,"roll":59.2621205168061},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.696"} +{"sensors":[{"euler":{"heading":66.43114760753818,"pitch":123.3496311171119,"roll":12.684300053951986},"location":"Left Knee"},{"euler":{"heading":50.26260596003928,"pitch":94.92906568392428,"roll":21.479909765448358},"location":"Left Ankle"},{"euler":{"heading":72.24740874684343,"pitch":-19.477021643828614,"roll":-18.994343948946028},"location":"Right Ankle"},{"euler":{"heading":146.12367014422057,"pitch":-162.30785339589872,"roll":52.148431645513},"location":"Right Hip"},{"euler":{"heading":140.61533723722403,"pitch":-104.22304768500433,"roll":44.66506035326502},"location":"Right Knee"},{"euler":{"heading":81.89899703929821,"pitch":-131.57150344697976,"roll":58.317158465125495},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.798"} +{"sensors":[{"euler":{"heading":62.831782846784364,"pitch":125.13966800540071,"roll":14.37837004855679},"location":"Left Knee"},{"euler":{"heading":46.66759536403535,"pitch":93.97365911553185,"roll":18.338168788903523},"location":"Left Ankle"},{"euler":{"heading":72.16641787215909,"pitch":-19.185569479445753,"roll":-19.482409554051426},"location":"Right Ankle"},{"euler":{"heading":146.5488031297985,"pitch":-162.39581805630885,"roll":52.914838480961706},"location":"Right Hip"},{"euler":{"heading":127.51630351350163,"pitch":-104.84449291650391,"roll":44.098554317938515},"location":"Right Knee"},{"euler":{"heading":73.97784733536838,"pitch":-130.0268531022818,"roll":57.67294261861294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.898"} +{"sensors":[{"euler":{"heading":59.098604562105926,"pitch":126.96945120486063,"roll":16.29678304370111},"location":"Left Knee"},{"euler":{"heading":43.10083582763182,"pitch":93.42629320397866,"roll":15.01060191001317},"location":"Left Ankle"},{"euler":{"heading":71.31227608494318,"pitch":-18.57326253150118,"roll":-20.40291859864628},"location":"Right Ankle"},{"euler":{"heading":146.99392281681864,"pitch":-162.69998625067797,"roll":53.779604632865535},"location":"Right Hip"},{"euler":{"heading":116.52717316215147,"pitch":-105.25379362485351,"roll":42.88869888614467},"location":"Right Knee"},{"euler":{"heading":67.38631260183155,"pitch":-129.20541779205362,"roll":57.25564835675165},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.999"} +{"sensors":[{"euler":{"heading":57.12624410589533,"pitch":127.65375608437458,"roll":17.810854739331},"location":"Left Knee"},{"euler":{"heading":41.30950224486863,"pitch":93.4586638835808,"roll":13.103291719011853},"location":"Left Ankle"},{"euler":{"heading":69.17479847644887,"pitch":-17.909686278351064,"roll":-21.543876738781655},"location":"Right Ankle"},{"euler":{"heading":147.78828053513678,"pitch":-162.7924876256102,"roll":54.52039416957898},"location":"Right Hip"},{"euler":{"heading":108.18070584593633,"pitch":-105.17216426236817,"roll":40.699828997530204},"location":"Right Knee"},{"euler":{"heading":61.80393134164839,"pitch":-128.69112601284826,"roll":57.067583521076486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.99"} +{"sensors":[{"euler":{"heading":56.1636196953058,"pitch":127.58838047593713,"roll":18.9047692653979},"location":"Left Knee"},{"euler":{"heading":40.27230202038177,"pitch":93.62529749522272,"roll":11.88046254711067},"location":"Left Ankle"},{"euler":{"heading":65.44481862880399,"pitch":-16.643717650515956,"roll":-22.87073906490349},"location":"Right Ankle"},{"euler":{"heading":149.4344524816231,"pitch":-162.08198886304916,"roll":54.393354752621086},"location":"Right Hip"},{"euler":{"heading":101.6876352613427,"pitch":-104.91119783613135,"roll":37.68609609777718},"location":"Right Knee"},{"euler":{"heading":57.23603820748355,"pitch":-128.82201341156343,"roll":57.25457516896884},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.200"} +{"sensors":[{"euler":{"heading":55.54725772577522,"pitch":127.27329242834341,"roll":19.58304233885811},"location":"Left Knee"},{"euler":{"heading":39.7200718183436,"pitch":93.75651774570046,"roll":11.129916292399603},"location":"Left Ankle"},{"euler":{"heading":62.83783676592359,"pitch":-16.16684588546436,"roll":-23.77741515841314},"location":"Right Ankle"},{"euler":{"heading":151.29100723346082,"pitch":-161.31753997674426,"roll":53.47276927735898},"location":"Right Hip"},{"euler":{"heading":95.08762173520843,"pitch":-104.31382805251822,"roll":35.76748648799946},"location":"Right Knee"},{"euler":{"heading":53.399934386735204,"pitch":-129.67731207040708,"roll":57.62286765207196},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.300"} +{"sensors":[{"euler":{"heading":55.4987819531977,"pitch":126.57721318550907,"roll":19.968488104972298},"location":"Left Knee"},{"euler":{"heading":39.79806463650924,"pitch":94.04961597113042,"roll":10.898174663159642},"location":"Left Ankle"},{"euler":{"heading":62.81655308933124,"pitch":-16.868911296917926,"roll":-23.674673642571825},"location":"Right Ankle"},{"euler":{"heading":152.44315651011473,"pitch":-160.91078597906983,"roll":52.18799234962308},"location":"Right Hip"},{"euler":{"heading":87.1976095616876,"pitch":-103.48244524726641,"roll":36.015737839199524},"location":"Right Knee"},{"euler":{"heading":50.19119094806169,"pitch":-131.0220808633664,"roll":58.104330886864766},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.401"} +{"sensors":[{"euler":{"heading":56.14265375787793,"pitch":125.56324186695817,"roll":19.909139294475068},"location":"Left Knee"},{"euler":{"heading":40.412008172858314,"pitch":94.51340437401738,"roll":11.177107196843679},"location":"Left Ankle"},{"euler":{"heading":65.39739778039811,"pitch":-17.875770167226133,"roll":-22.219706278314646},"location":"Right Ankle"},{"euler":{"heading":152.46134085910325,"pitch":-160.93845738116286,"roll":51.150443114660774},"location":"Right Hip"},{"euler":{"heading":114.05284860551885,"pitch":-102.57795072253977,"roll":38.33291405527957},"location":"Right Knee"},{"euler":{"heading":47.50957185325552,"pitch":-132.68862277702976,"roll":58.70014779817829},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.502"} +{"sensors":[{"euler":{"heading":57.31588838209014,"pitch":124.55066768026235,"roll":19.211975365027563},"location":"Left Knee"},{"euler":{"heading":41.59580735557248,"pitch":94.93706393661564,"roll":12.053146477159311},"location":"Left Ankle"},{"euler":{"heading":68.4076580023583,"pitch":-18.89444315050352,"roll":-20.52273565048318},"location":"Right Ankle"},{"euler":{"heading":151.17145677319294,"pitch":-161.4008616430466,"roll":50.7916488031947},"location":"Right Hip"},{"euler":{"heading":137.19756374496697,"pitch":-102.1389056502858,"roll":41.380872649751616},"location":"Right Knee"},{"euler":{"heading":45.45861466792997,"pitch":-135.0260104993268,"roll":59.41138301836047},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.603"} +{"sensors":[{"euler":{"heading":59.45304954388112,"pitch":123.80810091223613,"roll":17.509527828524806},"location":"Left Knee"},{"euler":{"heading":43.46122662001523,"pitch":95.00585754295408,"roll":14.172831829443382},"location":"Left Ankle"},{"euler":{"heading":70.42314220212248,"pitch":-19.78624883545317,"roll":-19.482962085434863},"location":"Right Ankle"},{"euler":{"heading":150.07931109587366,"pitch":-161.89202547874194,"roll":50.59998392287523},"location":"Right Hip"},{"euler":{"heading":158.35905737047028,"pitch":-102.20626508525723,"roll":43.499035384776455},"location":"Right Knee"},{"euler":{"heading":43.49400320113697,"pitch":-137.0359094493941,"roll":60.06399471652442},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.704"} +{"sensors":[{"euler":{"heading":62.92024458949301,"pitch":123.08354082101252,"roll":15.008575045672327},"location":"Left Knee"},{"euler":{"heading":47.02135395801371,"pitch":95.74902178865868,"roll":17.874298646499042},"location":"Left Ankle"},{"euler":{"heading":71.83082798191023,"pitch":-20.426373951907856,"roll":-18.88466587689138},"location":"Right Ankle"},{"euler":{"heading":149.2401299862863,"pitch":-162.32157293086775,"roll":50.814985530587705},"location":"Right Hip"},{"euler":{"heading":177.86065163342326,"pitch":-102.88563857673151,"roll":44.73038184629881},"location":"Right Knee"},{"euler":{"heading":40.26335288102327,"pitch":-136.4885685044547,"roll":60.151345244871976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.804"} +{"sensors":[{"euler":{"heading":66.1157201305437,"pitch":122.70018673891127,"roll":13.007717541105094},"location":"Left Knee"},{"euler":{"heading":49.49421856221234,"pitch":95.69286960979281,"roll":20.536868781849137},"location":"Left Ankle"},{"euler":{"heading":72.84774518371921,"pitch":-20.92748655671707,"roll":-18.63369928920224},"location":"Right Ankle"},{"euler":{"heading":148.72861698765766,"pitch":-162.68316563778097,"roll":51.370986977528936},"location":"Right Hip"},{"euler":{"heading":195.91208647008094,"pitch":-103.50332471905836,"roll":45.363593661668936},"location":"Right Knee"},{"euler":{"heading":36.59951759292095,"pitch":-134.58346165400923,"roll":59.617460720384784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.905"} +{"sensors":[{"euler":{"heading":66.36039811748934,"pitch":123.31766806502014,"roll":12.894445786994586},"location":"Left Knee"},{"euler":{"heading":49.1885467059911,"pitch":94.90483264881352,"roll":20.489431903664226},"location":"Left Ankle"},{"euler":{"heading":73.4817206653473,"pitch":-21.040987901045366,"roll":-18.751579360282015},"location":"Right Ankle"},{"euler":{"heading":148.6932552888919,"pitch":-162.7460990740029,"roll":52.08388827977605},"location":"Right Hip"},{"euler":{"heading":176.40212782307285,"pitch":-104.15299224715253,"roll":45.50848429550204},"location":"Right Knee"},{"euler":{"heading":33.14581583362885,"pitch":-132.6126154886083,"roll":58.69946464834631},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.6"} +{"sensors":[{"euler":{"heading":63.13685830574041,"pitch":124.84840125851812,"roll":14.523751208295128},"location":"Left Knee"},{"euler":{"heading":46.01969203539199,"pitch":94.05809938393217,"roll":17.752988713297803},"location":"Left Ankle"},{"euler":{"heading":73.42104859881256,"pitch":-20.793139110940828,"roll":-19.095171424253813},"location":"Right Ankle"},{"euler":{"heading":149.0364297600027,"pitch":-162.71523916660263,"roll":52.79424945179845},"location":"Right Hip"},{"euler":{"heading":159.40566504076557,"pitch":-104.66894302243728,"roll":45.08263586595184},"location":"Right Knee"},{"euler":{"heading":30.249984250265967,"pitch":-130.93885393974747,"roll":57.95451818351168},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.106"} +{"sensors":[{"euler":{"heading":59.59817247516637,"pitch":126.58231113266632,"roll":16.508876087465616},"location":"Left Knee"},{"euler":{"heading":42.361472831852794,"pitch":93.46478944553895,"roll":14.290189841968024},"location":"Left Ankle"},{"euler":{"heading":72.5226937389313,"pitch":-20.120075199846745,"roll":-20.010654281828433},"location":"Right Ankle"},{"euler":{"heading":149.63903678400243,"pitch":-162.73746524994235,"roll":53.52107450661861},"location":"Right Hip"},{"euler":{"heading":144.99009853668903,"pitch":-104.95829872019354,"roll":43.92437227935666},"location":"Right Knee"},{"euler":{"heading":28.306235825239373,"pitch":-130.06996854577272,"roll":57.42781636516051},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.207"} +{"sensors":[{"euler":{"heading":57.60710522764973,"pitch":127.2678300193997,"roll":18.164238478719057},"location":"Left Knee"},{"euler":{"heading":40.36907554866752,"pitch":93.68081050098506,"roll":12.136170857771223},"location":"Left Ankle"},{"euler":{"heading":70.28917436503816,"pitch":-19.35806767986207,"roll":-21.178338853645588},"location":"Right Ankle"},{"euler":{"heading":150.65013310560218,"pitch":-162.6512187249481,"roll":54.06271705595675},"location":"Right Hip"},{"euler":{"heading":135.10983868302014,"pitch":-104.73121884817418,"roll":41.663185051420996},"location":"Right Knee"},{"euler":{"heading":26.781862242715434,"pitch":-129.51297169119545,"roll":57.13503472864446},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.308"} +{"sensors":[{"euler":{"heading":56.48389470488476,"pitch":127.30354701745974,"roll":19.28531463084715},"location":"Left Knee"},{"euler":{"heading":39.263417993800765,"pitch":93.90022945088656,"roll":10.9663037719941},"location":"Left Ankle"},{"euler":{"heading":66.46650692853434,"pitch":-17.553510911875865,"roll":-22.660504968281032},"location":"Right Ankle"},{"euler":{"heading":152.37886979504196,"pitch":-161.8860968524533,"roll":53.81269535036108},"location":"Right Hip"},{"euler":{"heading":125.33635481471813,"pitch":-104.33934696335676,"roll":38.840616546278895},"location":"Right Knee"},{"euler":{"heading":25.578676018443893,"pitch":-129.1616745220759,"roll":57.20278125578002},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.409"} +{"sensors":[{"euler":{"heading":55.72925523439629,"pitch":127.02319231571377,"roll":20.038033167762435},"location":"Left Knee"},{"euler":{"heading":39.24332619442069,"pitch":94.1789565057979,"roll":10.51967339479469},"location":"Left Ankle"},{"euler":{"heading":63.73860623568091,"pitch":-16.723159820688277,"roll":-23.52570447145293},"location":"Right Ankle"},{"euler":{"heading":154.03473281553778,"pitch":-161.10998716720798,"roll":52.90017581532498},"location":"Right Hip"},{"euler":{"heading":116.07771933324634,"pitch":-103.8054122670211,"roll":36.98155489165101},"location":"Right Knee"},{"euler":{"heading":24.652058416599505,"pitch":-129.67675706986833,"roll":57.45125313020202},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.509"} +{"sensors":[{"euler":{"heading":55.31257971095666,"pitch":126.57712308414239,"roll":20.459229850986194},"location":"Left Knee"},{"euler":{"heading":39.71899357497862,"pitch":94.3735608552181,"roll":10.667706055315222},"location":"Left Ankle"},{"euler":{"heading":63.48974561211282,"pitch":-17.34459383861945,"roll":-23.404384024307635},"location":"Right Ankle"},{"euler":{"heading":155.006259533984,"pitch":-160.7114884504872,"roll":51.647658233792484},"location":"Right Hip"},{"euler":{"heading":104.50119739992171,"pitch":-102.84987104031899,"roll":37.25839940248591},"location":"Right Knee"},{"euler":{"heading":24.118102574939552,"pitch":-130.9028313628815,"roll":57.89987781718182},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.610"} +{"sensors":[{"euler":{"heading":55.518821739860996,"pitch":125.98191077572815,"roll":20.388306865887575},"location":"Left Knee"},{"euler":{"heading":40.53459421748076,"pitch":94.46745476969629,"roll":11.1946854497837},"location":"Left Ankle"},{"euler":{"heading":65.84702105090155,"pitch":-18.278884454757506,"roll":-22.126445621876872},"location":"Right Ankle"},{"euler":{"heading":154.81188358058563,"pitch":-160.74658960543846,"roll":50.64539241041324},"location":"Right Hip"},{"euler":{"heading":129.43232765992954,"pitch":-101.90863393628709,"roll":39.526309462237315},"location":"Right Knee"},{"euler":{"heading":23.781292317445597,"pitch":-132.56254822659335,"roll":58.422390035463636},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.713"} +{"sensors":[{"euler":{"heading":56.36068956587489,"pitch":125.19621969815535,"roll":19.80572617929882},"location":"Left Knee"},{"euler":{"heading":42.043634795732686,"pitch":94.72070929272667,"roll":12.375216904805331},"location":"Left Ankle"},{"euler":{"heading":69.02481894581139,"pitch":-19.400996009281755,"roll":-20.401301059689185},"location":"Right Ankle"},{"euler":{"heading":153.56194522252707,"pitch":-161.06568064489463,"roll":50.26210316937191},"location":"Right Hip"},{"euler":{"heading":150.8265948939366,"pitch":-101.6302705426584,"roll":42.598678516013585},"location":"Right Knee"},{"euler":{"heading":23.571913085701038,"pitch":-134.48129340393402,"roll":59.080151031917275},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.813"} +{"sensors":[{"euler":{"heading":58.24337060928741,"pitch":124.23909772833981,"roll":18.35640356136894},"location":"Left Knee"},{"euler":{"heading":44.40802131615942,"pitch":95.08613836345401,"roll":14.6189452143248},"location":"Left Ankle"},{"euler":{"heading":70.92233705123026,"pitch":-20.02339640835358,"roll":-19.44242095372027},"location":"Right Ankle"},{"euler":{"heading":151.97450070027438,"pitch":-161.59036258040516,"roll":50.03589285243473},"location":"Right Hip"},{"euler":{"heading":169.98768540454296,"pitch":-101.87349348839255,"roll":44.90756066441223},"location":"Right Knee"},{"euler":{"heading":23.620971777130933,"pitch":-136.44566406354062,"roll":59.84088592872555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.914"} +{"sensors":[{"euler":{"heading":61.58778354835867,"pitch":123.38393795550584,"roll":15.914513205232048},"location":"Left Knee"},{"euler":{"heading":47.917219184543484,"pitch":95.98377452710861,"roll":18.10080069289232},"location":"Left Ankle"},{"euler":{"heading":72.26135334610724,"pitch":-20.38980676751822,"roll":-18.923178858348244},"location":"Right Ankle"},{"euler":{"heading":151.10830063024696,"pitch":-161.83757632236464,"roll":50.16355356719126},"location":"Right Hip"},{"euler":{"heading":187.73266686408869,"pitch":-102.6111441395533,"roll":46.25430459797101},"location":"Right Knee"},{"euler":{"heading":22.42137459941784,"pitch":-136.23859765718657,"roll":60.050547335853},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.15"} +{"sensors":[{"euler":{"heading":65.0915051935228,"pitch":122.89554415995525,"roll":13.610561884708844},"location":"Left Knee"},{"euler":{"heading":50.60674726608914,"pitch":96.08539707439775,"roll":20.99072062360309},"location":"Left Ankle"},{"euler":{"heading":73.07896801149653,"pitch":-20.625826090766395,"roll":-18.87461097251342},"location":"Right Ankle"},{"euler":{"heading":150.36622056722229,"pitch":-162.0538186901282,"roll":50.684698210472135},"location":"Right Hip"},{"euler":{"heading":204.3781501776798,"pitch":-103.51252972559797,"roll":46.841374138173904},"location":"Right Knee"},{"euler":{"heading":20.579237139476056,"pitch":-134.50223789146793,"roll":59.6142426022677},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.116"} +{"sensors":[{"euler":{"heading":66.29485467417052,"pitch":123.34973974395973,"roll":12.92450569623796},"location":"Left Knee"},{"euler":{"heading":50.57732253948022,"pitch":95.21435736695797,"roll":21.335398561242783},"location":"Left Ankle"},{"euler":{"heading":73.65857121034688,"pitch":-20.900743481689755,"roll":-18.987149875262077},"location":"Right Ankle"},{"euler":{"heading":150.07959851050006,"pitch":-162.18593682111538,"roll":51.391228389424924},"location":"Right Hip"},{"euler":{"heading":219.93408515991183,"pitch":-104.21127675303818,"roll":46.932236724356514},"location":"Right Knee"},{"euler":{"heading":54.47756342552846,"pitch":-132.48951410232115,"roll":58.73406834204093},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.216"} +{"sensors":[{"euler":{"heading":63.65286920675347,"pitch":124.77101576956377,"roll":14.200805126614163},"location":"Left Knee"},{"euler":{"heading":47.4883402855322,"pitch":94.33667163026217,"roll":18.901858705118507},"location":"Left Ankle"},{"euler":{"heading":73.7239640893122,"pitch":-20.92316913352078,"roll":-19.288434887735868},"location":"Right Ankle"},{"euler":{"heading":150.15913865945006,"pitch":-162.24234313900385,"roll":52.11460555048244},"location":"Right Hip"},{"euler":{"heading":198.44067664392065,"pitch":-104.76514907773435,"roll":46.526513051920865},"location":"Right Knee"},{"euler":{"heading":49.14230708297561,"pitch":-130.66556269208905,"roll":57.90441150783684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.316"} +{"sensors":[{"euler":{"heading":60.07508228607813,"pitch":126.66266419260741,"roll":16.080724613952746},"location":"Left Knee"},{"euler":{"heading":43.364506256978984,"pitch":93.49675446723596,"roll":15.180422834606656},"location":"Left Ankle"},{"euler":{"heading":73.16406768038098,"pitch":-20.599602220168702,"roll":-20.04084139896228},"location":"Right Ankle"},{"euler":{"heading":150.56197479350504,"pitch":-162.33060882510347,"roll":52.8218949954342},"location":"Right Hip"},{"euler":{"heading":179.8341089795286,"pitch":-105.11363416996092,"roll":45.53636174672878},"location":"Right Knee"},{"euler":{"heading":44.99682637467805,"pitch":-129.56150642288014,"roll":57.326470357053154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.417"} +{"sensors":[{"euler":{"heading":57.63632405747032,"pitch":127.74639777334667,"roll":17.735152152557472},"location":"Left Knee"},{"euler":{"heading":40.346805631281086,"pitch":93.31582902051237,"roll":12.44363055114599},"location":"Left Ankle"},{"euler":{"heading":71.64766091234289,"pitch":-20.083391998151832,"roll":-21.18050725906605},"location":"Right Ankle"},{"euler":{"heading":151.27452731415457,"pitch":-162.58504794259315,"roll":53.55220549589078},"location":"Right Hip"},{"euler":{"heading":164.34444808157573,"pitch":-105.01477075296484,"roll":43.701475572055905},"location":"Right Knee"},{"euler":{"heading":41.70964373721024,"pitch":-128.79285578059213,"roll":57.012573321347844},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.517"} +{"sensors":[{"euler":{"heading":56.46644165172329,"pitch":128.015507996012,"roll":18.892886937301725},"location":"Left Knee"},{"euler":{"heading":38.96212506815298,"pitch":93.51549611846113,"roll":11.08051749603139},"location":"Left Ankle"},{"euler":{"heading":68.4016448211086,"pitch":-19.02505279833665,"roll":-22.537456533159446},"location":"Right Ankle"},{"euler":{"heading":152.3783245827391,"pitch":-162.27029314833382,"roll":53.83448494630171},"location":"Right Hip"},{"euler":{"heading":151.59125327341818,"pitch":-104.63204367766836,"roll":40.90632801485032},"location":"Right Knee"},{"euler":{"heading":38.68867936348922,"pitch":-128.40732020253293,"roll":56.94881598921307},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.618"} +{"sensors":[{"euler":{"heading":55.90729748655096,"pitch":127.62020719641079,"roll":19.82859824357155},"location":"Left Knee"},{"euler":{"heading":38.37216256133768,"pitch":93.97644650661502,"roll":10.147465746428253},"location":"Left Ankle"},{"euler":{"heading":64.96773033899774,"pitch":-17.872547518502984,"roll":-23.777460879843503},"location":"Right Ankle"},{"euler":{"heading":153.6592421244652,"pitch":-161.59326383350046,"roll":53.30728645167154},"location":"Right Hip"},{"euler":{"heading":140.05087794607635,"pitch":-104.18758930990153,"roll":38.31569521336529},"location":"Right Knee"},{"euler":{"heading":36.551061427140304,"pitch":-128.80408818227966,"roll":57.19768439029176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.719"} +{"sensors":[{"euler":{"heading":55.816567737895866,"pitch":126.89568647676973,"roll":20.408238419214396},"location":"Left Knee"},{"euler":{"heading":38.528696305203916,"pitch":94.52255185595351,"roll":9.851469171785428},"location":"Left Ankle"},{"euler":{"heading":63.49595730509797,"pitch":-18.066542766652685,"roll":-24.268464791859152},"location":"Right Ankle"},{"euler":{"heading":154.7495679120187,"pitch":-161.02143745015042,"roll":52.33905780650438},"location":"Right Hip"},{"euler":{"heading":128.15204015146873,"pitch":-103.58133037891137,"roll":37.64037569202876},"location":"Right Knee"},{"euler":{"heading":34.95845528442627,"pitch":-129.9424293640517,"roll":57.61541595126259},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.819"} +{"sensors":[{"euler":{"heading":56.30991096410629,"pitch":125.87486782909276,"roll":20.579914577292953},"location":"Left Knee"},{"euler":{"heading":39.24457667468353,"pitch":95.16404667035816,"roll":10.060072254606885},"location":"Left Ankle"},{"euler":{"heading":64.67761157458817,"pitch":-19.034888489987416,"roll":-23.435368312673237},"location":"Right Ankle"},{"euler":{"heading":154.86211112081685,"pitch":-160.94429370513538,"roll":51.23015202585394},"location":"Right Hip"},{"euler":{"heading":115.46183613632185,"pitch":-102.65444734102024,"roll":39.126338122825885},"location":"Right Knee"},{"euler":{"heading":33.656359755983644,"pitch":-131.4106864276465,"roll":58.14762435613633},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.919"} +{"sensors":[{"euler":{"heading":57.30391986769566,"pitch":124.68738104618349,"roll":20.265673119563658},"location":"Left Knee"},{"euler":{"heading":40.476369007215176,"pitch":95.86014200332235,"roll":10.791565029146197},"location":"Left Ankle"},{"euler":{"heading":67.55360041712936,"pitch":-20.037649640988676,"roll":-21.785581481405917},"location":"Right Ankle"},{"euler":{"heading":153.97590000873515,"pitch":-161.15611433462186,"roll":50.58838682326855},"location":"Right Hip"},{"euler":{"heading":138.34690252268967,"pitch":-102.07025260691823,"roll":42.0887043105433},"location":"Right Knee"},{"euler":{"heading":32.70322378038528,"pitch":-133.11336778488186,"roll":58.870361920522704},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.20"} +{"sensors":[{"euler":{"heading":58.91727788092609,"pitch":123.52489294156514,"roll":19.276605807607293},"location":"Left Knee"},{"euler":{"heading":42.42248210649366,"pitch":96.48662780299013,"roll":12.349908526231577},"location":"Left Ankle"},{"euler":{"heading":69.83574037541642,"pitch":-20.53388467688981,"roll":-20.675773333265326},"location":"Right Ankle"},{"euler":{"heading":152.45331000786163,"pitch":-161.56550290115968,"roll":50.3107981409417},"location":"Right Hip"},{"euler":{"heading":158.4684622704207,"pitch":-101.7569773462264,"roll":44.79233387948897},"location":"Right Knee"},{"euler":{"heading":32.17665140234675,"pitch":-135.49578100639368,"roll":59.652075728470436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.121"} +{"sensors":[{"euler":{"heading":61.57555009283348,"pitch":122.81615364740863,"roll":17.155195226846562},"location":"Left Knee"},{"euler":{"heading":45.117733895844296,"pitch":96.84421502269112,"roll":15.42116767360842},"location":"Left Ankle"},{"euler":{"heading":71.28341633787478,"pitch":-20.68674620920083,"roll":-20.070695999938792},"location":"Right Ankle"},{"euler":{"heading":151.30797900707546,"pitch":-161.9277026110437,"roll":50.28596832684753},"location":"Right Hip"},{"euler":{"heading":176.70911604337863,"pitch":-102.14377961160376,"roll":46.60060049154008},"location":"Right Knee"},{"euler":{"heading":31.383986262112074,"pitch":-137.09620290575432,"roll":60.286868155623395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.222"} +{"sensors":[{"euler":{"heading":65.20549508355013,"pitch":121.90328828266777,"roll":14.633425704161906},"location":"Left Knee"},{"euler":{"heading":48.14346050625987,"pitch":97.44729352042202,"roll":18.92905090624758},"location":"Left Ankle"},{"euler":{"heading":72.11757470408732,"pitch":-20.59307158828075,"roll":-19.863626399944913},"location":"Right Ankle"},{"euler":{"heading":150.07718110636793,"pitch":-162.40368234993934,"roll":50.688621494162774},"location":"Right Hip"},{"euler":{"heading":193.5944544390408,"pitch":-103.21065165044338,"roll":47.59054044238607},"location":"Right Knee"},{"euler":{"heading":29.38933763590087,"pitch":-135.74283261517888,"roll":60.38318134006106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.322"} +{"sensors":[{"euler":{"heading":67.70369557519513,"pitch":121.950459454401,"roll":13.113833133745716},"location":"Left Knee"},{"euler":{"heading":49.422864455633885,"pitch":96.82131416837983,"roll":20.48614581562282},"location":"Left Ankle"},{"euler":{"heading":72.5433172336786,"pitch":-20.233764429452677,"roll":-20.033513759950424},"location":"Right Ankle"},{"euler":{"heading":149.43821299573113,"pitch":-162.6445641149454,"roll":51.388509344746495},"location":"Right Hip"},{"euler":{"heading":209.14125899513672,"pitch":-104.26458648539905,"roll":48.04398639814747},"location":"Right Knee"},{"euler":{"heading":26.656653872310784,"pitch":-133.743549353661,"roll":59.757363206054954},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.423"} +{"sensors":[{"euler":{"heading":66.48332601767562,"pitch":123.13666350896091,"roll":13.627449820371144},"location":"Left Knee"},{"euler":{"heading":47.4868280100705,"pitch":95.80793275154186,"roll":19.16878123406054},"location":"Left Ankle"},{"euler":{"heading":72.55148551031074,"pitch":-19.59163798650741,"roll":-20.405162383955382},"location":"Right Ankle"},{"euler":{"heading":149.11314169615804,"pitch":-162.71760770345088,"roll":52.15590841027185},"location":"Right Hip"},{"euler":{"heading":223.48338309562305,"pitch":-105.19437783685915,"roll":48.00208775833273},"location":"Right Knee"},{"euler":{"heading":59.97848848507971,"pitch":-131.7379444182949,"roll":58.93787688544946},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.523"} +{"sensors":[{"euler":{"heading":62.82874341590806,"pitch":124.99174715806483,"roll":15.51470483833403},"location":"Left Knee"},{"euler":{"heading":43.70689520906345,"pitch":94.77713947638767,"roll":15.764403110654484},"location":"Left Ankle"},{"euler":{"heading":72.12133695927967,"pitch":-18.719974187856668,"roll":-21.033396145559845},"location":"Right Ankle"},{"euler":{"heading":149.07682752654225,"pitch":-162.8145969331058,"roll":52.94031756924466},"location":"Right Hip"},{"euler":{"heading":237.02879478606076,"pitch":-105.94994005317324,"roll":47.37062898249946},"location":"Right Knee"},{"euler":{"heading":54.33688963657174,"pitch":-130.1766499764654,"roll":58.31283919690452},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.624"} +{"sensors":[{"euler":{"heading":60.41461907431725,"pitch":126.11132244225836,"roll":17.28198435450063},"location":"Left Knee"},{"euler":{"heading":40.6862056881571,"pitch":94.56192552874892,"roll":13.056712799589036},"location":"Left Ankle"},{"euler":{"heading":70.59670326335171,"pitch":-17.747976769071,"roll":-22.142556531003862},"location":"Right Ankle"},{"euler":{"heading":149.58164477388803,"pitch":-162.93313723979523,"roll":53.6275358123202},"location":"Right Hip"},{"euler":{"heading":214.6884153074547,"pitch":-106.15494604785592,"roll":45.752316084249514},"location":"Right Knee"},{"euler":{"heading":49.809450672914565,"pitch":-129.13398497881886,"roll":57.89405527721407},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.727"} +{"sensors":[{"euler":{"heading":58.85440716688553,"pitch":126.55019019803252,"roll":18.503785919050568},"location":"Left Knee"},{"euler":{"heading":39.12383511934139,"pitch":94.44323297587403,"roll":11.519791519630134},"location":"Left Ankle"},{"euler":{"heading":67.21203293701655,"pitch":-16.6106790921639,"roll":-23.42205087790348},"location":"Right Ankle"},{"euler":{"heading":150.4797302964992,"pitch":-162.67732351581571,"roll":53.89603223108818},"location":"Right Hip"},{"euler":{"heading":196.50707377670923,"pitch":-105.64570144307032,"roll":42.97083447582457},"location":"Right Knee"},{"euler":{"heading":45.697255605623106,"pitch":-128.42058648093698,"roll":57.785899749492664},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.831"} +{"sensors":[{"euler":{"heading":57.88771645019698,"pitch":126.49517117822927,"roll":19.397157327145514},"location":"Left Knee"},{"euler":{"heading":38.31770160740726,"pitch":94.51765967828662,"roll":10.53656236766712},"location":"Left Ankle"},{"euler":{"heading":63.65957964331489,"pitch":-15.674611182947508,"roll":-24.379845790113134},"location":"Right Ankle"},{"euler":{"heading":151.7130072668493,"pitch":-162.05334116423415,"roll":53.42517900797937},"location":"Right Hip"},{"euler":{"heading":180.09386639903832,"pitch":-105.2686312987633,"roll":40.34250102824211},"location":"Right Knee"},{"euler":{"heading":42.34003004506079,"pitch":-128.3972778328433,"roll":57.9823097745434},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.931"} +{"sensors":[{"euler":{"heading":57.455194805177285,"pitch":126.14565406040634,"roll":19.888691594430966},"location":"Left Knee"},{"euler":{"heading":38.04218144666653,"pitch":94.55964371045796,"roll":10.101656130900409},"location":"Left Ankle"},{"euler":{"heading":62.137371678983406,"pitch":-15.75090006465276,"roll":-24.77311121110182},"location":"Right Ankle"},{"euler":{"heading":152.66670654016437,"pitch":-161.63550704781073,"roll":52.28891110718143},"location":"Right Hip"},{"euler":{"heading":163.94072975913448,"pitch":-104.62301816888697,"roll":39.3082509254179},"location":"Right Knee"},{"euler":{"heading":39.674777040554716,"pitch":-129.08255004955896,"roll":58.402828797089064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.33"} +{"sensors":[{"euler":{"heading":57.49717532465956,"pitch":125.63108865436573,"roll":19.999822434987873},"location":"Left Knee"},{"euler":{"heading":38.30046330199988,"pitch":94.59117933941216,"roll":10.166490517810368},"location":"Left Ankle"},{"euler":{"heading":63.14863451108507,"pitch":-16.694560058187484,"roll":-24.13330008999164},"location":"Right Ankle"},{"euler":{"heading":148.77503588614795,"pitch":-161.62195634302967,"roll":51.04751999646328},"location":"Right Hip"},{"euler":{"heading":147.57165678322104,"pitch":-103.67946635199827,"roll":40.37742583287611},"location":"Right Knee"},{"euler":{"heading":37.61354933649925,"pitch":-130.61179504460307,"roll":58.962545917380154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.134"} +{"sensors":[{"euler":{"heading":58.1787077921936,"pitch":124.90547978892916,"roll":19.618590191489083},"location":"Left Knee"},{"euler":{"heading":39.1266669717999,"pitch":94.73206140547094,"roll":10.756091466029332},"location":"Left Ankle"},{"euler":{"heading":65.84002105997656,"pitch":-18.000104052368737,"roll":-22.601220080992476},"location":"Right Ankle"},{"euler":{"heading":148.56003229753316,"pitch":-161.8035107087267,"roll":50.39276799681696},"location":"Right Hip"},{"euler":{"heading":167.47699110489893,"pitch":-103.13026971679844,"roll":42.908433249588505},"location":"Right Knee"},{"euler":{"heading":36.052194402849324,"pitch":-132.68186554014278,"roll":59.61629132564214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.235"} +{"sensors":[{"euler":{"heading":59.61708701297424,"pitch":124.03368181003624,"roll":18.600481172340178},"location":"Left Knee"},{"euler":{"heading":40.67650027461991,"pitch":94.99010526492386,"roll":12.1242323194264},"location":"Left Ankle"},{"euler":{"heading":68.41226895397891,"pitch":-18.881343647131864,"roll":-21.416098072893227},"location":"Right Ankle"},{"euler":{"heading":147.51652906777986,"pitch":-162.22315963785402,"roll":50.234741197135264},"location":"Right Hip"},{"euler":{"heading":184.67304199440903,"pitch":-103.14849274511859,"roll":45.392589924629654},"location":"Right Knee"},{"euler":{"heading":35.19072496256439,"pitch":-135.4136789861285,"roll":60.304662193077924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.335"} +{"sensors":[{"euler":{"heading":62.355378311676816,"pitch":123.52406362903261,"roll":16.39668305510616},"location":"Left Knee"},{"euler":{"heading":43.12135024715793,"pitch":95.13484473843147,"roll":15.086809087483758},"location":"Left Ankle"},{"euler":{"heading":69.81479205858102,"pitch":-19.71820928241868,"roll":-20.780738265603908},"location":"Right Ankle"},{"euler":{"heading":147.34612616100188,"pitch":-162.4133436740686,"roll":50.230017077421735},"location":"Right Hip"},{"euler":{"heading":200.86823779496814,"pitch":-103.38989347060674,"roll":46.872080932166696},"location":"Right Knee"},{"euler":{"heading":33.89665246630795,"pitch":-136.80356108751565,"roll":60.76169597377013},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.436"} +{"sensors":[{"euler":{"heading":66.07609048050914,"pitch":122.65915726612936,"roll":13.800764749595542},"location":"Left Knee"},{"euler":{"heading":46.590465222442134,"pitch":95.93386026458832,"roll":18.946878178735382},"location":"Left Ankle"},{"euler":{"heading":70.83331285272291,"pitch":-20.377638354176813,"roll":-20.427664439043518},"location":"Right Ankle"},{"euler":{"heading":146.7677635449017,"pitch":-162.90950930666176,"roll":50.66951536967956},"location":"Right Hip"},{"euler":{"heading":215.92516401547135,"pitch":-104.15090412354607,"roll":47.60362283895003},"location":"Right Knee"},{"euler":{"heading":31.488237219677153,"pitch":-135.3607049787641,"roll":60.766776376393125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.537"} +{"sensors":[{"euler":{"heading":68.78098143245822,"pitch":122.44949153951643,"roll":12.201938274635989},"location":"Left Knee"},{"euler":{"heading":48.85641870019792,"pitch":95.72172423812948,"roll":21.133440360861844},"location":"Left Ankle"},{"euler":{"heading":71.56873156745063,"pitch":-20.75862451875913,"roll":-20.378647995139165},"location":"Right Ankle"},{"euler":{"heading":146.82848719041155,"pitch":-163.13105837599556,"roll":51.390063832711604},"location":"Right Hip"},{"euler":{"heading":229.85764761392423,"pitch":-104.90456371119147,"roll":47.81201055505503},"location":"Right Knee"},{"euler":{"heading":28.620663497709437,"pitch":-133.42463448088768,"roll":60.052598738753815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.638"} +{"sensors":[{"euler":{"heading":67.7403832892124,"pitch":123.4045423855648,"roll":12.662994447172391},"location":"Left Knee"},{"euler":{"heading":47.91452683017813,"pitch":94.85580181431654,"roll":20.463846324775663},"location":"Left Ankle"},{"euler":{"heading":71.87435841070557,"pitch":-20.676512066883216,"roll":-20.59703319562525},"location":"Right Ankle"},{"euler":{"heading":147.1206384713704,"pitch":-163.161702538396,"roll":52.20730744944045},"location":"Right Hip"},{"euler":{"heading":242.54063285253181,"pitch":-105.66410734007232,"roll":47.59955949954953},"location":"Right Knee"},{"euler":{"heading":25.814847147938494,"pitch":-131.3446710327989,"roll":59.147338864878435},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.739"} +{"sensors":[{"euler":{"heading":63.891344960291164,"pitch":125.16408814700833,"roll":14.559195002455152},"location":"Left Knee"},{"euler":{"heading":44.660574147160325,"pitch":93.93272163288488,"roll":17.4862116922981},"location":"Left Ankle"},{"euler":{"heading":71.66817256963502,"pitch":-20.246360860194894,"roll":-21.099829876062728},"location":"Right Ankle"},{"euler":{"heading":147.57732462423334,"pitch":-163.24553228455642,"roll":53.05532670449641},"location":"Right Hip"},{"euler":{"heading":218.48031956727863,"pitch":-106.32269660606508,"roll":46.827103549594575},"location":"Right Knee"},{"euler":{"heading":23.545862433144645,"pitch":-129.65395392951902,"roll":58.407604978390594},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.840"} +{"sensors":[{"euler":{"heading":60.10221046426205,"pitch":126.98517933230751,"roll":16.53452550220964},"location":"Left Knee"},{"euler":{"heading":41.29451673244429,"pitch":93.4394494695964,"roll":14.30634052306829},"location":"Left Ankle"},{"euler":{"heading":70.67635531267152,"pitch":-19.609224774175406,"roll":-22.077346888456454},"location":"Right Ankle"},{"euler":{"heading":148.33209216181,"pitch":-163.49597905610077,"roll":53.918544034046775},"location":"Right Hip"},{"euler":{"heading":197.97603761055078,"pitch":-106.53417694545857,"roll":45.30064319463512},"location":"Right Knee"},{"euler":{"heading":22.08502618983018,"pitch":-128.74480853656712,"roll":57.91059448055154},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.940"} +{"sensors":[{"euler":{"heading":58.16698941783585,"pitch":127.60541139907676,"roll":18.112322951988677},"location":"Left Knee"},{"euler":{"heading":39.72131505919987,"pitch":93.42050452263676,"roll":12.644456470761462},"location":"Left Ankle"},{"euler":{"heading":68.13996978140437,"pitch":-18.842052296757867,"roll":-23.300862199610812},"location":"Right Ankle"},{"euler":{"heading":149.667632945629,"pitch":-163.4276311504907,"roll":54.45168963064209},"location":"Right Hip"},{"euler":{"heading":181.2596838494957,"pitch":-106.05575925091271,"roll":42.67682887517161},"location":"Right Knee"},{"euler":{"heading":21.08902357084716,"pitch":-128.1578276829104,"roll":57.68828503249639},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.42"} +{"sensors":[{"euler":{"heading":58.68154047605226,"pitch":127.46987025916908,"roll":19.23859065678981},"location":"Left Knee"},{"euler":{"heading":38.89293355327988,"pitch":93.57220407037309,"roll":11.517510823685315},"location":"Left Ankle"},{"euler":{"heading":64.26972280326393,"pitch":-17.40784706708208,"roll":-24.55827597964973},"location":"Right Ankle"},{"euler":{"heading":151.4321196510661,"pitch":-162.61611803544164,"roll":54.244020667577885},"location":"Right Hip"},{"euler":{"heading":166.59621546454613,"pitch":-105.66268332582145,"roll":39.715395987654446},"location":"Right Knee"},{"euler":{"heading":20.517621213762446,"pitch":-128.19829491461937,"roll":57.813206529246756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.143"} +{"sensors":[{"euler":{"heading":57.86963642844704,"pitch":127.06663323325218,"roll":20.00223159111083},"location":"Left Knee"},{"euler":{"heading":38.659890197951896,"pitch":93.74623366333579,"roll":10.922009741316785},"location":"Left Ankle"},{"euler":{"heading":61.71150052293754,"pitch":-16.935812360373873,"roll":-25.414948381684756},"location":"Right Ankle"},{"euler":{"heading":153.1326576859595,"pitch":-161.80450623189748,"roll":53.3883686008201},"location":"Right Hip"},{"euler":{"heading":152.4490939180915,"pitch":-105.04641499323931,"roll":37.962606388889},"location":"Right Knee"},{"euler":{"heading":20.209609092386202,"pitch":-128.77221542315743,"roll":58.16938587632208},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.244"} +{"sensors":[{"euler":{"heading":57.63267278560234,"pitch":126.34121990992696,"roll":20.439508431999748},"location":"Left Knee"},{"euler":{"heading":39.04390117815671,"pitch":94.0966102970022,"roll":10.811058767185106},"location":"Left Ankle"},{"euler":{"heading":61.66535047064379,"pitch":-17.735981124336487,"roll":-25.254703543516282},"location":"Right Ankle"},{"euler":{"heading":154.08814191736354,"pitch":-161.41155560870772,"roll":52.19953174073809},"location":"Right Hip"},{"euler":{"heading":137.89793452628234,"pitch":-104.26052349391539,"roll":38.3725957500001},"location":"Right Knee"},{"euler":{"heading":20.101148183147583,"pitch":-130.0699938808417,"roll":58.57119728868987},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.344"} +{"sensors":[{"euler":{"heading":58.1194055070421,"pitch":125.36334791893427,"roll":20.370557588799777},"location":"Left Knee"},{"euler":{"heading":39.858261060341036,"pitch":94.54944926730198,"roll":11.192452890466596},"location":"Left Ankle"},{"euler":{"heading":64.0113154235794,"pitch":-18.83113301190284,"roll":-24.022983189164652},"location":"Right Ankle"},{"euler":{"heading":153.94182772562718,"pitch":-161.42040004783695,"roll":51.26707856666428},"location":"Right Hip"},{"euler":{"heading":158.9956410736541,"pitch":-103.36572114452385,"roll":40.51658617500009},"location":"Right Knee"},{"euler":{"heading":20.209783364832823,"pitch":-131.57549449275754,"roll":59.13282755982089},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.444"} +{"sensors":[{"euler":{"heading":59.151214956337896,"pitch":124.29576312704084,"roll":19.7397518299198},"location":"Left Knee"},{"euler":{"heading":41.291184954306935,"pitch":95.03200434057179,"roll":12.216957601419937},"location":"Left Ankle"},{"euler":{"heading":66.84768388122147,"pitch":-19.910519710712556,"roll":-22.426934870248186},"location":"Right Ankle"},{"euler":{"heading":152.88514495306447,"pitch":-161.72211004305325,"roll":50.90912070999785},"location":"Right Hip"},{"euler":{"heading":177.11482696628872,"pitch":-103.04789903007146,"roll":43.33367755750008},"location":"Right Knee"},{"euler":{"heading":20.582555028349542,"pitch":-133.5866950434818,"roll":59.8007948038388},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.545"} +{"sensors":[{"euler":{"heading":61.111093460704105,"pitch":123.25993681433675,"roll":18.209526646927824},"location":"Left Knee"},{"euler":{"heading":43.48706645887624,"pitch":95.3788039065146,"roll":14.414011841277944},"location":"Left Ankle"},{"euler":{"heading":68.78166549309933,"pitch":-20.550717739641303,"roll":-21.465491383223366},"location":"Right Ankle"},{"euler":{"heading":152.04663045775803,"pitch":-161.98114903874793,"roll":50.724458638998065},"location":"Right Hip"},{"euler":{"heading":193.35334426965983,"pitch":-103.44310912706432,"roll":45.369059801750076},"location":"Right Knee"},{"euler":{"heading":21.14304952551459,"pitch":-135.50927553913363,"roll":60.50196532345492},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.646"} +{"sensors":[{"euler":{"heading":64.3937341146337,"pitch":122.44019313290309,"roll":15.726073982235041},"location":"Left Knee"},{"euler":{"heading":46.73835981298862,"pitch":96.06592351586315,"roll":17.97886065715015},"location":"Left Ankle"},{"euler":{"heading":69.99099894378939,"pitch":-20.739395965677172,"roll":-21.08144224490103},"location":"Right Ankle"},{"euler":{"heading":151.21696741198224,"pitch":-162.25178413487313,"roll":51.014512775098254},"location":"Right Hip"},{"euler":{"heading":208.30550984269385,"pitch":-104.36129821435789,"roll":46.53215382157507},"location":"Right Knee"},{"euler":{"heading":20.084994572963133,"pitch":-134.65209798522028,"roll":60.51426879110943},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.747"} +{"sensors":[{"euler":{"heading":67.27936070317033,"pitch":122.20242381961279,"roll":13.822216584011537},"location":"Left Knee"},{"euler":{"heading":49.00827383168976,"pitch":95.94683116427683,"roll":20.299724591435137},"location":"Left Ankle"},{"euler":{"heading":70.79189904941046,"pitch":-21.021706369109456,"roll":-21.029548020410925},"location":"Right Ankle"},{"euler":{"heading":150.80152067078404,"pitch":-162.45785572138584,"roll":51.58181149758843},"location":"Right Hip"},{"euler":{"heading":222.48745885842447,"pitch":-105.1939183929221,"roll":46.991438439417564},"location":"Right Knee"},{"euler":{"heading":18.30149511566682,"pitch":-133.26813818669825,"roll":59.93784191199849},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.848"} +{"sensors":[{"euler":{"heading":67.1764246328533,"pitch":123.06968143765152,"roll":13.671244925610385},"location":"Left Knee"},{"euler":{"heading":48.42619644852079,"pitch":95.00214804784916,"roll":20.094752132291624},"location":"Left Ankle"},{"euler":{"heading":71.28145914446941,"pitch":-21.27578573219851,"roll":-21.23284321836983},"location":"Right Ankle"},{"euler":{"heading":150.78386860370566,"pitch":-162.58707014924727,"roll":52.298630347829594},"location":"Right Hip"},{"euler":{"heading":235.92621297258202,"pitch":-105.75577655362989,"roll":46.92354459547581},"location":"Right Knee"},{"euler":{"heading":52.45884560410015,"pitch":-131.61007436802842,"roll":59.07530772079864},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.948"} +{"sensors":[{"euler":{"heading":64.12753216956797,"pitch":124.58146329388637,"roll":15.166620433049347},"location":"Left Knee"},{"euler":{"heading":45.38982680366871,"pitch":94.22693324306424,"roll":17.529026919062463},"location":"Left Ankle"},{"euler":{"heading":71.15331323002248,"pitch":-21.24195715897866,"roll":-21.659558896532847},"location":"Right Ankle"},{"euler":{"heading":151.1992317433351,"pitch":-162.68461313432255,"roll":52.937517313046634},"location":"Right Hip"},{"euler":{"heading":212.63984167532382,"pitch":-106.0989488982669,"roll":46.30619013592823},"location":"Right Knee"},{"euler":{"heading":47.50046104369014,"pitch":-130.1678169312256,"roll":58.34277694871878},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.49"} +{"sensors":[{"euler":{"heading":60.40852895261118,"pitch":126.39206696449773,"roll":17.024958389744413},"location":"Left Knee"},{"euler":{"heading":42.00084412330184,"pitch":93.51673991875782,"roll":14.357374227156217},"location":"Left Ankle"},{"euler":{"heading":70.23798190702023,"pitch":-20.849011443080794,"roll":-22.481103006879565},"location":"Right Ankle"},{"euler":{"heading":151.8605585690016,"pitch":-162.9036518208903,"roll":53.675015581741974},"location":"Right Hip"},{"euler":{"heading":192.66960750779143,"pitch":-106.17030400844021,"roll":44.95057112233541},"location":"Right Knee"},{"euler":{"heading":43.79416493932113,"pitch":-129.55103523810303,"roll":57.8897492538469},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.150"} +{"sensors":[{"euler":{"heading":58.33642605735006,"pitch":127.10911026804796,"roll":18.43496255076997},"location":"Left Knee"},{"euler":{"heading":40.207009710971654,"pitch":93.28381592688204,"roll":12.571636804440596},"location":"Left Ankle"},{"euler":{"heading":67.9141837163182,"pitch":-20.195360298772712,"roll":-23.601742706191608},"location":"Right Ankle"},{"euler":{"heading":152.89325271210143,"pitch":-162.86328663880127,"roll":54.27626402356778},"location":"Right Hip"},{"euler":{"heading":176.2713967570123,"pitch":-105.6907736075962,"roll":42.50551401010187},"location":"Right Knee"},{"euler":{"heading":40.539748445389016,"pitch":-129.07093171429273,"roll":57.694524328462215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.252"} +{"sensors":[{"euler":{"heading":57.29028345161505,"pitch":127.05444924124316,"roll":19.491466295692973},"location":"Left Knee"},{"euler":{"heading":39.31130873987449,"pitch":93.37418433419384,"roll":11.514473123996536},"location":"Left Ankle"},{"euler":{"heading":64.13526534468639,"pitch":-18.750824268895443,"roll":-24.891568435572445},"location":"Right Ankle"},{"euler":{"heading":154.4976774408913,"pitch":-162.12695797492117,"roll":54.079887621211},"location":"Right Hip"},{"euler":{"heading":161.8880070813111,"pitch":-105.34044624683658,"roll":39.629962609091685},"location":"Right Knee"},{"euler":{"heading":38.06702360085011,"pitch":-129.19508854286346,"roll":57.837571895615994},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.352"} +{"sensors":[{"euler":{"heading":56.730005106453554,"pitch":126.53025431711886,"roll":20.27981966612368},"location":"Left Knee"},{"euler":{"heading":39.705177865887045,"pitch":93.79926590077446,"roll":11.281775811596882},"location":"Left Ankle"},{"euler":{"heading":61.640488810217754,"pitch":-18.138241842005897,"roll":-25.6649115920152},"location":"Right Ankle"},{"euler":{"heading":155.89165969680218,"pitch":-161.40801217742907,"roll":53.2593988590899},"location":"Right Hip"},{"euler":{"heading":147.97420637317998,"pitch":-104.71265162215292,"roll":38.03571634818252},"location":"Right Knee"},{"euler":{"heading":36.1728212407651,"pitch":-130.0505796885771,"roll":58.16631470605439},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.453"} +{"sensors":[{"euler":{"heading":56.732004595808206,"pitch":125.90222888540698,"roll":20.564337699511313},"location":"Left Knee"},{"euler":{"heading":40.484660079298344,"pitch":93.988089310697,"roll":11.728598230437193},"location":"Left Ankle"},{"euler":{"heading":61.73268992919598,"pitch":-18.87441765780531,"roll":-25.43592043281368},"location":"Right Ankle"},{"euler":{"heading":156.52124372712197,"pitch":-161.03596095968618,"roll":52.20845897318091},"location":"Right Hip"},{"euler":{"heading":133.664285735862,"pitch":-103.95388645993764,"roll":38.55714471336427},"location":"Right Knee"},{"euler":{"heading":34.49303911668859,"pitch":-131.45177171971937,"roll":58.59968323544896},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.554"} +{"sensors":[{"euler":{"heading":57.28380413622739,"pitch":125.17450599686629,"roll":20.34540392956018},"location":"Left Knee"},{"euler":{"heading":41.454944071368516,"pitch":94.13928037962731,"roll":12.493238407393473},"location":"Left Ankle"},{"euler":{"heading":64.30317093627639,"pitch":-19.99947589202478,"roll":-24.148578389532315},"location":"Right Ankle"},{"euler":{"heading":156.17536935440978,"pitch":-161.03236486371756,"roll":51.37511307586282},"location":"Right Hip"},{"euler":{"heading":155.0666071622758,"pitch":-103.46474781394387,"roll":40.80143024202785},"location":"Right Knee"},{"euler":{"heading":33.224985205019735,"pitch":-133.37534454774743,"roll":59.12721491190406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.654"} +{"sensors":[{"euler":{"heading":58.39292372260465,"pitch":124.31330539717966,"roll":19.592113536604163},"location":"Left Knee"},{"euler":{"heading":43.121949664231664,"pitch":94.41285234166457,"roll":13.962664566654126},"location":"Left Ankle"},{"euler":{"heading":67.07910384264875,"pitch":-21.174528302822303,"roll":-22.521220550579084},"location":"Right Ankle"},{"euler":{"heading":154.82658241896883,"pitch":-161.4353783773458,"roll":51.05010176827654},"location":"Right Hip"},{"euler":{"heading":173.42869644604824,"pitch":-103.54952303254949,"roll":43.64628721782506},"location":"Right Knee"},{"euler":{"heading":32.55873668451776,"pitch":-135.93781009297268,"roll":59.74574342071366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.756"} +{"sensors":[{"euler":{"heading":60.659881350344186,"pitch":123.5569748574617,"roll":17.76415218294375},"location":"Left Knee"},{"euler":{"heading":45.3097546978085,"pitch":94.37156710749812,"roll":16.591398109988717},"location":"Left Ankle"},{"euler":{"heading":68.72119345838388,"pitch":-21.732075472540075,"roll":-21.719098495521177},"location":"Right Ankle"},{"euler":{"heading":154.15017417707196,"pitch":-161.61684053961122,"roll":50.83884159144888},"location":"Right Hip"},{"euler":{"heading":190.04207680144341,"pitch":-103.85707072929455,"roll":45.54415849604256},"location":"Right Knee"},{"euler":{"heading":32.19661301606598,"pitch":-138.1065290836754,"roll":60.339919078642296},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.856"} +{"sensors":[{"euler":{"heading":64.32514321530977,"pitch":122.63252737171554,"roll":15.243986964649375},"location":"Left Knee"},{"euler":{"heading":48.31002922802765,"pitch":95.47816039674832,"roll":19.863508298989846},"location":"Left Ankle"},{"euler":{"heading":69.8115741125455,"pitch":-22.16511792528607,"roll":-21.31593864596906},"location":"Right Ankle"},{"euler":{"heading":153.64765675936476,"pitch":-161.7676564856501,"roll":51.048707432304},"location":"Right Hip"},{"euler":{"heading":205.69411912129908,"pitch":-104.5838636563651,"roll":46.57099264643831},"location":"Right Knee"},{"euler":{"heading":30.433201714459386,"pitch":-137.69587617530786,"roll":60.43717717077807},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.957"} +{"sensors":[{"euler":{"heading":67.58012889377879,"pitch":122.15677463454398,"roll":13.332088268184439},"location":"Left Knee"},{"euler":{"heading":50.34777630522488,"pitch":95.56159435707349,"roll":21.87090746909086},"location":"Left Ankle"},{"euler":{"heading":70.53041670129095,"pitch":-22.529856132757462,"roll":-21.159344781372155},"location":"Right Ankle"},{"euler":{"heading":153.3766410834283,"pitch":-161.90339083708508,"roll":51.6000866890736},"location":"Right Hip"},{"euler":{"heading":220.34345720916917,"pitch":-105.22547729072858,"roll":47.00139338179448},"location":"Right Knee"},{"euler":{"heading":28.10863154301345,"pitch":-136.20128855777708,"roll":59.89970945370027},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.59"} +{"sensors":[{"euler":{"heading":67.86586600440091,"pitch":122.69109717108958,"roll":13.255129441365995},"location":"Left Knee"},{"euler":{"heading":49.5254986747024,"pitch":95.23668492136615,"roll":21.290066722181773},"location":"Left Ankle"},{"euler":{"heading":70.80862503116185,"pitch":-22.539370519481714,"roll":-21.318410303234938},"location":"Right Ankle"},{"euler":{"heading":153.55772697508547,"pitch":-161.88180175337658,"roll":52.24007802016624},"location":"Right Hip"},{"euler":{"heading":233.84036148825226,"pitch":-105.79042956165573,"roll":46.98875404361503},"location":"Right Knee"},{"euler":{"heading":25.647768388712105,"pitch":-134.28115970199937,"roll":59.06598850833024},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.160"} +{"sensors":[{"euler":{"heading":64.46677940396083,"pitch":124.22823745398063,"roll":14.935866497229394},"location":"Left Knee"},{"euler":{"heading":46.10419880723216,"pitch":94.39426642922955,"roll":18.229810049963596},"location":"Left Ankle"},{"euler":{"heading":70.49026252804566,"pitch":-22.210433467533544,"roll":-21.849069272911446},"location":"Right Ankle"},{"euler":{"heading":154.05820427757692,"pitch":-161.8311215780389,"roll":52.84732021814962},"location":"Right Hip"},{"euler":{"heading":210.63757533942703,"pitch":-106.18638660549016,"roll":46.37112863925353},"location":"Right Knee"},{"euler":{"heading":23.607991549840893,"pitch":-132.64679373179942,"roll":58.365639657497226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.261"} +{"sensors":[{"euler":{"heading":60.68260146356475,"pitch":125.98041370858256,"roll":17.067279847506455},"location":"Left Knee"},{"euler":{"heading":42.406278926508946,"pitch":93.8110897863066,"roll":14.688079044967239},"location":"Left Ankle"},{"euler":{"heading":69.24123627524109,"pitch":-21.47064012078019,"roll":-22.9579123456203},"location":"Right Ankle"},{"euler":{"heading":154.86488384981925,"pitch":-161.816759420235,"roll":53.43758819633466},"location":"Right Hip"},{"euler":{"heading":190.70506780548433,"pitch":-106.28024794494115,"roll":45.015265775328174},"location":"Right Knee"},{"euler":{"heading":22.415942394856803,"pitch":-131.71961435861948,"roll":57.87282569174751},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.362"} +{"sensors":[{"euler":{"heading":58.48934131720828,"pitch":126.73862233772431,"roll":18.654301862755812},"location":"Left Knee"},{"euler":{"heading":40.70940103385806,"pitch":93.76123080767593,"roll":12.731771140470515},"location":"Left Ankle"},{"euler":{"heading":66.65461264771699,"pitch":-20.87982610870217,"roll":-24.199621111058274},"location":"Right Ankle"},{"euler":{"heading":155.96589546483733,"pitch":-161.7538334782115,"roll":53.86882937670119},"location":"Right Hip"},{"euler":{"heading":174.6533110249359,"pitch":-105.71472315044704,"roll":42.54498919779536},"location":"Right Knee"},{"euler":{"heading":21.361848155371124,"pitch":-130.92890292275754,"roll":57.62304312257276},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.465"} +{"sensors":[{"euler":{"heading":57.296657185487454,"pitch":126.82101010395189,"roll":19.763871676480232},"location":"Left Knee"},{"euler":{"heading":39.575960930472256,"pitch":93.74760772690834,"roll":11.558594026423464},"location":"Left Ankle"},{"euler":{"heading":62.914151382945285,"pitch":-18.99184349783195,"roll":-25.673408999952446},"location":"Right Ankle"},{"euler":{"heading":157.4130559183536,"pitch":-161.00970013039037,"roll":53.631946439031076},"location":"Right Hip"},{"euler":{"heading":160.2567299224423,"pitch":-105.41825083540235,"roll":39.64674027801583},"location":"Right Knee"},{"euler":{"heading":20.731913339834012,"pitch":-130.6297626304818,"roll":57.69823881031548},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.566"} +{"sensors":[{"euler":{"heading":56.49824146693871,"pitch":126.67640909355671,"roll":20.456234508832207},"location":"Left Knee"},{"euler":{"heading":39.16836483742503,"pitch":93.7665969542175,"roll":10.915234623781117},"location":"Left Ankle"},{"euler":{"heading":60.41023624465076,"pitch":-18.123909148048757,"roll":-26.343568099957203},"location":"Right Ankle"},{"euler":{"heading":158.82175032651824,"pitch":-160.30873011735133,"roll":52.71250179512797},"location":"Right Hip"},{"euler":{"heading":146.39980693019805,"pitch":-104.79517575186212,"roll":37.87581625021425},"location":"Right Knee"},{"euler":{"heading":21.82747200585061,"pitch":-131.00428636743362,"roll":57.99716492928393},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.666"} +{"sensors":[{"euler":{"heading":56.142167320244845,"pitch":126.32126818420105,"roll":20.798111057948987},"location":"Left Knee"},{"euler":{"heading":39.14527835368253,"pitch":93.72743725879576,"roll":10.711211161403005},"location":"Left Ankle"},{"euler":{"heading":60.50046262018569,"pitch":-18.61776823324388,"roll":-26.102961289961485},"location":"Right Ankle"},{"euler":{"heading":159.46457529386643,"pitch":-159.9653571056162,"roll":51.52875161561517},"location":"Right Hip"},{"euler":{"heading":132.09732623717827,"pitch":-103.97815817667592,"roll":38.26323462519282},"location":"Right Knee"},{"euler":{"heading":21.37597480526555,"pitch":-132.07260773069027,"roll":58.397448436355546},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.768"} +{"sensors":[{"euler":{"heading":56.52170058822036,"pitch":125.63289136578095,"roll":20.718299952154087},"location":"Left Knee"},{"euler":{"heading":39.668250518314274,"pitch":93.86094353291618,"roll":11.008840045262705},"location":"Left Ankle"},{"euler":{"heading":63.01291635816712,"pitch":-19.693491409919492,"roll":-24.71766516096534},"location":"Right Ankle"},{"euler":{"heading":159.0993677644798,"pitch":-160.03757139505458,"roll":50.544626454053656},"location":"Right Hip"},{"euler":{"heading":153.52509361346046,"pitch":-103.21159235900834,"roll":40.455661162673536},"location":"Right Knee"},{"euler":{"heading":21.207127324738995,"pitch":-133.45284695762123,"roll":58.932703592719996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.869"} +{"sensors":[{"euler":{"heading":57.46953052939833,"pitch":124.81335222920286,"roll":20.102719956938678},"location":"Left Knee"},{"euler":{"heading":40.92642546648285,"pitch":94.12484917962458,"roll":11.976706040736435},"location":"Left Ankle"},{"euler":{"heading":66.0616247223504,"pitch":-20.930392268927545,"roll":-22.995898644868806},"location":"Right Ankle"},{"euler":{"heading":157.79568098803182,"pitch":-160.40256425554912,"roll":50.09641380864829},"location":"Right Hip"},{"euler":{"heading":171.94133425211442,"pitch":-103.0716831231075,"roll":43.36634504640618},"location":"Right Knee"},{"euler":{"heading":21.2489145922651,"pitch":-135.3200622618591,"roll":59.539433233447994},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.970"} +{"sensors":[{"euler":{"heading":59.3788274764585,"pitch":124.03826700628258,"roll":18.629947961244813},"location":"Left Knee"},{"euler":{"heading":42.877532919834564,"pitch":94.34361426166211,"roll":13.985285436662792},"location":"Left Ankle"},{"euler":{"heading":68.34921225011536,"pitch":-21.449853042034793,"roll":-21.858808780381928},"location":"Right Ankle"},{"euler":{"heading":156.47236288922866,"pitch":-160.82480782999423,"roll":49.84302242778347},"location":"Right Hip"},{"euler":{"heading":188.23470082690298,"pitch":-103.35826481079675,"roll":45.56096054176557},"location":"Right Knee"},{"euler":{"heading":21.574023133038587,"pitch":-137.3255560356732,"roll":60.1792399101032},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.71"} +{"sensors":[{"euler":{"heading":62.653444728812644,"pitch":123.32194030565432,"roll":16.27945316512033},"location":"Left Knee"},{"euler":{"heading":46.35227962785111,"pitch":95.32800283549591,"roll":17.480506892996516},"location":"Left Ankle"},{"euler":{"heading":69.72054102510383,"pitch":-21.654867737831314,"roll":-21.33542790234374},"location":"Right Ankle"},{"euler":{"heading":155.5063766003058,"pitch":-161.0735770469948,"roll":50.04622018500512},"location":"Right Hip"},{"euler":{"heading":203.30498074421268,"pitch":-104.16618832971707,"roll":46.81736448758901},"location":"Right Knee"},{"euler":{"heading":20.816620819734727,"pitch":-137.46175043210587,"roll":60.31756591909288},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.171"} +{"sensors":[{"euler":{"heading":65.99435025593138,"pitch":122.7647462750889,"roll":14.101507848608296},"location":"Left Knee"},{"euler":{"heading":48.942051665066,"pitch":95.54520255194632,"roll":20.307456203696866},"location":"Left Ankle"},{"euler":{"heading":70.59848692259344,"pitch":-21.833130964048184,"roll":-21.226885112109365},"location":"Right Ankle"},{"euler":{"heading":154.73073894027522,"pitch":-161.32871934229536,"roll":50.64784816650461},"location":"Right Hip"},{"euler":{"heading":217.56198266979143,"pitch":-105.03081949674537,"roll":47.360628038830114},"location":"Right Knee"},{"euler":{"heading":19.347458737761254,"pitch":-135.9843253888953,"roll":59.97330932718359},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.272"} +{"sensors":[{"euler":{"heading":67.20741523033824,"pitch":123.19452164758,"roll":13.397607063747468},"location":"Left Knee"},{"euler":{"heading":49.0728464985594,"pitch":94.64693229675169,"roll":20.88921058332718},"location":"Left Ankle"},{"euler":{"heading":71.0386382303341,"pitch":-21.918567867643368,"roll":-21.27919660089843},"location":"Right Ankle"},{"euler":{"heading":154.5576650462477,"pitch":-161.3645974080658,"roll":51.34556334985415},"location":"Right Hip"},{"euler":{"heading":231.0807844028123,"pitch":-105.64648754707083,"roll":47.32456523494711},"location":"Right Knee"},{"euler":{"heading":17.643962863985127,"pitch":-134.19839285000575,"roll":59.17597839446524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.373"} +{"sensors":[{"euler":{"heading":64.57417370730442,"pitch":124.575069482822,"roll":14.714096357372721},"location":"Left Knee"},{"euler":{"heading":46.584311848703464,"pitch":93.76348906707652,"roll":18.944039524994462},"location":"Left Ankle"},{"euler":{"heading":70.9660244073007,"pitch":-21.764211080879033,"roll":-21.58252694080859},"location":"Right Ankle"},{"euler":{"heading":154.78314854162295,"pitch":-161.34688766725924,"roll":51.98600701486874},"location":"Right Hip"},{"euler":{"heading":243.87895596253108,"pitch":-106.08183879236375,"roll":46.7796087114524},"location":"Right Knee"},{"euler":{"heading":16.035816577586615,"pitch":-132.37230356500515,"roll":58.38338055501872},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.474"} +{"sensors":[{"euler":{"heading":60.829256336573984,"pitch":126.46756253453981,"roll":16.65518672163545},"location":"Left Knee"},{"euler":{"heading":42.91338066383312,"pitch":92.72464016036888,"roll":15.555885572495017},"location":"Left Ankle"},{"euler":{"heading":70.25692196657063,"pitch":-21.15653997279113,"roll":-22.361774246727734},"location":"Right Ankle"},{"euler":{"heading":155.31733368746066,"pitch":-161.29969890053331,"roll":52.537406313381865},"location":"Right Hip"},{"euler":{"heading":220.05981036627796,"pitch":-106.37990491312738,"roll":45.63914784030716},"location":"Right Knee"},{"euler":{"heading":15.182234919827954,"pitch":-131.20382320850464,"roll":57.80129249951685},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.574"} +{"sensors":[{"euler":{"heading":58.327580702916585,"pitch":127.57080628108584,"roll":18.339668049471904},"location":"Left Knee"},{"euler":{"heading":40.04079259744981,"pitch":92.32092614433199,"roll":12.875297015245515},"location":"Left Ankle"},{"euler":{"heading":68.58747976991357,"pitch":-20.27213597551202,"roll":-23.531846822054963},"location":"Right Ankle"},{"euler":{"heading":156.01685031871457,"pitch":-161.42597901047998,"roll":53.15241568204368},"location":"Right Hip"},{"euler":{"heading":199.86632932965017,"pitch":-106.28566442181464,"roll":43.71273305627645},"location":"Right Knee"},{"euler":{"heading":14.851511427845159,"pitch":-130.35844088765418,"roll":57.47741324956516},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.675"} +{"sensors":[{"euler":{"heading":57.14482263262492,"pitch":127.84497565297725,"roll":19.499451244524714},"location":"Left Knee"},{"euler":{"heading":38.65546333770483,"pitch":92.32633352989879,"roll":11.506517313720963},"location":"Left Ankle"},{"euler":{"heading":65.34123179292222,"pitch":-18.838672377960815,"roll":-24.85991213984947},"location":"Right Ankle"},{"euler":{"heading":157.05891528684313,"pitch":-161.089631109432,"roll":53.330924113839316},"location":"Right Hip"},{"euler":{"heading":182.86094639668514,"pitch":-105.85709797963318,"roll":40.8602097506488},"location":"Right Knee"},{"euler":{"heading":14.535110285060643,"pitch":-129.87884679888876,"roll":57.379671924608644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.775"} +{"sensors":[{"euler":{"heading":56.46159036936243,"pitch":127.52297808767953,"roll":20.430756120072246},"location":"Left Knee"},{"euler":{"heading":38.16491700393435,"pitch":92.64370017690891,"roll":10.693365582348868},"location":"Left Ankle"},{"euler":{"heading":62.007108613629995,"pitch":-17.517305140164734,"roll":-25.973920925864526},"location":"Right Ankle"},{"euler":{"heading":158.33427375815882,"pitch":-160.4056679984888,"roll":52.79783170245538},"location":"Right Hip"},{"euler":{"heading":167.54985175701663,"pitch":-105.40263818166986,"roll":38.30543877558392},"location":"Right Knee"},{"euler":{"heading":14.687849256554578,"pitch":-130.05346211899987,"roll":57.597954732147784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.876"} +{"sensors":[{"euler":{"heading":56.21543133242619,"pitch":126.92693027891158,"roll":20.99393050806502},"location":"Left Knee"},{"euler":{"heading":38.192175303540914,"pitch":92.92933015921801,"roll":10.342779024113982},"location":"Left Ankle"},{"euler":{"heading":60.862647752266994,"pitch":-17.70307462614826,"roll":-26.426528833278073},"location":"Right Ankle"},{"euler":{"heading":159.33834638234293,"pitch":-159.89635119863993,"roll":51.768048532209846},"location":"Right Hip"},{"euler":{"heading":152.55111658131497,"pitch":-104.87487436350288,"roll":37.49364489802553},"location":"Right Knee"},{"euler":{"heading":15.19406433089912,"pitch":-131.09186590709987,"roll":58.025659258933004},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.978"} +{"sensors":[{"euler":{"heading":56.54388819918358,"pitch":126.10923725102043,"roll":21.14453745725852},"location":"Left Knee"},{"euler":{"heading":38.67295777318682,"pitch":93.26764714329622,"roll":10.377251121702583},"location":"Left Ankle"},{"euler":{"heading":62.3138829770403,"pitch":-18.882767163533437,"roll":-25.52137594995027},"location":"Right Ankle"},{"euler":{"heading":154.96076174410865,"pitch":-159.87546607877596,"roll":50.61624367898886},"location":"Right Hip"},{"euler":{"heading":173.21475492318348,"pitch":-104.0373869271526,"roll":38.78178040822298},"location":"Right Knee"},{"euler":{"heading":15.899657897809208,"pitch":-132.83267931638989,"roll":58.560593333039705},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.78"} +{"sensors":[{"euler":{"heading":57.42699937926522,"pitch":125.20456352591839,"roll":20.742583711532667},"location":"Left Knee"},{"euler":{"heading":39.624411995868144,"pitch":93.6346324289666,"roll":10.964526009532324},"location":"Left Ankle"},{"euler":{"heading":65.41999467933627,"pitch":-20.138240447180095,"roll":-23.80048835495524},"location":"Right Ankle"},{"euler":{"heading":154.3709355696978,"pitch":-160.16291947089837,"roll":49.99211931108997},"location":"Right Hip"},{"euler":{"heading":190.03702943086515,"pitch":-103.60864823443734,"roll":41.59735236740068},"location":"Right Knee"},{"euler":{"heading":16.609692108028288,"pitch":-134.84316138475089,"roll":59.17328399973574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.179"} +{"sensors":[{"euler":{"heading":59.059299441338695,"pitch":124.28410717332656,"roll":19.612075340379402},"location":"Left Knee"},{"euler":{"heading":41.23072079628133,"pitch":93.96491918606995,"roll":12.430573408579093},"location":"Left Ankle"},{"euler":{"heading":67.82174521140264,"pitch":-20.930666402462087,"roll":-22.72668951945972},"location":"Right Ankle"},{"euler":{"heading":153.096342012728,"pitch":-160.72162752380854,"roll":49.86790737998098},"location":"Right Hip"},{"euler":{"heading":204.55207648777863,"pitch":-103.69778341099361,"roll":44.11261713066061},"location":"Right Knee"},{"euler":{"heading":17.59247289722546,"pitch":-137.2713452462758,"roll":59.83720559976217},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.279"} +{"sensors":[{"euler":{"heading":61.93461949720483,"pitch":123.69944645599391,"roll":17.344617806341464},"location":"Left Knee"},{"euler":{"heading":43.8638987166532,"pitch":94.23717726746295,"roll":15.631266067721185},"location":"Left Ankle"},{"euler":{"heading":69.48957069026238,"pitch":-21.41259976221588,"roll":-22.03527056751375},"location":"Right Ankle"},{"euler":{"heading":152.39920781145523,"pitch":-161.1182147714277,"roll":50.01236664198288},"location":"Right Hip"},{"euler":{"heading":217.88436883900076,"pitch":-104.40300506989425,"roll":45.77010541759455},"location":"Right Knee"},{"euler":{"heading":17.989475607502914,"pitch":-138.36296072164825,"roll":60.29723503978596},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.381"} +{"sensors":[{"euler":{"heading":65.57865754748435,"pitch":122.90450181039452,"roll":14.78515602570732},"location":"Left Knee"},{"euler":{"heading":46.833758844987884,"pitch":94.54470954071667,"roll":19.305639460949067},"location":"Left Ankle"},{"euler":{"heading":70.60936362123614,"pitch":-21.746339785994294,"roll":-21.687993510762375},"location":"Right Ankle"},{"euler":{"heading":151.5467870303097,"pitch":-161.66264329428492,"roll":50.57987997778459},"location":"Right Hip"},{"euler":{"heading":230.4459319551007,"pitch":-105.31895456290484,"roll":46.636844875835095},"location":"Right Knee"},{"euler":{"heading":17.071778046752623,"pitch":-136.9454146494834,"roll":60.28001153580737},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.481"} +{"sensors":[{"euler":{"heading":67.71454179273591,"pitch":123.04530162935508,"roll":13.550390423136589},"location":"Left Knee"},{"euler":{"heading":48.269132960489095,"pitch":93.977738586645,"roll":20.89382551485416},"location":"Left Ankle"},{"euler":{"heading":71.19217725911253,"pitch":-21.634205807394867,"roll":-21.74419415968614},"location":"Right Ankle"},{"euler":{"heading":151.19835832727875,"pitch":-161.91512896485642,"roll":51.33439198000613},"location":"Right Hip"},{"euler":{"heading":242.02008875959064,"pitch":-106.27455910661435,"roll":46.973160388251586},"location":"Right Knee"},{"euler":{"heading":15.520850242077362,"pitch":-134.95712318453508,"roll":59.57076038222663},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.583"} +{"sensors":[{"euler":{"heading":65.93683761346233,"pitch":124.26577146641958,"roll":14.401601380822932},"location":"Left Knee"},{"euler":{"heading":46.44221966444019,"pitch":93.17371472798051,"roll":19.460692963368746},"location":"Left Ankle"},{"euler":{"heading":71.37920953320128,"pitch":-21.23953522665538,"roll":-22.113524743717523},"location":"Right Ankle"},{"euler":{"heading":151.3160224945509,"pitch":-161.98611606837076,"roll":52.10720278200552},"location":"Right Hip"},{"euler":{"heading":252.9618298836316,"pitch":-106.99710319595292,"roll":46.78209434942643},"location":"Right Knee"},{"euler":{"heading":14.037515217869625,"pitch":-133.06766086608158,"roll":58.73868434400397},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.684"} +{"sensors":[{"euler":{"heading":62.4181538521161,"pitch":126.10794431977762,"roll":16.28644124274064},"location":"Left Knee"},{"euler":{"heading":42.560497697996176,"pitch":92.44384325518247,"roll":15.902123667031873},"location":"Left Ankle"},{"euler":{"heading":70.84753857988116,"pitch":-20.584331703989843,"roll":-22.958422269345775},"location":"Right Ankle"},{"euler":{"heading":151.84067024509582,"pitch":-162.0250044615337,"roll":52.88398250380497},"location":"Right Hip"},{"euler":{"heading":227.74689689526846,"pitch":-107.39739287635763,"roll":45.910134914483784},"location":"Right Knee"},{"euler":{"heading":13.333763696082663,"pitch":-131.79214477947343,"roll":58.133565909603576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.785"} +{"sensors":[{"euler":{"heading":60.01383846690449,"pitch":127.30339988779986,"roll":18.014047118466575},"location":"Left Knee"},{"euler":{"heading":39.36694792819656,"pitch":92.38695892966423,"roll":12.874411300328687},"location":"Left Ankle"},{"euler":{"heading":69.27528472189304,"pitch":-19.819648533590858,"roll":-24.037580042411197},"location":"Right Ankle"},{"euler":{"heading":152.73785322058626,"pitch":-162.21625401538034,"roll":53.60183425342448},"location":"Right Hip"},{"euler":{"heading":206.42220720574161,"pitch":-107.29515358872187,"roll":44.162871423035405},"location":"Right Knee"},{"euler":{"heading":13.244137326474398,"pitch":-130.9754303015261,"roll":57.75770931864322},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.886"} +{"sensors":[{"euler":{"heading":58.68120462021405,"pitch":127.67930989901987,"roll":19.256392406619916},"location":"Left Knee"},{"euler":{"heading":38.1677531353769,"pitch":92.64826303669781,"roll":11.586970170295817},"location":"Left Ankle"},{"euler":{"heading":66.01025624970374,"pitch":-18.500183680231775,"roll":-25.258822038170077},"location":"Right Ankle"},{"euler":{"heading":154.12656789852764,"pitch":-162.01337861384232,"roll":53.84790082808203},"location":"Right Hip"},{"euler":{"heading":188.83623648516746,"pitch":-106.67188822984969,"roll":41.296584280731864},"location":"Right Knee"},{"euler":{"heading":13.03222359382696,"pitch":-130.4841372713735,"roll":57.625688386778904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.989"} +{"sensors":[{"euler":{"heading":58.01933415819265,"pitch":127.50512890911789,"roll":20.093253165957925},"location":"Left Knee"},{"euler":{"heading":37.51347782183921,"pitch":92.95843673302804,"roll":10.690773153266235},"location":"Left Ankle"},{"euler":{"heading":62.35923062473337,"pitch":-17.237665312208595,"roll":-26.289189834353067},"location":"Right Ankle"},{"euler":{"heading":155.6889111086749,"pitch":-161.3370407524581,"roll":53.38186074527383},"location":"Right Hip"},{"euler":{"heading":172.90886283665074,"pitch":-106.03594940686472,"roll":38.67942585265868},"location":"Right Knee"},{"euler":{"heading":13.216501234444264,"pitch":-130.62947354423616,"roll":57.80061954810102},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.90"} +{"sensors":[{"euler":{"heading":57.742400742373384,"pitch":126.9858660182061,"roll":20.590177849362135},"location":"Left Knee"},{"euler":{"heading":37.49963003965529,"pitch":93.34384305972524,"roll":10.346695837939611},"location":"Left Ankle"},{"euler":{"heading":60.77330756226004,"pitch":-17.182648780987737,"roll":-26.616520850917762},"location":"Right Ankle"},{"euler":{"heading":157.00751999780738,"pitch":-160.7533366772123,"roll":52.38742467074645},"location":"Right Hip"},{"euler":{"heading":156.96797655298568,"pitch":-105.31985446617826,"roll":37.86148326739281},"location":"Right Knee"},{"euler":{"heading":13.607351110999838,"pitch":-131.37902618981255,"roll":58.15805759329092},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.193"} +{"sensors":[{"euler":{"heading":58.20566066813605,"pitch":126.0310294163855,"roll":20.76241006442592},"location":"Left Knee"},{"euler":{"heading":38.16216703568976,"pitch":94.04695875375273,"roll":10.48702625414565},"location":"Left Ankle"},{"euler":{"heading":61.75847680603403,"pitch":-18.208133902888964,"roll":-25.717368765825984},"location":"Right Ankle"},{"euler":{"heading":157.20676799802666,"pitch":-160.65300300949107,"roll":51.31743220367181},"location":"Right Hip"},{"euler":{"heading":176.67742889768712,"pitch":-104.26286901956043,"roll":39.244084940653536},"location":"Right Knee"},{"euler":{"heading":14.259115999899855,"pitch":-132.6223735708313,"roll":58.66100183396183},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.293"} +{"sensors":[{"euler":{"heading":59.178844601322446,"pitch":124.90917647474694,"roll":20.43616905798333},"location":"Left Knee"},{"euler":{"heading":39.339700332120785,"pitch":94.76101287837747,"roll":11.132073628731085},"location":"Left Ankle"},{"euler":{"heading":64.55762912543062,"pitch":-19.399820512600066,"roll":-23.951881889243385},"location":"Right Ankle"},{"euler":{"heading":156.573591198224,"pitch":-160.88770270854198,"roll":50.66693898330463},"location":"Right Hip"},{"euler":{"heading":192.87218600791843,"pitch":-103.62408211760439,"roll":42.12592644658818},"location":"Right Knee"},{"euler":{"heading":15.114454399909869,"pitch":-134.28513621374816,"roll":59.313651650565646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.394"} +{"sensors":[{"euler":{"heading":60.742210141190206,"pitch":123.76200882727225,"roll":19.455052152184997},"location":"Left Knee"},{"euler":{"heading":41.18698029890871,"pitch":95.42241159053972,"roll":12.543866265857977},"location":"Left Ankle"},{"euler":{"heading":67.14561621288756,"pitch":-20.24733846134006,"roll":-22.537943700319047},"location":"Right Ankle"},{"euler":{"heading":155.4162320784016,"pitch":-161.2364324376878,"roll":50.41274508497417},"location":"Right Hip"},{"euler":{"heading":206.95996740712658,"pitch":-103.50542390584395,"roll":44.78208380192936},"location":"Right Knee"},{"euler":{"heading":16.234258959918883,"pitch":-136.52537259237334,"roll":60.013536485509086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.495"} +{"sensors":[{"euler":{"heading":63.56173912707119,"pitch":122.99830794454503,"roll":17.259546936966498},"location":"Left Knee"},{"euler":{"heading":43.780782269017834,"pitch":95.86142043148575,"roll":15.48947963927218},"location":"Left Ankle"},{"euler":{"heading":68.67480459159881,"pitch":-20.747604615206058,"roll":-21.921649330287142},"location":"Right Ankle"},{"euler":{"heading":154.95585887056146,"pitch":-161.431539193919,"roll":50.352720576476756},"location":"Right Hip"},{"euler":{"heading":220.08897066641396,"pitch":-103.87363151525956,"roll":46.47262542173643},"location":"Right Knee"},{"euler":{"heading":16.760833063926995,"pitch":-137.622835333136,"roll":60.46843283695817},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.596"} +{"sensors":[{"euler":{"heading":67.23056521436408,"pitch":122.11097715009052,"roll":14.727342243269847},"location":"Left Knee"},{"euler":{"heading":46.87770404211605,"pitch":96.54402838833718,"roll":19.028031675344963},"location":"Left Ankle"},{"euler":{"heading":69.82607413243893,"pitch":-20.985344153685453,"roll":-21.648234397258427},"location":"Right Ankle"},{"euler":{"heading":154.13527298350533,"pitch":-161.81338527452712,"roll":50.78619851882908},"location":"Right Hip"},{"euler":{"heading":232.16132359977257,"pitch":-104.8550183637336,"roll":47.41286287956279},"location":"Right Knee"},{"euler":{"heading":16.047249757534296,"pitch":-136.2168017998224,"roll":60.39033955326236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.696"} +{"sensors":[{"euler":{"heading":69.60125869292767,"pitch":122.13737943508147,"roll":13.298358018942862},"location":"Left Knee"},{"euler":{"heading":48.55243363790444,"pitch":95.99587554950347,"roll":20.800228507810466},"location":"Left Ankle"},{"euler":{"heading":70.54971671919505,"pitch":-21.05555973831691,"roll":-21.677160957532585},"location":"Right Ankle"},{"euler":{"heading":153.84049568515482,"pitch":-161.96954674707442,"roll":51.43882866694618},"location":"Right Hip"},{"euler":{"heading":243.55144123979534,"pitch":-105.72576652736025,"roll":47.75282659160651},"location":"Right Knee"},{"euler":{"heading":14.505024781780866,"pitch":-134.34512161984017,"roll":59.62005559793613},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.797"} +{"sensors":[{"euler":{"heading":68.0348828236349,"pitch":123.34239149157332,"roll":13.924772217048577},"location":"Left Knee"},{"euler":{"heading":47.203440274114,"pitch":94.97753799455312,"roll":19.81395565702942},"location":"Left Ankle"},{"euler":{"heading":70.79474504727554,"pitch":-20.92500376448522,"roll":-21.89069486177933},"location":"Right Ankle"},{"euler":{"heading":153.87519611663933,"pitch":-162.047592072367,"roll":52.16369580025156},"location":"Right Hip"},{"euler":{"heading":254.34629711581582,"pitch":-106.34693987462424,"roll":47.59004393244585},"location":"Right Knee"},{"euler":{"heading":49.04827230360278,"pitch":-132.49810945785615,"roll":58.74555003814252},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.897"} +{"sensors":[{"euler":{"heading":64.59389454127141,"pitch":125.083152342416,"roll":15.769794995343721},"location":"Left Knee"},{"euler":{"heading":43.5393462467026,"pitch":94.2922841950978,"roll":16.53881009132648},"location":"Left Ankle"},{"euler":{"heading":70.46527054254798,"pitch":-20.4762533880367,"roll":-22.4828753756014},"location":"Right Ankle"},{"euler":{"heading":154.20017650497542,"pitch":-162.1615828651303,"roll":52.86607622022641},"location":"Right Hip"},{"euler":{"heading":264.7116674042342,"pitch":-106.79349588716181,"roll":46.84978953920127},"location":"Right Knee"},{"euler":{"heading":44.5809450732425,"pitch":-131.14829851207054,"roll":58.052245034328266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.998"} +{"sensors":[{"euler":{"heading":61.64075508714427,"pitch":126.6560871081744,"roll":17.51156549580935},"location":"Left Knee"},{"euler":{"heading":40.37291162203234,"pitch":93.84430577558803,"roll":13.566179082193832},"location":"Left Ankle"},{"euler":{"heading":69.17499348829318,"pitch":-19.72862804923303,"roll":-23.52833783804126},"location":"Right Ankle"},{"euler":{"heading":154.8926588544779,"pitch":-162.37667457861727,"roll":53.51696859820377},"location":"Right Hip"},{"euler":{"heading":239.25300066381078,"pitch":-106.80164629844563,"roll":45.258560585281145},"location":"Right Knee"},{"euler":{"heading":41.272850565918255,"pitch":-130.38346866086349,"roll":57.67202053089544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.99"} +{"sensors":[{"euler":{"heading":60.02042957842985,"pitch":127.19047839735697,"roll":18.866658946228416},"location":"Left Knee"},{"euler":{"heading":38.698120459829106,"pitch":93.72237519802923,"roll":11.87206117397445},"location":"Left Ankle"},{"euler":{"heading":66.24499413946387,"pitch":-18.79326524430973,"roll":-24.819254054237135},"location":"Right Ankle"},{"euler":{"heading":156.0596429690301,"pitch":-162.18900712075555,"roll":53.80277173838339},"location":"Right Hip"},{"euler":{"heading":217.96520059742969,"pitch":-106.30898166860108,"roll":42.63895452675303},"location":"Right Knee"},{"euler":{"heading":38.30181550932643,"pitch":-129.86387179477714,"roll":57.5360684778059},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.200"} +{"sensors":[{"euler":{"heading":59.11213662058687,"pitch":127.13393055762128,"roll":19.723743051605574},"location":"Left Knee"},{"euler":{"heading":37.75330841384619,"pitch":93.65638767822631,"roll":10.772355056577005},"location":"Left Ankle"},{"euler":{"heading":62.62674472551748,"pitch":-17.745188719878758,"roll":-26.049828648813424},"location":"Right Ankle"},{"euler":{"heading":157.4599286721271,"pitch":-161.53260640868,"roll":53.366244564545056},"location":"Right Hip"},{"euler":{"heading":198.9936805376867,"pitch":-105.82808350174098,"roll":40.100059074077734},"location":"Right Knee"},{"euler":{"heading":35.927883958393785,"pitch":-130.01498461529943,"roll":57.70121163002531},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.302"} +{"sensors":[{"euler":{"heading":58.47592295852818,"pitch":126.88303750185916,"roll":20.220118746445017},"location":"Left Knee"},{"euler":{"heading":37.46547757246157,"pitch":93.60324891040368,"roll":10.313869550919305},"location":"Left Ankle"},{"euler":{"heading":61.27032025296574,"pitch":-17.633169847890883,"roll":-26.59484578393208},"location":"Right Ankle"},{"euler":{"heading":158.7826858049144,"pitch":-160.86059576781201,"roll":52.41712010809056},"location":"Right Hip"},{"euler":{"heading":180.08806248391807,"pitch":-105.28902515156689,"roll":39.42130316666996},"location":"Right Knee"},{"euler":{"heading":34.09134556255441,"pitch":-130.9072361537695,"roll":58.08109046702278},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.405"} +{"sensors":[{"euler":{"heading":58.42208066267536,"pitch":126.46348375167325,"roll":20.285606871800514},"location":"Left Knee"},{"euler":{"heading":37.66892981521542,"pitch":93.53667401936332,"roll":10.294982595827374},"location":"Left Ankle"},{"euler":{"heading":62.50578822766917,"pitch":-18.544852863101795,"roll":-25.82286120553887},"location":"Right Ankle"},{"euler":{"heading":159.30441722442296,"pitch":-160.55578619103082,"roll":51.37540809728151},"location":"Right Hip"},{"euler":{"heading":197.13550623552626,"pitch":-104.42262263641021,"roll":40.82292285000296},"location":"Right Knee"},{"euler":{"heading":32.51346100629897,"pitch":-132.28526253839254,"roll":58.53548142032051},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.506"} +{"sensors":[{"euler":{"heading":59.054872596407826,"pitch":125.69838537650594,"roll":19.963296184620464},"location":"Left Knee"},{"euler":{"heading":38.514536833693874,"pitch":93.68925661742698,"roll":10.846734336244637},"location":"Left Ankle"},{"euler":{"heading":65.29270940490225,"pitch":-19.852867576791617,"roll":-24.078075084984984},"location":"Right Ankle"},{"euler":{"heading":158.7989755019807,"pitch":-160.63770757192773,"roll":50.70661728755336},"location":"Right Hip"},{"euler":{"heading":211.27195561197362,"pitch":-104.0866103727692,"roll":43.62813056500267},"location":"Right Knee"},{"euler":{"heading":31.38086490566907,"pitch":-133.88173628455328,"roll":59.15068327828846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.606"} +{"sensors":[{"euler":{"heading":60.33688533676705,"pitch":124.77229683885534,"roll":19.07946656615842},"location":"Left Knee"},{"euler":{"heading":40.08183315032449,"pitch":93.98908095568429,"roll":12.143310902620174},"location":"Left Ankle"},{"euler":{"heading":68.06343846441203,"pitch":-20.917580819112455,"roll":-22.58276757648649},"location":"Right Ankle"},{"euler":{"heading":157.70657795178263,"pitch":-160.95518681473496,"roll":50.33595555879803},"location":"Right Hip"},{"euler":{"heading":223.43851005077624,"pitch":-103.97794933549228,"roll":46.265317508502406},"location":"Right Knee"},{"euler":{"heading":30.730278415102166,"pitch":-135.97481265609795,"roll":59.85436495045961},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.707"} +{"sensors":[{"euler":{"heading":62.78444680309035,"pitch":123.95131715496981,"roll":17.196519909542577},"location":"Left Knee"},{"euler":{"heading":42.43614983529204,"pitch":94.27767286011586,"roll":14.747729812358155},"location":"Left Ankle"},{"euler":{"heading":69.77584461797083,"pitch":-21.738322737201212,"roll":-21.69949081883784},"location":"Right Ankle"},{"euler":{"heading":157.12967015660436,"pitch":-161.09716813326148,"roll":50.171110002918226},"location":"Right Hip"},{"euler":{"heading":234.78840904569861,"pitch":-104.27390440194307,"roll":47.93253575765217},"location":"Right Knee"},{"euler":{"heading":30.16350057359195,"pitch":-137.63358139048816,"roll":60.412678455413655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.809"} +{"sensors":[{"euler":{"heading":66.46225212278131,"pitch":123.03743543947284,"roll":14.708117918588318},"location":"Left Knee"},{"euler":{"heading":45.998784851762835,"pitch":95.18740557410428,"roll":18.42920683112234},"location":"Left Ankle"},{"euler":{"heading":70.86701015617375,"pitch":-22.501990463481093,"roll":-21.19204173695406},"location":"Right Ankle"},{"euler":{"heading":156.3354531409439,"pitch":-161.47495131993534,"roll":50.460249002626405},"location":"Right Hip"},{"euler":{"heading":245.72831814112874,"pitch":-105.03401396174877,"roll":48.74553218188696},"location":"Right Knee"},{"euler":{"heading":28.478400516232757,"pitch":-136.73272325143935,"roll":60.5464106098723},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.909"} +{"sensors":[{"euler":{"heading":69.28477691050318,"pitch":122.87119189552557,"roll":13.043556126729486},"location":"Left Knee"},{"euler":{"heading":48.20515636658655,"pitch":94.93741501669385,"roll":20.755036148010106},"location":"Left Ankle"},{"euler":{"heading":71.55530914055637,"pitch":-23.083041417132986,"roll":-20.985337563258657},"location":"Right Ankle"},{"euler":{"heading":156.0581578268495,"pitch":-161.6649561879418,"roll":51.01422410236377},"location":"Right Hip"},{"euler":{"heading":256.10548632701585,"pitch":-105.66811256557389,"roll":48.98347896369826},"location":"Right Knee"},{"euler":{"heading":25.99306046460948,"pitch":-134.97195092629542,"roll":59.985519548885065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.9"} +{"sensors":[{"euler":{"heading":68.28129921945286,"pitch":123.87157270597302,"roll":13.439200514056537},"location":"Left Knee"},{"euler":{"heading":47.3283907299279,"pitch":94.06242351502448,"roll":19.979532533209095},"location":"Left Ankle"},{"euler":{"heading":71.86227822650075,"pitch":-23.349737275419688,"roll":-21.111803806932794},"location":"Right Ankle"},{"euler":{"heading":156.14609204416456,"pitch":-161.67971056914763,"roll":51.6378016921274},"location":"Right Hip"},{"euler":{"heading":265.80118769431425,"pitch":-106.17005130901651,"roll":48.76638106732843},"location":"Right Knee"},{"euler":{"heading":23.50000441814853,"pitch":-133.0560058336659,"roll":59.161967593996565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.110"} +{"sensors":[{"euler":{"heading":64.50941929750758,"pitch":125.64066543537572,"roll":15.276530462650884},"location":"Left Knee"},{"euler":{"heading":43.95180165693511,"pitch":93.18118116352204,"roll":16.819079279888186},"location":"Left Ankle"},{"euler":{"heading":71.56980040385068,"pitch":-23.28976354787772,"roll":-21.600623426239515},"location":"Right Ankle"},{"euler":{"heading":156.61273283974813,"pitch":-161.6242395122329,"roll":52.19277152291466},"location":"Right Hip"},{"euler":{"heading":275.10231892488287,"pitch":-106.48429617811487,"roll":47.97724296059559},"location":"Right Knee"},{"euler":{"heading":21.59375397633368,"pitch":-131.55665525029931,"roll":58.508270834596914},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.210"} +{"sensors":[{"euler":{"heading":60.945977367756825,"pitch":127.40784889183816,"roll":17.180127416385794},"location":"Left Knee"},{"euler":{"heading":40.4503714912416,"pitch":92.60056304716984,"roll":13.593421351899366},"location":"Left Ankle"},{"euler":{"heading":70.48157036346561,"pitch":-22.82328719308995,"roll":-22.65306108361556},"location":"Right Ankle"},{"euler":{"heading":157.3639595557733,"pitch":-161.64931556100962,"roll":52.767244370623196},"location":"Right Hip"},{"euler":{"heading":248.25458703239457,"pitch":-106.50461656030339,"roll":46.535768664536036},"location":"Right Knee"},{"euler":{"heading":20.34062857870031,"pitch":-130.67598972526937,"roll":58.013693751137225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.311"} +{"sensors":[{"euler":{"heading":59.051379630981145,"pitch":128.08581400265433,"roll":18.655864674747214},"location":"Left Knee"},{"euler":{"heading":38.46158434211744,"pitch":92.49050674245287,"roll":11.70907921670943},"location":"Left Ankle"},{"euler":{"heading":68.15841332711905,"pitch":-22.334708473780953,"roll":-23.869004975254004},"location":"Right Ankle"},{"euler":{"heading":158.31506360019597,"pitch":-161.73438400490866,"roll":53.28426993356088},"location":"Right Hip"},{"euler":{"heading":225.5791283291551,"pitch":-106.03540490427307,"roll":44.10719179808243},"location":"Right Knee"},{"euler":{"heading":19.31906572083028,"pitch":-129.98339075274242,"roll":57.7623243760235},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.411"} +{"sensors":[{"euler":{"heading":58.08374166788303,"pitch":128.0209826023889,"roll":19.740278207272492},"location":"Left Knee"},{"euler":{"heading":37.452925907905694,"pitch":92.59770606820759,"roll":10.544421295038488},"location":"Left Ankle"},{"euler":{"heading":64.33007199440715,"pitch":-21.02623762640286,"roll":-25.482104477728605},"location":"Right Ankle"},{"euler":{"heading":159.70230724017637,"pitch":-161.30469560441782,"roll":53.08709294020479},"location":"Right Hip"},{"euler":{"heading":205.8837154962396,"pitch":-105.51936441384576,"roll":41.171472618274194},"location":"Right Knee"},{"euler":{"heading":18.830909148747256,"pitch":-129.9600516774682,"roll":57.88609193842115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.512"} +{"sensors":[{"euler":{"heading":57.487867501094726,"pitch":127.58138434215,"roll":20.466250386545244},"location":"Left Knee"},{"euler":{"heading":37.145133317115125,"pitch":92.73793546138684,"roll":9.921229165534639},"location":"Left Ankle"},{"euler":{"heading":62.07831479496643,"pitch":-20.648613863762577,"roll":-26.265144029955746},"location":"Right Ankle"},{"euler":{"heading":161.06957651615875,"pitch":-160.68047604397603,"roll":52.32838364618431},"location":"Right Hip"},{"euler":{"heading":187.30784394661563,"pitch":-104.89242797246119,"roll":39.341825356446776},"location":"Right Knee"},{"euler":{"heading":18.729068233872532,"pitch":-130.78904650972137,"roll":58.21623274457904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.613"} +{"sensors":[{"euler":{"heading":57.60158075098525,"pitch":126.810745907935,"roll":20.807125347890718},"location":"Left Knee"},{"euler":{"heading":37.549369985403615,"pitch":93.13914191524816,"roll":9.904106248981174},"location":"Left Ankle"},{"euler":{"heading":62.576733315469795,"pitch":-21.35250247738632,"roll":-25.79487962696017},"location":"Right Ankle"},{"euler":{"heading":161.5501188645429,"pitch":-160.3124284395784,"roll":51.35179528156588},"location":"Right Hip"},{"euler":{"heading":204.48330955195408,"pitch":-104.20318517521507,"roll":39.763892820802106},"location":"Right Knee"},{"euler":{"heading":18.787411410485277,"pitch":-132.03514185874923,"roll":58.657109470121135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.713"} +{"sensors":[{"euler":{"heading":58.272672675886724,"pitch":125.9046713171415,"roll":20.638912813101648},"location":"Left Knee"},{"euler":{"heading":38.319432986863255,"pitch":93.56897772372335,"roll":10.351195624083056},"location":"Left Ankle"},{"euler":{"heading":65.45655998392282,"pitch":-22.23600222964769,"roll":-24.196641664264153},"location":"Right Ankle"},{"euler":{"heading":160.88885697808863,"pitch":-160.38743559562056,"roll":50.64161575340929},"location":"Right Hip"},{"euler":{"heading":217.79122859675866,"pitch":-104.00161665769356,"roll":43.75625353872189},"location":"Right Knee"},{"euler":{"heading":18.98992026943675,"pitch":-133.6253776728743,"roll":59.197648523109024},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.814"} +{"sensors":[{"euler":{"heading":59.48915540829805,"pitch":124.93295418542736,"roll":19.900021531791484},"location":"Left Knee"},{"euler":{"heading":39.71873968817693,"pitch":94.03082995135102,"roll":11.459826061674752},"location":"Left Ankle"},{"euler":{"heading":68.29840398553054,"pitch":-23.07490200668292,"roll":-22.56447749783774},"location":"Right Ankle"},{"euler":{"heading":159.33747128027977,"pitch":-160.9111920360585,"roll":50.28995417806836},"location":"Right Hip"},{"euler":{"heading":229.05585573708282,"pitch":-104.4702049919242,"roll":46.49312818484971},"location":"Right Knee"},{"euler":{"heading":19.45342824249308,"pitch":-135.66283990558688,"roll":59.809133670798126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.914"} +{"sensors":[{"euler":{"heading":61.871489867468256,"pitch":124.21465876688464,"roll":17.985019378612336},"location":"Left Knee"},{"euler":{"heading":41.821865719359245,"pitch":94.08399695621593,"roll":13.907593455507277},"location":"Left Ankle"},{"euler":{"heading":70.19981358697748,"pitch":-23.56741180601463,"roll":-21.589279748053965},"location":"Right Ankle"},{"euler":{"heading":158.0724741522518,"pitch":-161.37007283245268,"roll":50.19845876026153},"location":"Right Hip"},{"euler":{"heading":239.38152016337455,"pitch":-105.15443449273178,"roll":48.275065366364736},"location":"Right Knee"},{"euler":{"heading":19.68308541824377,"pitch":-137.09030591502818,"roll":60.28447030371831},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.15"} +{"sensors":[{"euler":{"heading":65.54059088072142,"pitch":123.51819289019619,"roll":15.517767440751104},"location":"Left Knee"},{"euler":{"heading":45.802179147423324,"pitch":95.10059726059433,"roll":17.86683410995655},"location":"Left Ankle"},{"euler":{"heading":71.45483222827974,"pitch":-23.854420625413166,"roll":-21.06160177324857},"location":"Right Ankle"},{"euler":{"heading":156.98397673702664,"pitch":-161.75181554920744,"roll":50.447362884235375},"location":"Right Hip"},{"euler":{"heading":249.0496181470371,"pitch":-106.1264910434586,"roll":49.26630882972827},"location":"Right Knee"},{"euler":{"heading":18.483526876419393,"pitch":-136.11877532352537,"roll":60.25602327334648},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.116"} +{"sensors":[{"euler":{"heading":68.74903179264928,"pitch":123.26637360117658,"roll":13.597240696675994},"location":"Left Knee"},{"euler":{"heading":48.38446123268099,"pitch":95.05303753453491,"roll":20.423900698960896},"location":"Left Ankle"},{"euler":{"heading":72.28434900545176,"pitch":-24.100228562871852,"roll":-20.842941595923712},"location":"Right Ankle"},{"euler":{"heading":156.616829063324,"pitch":-161.91413399428671,"roll":50.93387659581184},"location":"Right Hip"},{"euler":{"heading":258.4759063323334,"pitch":-106.73884193911275,"roll":49.627177946755445},"location":"Right Knee"},{"euler":{"heading":16.897674188777454,"pitch":-134.36314779117282,"roll":59.59292094601183},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.216"} +{"sensors":[{"euler":{"heading":68.34912861338435,"pitch":124.12098624105893,"roll":13.643766627008395},"location":"Left Knee"},{"euler":{"heading":47.59601510941289,"pitch":94.12898378108142,"roll":20.112760629064805},"location":"Left Ankle"},{"euler":{"heading":72.80591410490659,"pitch":-24.16520570658467,"roll":-20.90239743633134},"location":"Right Ankle"},{"euler":{"heading":156.4863961569916,"pitch":-162.02897059485807,"roll":51.584238936230655},"location":"Right Hip"},{"euler":{"heading":267.4283156991001,"pitch":-107.17745774520147,"roll":49.48946015207991},"location":"Right Knee"},{"euler":{"heading":51.18290676989971,"pitch":-132.50808301205555,"roll":58.746128851410646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.317"} +{"sensors":[{"euler":{"heading":64.63921575204591,"pitch":125.87763761695304,"roll":15.291889964307554},"location":"Left Knee"},{"euler":{"heading":44.3989135984716,"pitch":93.07233540297328,"roll":17.332734566158326},"location":"Left Ankle"},{"euler":{"heading":72.70657269441594,"pitch":-23.9799351359262,"roll":-21.34965769269821},"location":"Right Ankle"},{"euler":{"heading":156.58775654129244,"pitch":-162.13232353537228,"roll":52.28206504260759},"location":"Right Hip"},{"euler":{"heading":276.09173412919006,"pitch":-107.48471197068133,"roll":48.79051413687192},"location":"Right Knee"},{"euler":{"heading":46.183366092909736,"pitch":-130.93852471085,"roll":58.065265966269585},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.419"} +{"sensors":[{"euler":{"heading":60.30654417684133,"pitch":127.95862385525774,"roll":17.2314509678768},"location":"Left Knee"},{"euler":{"heading":40.971522238624445,"pitch":92.16510186267595,"roll":14.011961109542494},"location":"Left Ankle"},{"euler":{"heading":71.89216542497435,"pitch":-23.50694162233358,"roll":-22.27094192342839},"location":"Right Ankle"},{"euler":{"heading":156.8914808871632,"pitch":-162.40659118183507,"roll":53.07260853834683},"location":"Right Hip"},{"euler":{"heading":248.73881071627105,"pitch":-107.49249077361321,"roll":47.50521272318473},"location":"Right Knee"},{"euler":{"heading":42.221279483618765,"pitch":-130.025922239765,"roll":57.58373936964263},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.519"} +{"sensors":[{"euler":{"heading":57.7883897591572,"pitch":128.96901146973198,"roll":18.78955587108912},"location":"Left Knee"},{"euler":{"heading":39.180620014762,"pitch":91.84859167640836,"roll":12.067014998588245},"location":"Left Ankle"},{"euler":{"heading":69.85919888247692,"pitch":-22.999997460100225,"roll":-23.40009773108555},"location":"Right Ankle"},{"euler":{"heading":157.5398327984469,"pitch":-162.65968206365156,"roll":53.79034768451214},"location":"Right Hip"},{"euler":{"heading":225.73367964464396,"pitch":-106.9619916962519,"roll":45.192191450866254},"location":"Right Knee"},{"euler":{"heading":38.93665153525689,"pitch":-129.4233300157885,"roll":57.319115432678366},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.620"} +{"sensors":[{"euler":{"heading":56.49080078324148,"pitch":129.1533603227588,"roll":19.89810028398021},"location":"Left Knee"},{"euler":{"heading":38.0188080132858,"pitch":91.70123250876752,"roll":10.779063498729421},"location":"Left Ankle"},{"euler":{"heading":66.12327899422922,"pitch":-21.168747714090202,"roll":-24.916337957976992},"location":"Right Ankle"},{"euler":{"heading":158.6670995186022,"pitch":-162.1062138572864,"roll":53.74881291606093},"location":"Right Hip"},{"euler":{"heading":205.28531168017957,"pitch":-106.51579252662671,"roll":42.29172230577963},"location":"Right Knee"},{"euler":{"heading":36.24298638173121,"pitch":-129.24349701420965,"roll":57.412203889410534},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.721"} +{"sensors":[{"euler":{"heading":55.66047070491734,"pitch":128.95052429048292,"roll":20.670790255582187},"location":"Left Knee"},{"euler":{"heading":37.36067721195722,"pitch":91.55610925789077,"roll":9.97615714885648},"location":"Left Ankle"},{"euler":{"heading":63.4234510948063,"pitch":-20.083122942681182,"roll":-25.643454162179292},"location":"Right Ankle"},{"euler":{"heading":159.80038956674198,"pitch":-161.37684247155775,"roll":53.011431624454836},"location":"Right Hip"},{"euler":{"heading":186.11928051216162,"pitch":-105.84546327396404,"roll":40.43130007520167},"location":"Right Knee"},{"euler":{"heading":34.01243774355808,"pitch":-129.7128973127887,"roll":57.70223350046948},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.821"} +{"sensors":[{"euler":{"heading":55.30067363442561,"pitch":128.48672186143463,"roll":21.10371123002397},"location":"Left Knee"},{"euler":{"heading":37.43710949076149,"pitch":91.5504983321017,"roll":9.791041433970832},"location":"Left Ankle"},{"euler":{"heading":63.412355985325675,"pitch":-20.624810648413064,"roll":-25.322858745961362},"location":"Right Ankle"},{"euler":{"heading":160.40785061006778,"pitch":-160.895408224402,"roll":51.941538462009355},"location":"Right Hip"},{"euler":{"heading":203.06985246094547,"pitch":-105.12966694656765,"roll":40.8131700676815},"location":"Right Knee"},{"euler":{"heading":32.24869396920227,"pitch":-130.79160758150982,"roll":58.119510150422535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.922"} +{"sensors":[{"euler":{"heading":55.651856270983046,"pitch":127.67554967529117,"roll":21.130840107021573},"location":"Left Knee"},{"euler":{"heading":38.155898541685346,"pitch":91.69544849889152,"roll":10.19318729057375},"location":"Left Ankle"},{"euler":{"heading":66.0148703867931,"pitch":-21.693579583571758,"roll":-23.87182287136523},"location":"Right Ankle"},{"euler":{"heading":160.098315549061,"pitch":-160.8996174019618,"roll":51.02238461580842},"location":"Right Hip"},{"euler":{"heading":216.65661721485094,"pitch":-104.42295025191089,"roll":43.056853060913355},"location":"Right Knee"},{"euler":{"heading":30.998824572282047,"pitch":-132.34994682335883,"roll":58.65130913538028},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.22"} +{"sensors":[{"euler":{"heading":56.617920643884744,"pitch":126.69549470776207,"roll":20.567756096319417},"location":"Left Knee"},{"euler":{"heading":39.52155868751681,"pitch":92.03215364900237,"roll":11.355118561516376},"location":"Left Ankle"},{"euler":{"heading":68.8696333481138,"pitch":-22.755471625214582,"roll":-22.17839058422871},"location":"Right Ankle"},{"euler":{"heading":158.7884839941549,"pitch":-161.2846556617656,"roll":50.57014615422758},"location":"Right Hip"},{"euler":{"heading":227.89095549336585,"pitch":-104.2806552267198,"roll":45.92616775482202},"location":"Right Knee"},{"euler":{"heading":30.073942115053843,"pitch":-134.20245214102295,"roll":59.32367822184226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.123"} +{"sensors":[{"euler":{"heading":58.57487857949627,"pitch":125.82594523698586,"roll":19.129730486687475},"location":"Left Knee"},{"euler":{"heading":41.463152818765124,"pitch":92.04768828410214,"roll":13.657106705364738},"location":"Left Ankle"},{"euler":{"heading":70.66392001330242,"pitch":-23.211174462693123,"roll":-21.141801525805835},"location":"Right Ankle"},{"euler":{"heading":157.6783855947394,"pitch":-161.61869009558907,"roll":50.31938153880482},"location":"Right Hip"},{"euler":{"heading":237.95185994402925,"pitch":-104.60883970404782,"roll":47.95230097933982},"location":"Right Knee"},{"euler":{"heading":29.310297903548456,"pitch":-135.86345692692066,"roll":59.92256039965803},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.223"} +{"sensors":[{"euler":{"heading":62.098640721546644,"pitch":124.90585071328726,"roll":16.72300743801873},"location":"Left Knee"},{"euler":{"heading":44.16058753688861,"pitch":92.48666945569192,"roll":17.016396034828265},"location":"Left Ankle"},{"euler":{"heading":71.81002801197218,"pitch":-23.46505701642381,"roll":-20.658871373225253},"location":"Right Ankle"},{"euler":{"heading":156.87929703526547,"pitch":-161.90682108603016,"roll":50.45619338492434},"location":"Right Hip"},{"euler":{"heading":247.54417394962633,"pitch":-105.36045573364305,"roll":49.10082088140584},"location":"Right Knee"},{"euler":{"heading":27.29801811319361,"pitch":-135.1958612342286,"roll":60.02405435969223},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.323"} +{"sensors":[{"euler":{"heading":64.94502664939198,"pitch":124.64651564195854,"roll":15.031956694216856},"location":"Left Knee"},{"euler":{"heading":45.563278783199756,"pitch":92.02550251012273,"roll":18.783506431345437},"location":"Left Ankle"},{"euler":{"heading":72.69152521077497,"pitch":-23.66855131478143,"roll":-20.37423423590273},"location":"Right Ankle"},{"euler":{"heading":156.33511733173893,"pitch":-162.09738897742716,"roll":50.916824046431906},"location":"Right Hip"},{"euler":{"heading":256.6647565546637,"pitch":-105.99316016027875,"roll":49.634488793265255},"location":"Right Knee"},{"euler":{"heading":25.01196630187425,"pitch":-133.57627511080574,"roll":59.55914892372301},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.424"} +{"sensors":[{"euler":{"heading":64.25052398445278,"pitch":125.43811407776269,"roll":15.28501102479517},"location":"Left Knee"},{"euler":{"heading":44.41320090487978,"pitch":91.29170225911047,"roll":17.836405788210893},"location":"Left Ankle"},{"euler":{"heading":73.12862268969747,"pitch":-23.651696183303287,"roll":-20.368060812312457},"location":"Right Ankle"},{"euler":{"heading":156.12035559856503,"pitch":-162.18765007968446,"roll":51.55639164178872},"location":"Right Hip"},{"euler":{"heading":265.26078089919736,"pitch":-106.58134414425088,"roll":49.664789913938726},"location":"Right Knee"},{"euler":{"heading":22.617019671686823,"pitch":-131.73114759972518,"roll":58.82823403135071},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.524"} +{"sensors":[{"euler":{"heading":60.64422158600751,"pitch":127.15680266998643,"roll":16.950259922315652},"location":"Left Knee"},{"euler":{"heading":41.2468808143918,"pitch":90.36253203319943,"roll":14.846515209389803},"location":"Left Ankle"},{"euler":{"heading":73.06576042072773,"pitch":-23.33652656497296,"roll":-20.881254731081214},"location":"Right Ankle"},{"euler":{"heading":156.10207003870852,"pitch":-162.31263507171602,"roll":52.30075247760985},"location":"Right Hip"},{"euler":{"heading":273.47220280927763,"pitch":-107.02945972982579,"roll":49.14206092254486},"location":"Right Knee"},{"euler":{"heading":20.61781770451814,"pitch":-130.38303283975264,"roll":58.19541062821564},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.625"} +{"sensors":[{"euler":{"heading":57.46104942740676,"pitch":128.79112240298778,"roll":18.623983930084087},"location":"Left Knee"},{"euler":{"heading":38.35969273295262,"pitch":90.08877882987949,"roll":12.061863688450822},"location":"Left Ankle"},{"euler":{"heading":72.19043437865496,"pitch":-22.709123908475664,"roll":-21.77437925797309},"location":"Right Ankle"},{"euler":{"heading":156.34186303483767,"pitch":-162.6251215645444,"roll":53.120677229848866},"location":"Right Hip"},{"euler":{"heading":281.9499825283499,"pitch":-107.16401375684322,"roll":47.877854830290374},"location":"Right Knee"},{"euler":{"heading":19.293535934066327,"pitch":-129.62597955577738,"roll":57.744619565394075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.727"} +{"sensors":[{"euler":{"heading":55.664944484666094,"pitch":129.449510162689,"roll":19.89283553707568},"location":"Left Knee"},{"euler":{"heading":37.07997345965735,"pitch":90.08615094689154,"roll":10.67442731960574},"location":"Left Ankle"},{"euler":{"heading":69.62139094078947,"pitch":-21.981961517628097,"roll":-22.96569133217578},"location":"Right Ankle"},{"euler":{"heading":157.1076767313539,"pitch":-162.60635940808996,"roll":53.62735950686398},"location":"Right Hip"},{"euler":{"heading":255.3549842755149,"pitch":-106.67886238115891,"roll":45.45256934726134},"location":"Right Knee"},{"euler":{"heading":18.176682340659696,"pitch":-129.10713160019964,"roll":57.53890760885467},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.827"} +{"sensors":[{"euler":{"heading":54.75470003619949,"pitch":129.4483091464201,"roll":20.74730198336811},"location":"Left Knee"},{"euler":{"heading":36.490726113691615,"pitch":90.18378585220239,"roll":9.881984587645167},"location":"Left Ankle"},{"euler":{"heading":66.12175184671052,"pitch":-20.558765365865288,"roll":-24.062872198958203},"location":"Right Ankle"},{"euler":{"heading":158.45315905821852,"pitch":-161.895723467281,"roll":53.277123556177585},"location":"Right Hip"},{"euler":{"heading":231.58823584796343,"pitch":-106.14222614304302,"roll":42.76356241253521},"location":"Right Knee"},{"euler":{"heading":17.602764106593725,"pitch":-129.42141844017968,"roll":57.6912668479692},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.928"} +{"sensors":[{"euler":{"heading":54.24798003257954,"pitch":129.10972823177806,"roll":21.2788217850313},"location":"Left Knee"},{"euler":{"heading":36.52915350232245,"pitch":90.34040726698215,"roll":9.59378612888065},"location":"Left Ankle"},{"euler":{"heading":64.42207666203947,"pitch":-19.95288882927876,"roll":-24.650334979062386},"location":"Right Ankle"},{"euler":{"heading":159.37034315239666,"pitch":-161.2999011205529,"roll":52.41191120055983},"location":"Right Hip"},{"euler":{"heading":208.7606622631671,"pitch":-105.52175352873873,"roll":41.69345617128169},"location":"Right Knee"},{"euler":{"heading":17.254987695934354,"pitch":-130.20427659616172,"roll":58.05964016317229},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.29"} +{"sensors":[{"euler":{"heading":54.379432029321585,"pitch":128.34250540860026,"roll":21.525939606528173},"location":"Left Knee"},{"euler":{"heading":37.18248815209021,"pitch":90.78761654028395,"roll":9.778157515992586},"location":"Left Ankle"},{"euler":{"heading":65.24236899583552,"pitch":-20.820099946350883,"roll":-23.929051481156147},"location":"Right Ankle"},{"euler":{"heading":159.758308837157,"pitch":-161.04491100849762,"roll":51.36447008050385},"location":"Right Hip"},{"euler":{"heading":222.69709603685038,"pitch":-104.72582817586485,"roll":42.61161055415352},"location":"Right Knee"},{"euler":{"heading":17.373238926340917,"pitch":-131.57134893654555,"roll":58.566176146855064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.130"} +{"sensors":[{"euler":{"heading":55.17898882638943,"pitch":127.38325486774023,"roll":21.260845645875357},"location":"Left Knee"},{"euler":{"heading":38.089239336881185,"pitch":91.19635488625555,"roll":10.406591764393326},"location":"Left Ankle"},{"euler":{"heading":67.99313209625197,"pitch":-22.019339951715796,"roll":-22.186146333040533},"location":"Right Ankle"},{"euler":{"heading":159.2387279534413,"pitch":-161.20916990764786,"roll":50.590523072453465},"location":"Right Hip"},{"euler":{"heading":233.68363643316533,"pitch":-104.31574535827836,"roll":45.175449498738175},"location":"Right Knee"},{"euler":{"heading":17.760915033706826,"pitch":-133.307964042891,"roll":59.15330853216956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.231"} +{"sensors":[{"euler":{"heading":56.61108994375049,"pitch":126.40742938096622,"roll":20.36601108128782},"location":"Left Knee"},{"euler":{"heading":39.51781540319307,"pitch":91.58296939763,"roll":11.640932587953994},"location":"Left Ankle"},{"euler":{"heading":70.63756888662677,"pitch":-23.079905956544216,"roll":-20.65503169973648},"location":"Right Ankle"},{"euler":{"heading":158.04610515809716,"pitch":-161.58825291688308,"roll":50.26897076520812},"location":"Right Hip"},{"euler":{"heading":243.1465227898488,"pitch":-104.47792082245053,"roll":47.77040454886436},"location":"Right Knee"},{"euler":{"heading":18.403573530336143,"pitch":-135.5521676386019,"roll":59.775477678952605},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.331"} +{"sensors":[{"euler":{"heading":59.199980949375444,"pitch":125.5791864428696,"roll":18.47315997315904},"location":"Left Knee"},{"euler":{"heading":41.60353386287377,"pitch":91.899672457867,"roll":14.126839329158596},"location":"Left Ankle"},{"euler":{"heading":72.2925619979641,"pitch":-23.6094153608898,"roll":-20.00827852976283},"location":"Right Ankle"},{"euler":{"heading":157.23524464228746,"pitch":-161.86067762519477,"roll":50.16082368868731},"location":"Right Hip"},{"euler":{"heading":251.60687051086393,"pitch":-104.98012874020549,"roll":49.474614093977934},"location":"Right Knee"},{"euler":{"heading":19.00696617730253,"pitch":-137.1532008747417,"roll":60.34792991105735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.432"} +{"sensors":[{"euler":{"heading":62.7674828544379,"pitch":124.59626779858264,"roll":16.157093975843136},"location":"Left Knee"},{"euler":{"heading":44.21818047658639,"pitch":92.6284552120803,"roll":17.170405396242735},"location":"Left Ankle"},{"euler":{"heading":73.43830579816769,"pitch":-23.86097382480082,"roll":-19.613700676786546},"location":"Right Ankle"},{"euler":{"heading":156.41172017805872,"pitch":-162.1621098626753,"roll":50.54474131981858},"location":"Right Hip"},{"euler":{"heading":259.56493345977754,"pitch":-105.93836586618494,"roll":50.470902684580146},"location":"Right Knee"},{"euler":{"heading":18.600019559572278,"pitch":-136.45663078726756,"roll":60.456886919951614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.533"} +{"sensors":[{"euler":{"heading":65.05323456899411,"pitch":124.43039101872438,"roll":14.872634578258824},"location":"Left Knee"},{"euler":{"heading":45.54636242892775,"pitch":92.29685969087228,"roll":18.509614856618462},"location":"Left Ankle"},{"euler":{"heading":74.15072521835093,"pitch":-23.88737644232074,"roll":-19.608580609107893},"location":"Right Ankle"},{"euler":{"heading":155.97679816025286,"pitch":-162.27089887640776,"roll":51.19651718783672},"location":"Right Hip"},{"euler":{"heading":267.0709401137998,"pitch":-106.80077927956644,"roll":50.905062416122135},"location":"Right Knee"},{"euler":{"heading":17.24001760361505,"pitch":-134.9109677085408,"roll":59.886198227956456},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.634"} +{"sensors":[{"euler":{"heading":63.616661112094704,"pitch":125.42485191685195,"roll":15.491621120432942},"location":"Left Knee"},{"euler":{"heading":43.997976186034975,"pitch":91.54842372178506,"roll":17.046153370956617},"location":"Left Ankle"},{"euler":{"heading":74.37940269651584,"pitch":-23.767388798088668,"roll":-19.953972548197104},"location":"Right Ankle"},{"euler":{"heading":155.84786834422758,"pitch":-162.33755898876697,"roll":51.92686546905305},"location":"Right Hip"},{"euler":{"heading":274.4513461024198,"pitch":-107.37695135160979,"roll":50.77080617450993},"location":"Right Knee"},{"euler":{"heading":15.616015843253546,"pitch":-133.14487093768673,"roll":59.13507840516081},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.735"} +{"sensors":[{"euler":{"heading":60.054995000885235,"pitch":127.17611672516676,"roll":17.248709008389646},"location":"Left Knee"},{"euler":{"heading":40.55442856743148,"pitch":90.82483134960655,"roll":13.785288033860954},"location":"Left Ankle"},{"euler":{"heading":73.94771242686426,"pitch":-23.390649918279802,"roll":-20.783575293377393},"location":"Right Ankle"},{"euler":{"heading":156.06308150980485,"pitch":-162.47880308989028,"roll":52.690428922147746},"location":"Right Hip"},{"euler":{"heading":281.92496149217783,"pitch":-107.62050621644882,"roll":49.96872555705894},"location":"Right Knee"},{"euler":{"heading":14.654414258928192,"pitch":-131.89288384391807,"roll":58.57782056464473},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.836"} +{"sensors":[{"euler":{"heading":57.34324550079671,"pitch":128.61475505265008,"roll":18.88633810755068},"location":"Left Knee"},{"euler":{"heading":37.88648571068833,"pitch":90.7735982146459,"roll":11.28800923047486},"location":"Left Ankle"},{"euler":{"heading":72.37794118417784,"pitch":-22.695334926451824,"roll":-21.90521776403965},"location":"Right Ankle"},{"euler":{"heading":156.51927335882436,"pitch":-162.81842278090127,"roll":53.483886029932975},"location":"Right Hip"},{"euler":{"heading":253.73246534296004,"pitch":-107.47720559480395,"roll":48.37810300135305},"location":"Right Knee"},{"euler":{"heading":14.245222833035374,"pitch":-131.09109545952626,"roll":58.18253850818026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.936"} +{"sensors":[{"euler":{"heading":55.965170950717045,"pitch":129.02827954738507,"roll":20.128954296795616},"location":"Left Knee"},{"euler":{"heading":36.6978371396195,"pitch":90.92748839318132,"roll":9.977958307427373},"location":"Left Ankle"},{"euler":{"heading":69.27764706576006,"pitch":-21.744551433806645,"roll":-23.233445987635687},"location":"Right Ankle"},{"euler":{"heading":157.49859602294194,"pitch":-162.84283050281115,"roll":53.92924742693968},"location":"Right Hip"},{"euler":{"heading":229.92796880866405,"pitch":-106.82948503532356,"roll":45.71529270121774},"location":"Right Knee"},{"euler":{"heading":13.864450549731837,"pitch":-130.51948591357365,"roll":58.051784657362234},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.37"} +{"sensors":[{"euler":{"heading":55.34365385564534,"pitch":128.83795159264656,"roll":20.978558867116057},"location":"Left Knee"},{"euler":{"heading":36.32805342565755,"pitch":91.28473955386319,"roll":9.242662476684636},"location":"Left Ankle"},{"euler":{"heading":65.65613235918406,"pitch":-20.55759629042598,"roll":-24.410101388872118},"location":"Right Ankle"},{"euler":{"heading":158.61123642064777,"pitch":-162.26479745253005,"roll":53.63007268424572},"location":"Right Hip"},{"euler":{"heading":208.58517192779766,"pitch":-106.24653653179121,"roll":42.90626343109597},"location":"Right Knee"},{"euler":{"heading":13.840505494758654,"pitch":-130.5612873222163,"roll":58.22785619162602},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.139"} +{"sensors":[{"euler":{"heading":55.10303847008081,"pitch":128.26040643338192,"roll":21.56820298040445},"location":"Left Knee"},{"euler":{"heading":36.5827480830918,"pitch":91.68751559847688,"roll":9.005896229016173},"location":"Left Ankle"},{"euler":{"heading":63.91551912326565,"pitch":-20.470586661383383,"roll":-24.925341249984907},"location":"Right Ankle"},{"euler":{"heading":159.743862778583,"pitch":-161.60706770727705,"roll":52.79831541582115},"location":"Right Hip"},{"euler":{"heading":188.13915473501788,"pitch":-105.42813287861209,"roll":41.67813708798638},"location":"Right Knee"},{"euler":{"heading":14.212704945282788,"pitch":-131.34890858999466,"roll":58.61132057246341},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.240"} +{"sensors":[{"euler":{"heading":55.36148462307273,"pitch":127.49686579004373,"roll":21.748882682364005},"location":"Left Knee"},{"euler":{"heading":37.18072327478262,"pitch":92.04376403862919,"roll":9.186556606114557},"location":"Left Ankle"},{"euler":{"heading":64.63646721093909,"pitch":-21.654777995245045,"roll":-24.17030712498642},"location":"Right Ankle"},{"euler":{"heading":160.30072650072472,"pitch":-161.28386093654936,"roll":51.71848387423904},"location":"Right Hip"},{"euler":{"heading":204.2002392615161,"pitch":-104.29156959075088,"roll":42.55407337918774},"location":"Right Knee"},{"euler":{"heading":14.74768445075451,"pitch":-132.7577677309952,"roll":59.07518851521708},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.341"} +{"sensors":[{"euler":{"heading":56.237836160765454,"pitch":126.50967921103936,"roll":21.455244414127606},"location":"Left Knee"},{"euler":{"heading":38.18765094730436,"pitch":92.45188763476627,"roll":9.786650945503103},"location":"Left Ankle"},{"euler":{"heading":67.51657048984518,"pitch":-22.895550195720542,"roll":-22.33452641248778},"location":"Right Ankle"},{"euler":{"heading":159.68940385065224,"pitch":-161.42422484289443,"roll":51.14038548681514},"location":"Right Hip"},{"euler":{"heading":216.6864653353645,"pitch":-103.68116263167579,"roll":45.329916041268966},"location":"Right Knee"},{"euler":{"heading":15.58541600567906,"pitch":-134.5944909578957,"roll":59.686419663695375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.442"} +{"sensors":[{"euler":{"heading":57.789052544688914,"pitch":125.50871128993543,"roll":20.490969972714844},"location":"Left Knee"},{"euler":{"heading":39.72513585257393,"pitch":92.82544887128965,"roll":11.107985850952794},"location":"Left Ankle"},{"euler":{"heading":70.22116344086066,"pitch":-23.76224517614849,"roll":-20.801073771239},"location":"Right Ankle"},{"euler":{"heading":158.33921346558702,"pitch":-161.838052358605,"roll":50.857596938133625},"location":"Right Hip"},{"euler":{"heading":227.34906880182805,"pitch":-103.52554636850822,"roll":48.12192443714207},"location":"Right Knee"},{"euler":{"heading":16.595624405111153,"pitch":-136.8225418621061,"roll":60.35527769732584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.542"} +{"sensors":[{"euler":{"heading":60.535147290220024,"pitch":124.74534016094191,"roll":18.43562297544336},"location":"Left Knee"},{"euler":{"heading":42.07137226731654,"pitch":93.07415398416069,"roll":13.915937265857515},"location":"Left Ankle"},{"euler":{"heading":71.88654709677459,"pitch":-23.99227065853364,"roll":-20.227216394115104},"location":"Right Ankle"},{"euler":{"heading":157.33029211902831,"pitch":-162.14799712274453,"roll":50.765587244320265},"location":"Right Hip"},{"euler":{"heading":236.72666192164527,"pitch":-104.05424173165738,"roll":50.06598199342787},"location":"Right Knee"},{"euler":{"heading":17.404811964600036,"pitch":-138.3027876758955,"roll":60.94474992759326},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.643"} +{"sensors":[{"euler":{"heading":64.38163256119803,"pitch":123.40830614484773,"roll":16.029560677899024},"location":"Left Knee"},{"euler":{"heading":45.56423504058489,"pitch":94.44173858574462,"roll":17.480593539271766},"location":"Left Ankle"},{"euler":{"heading":73.23539238709714,"pitch":-24.01804359268028,"roll":-19.84199475470359},"location":"Right Ankle"},{"euler":{"heading":156.5972629071255,"pitch":-162.3644474104701,"roll":51.12027851988824},"location":"Right Hip"},{"euler":{"heading":245.57274572948077,"pitch":-105.01131755849164,"roll":51.215633794085086},"location":"Right Knee"},{"euler":{"heading":17.495580768140034,"pitch":-137.67250890830596,"roll":61.15027493483393},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.744"} +{"sensors":[{"euler":{"heading":67.29346930507823,"pitch":123.11747553036295,"roll":14.445354610109122},"location":"Left Knee"},{"euler":{"heading":47.570311536526404,"pitch":94.54131472717016,"roll":19.51378418534459},"location":"Left Ankle"},{"euler":{"heading":74.00560314838742,"pitch":-23.83498923341225,"roll":-19.801545279233235},"location":"Right Ankle"},{"euler":{"heading":156.16253661641295,"pitch":-162.4905026694231,"roll":51.745750667899415},"location":"Right Hip"},{"euler":{"heading":254.0154711565327,"pitch":-105.93518580264248,"roll":51.68782041467658},"location":"Right Knee"},{"euler":{"heading":16.539772691326032,"pitch":-136.01775801747536,"roll":60.66024744135054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.845"} +{"sensors":[{"euler":{"heading":66.25162237457042,"pitch":124.16197797732666,"roll":14.81956914909821},"location":"Left Knee"},{"euler":{"heading":46.094530382873764,"pitch":93.52468325445315,"roll":18.549905766810134},"location":"Left Ankle"},{"euler":{"heading":74.29254283354868,"pitch":-23.520240310071028,"roll":-20.040140751309913},"location":"Right Ankle"},{"euler":{"heading":155.94628295477168,"pitch":-162.63520240248081,"roll":52.53992560110947},"location":"Right Hip"},{"euler":{"heading":262.1326740408794,"pitch":-106.62916722237824,"roll":51.625288373208924},"location":"Right Knee"},{"euler":{"heading":15.023295422193428,"pitch":-134.0722322157278,"roll":59.844222697215486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.946"} +{"sensors":[{"euler":{"heading":62.526460137113375,"pitch":126.02703017959399,"roll":16.53136223418839},"location":"Left Knee"},{"euler":{"heading":42.785077344586384,"pitch":92.39721492900783,"roll":15.582415190129122},"location":"Left Ankle"},{"euler":{"heading":74.01953855019381,"pitch":-22.974466279063925,"roll":-20.723626676178924},"location":"Right Ankle"},{"euler":{"heading":155.95165465929452,"pitch":-162.82168216223272,"roll":53.367183040998526},"location":"Right Hip"},{"euler":{"heading":270.1444066367915,"pitch":-107.12250050014042,"roll":50.96275953588803},"location":"Right Knee"},{"euler":{"heading":13.920965879974085,"pitch":-132.52750899415503,"roll":59.20355042749394},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.47"} +{"sensors":[{"euler":{"heading":59.67381412340204,"pitch":127.5618271616346,"roll":18.21572601076955},"location":"Left Knee"},{"euler":{"heading":39.58156961012775,"pitch":91.96999343610705,"roll":12.580423671116211},"location":"Left Ankle"},{"euler":{"heading":72.81758469517443,"pitch":-22.189519651157532,"roll":-21.770014008561034},"location":"Right Ankle"},{"euler":{"heading":156.28148919336508,"pitch":-163.11451394600945,"roll":54.15546473689867},"location":"Right Hip"},{"euler":{"heading":278.48621597311234,"pitch":-107.19150045012638,"roll":49.49773358229923},"location":"Right Knee"},{"euler":{"heading":13.478869291976677,"pitch":-131.69975809473954,"roll":58.783195384744545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.147"} +{"sensors":[{"euler":{"heading":58.043932711061835,"pitch":128.18064444547116,"roll":19.469153409692595},"location":"Left Knee"},{"euler":{"heading":38.092162649114975,"pitch":91.74799409249634,"roll":11.05363130400459},"location":"Left Ankle"},{"euler":{"heading":69.74207622565699,"pitch":-21.25806768604178,"roll":-23.143012607704932},"location":"Right Ankle"},{"euler":{"heading":157.25959027402857,"pitch":-162.99056255140852,"roll":54.52741826320881},"location":"Right Hip"},{"euler":{"heading":251.88759437580111,"pitch":-106.57860040511375,"roll":46.77921022406932},"location":"Right Knee"},{"euler":{"heading":13.05598236277901,"pitch":-131.22978228526557,"roll":58.5736258462701},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.248"} +{"sensors":[{"euler":{"heading":57.20203943995565,"pitch":128.06258000092404,"roll":20.465988068723338},"location":"Left Knee"},{"euler":{"heading":37.42044638420348,"pitch":91.8919446832467,"roll":10.05451817360413},"location":"Left Ankle"},{"euler":{"heading":66.01786860309129,"pitch":-19.951010917437603,"roll":-24.46621134693444},"location":"Right Ankle"},{"euler":{"heading":158.6836312466257,"pitch":-162.15400629626768,"roll":54.162176436887925},"location":"Right Hip"},{"euler":{"heading":227.94258493822102,"pitch":-106.10824036460238,"roll":44.11378920166239},"location":"Right Knee"},{"euler":{"heading":13.25663412650111,"pitch":-131.43180405673903,"roll":58.710013261643084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.349"} +{"sensors":[{"euler":{"heading":56.81308549596008,"pitch":127.50632200083164,"roll":21.175639261851007},"location":"Left Knee"},{"euler":{"heading":37.54715174578313,"pitch":92.19025021492203,"roll":9.711566356243717},"location":"Left Ankle"},{"euler":{"heading":64.24733174278217,"pitch":-19.830909825693844,"roll":-25.200840212240998},"location":"Right Ankle"},{"euler":{"heading":159.98401812196312,"pitch":-161.42610566664092,"roll":53.177208793199135},"location":"Right Hip"},{"euler":{"heading":205.17332644439892,"pitch":-105.47241632814215,"roll":43.064910281496154},"location":"Right Knee"},{"euler":{"heading":13.805970713851,"pitch":-132.23862365106513,"roll":59.05151193547878},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.449"} +{"sensors":[{"euler":{"heading":56.98802694636408,"pitch":126.77443980074848,"roll":21.42057533566591},"location":"Left Knee"},{"euler":{"heading":38.20493657120482,"pitch":92.50247519342983,"roll":9.915409720619346},"location":"Left Ankle"},{"euler":{"heading":65.15384856850395,"pitch":-21.054068843124462,"roll":-24.555756191016897},"location":"Right Ankle"},{"euler":{"heading":160.5231163097668,"pitch":-161.10849509997684,"roll":52.06573791387922},"location":"Right Hip"},{"euler":{"heading":218.92474379995906,"pitch":-104.75017469532794,"roll":44.21466925334654},"location":"Right Knee"},{"euler":{"heading":14.406623642465899,"pitch":-133.5397612859586,"roll":59.4588607419309},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.550"} +{"sensors":[{"euler":{"heading":57.726724251727674,"pitch":125.90949582067364,"roll":21.12226780209932},"location":"Left Knee"},{"euler":{"heading":39.14069291408434,"pitch":92.81472767408685,"roll":10.567618748557413},"location":"Left Ankle"},{"euler":{"heading":67.70096371165354,"pitch":-22.348661958812016,"roll":-22.787680571915207},"location":"Right Ankle"},{"euler":{"heading":160.07705467879012,"pitch":-161.13514558997915,"roll":51.4216641224913},"location":"Right Hip"},{"euler":{"heading":229.7635194199632,"pitch":-104.55640722579516,"roll":46.880702328011886},"location":"Right Knee"},{"euler":{"heading":15.153461278219309,"pitch":-135.05453515736275,"roll":60.031724667737805},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.650"} +{"sensors":[{"euler":{"heading":59.14155182655491,"pitch":124.94979623860627,"roll":20.191291021889388},"location":"Left Knee"},{"euler":{"heading":40.68912362267591,"pitch":93.20825490667816,"roll":11.942106873701672},"location":"Left Ankle"},{"euler":{"heading":70.19961734048819,"pitch":-23.126295762930816,"roll":-21.302662514723686},"location":"Right Ankle"},{"euler":{"heading":158.9880992109111,"pitch":-161.36538103098124,"roll":51.18574771024217},"location":"Right Hip"},{"euler":{"heading":238.67466747796686,"pitch":-104.75701650321564,"roll":49.555132095210695},"location":"Right Knee"},{"euler":{"heading":16.11311515039738,"pitch":-137.03658164162647,"roll":60.67855220096403},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.750"} +{"sensors":[{"euler":{"heading":61.78989664389942,"pitch":124.10481661474564,"roll":18.22841191970045},"location":"Left Knee"},{"euler":{"heading":42.87021126040832,"pitch":93.46867941601035,"roll":14.585396186331506},"location":"Left Ankle"},{"euler":{"heading":71.80465560643937,"pitch":-23.613666186637737,"roll":-20.61614626325132},"location":"Right Ankle"},{"euler":{"heading":158.24553928982,"pitch":-161.5975929278831,"roll":51.160922939217954},"location":"Right Hip"},{"euler":{"heading":246.9759507301702,"pitch":-105.33756485289408,"roll":51.26211888568963},"location":"Right Knee"},{"euler":{"heading":17.051803635357643,"pitch":-138.47667347746383,"roll":61.241946980867624},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.855"} +{"sensors":[{"euler":{"heading":65.47965697950949,"pitch":123.20058495327109,"roll":15.786820727730403},"location":"Left Knee"},{"euler":{"heading":45.808190134367486,"pitch":94.36556147440932,"roll":17.951856567698357},"location":"Left Ankle"},{"euler":{"heading":72.94919004579543,"pitch":-23.902299567973962,"roll":-20.19828163692619},"location":"Right Ankle"},{"euler":{"heading":157.358485360838,"pitch":-161.93158363509482,"roll":51.58233064529616},"location":"Right Hip"},{"euler":{"heading":254.81585565715318,"pitch":-106.27880836760468,"roll":52.22340699712067},"location":"Right Knee"},{"euler":{"heading":16.72787327182188,"pitch":-137.53525612971745,"roll":61.317752282780866},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.956"} +{"sensors":[{"euler":{"heading":68.03794128155853,"pitch":123.011776457944,"roll":14.333138654957363},"location":"Left Knee"},{"euler":{"heading":47.27737112093074,"pitch":94.1602553269684,"roll":19.60667091092852},"location":"Left Ankle"},{"euler":{"heading":73.59802104121589,"pitch":-23.905819611176568,"roll":-20.14095347323357},"location":"Right Ankle"},{"euler":{"heading":157.02888682475418,"pitch":-162.03842527158537,"roll":52.19909758076654},"location":"Right Hip"},{"euler":{"heading":262.3655200914379,"pitch":-107.12592753084422,"roll":52.526066297408605},"location":"Right Knee"},{"euler":{"heading":15.598835944639692,"pitch":-135.74423051674572,"roll":60.71097705450278},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.57"} +{"sensors":[{"euler":{"heading":67.06539715340269,"pitch":123.9605988121496,"roll":14.799824789461628},"location":"Left Knee"},{"euler":{"heading":44.174634008837664,"pitch":93.30047979427157,"roll":18.38975381983567},"location":"Left Ankle"},{"euler":{"heading":73.8069689370943,"pitch":-23.66523765005891,"roll":-20.458108125910215},"location":"Right Ankle"},{"euler":{"heading":157.06974814227877,"pitch":-162.0345827444268,"roll":52.879187822689886},"location":"Right Hip"},{"euler":{"heading":269.54771808229407,"pitch":-107.7258347777598,"roll":52.398459667667744},"location":"Right Knee"},{"euler":{"heading":14.307702350175724,"pitch":-133.89480746507115,"roll":59.9336293490525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.157"} +{"sensors":[{"euler":{"heading":63.52760743806242,"pitch":125.73328893093465,"roll":16.532342310515467},"location":"Left Knee"},{"euler":{"heading":40.7634206079539,"pitch":92.42043181484442,"roll":15.132028437852103},"location":"Left Ankle"},{"euler":{"heading":73.49502204338486,"pitch":-23.12996388505302,"roll":-21.156047313319192},"location":"Right Ankle"},{"euler":{"heading":157.2502733280509,"pitch":-162.15612446998412,"roll":53.6225190404209},"location":"Right Hip"},{"euler":{"heading":276.5366962740647,"pitch":-108.14075129998382,"roll":51.71486370090097},"location":"Right Knee"},{"euler":{"heading":13.339432115158152,"pitch":-132.48032671856404,"roll":59.27776641414725},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.259"} +{"sensors":[{"euler":{"heading":60.34984669425617,"pitch":127.45371003784119,"roll":18.26035807946392},"location":"Left Knee"},{"euler":{"heading":37.73082854715851,"pitch":92.06588863335999,"roll":12.125075594066892},"location":"Left Ankle"},{"euler":{"heading":72.33926983904638,"pitch":-22.423217496547718,"roll":-22.302942581987274},"location":"Right Ankle"},{"euler":{"heading":157.6877459952458,"pitch":-162.4280120229857,"roll":54.41651713637881},"location":"Right Hip"},{"euler":{"heading":283.8392766466582,"pitch":-108.18292616998544,"roll":50.27462733081088},"location":"Right Knee"},{"euler":{"heading":12.961738903642338,"pitch":-131.70104404670764,"roll":58.781239772732526},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.359"} +{"sensors":[{"euler":{"heading":58.571112024830555,"pitch":128.14583903405708,"roll":19.57807227151753},"location":"Left Knee"},{"euler":{"heading":36.36399569244266,"pitch":91.934299770024,"roll":10.600068034660204},"location":"Left Ankle"},{"euler":{"heading":69.24284285514175,"pitch":-21.387145746892948,"roll":-23.60389832378855},"location":"Right Ankle"},{"euler":{"heading":158.51897139572122,"pitch":-162.47271082068713,"roll":54.91861542274093},"location":"Right Hip"},{"euler":{"heading":256.1365989819924,"pitch":-107.5896335529869,"roll":47.74091459772979},"location":"Right Knee"},{"euler":{"heading":12.621815013278106,"pitch":-131.13093964203688,"roll":58.54686579545927},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.460"} +{"sensors":[{"euler":{"heading":57.6390008223475,"pitch":128.13750513065136,"roll":20.48901504436578},"location":"Left Knee"},{"euler":{"heading":35.6150961231984,"pitch":91.9283697930216,"roll":9.565061231194184},"location":"Left Ankle"},{"euler":{"heading":65.31230856962758,"pitch":-19.879681172203654,"roll":-24.956008491409698},"location":"Right Ankle"},{"euler":{"heading":159.8358242561491,"pitch":-161.7879397386184,"roll":54.67675388046683},"location":"Right Hip"},{"euler":{"heading":231.54168908379316,"pitch":-107.05567019768822,"roll":44.85432313795682},"location":"Right Knee"},{"euler":{"heading":12.728383511950296,"pitch":-131.2865956778332,"roll":58.610929215913345},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.561"} +{"sensors":[{"euler":{"heading":57.01260074011275,"pitch":127.84250461758623,"roll":21.0963635399292},"location":"Left Knee"},{"euler":{"heading":35.45983651087856,"pitch":91.94178281371944,"roll":9.033555108074767},"location":"Left Ankle"},{"euler":{"heading":63.18732771266482,"pitch":-19.604213054983287,"roll":-25.635407642268728},"location":"Right Ankle"},{"euler":{"heading":161.07099183053418,"pitch":-161.06539576475657,"roll":53.81532849242016},"location":"Right Hip"},{"euler":{"heading":244.26877017541383,"pitch":-106.2563531779194,"roll":43.45014082416113},"location":"Right Knee"},{"euler":{"heading":13.061795160755267,"pitch":-132.17043611004988,"roll":58.87483629432201},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.662"} +{"sensors":[{"euler":{"heading":57.13634066610148,"pitch":127.21450415582761,"roll":21.317977185936282},"location":"Left Knee"},{"euler":{"heading":35.84510285979071,"pitch":92.1663545323475,"roll":9.01144959726729},"location":"Left Ankle"},{"euler":{"heading":63.81234494139834,"pitch":-20.593791749484957,"roll":-24.990616878041855},"location":"Right Ankle"},{"euler":{"heading":161.50139264748077,"pitch":-160.70885618828092,"roll":52.73379564317814},"location":"Right Hip"},{"euler":{"heading":253.77314315787245,"pitch":-105.41196786012746,"roll":44.35512674174502},"location":"Right Knee"},{"euler":{"heading":13.555615644679742,"pitch":-133.49714249904488,"roll":59.23735266488981},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.762"} +{"sensors":[{"euler":{"heading":57.87895659949133,"pitch":126.34930374024485,"roll":21.098679467342656},"location":"Left Knee"},{"euler":{"heading":36.65434257381163,"pitch":92.50596907911276,"roll":9.460304637540562},"location":"Left Ankle"},{"euler":{"heading":66.7498604472585,"pitch":-21.80316257453646,"roll":-23.37280519023767},"location":"Right Ankle"},{"euler":{"heading":161.05125338273268,"pitch":-160.81297056945283,"roll":51.885416078860324},"location":"Right Hip"},{"euler":{"heading":260.6770788420852,"pitch":-104.87077107411471,"roll":46.93836406757052},"location":"Right Knee"},{"euler":{"heading":14.350054080211768,"pitch":-135.2474282491404,"roll":59.74486739840083},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.863"} +{"sensors":[{"euler":{"heading":59.222310939542204,"pitch":125.37687336622037,"roll":20.30756152060839},"location":"Left Knee"},{"euler":{"heading":38.03265831643047,"pitch":92.90537217120149,"roll":10.570524173786506},"location":"Left Ankle"},{"euler":{"heading":69.35612440253266,"pitch":-22.922846317082815,"roll":-21.7792746712139},"location":"Right Ankle"},{"euler":{"heading":159.80862804445943,"pitch":-161.22542351250755,"roll":51.521874470974296},"location":"Right Hip"},{"euler":{"heading":266.4406209578767,"pitch":-105.00244396670325,"roll":49.675777660813466},"location":"Right Knee"},{"euler":{"heading":15.402548672190592,"pitch":-137.48518542422636,"roll":60.34538065856075},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.963"} +{"sensors":[{"euler":{"heading":61.83757984558799,"pitch":124.67043602959833,"roll":18.326805368547554},"location":"Left Knee"},{"euler":{"heading":40.08564248478743,"pitch":92.97108495408135,"roll":13.063471756407857},"location":"Left Ankle"},{"euler":{"heading":70.92676196227939,"pitch":-23.605561685374536,"roll":-21.02009720409251},"location":"Right Ankle"},{"euler":{"heading":159.1965152400135,"pitch":-161.42163116125678,"roll":51.30093702387687},"location":"Right Hip"},{"euler":{"heading":271.7090588620891,"pitch":-105.42719957003293,"roll":51.46444989473212},"location":"Right Knee"},{"euler":{"heading":16.074793804971534,"pitch":-138.77416688180372,"roll":60.73584259270467},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.64"} +{"sensors":[{"euler":{"heading":65.49132186102919,"pitch":123.9096424266385,"roll":15.862874831692798},"location":"Left Knee"},{"euler":{"heading":43.102078236308685,"pitch":93.57397645867322,"roll":16.59462458076707},"location":"Left Ankle"},{"euler":{"heading":71.94033576605145,"pitch":-23.86375551683708,"roll":-20.61808748368326},"location":"Right Ankle"},{"euler":{"heading":158.13311371601213,"pitch":-161.7419680451311,"roll":51.508343321489185},"location":"Right Hip"},{"euler":{"heading":276.5131529758802,"pitch":-106.40947961302965,"roll":52.51800490525891},"location":"Right Knee"},{"euler":{"heading":15.273564424474381,"pitch":-137.24675019362334,"roll":60.8185083334342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.165"} +{"sensors":[{"euler":{"heading":68.14218967492627,"pitch":123.73742818397466,"roll":14.251587348523518},"location":"Left Knee"},{"euler":{"heading":44.96062041267782,"pitch":93.1665788128059,"roll":18.622662122690365},"location":"Left Ankle"},{"euler":{"heading":72.55255218944632,"pitch":-24.058629965153376,"roll":-20.531278735314938},"location":"Right Ankle"},{"euler":{"heading":157.59480234441094,"pitch":-161.91777124061798,"roll":51.99500898934027},"location":"Right Hip"},{"euler":{"heading":281.4493376782922,"pitch":-107.16228165172669,"roll":52.93495441473303},"location":"Right Knee"},{"euler":{"heading":13.996207982026943,"pitch":-135.297075174261,"roll":60.236657500090786},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.266"} +{"sensors":[{"euler":{"heading":67.25297070743365,"pitch":124.6136853655772,"roll":14.551428613671167},"location":"Left Knee"},{"euler":{"heading":44.13955837141003,"pitch":92.3061709315253,"roll":17.99164591042133},"location":"Left Ankle"},{"euler":{"heading":72.9972969705017,"pitch":-24.17776696863804,"roll":-20.690650861783443},"location":"Right Ankle"},{"euler":{"heading":157.35407210996985,"pitch":-162.11349411655618,"roll":52.63300809040624},"location":"Right Hip"},{"euler":{"heading":286.348153910463,"pitch":-107.67105348655403,"roll":52.85395897325972},"location":"Right Knee"},{"euler":{"heading":48.57158718382425,"pitch":-133.1861176568349,"roll":59.462991750081706},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.367"} +{"sensors":[{"euler":{"heading":63.696423636690284,"pitch":126.29606682901948,"roll":16.22753575230405},"location":"Left Knee"},{"euler":{"heading":41.03810253426903,"pitch":91.36930383837277,"roll":15.104981319379197},"location":"Left Ankle"},{"euler":{"heading":72.84131727345152,"pitch":-23.878740271774234,"roll":-21.2215857756051},"location":"Right Ankle"},{"euler":{"heading":157.44366489897286,"pitch":-162.19589470490055,"roll":53.35720728136562},"location":"Right Hip"},{"euler":{"heading":291.2445885194167,"pitch":-108.06644813789862,"roll":52.21856307593375},"location":"Right Knee"},{"euler":{"heading":44.02692846544183,"pitch":-131.63625589115142,"roll":58.804192575073536},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.467"} +{"sensors":[{"euler":{"heading":60.15178127302126,"pitch":128.09771014611752,"roll":17.998532177073645},"location":"Left Knee"},{"euler":{"heading":37.80304228084213,"pitch":90.9636234545355,"roll":11.994483187441277},"location":"Left Ankle"},{"euler":{"heading":71.83843554610637,"pitch":-23.215866244596814,"roll":-22.11817719804459},"location":"Right Ankle"},{"euler":{"heading":157.79929840907556,"pitch":-162.38880523441048,"roll":54.102736553229064},"location":"Right Hip"},{"euler":{"heading":296.61387966747503,"pitch":-108.09105332410876,"roll":50.82795676834037},"location":"Right Knee"},{"euler":{"heading":40.324235618897646,"pitch":-130.82888030203628,"roll":58.317523317566184},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.568"} +{"sensors":[{"euler":{"heading":58.15535314571913,"pitch":128.83793913150578,"roll":19.39867895936628},"location":"Left Knee"},{"euler":{"heading":36.297738052757914,"pitch":90.77351110908195,"roll":10.363784868697149},"location":"Left Ankle"},{"euler":{"heading":68.95459199149573,"pitch":-22.300529620137134,"roll":-23.381359478240135},"location":"Right Ankle"},{"euler":{"heading":158.69436856816802,"pitch":-162.28742471096942,"roll":54.49871289790616},"location":"Right Hip"},{"euler":{"heading":267.2587417007275,"pitch":-107.48194799169788,"roll":48.288911091506336},"location":"Right Knee"},{"euler":{"heading":37.07306205700788,"pitch":-130.26474227183266,"roll":58.06702098580956},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.670"} +{"sensors":[{"euler":{"heading":57.17731783114722,"pitch":128.80414521835522,"roll":20.465061063429655},"location":"Left Knee"},{"euler":{"heading":35.53046424748212,"pitch":90.85865999817375,"roll":9.277406381827433},"location":"Left Ankle"},{"euler":{"heading":65.15288279234616,"pitch":-20.86422665812342,"roll":-24.78072353041612},"location":"Right Ankle"},{"euler":{"heading":160.06868171135122,"pitch":-161.56493223987246,"roll":54.07384160811554},"location":"Right Hip"},{"euler":{"heading":241.01411753065474,"pitch":-106.99000319252809,"roll":45.497519982355705},"location":"Right Knee"},{"euler":{"heading":34.61575585130709,"pitch":-130.3320180446494,"roll":58.154068887228604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.770"} +{"sensors":[{"euler":{"heading":56.5845860480325,"pitch":128.4174806965197,"roll":21.22480495708669},"location":"Left Knee"},{"euler":{"heading":35.43991782273391,"pitch":90.99779399835637,"roll":8.749665743644691},"location":"Left Ankle"},{"euler":{"heading":62.97509451311154,"pitch":-20.427803992311077,"roll":-25.61515117737451},"location":"Right Ankle"},{"euler":{"heading":161.5368135402161,"pitch":-160.78968901588522,"roll":53.02895744730399},"location":"Right Hip"},{"euler":{"heading":252.1189557775893,"pitch":-106.25975287327529,"roll":44.291517984120134},"location":"Right Knee"},{"euler":{"heading":32.77293026617638,"pitch":-131.18006624018446,"roll":58.45741199850574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.871"} +{"sensors":[{"euler":{"heading":56.60737744322925,"pitch":127.77573262686774,"roll":21.52107446137802},"location":"Left Knee"},{"euler":{"heading":35.70842604046052,"pitch":91.14176459852074,"roll":8.687199169280223},"location":"Left Ankle"},{"euler":{"heading":63.45258506180039,"pitch":-21.32252359307997,"roll":-25.16613605963706},"location":"Right Ankle"},{"euler":{"heading":162.06438218619448,"pitch":-160.4794701142967,"roll":51.82606170257359},"location":"Right Hip"},{"euler":{"heading":260.32581019983036,"pitch":-105.52127758594777,"roll":45.28111618570812},"location":"Right Knee"},{"euler":{"heading":31.308137239558743,"pitch":-132.55580961616602,"roll":58.86792079865517},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.971"} +{"sensors":[{"euler":{"heading":57.290389698906324,"pitch":126.91065936418096,"roll":21.33771701524022},"location":"Left Knee"},{"euler":{"heading":36.450083436414474,"pitch":91.41508813866866,"roll":9.137229252352201},"location":"Left Ankle"},{"euler":{"heading":66.52607655562035,"pitch":-22.484021233771973,"roll":-23.499522453673357},"location":"Right Ankle"},{"euler":{"heading":161.65794396757505,"pitch":-160.51902310286704,"roll":51.01845553231623},"location":"Right Hip"},{"euler":{"heading":266.0619791798473,"pitch":-105.25664982735299,"roll":47.92175456713731},"location":"Right Knee"},{"euler":{"heading":30.25857351560287,"pitch":-134.30022865454941,"roll":59.43112871878966},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.74"} +{"sensors":[{"euler":{"heading":58.55510072901569,"pitch":125.91334342776287,"roll":20.578945313716197},"location":"Left Knee"},{"euler":{"heading":37.86757509277303,"pitch":91.8235793248018,"roll":10.298506327116982},"location":"Left Ankle"},{"euler":{"heading":69.33596890005832,"pitch":-23.460619110394777,"roll":-21.874570208306025},"location":"Right Ankle"},{"euler":{"heading":160.42339957081757,"pitch":-160.90462079258035,"roll":50.60410997908461},"location":"Right Hip"},{"euler":{"heading":270.56203126186256,"pitch":-105.5997348446177,"roll":50.792079110423586},"location":"Right Knee"},{"euler":{"heading":29.595216164042583,"pitch":-136.43270578909448,"roll":60.05676584691069},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.175"} +{"sensors":[{"euler":{"heading":60.949590656114125,"pitch":124.9407590849866,"roll":18.789800782344578},"location":"Left Knee"},{"euler":{"heading":39.94956758349573,"pitch":91.99747139232163,"roll":12.731155694405285},"location":"Left Ankle"},{"euler":{"heading":71.05862201005249,"pitch":-24.0708071993553,"roll":-20.96211318747542},"location":"Right Ankle"},{"euler":{"heading":159.6935596137358,"pitch":-161.15165871332232,"roll":50.46244898117615},"location":"Right Hip"},{"euler":{"heading":274.8683281356763,"pitch":-106.08976136015593,"roll":52.62537119938123},"location":"Right Knee"},{"euler":{"heading":29.079444547638328,"pitch":-137.97068521018502,"roll":60.61358926221963},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.276"} +{"sensors":[{"euler":{"heading":64.66713159050272,"pitch":123.94668317648794,"roll":16.304570704110123},"location":"Left Knee"},{"euler":{"heading":43.52961082514616,"pitch":92.90397425308947,"roll":16.55804012496476},"location":"Left Ankle"},{"euler":{"heading":72.22150980904725,"pitch":-24.607476479419773,"roll":-20.490901868727878},"location":"Right Ankle"},{"euler":{"heading":158.95545365236222,"pitch":-161.5239928419901,"roll":50.75370408305854},"location":"Right Hip"},{"euler":{"heading":279.4002453221087,"pitch":-106.82453522414035,"roll":53.59408407944311},"location":"Right Knee"},{"euler":{"heading":27.302750092874497,"pitch":-136.77361668916652,"roll":60.69598033599766},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.376"} +{"sensors":[{"euler":{"heading":67.91291843145245,"pitch":123.51451485883915,"roll":14.37411363369911},"location":"Left Knee"},{"euler":{"heading":45.77664974263154,"pitch":92.68232682778053,"roll":18.845986112468285},"location":"Left Ankle"},{"euler":{"heading":72.91810882814252,"pitch":-24.971728831477797,"roll":-20.310561681855088},"location":"Right Ankle"},{"euler":{"heading":158.622408287126,"pitch":-161.7403435577911,"roll":51.34708367475269},"location":"Right Hip"},{"euler":{"heading":284.00397078989783,"pitch":-107.41708170172632,"roll":53.9596756714988},"location":"Right Knee"},{"euler":{"heading":24.966225083587048,"pitch":-134.90875502024988,"roll":60.0826323023979},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.477"} +{"sensors":[{"euler":{"heading":67.9403765883072,"pitch":124.25056337295524,"roll":14.386702270329199},"location":"Left Knee"},{"euler":{"heading":44.90523476836839,"pitch":91.86409414500248,"roll":18.242637501221456},"location":"Left Ankle"},{"euler":{"heading":73.16379794532827,"pitch":-25.143305948330017,"roll":-20.49200551366958},"location":"Right Ankle"},{"euler":{"heading":158.8476674584134,"pitch":-161.735059202012,"roll":52.03737530727742},"location":"Right Hip"},{"euler":{"heading":288.69107371090803,"pitch":-107.7003735315537,"roll":53.80745810434892},"location":"Right Knee"},{"euler":{"heading":22.682102575228342,"pitch":-132.9678795182249,"roll":59.255619072158105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.578"} +{"sensors":[{"euler":{"heading":64.35883892947649,"pitch":125.89425703565973,"roll":16.18553204329628},"location":"Left Knee"},{"euler":{"heading":41.65846129153155,"pitch":91.08393473050224,"roll":15.20587375109931},"location":"Left Ankle"},{"euler":{"heading":72.92241815079545,"pitch":-24.835225353497016,"roll":-21.02405496230262},"location":"Right Ankle"},{"euler":{"heading":159.17540071257207,"pitch":-161.7240532818108,"roll":52.78363777654968},"location":"Right Hip"},{"euler":{"heading":293.1907163398172,"pitch":-107.98658617839833,"roll":53.15171229391403},"location":"Right Knee"},{"euler":{"heading":20.882642317705507,"pitch":-131.45859156640242,"roll":58.605057164942295},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.679"} +{"sensors":[{"euler":{"heading":60.77295503652884,"pitch":127.63608133209377,"roll":18.066978838966655},"location":"Left Knee"},{"euler":{"heading":38.4676151623784,"pitch":90.69429125745201,"roll":12.141536375989379},"location":"Left Ankle"},{"euler":{"heading":71.96767633571591,"pitch":-24.139202818147318,"roll":-22.03414946607236},"location":"Right Ankle"},{"euler":{"heading":159.64536064131485,"pitch":-161.83914795362972,"roll":53.561523998894714},"location":"Right Hip"},{"euler":{"heading":297.9716447058355,"pitch":-107.9816775605585,"roll":51.86779106452263},"location":"Right Knee"},{"euler":{"heading":19.706878085934957,"pitch":-130.61273240976217,"roll":58.10705144844806},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.781"} +{"sensors":[{"euler":{"heading":58.73315953287596,"pitch":128.3162231988844,"roll":19.56028095506999},"location":"Left Knee"},{"euler":{"heading":36.89585364614056,"pitch":90.7061121317068,"roll":10.402382738390441},"location":"Left Ankle"},{"euler":{"heading":69.51465870214433,"pitch":-21.787782536332585,"roll":-23.268234519465125},"location":"Right Ankle"},{"euler":{"heading":160.53707457718335,"pitch":-161.83648315826676,"roll":54.08037159900525},"location":"Right Hip"},{"euler":{"heading":304.04323023525194,"pitch":-107.26475980450265,"roll":49.48101195807036},"location":"Right Knee"},{"euler":{"heading":18.86119027734146,"pitch":-130.09520916878594,"roll":57.915096303603256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.882"} +{"sensors":[{"euler":{"heading":57.547343579588365,"pitch":128.41585087899594,"roll":20.523002859562993},"location":"Left Knee"},{"euler":{"heading":35.9812682815265,"pitch":90.68550091853612,"roll":9.318394464551398},"location":"Left Ankle"},{"euler":{"heading":65.7131928319299,"pitch":-20.421504282699328,"roll":-24.69141106751861},"location":"Right Ankle"},{"euler":{"heading":161.88336711946502,"pitch":-161.1528348424401,"roll":53.82858443910472},"location":"Right Hip"},{"euler":{"heading":273.77015721172677,"pitch":-106.7320338240524,"roll":46.645410762263325},"location":"Right Knee"},{"euler":{"heading":18.231321249607316,"pitch":-130.02318825190736,"roll":58.036086673242934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.982"} +{"sensors":[{"euler":{"heading":56.68010922162953,"pitch":128.29301579109637,"roll":21.151952573606692},"location":"Left Knee"},{"euler":{"heading":35.53939145337385,"pitch":90.64195082668252,"roll":8.655305018096259},"location":"Left Ankle"},{"euler":{"heading":63.33562354873691,"pitch":-19.754353854429397,"roll":-25.491019960766753},"location":"Right Ankle"},{"euler":{"heading":163.2700304075185,"pitch":-160.41255135819608,"roll":52.93322599519425},"location":"Right Hip"},{"euler":{"heading":281.53689149055407,"pitch":-105.89633044164717,"roll":45.068369686036995},"location":"Right Knee"},{"euler":{"heading":17.989439124646584,"pitch":-130.90836942671663,"roll":58.363728005918645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.82"} +{"sensors":[{"euler":{"heading":56.343348299466584,"pitch":127.97621421198673,"roll":21.368007316246025},"location":"Left Knee"},{"euler":{"heading":35.49795230803647,"pitch":90.55275574401426,"roll":8.396024516286634},"location":"Left Ankle"},{"euler":{"heading":63.62081119386322,"pitch":-20.622668468986458,"roll":-25.154417964690076},"location":"Right Ankle"},{"euler":{"heading":163.86177736676666,"pitch":-160.03379622237648,"roll":51.877403395674826},"location":"Right Hip"},{"euler":{"heading":286.7832023414987,"pitch":-104.86919739748245,"roll":45.692782717433296},"location":"Right Knee"},{"euler":{"heading":17.946745212181927,"pitch":-132.36753248404497,"roll":58.80235520532678},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.183"} +{"sensors":[{"euler":{"heading":56.81526346951993,"pitch":127.33484279078806,"roll":21.13745658462142},"location":"Left Knee"},{"euler":{"heading":35.97315707723282,"pitch":90.57248016961285,"roll":8.65017206465797},"location":"Left Ankle"},{"euler":{"heading":66.0024800744769,"pitch":-21.972901622087814,"roll":-23.65147616822107},"location":"Right Ankle"},{"euler":{"heading":163.49434963009,"pitch":-160.12416660013884,"roll":51.077163056107345},"location":"Right Hip"},{"euler":{"heading":290.02988210734884,"pitch":-104.29477765773422,"roll":48.09225444568997},"location":"Right Knee"},{"euler":{"heading":18.233320690963737,"pitch":-134.23077923564048,"roll":59.3533696847941},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.283"} +{"sensors":[{"euler":{"heading":58.002487122567935,"pitch":126.55760851170925,"roll":20.33621092615928},"location":"Left Knee"},{"euler":{"heading":37.10709136950954,"pitch":90.72773215265157,"roll":9.635154858192173},"location":"Left Ankle"},{"euler":{"heading":68.82723206702921,"pitch":-23.188111459879035,"roll":-21.980078551398964},"location":"Right Ankle"},{"euler":{"heading":162.288664667081,"pitch":-160.47424994012496,"roll":50.76944675049661},"location":"Right Hip"},{"euler":{"heading":292.14564389661393,"pitch":-104.6777998919608,"roll":50.95802900112098},"location":"Right Knee"},{"euler":{"heading":18.847488621867363,"pitch":-136.50145131207643,"roll":60.00553271631469},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.384"} +{"sensors":[{"euler":{"heading":60.40223841031114,"pitch":125.68309766053832,"roll":18.54008983354335},"location":"Left Knee"},{"euler":{"heading":39.18388223255859,"pitch":90.9112089373864,"roll":12.009139372372957},"location":"Left Ankle"},{"euler":{"heading":70.3445088603263,"pitch":-23.38180031389113,"roll":-21.39457069625907},"location":"Right Ankle"},{"euler":{"heading":161.1222982003729,"pitch":-160.80182494611248,"roll":50.667502075446954},"location":"Right Hip"},{"euler":{"heading":293.62482950695255,"pitch":-105.31001990276474,"roll":52.95597610100888},"location":"Right Knee"},{"euler":{"heading":19.37523975968063,"pitch":-138.08255618086878,"roll":60.58622944468323},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.485"} +{"sensors":[{"euler":{"heading":64.12451456928002,"pitch":124.62103789448449,"roll":16.104830850189018},"location":"Left Knee"},{"euler":{"heading":42.409244009302725,"pitch":91.82008804364777,"roll":15.60197543513566},"location":"Left Ankle"},{"euler":{"heading":71.39130797429367,"pitch":-23.48737028250202,"roll":-21.117613626633165},"location":"Right Ankle"},{"euler":{"heading":160.00381838033562,"pitch":-161.21539245150123,"roll":50.94450186790226},"location":"Right Hip"},{"euler":{"heading":295.3435965562573,"pitch":-106.43526791248827,"roll":54.15412849090799},"location":"Right Knee"},{"euler":{"heading":18.400215783712564,"pitch":-136.8993005627819,"roll":60.73385650021491},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.586"} +{"sensors":[{"euler":{"heading":66.96831311235202,"pitch":124.28393410503604,"roll":14.556847765170117},"location":"Left Knee"},{"euler":{"heading":44.530819608372454,"pitch":91.88182923928301,"roll":17.623027891622094},"location":"Left Ankle"},{"euler":{"heading":72.2396771768643,"pitch":-23.413633254251817,"roll":-21.030852263969848},"location":"Right Ankle"},{"euler":{"heading":159.13468654230206,"pitch":-161.5001032063511,"roll":51.668801681112036},"location":"Right Hip"},{"euler":{"heading":297.2029869006316,"pitch":-107.46674112123944,"roll":54.73246564181719},"location":"Right Knee"},{"euler":{"heading":16.747694205341308,"pitch":-134.9156205065037,"roll":60.16047085019342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.687"} +{"sensors":[{"euler":{"heading":65.85273180111682,"pitch":125.23679069453243,"roll":15.044912988653104},"location":"Left Knee"},{"euler":{"heading":43.48398764753521,"pitch":91.08739631535471,"roll":16.791975102459883},"location":"Left Ankle"},{"euler":{"heading":72.54695945917787,"pitch":-23.078519928826637,"roll":-21.252767037572863},"location":"Right Ankle"},{"euler":{"heading":158.83996788807187,"pitch":-161.60009288571598,"roll":52.43942151300083},"location":"Right Hip"},{"euler":{"heading":299.4201882105684,"pitch":-108.1763170091155,"roll":54.746719077635476},"location":"Right Knee"},{"euler":{"heading":51.06667478480718,"pitch":-132.82405845585333,"roll":59.38192376517408},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.788"} +{"sensors":[{"euler":{"heading":62.04870862100514,"pitch":126.9318616250792,"roll":16.909171689787794},"location":"Left Knee"},{"euler":{"heading":40.25433888278169,"pitch":90.27865668381924,"roll":13.750277592213894},"location":"Left Ankle"},{"euler":{"heading":72.27976351326008,"pitch":-22.45191793594397,"roll":-21.814990333815576},"location":"Right Ankle"},{"euler":{"heading":158.75597109926468,"pitch":-161.7275835971444,"roll":53.276729361700745},"location":"Right Hip"},{"euler":{"heading":302.0031693895116,"pitch":-108.67743530820394,"roll":54.153297169871934},"location":"Right Knee"},{"euler":{"heading":46.32250730632646,"pitch":-131.260402610268,"roll":58.793731388656674},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.888"} +{"sensors":[{"euler":{"heading":59.32508775890463,"pitch":128.09492546257127,"roll":18.612004520809016},"location":"Left Knee"},{"euler":{"heading":37.44765499450352,"pitch":90.23204101543732,"roll":11.212749832992506},"location":"Left Ankle"},{"euler":{"heading":71.10803716193408,"pitch":-21.762976142349572,"roll":-22.93349130043402},"location":"Right Ankle"},{"euler":{"heading":159.1428739893382,"pitch":-161.87982523742994,"roll":54.09905642553067},"location":"Right Hip"},{"euler":{"heading":305.5716024505604,"pitch":-108.67219177738355,"roll":52.70671745288474},"location":"Right Knee"},{"euler":{"heading":42.70275657569382,"pitch":-130.4531123492412,"roll":58.45185824979101},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.989"} +{"sensors":[{"euler":{"heading":57.99882898301417,"pitch":128.45418291631415,"roll":19.850804068728117},"location":"Left Knee"},{"euler":{"heading":36.121639495053174,"pitch":90.39633691389359,"roll":9.822724849693255},"location":"Left Ankle"},{"euler":{"heading":68.22848344574066,"pitch":-20.899178528114614,"roll":-24.22139217039062},"location":"Right Ankle"},{"euler":{"heading":160.09733659040438,"pitch":-161.64809271368696,"roll":54.4266507829776},"location":"Right Hip"},{"euler":{"heading":310.4831922055044,"pitch":-108.0112225996452,"roll":50.129795707596266},"location":"Right Knee"},{"euler":{"heading":39.48873091812444,"pitch":-130.0078011143171,"roll":58.375422424811916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.91"} +{"sensors":[{"euler":{"heading":57.26144608471275,"pitch":128.45251462468275,"roll":20.578223661855304},"location":"Left Knee"},{"euler":{"heading":35.45947554554786,"pitch":90.57545322250424,"roll":9.00920236472393},"location":"Left Ankle"},{"euler":{"heading":64.6993851011666,"pitch":-19.946760675303153,"roll":-25.26175295335156},"location":"Right Ankle"},{"euler":{"heading":161.42510293136397,"pitch":-160.95203344231828,"roll":53.890235704679846},"location":"Right Hip"},{"euler":{"heading":315.047372984954,"pitch":-107.11010033968068,"roll":47.58556613683664},"location":"Right Knee"},{"euler":{"heading":36.896107826312,"pitch":-130.04452100288538,"roll":58.59413018233072},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.192"} +{"sensors":[{"euler":{"heading":56.84155147624148,"pitch":128.23851316221447,"roll":20.957901295669775},"location":"Left Knee"},{"euler":{"heading":35.33227799099308,"pitch":90.76790790025382,"roll":8.689532128251537},"location":"Left Ankle"},{"euler":{"heading":63.085696591049945,"pitch":-19.79583460777284,"roll":-25.841827658016406},"location":"Right Ankle"},{"euler":{"heading":162.85759263822757,"pitch":-160.31933009808645,"roll":52.73871213421186},"location":"Right Hip"},{"euler":{"heading":317.7176356864586,"pitch":-106.32409030571262,"roll":46.65825952315297},"location":"Right Knee"},{"euler":{"heading":34.756497043680795,"pitch":-130.71506890259684,"roll":58.990967164097654},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.293"} +{"sensors":[{"euler":{"heading":57.113646328617335,"pitch":127.66466184599302,"roll":20.999611166102795},"location":"Left Knee"},{"euler":{"heading":35.70530019189377,"pitch":91.02861711022844,"roll":8.845578915426383},"location":"Left Ankle"},{"euler":{"heading":63.87087693194495,"pitch":-20.735001146995554,"roll":-25.145144892214766},"location":"Right Ankle"},{"euler":{"heading":163.41558337440483,"pitch":-160.1061470882778,"roll":51.51484092079067},"location":"Right Hip"},{"euler":{"heading":318.28962211781277,"pitch":-105.32918127514137,"roll":47.87993357083768},"location":"Right Knee"},{"euler":{"heading":33.162097339312716,"pitch":-131.96856201233715,"roll":59.51062044768789},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.394"} +{"sensors":[{"euler":{"heading":57.9835316957556,"pitch":126.81694566139373,"roll":20.630900049492517},"location":"Left Knee"},{"euler":{"heading":36.609770172704394,"pitch":91.3820053992056,"roll":9.467271023883745},"location":"Left Ankle"},{"euler":{"heading":66.29628923875046,"pitch":-22.030251032296,"roll":-23.53063040299329},"location":"Right Ankle"},{"euler":{"heading":162.87402503696435,"pitch":-160.17053237945,"roll":50.8633568287116},"location":"Right Hip"},{"euler":{"heading":317.5606599060315,"pitch":-105.04001314762723,"roll":50.429440213753914},"location":"Right Knee"},{"euler":{"heading":32.208387605381446,"pitch":-133.85295581110344,"roll":60.172058402919106},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.495"} +{"sensors":[{"euler":{"heading":59.57267852618005,"pitch":126.07275109525436,"roll":19.549060044543264},"location":"Left Knee"},{"euler":{"heading":38.13004315543395,"pitch":91.66255485928504,"roll":10.883043921495371},"location":"Left Ankle"},{"euler":{"heading":68.91666031487541,"pitch":-22.9959759290664,"roll":-22.04006736269396},"location":"Right Ankle"},{"euler":{"heading":161.48037253326794,"pitch":-160.540979141505,"roll":50.74577114584044},"location":"Right Hip"},{"euler":{"heading":316.27334391542837,"pitch":-105.32976183286452,"roll":52.798996192378524},"location":"Right Knee"},{"euler":{"heading":31.500048844843302,"pitch":-136.2614102299931,"roll":60.8173525626272},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.595"} +{"sensors":[{"euler":{"heading":62.490410673562046,"pitch":125.44047598572894,"roll":17.41290404008894},"location":"Left Knee"},{"euler":{"heading":40.717038839890556,"pitch":91.98379937335653,"roll":13.850989529345835},"location":"Left Ankle"},{"euler":{"heading":70.26249428338788,"pitch":-23.34012833615976,"roll":-21.561060626424567},"location":"Right Ankle"},{"euler":{"heading":160.43233527994116,"pitch":-160.8556312273545,"roll":50.8149440312564},"location":"Right Hip"},{"euler":{"heading":315.22725952388555,"pitch":-105.90928564957807,"roll":54.312846573140675},"location":"Right Knee"},{"euler":{"heading":30.631293960358974,"pitch":-137.72901920699377,"roll":61.379367306364486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.696"} +{"sensors":[{"euler":{"heading":66.44761960620585,"pitch":124.49017838715605,"roll":14.884113636080047},"location":"Left Knee"},{"euler":{"heading":44.4828349559015,"pitch":93.12916943602089,"roll":17.597140576411253},"location":"Left Ankle"},{"euler":{"heading":71.1362448550491,"pitch":-23.349865502543786,"roll":-21.429954563782108},"location":"Right Ankle"},{"euler":{"heading":159.37035175194703,"pitch":-161.17006810461908,"roll":51.28969962813076},"location":"Right Hip"},{"euler":{"heading":314.510783571497,"pitch":-106.84960708462026,"roll":55.13156191582661},"location":"Right Knee"},{"euler":{"heading":28.511914564323078,"pitch":-136.2123672862944,"roll":61.42893057572804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.798"} +{"sensors":[{"euler":{"heading":69.28410764558527,"pitch":124.37866054844045,"roll":14.895702272472041},"location":"Left Knee"},{"euler":{"heading":46.36580146031136,"pitch":92.9350024924188,"roll":19.55617651877013},"location":"Left Ankle"},{"euler":{"heading":71.66637036954418,"pitch":-23.196128952289406,"roll":-21.5432091074039},"location":"Right Ankle"},{"euler":{"heading":158.73956657675234,"pitch":-161.34681129415716,"roll":52.023229665317686},"location":"Right Hip"},{"euler":{"heading":314.33470521434725,"pitch":-107.91464637615823,"roll":55.34965572424395},"location":"Right Knee"},{"euler":{"heading":25.76697310789077,"pitch":-134.29738055766498,"roll":60.68603751815523},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.899"} +{"sensors":[{"euler":{"heading":68.20569688102674,"pitch":125.43454449359642,"roll":15.387382045224836},"location":"Left Knee"},{"euler":{"heading":45.11672131428023,"pitch":92.09150224317693,"roll":18.588058866893117},"location":"Left Ankle"},{"euler":{"heading":71.84973333258976,"pitch":-22.94526605706047,"roll":-21.826388196663512},"location":"Right Ankle"},{"euler":{"heading":158.50935991907713,"pitch":-161.54963016474144,"roll":52.85215669878592},"location":"Right Hip"},{"euler":{"heading":314.7574846929125,"pitch":-108.61068173854241,"roll":55.10844015181956},"location":"Right Knee"},{"euler":{"heading":59.12777579710169,"pitch":-132.26764250189848,"roll":59.83618376633971},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.0"} +{"sensors":[{"euler":{"heading":64.42887719292406,"pitch":127.20359004423678,"roll":17.09864384070235},"location":"Left Knee"},{"euler":{"heading":41.61129918285221,"pitch":91.02610201885923,"roll":15.354252980203807},"location":"Left Ankle"},{"euler":{"heading":71.48975999933079,"pitch":-22.463239451354422,"roll":-22.38124937699716},"location":"Right Ankle"},{"euler":{"heading":158.53342392716942,"pitch":-161.7946671482673,"roll":53.72319102890733},"location":"Right Hip"},{"euler":{"heading":315.80048622362125,"pitch":-108.99961356468818,"roll":54.29134613663761},"location":"Right Knee"},{"euler":{"heading":53.83374821739152,"pitch":-131.05337825170864,"roll":59.27756538970574},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.102"} +{"sensors":[{"euler":{"heading":61.829739473631655,"pitch":128.2457310398131,"roll":18.701279456632115},"location":"Left Knee"},{"euler":{"heading":38.693919264566986,"pitch":90.8359918169733,"roll":12.668827682183426},"location":"Left Ankle"},{"euler":{"heading":70.29078399939772,"pitch":-21.891915506218982,"roll":-23.380624439297446},"location":"Right Ankle"},{"euler":{"heading":159.06133153445248,"pitch":-161.98395043344058,"roll":54.507121926016595},"location":"Right Hip"},{"euler":{"heading":318.03918760125913,"pitch":-108.91215220821935,"roll":52.59971152297384},"location":"Right Knee"},{"euler":{"heading":49.46912339565237,"pitch":-130.35429042653777,"roll":58.94355885073517},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.202"} +{"sensors":[{"euler":{"heading":60.52176552626849,"pitch":128.5024079358318,"roll":19.806151510968906},"location":"Left Knee"},{"euler":{"heading":37.24327733811029,"pitch":90.93364263527599,"roll":11.170694913965084},"location":"Left Ankle"},{"euler":{"heading":67.04295559945794,"pitch":-20.652723955597082,"roll":-24.8675619953677},"location":"Right Ankle"},{"euler":{"heading":160.38644838100723,"pitch":-161.46055539009654,"roll":54.60015973341494},"location":"Right Hip"},{"euler":{"heading":321.64151884113323,"pitch":-108.17093698739743,"roll":49.75224037067646},"location":"Right Knee"},{"euler":{"heading":45.57221105608713,"pitch":-130.13136138388398,"roll":58.76795296566166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.303"} +{"sensors":[{"euler":{"heading":59.88208897364164,"pitch":128.09591714224862,"roll":20.694286359872017},"location":"Left Knee"},{"euler":{"heading":36.76894960429926,"pitch":91.4027783717484,"roll":10.297375422568576},"location":"Left Ankle"},{"euler":{"heading":63.482410039512146,"pitch":-19.674951560037375,"roll":-26.17455579583093},"location":"Right Ankle"},{"euler":{"heading":162.21030354290653,"pitch":-160.5644998510869,"roll":53.77139376007345},"location":"Right Hip"},{"euler":{"heading":324.9461169570199,"pitch":-107.55384328865769,"roll":47.095766333608815},"location":"Right Knee"},{"euler":{"heading":42.68373995047842,"pitch":-130.55572524549558,"roll":58.90990766909549},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.404"} +{"sensors":[{"euler":{"heading":59.73138007627748,"pitch":127.31757542802376,"roll":21.281107723884816},"location":"Left Knee"},{"euler":{"heading":37.18580464386933,"pitch":91.99375053457356,"roll":10.16763788031172},"location":"Left Ankle"},{"euler":{"heading":62.05916903556093,"pitch":-19.67620640403364,"roll":-26.863350216247838},"location":"Right Ankle"},{"euler":{"heading":163.73302318861587,"pitch":-159.97054986597823,"roll":52.40675438406611},"location":"Right Hip"},{"euler":{"heading":326.46400526131794,"pitch":-106.86095895979192,"roll":46.173689700247934},"location":"Right Knee"},{"euler":{"heading":40.46536595543058,"pitch":-131.75640272094603,"roll":59.22516690218595},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.505"} +{"sensors":[{"euler":{"heading":60.17699206864974,"pitch":126.39831788522139,"roll":21.371746951496334},"location":"Left Knee"},{"euler":{"heading":37.8422241794824,"pitch":92.51937548111621,"roll":10.375874092280547},"location":"Left Ankle"},{"euler":{"heading":63.240752132004836,"pitch":-20.658585763630274,"roll":-26.133265194623057},"location":"Right Ankle"},{"euler":{"heading":159.33472086975428,"pitch":-159.90474487938042,"roll":51.1098289456595},"location":"Right Hip"},{"euler":{"heading":325.91760473518616,"pitch":-105.89986306381272,"roll":47.43132073022314},"location":"Right Knee"},{"euler":{"heading":38.63757935988752,"pitch":-133.51826244885143,"roll":59.66515021196736},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.606"} +{"sensors":[{"euler":{"heading":61.12804286178476,"pitch":125.38973609669927,"roll":20.959572256346704},"location":"Left Knee"},{"euler":{"heading":39.00800176153417,"pitch":93.1111879330046,"roll":11.125786683052493},"location":"Left Ankle"},{"euler":{"heading":65.96667691880435,"pitch":-21.886477187267246,"roll":-24.307438675160753},"location":"Right Ankle"},{"euler":{"heading":158.87624878277884,"pitch":-160.1955203914424,"roll":50.54884605109355},"location":"Right Hip"},{"euler":{"heading":323.88209426166753,"pitch":-105.57862675743145,"roll":50.188188657200826},"location":"Right Knee"},{"euler":{"heading":37.205071423898765,"pitch":-135.69143620396628,"roll":60.198635190770624},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.706"} +{"sensors":[{"euler":{"heading":62.80898857560629,"pitch":124.37576248702935,"roll":19.844865030712032},"location":"Left Knee"},{"euler":{"heading":40.93845158538075,"pitch":93.71256913970416,"roll":12.781958014747245},"location":"Left Ankle"},{"euler":{"heading":68.62625922692392,"pitch":-22.77282946854052,"roll":-22.87669480764468},"location":"Right Ankle"},{"euler":{"heading":157.88862390450097,"pitch":-160.66346835229817,"roll":50.4752114459842},"location":"Right Hip"},{"euler":{"heading":321.40638483550083,"pitch":-105.75826408168831,"roll":52.781869791480744},"location":"Right Knee"},{"euler":{"heading":36.13456428150889,"pitch":-138.09104258356965,"roll":60.76627167169356},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.807"} +{"sensors":[{"euler":{"heading":65.85308971804567,"pitch":123.58818623832641,"roll":17.56037852764083},"location":"Left Knee"},{"euler":{"heading":43.475856426842675,"pitch":94.26631222573374,"roll":15.822512213272521},"location":"Left Ankle"},{"euler":{"heading":70.56988330423154,"pitch":-23.48929652168647,"roll":-22.045275326880212},"location":"Right Ankle"},{"euler":{"heading":157.64976151405088,"pitch":-160.95962151706837,"roll":50.52769030138578},"location":"Right Hip"},{"euler":{"heading":319.6094963519508,"pitch":-106.35743767351948,"roll":54.42868281233267},"location":"Right Knee"},{"euler":{"heading":34.671107853357995,"pitch":-138.99443832521268,"roll":61.17714450452421},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.907"} +{"sensors":[{"euler":{"heading":69.5927807462411,"pitch":122.74811761449378,"roll":15.029340674876746},"location":"Left Knee"},{"euler":{"heading":46.89077078415841,"pitch":94.97093100316036,"roll":19.48401099194527},"location":"Left Ankle"},{"euler":{"heading":71.80039497380838,"pitch":-24.077866869517823,"roll":-21.54074779419219},"location":"Right Ankle"},{"euler":{"heading":157.1972853626458,"pitch":-161.36990936536154,"roll":51.0311712712472},"location":"Right Hip"},{"euler":{"heading":318.69854671675574,"pitch":-107.22794390616755,"roll":55.192064531099405},"location":"Right Knee"},{"euler":{"heading":32.0477470680222,"pitch":-137.1512444926914,"roll":61.02818005407179},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.10"} +{"sensors":[{"euler":{"heading":71.958502671617,"pitch":122.77955585304441,"roll":13.626406607389072},"location":"Left Knee"},{"euler":{"heading":48.23919370574257,"pitch":94.61758790284432,"roll":20.910609892750742},"location":"Left Ankle"},{"euler":{"heading":72.61410547642755,"pitch":-24.451330182566043,"roll":-21.39917301477297},"location":"Right Ankle"},{"euler":{"heading":157.29630682638123,"pitch":-161.5329184288254,"roll":51.715554144122486},"location":"Right Hip"},{"euler":{"heading":318.2849420450802,"pitch":-107.9738995155508,"roll":55.44160807798947},"location":"Right Knee"},{"euler":{"heading":29.086722361219977,"pitch":-135.04862004342226,"roll":60.26911204866461},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.110"} +{"sensors":[{"euler":{"heading":69.93765240445529,"pitch":124.07660026773998,"roll":14.538765946650166},"location":"Left Knee"},{"euler":{"heading":46.234024335168314,"pitch":93.66207911255988,"roll":19.250798903475665},"location":"Left Ankle"},{"euler":{"heading":72.9839449287848,"pitch":-24.631197164309437,"roll":-21.328005713295674},"location":"Right Ankle"},{"euler":{"heading":157.6354261437431,"pitch":-161.68587658594288,"roll":52.437748729710236},"location":"Right Hip"},{"euler":{"heading":318.4939478405722,"pitch":-108.37650956399573,"roll":55.116197270190526},"location":"Right Knee"},{"euler":{"heading":26.34055012509798,"pitch":-133.13750803908005,"roll":59.504700843798155},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.212"} +{"sensors":[{"euler":{"heading":65.93763716400977,"pitch":126.03769024096599,"roll":16.397389351985147},"location":"Left Knee"},{"euler":{"heading":42.398121901651486,"pitch":92.4333712013039,"roll":15.7444690131281},"location":"Left Ankle"},{"euler":{"heading":72.67305043590632,"pitch":-24.455577447878497,"roll":-21.882705141966106},"location":"Right Ankle"},{"euler":{"heading":158.1156335293688,"pitch":-161.9422889273486,"roll":53.28772385673921},"location":"Right Hip"},{"euler":{"heading":319.282053056515,"pitch":-108.53260860759616,"roll":54.173327543171474},"location":"Right Knee"},{"euler":{"heading":24.287745112588183,"pitch":-131.91125723517203,"roll":58.99173075941834},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.312"} +{"sensors":[{"euler":{"heading":63.350123447608794,"pitch":127.1776712168694,"roll":18.063900416786634},"location":"Left Knee"},{"euler":{"heading":39.45205971148634,"pitch":92.04628408117351,"roll":13.01377211181529},"location":"Left Ankle"},{"euler":{"heading":71.5307453923157,"pitch":-24.09126970309065,"roll":-22.788184627769496},"location":"Right Ankle"},{"euler":{"heading":158.87907017643192,"pitch":-162.22931003461375,"roll":54.17770147106529},"location":"Right Hip"},{"euler":{"heading":321.0975977508635,"pitch":-108.29809774683655,"roll":52.39974478885433},"location":"Right Knee"},{"euler":{"heading":22.946470601329363,"pitch":-131.27013151165482,"roll":58.63005768347651},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.413"} +{"sensors":[{"euler":{"heading":61.89636110284792,"pitch":127.51615409518247,"roll":19.25751037510797},"location":"Left Knee"},{"euler":{"heading":38.13185374033771,"pitch":92.11040567305616,"roll":11.56864490063376},"location":"Left Ankle"},{"euler":{"heading":68.21517085308413,"pitch":-23.182142732781585,"roll":-24.246866164992547},"location":"Right Ankle"},{"euler":{"heading":160.35991315878874,"pitch":-161.78762903115236,"roll":54.37868132395876},"location":"Right Hip"},{"euler":{"heading":324.4315879757772,"pitch":-107.4807879721529,"roll":49.522270309968896},"location":"Right Knee"},{"euler":{"heading":21.914323541196428,"pitch":-131.05561836048935,"roll":58.61080191512886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.515"} +{"sensors":[{"euler":{"heading":61.23172499256313,"pitch":127.16453868566423,"roll":20.188009337597173},"location":"Left Knee"},{"euler":{"heading":37.62491836630394,"pitch":92.44936510575054,"roll":10.605530410570385},"location":"Left Ankle"},{"euler":{"heading":65.03115376777572,"pitch":-22.345178459503426,"roll":-25.45967954849329},"location":"Right Ankle"},{"euler":{"heading":162.31142184290988,"pitch":-160.94636612803714,"roll":53.71581319156288},"location":"Right Hip"},{"euler":{"heading":327.14467917819945,"pitch":-106.69520917493762,"roll":47.10129327897201},"location":"Right Knee"},{"euler":{"heading":21.572891187076788,"pitch":-131.78130652444042,"roll":58.837221723615976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.615"} +{"sensors":[{"euler":{"heading":61.14605249330682,"pitch":126.39183481709782,"roll":20.794208403837455},"location":"Left Knee"},{"euler":{"heading":37.71242652967354,"pitch":92.9606785951755,"roll":10.232477369513347},"location":"Left Ankle"},{"euler":{"heading":64.25303839099814,"pitch":-22.716910613553082,"roll":-25.613711593643963},"location":"Right Ankle"},{"euler":{"heading":163.6365296586189,"pitch":-160.33297951523343,"roll":52.587981872406594},"location":"Right Hip"},{"euler":{"heading":327.8677112603795,"pitch":-105.92568825744387,"roll":46.691163951074806},"location":"Right Knee"},{"euler":{"heading":21.653102068369112,"pitch":-133.07192587199637,"roll":59.27224955125438},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.716"} +{"sensors":[{"euler":{"heading":61.63769724397614,"pitch":125.53390133538804,"roll":20.846037563453713},"location":"Left Knee"},{"euler":{"heading":38.078683876706194,"pitch":93.37086073565794,"roll":10.309229632562012},"location":"Left Ankle"},{"euler":{"heading":66.10898455189833,"pitch":-23.670219552197775,"roll":-24.346090434279567},"location":"Right Ankle"},{"euler":{"heading":163.70412669275703,"pitch":-160.2559315637101,"roll":51.58543368516594},"location":"Right Hip"},{"euler":{"heading":326.3684401343416,"pitch":-105.16436943169948,"roll":48.50954755596733},"location":"Right Knee"},{"euler":{"heading":21.7377918615322,"pitch":-134.78973328479674,"roll":59.76377459612895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.817"} +{"sensors":[{"euler":{"heading":62.642677519578534,"pitch":124.59301120184924,"roll":20.34893380710834},"location":"Left Knee"},{"euler":{"heading":38.93331548903558,"pitch":93.75252466209216,"roll":10.965806669305811},"location":"Left Ankle"},{"euler":{"heading":68.9980860967085,"pitch":-24.834447596978,"roll":-22.386481390851614},"location":"Right Ankle"},{"euler":{"heading":162.65246402348131,"pitch":-160.6115884073391,"roll":51.21439031664935},"location":"Right Hip"},{"euler":{"heading":323.91284612090743,"pitch":-105.73543248852954,"roll":51.3398428003706},"location":"Right Knee"},{"euler":{"heading":22.107762675378982,"pitch":-137.05450995631708,"roll":60.36239713651606},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.918"} +{"sensors":[{"euler":{"heading":64.37840976762068,"pitch":123.64621008166432,"roll":19.107790426397507},"location":"Left Knee"},{"euler":{"heading":40.62123394013203,"pitch":94.11477219588294,"roll":12.68172600237523},"location":"Left Ankle"},{"euler":{"heading":71.09827748703765,"pitch":-25.5447528372802,"roll":-21.047833251766452},"location":"Right Ankle"},{"euler":{"heading":161.48721762113317,"pitch":-161.0879295666052,"roll":51.086701284984414},"location":"Right Hip"},{"euler":{"heading":321.5028115088167,"pitch":-106.48688923967659,"roll":53.49960852033354},"location":"Right Knee"},{"euler":{"heading":22.640736407841082,"pitch":-139.15530896068537,"roll":60.988657422864456},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.19"} +{"sensors":[{"euler":{"heading":67.46556879085861,"pitch":122.9690890734979,"roll":16.79701138375776},"location":"Left Knee"},{"euler":{"heading":43.77161054611883,"pitch":94.76579497629464,"roll":16.026053402137705},"location":"Left Ankle"},{"euler":{"heading":72.28844973833388,"pitch":-26.04652755355218,"roll":-20.405549926589806},"location":"Right Ankle"},{"euler":{"heading":160.54474585901986,"pitch":-161.54788660994467,"roll":51.36553115648598},"location":"Right Hip"},{"euler":{"heading":319.8587803579351,"pitch":-107.35070031570893,"roll":54.749647668300184},"location":"Right Knee"},{"euler":{"heading":21.782912767056974,"pitch":-138.74602806461684,"roll":61.06479168057801},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.120"} +{"sensors":[{"euler":{"heading":70.51276191177276,"pitch":122.49718016614811,"roll":14.767310245381983},"location":"Left Knee"},{"euler":{"heading":46.05069949150695,"pitch":94.47046547866519,"roll":18.760948061923933},"location":"Left Ankle"},{"euler":{"heading":73.1471047645005,"pitch":-26.31062479819696,"roll":-20.02749493393083},"location":"Right Ankle"},{"euler":{"heading":159.8215212731179,"pitch":-161.9243479489502,"roll":52.00397804083738},"location":"Right Hip"},{"euler":{"heading":318.64790232214153,"pitch":-108.03438028413805,"roll":55.41843290147017},"location":"Right Knee"},{"euler":{"heading":20.273371490351277,"pitch":-136.99642525815517,"roll":60.54581251252021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.221"} +{"sensors":[{"euler":{"heading":70.93023572059548,"pitch":123.0037121495333,"roll":14.465579220843786},"location":"Left Knee"},{"euler":{"heading":45.88312954235625,"pitch":93.44216893079867,"roll":18.86610325573154},"location":"Left Ankle"},{"euler":{"heading":73.49489428805045,"pitch":-26.260812318377265,"roll":-20.012245440537747},"location":"Right Ankle"},{"euler":{"heading":159.6081191458061,"pitch":-162.1381631540552,"roll":52.734830236753645},"location":"Right Hip"},{"euler":{"heading":317.9768620899274,"pitch":-108.58719225572425,"roll":55.52033961132315},"location":"Right Knee"},{"euler":{"heading":18.39603434131615,"pitch":-134.90928273233965,"roll":59.72248126126819},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.322"} +{"sensors":[{"euler":{"heading":67.58721214853594,"pitch":124.61584093457998,"roll":15.956521298759407},"location":"Left Knee"},{"euler":{"heading":42.913566588120624,"pitch":92.22295203771881,"roll":16.310742930158387},"location":"Left Ankle"},{"euler":{"heading":73.3141548592454,"pitch":-25.90348108653954,"roll":-20.348520896483972},"location":"Right Ankle"},{"euler":{"heading":159.47855723122552,"pitch":-162.4180968386497,"roll":53.561347213078285},"location":"Right Hip"},{"euler":{"heading":317.89167588093466,"pitch":-108.93472303015182,"roll":55.055805650190834},"location":"Right Knee"},{"euler":{"heading":16.887680907184535,"pitch":-133.3621044591057,"roll":59.043983135141374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.423"} +{"sensors":[{"euler":{"heading":63.734740933682346,"pitch":126.54175684112198,"roll":17.767119168883468},"location":"Left Knee"},{"euler":{"heading":39.52220992930856,"pitch":91.41940683394694,"roll":13.060918637142548},"location":"Left Ankle"},{"euler":{"heading":72.38273937332087,"pitch":-25.263132977885586,"roll":-21.119918806835578},"location":"Right Ankle"},{"euler":{"heading":159.54320150810295,"pitch":-162.9012871547847,"roll":54.42396249177046},"location":"Right Hip"},{"euler":{"heading":318.70250829284123,"pitch":-108.84750072713665,"roll":53.843975085171756},"location":"Right Knee"},{"euler":{"heading":15.923912816466082,"pitch":-132.44464401319513,"roll":58.60833482162724},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.524"} +{"sensors":[{"euler":{"heading":61.730016840314114,"pitch":127.3375811570098,"roll":19.17165725199512},"location":"Left Knee"},{"euler":{"heading":37.788738936377705,"pitch":91.28996615055225,"roll":11.079826773428293},"location":"Left Ankle"},{"euler":{"heading":70.1382154359888,"pitch":-24.480569680097027,"roll":-22.27667692615202},"location":"Right Ankle"},{"euler":{"heading":160.13263135729264,"pitch":-162.99240843930625,"roll":55.037816242593415},"location":"Right Hip"},{"euler":{"heading":320.8260074635571,"pitch":-108.350250654423,"roll":51.628327576654584},"location":"Right Knee"},{"euler":{"heading":15.275271534819474,"pitch":-131.91892961187563,"roll":58.416251339464516},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.624"} +{"sensors":[{"euler":{"heading":60.3695151562827,"pitch":127.57257304130881,"roll":20.135741526795613},"location":"Left Knee"},{"euler":{"heading":36.65361504273993,"pitch":90.96096953549701,"roll":9.840594096085464},"location":"Left Ankle"},{"euler":{"heading":66.74939389238992,"pitch":-23.432512712087323,"roll":-23.52400923353682},"location":"Right Ankle"},{"euler":{"heading":161.53811822156337,"pitch":-162.20566759537562,"roll":54.89028461833408},"location":"Right Hip"},{"euler":{"heading":323.71840671720145,"pitch":-107.6902255889807,"roll":48.734244818989126},"location":"Right Knee"},{"euler":{"heading":15.185244381337528,"pitch":-132.36453665068805,"roll":58.505876205518064},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.726"} +{"sensors":[{"euler":{"heading":59.53881364065444,"pitch":127.39031573717794,"roll":20.734667374116054},"location":"Left Knee"},{"euler":{"heading":36.05075353846594,"pitch":90.7148725819473,"roll":9.112784686476918},"location":"Left Ankle"},{"euler":{"heading":64.76820450315093,"pitch":-22.95801144087859,"roll":-24.26535831018314},"location":"Right Ankle"},{"euler":{"heading":162.72180639940703,"pitch":-161.39135083583807,"roll":53.98250615650067},"location":"Right Hip"},{"euler":{"heading":325.0028160454813,"pitch":-106.93995303008262,"roll":47.348320337090215},"location":"Right Knee"},{"euler":{"heading":15.516719943203775,"pitch":-133.49058298561926,"roll":58.84278858496626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.828"} +{"sensors":[{"euler":{"heading":59.23493227658899,"pitch":126.99503416346015,"roll":20.97995063670445},"location":"Left Knee"},{"euler":{"heading":36.05192818461935,"pitch":90.57463532375259,"roll":8.939006217829228},"location":"Left Ankle"},{"euler":{"heading":65.07888405283583,"pitch":-23.399710296790733,"roll":-24.032572479164827},"location":"Right Ankle"},{"euler":{"heading":163.41212575946633,"pitch":-160.88346575225427,"roll":52.8217555408506},"location":"Right Hip"},{"euler":{"heading":324.39003444093316,"pitch":-106.19595772707436,"roll":47.9447383033812},"location":"Right Knee"},{"euler":{"heading":15.908797948883397,"pitch":-134.97902468705732,"roll":59.25225972646964},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.928"} +{"sensors":[{"euler":{"heading":59.805189048930096,"pitch":126.35803074711413,"roll":20.681955573034006},"location":"Left Knee"},{"euler":{"heading":36.546735366157414,"pitch":90.57967179137734,"roll":9.288855596046306},"location":"Left Ankle"},{"euler":{"heading":67.23349564755225,"pitch":-24.32223926711166,"roll":-22.554315231248346},"location":"Right Ankle"},{"euler":{"heading":162.8021631835197,"pitch":-160.95136917702885,"roll":52.01457998676555},"location":"Right Hip"},{"euler":{"heading":322.16978099683985,"pitch":-106.13261195436694,"roll":50.31276447304308},"location":"Right Knee"},{"euler":{"heading":16.511668153995057,"pitch":-136.85612221835157,"roll":59.795783753822676},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.29"} +{"sensors":[{"euler":{"heading":61.09342014403708,"pitch":125.74097767240272,"roll":19.713760015730607},"location":"Left Knee"},{"euler":{"heading":37.59831182954167,"pitch":90.5842046122396,"roll":10.359970036441675},"location":"Left Ankle"},{"euler":{"heading":69.98514608279702,"pitch":-25.065015340400493,"roll":-20.942633708123513},"location":"Right Ankle"},{"euler":{"heading":161.35319686516775,"pitch":-161.38123225932597,"roll":51.781871988088994},"location":"Right Hip"},{"euler":{"heading":319.2403028971559,"pitch":-106.99435075893024,"roll":52.86273802573878},"location":"Right Knee"},{"euler":{"heading":17.304251338595552,"pitch":-139.1830099965164,"roll":60.37245537844041},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.130"} +{"sensors":[{"euler":{"heading":63.709078129633376,"pitch":125.11062990516245,"roll":17.742384014157548},"location":"Left Knee"},{"euler":{"heading":39.525980646587506,"pitch":90.65078415101564,"roll":12.873973032797508},"location":"Left Ankle"},{"euler":{"heading":71.64288147451731,"pitch":-25.177263806360443,"roll":-20.410870337311163},"location":"Right Ankle"},{"euler":{"heading":160.174127178651,"pitch":-161.81810903339337,"roll":51.853684789280095},"location":"Right Hip"},{"euler":{"heading":316.84752260744034,"pitch":-108.40116568303722,"roll":54.4452142231649},"location":"Right Knee"},{"euler":{"heading":17.555076204735997,"pitch":-140.18345899686477,"roll":60.79770984059637},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.231"} +{"sensors":[{"euler":{"heading":67.10067031667003,"pitch":124.44331691464622,"roll":15.474395612741793},"location":"Left Knee"},{"euler":{"heading":41.81088258192875,"pitch":90.68570573591407,"roll":16.09282572951776},"location":"Left Ankle"},{"euler":{"heading":73.03484332706559,"pitch":-25.4595374257244,"roll":-19.913533303580046},"location":"Right Ankle"},{"euler":{"heading":159.1192144607859,"pitch":-162.37379813005404,"roll":52.33706631035209},"location":"Right Hip"},{"euler":{"heading":315.27527034669635,"pitch":-109.3922991147335,"roll":55.30694280084841},"location":"Right Knee"},{"euler":{"heading":16.730818584262398,"pitch":-138.59636309717828,"roll":60.724188856536735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.333"} +{"sensors":[{"euler":{"heading":69.18435328500303,"pitch":124.39273522318159,"roll":14.339456051467613},"location":"Left Knee"},{"euler":{"heading":43.07979432373588,"pitch":90.16713516232267,"roll":17.639793156565986},"location":"Left Ankle"},{"euler":{"heading":73.79385899435903,"pitch":-25.53858368315196,"roll":-19.784679973222044},"location":"Right Ankle"},{"euler":{"heading":158.7510430147073,"pitch":-162.58016831704865,"roll":52.94085967931688},"location":"Right Hip"},{"euler":{"heading":314.48524331202674,"pitch":-110.09681920326015,"roll":55.507498520763576},"location":"Right Knee"},{"euler":{"heading":15.332736725836158,"pitch":-136.63672678746045,"roll":60.07051997088306},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.434"} +{"sensors":[{"euler":{"heading":67.59091795650272,"pitch":125.43471170086343,"roll":15.118010446320852},"location":"Left Knee"},{"euler":{"heading":41.7093148913623,"pitch":89.5629216460904,"roll":16.44456384090939},"location":"Left Ankle"},{"euler":{"heading":74.04572309492312,"pitch":-25.397225314836763,"roll":-19.98121197589984},"location":"Right Ankle"},{"euler":{"heading":158.7759387132366,"pitch":-162.6659014853438,"roll":53.590523711385195},"location":"Right Hip"},{"euler":{"heading":314.31796898082405,"pitch":-110.51213728293413,"roll":55.19424866868722},"location":"Right Knee"},{"euler":{"heading":48.94321305325255,"pitch":-135.7105541087144,"roll":58.90721797379476},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.535"} +{"sensors":[{"euler":{"heading":63.93182616085245,"pitch":127.2162405307771,"roll":16.943709401688768},"location":"Left Knee"},{"euler":{"heading":38.250883402226066,"pitch":88.73162948148136,"roll":13.09385745681845},"location":"Left Ankle"},{"euler":{"heading":73.6599007854308,"pitch":-24.976252783353086,"roll":-20.689340778309855},"location":"Right Ankle"},{"euler":{"heading":159.09209484191294,"pitch":-162.76806133680944,"roll":54.25647134024668},"location":"Right Hip"},{"euler":{"heading":314.91742208274167,"pitch":-110.65467355464074,"roll":54.2623238018185},"location":"Right Knee"},{"euler":{"heading":77.10514174792729,"pitch":-135.66449869784296,"roll":57.32899617641528},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.635"} +{"sensors":[{"euler":{"heading":61.27614354476721,"pitch":128.4071164776994,"roll":18.59308846151989},"location":"Left Knee"},{"euler":{"heading":35.475795062003456,"pitch":88.59596653333323,"roll":10.378221711136606},"location":"Left Ankle"},{"euler":{"heading":72.30641070688773,"pitch":-24.284877505017775,"roll":-21.83915670047887},"location":"Right Ankle"},{"euler":{"heading":159.68288535772166,"pitch":-163.01000520312851,"roll":54.86832420622201},"location":"Right Hip"},{"euler":{"heading":316.5944298744675,"pitch":-110.33920619917667,"roll":52.54859142163665},"location":"Right Knee"},{"euler":{"heading":70.23212757313458,"pitch":-134.71679882805867,"roll":57.12109655877375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.737"} +{"sensors":[{"euler":{"heading":59.83602919029049,"pitch":128.79140482992946,"roll":19.7900296153679},"location":"Left Knee"},{"euler":{"heading":34.62196555580311,"pitch":88.8176198799999,"roll":9.315399540022945},"location":"Left Ankle"},{"euler":{"heading":69.22576963619896,"pitch":-23.037639754515997,"roll":-23.41774103043098},"location":"Right Ankle"},{"euler":{"heading":160.8645968219495,"pitch":-162.67150468281568,"roll":55.018991785599816},"location":"Right Hip"},{"euler":{"heading":319.73498688702074,"pitch":-109.524035579259,"roll":49.78123227947298},"location":"Right Knee"},{"euler":{"heading":63.94016481582112,"pitch":-134.27011894525282,"roll":57.008986902896375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.837"} +{"sensors":[{"euler":{"heading":59.24617627126145,"pitch":128.48101434693652,"roll":20.65477665383111},"location":"Left Knee"},{"euler":{"heading":34.3597690002228,"pitch":89.2921078919999,"roll":8.66510958602065},"location":"Left Ankle"},{"euler":{"heading":65.67194267257906,"pitch":-21.9901257790644,"roll":-24.794716927387885},"location":"Right Ankle"},{"euler":{"heading":162.38438713975455,"pitch":-161.90435421453412,"roll":54.40459260703984},"location":"Right Hip"},{"euler":{"heading":322.71773819831867,"pitch":-108.7153820213331,"roll":47.06560905152568},"location":"Right Knee"},{"euler":{"heading":58.752398334239004,"pitch":-134.25560705072755,"roll":57.22058821260674},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.938"} +{"sensors":[{"euler":{"heading":59.152808644135305,"pitch":127.75166291224288,"roll":21.233048988448},"location":"Left Knee"},{"euler":{"heading":34.673792100200515,"pitch":89.94414710279992,"roll":8.517348627418585},"location":"Left Ankle"},{"euler":{"heading":64.29224840532116,"pitch":-22.32236320115796,"roll":-25.202745234649097},"location":"Right Ankle"},{"euler":{"heading":163.5146984257791,"pitch":-161.34516879308072,"roll":53.23288334633585},"location":"Right Hip"},{"euler":{"heading":324.0897143784868,"pitch":-107.8688438191998,"roll":46.07154814637312},"location":"Right Knee"},{"euler":{"heading":54.51465850081511,"pitch":-134.9425463456548,"roll":57.642279391346065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.38"} +{"sensors":[{"euler":{"heading":59.57502777972177,"pitch":126.8952466210186,"roll":21.3284940896032},"location":"Left Knee"},{"euler":{"heading":35.637662890180465,"pitch":90.57473239251993,"roll":9.034363764676726},"location":"Left Ankle"},{"euler":{"heading":65.74427356478904,"pitch":-23.496376881042163,"roll":-24.163720711184187},"location":"Right Ankle"},{"euler":{"heading":163.9507285832012,"pitch":-161.08565191377264,"roll":52.05334501170227},"location":"Right Hip"},{"euler":{"heading":323.25574294063813,"pitch":-106.97570943727982,"roll":47.35189333173581},"location":"Right Knee"},{"euler":{"heading":50.9444426507336,"pitch":-136.3170417110893,"roll":58.08430145221146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.139"} +{"sensors":[{"euler":{"heading":60.542525001749596,"pitch":125.98072195891675,"roll":20.889394680642884},"location":"Left Knee"},{"euler":{"heading":36.842646601162414,"pitch":91.04850915326794,"roll":9.974677388209054},"location":"Left Ankle"},{"euler":{"heading":68.52609620831014,"pitch":-24.746739192937948,"roll":-22.39734864006577},"location":"Right Ankle"},{"euler":{"heading":163.31815572488108,"pitch":-161.18333672239538,"roll":51.485510510532045},"location":"Right Hip"},{"euler":{"heading":321.1176686465743,"pitch":-107.08438849355184,"roll":50.04170399856223},"location":"Right Knee"},{"euler":{"heading":48.081248385660246,"pitch":-138.07283753998038,"roll":58.66962130699032},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.239"} +{"sensors":[{"euler":{"heading":62.175772501574635,"pitch":125.05139976302507,"roll":19.781705212578593},"location":"Left Knee"},{"euler":{"heading":38.758381941046174,"pitch":91.47490823794115,"roll":11.74595964938815},"location":"Left Ankle"},{"euler":{"heading":70.93598658747912,"pitch":-25.897065273644152,"roll":-20.932613776059192},"location":"Right Ankle"},{"euler":{"heading":162.011340152393,"pitch":-161.60875305015583,"roll":51.286959459478844},"location":"Right Hip"},{"euler":{"heading":318.9121517819169,"pitch":-107.52594964419667,"roll":52.36253359870601},"location":"Right Knee"},{"euler":{"heading":45.660623547094225,"pitch":-140.10930378598235,"roll":59.246409176291294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.340"} +{"sensors":[{"euler":{"heading":65.18319525141717,"pitch":124.40875978672257,"roll":17.516034691320733},"location":"Left Knee"},{"euler":{"heading":41.251293746941556,"pitch":91.77116741414703,"roll":14.758863684449334},"location":"Left Ankle"},{"euler":{"heading":72.32363792873122,"pitch":-26.72610874627974,"roll":-20.33310239845327},"location":"Right Ankle"},{"euler":{"heading":161.2977061371537,"pitch":-161.97287774514027,"roll":51.264513513530964},"location":"Right Hip"},{"euler":{"heading":317.36468660372526,"pitch":-108.079604679777,"roll":53.8012802388354},"location":"Right Knee"},{"euler":{"heading":42.9758111923848,"pitch":-140.4546234073841,"roll":59.66551825866217},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.441"} +{"sensors":[{"euler":{"heading":68.60237572627545,"pitch":123.73038380805032,"roll":15.23943122218866},"location":"Left Knee"},{"euler":{"heading":43.7824143722474,"pitch":91.79405067273233,"roll":17.626727316004402},"location":"Left Ankle"},{"euler":{"heading":73.4787741358581,"pitch":-27.397247871651764,"roll":-19.85604215860794},"location":"Right Ankle"},{"euler":{"heading":160.38043552343834,"pitch":-162.53183997062624,"roll":51.663062162177866},"location":"Right Hip"},{"euler":{"heading":316.42196794335274,"pitch":-108.62789421179932,"roll":54.56490221495187},"location":"Right Knee"},{"euler":{"heading":39.29698007314632,"pitch":-138.4529110666457,"roll":59.62396643279595},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.541"} +{"sensors":[{"euler":{"heading":69.99838815364791,"pitch":123.86359542724529,"roll":14.452988099969795},"location":"Left Knee"},{"euler":{"heading":44.21042293502266,"pitch":91.18339560545908,"roll":18.17030458440396},"location":"Left Ankle"},{"euler":{"heading":74.1121467222723,"pitch":-27.58252308448659,"roll":-19.76418794274715},"location":"Right Ankle"},{"euler":{"heading":159.89239197109453,"pitch":-162.8536559735636,"roll":52.25300594596008},"location":"Right Hip"},{"euler":{"heading":315.71727114901745,"pitch":-109.2088547906194,"roll":54.833411993456686},"location":"Right Knee"},{"euler":{"heading":35.511032065831685,"pitch":-136.43261995998114,"roll":58.999069789516355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.642"} +{"sensors":[{"euler":{"heading":67.35479933828312,"pitch":125.20848588452077,"roll":15.613939289972816},"location":"Left Knee"},{"euler":{"heading":41.5456306415204,"pitch":90.12755604491318,"roll":15.878274125963566},"location":"Left Ankle"},{"euler":{"heading":74.19468205004507,"pitch":-27.35552077603793,"roll":-19.969019148472434},"location":"Right Ankle"},{"euler":{"heading":159.7406527739851,"pitch":-163.04329037620724,"roll":52.93395535136408},"location":"Right Hip"},{"euler":{"heading":315.5517940341157,"pitch":-109.50046931155747,"roll":54.57507079411102},"location":"Right Knee"},{"euler":{"heading":67.92867885924852,"pitch":-134.48310796398303,"roll":58.41791281056472},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.743"} +{"sensors":[{"euler":{"heading":63.13181940445481,"pitch":127.2688872960687,"roll":17.508795360975533},"location":"Left Knee"},{"euler":{"heading":37.83481757736836,"pitch":89.04605044042187,"roll":12.28419671336721},"location":"Left Ankle"},{"euler":{"heading":73.48771384504057,"pitch":-26.85746869843414,"roll":-20.853367233625193},"location":"Right Ankle"},{"euler":{"heading":160.0353374965866,"pitch":-163.2014613385865,"roll":53.67180981622767},"location":"Right Hip"},{"euler":{"heading":316.44036463070415,"pitch":-109.45042238040173,"roll":53.53631371469992},"location":"Right Knee"},{"euler":{"heading":61.72331097332367,"pitch":-133.4722971675847,"roll":58.001121529508254},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.843"} +{"sensors":[{"euler":{"heading":60.556137464009325,"pitch":128.41074856646182,"roll":19.10791582487798},"location":"Left Knee"},{"euler":{"heading":35.50758581963152,"pitch":88.87269539637968,"roll":9.88702704203049},"location":"Left Ankle"},{"euler":{"heading":71.6451924605365,"pitch":-26.302971828590728,"roll":-22.043030510262675},"location":"Right Ankle"},{"euler":{"heading":160.70680374692796,"pitch":-163.33756520472787,"roll":54.18587883460491},"location":"Right Hip"},{"euler":{"heading":318.8025781676338,"pitch":-108.83038014236156,"roll":51.41393234322993},"location":"Right Knee"},{"euler":{"heading":56.1634798759913,"pitch":-132.57506745082625,"roll":57.688509376557434},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.944"} +{"sensors":[{"euler":{"heading":59.2317737176084,"pitch":128.77592370981566,"roll":20.153374242390186},"location":"Left Knee"},{"euler":{"heading":34.23807723766837,"pitch":88.81667585674171,"roll":8.548324337827442},"location":"Left Ankle"},{"euler":{"heading":68.00567321448287,"pitch":-24.55392464573166,"roll":-23.66997745923641},"location":"Right Ankle"},{"euler":{"heading":162.06737337223518,"pitch":-162.70380868425508,"roll":54.06104095114442},"location":"Right Hip"},{"euler":{"heading":321.4535703508704,"pitch":-108.15359212812541,"roll":48.63503910890694},"location":"Right Knee"},{"euler":{"heading":51.247131888392175,"pitch":-131.93631070574364,"roll":57.66340843890169},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.44"} +{"sensors":[{"euler":{"heading":58.508596345847565,"pitch":128.5858313388341,"roll":20.963036818151167},"location":"Left Knee"},{"euler":{"heading":33.70176951390154,"pitch":89.01000827106755,"roll":7.687241904044698},"location":"Left Ankle"},{"euler":{"heading":65.13635589303459,"pitch":-23.46728218115849,"roll":-24.62797971331277},"location":"Right Ankle"},{"euler":{"heading":163.2606360350117,"pitch":-161.93967781582958,"roll":53.31743685602998},"location":"Right Hip"},{"euler":{"heading":323.17071331578336,"pitch":-107.33198291531288,"roll":46.69653519801624},"location":"Right Knee"},{"euler":{"heading":47.32241869955296,"pitch":-132.21767963516928,"roll":57.91581759501152},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.145"} +{"sensors":[{"euler":{"heading":58.35148671126281,"pitch":128.0209982049507,"roll":21.447983136336052},"location":"Left Knee"},{"euler":{"heading":34.02534256251138,"pitch":89.3402574439608,"roll":7.568517713640229},"location":"Left Ankle"},{"euler":{"heading":64.66647030373113,"pitch":-23.701803963042643,"roll":-24.590181741981493},"location":"Right Ankle"},{"euler":{"heading":163.89707243151054,"pitch":-161.47071003424662,"roll":52.266943170426984},"location":"Right Hip"},{"euler":{"heading":323.009891984205,"pitch":-106.5925346237816,"roll":46.83313167821462},"location":"Right Knee"},{"euler":{"heading":44.15892682959767,"pitch":-133.19591167165234,"roll":58.36798583551037},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.245"} +{"sensors":[{"euler":{"heading":58.82258804013653,"pitch":127.16264838445562,"roll":21.503184822702448},"location":"Left Knee"},{"euler":{"heading":34.81030830626025,"pitch":89.75623169956471,"roll":7.942915942276207},"location":"Left Ankle"},{"euler":{"heading":66.64982327335802,"pitch":-24.48787356673838,"roll":-23.03116356778334},"location":"Right Ankle"},{"euler":{"heading":163.7386151883595,"pitch":-161.38613903082197,"roll":51.37149885338428},"location":"Right Hip"},{"euler":{"heading":321.0026527857845,"pitch":-105.86453116140345,"roll":48.92481851039316},"location":"Right Knee"},{"euler":{"heading":41.661784146637906,"pitch":-134.62632050448713,"roll":58.949937251959334},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.346"} +{"sensors":[{"euler":{"heading":59.88407923612288,"pitch":126.19638354601007,"roll":19.402866340432205},"location":"Left Knee"},{"euler":{"heading":36.060527475634224,"pitch":90.19935852960825,"roll":8.904874348048587},"location":"Left Ankle"},{"euler":{"heading":69.94734094602222,"pitch":-25.439086210064545,"roll":-20.96554721100501},"location":"Right Ankle"},{"euler":{"heading":162.70850366952354,"pitch":-161.62252512773978,"roll":50.92809896804586},"location":"Right Hip"},{"euler":{"heading":318.0586375072061,"pitch":-106.6218280452631,"roll":52.001086659353845},"location":"Right Knee"},{"euler":{"heading":39.708105731974115,"pitch":-136.54493845403843,"roll":59.629943526763405},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.447"} +{"sensors":[{"euler":{"heading":61.683171312510595,"pitch":125.24549519140906,"roll":18.356329706388987},"location":"Left Knee"},{"euler":{"heading":37.8607247280708,"pitch":90.50442267664742,"roll":10.789386913243728},"location":"Left Ankle"},{"euler":{"heading":72.40885685142,"pitch":-26.138927589058092,"roll":-19.51899248990451},"location":"Right Ankle"},{"euler":{"heading":161.5189033025712,"pitch":-161.9040226149658,"roll":50.77903907124128},"location":"Right Hip"},{"euler":{"heading":315.37152375648543,"pitch":-107.22839524073679,"roll":54.463477993418465},"location":"Right Knee"},{"euler":{"heading":38.181045158776705,"pitch":-138.9591946086346,"roll":60.24194917408707},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.548"} +{"sensors":[{"euler":{"heading":64.90860418125953,"pitch":124.57094567226815,"roll":16.014446735750088},"location":"Left Knee"},{"euler":{"heading":42.030902255263726,"pitch":90.99148040898268,"roll":14.216698221919355},"location":"Left Ankle"},{"euler":{"heading":73.76797116627799,"pitch":-26.393784830152285,"roll":-18.94834324091406},"location":"Right Ankle"},{"euler":{"heading":160.8920129723141,"pitch":-162.05737035346922,"roll":50.81363516411716},"location":"Right Hip"},{"euler":{"heading":313.1656213808369,"pitch":-107.7930557166631,"roll":56.067130194076626},"location":"Right Knee"},{"euler":{"heading":36.025440642899035,"pitch":-139.62577514777115,"roll":60.59900425667836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.648"} +{"sensors":[{"euler":{"heading":68.75524376313358,"pitch":123.76385110504134,"roll":13.59425206217508},"location":"Left Knee"},{"euler":{"heading":44.39031202973735,"pitch":91.11108236808441,"roll":17.56377839972742},"location":"Left Ankle"},{"euler":{"heading":74.62867404965019,"pitch":-26.504406347137056,"roll":-18.766008916822653},"location":"Right Ankle"},{"euler":{"heading":159.9465616750827,"pitch":-162.3828833181223,"roll":51.37602164770544},"location":"Right Hip"},{"euler":{"heading":311.57405924275326,"pitch":-109.00125014499679,"roll":56.85416717466896},"location":"Right Knee"},{"euler":{"heading":32.99789657860914,"pitch":-137.97569763299404,"roll":60.50785383101053},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.750"} +{"sensors":[{"euler":{"heading":71.13596938682022,"pitch":123.69996599453721,"roll":12.428576855957573},"location":"Left Knee"},{"euler":{"heading":45.07003082676361,"pitch":90.50622413127597,"roll":18.588650559754676},"location":"Left Ankle"},{"euler":{"heading":75.54080664468518,"pitch":-26.853965712423353,"roll":-18.620658025140386},"location":"Right Ankle"},{"euler":{"heading":159.71440550757444,"pitch":-162.5820949863101,"roll":52.0821694829349},"location":"Right Hip"},{"euler":{"heading":311.0854033184779,"pitch":-109.6511251304971,"roll":57.01875045720207},"location":"Right Knee"},{"euler":{"heading":65.64185692074822,"pitch":-136.09062786969463,"roll":59.79456844790948},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.851"} +{"sensors":[{"euler":{"heading":69.4848724481382,"pitch":124.7924693950835,"roll":13.291969170361817},"location":"Left Knee"},{"euler":{"heading":42.98802774408725,"pitch":89.73685171814837,"roll":16.90478550377921},"location":"Left Ankle"},{"euler":{"heading":75.94297598021666,"pitch":-26.943569141181015,"roll":-18.77734222262635},"location":"Right Ankle"},{"euler":{"heading":159.68671495681699,"pitch":-162.7676354876791,"roll":52.84270253464141},"location":"Right Hip"},{"euler":{"heading":310.9706129866301,"pitch":-110.0485126174474,"roll":56.76062541148186},"location":"Right Knee"},{"euler":{"heading":94.9276712286734,"pitch":-134.14406508272518,"roll":58.990111603118535},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.951"} +{"sensors":[{"euler":{"heading":65.72388520332439,"pitch":126.59447245557516,"roll":15.219022253325635},"location":"Left Knee"},{"euler":{"heading":39.26422496967853,"pitch":88.74441654633354,"roll":13.408056953401289},"location":"Left Ankle"},{"euler":{"heading":75.79867838219499,"pitch":-26.799212227062917,"roll":-19.305858000363713},"location":"Right Ankle"},{"euler":{"heading":159.8992934611353,"pitch":-163.05962193891116,"roll":53.60843228117727},"location":"Right Hip"},{"euler":{"heading":311.4673016879671,"pitch":-110.20616135570268,"roll":55.95956287033368},"location":"Right Knee"},{"euler":{"heading":85.76615410580607,"pitch":-132.76715857445265,"roll":58.409850442806686},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.52"} +{"sensors":[{"euler":{"heading":62.90774668299195,"pitch":127.89752521001765,"roll":17.05962002799307},"location":"Left Knee"},{"euler":{"heading":36.21905247271068,"pitch":88.50747489170018,"roll":10.529751258061161},"location":"Left Ankle"},{"euler":{"heading":74.8063105439755,"pitch":-26.406791004356627,"roll":-20.425272200327342},"location":"Right Ankle"},{"euler":{"heading":160.35936411502178,"pitch":-163.49740974502006,"roll":54.42258905305955},"location":"Right Hip"},{"euler":{"heading":312.8768215191704,"pitch":-109.98554522013241,"roll":54.46985658330031},"location":"Right Knee"},{"euler":{"heading":78.21453869522547,"pitch":-132.0029427170074,"roll":58.06886539852602},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.152"} +{"sensors":[{"euler":{"heading":61.37947201469276,"pitch":128.3452726890159,"roll":18.372408025193764},"location":"Left Knee"},{"euler":{"heading":34.80964722543961,"pitch":88.63172740253016,"roll":9.058026132255046},"location":"Left Ankle"},{"euler":{"heading":72.20067948957795,"pitch":-25.641111903920965,"roll":-21.820244980294607},"location":"Right Ankle"},{"euler":{"heading":161.1546777035196,"pitch":-163.47891877051808,"roll":55.0115801477536},"location":"Right Hip"},{"euler":{"heading":315.50788936725337,"pitch":-109.32449069811918,"roll":51.997870924970286},"location":"Right Knee"},{"euler":{"heading":71.36183482570293,"pitch":-131.56514844530665,"roll":57.94322885867342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.253"} +{"sensors":[{"euler":{"heading":60.616524813223485,"pitch":128.22949542011432,"roll":19.25391722267439},"location":"Left Knee"},{"euler":{"heading":33.966182502895656,"pitch":88.76230466227715,"roll":8.052223519029543},"location":"Left Ankle"},{"euler":{"heading":68.37436154062016,"pitch":-24.11450071352887,"roll":-23.569470482265146},"location":"Right Ankle"},{"euler":{"heading":162.48920993316764,"pitch":-162.82477689346626,"roll":54.76667213297824},"location":"Right Hip"},{"euler":{"heading":318.56335043052803,"pitch":-108.38579162830727,"roll":49.01058383247326},"location":"Right Knee"},{"euler":{"heading":65.63815134313263,"pitch":-131.952383600776,"roll":58.13015597280609},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.353"} +{"sensors":[{"euler":{"heading":60.111122331901136,"pitch":127.86279587810289,"roll":19.84102550040695},"location":"Left Knee"},{"euler":{"heading":33.794564252606094,"pitch":88.93607419604943,"roll":7.653251167126588},"location":"Left Ankle"},{"euler":{"heading":66.16192538655815,"pitch":-23.290550642175983,"roll":-24.556273434038633},"location":"Right Ankle"},{"euler":{"heading":163.58403893985087,"pitch":-162.12354920411966,"roll":53.91500491968042},"location":"Right Hip"},{"euler":{"heading":319.90076538747525,"pitch":-107.54721246547655,"roll":47.422025449225934},"location":"Right Knee"},{"euler":{"heading":60.65558620881937,"pitch":-133.0821452406984,"roll":58.42964037552548},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.454"} +{"sensors":[{"euler":{"heading":60.193760098711024,"pitch":127.28901629029261,"roll":20.025672950366253},"location":"Left Knee"},{"euler":{"heading":34.14010782734548,"pitch":89.21746677644448,"roll":7.744176050413929},"location":"Left Ankle"},{"euler":{"heading":66.60198284790233,"pitch":-23.686495577958386,"roll":-23.950646090634773},"location":"Right Ankle"},{"euler":{"heading":163.8068850458658,"pitch":-161.79244428370768,"roll":52.879754427712385},"location":"Right Hip"},{"euler":{"heading":319.0169388487277,"pitch":-106.4674912189289,"roll":48.14232290430334},"location":"Right Knee"},{"euler":{"heading":56.20877758793743,"pitch":-134.60518071662855,"roll":58.786676337972935},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.554"} +{"sensors":[{"euler":{"heading":60.874384088839925,"pitch":126.48511466126335,"roll":19.79185565532963},"location":"Left Knee"},{"euler":{"heading":34.901097044610935,"pitch":89.55822009880004,"roll":8.288508445372537},"location":"Left Ankle"},{"euler":{"heading":69.0355345631121,"pitch":-24.52409602016255,"roll":-22.268081481571294},"location":"Right Ankle"},{"euler":{"heading":162.93869654127923,"pitch":-161.9631998553369,"roll":52.17927898494115},"location":"Right Hip"},{"euler":{"heading":316.5464949638549,"pitch":-106.27074209703602,"roll":50.68434061387301},"location":"Right Knee"},{"euler":{"heading":52.6003998291437,"pitch":-136.4946626449657,"roll":59.320508704175644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.655"} +{"sensors":[{"euler":{"heading":62.21819567995593,"pitch":125.57410319513701,"roll":18.981420089796668},"location":"Left Knee"},{"euler":{"heading":36.32973734014984,"pitch":89.93989808892005,"roll":9.559657600835283},"location":"Left Ankle"},{"euler":{"heading":71.63198110680088,"pitch":-25.427936418146295,"roll":-20.710023333414163},"location":"Right Ankle"},{"euler":{"heading":161.45107688715132,"pitch":-162.37937986980324,"roll":51.79885108644704},"location":"Right Hip"},{"euler":{"heading":313.9668454674694,"pitch":-107.08116788733243,"roll":53.32215655248571},"location":"Right Knee"},{"euler":{"heading":49.66535984622933,"pitch":-138.85769638046912,"roll":59.92595783375808},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.755"} +{"sensors":[{"euler":{"heading":64.63387611196033,"pitch":124.82919287562332,"roll":17.177028080817003},"location":"Left Knee"},{"euler":{"heading":38.53426360613486,"pitch":90.07715828002804,"roll":12.209941840751757},"location":"Left Ankle"},{"euler":{"heading":72.9687829961208,"pitch":-25.635142776331666,"roll":-20.057771000072748},"location":"Right Ankle"},{"euler":{"heading":160.2247191984362,"pitch":-162.75394188282294,"roll":51.687715977802334},"location":"Right Hip"},{"euler":{"heading":311.5139109207225,"pitch":-107.9105510985992,"roll":55.071190897237145},"location":"Right Knee"},{"euler":{"heading":46.9988238616064,"pitch":-140.90942674242223,"roll":60.45836205038228},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.856"} +{"sensors":[{"euler":{"heading":68.42048850076429,"pitch":124.058773588061,"roll":14.609325272735303},"location":"Left Knee"},{"euler":{"heading":42.17458724552137,"pitch":91.03819245202524,"roll":16.070197656676584},"location":"Left Ankle"},{"euler":{"heading":73.79690469650872,"pitch":-25.4653784986985,"roll":-19.914493900065473},"location":"Right Ankle"},{"euler":{"heading":159.11474727859257,"pitch":-163.14729769454064,"roll":52.0189443800221},"location":"Right Hip"},{"euler":{"heading":309.39376982865025,"pitch":-109.13199598873929,"roll":56.12032180751343},"location":"Right Knee"},{"euler":{"heading":43.29894147544576,"pitch":-140.11223406818002,"roll":60.70627584534405},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.956"} +{"sensors":[{"euler":{"heading":71.84718965068787,"pitch":123.50914622925491,"roll":12.523392745461774},"location":"Left Knee"},{"euler":{"heading":44.869628520969236,"pitch":91.06562320682272,"roll":18.613177891008924},"location":"Left Ankle"},{"euler":{"heading":74.27971422685785,"pitch":-25.06259064882865,"roll":-20.110544510058926},"location":"Right Ankle"},{"euler":{"heading":158.5907725507333,"pitch":-163.34506792508657,"roll":52.604549942019894},"location":"Right Hip"},{"euler":{"heading":307.89814284578523,"pitch":-110.30004638986536,"roll":56.52703962676209},"location":"Right Knee"},{"euler":{"heading":39.01279732790119,"pitch":-137.926010661362,"roll":60.27314826080965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.57"} +{"sensors":[{"euler":{"heading":72.38747068561908,"pitch":124.03948160632942,"roll":12.302303470915597},"location":"Left Knee"},{"euler":{"heading":44.31391566887231,"pitch":90.65281088614044,"roll":18.289360101908034},"location":"Left Ankle"},{"euler":{"heading":74.42674280417206,"pitch":-24.412581583945784,"roll":-20.505740059053032},"location":"Right Ankle"},{"euler":{"heading":158.46919529566,"pitch":-163.31056113257793,"roll":53.32534494781791},"location":"Right Hip"},{"euler":{"heading":306.8958285612067,"pitch":-111.18254175087881,"roll":56.49308566408588},"location":"Right Knee"},{"euler":{"heading":70.95526759511108,"pitch":-135.7209095952258,"roll":59.43958343472869},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.158"} +{"sensors":[{"euler":{"heading":69.49247361705717,"pitch":125.44178344569649,"roll":13.834573123824036},"location":"Left Knee"},{"euler":{"heading":41.145024101985086,"pitch":89.7687797975264,"roll":15.485424091717233},"location":"Left Ankle"},{"euler":{"heading":74.09031852375486,"pitch":-23.621323425551203,"roll":-21.105166053147727},"location":"Right Ankle"},{"euler":{"heading":158.609775766094,"pitch":-163.31700501932013,"roll":54.130310453036124},"location":"Right Hip"},{"euler":{"heading":306.6437457050861,"pitch":-111.71428757579093,"roll":55.9250270976773},"location":"Right Knee"},{"euler":{"heading":63.94724083559997,"pitch":-133.8613186357032,"roll":58.76437509125583},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.258"} +{"sensors":[{"euler":{"heading":65.88072625535146,"pitch":127.01635510112685,"roll":15.744865811441635},"location":"Left Knee"},{"euler":{"heading":37.63052169178658,"pitch":89.14190181777376,"roll":12.12438168254551},"location":"Left Ankle"},{"euler":{"heading":72.94378667137939,"pitch":-22.746691082996083,"roll":-22.175899447832954},"location":"Right Ankle"},{"euler":{"heading":159.11129818948461,"pitch":-163.38530451738814,"roll":54.92977940773251},"location":"Right Hip"},{"euler":{"heading":307.6481211345775,"pitch":-111.73035881821184,"roll":54.60752438790957},"location":"Right Knee"},{"euler":{"heading":58.21501675203998,"pitch":-132.7564367721329,"roll":58.344187582130246},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.359"} +{"sensors":[{"euler":{"heading":64.01765362981631,"pitch":127.59596959101417,"roll":17.195379230297473},"location":"Left Knee"},{"euler":{"heading":35.892469522607925,"pitch":89.07146163599639,"roll":10.299443514290958},"location":"Left Ankle"},{"euler":{"heading":70.27440800424145,"pitch":-21.984521974696474,"roll":-23.48330950304966},"location":"Right Ankle"},{"euler":{"heading":160.02516837053614,"pitch":-163.5280240656493,"roll":55.47430146695926},"location":"Right Hip"},{"euler":{"heading":310.54580902111974,"pitch":-111.00107293639067,"roll":52.203021949118614},"location":"Right Knee"},{"euler":{"heading":53.218515076835985,"pitch":-132.04329309491962,"roll":58.153518823917224},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.460"} +{"sensors":[{"euler":{"heading":63.04713826683468,"pitch":127.61762263191275,"roll":18.138341307267726},"location":"Left Knee"},{"euler":{"heading":34.75947257034713,"pitch":89.12681547239676,"roll":8.988249162861862},"location":"Left Ankle"},{"euler":{"heading":66.5594672038173,"pitch":-20.329819777226827,"roll":-25.116228552744694},"location":"Right Ankle"},{"euler":{"heading":161.37890153348252,"pitch":-162.86272165908437,"roll":55.35187132026334},"location":"Right Hip"},{"euler":{"heading":313.66622811900777,"pitch":-110.3259656427516,"roll":49.201469754206755},"location":"Right Knee"},{"euler":{"heading":48.84666356915239,"pitch":-131.71396378542767,"roll":58.2444169415255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.561"} +{"sensors":[{"euler":{"heading":62.536174440151214,"pitch":127.14961036872148,"roll":18.862007176540956},"location":"Left Knee"},{"euler":{"heading":34.38977531331242,"pitch":89.38913392515708,"roll":8.270674246575677},"location":"Left Ankle"},{"euler":{"heading":64.17852048343558,"pitch":-19.596837799504147,"roll":-25.973355697470225},"location":"Right Ankle"},{"euler":{"heading":162.55351138013427,"pitch":-162.13894949317594,"roll":54.510434188237014},"location":"Right Hip"},{"euler":{"heading":315.580855307107,"pitch":-109.44961907847645,"roll":47.375072778786084},"location":"Right Knee"},{"euler":{"heading":45.33699721223715,"pitch":-132.1988174068849,"roll":58.56997524737295},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.663"} +{"sensors":[{"euler":{"heading":62.62005699613609,"pitch":126.37214933184934,"roll":19.213306458886862},"location":"Left Knee"},{"euler":{"heading":34.50704778198118,"pitch":89.81272053264138,"roll":8.03110682191811},"location":"Left Ankle"},{"euler":{"heading":64.36066843509202,"pitch":-20.262154019553734,"roll":-25.669770127723204},"location":"Right Ankle"},{"euler":{"heading":163.22941024212085,"pitch":-161.70005454385836,"roll":53.315640769413314},"location":"Right Hip"},{"euler":{"heading":315.7040197763963,"pitch":-108.6171571706288,"roll":47.48131550090748},"location":"Right Knee"},{"euler":{"heading":42.43454749101344,"pitch":-133.3289356661964,"roll":58.94422772263566},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.764"} +{"sensors":[{"euler":{"heading":63.31430129652249,"pitch":125.38493439866441,"roll":19.085725812998177},"location":"Left Knee"},{"euler":{"heading":35.068843003783066,"pitch":90.31894847937724,"roll":8.290496139726299},"location":"Left Ankle"},{"euler":{"heading":66.64960159158282,"pitch":-21.385938617598363,"roll":-24.121543114950885},"location":"Right Ankle"},{"euler":{"heading":162.9252192179088,"pitch":-161.70504908947254,"roll":52.37157669247198},"location":"Right Hip"},{"euler":{"heading":314.0148677987567,"pitch":-107.95544145356592,"roll":49.533183950816735},"location":"Right Knee"},{"euler":{"heading":40.0473427419121,"pitch":-134.85229209957677,"roll":59.44355495037209},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.864"} +{"sensors":[{"euler":{"heading":64.58912116687024,"pitch":124.39644095879797,"roll":18.358403231698357},"location":"Left Knee"},{"euler":{"heading":36.186958703404756,"pitch":90.81205363143953,"roll":9.21769652575367},"location":"Left Ankle"},{"euler":{"heading":69.65339143242454,"pitch":-22.434844755838526,"roll":-22.265638803455797},"location":"Right Ankle"},{"euler":{"heading":161.70144729611792,"pitch":-162.0907941805253,"roll":52.01566902322479},"location":"Right Hip"},{"euler":{"heading":311.26963101888106,"pitch":-108.67864730820934,"roll":52.42361555573506},"location":"Right Knee"},{"euler":{"heading":38.14260846772089,"pitch":-136.8983128896191,"roll":60.00544945533488},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.964"} +{"sensors":[{"euler":{"heading":66.88645905018322,"pitch":123.44429686291816,"roll":16.66006290852852},"location":"Left Knee"},{"euler":{"heading":38.13701283306428,"pitch":91.02459826829558,"roll":11.470926873178303},"location":"Left Ankle"},{"euler":{"heading":71.65680228918208,"pitch":-23.166360280254676,"roll":-21.132824923110217},"location":"Right Ankle"},{"euler":{"heading":160.76255256650612,"pitch":-162.45046476247276,"roll":51.83285212090232},"location":"Right Hip"},{"euler":{"heading":308.9489179169929,"pitch":-109.34203257738841,"roll":54.49375400016156},"location":"Right Knee"},{"euler":{"heading":36.6970976209488,"pitch":-138.8397316006572,"roll":60.6174045098014},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.65"} +{"sensors":[{"euler":{"heading":70.5603131451649,"pitch":122.56861717662635,"roll":14.131556617675667},"location":"Left Knee"},{"euler":{"heading":41.84206154975786,"pitch":91.97213844146602,"roll":15.261334185860473},"location":"Left Ankle"},{"euler":{"heading":72.85362206026387,"pitch":-23.43097425222921,"roll":-20.625792430799194},"location":"Right Ankle"},{"euler":{"heading":160.08629730985552,"pitch":-162.6929182862255,"roll":51.99331690881208},"location":"Right Hip"},{"euler":{"heading":307.1477761252936,"pitch":-110.15782931964957,"roll":55.67562860014541},"location":"Right Knee"},{"euler":{"heading":33.92738785885392,"pitch":-137.96200844059146,"roll":60.69941405882126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.166"} +{"sensors":[{"euler":{"heading":73.7917818306484,"pitch":122.14300545896371,"roll":12.1746509559081},"location":"Left Knee"},{"euler":{"heading":44.20160539478208,"pitch":91.83117459731942,"roll":17.672700767274428},"location":"Left Ankle"},{"euler":{"heading":73.59950985423748,"pitch":-23.381626827006286,"roll":-20.538213187719276},"location":"Right Ankle"},{"euler":{"heading":159.77141757886997,"pitch":-162.75487645760296,"roll":52.52523521793088},"location":"Right Hip"},{"euler":{"heading":305.82049851276423,"pitch":-111.02954638768462,"roll":56.24556574013087},"location":"Right Knee"},{"euler":{"heading":30.565899072968527,"pitch":-136.07205759653232,"roll":60.060722652939134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.267"} +{"sensors":[{"euler":{"heading":73.80635364758356,"pitch":122.81620491306735,"roll":12.21343586031729},"location":"Left Knee"},{"euler":{"heading":43.36894485530387,"pitch":91.13555713758747,"roll":17.080430690546986},"location":"Left Ankle"},{"euler":{"heading":73.97705886881373,"pitch":-23.11846414430566,"roll":-20.715641868947348},"location":"Right Ankle"},{"euler":{"heading":159.856775820983,"pitch":-162.6606388118427,"roll":53.16646169613779},"location":"Right Hip"},{"euler":{"heading":305.0009486614878,"pitch":-111.64534174891615,"roll":56.358509166117784},"location":"Right Knee"},{"euler":{"heading":63.353059165671674,"pitch":-134.1211018368791,"roll":59.148400387645225},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.368"} +{"sensors":[{"euler":{"heading":70.85071828282521,"pitch":124.22208442176061,"roll":13.929592274285561},"location":"Left Knee"},{"euler":{"heading":39.88205036977349,"pitch":90.57825142382873,"roll":14.022387621492289},"location":"Left Ankle"},{"euler":{"heading":73.78560298193236,"pitch":-22.619117729875093,"roll":-21.187827682052614},"location":"Right Ankle"},{"euler":{"heading":160.2960982388847,"pitch":-162.51957493065842,"roll":53.81856552652401},"location":"Right Hip"},{"euler":{"heading":305.00710379533905,"pitch":-111.93080757402454,"roll":55.816408249506004},"location":"Right Knee"},{"euler":{"heading":57.24275324910451,"pitch":-132.6339916531912,"roll":58.3960603488807},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.468"} +{"sensors":[{"euler":{"heading":67.68439645454269,"pitch":125.81237597958456,"roll":15.830383046857005},"location":"Left Knee"},{"euler":{"heading":36.38759533279614,"pitch":90.28292628144587,"roll":10.78264885934306},"location":"Left Ankle"},{"euler":{"heading":72.78204268373912,"pitch":-21.925955956887584,"roll":-22.187794913847355},"location":"Right Ankle"},{"euler":{"heading":160.98523841499622,"pitch":-162.4738674375926,"roll":54.51170897387161},"location":"Right Hip"},{"euler":{"heading":306.0563934158052,"pitch":-111.80022681662209,"roll":54.51601742455541},"location":"Right Knee"},{"euler":{"heading":52.224727924194056,"pitch":-131.8205924878721,"roll":57.83145431399263},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.568"} +{"sensors":[{"euler":{"heading":65.79720680908842,"pitch":126.44363838162612,"roll":17.366094742171306},"location":"Left Knee"},{"euler":{"heading":34.54258579951653,"pitch":90.45463365330129,"roll":8.785633973408755},"location":"Left Ankle"},{"euler":{"heading":70.22258841536521,"pitch":-21.377110361198827,"roll":-23.469015422462622},"location":"Right Ankle"},{"euler":{"heading":162.1242145734966,"pitch":-162.35773069383333,"roll":54.904288076484455},"location":"Right Hip"},{"euler":{"heading":309.1570040742247,"pitch":-111.00145413495989,"roll":52.12691568209987},"location":"Right Knee"},{"euler":{"heading":47.83350513177465,"pitch":-131.18853323908488,"roll":57.51705888259337},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.669"} +{"sensors":[{"euler":{"heading":64.92373612817958,"pitch":126.42427454346351,"roll":18.341985267954175},"location":"Left Knee"},{"euler":{"heading":33.38207721956488,"pitch":90.55917028797117,"roll":7.59457057606788},"location":"Left Ankle"},{"euler":{"heading":66.72532957382869,"pitch":-20.564399325078945,"roll":-24.784613880216362},"location":"Right Ankle"},{"euler":{"heading":164.12429311614696,"pitch":-161.51570762445002,"roll":54.60135926883601},"location":"Right Hip"},{"euler":{"heading":312.64130366680223,"pitch":-110.13255872146391,"roll":49.20172411388989},"location":"Right Knee"},{"euler":{"heading":44.05015461859718,"pitch":-130.9821799151764,"roll":57.48410299433403},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.770"} +{"sensors":[{"euler":{"heading":64.40636251536162,"pitch":126.01934708911716,"roll":19.070286741158757},"location":"Left Knee"},{"euler":{"heading":32.84386949760839,"pitch":90.77825325917406,"roll":6.847613518461092},"location":"Left Ankle"},{"euler":{"heading":64.59029661644581,"pitch":-20.301709392571052,"roll":-25.618652492194727},"location":"Right Ankle"},{"euler":{"heading":165.64936380453227,"pitch":-160.69538686200502,"roll":53.747473341952414},"location":"Right Hip"},{"euler":{"heading":314.48967330012204,"pitch":-109.23180284931752,"roll":47.737801702500896},"location":"Right Knee"},{"euler":{"heading":41.01388915673746,"pitch":-131.50896192365877,"roll":57.69819269490063},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.870"} +{"sensors":[{"euler":{"heading":64.41572626382546,"pitch":125.33616238020545,"roll":19.42575806704288},"location":"Left Knee"},{"euler":{"heading":32.696982547847554,"pitch":91.00667793325667,"roll":6.519102166614983},"location":"Left Ankle"},{"euler":{"heading":64.88751695480123,"pitch":-21.10903845331395,"roll":-25.325537242975255},"location":"Right Ankle"},{"euler":{"heading":166.45317742407906,"pitch":-160.22584817580451,"roll":52.635226007757176},"location":"Right Hip"},{"euler":{"heading":314.34695597010983,"pitch":-108.36487256438578,"roll":48.3640215322508},"location":"Right Knee"},{"euler":{"heading":38.65625024106372,"pitch":-132.71431573129288,"roll":58.090873425410564},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.971"} +{"sensors":[{"euler":{"heading":64.99915363744292,"pitch":124.49004614218491,"roll":19.283182260338595},"location":"Left Knee"},{"euler":{"heading":33.0085342930628,"pitch":91.28726013993099,"roll":6.667191949953485},"location":"Left Ankle"},{"euler":{"heading":67.41126525932111,"pitch":-22.466884607982557,"roll":-23.84923351867773},"location":"Right Ankle"},{"euler":{"heading":166.29535968167116,"pitch":-160.25951335822407,"roll":51.72170340698146},"location":"Right Hip"},{"euler":{"heading":312.80601037309884,"pitch":-108.1096353079472,"roll":50.62136937902572},"location":"Right Knee"},{"euler":{"heading":36.77812521695734,"pitch":-134.4678841581636,"roll":58.56928608286951},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.71"} +{"sensors":[{"euler":{"heading":66.18048827369863,"pitch":123.54729152796642,"roll":18.579864034304737},"location":"Left Knee"},{"euler":{"heading":34.001430863756525,"pitch":91.69603412593789,"roll":7.487972754958136},"location":"Left Ankle"},{"euler":{"heading":70.201388733389,"pitch":-23.701446147184303,"roll":-22.101810166809955},"location":"Right Ankle"},{"euler":{"heading":164.99082371350403,"pitch":-160.73356202240166,"roll":51.34328306628332},"location":"Right Hip"},{"euler":{"heading":310.500409335789,"pitch":-108.92367177715248,"roll":53.296732441123154},"location":"Right Knee"},{"euler":{"heading":35.431562695261604,"pitch":-136.72109574234725,"roll":59.18735747458256},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.173"} +{"sensors":[{"euler":{"heading":68.44993944632877,"pitch":122.66756237516978,"roll":16.809377630874263},"location":"Left Knee"},{"euler":{"heading":35.92628777738087,"pitch":91.7451807133441,"roll":9.889175479462324},"location":"Left Ankle"},{"euler":{"heading":71.9999998600501,"pitch":-24.50005153246587,"roll":-21.06662915012896},"location":"Right Ankle"},{"euler":{"heading":164.06049134215363,"pitch":-161.1352058201615,"roll":51.12145475965499},"location":"Right Hip"},{"euler":{"heading":308.66911840221013,"pitch":-109.31255459943723,"roll":55.04205919701084},"location":"Right Knee"},{"euler":{"heading":34.36965642573544,"pitch":-138.54898616811252,"roll":59.84362172712431},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.274"} +{"sensors":[{"euler":{"heading":71.8174455016959,"pitch":121.92580613765281,"roll":14.359689867786836},"location":"Left Knee"},{"euler":{"heading":38.358658999642785,"pitch":91.93316264200969,"roll":13.294007931516092},"location":"Left Ankle"},{"euler":{"heading":73.11249987404508,"pitch":-25.143796379219285,"roll":-20.541216235116067},"location":"Right Ankle"},{"euler":{"heading":163.15444220793827,"pitch":-161.61543523814535,"roll":51.30930928368949},"location":"Right Hip"},{"euler":{"heading":307.50845656198914,"pitch":-109.9000491394935,"roll":55.95035327730976},"location":"Right Knee"},{"euler":{"heading":31.788940783161898,"pitch":-137.79408755130126,"roll":60.00925955441188},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.375"} +{"sensors":[{"euler":{"heading":74.54195095152632,"pitch":121.79572552388754,"roll":12.698720881008153},"location":"Left Knee"},{"euler":{"heading":40.02279309967851,"pitch":91.77109637780872,"roll":15.014607138364484},"location":"Left Ankle"},{"euler":{"heading":73.77624988664057,"pitch":-25.485666741297358,"roll":-20.349594611604463},"location":"Right Ankle"},{"euler":{"heading":162.67024798714445,"pitch":-161.87889171433082,"roll":51.79712835532054},"location":"Right Hip"},{"euler":{"heading":306.8513609057902,"pitch":-110.45379422554416,"roll":56.28656794957878},"location":"Right Knee"},{"euler":{"heading":29.028796704845707,"pitch":-136.10842879617115,"roll":59.60208359897069},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.475"} +{"sensors":[{"euler":{"heading":73.8627558563737,"pitch":122.6411529714988,"roll":12.978848792907339},"location":"Left Knee"},{"euler":{"heading":38.83301378971066,"pitch":91.04398674002785,"roll":14.044396424528037},"location":"Left Ankle"},{"euler":{"heading":74.04862489797652,"pitch":-25.430850067167626,"roll":-20.558385150444014},"location":"Right Ankle"},{"euler":{"heading":162.61572318843002,"pitch":-161.97850254289773,"roll":52.423665519788486},"location":"Right Hip"},{"euler":{"heading":306.47247481521117,"pitch":-110.86466480298974,"roll":56.226661154620906},"location":"Right Knee"},{"euler":{"heading":26.394667034361138,"pitch":-134.28508591655404,"roll":58.95437523907362},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.576"} +{"sensors":[{"euler":{"heading":70.50148027073634,"pitch":124.29578767434893,"roll":14.749713913616604},"location":"Left Knee"},{"euler":{"heading":35.6247124107396,"pitch":90.27708806602507,"roll":10.977456782075233},"location":"Left Ankle"},{"euler":{"heading":73.71251240817887,"pitch":-25.000265060450864,"roll":-21.208796635399615},"location":"Right Ankle"},{"euler":{"heading":162.704150869587,"pitch":-162.18065228860797,"roll":53.14379896780964},"location":"Right Hip"},{"euler":{"heading":306.6752273336901,"pitch":-111.03444832269076,"roll":55.51024503915882},"location":"Right Knee"},{"euler":{"heading":24.242700330925025,"pitch":-132.98782732489863,"roll":58.45893771516626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.677"} +{"sensors":[{"euler":{"heading":67.44508224366271,"pitch":125.61620890691404,"roll":16.518492522254945},"location":"Left Knee"},{"euler":{"heading":32.80599116966564,"pitch":90.00562925942256,"roll":8.24846110386771},"location":"Left Ankle"},{"euler":{"heading":72.35376116736099,"pitch":-24.29398855440578,"roll":-22.344166971859657},"location":"Right Ankle"},{"euler":{"heading":163.17123578262832,"pitch":-162.4188370597472,"roll":53.866919071028676},"location":"Right Hip"},{"euler":{"heading":307.9827046003211,"pitch":-110.82475349042168,"roll":54.090470535242936},"location":"Right Knee"},{"euler":{"heading":22.849680297832524,"pitch":-132.26404459240877,"roll":58.15679394364964},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.778"} +{"sensors":[{"euler":{"heading":65.71307401929644,"pitch":126.05458801622264,"roll":17.89164327002945},"location":"Left Knee"},{"euler":{"heading":31.475392052699075,"pitch":90.07381633348031,"roll":6.717364993480939},"location":"Left Ankle"},{"euler":{"heading":69.34338505062489,"pitch":-23.2270896989652,"roll":-23.741000274673695},"location":"Right Ankle"},{"euler":{"heading":164.2228622043655,"pitch":-162.2082033537725,"roll":54.092727163925815},"location":"Right Hip"},{"euler":{"heading":310.909434140289,"pitch":-109.93602814137952,"roll":51.51267348171864},"location":"Right Knee"},{"euler":{"heading":21.545962268049273,"pitch":-131.8063901331679,"roll":57.997364549284676},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.879"} +{"sensors":[{"euler":{"heading":64.6105166173668,"pitch":125.92412921460038,"roll":18.93372894302651},"location":"Left Knee"},{"euler":{"heading":30.809102847429166,"pitch":90.26018470013227,"roll":5.726878494132846},"location":"Left Ankle"},{"euler":{"heading":65.8527965455624,"pitch":-21.68563072906868,"roll":-25.004400247206327},"location":"Right Ankle"},{"euler":{"heading":165.44432598392896,"pitch":-161.46863301839522,"roll":53.60220444753324},"location":"Right Hip"},{"euler":{"heading":313.4684907262601,"pitch":-109.25492532724158,"roll":48.84265613354678},"location":"Right Knee"},{"euler":{"heading":20.722616041244347,"pitch":-132.0695011198511,"roll":58.153878094356216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.979"} +{"sensors":[{"euler":{"heading":64.04321495563012,"pitch":125.50671629314034,"roll":19.55910604872386},"location":"Left Knee"},{"euler":{"heading":30.74069256268625,"pitch":90.42791623011904,"roll":5.316690644719561},"location":"Left Ankle"},{"euler":{"heading":64.24876689100616,"pitch":-21.385817656161812,"roll":-25.691460222485695},"location":"Right Ankle"},{"euler":{"heading":166.56864338553606,"pitch":-160.8155197165557,"roll":52.579484002779914},"location":"Right Hip"},{"euler":{"heading":314.66539165363406,"pitch":-108.37943279451743,"roll":47.614640520192104},"location":"Right Knee"},{"euler":{"heading":20.42535443711991,"pitch":-133.256301007866,"roll":58.51349028492059},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.80"} +{"sensors":[{"euler":{"heading":64.0826434600671,"pitch":124.8622946638263,"roll":19.72194544385147},"location":"Left Knee"},{"euler":{"heading":31.054123306417623,"pitch":90.59762460710714,"roll":5.328771580247605},"location":"Left Ankle"},{"euler":{"heading":65.08639020190554,"pitch":-22.484735890545632,"roll":-24.94106420023713},"location":"Right Ankle"},{"euler":{"heading":166.92427904698246,"pitch":-160.60271774490016,"roll":51.446535602501925},"location":"Right Hip"},{"euler":{"heading":314.2113524882707,"pitch":-107.5039895150657,"roll":48.4531764681729},"location":"Right Knee"},{"euler":{"heading":20.42031899340792,"pitch":-135.0181709070794,"roll":58.955891256428536},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.181"} +{"sensors":[{"euler":{"heading":64.78062911406039,"pitch":124.07606519744368,"roll":19.337250899466323},"location":"Left Knee"},{"euler":{"heading":31.81746097577586,"pitch":90.77536214639642,"roll":5.870894422222845},"location":"Left Ankle"},{"euler":{"heading":67.68400118171499,"pitch":-23.87376230149107,"roll":-23.159457780213415},"location":"Right Ankle"},{"euler":{"heading":166.41935114228423,"pitch":-160.69244597041015,"roll":50.76438204225173},"location":"Right Hip"},{"euler":{"heading":312.21521723944363,"pitch":-107.83484056355913,"roll":50.95160882135561},"location":"Right Knee"},{"euler":{"heading":20.69703709406713,"pitch":-137.19135381637147,"roll":59.51655213078568},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.282"} +{"sensors":[{"euler":{"heading":66.12131620265436,"pitch":123.31845867769933,"roll":18.29102580951969},"location":"Left Knee"},{"euler":{"heading":33.34821487819828,"pitch":90.95407593175678,"roll":7.32130498000056},"location":"Left Ankle"},{"euler":{"heading":70.1906010635435,"pitch":-24.911386071341965,"roll":-21.712262002192073},"location":"Right Ankle"},{"euler":{"heading":164.78991602805579,"pitch":-161.24195137336915,"roll":50.575443838026565},"location":"Right Hip"},{"euler":{"heading":309.80619551549927,"pitch":-108.89510650720321,"roll":53.25019793922006},"location":"Right Knee"},{"euler":{"heading":21.114833384660418,"pitch":-139.72846843473434,"roll":60.06489691770712},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.387"} +{"sensors":[{"euler":{"heading":68.79668458238892,"pitch":122.7616128099294,"roll":16.143173228567722},"location":"Left Knee"},{"euler":{"heading":35.919643390378454,"pitch":91.1024183385811,"roll":10.414174482000504},"location":"Left Ankle"},{"euler":{"heading":71.50904095718916,"pitch":-25.32649746420777,"roll":-21.24728580197287},"location":"Right Ankle"},{"euler":{"heading":163.86092442525023,"pitch":-161.55525623603225,"roll":50.49914945422391},"location":"Right Hip"},{"euler":{"heading":307.80682596394934,"pitch":-109.80559585648288,"roll":54.66267814529806},"location":"Right Knee"},{"euler":{"heading":21.109600046194377,"pitch":-140.93062159126092,"roll":60.552157225936405},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.487"} +{"sensors":[{"euler":{"heading":72.52326612415003,"pitch":121.92295152893647,"roll":13.59135590571095},"location":"Left Knee"},{"euler":{"heading":38.79642905134061,"pitch":91.61717650472299,"roll":13.947757033800453},"location":"Left Ankle"},{"euler":{"heading":72.47063686147024,"pitch":-25.550097717786993,"roll":-21.022557221775582},"location":"Right Ankle"},{"euler":{"heading":162.74983198272523,"pitch":-162.01848061242904,"roll":50.861734508801526},"location":"Right Hip"},{"euler":{"heading":306.41989336755444,"pitch":-110.7812862708346,"roll":55.37766033076825},"location":"Right Knee"},{"euler":{"heading":19.86739004157494,"pitch":-139.2750594321348,"roll":60.67819150334277},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.588"} +{"sensors":[{"euler":{"heading":75.03343951173503,"pitch":121.82440637604282,"roll":12.213470315139855},"location":"Left Knee"},{"euler":{"heading":40.404286146206545,"pitch":91.49295885425069,"roll":15.509231330420409},"location":"Left Ankle"},{"euler":{"heading":73.09232317532323,"pitch":-25.520087946008296,"roll":-21.095301499598026},"location":"Right Ankle"},{"euler":{"heading":162.33734878445273,"pitch":-162.12913255118613,"roll":51.49431105792137},"location":"Right Hip"},{"euler":{"heading":305.546654030799,"pitch":-111.55940764375114,"roll":55.58364429769143},"location":"Right Knee"},{"euler":{"heading":18.211901037417448,"pitch":-137.25380348892133,"roll":60.13537235300849},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.689"} +{"sensors":[{"euler":{"heading":73.93009556056153,"pitch":122.86696573843855,"roll":12.817123283625868},"location":"Left Knee"},{"euler":{"heading":38.838857531585894,"pitch":90.78741296882562,"roll":14.239558197378368},"location":"Left Ankle"},{"euler":{"heading":73.21434085779092,"pitch":-25.274329151407464,"roll":-21.417021349638226},"location":"Right Ankle"},{"euler":{"heading":162.34111390600748,"pitch":-162.15996929606752,"roll":52.18862995212923},"location":"Right Hip"},{"euler":{"heading":305.2857386277191,"pitch":-111.97846687937603,"roll":55.31277986792229},"location":"Right Knee"},{"euler":{"heading":16.5282109336757,"pitch":-135.2159231400292,"roll":59.453085117707644},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.790"} +{"sensors":[{"euler":{"heading":70.53708600450537,"pitch":124.6052691645947,"roll":14.585410955263283},"location":"Left Knee"},{"euler":{"heading":35.386221778427306,"pitch":89.78367167194307,"roll":11.015602377640532},"location":"Left Ankle"},{"euler":{"heading":72.76165677201183,"pitch":-24.759396236266717,"roll":-22.094069214674406},"location":"Right Ankle"},{"euler":{"heading":162.54450251540675,"pitch":-162.28147236646078,"roll":52.94476695691631},"location":"Right Hip"},{"euler":{"heading":305.7884147649472,"pitch":-112.09937019143842,"roll":54.42525188113006},"location":"Right Knee"},{"euler":{"heading":15.350389840308132,"pitch":-133.77558082602627,"roll":58.989026605936886},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.891"} +{"sensors":[{"euler":{"heading":67.84587740405483,"pitch":125.88224224813523,"roll":16.301869859736954},"location":"Left Knee"},{"euler":{"heading":32.485099600584576,"pitch":89.48030450474876,"roll":8.251542139876479},"location":"Left Ankle"},{"euler":{"heading":71.37299109481066,"pitch":-23.964706612640043,"roll":-23.222162293206964},"location":"Right Ankle"},{"euler":{"heading":162.91505226386607,"pitch":-162.6283251298147,"roll":53.74404026122468},"location":"Right Hip"},{"euler":{"heading":307.36582328845253,"pitch":-111.80193317229458,"roll":52.80147669301706},"location":"Right Knee"},{"euler":{"heading":14.87785085627732,"pitch":-132.89802274342367,"roll":58.733873945343205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.991"} +{"sensors":[{"euler":{"heading":66.41753966364935,"pitch":126.31901802332172,"roll":17.502932873763257},"location":"Left Knee"},{"euler":{"heading":31.14908964052612,"pitch":89.51977405427388,"roll":6.8326379258888315},"location":"Left Ankle"},{"euler":{"heading":68.5731919853296,"pitch":-22.97448595137604,"roll":-24.56244606388627},"location":"Right Ankle"},{"euler":{"heading":163.7422970374795,"pitch":-162.4717426168332,"roll":54.069636235102216},"location":"Right Hip"},{"euler":{"heading":310.4729909596073,"pitch":-110.95298985506513,"roll":50.127579023715356},"location":"Right Knee"},{"euler":{"heading":14.333815770649588,"pitch":-132.3269704690813,"roll":58.666736550808885},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.92"} +{"sensors":[{"euler":{"heading":65.76953569728443,"pitch":126.14336622098955,"roll":18.296389586386933},"location":"Left Knee"},{"euler":{"heading":30.509180676473513,"pitch":89.76154664884649,"roll":5.986874133299949},"location":"Left Ankle"},{"euler":{"heading":65.02212278679664,"pitch":-21.695787356238437,"roll":-25.918701457497644},"location":"Right Ankle"},{"euler":{"heading":164.84931733373153,"pitch":-161.8995683551499,"roll":53.62517261159199},"location":"Right Hip"},{"euler":{"heading":313.72569186364655,"pitch":-110.15144086955861,"roll":47.23982112134382},"location":"Right Knee"},{"euler":{"heading":14.21918419358463,"pitch":-132.48177342217315,"roll":58.856312895727996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.193"} +{"sensors":[{"euler":{"heading":65.62383212755599,"pitch":125.5602795988906,"roll":18.78550062774824},"location":"Left Knee"},{"euler":{"heading":30.527012608826162,"pitch":90.13539198396184,"roll":5.694436719969954},"location":"Left Ankle"},{"euler":{"heading":63.632410508116976,"pitch":-21.501208620614594,"roll":-26.489331311747883},"location":"Right Ankle"},{"euler":{"heading":165.8831356003584,"pitch":-161.34086151963493,"roll":52.63140535043279},"location":"Right Hip"},{"euler":{"heading":315.12812267728185,"pitch":-109.28629678260276,"roll":46.084589009209445},"location":"Right Knee"},{"euler":{"heading":14.572265774226167,"pitch":-133.38359607995582,"roll":59.245681606155195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.293"} +{"sensors":[{"euler":{"heading":65.98644891480039,"pitch":124.69175163900154,"roll":18.931950564973416},"location":"Left Knee"},{"euler":{"heading":31.530561347943546,"pitch":90.67810278556566,"roll":6.281243047972959},"location":"Left Ankle"},{"euler":{"heading":64.85041945730528,"pitch":-22.357337758553136,"roll":-25.590398180573096},"location":"Right Ankle"},{"euler":{"heading":166.10732204032257,"pitch":-161.15677536767143,"roll":51.57451481538951},"location":"Right Hip"},{"euler":{"heading":314.35906040955365,"pitch":-108.30141710434248,"roll":47.2573801082885},"location":"Right Knee"},{"euler":{"heading":15.227539196803551,"pitch":-135.00148647196025,"roll":59.733613445539675},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.394"} +{"sensors":[{"euler":{"heading":66.83780402332036,"pitch":123.67882647510139,"roll":18.613755508476075},"location":"Left Knee"},{"euler":{"heading":32.90875521314919,"pitch":91.2290425070091,"roll":7.271868743175664},"location":"Left Ankle"},{"euler":{"heading":67.66537751157475,"pitch":-23.434103982697824,"roll":-23.61260836251579},"location":"Right Ankle"},{"euler":{"heading":165.11533983629033,"pitch":-161.4348478309043,"roll":50.923313333850565},"location":"Right Hip"},{"euler":{"heading":312.00440436859833,"pitch":-108.27127539390823,"roll":50.044142097459655},"location":"Right Knee"},{"euler":{"heading":16.011035277123195,"pitch":-137.05758782476423,"roll":60.29150210098571},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.495"} +{"sensors":[{"euler":{"heading":68.27902362098833,"pitch":122.66719382759125,"roll":17.652379957628465},"location":"Left Knee"},{"euler":{"heading":35.267879691834274,"pitch":91.74363825630819,"roll":9.000931868858098},"location":"Left Ankle"},{"euler":{"heading":70.43008976041727,"pitch":-24.29069358442804,"roll":-21.988847526264212},"location":"Right Ankle"},{"euler":{"heading":163.4475558526613,"pitch":-162.00386304781387,"roll":50.61223200046551},"location":"Right Hip"},{"euler":{"heading":309.3602139317385,"pitch":-108.60039785451741,"roll":52.78972788771369},"location":"Right Knee"},{"euler":{"heading":16.90368174941088,"pitch":-139.5830790422878,"roll":60.82485189088714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.596"} +{"sensors":[{"euler":{"heading":70.95112125888949,"pitch":121.89422444483213,"roll":15.555891961865619},"location":"Left Knee"},{"euler":{"heading":38.17859172265085,"pitch":92.13177443067737,"roll":12.007088681972288},"location":"Left Ankle"},{"euler":{"heading":72.09958078437555,"pitch":-24.824124225985237,"roll":-21.108712773637794},"location":"Right Ankle"},{"euler":{"heading":162.5715502673952,"pitch":-162.3284767430325,"roll":50.463508800418964},"location":"Right Hip"},{"euler":{"heading":307.1366925385646,"pitch":-108.90910806906568,"roll":54.49200509894232},"location":"Right Knee"},{"euler":{"heading":17.338313574469794,"pitch":-140.77477113805904,"roll":61.32361670179843},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.696"} +{"sensors":[{"euler":{"heading":74.66850913300054,"pitch":120.87980200034892,"roll":13.006552765679057},"location":"Left Knee"},{"euler":{"heading":42.23573255038577,"pitch":92.92484698760964,"roll":15.912629813775059},"location":"Left Ankle"},{"euler":{"heading":73.08337270593799,"pitch":-24.854211803386715,"roll":-20.772841496274015},"location":"Right Ankle"},{"euler":{"heading":161.68314524065568,"pitch":-162.63312906872923,"roll":50.69840792037707},"location":"Right Hip"},{"euler":{"heading":305.35427328470814,"pitch":-109.85569726215913,"roll":55.48655458904809},"location":"Right Knee"},{"euler":{"heading":16.448232217022813,"pitch":-139.25354402425313,"roll":61.28500503161859},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.798"} +{"sensors":[{"euler":{"heading":77.1829082197005,"pitch":120.84807180031403,"roll":11.512147489111152},"location":"Left Knee"},{"euler":{"heading":44.380909295347195,"pitch":92.46361228884868,"roll":17.927616832397554},"location":"Left Ankle"},{"euler":{"heading":73.7250354353442,"pitch":-24.61254062304804,"roll":-20.801807346646612},"location":"Right Ankle"},{"euler":{"heading":161.20858071659012,"pitch":-162.7510661618563,"roll":51.27231712833937},"location":"Right Hip"},{"euler":{"heading":304.16884595623736,"pitch":-110.77012753594322,"roll":55.86914913014328},"location":"Right Knee"},{"euler":{"heading":14.922158995320533,"pitch":-137.0594396218278,"roll":60.63150452845673},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.899"} +{"sensors":[{"euler":{"heading":75.90211739773045,"pitch":121.97576462028263,"roll":12.098432740200037},"location":"Left Knee"},{"euler":{"heading":43.28656836581248,"pitch":91.49225105996382,"roll":16.8848551491578},"location":"Left Ankle"},{"euler":{"heading":73.97128189180978,"pitch":-24.18878656074324,"roll":-21.07162661198195},"location":"Right Ankle"},{"euler":{"heading":161.05022264493113,"pitch":-162.83220954567065,"roll":52.00133541550544},"location":"Right Hip"},{"euler":{"heading":303.53946136061364,"pitch":-111.4243647823489,"roll":55.769734217128956},"location":"Right Knee"},{"euler":{"heading":49.39869309578848,"pitch":-134.94099565964504,"roll":59.830854075611065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.0"} +{"sensors":[{"euler":{"heading":72.54940565795741,"pitch":123.76568815825436,"roll":13.882339466180033},"location":"Left Knee"},{"euler":{"heading":39.814161529231235,"pitch":90.48677595396744,"roll":13.527619634242022},"location":"Left Ankle"},{"euler":{"heading":73.6866537026288,"pitch":-23.438657904668915,"roll":-21.626963950783757},"location":"Right Ankle"},{"euler":{"heading":161.23270038043802,"pitch":-162.78023859110357,"roll":52.85120187395489},"location":"Right Hip"},{"euler":{"heading":303.5980152245523,"pitch":-111.80067830411402,"roll":55.105260795416065},"location":"Right Knee"},{"euler":{"heading":44.840073786209636,"pitch":-133.44689609368055,"roll":59.26026866804996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.101"} +{"sensors":[{"euler":{"heading":69.99446509216168,"pitch":125.08911934242893,"roll":15.63160551956203},"location":"Left Knee"},{"euler":{"heading":36.74524537630811,"pitch":90.2068483585707,"roll":10.49985767081782},"location":"Left Ankle"},{"euler":{"heading":72.50548833236593,"pitch":-22.576042114202025,"roll":-22.739267555705382},"location":"Right Ankle"},{"euler":{"heading":161.75318034239424,"pitch":-162.7647147319932,"roll":53.64108168655941},"location":"Right Hip"},{"euler":{"heading":305.0319637020971,"pitch":-111.65186047370261,"roll":53.519734715874456},"location":"Right Knee"},{"euler":{"heading":41.33106640758867,"pitch":-132.6772064843125,"roll":58.89049180124496},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.202"} +{"sensors":[{"euler":{"heading":68.5262685829455,"pitch":125.59895740818604,"roll":16.905944967605826},"location":"Left Knee"},{"euler":{"heading":35.176970838677306,"pitch":90.11116352271362,"roll":8.787371903736037},"location":"Left Ankle"},{"euler":{"heading":69.59243949912934,"pitch":-21.724687902781824,"roll":-24.084090800134845},"location":"Right Ankle"},{"euler":{"heading":162.80911230815482,"pitch":-162.4444932587939,"roll":54.06447351790347},"location":"Right Hip"},{"euler":{"heading":308.2850173318874,"pitch":-110.81792442633235,"roll":50.799011244287016},"location":"Right Knee"},{"euler":{"heading":38.079209766829806,"pitch":-132.16573583588126,"roll":58.70144262112047},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.303"} +{"sensors":[{"euler":{"heading":67.62364172465095,"pitch":125.55156166736744,"roll":17.834100470845243},"location":"Left Knee"},{"euler":{"heading":34.315523754809576,"pitch":90.26254717044226,"roll":7.614884713362434},"location":"Left Ankle"},{"euler":{"heading":66.0269455492164,"pitch":-20.508469112503644,"roll":-25.39443172012136},"location":"Right Ankle"},{"euler":{"heading":164.30945107733933,"pitch":-161.62504393291454,"roll":53.689276166113125},"location":"Right Hip"},{"euler":{"heading":311.2065155986987,"pitch":-110.16738198369913,"roll":48.16911011985832},"location":"Right Knee"},{"euler":{"heading":35.546288790146825,"pitch":-132.26791225229314,"roll":58.818798359008426},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.403"} +{"sensors":[{"euler":{"heading":67.09252755218586,"pitch":125.2026555006307,"roll":18.43194042376072},"location":"Left Knee"},{"euler":{"heading":34.12772137932862,"pitch":90.46129245339803,"roll":7.0346462420261915},"location":"Left Ankle"},{"euler":{"heading":64.41800099429477,"pitch":-20.36387220125328,"roll":-26.048738548109228},"location":"Right Ankle"},{"euler":{"heading":165.45975596960542,"pitch":-160.9625395396231,"roll":52.76409854950182},"location":"Right Hip"},{"euler":{"heading":312.54836403882877,"pitch":-109.41939378532922,"roll":47.14594910787249},"location":"Right Knee"},{"euler":{"heading":33.522909911132146,"pitch":-133.34737102706384,"roll":59.04941852310759},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.504"} +{"sensors":[{"euler":{"heading":67.13327479696727,"pitch":124.58238995056763,"roll":18.663746381384648},"location":"Left Knee"},{"euler":{"heading":34.733699241395755,"pitch":90.79641320805823,"roll":7.106181617823573},"location":"Left Ankle"},{"euler":{"heading":65.62620089486529,"pitch":-21.483734981127952,"roll":-25.200114693298307},"location":"Right Ankle"},{"euler":{"heading":165.7137803726449,"pitch":-160.7912855856608,"roll":51.700188694551635},"location":"Right Hip"},{"euler":{"heading":311.99977763494593,"pitch":-108.7462044067963,"roll":48.287604197085244},"location":"Right Knee"},{"euler":{"heading":32.01436892001893,"pitch":-135.08763392435745,"roll":59.38197667079683},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.605"} +{"sensors":[{"euler":{"heading":67.55744731727054,"pitch":123.79290095551087,"roll":18.547371743246185},"location":"Left Knee"},{"euler":{"heading":35.76657931725618,"pitch":91.21052188725241,"roll":7.651813456041216},"location":"Left Ankle"},{"euler":{"heading":68.18233080537877,"pitch":-22.68536148301516,"roll":-23.473853223968476},"location":"Right Ankle"},{"euler":{"heading":165.1236523353804,"pitch":-160.93090702709472,"roll":51.08016982509647},"location":"Right Hip"},{"euler":{"heading":309.8560498714513,"pitch":-108.90283396611667,"roll":50.99634377737672},"location":"Right Knee"},{"euler":{"heading":30.906682028017038,"pitch":-137.1851205319217,"roll":59.79377900371715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.705"} +{"sensors":[{"euler":{"heading":68.6767025855435,"pitch":122.86986085995979,"roll":17.811384568921564},"location":"Left Knee"},{"euler":{"heading":37.43992138553056,"pitch":91.67696969852717,"roll":8.942882110437095},"location":"Left Ankle"},{"euler":{"heading":70.6203477248409,"pitch":-23.66057533471365,"roll":-22.10146790157163},"location":"Right Ankle"},{"euler":{"heading":163.68628710184234,"pitch":-161.43156632438524,"roll":50.84715284258682},"location":"Right Hip"},{"euler":{"heading":307.40794488430623,"pitch":-109.331300569505,"roll":53.53420939963905},"location":"Right Knee"},{"euler":{"heading":30.309763825215335,"pitch":-139.67910847872955,"roll":60.27690110334543},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.806"} +{"sensors":[{"euler":{"heading":71.09028232698915,"pitch":122.06412477396381,"roll":15.91149611202941},"location":"Left Knee"},{"euler":{"heading":39.74592924697751,"pitch":91.92177272867445,"roll":11.698593899393385},"location":"Left Ankle"},{"euler":{"heading":72.32706295235681,"pitch":-24.332017801242287,"roll":-21.33507111141447},"location":"Right Ankle"},{"euler":{"heading":163.02390839165813,"pitch":-161.68215969194674,"roll":50.893687558328146},"location":"Right Hip"},{"euler":{"heading":305.42340039587566,"pitch":-110.0669205125545,"roll":55.17453845967515},"location":"Right Knee"},{"euler":{"heading":29.285037442693802,"pitch":-140.8236976308566,"roll":60.62421099301089},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.908"} +{"sensors":[{"euler":{"heading":74.56250409429025,"pitch":121.25146229656742,"roll":13.514096500826469},"location":"Left Knee"},{"euler":{"heading":43.10258632227976,"pitch":92.39209545580701,"roll":15.384984509454046},"location":"Left Ankle"},{"euler":{"heading":73.49435665712114,"pitch":-24.83631602111806,"roll":-20.920314000273024},"location":"Right Ankle"},{"euler":{"heading":162.24651755249232,"pitch":-162.05769372275205,"roll":51.38556880249533},"location":"Right Hip"},{"euler":{"heading":304.1123103562881,"pitch":-111.14147846129906,"roll":56.00083461370763},"location":"Right Knee"},{"euler":{"heading":26.844033698424422,"pitch":-139.34132786777096,"roll":60.4367898937098},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.8"} +{"sensors":[{"euler":{"heading":76.84375368486123,"pitch":121.31381606691069,"roll":12.162686850743823},"location":"Left Knee"},{"euler":{"heading":44.886077690051785,"pitch":91.94038591022631,"roll":17.20273605850864},"location":"Left Ankle"},{"euler":{"heading":74.20742099140904,"pitch":-25.246434419006253,"roll":-20.847032600245722},"location":"Right Ankle"},{"euler":{"heading":162.12811579724308,"pitch":-162.17067435047684,"roll":52.022011922245795},"location":"Right Hip"},{"euler":{"heading":303.5635793206593,"pitch":-111.82733061516915,"roll":56.238251152336865},"location":"Right Knee"},{"euler":{"heading":24.17838032858198,"pitch":-137.49469508099386,"roll":59.64936090433882},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.109"} +{"sensors":[{"euler":{"heading":75.20312831637511,"pitch":122.43243446021962,"roll":12.933918165669441},"location":"Left Knee"},{"euler":{"heading":43.516219921046606,"pitch":91.05259731920368,"roll":15.982462452657778},"location":"Left Ankle"},{"euler":{"heading":74.48667889226815,"pitch":-25.434290977105626,"roll":-21.15607934022115},"location":"Right Ankle"},{"euler":{"heading":162.3778042175188,"pitch":-162.16610691542917,"roll":52.688560730021216},"location":"Right Hip"},{"euler":{"heading":303.62597138859337,"pitch":-112.17584755365223,"roll":55.95192603710318},"location":"Right Knee"},{"euler":{"heading":22.554292295723783,"pitch":-135.5702255728945,"roll":58.87192481390494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.212"} +{"sensors":[{"euler":{"heading":71.3203154847376,"pitch":124.23294101419766,"roll":14.959276349102497},"location":"Left Knee"},{"euler":{"heading":39.87084792894194,"pitch":90.28483758728332,"roll":12.465466207392002},"location":"Left Ankle"},{"euler":{"heading":74.18176100304133,"pitch":-25.165861879395063,"roll":-21.827971406199037},"location":"Right Ankle"},{"euler":{"heading":162.8400237957669,"pitch":-162.18699622388627,"roll":53.31345465701909},"location":"Right Hip"},{"euler":{"heading":304.26337424973406,"pitch":-112.28326279828701,"roll":55.09423343339286},"location":"Right Knee"},{"euler":{"heading":20.630113066151406,"pitch":-134.06945301560503,"roll":58.26598233251445},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.313"} +{"sensors":[{"euler":{"heading":68.35703393626385,"pitch":125.6596469127779,"roll":16.83209871419225},"location":"Left Knee"},{"euler":{"heading":36.82126313604775,"pitch":90.11885382855499,"roll":9.506419586652802},"location":"Left Ankle"},{"euler":{"heading":72.8260849027372,"pitch":-24.536775691455556,"roll":-23.107674265579135},"location":"Right Ankle"},{"euler":{"heading":163.4997714161902,"pitch":-162.37454660149766,"roll":53.93835919131719},"location":"Right Hip"},{"euler":{"heading":305.9057868247607,"pitch":-112.03618651845832,"roll":53.51606009005357},"location":"Right Knee"},{"euler":{"heading":19.435851759536263,"pitch":-133.06875771404452,"roll":57.870634099263},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.413"} +{"sensors":[{"euler":{"heading":66.83383054263746,"pitch":126.11868222150012,"roll":18.198888842773023},"location":"Left Knee"},{"euler":{"heading":35.17663682244297,"pitch":90.25071844569949,"roll":7.780777627987522},"location":"Left Ankle"},{"euler":{"heading":69.99347641246348,"pitch":-23.62684812231,"roll":-24.609406839021222},"location":"Right Ankle"},{"euler":{"heading":164.5372942745712,"pitch":-162.2245919413479,"roll":54.32577327218547},"location":"Right Hip"},{"euler":{"heading":309.13395814228465,"pitch":-111.1888178666125,"roll":50.91445408104821},"location":"Right Knee"},{"euler":{"heading":18.417266583582638,"pitch":-132.37438194264007,"roll":57.72732068933671},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.514"} +{"sensors":[{"euler":{"heading":65.98794748837372,"pitch":125.85681399935012,"roll":19.291499958495724},"location":"Left Knee"},{"euler":{"heading":34.465223140198674,"pitch":90.65064660112954,"roll":6.69019986518877},"location":"Left Ankle"},{"euler":{"heading":66.20037877121713,"pitch":-22.289163310079,"roll":-26.1234661551191},"location":"Right Ankle"},{"euler":{"heading":166.10856484711408,"pitch":-161.50213274721312,"roll":53.949445944966925},"location":"Right Hip"},{"euler":{"heading":312.2830623280562,"pitch":-110.35743607995124,"roll":48.0230086729434},"location":"Right Knee"},{"euler":{"heading":18.100539925224375,"pitch":-132.52444374837606,"roll":57.89833862040304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.614"} +{"sensors":[{"euler":{"heading":65.50790273953635,"pitch":125.19613259941511,"roll":20.112349962646153},"location":"Left Knee"},{"euler":{"heading":34.46245082617881,"pitch":91.19183194101659,"roll":6.164929878669893},"location":"Left Ankle"},{"euler":{"heading":63.98659089409542,"pitch":-21.822746979071102,"roll":-27.01736953960719},"location":"Right Ankle"},{"euler":{"heading":167.68520836240268,"pitch":-160.75191947249183,"roll":52.973251350470235},"location":"Right Hip"},{"euler":{"heading":313.6797560952506,"pitch":-109.46544247195612,"roll":46.689457805649056},"location":"Right Knee"},{"euler":{"heading":18.221735932701936,"pitch":-133.53449937353844,"roll":58.22100475836274},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.715"} +{"sensors":[{"euler":{"heading":65.58211246558272,"pitch":124.3015193394736,"roll":20.51361496638154},"location":"Left Knee"},{"euler":{"heading":35.37870574356093,"pitch":91.86014874691494,"roll":6.442186890802904},"location":"Left Ankle"},{"euler":{"heading":64.60043180468588,"pitch":-22.77797228116399,"roll":-26.440632585646473},"location":"Right Ankle"},{"euler":{"heading":168.4604375261624,"pitch":-160.43922752524264,"roll":51.78842621542321},"location":"Right Hip"},{"euler":{"heading":313.28053048572554,"pitch":-108.46264822476053,"roll":47.52676202508415},"location":"Right Knee"},{"euler":{"heading":18.524562339431743,"pitch":-135.09979943618458,"roll":58.63640428252647},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.815"} +{"sensors":[{"euler":{"heading":66.22390121902446,"pitch":123.23386740552624,"roll":20.406003469743386},"location":"Left Knee"},{"euler":{"heading":36.53458516920484,"pitch":92.48038387222346,"roll":7.129218201722614},"location":"Left Ankle"},{"euler":{"heading":67.1716386242173,"pitch":-23.943925053047593,"roll":-24.702819327081826},"location":"Right Ankle"},{"euler":{"heading":168.28939377354618,"pitch":-160.4140547727184,"roll":51.00958359388088},"location":"Right Hip"},{"euler":{"heading":311.271227437153,"pitch":-108.38513340228448,"roll":49.99908582257574},"location":"Right Knee"},{"euler":{"heading":19.00960610548857,"pitch":-136.87731949256613,"roll":59.19151385427383},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.916"} +{"sensors":[{"euler":{"heading":67.38901109712201,"pitch":122.14173066497362,"roll":19.690403122769048},"location":"Left Knee"},{"euler":{"heading":38.28112665228436,"pitch":93.06359548500112,"roll":8.472546381550352},"location":"Left Ankle"},{"euler":{"heading":70.16072476179556,"pitch":-25.074532547742834,"roll":-22.938787394373644},"location":"Right Ankle"},{"euler":{"heading":167.05420439619158,"pitch":-160.77264929544657,"roll":50.7586252344928},"location":"Right Hip"},{"euler":{"heading":308.8003546934377,"pitch":-109.59662006205603,"roll":52.63667724031817},"location":"Right Knee"},{"euler":{"heading":19.564895494939712,"pitch":-138.9895875433095,"roll":59.797362468846444},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.17"} +{"sensors":[{"euler":{"heading":69.4688599874098,"pitch":121.05880759847625,"roll":18.077612810492145},"location":"Left Knee"},{"euler":{"heading":41.015513987055925,"pitch":93.494735936501,"roll":10.981541743395317},"location":"Left Ankle"},{"euler":{"heading":72.04465228561601,"pitch":-25.635829292968552,"roll":-22.00115865493628},"location":"Right Ankle"},{"euler":{"heading":165.71128395657243,"pitch":-161.22038436590194,"roll":50.739012711043515},"location":"Right Hip"},{"euler":{"heading":306.407819224094,"pitch":-110.52445805585043,"roll":54.46050951628635},"location":"Right Knee"},{"euler":{"heading":20.158405945445743,"pitch":-140.83437878897857,"roll":60.4113762219618},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.117"} +{"sensors":[{"euler":{"heading":72.84697398866882,"pitch":118.59667683862862,"roll":15.569851529442932},"location":"Left Knee"},{"euler":{"heading":44.688962588350336,"pitch":94.2890123428509,"roll":14.664637569055785},"location":"Left Ankle"},{"euler":{"heading":73.32143705705441,"pitch":-25.740996363671698,"roll":-21.55104278944265},"location":"Right Ankle"},{"euler":{"heading":164.65265556091518,"pitch":-161.58584592931174,"roll":51.065111439939166},"location":"Right Hip"},{"euler":{"heading":304.4545373016846,"pitch":-111.83451225026539,"roll":55.47070856465771},"location":"Right Knee"},{"euler":{"heading":19.24256535090117,"pitch":-140.18844091008071,"roll":60.53273859976562},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.218"} +{"sensors":[{"euler":{"heading":76.00602658980193,"pitch":118.26200915476576,"roll":13.46911637649864},"location":"Left Knee"},{"euler":{"heading":47.4950663295153,"pitch":93.9538611085658,"roll":17.441923812150208},"location":"Left Ankle"},{"euler":{"heading":74.08929335134897,"pitch":-25.62939672730453,"roll":-21.495938510498387},"location":"Right Ankle"},{"euler":{"heading":163.88114000482366,"pitch":-161.7897613363806,"roll":51.64610029594525},"location":"Right Hip"},{"euler":{"heading":303.16533357151616,"pitch":-112.76981102523887,"roll":55.85488770819194},"location":"Right Knee"},{"euler":{"heading":17.374558815811053,"pitch":-138.31959681907264,"roll":59.99196473978906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.318"} +{"sensors":[{"euler":{"heading":76.13667393082174,"pitch":119.26705823928918,"roll":13.315954738848776},"location":"Left Knee"},{"euler":{"heading":46.964309696563774,"pitch":93.03972499770923,"roll":17.360231430935187},"location":"Left Ankle"},{"euler":{"heading":74.56161401621407,"pitch":-25.40395705457408,"roll":-21.871344659448546},"location":"Right Ankle"},{"euler":{"heading":163.5805260043413,"pitch":-161.87328520274252,"roll":52.381490266350724},"location":"Right Hip"},{"euler":{"heading":302.54255021436455,"pitch":-113.37407992271497,"roll":55.74439893737275},"location":"Right Knee"},{"euler":{"heading":51.44335293422995,"pitch":-136.2376371371654,"roll":59.13651826581015},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.419"} +{"sensors":[{"euler":{"heading":72.97300653773958,"pitch":121.13410241536027,"roll":14.878109264963898},"location":"Left Knee"},{"euler":{"heading":43.5928787269074,"pitch":91.9295024979383,"roll":14.555458287841669},"location":"Left Ankle"},{"euler":{"heading":74.49920261459266,"pitch":-25.019811349116672,"roll":-22.390460193503692},"location":"Right Ankle"},{"euler":{"heading":163.65372340390718,"pitch":-161.9984566824683,"roll":53.124591239715656},"location":"Right Hip"},{"euler":{"heading":302.6945451929281,"pitch":-113.62417193044348,"roll":55.094959043635484},"location":"Right Knee"},{"euler":{"heading":46.46776764080696,"pitch":-134.54512342344884,"roll":58.466616439229135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.520"} +{"sensors":[{"euler":{"heading":69.29445588396563,"pitch":123.22694217382424,"roll":16.821548338467508},"location":"Left Knee"},{"euler":{"heading":39.739840854216666,"pitch":91.16780224814448,"roll":10.974912459057501},"location":"Left Ankle"},{"euler":{"heading":73.6242823531334,"pitch":-24.336580214205007,"roll":-23.351414174153323},"location":"Right Ankle"},{"euler":{"heading":164.05710106351648,"pitch":-162.21111101422144,"roll":53.887132115744095},"location":"Right Hip"},{"euler":{"heading":303.9000906736353,"pitch":-113.46800473739913,"roll":53.77921313927194},"location":"Right Knee"},{"euler":{"heading":42.59599087672626,"pitch":-133.59686108110395,"roll":58.00120479530622},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.621"} +{"sensors":[{"euler":{"heading":67.27751029556906,"pitch":124.19799795644182,"roll":18.408143504620757},"location":"Left Knee"},{"euler":{"heading":37.615856768795005,"pitch":91.23852202333003,"roll":8.82117121315175},"location":"Left Ankle"},{"euler":{"heading":71.30560411782007,"pitch":-23.521672192784507,"roll":-24.64752275673799},"location":"Right Ankle"},{"euler":{"heading":164.97639095716482,"pitch":-162.2524999127993,"roll":54.49216890416969},"location":"Right Hip"},{"euler":{"heading":306.7850816062718,"pitch":-112.72120426365922,"roll":51.42629182534474},"location":"Right Knee"},{"euler":{"heading":39.29264178905363,"pitch":-132.99342497299355,"roll":57.7010843157756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.723"} +{"sensors":[{"euler":{"heading":66.15600926601215,"pitch":124.45319816079764,"roll":19.479829154158683},"location":"Left Knee"},{"euler":{"heading":36.223021091915506,"pitch":91.32716982099704,"roll":7.3578040918365755},"location":"Left Ankle"},{"euler":{"heading":67.58754370603806,"pitch":-21.732004973506058,"roll":-26.320270481064192},"location":"Right Ankle"},{"euler":{"heading":166.63500186144836,"pitch":-161.50224992151936,"roll":54.29295201375272},"location":"Right Hip"},{"euler":{"heading":309.9253234456446,"pitch":-111.9178338372933,"roll":48.47741264281027},"location":"Right Knee"},{"euler":{"heading":36.56337761014827,"pitch":-132.8190824756942,"roll":57.693475884198044},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.824"} +{"sensors":[{"euler":{"heading":65.35290833941093,"pitch":124.30162834471788,"roll":20.269346238742816},"location":"Left Knee"},{"euler":{"heading":35.506968982723954,"pitch":91.43820283889734,"roll":6.478273682652918},"location":"Left Ankle"},{"euler":{"heading":64.82253933543426,"pitch":-20.90255447615545,"roll":-27.200743432957772},"location":"Right Ankle"},{"euler":{"heading":168.30275167530354,"pitch":-160.67077492936744,"roll":53.41365681237745},"location":"Right Hip"},{"euler":{"heading":312.12029110108017,"pitch":-110.78230045356398,"roll":46.64217137852925},"location":"Right Knee"},{"euler":{"heading":34.32578984913345,"pitch":-133.38717422812476,"roll":57.86162829577824},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.924"} +{"sensors":[{"euler":{"heading":65.04261750546983,"pitch":123.9089655102461,"roll":20.661161614868533},"location":"Left Knee"},{"euler":{"heading":35.581272084451555,"pitch":91.5693825550076,"roll":6.330446314387626},"location":"Left Ankle"},{"euler":{"heading":64.72153540189083,"pitch":-21.76854902853991,"roll":-26.805669089661993},"location":"Right Ankle"},{"euler":{"heading":169.2099765077732,"pitch":-160.1786974364307,"roll":52.2660411311397},"location":"Right Hip"},{"euler":{"heading":312.3020119909722,"pitch":-109.62907040820758,"roll":47.21545424067632},"location":"Right Knee"},{"euler":{"heading":32.54321086422011,"pitch":-134.47970680531228,"roll":58.212965466200416},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.25"} +{"sensors":[{"euler":{"heading":65.27585575492286,"pitch":123.2930689592215,"roll":20.63254545338168},"location":"Left Knee"},{"euler":{"heading":36.0856448760064,"pitch":91.76869429950685,"roll":6.591151682948864},"location":"Left Ankle"},{"euler":{"heading":67.13063186170174,"pitch":-22.991694125685918,"roll":-25.181352180695793},"location":"Right Ankle"},{"euler":{"heading":168.9639788569959,"pitch":-160.22332769278762,"roll":51.29568701802573},"location":"Right Hip"},{"euler":{"heading":310.69056079187493,"pitch":-108.86616336738683,"roll":49.431408816608695},"location":"Right Knee"},{"euler":{"heading":31.151389777798098,"pitch":-136.05048612478106,"roll":58.66041891958038},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.126"} +{"sensors":[{"euler":{"heading":66.09202017943058,"pitch":122.50751206329936,"roll":20.075540908043514},"location":"Left Knee"},{"euler":{"heading":37.15208038840576,"pitch":92.01057486955617,"roll":7.4445365146539775},"location":"Left Ankle"},{"euler":{"heading":70.16131867553158,"pitch":-24.317524713117326,"roll":-23.175716962626215},"location":"Right Ankle"},{"euler":{"heading":167.65508097129631,"pitch":-160.63849492350886,"roll":50.81611831622316},"location":"Right Hip"},{"euler":{"heading":308.37150471268745,"pitch":-109.55454703064815,"roll":52.30076793494783},"location":"Right Knee"},{"euler":{"heading":30.16750080001829,"pitch":-138.05168751230295,"roll":59.263127027622346},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.226"} +{"sensors":[{"euler":{"heading":67.84531816148753,"pitch":121.73176085696943,"roll":18.699236817239164},"location":"Left Knee"},{"euler":{"heading":38.98687234956519,"pitch":92.21576738260055,"roll":9.30633286318858},"location":"Left Ankle"},{"euler":{"heading":72.22018680797842,"pitch":-24.848272241805596,"roll":-22.045645266363593},"location":"Right Ankle"},{"euler":{"heading":166.30207287416667,"pitch":-161.105895431158,"roll":50.584506484600844},"location":"Right Hip"},{"euler":{"heading":305.9343542414187,"pitch":-110.23659232758334,"roll":54.49569114145305},"location":"Right Knee"},{"euler":{"heading":29.657000720016462,"pitch":-140.39651876107266,"roll":59.874314324860116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.326"} +{"sensors":[{"euler":{"heading":71.11703634533878,"pitch":120.98358477127249,"roll":16.22931313551525},"location":"Left Knee"},{"euler":{"heading":42.23818511460867,"pitch":93.1004406443405,"roll":12.688199576869723},"location":"Left Ankle"},{"euler":{"heading":73.47316812718057,"pitch":-24.907195017625035,"roll":-21.566080739727237},"location":"Right Ankle"},{"euler":{"heading":165.44061558675003,"pitch":-161.3328058880422,"roll":50.757305836140766},"location":"Right Hip"},{"euler":{"heading":303.9596688172768,"pitch":-111.056683094825,"roll":55.80237202730775},"location":"Right Knee"},{"euler":{"heading":27.922550648014816,"pitch":-140.6131168849654,"roll":59.986882892374105},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.427"} +{"sensors":[{"euler":{"heading":74.6678327108049,"pitch":120.56647629414525,"roll":13.981381821963724},"location":"Left Knee"},{"euler":{"heading":44.80811660314781,"pitch":93.47789657990644,"roll":15.381879619182751},"location":"Left Ankle"},{"euler":{"heading":74.28835131446252,"pitch":-24.753975515862532,"roll":-21.471972665754514},"location":"Right Ankle"},{"euler":{"heading":164.68405402807502,"pitch":-161.51827529923798,"roll":51.30032525252669},"location":"Right Hip"},{"euler":{"heading":302.46995193554915,"pitch":-112.0947647853425,"roll":56.409634824576976},"location":"Right Knee"},{"euler":{"heading":25.411545583213336,"pitch":-139.08930519646887,"roll":59.5819446031367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.528"} +{"sensors":[{"euler":{"heading":75.46979943972441,"pitch":121.29732866473071,"roll":13.483243639767352},"location":"Left Knee"},{"euler":{"heading":44.67105494283303,"pitch":92.8426069219158,"roll":15.562441657264475},"location":"Left Ankle"},{"euler":{"heading":74.89701618301626,"pitch":-24.378577964276282,"roll":-21.743525399179063},"location":"Right Ankle"},{"euler":{"heading":164.51564862526754,"pitch":-161.4351977693142,"roll":51.94529272727402},"location":"Right Hip"},{"euler":{"heading":301.51670674199426,"pitch":-112.89778830680827,"roll":56.52492134211928},"location":"Right Knee"},{"euler":{"heading":58.739141024892,"pitch":-137.192874676822,"roll":58.78000014282303},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.628"} +{"sensors":[{"euler":{"heading":72.36031949575197,"pitch":123.01759579825764,"roll":14.947419275790617},"location":"Left Knee"},{"euler":{"heading":41.71644944854973,"pitch":91.93959622972422,"roll":13.181197491538029},"location":"Left Ankle"},{"euler":{"heading":74.86356456471464,"pitch":-23.728220167848654,"roll":-22.31917285926116},"location":"Right Ankle"},{"euler":{"heading":164.77033376274082,"pitch":-161.23542799238277,"roll":52.58826345454662},"location":"Right Hip"},{"euler":{"heading":301.24628606779487,"pitch":-113.36425947612744,"roll":56.03492920790735},"location":"Right Knee"},{"euler":{"heading":52.9964769224028,"pitch":-135.6173372091398,"roll":58.083250128540726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.729"} +{"sensors":[{"euler":{"heading":68.41178754617677,"pitch":125.12208621843189,"roll":16.808927348211554},"location":"Left Knee"},{"euler":{"heading":37.96355450369476,"pitch":90.9081366067518,"roll":9.725577742384225},"location":"Left Ankle"},{"euler":{"heading":73.97720810824318,"pitch":-22.81164815106379,"roll":-23.431005573335042},"location":"Right Ankle"},{"euler":{"heading":165.31830038646675,"pitch":-161.0493851931445,"roll":53.22318710909197},"location":"Right Hip"},{"euler":{"heading":301.9216574610154,"pitch":-113.45908352851471,"roll":54.80018628711662},"location":"Right Knee"},{"euler":{"heading":48.37807923016252,"pitch":-134.54310348822582,"roll":57.59992511568666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.831"} +{"sensors":[{"euler":{"heading":66.15185879155909,"pitch":126.2036275965887,"roll":18.4530346133904},"location":"Left Knee"},{"euler":{"heading":35.579699053325285,"pitch":90.89857294607661,"roll":7.3842699681458015},"location":"Left Ankle"},{"euler":{"heading":71.87948729741886,"pitch":-21.79923333595741,"roll":-24.787905016001538},"location":"Right Ankle"},{"euler":{"heading":166.11147034782007,"pitch":-161.11319667383003,"roll":53.90086839818277},"location":"Right Hip"},{"euler":{"heading":304.33574171491387,"pitch":-112.97567517566324,"roll":52.63891765840496},"location":"Right Knee"},{"euler":{"heading":44.63402130714627,"pitch":-133.95754313940324,"roll":57.327432604118},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.932"} +{"sensors":[{"euler":{"heading":65.01792291240318,"pitch":126.32701483692983,"roll":19.676481152051362},"location":"Left Knee"},{"euler":{"heading":34.40922914799276,"pitch":91.16496565146896,"roll":6.095842971331222},"location":"Left Ankle"},{"euler":{"heading":68.21653856767698,"pitch":-20.21931000236167,"roll":-26.452864514401387},"location":"Right Ankle"},{"euler":{"heading":167.50657331303807,"pitch":-160.65812700644705,"roll":53.967031558364496},"location":"Right Hip"},{"euler":{"heading":307.8584175434225,"pitch":-112.04685765809693,"roll":49.643775892564456},"location":"Right Knee"},{"euler":{"heading":41.51436917643164,"pitch":-133.71803882546294,"roll":57.4071893437062},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.33"} +{"sensors":[{"euler":{"heading":64.45988062116287,"pitch":125.83806335323685,"roll":20.658833036846225},"location":"Left Knee"},{"euler":{"heading":34.03080623319349,"pitch":91.72346908632207,"roll":5.330008674198099},"location":"Left Ankle"},{"euler":{"heading":65.04488471090929,"pitch":-19.547379002125506,"roll":-27.59507806296125},"location":"Right Ankle"},{"euler":{"heading":169.12466598173427,"pitch":-159.97981430580234,"roll":53.151578402528045},"location":"Right Hip"},{"euler":{"heading":310.71007578908024,"pitch":-110.94217189228723,"roll":47.410648303308015},"location":"Right Knee"},{"euler":{"heading":39.20043225878848,"pitch":-134.38373494291665,"roll":57.710220409335584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.134"} +{"sensors":[{"euler":{"heading":64.39514255904658,"pitch":124.97925701791317,"roll":21.324199733161603},"location":"Left Knee"},{"euler":{"heading":34.15272560987414,"pitch":92.38862217768987,"roll":5.022007806778289},"location":"Left Ankle"},{"euler":{"heading":64.64664623981835,"pitch":-20.280141101912957,"roll":-27.710570256665125},"location":"Right Ankle"},{"euler":{"heading":170.15594938356085,"pitch":-159.5818328752221,"roll":51.867670562275244},"location":"Right Hip"},{"euler":{"heading":311.48281821017224,"pitch":-110.10420470305851,"roll":47.200833472977216},"location":"Right Knee"},{"euler":{"heading":37.58038903290963,"pitch":-135.77036144862498,"roll":58.17669836840203},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.235"} +{"sensors":[{"euler":{"heading":64.89937830314192,"pitch":123.91258131612186,"roll":21.504279759845442},"location":"Left Knee"},{"euler":{"heading":34.656203048886724,"pitch":93.03725995992089,"roll":5.13230702610046},"location":"Left Ankle"},{"euler":{"heading":66.38823161583652,"pitch":-21.75837699172166,"roll":-26.302013230998615},"location":"Right Ankle"},{"euler":{"heading":165.79660444520476,"pitch":-159.44239958769987,"roll":50.66840350604772},"location":"Right Hip"},{"euler":{"heading":310.372036389155,"pitch":-109.41878423275267,"roll":49.080750125679494},"location":"Right Knee"},{"euler":{"heading":36.22860012961867,"pitch":-137.5058253037625,"roll":58.70902853156183},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.335"} +{"sensors":[{"euler":{"heading":65.87194047282773,"pitch":122.79632318450967,"roll":21.060101783860897},"location":"Left Knee"},{"euler":{"heading":35.66558274399805,"pitch":93.7085339639288,"roll":5.800326323490415},"location":"Left Ankle"},{"euler":{"heading":69.41815845425286,"pitch":-23.238789292549495,"roll":-24.134311907898752},"location":"Right Ankle"},{"euler":{"heading":165.3731940006843,"pitch":-159.7231596289299,"roll":50.07656315544295},"location":"Right Hip"},{"euler":{"heading":307.9910827502395,"pitch":-109.8144058094774,"roll":52.022675113111546},"location":"Right Knee"},{"euler":{"heading":35.0369901166568,"pitch":-139.58649277338625,"roll":59.269375678405645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.437"} +{"sensors":[{"euler":{"heading":67.55349642554496,"pitch":121.79169086605872,"roll":19.779091605474807},"location":"Left Knee"},{"euler":{"heading":37.33027446959825,"pitch":94.23143056753592,"roll":7.345293691141373},"location":"Left Ankle"},{"euler":{"heading":71.57634260882757,"pitch":-24.083660363294545,"roll":-22.770880717108877},"location":"Right Ankle"},{"euler":{"heading":164.3546246006159,"pitch":-160.2945936660369,"roll":49.800156839898655},"location":"Right Hip"},{"euler":{"heading":305.63572447521557,"pitch":-110.34546522852968,"roll":54.31415760180039},"location":"Right Knee"},{"euler":{"heading":34.13329110499112,"pitch":-141.86534349604764,"roll":59.89243811056508},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.537"} +{"sensors":[{"euler":{"heading":70.77939678299047,"pitch":121.20627177945285,"roll":17.326182444927326},"location":"Left Knee"},{"euler":{"heading":40.00974702263843,"pitch":94.53953751078234,"roll":10.629514322027237},"location":"Left Ankle"},{"euler":{"heading":72.98120834794481,"pitch":-24.67529432696509,"roll":-22.06254264539799},"location":"Right Ankle"},{"euler":{"heading":163.75041214055432,"pitch":-160.69638429943322,"roll":50.013891155908794},"location":"Right Hip"},{"euler":{"heading":303.85965202769404,"pitch":-111.29841870567671,"roll":55.65774184162035},"location":"Right Knee"},{"euler":{"heading":32.23246199449201,"pitch":-142.52880914644288,"roll":60.04694429950858},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.638"} +{"sensors":[{"euler":{"heading":74.30770710469143,"pitch":120.66689460150756,"roll":14.881064200434594},"location":"Left Knee"},{"euler":{"heading":42.75877232037459,"pitch":94.64183375970411,"roll":14.104062889824515},"location":"Left Ankle"},{"euler":{"heading":73.91433751315034,"pitch":-25.070264894268583,"roll":-21.706288380858194},"location":"Right Ankle"},{"euler":{"heading":163.1003709264989,"pitch":-161.13924586948988,"roll":50.60000204031792},"location":"Right Hip"},{"euler":{"heading":302.66118682492464,"pitch":-112.09357683510903,"roll":56.32946765745832},"location":"Right Knee"},{"euler":{"heading":29.509215795042813,"pitch":-140.7134282317986,"roll":59.87974986955772},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.739"} +{"sensors":[{"euler":{"heading":75.78318639422228,"pitch":121.06270514135682,"roll":13.986707780391134},"location":"Left Knee"},{"euler":{"heading":43.72664508833713,"pitch":93.84640038373371,"roll":15.256156600842065},"location":"Left Ankle"},{"euler":{"heading":74.4979037618353,"pitch":-25.319488404841728,"roll":-21.748159542772374},"location":"Right Ankle"},{"euler":{"heading":163.03408383384902,"pitch":-161.31282128254088,"roll":51.30250183628613},"location":"Right Hip"},{"euler":{"heading":302.1200681424322,"pitch":-112.67796915159813,"roll":56.446520891712495},"location":"Right Knee"},{"euler":{"heading":62.514544215538535,"pitch":-138.66083540861874,"roll":59.12927488260195},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.840"} +{"sensors":[{"euler":{"heading":73.35486775480007,"pitch":122.51893462722114,"roll":15.075537002352021},"location":"Left Knee"},{"euler":{"heading":41.641480579503416,"pitch":92.68676034536034,"roll":13.549290940757858},"location":"Left Ankle"},{"euler":{"heading":74.51686338565177,"pitch":-25.312539564357557,"roll":-22.01084358849514},"location":"Right Ankle"},{"euler":{"heading":163.26817545046413,"pitch":-161.4627891542868,"roll":52.01600165265752},"location":"Right Hip"},{"euler":{"heading":302.164311328189,"pitch":-112.97267223643833,"roll":56.07061880254125},"location":"Right Knee"},{"euler":{"heading":92.23183979398468,"pitch":-136.62600186775688,"roll":58.416347394341756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.941"} +{"sensors":[{"euler":{"heading":69.58188097932006,"pitch":124.51704116449903,"roll":16.96798330211682},"location":"Left Knee"},{"euler":{"heading":37.75858252155307,"pitch":91.6430843108243,"roll":9.969361846682073},"location":"Left Ankle"},{"euler":{"heading":73.9339270470866,"pitch":-24.937535607921802,"roll":-22.872259229645625},"location":"Right Ankle"},{"euler":{"heading":163.70385790541772,"pitch":-161.65401023885815,"roll":52.82065148739177},"location":"Right Hip"},{"euler":{"heading":302.8541301953701,"pitch":-113.0004050127945,"roll":55.13230692228713},"location":"Right Knee"},{"euler":{"heading":83.6711558145862,"pitch":-135.36340168098118,"roll":57.96846265490758},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.42"} +{"sensors":[{"euler":{"heading":67.23619288138806,"pitch":125.65283704804914,"roll":18.62118497190514},"location":"Left Knee"},{"euler":{"heading":34.72022426939776,"pitch":91.41627587974187,"roll":7.116175662013865},"location":"Left Ankle"},{"euler":{"heading":72.49678434237794,"pitch":-24.268782047129623,"roll":-24.03503330668106},"location":"Right Ankle"},{"euler":{"heading":164.20222211487595,"pitch":-162.24485921497234,"roll":53.738586338652595},"location":"Right Hip"},{"euler":{"heading":304.4562171758331,"pitch":-112.62536451151504,"roll":53.52532623005842},"location":"Right Knee"},{"euler":{"heading":76.68529023312757,"pitch":-134.57081151288307,"roll":57.796616389416826},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.142"} +{"sensors":[{"euler":{"heading":66.00632359324926,"pitch":125.96255334324422,"roll":19.784066474714628},"location":"Left Knee"},{"euler":{"heading":33.423201842457985,"pitch":91.54339829176769,"roll":5.810808095812479},"location":"Left Ankle"},{"euler":{"heading":69.59085590814014,"pitch":-23.40440384241666,"roll":-25.400279976012957},"location":"Right Ankle"},{"euler":{"heading":165.34449990338837,"pitch":-162.4078732934751,"roll":54.18972770478734},"location":"Right Hip"},{"euler":{"heading":307.59809545824976,"pitch":-111.63157806036354,"roll":50.891543607052576},"location":"Right Knee"},{"euler":{"heading":70.34801120981481,"pitch":-134.00123036159476,"roll":57.810704750475146},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.243"} +{"sensors":[{"euler":{"heading":65.28069123392433,"pitch":125.77879800891981,"roll":20.543159827243166},"location":"Left Knee"},{"euler":{"heading":32.68713165821219,"pitch":91.74530846259093,"roll":4.929727286231231},"location":"Left Ankle"},{"euler":{"heading":65.85677031732612,"pitch":-22.163963458174994,"roll":-26.77900197841166},"location":"Right Ankle"},{"euler":{"heading":166.96629991304954,"pitch":-161.71083596412757,"roll":53.795754934308604},"location":"Right Hip"},{"euler":{"heading":310.5257859124248,"pitch":-110.53092025432719,"roll":48.264889246347316},"location":"Right Knee"},{"euler":{"heading":65.00696008883334,"pitch":-134.26985732543528,"roll":58.08588427542763},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.343"} +{"sensors":[{"euler":{"heading":64.89012211053189,"pitch":125.28216820802783,"roll":21.03259384451885},"location":"Left Knee"},{"euler":{"heading":32.86216849239097,"pitch":92.07077761633184,"roll":4.780504557608109},"location":"Left Ankle"},{"euler":{"heading":63.82109328559351,"pitch":-21.797567112357495,"roll":-27.482351780570497},"location":"Right Ankle"},{"euler":{"heading":168.5821699217446,"pitch":-160.93350236771482,"roll":52.841179440877745},"location":"Right Hip"},{"euler":{"heading":311.6732073211823,"pitch":-109.45907822889447,"roll":47.313400321712585},"location":"Right Knee"},{"euler":{"heading":60.32501407995001,"pitch":-135.18037159289176,"roll":58.38979584788487},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.444"} +{"sensors":[{"euler":{"heading":65.16985989947871,"pitch":124.26645138722505,"roll":21.254334460066964},"location":"Left Knee"},{"euler":{"heading":34.300951643151876,"pitch":92.81369985469865,"roll":5.552454101847298},"location":"Left Ankle"},{"euler":{"heading":64.07648395703416,"pitch":-22.586560401121744,"roll":-26.90286660251345},"location":"Right Ankle"},{"euler":{"heading":169.36145292957013,"pitch":-160.57140213094334,"roll":51.67581149678997},"location":"Right Hip"},{"euler":{"heading":310.7433865890641,"pitch":-108.20692040600503,"roll":48.62581028954133},"location":"Right Knee"},{"euler":{"heading":56.42376267195501,"pitch":-136.5248344336026,"roll":58.794566263096385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.546"} +{"sensors":[{"euler":{"heading":65.93412390953084,"pitch":123.12105624850254,"roll":20.96015101406027},"location":"Left Knee"},{"euler":{"heading":35.93960647883669,"pitch":93.50107986922879,"roll":6.640958691662568},"location":"Left Ankle"},{"euler":{"heading":66.59383556133075,"pitch":-23.87790436100957,"roll":-25.162579942262102},"location":"Right Ankle"},{"euler":{"heading":169.04405763661313,"pitch":-160.651761917849,"roll":50.80823034711097},"location":"Right Hip"},{"euler":{"heading":308.5190479301577,"pitch":-108.02372836540452,"roll":51.4319792605872},"location":"Right Knee"},{"euler":{"heading":53.15013640475951,"pitch":-138.27235099024233,"roll":59.321359636786745},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.647"} +{"sensors":[{"euler":{"heading":67.23446151857776,"pitch":122.04645062365229,"roll":20.04538591265424},"location":"Left Knee"},{"euler":{"heading":38.00189583095302,"pitch":94.00722188230591,"roll":8.28311282249631},"location":"Left Ankle"},{"euler":{"heading":69.67195200519768,"pitch":-25.040113924908614,"roll":-23.277571948035895},"location":"Right Ankle"},{"euler":{"heading":167.7084018729518,"pitch":-161.0240857260641,"roll":50.446157312399876},"location":"Right Hip"},{"euler":{"heading":305.8796431371419,"pitch":-108.94010552886407,"roll":54.27003133452848},"location":"Right Knee"},{"euler":{"heading":50.41637276428356,"pitch":-140.5951158912181,"roll":59.88297367310807},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.748"} +{"sensors":[{"euler":{"heading":69.50476536672,"pitch":121.27305556128707,"roll":18.10959732138882},"location":"Left Knee"},{"euler":{"heading":40.739206247857716,"pitch":94.09399969407532,"roll":11.04230154024668},"location":"Left Ankle"},{"euler":{"heading":71.39850680467791,"pitch":-25.473602532417754,"roll":-22.374814753232307},"location":"Right Ankle"},{"euler":{"heading":166.60631168565664,"pitch":-161.3154271534577,"roll":50.28904158115989},"location":"Right Hip"},{"euler":{"heading":303.3666788234277,"pitch":-109.27734497597767,"roll":56.21802820107563},"location":"Right Knee"},{"euler":{"heading":47.999735487855204,"pitch":-142.76685430209628,"roll":60.33217630579726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.849"} +{"sensors":[{"euler":{"heading":72.898038830048,"pitch":120.43325000515836,"roll":15.54238758924994},"location":"Left Knee"},{"euler":{"heading":44.446535623071945,"pitch":94.6283497246678,"roll":14.750571386222012},"location":"Left Ankle"},{"euler":{"heading":72.48990612421012,"pitch":-25.60124227917598,"roll":-22.024833277909078},"location":"Right Ankle"},{"euler":{"heading":165.69568051709098,"pitch":-161.58388443811194,"roll":50.597637423043906},"location":"Right Hip"},{"euler":{"heading":301.423760941085,"pitch":-110.3058604783799,"roll":57.327475380968075},"location":"Right Knee"},{"euler":{"heading":44.49351193906969,"pitch":-142.28391887188664,"roll":60.44270867521753},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.950"} +{"sensors":[{"euler":{"heading":75.9394849470432,"pitch":120.22742500464253,"roll":13.538148830324946},"location":"Left Knee"},{"euler":{"heading":46.614382060764754,"pitch":94.04676475220101,"roll":17.32551424759981},"location":"Left Ankle"},{"euler":{"heading":73.14091551178912,"pitch":-25.553618051258383,"roll":-22.00984995011817},"location":"Right Ankle"},{"euler":{"heading":165.13861246538187,"pitch":-161.73174599430075,"roll":51.24412368073952},"location":"Right Hip"},{"euler":{"heading":300.2188848469765,"pitch":-111.34402443054191,"roll":57.713477842871264},"location":"Right Knee"},{"euler":{"heading":40.35666074516272,"pitch":-140.461776984698,"roll":59.90468780769578},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.51"} +{"sensors":[{"euler":{"heading":76.20178645233888,"pitch":120.96718250417828,"roll":13.403083947292451},"location":"Left Knee"},{"euler":{"heading":46.01544385468828,"pitch":93.19833827698092,"roll":17.111712822839827},"location":"Left Ankle"},{"euler":{"heading":73.38307396061022,"pitch":-25.317006246132546,"roll":-22.227614955106354},"location":"Right Ankle"},{"euler":{"heading":164.9747512188437,"pitch":-161.78357139487068,"roll":52.038461312665575},"location":"Right Hip"},{"euler":{"heading":299.6407463622789,"pitch":-112.07837198748773,"roll":57.59213005858414},"location":"Right Knee"},{"euler":{"heading":36.51474467064645,"pitch":-138.4905992862282,"roll":59.1517190269262},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.151"} +{"sensors":[{"euler":{"heading":73.25660780710498,"pitch":122.59546425376047,"roll":14.950275552563205},"location":"Left Knee"},{"euler":{"heading":42.645149469219454,"pitch":92.30975444928283,"roll":14.294291540555845},"location":"Left Ankle"},{"euler":{"heading":73.10726656454919,"pitch":-24.79780562151929,"roll":-22.72985345959572},"location":"Right Ankle"},{"euler":{"heading":165.03352609695932,"pitch":-161.8989642553836,"roll":52.82211518139901},"location":"Right Hip"},{"euler":{"heading":299.645421726051,"pitch":-112.47678478873895,"roll":56.926667052725726},"location":"Right Knee"},{"euler":{"heading":33.1945202035818,"pitch":-136.87903935760536,"roll":58.499047124233584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.252"} +{"sensors":[{"euler":{"heading":69.5996970263945,"pitch":124.49216782838442,"roll":16.898997997306886},"location":"Left Knee"},{"euler":{"heading":38.830634522297515,"pitch":91.56002900435456,"roll":10.689862386500259},"location":"Left Ankle"},{"euler":{"heading":71.98403990809427,"pitch":-23.961775059367362,"roll":-23.763118113636146},"location":"Right Ankle"},{"euler":{"heading":165.3239234872634,"pitch":-162.18406782984522,"roll":53.63365366325911},"location":"Right Hip"},{"euler":{"heading":300.5746295534459,"pitch":-112.49785630986506,"roll":55.52775034745316},"location":"Right Knee"},{"euler":{"heading":30.90006818322362,"pitch":-136.02863542184483,"roll":58.092892411810226},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.352"} +{"sensors":[{"euler":{"heading":67.63972732375504,"pitch":125.29295104554599,"roll":18.496598197576198},"location":"Left Knee"},{"euler":{"heading":36.70382107006777,"pitch":91.8602761039191,"roll":8.458376147850235},"location":"Left Ankle"},{"euler":{"heading":69.72313591728485,"pitch":-23.253097553430628,"roll":-25.018056302272534},"location":"Right Ankle"},{"euler":{"heading":166.04153113853704,"pitch":-162.4094110468607,"roll":54.3265382969332},"location":"Right Hip"},{"euler":{"heading":303.0296665981013,"pitch":-111.87932067887854,"roll":53.09372531270784},"location":"Right Knee"},{"euler":{"heading":28.928811364901257,"pitch":-135.37577187966033,"roll":57.808603170629205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.453"} +{"sensors":[{"euler":{"heading":66.56950459137954,"pitch":125.3886559409914,"roll":19.565688377818578},"location":"Left Knee"},{"euler":{"heading":35.40218896306099,"pitch":92.07424849352721,"roll":7.1250385330652115},"location":"Left Ankle"},{"euler":{"heading":66.06332232555636,"pitch":-21.590287798087566,"roll":-26.57250067204528},"location":"Right Ankle"},{"euler":{"heading":167.36237802468335,"pitch":-161.74971994217464,"roll":54.28138446723988},"location":"Right Hip"},{"euler":{"heading":305.86419993829116,"pitch":-111.04763861099069,"roll":50.15935278143706},"location":"Right Knee"},{"euler":{"heading":27.37343022841113,"pitch":-134.9444446916943,"roll":57.89024285356629},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.554"} +{"sensors":[{"euler":{"heading":65.78755413224158,"pitch":125.17479034689227,"roll":20.29036954003672},"location":"Left Knee"},{"euler":{"heading":34.6682200667549,"pitch":92.21682364417448,"roll":6.26253467975869},"location":"Left Ankle"},{"euler":{"heading":63.62574009300072,"pitch":-20.912509018278808,"roll":-27.559000604840755},"location":"Right Ankle"},{"euler":{"heading":169.001140222215,"pitch":-160.8747479479572,"roll":53.4907460205159},"location":"Right Hip"},{"euler":{"heading":307.92152994446207,"pitch":-110.06162474989162,"roll":48.32466750329335},"location":"Right Knee"},{"euler":{"heading":26.21733720557002,"pitch":-135.54375022252486,"roll":58.08871856820967},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.655"} +{"sensors":[{"euler":{"heading":65.44004871901743,"pitch":124.78231131220303,"roll":20.64258258603305},"location":"Left Knee"},{"euler":{"heading":34.48264806007941,"pitch":92.32639127975703,"roll":5.880031211782821},"location":"Left Ankle"},{"euler":{"heading":63.76316608370065,"pitch":-21.758758116450927,"roll":-27.215600544356683},"location":"Right Ankle"},{"euler":{"heading":170.07602619999352,"pitch":-160.30602315316148,"roll":52.32292141846431},"location":"Right Hip"},{"euler":{"heading":308.0418769500159,"pitch":-109.04921227490247,"roll":48.704700752964015},"location":"Right Knee"},{"euler":{"heading":25.27060348501302,"pitch":-136.83312520027238,"roll":58.31734671138871},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.755"} +{"sensors":[{"euler":{"heading":65.80854384711569,"pitch":124.11033018098274,"roll":20.547074327429748},"location":"Left Knee"},{"euler":{"heading":34.81563325407147,"pitch":92.56250215178133,"roll":5.985778090604539},"location":"Left Ankle"},{"euler":{"heading":66.23059947533059,"pitch":-23.020382304805835,"roll":-25.406540489921017},"location":"Right Ankle"},{"euler":{"heading":169.86217357999416,"pitch":-160.31917083784532,"roll":51.353129276617885},"location":"Right Hip"},{"euler":{"heading":306.0251892550143,"pitch":-108.58804104741222,"roll":51.11548067766761},"location":"Right Knee"},{"euler":{"heading":24.63729313651172,"pitch":-138.52481268024513,"roll":58.64186204024984},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.856"} +{"sensors":[{"euler":{"heading":66.75893946240413,"pitch":123.23054716288448,"roll":19.942366894686774},"location":"Left Knee"},{"euler":{"heading":35.84656992866432,"pitch":92.8875019366032,"roll":6.787200281544085},"location":"Left Ankle"},{"euler":{"heading":69.60753952779754,"pitch":-24.21209407432525,"roll":-23.247136440928916},"location":"Right Ankle"},{"euler":{"heading":168.61345622199477,"pitch":-160.7122537540608,"roll":50.892816348956096},"location":"Right Hip"},{"euler":{"heading":303.0226703295129,"pitch":-110.197986942671,"roll":54.23518260990085},"location":"Right Knee"},{"euler":{"heading":24.411063822860548,"pitch":-140.50983141222062,"roll":59.11517583622486},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.956"} +{"sensors":[{"euler":{"heading":68.80804551616372,"pitch":122.40124244659604,"roll":18.335630205218095},"location":"Left Knee"},{"euler":{"heading":37.62441293579789,"pitch":93.04250174294287,"roll":8.670980253389676},"location":"Left Ankle"},{"euler":{"heading":71.74678557501778,"pitch":-24.765884666892727,"roll":-22.191172796836025},"location":"Right Ankle"},{"euler":{"heading":167.41461059979528,"pitch":-161.15352837865473,"roll":50.60978471406049},"location":"Right Hip"},{"euler":{"heading":300.2704032965616,"pitch":-111.0469382484039,"roll":56.48041434891077},"location":"Right Knee"},{"euler":{"heading":24.613707440574494,"pitch":-142.69634827099856,"roll":59.63490825260237},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.58"} +{"sensors":[{"euler":{"heading":72.28974096454735,"pitch":121.77986820193645,"roll":15.808317184696287},"location":"Left Knee"},{"euler":{"heading":41.068221642218106,"pitch":93.72575156864859,"roll":12.241382228050707},"location":"Left Ankle"},{"euler":{"heading":73.47210701751601,"pitch":-25.251796200203458,"roll":-21.415805517152425},"location":"Right Ankle"},{"euler":{"heading":166.41064953981578,"pitch":-161.48817554078926,"roll":50.711306242654445},"location":"Right Hip"},{"euler":{"heading":298.03711296690545,"pitch":-112.21724442356353,"roll":57.813622914019696},"location":"Right Knee"},{"euler":{"heading":23.289836696517046,"pitch":-142.66421344389872,"roll":59.702667427342135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.159"} +{"sensors":[{"euler":{"heading":75.81076686809261,"pitch":121.23938138174282,"roll":13.52748546622666},"location":"Left Knee"},{"euler":{"heading":43.73014947799629,"pitch":93.47192641178374,"roll":15.348494005245637},"location":"Left Ankle"},{"euler":{"heading":74.81864631576441,"pitch":-25.81411658018311,"roll":-21.13047496543718},"location":"Right Ankle"},{"euler":{"heading":165.68833458583418,"pitch":-161.84560798671032,"roll":51.102675618389},"location":"Right Hip"},{"euler":{"heading":296.7771516702149,"pitch":-113.03301998120719,"roll":58.40726062261773},"location":"Right Knee"},{"euler":{"heading":21.029603026865342,"pitch":-140.49779209950884,"roll":59.263650684607924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.259"} +{"sensors":[{"euler":{"heading":77.03594018128337,"pitch":121.64669324356854,"roll":12.899736919603994},"location":"Left Knee"},{"euler":{"heading":43.86338453019667,"pitch":92.58098377060537,"roll":15.907394604721073},"location":"Left Ankle"},{"euler":{"heading":75.71178168418797,"pitch":-26.0889549221648,"roll":-21.18617746889346},"location":"Right Ankle"},{"euler":{"heading":165.41325112725076,"pitch":-162.0172971880393,"roll":51.6424080565501},"location":"Right Hip"},{"euler":{"heading":296.00568650319343,"pitch":-113.52971798308647,"roll":58.52903456035595},"location":"Right Knee"},{"euler":{"heading":54.67039272417881,"pitch":-138.12301288955797,"roll":58.41853561614714},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.363"} +{"sensors":[{"euler":{"heading":74.31359616315504,"pitch":123.10077391921169,"roll":14.228513227643594},"location":"Left Knee"},{"euler":{"heading":41.077046077177,"pitch":91.59163539354483,"roll":13.466655144248966},"location":"Left Ankle"},{"euler":{"heading":76.00310351576917,"pitch":-25.848809429948318,"roll":-21.636309722004118},"location":"Right Ankle"},{"euler":{"heading":165.46567601452568,"pitch":-161.99681746923537,"roll":52.23441725089509},"location":"Right Hip"},{"euler":{"heading":295.5176178528741,"pitch":-113.92049618477783,"roll":58.188631104320365},"location":"Right Knee"},{"euler":{"heading":85.06585345176094,"pitch":-136.0607116006022,"roll":57.67668205453243},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.464"} +{"sensors":[{"euler":{"heading":70.53848654683954,"pitch":125.02194652729052,"roll":16.199411904879234},"location":"Left Knee"},{"euler":{"heading":37.0693414694593,"pitch":90.63872185419035,"roll":9.882489629824068},"location":"Left Ankle"},{"euler":{"heading":75.57779316419226,"pitch":-25.245178486953485,"roll":-22.516428749803705},"location":"Right Ankle"},{"euler":{"heading":165.71910841307314,"pitch":-161.98463572231182,"roll":52.92972552580559},"location":"Right Hip"},{"euler":{"heading":295.83460606758666,"pitch":-113.93469656630005,"roll":57.194767993888334},"location":"Right Knee"},{"euler":{"heading":77.22801810658486,"pitch":-135.00464044054198,"roll":57.215263849079186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.564"} +{"sensors":[{"euler":{"heading":67.84713789215559,"pitch":126.08225187456148,"roll":18.03572071439131},"location":"Left Knee"},{"euler":{"heading":34.856157322513376,"pitch":90.68109966877132,"roll":7.525490666841661},"location":"Left Ankle"},{"euler":{"heading":74.02001384777303,"pitch":-24.33316063825814,"roll":-23.758535874823338},"location":"Right Ankle"},{"euler":{"heading":166.11594757176584,"pitch":-162.22367215008063,"roll":53.686752973225026},"location":"Right Hip"},{"euler":{"heading":297.401145460828,"pitch":-113.47872690967004,"roll":55.350291194499505},"location":"Right Knee"},{"euler":{"heading":70.29271629592637,"pitch":-134.42292639648778,"roll":56.88748746417127},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.666"} +{"sensors":[{"euler":{"heading":66.28742410294002,"pitch":126.43652668710534,"roll":19.21964864295218},"location":"Left Knee"},{"euler":{"heading":33.34554159026204,"pitch":90.6254897018942,"roll":6.172941600157495},"location":"Left Ankle"},{"euler":{"heading":70.59926246299572,"pitch":-22.962344574432326,"roll":-25.357682287341007},"location":"Right Ankle"},{"euler":{"heading":167.00435281458925,"pitch":-161.89505493507258,"roll":53.88682767590252},"location":"Right Hip"},{"euler":{"heading":300.1172809147452,"pitch":-112.51835421870304,"roll":52.64651207504955},"location":"Right Knee"},{"euler":{"heading":64.02594466633373,"pitch":-133.899383756839,"roll":56.92373871775415},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.767"} +{"sensors":[{"euler":{"heading":65.33993169264602,"pitch":126.17412401839482,"roll":20.147683778656965},"location":"Left Knee"},{"euler":{"heading":32.50473743123583,"pitch":90.70669073170478,"roll":5.249397440141745},"location":"Left Ankle"},{"euler":{"heading":67.69558621669616,"pitch":-22.09736011698909,"roll":-26.490664058606907},"location":"Right Ankle"},{"euler":{"heading":168.20391753313035,"pitch":-161.17429944156532,"roll":53.37314490831227},"location":"Right Hip"},{"euler":{"heading":302.27430282327066,"pitch":-111.34776879683274,"roll":50.438110867544594},"location":"Right Knee"},{"euler":{"heading":58.91710019970036,"pitch":-134.49694538115511,"roll":57.10636484597873},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.867"} +{"sensors":[{"euler":{"heading":64.94343852338142,"pitch":125.46921161655536,"roll":20.80166540079127},"location":"Left Knee"},{"euler":{"heading":32.51051368811225,"pitch":91.09852165853431,"roll":4.961957696127571},"location":"Left Ankle"},{"euler":{"heading":66.99477759502653,"pitch":-22.581374105290184,"roll":-26.566597652746218},"location":"Right Ankle"},{"euler":{"heading":169.3897757798173,"pitch":-160.5006194974088,"roll":52.32958041748105},"location":"Right Hip"},{"euler":{"heading":302.71562254094357,"pitch":-110.08174191714947,"roll":50.206799780790135},"location":"Right Knee"},{"euler":{"heading":54.80039017973032,"pitch":-135.7472508430396,"roll":57.40197836138086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.968"} +{"sensors":[{"euler":{"heading":65.26159467104327,"pitch":124.42854045489983,"roll":21.021498860712143},"location":"Left Knee"},{"euler":{"heading":32.99696231930102,"pitch":91.65116949268088,"roll":5.153261926514814},"location":"Left Ankle"},{"euler":{"heading":68.80154983552389,"pitch":-23.841986694761168,"roll":-25.309937887471595},"location":"Right Ankle"},{"euler":{"heading":169.6882982018356,"pitch":-160.35680754766793,"roll":51.22787237573294},"location":"Right Hip"},{"euler":{"heading":301.3940602868492,"pitch":-108.89856772543453,"roll":52.03611980271113},"location":"Right Knee"},{"euler":{"heading":51.41410116175729,"pitch":-137.36002575873565,"roll":57.82428052524278},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.68"} +{"sensors":[{"euler":{"heading":66.24168520393894,"pitch":123.27318640940985,"roll":20.62559897464093},"location":"Left Knee"},{"euler":{"heading":33.96601608737092,"pitch":92.2360525434128,"roll":5.894185733863333},"location":"Left Ankle"},{"euler":{"heading":71.6526448519715,"pitch":-25.17653802528505,"roll":-23.285194098724435},"location":"Right Ankle"},{"euler":{"heading":168.93821838165206,"pitch":-160.63987679290113,"roll":50.56133513815965},"location":"Right Hip"},{"euler":{"heading":299.0984042581643,"pitch":-110.09621095289108,"roll":54.88250782244002},"location":"Right Knee"},{"euler":{"heading":48.57894104558156,"pitch":-139.35527318286208,"roll":58.3481024727185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.170"} +{"sensors":[{"euler":{"heading":67.87376668354504,"pitch":122.22711776846886,"roll":19.463039077176838},"location":"Left Knee"},{"euler":{"heading":35.67566447863383,"pitch":92.66869728907152,"roll":7.6360171604769995},"location":"Left Ankle"},{"euler":{"heading":74.11863036677437,"pitch":-26.058884222756546,"roll":-21.700424688851992},"location":"Right Ankle"},{"euler":{"heading":167.85689654348687,"pitch":-161.05713911361102,"roll":50.29895162434369},"location":"Right Hip"},{"euler":{"heading":296.7385638323479,"pitch":-111.16783985760198,"roll":57.15050704019602},"location":"Right Knee"},{"euler":{"heading":46.2085469410234,"pitch":-141.52599586457586,"roll":58.888292225446655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.270"} +{"sensors":[{"euler":{"heading":71.03639001519053,"pitch":121.74190599162198,"roll":16.997985169459152},"location":"Left Knee"},{"euler":{"heading":38.864348030770444,"pitch":92.97057756016436,"roll":11.2536654444293},"location":"Left Ankle"},{"euler":{"heading":75.59426733009694,"pitch":-26.646745800480893,"roll":-21.005382219966794},"location":"Right Ankle"},{"euler":{"heading":167.58370688913817,"pitch":-161.15767520224992,"roll":50.19405646190933},"location":"Right Hip"},{"euler":{"heading":295.0084574491131,"pitch":-111.97605587184178,"roll":58.44795633617642},"location":"Right Knee"},{"euler":{"heading":42.87519224692106,"pitch":-141.86714627811827,"roll":59.00571300290199},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.371"} +{"sensors":[{"euler":{"heading":74.58900101367149,"pitch":120.93021539245977,"roll":14.566936652513238},"location":"Left Knee"},{"euler":{"heading":41.8279132276934,"pitch":92.96726980414793,"roll":14.97829889998637},"location":"Left Ankle"},{"euler":{"heading":76.52859059708726,"pitch":-26.900821220432803,"roll":-20.761093997970114},"location":"Right Ankle"},{"euler":{"heading":167.02533620022436,"pitch":-161.28565768202495,"roll":50.50590081571839},"location":"Right Hip"},{"euler":{"heading":293.6013617042018,"pitch":-112.84720028465762,"roll":59.109410702558776},"location":"Right Knee"},{"euler":{"heading":39.03767302222896,"pitch":-140.14293165030645,"roll":58.786391702611795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.471"} +{"sensors":[{"euler":{"heading":76.44260091230434,"pitch":121.16844385321379,"roll":13.478992987261915},"location":"Left Knee"},{"euler":{"heading":42.87012190492406,"pitch":92.27679282373315,"roll":16.274219009987736},"location":"Left Ankle"},{"euler":{"heading":77.11323153737854,"pitch":-27.023239098389524,"roll":-20.7912345981731},"location":"Right Ankle"},{"euler":{"heading":166.91030258020194,"pitch":-161.31959191382245,"roll":51.03656073414655},"location":"Right Hip"},{"euler":{"heading":292.79122553378164,"pitch":-113.36873025619187,"roll":59.298469632302904},"location":"Right Knee"},{"euler":{"heading":71.12765572000606,"pitch":-138.18488848527582,"roll":58.070252532350615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.571"} +{"sensors":[{"euler":{"heading":74.0858408210739,"pitch":122.55784946789242,"roll":14.456093688535724},"location":"Left Knee"},{"euler":{"heading":41.02685971443166,"pitch":91.13661354135984,"roll":14.696797108988964},"location":"Left Ankle"},{"euler":{"heading":77.35815838364068,"pitch":-26.870915188550573,"roll":-21.16836113835579},"location":"Right Ankle"},{"euler":{"heading":166.70052232218174,"pitch":-161.51888272244022,"roll":51.726654660731896},"location":"Right Hip"},{"euler":{"heading":292.3121029804035,"pitch":-113.74435723057269,"roll":59.062372669072616},"location":"Right Knee"},{"euler":{"heading":99.84614014800547,"pitch":-136.21014963674824,"roll":57.37572727911555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.672"} +{"sensors":[{"euler":{"heading":70.13350673896652,"pitch":124.5583145211032,"roll":16.335484319682152},"location":"Left Knee"},{"euler":{"heading":37.26167374298849,"pitch":90.04170218722385,"roll":11.214617398090066},"location":"Left Ankle"},{"euler":{"heading":76.99734254527662,"pitch":-26.340073669695517,"roll":-21.907775024520213},"location":"Right Ankle"},{"euler":{"heading":166.67422008996357,"pitch":-161.7169944501962,"roll":52.528989194658706},"location":"Right Hip"},{"euler":{"heading":292.3621426823631,"pitch":-113.88242150751543,"roll":58.27488540216535},"location":"Right Knee"},{"euler":{"heading":90.25527613320493,"pitch":-134.94538467307342,"roll":56.913154551203995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.773"} +{"sensors":[{"euler":{"heading":67.42640606506987,"pitch":125.77123306899288,"roll":18.101935887713935},"location":"Left Knee"},{"euler":{"heading":34.629256368689646,"pitch":89.76253196850146,"roll":8.79940565828106},"location":"Left Ankle"},{"euler":{"heading":75.62260829074897,"pitch":-25.518566302725965,"roll":-23.05449752206819},"location":"Right Ankle"},{"euler":{"heading":167.05054808096722,"pitch":-162.0077950051766,"roll":53.31359027519284},"location":"Right Hip"},{"euler":{"heading":293.5884284141268,"pitch":-113.5191793567639,"roll":56.659896861948816},"location":"Right Knee"},{"euler":{"heading":82.22974851988444,"pitch":-134.1883462057661,"roll":56.6905890960836},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.873"} +{"sensors":[{"euler":{"heading":65.92751545856288,"pitch":126.1753597620936,"roll":19.360492298942543},"location":"Left Knee"},{"euler":{"heading":33.13508073182068,"pitch":89.83002877165133,"roll":7.313215092452954},"location":"Left Ankle"},{"euler":{"heading":72.36659746167408,"pitch":-23.97295967245337,"roll":-24.61154776986137},"location":"Right Ankle"},{"euler":{"heading":168.1767432728705,"pitch":-161.63826550465896,"roll":53.57598124767355},"location":"Right Hip"},{"euler":{"heading":296.1420855727141,"pitch":-112.46101142108752,"roll":54.01890717575393},"location":"Right Knee"},{"euler":{"heading":74.981773667896,"pitch":-133.8007615851895,"roll":56.67778018647524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.974"} +{"sensors":[{"euler":{"heading":64.99726391270659,"pitch":125.97032378588426,"roll":20.355693069048286},"location":"Left Knee"},{"euler":{"heading":32.540322658638615,"pitch":90.1720258944862,"roll":6.469393583207659},"location":"Left Ankle"},{"euler":{"heading":69.02368771550667,"pitch":-22.981913705208033,"roll":-25.669142992875233},"location":"Right Ankle"},{"euler":{"heading":169.30906894558345,"pitch":-161.06193895419307,"roll":53.0683831229062},"location":"Right Hip"},{"euler":{"heading":298.2966270154427,"pitch":-111.37116027897876,"roll":51.81701645817854},"location":"Right Knee"},{"euler":{"heading":68.8148463011064,"pitch":-134.14568542667055,"roll":56.86625216782772},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.75"} +{"sensors":[{"euler":{"heading":64.58503752143594,"pitch":125.42329140729584,"roll":20.951373762143458},"location":"Left Knee"},{"euler":{"heading":33.05504039277476,"pitch":90.67357330503758,"roll":6.459954224886894},"location":"Left Ankle"},{"euler":{"heading":67.740068943956,"pitch":-23.50247233468723,"roll":-26.03347869358771},"location":"Right Ankle"},{"euler":{"heading":170.4156620510251,"pitch":-160.49949505877376,"roll":52.10529481061558},"location":"Right Hip"},{"euler":{"heading":298.79196431389846,"pitch":-110.18404425108089,"roll":51.53531481236069},"location":"Right Knee"},{"euler":{"heading":63.58336167099576,"pitch":-135.1748668840035,"roll":57.20462695104494},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.176"} +{"sensors":[{"euler":{"heading":64.83903376929234,"pitch":124.59346226656626,"roll":21.112486385929113},"location":"Left Knee"},{"euler":{"heading":33.73703635349728,"pitch":91.13746597453382,"roll":6.788958802398204},"location":"Left Ankle"},{"euler":{"heading":69.5035620495604,"pitch":-24.77097510121851,"roll":-24.78638082422894},"location":"Right Ankle"},{"euler":{"heading":170.4740958459226,"pitch":-160.4432955528964,"roll":51.176015329554026},"location":"Right Hip"},{"euler":{"heading":297.3252678825086,"pitch":-109.19063982597281,"roll":53.47553333112462},"location":"Right Knee"},{"euler":{"heading":59.20627550389619,"pitch":-136.75738019560316,"roll":57.64666425594045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.277"} +{"sensors":[{"euler":{"heading":65.75513039236311,"pitch":123.69661603990964,"roll":20.632487747336203},"location":"Left Knee"},{"euler":{"heading":34.75708271814755,"pitch":91.52371937708044,"roll":7.666312922158384},"location":"Left Ankle"},{"euler":{"heading":72.09695584460437,"pitch":-26.17512759109666,"roll":-22.888992741806046},"location":"Right Ankle"},{"euler":{"heading":169.73293626133034,"pitch":-160.66146599760674,"roll":50.63966379659862},"location":"Right Hip"},{"euler":{"heading":294.9927410942577,"pitch":-110.27782584337552,"roll":56.38422999801217},"location":"Right Knee"},{"euler":{"heading":55.37314795350657,"pitch":-138.57539217604284,"roll":58.19449783034641},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.378"} +{"sensors":[{"euler":{"heading":67.4171173531268,"pitch":122.75195443591868,"roll":19.444238972602584},"location":"Left Knee"},{"euler":{"heading":36.6001244463328,"pitch":91.9838474393724,"roll":9.443431629942545},"location":"Left Ankle"},{"euler":{"heading":74.13101026014394,"pitch":-26.970114831986997,"roll":-21.60009346762544},"location":"Right Ankle"},{"euler":{"heading":168.5846426351973,"pitch":-160.97656939784608,"roll":50.29444741693876},"location":"Right Hip"},{"euler":{"heading":292.480966984832,"pitch":-111.49379325903799,"roll":58.86455699821095},"location":"Right Knee"},{"euler":{"heading":52.25458315815592,"pitch":-140.81785295843855,"roll":58.77504804731176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.479"} +{"sensors":[{"euler":{"heading":70.45665561781412,"pitch":122.09550899232681,"roll":17.124815075342326},"location":"Left Knee"},{"euler":{"heading":39.29636200169952,"pitch":92.44171269543516,"roll":12.48033846694829},"location":"Left Ankle"},{"euler":{"heading":75.13665923412955,"pitch":-27.423103348788295,"roll":-21.1025841208629},"location":"Right Ankle"},{"euler":{"heading":168.1511783716776,"pitch":-161.0539124580615,"roll":50.11500267524489},"location":"Right Hip"},{"euler":{"heading":290.41412028634875,"pitch":-111.9756639331342,"roll":60.403101298389856},"location":"Right Knee"},{"euler":{"heading":48.71037484234032,"pitch":-141.7798176625947,"roll":59.05379324258059},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.579"} +{"sensors":[{"euler":{"heading":74.13599005603271,"pitch":121.12345809309413,"roll":14.618583567808095},"location":"Left Knee"},{"euler":{"heading":41.96672580152957,"pitch":92.88504142589164,"roll":15.91355462025346},"location":"Left Ankle"},{"euler":{"heading":75.61049331071659,"pitch":-27.662043013909464,"roll":-21.11732570877661},"location":"Right Ankle"},{"euler":{"heading":167.51731053450985,"pitch":-161.21727121225535,"roll":50.434752407720396},"location":"Right Hip"},{"euler":{"heading":288.9602082577139,"pitch":-113.04059753982078,"roll":61.10029116855087},"location":"Right Knee"},{"euler":{"heading":44.54558735810629,"pitch":-140.44558589633522,"roll":58.967163918322534},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.680"} +{"sensors":[{"euler":{"heading":76.49739105042944,"pitch":121.06111228378471,"roll":13.300475211027287},"location":"Left Knee"},{"euler":{"heading":43.25755322137661,"pitch":92.57153728330248,"roll":17.190949158228115},"location":"Left Ankle"},{"euler":{"heading":75.94319397964493,"pitch":-27.702088712518517,"roll":-21.449343137898953},"location":"Right Ankle"},{"euler":{"heading":167.52807948105885,"pitch":-161.08929409102984,"roll":51.016277166948356},"location":"Right Hip"},{"euler":{"heading":288.1204374319425,"pitch":-113.68653778583871,"roll":61.27776205169578},"location":"Right Knee"},{"euler":{"heading":40.14727862229566,"pitch":-138.7010273067017,"roll":58.27044752649029},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.781"} +{"sensors":[{"euler":{"heading":74.62265194538651,"pitch":122.28625105540624,"roll":14.09542768992456},"location":"Left Knee"},{"euler":{"heading":41.53179789923895,"pitch":91.56438355497222,"roll":15.678104242405304},"location":"Left Ankle"},{"euler":{"heading":75.85512458168043,"pitch":-27.42562984126667,"roll":-21.89190882410906},"location":"Right Ankle"},{"euler":{"heading":167.60027153295297,"pitch":-161.06161468192687,"roll":51.75214945025352},"location":"Right Hip"},{"euler":{"heading":287.5646436887483,"pitch":-114.09913400725485,"roll":60.99998584652621},"location":"Right Knee"},{"euler":{"heading":71.9950507600661,"pitch":-136.83092457603152,"roll":57.51840277384126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.883"} +{"sensors":[{"euler":{"heading":70.50413675084786,"pitch":124.22012594986563,"roll":16.104634920932103},"location":"Left Knee"},{"euler":{"heading":37.691118109315056,"pitch":90.664195199475,"roll":12.054043818164773},"location":"Left Ankle"},{"euler":{"heading":75.23836212351239,"pitch":-26.73931685714,"roll":-22.865217941698155},"location":"Right Ankle"},{"euler":{"heading":167.6777443796577,"pitch":-161.14920321373418,"roll":52.55193450522817},"location":"Right Hip"},{"euler":{"heading":287.4144293198734,"pitch":-114.35172060652937,"roll":60.19373726187359},"location":"Right Knee"},{"euler":{"heading":65.0330456840595,"pitch":-135.39783211842837,"roll":56.954062496457134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.983"} +{"sensors":[{"euler":{"heading":67.62872307576308,"pitch":125.67311335487908,"roll":17.881671428838892},"location":"Left Knee"},{"euler":{"heading":34.59075629838355,"pitch":90.3665256795275,"roll":9.186139436348297},"location":"Left Ankle"},{"euler":{"heading":73.65202591116115,"pitch":-25.765385171426,"roll":-24.16619614752834},"location":"Right Ankle"},{"euler":{"heading":168.09746994169194,"pitch":-161.38428289236077,"roll":53.35299105470535},"location":"Right Hip"},{"euler":{"heading":288.36673638788614,"pitch":-114.09779854587644,"roll":58.63061353568623},"location":"Right Knee"},{"euler":{"heading":59.47974111565355,"pitch":-134.53929890658554,"roll":56.64615624681142},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.84"} +{"sensors":[{"euler":{"heading":66.15960076818676,"pitch":126.09330201939117,"roll":19.249754285955003},"location":"Left Knee"},{"euler":{"heading":32.8691806685452,"pitch":90.64862311157475,"roll":7.398775492713467},"location":"Left Ankle"},{"euler":{"heading":70.52432332004503,"pitch":-24.632596654283404,"roll":-25.599576532775508},"location":"Right Ankle"},{"euler":{"heading":169.04397294752275,"pitch":-161.20835460312472,"roll":53.84269194923482},"location":"Right Hip"},{"euler":{"heading":290.9550627490975,"pitch":-113.15051869128881,"roll":56.023802182117606},"location":"Right Knee"},{"euler":{"heading":54.4692670040882,"pitch":-133.910369015927,"roll":56.581540622130284},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.185"} +{"sensors":[{"euler":{"heading":65.28739069136809,"pitch":125.92772181745207,"roll":20.281028857359505},"location":"Left Knee"},{"euler":{"heading":31.91351260169068,"pitch":90.95876080041728,"roll":6.308897943442121},"location":"Left Ankle"},{"euler":{"heading":66.75939098804052,"pitch":-23.325586988855065,"roll":-27.008368879497958},"location":"Right Ankle"},{"euler":{"heading":170.0645756527705,"pitch":-160.66251914281224,"roll":53.645922754311336},"location":"Right Hip"},{"euler":{"heading":293.5345564741878,"pitch":-112.12296682215992,"roll":53.25892196390585},"location":"Right Knee"},{"euler":{"heading":50.37234030367939,"pitch":-134.1318321143343,"roll":56.78588655991726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.285"} +{"sensors":[{"euler":{"heading":64.84615162223129,"pitch":125.51619963570687,"roll":20.877925971623554},"location":"Left Knee"},{"euler":{"heading":32.14716134152161,"pitch":91.35663472037557,"roll":6.053008149097909},"location":"Left Ankle"},{"euler":{"heading":64.98345188923648,"pitch":-23.255528289969558,"roll":-27.670031991548164},"location":"Right Ankle"},{"euler":{"heading":171.29561808749347,"pitch":-160.02126722853103,"roll":52.8875804788802},"location":"Right Hip"},{"euler":{"heading":294.712350826769,"pitch":-110.90442013994394,"roll":52.033029767515266},"location":"Right Knee"},{"euler":{"heading":47.016356273311445,"pitch":-135.13114890290086,"roll":57.11979790392554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.386"} +{"sensors":[{"euler":{"heading":64.88028646000816,"pitch":124.86457967213619,"roll":21.0588833744612},"location":"Left Knee"},{"euler":{"heading":32.494945207369454,"pitch":91.62097124833802,"roll":6.166457334188118},"location":"Left Ankle"},{"euler":{"heading":65.82260670031283,"pitch":-24.186225460972604,"roll":-26.87802879239335},"location":"Right Ankle"},{"euler":{"heading":171.9598062787441,"pitch":-159.61914050567793,"roll":51.93007243099218},"location":"Right Hip"},{"euler":{"heading":293.8973657440921,"pitch":-109.53272812594955,"roll":54.617226790763745},"location":"Right Knee"},{"euler":{"heading":44.233470645980304,"pitch":-136.7117840126108,"roll":57.50156811353298},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.486"} +{"sensors":[{"euler":{"heading":65.54225781400736,"pitch":123.97187170492258,"roll":20.75299503701508},"location":"Left Knee"},{"euler":{"heading":33.28920068663251,"pitch":92.00887412350421,"roll":6.756061600769306},"location":"Left Ankle"},{"euler":{"heading":68.54034603028155,"pitch":-25.348852914875344,"roll":-25.096475913154016},"location":"Right Ankle"},{"euler":{"heading":171.4325756508697,"pitch":-159.80722645511014,"roll":51.143315187892966},"location":"Right Hip"},{"euler":{"heading":291.5513791696829,"pitch":-110.0294553133546,"roll":57.043004111687374},"location":"Right Knee"},{"euler":{"heading":41.90387358138228,"pitch":-138.59685561134972,"roll":57.95766130217969},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.587"} +{"sensors":[{"euler":{"heading":66.96928203260663,"pitch":123.01218453443032,"roll":19.79644553331357},"location":"Left Knee"},{"euler":{"heading":34.84778061796926,"pitch":92.46423671115379,"roll":8.124205440692375},"location":"Left Ankle"},{"euler":{"heading":71.1863114272534,"pitch":-26.09521762338781,"roll":-23.474328321838616},"location":"Right Ankle"},{"euler":{"heading":170.0205680857827,"pitch":-160.28275380959914,"roll":50.69773366910368},"location":"Right Hip"},{"euler":{"heading":288.6587412527146,"pitch":-111.65775978201916,"roll":59.619953700518636},"location":"Right Knee"},{"euler":{"heading":39.97598622324406,"pitch":-140.74967005021475,"roll":58.48689517196172},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.687"} +{"sensors":[{"euler":{"heading":69.52235382934597,"pitch":122.19846608098729,"roll":17.79805097998221},"location":"Left Knee"},{"euler":{"heading":37.219252556172336,"pitch":92.7365630400384,"roll":10.755534896623137},"location":"Left Ankle"},{"euler":{"heading":72.46143028452806,"pitch":-26.39194586104903,"roll":-22.833145489654754},"location":"Right Ankle"},{"euler":{"heading":169.12476127720444,"pitch":-160.52947842863924,"roll":50.40921030219331},"location":"Right Hip"},{"euler":{"heading":286.2803671274432,"pitch":-112.39198380381725,"roll":61.20170833046678},"location":"Right Knee"},{"euler":{"heading":38.234637600919655,"pitch":-142.53095304519326,"roll":58.906955654765554},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.788"} +{"sensors":[{"euler":{"heading":73.18886844641138,"pitch":121.30986947288856,"roll":15.23074588198399},"location":"Left Knee"},{"euler":{"heading":40.653577300555106,"pitch":93.24415673603457,"roll":14.442481406960823},"location":"Left Ankle"},{"euler":{"heading":73.26528725607525,"pitch":-26.440251274944128,"roll":-22.58733094068928},"location":"Right Ankle"},{"euler":{"heading":168.149785149484,"pitch":-160.81403058577533,"roll":50.63078927197398},"location":"Right Hip"},{"euler":{"heading":284.3398304146989,"pitch":-113.54653542343553,"roll":61.9690374974201},"location":"Right Knee"},{"euler":{"heading":35.048673840827696,"pitch":-141.68410774067394,"roll":58.928760089289},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.889"} +{"sensors":[{"euler":{"heading":75.86998160177023,"pitch":121.3038825255997,"roll":13.538921293785592},"location":"Left Knee"},{"euler":{"heading":42.2257195704996,"pitch":92.60099106243112,"roll":16.24823326626474},"location":"Left Ankle"},{"euler":{"heading":73.78250853046774,"pitch":-26.452476147449715,"roll":-22.672347846620355},"location":"Right Ankle"},{"euler":{"heading":167.7723066345356,"pitch":-160.8138775271978,"roll":51.161460344776586},"location":"Right Hip"},{"euler":{"heading":283.280847373229,"pitch":-114.29813188109198,"roll":62.0846337476781},"location":"Right Knee"},{"euler":{"heading":67.36880645674493,"pitch":-139.92819696660655,"roll":58.3171340803601},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.990"} +{"sensors":[{"euler":{"heading":74.65798344159322,"pitch":122.41724427303974,"roll":13.966279164407032},"location":"Left Knee"},{"euler":{"heading":40.90314761344964,"pitch":91.56589195618801,"roll":15.142159939638267},"location":"Left Ankle"},{"euler":{"heading":73.99175767742098,"pitch":-26.400978532704745,"roll":-22.94886306195832},"location":"Right Ankle"},{"euler":{"heading":167.79507597108204,"pitch":-160.76373977447804,"roll":51.81406431029893},"location":"Right Hip"},{"euler":{"heading":282.8777626359061,"pitch":-114.64331869298279,"roll":61.744920372910286},"location":"Right Knee"},{"euler":{"heading":96.30692581107044,"pitch":-137.9228772699459,"roll":57.49792067232409},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.90"} +{"sensors":[{"euler":{"heading":70.7171850974339,"pitch":124.21301984573577,"roll":15.919651247966328},"location":"Left Knee"},{"euler":{"heading":37.28783285210468,"pitch":90.72180276056922,"roll":11.81544394567444},"location":"Left Ankle"},{"euler":{"heading":73.71758190967888,"pitch":-26.05463067943427,"roll":-23.59772675576249},"location":"Right Ankle"},{"euler":{"heading":168.06556837397386,"pitch":-160.72486579703025,"roll":52.48890787926904},"location":"Right Hip"},{"euler":{"heading":282.95873637231546,"pitch":-114.82898682368452,"roll":60.91417833561926},"location":"Right Knee"},{"euler":{"heading":121.6262332299634,"pitch":-137.1243395429513,"roll":56.266878605091684},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.191"} +{"sensors":[{"euler":{"heading":66.9642165876905,"pitch":126.0417178611622,"roll":17.933936123169698},"location":"Left Knee"},{"euler":{"heading":33.82154956689421,"pitch":90.24337248451229,"roll":8.502649551106996},"location":"Left Ankle"},{"euler":{"heading":72.758323718711,"pitch":-25.34916761149084,"roll":-24.694204080186243},"location":"Right Ankle"},{"euler":{"heading":168.4715115365765,"pitch":-160.95237921732723,"roll":53.227517091342136},"location":"Right Hip"},{"euler":{"heading":283.9316127350839,"pitch":-114.63983814131608,"roll":59.43526050205733},"location":"Right Knee"},{"euler":{"heading":110.10110990696707,"pitch":-136.18065558865618,"roll":55.84644074458252},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.291"} +{"sensors":[{"euler":{"heading":64.93029492892146,"pitch":126.80004607504598,"roll":19.45929251085273},"location":"Left Knee"},{"euler":{"heading":31.964394610204792,"pitch":90.31278523606106,"roll":6.583634595996298},"location":"Left Ankle"},{"euler":{"heading":70.5262413468399,"pitch":-24.558000850341756,"roll":-26.037283672167618},"location":"Right Ankle"},{"euler":{"heading":169.16811038291883,"pitch":-161.21964129559453,"roll":53.892265382207924},"location":"Right Hip"},{"euler":{"heading":286.6072014615755,"pitch":-113.70710432718447,"roll":56.885484451851596},"location":"Right Knee"},{"euler":{"heading":100.02224891627037,"pitch":-135.42509002979057,"roll":55.69304667012427},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.391"} +{"sensors":[{"euler":{"heading":63.98101543602932,"pitch":126.75129146754139,"roll":20.54461325976746},"location":"Left Knee"},{"euler":{"heading":31.036705149184314,"pitch":90.60025671245495,"roll":5.519021136396668},"location":"Left Ankle"},{"euler":{"heading":66.61736721215591,"pitch":-22.34595076530758,"roll":-27.81480530495086},"location":"Right Ankle"},{"euler":{"heading":170.20129934462693,"pitch":-160.78517716603508,"roll":53.821788843987136},"location":"Right Hip"},{"euler":{"heading":289.308981315418,"pitch":-112.58014389446603,"roll":53.94693600666644},"location":"Right Knee"},{"euler":{"heading":91.28877402464333,"pitch":-135.2200810268115,"roll":55.92374200311184},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.492"} +{"sensors":[{"euler":{"heading":63.439163892426386,"pitch":126.38241232078727,"roll":21.233901933790712},"location":"Left Knee"},{"euler":{"heading":30.870534634265884,"pitch":90.96523104120945,"roll":5.010869022757001},"location":"Left Ankle"},{"euler":{"heading":63.86188049094032,"pitch":-21.430105688776823,"roll":-28.814574774455775},"location":"Right Ankle"},{"euler":{"heading":171.41866941016426,"pitch":-160.1379094494316,"roll":53.17710995958842},"location":"Right Hip"},{"euler":{"heading":291.02183318387625,"pitch":-111.34087950501943,"roll":52.0772424059998},"location":"Right Knee"},{"euler":{"heading":83.51614662217901,"pitch":-135.82307292413037,"roll":56.200117802800655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.593"} +{"sensors":[{"euler":{"heading":63.45149750318375,"pitch":125.62542108870855,"roll":21.648011740411643},"location":"Left Knee"},{"euler":{"heading":31.195981170839296,"pitch":91.5124579370885,"roll":4.947282120481301},"location":"Left Ankle"},{"euler":{"heading":63.85694244184629,"pitch":-22.28084511989914,"roll":-28.5143672970102},"location":"Right Ankle"},{"euler":{"heading":172.09555246914783,"pitch":-159.67411850448843,"roll":52.20314896362958},"location":"Right Hip"},{"euler":{"heading":290.86339986548865,"pitch":-109.88179155451749,"roll":52.41326816539982},"location":"Right Knee"},{"euler":{"heading":76.8395319599611,"pitch":-137.08451563171735,"roll":56.56135602252059},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.694"} +{"sensors":[{"euler":{"heading":64.07509775286537,"pitch":124.5566289798377,"roll":21.63321056637048},"location":"Left Knee"},{"euler":{"heading":31.93888305375537,"pitch":92.12996214337964,"roll":5.296303908433171},"location":"Left Ankle"},{"euler":{"heading":66.50874819766166,"pitch":-23.577760607909227,"roll":-26.906680567309177},"location":"Right Ankle"},{"euler":{"heading":171.79224722223304,"pitch":-159.7067066540396,"roll":51.307834067266626},"location":"Right Hip"},{"euler":{"heading":288.8708098789398,"pitch":-109.56861239906574,"roll":54.70944134885984},"location":"Right Knee"},{"euler":{"heading":71.111828763965,"pitch":-138.7260640685456,"roll":57.04897042026853},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.795"} +{"sensors":[{"euler":{"heading":65.25508797757884,"pitch":123.34471608185393,"roll":21.00113950973343},"location":"Left Knee"},{"euler":{"heading":33.40124474837983,"pitch":92.79196592904168,"roll":6.385423517589855},"location":"Left Ankle"},{"euler":{"heading":69.4078733778955,"pitch":-24.763734547118304,"roll":-25.02851251057826},"location":"Right Ankle"},{"euler":{"heading":170.33802250000974,"pitch":-160.23603598863565,"roll":50.85830066053996},"location":"Right Hip"},{"euler":{"heading":286.0712288910458,"pitch":-116.13675115915918,"roll":57.59474721397386},"location":"Right Knee"},{"euler":{"heading":66.3068958875685,"pitch":-140.65970766169104,"roll":57.71907337824168},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.895"} +{"sensors":[{"euler":{"heading":67.26707917982095,"pitch":122.25399447366854,"roll":19.37602555876009},"location":"Left Knee"},{"euler":{"heading":35.47987027354185,"pitch":92.91276933613752,"roll":8.721881165830869},"location":"Left Ankle"},{"euler":{"heading":71.23583604010595,"pitch":-25.474861092406474,"roll":-24.006911259520432},"location":"Right Ankle"},{"euler":{"heading":169.18547025000876,"pitch":-160.65618238977208,"roll":50.572470594485964},"location":"Right Hip"},{"euler":{"heading":283.6453560019412,"pitch":-116.82932604324327,"roll":59.58527249257648},"location":"Right Knee"},{"euler":{"heading":62.08245629881165,"pitch":-142.27498689552195,"roll":58.40341604041751},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.996"} +{"sensors":[{"euler":{"heading":70.75287126183886,"pitch":121.55984502630169,"roll":16.825923002884082},"location":"Left Knee"},{"euler":{"heading":39.206883246187665,"pitch":93.33399240252378,"roll":12.574693049247783},"location":"Left Ankle"},{"euler":{"heading":72.49975243609536,"pitch":-25.914874983165827,"roll":-23.42497013356839},"location":"Right Ankle"},{"euler":{"heading":168.3044232250079,"pitch":-161.03431415079487,"roll":50.69647353503737},"location":"Right Hip"},{"euler":{"heading":281.8808204017471,"pitch":-117.55889343891894,"roll":60.65174524331883},"location":"Right Knee"},{"euler":{"heading":56.611710668930485,"pitch":-141.64748820596975,"roll":58.42557443637577},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.96"} +{"sensors":[{"euler":{"heading":74.07758413565497,"pitch":121.16011052367153,"roll":14.674580702595675},"location":"Left Knee"},{"euler":{"heading":41.6861949215689,"pitch":92.6380931622714,"roll":15.429723744323006},"location":"Left Ankle"},{"euler":{"heading":73.29977719248582,"pitch":-26.210887484849245,"roll":-23.16997312021155},"location":"Right Ankle"},{"euler":{"heading":167.7052309025071,"pitch":-161.31213273571538,"roll":51.17057618153364},"location":"Right Hip"},{"euler":{"heading":280.7614883615724,"pitch":-118.02800409502706,"roll":61.08657071898695},"location":"Right Knee"},{"euler":{"heading":50.98178960203744,"pitch":-139.87023938537277,"roll":57.9080169927382},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.197"} +{"sensors":[{"euler":{"heading":74.73857572208948,"pitch":121.73159947130438,"roll":14.363372632336107},"location":"Left Knee"},{"euler":{"heading":41.38007542941201,"pitch":91.74303384604427,"roll":15.380501369890705},"location":"Left Ankle"},{"euler":{"heading":73.83854947323725,"pitch":-26.496048736364322,"roll":-23.259225808190397},"location":"Right Ankle"},{"euler":{"heading":167.54095781225638,"pitch":-161.48716946214384,"roll":51.80976856338028},"location":"Right Hip"},{"euler":{"heading":280.3353395254151,"pitch":-118.13770368552434,"roll":61.02166364708826},"location":"Right Knee"},{"euler":{"heading":81.7336106418337,"pitch":-137.8582154468355,"roll":57.142215293464375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.297"} +{"sensors":[{"euler":{"heading":71.62721814988053,"pitch":123.30218952417395,"roll":15.989535369102496},"location":"Left Knee"},{"euler":{"heading":38.06081788647081,"pitch":90.89373046143984,"roll":12.504951232901634},"location":"Left Ankle"},{"euler":{"heading":73.82344452591353,"pitch":-26.47144386272789,"roll":-23.745803227371358},"location":"Right Ankle"},{"euler":{"heading":167.61811203103076,"pitch":-161.64470251592945,"roll":52.46004170704225},"location":"Right Hip"},{"euler":{"heading":280.4455555728736,"pitch":-117.91143331697192,"roll":60.45074728237944},"location":"Right Knee"},{"euler":{"heading":73.64149957765034,"pitch":-136.14739390215195,"roll":56.552993764117936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.398"} +{"sensors":[{"euler":{"heading":67.62074633489249,"pitch":125.34697057175656,"roll":18.034331832192247},"location":"Left Knee"},{"euler":{"heading":34.985986097823734,"pitch":90.21685741529586,"roll":8.879456109611471},"location":"Left Ankle"},{"euler":{"heading":73.00360007332218,"pitch":-25.936799476455104,"roll":-24.702472904634224},"location":"Right Ankle"},{"euler":{"heading":167.9563008279277,"pitch":-161.8364822643365,"roll":53.15778753633803},"location":"Right Hip"},{"euler":{"heading":281.3010000155862,"pitch":-117.40778998527475,"roll":59.2619225541415},"location":"Right Knee"},{"euler":{"heading":66.9210996198853,"pitch":-135.10765451193674,"roll":56.12269438770615},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.499"} +{"sensors":[{"euler":{"heading":65.38367170140324,"pitch":126.26227351458091,"roll":19.787148648973023},"location":"Left Knee"},{"euler":{"heading":32.66863748804136,"pitch":90.67642167376628,"roll":6.535260498650325},"location":"Left Ankle"},{"euler":{"heading":70.83449006598995,"pitch":-25.049369528809596,"roll":-26.0009756141708},"location":"Right Ankle"},{"euler":{"heading":168.75442074513492,"pitch":-162.04658403790287,"roll":53.81700878270423},"location":"Right Hip"},{"euler":{"heading":283.5396500140276,"pitch":-116.36076098674727,"roll":57.14198029872735},"location":"Right Knee"},{"euler":{"heading":61.310239657896766,"pitch":-134.52188906074306,"roll":55.904174948935534},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.600"} +{"sensors":[{"euler":{"heading":64.20155453126291,"pitch":126.32979616312284,"roll":21.020933784075723},"location":"Left Knee"},{"euler":{"heading":31.23302373923723,"pitch":90.99002950638965,"roll":5.162984448785292},"location":"Left Ankle"},{"euler":{"heading":67.25729105939095,"pitch":-23.238182575928636,"roll":-27.732128052753723},"location":"Right Ankle"},{"euler":{"heading":170.28522867062142,"pitch":-161.49817563411258,"roll":53.75405790443381},"location":"Right Hip"},{"euler":{"heading":286.1794350126248,"pitch":-114.95593488807255,"roll":54.42153226885461},"location":"Right Knee"},{"euler":{"heading":56.497965692107094,"pitch":-134.20095015466876,"roll":56.038757454041985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.700"} +{"sensors":[{"euler":{"heading":63.56264907813662,"pitch":125.99681654681055,"roll":21.812590405668153},"location":"Left Knee"},{"euler":{"heading":30.422221365313508,"pitch":91.41602655575069,"roll":4.359186003906763},"location":"Left Ankle"},{"euler":{"heading":64.25031195345186,"pitch":-22.326864318335776,"roll":-28.758915247478352},"location":"Right Ankle"},{"euler":{"heading":171.79420580355927,"pitch":-160.76085807070132,"roll":53.00990211399043},"location":"Right Hip"},{"euler":{"heading":288.26149151136235,"pitch":-113.32284139926529,"roll":52.41062904196915},"location":"Right Knee"},{"euler":{"heading":52.29191912289639,"pitch":-134.60585513920188,"roll":56.30988170863779},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.801"} +{"sensors":[{"euler":{"heading":63.26888417032296,"pitch":125.5971348921295,"roll":22.13758136510134},"location":"Left Knee"},{"euler":{"heading":30.40499922878216,"pitch":91.74942390017561,"roll":4.179517403516087},"location":"Left Ankle"},{"euler":{"heading":63.76278075810667,"pitch":-22.8066778865022,"roll":-28.714273722730518},"location":"Right Ankle"},{"euler":{"heading":172.77728522320334,"pitch":-160.2347722636312,"roll":51.90266190259139},"location":"Right Hip"},{"euler":{"heading":288.3978423602261,"pitch":-111.64055725933876,"roll":52.45706613777224},"location":"Right Knee"},{"euler":{"heading":48.512727210606755,"pitch":-135.5140196252817,"roll":56.71639353777401},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.901"} +{"sensors":[{"euler":{"heading":63.47949575329067,"pitch":125.08117140291655,"roll":22.017573228591207},"location":"Left Knee"},{"euler":{"heading":30.776999305903946,"pitch":91.99948151015805,"roll":4.367815663164478},"location":"Left Ankle"},{"euler":{"heading":65.830252682296,"pitch":-23.85101009785198,"roll":-27.34909635045747},"location":"Right Ankle"},{"euler":{"heading":172.61205670088302,"pitch":-160.1675450372681,"roll":50.89989571233225},"location":"Right Hip"},{"euler":{"heading":286.6018081242035,"pitch":-110.46400153340488,"roll":54.44885952399501},"location":"Right Knee"},{"euler":{"heading":45.25520448954608,"pitch":-136.85011766275352,"roll":57.22600418399661},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.2"} +{"sensors":[{"euler":{"heading":64.3315461779616,"pitch":124.3543042626249,"roll":21.397065905732088},"location":"Left Knee"},{"euler":{"heading":31.799299375313552,"pitch":92.19328335914224,"roll":5.15603409684803},"location":"Left Ankle"},{"euler":{"heading":68.8722274140664,"pitch":-25.11590908806678,"roll":-25.314186715411722},"location":"Right Ankle"},{"euler":{"heading":171.43835103079473,"pitch":-160.43204053354128,"roll":50.34740614109903},"location":"Right Hip"},{"euler":{"heading":283.8228773117832,"pitch":-114.1988513800644,"roll":57.29147357159551},"location":"Right Knee"},{"euler":{"heading":42.454684040591474,"pitch":-138.44010589647817,"roll":57.87840376559695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.103"} +{"sensors":[{"euler":{"heading":65.98589156016544,"pitch":123.44387383636241,"roll":20.11360931515888},"location":"Left Knee"},{"euler":{"heading":33.644369437782196,"pitch":92.51770502322802,"roll":6.846680687163227},"location":"Left Ankle"},{"euler":{"heading":71.26000467265976,"pitch":-25.8980681792601,"roll":-23.820268043870552},"location":"Right Ankle"},{"euler":{"heading":169.76951592771525,"pitch":-160.86383648018716,"roll":50.03766552698913},"location":"Right Hip"},{"euler":{"heading":281.0155895806049,"pitch":-116.79146624205796,"roll":59.606076214435966},"location":"Right Knee"},{"euler":{"heading":40.20921563653233,"pitch":-140.53359530683036,"roll":58.56556338903726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.205"} +{"sensors":[{"euler":{"heading":69.01855240414889,"pitch":122.72448645272617,"roll":17.75849838364299},"location":"Left Knee"},{"euler":{"heading":36.73618249400398,"pitch":92.92843452090523,"roll":10.155762618446904},"location":"Left Ankle"},{"euler":{"heading":72.5652542053938,"pitch":-26.10826136133409,"roll":-23.225741239483497},"location":"Right Ankle"},{"euler":{"heading":168.86131433494373,"pitch":-161.05245283216846,"roll":49.92139897429022},"location":"Right Hip"},{"euler":{"heading":278.63903062254445,"pitch":-117.85606961785217,"roll":61.126718592992376},"location":"Right Knee"},{"euler":{"heading":37.4132940728791,"pitch":-141.3864857761473,"roll":58.93400705013354},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.305"} +{"sensors":[{"euler":{"heading":72.62294716373401,"pitch":121.95828780745356,"roll":15.326398545278693},"location":"Left Knee"},{"euler":{"heading":39.45006424460358,"pitch":92.9230910688147,"roll":13.415186356602215},"location":"Left Ankle"},{"euler":{"heading":73.43997878485442,"pitch":-25.95993522520068,"roll":-23.09691711553515},"location":"Right Ankle"},{"euler":{"heading":167.69393290144936,"pitch":-161.3284575489516,"roll":50.3605090768612},"location":"Right Hip"},{"euler":{"heading":276.67512756029,"pitch":-119.06421265606696,"roll":61.932796733693145},"location":"Right Knee"},{"euler":{"heading":34.09696466559119,"pitch":-139.8603371985326,"roll":58.94060634512018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.406"} +{"sensors":[{"euler":{"heading":74.2856524473606,"pitch":122.4437090267082,"roll":14.325008690750824},"location":"Left Knee"},{"euler":{"heading":40.205057820143224,"pitch":91.94328196193324,"roll":14.498667720941993},"location":"Left Ankle"},{"euler":{"heading":74.23973090636898,"pitch":-25.882691702680614,"roll":-23.174725403981633},"location":"Right Ankle"},{"euler":{"heading":167.08078961130443,"pitch":-161.38311179405645,"roll":51.07445816917508},"location":"Right Hip"},{"euler":{"heading":275.48886480426097,"pitch":-119.68279139046027,"roll":62.177017060323834},"location":"Right Knee"},{"euler":{"heading":66.28101819903208,"pitch":-137.76180347867933,"roll":58.265295710608164},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.507"} +{"sensors":[{"euler":{"heading":72.38208720262455,"pitch":123.73683812403738,"roll":15.330007821675743},"location":"Left Knee"},{"euler":{"heading":37.965802038128906,"pitch":91.24270376573992,"roll":12.742550948847795},"location":"Left Ankle"},{"euler":{"heading":74.40950781573208,"pitch":-25.569422532412553,"roll":-23.476002863583467},"location":"Right Ankle"},{"euler":{"heading":167.01021065017397,"pitch":-161.3135506146508,"roll":51.79826235225758},"location":"Right Hip"},{"euler":{"heading":274.8837283238349,"pitch":-119.85826225141425,"roll":61.953065354291454},"location":"Right Knee"},{"euler":{"heading":95.40916637912886,"pitch":-135.8606231308114,"roll":57.53251613954735},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.608"} +{"sensors":[{"euler":{"heading":68.6438784823621,"pitch":125.65065431163364,"roll":17.22825703950817},"location":"Left Knee"},{"euler":{"heading":34.23172183431602,"pitch":90.18718338916592,"roll":9.243295853963016},"location":"Left Ankle"},{"euler":{"heading":73.89980703415888,"pitch":-24.9374802791713,"roll":-24.17840257722512},"location":"Right Ankle"},{"euler":{"heading":167.2091895851566,"pitch":-161.31344555318572,"roll":52.58718611703183},"location":"Right Hip"},{"euler":{"heading":275.1266054914514,"pitch":-119.60993602627282,"roll":61.03900881886231},"location":"Right Knee"},{"euler":{"heading":86.24324974121598,"pitch":-134.62456081773027,"roll":57.04176452559262},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.711"} +{"sensors":[{"euler":{"heading":66.1169906341259,"pitch":126.76683888047029,"roll":18.955431335557353},"location":"Left Knee"},{"euler":{"heading":31.35854965088442,"pitch":89.88096505024934,"roll":6.568966268566715},"location":"Left Ankle"},{"euler":{"heading":72.466076330743,"pitch":-24.12498225125417,"roll":-25.37931231950261},"location":"Right Ankle"},{"euler":{"heading":167.68827062664093,"pitch":-161.56335099786713,"roll":53.453467505328646},"location":"Right Hip"},{"euler":{"heading":276.4326949423063,"pitch":-118.88019242364554,"roll":59.46010793697607},"location":"Right Knee"},{"euler":{"heading":78.53142476709438,"pitch":-133.78085473595723,"roll":56.78758807303336},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.812"} +{"sensors":[{"euler":{"heading":64.83654157071331,"pitch":127.10265499242327,"roll":20.10988820200162},"location":"Left Knee"},{"euler":{"heading":30.01019468579598,"pitch":90.05536854522441,"roll":5.249569641710044},"location":"Left Ankle"},{"euler":{"heading":69.2069686976687,"pitch":-22.94373402612875,"roll":-26.84763108755235},"location":"Right Ankle"},{"euler":{"heading":168.76319356397684,"pitch":-161.23826589808044,"roll":53.87687075479579},"location":"Right Hip"},{"euler":{"heading":279.46442544807564,"pitch":-117.498423181281,"roll":56.82659714327847},"location":"Right Knee"},{"euler":{"heading":71.38453229038494,"pitch":-133.07776926236153,"roll":56.72757926573003},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.913"} +{"sensors":[{"euler":{"heading":64.32163741364198,"pitch":126.81113949318095,"roll":20.91764938180146},"location":"Left Knee"},{"euler":{"heading":29.509175217216384,"pitch":90.51233169070198,"roll":4.5058626775390405},"location":"Left Ankle"},{"euler":{"heading":65.73002182790182,"pitch":-21.99936062351588,"roll":-28.200367978797118},"location":"Right Ankle"},{"euler":{"heading":170.30562420757914,"pitch":-160.54568930827242,"roll":53.407933679316216},"location":"Right Hip"},{"euler":{"heading":282.6804829032681,"pitch":-115.95483086315289,"roll":54.08768742895062},"location":"Right Knee"},{"euler":{"heading":65.43357906134645,"pitch":-133.13874233612538,"roll":56.98607133915703},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.14"} +{"sensors":[{"euler":{"heading":64.27072367227778,"pitch":126.15502554386286,"roll":21.425884443621317},"location":"Left Knee"},{"euler":{"heading":29.633257695494745,"pitch":90.99234852163178,"roll":4.355276409785136},"location":"Left Ankle"},{"euler":{"heading":64.38201964511164,"pitch":-22.193174561164295,"roll":-28.705331180917405},"location":"Right Ankle"},{"euler":{"heading":171.70631178682123,"pitch":-159.90987037744517,"roll":52.3733903113846},"location":"Right Hip"},{"euler":{"heading":284.0186846129413,"pitch":-114.17184777683761,"roll":53.11016868605556},"location":"Right Knee"},{"euler":{"heading":60.5089711552118,"pitch":-134.00611810251283,"roll":57.41246420524133},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.114"} +{"sensors":[{"euler":{"heading":64.69365130505,"pitch":125.21452298947658,"roll":21.633295999259186},"location":"Left Knee"},{"euler":{"heading":30.15743192594527,"pitch":91.5806136694686,"roll":4.488498768806623},"location":"Left Ankle"},{"euler":{"heading":65.10631768060047,"pitch":-23.573857105047868,"roll":-27.528548062825667},"location":"Right Ankle"},{"euler":{"heading":172.3044306081391,"pitch":-159.69388333970068,"roll":51.24230128024614},"location":"Right Hip"},{"euler":{"heading":283.48556615164716,"pitch":-112.41716299915385,"roll":54.34915181745001},"location":"Right Knee"},{"euler":{"heading":56.47682403969062,"pitch":-135.61800629226155,"roll":57.933717784717196},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.215"} +{"sensors":[{"euler":{"heading":65.711786174545,"pitch":124.14307069052893,"roll":21.301216399333267},"location":"Left Knee"},{"euler":{"heading":31.047938733350744,"pitch":92.12255230252175,"roll":5.10214889192596},"location":"Left Ankle"},{"euler":{"heading":67.83318591254043,"pitch":-25.116471394543083,"roll":-25.3819432565431},"location":"Right Ankle"},{"euler":{"heading":171.8739875473252,"pitch":-159.9307450057306,"roll":50.405571152221526},"location":"Right Hip"},{"euler":{"heading":281.38075953648246,"pitch":-113.15044669923847,"roll":57.06423663570501},"location":"Right Knee"},{"euler":{"heading":53.016641635721555,"pitch":-137.5124556630354,"roll":58.52159600624548},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.315"} +{"sensors":[{"euler":{"heading":67.3156075570905,"pitch":123.02251362147604,"roll":20.33984475939994},"location":"Left Knee"},{"euler":{"heading":32.66189486001567,"pitch":92.70404707226959,"roll":6.498184002733365},"location":"Left Ankle"},{"euler":{"heading":70.48111732128639,"pitch":-26.254824255088778,"roll":-23.54999893088879},"location":"Right Ankle"},{"euler":{"heading":170.8365887925927,"pitch":-160.37517050515757,"roll":49.81501403699938},"location":"Right Hip"},{"euler":{"heading":279.16768358283423,"pitch":-114.05415202931462,"roll":59.43281297213451},"location":"Right Knee"},{"euler":{"heading":50.1712274721494,"pitch":-139.88621009673187,"roll":59.075686405620935},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.416"} +{"sensors":[{"euler":{"heading":69.97154680138145,"pitch":122.29526225932844,"roll":18.099610283459945},"location":"Left Knee"},{"euler":{"heading":35.12695537401411,"pitch":92.73989236504264,"roll":9.429615602460029},"location":"Left Ankle"},{"euler":{"heading":71.88925558915776,"pitch":-26.7355918295799,"roll":-22.726249037799914},"location":"Right Ankle"},{"euler":{"heading":170.19042991333342,"pitch":-160.66890345464182,"roll":49.533512633299445},"location":"Right Hip"},{"euler":{"heading":277.2509152245508,"pitch":-114.47998682638315,"roll":60.914531674921065},"location":"Right Knee"},{"euler":{"heading":47.32285472493446,"pitch":-141.52883908705869,"roll":59.43686776505885},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.517"} +{"sensors":[{"euler":{"heading":73.83689212124331,"pitch":121.24073603339559,"roll":15.38964925511395},"location":"Left Knee"},{"euler":{"heading":38.7705098366127,"pitch":93.05965312853837,"roll":13.505404042214026},"location":"Left Ankle"},{"euler":{"heading":72.65658003024198,"pitch":-26.92453264662191,"roll":-22.459874134019923},"location":"Right Ankle"},{"euler":{"heading":169.43388692200006,"pitch":-160.95201310917764,"roll":49.711411369969504},"location":"Right Hip"},{"euler":{"heading":275.8008237020957,"pitch":-115.36323814374484,"roll":61.57307850742896},"location":"Right Knee"},{"euler":{"heading":43.04681925244101,"pitch":-139.8884551783528,"roll":59.399430988552965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.618"} +{"sensors":[{"euler":{"heading":76.90945290911898,"pitch":121.07291243005604,"roll":13.481934329602554},"location":"Left Knee"},{"euler":{"heading":41.14345885295143,"pitch":92.45993781568454,"roll":16.086113637992625},"location":"Left Ankle"},{"euler":{"heading":73.11592202721778,"pitch":-26.900829381959717,"roll":-22.45763672061793},"location":"Right Ankle"},{"euler":{"heading":169.23424822980007,"pitch":-160.98806179825988,"roll":50.271520232972556},"location":"Right Hip"},{"euler":{"heading":274.90199133188617,"pitch":-116.10816432937035,"roll":61.69077065668606},"location":"Right Knee"},{"euler":{"heading":74.67963732719691,"pitch":-137.85585966051755,"roll":58.69698788969767},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.718"} +{"sensors":[{"euler":{"heading":76.64350761820708,"pitch":121.84687118705043,"roll":13.6462408966423},"location":"Left Knee"},{"euler":{"heading":40.59161296765629,"pitch":91.66394403411608,"roll":15.690002274193363},"location":"Left Ankle"},{"euler":{"heading":73.26682982449601,"pitch":-26.548246443763745,"roll":-22.70562304855614},"location":"Right Ankle"},{"euler":{"heading":169.15457340682008,"pitch":-160.9892556184339,"roll":51.0256182096753},"location":"Right Hip"},{"euler":{"heading":274.38679219869755,"pitch":-116.61609789643333,"roll":61.40919359101746},"location":"Right Knee"},{"euler":{"heading":103.08042359447722,"pitch":-135.7890236944658,"roll":57.871039100727906},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.819"} +{"sensors":[{"euler":{"heading":73.01040685638638,"pitch":123.56218406834539,"roll":15.487866806978072},"location":"Left Knee"},{"euler":{"heading":36.97620167089066,"pitch":90.74754963070448,"roll":12.352252046774026},"location":"Left Ankle"},{"euler":{"heading":72.87764684204642,"pitch":-25.849671799387373,"roll":-23.27256074370053},"location":"Right Ankle"},{"euler":{"heading":169.15161606613808,"pitch":-161.07783005659053,"roll":51.816806388707775},"location":"Right Hip"},{"euler":{"heading":274.5293629788278,"pitch":-116.83573810678999,"roll":60.54952423191572},"location":"Right Knee"},{"euler":{"heading":92.9411312350295,"pitch":-134.37262132501922,"roll":57.26518519065512},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.923"} +{"sensors":[{"euler":{"heading":69.65311617074774,"pitch":125.28096566151085,"roll":17.407830126280267},"location":"Left Knee"},{"euler":{"heading":33.734831503801594,"pitch":90.38529466763404,"roll":9.279526842096624},"location":"Left Ankle"},{"euler":{"heading":71.61488215784178,"pitch":-24.933454619448636,"roll":-24.40780466933048},"location":"Right Ankle"},{"euler":{"heading":169.42395445952428,"pitch":-161.27004705093148,"roll":52.597625749837},"location":"Right Hip"},{"euler":{"heading":275.70767668094504,"pitch":-116.533414296111,"roll":59.050821808724145},"location":"Right Knee"},{"euler":{"heading":84.32826811152655,"pitch":-133.5728591925173,"roll":56.85116667158961},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.24"} +{"sensors":[{"euler":{"heading":67.75030455367296,"pitch":125.96536909535978,"roll":18.89204711365224},"location":"Left Knee"},{"euler":{"heading":31.867598353421435,"pitch":90.47176520087064,"roll":7.207824157886962},"location":"Left Ankle"},{"euler":{"heading":68.8971439420576,"pitch":-24.108859157503773,"roll":-25.71077420239743},"location":"Right Ankle"},{"euler":{"heading":170.43155901357184,"pitch":-161.11804234583832,"roll":53.0191131748533},"location":"Right Hip"},{"euler":{"heading":278.94940901285054,"pitch":-115.4300728664999,"roll":56.408239627851735},"location":"Right Knee"},{"euler":{"heading":76.6329413003739,"pitch":-132.97807327326558,"roll":56.72230000443065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.124"} +{"sensors":[{"euler":{"heading":66.55027409830566,"pitch":125.9688321858238,"roll":20.015342402287015},"location":"Left Knee"},{"euler":{"heading":30.76833851807929,"pitch":90.58708868078357,"roll":6.012041742098266},"location":"Left Ankle"},{"euler":{"heading":65.63242954785184,"pitch":-22.904223241753396,"roll":-26.95219678215769},"location":"Right Ankle"},{"euler":{"heading":171.81965311221467,"pitch":-160.4249881112545,"roll":52.710951857367974},"location":"Right Hip"},{"euler":{"heading":282.0232181115655,"pitch":-114.18081557984992,"roll":53.64866566506657},"location":"Right Knee"},{"euler":{"heading":70.05714717033652,"pitch":-133.05526594593903,"roll":56.83757000398759},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.225"} +{"sensors":[{"euler":{"heading":65.9264966884751,"pitch":125.58444896724143,"roll":20.751308162058315},"location":"Left Knee"},{"euler":{"heading":31.10400466627136,"pitch":90.9721298127052,"roll":5.83583756788844},"location":"Left Ankle"},{"euler":{"heading":64.33168659306666,"pitch":-23.05755091757806,"roll":-27.35072710394192},"location":"Right Ankle"},{"euler":{"heading":173.0251878009932,"pitch":-159.73873930012903,"roll":51.871106671631175},"location":"Right Hip"},{"euler":{"heading":283.3771463004089,"pitch":-112.93148402186493,"roll":52.64004909855991},"location":"Right Knee"},{"euler":{"heading":64.43268245330287,"pitch":-133.7497393513451,"roll":57.12256300358883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.328"} +{"sensors":[{"euler":{"heading":65.6963470196276,"pitch":125.1135040705173,"roll":21.007427345852484},"location":"Left Knee"},{"euler":{"heading":31.406104199644226,"pitch":91.12491683143469,"roll":5.914753811099596},"location":"Left Ankle"},{"euler":{"heading":65.46101793375999,"pitch":-24.208045825820253,"roll":-26.47815439354773},"location":"Right Ankle"},{"euler":{"heading":173.71641902089388,"pitch":-159.38986537011613,"roll":50.91524600446806},"location":"Right Hip"},{"euler":{"heading":283.026931670368,"pitch":-111.65708561967844,"roll":53.676044188703926},"location":"Right Knee"},{"euler":{"heading":59.52066420797259,"pitch":-135.11226541621062,"roll":57.44780670322995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.430"} +{"sensors":[{"euler":{"heading":66.08921231766485,"pitch":124.49590366346557,"roll":20.750434611267238},"location":"Left Knee"},{"euler":{"heading":32.16549377967981,"pitch":91.21242514829123,"roll":6.454528429989637},"location":"Left Ankle"},{"euler":{"heading":68.271166140384,"pitch":-25.77474124323823,"roll":-24.605338954192955},"location":"Right Ankle"},{"euler":{"heading":173.4072771188045,"pitch":-159.45087883310453,"roll":50.254971404021255},"location":"Right Hip"},{"euler":{"heading":281.4117385033312,"pitch":-113.0163770577106,"roll":56.058439769833534},"location":"Right Knee"},{"euler":{"heading":55.306097787175325,"pitch":-136.81978887458956,"roll":57.859276032906955},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.531"} +{"sensors":[{"euler":{"heading":67.13654108589836,"pitch":123.77131329711901,"roll":19.931641150140518},"location":"Left Knee"},{"euler":{"heading":33.630194401711826,"pitch":91.30993263346211,"roll":7.721575586990673},"location":"Left Ankle"},{"euler":{"heading":71.1877995263456,"pitch":-26.94101711891441,"roll":-22.794805058773658},"location":"Right Ankle"},{"euler":{"heading":172.16654940692405,"pitch":-159.79329094979408,"roll":49.94822426361913},"location":"Right Hip"},{"euler":{"heading":279.1518146529981,"pitch":-115.84598935193955,"roll":58.583845792850184},"location":"Right Knee"},{"euler":{"heading":51.79423800845779,"pitch":-138.9753099871306,"roll":58.34834842961626},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.631"} +{"sensors":[{"euler":{"heading":69.30413697730852,"pitch":123.05668196740712,"roll":18.157227035126468},"location":"Left Knee"},{"euler":{"heading":35.79842496154065,"pitch":91.2289393701159,"roll":10.049418028291605},"location":"Left Ankle"},{"euler":{"heading":72.65026957371104,"pitch":-27.615665407022966,"roll":-22.10282455289629},"location":"Right Ankle"},{"euler":{"heading":171.34364446623167,"pitch":-160.0389618548147,"roll":49.77840183725722},"location":"Right Hip"},{"euler":{"heading":277.3241331876983,"pitch":-116.7926404167456,"roll":60.21921121356517},"location":"Right Knee"},{"euler":{"heading":48.683564207612015,"pitch":-140.77152898841754,"roll":58.776013586654635},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.732"} +{"sensors":[{"euler":{"heading":72.79247327957766,"pitch":122.21351377066641,"roll":15.697754331613822},"location":"Left Knee"},{"euler":{"heading":38.87483246538658,"pitch":91.58104543310431,"roll":13.556976225462446},"location":"Left Ankle"},{"euler":{"heading":73.53524261633994,"pitch":-28.09159886632067,"roll":-21.817542097606662},"location":"Right Ankle"},{"euler":{"heading":170.44678001960852,"pitch":-160.34131566933323,"roll":50.0693116535315},"location":"Right Hip"},{"euler":{"heading":276.08546986892844,"pitch":-117.76337637507105,"roll":61.016040092208655},"location":"Right Knee"},{"euler":{"heading":44.44020778685081,"pitch":-140.1381260895758,"roll":58.74841222798917},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.833"} +{"sensors":[{"euler":{"heading":75.9007259516199,"pitch":122.10466239359977,"roll":13.75297889845244},"location":"Left Knee"},{"euler":{"heading":40.706099218847925,"pitch":91.16044088979388,"roll":15.5887786029162},"location":"Left Ankle"},{"euler":{"heading":74.16296835470595,"pitch":-28.463688979688605,"roll":-21.829537887845998},"location":"Right Ankle"},{"euler":{"heading":170.08335201764768,"pitch":-160.4509341023999,"roll":50.68738048817835},"location":"Right Hip"},{"euler":{"heading":275.50817288203564,"pitch":-118.24953873756395,"roll":61.26443608298779},"location":"Right Knee"},{"euler":{"heading":75.75243700816574,"pitch":-138.4368134806182,"roll":58.12982100519026},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.934"} +{"sensors":[{"euler":{"heading":75.77315335645793,"pitch":122.9941961542398,"roll":15.402681008607196},"location":"Left Knee"},{"euler":{"heading":39.73548929696314,"pitch":90.3756468008145,"roll":14.82365074262458},"location":"Left Ankle"},{"euler":{"heading":74.46542151923536,"pitch":-28.673570081719745,"roll":-22.1403340990614},"location":"Right Ankle"},{"euler":{"heading":170.0812668158829,"pitch":-160.43709069215993,"roll":51.399892439360514},"location":"Right Hip"},{"euler":{"heading":275.4386055938321,"pitch":-118.31208486380756,"roll":61.081742474689015},"location":"Right Knee"},{"euler":{"heading":103.90844330734917,"pitch":-136.5993821325564,"roll":57.316838904671236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.35"} +{"sensors":[{"euler":{"heading":72.45208802081213,"pitch":124.61352653881583,"roll":17.074912907746477},"location":"Left Knee"},{"euler":{"heading":36.30569036726683,"pitch":89.67558212073305,"roll":11.710035668362123},"location":"Left Ankle"},{"euler":{"heading":74.25637936731182,"pitch":-28.57496307354777,"roll":-22.63880068915526},"location":"Right Ankle"},{"euler":{"heading":170.2418901342946,"pitch":-160.54338162294394,"roll":52.02865319542447},"location":"Right Hip"},{"euler":{"heading":275.9134950344489,"pitch":-118.1183763774268,"roll":60.361068227220116},"location":"Right Knee"},{"euler":{"heading":129.43009897661426,"pitch":-134.99569391930075,"roll":56.666405014204116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.136"} +{"sensors":[{"euler":{"heading":68.70062921873092,"pitch":126.38967388493425,"roll":18.99242161697183},"location":"Left Knee"},{"euler":{"heading":32.687621330540146,"pitch":89.10177390865975,"roll":8.20778210152591},"location":"Left Ankle"},{"euler":{"heading":73.37449143058065,"pitch":-28.029966766192995,"roll":-23.637420620239734},"location":"Right Ankle"},{"euler":{"heading":170.49895112086514,"pitch":-160.81404346064954,"roll":52.838287875882024},"location":"Right Hip"},{"euler":{"heading":277.028395531004,"pitch":-117.63153873968412,"roll":59.074961404498104},"location":"Right Knee"},{"euler":{"heading":117.15583907895284,"pitch":-134.0523745273707,"roll":56.25601451278371},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.237"} +{"sensors":[{"euler":{"heading":66.85556629685783,"pitch":127.04445649644083,"roll":20.499429455274647},"location":"Left Knee"},{"euler":{"heading":30.71260919748613,"pitch":89.62909651779378,"roll":6.043253891373318},"location":"Left Ankle"},{"euler":{"heading":71.29954228752258,"pitch":-27.239470089573697,"roll":-24.954928558215762},"location":"Right Ankle"},{"euler":{"heading":171.11155600877862,"pitch":-161.2013891145846,"roll":53.673209088293824},"location":"Right Hip"},{"euler":{"heading":279.48805597790357,"pitch":-116.64338486571572,"roll":56.93621526404829},"location":"Right Knee"},{"euler":{"heading":106.52150517105756,"pitch":-133.45963707463363,"roll":56.055413061505334},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.338"} +{"sensors":[{"euler":{"heading":66.05125966717205,"pitch":126.77751084679674,"roll":21.59948650974718},"location":"Left Knee"},{"euler":{"heading":29.653848277737517,"pitch":90.32243686601441,"roll":4.863928502235987},"location":"Left Ankle"},{"euler":{"heading":67.90708805877033,"pitch":-25.465523080616325,"roll":-26.678185702394188},"location":"Right Ankle"},{"euler":{"heading":172.23790040790078,"pitch":-160.88750020312614,"roll":53.99338817946444},"location":"Right Hip"},{"euler":{"heading":282.60800038011325,"pitch":-115.28529637914416,"roll":54.105093737643465},"location":"Right Knee"},{"euler":{"heading":97.2943546539518,"pitch":-133.1511733671703,"roll":56.2873717553548},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.438"} +{"sensors":[{"euler":{"heading":65.78363370045484,"pitch":126.07475976211708,"roll":22.283287858772464},"location":"Left Knee"},{"euler":{"heading":29.238463449963767,"pitch":90.95894317941298,"roll":4.196285652012388},"location":"Left Ankle"},{"euler":{"heading":64.96637925289329,"pitch":-24.550220772554695,"roll":-27.77911713215477},"location":"Right Ankle"},{"euler":{"heading":173.9203603671107,"pitch":-160.11750018281353,"roll":53.550299361518},"location":"Right Hip"},{"euler":{"heading":284.9659503421019,"pitch":-113.60676674122973,"roll":52.04458436387912},"location":"Right Knee"},{"euler":{"heading":89.38991918855662,"pitch":-133.91730603045326,"roll":56.63363457981932},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.540"} +{"sensors":[{"euler":{"heading":65.85527033040937,"pitch":125.17353378590538,"roll":22.62370907289522},"location":"Left Knee"},{"euler":{"heading":29.620867104967388,"pitch":91.58804886147169,"roll":4.182907086811149},"location":"Left Ankle"},{"euler":{"heading":64.36349132760397,"pitch":-25.013948695299227,"roll":-27.77620541893929},"location":"Right Ankle"},{"euler":{"heading":175.17832433039965,"pitch":-159.50575016453217,"roll":52.5327694253662},"location":"Right Hip"},{"euler":{"heading":285.5568553078917,"pitch":-111.83984006710676,"roll":52.12762592749121},"location":"Right Knee"},{"euler":{"heading":82.51342726970095,"pitch":-135.40057542740794,"roll":57.02652112183739},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.641"} +{"sensors":[{"euler":{"heading":66.45724329736844,"pitch":124.09993040731484,"roll":22.517588165605698},"location":"Left Knee"},{"euler":{"heading":30.29003039447065,"pitch":92.14799397532452,"roll":4.514616378130034},"location":"Left Ankle"},{"euler":{"heading":65.68339219484356,"pitch":-25.900053825769305,"roll":-26.598584877045365},"location":"Right Ankle"},{"euler":{"heading":175.0542418973597,"pitch":-159.59892514807896,"roll":51.45449248282958},"location":"Right Hip"},{"euler":{"heading":284.0011697771025,"pitch":-111.15585606039609,"roll":54.20236333474209},"location":"Right Knee"},{"euler":{"heading":76.43708454273086,"pitch":-137.32926788466716,"roll":57.473869009653654},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.742"} +{"sensors":[{"euler":{"heading":67.5302689676316,"pitch":123.02118736658336,"roll":21.872079349045126},"location":"Left Knee"},{"euler":{"heading":31.398527355023585,"pitch":92.60194457779208,"roll":5.350654740317031},"location":"Left Ankle"},{"euler":{"heading":68.57755297535921,"pitch":-27.191298443192377,"roll":-24.46997638934083},"location":"Right Ankle"},{"euler":{"heading":173.90506770762372,"pitch":-160.02653263327105,"roll":50.82779323454662},"location":"Right Hip"},{"euler":{"heading":281.6823027993923,"pitch":-114.23402045435648,"roll":56.93837700126788},"location":"Right Knee"},{"euler":{"heading":71.13712608845778,"pitch":-139.60884109620045,"roll":58.07023210868829},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.842"} +{"sensors":[{"euler":{"heading":69.28974207086844,"pitch":122.05031862992503,"roll":20.466121414140613},"location":"Left Knee"},{"euler":{"heading":33.327424619521224,"pitch":92.86050012001287,"roll":7.271839266285328},"location":"Left Ankle"},{"euler":{"heading":70.76979767782329,"pitch":-27.77216859887314,"roll":-23.016728750406745},"location":"Right Ankle"},{"euler":{"heading":172.37081093686135,"pitch":-160.55512936994396,"roll":50.47626391109196},"location":"Right Hip"},{"euler":{"heading":279.0203225194531,"pitch":-116.25436840892084,"roll":59.207039301141094},"location":"Right Knee"},{"euler":{"heading":66.523413479612,"pitch":-142.1104569865804,"roll":58.67570889781946},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.943"} +{"sensors":[{"euler":{"heading":72.3857678637816,"pitch":121.40153676693254,"roll":17.93825927272655},"location":"Left Knee"},{"euler":{"heading":36.7946821575691,"pitch":93.3307001080116,"roll":10.988405339656797},"location":"Left Ankle"},{"euler":{"heading":71.91781791004097,"pitch":-27.763701738985826,"roll":-22.402555875366073},"location":"Right Ankle"},{"euler":{"heading":171.65872984317522,"pitch":-160.72461643294955,"roll":50.491137519982765},"location":"Right Hip"},{"euler":{"heading":276.96829026750777,"pitch":-117.27268156802876,"roll":60.623835371026985},"location":"Right Knee"},{"euler":{"heading":61.121072131650806,"pitch":-142.68691128792236,"roll":58.801888008037515},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.44"} +{"sensors":[{"euler":{"heading":76.04094107740343,"pitch":120.70513309023929,"roll":15.281933345453897},"location":"Left Knee"},{"euler":{"heading":39.715213941812195,"pitch":93.01638009721044,"roll":14.814564805691118},"location":"Left Ankle"},{"euler":{"heading":72.65728611903688,"pitch":-27.531081565087245,"roll":-22.243550287829468},"location":"Right Ankle"},{"euler":{"heading":170.8303568588577,"pitch":-160.8959047896546,"roll":51.04202376798449},"location":"Right Hip"},{"euler":{"heading":275.308961240757,"pitch":-118.29541341122588,"roll":61.26145183392429},"location":"Right Knee"},{"euler":{"heading":55.14646491848573,"pitch":-140.74947015913014,"roll":58.55919920723377},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.145"} +{"sensors":[{"euler":{"heading":78.38059696966309,"pitch":120.88461978121536,"roll":14.034990010908508},"location":"Left Knee"},{"euler":{"heading":40.87494254763098,"pitch":92.4209920874894,"roll":15.970608325122008},"location":"Left Ankle"},{"euler":{"heading":73.2353075071332,"pitch":-27.327973408578522,"roll":-22.412945259046523},"location":"Right Ankle"},{"euler":{"heading":170.50982117297193,"pitch":-160.87506431068914,"roll":51.77532139118604},"location":"Right Hip"},{"euler":{"heading":274.2155651166813,"pitch":-118.8971220701033,"roll":61.48530665053186},"location":"Right Knee"},{"euler":{"heading":85.28806842663715,"pitch":-138.49952314321712,"roll":57.75327928651039},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.245"} +{"sensors":[{"euler":{"heading":76.33628727269678,"pitch":122.27115780309384,"roll":15.000241009817659},"location":"Left Knee"},{"euler":{"heading":38.76244829286789,"pitch":91.37264287874045,"roll":14.086047492609808},"location":"Left Ankle"},{"euler":{"heading":73.36177675641989,"pitch":-27.126426067720672,"roll":-22.67165073314187},"location":"Right Ankle"},{"euler":{"heading":170.40258905567472,"pitch":-161.03130787962024,"roll":52.566539252067436},"location":"Right Hip"},{"euler":{"heading":273.9002586050132,"pitch":-118.98240986309295,"roll":61.20552598547867},"location":"Right Knee"},{"euler":{"heading":112.57176158397344,"pitch":-136.48082082889542,"roll":57.015451357859355},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.346"} +{"sensors":[{"euler":{"heading":72.7276585454271,"pitch":124.07529202278447,"roll":16.868966908835894},"location":"Left Knee"},{"euler":{"heading":70.7737034635811,"pitch":90.3416285908664,"roll":10.383692743348828},"location":"Left Ankle"},{"euler":{"heading":72.9318490807779,"pitch":-26.688783460948603,"roll":-23.379485659827687},"location":"Right Ankle"},{"euler":{"heading":170.46858015010724,"pitch":-161.32817709165823,"roll":53.39738532686069},"location":"Right Hip"},{"euler":{"heading":274.3039827445119,"pitch":-118.72791887678366,"roll":60.266223386930804},"location":"Right Knee"},{"euler":{"heading":101.8145854255761,"pitch":-135.13273874600588,"roll":56.57015622207342},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.447"} +{"sensors":[{"euler":{"heading":70.41114269088439,"pitch":125.09901282050603,"roll":18.544570217952305},"location":"Left Knee"},{"euler":{"heading":63.91508311722299,"pitch":90.24496573177977,"roll":7.307823469013945},"location":"Left Ankle"},{"euler":{"heading":71.5574141727001,"pitch":-25.994905114853744,"roll":-24.59778709384492},"location":"Right Ankle"},{"euler":{"heading":170.82797213509653,"pitch":-161.80785938249244,"roll":54.26389679417463},"location":"Right Hip"},{"euler":{"heading":275.78608447006076,"pitch":-117.9488769891053,"roll":58.66460104823772},"location":"Right Knee"},{"euler":{"heading":92.87062688301849,"pitch":-134.46321487140528,"roll":56.388140599866084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.548"} +{"sensors":[{"euler":{"heading":68.91377842179595,"pitch":125.44536153845543,"roll":19.677613196157075},"location":"Left Knee"},{"euler":{"heading":59.1923248055007,"pitch":90.2892191586018,"roll":5.7832911221125505},"location":"Left Ankle"},{"euler":{"heading":68.8079227554301,"pitch":-25.00791460336837,"roll":-26.131758384460433},"location":"Right Ankle"},{"euler":{"heading":171.8264249215869,"pitch":-161.7083234442432,"roll":54.79375711475717},"location":"Right Hip"},{"euler":{"heading":278.75747602305466,"pitch":-116.69148929019477,"roll":55.98564094341395},"location":"Right Knee"},{"euler":{"heading":84.52731419471664,"pitch":-133.92314338426476,"roll":56.38057653987948},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.649"} +{"sensors":[{"euler":{"heading":68.16615057961636,"pitch":125.1758253846099,"roll":20.47860187654137},"location":"Left Knee"},{"euler":{"heading":55.429342324950625,"pitch":90.58529724274162,"roll":4.7112120099012955},"location":"Left Ankle"},{"euler":{"heading":66.1458804798871,"pitch":-24.344623143031534,"roll":-27.33733254601439},"location":"Right Ankle"},{"euler":{"heading":173.1750324294282,"pitch":-160.9937410998189,"roll":54.52688140328145},"location":"Right Hip"},{"euler":{"heading":281.7067284207492,"pitch":-114.9410903611753,"roll":53.41832684907256},"location":"Right Knee"},{"euler":{"heading":77.28083277524497,"pitch":-134.13707904583828,"roll":56.52376888589153},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.750"} +{"sensors":[{"euler":{"heading":67.79328552165472,"pitch":124.5832428461489,"roll":20.980741688887232},"location":"Left Knee"},{"euler":{"heading":52.71765809245556,"pitch":91.00176751846745,"roll":4.246340808911166},"location":"Left Ankle"},{"euler":{"heading":65.32504243189838,"pitch":-24.48516082872838,"roll":-27.66609929141295},"location":"Right Ankle"},{"euler":{"heading":174.4075291864854,"pitch":-160.26311698983702,"roll":53.592943262953305},"location":"Right Hip"},{"euler":{"heading":282.65480557867426,"pitch":-113.16573132505778,"roll":52.770244164165305},"location":"Right Knee"},{"euler":{"heading":70.94649949772048,"pitch":-135.01712114125445,"roll":56.777641997302375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.850"} +{"sensors":[{"euler":{"heading":67.95145696948924,"pitch":123.77491856153402,"roll":21.08266751999851},"location":"Left Knee"},{"euler":{"heading":50.77089228321,"pitch":91.5078407666207,"roll":4.252956728020049},"location":"Left Ankle"},{"euler":{"heading":66.83628818870855,"pitch":-24.93039474585554,"roll":-26.686989362271657},"location":"Right Ankle"},{"euler":{"heading":174.74177626783685,"pitch":-159.94305529085332,"roll":52.48989893665798},"location":"Right Hip"},{"euler":{"heading":281.50182502080685,"pitch":-111.599158192552,"roll":54.20571974774877},"location":"Right Knee"},{"euler":{"heading":65.42059954794843,"pitch":-136.327909027129,"roll":57.10612779757214},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.952"} +{"sensors":[{"euler":{"heading":68.69381127254032,"pitch":122.80992670538063,"roll":20.71190076799866},"location":"Left Knee"},{"euler":{"heading":49.387553054889004,"pitch":91.95705668995865,"roll":4.671411055218044},"location":"Left Ankle"},{"euler":{"heading":69.6901593698377,"pitch":-25.737355271269987,"roll":-24.618290426044492},"location":"Right Ankle"},{"euler":{"heading":173.98634864105318,"pitch":-160.092499761768,"roll":51.68465904299219},"location":"Right Hip"},{"euler":{"heading":279.08289251872617,"pitch":-111.19549237329679,"roll":57.0226477729739},"location":"Right Knee"},{"euler":{"heading":60.77228959315358,"pitch":-138.0263681244161,"roll":57.66426501781493},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.52"} +{"sensors":[{"euler":{"heading":70.01818014528628,"pitch":121.92268403484258,"roll":19.696960691198793},"location":"Left Knee"},{"euler":{"heading":48.755047749400106,"pitch":92.2863510209628,"roll":5.75426994969624},"location":"Left Ankle"},{"euler":{"heading":72.41489343285394,"pitch":-26.53236974414299,"roll":-22.83771138344004},"location":"Right Ankle"},{"euler":{"heading":172.4814637769479,"pitch":-160.57699978559123,"roll":51.29744313869297},"location":"Right Hip"},{"euler":{"heading":276.65585326685357,"pitch":-111.76344313596711,"roll":59.57038299567651},"location":"Right Knee"},{"euler":{"heading":56.86381063383823,"pitch":-140.28623131197452,"roll":58.24158851603344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.152"} +{"sensors":[{"euler":{"heading":72.36636213075765,"pitch":121.28666563135833,"roll":17.621014622078913},"location":"Left Knee"},{"euler":{"heading":49.073292974460095,"pitch":92.18271591886652,"roll":8.085092954726615},"location":"Left Ankle"},{"euler":{"heading":74.08590408956854,"pitch":-26.98538276972869,"roll":-21.878940245096036},"location":"Right Ankle"},{"euler":{"heading":171.53331739925312,"pitch":-160.8880498070321,"roll":51.205198824823675},"location":"Right Hip"},{"euler":{"heading":274.43401794016825,"pitch":-111.9870988223704,"roll":61.225844696108865},"location":"Right Knee"},{"euler":{"heading":53.289929570454404,"pitch":-141.87635818077706,"roll":58.8049296644301},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.253"} +{"sensors":[{"euler":{"heading":75.92347591768188,"pitch":120.5579990682225,"roll":14.921413159871022},"location":"Left Knee"},{"euler":{"heading":51.390963677014085,"pitch":92.62694432697987,"roll":12.070333659253954},"location":"Left Ankle"},{"euler":{"heading":75.12731368061169,"pitch":-27.186844492755824,"roll":-21.397296220586433},"location":"Right Ankle"},{"euler":{"heading":170.5799856593278,"pitch":-161.2804948263289,"roll":51.53467894234131},"location":"Right Hip"},{"euler":{"heading":272.8968661461514,"pitch":-112.85088894013336,"roll":62.05951022649798},"location":"Right Knee"},{"euler":{"heading":48.53593661340897,"pitch":-139.11997236269934,"roll":58.88068669798709},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.353"} +{"sensors":[{"euler":{"heading":79.0436283259137,"pitch":120.30844916140026,"roll":12.90427184388392},"location":"Left Knee"},{"euler":{"heading":52.40186730931268,"pitch":92.15799989428189,"roll":14.669550293328559},"location":"Left Ankle"},{"euler":{"heading":75.92083231255053,"pitch":-27.074410043480242,"roll":-21.39506659852779},"location":"Right Ankle"},{"euler":{"heading":170.14698709339504,"pitch":-161.396195343696,"roll":52.193711048107176},"location":"Right Hip"},{"euler":{"heading":271.7321795315363,"pitch":-113.79080004612004,"roll":62.31605920384818},"location":"Right Knee"},{"euler":{"heading":79.66984295206808,"pitch":-137.33922512642943,"roll":58.230118028188386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.454"} +{"sensors":[{"euler":{"heading":79.12051549332233,"pitch":121.02760424526024,"roll":12.87634465949553},"location":"Left Knee"},{"euler":{"heading":50.58668057838141,"pitch":91.4046999048537,"roll":14.377595263995705},"location":"Left Ankle"},{"euler":{"heading":76.32249908129549,"pitch":-26.673219039132217,"roll":-21.736809938675012},"location":"Right Ankle"},{"euler":{"heading":170.06978838405553,"pitch":-161.41282580932642,"roll":52.98683994329646},"location":"Right Hip"},{"euler":{"heading":271.07771157838266,"pitch":-114.41172004150803,"roll":62.128203283463364},"location":"Right Knee"},{"euler":{"heading":107.58410865686128,"pitch":-135.4553026137865,"roll":57.400856225369544},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.555"} +{"sensors":[{"euler":{"heading":75.9897139439901,"pitch":122.61234382073421,"roll":14.519960193545977},"location":"Left Knee"},{"euler":{"heading":46.15926252054327,"pitch":90.56422991436833,"roll":9.864835737596135},"location":"Left Ankle"},{"euler":{"heading":76.11524917316594,"pitch":-26.012147135218996,"roll":-22.319378944807514},"location":"Right Ankle"},{"euler":{"heading":170.21280954564998,"pitch":-161.4590432283938,"roll":53.78815594896682},"location":"Right Hip"},{"euler":{"heading":271.0824404205444,"pitch":-114.72679803735724,"roll":61.37788295511703},"location":"Right Knee"},{"euler":{"heading":97.05069779117514,"pitch":-134.17227235240784,"roll":56.767020602832595},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.656"} +{"sensors":[{"euler":{"heading":72.9219925495911,"pitch":124.10735943866078,"roll":16.40546417419138},"location":"Left Knee"},{"euler":{"heading":41.69333626848894,"pitch":90.20155692293149,"roll":6.784602163836521},"location":"Left Ankle"},{"euler":{"heading":75.00372425584935,"pitch":-25.029682421697096,"roll":-23.437441050326765},"location":"Right Ankle"},{"euler":{"heading":170.497778591085,"pitch":-161.6068889055544,"roll":54.60309035407014},"location":"Right Hip"},{"euler":{"heading":272.13044637849,"pitch":-114.61036823362153,"roll":59.88384465960532},"location":"Right Knee"},{"euler":{"heading":88.01437801205763,"pitch":-133.54879511716706,"roll":56.39656854254933},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.756"} +{"sensors":[{"euler":{"heading":71.173543294632,"pitch":124.5903734947947,"roll":17.85241775677224},"location":"Left Knee"},{"euler":{"heading":38.774002641640045,"pitch":90.39390123063835,"roll":4.874891947452869},"location":"Left Ankle"},{"euler":{"heading":72.26585183026442,"pitch":-24.25171417952739,"roll":-24.793696945294087},"location":"Right Ankle"},{"euler":{"heading":171.2230007319765,"pitch":-161.56495001499897,"roll":55.12403131866313},"location":"Right Hip"},{"euler":{"heading":276.786151740641,"pitch":-113.67433141025938,"roll":57.1892101936448},"location":"Right Knee"},{"euler":{"heading":79.91294021085187,"pitch":-133.09391560545035,"roll":56.213161688294406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.857"} +{"sensors":[{"euler":{"heading":70.1374389651688,"pitch":124.47508614531523,"roll":18.873425981095018},"location":"Left Knee"},{"euler":{"heading":37.059102377476044,"pitch":90.6545111075745,"roll":4.006152752707583},"location":"Left Ankle"},{"euler":{"heading":68.61426664723798,"pitch":-22.93904276157465,"roll":-26.383077250764682},"location":"Right Ankle"},{"euler":{"heading":172.54445065877886,"pitch":-160.87720501349906,"roll":54.91162818679682},"location":"Right Hip"},{"euler":{"heading":280.0262865665769,"pitch":-112.68814826923344,"roll":54.214039174280316},"location":"Right Knee"},{"euler":{"heading":73.08414618976668,"pitch":-133.3532740449053,"roll":56.329345519464965},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.957"} +{"sensors":[{"euler":{"heading":69.66744506865192,"pitch":123.98382753078371,"roll":19.536083382985517},"location":"Left Knee"},{"euler":{"heading":36.78444213972844,"pitch":91.24530999681706,"roll":4.080537477436824},"location":"Left Ankle"},{"euler":{"heading":66.45908998251419,"pitch":-22.507638485417186,"roll":-27.26976952568821},"location":"Right Ankle"},{"euler":{"heading":173.75875559290097,"pitch":-160.13948451214915,"roll":54.06421536811713},"location":"Right Hip"},{"euler":{"heading":281.9299079099192,"pitch":-111.53183344231009,"roll":52.52388525685229},"location":"Right Knee"},{"euler":{"heading":67.19448157079002,"pitch":-134.17419664041478,"roll":56.60266096751847},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.58"} +{"sensors":[{"euler":{"heading":69.75695056178672,"pitch":123.12294477770536,"roll":19.876225044686965},"location":"Left Knee"},{"euler":{"heading":36.8059979257556,"pitch":91.93952899713534,"roll":4.4474837296931415},"location":"Left Ankle"},{"euler":{"heading":66.87568098426277,"pitch":-23.319374636875466,"roll":-26.74279257311939},"location":"Right Ankle"},{"euler":{"heading":174.4703800336109,"pitch":-159.70678606093426,"roll":52.87654383130542},"location":"Right Hip"},{"euler":{"heading":281.8619171189273,"pitch":-110.02240009807907,"roll":53.01524673116706},"location":"Right Knee"},{"euler":{"heading":62.16878341371102,"pitch":-135.5317769763733,"roll":56.95489487076662},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.159"} +{"sensors":[{"euler":{"heading":70.46875550560804,"pitch":121.98565029993482,"roll":19.744852540218268},"location":"Left Knee"},{"euler":{"heading":37.31914813318004,"pitch":92.7518260974218,"roll":5.252735356723828},"location":"Left Ankle"},{"euler":{"heading":69.21936288583649,"pitch":-24.493687173187922,"roll":-24.874763315807453},"location":"Right Ankle"},{"euler":{"heading":174.2545920302498,"pitch":-159.74235745484083,"roll":51.832639448174874},"location":"Right Hip"},{"euler":{"heading":280.0194754070346,"pitch":-109.88266008827117,"roll":55.39497205805036},"location":"Right Knee"},{"euler":{"heading":58.001905072339916,"pitch":-137.21609927873598,"roll":57.47815538368996},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.259"} +{"sensors":[{"euler":{"heading":71.76562995504725,"pitch":120.85583526994134,"roll":18.95161728619644},"location":"Left Knee"},{"euler":{"heading":38.612233319862035,"pitch":93.52664348767962,"roll":6.771211821051446},"location":"Left Ankle"},{"euler":{"heading":72.08492659725285,"pitch":-25.49431845586913,"roll":-22.91853698422671},"location":"Right Ankle"},{"euler":{"heading":172.72913282722482,"pitch":-160.29937170935676,"roll":51.23687550335739},"location":"Right Hip"},{"euler":{"heading":277.48627786633114,"pitch":-116.31939407944405,"roll":58.205474852245324},"location":"Right Knee"},{"euler":{"heading":54.43296456510593,"pitch":-139.24448935086238,"roll":58.080339845320964},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.359"} +{"sensors":[{"euler":{"heading":74.02656695954252,"pitch":120.04525174294722,"roll":17.081455557576795},"location":"Left Knee"},{"euler":{"heading":40.50100998787583,"pitch":93.75522913891166,"roll":9.437840638946302},"location":"Left Ankle"},{"euler":{"heading":74.02643393752757,"pitch":-25.988636610282217,"roll":-21.951683285804037},"location":"Right Ankle"},{"euler":{"heading":171.52496954450234,"pitch":-160.73818453842108,"roll":51.094437953021654},"location":"Right Hip"},{"euler":{"heading":275.156400079698,"pitch":-116.79995467149965,"roll":60.12242736702079},"location":"Right Knee"},{"euler":{"heading":51.03966810859533,"pitch":-140.71379041577615,"roll":58.60355586078887},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.460"} +{"sensors":[{"euler":{"heading":77.52391026358828,"pitch":119.4219765686525,"roll":14.523310001819116},"location":"Left Knee"},{"euler":{"heading":43.375908989088245,"pitch":94.4672062250205,"roll":13.012806575051673},"location":"Left Ankle"},{"euler":{"heading":75.37379054377482,"pitch":-26.139772949253995,"roll":-21.394014957223632},"location":"Right Ankle"},{"euler":{"heading":170.2724725900521,"pitch":-161.20811608457896,"roll":51.409994157719495},"location":"Right Hip"},{"euler":{"heading":273.1407600717282,"pitch":-117.90745920434969,"roll":61.19143463031871},"location":"Right Knee"},{"euler":{"heading":46.4669512977358,"pitch":-139.75491137419854,"roll":58.649450274709984},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.560"} +{"sensors":[{"euler":{"heading":80.39651923722946,"pitch":119.44852891178725,"roll":12.658479001637206},"location":"Left Knee"},{"euler":{"heading":44.607068090179425,"pitch":93.85173560251846,"roll":14.986525917546507},"location":"Left Ankle"},{"euler":{"heading":76.31766148939734,"pitch":-26.075795654328598,"roll":-21.342113461501267},"location":"Right Ankle"},{"euler":{"heading":169.4202253310469,"pitch":-161.46230447612106,"roll":52.09399474194755},"location":"Right Hip"},{"euler":{"heading":271.6141840645554,"pitch":-118.77921328391471,"roll":61.65979116728684},"location":"Right Knee"},{"euler":{"heading":77.45775616796223,"pitch":-138.0231702367787,"roll":58.02825524723899},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.661"} +{"sensors":[{"euler":{"heading":79.71311731350652,"pitch":120.60992602060853,"roll":12.798881101473485},"location":"Left Knee"},{"euler":{"heading":43.002611281161485,"pitch":92.67906204226662,"roll":14.137873325791857},"location":"Left Ankle"},{"euler":{"heading":76.9858953404576,"pitch":-26.086966088895736,"roll":-21.49540211535114},"location":"Right Ankle"},{"euler":{"heading":168.98445279794223,"pitch":-161.69732402850894,"roll":52.890845267752795},"location":"Right Hip"},{"euler":{"heading":270.87776565809986,"pitch":-119.12004195552325,"roll":61.60006205055816},"location":"Right Knee"},{"euler":{"heading":105.09948055116601,"pitch":-136.04585321310083,"roll":57.23167972251509},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.763"} +{"sensors":[{"euler":{"heading":75.86055558215587,"pitch":122.53643341854767,"roll":14.537742991326137},"location":"Left Knee"},{"euler":{"heading":39.08360015304534,"pitch":91.39865583803996,"roll":10.911585993212672},"location":"Left Ankle"},{"euler":{"heading":77.07480580641185,"pitch":-25.97201948000616,"roll":-21.908361903816026},"location":"Right Ankle"},{"euler":{"heading":168.686007518148,"pitch":-162.09009162565806,"roll":53.74551074097752},"location":"Right Hip"},{"euler":{"heading":270.9337390922899,"pitch":-119.07053775997092,"roll":60.94005584550234},"location":"Right Knee"},{"euler":{"heading":130.41453249604942,"pitch":-134.54126789179074,"roll":56.67101175026358},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.864"} +{"sensors":[{"euler":{"heading":71.91825002394027,"pitch":124.47654007669291,"roll":16.540218692193523},"location":"Left Knee"},{"euler":{"heading":71.05649013774081,"pitch":90.60879025423596,"roll":7.370427393891405},"location":"Left Ankle"},{"euler":{"heading":76.41107522577066,"pitch":-25.599817532005545,"roll":-22.873775713434423},"location":"Right Ankle"},{"euler":{"heading":168.6486567663332,"pitch":-162.69358246309227,"roll":54.67720966687977},"location":"Right Hip"},{"euler":{"heading":272.05286518306093,"pitch":-118.59473398397384,"roll":59.577300260952114},"location":"Right Knee"},{"euler":{"heading":117.93557924644448,"pitch":-133.73714110261167,"roll":56.34766057523722},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.964"} +{"sensors":[{"euler":{"heading":69.82017502154625,"pitch":125.24763606902363,"roll":18.10494682297417},"location":"Left Knee"},{"euler":{"heading":65.08209112396673,"pitch":90.49791122881237,"roll":5.277134654502264},"location":"Left Ankle"},{"euler":{"heading":74.4137177031936,"pitch":-25.08358577880499,"roll":-24.186398142090983},"location":"Right Ankle"},{"euler":{"heading":169.2775410896999,"pitch":-163.03672421678306,"roll":55.478238700191795},"location":"Right Hip"},{"euler":{"heading":274.7788286647548,"pitch":-117.44151058557645,"roll":57.2133202348569},"location":"Right Knee"},{"euler":{"heading":107.02327132180002,"pitch":-133.2321769923505,"roll":56.2378945177135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.65"} +{"sensors":[{"euler":{"heading":68.80690751939161,"pitch":125.03537246212127,"roll":19.275702140676753},"location":"Left Knee"},{"euler":{"heading":60.60513201157006,"pitch":90.71687010593114,"roll":4.093171189052038},"location":"Left Ankle"},{"euler":{"heading":70.65984593287423,"pitch":-23.54397720092449,"roll":-25.942758327881887},"location":"Right Ankle"},{"euler":{"heading":170.6247869807299,"pitch":-162.33305179510475,"roll":55.44291483017262},"location":"Right Hip"},{"euler":{"heading":278.00094579827936,"pitch":-116.0598595270188,"roll":54.26073821137121},"location":"Right Knee"},{"euler":{"heading":97.68344418962002,"pitch":-133.47145929311546,"roll":56.42660506594215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.166"} +{"sensors":[{"euler":{"heading":68.33246676745244,"pitch":124.45058521590916,"roll":20.035631926609078},"location":"Left Knee"},{"euler":{"heading":57.263368810413056,"pitch":91.08893309533802,"roll":3.5651040701468344},"location":"Left Ankle"},{"euler":{"heading":67.7376113395868,"pitch":-22.73957948083204,"roll":-27.123482495093697},"location":"Right Ankle"},{"euler":{"heading":172.34355828265691,"pitch":-161.3997466155943,"roll":54.68612334715536},"location":"Right Hip"},{"euler":{"heading":280.34460121845143,"pitch":-114.29137357431694,"roll":52.39091439023409},"location":"Right Knee"},{"euler":{"heading":89.53384977065802,"pitch":-134.38681336380392,"roll":56.75269455934794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.267"} +{"sensors":[{"euler":{"heading":68.26797009070721,"pitch":123.78052669431825,"roll":20.33831873394817},"location":"Left Knee"},{"euler":{"heading":55.02453192937175,"pitch":91.39253978580422,"roll":3.752343663132151},"location":"Left Ankle"},{"euler":{"heading":67.32635020562813,"pitch":-23.540621532748837,"roll":-27.05488424558433},"location":"Right Ankle"},{"euler":{"heading":173.86545245439123,"pitch":-160.63477195403487,"roll":53.43001101243982},"location":"Right Hip"},{"euler":{"heading":280.8413910966063,"pitch":-112.32473621688526,"roll":52.67682295121068},"location":"Right Knee"},{"euler":{"heading":82.40546479359223,"pitch":-135.95438202742355,"roll":57.121175103413144},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.368"} +{"sensors":[{"euler":{"heading":68.7474230816365,"pitch":122.97747402488643,"roll":20.185736860553355},"location":"Left Knee"},{"euler":{"heading":53.20957873643457,"pitch":91.6032858072238,"roll":4.270859296818936},"location":"Left Ankle"},{"euler":{"heading":69.59996518506532,"pitch":-25.192809379473957,"roll":-25.468145821025896},"location":"Right Ankle"},{"euler":{"heading":174.6039072089521,"pitch":-160.3087947586314,"roll":52.162009911195845},"location":"Right Hip"},{"euler":{"heading":279.6010019869457,"pitch":-111.73601259519673,"roll":54.959140656089616},"location":"Right Knee"},{"euler":{"heading":76.164918314233,"pitch":-137.8401938246812,"roll":57.60280759307183},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.469"} +{"sensors":[{"euler":{"heading":69.77268077347286,"pitch":122.1797266223978,"roll":19.46091317449802},"location":"Left Knee"},{"euler":{"heading":52.18237086279112,"pitch":91.81795722650142,"roll":5.356273367137042},"location":"Left Ankle"},{"euler":{"heading":72.41496866655879,"pitch":-26.61727844152656,"roll":-23.465081238923307},"location":"Right Ankle"},{"euler":{"heading":173.49351648805688,"pitch":-160.65916528276824,"roll":51.40205892007626},"location":"Right Hip"},{"euler":{"heading":277.1971517882511,"pitch":-118.24366133567706,"roll":57.94447659048066},"location":"Right Knee"},{"euler":{"heading":70.6109264828097,"pitch":-140.09992444221308,"roll":58.14877683376465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.570"} +{"sensors":[{"euler":{"heading":71.60791269612557,"pitch":121.44925396015802,"roll":17.95857185704822},"location":"Left Knee"},{"euler":{"heading":52.37663377651201,"pitch":91.96741150385128,"roll":7.514396030423338},"location":"Left Ankle"},{"euler":{"heading":74.21722179990292,"pitch":-27.111800597373907,"roll":-22.349823115030976},"location":"Right Ankle"},{"euler":{"heading":172.0316648392512,"pitch":-161.14949875449142,"roll":51.005603028068634},"location":"Right Hip"},{"euler":{"heading":274.60243660942604,"pitch":-119.15054520210936,"roll":60.30002893143259},"location":"Right Knee"},{"euler":{"heading":65.98733383452873,"pitch":-142.46493199799175,"roll":58.75889915038819},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.671"} +{"sensors":[{"euler":{"heading":74.97837142651301,"pitch":120.87932856414223,"roll":15.368964671343399},"location":"Left Knee"},{"euler":{"heading":53.80147039886081,"pitch":92.43317035346615,"roll":11.019206427381004},"location":"Left Ankle"},{"euler":{"heading":75.37049961991264,"pitch":-27.313120537636518,"roll":-21.88984080352788},"location":"Right Ankle"},{"euler":{"heading":171.14099835532608,"pitch":-161.4095488790423,"roll":51.11129272526178},"location":"Right Hip"},{"euler":{"heading":272.6171929484834,"pitch":-119.72299068189842,"roll":61.62002603828934},"location":"Right Knee"},{"euler":{"heading":60.28860045107585,"pitch":-142.46218879819259,"roll":58.901759235349374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.772"} +{"sensors":[{"euler":{"heading":78.57428428386172,"pitch":120.29764570772801,"roll":12.86956820420906},"location":"Left Knee"},{"euler":{"heading":54.552573358974726,"pitch":92.29610331811955,"roll":14.267285784642905},"location":"Left Ankle"},{"euler":{"heading":76.03344965792138,"pitch":-27.319308483872867,"roll":-21.80710672317509},"location":"Right Ankle"},{"euler":{"heading":170.33939851979346,"pitch":-161.61234399113806,"roll":51.6376634527356},"location":"Right Hip"},{"euler":{"heading":271.13672365363504,"pitch":-120.26944161370858,"roll":62.21427343446041},"location":"Right Knee"},{"euler":{"heading":54.290990405968266,"pitch":-140.65346991837333,"roll":58.53658331181444},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.873"} +{"sensors":[{"euler":{"heading":80.39185585547554,"pitch":120.70538113695521,"roll":11.863861383788153},"location":"Left Knee"},{"euler":{"heading":53.42856602307725,"pitch":91.46024298630759,"roll":14.965557206178614},"location":"Left Ankle"},{"euler":{"heading":76.40510469212924,"pitch":-27.16237763548558,"roll":-22.19514605085758},"location":"Right Ankle"},{"euler":{"heading":169.93045866781412,"pitch":-161.71360959202426,"roll":52.33014710746205},"location":"Right Hip"},{"euler":{"heading":270.17305128827155,"pitch":-120.49249745233773,"roll":62.33659609101437},"location":"Right Knee"},{"euler":{"heading":84.38064136537145,"pitch":-138.519372926536,"roll":57.682924980633},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.974"} +{"sensors":[{"euler":{"heading":78.10892026992798,"pitch":122.18484302325969,"roll":13.13372524540934},"location":"Left Knee"},{"euler":{"heading":49.454459420769524,"pitch":90.47671868767682,"roll":12.844001485560753},"location":"Left Ankle"},{"euler":{"heading":76.33959422291632,"pitch":-26.702389871937022,"roll":-22.819381445771825},"location":"Right Ankle"},{"euler":{"heading":169.6999128010327,"pitch":-161.88599863282184,"roll":53.040882396715844},"location":"Right Hip"},{"euler":{"heading":269.7557461594444,"pitch":-120.44949770710397,"roll":61.977936481912934},"location":"Right Knee"},{"euler":{"heading":111.47382722883431,"pitch":-136.4674356338824,"roll":56.895882482569704},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.75"} +{"sensors":[{"euler":{"heading":74.42927824293518,"pitch":124.08510872093373,"roll":15.076602720868404},"location":"Left Knee"},{"euler":{"heading":80.23401347869257,"pitch":89.46654681890914,"roll":9.140851337004676},"location":"Left Ankle"},{"euler":{"heading":75.59938480062469,"pitch":-26.01340088474332,"roll":-23.868693301194643},"location":"Right Ankle"},{"euler":{"heading":169.84867152092943,"pitch":-162.09114876953967,"roll":53.79304415704426},"location":"Right Hip"},{"euler":{"heading":270.1551715435,"pitch":-120.01079793639359,"roll":61.04889283372164},"location":"Right Knee"},{"euler":{"heading":100.67019450595087,"pitch":-135.31444207049415,"roll":56.34379423431274},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.176"} +{"sensors":[{"euler":{"heading":72.04885041864166,"pitch":125.05784784884037,"roll":16.831442448781566},"location":"Left Knee"},{"euler":{"heading":72.52936213082332,"pitch":89.29489213701824,"roll":6.383016203304209},"location":"Left Ankle"},{"euler":{"heading":73.70194632056221,"pitch":-25.08706079626899,"roll":-25.18807397107518},"location":"Right Ankle"},{"euler":{"heading":170.3450543688365,"pitch":-162.4507838925857,"roll":54.48248974133983},"location":"Right Hip"},{"euler":{"heading":271.82090438915,"pitch":-119.02846814275422,"roll":59.32525355034948},"location":"Right Knee"},{"euler":{"heading":91.50942505535579,"pitch":-134.64549786344475,"roll":56.103164810881466},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.276"} +{"sensors":[{"euler":{"heading":70.6439653767775,"pitch":125.34581306395634,"roll":18.02329820390341},"location":"Left Knee"},{"euler":{"heading":66.73267591774098,"pitch":89.4466529233164,"roll":4.850964582973788},"location":"Left Ankle"},{"euler":{"heading":70.35050168850599,"pitch":-23.27835471664209,"roll":-26.675516573967663},"location":"Right Ankle"},{"euler":{"heading":171.52929893195284,"pitch":-162.10570550332713,"roll":54.63424076720585},"location":"Right Hip"},{"euler":{"heading":274.69506395023495,"pitch":-117.5943713284788,"roll":56.680228195314534},"location":"Right Knee"},{"euler":{"heading":83.2084825498202,"pitch":-134.31844807710027,"roll":56.06784832979332},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.377"} +{"sensors":[{"euler":{"heading":69.91706883909976,"pitch":125.0924817575607,"roll":18.858468383513067},"location":"Left Knee"},{"euler":{"heading":62.046908325966875,"pitch":89.76448763098477,"roll":3.8908681246764094},"location":"Left Ankle"},{"euler":{"heading":66.95295151965539,"pitch":-21.694269244977882,"roll":-27.7954649165709},"location":"Right Ankle"},{"euler":{"heading":173.06386903875756,"pitch":-161.27638495299442,"roll":54.033316690485265},"location":"Right Hip"},{"euler":{"heading":277.01305755521145,"pitch":-115.96618419563092,"roll":54.32470537578308},"location":"Right Knee"},{"euler":{"heading":76.19388429483818,"pitch":-134.78035326939025,"roll":56.21731349681399},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.479"} +{"sensors":[{"euler":{"heading":69.59411195518977,"pitch":124.59573358180464,"roll":19.353871545161763},"location":"Left Knee"},{"euler":{"heading":58.585967493370184,"pitch":90.2005388678863,"roll":3.5392813122087685},"location":"Left Ankle"},{"euler":{"heading":65.77015636768985,"pitch":-21.718592320480095,"roll":-28.24716842491381},"location":"Right Ankle"},{"euler":{"heading":174.4637321348818,"pitch":-160.55499645769498,"roll":52.87998502143674},"location":"Right Hip"},{"euler":{"heading":277.8180017996903,"pitch":-114.18831577606784,"roll":53.89223483820478},"location":"Right Knee"},{"euler":{"heading":70.04949586535436,"pitch":-135.68356794245122,"roll":56.5080821471326},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.579"} +{"sensors":[{"euler":{"heading":69.8722007596708,"pitch":123.67991022362418,"roll":19.543484390645588},"location":"Left Knee"},{"euler":{"heading":55.908620744033165,"pitch":90.86798498109766,"roll":3.597853180987892},"location":"Left Ankle"},{"euler":{"heading":67.33689073092087,"pitch":-22.884233088432083,"roll":-27.26620158242243},"location":"Right Ankle"},{"euler":{"heading":174.89235892139362,"pitch":-160.26199681192548,"roll":51.716986519293066},"location":"Right Hip"},{"euler":{"heading":276.7549516197213,"pitch":-112.71323419846107,"roll":55.615511354384296},"location":"Right Knee"},{"euler":{"heading":64.76329627881893,"pitch":-136.9152111482061,"roll":56.93852393241934},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.680"} +{"sensors":[{"euler":{"heading":70.79748068370372,"pitch":122.61816920126176,"roll":19.17663595158103},"location":"Left Knee"},{"euler":{"heading":54.036508669629846,"pitch":91.52493648298791,"roll":4.200567862889103},"location":"Left Ankle"},{"euler":{"heading":70.47820165782878,"pitch":-24.489559779588877,"roll":-25.064581424180187},"location":"Right Ankle"},{"euler":{"heading":174.40312302925426,"pitch":-160.29204713073295,"roll":50.97028786736376},"location":"Right Hip"},{"euler":{"heading":274.7482064577492,"pitch":-115.15441077861497,"roll":58.360210218945866},"location":"Right Knee"},{"euler":{"heading":60.22446665093704,"pitch":-138.49869003338551,"roll":57.49467153917741},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.781"} +{"sensors":[{"euler":{"heading":72.14273261533336,"pitch":121.51260228113559,"roll":18.240222356422926},"location":"Left Knee"},{"euler":{"heading":53.201607802666864,"pitch":92.14119283468912,"roll":5.568011076600193},"location":"Left Ankle"},{"euler":{"heading":72.91788149204591,"pitch":-25.68435380162999,"roll":-23.60812328176217},"location":"Right Ankle"},{"euler":{"heading":173.12531072632882,"pitch":-160.61284241765966,"roll":50.55450908062738},"location":"Right Hip"},{"euler":{"heading":272.48588581197424,"pitch":-117.01396970075348,"roll":60.81793919705128},"location":"Right Knee"},{"euler":{"heading":56.36451998584334,"pitch":-140.50507103004696,"roll":58.107704385259666},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.882"} +{"sensors":[{"euler":{"heading":74.58470935380002,"pitch":120.84259205302203,"roll":16.166200120780633},"location":"Left Knee"},{"euler":{"heading":53.30644702240018,"pitch":92.12082355122021,"roll":8.286209968940174},"location":"Left Ankle"},{"euler":{"heading":74.45734334284131,"pitch":-26.52216842146699,"roll":-22.80356095358595},"location":"Right Ankle"},{"euler":{"heading":172.50027965369594,"pitch":-160.74530817589368,"roll":50.380308172564646},"location":"Right Hip"},{"euler":{"heading":270.6060472307768,"pitch":-117.67507273067812,"roll":62.41114527734615},"location":"Right Knee"},{"euler":{"heading":52.740567987259006,"pitch":-141.79831392704227,"roll":58.6281839467337},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.982"} +{"sensors":[{"euler":{"heading":78.09498841842002,"pitch":120.05208284771983,"roll":13.599580108702572},"location":"Left Knee"},{"euler":{"heading":54.91330232016016,"pitch":92.2774911960982,"roll":12.232588972046157},"location":"Left Ankle"},{"euler":{"heading":75.38035900855719,"pitch":-27.20120157932029,"roll":-22.441954858227355},"location":"Right Ankle"},{"euler":{"heading":171.71275168832636,"pitch":-161.06452735830433,"roll":50.592277355308184},"location":"Right Hip"},{"euler":{"heading":269.56419250769915,"pitch":-118.52631545761032,"roll":63.082530749611536},"location":"Right Knee"},{"euler":{"heading":48.2352611885331,"pitch":-140.71848253433805,"roll":58.69036555206033},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.84"} +{"sensors":[{"euler":{"heading":80.92298957657802,"pitch":120.03437456294785,"roll":11.833372097832315},"location":"Left Knee"},{"euler":{"heading":54.87197208814415,"pitch":91.57474207648839,"roll":14.365580074841542},"location":"Left Ankle"},{"euler":{"heading":75.94232310770147,"pitch":-27.80608142138826,"roll":-22.32900937240462},"location":"Right Ankle"},{"euler":{"heading":171.30397651949372,"pitch":-161.2955746224739,"roll":51.183049619777364},"location":"Right Hip"},{"euler":{"heading":269.1765232569293,"pitch":-119.0174339118493,"roll":63.205527674650384},"location":"Right Knee"},{"euler":{"heading":79.38048506967979,"pitch":-138.80913428090426,"roll":58.1088289968543},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.186"} +{"sensors":[{"euler":{"heading":80.43069061892021,"pitch":120.93093710665308,"roll":12.118784888049085},"location":"Left Knee"},{"euler":{"heading":52.27852487932973,"pitch":90.72976786883956,"roll":13.679022067357389},"location":"Left Ankle"},{"euler":{"heading":76.25434079693133,"pitch":-28.244223279249436,"roll":-22.52735843516416},"location":"Right Ankle"},{"euler":{"heading":171.15482886754432,"pitch":-161.49726716022653,"roll":51.92724465779963},"location":"Right Hip"},{"euler":{"heading":269.27762093123636,"pitch":-119.09069052066437,"roll":62.90372490718535},"location":"Right Knee"},{"euler":{"heading":107.21743656271181,"pitch":-136.74072085281384,"roll":57.29794609716887},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.287"} +{"sensors":[{"euler":{"heading":76.8563715570282,"pitch":122.69409339598778,"roll":13.919406399244178},"location":"Left Knee"},{"euler":{"heading":47.40692239139676,"pitch":89.6692910819556,"roll":10.517369860621649},"location":"Left Ankle"},{"euler":{"heading":75.9976567172382,"pitch":-28.119800951324493,"roll":-23.099622591647744},"location":"Right Ankle"},{"euler":{"heading":171.0705959807899,"pitch":-161.71004044420388,"roll":52.715770192019676},"location":"Right Hip"},{"euler":{"heading":269.51235883811273,"pitch":-119.06287146859793,"roll":62.17585241646682},"location":"Right Knee"},{"euler":{"heading":132.37069290644064,"pitch":-135.04164876753245,"roll":56.62440148745198},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.388"} +{"sensors":[{"euler":{"heading":73.16448440132538,"pitch":124.505934056389,"roll":15.95871575931976},"location":"Left Knee"},{"euler":{"heading":78.5162301522571,"pitch":88.97736197376005,"roll":7.034382874559483},"location":"Left Ankle"},{"euler":{"heading":75.02289104551438,"pitch":-27.495320856192045,"roll":-24.20841033248297},"location":"Right Ankle"},{"euler":{"heading":171.1572863827109,"pitch":-162.1015363997835,"roll":53.55669317281772},"location":"Right Hip"},{"euler":{"heading":270.42987295430146,"pitch":-118.64408432173813,"roll":60.858267174820135},"location":"Right Knee"},{"euler":{"heading":119.73987361579658,"pitch":-134.1124838907792,"roll":56.16821133870678},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.488"} +{"sensors":[{"euler":{"heading":71.01053596119284,"pitch":125.2490906507501,"roll":17.594094183387785},"location":"Left Knee"},{"euler":{"heading":71.81460713703139,"pitch":89.14837577638404,"roll":4.849694587103535},"location":"Left Ankle"},{"euler":{"heading":72.61435194096295,"pitch":-26.47703877057284,"roll":-25.650069299234673},"location":"Right Ankle"},{"euler":{"heading":171.59780774443982,"pitch":-162.37263275980513,"roll":54.307273855535946},"location":"Right Hip"},{"euler":{"heading":272.8118856588713,"pitch":-117.69842588956432,"roll":58.61619045733812},"location":"Right Knee"},{"euler":{"heading":108.57213625421693,"pitch":-133.6574855017013,"roll":55.9263902048361},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.589"} +{"sensors":[{"euler":{"heading":69.73448236507356,"pitch":125.32418158567509,"roll":18.722184765049008},"location":"Left Knee"},{"euler":{"heading":66.31439642332826,"pitch":89.23978819874563,"roll":3.5209751283931814},"location":"Left Ankle"},{"euler":{"heading":68.89666674686666,"pitch":-24.92933489351556,"roll":-27.216312369311208},"location":"Right Ankle"},{"euler":{"heading":172.90677696999583,"pitch":-161.80411948382462,"roll":54.270296469982355},"location":"Right Hip"},{"euler":{"heading":275.91819709298414,"pitch":-116.37858330060789,"roll":55.63582141160431},"location":"Right Knee"},{"euler":{"heading":98.77117262879524,"pitch":-133.52923695153117,"roll":56.00875118435249},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.690"} +{"sensors":[{"euler":{"heading":68.9235341285662,"pitch":124.98551342710758,"roll":19.524966288544107},"location":"Left Knee"},{"euler":{"heading":61.80170678099544,"pitch":89.38455937887106,"roll":2.668877615553863},"location":"Left Ankle"},{"euler":{"heading":66.27575007217999,"pitch":-24.017651404164006,"roll":-28.288431132380087},"location":"Right Ankle"},{"euler":{"heading":174.18484927299625,"pitch":-161.05495753544216,"roll":53.58701682298412},"location":"Right Hip"},{"euler":{"heading":277.95762738368575,"pitch":-114.95322497054711,"roll":53.65973927044388},"location":"Right Knee"},{"euler":{"heading":90.25030536591572,"pitch":-134.26381325637806,"roll":56.23912606591725},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.790"} +{"sensors":[{"euler":{"heading":68.64368071570958,"pitch":124.38071208439682,"roll":19.9537196596897},"location":"Left Knee"},{"euler":{"heading":58.4465361028959,"pitch":89.74610344098396,"roll":2.439489853998477},"location":"Left Ankle"},{"euler":{"heading":66.10442506496199,"pitch":-24.609636263747603,"roll":-28.19708801914208},"location":"Right Ankle"},{"euler":{"heading":174.72261434569663,"pitch":-160.58071178189795,"roll":52.57206514068571},"location":"Right Hip"},{"euler":{"heading":277.91186464531717,"pitch":-113.33915247349239,"roll":54.03751534339949},"location":"Right Knee"},{"euler":{"heading":82.60027482932415,"pitch":-135.46868193074025,"roll":56.59646345932553},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.891"} +{"sensors":[{"euler":{"heading":68.99181264413862,"pitch":123.58639087595714,"roll":19.91459769372073},"location":"Left Knee"},{"euler":{"heading":55.78938249260631,"pitch":90.10899309688557,"roll":2.6330408685986293},"location":"Left Ankle"},{"euler":{"heading":68.41273255846579,"pitch":-25.611172637372846,"roll":-26.764879217227872},"location":"Right Ankle"},{"euler":{"heading":174.300352911127,"pitch":-160.58514060370817,"roll":51.60860862661714},"location":"Right Hip"},{"euler":{"heading":276.1206781807855,"pitch":-112.55523722614315,"roll":56.14626380905955},"location":"Right Knee"},{"euler":{"heading":75.93399734639173,"pitch":-137.07181373766622,"roll":57.04931711339297},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.992"} +{"sensors":[{"euler":{"heading":69.90513137972476,"pitch":122.65275178836143,"roll":19.34813792434866},"location":"Left Knee"},{"euler":{"heading":54.016694243345675,"pitch":90.49184378719701,"roll":3.4322367817387662},"location":"Left Ankle"},{"euler":{"heading":71.47770930261922,"pitch":-26.793805373635564,"roll":-24.744641295505087},"location":"Right Ankle"},{"euler":{"heading":172.8453176200143,"pitch":-160.97037654333735,"roll":51.10399776395543},"location":"Right Hip"},{"euler":{"heading":273.43361036270693,"pitch":-119.02471350352883,"roll":58.9566374281536},"location":"Right Knee"},{"euler":{"heading":70.21559761175256,"pitch":-139.0708823638996,"roll":57.63813540205368},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.93"} +{"sensors":[{"euler":{"heading":71.61461824175228,"pitch":121.7249766095253,"roll":18.025824131913794},"location":"Left Knee"},{"euler":{"heading":53.30877481901111,"pitch":90.7301594084773,"roll":5.32026310356489},"location":"Left Ankle"},{"euler":{"heading":73.65493837235731,"pitch":-27.545674836272006,"roll":-23.46392716595458},"location":"Right Ankle"},{"euler":{"heading":171.59203585801288,"pitch":-161.36708888900364,"roll":50.737347987559886},"location":"Right Hip"},{"euler":{"heading":270.91524932643625,"pitch":-120.44099215317596,"roll":61.18597368533824},"location":"Right Knee"},{"euler":{"heading":65.3940378505773,"pitch":-141.21379412750966,"roll":58.31182186184831},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.194"} +{"sensors":[{"euler":{"heading":74.75940641757707,"pitch":121.05872894857276,"roll":15.516991718722416},"location":"Left Knee"},{"euler":{"heading":54.51539733711,"pitch":91.20089346762958,"roll":8.981986793208401},"location":"Left Ankle"},{"euler":{"heading":74.92069453512157,"pitch":-27.92235735264481,"roll":-22.805034449359123},"location":"Right Ankle"},{"euler":{"heading":170.8015822722116,"pitch":-161.58663000010327,"roll":50.8136131888039},"location":"Right Hip"},{"euler":{"heading":268.96747439379266,"pitch":-121.08439293785837,"roll":62.49862631680442},"location":"Right Knee"},{"euler":{"heading":59.77963406551957,"pitch":-141.4611647147587,"roll":58.443139675663474},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.295"} +{"sensors":[{"euler":{"heading":78.22721577581936,"pitch":120.53410605371549,"roll":13.171542546850175},"location":"Left Knee"},{"euler":{"heading":55.045107603399,"pitch":90.69955412086664,"roll":12.15878811388756},"location":"Left Ankle"},{"euler":{"heading":75.69112508160941,"pitch":-28.14887161738033,"roll":-22.54953100442321},"location":"Right Ankle"},{"euler":{"heading":170.12767404499044,"pitch":-161.84046700009293,"roll":51.30100186992351},"location":"Right Hip"},{"euler":{"heading":267.6894769544134,"pitch":-121.67595364407254,"roll":63.04876368512397},"location":"Right Knee"},{"euler":{"heading":53.895420658967616,"pitch":-139.77754824328284,"roll":58.180075708097135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.395"} +{"sensors":[{"euler":{"heading":79.49199419823744,"pitch":120.91194544834394,"roll":12.554388292165157},"location":"Left Knee"},{"euler":{"heading":53.3093468430591,"pitch":89.87959870877998,"roll":12.524159302498806},"location":"Left Ankle"},{"euler":{"heading":76.27201257344848,"pitch":-28.2902344556423,"roll":-22.750827903980888},"location":"Right Ankle"},{"euler":{"heading":170.0336566404914,"pitch":-161.85642030008364,"roll":51.91465168293116},"location":"Right Hip"},{"euler":{"heading":267.08927925897206,"pitch":-121.80835827966528,"roll":63.112637316611575},"location":"Right Knee"},{"euler":{"heading":84.25587859307086,"pitch":-137.87479341895454,"roll":57.430818137287424},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.497"} +{"sensors":[{"euler":{"heading":76.74904477841369,"pitch":122.39575090350955,"roll":13.955199462948642},"location":"Left Knee"},{"euler":{"heading":48.8346621587532,"pitch":88.89788883790197,"roll":10.121743372248925},"location":"Left Ankle"},{"euler":{"heading":76.36356131610363,"pitch":-28.10496101007807,"roll":-23.2944951135828},"location":"Right Ankle"},{"euler":{"heading":170.21154097644225,"pitch":-161.90202827007528,"roll":52.535686514638044},"location":"Right Hip"},{"euler":{"heading":266.93035133307484,"pitch":-121.65252245169876,"roll":62.73887358495042},"location":"Right Knee"},{"euler":{"heading":111.61779073376377,"pitch":-136.0873140770591,"roll":56.71273632355868},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.597"} +{"sensors":[{"euler":{"heading":72.91789030057232,"pitch":124.3436758131586,"roll":15.98467951665378},"location":"Left Knee"},{"euler":{"heading":79.51369594287789,"pitch":87.97059995411179,"roll":6.465819035024033},"location":"Left Ankle"},{"euler":{"heading":75.83345518449327,"pitch":-27.563214909070265,"roll":-24.22754560222452},"location":"Right Ankle"},{"euler":{"heading":170.45913687879803,"pitch":-162.10557544306778,"roll":53.263367863174246},"location":"Right Hip"},{"euler":{"heading":267.4623161997674,"pitch":-121.1810202065289,"roll":61.75873622645538},"location":"Right Knee"},{"euler":{"heading":100.71226166038738,"pitch":-134.9035826693532,"roll":56.16021269120281},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.698"} +{"sensors":[{"euler":{"heading":70.7136012705151,"pitch":125.34680823184274,"roll":17.692461564988403},"location":"Left Knee"},{"euler":{"heading":71.79357634859011,"pitch":88.01728995870062,"roll":3.8817371315216302},"location":"Left Ankle"},{"euler":{"heading":74.16260966604395,"pitch":-26.706893418163236,"roll":-25.54229104200207},"location":"Right Ankle"},{"euler":{"heading":171.02572319091826,"pitch":-162.407517898761,"roll":53.99328107685682},"location":"Right Hip"},{"euler":{"heading":269.24108457979065,"pitch":-120.21291818587602,"roll":59.970362603809846},"location":"Right Knee"},{"euler":{"heading":91.51603549434864,"pitch":-134.20697440241787,"roll":55.85669142208253},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.799"} +{"sensors":[{"euler":{"heading":69.4797411434636,"pitch":125.54337740865847,"roll":18.941965408489562},"location":"Left Knee"},{"euler":{"heading":65.90796871373111,"pitch":88.30931096283055,"roll":2.474813418369467},"location":"Left Ankle"},{"euler":{"heading":70.65259869943955,"pitch":-25.098704076346912,"roll":-27.231811937801865},"location":"Right Ankle"},{"euler":{"heading":172.12315087182643,"pitch":-162.0605161088849,"roll":54.23770296917114},"location":"Right Hip"},{"euler":{"heading":272.2669761218116,"pitch":-118.74162636728842,"roll":57.20457634342887},"location":"Right Knee"},{"euler":{"heading":83.28943194491377,"pitch":-133.8800269621761,"roll":55.82727227987427},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.899"} +{"sensors":[{"euler":{"heading":68.85676702911724,"pitch":125.13278966779262,"roll":19.891518867640606},"location":"Left Knee"},{"euler":{"heading":61.354671842358,"pitch":88.8721298665475,"roll":1.6148320765325204},"location":"Left Ankle"},{"euler":{"heading":67.3748388294956,"pitch":-23.64508366871222,"roll":-28.56488074402168},"location":"Right Ankle"},{"euler":{"heading":173.66708578464377,"pitch":-161.2419644979964,"roll":53.657682672254026},"location":"Right Hip"},{"euler":{"heading":274.78402850963045,"pitch":-117.16746373055958,"roll":54.73411870908598},"location":"Right Knee"},{"euler":{"heading":76.3604887504224,"pitch":-134.35452426595847,"roll":56.03204505188685},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.0"} +{"sensors":[{"euler":{"heading":68.75234032620551,"pitch":124.31951070101337,"roll":20.50236698087655},"location":"Left Knee"},{"euler":{"heading":58.0254546581222,"pitch":89.66616687989276,"roll":1.4033488688792684},"location":"Left Ankle"},{"euler":{"heading":66.41860494654604,"pitch":-23.611825301841,"roll":-28.99589266961951},"location":"Right Ankle"},{"euler":{"heading":174.91287720617942,"pitch":-160.56151804819677,"roll":52.47941440502863},"location":"Right Hip"},{"euler":{"heading":275.5681256586674,"pitch":-115.40071735750362,"roll":54.31695683817738},"location":"Right Knee"},{"euler":{"heading":70.34318987538018,"pitch":-135.31282183936264,"roll":56.378840546698164},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.103"} +{"sensors":[{"euler":{"heading":69.19585629358497,"pitch":123.39380963091205,"roll":20.57088028278889},"location":"Left Knee"},{"euler":{"heading":55.26665919230999,"pitch":90.25580019190349,"roll":1.5692639819913414},"location":"Left Ankle"},{"euler":{"heading":68.02674445189143,"pitch":-24.950642771656902,"roll":-27.802553402657562},"location":"Right Ankle"},{"euler":{"heading":170.62158948556146,"pitch":-160.3241162433771,"roll":51.200222964525764},"location":"Right Hip"},{"euler":{"heading":274.7488130928007,"pitch":-113.76689562175326,"roll":55.76651115435965},"location":"Right Knee"},{"euler":{"heading":65.02762088784216,"pitch":-136.6315396554264,"roll":56.828456492028344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.204"} +{"sensors":[{"euler":{"heading":70.14502066422648,"pitch":122.29192866782084,"roll":20.151292254510004},"location":"Left Knee"},{"euler":{"heading":53.37124327307899,"pitch":90.87397017271314,"roll":2.2998375837922076},"location":"Left Ankle"},{"euler":{"heading":70.84907000670229,"pitch":-26.399328494491215,"roll":-25.709798062391805},"location":"Right Ankle"},{"euler":{"heading":170.4969305370053,"pitch":-160.39795461903938,"roll":50.48645066807319},"location":"Right Hip"},{"euler":{"heading":272.55518178352065,"pitch":-119.94645605957794,"roll":58.56486003892368},"location":"Right Knee"},{"euler":{"heading":60.49985879905795,"pitch":-138.27463568988375,"roll":57.45811084282551},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.305"} +{"sensors":[{"euler":{"heading":71.85551859780384,"pitch":121.20648580103875,"roll":18.929913029059005},"location":"Left Knee"},{"euler":{"heading":52.58411894577109,"pitch":91.43657315544183,"roll":3.963603825412987},"location":"Left Ankle"},{"euler":{"heading":73.18291300603207,"pitch":-27.184395645042095,"roll":-24.145068256152626},"location":"Right Ankle"},{"euler":{"heading":169.49098748330476,"pitch":-160.83940915713544,"roll":50.237805601265876},"location":"Right Hip"},{"euler":{"heading":269.9309136051686,"pitch":-125.51431045362015,"roll":61.03962403503132},"location":"Right Knee"},{"euler":{"heading":56.574872919152156,"pitch":-140.15342212089539,"roll":58.099799758542964},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.406"} +{"sensors":[{"euler":{"heading":74.77621673802346,"pitch":120.69208722093488,"roll":16.555671726153104},"location":"Left Knee"},{"euler":{"heading":53.13820705119398,"pitch":91.65541583989766,"roll":7.254743442871688},"location":"Left Ankle"},{"euler":{"heading":74.60837170542887,"pitch":-27.484706080537887,"roll":-23.424311430537365},"location":"Right Ankle"},{"euler":{"heading":169.11688873497428,"pitch":-160.9742182414219,"roll":50.18902504113929},"location":"Right Hip"},{"euler":{"heading":267.61907224465176,"pitch":-125.66912940825814,"roll":62.65441163152819},"location":"Right Knee"},{"euler":{"heading":52.44863562723694,"pitch":-141.06307990880586,"roll":58.44606978268867},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.507"} +{"sensors":[{"euler":{"heading":78.43609506422112,"pitch":119.8666284988414,"roll":13.950104553537795},"location":"Left Knee"},{"euler":{"heading":54.149386346074586,"pitch":91.71487425590789,"roll":11.004269098584519},"location":"Left Ankle"},{"euler":{"heading":75.47253453488598,"pitch":-27.448735472484096,"roll":-23.200630287483627},"location":"Right Ankle"},{"euler":{"heading":168.47394986147688,"pitch":-161.23929641727975,"roll":50.582622537025365},"location":"Right Hip"},{"euler":{"heading":265.7384150201866,"pitch":-126.22721646743233,"roll":63.445220468375375},"location":"Right Knee"},{"euler":{"heading":47.641272064513245,"pitch":-139.46927191792528,"roll":58.3202128044198},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.608"} +{"sensors":[{"euler":{"heading":80.861235557799,"pitch":119.99871564895726,"roll":12.473844098184015},"location":"Left Knee"},{"euler":{"heading":53.634447711467125,"pitch":91.0558868303171,"roll":12.522592188726067},"location":"Left Ankle"},{"euler":{"heading":76.13153108139738,"pitch":-27.291361925235684,"roll":-23.418067258735267},"location":"Right Ankle"},{"euler":{"heading":168.3140548753292,"pitch":-161.32786677555177,"roll":51.23686028332283},"location":"Right Hip"},{"euler":{"heading":264.40832351816795,"pitch":-126.3357448206891,"roll":63.756948421537835},"location":"Right Knee"},{"euler":{"heading":78.58964485806192,"pitch":-137.54109472613277,"roll":57.58819152397783},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.709"} +{"sensors":[{"euler":{"heading":79.58136200201912,"pitch":121.14884408406154,"roll":13.095209688365614},"location":"Left Knee"},{"euler":{"heading":50.277252940320416,"pitch":90.28154814728539,"roll":11.12658296985346},"location":"Left Ankle"},{"euler":{"heading":76.38712797325765,"pitch":-26.943475732712116,"roll":-23.726260532861744},"location":"Right Ankle"},{"euler":{"heading":168.38889938779627,"pitch":-161.4638300979966,"roll":51.95692425499055},"location":"Right Hip"},{"euler":{"heading":263.61749116635116,"pitch":-126.04592033862019,"roll":63.612503579384054},"location":"Right Knee"},{"euler":{"heading":106.34318037225574,"pitch":-135.5682352535195,"roll":56.78562237158005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.810"} +{"sensors":[{"euler":{"heading":76.12322580181721,"pitch":122.90895967565538,"roll":14.935688719529054},"location":"Left Knee"},{"euler":{"heading":81.07452764628837,"pitch":89.41589333255685,"roll":7.707674672868114},"location":"Left Ankle"},{"euler":{"heading":76.07341517593188,"pitch":-26.261628159440903,"roll":-24.472384479575574},"location":"Right Ankle"},{"euler":{"heading":168.50625944901665,"pitch":-161.71119708819697,"roll":52.767481829491494},"location":"Right Hip"},{"euler":{"heading":263.33074204971604,"pitch":-125.47882830475817,"roll":62.951253221445654},"location":"Right Knee"},{"euler":{"heading":95.80886233503017,"pitch":-134.13641172816756,"roll":56.213310134422045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.911"} +{"sensors":[{"euler":{"heading":73.41715322163549,"pitch":124.26181370808985,"roll":16.76711984757615},"location":"Left Knee"},{"euler":{"heading":72.97957488165954,"pitch":89.28055399930118,"roll":4.8181572055813024},"location":"Left Ankle"},{"euler":{"heading":74.8160736583387,"pitch":-25.372965343496816,"roll":-25.66889603161802},"location":"Right Ankle"},{"euler":{"heading":168.855633504115,"pitch":-162.12757737937727,"roll":53.62823364654235},"location":"Right Hip"},{"euler":{"heading":264.16641784474444,"pitch":-124.43094547428235,"roll":61.54362789930109},"location":"Right Knee"},{"euler":{"heading":87.03422610152717,"pitch":-133.4227705553508,"roll":55.93572912097984},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.12"} +{"sensors":[{"euler":{"heading":71.88168789947194,"pitch":123.05438233728087,"roll":18.184157862818537},"location":"Left Knee"},{"euler":{"heading":66.9128673934936,"pitch":89.51499859937105,"roll":3.223841485023173},"location":"Left Ankle"},{"euler":{"heading":71.83446629250483,"pitch":-24.448168809147134,"roll":-27.12700642845622},"location":"Right Ankle"},{"euler":{"heading":169.7138201537035,"pitch":-162.20856964143954,"roll":54.19041028188812},"location":"Right Hip"},{"euler":{"heading":266.95602606027,"pitch":-122.71285092685412,"roll":59.03926510937098},"location":"Right Knee"},{"euler":{"heading":79.01205349137446,"pitch":-132.90549349981572,"roll":55.84840620888186},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.114"} +{"sensors":[{"euler":{"heading":70.99351910952474,"pitch":123.06769410355278,"roll":19.103242076536684},"location":"Left Knee"},{"euler":{"heading":61.94033065414424,"pitch":89.80724873943396,"roll":2.1702073365208556},"location":"Left Ankle"},{"euler":{"heading":67.93851966325434,"pitch":-23.284601928232423,"roll":-28.6393057856106},"location":"Right Ankle"},{"euler":{"heading":171.12993813833313,"pitch":-161.67521267729558,"roll":53.940119253699315},"location":"Right Hip"},{"euler":{"heading":270.054173454243,"pitch":-120.89156583416872,"roll":56.26033859843388},"location":"Right Knee"},{"euler":{"heading":72.19209814223701,"pitch":-133.08369414983414,"roll":56.03856558799367},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.215"} +{"sensors":[{"euler":{"heading":70.47541719857227,"pitch":122.81717469319752,"roll":19.649167868883016},"location":"Left Knee"},{"euler":{"heading":57.990047588729816,"pitch":90.08277386549057,"roll":1.64068660286877},"location":"Left Ankle"},{"euler":{"heading":65.8509176969289,"pitch":-23.09989173540918,"roll":-29.63787520704954},"location":"Right Ankle"},{"euler":{"heading":172.60444432449984,"pitch":-161.03269140956604,"roll":53.046107328329384},"location":"Right Hip"},{"euler":{"heading":271.6050061088187,"pitch":-119.13990925075186,"roll":55.00305473859049},"location":"Right Knee"},{"euler":{"heading":66.36038832801331,"pitch":-134.07532473485074,"roll":56.35345902919431},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.316"} +{"sensors":[{"euler":{"heading":70.54662547871504,"pitch":122.29170722387778,"roll":19.784251081994714},"location":"Left Knee"},{"euler":{"heading":54.93479282985683,"pitch":90.38699647894151,"roll":1.601617942581893},"location":"Left Ankle"},{"euler":{"heading":66.30957592723601,"pitch":-24.227402561868264,"roll":-29.167837686344583},"location":"Right Ankle"},{"euler":{"heading":173.28774989204985,"pitch":-160.86692226860944,"roll":51.84774659549645},"location":"Right Hip"},{"euler":{"heading":271.3570054979369,"pitch":-117.32591832567667,"roll":55.87774926473144},"location":"Right Knee"},{"euler":{"heading":61.29309949521198,"pitch":-135.53654226136567,"roll":56.74311312627488},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.417"} +{"sensors":[{"euler":{"heading":71.26071293084354,"pitch":121.50628650149,"roll":19.443325973795243},"location":"Left Knee"},{"euler":{"heading":52.67881354687115,"pitch":90.72954683104736,"roll":2.0727061483237037},"location":"Left Ankle"},{"euler":{"heading":69.27236833451241,"pitch":-25.723412305681435,"roll":-27.169803917710126},"location":"Right Ankle"},{"euler":{"heading":172.82772490284486,"pitch":-161.01148004174848,"roll":51.04422193594681},"location":"Right Hip"},{"euler":{"heading":269.3025549481432,"pitch":-118.705826493109,"roll":58.5274743382583},"location":"Right Knee"},{"euler":{"heading":57.10128954569078,"pitch":-137.47038803522912,"roll":57.32505181364739},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.519"} +{"sensors":[{"euler":{"heading":72.60964163775918,"pitch":120.743157851341,"roll":18.43649337641572},"location":"Left Knee"},{"euler":{"heading":51.479682192184036,"pitch":91.05659214794262,"roll":3.3654355334913335},"location":"Left Ankle"},{"euler":{"heading":72.35138150106117,"pitch":-26.944821075113293,"roll":-25.115323525939115},"location":"Right Ankle"},{"euler":{"heading":171.48870241256037,"pitch":-161.42908203757366,"roll":50.75854974235213},"location":"Right Hip"},{"euler":{"heading":266.6097994533289,"pitch":-124.8164938437981,"roll":61.08722690443248},"location":"Right Knee"},{"euler":{"heading":53.5661605911217,"pitch":-139.6920992317062,"roll":57.94254663228266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.621"} +{"sensors":[{"euler":{"heading":74.94242747398327,"pitch":120.26259206620689,"roll":16.430344038774145},"location":"Left Knee"},{"euler":{"heading":51.48171397296563,"pitch":91.03218293314836,"roll":6.2538919801422},"location":"Left Ankle"},{"euler":{"heading":74.17249335095507,"pitch":-27.531588967601962,"roll":-24.072541173345204},"location":"Right Ankle"},{"euler":{"heading":170.68358217130435,"pitch":-161.6611738338163,"roll":50.52644476811692},"location":"Right Hip"},{"euler":{"heading":264.117569507996,"pitch":-125.9535944594183,"roll":63.022254213989235},"location":"Right Knee"},{"euler":{"heading":50.23454453200953,"pitch":-141.5416393085356,"roll":58.43579196905439},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.721"} +{"sensors":[{"euler":{"heading":78.44818472658494,"pitch":119.5363328595862,"roll":13.781059634896732},"location":"Left Knee"},{"euler":{"heading":53.271042575669064,"pitch":91.43521463983352,"roll":10.29725278212798},"location":"Left Ankle"},{"euler":{"heading":75.29274401585955,"pitch":-27.70343007084177,"roll":-23.590287056010684},"location":"Right Ankle"},{"euler":{"heading":169.84647395417392,"pitch":-161.87005645043467,"roll":50.723800291305224},"location":"Right Hip"},{"euler":{"heading":261.9745625571964,"pitch":-127.22073501347647,"roll":64.08252879259031},"location":"Right Knee"},{"euler":{"heading":45.88609007880857,"pitch":-140.61872537768204,"roll":58.498462772148955},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.822"} +{"sensors":[{"euler":{"heading":81.54086625392645,"pitch":119.52644957362759,"roll":11.696703671407057},"location":"Left Knee"},{"euler":{"heading":53.531438318102154,"pitch":90.58544317585017,"roll":12.573777503915183},"location":"Left Ankle"},{"euler":{"heading":76.25721961427361,"pitch":-27.701837063757594,"roll":-23.550008350409616},"location":"Right Ankle"},{"euler":{"heading":169.44932655875652,"pitch":-161.9080508053912,"roll":51.282670262174705},"location":"Right Hip"},{"euler":{"heading":260.3083563014768,"pitch":-127.88616151212882,"roll":64.63677591333128},"location":"Right Knee"},{"euler":{"heading":76.89748107092771,"pitch":-138.76310283991384,"roll":57.86111649493406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.923"} +{"sensors":[{"euler":{"heading":81.39927962853382,"pitch":120.49880461626483,"roll":11.733283304266353},"location":"Left Knee"},{"euler":{"heading":50.95954448629194,"pitch":89.53939885826516,"roll":11.897649753523666},"location":"Left Ankle"},{"euler":{"heading":76.83149765284625,"pitch":-27.475403357381836,"roll":-23.832507515368654},"location":"Right Ankle"},{"euler":{"heading":169.4293939028809,"pitch":-161.84849572485209,"roll":51.973153235957234},"location":"Right Hip"},{"euler":{"heading":259.09627067132914,"pitch":-128.07254536091594,"roll":64.75434832199815},"location":"Right Knee"},{"euler":{"heading":104.67023296383493,"pitch":-136.74304255592244,"roll":56.98125484544065},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.25"} +{"sensors":[{"euler":{"heading":77.83435166568044,"pitch":122.26142415463835,"roll":13.516204973839718},"location":"Left Knee"},{"euler":{"heading":46.06359003766275,"pitch":88.51045897243864,"roll":8.789134778171299},"location":"Left Ankle"},{"euler":{"heading":76.87334788756162,"pitch":-27.102863021643653,"roll":-24.31175676383179},"location":"Right Ankle"},{"euler":{"heading":169.61145451259281,"pitch":-161.85739615236687,"roll":52.69458791236151},"location":"Right Hip"},{"euler":{"heading":258.5303936041962,"pitch":-127.69654082482435,"roll":64.32891348979834},"location":"Right Knee"},{"euler":{"heading":129.92820966745145,"pitch":-134.9999883003302,"roll":56.29562936089659},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.126"} +{"sensors":[{"euler":{"heading":74.1821664991124,"pitch":124.16028173917452,"roll":15.545834476455747},"location":"Left Knee"},{"euler":{"heading":77.00098103389648,"pitch":87.89691307519477,"roll":5.241471300354169},"location":"Left Ankle"},{"euler":{"heading":76.26726309880546,"pitch":-26.567576719479288,"roll":-25.24933108744861},"location":"Right Ankle"},{"euler":{"heading":169.86905906133353,"pitch":-162.20915653713018,"roll":53.58762912112537},"location":"Right Hip"},{"euler":{"heading":258.92735424377656,"pitch":-126.76438674234193,"roll":63.18352214081851},"location":"Right Knee"},{"euler":{"heading":117.47913870070632,"pitch":-134.09998947029717,"roll":55.89731642480694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.227"} +{"sensors":[{"euler":{"heading":72.47019984920115,"pitch":124.86300356525707,"roll":17.153751028810174},"location":"Left Knee"},{"euler":{"heading":70.16338293050683,"pitch":88.5134717676753,"roll":3.1110741703187523},"location":"Left Ankle"},{"euler":{"heading":74.43428678892492,"pitch":-25.954569047531358,"roll":-26.52439797870375},"location":"Right Ankle"},{"euler":{"heading":170.42590315520016,"pitch":-162.75074088341717,"roll":54.46011620901283},"location":"Right Hip"},{"euler":{"heading":260.8971188193989,"pitch":-125.30044806810774,"roll":61.215169926736664},"location":"Right Knee"},{"euler":{"heading":106.58122483063568,"pitch":-133.50249052326745,"roll":55.707584782326244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.328"} +{"sensors":[{"euler":{"heading":71.62942986428104,"pitch":124.68920320873137,"roll":18.369625925929157},"location":"Left Knee"},{"euler":{"heading":64.67829463745615,"pitch":89.16837459090776,"roll":1.818716753286877},"location":"Left Ankle"},{"euler":{"heading":70.80960811003243,"pitch":-24.202862142778223,"roll":-28.328208180833375},"location":"Right Ankle"},{"euler":{"heading":171.68956283968015,"pitch":-162.45691679507544,"roll":54.67660458811155},"location":"Right Hip"},{"euler":{"heading":263.919906937459,"pitch":-123.42665326129696,"roll":58.368652934063},"location":"Right Knee"},{"euler":{"heading":97.22935234757212,"pitch":-132.5959914709407,"roll":55.968076304093614},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.429"} +{"sensors":[{"euler":{"heading":71.18523687785293,"pitch":124.05153288785823,"roll":19.257663333336243},"location":"Left Knee"},{"euler":{"heading":60.32921517371053,"pitch":89.90778713181699,"roll":1.0430950779581893},"location":"Left Ankle"},{"euler":{"heading":67.62239729902919,"pitch":-23.0325759285004,"roll":-29.557887362750037},"location":"Right Ankle"},{"euler":{"heading":173.18935655571212,"pitch":-161.76122511556792,"roll":54.0589441293004},"location":"Right Hip"},{"euler":{"heading":266.38416624371314,"pitch":-121.40273793516727,"roll":56.044287640656705},"location":"Right Knee"},{"euler":{"heading":89.0126671128149,"pitch":-133.23639232384664,"roll":56.240018673684254},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.530"} +{"sensors":[{"euler":{"heading":71.19171319006765,"pitch":123.1338795990724,"roll":19.78814700000262},"location":"Left Knee"},{"euler":{"heading":57.14004365633948,"pitch":90.8045084186353,"roll":0.9137855701623704},"location":"Left Ankle"},{"euler":{"heading":67.07890756912627,"pitch":-23.46056833565036,"roll":-29.564598626475032},"location":"Right Ankle"},{"euler":{"heading":174.1954209001409,"pitch":-161.23510260401113,"roll":52.85929971637036},"location":"Right Hip"},{"euler":{"heading":266.8832496193418,"pitch":-119.20621414165055,"roll":55.91485887659104},"location":"Right Knee"},{"euler":{"heading":81.82390040153341,"pitch":-134.50025309146199,"roll":56.634766806315824},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.630"} +{"sensors":[{"euler":{"heading":71.70379187106087,"pitch":122.13924163916516,"roll":19.78433230000236},"location":"Left Knee"},{"euler":{"heading":54.56978929070553,"pitch":91.52405757677177,"roll":1.1911570131461335},"location":"Left Ankle"},{"euler":{"heading":69.17726681221365,"pitch":-24.633261502085325,"roll":-27.99563876382753},"location":"Right Ankle"},{"euler":{"heading":173.9446288101268,"pitch":-161.19909234361003,"roll":51.79211974473333},"location":"Right Hip"},{"euler":{"heading":265.37617465740766,"pitch":-117.8105927274855,"roll":57.979622988931936},"location":"Right Knee"},{"euler":{"heading":75.29151036138008,"pitch":-135.9689777823158,"roll":57.140040125684244},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.731"} +{"sensors":[{"euler":{"heading":72.6834126839548,"pitch":121.18156747524864,"roll":19.205899070002125},"location":"Left Knee"},{"euler":{"heading":52.71281036163498,"pitch":92.0529018190946,"roll":1.97204131183152},"location":"Left Ankle"},{"euler":{"heading":72.36579013099228,"pitch":-25.769935351876796,"roll":-25.808574887444777},"location":"Right Ankle"},{"euler":{"heading":172.6501659291141,"pitch":-161.52293310924904,"roll":51.38165777025999},"location":"Right Hip"},{"euler":{"heading":262.6198071916669,"pitch":-88.11703345473694,"roll":60.706660690038746},"location":"Right Knee"},{"euler":{"heading":69.53735932524208,"pitch":-137.8408300040842,"roll":57.70728611311582},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.832"} +{"sensors":[{"euler":{"heading":74.32757141555932,"pitch":120.25716072772377,"roll":17.835309163001913},"location":"Left Knee"},{"euler":{"heading":51.872779325471484,"pitch":92.44761163718513,"roll":3.762337180648368},"location":"Left Ankle"},{"euler":{"heading":75.08546111789305,"pitch":-26.57419181668912,"roll":-24.0277173987003},"location":"Right Ankle"},{"euler":{"heading":171.29139933620272,"pitch":-161.92688979832414,"roll":51.230991993234},"location":"Right Hip"},{"euler":{"heading":259.81407647250023,"pitch":-97.18033010926325,"roll":63.01724462103488},"location":"Right Knee"},{"euler":{"heading":64.75862339271788,"pitch":-140.0692470036758,"roll":58.367807501804236},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.933"} +{"sensors":[{"euler":{"heading":77.2010642740034,"pitch":119.70644465495141,"roll":15.345528246701722},"location":"Left Knee"},{"euler":{"heading":52.929251392924336,"pitch":92.72785047346663,"roll":7.348603462583531},"location":"Left Ankle"},{"euler":{"heading":76.52691500610375,"pitch":-26.973022635020207,"roll":-23.21244565883027},"location":"Right Ankle"},{"euler":{"heading":170.77475940258245,"pitch":-162.05920081849172,"roll":51.2891427939106},"location":"Right Hip"},{"euler":{"heading":257.74516882525023,"pitch":-101.08729709833693,"roll":64.50927015893139},"location":"Right Knee"},{"euler":{"heading":59.39526105344609,"pitch":-140.57482230330822,"roll":58.62477675162381},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.33"} +{"sensors":[{"euler":{"heading":80.74970784660306,"pitch":119.11705018945628,"roll":12.72347542203155},"location":"Left Knee"},{"euler":{"heading":53.998826253631904,"pitch":92.18631542611998,"roll":11.169993116325179},"location":"Left Ankle"},{"euler":{"heading":77.53672350549337,"pitch":-27.194470371518186,"roll":-22.88495109294724},"location":"Right Ankle"},{"euler":{"heading":170.0347834623242,"pitch":-162.34078073664256,"roll":51.78522851451954},"location":"Right Hip"},{"euler":{"heading":256.1269019427252,"pitch":-104.55356738850324,"roll":65.22084314303825},"location":"Right Knee"},{"euler":{"heading":89.42448494810148,"pitch":-138.6985900729774,"roll":58.44979907646143},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.134"} +{"sensors":[{"euler":{"heading":82.96848706194275,"pitch":119.40534517051066,"roll":11.457377879828394},"location":"Left Knee"},{"euler":{"heading":51.79894362826872,"pitch":91.43018388350798,"roll":12.359243804692662},"location":"Left Ankle"},{"euler":{"heading":78.27055115494403,"pitch":-27.30627333436637,"roll":-22.965205983652517},"location":"Right Ankle"},{"euler":{"heading":169.8313051160918,"pitch":-162.4317026629783,"roll":52.46295566306759},"location":"Right Hip"},{"euler":{"heading":255.18296174845273,"pitch":-107.2294606496529,"roll":65.43000882873443},"location":"Right Knee"},{"euler":{"heading":116.13203645329133,"pitch":-136.69123106567966,"roll":57.748569168815294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.235"} +{"sensors":[{"euler":{"heading":81.18413835574849,"pitch":120.73356065345959,"roll":12.380390091845555},"location":"Left Knee"},{"euler":{"heading":48.181549265441845,"pitch":90.35591549515718,"roll":10.754569424223396},"location":"Left Ankle"},{"euler":{"heading":78.43099603944962,"pitch":-27.344396000929734,"roll":-23.356185385287265},"location":"Right Ankle"},{"euler":{"heading":170.07942460448263,"pitch":-162.45728239668048,"roll":53.14791009676083},"location":"Right Hip"},{"euler":{"heading":255.01466557360746,"pitch":-109.05026458468762,"roll":65.16825794586099},"location":"Right Knee"},{"euler":{"heading":140.3438328079622,"pitch":-134.9033579591117,"roll":57.10496225193377},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.335"} +{"sensors":[{"euler":{"heading":77.77197452017364,"pitch":122.52895458811363,"roll":14.367351082661},"location":"Left Knee"},{"euler":{"heading":78.67589433889766,"pitch":89.47032394564147,"roll":6.947862481801056},"location":"Left Ankle"},{"euler":{"heading":77.97539643550466,"pitch":-26.97870640083676,"roll":-24.18306684675854},"location":"Right Ankle"},{"euler":{"heading":170.52148214403437,"pitch":-162.53030415701244,"roll":53.83936908708475},"location":"Right Hip"},{"euler":{"heading":255.28194901624673,"pitch":-110.19523812621887,"roll":64.40768215127488},"location":"Right Knee"},{"euler":{"heading":126.71569952716598,"pitch":-133.79427216320053,"roll":56.644466026740396},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.437"} +{"sensors":[{"euler":{"heading":74.97602706815628,"pitch":123.92605912930227,"roll":16.1493659743949},"location":"Left Knee"},{"euler":{"heading":106.5958049050079,"pitch":89.16704155107732,"roll":3.87182623362095},"location":"Left Ankle"},{"euler":{"heading":76.62160679195419,"pitch":-26.255835760753087,"roll":-25.402260162082683},"location":"Right Ankle"},{"euler":{"heading":171.08183392963093,"pitch":-162.92102374131122,"roll":54.56168217837628},"location":"Right Hip"},{"euler":{"heading":256.4662541146221,"pitch":-110.70071431359699,"roll":62.9606639361474},"location":"Right Knee"},{"euler":{"heading":114.88787957444939,"pitch":-133.0460949468805,"roll":56.36126942406636},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.537"} +{"sensors":[{"euler":{"heading":73.52842436134065,"pitch":124.28345321637205,"roll":17.49067937695541},"location":"Left Knee"},{"euler":{"heading":97.2862244145071,"pitch":89.4190873959696,"roll":2.4908936102588553},"location":"Left Ankle"},{"euler":{"heading":73.89069611275877,"pitch":-25.19275218467778,"roll":-26.905784145874414},"location":"Right Ankle"},{"euler":{"heading":171.97365053666783,"pitch":-163.15392136718012,"roll":55.20551396053865},"location":"Right Hip"},{"euler":{"heading":259.0696287031599,"pitch":-110.5493928822373,"roll":60.60209754253266},"location":"Right Knee"},{"euler":{"heading":104.39284161700445,"pitch":-132.49773545219244,"roll":56.30639248165973},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.638"} +{"sensors":[{"euler":{"heading":72.80058192520659,"pitch":123.88010789473485,"roll":18.56661143925987},"location":"Left Knee"},{"euler":{"heading":89.47010197305639,"pitch":90.03342865637265,"roll":1.49180424923297},"location":"Left Ankle"},{"euler":{"heading":69.7703765014829,"pitch":-23.754726966210004,"roll":-28.702705731286972},"location":"Right Ankle"},{"euler":{"heading":173.35753548300107,"pitch":-162.5697792304621,"roll":55.03496256448479},"location":"Right Hip"},{"euler":{"heading":262.30641583284387,"pitch":-110.07570359401358,"roll":57.6481377882794},"location":"Right Knee"},{"euler":{"heading":95.366057455304,"pitch":-132.65421190697322,"roll":56.51950323349376},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.739"} +{"sensors":[{"euler":{"heading":72.44552373268593,"pitch":123.09209710526136,"roll":19.353700295333883},"location":"Left Knee"},{"euler":{"heading":82.91684177575075,"pitch":90.79258579073539,"roll":0.992623824309673},"location":"Left Ankle"},{"euler":{"heading":67.26208885133461,"pitch":-23.141754269589004,"roll":-29.869935158158277},"location":"Right Ankle"},{"euler":{"heading":174.790531934701,"pitch":-161.85655130741588,"roll":54.062716308036315},"location":"Right Hip"},{"euler":{"heading":263.96952424955947,"pitch":-109.53063323461222,"roll":56.170824009451465},"location":"Right Knee"},{"euler":{"heading":87.5232017097736,"pitch":-133.57004071627588,"roll":56.89880291014438},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.840"} +{"sensors":[{"euler":{"heading":72.58222135941733,"pitch":122.12038739473523,"roll":19.693330265800494},"location":"Left Knee"},{"euler":{"heading":78.34390759817568,"pitch":91.76957721166185,"roll":1.4558614418787057},"location":"Left Ankle"},{"euler":{"heading":67.59837996620115,"pitch":-24.015078842630103,"roll":-29.42669164234245},"location":"Right Ankle"},{"euler":{"heading":175.2489787412309,"pitch":-161.5083961766743,"roll":52.80644467723268},"location":"Right Hip"},{"euler":{"heading":263.5038218246035,"pitch":-108.63381991115101,"roll":57.10999160850632},"location":"Right Knee"},{"euler":{"heading":80.49588153879624,"pitch":-134.8567866446483,"roll":57.371422619129945},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.941"} +{"sensors":[{"euler":{"heading":73.23649922347559,"pitch":121.0708486552617,"roll":19.492747239220446},"location":"Left Knee"},{"euler":{"heading":74.30326683835811,"pitch":92.44261949049567,"roll":2.266525297690835},"location":"Left Ankle"},{"euler":{"heading":70.55104196958104,"pitch":-25.251070958367094,"roll":-27.440272478108206},"location":"Right Ankle"},{"euler":{"heading":174.5740808671078,"pitch":-161.57005655900687,"roll":51.88830020950941},"location":"Right Hip"},{"euler":{"heading":261.19718964214314,"pitch":-115.3079379200359,"roll":59.767742447655685},"location":"Right Knee"},{"euler":{"heading":74.21504338491661,"pitch":-136.35235798018348,"roll":57.96553035721695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.42"} +{"sensors":[{"euler":{"heading":74.38784930112803,"pitch":120.05126378973554,"roll":18.6809725152984},"location":"Left Knee"},{"euler":{"heading":71.2291901545223,"pitch":92.97960754144611,"roll":3.6523727679217517},"location":"Left Ankle"},{"euler":{"heading":73.35843777262293,"pitch":-26.525963862530386,"roll":-25.364995230297385},"location":"Right Ankle"},{"euler":{"heading":173.07292278039702,"pitch":-161.95055090310618,"roll":51.48072018855847},"location":"Right Hip"},{"euler":{"heading":258.50247067792884,"pitch":-85.9083941280323,"roll":62.19096820289012},"location":"Right Knee"},{"euler":{"heading":68.68728904642495,"pitch":-138.26087218216514,"roll":58.58772732149526},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.142"} +{"sensors":[{"euler":{"heading":76.41781437101523,"pitch":119.15863741076198,"roll":16.99412526376856},"location":"Left Knee"},{"euler":{"heading":69.41252113907008,"pitch":93.23789678730151,"roll":6.068385491129577},"location":"Left Ankle"},{"euler":{"heading":75.42259399536064,"pitch":-27.198367476277348,"roll":-24.003495707267646},"location":"Right Ankle"},{"euler":{"heading":171.9218805023573,"pitch":-162.18674581279558,"roll":51.345148169702625},"location":"Right Hip"},{"euler":{"heading":255.89597361013597,"pitch":-92.62380471522907,"roll":64.15312138260111},"location":"Right Knee"},{"euler":{"heading":63.943560141782456,"pitch":-140.01603496394864,"roll":59.25395458934573},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.243"} +{"sensors":[{"euler":{"heading":79.80103293391372,"pitch":118.51152366968579,"roll":14.288462737391704},"location":"Left Knee"},{"euler":{"heading":69.35251902516308,"pitch":93.77660710857135,"roll":9.72404694201662},"location":"Left Ankle"},{"euler":{"heading":76.64283459582458,"pitch":-27.466030728649613,"roll":-23.353146136540882},"location":"Right Ankle"},{"euler":{"heading":171.0671924521216,"pitch":-162.41182123151603,"roll":51.548133352732364},"location":"Right Hip"},{"euler":{"heading":253.81887624912235,"pitch":-97.47392424370616,"roll":65.306559244341},"location":"Right Knee"},{"euler":{"heading":58.31795412760421,"pitch":-139.3769314675538,"roll":59.44105913041116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.344"} +{"sensors":[{"euler":{"heading":82.85217964052235,"pitch":118.53537130271721,"roll":12.159616463652535},"location":"Left Knee"},{"euler":{"heading":67.81101712264677,"pitch":92.99894639771422,"roll":12.189142247814958},"location":"Left Ankle"},{"euler":{"heading":77.39730113624213,"pitch":-27.488177655784654,"roll":-23.155331522886794},"location":"Right Ankle"},{"euler":{"heading":170.54172320690944,"pitch":-162.50813910836445,"roll":52.10582001745913},"location":"Right Hip"},{"euler":{"heading":252.26198862421012,"pitch":-101.40153181933555,"roll":65.8196533199069},"location":"Right Knee"},{"euler":{"heading":88.3486587148438,"pitch":-137.68298832079842,"roll":58.953203217370046},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.445"} +{"sensors":[{"euler":{"heading":82.83571167647011,"pitch":119.4880841724455,"roll":12.074904817287281},"location":"Left Knee"},{"euler":{"heading":63.9799154103821,"pitch":92.0990517579428,"roll":11.763978023033461},"location":"Left Ankle"},{"euler":{"heading":77.90132102261794,"pitch":-27.483109890206187,"roll":-23.321048370598113},"location":"Right Ankle"},{"euler":{"heading":170.46255088621848,"pitch":-162.53857519752802,"roll":52.77023801571322},"location":"Right Hip"},{"euler":{"heading":251.37953976178912,"pitch":-104.330128637402,"roll":65.88768798791622},"location":"Right Knee"},{"euler":{"heading":115.2262928433594,"pitch":-135.76468948871857,"roll":58.18288289563304},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.546"} +{"sensors":[{"euler":{"heading":79.8833905088231,"pitch":121.13927575520094,"roll":13.654914335558553},"location":"Left Knee"},{"euler":{"heading":57.77567386934389,"pitch":91.03914658214853,"roll":8.850080220730115},"location":"Left Ankle"},{"euler":{"heading":77.89868892035614,"pitch":-27.43479890118557,"roll":-23.688943533538303},"location":"Right Ankle"},{"euler":{"heading":170.71004579759662,"pitch":-162.72846767777523,"roll":53.4432142141419},"location":"Right Hip"},{"euler":{"heading":251.2603357856102,"pitch":-106.3158657736618,"roll":65.41766918912461},"location":"Right Knee"},{"euler":{"heading":103.84741355902347,"pitch":-134.21322053984673,"roll":57.59584460606974},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.647"} +{"sensors":[{"euler":{"heading":76.3575514579408,"pitch":123.01909817968085,"roll":15.608172902002698},"location":"Left Knee"},{"euler":{"heading":87.5606064824095,"pitch":90.30398192393369,"roll":5.3838221986571035},"location":"Left Ankle"},{"euler":{"heading":77.05257002832052,"pitch":-27.103819011067014,"roll":-24.688799180184475},"location":"Right Ankle"},{"euler":{"heading":171.31404121783697,"pitch":-162.97437090999773,"roll":54.17389279272772},"location":"Right Hip"},{"euler":{"heading":252.11555220704918,"pitch":-107.54052919629562,"roll":64.26340227021215},"location":"Right Knee"},{"euler":{"heading":94.26892220312112,"pitch":-133.46689848586206,"roll":57.173760145462765},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.752"} +{"sensors":[{"euler":{"heading":74.35929631214672,"pitch":123.78593836171277,"roll":17.21610561180243},"location":"Left Knee"},{"euler":{"heading":79.93579583416854,"pitch":90.33608373154033,"roll":3.664189978791393},"location":"Left Ankle"},{"euler":{"heading":74.80356302548846,"pitch":-26.499687109960313,"roll":-26.132419262166028},"location":"Right Ankle"},{"euler":{"heading":172.29513709605328,"pitch":-163.05818381899795,"roll":54.75650351345495},"location":"Right Hip"},{"euler":{"heading":254.54774698634426,"pitch":-107.85522627666606,"roll":62.08706204319094},"location":"Right Knee"},{"euler":{"heading":85.76077998280901,"pitch":-132.99520863727585,"roll":56.93138413091649},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.852"} +{"sensors":[{"euler":{"heading":73.22336668093205,"pitch":123.79484452554149,"roll":18.31324505062219},"location":"Left Knee"},{"euler":{"heading":73.2609662507517,"pitch":90.3712253583863,"roll":2.2227709809122542},"location":"Left Ankle"},{"euler":{"heading":97.88570672293962,"pitch":-24.637218398964283,"roll":-28.056677335949427},"location":"Right Ankle"},{"euler":{"heading":173.94687338644795,"pitch":-162.25861543709814,"roll":54.70585316210946},"location":"Right Hip"},{"euler":{"heading":257.3929722877098,"pitch":-107.76970364899945,"roll":59.28460583887185},"location":"Right Knee"},{"euler":{"heading":78.50345198452811,"pitch":-133.0394377735483,"roll":56.99449571782485},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.953"} +{"sensors":[{"euler":{"heading":72.48853001283885,"pitch":123.50286007298735,"roll":18.95067054555997},"location":"Left Knee"},{"euler":{"heading":67.67861962567653,"pitch":90.40910282254767,"roll":1.2942438828210288},"location":"Left Ankle"},{"euler":{"heading":92.12213605064566,"pitch":-23.804746559067855,"roll":-29.176009602354487},"location":"Right Ankle"},{"euler":{"heading":175.71468604780316,"pitch":-161.33900389338834,"roll":53.85401784589852},"location":"Right Hip"},{"euler":{"heading":259.2224250589389,"pitch":-107.37398328409952,"roll":57.64989525498466},"location":"Right Knee"},{"euler":{"heading":72.0281067860753,"pitch":-133.77299399619346,"roll":57.17004614604237},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.54"} +{"sensors":[{"euler":{"heading":72.27092701155497,"pitch":123.05257406568862,"roll":19.19310349100397},"location":"Left Knee"},{"euler":{"heading":63.29200766310888,"pitch":90.5181925402929,"roll":1.0210694945389258},"location":"Left Ankle"},{"euler":{"heading":89.34117244558111,"pitch":-24.42427190316107,"roll":-29.03965864211904},"location":"Right Ankle"},{"euler":{"heading":176.61196744302285,"pitch":-160.78635350404952,"roll":52.72486606130867},"location":"Right Hip"},{"euler":{"heading":258.918932553045,"pitch":-106.95533495568958,"roll":58.2974057294862},"location":"Right Knee"},{"euler":{"heading":66.23779610746776,"pitch":-134.95194459657412,"roll":57.44679153143813},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.155"} +{"sensors":[{"euler":{"heading":72.65008431039948,"pitch":122.32231665911976,"roll":19.055043141903575},"location":"Left Knee"},{"euler":{"heading":60.031556896797994,"pitch":90.86637328626362,"roll":1.3502125450850333},"location":"Left Ankle"},{"euler":{"heading":89.513305201023,"pitch":-25.638094712844964,"roll":-27.398192777907134},"location":"Right Ankle"},{"euler":{"heading":176.36327069872056,"pitch":-160.70146815364458,"roll":51.814879455177795},"location":"Right Hip"},{"euler":{"heading":256.97703929774053,"pitch":-109.42855146012063,"roll":60.748915156537585},"location":"Right Knee"},{"euler":{"heading":61.232766496720984,"pitch":-136.4505001369167,"roll":57.883362378294315},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.256"} +{"sensors":[{"euler":{"heading":73.56632587935954,"pitch":121.4275849932078,"roll":18.43078882771322},"location":"Left Knee"},{"euler":{"heading":57.70340120711819,"pitch":91.25473595763725,"roll":2.24644129057653},"location":"Left Ankle"},{"euler":{"heading":90.16197468092071,"pitch":-26.92428524156047,"roll":-25.533373500116422},"location":"Right Ankle"},{"euler":{"heading":174.9894436288485,"pitch":-161.09382133828012,"roll":51.320891509660015},"location":"Right Hip"},{"euler":{"heading":254.3605853679665,"pitch":-80.76069631410857,"roll":62.992773640883826},"location":"Right Knee"},{"euler":{"heading":56.90948984704888,"pitch":-138.26795012322503,"roll":58.420026140464884},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.356"} +{"sensors":[{"euler":{"heading":75.32219329142359,"pitch":120.56607649388702,"roll":16.987709944941894},"location":"Left Knee"},{"euler":{"heading":56.45181108640637,"pitch":91.48551236187353,"roll":4.140547161518876},"location":"Left Ankle"},{"euler":{"heading":90.20202721282864,"pitch":-27.756856717404425,"roll":-24.31753615010478},"location":"Right Ankle"},{"euler":{"heading":173.72799926596366,"pitch":-161.4906892044521,"roll":50.982552358694015},"location":"Right Hip"},{"euler":{"heading":251.94952683116986,"pitch":-88.80337668269772,"roll":64.97474627679544},"location":"Right Knee"},{"euler":{"heading":53.262290862343995,"pitch":-140.18490511090252,"roll":58.9967735264184},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.458"} +{"sensors":[{"euler":{"heading":78.40872396228124,"pitch":120.22821884449833,"roll":14.501438950447705},"location":"Left Knee"},{"euler":{"heading":57.37537997776574,"pitch":91.63071112568619,"roll":7.851492445366988},"location":"Left Ankle"},{"euler":{"heading":89.61932449154578,"pitch":-28.381171045663983,"roll":-23.7232825350943},"location":"Right Ankle"},{"euler":{"heading":172.79894933936728,"pitch":-161.7728702840069,"roll":51.10304712282461},"location":"Right Hip"},{"euler":{"heading":250.13582414805288,"pitch":-94.14803901442795,"roll":66.1460216491159},"location":"Right Knee"},{"euler":{"heading":48.1985617761096,"pitch":-139.87891459981228,"roll":58.92834617377656},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.559"} +{"sensors":[{"euler":{"heading":81.73035156605312,"pitch":120.0366469600485,"roll":12.107545055402936},"location":"Left Knee"},{"euler":{"heading":57.52534197998917,"pitch":90.91764001311758,"roll":10.941343200830289},"location":"Left Ankle"},{"euler":{"heading":88.7886420423912,"pitch":-28.755553941097588,"roll":-23.49470428158487},"location":"Right Ankle"},{"euler":{"heading":172.24405440543055,"pitch":-161.97058325560621,"roll":51.54274241054215},"location":"Right Hip"},{"euler":{"heading":249.0222417332476,"pitch":-98.22698511298516,"roll":66.6001694842043},"location":"Right Knee"},{"euler":{"heading":78.91620559849864,"pitch":-138.07852313983105,"roll":58.41051155639891},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.663"} +{"sensors":[{"euler":{"heading":82.91356640944781,"pitch":120.59548226404365,"roll":11.371790549862641},"location":"Left Knee"},{"euler":{"heading":55.341557781990254,"pitch":89.83837601180582,"roll":11.24720888074726},"location":"Left Ankle"},{"euler":{"heading":87.92227783815208,"pitch":-28.97374854698783,"roll":-23.682733853426384},"location":"Right Ankle"},{"euler":{"heading":172.1696489648875,"pitch":-161.9547749300456,"roll":52.05721816948794},"location":"Right Hip"},{"euler":{"heading":248.40751755992284,"pitch":-101.32303660168665,"roll":66.66515253578388},"location":"Right Knee"},{"euler":{"heading":106.38083503864878,"pitch":-136.20817082584796,"roll":57.53196040075902},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.763"} +{"sensors":[{"euler":{"heading":80.24095976850303,"pitch":122.1921840376393,"roll":12.628361494876378},"location":"Left Knee"},{"euler":{"heading":50.35740200379123,"pitch":88.64203841062523,"roll":8.766237992672533},"location":"Left Ankle"},{"euler":{"heading":86.66755005433687,"pitch":-28.93887369228905,"roll":-24.170710468083747},"location":"Right Ankle"},{"euler":{"heading":172.31518406839876,"pitch":-162.00304743704106,"roll":52.59524635253914},"location":"Right Hip"},{"euler":{"heading":248.23551580393058,"pitch":-103.628232941518,"roll":66.26113728220548},"location":"Right Knee"},{"euler":{"heading":131.2052515347839,"pitch":-134.46235374326318,"roll":56.83501436068312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.864"} +{"sensors":[{"euler":{"heading":76.25436379165272,"pitch":124.16046563387536,"roll":14.63427534538874},"location":"Left Knee"},{"euler":{"heading":80.7966618034121,"pitch":87.63408456956272,"roll":5.20211419340528},"location":"Left Ankle"},{"euler":{"heading":84.71329504890319,"pitch":-28.313736323060148,"roll":-25.259889421275375},"location":"Right Ankle"},{"euler":{"heading":172.6336656615589,"pitch":-162.10274269333698,"roll":53.229471717285236},"location":"Right Hip"},{"euler":{"heading":248.69321422353752,"pitch":-105.1279096473662,"roll":65.24127355398494},"location":"Right Knee"},{"euler":{"heading":118.15347638130552,"pitch":-133.44736836893685,"roll":56.3577629246148},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.966"} +{"sensors":[{"euler":{"heading":73.90392741248746,"pitch":125.13191907048783,"roll":16.314597810849868},"location":"Left Knee"},{"euler":{"heading":73.0732456230709,"pitch":87.57067611260645,"roll":2.744402774064752},"location":"Left Ankle"},{"euler":{"heading":81.70446554401288,"pitch":-27.25736269075413,"roll":-26.65890047914784},"location":"Right Ankle"},{"euler":{"heading":173.257799095403,"pitch":-162.30496842400328,"roll":53.79402454555672},"location":"Right Hip"},{"euler":{"heading":250.32389280118377,"pitch":-105.83386868262957,"roll":63.47339619858645},"location":"Right Knee"},{"euler":{"heading":106.65687874317497,"pitch":-132.74013153204316,"roll":56.05323663215333},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.67"} +{"sensors":[{"euler":{"heading":72.56353467123871,"pitch":125.33747716343905,"roll":17.476888029764883},"location":"Left Knee"},{"euler":{"heading":66.94717106076382,"pitch":87.62610850134581,"roll":1.3199624966582768},"location":"Left Ankle"},{"euler":{"heading":77.2152689896116,"pitch":-25.47537642167872,"roll":-28.368010431233056},"location":"Right Ankle"},{"euler":{"heading":174.31951918586267,"pitch":-161.88697158160295,"roll":53.770872091001046},"location":"Right Hip"},{"euler":{"heading":252.9415035210654,"pitch":-105.95048181436663,"roll":60.869806578727804},"location":"Right Knee"},{"euler":{"heading":96.56619086885748,"pitch":-132.34736837883887,"roll":56.104162968938},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.167"} +{"sensors":[{"euler":{"heading":71.80718120411484,"pitch":124.95372944709516,"roll":18.379199226788394},"location":"Left Knee"},{"euler":{"heading":62.08995395468744,"pitch":88.00724765121123,"roll":0.4442162469924492},"location":"Left Ankle"},{"euler":{"heading":73.30624209065044,"pitch":-24.44033877951085,"roll":-29.57495938810975},"location":"Right Ankle"},{"euler":{"heading":175.6438172672764,"pitch":-161.13577442344265,"roll":53.11253488190094},"location":"Right Hip"},{"euler":{"heading":255.1161031689589,"pitch":-105.93043363292996,"roll":58.79532592085503},"location":"Right Knee"},{"euler":{"heading":87.92207178197174,"pitch":-132.75013154095498,"roll":56.3687466720442},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.268"} +{"sensors":[{"euler":{"heading":71.58271308370335,"pitch":124.27085650238564,"roll":18.903779304109555},"location":"Left Knee"},{"euler":{"heading":58.5372085592187,"pitch":88.56277288609012,"roll":0.3622946222932043},"location":"Left Ankle"},{"euler":{"heading":71.8256178815854,"pitch":-25.096304901559765,"roll":-29.586213449298775},"location":"Right Ankle"},{"euler":{"heading":176.59818554054877,"pitch":-160.6221969810984,"roll":52.001281393710855},"location":"Right Hip"},{"euler":{"heading":255.598242852063,"pitch":-106.06239026963698,"roll":58.80329332876953},"location":"Right Knee"},{"euler":{"heading":80.41736460377456,"pitch":-133.70636838685948,"roll":56.781872004839784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.368"} +{"sensors":[{"euler":{"heading":71.94944177533303,"pitch":123.31252085214707,"roll":19.0134013736986},"location":"Left Knee"},{"euler":{"heading":55.75848770329683,"pitch":89.1814955974811,"roll":0.6698151600638839},"location":"Left Ankle"},{"euler":{"heading":73.04305609342687,"pitch":-26.48667441140379,"roll":-28.2275921043689},"location":"Right Ankle"},{"euler":{"heading":176.6258669864939,"pitch":-160.57872728298858,"roll":50.95740325433977},"location":"Right Hip"},{"euler":{"heading":254.3321685668567,"pitch":-107.30615124267328,"roll":60.616713995892574},"location":"Right Knee"},{"euler":{"heading":73.9568781433971,"pitch":-135.14198154817353,"roll":57.29118480435581},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.469"} +{"sensors":[{"euler":{"heading":72.83574759779972,"pitch":122.26251876693237,"roll":18.593311236328738},"location":"Left Knee"},{"euler":{"heading":53.720138932967146,"pitch":89.800846037733,"roll":1.5403336440574955},"location":"Left Ankle"},{"euler":{"heading":75.32625048408418,"pitch":-27.85675697026341,"roll":-26.08608289393201},"location":"Right Ankle"},{"euler":{"heading":175.5632802878445,"pitch":-160.9083545546897,"roll":50.48041292890579},"location":"Right Hip"},{"euler":{"heading":251.94895171017103,"pitch":-79.96303611840595,"roll":62.81129259630332},"location":"Right Knee"},{"euler":{"heading":68.4299403290574,"pitch":-137.01528339335619,"roll":57.91831632392023},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.569"} +{"sensors":[{"euler":{"heading":74.44592283801975,"pitch":121.24251689023913,"roll":17.440230112695865},"location":"Left Knee"},{"euler":{"heading":52.723125039670435,"pitch":90.3332614339597,"roll":3.323800279651746},"location":"Left Ankle"},{"euler":{"heading":76.99362543567577,"pitch":-28.70858127323707,"roll":-24.58372460453881},"location":"Right Ankle"},{"euler":{"heading":174.25695225906006,"pitch":-161.40501909922074,"roll":50.21987163601521},"location":"Right Hip"},{"euler":{"heading":249.56655653915394,"pitch":-88.62298250656536,"roll":64.74891333667298},"location":"Right Knee"},{"euler":{"heading":63.711946296151666,"pitch":-139.13250505402058,"roll":58.6139846915282},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.670"} +{"sensors":[{"euler":{"heading":77.4325805542178,"pitch":120.72451520121523,"roll":15.083707101426278},"location":"Left Knee"},{"euler":{"heading":53.10081253570339,"pitch":90.54368529056374,"roll":6.685170251686571},"location":"Left Ankle"},{"euler":{"heading":77.7942628921082,"pitch":-29.268973145913364,"roll":-23.919102144084928},"location":"Right Ankle"},{"euler":{"heading":173.55625703315405,"pitch":-161.68951718929867,"roll":50.28538447241369},"location":"Right Hip"},{"euler":{"heading":247.67865088523854,"pitch":-93.94818425590883,"roll":66.06777200300569},"location":"Right Knee"},{"euler":{"heading":58.4282516665365,"pitch":-139.66300454861852,"roll":58.84008622237538},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.771"} +{"sensors":[{"euler":{"heading":80.75182249879602,"pitch":120.17706368109371,"roll":12.70658639128365},"location":"Left Knee"},{"euler":{"heading":53.53448128213305,"pitch":90.29556676150737,"roll":10.066653226517914},"location":"Left Ankle"},{"euler":{"heading":78.18358660289738,"pitch":-29.523325831322026,"roll":-23.620941929676434},"location":"Right Ankle"},{"euler":{"heading":172.73813132983864,"pitch":-162.0330654703688,"roll":50.769346025172325},"location":"Right Hip"},{"euler":{"heading":246.1420357967147,"pitch":-98.30336583031794,"roll":66.71099480270512},"location":"Right Knee"},{"euler":{"heading":52.74792649988285,"pitch":-137.93420409375668,"roll":58.69357760013784},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.872"} +{"sensors":[{"euler":{"heading":82.47664024891641,"pitch":120.48435731298434,"roll":11.729677752155284},"location":"Left Knee"},{"euler":{"heading":52.18103315391975,"pitch":89.44726008535665,"roll":10.972487903866122},"location":"Left Ankle"},{"euler":{"heading":78.23397794260765,"pitch":-29.327243248189827,"roll":-23.746347736708792},"location":"Right Ankle"},{"euler":{"heading":172.3580681968548,"pitch":-162.09850892333193,"roll":51.423661422655094},"location":"Right Hip"},{"euler":{"heading":244.87158221704325,"pitch":-101.82302924728614,"roll":66.9461453224346},"location":"Right Knee"},{"euler":{"heading":83.08563384989458,"pitch":-135.990783684381,"roll":57.96171984012406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.972"} +{"sensors":[{"euler":{"heading":80.44772622402478,"pitch":121.85467158168592,"roll":12.862959976939756},"location":"Left Knee"},{"euler":{"heading":48.269179838527776,"pitch":88.30878407682098,"roll":9.15648911347951},"location":"Left Ankle"},{"euler":{"heading":77.9668301483469,"pitch":-28.844518923370845,"roll":-24.196712963037914},"location":"Right Ankle"},{"euler":{"heading":172.14101137716932,"pitch":-162.20740803099875,"roll":52.156295280389585},"location":"Right Hip"},{"euler":{"heading":244.09692399533893,"pitch":-102.84697632255752,"roll":66.73278079019114},"location":"Right Knee"},{"euler":{"heading":110.28957046490513,"pitch":-134.1292053159429,"roll":57.19679785611166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.73"} +{"sensors":[{"euler":{"heading":76.9342036016223,"pitch":123.66920442351733,"roll":14.707913979245781},"location":"Left Knee"},{"euler":{"heading":79.04851185467501,"pitch":87.2216556691389,"roll":5.7783402021315595},"location":"Left Ankle"},{"euler":{"heading":77.12014713351222,"pitch":-28.053817031033763,"roll":-25.133291666734124},"location":"Right Ankle"},{"euler":{"heading":172.12691023945237,"pitch":-162.3804172278989,"roll":52.92816575235062},"location":"Right Hip"},{"euler":{"heading":244.13723159580502,"pitch":-104.81852869030178,"roll":65.90950271117202},"location":"Right Knee"},{"euler":{"heading":135.14186341841463,"pitch":-132.8100347843486,"roll":56.602118070500495},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.173"} +{"sensors":[{"euler":{"heading":74.39078324146008,"pitch":124.6272839811656,"roll":16.530872581321205},"location":"Left Knee"},{"euler":{"heading":71.15616066920752,"pitch":86.96824010222501,"roll":3.0442561819184037},"location":"Left Ankle"},{"euler":{"heading":75.07063242016099,"pitch":-27.19218532793039,"roll":-26.451212500060713},"location":"Right Ankle"},{"euler":{"heading":172.69546921550713,"pitch":-162.586125505109,"roll":53.579099177115566},"location":"Right Hip"},{"euler":{"heading":246.14225843622455,"pitch":-105.6491758212716,"roll":64.03105244005482},"location":"Right Knee"},{"euler":{"heading":122.20892707657316,"pitch":-132.32903130591376,"roll":56.366906263450446},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.274"} +{"sensors":[{"euler":{"heading":72.81420491731407,"pitch":124.83330558304905,"roll":17.859035323189087},"location":"Left Knee"},{"euler":{"heading":65.15304460228677,"pitch":87.11516609200251,"roll":1.4898305637265636},"location":"Left Ankle"},{"euler":{"heading":71.3385691781449,"pitch":-25.22921679513735,"roll":-28.11234125005464},"location":"Right Ankle"},{"euler":{"heading":173.96342229395643,"pitch":-162.0900129545981,"roll":53.64618925940401},"location":"Right Hip"},{"euler":{"heading":248.9717825926021,"pitch":-105.79675823914445,"roll":61.42794719604934},"location":"Right Knee"},{"euler":{"heading":110.70053436891585,"pitch":-132.0523781753224,"roll":56.4052156371054},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.374"} +{"sensors":[{"euler":{"heading":71.88278442558266,"pitch":124.57497502474416,"roll":18.773131790870178},"location":"Left Knee"},{"euler":{"heading":60.25024014205809,"pitch":87.36614948280227,"roll":0.4720975073539072},"location":"Left Ankle"},{"euler":{"heading":67.86096226033041,"pitch":-23.756295115623615,"roll":-29.38235712504918},"location":"Right Ankle"},{"euler":{"heading":175.2983300645608,"pitch":-161.3247616591383,"roll":53.03157033346361},"location":"Right Hip"},{"euler":{"heading":251.3183543333419,"pitch":-105.76708241523,"roll":59.2164024764444},"location":"Right Knee"},{"euler":{"heading":100.61798093202427,"pitch":-132.67839035779016,"roll":56.583444073394865},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.475"} +{"sensors":[{"euler":{"heading":71.4320059830244,"pitch":124.17997752226975,"roll":19.202068611783158},"location":"Left Knee"},{"euler":{"heading":56.34396612785228,"pitch":87.56703453452205,"roll":0.0561377566185165},"location":"Left Ankle"},{"euler":{"heading":66.70611603429737,"pitch":-24.099415604061253,"roll":-29.619121412544263},"location":"Right Ankle"},{"euler":{"heading":176.16224705810473,"pitch":-160.77353549322447,"roll":52.05966330011725},"location":"Right Hip"},{"euler":{"heading":252.18026890000772,"pitch":-105.79662417370702,"roll":58.751012228799965},"location":"Right Knee"},{"euler":{"heading":91.64993283882184,"pitch":-133.69805132201114,"roll":56.881349666055385},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.576"} +{"sensors":[{"euler":{"heading":71.60130538472195,"pitch":123.62447977004278,"roll":19.163111750604845},"location":"Left Knee"},{"euler":{"heading":53.20956951506706,"pitch":87.76033108106985,"roll":0.10052398095666484},"location":"Left Ankle"},{"euler":{"heading":68.24800443086764,"pitch":-25.439474043655128,"roll":-28.344709271289837},"location":"Right Ankle"},{"euler":{"heading":176.00852235229425,"pitch":-160.708681943902,"roll":51.17869697010553},"location":"Right Hip"},{"euler":{"heading":251.23099201000696,"pitch":-106.97321175633633,"roll":60.47591100591997},"location":"Right Knee"},{"euler":{"heading":83.62868955493965,"pitch":-134.95324618981005,"roll":57.31821469944985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.677"} +{"sensors":[{"euler":{"heading":72.31617484624977,"pitch":122.9182817930385,"roll":18.67180057554436},"location":"Left Knee"},{"euler":{"heading":51.038612563560356,"pitch":88.11554797296286,"roll":0.7154715828609983},"location":"Left Ankle"},{"euler":{"heading":70.91070398778088,"pitch":-26.864276639289617,"roll":-26.422738344160855},"location":"Right Ankle"},{"euler":{"heading":174.78892011706483,"pitch":-161.07531374951182,"roll":50.74832727309497},"location":"Right Hip"},{"euler":{"heading":248.99539280900626,"pitch":-79.23214058070269,"roll":62.53456990532798},"location":"Right Knee"},{"euler":{"heading":76.74707059944569,"pitch":-136.71417157082905,"roll":57.84889322950487},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.778"} +{"sensors":[{"euler":{"heading":73.7970573616248,"pitch":122.03270361373465,"roll":17.517120517989923},"location":"Left Knee"},{"euler":{"heading":49.90350130720432,"pitch":88.49774317566657,"roll":2.2001744245748984},"location":"Left Ankle"},{"euler":{"heading":73.0321335890028,"pitch":-27.84034897536066,"roll":-25.067964509744773},"location":"Right Ankle"},{"euler":{"heading":173.54752810535837,"pitch":-161.51153237456063,"roll":50.41724454578547},"location":"Right Hip"},{"euler":{"heading":246.58335352810565,"pitch":-88.74017652263242,"roll":64.43111291479518},"location":"Right Knee"},{"euler":{"heading":71.00361353950113,"pitch":-138.84275441374615,"roll":58.482753906554386},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.878"} +{"sensors":[{"euler":{"heading":77.01110162546232,"pitch":121.51068325236119,"roll":15.084158466190932},"location":"Left Knee"},{"euler":{"heading":50.15065117648389,"pitch":89.13546885809991,"roll":5.380156982117409},"location":"Left Ankle"},{"euler":{"heading":74.44767023010252,"pitch":-28.44381407782459,"roll":-24.348668058770297},"location":"Right Ankle"},{"euler":{"heading":172.78652529482252,"pitch":-161.77287913710455,"roll":50.40677009120692},"location":"Right Hip"},{"euler":{"heading":244.7187681752951,"pitch":-94.8161588703692,"roll":65.67550162331565},"location":"Right Knee"},{"euler":{"heading":64.75950218555101,"pitch":-139.19597897237153,"roll":58.72822851589895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.978"} +{"sensors":[{"euler":{"heading":80.54124146291609,"pitch":120.87836492712508,"roll":12.744492619571838},"location":"Left Knee"},{"euler":{"heading":50.5418360588355,"pitch":89.30942197228993,"roll":8.598391283905668},"location":"Left Ankle"},{"euler":{"heading":75.40915320709227,"pitch":-28.999432670042133,"roll":-23.988801252893268},"location":"Right Ankle"},{"euler":{"heading":172.12662276534027,"pitch":-162.05809122339411,"roll":50.81609308208623},"location":"Right Hip"},{"euler":{"heading":243.4031413577656,"pitch":-99.47204298333227,"roll":66.3142014609841},"location":"Right Knee"},{"euler":{"heading":94.25855196699592,"pitch":-137.47638107513438,"roll":58.47415566430905},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.79"} +{"sensors":[{"euler":{"heading":82.18711731662448,"pitch":121.20302843441257,"roll":11.851293357614654},"location":"Left Knee"},{"euler":{"heading":49.02515245295195,"pitch":88.55347977506094,"roll":9.3135521555151},"location":"Left Ankle"},{"euler":{"heading":76.04948788638305,"pitch":-29.45573940303792,"roll":-23.94617112760394},"location":"Right Ankle"},{"euler":{"heading":172.10771048880625,"pitch":-162.1460321010547,"roll":51.35323377387761},"location":"Right Hip"},{"euler":{"heading":242.93782722198904,"pitch":-102.83733868499905,"roll":66.42028131488568},"location":"Right Knee"},{"euler":{"heading":120.37644677029634,"pitch":-135.55999296762096,"roll":57.73924009787815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.180"} +{"sensors":[{"euler":{"heading":80.04965558496203,"pitch":122.55772559097133,"roll":12.92241402185319},"location":"Left Knee"},{"euler":{"heading":44.96013720765676,"pitch":87.64188179755484,"roll":7.3884469399635915},"location":"Left Ankle"},{"euler":{"heading":76.22578909774475,"pitch":-29.660165462734128,"roll":-24.264054014843545},"location":"Right Ankle"},{"euler":{"heading":172.36568943992563,"pitch":-162.20642889094924,"roll":51.91166039648985},"location":"Right Hip"},{"euler":{"heading":243.05029449979014,"pitch":-105.16610481649914,"roll":66.04700318339712},"location":"Right Knee"},{"euler":{"heading":143.8950520932667,"pitch":-133.72899367085887,"roll":57.077816088090344},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.282"} +{"sensors":[{"euler":{"heading":76.30094002646582,"pitch":124.3832030318742,"roll":14.92392261966787},"location":"Left Knee"},{"euler":{"heading":75.86412348689109,"pitch":86.69019361779937,"roll":3.912102245967232},"location":"Left Ankle"},{"euler":{"heading":75.61571018797028,"pitch":-29.344148916460718,"roll":-25.306398613359192},"location":"Right Ankle"},{"euler":{"heading":172.87912049593308,"pitch":-162.25453600185432,"roll":52.51424435684087},"location":"Right Hip"},{"euler":{"heading":243.81401504981113,"pitch":-106.72449433484924,"roll":65.12980286505741},"location":"Right Knee"},{"euler":{"heading":129.85554688394004,"pitch":-132.706094303773,"roll":56.70753447928131},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.383"} +{"sensors":[{"euler":{"heading":73.62084602381924,"pitch":125.40113272868678,"roll":16.794030357701082},"location":"Left Knee"},{"euler":{"heading":104.10896113820198,"pitch":86.50242425601944,"roll":1.1896420213705086},"location":"Left Ankle"},{"euler":{"heading":73.91038916917326,"pitch":-28.640984024814646,"roll":-26.663258752023275},"location":"Right Ankle"},{"euler":{"heading":173.52245844633978,"pitch":-162.5478324016689,"roll":53.26281992115678},"location":"Right Hip"},{"euler":{"heading":245.59511354483,"pitch":-107.45829490136431,"roll":63.50432257855168},"location":"Right Knee"},{"euler":{"heading":117.74499219554603,"pitch":-132.1104848733957,"roll":56.56803103135318},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.484"} +{"sensors":[{"euler":{"heading":72.22126142143732,"pitch":125.5547694558181,"roll":18.108377321930973},"location":"Left Knee"},{"euler":{"heading":94.77931502438177,"pitch":86.85218183041749,"roll":-0.1730721807665423},"location":"Left Ankle"},{"euler":{"heading":70.81310025225594,"pitch":-26.983135622333183,"roll":-28.30943287682095},"location":"Right Ankle"},{"euler":{"heading":174.7139626017058,"pitch":-162.361799161502,"roll":53.58653792904111},"location":"Right Hip"},{"euler":{"heading":248.46685219034703,"pitch":-107.52496541122788,"roll":60.95389032069651},"location":"Right Knee"},{"euler":{"heading":106.75174297599143,"pitch":-131.78693638605614,"roll":56.579977928217865},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.585"} +{"sensors":[{"euler":{"heading":71.47413527929358,"pitch":125.21179251023631,"roll":18.97878958973788},"location":"Left Knee"},{"euler":{"heading":86.8763835219436,"pitch":87.24196364737575,"roll":-1.0057649626898881},"location":"Left Ankle"},{"euler":{"heading":67.25054022703034,"pitch":-25.191072060099867,"roll":-29.90973958913886},"location":"Right Ankle"},{"euler":{"heading":175.9425663415352,"pitch":-161.7881192453518,"roll":53.159134136137},"location":"Right Hip"},{"euler":{"heading":251.09516697131232,"pitch":-107.4099688701051,"roll":58.402251288626864},"location":"Right Knee"},{"euler":{"heading":97.2140686783923,"pitch":-132.16449274745054,"roll":56.83448013539608},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.686"} +{"sensors":[{"euler":{"heading":71.11422175136421,"pitch":124.59686325921268,"roll":19.524660630764092},"location":"Left Knee"},{"euler":{"heading":80.36374516974924,"pitch":87.71151728263817,"roll":-1.2926884664208993},"location":"Left Ankle"},{"euler":{"heading":65.7004862043273,"pitch":-25.02196485408988,"roll":-30.556265630224974},"location":"Right Ankle"},{"euler":{"heading":177.2233097073817,"pitch":-161.12805732081662,"roll":52.205720722523296},"location":"Right Hip"},{"euler":{"heading":252.3356502741811,"pitch":-107.17522198309459,"roll":57.50577615976418},"location":"Right Knee"},{"euler":{"heading":88.98016181055307,"pitch":-133.4355434727055,"roll":57.20103212185647},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.788"} +{"sensors":[{"euler":{"heading":71.39029957622779,"pitch":123.81842693329142,"roll":19.578444567687686},"location":"Left Knee"},{"euler":{"heading":75.05862065277432,"pitch":88.22786555437435,"roll":-0.9821696197788093},"location":"Left Ankle"},{"euler":{"heading":66.85543758389457,"pitch":-26.10726836868089,"roll":-29.544389067202477},"location":"Right Ankle"},{"euler":{"heading":177.42597873664354,"pitch":-160.89650158873496,"roll":51.16014865027096},"location":"Right Hip"},{"euler":{"heading":251.433335246763,"pitch":-107.32644978478514,"roll":58.99894854378776},"location":"Right Knee"},{"euler":{"heading":81.59464562949776,"pitch":-135.01073912543495,"roll":57.66217890967082},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.889"} +{"sensors":[{"euler":{"heading":72.195019618605,"pitch":122.89908423996229,"roll":19.17060011091892},"location":"Left Knee"},{"euler":{"heading":70.7965085874969,"pitch":88.76132899893692,"roll":-0.22145265780092838},"location":"Left Ankle"},{"euler":{"heading":69.63864382550511,"pitch":-27.3965415318128,"roll":-27.43370016048223},"location":"Right Ankle"},{"euler":{"heading":176.7646308629792,"pitch":-161.01310142986148,"roll":50.425383785243866},"location":"Right Hip"},{"euler":{"heading":249.13375172208669,"pitch":-78.60005480630662,"roll":61.47405368940899},"location":"Right Knee"},{"euler":{"heading":75.17893106654799,"pitch":-136.90341521289147,"roll":58.22721101870374},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.990"} +{"sensors":[{"euler":{"heading":73.5880176567445,"pitch":121.85917581596607,"roll":18.191040099827028},"location":"Left Knee"},{"euler":{"heading":67.76060772874722,"pitch":89.31019609904322,"roll":1.3256926079791647},"location":"Left Ankle"},{"euler":{"heading":71.94977944295461,"pitch":-28.26938737863152,"roll":-26.021580144434008},"location":"Right Ankle"},{"euler":{"heading":175.24441777668127,"pitch":-161.49929128687535,"roll":50.06409540671948},"location":"Right Hip"},{"euler":{"heading":246.52037654987802,"pitch":-52.84629932567596,"roll":63.6766483204681},"location":"Right Knee"},{"euler":{"heading":69.84853795989319,"pitch":-139.30057369160232,"roll":58.84823991683337},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.91"} +{"sensors":[{"euler":{"heading":76.26671589107005,"pitch":121.36075823436947,"roll":15.978186089844325},"location":"Left Knee"},{"euler":{"heading":66.0095469558725,"pitch":89.3729264891389,"roll":4.361873347181248},"location":"Left Ankle"},{"euler":{"heading":73.64230149865915,"pitch":-28.99244864076837,"roll":-25.03192212999061},"location":"Right Ankle"},{"euler":{"heading":174.57622599901313,"pitch":-161.74311215818784,"roll":49.926435866047534},"location":"Right Hip"},{"euler":{"heading":244.47458889489025,"pitch":-62.63041939310836,"roll":65.26523348842129},"location":"Right Knee"},{"euler":{"heading":64.46368416390388,"pitch":-140.62051632244209,"roll":59.22591592515004},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.192"} +{"sensors":[{"euler":{"heading":79.85879430196304,"pitch":120.54968241093253,"roll":13.417867480859892},"location":"Left Knee"},{"euler":{"heading":65.34609226028525,"pitch":89.51688384022502,"roll":8.075686012463123},"location":"Left Ankle"},{"euler":{"heading":74.70307134879323,"pitch":-29.44945377669153,"roll":-24.466229916991548},"location":"Right Ankle"},{"euler":{"heading":173.52485339911183,"pitch":-162.20630094236904,"roll":50.30254227944278},"location":"Right Hip"},{"euler":{"heading":242.90213000540123,"pitch":-70.55487745379753,"roll":66.13871013957916},"location":"Right Knee"},{"euler":{"heading":58.273565747513494,"pitch":-139.20221469019788,"roll":59.265824332635034},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.294"} +{"sensors":[{"euler":{"heading":82.04791487176674,"pitch":120.62596416983928,"roll":12.094830732773904},"location":"Left Knee"},{"euler":{"heading":63.33648303425672,"pitch":88.90269545620252,"roll":9.58061741121681},"location":"Left Ankle"},{"euler":{"heading":75.48276421391391,"pitch":-29.579508399022377,"roll":-24.363356925292393},"location":"Right Ankle"},{"euler":{"heading":173.04736805920066,"pitch":-162.39817084813214,"roll":50.96603805149851},"location":"Right Hip"},{"euler":{"heading":241.6806670048611,"pitch":-77.18063970841779,"roll":66.58108912562125},"location":"Right Knee"},{"euler":{"heading":88.13995917276215,"pitch":-137.3944932211781,"roll":58.63299189937153},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.395"} +{"sensors":[{"euler":{"heading":80.54312338459006,"pitch":121.68211775285536,"roll":12.904097659496514},"location":"Left Knee"},{"euler":{"heading":58.60908473083106,"pitch":88.14367591058226,"roll":8.20380567009513},"location":"Left Ankle"},{"euler":{"heading":75.84698779252251,"pitch":-29.23405755912014,"roll":-24.602021232763157},"location":"Right Ankle"},{"euler":{"heading":172.8676312532806,"pitch":-162.52710376331893,"roll":51.75068424634866},"location":"Right Hip"},{"euler":{"heading":240.68760030437502,"pitch":-82.562575737576,"roll":66.64173021305913},"location":"Right Knee"},{"euler":{"heading":115.00096325548594,"pitch":-135.4800438990603,"roll":57.91344270943438},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.498"} +{"sensors":[{"euler":{"heading":76.92006104613107,"pitch":123.37640597756983,"roll":14.876187893546863},"location":"Left Knee"},{"euler":{"heading":88.38567625774795,"pitch":87.25430831952403,"roll":4.870925103085617},"location":"Left Ankle"},{"euler":{"heading":75.63103901327027,"pitch":-28.554401803208123,"roll":-25.323069109486845},"location":"Right Ankle"},{"euler":{"heading":172.91836812795253,"pitch":-162.68064338698704,"roll":52.5818658217138},"location":"Right Hip"},{"euler":{"heading":240.28134027393753,"pitch":-86.87506816381841,"roll":66.19630719175322},"location":"Right Knee"},{"euler":{"heading":103.62586692993735,"pitch":-134.18828950915426,"roll":57.403348438490944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.599"} +{"sensors":[{"euler":{"heading":74.62805494151797,"pitch":124.27626537981284,"roll":16.707319104192177},"location":"Left Knee"},{"euler":{"heading":79.62835863197316,"pitch":87.35387748757164,"roll":2.3900825927770555},"location":"Left Ankle"},{"euler":{"heading":74.22418511194324,"pitch":-27.68646162288731,"roll":-26.578262198538162},"location":"Right Ankle"},{"euler":{"heading":173.47653131515727,"pitch":-162.78757904828834,"roll":53.32992923954242},"location":"Right Hip"},{"euler":{"heading":241.4969562465438,"pitch":-89.85631134743657,"roll":64.7391764725779},"location":"Right Knee"},{"euler":{"heading":94.01328023694361,"pitch":-133.53821055823883,"roll":57.16301359464185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.699"} +{"sensors":[{"euler":{"heading":73.06524944736618,"pitch":124.52363884183156,"roll":18.04908719377296},"location":"Left Knee"},{"euler":{"heading":72.87802276877585,"pitch":87.75598973881448,"roll":0.8760743334993497},"location":"Left Ankle"},{"euler":{"heading":70.86426660074892,"pitch":-25.89281546059858,"roll":-28.182935978684345},"location":"Right Ankle"},{"euler":{"heading":174.67887818364156,"pitch":-162.2713211434595,"roll":53.50943631558818},"location":"Right Hip"},{"euler":{"heading":244.2347606218894,"pitch":-91.66443021269292,"roll":62.32775882532011},"location":"Right Knee"},{"euler":{"heading":85.06820221324925,"pitch":-133.06563950241494,"roll":57.05921223517767},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.800"} +{"sensors":[{"euler":{"heading":72.23372450262956,"pitch":124.1837749576484,"roll":19.019178474395666},"location":"Left Knee"},{"euler":{"heading":67.57147049189827,"pitch":88.21164076493304,"roll":0.2572169001494148},"location":"Left Ankle"},{"euler":{"heading":67.55283994067403,"pitch":-24.247283914538723,"roll":-29.452142380815914},"location":"Right Ankle"},{"euler":{"heading":175.91724036527742,"pitch":-161.58793902911353,"roll":52.94599268402936},"location":"Right Hip"},{"euler":{"heading":246.53003455970045,"pitch":-93.16048719142364,"roll":60.0699829427881},"location":"Right Knee"},{"euler":{"heading":77.58013199192432,"pitch":-133.27157555217343,"roll":57.24079101165991},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.901"} +{"sensors":[{"euler":{"heading":71.7916020523666,"pitch":123.66539746188356,"roll":19.5610106269561},"location":"Left Knee"},{"euler":{"heading":63.68932344270844,"pitch":88.72172668843973,"roll":0.3564952101344733},"location":"Left Ankle"},{"euler":{"heading":66.34130594660662,"pitch":-24.55380552308485,"roll":-29.775678142734325},"location":"Right Ankle"},{"euler":{"heading":177.20676632874967,"pitch":-160.99164512620217,"roll":51.88264341562643},"location":"Right Hip"},{"euler":{"heading":247.73953110373043,"pitch":-94.28193847228128,"roll":59.46298464850929},"location":"Right Knee"},{"euler":{"heading":71.07836879273188,"pitch":-134.2756679969561,"roll":57.572961910493916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.2"} +{"sensors":[{"euler":{"heading":71.90619184712995,"pitch":123.04260771569521,"roll":19.592409564260493},"location":"Left Knee"},{"euler":{"heading":60.3203910984376,"pitch":88.97455401959576,"roll":0.752095689121026},"location":"Left Ankle"},{"euler":{"heading":67.80717535194596,"pitch":-25.804674970776368,"roll":-28.516860328460893},"location":"Right Ankle"},{"euler":{"heading":177.34858969587472,"pitch":-160.92373061358197,"roll":50.82562907406379},"location":"Right Hip"},{"euler":{"heading":246.79057799335737,"pitch":-95.87874462505316,"roll":61.21668618365837},"location":"Right Knee"},{"euler":{"heading":65.3767819134587,"pitch":-135.74185119726047,"roll":57.99691571944452},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.103"} +{"sensors":[{"euler":{"heading":72.60932266241696,"pitch":122.3570969441257,"roll":19.070668607834445},"location":"Left Knee"},{"euler":{"heading":57.80085198859384,"pitch":89.13959861763618,"roll":1.6393861202089233},"location":"Left Ankle"},{"euler":{"heading":70.83895781675136,"pitch":-27.086707473698734,"roll":-26.402674295614805},"location":"Right Ankle"},{"euler":{"heading":176.43873072628725,"pitch":-161.15010755222377,"roll":50.38056616665742},"location":"Right Hip"},{"euler":{"heading":244.56152019402163,"pitch":-68.56587016254784,"roll":63.52626756529253},"location":"Right Knee"},{"euler":{"heading":60.52035372211283,"pitch":-137.69266607753443,"roll":58.54097414750007},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.203"} +{"sensors":[{"euler":{"heading":74.02964039617527,"pitch":121.65263724971314,"roll":17.876101747051},"location":"Left Knee"},{"euler":{"heading":56.42701678973446,"pitch":89.28813875587257,"roll":3.3941975081880313},"location":"Left Ankle"},{"euler":{"heading":73.02381203507623,"pitch":-27.87803672632886,"roll":-24.937406866053326},"location":"Right Ankle"},{"euler":{"heading":175.09485765365855,"pitch":-161.54134679700138,"roll":50.19250954999168},"location":"Right Hip"},{"euler":{"heading":242.10536817461946,"pitch":-43.74053314629305,"roll":65.58614080876328},"location":"Right Knee"},{"euler":{"heading":56.387068349901554,"pitch":-139.804649469781,"roll":59.161876732750066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.303"} +{"sensors":[{"euler":{"heading":76.77042635655773,"pitch":120.96862352474183,"roll":15.525991572345898},"location":"Left Knee"},{"euler":{"heading":56.134315110761015,"pitch":89.67807488028531,"roll":6.667277757369229},"location":"Left Ankle"},{"euler":{"heading":74.33393083156861,"pitch":-28.052733053695974,"roll":-24.224916179447995},"location":"Right Ankle"},{"euler":{"heading":174.4353718882927,"pitch":-161.74971211730127,"roll":50.19825859499251},"location":"Right Hip"},{"euler":{"heading":240.03858135715754,"pitch":-54.22897983166375,"roll":67.02127672788696},"location":"Right Knee"},{"euler":{"heading":51.5671115149114,"pitch":-139.9304345228029,"roll":59.39568905947506},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.405"} +{"sensors":[{"euler":{"heading":80.23713372090197,"pitch":120.17801117226766,"roll":13.110892415111309},"location":"Left Knee"},{"euler":{"heading":56.18963359968492,"pitch":89.82276739225678,"roll":10.031799981632307},"location":"Left Ankle"},{"euler":{"heading":75.32553774841175,"pitch":-28.041209748326377,"roll":-23.952424561503193},"location":"Right Ankle"},{"euler":{"heading":173.46058469946345,"pitch":-162.16224090557117,"roll":50.69718273549326},"location":"Right Hip"},{"euler":{"heading":238.2472232214418,"pitch":-63.39358184849738,"roll":67.77539905509826},"location":"Right Knee"},{"euler":{"heading":82.22915036342027,"pitch":-137.9498910705226,"roll":59.043620153527556},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.505"} +{"sensors":[{"euler":{"heading":82.26342034881176,"pitch":120.35396005504089,"roll":12.018553173600178},"location":"Left Knee"},{"euler":{"heading":54.67692023971643,"pitch":89.1967406530311,"roll":10.959869983469078},"location":"Left Ankle"},{"euler":{"heading":75.94923397357057,"pitch":-27.79958877349374,"roll":-24.144682105352878},"location":"Right Ankle"},{"euler":{"heading":173.13327622951712,"pitch":-162.23351681501404,"roll":51.34621446194393},"location":"Right Hip"},{"euler":{"heading":237.01625089929763,"pitch":-70.77922366364764,"roll":68.03535914958843},"location":"Right Knee"},{"euler":{"heading":109.49998532707824,"pitch":-135.88615196347033,"roll":58.239258138174804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.607"} +{"sensors":[{"euler":{"heading":80.4058283139306,"pitch":121.5685640495368,"roll":13.04169785624016},"location":"Left Knee"},{"euler":{"heading":50.20922821574479,"pitch":88.30206658772799,"roll":9.007632985122171},"location":"Left Ankle"},{"euler":{"heading":76.05431057621352,"pitch":-27.407129896144365,"roll":-24.505213894817594},"location":"Right Ankle"},{"euler":{"heading":173.12619860656542,"pitch":-162.31641513351263,"roll":52.09909301574954},"location":"Right Hip"},{"euler":{"heading":236.48962580936788,"pitch":-76.65130129728288,"roll":67.80057323462958},"location":"Right Knee"},{"euler":{"heading":134.2062367943704,"pitch":-134.0162867671233,"roll":57.515332324357324},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.707"} +{"sensors":[{"euler":{"heading":76.90899548253755,"pitch":123.25545764458313,"roll":15.050028070616145},"location":"Left Knee"},{"euler":{"heading":80.58205539417031,"pitch":87.4406099289552,"roll":5.406869686609954},"location":"Left Ankle"},{"euler":{"heading":75.56137951859218,"pitch":-26.79766690652993,"roll":-25.348442505335836},"location":"Right Ankle"},{"euler":{"heading":173.2948287459089,"pitch":-162.55352362016137,"roll":52.97043371417459},"location":"Right Hip"},{"euler":{"heading":236.8594132284311,"pitch":-81.3674211675546,"roll":66.92676591116663},"location":"Right Knee"},{"euler":{"heading":121.11061311493336,"pitch":-132.97715809041097,"roll":57.063799091921595},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.807"} +{"sensors":[{"euler":{"heading":74.6368459342838,"pitch":124.18616188012481,"roll":16.78252526355453},"location":"Left Knee"},{"euler":{"heading":72.58634985475328,"pitch":87.30279893605969,"roll":2.8099327179489593},"location":"Left Ankle"},{"euler":{"heading":74.08649156673296,"pitch":-25.999150215876938,"roll":-26.73234825480225},"location":"Right Ankle"},{"euler":{"heading":173.97784587131798,"pitch":-162.76067125814524,"roll":53.76714034275713},"location":"Right Hip"},{"euler":{"heading":238.704721905588,"pitch":-84.86192905079915,"roll":65.19033932004997},"location":"Right Knee"},{"euler":{"heading":109.74330180344003,"pitch":-132.51694228136986,"roll":56.819919182729436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.908"} +{"sensors":[{"euler":{"heading":73.22316134085541,"pitch":124.44879569211234,"roll":18.016772737199076},"location":"Left Knee"},{"euler":{"heading":66.33396486927795,"pitch":87.36626904245372,"roll":1.2601894461540633},"location":"Left Ankle"},{"euler":{"heading":70.92784241005967,"pitch":-24.611735194289242,"roll":-28.477863429322024},"location":"Right Ankle"},{"euler":{"heading":175.4550612841862,"pitch":-162.44710413233074,"roll":53.89667630848142},"location":"Right Hip"},{"euler":{"heading":242.0967497150292,"pitch":-87.18823614571923,"roll":62.51505538804498},"location":"Right Knee"},{"euler":{"heading":99.65647162309604,"pitch":-132.46524805323287,"roll":56.85042726445649},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.9"} +{"sensors":[{"euler":{"heading":72.42584520676988,"pitch":124.1914161229011,"roll":18.90259546347917},"location":"Left Knee"},{"euler":{"heading":61.24431838235016,"pitch":87.67339213820836,"roll":0.25292050153865686},"location":"Left Ankle"},{"euler":{"heading":67.4350581690537,"pitch":-23.494311674860317,"roll":-29.867577086389822},"location":"Right Ankle"},{"euler":{"heading":177.18455515576758,"pitch":-161.62739371909768,"roll":53.36950867763328},"location":"Right Hip"},{"euler":{"heading":245.29957474352628,"pitch":-88.96941253114731,"roll":60.07604984924048},"location":"Right Knee"},{"euler":{"heading":90.96582446078644,"pitch":-133.16872324790958,"roll":57.04663453801084},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.110"} +{"sensors":[{"euler":{"heading":72.2582606860929,"pitch":123.509774510611,"roll":19.449835917131253},"location":"Left Knee"},{"euler":{"heading":57.40738654411515,"pitch":88.21855292438752,"roll":-0.08487154861520882},"location":"Left Ankle"},{"euler":{"heading":66.23530235214834,"pitch":-23.657380507374285,"roll":-30.39331937775084},"location":"Right Ankle"},{"euler":{"heading":178.69734964019085,"pitch":-160.87090434718792,"roll":52.35755780986995},"location":"Right Hip"},{"euler":{"heading":246.49461726917366,"pitch":-90.49747127803258,"roll":59.53719486431643},"location":"Right Knee"},{"euler":{"heading":83.51299201470779,"pitch":-134.45185092311863,"roll":57.37947108420976},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.211"} +{"sensors":[{"euler":{"heading":72.7386846174836,"pitch":122.5837970595499,"roll":19.517352325418127},"location":"Left Knee"},{"euler":{"heading":54.34164788970363,"pitch":88.83419763194877,"roll":0.02986560624631207},"location":"Left Ankle"},{"euler":{"heading":67.44927211693351,"pitch":-25.135392456636858,"roll":-29.316487439975752},"location":"Right Ankle"},{"euler":{"heading":174.72761467617178,"pitch":-160.69006391246913,"roll":51.17805202888296},"location":"Right Hip"},{"euler":{"heading":246.2514055422563,"pitch":-92.37272415022932,"roll":60.92722537788479},"location":"Right Knee"},{"euler":{"heading":76.96794281323702,"pitch":-136.06291583080676,"roll":57.80402397578879},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.312"} +{"sensors":[{"euler":{"heading":73.80856615573524,"pitch":121.6379173535949,"roll":18.996867092876315},"location":"Left Knee"},{"euler":{"heading":52.08248310073326,"pitch":89.38827786875389,"roll":0.6956290456216809},"location":"Left Ankle"},{"euler":{"heading":70.11059490524016,"pitch":-26.74685321097317,"roll":-27.17233869597818},"location":"Right Ankle"},{"euler":{"heading":174.6923532085546,"pitch":-160.8460575212222,"roll":50.49774682599467},"location":"Right Hip"},{"euler":{"heading":244.59501498803067,"pitch":-65.14170173520638,"roll":63.222002840096316},"location":"Right Knee"},{"euler":{"heading":71.17739853191331,"pitch":-137.85662424772607,"roll":58.379871578209915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.412"} +{"sensors":[{"euler":{"heading":75.52145954016171,"pitch":120.72412561823542,"roll":17.77843038358868},"location":"Left Knee"},{"euler":{"heading":50.90548479065994,"pitch":89.8994500818785,"roll":2.2510661410595127},"location":"Left Ankle"},{"euler":{"heading":72.16203541471614,"pitch":-27.934667889875854,"roll":-25.705104826380364},"location":"Right Ankle"},{"euler":{"heading":174.06686788769915,"pitch":-161.1864517691,"roll":50.2167221433952},"location":"Right Hip"},{"euler":{"heading":242.6480134892276,"pitch":-76.59003156168575,"roll":65.24355255608668},"location":"Right Knee"},{"euler":{"heading":66.25965867872199,"pitch":-140.02721182295346,"roll":58.979384420388925},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.514"} +{"sensors":[{"euler":{"heading":78.57556358614555,"pitch":120.11421305641188,"roll":15.294337345229813},"location":"Left Knee"},{"euler":{"heading":51.07743631159395,"pitch":90.13450507369065,"roll":5.457209526953562},"location":"Left Ankle"},{"euler":{"heading":73.33333187324453,"pitch":-28.71620110088827,"roll":-24.97834434374233},"location":"Right Ankle"},{"euler":{"heading":174.12268109892923,"pitch":-161.34280659219,"roll":50.11379992905569},"location":"Right Hip"},{"euler":{"heading":241.20821214030485,"pitch":-83.42477840551719,"roll":66.60669730047802},"location":"Right Knee"},{"euler":{"heading":59.639942810849796,"pitch":-140.4744906406581,"roll":59.35644597835003},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.614"} +{"sensors":[{"euler":{"heading":82.10550722753099,"pitch":119.41529175077069,"roll":12.783653610706834},"location":"Left Knee"},{"euler":{"heading":51.66969268043456,"pitch":89.88355456632159,"roll":9.061488574258206},"location":"Left Ankle"},{"euler":{"heading":74.06874868592007,"pitch":-29.100830990799444,"roll":-24.668009909368095},"location":"Right Ankle"},{"euler":{"heading":173.82291298903633,"pitch":-161.55227593297099,"roll":50.527419936150125},"location":"Right Hip"},{"euler":{"heading":239.93114092627437,"pitch":-88.96355056496546,"roll":67.35227757043022},"location":"Right Knee"},{"euler":{"heading":53.96344852976482,"pitch":-138.6582915765923,"roll":59.25205138051503},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.715"} +{"sensors":[{"euler":{"heading":83.8449565047779,"pitch":119.68626257569363,"roll":11.74278824963615},"location":"Left Knee"},{"euler":{"heading":50.64022341239111,"pitch":88.74519910968942,"roll":10.242839716832385},"location":"Left Ankle"},{"euler":{"heading":74.49937381732808,"pitch":-29.0844978917195,"roll":-24.732458918431288},"location":"Right Ankle"},{"euler":{"heading":173.9343716901327,"pitch":-161.5220483396739,"roll":51.155927942535115},"location":"Right Hip"},{"euler":{"heading":238.91927683364696,"pitch":-93.54844550846892,"roll":67.5795498133872},"location":"Right Knee"},{"euler":{"heading":84.22960367678834,"pitch":-136.66121241893308,"roll":58.451846242463525},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.819"} +{"sensors":[{"euler":{"heading":81.5417108543001,"pitch":121.01763631812427,"roll":12.874759424672536},"location":"Left Knee"},{"euler":{"heading":47.076201071152,"pitch":87.74567919872048,"roll":8.543555745149147},"location":"Left Ankle"},{"euler":{"heading":74.50568643559527,"pitch":-28.78229810254755,"roll":-25.221713026588162},"location":"Right Ankle"},{"euler":{"heading":174.15968452111946,"pitch":-161.5010935057065,"roll":51.89033514828161},"location":"Right Hip"},{"euler":{"heading":238.39609915028228,"pitch":-97.13110095762202,"roll":67.34034483204849},"location":"Right Knee"},{"euler":{"heading":111.32539330910953,"pitch":-134.61384117703977,"roll":57.675411618217176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.921"} +{"sensors":[{"euler":{"heading":78.0625397688701,"pitch":122.75337268631185,"roll":14.987283482205283},"location":"Left Knee"},{"euler":{"heading":77.7435809640368,"pitch":85.37111127884845,"roll":4.945450170634232},"location":"Left Ankle"},{"euler":{"heading":73.89261779203575,"pitch":-28.066568292292796,"roll":-26.168291723929347},"location":"Right Ankle"},{"euler":{"heading":174.54996606900752,"pitch":-161.56348415513585,"roll":52.695051633453446},"location":"Right Hip"},{"euler":{"heading":238.72523923525404,"pitch":-99.75549086185983,"roll":66.42506034884364},"location":"Right Knee"},{"euler":{"heading":100.39910397819858,"pitch":-133.3649570593358,"roll":57.10162045639546},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.22"} +{"sensors":[{"euler":{"heading":75.80003579198309,"pitch":123.70303541768067,"roll":16.888555133984756},"location":"Left Knee"},{"euler":{"heading":105.60047286763313,"pitch":85.5902501509636,"roll":2.032155153570809},"location":"Left Ankle"},{"euler":{"heading":72.18460601283218,"pitch":-27.10991146306352,"roll":-27.538962551536414},"location":"Right Ankle"},{"euler":{"heading":175.15746946210677,"pitch":-161.84463573962228,"roll":53.5130464701081},"location":"Right Hip"},{"euler":{"heading":240.38396531172864,"pitch":-101.37994177567384,"roll":64.77630431395929},"location":"Right Knee"},{"euler":{"heading":91.02794358037873,"pitch":-132.52221135340224,"roll":56.77270841075592},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.122"} +{"sensors":[{"euler":{"heading":74.27003221278478,"pitch":123.9827318759126,"roll":18.25594962058628},"location":"Left Knee"},{"euler":{"heading":96.02792558086982,"pitch":85.96872513586725,"roll":0.516439638213728},"location":"Left Ankle"},{"euler":{"heading":68.72239541154896,"pitch":-25.380170316757166,"roll":-29.166316296382774},"location":"Right Ankle"},{"euler":{"heading":176.3542225158961,"pitch":-161.66642216566004,"roll":53.8679918230973},"location":"Right Hip"},{"euler":{"heading":243.4955687805558,"pitch":-101.95444759810647,"roll":62.192423882563354},"location":"Right Knee"},{"euler":{"heading":82.56889922234086,"pitch":-131.98874021806202,"roll":56.68293756968033},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.223"} +{"sensors":[{"euler":{"heading":73.3242789915063,"pitch":123.84695868832135,"roll":19.167854658527652},"location":"Left Knee"},{"euler":{"heading":87.88763302278285,"pitch":86.38435262228053,"roll":-0.45395432560764487},"location":"Left Ankle"},{"euler":{"heading":65.08765587039406,"pitch":-23.74215328508145,"roll":-30.4934346667445},"location":"Right Ankle"},{"euler":{"heading":177.8813002643065,"pitch":-160.86852994909404,"roll":53.55619264078757},"location":"Right Hip"},{"euler":{"heading":246.1897619025002,"pitch":-102.14650283829583,"roll":59.79818149430702},"location":"Right Knee"},{"euler":{"heading":75.14950930010679,"pitch":-132.24611619625583,"roll":56.73339381271229},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.324"} +{"sensors":[{"euler":{"heading":72.91060109235568,"pitch":123.30601281948921,"roll":19.78856919267489},"location":"Left Knee"},{"euler":{"heading":81.19261972050457,"pitch":87.05841736005247,"roll":-0.8898088930468804},"location":"Left Ankle"},{"euler":{"heading":63.678890283354654,"pitch":-23.855437956573308,"roll":-30.99409120007005},"location":"Right Ankle"},{"euler":{"heading":179.20567023787586,"pitch":-160.13792695418462,"roll":52.66932337670882},"location":"Right Hip"},{"euler":{"heading":247.3207857122502,"pitch":-102.20685255446625,"roll":59.26836334487633},"location":"Right Knee"},{"euler":{"heading":68.80955837009611,"pitch":-132.89025457663024,"roll":57.04130443144107},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.425"} +{"sensors":[{"euler":{"heading":73.08829098312012,"pitch":122.4879115375403,"roll":20.0097122734074},"location":"Left Knee"},{"euler":{"heading":75.57960774845411,"pitch":87.80882562404723,"roll":-0.9195780037421923},"location":"Left Ankle"},{"euler":{"heading":64.8672512550192,"pitch":-25.369894160915976,"roll":-30.038432080063046},"location":"Right Ankle"},{"euler":{"heading":179.95385321408827,"pitch":-159.77413425876617,"roll":51.583641039037936},"location":"Right Hip"},{"euler":{"heading":246.8449571410252,"pitch":-102.68616729901963,"roll":60.810277010388695},"location":"Right Knee"},{"euler":{"heading":63.3598525330865,"pitch":-133.98872911896723,"roll":57.48717398829696},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.525"} +{"sensors":[{"euler":{"heading":73.86696188480812,"pitch":121.49537038378628,"roll":19.70874104606666},"location":"Left Knee"},{"euler":{"heading":70.9466469736087,"pitch":88.55294306164251,"roll":-0.47137020336797314},"location":"Left Ankle"},{"euler":{"heading":67.67427612951728,"pitch":-26.88915474482438,"roll":-28.12208887205674},"location":"Right Ankle"},{"euler":{"heading":179.72096789267943,"pitch":-159.79047083288955,"roll":50.812776935134146},"location":"Right Hip"},{"euler":{"heading":244.83546142692268,"pitch":-74.51755056911766,"roll":63.06049930934982},"location":"Right Knee"},{"euler":{"heading":58.723867279777856,"pitch":-135.4023562070705,"roll":58.06970658946726},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.625"} +{"sensors":[{"euler":{"heading":75.2052656963273,"pitch":120.48333334540766,"roll":18.800366941459995},"location":"Left Knee"},{"euler":{"heading":67.55823227624782,"pitch":89.24764875547825,"roll":0.7757668169688243},"location":"Left Ankle"},{"euler":{"heading":70.15059851656555,"pitch":-27.887739270341942,"roll":-26.572379984851064},"location":"Right Ankle"},{"euler":{"heading":178.35512110341148,"pitch":-160.2489237496006,"roll":50.45649924162073},"location":"Right Hip"},{"euler":{"heading":242.4206652842304,"pitch":-49.2970455122059,"roll":65.10444937841484},"location":"Right Knee"},{"euler":{"heading":54.676480551800076,"pitch":-137.17462058636346,"roll":58.69398593052053},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.728"} +{"sensors":[{"euler":{"heading":77.57223912669458,"pitch":119.8350000108669,"roll":16.789080247313994},"location":"Left Knee"},{"euler":{"heading":65.44615904862304,"pitch":89.28538387993044,"roll":3.385690135271942},"location":"Left Ankle"},{"euler":{"heading":71.854288664909,"pitch":-28.63646534330775,"roll":-25.84014198636596},"location":"Right Ankle"},{"euler":{"heading":177.61960899307033,"pitch":-160.50528137464056,"roll":50.360849317458666},"location":"Right Hip"},{"euler":{"heading":240.5035987558074,"pitch":-60.12359096098531,"roll":66.63150444057335},"location":"Right Knee"},{"euler":{"heading":50.80258249662007,"pitch":-138.2321585277271,"roll":59.17458733746848},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.828"} +{"sensors":[{"euler":{"heading":81.02751521402513,"pitch":119.19525000978022,"roll":14.197672222582595},"location":"Left Knee"},{"euler":{"heading":64.87029314376073,"pitch":89.28184549193739,"roll":7.203371121744748},"location":"Left Ankle"},{"euler":{"heading":72.8626097984181,"pitch":-29.279068808976977,"roll":-25.431127787729366},"location":"Right Ankle"},{"euler":{"heading":176.77639809376328,"pitch":-160.9297532371765,"roll":50.718514385712794},"location":"Right Hip"},{"euler":{"heading":239.27198888022664,"pitch":-68.47998186488678,"roll":67.31210399651602},"location":"Right Knee"},{"euler":{"heading":46.10982424695806,"pitch":-136.9839426749544,"roll":59.18837860372163},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.929"} +{"sensors":[{"euler":{"heading":83.62476369262262,"pitch":119.25072500880219,"roll":12.465405000324335},"location":"Left Knee"},{"euler":{"heading":63.30201382938466,"pitch":88.61616094274366,"roll":9.245534009570274},"location":"Left Ankle"},{"euler":{"heading":73.59509881857629,"pitch":-29.832411928079278,"roll":-25.34426500895643},"location":"Right Ankle"},{"euler":{"heading":176.43000828438696,"pitch":-161.19302791345885,"roll":51.34666294714152},"location":"Right Hip"},{"euler":{"heading":238.71353999220398,"pitch":-75.2507336783981,"roll":67.48089359686442},"location":"Right Knee"},{"euler":{"heading":77.18009182226226,"pitch":-135.24804840745895,"roll":58.544540743349465},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.31"} +{"sensors":[{"euler":{"heading":82.74353732336037,"pitch":120.27565250792198,"roll":12.812614500291902},"location":"Left Knee"},{"euler":{"heading":59.265562446446204,"pitch":87.77329484846929,"roll":8.495980608613248},"location":"Left Ankle"},{"euler":{"heading":73.99183893671865,"pitch":-30.18042073527135,"roll":-25.60358850806079},"location":"Right Ankle"},{"euler":{"heading":176.48075745594826,"pitch":-161.39872512211295,"roll":52.00574665242737},"location":"Right Hip"},{"euler":{"heading":238.7296859929836,"pitch":-80.6881603105583,"roll":67.25155423717798},"location":"Right Knee"},{"euler":{"heading":105.12458264003604,"pitch":-133.41699356671307,"roll":57.75883666901452},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.131"} +{"sensors":[{"euler":{"heading":79.40668359102433,"pitch":122.01058725712979,"roll":14.637603050262712},"location":"Left Knee"},{"euler":{"heading":89.11400620180157,"pitch":86.98346536362236,"roll":5.427632547751924},"location":"Left Ankle"},{"euler":{"heading":73.7739050430468,"pitch":-30.006128661744217,"roll":-26.33072965725471},"location":"Right Ankle"},{"euler":{"heading":176.67643171035346,"pitch":-161.60885260990165,"roll":52.74892198718464},"location":"Right Hip"},{"euler":{"heading":239.02546739368523,"pitch":-85.08809427950247,"roll":66.59514881346018},"location":"Right Knee"},{"euler":{"heading":94.64337437603244,"pitch":-132.07529421004176,"roll":57.151703002113074},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.232"} +{"sensors":[{"euler":{"heading":76.5410152319219,"pitch":123.4032785314168,"roll":16.455092745236442},"location":"Left Knee"},{"euler":{"heading":115.84010558162142,"pitch":86.79136882726011,"roll":2.4973692929767317},"location":"Left Ankle"},{"euler":{"heading":72.67776453874212,"pitch":-29.336765795569796,"roll":-27.535156691529238},"location":"Right Ankle"},{"euler":{"heading":177.0212885393181,"pitch":-161.99171734891146,"roll":53.57402978846618},"location":"Right Hip"},{"euler":{"heading":240.06042065431672,"pitch":-88.21678485155223,"roll":65.34188393211417},"location":"Right Knee"},{"euler":{"heading":85.6727869384292,"pitch":-131.3802647890376,"roll":56.74903270190177},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.333"} +{"sensors":[{"euler":{"heading":75.03066370872972,"pitch":123.85670067827513,"roll":17.822083470712798},"location":"Left Knee"},{"euler":{"heading":105.15609502345929,"pitch":87.04348194453411,"roll":0.8413823636790587},"location":"Left Ankle"},{"euler":{"heading":69.85373808486791,"pitch":-27.959339216012815,"roll":-29.044141022376316},"location":"Right Ankle"},{"euler":{"heading":177.9191596853863,"pitch":-161.93629561402034,"roll":54.06037680961956},"location":"Right Hip"},{"euler":{"heading":242.66062858888506,"pitch":-90.27635636639701,"roll":63.04519553890275},"location":"Right Knee"},{"euler":{"heading":77.57425824458628,"pitch":-130.76098831013385,"roll":56.54287943171159},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.433"} +{"sensors":[{"euler":{"heading":74.24634733785675,"pitch":123.69603061044762,"roll":18.771125123641518},"location":"Left Knee"},{"euler":{"heading":96.11548552111336,"pitch":87.3766337500807,"roll":-0.05525587268884713},"location":"Left Ankle"},{"euler":{"heading":65.86211427638112,"pitch":-26.31340529441153,"roll":-30.589726920138684},"location":"Right Ankle"},{"euler":{"heading":179.16474371684765,"pitch":-161.26141605261833,"roll":53.88558912865761},"location":"Right Hip"},{"euler":{"heading":245.6883157299966,"pitch":-91.68622072975731,"roll":60.40942598501248},"location":"Right Knee"},{"euler":{"heading":70.62933242012765,"pitch":-130.78488947912047,"roll":56.644841488540436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.534"} +{"sensors":[{"euler":{"heading":73.87171260407108,"pitch":123.15767754940286,"roll":19.406512611277368},"location":"Left Knee"},{"euler":{"heading":89.12893696900203,"pitch":87.98897037507263,"roll":0.06901971458003758},"location":"Left Ankle"},{"euler":{"heading":63.67590284874301,"pitch":-25.963314764970377,"roll":-31.624504228124817},"location":"Right Ankle"},{"euler":{"heading":180.3920193451629,"pitch":-160.5602744473565,"roll":53.028280215791845},"location":"Right Hip"},{"euler":{"heading":247.31323415699694,"pitch":-92.76759865678159,"roll":59.518483386511235},"location":"Right Knee"},{"euler":{"heading":64.7476491781149,"pitch":-131.61890053120842,"roll":56.961607339686395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.636"} +{"sensors":[{"euler":{"heading":73.97204134366397,"pitch":122.44190979446259,"roll":19.64086135014963},"location":"Left Knee"},{"euler":{"heading":83.24729327210183,"pitch":88.54632333756537,"roll":0.5058677431220339},"location":"Left Ankle"},{"euler":{"heading":64.35831256386871,"pitch":-27.26698328847334,"roll":-31.012053805312338},"location":"Right Ankle"},{"euler":{"heading":181.04656741064662,"pitch":-160.16674700262087,"roll":51.98795219421267},"location":"Right Hip"},{"euler":{"heading":247.29441074129727,"pitch":-93.75333879110343,"roll":60.41663504786011},"location":"Right Knee"},{"euler":{"heading":59.58538426030341,"pitch":-132.91326047808758,"roll":57.37794660571775},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.736"} +{"sensors":[{"euler":{"heading":74.64358720929758,"pitch":121.54146881501633,"roll":19.40177521513467},"location":"Left Knee"},{"euler":{"heading":78.31006394489165,"pitch":89.05419100380882,"roll":1.3802809688098305},"location":"Left Ankle"},{"euler":{"heading":67.42873130748184,"pitch":-28.909034959626005,"roll":-28.917098424781106},"location":"Right Ankle"},{"euler":{"heading":180.73566066958196,"pitch":-160.21257230235878,"roll":51.1579069747914},"location":"Right Hip"},{"euler":{"heading":245.58996966716757,"pitch":-102.2780049119931,"roll":62.818721543074105},"location":"Right Knee"},{"euler":{"heading":55.13309583427307,"pitch":-134.54068443027882,"roll":57.89640194514598},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.838"} +{"sensors":[{"euler":{"heading":75.86047848836783,"pitch":120.5623219335147,"roll":18.586597693621204},"location":"Left Knee"},{"euler":{"heading":74.62905755040249,"pitch":89.51752190342795,"roll":2.9922528719288475},"location":"Left Ankle"},{"euler":{"heading":69.86085817673366,"pitch":-29.911881463663406,"roll":-27.231638582302995},"location":"Right Ankle"},{"euler":{"heading":179.44959460262376,"pitch":-160.6600650721229,"roll":50.67336627731226},"location":"Right Hip"},{"euler":{"heading":243.2809727004508,"pitch":-74.21895442079379,"roll":65.0555993887667},"location":"Right Knee"},{"euler":{"heading":51.38853625084576,"pitch":-136.47411598725094,"roll":58.50051175063139},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.939"} +{"sensors":[{"euler":{"heading":78.14943063953105,"pitch":119.70608974016324,"roll":16.671687924259086},"location":"Left Knee"},{"euler":{"heading":72.20990179536224,"pitch":89.35326971308515,"roll":5.699277584735963},"location":"Left Ankle"},{"euler":{"heading":71.3685223590603,"pitch":-30.433193317297064,"roll":-26.458474724072694},"location":"Right Ankle"},{"euler":{"heading":178.4983851423614,"pitch":-160.9815585649106,"roll":50.47477964958104},"location":"Right Hip"},{"euler":{"heading":241.17787543040572,"pitch":-81.35330897871442,"roll":66.73753944989002},"location":"Right Knee"},{"euler":{"heading":47.81218262576119,"pitch":-137.55170438852585,"roll":58.99421057556825},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.40"} +{"sensors":[{"euler":{"heading":81.57823757557794,"pitch":119.05423076614693,"roll":14.085769131833178},"location":"Left Knee"},{"euler":{"heading":71.31391161582603,"pitch":89.14919274177664,"roll":9.591849826262369},"location":"Left Ankle"},{"euler":{"heading":72.30042012315425,"pitch":-30.75862398556736,"roll":-25.993877251665424},"location":"Right Ankle"},{"euler":{"heading":177.51104662812529,"pitch":-161.43965270841957,"roll":50.70855168462293},"location":"Right Hip"},{"euler":{"heading":239.62883788736514,"pitch":-86.84297808084298,"roll":67.63253550490101},"location":"Right Knee"},{"euler":{"heading":43.08096436318507,"pitch":-136.08403394967326,"roll":58.957289518011436},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.142"} +{"sensors":[{"euler":{"heading":84.27666381802015,"pitch":119.12380768953224,"roll":12.43344221864986},"location":"Left Knee"},{"euler":{"heading":69.08877045424343,"pitch":88.31552346759898,"roll":11.445164843636132},"location":"Left Ankle"},{"euler":{"heading":73.01412811083883,"pitch":-30.770261587010623,"roll":-25.975739526498884},"location":"Right Ankle"},{"euler":{"heading":177.05994196531276,"pitch":-161.62693743757762,"roll":51.29394651616064},"location":"Right Hip"},{"euler":{"heading":238.4909540986286,"pitch":-91.37743027275869,"roll":67.97553195441091},"location":"Right Knee"},{"euler":{"heading":74.41661792686656,"pitch":-134.33813055470594,"roll":58.2928105662103},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.243"} +{"sensors":[{"euler":{"heading":83.05524743621814,"pitch":120.20517692057902,"roll":12.977597996784874},"location":"Left Knee"},{"euler":{"heading":64.0736434088191,"pitch":87.30272112083908,"roll":10.231898359272519},"location":"Left Ankle"},{"euler":{"heading":73.25021529975494,"pitch":-30.38698542830956,"roll":-26.353165573848997},"location":"Right Ankle"},{"euler":{"heading":177.0789477687815,"pitch":-161.63299369381986,"roll":51.98955186454458},"location":"Right Hip"},{"euler":{"heading":237.83560868876575,"pitch":-94.87093724548282,"roll":67.87797875896982},"location":"Right Knee"},{"euler":{"heading":102.61870613417992,"pitch":-132.57306749923535,"roll":57.544779509589276},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.343"} +{"sensors":[{"euler":{"heading":79.37472269259632,"pitch":122.00340922852112,"roll":14.911088197106388},"location":"Left Knee"},{"euler":{"heading":93.1225290679372,"pitch":86.26619900875517,"roll":6.796208523345268},"location":"Left Ankle"},{"euler":{"heading":72.79394376977946,"pitch":-29.548286885478603,"roll":-27.1303490164641},"location":"Right Ankle"},{"euler":{"heading":177.17730299190336,"pitch":-161.69469432443788,"roll":52.696846678090125},"location":"Right Hip"},{"euler":{"heading":237.75204781988919,"pitch":-97.55259352093455,"roll":67.20893088307284},"location":"Right Knee"},{"euler":{"heading":92.37558552076193,"pitch":-131.44701074931183,"roll":56.940301558630345},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.444"} +{"sensors":[{"euler":{"heading":76.6497504233367,"pitch":123.45931830566902,"roll":16.669979377395748},"location":"Left Knee"},{"euler":{"heading":119.39777616114347,"pitch":85.90832910787965,"roll":3.835337671010741},"location":"Left Ankle"},{"euler":{"heading":71.23954939280151,"pitch":-28.355958196930743,"roll":-28.35481411481769},"location":"Right Ankle"},{"euler":{"heading":177.51582269271304,"pitch":-161.9127248919941,"roll":53.327162010281114},"location":"Right Hip"},{"euler":{"heading":238.82059303790027,"pitch":-99.29108416884111,"roll":65.75053779476555},"location":"Right Knee"},{"euler":{"heading":83.56927696868574,"pitch":-130.83355967438064,"roll":56.60877140276732},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.544"} +{"sensors":[{"euler":{"heading":74.87227538100304,"pitch":124.03213647510212,"roll":18.034231439656175},"location":"Left Knee"},{"euler":{"heading":108.17049854502913,"pitch":85.89249619709169,"roll":1.939303903909667},"location":"Left Ankle"},{"euler":{"heading":68.13434445352135,"pitch":-26.56411237723767,"roll":-29.69433270333592},"location":"Right Ankle"},{"euler":{"heading":178.51424042344175,"pitch":-161.7089524027947,"roll":53.575695809253006},"location":"Right Hip"},{"euler":{"heading":241.58853373411026,"pitch":-100.018225751957,"roll":63.23173401528899},"location":"Right Knee"},{"euler":{"heading":75.61859927181717,"pitch":-130.49395370694256,"roll":56.49164426249059},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.646"} +{"sensors":[{"euler":{"heading":73.66004784290274,"pitch":124.1664228275919,"roll":18.93705829569056},"location":"Left Knee"},{"euler":{"heading":98.53469869052623,"pitch":85.83449657738252,"roll":0.8078735135187003},"location":"Left Ankle"},{"euler":{"heading":65.03341000816921,"pitch":-25.338951139513902,"roll":-30.749899433002327},"location":"Right Ankle"},{"euler":{"heading":179.84406638109758,"pitch":-160.95680716251522,"roll":53.224376228327706},"location":"Right Hip"},{"euler":{"heading":244.32968036069923,"pitch":-100.2476531767613,"roll":60.814810613760095},"location":"Right Knee"},{"euler":{"heading":68.71923934463545,"pitch":-130.8008083362483,"roll":56.62997983624153},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.746"} +{"sensors":[{"euler":{"heading":73.01279305861247,"pitch":123.98103054483272,"roll":19.468352466121505},"location":"Left Knee"},{"euler":{"heading":91.19997882147361,"pitch":86.15104691964427,"roll":0.7520861621668303},"location":"Left Ankle"},{"euler":{"heading":63.8488190073523,"pitch":-25.505056025562514,"roll":-31.056159489702097},"location":"Right Ankle"},{"euler":{"heading":180.8034097429878,"pitch":-160.34862644626372,"roll":52.30193860549493},"location":"Right Hip"},{"euler":{"heading":245.3404623246293,"pitch":-100.41663785908517,"roll":60.28957955238408},"location":"Right Knee"},{"euler":{"heading":62.803565410171906,"pitch":-131.63947750262346,"roll":57.01698185261738},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.847"} +{"sensors":[{"euler":{"heading":72.87401375275122,"pitch":123.57042749034945,"roll":19.615267219509356},"location":"Left Knee"},{"euler":{"heading":84.73623093932625,"pitch":86.26094222767985,"roll":0.9956275459501474},"location":"Left Ankle"},{"euler":{"heading":65.11393710661707,"pitch":-26.698300423006266,"roll":-30.08179354073189},"location":"Right Ankle"},{"euler":{"heading":181.34806876868905,"pitch":-160.03876380163734,"roll":51.23424474494544},"location":"Right Hip"},{"euler":{"heading":244.78766609216638,"pitch":-100.76247407317666,"roll":61.59812159714568},"location":"Right Knee"},{"euler":{"heading":57.623208869154716,"pitch":-132.95677975236111,"roll":57.446533667355645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.947"} +{"sensors":[{"euler":{"heading":73.3991123774761,"pitch":122.8821347413145,"roll":19.31624049755842},"location":"Left Knee"},{"euler":{"heading":79.35010784539364,"pitch":86.46609800491186,"roll":1.7023147913551326},"location":"Left Ankle"},{"euler":{"heading":67.94629339595537,"pitch":-27.953470380705642,"roll":-28.1298641866587},"location":"Right Ankle"},{"euler":{"heading":180.76951189182014,"pitch":-160.19738742147362,"roll":50.4608202704509},"location":"Right Hip"},{"euler":{"heading":242.68389948294976,"pitch":-72.736226665859,"roll":63.81330943743111},"location":"Right Knee"},{"euler":{"heading":53.317137982239245,"pitch":-134.654851777125,"roll":58.026880300620086},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.47"} +{"sensors":[{"euler":{"heading":74.45295113972848,"pitch":121.98142126718305,"roll":18.49711644780258},"location":"Left Knee"},{"euler":{"heading":75.34634706085428,"pitch":86.82573820442067,"roll":3.1320833122196197},"location":"Left Ankle"},{"euler":{"heading":70.42041405635983,"pitch":-28.83312334263508,"roll":-26.554377767992833},"location":"Right Ankle"},{"euler":{"heading":179.08631070263814,"pitch":-160.74639867932626,"roll":50.077238243405816},"location":"Right Hip"},{"euler":{"heading":240.20300953465477,"pitch":-47.7626039992731,"roll":65.794478493688},"location":"Right Knee"},{"euler":{"heading":49.69167418401532,"pitch":-136.7706165994125,"roll":58.655442270558076},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.148"} +{"sensors":[{"euler":{"heading":76.78890602575564,"pitch":121.25202914046474,"roll":16.591154803022324},"location":"Left Knee"},{"euler":{"heading":72.35546235476886,"pitch":86.78066438397862,"roll":5.587624980997658},"location":"Left Ankle"},{"euler":{"heading":72.03462265072385,"pitch":-29.39981100837157,"roll":-25.905189991193552},"location":"Right Ankle"},{"euler":{"heading":178.05267963237432,"pitch":-161.06550881139364,"roll":49.91951441906524},"location":"Right Hip"},{"euler":{"heading":238.2014585811893,"pitch":-58.448843599345786,"roll":67.3650306443192},"location":"Right Knee"},{"euler":{"heading":46.44750676561379,"pitch":-138.38105493947126,"roll":59.20864804350227},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.249"} +{"sensors":[{"euler":{"heading":80.31626542318007,"pitch":120.61432622641827,"roll":14.057039322720092},"location":"Left Knee"},{"euler":{"heading":70.94491611929197,"pitch":86.82134794558075,"roll":9.222612482897894},"location":"Left Ankle"},{"euler":{"heading":73.09366038565146,"pitch":-29.741079907534417,"roll":-25.433420992074197},"location":"Right Ankle"},{"euler":{"heading":176.8911616691369,"pitch":-161.53395793025427,"roll":50.22131297715872},"location":"Right Hip"},{"euler":{"heading":236.69381272307038,"pitch":-67.02895923941121,"roll":68.12227757988728},"location":"Right Knee"},{"euler":{"heading":41.95900608905241,"pitch":-137.33669944552412,"roll":59.29403323915205},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.350"} +{"sensors":[{"euler":{"heading":83.01588888086206,"pitch":120.62789360377644,"roll":12.326335390448083},"location":"Left Knee"},{"euler":{"heading":68.50042450736278,"pitch":86.17046315102269,"roll":11.062851234608104},"location":"Left Ankle"},{"euler":{"heading":73.75929434708631,"pitch":-29.804471916780976,"roll":-25.40882889286678},"location":"Right Ankle"},{"euler":{"heading":176.2332955022232,"pitch":-161.79931213722884,"roll":50.83668167944285},"location":"Right Hip"},{"euler":{"heading":235.66193145076335,"pitch":-73.96356331547008,"roll":68.41004982189855},"location":"Right Knee"},{"euler":{"heading":73.33810548014716,"pitch":-135.5592795009717,"roll":58.75212991523685},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.450"} +{"sensors":[{"euler":{"heading":82.17679999277587,"pitch":121.5651042433988,"roll":12.706201851403275},"location":"Left Knee"},{"euler":{"heading":63.594132056626506,"pitch":85.28466683592042,"roll":10.025316111147294},"location":"Left Ankle"},{"euler":{"heading":74.15211491237768,"pitch":-29.81777472510288,"roll":-25.730446003580102},"location":"Right Ankle"},{"euler":{"heading":176.14746595200089,"pitch":-161.89438092350596,"roll":51.528013511498564},"location":"Right Hip"},{"euler":{"heading":235.251988305687,"pitch":-79.46720698392308,"roll":68.2690448397087},"location":"Right Knee"},{"euler":{"heading":101.51054493213246,"pitch":-133.59085155087453,"roll":58.00191692371317},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.551"} +{"sensors":[{"euler":{"heading":78.50911999349829,"pitch":123.20234381905892,"roll":14.648081666262948},"location":"Left Knee"},{"euler":{"heading":92.89721885096387,"pitch":84.49995015232838,"roll":6.779034500032564},"location":"Left Ankle"},{"euler":{"heading":73.99315342113991,"pitch":-29.45474725259259,"roll":-26.344901403222092},"location":"Right Ankle"},{"euler":{"heading":176.2014693568008,"pitch":-162.07994283115536,"roll":52.26271216034871},"location":"Right Hip"},{"euler":{"heading":235.2705394751183,"pitch":-83.97673628553076,"roll":67.66714035573783},"location":"Right Knee"},{"euler":{"heading":127.22199043891922,"pitch":-132.03801639578708,"roll":57.38297523134185},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.652"} +{"sensors":[{"euler":{"heading":75.17695799414845,"pitch":124.76960943715304,"roll":16.695773499636655},"location":"Left Knee"},{"euler":{"heading":119.00749696586749,"pitch":84.33120513709555,"roll":3.5261310500293073},"location":"Left Ankle"},{"euler":{"heading":73.00008807902591,"pitch":-28.75302252733333,"roll":-27.529161262899883},"location":"Right Ankle"},{"euler":{"heading":176.6188224211207,"pitch":-162.35944854803984,"roll":53.02394094431385},"location":"Right Hip"},{"euler":{"heading":236.4184855276065,"pitch":-87.29156265697769,"roll":66.36917632016404},"location":"Right Knee"},{"euler":{"heading":115.0372913950273,"pitch":-131.2342147562084,"roll":57.02592770820767},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.752"} +{"sensors":[{"euler":{"heading":73.10301219473361,"pitch":125.37389849343774,"roll":18.28244614967299},"location":"Left Knee"},{"euler":{"heading":107.63799726928075,"pitch":84.43558462338599,"roll":1.5735179450263765},"location":"Left Ankle"},{"euler":{"heading":70.36882927112333,"pitch":-27.940220274599998,"roll":-29.019995136609893},"location":"Right Ankle"},{"euler":{"heading":177.56944017900867,"pitch":-162.42350369323586,"roll":53.55279684988247},"location":"Right Hip"},{"euler":{"heading":239.53288697484584,"pitch":-89.39365639127992,"roll":63.94475868814764},"location":"Right Knee"},{"euler":{"heading":104.13356225552457,"pitch":-130.61704328058755,"roll":56.9483349373869},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.853"} +{"sensors":[{"euler":{"heading":71.89896097526025,"pitch":125.35525864409396,"roll":19.322951534705687},"location":"Left Knee"},{"euler":{"heading":97.92419754235267,"pitch":84.57327616104739,"roll":0.3099161505237389},"location":"Left Ankle"},{"euler":{"heading":93.644446344011,"pitch":-26.077448247139998,"roll":-30.717995622948905},"location":"Right Ankle"},{"euler":{"heading":179.01874616110783,"pitch":-161.78740332391226,"roll":53.35376716489422},"location":"Right Hip"},{"euler":{"heading":242.5920982773613,"pitch":-90.86679075215193,"roll":61.21278281933287},"location":"Right Knee"},{"euler":{"heading":94.66395602997211,"pitch":-130.7740889525288,"roll":57.147251443648216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.953"} +{"sensors":[{"euler":{"heading":71.17781487773424,"pitch":125.10098277968457,"roll":19.92815638123512},"location":"Left Knee"},{"euler":{"heading":90.0692777881174,"pitch":84.90344854494265,"roll":-0.133575464528635},"location":"Left Ankle"},{"euler":{"heading":88.4987517096099,"pitch":-25.000953422425997,"roll":-31.783696060654016},"location":"Right Ankle"},{"euler":{"heading":180.47937154499706,"pitch":-161.05866299152103,"roll":52.530890448404804},"location":"Right Hip"},{"euler":{"heading":244.25788844962517,"pitch":-91.83011167693674,"roll":59.87275453739959},"location":"Right Knee"},{"euler":{"heading":86.3038104269749,"pitch":-131.55918005727594,"roll":57.457526299283394},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.54"} +{"sensors":[{"euler":{"heading":70.9412833899608,"pitch":124.65338450171612,"roll":20.14159074311161},"location":"Left Knee"},{"euler":{"heading":83.54985000930566,"pitch":85.18185369044838,"roll":-0.0327179180757715},"location":"Left Ankle"},{"euler":{"heading":86.18012653864892,"pitch":-25.6633580801834,"roll":-31.480326454588614},"location":"Right Ankle"},{"euler":{"heading":181.40643439049737,"pitch":-160.57154669236894,"roll":51.45280140356432},"location":"Right Hip"},{"euler":{"heading":244.23834960466266,"pitch":-92.65335050924307,"roll":60.63547908365963},"location":"Right Knee"},{"euler":{"heading":79.04217938427742,"pitch":-132.85326205154834,"roll":57.968023669355055},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.154"} +{"sensors":[{"euler":{"heading":71.29715505096472,"pitch":123.9817960515445,"roll":19.946181668800453},"location":"Left Knee"},{"euler":{"heading":78.03861500837509,"pitch":85.40116832140355,"roll":0.46430387373180565},"location":"Left Ankle"},{"euler":{"heading":86.58711388478403,"pitch":-27.06577227216506,"roll":-29.73854380912975},"location":"Right Ankle"},{"euler":{"heading":181.24704095144762,"pitch":-160.53939202313205,"roll":50.545021263207886},"location":"Right Hip"},{"euler":{"heading":242.58326464419642,"pitch":-101.06301545831876,"roll":62.93443117529367},"location":"Right Knee"},{"euler":{"heading":72.84421144584968,"pitch":-134.68043584639352,"roll":58.66497130241955},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.255"} +{"sensors":[{"euler":{"heading":72.33618954586825,"pitch":123.20236644639006,"roll":19.18906350192041},"location":"Left Knee"},{"euler":{"heading":73.75350350753757,"pitch":85.64855148926318,"roll":1.6178734863586253},"location":"Left Ankle"},{"euler":{"heading":87.61590249630564,"pitch":-28.609195044948553,"roll":-27.639689428216776},"location":"Right Ankle"},{"euler":{"heading":180.06608685630286,"pitch":-160.80420282081886,"roll":50.159269136887104},"location":"Right Hip"},{"euler":{"heading":240.19993817977678,"pitch":-76.58171391248689,"roll":64.72848805776431},"location":"Right Knee"},{"euler":{"heading":67.3785403012647,"pitch":-136.83114226175417,"roll":59.3797241721776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.356"} +{"sensors":[{"euler":{"heading":74.34632059128144,"pitch":122.40712980175105,"roll":17.57015715172837},"location":"Left Knee"},{"euler":{"heading":70.94690315678382,"pitch":85.79619634033688,"roll":3.8560861377227633},"location":"Left Ankle"},{"euler":{"heading":87.55431224667508,"pitch":-29.448275540453697,"roll":-26.494470485395098},"location":"Right Ankle"},{"euler":{"heading":179.0157281706726,"pitch":-161.04878253873696,"roll":49.84959222319839},"location":"Right Hip"},{"euler":{"heading":237.94244436179912,"pitch":-86.85479252123821,"roll":66.54313925198788},"location":"Right Knee"},{"euler":{"heading":62.65943627113823,"pitch":-138.76677803557874,"roll":60.11675175495985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.456"} +{"sensors":[{"euler":{"heading":77.86793853215329,"pitch":121.77266682157595,"roll":15.031891436555533},"location":"Left Knee"},{"euler":{"heading":69.98346284110544,"pitch":86.36032670630318,"roll":7.532977523950487},"location":"Left Ankle"},{"euler":{"heading":87.01763102200758,"pitch":-29.922197986408328,"roll":-25.98877343685559},"location":"Right Ankle"},{"euler":{"heading":178.24540535360532,"pitch":-161.18140428486328,"roll":49.94588300087855},"location":"Right Hip"},{"euler":{"heading":236.1919499256192,"pitch":-93.1755632691144,"roll":67.71382532678909},"location":"Right Knee"},{"euler":{"heading":56.930992644024414,"pitch":-138.37135023202086,"roll":60.23007657946387},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.557"} +{"sensors":[{"euler":{"heading":81.47489467893796,"pitch":121.14540013941836,"roll":12.77870229289998},"location":"Left Knee"},{"euler":{"heading":68.3913665569949,"pitch":86.09929403567287,"roll":10.46717977155544},"location":"Left Ankle"},{"euler":{"heading":86.34086791980683,"pitch":-30.329978187767495,"roll":-25.90239609317003},"location":"Right Ankle"},{"euler":{"heading":177.7896148182448,"pitch":-161.21951385637695,"roll":50.4200447007907},"location":"Right Hip"},{"euler":{"heading":235.0665049330573,"pitch":-98.03925694220297,"roll":68.19869279411019},"location":"Right Knee"},{"euler":{"heading":87.22539337962198,"pitch":-136.6779652088188,"roll":59.76331892151748},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.658"} +{"sensors":[{"euler":{"heading":82.77740521104417,"pitch":121.44336012547652,"roll":12.238332063609983},"location":"Left Knee"},{"euler":{"heading":64.7709799012954,"pitch":85.52686463210559,"roll":10.757961794399897},"location":"Left Ankle"},{"euler":{"heading":85.65678112782615,"pitch":-30.728230368990744,"roll":-26.03715648385303},"location":"Right Ankle"},{"euler":{"heading":177.81065333642033,"pitch":-161.16006247073926,"roll":51.04054023071163},"location":"Right Hip"},{"euler":{"heading":234.62235443975158,"pitch":-101.62908124798267,"roll":68.25382351469918},"location":"Right Knee"},{"euler":{"heading":114.13410404165978,"pitch":-134.7101686879369,"roll":58.89948702936573},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.759"} +{"sensors":[{"euler":{"heading":80.10591468993975,"pitch":122.77402411292886,"roll":13.683248857248984},"location":"Left Knee"},{"euler":{"heading":58.66888191116587,"pitch":84.66792816889502,"roll":8.363415614959909},"location":"Left Ankle"},{"euler":{"heading":84.59735301504354,"pitch":-30.84290733209167,"roll":-26.508440835467724},"location":"Right Ankle"},{"euler":{"heading":177.9983380027783,"pitch":-161.20655622366533,"roll":51.661486207640465},"location":"Right Hip"},{"euler":{"heading":234.67886899577644,"pitch":-104.2161731231844,"roll":67.85969116322926},"location":"Right Knee"},{"euler":{"heading":137.6394436374938,"pitch":-133.60165181914323,"roll":57.82828832642916},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.859"} +{"sensors":[{"euler":{"heading":76.15782322094577,"pitch":124.55912170163597,"roll":15.858673971524087},"location":"Left Knee"},{"euler":{"heading":87.97074372004928,"pitch":83.75113535200552,"roll":4.720824053463917},"location":"Left Ankle"},{"euler":{"heading":82.86886771353919,"pitch":-30.377366598882503,"roll":-27.501346751920952},"location":"Right Ankle"},{"euler":{"heading":178.24225420250045,"pitch":-161.3609006012988,"roll":52.364087586876416},"location":"Right Hip"},{"euler":{"heading":235.3047320961988,"pitch":-105.90705581086597,"roll":66.91747204690634},"location":"Right Knee"},{"euler":{"heading":124.06924927374442,"pitch":-132.4102366372289,"roll":57.40170949378625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.960"} +{"sensors":[{"euler":{"heading":73.6482908988512,"pitch":125.45320953147237,"roll":17.735306574371677},"location":"Left Knee"},{"euler":{"heading":115.05491934804436,"pitch":83.67602181680496,"roll":2.0924916481175257},"location":"Left Ankle"},{"euler":{"heading":80.10698094218527,"pitch":-29.452129938994254,"roll":-28.90121207672886},"location":"Right Ankle"},{"euler":{"heading":178.72427878225042,"pitch":-161.7060605411689,"roll":53.07767882818878},"location":"Right Hip"},{"euler":{"heading":237.22425888657892,"pitch":-106.71010022977937,"roll":65.1694748422157},"location":"Right Knee"},{"euler":{"heading":112.32482434636998,"pitch":-131.83796297350602,"roll":57.19903854440763},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.61"} +{"sensors":[{"euler":{"heading":72.23346180896608,"pitch":125.59538857832513,"roll":19.01177591693451},"location":"Left Knee"},{"euler":{"heading":104.43692741323993,"pitch":83.86466963512447,"roll":0.6332424833057733},"location":"Left Ankle"},{"euler":{"heading":102.77128284796675,"pitch":-27.32566694509483,"roll":-30.779840869055977},"location":"Right Ankle"},{"euler":{"heading":179.83310090402537,"pitch":-161.37920448705202,"roll":53.2699109453699},"location":"Right Hip"},{"euler":{"heading":240.12058299792105,"pitch":-106.68909020680144,"roll":62.59627735799414},"location":"Right Knee"},{"euler":{"heading":101.81734191173298,"pitch":-131.49166667615543,"roll":57.29163468996687},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.162"} +{"sensors":[{"euler":{"heading":71.61636562806947,"pitch":125.12334972049263,"roll":19.91059832524106},"location":"Left Knee"},{"euler":{"heading":95.59948467191595,"pitch":84.47820267161202,"roll":-0.18633176502480409},"location":"Left Ankle"},{"euler":{"heading":96.15665456317006,"pitch":-25.805600250585346,"roll":-32.08310678215038},"location":"Right Ankle"},{"euler":{"heading":181.12479081362284,"pitch":-160.76003403834684,"roll":52.717919850832914},"location":"Right Hip"},{"euler":{"heading":242.50852469812895,"pitch":-106.3076811861213,"roll":60.542899622194724},"location":"Right Knee"},{"euler":{"heading":92.7418577205597,"pitch":-131.9675000085399,"roll":57.55622122097018},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.266"} +{"sensors":[{"euler":{"heading":71.45472906526253,"pitch":124.32351474844337,"roll":20.500788492716957},"location":"Left Knee"},{"euler":{"heading":88.53953620472436,"pitch":85.34913240445081,"roll":-0.3114485885223237},"location":"Left Ankle"},{"euler":{"heading":92.27223910685306,"pitch":-26.31879022552681,"roll":-32.337296103935344},"location":"Right Ankle"},{"euler":{"heading":182.02481173226056,"pitch":-160.30278063451217,"roll":51.696127865749624},"location":"Right Hip"},{"euler":{"heading":243.56392222831607,"pitch":-105.75191306750918,"roll":60.376109659975256},"location":"Right Knee"},{"euler":{"heading":84.92392194850372,"pitch":-133.05825000768593,"roll":58.00684909887316},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.367"} +{"sensors":[{"euler":{"heading":71.90300615873628,"pitch":123.29116327359904,"roll":20.63820964344526},"location":"Left Knee"},{"euler":{"heading":82.37308258425192,"pitch":86.08296916400573,"roll":-0.06780372967009135},"location":"Left Ankle"},{"euler":{"heading":91.35126519616776,"pitch":-27.77441120297413,"roll":-30.93481649354181},"location":"Right Ankle"},{"euler":{"heading":181.8598305590345,"pitch":-160.35375257106097,"roll":50.67651507917466},"location":"Right Hip"},{"euler":{"heading":242.58253000548447,"pitch":-106.78922176075827,"roll":62.225998693977736},"location":"Right Knee"},{"euler":{"heading":78.14402975365336,"pitch":-134.60242500691734,"roll":58.587414188985846},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.468"} +{"sensors":[{"euler":{"heading":72.96895554286264,"pitch":122.13704694623914,"roll":20.199388679100736},"location":"Left Knee"},{"euler":{"heading":77.33577432582673,"pitch":86.83092224760516,"roll":0.7327266432969178},"location":"Left Ankle"},{"euler":{"heading":91.82863867655098,"pitch":-29.34697008267672,"roll":-28.635084844187627},"location":"Right Ankle"},{"euler":{"heading":180.92384750313104,"pitch":-160.70587731395486,"roll":50.19011357125719},"location":"Right Hip"},{"euler":{"heading":240.59927700493603,"pitch":-78.32279958468243,"roll":64.37214882457997},"location":"Right Knee"},{"euler":{"heading":72.26087677828802,"pitch":-136.4171825062256,"roll":59.297422770087266},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.569"} +{"sensors":[{"euler":{"heading":74.74705998857638,"pitch":121.02959225161523,"roll":19.01694981119066},"location":"Left Knee"},{"euler":{"heading":73.70219689324405,"pitch":87.47908002284464,"roll":2.471953978967226},"location":"Left Ankle"},{"euler":{"heading":92.06452480889588,"pitch":-30.212273074409048,"roll":-27.021576359768865},"location":"Right Ankle"},{"euler":{"heading":179.57521275281795,"pitch":-161.1915395825594,"roll":50.027352214131476},"location":"Right Hip"},{"euler":{"heading":238.33309930444244,"pitch":-88.43426962621419,"roll":66.32868394212197},"location":"Right Knee"},{"euler":{"heading":67.19103910045922,"pitch":-138.44421425560304,"roll":60.05518049307854},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.669"} +{"sensors":[{"euler":{"heading":77.70985398971875,"pitch":120.4766330264537,"roll":16.677754830071596},"location":"Left Knee"},{"euler":{"heading":71.62572720391965,"pitch":87.59367202056018,"roll":5.681008581070504},"location":"Left Ankle"},{"euler":{"heading":91.3393223280063,"pitch":-30.534795766968145,"roll":-26.37566872379198},"location":"Right Ankle"},{"euler":{"heading":178.77394147753617,"pitch":-161.48488562430344,"roll":50.11211699271833},"location":"Right Hip"},{"euler":{"heading":236.4122893739982,"pitch":-93.99084266359277,"roll":67.59581554790978},"location":"Right Knee"},{"euler":{"heading":61.8906851904133,"pitch":-139.16854283004275,"roll":60.44341244377068},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.770"} +{"sensors":[{"euler":{"heading":81.22011859074688,"pitch":119.83521972380834,"roll":14.116229347064436},"location":"Left Knee"},{"euler":{"heading":69.99440448352769,"pitch":87.25930481850416,"roll":9.075407722963455},"location":"Left Ankle"},{"euler":{"heading":90.40539009520568,"pitch":-30.575066190271333,"roll":-26.169351851412785},"location":"Right Ankle"},{"euler":{"heading":177.78404732978254,"pitch":-161.8426470618731,"roll":50.6759052934465},"location":"Right Hip"},{"euler":{"heading":234.8273104365984,"pitch":-98.6667583972335,"roll":68.1612339931188},"location":"Right Knee"},{"euler":{"heading":56.10161667137197,"pitch":-137.68293854703848,"roll":60.43032119939362},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.870"} +{"sensors":[{"euler":{"heading":83.2293567316722,"pitch":120.00794775142751,"roll":12.873356412357992},"location":"Left Knee"},{"euler":{"heading":66.64496403517492,"pitch":86.53337433665375,"roll":9.92411695066711},"location":"Left Ankle"},{"euler":{"heading":89.4648510856851,"pitch":-30.5175595712442,"roll":-26.33991666627151},"location":"Right Ankle"},{"euler":{"heading":177.2431425968043,"pitch":-162.0771323556858,"roll":51.439564764101846},"location":"Right Hip"},{"euler":{"heading":233.80082939293857,"pitch":-102.17508255751015,"roll":68.28261059380692},"location":"Right Knee"},{"euler":{"heading":86.27270500423478,"pitch":-135.82089469233463,"roll":59.787289079454254},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.970"} +{"sensors":[{"euler":{"heading":81.68767105850498,"pitch":121.16340297628476,"roll":13.704770771122194},"location":"Left Knee"},{"euler":{"heading":60.73046763165743,"pitch":85.83003690298838,"roll":8.087955255600399},"location":"Left Ankle"},{"euler":{"heading":88.1683659771166,"pitch":-30.26580361411978,"roll":-26.75592499964436},"location":"Right Ankle"},{"euler":{"heading":176.91882833712387,"pitch":-162.4131691201172,"roll":52.22060828769166},"location":"Right Hip"},{"euler":{"heading":233.4207464536447,"pitch":-104.69507430175913,"roll":67.92309953442623},"location":"Right Knee"},{"euler":{"heading":113.3516845038113,"pitch":-133.83255522310117,"roll":59.05231017150883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.72"} +{"sensors":[{"euler":{"heading":78.37515395265449,"pitch":122.8845626786563,"roll":15.678043694009974},"location":"Left Knee"},{"euler":{"heading":89.7386708684917,"pitch":85.06578321268954,"roll":4.535409730040358},"location":"Left Ankle"},{"euler":{"heading":86.40152937940493,"pitch":-29.714223252707804,"roll":-27.617832499679928},"location":"Right Ankle"},{"euler":{"heading":176.8394455034115,"pitch":-162.89685220810549,"roll":53.117297458922494},"location":"Right Hip"},{"euler":{"heading":233.84742180828025,"pitch":-106.38181687158323,"roll":66.99953958098361},"location":"Right Knee"},{"euler":{"heading":102.40401605343017,"pitch":-132.62429970079106,"roll":58.55332915435795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.176"} +{"sensors":[{"euler":{"heading":75.98763855738905,"pitch":123.89610641079067,"roll":17.485239324608976},"location":"Left Knee"},{"euler":{"heading":116.60855378164253,"pitch":85.0404548914206,"roll":2.0943687570363227},"location":"Left Ankle"},{"euler":{"heading":83.58012644146444,"pitch":-28.974050927437023,"roll":-28.95604924971194},"location":"Right Ankle"},{"euler":{"heading":177.19300095307034,"pitch":-163.39466698729493,"roll":53.911817713030246},"location":"Right Hip"},{"euler":{"heading":235.85642962745223,"pitch":-107.0561351844249,"roll":65.17458562288525},"location":"Right Knee"},{"euler":{"heading":92.87611444808716,"pitch":-131.77436973071195,"roll":58.25424623892215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.276"} +{"sensors":[{"euler":{"heading":74.63887470165014,"pitch":124.1627457697116,"roll":18.72421539214808},"location":"Left Knee"},{"euler":{"heading":105.69144840347828,"pitch":85.32390940227853,"roll":0.6349318813326905},"location":"Left Ankle"},{"euler":{"heading":105.897113797318,"pitch":-26.88914583469332,"roll":-30.704194324740747},"location":"Right Ankle"},{"euler":{"heading":178.3299508577633,"pitch":-163.04895028856544,"roll":54.095635941727224},"location":"Right Hip"},{"euler":{"heading":239.00828666470701,"pitch":-107.05677166598241,"roll":62.44462706059672},"location":"Right Knee"},{"euler":{"heading":84.28225300327844,"pitch":-131.16568275764075,"roll":58.21007161502994},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.377"} +{"sensors":[{"euler":{"heading":73.85623723148514,"pitch":123.83397119274045,"roll":19.69554385293327},"location":"Left Knee"},{"euler":{"heading":96.50355356313044,"pitch":85.91651846205067,"roll":-0.2973113068005785},"location":"Left Ankle"},{"euler":{"heading":98.83240241758621,"pitch":-25.13773125122399,"roll":-32.04627489226667},"location":"Right Ankle"},{"euler":{"heading":179.85945577198697,"pitch":-162.16280525970888,"roll":53.5673223475545},"location":"Right Hip"},{"euler":{"heading":241.84495799823634,"pitch":-106.61359449938418,"roll":60.10641435453705},"location":"Right Knee"},{"euler":{"heading":77.03527770295061,"pitch":-131.5928644818767,"roll":58.36406445352695},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.477"} +{"sensors":[{"euler":{"heading":73.58936350833663,"pitch":123.16307407346642,"roll":20.300989467639944},"location":"Left Knee"},{"euler":{"heading":89.1031982068174,"pitch":86.63736661584561,"roll":-0.48633017612052065},"location":"Left Ankle"},{"euler":{"heading":94.40541217582759,"pitch":-25.49270812610159,"roll":-32.40414740304001},"location":"Right Ankle"},{"euler":{"heading":181.1172601947883,"pitch":-161.415274733738,"roll":52.54184011279905},"location":"Right Hip"},{"euler":{"heading":243.15421219841272,"pitch":-106.08348504944576,"roll":59.602022919083346},"location":"Right Knee"},{"euler":{"heading":70.80049993265555,"pitch":-132.639828033689,"roll":58.677658008174255},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.578"} +{"sensors":[{"euler":{"heading":73.83667715750298,"pitch":122.31551666611978,"roll":20.45214052087595},"location":"Left Knee"},{"euler":{"heading":82.69287838613566,"pitch":87.26112995426104,"roll":-0.33144715850846856},"location":"Left Ankle"},{"euler":{"heading":93.28987095824483,"pitch":-27.005937313491433,"roll":-30.994982662736007},"location":"Right Ankle"},{"euler":{"heading":181.54303417530946,"pitch":-161.0862472603642,"roll":51.50640610151915},"location":"Right Hip"},{"euler":{"heading":242.40754097857146,"pitch":-106.75638654450118,"roll":61.360570627175015},"location":"Right Knee"},{"euler":{"heading":65.47669993939,"pitch":-134.3070952303201,"roll":59.11614220735683},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.679"} +{"sensors":[{"euler":{"heading":74.67800944175268,"pitch":121.3152149995078,"roll":20.000676468788356},"location":"Left Knee"},{"euler":{"heading":77.49234054752209,"pitch":87.85376695883492,"roll":0.43294755734237833},"location":"Left Ankle"},{"euler":{"heading":93.56713386242035,"pitch":-28.54284358214229,"roll":-28.75798439646241},"location":"Right Ankle"},{"euler":{"heading":180.81373075777853,"pitch":-161.20262253432776,"roll":50.943265491367235},"location":"Right Hip"},{"euler":{"heading":240.28553688071432,"pitch":-79.87449789005107,"roll":63.39951356445752},"location":"Right Knee"},{"euler":{"heading":60.87902994545101,"pitch":-136.28263570728808,"roll":59.67327798662115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.779"} +{"sensors":[{"euler":{"heading":76.16645849757741,"pitch":120.32744349955702,"roll":18.95060882190952},"location":"Left Knee"},{"euler":{"heading":73.81810649276989,"pitch":88.44339026295144,"roll":2.1709028016081406},"location":"Left Ankle"},{"euler":{"heading":93.42292047617832,"pitch":-29.56980922392806,"roll":-27.219685956816168},"location":"Right Ankle"},{"euler":{"heading":179.50110768200068,"pitch":-161.632360280895,"roll":50.62393894223051},"location":"Right Hip"},{"euler":{"heading":238.07573319264287,"pitch":-54.31829810104596,"roll":65.25956220801177},"location":"Right Knee"},{"euler":{"heading":56.891126950905914,"pitch":-138.39187213655927,"roll":60.28095018795904},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.880"} +{"sensors":[{"euler":{"heading":78.84981264781966,"pitch":119.72594914960132,"roll":16.62429793971857},"location":"Left Knee"},{"euler":{"heading":71.3425458434929,"pitch":88.6740512366563,"roll":5.428812521447327},"location":"Left Ankle"},{"euler":{"heading":92.49937842856049,"pitch":-30.069078301535257,"roll":-26.71021736113455},"location":"Right Ankle"},{"euler":{"heading":178.8447469138006,"pitch":-161.8503742528055,"roll":50.57404504800746},"location":"Right Hip"},{"euler":{"heading":236.23065987337858,"pitch":-64.38021829094137,"roll":66.48985598721059},"location":"Right Knee"},{"euler":{"heading":52.48326425581532,"pitch":-138.85268492290336,"roll":60.44035516916314},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.982"} +{"sensors":[{"euler":{"heading":82.24608138303769,"pitch":119.0596042346412,"roll":14.130618145746713},"location":"Left Knee"},{"euler":{"heading":69.47079125914361,"pitch":88.51914611299067,"roll":8.829681269302595},"location":"Left Ankle"},{"euler":{"heading":91.41194058570444,"pitch":-30.26217047138173,"roll":-26.457945625021093},"location":"Right Ankle"},{"euler":{"heading":178.04152222242055,"pitch":-162.10908682752495,"roll":51.00414054320672},"location":"Right Hip"},{"euler":{"heading":234.69509388604072,"pitch":-72.47969646184724,"roll":67.20337038848953},"location":"Right Knee"},{"euler":{"heading":47.36618783023379,"pitch":-136.98616643061303,"roll":60.14006965224683},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.83"} +{"sensors":[{"euler":{"heading":83.99022324473393,"pitch":119.32239381117708,"roll":13.03630633117204},"location":"Left Knee"},{"euler":{"heading":66.59246213322925,"pitch":87.6547315016916,"roll":9.690463142372336},"location":"Left Ankle"},{"euler":{"heading":90.345746527134,"pitch":-30.373453424243557,"roll":-26.537151062518987},"location":"Right Ankle"},{"euler":{"heading":177.63737000017852,"pitch":-162.26067814477247,"roll":51.64122648888605},"location":"Right Hip"},{"euler":{"heading":233.76308449743664,"pitch":-78.93172681566251,"roll":67.48928334964057},"location":"Right Knee"},{"euler":{"heading":78.1233190472104,"pitch":-135.02504978755172,"roll":59.31981268702215},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.184"} +{"sensors":[{"euler":{"heading":82.05995092026053,"pitch":120.57765443005937,"roll":14.057675698054837},"location":"Left Knee"},{"euler":{"heading":60.60196591990633,"pitch":86.71425835152245,"roll":7.740166828135101},"location":"Left Ankle"},{"euler":{"heading":89.0736718744206,"pitch":-30.292358081819202,"roll":-26.89593595626709},"location":"Right Ankle"},{"euler":{"heading":177.52988300016068,"pitch":-162.43461033029524,"roll":52.345853839997446},"location":"Right Hip"},{"euler":{"heading":233.36802604769298,"pitch":-84.05105413409626,"roll":67.35285501467652},"location":"Right Knee"},{"euler":{"heading":105.88598714248937,"pitch":-133.09754480879656,"roll":58.550331418319935},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.285"} +{"sensors":[{"euler":{"heading":78.52895582823447,"pitch":122.35113898705343,"roll":16.095658128249354},"location":"Left Knee"},{"euler":{"heading":89.5855193279157,"pitch":85.8740825163702,"roll":4.159900145321591},"location":"Left Ankle"},{"euler":{"heading":87.29755468697853,"pitch":-29.831872273637284,"roll":-27.83134236064038},"location":"Right Ankle"},{"euler":{"heading":177.65814470014462,"pitch":-162.68489929726573,"roll":53.1300184559977},"location":"Right Hip"},{"euler":{"heading":233.71872344292368,"pitch":-88.02719872068664,"roll":66.64256951320887},"location":"Right Knee"},{"euler":{"heading":95.57863842824044,"pitch":-131.9315403279169,"roll":58.00154827648794},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.386"} +{"sensors":[{"euler":{"heading":76.20106024541103,"pitch":123.4222750883481,"roll":17.84859231542442},"location":"Left Knee"},{"euler":{"heading":116.27696739512413,"pitch":85.73042426473317,"roll":1.593910130789432},"location":"Left Ankle"},{"euler":{"heading":84.54279921828068,"pitch":-28.911185046273555,"roll":-29.166958124576347},"location":"Right Ankle"},{"euler":{"heading":178.09233023013016,"pitch":-163.07890936753915,"roll":53.91701661039793},"location":"Right Hip"},{"euler":{"heading":235.2281010986313,"pitch":-90.84322884861798,"roll":65.19081256188798},"location":"Right Knee"},{"euler":{"heading":86.77702458541638,"pitch":-131.1571362951252,"roll":57.72014344883915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.486"} +{"sensors":[{"euler":{"heading":74.73720422086993,"pitch":123.7300475795133,"roll":19.10123308388198},"location":"Left Knee"},{"euler":{"heading":105.37427065561171,"pitch":85.90113183825986,"roll":0.12201911771048879},"location":"Left Ankle"},{"euler":{"heading":107.13851929645261,"pitch":-27.1138165416462,"roll":-30.869012312118713},"location":"Right Ankle"},{"euler":{"heading":179.44559720711715,"pitch":-162.73976843078523,"roll":54.17531494935814},"location":"Right Hip"},{"euler":{"heading":238.17404098876818,"pitch":-92.3964059637562,"roll":62.70298130569918},"location":"Right Knee"},{"euler":{"heading":78.89307212687476,"pitch":-130.7851726656127,"roll":57.70437910395524},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.587"} +{"sensors":[{"euler":{"heading":74.01973379878294,"pitch":123.40704282156197,"roll":19.991109775493783},"location":"Left Knee"},{"euler":{"heading":96.34309359005053,"pitch":86.47976865443388,"roll":-0.6464327940605602},"location":"Left Ankle"},{"euler":{"heading":99.88091736680735,"pitch":-25.33368488748158,"roll":-32.16336108090684},"location":"Right Ankle"},{"euler":{"heading":180.93228748640544,"pitch":-161.96579158770672,"roll":53.67653345442233},"location":"Right Hip"},{"euler":{"heading":241.0941368898914,"pitch":-93.33176536738057,"roll":60.376433175129264},"location":"Right Knee"},{"euler":{"heading":72.14751491418728,"pitch":-131.00665539905143,"roll":57.91519119355972},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.687"} +{"sensors":[{"euler":{"heading":73.73026041890465,"pitch":122.76633853940578,"roll":20.560748797944406},"location":"Left Knee"},{"euler":{"heading":89.59628423104549,"pitch":87.3005417889905,"roll":-0.3505395146545042},"location":"Left Ankle"},{"euler":{"heading":95.04282563012663,"pitch":-25.400316398733427,"roll":-32.75327497281616},"location":"Right Ankle"},{"euler":{"heading":182.4203087377649,"pitch":-161.20046242893605,"roll":52.6276301089801},"location":"Right Hip"},{"euler":{"heading":242.64097320090227,"pitch":-94.04233883064252,"roll":59.695039857616344},"location":"Right Knee"},{"euler":{"heading":66.39526342276856,"pitch":-131.9497398591463,"roll":58.323672074203756},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.787"} +{"sensors":[{"euler":{"heading":73.95723437701417,"pitch":121.9584546854652,"roll":20.685923918149964},"location":"Left Knee"},{"euler":{"heading":83.54290580794094,"pitch":87.87673761009145,"roll":0.16576443681094621},"location":"Left Ankle"},{"euler":{"heading":93.11354306711397,"pitch":-26.860284758860086,"roll":-31.746697475534543},"location":"Right Ankle"},{"euler":{"heading":183.10327786398844,"pitch":-160.88666618604245,"roll":51.427367098082094},"location":"Right Hip"},{"euler":{"heading":242.48312588081205,"pitch":-95.55060494757828,"roll":61.22553587185471},"location":"Right Knee"},{"euler":{"heading":61.36823708049171,"pitch":-133.42351587323165,"roll":58.79755486678338},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.888"} +{"sensors":[{"euler":{"heading":74.83651093931276,"pitch":121.05635921691868,"roll":20.21733152633497},"location":"Left Knee"},{"euler":{"heading":78.46361522714686,"pitch":88.32031384908231,"roll":1.1429379931298516},"location":"Left Ankle"},{"euler":{"heading":92.98968876040257,"pitch":-28.44300628297408,"roll":-29.690777727981086},"location":"Right Ankle"},{"euler":{"heading":182.78045007758962,"pitch":-160.8417495674382,"roll":50.74713038827388},"location":"Right Hip"},{"euler":{"heading":240.60356329273085,"pitch":-68.18929445282045,"roll":63.42173228466924},"location":"Right Knee"},{"euler":{"heading":56.97516337244254,"pitch":-135.0561642859085,"roll":59.40529938010505},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.989"} +{"sensors":[{"euler":{"heading":76.32785984538148,"pitch":120.13822329522681,"roll":19.108098373701473},"location":"Left Knee"},{"euler":{"heading":74.84850370443218,"pitch":88.79453246417408,"roll":2.928644193816867},"location":"Left Ankle"},{"euler":{"heading":93.19696988436232,"pitch":-29.636205654676672,"roll":-27.877949955182977},"location":"Right Ankle"},{"euler":{"heading":181.48990506983068,"pitch":-161.17632461069437,"roll":50.45991734944649},"location":"Right Hip"},{"euler":{"heading":238.42445696345777,"pitch":-46.0203650075384,"roll":65.32955905620231},"location":"Right Knee"},{"euler":{"heading":53.215147035198285,"pitch":-137.11929785731766,"roll":60.04601944209455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.90"} +{"sensors":[{"euler":{"heading":78.87632386084334,"pitch":119.47440096570412,"roll":16.978538536331328},"location":"Left Knee"},{"euler":{"heading":72.42615333398896,"pitch":88.88382921775667,"roll":5.529529774435181},"location":"Left Ankle"},{"euler":{"heading":92.62727289592608,"pitch":-30.247585089209004,"roll":-26.98390495966468},"location":"Right Ankle"},{"euler":{"heading":180.74091456284762,"pitch":-161.33994214962493,"roll":50.370175614501846},"location":"Right Hip"},{"euler":{"heading":236.363261267112,"pitch":-57.46832850678456,"roll":67.02160315058208},"location":"Right Knee"},{"euler":{"heading":49.74363233167846,"pitch":-138.82611807158588,"roll":60.485167497885094},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.191"} +{"sensors":[{"euler":{"heading":82.48244147475901,"pitch":118.50821086913372,"roll":14.330684682698196},"location":"Left Knee"},{"euler":{"heading":71.18978800059007,"pitch":89.220446295981,"roll":9.251576796991664},"location":"Left Ankle"},{"euler":{"heading":91.64579560633348,"pitch":-30.516576580288103,"roll":-26.685514463698212},"location":"Right Ankle"},{"euler":{"heading":180.09182310656288,"pitch":-161.50594793466246,"roll":50.72690805305166},"location":"Right Hip"},{"euler":{"heading":234.7456851404008,"pitch":-66.52149565610611,"roll":67.90694283552388},"location":"Right Knee"},{"euler":{"heading":45.47551909851062,"pitch":-137.8622562644273,"roll":60.505400748096584},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.292"} +{"sensors":[{"euler":{"heading":85.12794732728311,"pitch":118.54488978222035,"roll":12.766366214428377},"location":"Left Knee"},{"euler":{"heading":68.58955920053106,"pitch":88.4859016663829,"roll":11.095169117292498},"location":"Left Ankle"},{"euler":{"heading":90.61246604570013,"pitch":-30.683668922259294,"roll":-26.77946301732839},"location":"Right Ankle"},{"euler":{"heading":179.8388907959066,"pitch":-161.50535314119622,"roll":51.341717247746494},"location":"Right Hip"},{"euler":{"heading":233.75236662636075,"pitch":-73.79434609049551,"roll":68.2099985519715},"location":"Right Knee"},{"euler":{"heading":76.74671718865956,"pitch":-136.15728063798457,"roll":59.79861067328692},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.393"} +{"sensors":[{"euler":{"heading":83.8839025945548,"pitch":119.65915080399832,"roll":13.38972959298554},"location":"Left Knee"},{"euler":{"heading":63.73060328047795,"pitch":89.22481149974462,"roll":10.023152205563248},"location":"Left Ankle"},{"euler":{"heading":89.31371944113012,"pitch":-30.759052030033367,"roll":-27.12651671559555},"location":"Right Ankle"},{"euler":{"heading":179.99875171631595,"pitch":-161.4985678270766,"roll":51.97629552297185},"location":"Right Hip"},{"euler":{"heading":233.4646299637247,"pitch":-79.51491148144595,"roll":68.07024869677434},"location":"Right Knee"},{"euler":{"heading":104.7345454697936,"pitch":-134.1478025741861,"roll":58.94999960595823},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.493"} +{"sensors":[{"euler":{"heading":80.23926233509933,"pitch":121.43073572359849,"roll":15.463256633686987},"location":"Left Knee"},{"euler":{"heading":92.72629295243016,"pitch":86.70233034977016,"roll":6.558336985006923},"location":"Left Ankle"},{"euler":{"heading":87.61359749701711,"pitch":-30.40189682703003,"roll":-27.870115044035995},"location":"Right Ankle"},{"euler":{"heading":180.30512654468436,"pitch":-161.51121104436896,"roll":52.65991597067467},"location":"Right Hip"},{"euler":{"heading":233.66191696735223,"pitch":-84.10092033330136,"roll":67.4382238270969},"location":"Right Knee"},{"euler":{"heading":94.42984092281425,"pitch":-132.6017723167675,"roll":58.29249964536241},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.594"} +{"sensors":[{"euler":{"heading":76.8840861015894,"pitch":123.07516215123863,"roll":17.48568097031829},"location":"Left Knee"},{"euler":{"heading":118.55366365718714,"pitch":86.28209731479315,"roll":3.0400032865062303},"location":"Left Ankle"},{"euler":{"heading":85.1647377473154,"pitch":-29.574207144327026,"roll":-29.133103539632398},"location":"Right Ankle"},{"euler":{"heading":180.63086389021592,"pitch":-161.81008993993206,"roll":53.4626743736072},"location":"Right Hip"},{"euler":{"heading":234.739475270617,"pitch":-87.55332829997123,"roll":66.17565144438721},"location":"Right Knee"},{"euler":{"heading":85.54935683053283,"pitch":-131.56034508509074,"roll":57.881999680826176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.695"} +{"sensors":[{"euler":{"heading":74.58942749143046,"pitch":123.76764593611477,"roll":19.105862873286462},"location":"Left Knee"},{"euler":{"heading":107.05454729146844,"pitch":86.17888758331384,"roll":1.0235029578556072},"location":"Left Ankle"},{"euler":{"heading":81.37326397258386,"pitch":-28.448036429894326,"roll":-30.68229318566916},"location":"Right Ankle"},{"euler":{"heading":181.30527750119435,"pitch":-161.96658094593886,"roll":54.116406936246484},"location":"Right Hip"},{"euler":{"heading":237.7030277435553,"pitch":-89.73549546997411,"roll":63.851836299948495},"location":"Right Knee"},{"euler":{"heading":77.63817114747954,"pitch":-130.74806057658168,"roll":57.80004971274356},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.796"} +{"sensors":[{"euler":{"heading":73.12423474228741,"pitch":123.97838134250331,"roll":20.12652658595782},"location":"Left Knee"},{"euler":{"heading":97.2928425623216,"pitch":86.09224882498246,"roll":-0.27884733792995364},"location":"Left Ankle"},{"euler":{"heading":76.66718757532549,"pitch":-26.521982786904893,"roll":-32.05781386710225},"location":"Right Ankle"},{"euler":{"heading":182.36849975107492,"pitch":-161.38242285134498,"roll":54.00476624262184},"location":"Right Hip"},{"euler":{"heading":240.5577249691998,"pitch":-91.25569592297671,"roll":61.19165266995365},"location":"Right Knee"},{"euler":{"heading":70.73060403273159,"pitch":-130.6357545189235,"roll":57.945044741469204},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.897"} +{"sensors":[{"euler":{"heading":72.18056126805868,"pitch":123.95554320825298,"roll":20.68262392736204},"location":"Left Knee"},{"euler":{"heading":89.37605830608943,"pitch":86.21427394248423,"roll":-0.7697126041369584},"location":"Left Ankle"},{"euler":{"heading":73.80671881779294,"pitch":-25.788534508214404,"roll":-32.86453248039202},"location":"Right Ankle"},{"euler":{"heading":183.77539977596746,"pitch":-160.6254305662105,"roll":53.17303961835966},"location":"Right Hip"},{"euler":{"heading":242.0332024722798,"pitch":-92.33637633067904,"roll":59.897487402958284},"location":"Right Knee"},{"euler":{"heading":64.67629362945843,"pitch":-131.10967906703115,"roll":58.275540267322285},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.998"} +{"sensors":[{"euler":{"heading":71.69375514125282,"pitch":123.81623888742769,"roll":20.814361534625835},"location":"Left Knee"},{"euler":{"heading":82.76970247548049,"pitch":86.2865965482358,"roll":-0.7052413437232625},"location":"Left Ankle"},{"euler":{"heading":73.58854693601364,"pitch":-26.60968105739296,"roll":-32.33432923235282},"location":"Right Ankle"},{"euler":{"heading":184.79785979837072,"pitch":-160.10663750958943,"roll":52.04323565652369},"location":"Right Hip"},{"euler":{"heading":241.84238222505184,"pitch":-93.38398869761114,"roll":60.763988662662456},"location":"Right Knee"},{"euler":{"heading":59.47116426651259,"pitch":-132.22996116032803,"roll":58.72298624059005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.99"} +{"sensors":[{"euler":{"heading":71.85562962712754,"pitch":123.44086499868493,"roll":20.532925381163253},"location":"Left Knee"},{"euler":{"heading":77.21773222793243,"pitch":86.30793689341223,"roll":-0.2534672093509363},"location":"Left Ankle"},{"euler":{"heading":75.55469224241229,"pitch":-28.154962951653665,"roll":-30.43214630911754},"location":"Right Ankle"},{"euler":{"heading":184.93057381853367,"pitch":-160.0022237586305,"roll":51.06391209087133},"location":"Right Hip"},{"euler":{"heading":240.40189400254667,"pitch":-98.90808982785003,"roll":62.85633979639621},"location":"Right Knee"},{"euler":{"heading":54.99279783986133,"pitch":-133.71946504429522,"roll":59.281937616531046},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.200"} +{"sensors":[{"euler":{"heading":72.67006666441479,"pitch":122.84052849881644,"roll":19.804632843046928},"location":"Left Knee"},{"euler":{"heading":72.82720900513918,"pitch":86.33339320407102,"roll":0.7718795115841574},"location":"Left Ankle"},{"euler":{"heading":77.73047301817107,"pitch":-29.714466656488298,"roll":-28.26393167820579},"location":"Right Ankle"},{"euler":{"heading":183.86876643668032,"pitch":-160.23325138276743,"roll":50.6262708817842},"location":"Right Hip"},{"euler":{"heading":238.267954602292,"pitch":-73.12353084506503,"roll":64.7269558167566},"location":"Right Knee"},{"euler":{"heading":51.1185180558752,"pitch":-135.6662685398657,"roll":59.903743854877945},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.301"} +{"sensors":[{"euler":{"heading":74.27180999797332,"pitch":122.23147564893479,"roll":18.392919558742236},"location":"Left Knee"},{"euler":{"heading":69.73823810462525,"pitch":86.28130388366391,"roll":2.657191560425742},"location":"Left Ankle"},{"euler":{"heading":78.78242571635397,"pitch":-30.618019990839468,"roll":-27.025038510385208},"location":"Right Ankle"},{"euler":{"heading":182.5881397930123,"pitch":-160.6161762444907,"roll":50.32614379360579},"location":"Right Hip"},{"euler":{"heading":236.1661591420628,"pitch":-82.40492776055854,"roll":66.47926023508094},"location":"Right Knee"},{"euler":{"heading":47.94416625028768,"pitch":-137.98089168587916,"roll":60.55086946939016},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.402"} +{"sensors":[{"euler":{"heading":77.569628998176,"pitch":121.57082808404131,"roll":15.934877602868012},"location":"Left Knee"},{"euler":{"heading":68.24566429416272,"pitch":86.66567349529753,"roll":5.916472404383168},"location":"Left Ankle"},{"euler":{"heading":79.33543314471858,"pitch":-30.89996799175552,"roll":-26.466284659346687},"location":"Right Ankle"},{"euler":{"heading":181.42307581371105,"pitch":-160.91705862004164,"roll":50.443529414245205},"location":"Right Hip"},{"euler":{"heading":234.18704322785652,"pitch":-89.26443498450269,"roll":67.70008421157286},"location":"Right Knee"},{"euler":{"heading":43.724749625258916,"pitch":-137.77655251729124,"roll":60.67078252245115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.503"} +{"sensors":[{"euler":{"heading":80.6439160983584,"pitch":121.18874527563719,"roll":13.985139842581212},"location":"Left Knee"},{"euler":{"heading":65.95859786474645,"pitch":86.41785614576777,"roll":8.29982516394485},"location":"Left Ankle"},{"euler":{"heading":79.65813983024671,"pitch":-30.89122119257997,"roll":-26.41965619341202},"location":"Right Ankle"},{"euler":{"heading":180.48701823233995,"pitch":-161.1253527580375,"roll":50.94292647282069},"location":"Right Hip"},{"euler":{"heading":232.50583890507087,"pitch":-94.76299148605241,"roll":68.31132579041557},"location":"Right Knee"},{"euler":{"heading":75.03977466273302,"pitch":-136.0613972655621,"roll":60.20370427020604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.604"} +{"sensors":[{"euler":{"heading":80.77327448852256,"pitch":121.89487074807347,"roll":13.911625858323092},"location":"Left Knee"},{"euler":{"heading":61.87523807827181,"pitch":84.176070531191,"roll":7.982342647550366},"location":"Left Ankle"},{"euler":{"heading":79.82357584722203,"pitch":-30.770849073321973,"roll":-26.602690574070817},"location":"Right Ankle"},{"euler":{"heading":180.08206640910598,"pitch":-161.20656748223377,"roll":51.60488382553862},"location":"Right Hip"},{"euler":{"heading":231.4740050145638,"pitch":-98.94919233744719,"roll":68.505193211374},"location":"Right Knee"},{"euler":{"heading":102.95454719645973,"pitch":-134.0052575390059,"roll":59.389583843185434},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.705"} +{"sensors":[{"euler":{"heading":77.6459470396703,"pitch":123.41788367326613,"roll":15.545463272490784},"location":"Left Knee"},{"euler":{"heading":91.54396427044463,"pitch":83.40846347807191,"roll":5.32785838279533},"location":"Left Ankle"},{"euler":{"heading":79.55371826249984,"pitch":-30.425014165989776,"roll":-26.979921516663737},"location":"Right Ankle"},{"euler":{"heading":179.9051097681954,"pitch":-161.39841073401038,"roll":52.325645442984765},"location":"Right Hip"},{"euler":{"heading":231.1078545131074,"pitch":-102.02927310370248,"roll":68.2046738902366},"location":"Right Knee"},{"euler":{"heading":128.32784247681377,"pitch":-132.21723178510533,"roll":58.700625458866895},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.805"} +{"sensors":[{"euler":{"heading":74.40010233570327,"pitch":125.15734530593951,"roll":17.434666945241705},"location":"Left Knee"},{"euler":{"heading":117.28956784340016,"pitch":82.89261713026472,"roll":1.8638225445157968},"location":"Left Ankle"},{"euler":{"heading":78.64834643624985,"pitch":-29.7762627493908,"roll":-27.994429364997366},"location":"Right Ankle"},{"euler":{"heading":179.97709879137585,"pitch":-161.68981966060934,"roll":53.19308089868629},"location":"Right Hip"},{"euler":{"heading":231.65331906179668,"pitch":-104.12634579333223,"roll":67.27795650121294},"location":"Right Knee"},{"euler":{"heading":115.8325582291324,"pitch":-131.2955086065948,"roll":58.21806291298021},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.906"} +{"sensors":[{"euler":{"heading":72.45384210213295,"pitch":126.03536077534557,"roll":18.934950250717534},"location":"Left Knee"},{"euler":{"heading":141.35436105906015,"pitch":82.99710541723825,"roll":-0.36005970993578296},"location":"Left Ankle"},{"euler":{"heading":76.28351179262486,"pitch":-28.83613647445172,"roll":-29.45123642849763},"location":"Right Ankle"},{"euler":{"heading":180.47313891223828,"pitch":-161.82708769454842,"roll":53.93627280881766},"location":"Right Hip"},{"euler":{"heading":233.95048715561703,"pitch":-105.19496121399902,"roll":65.34391085109165},"location":"Right Knee"},{"euler":{"heading":104.61805240621916,"pitch":-130.79095774593532,"roll":57.92125662168219},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.6"} +{"sensors":[{"euler":{"heading":71.35845789191967,"pitch":126.263074697811,"roll":19.92895522564578},"location":"Left Knee"},{"euler":{"heading":127.81267495315414,"pitch":83.14739487551442,"roll":-1.6553037389422047},"location":"Left Ankle"},{"euler":{"heading":99.29891061336238,"pitch":-27.21502282700655,"roll":-31.12486278564787},"location":"Right Ankle"},{"euler":{"heading":181.71332502101444,"pitch":-161.16937892509358,"roll":53.8676455279359},"location":"Right Hip"},{"euler":{"heading":237.29293844005534,"pitch":-105.50671509259912,"roll":62.590769765982486},"location":"Right Knee"},{"euler":{"heading":94.56874716559724,"pitch":-130.50561197134178,"roll":57.94163095951397},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.107"} +{"sensors":[{"euler":{"heading":70.87886210272771,"pitch":126.01176722802991,"roll":20.598559703081204},"location":"Left Knee"},{"euler":{"heading":116.16265745783872,"pitch":83.47640538796298,"roll":-2.421023365047984},"location":"Left Ankle"},{"euler":{"heading":93.57526955202614,"pitch":-26.156020544305896,"roll":-32.34987650708308},"location":"Right Ankle"},{"euler":{"heading":183.20449251891299,"pitch":-160.32744103258423,"roll":53.04338097514231},"location":"Right Hip"},{"euler":{"heading":239.67614459604982,"pitch":-105.57479358333921,"roll":60.72544278938424},"location":"Right Knee"},{"euler":{"heading":86.03062244903752,"pitch":-131.11755077420761,"roll":58.184967863562576},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.208"} +{"sensors":[{"euler":{"heading":70.94722589245494,"pitch":125.34809050522692,"roll":20.969953732773085},"location":"Left Knee"},{"euler":{"heading":106.20264171205486,"pitch":83.99751484916669,"roll":-2.710171028543186},"location":"Left Ankle"},{"euler":{"heading":90.58649259682353,"pitch":-26.784168489875306,"roll":-32.208638856374776},"location":"Right Ankle"},{"euler":{"heading":184.1902932670217,"pitch":-159.79469692932582,"roll":51.82029287762808},"location":"Right Hip"},{"euler":{"heading":240.22728013644485,"pitch":-105.39856422500529,"roll":60.98414851044582},"location":"Right Knee"},{"euler":{"heading":78.71506020413376,"pitch":-132.32454569678686,"roll":58.59147107720632},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.310"} +{"sensors":[{"euler":{"heading":71.65250330320944,"pitch":124.36953145470423,"roll":20.916708359495775},"location":"Left Knee"},{"euler":{"heading":97.70737754084938,"pitch":84.69151336425003,"roll":-2.4891539256888673},"location":"Left Ankle"},{"euler":{"heading":89.94659333714118,"pitch":-28.074501640887775,"roll":-30.8002749707373},"location":"Right Ankle"},{"euler":{"heading":179.82751394031953,"pitch":-159.60272723639324,"roll":50.63201358986527},"location":"Right Hip"},{"euler":{"heading":239.27330212280037,"pitch":-107.35245780250477,"roll":62.81073365940124},"location":"Right Knee"},{"euler":{"heading":72.35605418372039,"pitch":-133.91709112710816,"roll":59.10107396948569},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.410"} +{"sensors":[{"euler":{"heading":72.96225297288849,"pitch":123.1700783092338,"roll":20.362537523546198},"location":"Left Knee"},{"euler":{"heading":90.72413978676444,"pitch":85.54736202782503,"roll":-1.6714885331199807},"location":"Left Ankle"},{"euler":{"heading":90.62693400342707,"pitch":-29.542051476798996,"roll":-28.526497473663568},"location":"Right Ankle"},{"euler":{"heading":179.4447625462876,"pitch":-159.85495451275392,"roll":50.07506223087874},"location":"Right Hip"},{"euler":{"heading":237.30847191052035,"pitch":-81.12346202225429,"roll":64.77341029346111},"location":"Right Knee"},{"euler":{"heading":67.07044876534836,"pitch":-136.04413201439735,"roll":59.75346657253712},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.511"} +{"sensors":[{"euler":{"heading":74.92227767559964,"pitch":121.99682047831043,"roll":19.11378377119158},"location":"Left Knee"},{"euler":{"heading":85.220475808088,"pitch":86.26137582504252,"roll":-0.004339679807982666},"location":"Left Ankle"},{"euler":{"heading":90.78299060308436,"pitch":-30.444096329119095,"roll":-27.06134772629721},"location":"Right Ankle"},{"euler":{"heading":178.49403629165883,"pitch":-160.41945906147853,"roll":49.78005600779087},"location":"Right Hip"},{"euler":{"heading":235.29012471946834,"pitch":-55.617365820028866,"roll":66.46481926411501},"location":"Right Knee"},{"euler":{"heading":62.73840388881352,"pitch":-138.60221881295763,"roll":60.47186991528341},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.611"} +{"sensors":[{"euler":{"heading":78.22379990803968,"pitch":121.39713843047937,"roll":16.621155394072424},"location":"Left Knee"},{"euler":{"heading":81.59217822727919,"pitch":86.51648824253826,"roll":3.5023442881728157},"location":"Left Ankle"},{"euler":{"heading":90.26094154277592,"pitch":-31.105936696207188,"roll":-26.32396295366749},"location":"Right Ankle"},{"euler":{"heading":177.97588266249295,"pitch":-160.79001315533068,"roll":49.864550407011784},"location":"Right Hip"},{"euler":{"heading":233.68611224752152,"pitch":-65.51187923802598,"roll":67.66208733770351},"location":"Right Knee"},{"euler":{"heading":57.295813499932166,"pitch":-139.14199693166188,"roll":60.58093292375507},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.712"} +{"sensors":[{"euler":{"heading":82.01391991723571,"pitch":120.78867458743144,"roll":13.946539854665183},"location":"Left Knee"},{"euler":{"heading":78.48921040455129,"pitch":86.18983941828444,"roll":7.183359859355534},"location":"Left Ankle"},{"euler":{"heading":89.50359738849833,"pitch":-31.60784302658647,"roll":-26.01031665830074},"location":"Right Ankle"},{"euler":{"heading":177.39704439624367,"pitch":-161.2172618397976,"roll":50.3780953663106},"location":"Right Hip"},{"euler":{"heading":232.62375102276937,"pitch":-73.39194131422339,"roll":68.17712860393317},"location":"Right Knee"},{"euler":{"heading":87.39748214993895,"pitch":-137.2152972384957,"roll":60.33533963137957},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.813"} +{"sensors":[{"euler":{"heading":84.17502792551214,"pitch":120.7535571286883,"roll":12.795635869198666},"location":"Left Knee"},{"euler":{"heading":74.50278936409616,"pitch":85.845855476456,"roll":8.40252387341998},"location":"Left Ankle"},{"euler":{"heading":88.6219876496485,"pitch":-32.072058723927825,"roll":-26.190534992470667},"location":"Right Ankle"},{"euler":{"heading":177.3510899566193,"pitch":-161.47678565581785,"roll":51.05278582967954},"location":"Right Hip"},{"euler":{"heading":232.43637592049242,"pitch":-79.50274718280106,"roll":68.20316574353986},"location":"Right Knee"},{"euler":{"heading":114.25773393494507,"pitch":-135.30626751464615,"roll":59.564305668241616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.914"} +{"sensors":[{"euler":{"heading":82.32627513296092,"pitch":121.90320141581947,"roll":13.766072282278799},"location":"Left Knee"},{"euler":{"heading":67.95251042768655,"pitch":85.0987699288104,"roll":6.799771486077982},"location":"Left Ankle"},{"euler":{"heading":87.46603888468366,"pitch":-32.421102851535046,"roll":-26.3714814932236},"location":"Right Ankle"},{"euler":{"heading":177.58473096095736,"pitch":-161.8166070902361,"roll":51.78500724671159},"location":"Right Hip"},{"euler":{"heading":232.9052383284432,"pitch":-84.30872246452097,"roll":67.78909916918587},"location":"Right Knee"},{"euler":{"heading":138.46321054145056,"pitch":-133.33189076318155,"roll":58.90787510141746},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.14"} +{"sensors":[{"euler":{"heading":78.90614761966482,"pitch":123.56288127423753,"roll":15.80196505405092},"location":"Left Knee"},{"euler":{"heading":96.2010093849179,"pitch":84.37639293592936,"roll":3.294794337470184},"location":"Left Ankle"},{"euler":{"heading":85.8631849962153,"pitch":-32.31024256638154,"roll":-27.09058334390124},"location":"Right Ankle"},{"euler":{"heading":177.87625786486163,"pitch":-162.21619638121248,"roll":52.631506522040425},"location":"Right Hip"},{"euler":{"heading":233.7584644955989,"pitch":-88.10910021806887,"roll":66.91018925226729},"location":"Right Knee"},{"euler":{"heading":124.93563948730551,"pitch":-132.1299516868634,"roll":58.47333759127572},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.115"} +{"sensors":[{"euler":{"heading":76.41553285769835,"pitch":124.58784314681378,"roll":17.62176854864583},"location":"Left Knee"},{"euler":{"heading":122.1059084464261,"pitch":84.23875364233642,"roll":0.6340649037231652},"location":"Left Ankle"},{"euler":{"heading":83.39561649659377,"pitch":-31.685468309743385,"roll":-28.431525009511116},"location":"Right Ankle"},{"euler":{"heading":178.55113207837547,"pitch":-162.73832674309125,"roll":53.462105869836385},"location":"Right Hip"},{"euler":{"heading":235.83261804603904,"pitch":-90.72944019626199,"roll":65.18167032704056},"location":"Right Knee"},{"euler":{"heading":113.11707553857495,"pitch":-131.17320651817707,"roll":58.22600383214815},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.216"} +{"sensors":[{"euler":{"heading":74.79272957192852,"pitch":124.8728088321324,"roll":18.928341693781245},"location":"Left Knee"},{"euler":{"heading":110.55156760178349,"pitch":84.45237827810278,"roll":-0.8168415866491515},"location":"Left Ankle"},{"euler":{"heading":106.3685548469344,"pitch":-29.704421478769046,"roll":-30.238372508560005},"location":"Right Ankle"},{"euler":{"heading":179.70226887053792,"pitch":-162.48324406878214,"roll":53.922145282852746},"location":"Right Hip"},{"euler":{"heading":238.66810624143517,"pitch":-92.5064961766358,"roll":62.64475329433651},"location":"Right Knee"},{"euler":{"heading":102.43036798471746,"pitch":-130.54338586635936,"roll":58.22840344893334},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.317"} +{"sensors":[{"euler":{"heading":73.80095661473567,"pitch":124.71052794891916,"roll":19.798007524403122},"location":"Left Knee"},{"euler":{"heading":100.58391084160515,"pitch":84.67589045029251,"roll":-1.7664074279842363},"location":"Left Ankle"},{"euler":{"heading":99.61294936224095,"pitch":-28.10272933089214,"roll":-31.670785257704004},"location":"Right Ankle"},{"euler":{"heading":181.13204198348413,"pitch":-161.75991966190395,"roll":53.54243075456748},"location":"Right Hip"},{"euler":{"heading":241.58254561729166,"pitch":-93.71209655897222,"roll":60.26152796490286},"location":"Right Knee"},{"euler":{"heading":93.26858118624571,"pitch":-131.0015472797234,"roll":58.53681310404001},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.418"} +{"sensors":[{"euler":{"heading":73.3458609532621,"pitch":124.31447515402725,"roll":20.23070677196281},"location":"Left Knee"},{"euler":{"heading":92.15676975744462,"pitch":84.91455140526327,"roll":-2.139766685185813},"location":"Left Ankle"},{"euler":{"heading":95.21415442601686,"pitch":-28.123706397802927,"roll":-32.1787067319336},"location":"Right Ankle"},{"euler":{"heading":182.46258778513572,"pitch":-161.05267769571356,"roll":52.64443767911073},"location":"Right Hip"},{"euler":{"heading":242.7617910555625,"pitch":-94.75338690307501,"roll":59.710375168412575},"location":"Right Knee"},{"euler":{"heading":85.25422306762114,"pitch":-132.12639255175108,"roll":58.94563179363601},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.519"} +{"sensors":[{"euler":{"heading":73.5425248579359,"pitch":123.64552763862453,"roll":20.257636094766532},"location":"Left Knee"},{"euler":{"heading":85.17859278170016,"pitch":85.29184626473695,"roll":-1.9320400166672316},"location":"Left Ankle"},{"euler":{"heading":93.38648898341518,"pitch":-29.073835758022636,"roll":-31.17333605874024},"location":"Right Ankle"},{"euler":{"heading":182.87882900662214,"pitch":-160.7849099261422,"roll":51.55499391119965},"location":"Right Hip"},{"euler":{"heading":241.92311195000624,"pitch":-96.59679821276751,"roll":61.23933765157132},"location":"Right Knee"},{"euler":{"heading":78.24755076085903,"pitch":-133.95125329657597,"roll":59.38856861427241},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.620"} +{"sensors":[{"euler":{"heading":74.3945223721423,"pitch":122.77472487476209,"roll":19.769372485289882},"location":"Left Knee"},{"euler":{"heading":79.41073350353015,"pitch":85.67516163826325,"roll":-1.2138360150005085},"location":"Left Ankle"},{"euler":{"heading":93.47909008507366,"pitch":-30.453952182220373,"roll":-29.09350245286622},"location":"Right Ankle"},{"euler":{"heading":182.32219610595993,"pitch":-160.881418933528,"roll":50.86199452007968},"location":"Right Hip"},{"euler":{"heading":239.87455075500563,"pitch":-70.22461839149075,"roll":63.34040388641419},"location":"Right Knee"},{"euler":{"heading":72.26654568477312,"pitch":-136.1998779669184,"roll":59.98721175284517},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.721"} +{"sensors":[{"euler":{"heading":75.93632013492808,"pitch":121.93475238728588,"roll":18.579935236760896},"location":"Left Knee"},{"euler":{"heading":75.08841015317715,"pitch":85.98889547443692,"roll":0.4012975864995425},"location":"Left Ankle"},{"euler":{"heading":93.6686810765663,"pitch":-31.514806963998335,"roll":-27.302902207579596},"location":"Right Ankle"},{"euler":{"heading":181.24622649536394,"pitch":-161.12452704017522,"roll":50.51329506807171},"location":"Right Hip"},{"euler":{"heading":237.51834567950507,"pitch":-47.36465655234168,"roll":65.13136349777277},"location":"Right Knee"},{"euler":{"heading":67.1023911162958,"pitch":-138.76739017022658,"roll":60.62599057756066},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.821"} +{"sensors":[{"euler":{"heading":78.76143812143528,"pitch":121.40377714855731,"roll":16.246941713084805},"location":"Left Knee"},{"euler":{"heading":72.58581913785943,"pitch":85.98375592699323,"roll":3.761167827849589},"location":"Left Ankle"},{"euler":{"heading":92.83306296890967,"pitch":-31.932076267598504,"roll":-26.566361986821637},"location":"Right Ankle"},{"euler":{"heading":182.20910384582757,"pitch":-161.2183243361577,"roll":50.37446556126454},"location":"Right Hip"},{"euler":{"heading":235.54151111155457,"pitch":-58.84069089710751,"roll":66.5869771479955},"location":"Right Knee"},{"euler":{"heading":61.86715200466623,"pitch":-139.79690115320392,"roll":61.08839151980459},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.922"} +{"sensors":[{"euler":{"heading":82.37904430929176,"pitch":120.73839943370157,"roll":13.653497541776325},"location":"Left Knee"},{"euler":{"heading":70.73348722407349,"pitch":85.9666303342939,"roll":7.52255104506463},"location":"Left Ankle"},{"euler":{"heading":91.6497566720187,"pitch":-32.03886864083865,"roll":-26.397225788139473},"location":"Right Ankle"},{"euler":{"heading":181.2006934612448,"pitch":-161.45899190254195,"roll":50.762019005138086},"location":"Right Hip"},{"euler":{"heading":233.88736000039913,"pitch":-68.09412180739676,"roll":67.36577943319594},"location":"Right Knee"},{"euler":{"heading":55.87418680419961,"pitch":-137.93596103788352,"roll":61.06705236782413},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.24"} +{"sensors":[{"euler":{"heading":84.42863987836259,"pitch":120.93330949033141,"roll":12.463147787598693},"location":"Left Knee"},{"euler":{"heading":67.78513850166614,"pitch":85.3387173008645,"roll":9.007795940558168},"location":"Left Ankle"},{"euler":{"heading":90.29728100481682,"pitch":-32.172481776754786,"roll":-26.657503209325526},"location":"Right Ankle"},{"euler":{"heading":180.88062411512036,"pitch":-161.47559271228775,"roll":51.37956710462428},"location":"Right Hip"},{"euler":{"heading":233.07987400035924,"pitch":-75.22845962665708,"roll":67.64795148987635},"location":"Right Knee"},{"euler":{"heading":85.72426812377965,"pitch":-135.76736493409516,"roll":60.33534713104172},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.124"} +{"sensors":[{"euler":{"heading":82.79827589052633,"pitch":122.09622854129827,"roll":13.416833008838825},"location":"Left Knee"},{"euler":{"heading":62.04412465149953,"pitch":84.61109557077806,"roll":7.575766346502352},"location":"Left Ankle"},{"euler":{"heading":88.69880290433515,"pitch":-32.08648359907931,"roll":-27.004252888392973},"location":"Right Ankle"},{"euler":{"heading":181.02381170360832,"pitch":-161.37178344105897,"roll":52.04786039416185},"location":"Right Hip"},{"euler":{"heading":232.87813660032333,"pitch":-80.88061366399137,"roll":67.52065634088872},"location":"Right Knee"},{"euler":{"heading":112.72684131140169,"pitch":-133.76562844068565,"roll":59.55181241793755},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.225"} +{"sensors":[{"euler":{"heading":79.43094830147369,"pitch":123.78660568716846,"roll":15.400149707954942},"location":"Left Knee"},{"euler":{"heading":90.86471218634958,"pitch":83.88748601370025,"roll":4.155689711852117},"location":"Left Ankle"},{"euler":{"heading":86.67267261390164,"pitch":-31.57158523917138,"roll":-27.741327599553674},"location":"Right Ankle"},{"euler":{"heading":181.4401805332475,"pitch":-161.28460509695307,"roll":52.63682435474567},"location":"Right Hip"},{"euler":{"heading":233.290322940291,"pitch":-85.24255229759224,"roll":66.89984070679985},"location":"Right Knee"},{"euler":{"heading":101.56040718026152,"pitch":-132.4703155966171,"roll":58.909131176143795},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.325"} +{"sensors":[{"euler":{"heading":76.61910347132631,"pitch":125.13919511845162,"roll":17.216384737159448},"location":"Left Knee"},{"euler":{"heading":116.80949096771462,"pitch":83.72998741233023,"roll":1.0838707406669057},"location":"Left Ankle"},{"euler":{"heading":83.97415535251147,"pitch":-30.576926715254245,"roll":-29.104694839598306},"location":"Right Ankle"},{"euler":{"heading":181.88366247992278,"pitch":-161.43114458725776,"roll":53.341891919271106},"location":"Right Hip"},{"euler":{"heading":234.5550406462619,"pitch":-88.55579706783303,"roll":65.64110663611987},"location":"Right Knee"},{"euler":{"heading":91.86061646223537,"pitch":-131.51703403695538,"roll":58.48696805852941},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.426"} +{"sensors":[{"euler":{"heading":75.12594312419368,"pitch":125.44402560660646,"roll":18.594746263443504},"location":"Left Knee"},{"euler":{"heading":105.46604187094317,"pitch":84.18198867109722,"roll":-0.530766333399785},"location":"Left Ankle"},{"euler":{"heading":107.20798981726034,"pitch":-29.456734043728822,"roll":-30.706725355638476},"location":"Right Ankle"},{"euler":{"heading":182.8202962319305,"pitch":-161.363030128532,"roll":53.876452727343995},"location":"Right Hip"},{"euler":{"heading":237.36828658163572,"pitch":-90.78146736104972,"roll":63.445745972507886},"location":"Right Knee"},{"euler":{"heading":83.21830481601184,"pitch":-130.94033063325983,"roll":58.28827125267647},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.527"} +{"sensors":[{"euler":{"heading":74.64459881177432,"pitch":124.83087304594582,"roll":19.722771637099154},"location":"Left Knee"},{"euler":{"heading":96.00068768384885,"pitch":85.1325398039875,"roll":-1.5339397000598067},"location":"Left Ankle"},{"euler":{"heading":126.9559408355343,"pitch":-27.89231063935594,"roll":-32.454802820074626},"location":"Right Ankle"},{"euler":{"heading":184.2695166087375,"pitch":-160.70172711567878,"roll":53.5888074546096},"location":"Right Hip"},{"euler":{"heading":240.67520792347216,"pitch":-92.30957062494475,"roll":60.83867137525709},"location":"Right Knee"},{"euler":{"heading":76.19022433441066,"pitch":-131.12754756993385,"roll":58.46569412740883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.627"} +{"sensors":[{"euler":{"heading":74.48013893059688,"pitch":124.01028574135125,"roll":20.41299447338924},"location":"Left Knee"},{"euler":{"heading":88.06936891546397,"pitch":86.01303582358875,"roll":-1.918045730053826},"location":"Left Ankle"},{"euler":{"heading":119.14159675198087,"pitch":-27.67182957542035,"roll":-33.403072538067164},"location":"Right Ankle"},{"euler":{"heading":185.83631494786374,"pitch":-159.9815544041109,"roll":52.59242670914864},"location":"Right Hip"},{"euler":{"heading":242.54518713112495,"pitch":-93.47236356245028,"roll":59.786054237731385},"location":"Right Knee"},{"euler":{"heading":70.1024519009696,"pitch":-132.20854281294046,"roll":58.794124714667944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.728"} +{"sensors":[{"euler":{"heading":74.7571250375372,"pitch":123.14050716721613,"roll":20.60919502605032},"location":"Left Knee"},{"euler":{"heading":81.71243202391757,"pitch":86.81798224122988,"roll":-1.5512411570484435},"location":"Left Ankle"},{"euler":{"heading":114.2836870767828,"pitch":-28.53589661787832,"roll":-32.84401528426045},"location":"Right Ankle"},{"euler":{"heading":186.62768345307737,"pitch":-159.59589896369982,"roll":51.45193403823377},"location":"Right Hip"},{"euler":{"heading":242.17191841801244,"pitch":-94.90637720620526,"roll":60.97619881395825},"location":"Right Knee"},{"euler":{"heading":64.57970671087264,"pitch":-133.71268853164642,"roll":59.15846224320115},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.829"} +{"sensors":[{"euler":{"heading":75.54391253378348,"pitch":122.10770645049452,"roll":20.36702552344529},"location":"Left Knee"},{"euler":{"heading":76.44118882152583,"pitch":87.6236840171069,"roll":-0.783617041343599},"location":"Left Ankle"},{"euler":{"heading":111.73031836910452,"pitch":-29.807306956090486,"roll":-30.947113755834405},"location":"Right Ankle"},{"euler":{"heading":186.05866510776963,"pitch":-159.73630906732984,"roll":50.5629906344104},"location":"Right Hip"},{"euler":{"heading":240.1359765762112,"pitch":-67.59698948558474,"roll":63.059828932562425},"location":"Right Knee"},{"euler":{"heading":59.752986039785384,"pitch":-135.5664196784818,"roll":59.64886601888104},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.930"} +{"sensors":[{"euler":{"heading":76.76452128040515,"pitch":121.09068580544508,"roll":19.58032297110076},"location":"Left Knee"},{"euler":{"heading":72.44081993937324,"pitch":88.3488156153962,"roll":0.600994662790761},"location":"Left Ankle"},{"euler":{"heading":110.31353653219406,"pitch":-30.976576260481437,"roll":-28.814902380250963},"location":"Right Ankle"},{"euler":{"heading":184.30279859699266,"pitch":-160.33767816059685,"roll":50.119191570969356},"location":"Right Hip"},{"euler":{"heading":237.58487891859008,"pitch":-46.32479053702627,"roll":64.81634603930618},"location":"Right Knee"},{"euler":{"heading":55.62768743580685,"pitch":-137.9222777106336,"roll":60.165229416992936},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.30"} +{"sensors":[{"euler":{"heading":78.96931915236465,"pitch":120.36911722490058,"roll":16.172290673990684},"location":"Left Knee"},{"euler":{"heading":69.71548794543591,"pitch":88.4139340538566,"roll":3.1783951965116852},"location":"Left Ankle"},{"euler":{"heading":108.06343287897467,"pitch":-31.647668634433295,"roll":-27.72091214222587},"location":"Right Ankle"},{"euler":{"heading":182.98501873729342,"pitch":-160.77266034453717,"roll":49.894772413872424},"location":"Right Hip"},{"euler":{"heading":235.46389102673106,"pitch":-59.011061483323644,"roll":66.40971143537557},"location":"Right Knee"},{"euler":{"heading":51.89616869222616,"pitch":-139.73004993957025,"roll":60.723706475293646},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.131"} +{"sensors":[{"euler":{"heading":82.47238723712819,"pitch":119.70720550241052,"roll":13.655061606591616},"location":"Left Knee"},{"euler":{"heading":68.68143915089232,"pitch":88.79129064847093,"roll":7.048055676860517},"location":"Left Ankle"},{"euler":{"heading":105.46958959107721,"pitch":-32.16415177098997,"roll":-27.205070928003284},"location":"Right Ankle"},{"euler":{"heading":181.88651686356405,"pitch":-161.18289431008347,"roll":50.05529517248518},"location":"Right Hip"},{"euler":{"heading":234.06125192405798,"pitch":-68.31620533499128,"roll":67.26874029183801},"location":"Right Knee"},{"euler":{"heading":47.06905182300354,"pitch":-138.80079494561323,"roll":60.78258582776429},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.232"} +{"sensors":[{"euler":{"heading":85.46264851341537,"pitch":119.63023495216946,"roll":11.833305445932455},"location":"Left Knee"},{"euler":{"heading":66.58829523580309,"pitch":88.30591158362384,"roll":9.305750109174465},"location":"Left Ankle"},{"euler":{"heading":102.9038806319695,"pitch":-32.53523659389097,"roll":-27.028313835202955},"location":"Right Ankle"},{"euler":{"heading":181.40411517720767,"pitch":-161.37710487907512,"roll":50.60601565523666},"location":"Right Hip"},{"euler":{"heading":233.3238767316522,"pitch":-75.63458480149215,"roll":67.63561626265422},"location":"Right Knee"},{"euler":{"heading":78.24964664070319,"pitch":-137.12696545105192,"roll":60.31682724498786},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.333"} +{"sensors":[{"euler":{"heading":85.21013366207384,"pitch":120.49221145695252,"roll":11.974974901339209},"location":"Left Knee"},{"euler":{"heading":62.166965712222776,"pitch":87.43157042526146,"roll":8.93142509825702},"location":"Left Ankle"},{"euler":{"heading":100.38224256877255,"pitch":-32.88171293450188,"roll":-27.03798245168266},"location":"Right Ankle"},{"euler":{"heading":181.2949536594869,"pitch":-161.5643943911676,"roll":51.301664089713},"location":"Right Hip"},{"euler":{"heading":233.260239058487,"pitch":-81.38987632134294,"roll":67.60955463638881},"location":"Right Knee"},{"euler":{"heading":105.85593197663286,"pitch":-135.23301890594672,"roll":59.52264452048908},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.433"} +{"sensors":[{"euler":{"heading":82.15787029586646,"pitch":122.03674031125726,"roll":13.721227411205287},"location":"Left Knee"},{"euler":{"heading":91.5627691410005,"pitch":86.5009133827353,"roll":6.057032588431318},"location":"Left Ankle"},{"euler":{"heading":97.6752683118953,"pitch":-32.89354164105169,"roll":-27.446684206514394},"location":"Right Ankle"},{"euler":{"heading":181.34045829353823,"pitch":-161.80795495205086,"roll":51.965247680741705},"location":"Right Hip"},{"euler":{"heading":233.6217151526383,"pitch":-85.95713868920865,"roll":67.14234917274993},"location":"Right Knee"},{"euler":{"heading":130.53283877896956,"pitch":-133.96596701535205,"roll":58.72038006844017},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.534"} +{"sensors":[{"euler":{"heading":78.48583326627981,"pitch":123.87056628013153,"roll":15.84910467008476},"location":"Left Knee"},{"euler":{"heading":117.19399222690046,"pitch":85.71957204446178,"roll":2.4200793295881864},"location":"Left Ankle"},{"euler":{"heading":94.48899148070576,"pitch":-32.47293747694652,"roll":-28.545765785862955},"location":"Right Ankle"},{"euler":{"heading":181.6501624641844,"pitch":-162.1771594568458,"roll":52.674972912667535},"location":"Right Hip"},{"euler":{"heading":234.74079363737445,"pitch":-89.34267482028778,"roll":66.10311425547494},"location":"Right Knee"},{"euler":{"heading":117.7358049010726,"pitch":-132.87562031381685,"roll":58.29209206159616},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.638"} +{"sensors":[{"euler":{"heading":76.46849993965184,"pitch":124.65225965211837,"roll":17.620444203076286},"location":"Left Knee"},{"euler":{"heading":141.2620930042104,"pitch":86.0288648400156,"roll":0.0968213966293674},"location":"Left Ankle"},{"euler":{"heading":90.30259233263519,"pitch":-31.675643729251867,"roll":-29.978689207276663},"location":"Right Ankle"},{"euler":{"heading":182.24764621776595,"pitch":-162.69694351116124,"roll":53.376225621400785},"location":"Right Hip"},{"euler":{"heading":237.28546427363702,"pitch":-91.59590733825901,"roll":64.18655282992744},"location":"Right Knee"},{"euler":{"heading":106.66847441096533,"pitch":-132.11305828243516,"roll":58.06288285543654},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.739"} +{"sensors":[{"euler":{"heading":75.41539994568666,"pitch":124.56828368690654,"roll":18.877149782768658},"location":"Left Knee"},{"euler":{"heading":127.95463370378937,"pitch":86.51347835601405,"roll":-1.1316107430335693},"location":"Left Ankle"},{"euler":{"heading":112.05983309937167,"pitch":-29.50182935632668,"roll":-31.818320286548996},"location":"Right Ankle"},{"euler":{"heading":183.37288159598936,"pitch":-162.3959991600451,"roll":53.51985305926071},"location":"Right Hip"},{"euler":{"heading":240.00691784627332,"pitch":-93.23006660443312,"roll":61.60539754693469},"location":"Right Knee"},{"euler":{"heading":96.85162696986879,"pitch":-131.43925245419166,"roll":58.23784456989289},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.840"} +{"sensors":[{"euler":{"heading":74.855109951118,"pitch":124.21770531821589,"roll":19.608184804491792},"location":"Left Knee"},{"euler":{"heading":116.39042033341043,"pitch":86.87463052041265,"roll":-1.8559496687302124},"location":"Left Ankle"},{"euler":{"heading":104.77259978943451,"pitch":-27.957896420694013,"roll":-33.1302382578941},"location":"Right Ankle"},{"euler":{"heading":184.63559343639042,"pitch":-161.7501492440406,"roll":53.01786775333464},"location":"Right Hip"},{"euler":{"heading":242.449976061646,"pitch":-94.31330994398981,"roll":59.56360779224122},"location":"Right Knee"},{"euler":{"heading":88.1414642728819,"pitch":-131.6515772087725,"roll":58.532810112903604},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.941"} +{"sensors":[{"euler":{"heading":74.6008489560062,"pitch":123.7334347863943,"roll":19.922366324042613},"location":"Left Knee"},{"euler":{"heading":106.57012830006938,"pitch":87.16841746837139,"roll":-2.039104701857191},"location":"Left Ankle"},{"euler":{"heading":100.18283981049106,"pitch":-28.17460677862461,"roll":-33.33596443210469},"location":"Right Ankle"},{"euler":{"heading":185.55328409275137,"pitch":-161.19388431963657,"roll":52.07858097800118},"location":"Right Hip"},{"euler":{"heading":243.0799784554814,"pitch":-95.66322894959083,"roll":59.4884970130171},"location":"Right Knee"},{"euler":{"heading":80.54606784559371,"pitch":-132.78641948789524,"roll":58.87327910161325},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.42"} +{"sensors":[{"euler":{"heading":74.89076406040559,"pitch":123.11634130775488,"roll":19.823879691638354},"location":"Left Knee"},{"euler":{"heading":98.53811547006245,"pitch":87.43282572153426,"roll":-1.5289442316714719},"location":"Left Ankle"},{"euler":{"heading":97.91455582944195,"pitch":-29.144646100762152,"roll":-32.05236798889422},"location":"Right Ankle"},{"euler":{"heading":185.39170568347626,"pitch":-161.09949588767293,"roll":51.145722880201056},"location":"Right Hip"},{"euler":{"heading":241.70323060993329,"pitch":-98.85940605463175,"roll":61.38339731171539},"location":"Right Knee"},{"euler":{"heading":73.87896106103435,"pitch":-134.37652753910572,"roll":59.329701191451925},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.144"} +{"sensors":[{"euler":{"heading":75.67668765436504,"pitch":122.44845717697939,"roll":19.228991722474518},"location":"Left Knee"},{"euler":{"heading":91.80305392305621,"pitch":87.55829314938084,"roll":-0.5385498085043247},"location":"Left Ankle"},{"euler":{"heading":97.64810024649776,"pitch":-30.511431490685936,"roll":-29.922131190004798},"location":"Right Ankle"},{"euler":{"heading":184.20878511512862,"pitch":-161.29579629890566,"roll":50.71865059218095},"location":"Right Hip"},{"euler":{"heading":239.16415754893995,"pitch":-73.57346544916857,"roll":63.21380758054385},"location":"Right Knee"},{"euler":{"heading":68.01606495493093,"pitch":-136.24512478519515,"roll":59.93423107230674},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.245"} +{"sensors":[{"euler":{"heading":76.97776888892854,"pitch":121.77861145928145,"roll":18.087342550227067},"location":"Left Knee"},{"euler":{"heading":86.6102485307506,"pitch":87.60246383444276,"roll":1.340305172346108},"location":"Left Ankle"},{"euler":{"heading":97.07079022184799,"pitch":-31.441538341617342,"roll":-28.37366807100432},"location":"Right Ankle"},{"euler":{"heading":182.53790660361577,"pitch":-161.72871666901509,"roll":50.53428553296286},"location":"Right Hip"},{"euler":{"heading":236.44774179404595,"pitch":-50.28486890425172,"roll":64.90492682248947},"location":"Right Knee"},{"euler":{"heading":62.964458459437836,"pitch":-138.46436230667564,"roll":60.59705796507606},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.346"} +{"sensors":[{"euler":{"heading":79.81124200003569,"pitch":121.3507503133533,"roll":15.77860829520436},"location":"Left Knee"},{"euler":{"heading":83.34922367767554,"pitch":87.5859674509985,"roll":4.787524655111497},"location":"Left Ankle"},{"euler":{"heading":95.68246119966318,"pitch":-31.797384507455607,"roll":-27.72380126390389},"location":"Right Ankle"},{"euler":{"heading":181.4653659432542,"pitch":-161.9870950021136,"roll":50.55585697966658},"location":"Right Hip"},{"euler":{"heading":234.22171761464136,"pitch":-61.83763201382655,"roll":66.30193414024052},"location":"Right Knee"},{"euler":{"heading":57.49301261349406,"pitch":-138.37417607600807,"roll":61.043602168568455},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.448"} +{"sensors":[{"euler":{"heading":83.01136780003213,"pitch":120.82192528201797,"roll":13.475747465683925},"location":"Left Knee"},{"euler":{"heading":80.26430130990799,"pitch":86.99612070589865,"roll":8.208772189600348},"location":"Left Ankle"},{"euler":{"heading":94.13296507969686,"pitch":-31.90514605671005,"roll":-27.495171137513502},"location":"Right Ankle"},{"euler":{"heading":180.43132934892878,"pitch":-162.25088550190225,"roll":51.075271281699926},"location":"Right Hip"},{"euler":{"heading":232.42454585317722,"pitch":-70.94761881244389,"roll":67.11549072621646},"location":"Right Knee"},{"euler":{"heading":87.56246135214465,"pitch":-136.44300846840727,"roll":60.84549195171161},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.548"} +{"sensors":[{"euler":{"heading":84.49148102002893,"pitch":121.12098275381618,"roll":12.634422719115532},"location":"Left Knee"},{"euler":{"heading":75.8253711789172,"pitch":86.28400863530878,"roll":9.144144970640314},"location":"Left Ankle"},{"euler":{"heading":92.40716857172717,"pitch":-31.733381451039044,"roll":-27.583154023762155},"location":"Right Ankle"},{"euler":{"heading":180.06319641403593,"pitch":-162.23204695171205,"roll":51.773994153529934},"location":"Right Hip"},{"euler":{"heading":231.1820912678595,"pitch":-78.27785693119951,"roll":67.50394165359482},"location":"Right Knee"},{"euler":{"heading":114.38121521693019,"pitch":-134.37370762156655,"roll":60.17344275654045},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.649"} +{"sensors":[{"euler":{"heading":82.33608291802604,"pitch":122.46513447843456,"roll":13.76473044720398},"location":"Left Knee"},{"euler":{"heading":68.78658406102548,"pitch":85.2681077717779,"roll":7.310980473576282},"location":"Left Ankle"},{"euler":{"heading":90.42270171455445,"pitch":-31.260043305935138,"roll":-28.01858862138594},"location":"Right Ankle"},{"euler":{"heading":179.98187677263235,"pitch":-162.22134225654085,"roll":52.47159473817694},"location":"Right Hip"},{"euler":{"heading":230.51388214107357,"pitch":-83.95632123807957,"roll":67.45979748823534},"location":"Right Knee"},{"euler":{"heading":138.55559369523718,"pitch":-132.44258685940991,"roll":59.562348480886406},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.750"} +{"sensors":[{"euler":{"heading":78.85247462622344,"pitch":124.34362103059111,"roll":15.707007402483583},"location":"Left Knee"},{"euler":{"heading":96.73292565492294,"pitch":84.31629699460012,"roll":3.8111324262186534},"location":"Left Ankle"},{"euler":{"heading":87.99918154309901,"pitch":-30.421538975341626,"roll":-28.829229759247347},"location":"Right Ankle"},{"euler":{"heading":180.17118909536913,"pitch":-162.23045803088675,"roll":53.168185264359245},"location":"Right Hip"},{"euler":{"heading":230.7437439269662,"pitch":-88.24818911427161,"roll":66.82006773941181},"location":"Right Knee"},{"euler":{"heading":124.81878432571347,"pitch":-131.23582817346892,"roll":59.14986363279777},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.851"} +{"sensors":[{"euler":{"heading":76.4484771636011,"pitch":125.44675892753199,"roll":17.511306662235228},"location":"Left Knee"},{"euler":{"heading":122.21588308943065,"pitch":84.35341729514012,"roll":0.9362691835967878},"location":"Left Ankle"},{"euler":{"heading":84.80551338878912,"pitch":-29.46688507780746,"roll":-30.040056783322612},"location":"Right Ankle"},{"euler":{"heading":180.7478201858322,"pitch":-162.48241222779808,"roll":53.870116737923325},"location":"Right Hip"},{"euler":{"heading":232.5568695342696,"pitch":-91.24837020284446,"roll":65.32556096547063},"location":"Right Knee"},{"euler":{"heading":112.90565589314211,"pitch":-130.44349535612204,"roll":58.953627269517995},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.952"} +{"sensors":[{"euler":{"heading":75.022379447241,"pitch":125.7958330347788,"roll":18.822675996011704},"location":"Left Knee"},{"euler":{"heading":110.31304478048757,"pitch":84.51182556562611,"roll":-0.6698577347628911},"location":"Left Ankle"},{"euler":{"heading":107.36246204991022,"pitch":-27.820196570026717,"roll":-31.748551104990355},"location":"Right Ankle"},{"euler":{"heading":181.77303816724898,"pitch":-162.36542100501828,"roll":54.045605064130996},"location":"Right Hip"},{"euler":{"heading":235.50743258084265,"pitch":-93.12978318256,"roll":62.93050486892357},"location":"Right Knee"},{"euler":{"heading":102.1463403038279,"pitch":-129.99914582050985,"roll":58.9895145425662},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.52"} +{"sensors":[{"euler":{"heading":74.30764150251689,"pitch":125.55374973130093,"roll":19.696658396410534},"location":"Left Knee"},{"euler":{"heading":100.13799030243882,"pitch":84.8418930090635,"roll":-1.6716219612866021},"location":"Left Ankle"},{"euler":{"heading":127.5762158449192,"pitch":-26.106926913024047,"roll":-33.12994599449132},"location":"Right Ankle"},{"euler":{"heading":182.8332343505241,"pitch":-161.85387890451645,"roll":53.5535445577179},"location":"Right Hip"},{"euler":{"heading":238.1004393227584,"pitch":-94.616804864304,"roll":60.881204382031214},"location":"Right Knee"},{"euler":{"heading":92.76295627344511,"pitch":-130.33673123845887,"roll":59.24681308830958},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.153"} +{"sensors":[{"euler":{"heading":74.0143773522652,"pitch":125.08587475817085,"roll":20.19574255676948},"location":"Left Knee"},{"euler":{"heading":91.46794127219495,"pitch":85.19520370815715,"roll":-2.1669597651579418},"location":"Left Ankle"},{"euler":{"heading":120.66234426042729,"pitch":-26.008734221721642,"roll":-33.629451395042196},"location":"Right Ankle"},{"euler":{"heading":183.7561609154717,"pitch":-161.3997410140648,"roll":52.58569010194611},"location":"Right Hip"},{"euler":{"heading":239.05289539048255,"pitch":-96.3738743778736,"roll":60.4618339438281},"location":"Right Knee"},{"euler":{"heading":84.6304106461006,"pitch":-131.453058114613,"roll":59.69088177947862},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.254"} +{"sensors":[{"euler":{"heading":74.28793961703867,"pitch":124.35853728235377,"roll":20.313668301092534},"location":"Left Knee"},{"euler":{"heading":84.66489714497546,"pitch":85.66943333734145,"roll":-1.7315137886421477},"location":"Left Ankle"},{"euler":{"heading":116.13985983438457,"pitch":-27.11411079954948,"roll":-32.329006255537976},"location":"Right Ankle"},{"euler":{"heading":183.79304482392453,"pitch":-161.33476691265832,"roll":51.5333710917515},"location":"Right Hip"},{"euler":{"heading":238.4101058514343,"pitch":-99.66773694008626,"roll":61.809400549445286},"location":"Right Knee"},{"euler":{"heading":77.59861958149055,"pitch":-133.2390023031517,"roll":60.196793601530764},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.354"} +{"sensors":[{"euler":{"heading":75.11539565533481,"pitch":123.4289335541184,"roll":19.988551470983282},"location":"Left Knee"},{"euler":{"heading":79.14840743047792,"pitch":86.2337400036073,"roll":-0.7771124097779329},"location":"Left Ankle"},{"euler":{"heading":114.0008738509461,"pitch":-28.677699719594536,"roll":-30.00235562998418},"location":"Right Ankle"},{"euler":{"heading":182.9012403415321,"pitch":-161.5637902213925,"roll":50.98628398257635},"location":"Right Hip"},{"euler":{"heading":236.21909526629088,"pitch":-73.90721324607763,"roll":63.684710494500756},"location":"Right Knee"},{"euler":{"heading":71.57625762334149,"pitch":-135.40885207283654,"roll":60.81461424137769},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.455"} +{"sensors":[{"euler":{"heading":76.62260608980132,"pitch":122.42979019870657,"roll":19.008446323884954},"location":"Left Knee"},{"euler":{"heading":75.02731668743013,"pitch":86.71661600324657,"roll":1.0255988311998605},"location":"Left Ankle"},{"euler":{"heading":111.9507864658515,"pitch":-30.016179747635082,"roll":-28.208370066985765},"location":"Right Ankle"},{"euler":{"heading":181.4611163073789,"pitch":-162.03241119925326,"roll":50.775155584318725},"location":"Right Hip"},{"euler":{"heading":233.8471857396618,"pitch":-50.703991921469864,"roll":65.31623944505068},"location":"Right Knee"},{"euler":{"heading":66.44363186100735,"pitch":-137.87421686555288,"roll":61.45815281723992},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.555"} +{"sensors":[{"euler":{"heading":79.21659548082118,"pitch":121.70556117883591,"roll":16.93260169149646},"location":"Left Knee"},{"euler":{"heading":72.18083501868712,"pitch":86.71370440292192,"roll":4.173038948079874},"location":"Left Ankle"},{"euler":{"heading":109.38070781926635,"pitch":-30.914561772871572,"roll":-27.38128306028719},"location":"Right Ankle"},{"euler":{"heading":180.533754676641,"pitch":-162.42917007932795,"roll":50.79764002588686},"location":"Right Hip"},{"euler":{"heading":231.8374671656956,"pitch":-62.91484272932288,"roll":66.70336550054562},"location":"Right Knee"},{"euler":{"heading":61.086768674906615,"pitch":-138.7055451789976,"roll":61.87483753551593},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.656"} +{"sensors":[{"euler":{"heading":82.68243593273907,"pitch":121.06000506095232,"roll":14.420591522346813},"location":"Left Knee"},{"euler":{"heading":70.30650151681841,"pitch":86.24233396262973,"roll":7.799485053271887},"location":"Left Ankle"},{"euler":{"heading":106.79263703733972,"pitch":-31.529355595584416,"roll":-26.974404754258472},"location":"Right Ankle"},{"euler":{"heading":179.4741292089769,"pitch":-162.91125307139515,"roll":51.224126023298176},"location":"Right Hip"},{"euler":{"heading":230.20372044912608,"pitch":-72.3046084563906,"roll":67.60177895049105},"location":"Right Knee"},{"euler":{"heading":90.90934180741596,"pitch":-136.60999066109784,"roll":61.86860378196434},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.756"} +{"sensors":[{"euler":{"heading":84.72044233946517,"pitch":121.2290045548571,"roll":13.091032370112133},"location":"Left Knee"},{"euler":{"heading":67.03835136513658,"pitch":85.39935056636676,"roll":9.0257865479447},"location":"Left Ankle"},{"euler":{"heading":104.11962333360574,"pitch":-31.726420036025978,"roll":-26.914464278832625},"location":"Right Ankle"},{"euler":{"heading":178.91421628807922,"pitch":-163.14512776425565,"roll":51.85171342096836},"location":"Right Hip"},{"euler":{"heading":228.8958484042135,"pitch":-79.87414761075154,"roll":68.07285105544194},"location":"Right Knee"},{"euler":{"heading":117.29965762667436,"pitch":-134.41774159498806,"roll":61.2129934037679},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.857"} +{"sensors":[{"euler":{"heading":82.92964810551865,"pitch":122.4873540993714,"roll":13.88817913310092},"location":"Left Knee"},{"euler":{"heading":61.04076622862292,"pitch":84.08441550973008,"roll":7.32320789315023},"location":"Left Ankle"},{"euler":{"heading":101.33266100024517,"pitch":-31.61002803242338,"roll":-27.166767850949366},"location":"Right Ankle"},{"euler":{"heading":178.66654465927132,"pitch":-163.33686498783007,"roll":52.59779207887152},"location":"Right Hip"},{"euler":{"heading":228.18126356379216,"pitch":-85.76798284967637,"roll":68.13431594989775},"location":"Right Knee"},{"euler":{"heading":141.08219186400692,"pitch":-132.31346743548926,"roll":60.579194063391114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.958"} +{"sensors":[{"euler":{"heading":79.38668329496679,"pitch":124.38861868943427,"roll":15.649361219790828},"location":"Left Knee"},{"euler":{"heading":89.76168960576064,"pitch":82.78222395875707,"roll":3.822137103835207},"location":"Left Ankle"},{"euler":{"heading":98.36189490022065,"pitch":-31.224025229181045,"roll":-27.75634106585443},"location":"Right Ankle"},{"euler":{"heading":178.6186401933442,"pitch":-163.62192848904706,"roll":53.43801287098437},"location":"Right Hip"},{"euler":{"heading":228.29438720741294,"pitch":-90.14743456470873,"roll":67.65213435490799},"location":"Right Knee"},{"euler":{"heading":162.89897267760622,"pitch":-130.93212069194033,"roll":60.121274657052005},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.58"} +{"sensors":[{"euler":{"heading":77.13551496547011,"pitch":125.33725682049085,"roll":17.334425097811746},"location":"Left Knee"},{"euler":{"heading":115.87302064518457,"pitch":82.81025156288138,"roll":1.0774233934516864},"location":"Left Ankle"},{"euler":{"heading":94.71945541019858,"pitch":-30.670372706262942,"roll":-28.905706959268986},"location":"Right Ankle"},{"euler":{"heading":179.16927617400978,"pitch":-163.89723564014236,"roll":54.206711583885934},"location":"Right Hip"},{"euler":{"heading":229.82119848667168,"pitch":-93.07019110823786,"roll":66.37442091941719},"location":"Right Knee"},{"euler":{"heading":147.2778254098456,"pitch":-130.3139086227463,"roll":59.940397191346804},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.164"} +{"sensors":[{"euler":{"heading":75.80321346892309,"pitch":125.54103113844177,"roll":18.525982588030573},"location":"Left Knee"},{"euler":{"heading":104.50446858066611,"pitch":82.90422640659324,"roll":-0.5803189458934823},"location":"Left Ankle"},{"euler":{"heading":116.46625986917873,"pitch":-29.147085435636647,"roll":-30.62138626334209},"location":"Right Ankle"},{"euler":{"heading":180.2648485566088,"pitch":-163.66376207612814,"roll":54.42354042549734},"location":"Right Hip"},{"euler":{"heading":232.6828286380045,"pitch":-94.86317199741407,"roll":64.10572882747547},"location":"Right Knee"},{"euler":{"heading":133.11879286886105,"pitch":-130.2700177604717,"roll":59.83385747221213},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.264"} +{"sensors":[{"euler":{"heading":75.21664212203079,"pitch":125.11192802459759,"roll":19.398384329227518},"location":"Left Knee"},{"euler":{"heading":95.0290217225995,"pitch":83.53880376593392,"roll":-1.6222870513041343},"location":"Left Ankle"},{"euler":{"heading":135.43838388226087,"pitch":-27.369876892072984,"roll":-32.10299763700788},"location":"Right Ankle"},{"euler":{"heading":181.55711370094792,"pitch":-162.86613586851533,"roll":53.98118638294761},"location":"Right Hip"},{"euler":{"heading":235.18329577420408,"pitch":-96.35185479767267,"roll":62.03265594472793},"location":"Right Knee"},{"euler":{"heading":120.79441358197495,"pitch":-130.73051598442453,"roll":60.03797172499092},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.366"} +{"sensors":[{"euler":{"heading":75.20747790982772,"pitch":124.25698522213783,"roll":19.939795896304766},"location":"Left Knee"},{"euler":{"heading":87.11361955033955,"pitch":84.34742338934052,"roll":-2.047558346173721},"location":"Left Ankle"},{"euler":{"heading":127.1382954940348,"pitch":-27.207889202865687,"roll":-32.780197873307095},"location":"Right Ankle"},{"euler":{"heading":182.67015233085314,"pitch":-162.2170222816638,"roll":52.90181774465285},"location":"Right Hip"},{"euler":{"heading":236.12746619678367,"pitch":-98.09166931790541,"roll":61.58564035025514},"location":"Right Knee"},{"euler":{"heading":110.07747222377745,"pitch":-131.91996438598207,"roll":60.37792455249183},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.467"} +{"sensors":[{"euler":{"heading":75.72423011884494,"pitch":123.26878669992405,"roll":20.002066306674287},"location":"Left Knee"},{"euler":{"heading":81.0522575953056,"pitch":85.18143105040647,"roll":-1.4678025115563487},"location":"Left Ankle"},{"euler":{"heading":121.95571594463132,"pitch":-28.54335028257912,"roll":-31.845928085976386},"location":"Right Ankle"},{"euler":{"heading":178.76563709776784,"pitch":-161.9953200534974,"roll":51.66163597018757},"location":"Right Hip"},{"euler":{"heading":235.4647195771053,"pitch":-101.71375238611488,"roll":63.00207631522963},"location":"Right Knee"},{"euler":{"heading":100.6384750013997,"pitch":-133.68421794738387,"roll":60.777632097242645},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.568"} +{"sensors":[{"euler":{"heading":76.70180710696044,"pitch":122.16690802993165,"roll":19.59560967600686},"location":"Left Knee"},{"euler":{"heading":76.02203183577505,"pitch":85.95703794536583,"roll":-0.46477226040071373},"location":"Left Ankle"},{"euler":{"heading":119.01639435016818,"pitch":-30.12651525432121,"roll":-29.717585277378745},"location":"Right Ankle"},{"euler":{"heading":178.63907338799106,"pitch":-162.03953804814768,"roll":51.00172237316881},"location":"Right Hip"},{"euler":{"heading":233.34949761939478,"pitch":-76.64862714750339,"roll":64.63311868370667},"location":"Right Knee"},{"euler":{"heading":92.46212750125973,"pitch":-135.97204615264548,"roll":61.262368887518384},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.669"} +{"sensors":[{"euler":{"heading":78.3128763962644,"pitch":121.04396722693849,"roll":18.529798708406176},"location":"Left Knee"},{"euler":{"heading":72.23232865219755,"pitch":86.57383415082926,"roll":1.2692049656393576},"location":"Left Ankle"},{"euler":{"heading":116.53975491515136,"pitch":-31.27636372888909,"roll":-27.964576749640873},"location":"Right Ankle"},{"euler":{"heading":177.65641604919196,"pitch":-162.4668342433329,"roll":50.85155013585193},"location":"Right Hip"},{"euler":{"heading":230.8645478574553,"pitch":-54.32126443275305,"roll":66.082306815336},"location":"Right Knee"},{"euler":{"heading":85.55966475113375,"pitch":-138.86859153738092,"roll":61.77363199876655},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.770"} +{"sensors":[{"euler":{"heading":80.98783875663796,"pitch":120.18332050424465,"roll":16.37056883756556},"location":"Left Knee"},{"euler":{"heading":69.3340957869778,"pitch":86.62270073574633,"roll":4.036034469075422},"location":"Left Ankle"},{"euler":{"heading":113.67952942363623,"pitch":-32.09872735600018,"roll":-27.211869074676784},"location":"Right Ankle"},{"euler":{"heading":177.40327444427277,"pitch":-162.7076508189996,"roll":50.84139512226674},"location":"Right Hip"},{"euler":{"heading":228.86559307170978,"pitch":-31.245387989477745,"roll":67.3865761338024},"location":"Right Knee"},{"euler":{"heading":78.72869827602037,"pitch":-140.10673238364285,"roll":62.15251879888989},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.871"} +{"sensors":[{"euler":{"heading":84.57030488097416,"pitch":119.57123845382019,"roll":13.721011953809006},"location":"Left Knee"},{"euler":{"heading":67.55693620828002,"pitch":86.4041806621717,"roll":7.58243102216788},"location":"Left Ankle"},{"euler":{"heading":110.68657648127261,"pitch":-32.601354620400166,"roll":-26.821932167209106},"location":"Right Ankle"},{"euler":{"heading":176.9129469998455,"pitch":-163.09313573709966,"roll":51.27600561004007},"location":"Right Hip"},{"euler":{"heading":227.2290337645388,"pitch":-44.39584919052997,"roll":68.22291852042216},"location":"Right Knee"},{"euler":{"heading":71.03707844841834,"pitch":-138.31480914527856,"roll":62.1435169190009},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.972"} +{"sensors":[{"euler":{"heading":86.92577439287675,"pitch":119.82661460843818,"roll":12.361410758428105},"location":"Left Knee"},{"euler":{"heading":64.53249258745203,"pitch":85.53251259595453,"roll":8.880437919951092},"location":"Left Ankle"},{"euler":{"heading":107.77416883314535,"pitch":-32.73496915836015,"roll":-26.727238950488193},"location":"Right Ankle"},{"euler":{"heading":176.62790229986095,"pitch":-163.3338221633897,"roll":51.94215504903607},"location":"Right Hip"},{"euler":{"heading":225.89988038808494,"pitch":-55.231264271476974,"roll":68.71312666837994},"location":"Right Knee"},{"euler":{"heading":99.5208706035765,"pitch":-136.3020782307507,"roll":61.47916522710081},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.72"} +{"sensors":[{"euler":{"heading":85.45194695358907,"pitch":121.07520314759437,"roll":13.062769682585294},"location":"Left Knee"},{"euler":{"heading":58.710493328706825,"pitch":84.42301133635907,"roll":7.336144127955983},"location":"Left Ankle"},{"euler":{"heading":104.69050194983082,"pitch":-32.48647224252414,"roll":-26.998265055439376},"location":"Right Ankle"},{"euler":{"heading":176.83386206987487,"pitch":-163.34418994705072,"roll":52.67918954413246},"location":"Right Hip"},{"euler":{"heading":225.25364234927645,"pitch":-63.82063784432928,"roll":68.79181400154195},"location":"Right Knee"},{"euler":{"heading":125.15003354321885,"pitch":-134.42187040767564,"roll":60.79999870439073},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.173"} +{"sensors":[{"euler":{"heading":82.20675225823017,"pitch":122.87393283283492,"roll":14.793992714326764},"location":"Left Knee"},{"euler":{"heading":87.62069399583615,"pitch":83.21196020272316,"roll":3.9212797151603844},"location":"Left Ankle"},{"euler":{"heading":101.29020175484773,"pitch":-31.919075018271727,"roll":-27.69218854989544},"location":"Right Ankle"},{"euler":{"heading":177.1129758628874,"pitch":-163.54727095234566,"roll":53.505020589719216},"location":"Right Hip"},{"euler":{"heading":225.3095281143488,"pitch":-70.50732405989635,"roll":68.37513260138776},"location":"Right Knee"},{"euler":{"heading":112.66003018889698,"pitch":-133.26718336690809,"roll":60.35749883395166},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.274"} +{"sensors":[{"euler":{"heading":79.79232703240716,"pitch":123.99278954955143,"roll":16.46459344289409},"location":"Left Knee"},{"euler":{"heading":113.85862459625254,"pitch":83.01576418245085,"roll":0.9854017436443461},"location":"Left Ankle"},{"euler":{"heading":97.34868157936296,"pitch":-31.233417516444558,"roll":-28.9729696949059},"location":"Right Ankle"},{"euler":{"heading":177.74542827659866,"pitch":-163.86754385711112,"roll":54.310768530747296},"location":"Right Hip"},{"euler":{"heading":226.73482530291395,"pitch":-75.46284165390671,"roll":67.15636934124899},"location":"Right Knee"},{"euler":{"heading":101.9377771700073,"pitch":-132.49046503021728,"roll":60.1092489505565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.375"} +{"sensors":[{"euler":{"heading":78.50684432916644,"pitch":124.2935105945963,"roll":17.62438409860468},"location":"Left Knee"},{"euler":{"heading":102.77276213662728,"pitch":83.09543776420577,"roll":-0.5818884307200886},"location":"Left Ankle"},{"euler":{"heading":118.70756342142667,"pitch":-29.4975757648001,"roll":-30.81317272541531},"location":"Right Ankle"},{"euler":{"heading":179.1271354489388,"pitch":-163.40578947140003,"roll":54.49844167767257},"location":"Right Hip"},{"euler":{"heading":229.81134277262257,"pitch":-78.92905748851604,"roll":64.8407324071241},"location":"Right Knee"},{"euler":{"heading":92.22524945300657,"pitch":-132.21016852719555,"roll":59.998324055500845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.477"} +{"sensors":[{"euler":{"heading":77.8811598962498,"pitch":123.90165953513667,"roll":18.50569568874421},"location":"Left Knee"},{"euler":{"heading":93.50173592296454,"pitch":83.7421439877852,"roll":-1.5424495876480797},"location":"Left Ankle"},{"euler":{"heading":137.530557079284,"pitch":-27.82281818832009,"roll":-32.28810545287378},"location":"Right Ankle"},{"euler":{"heading":180.6956719040449,"pitch":-162.56521052426004,"roll":53.97984750990531},"location":"Right Hip"},{"euler":{"heading":232.47395849536034,"pitch":-81.99240173966443,"roll":62.75665916641169},"location":"Right Knee"},{"euler":{"heading":84.00897450770591,"pitch":-132.445401674476,"roll":60.16724164995077},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.577"} +{"sensors":[{"euler":{"heading":77.74304390662482,"pitch":123.14274358162302,"roll":19.048876119869792},"location":"Left Knee"},{"euler":{"heading":86.00781233066809,"pitch":84.59292958900667,"roll":-1.7132046288832716},"location":"Left Ankle"},{"euler":{"heading":129.3150013713556,"pitch":-27.95928636948808,"roll":-32.8467949075864},"location":"Right Ankle"},{"euler":{"heading":182.03235471364042,"pitch":-161.90243947183404,"roll":52.85061275891478},"location":"Right Hip"},{"euler":{"heading":233.46406264582433,"pitch":-85.41191156569799,"roll":62.36224324977052},"location":"Right Knee"},{"euler":{"heading":77.00807705693533,"pitch":-133.47586150702838,"roll":60.531767484955694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.680"} +{"sensors":[{"euler":{"heading":78.17498951596234,"pitch":122.20346922346073,"roll":19.131488507882814},"location":"Left Knee"},{"euler":{"heading":79.90078109760128,"pitch":85.44613663010601,"roll":-1.2856341659949444},"location":"Left Ankle"},{"euler":{"heading":123.95850123422005,"pitch":-29.38210773253927,"roll":-31.73086541682776},"location":"Right Ankle"},{"euler":{"heading":178.2291192422764,"pitch":-161.67469552465064,"roll":51.6093014830233},"location":"Right Hip"},{"euler":{"heading":232.9551563812419,"pitch":-90.3519704091282,"roll":63.78851892479347},"location":"Right Knee"},{"euler":{"heading":70.9135193512418,"pitch":-135.15952535632556,"roll":60.97859073646013},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.780"} +{"sensors":[{"euler":{"heading":79.0887405643661,"pitch":121.12062230111466,"roll":18.74333965709453},"location":"Left Knee"},{"euler":{"heading":74.91070298784116,"pitch":86.27027296709542,"roll":-0.3633207493954499},"location":"Left Ankle"},{"euler":{"heading":121.09390111079804,"pitch":-30.943896959285343,"roll":-29.445278875144986},"location":"Right Ankle"},{"euler":{"heading":178.23745731804877,"pitch":-161.75722597218558,"roll":50.91087133472097},"location":"Right Hip"},{"euler":{"heading":230.9096407431177,"pitch":-67.20427336821538,"roll":65.34716703231413},"location":"Right Knee"},{"euler":{"heading":65.78466741611763,"pitch":-137.312322820693,"roll":61.536981662814114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.881"} +{"sensors":[{"euler":{"heading":80.6611165079295,"pitch":120.07731007100321,"roll":17.650255691385077},"location":"Left Knee"},{"euler":{"heading":71.21963268905705,"pitch":86.86199567038588,"roll":1.3980113255440951},"location":"Left Ankle"},{"euler":{"heading":118.43451099971824,"pitch":-32.16200726335681,"roll":-27.59450098763049},"location":"Right Ankle"},{"euler":{"heading":177.5637115862439,"pitch":-162.13775337496702,"roll":50.66978420124888},"location":"Right Hip"},{"euler":{"heading":228.63117666880595,"pitch":-46.49009603139385,"roll":66.72495032908272},"location":"Right Knee"},{"euler":{"heading":61.518700674505865,"pitch":-140.0498405386237,"roll":62.102033496532705},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.981"} +{"sensors":[{"euler":{"heading":83.37000485713656,"pitch":119.3008290639029,"roll":15.32273012224657},"location":"Left Knee"},{"euler":{"heading":68.62891942015135,"pitch":87.0757961033473,"roll":4.414460192989686},"location":"Left Ankle"},{"euler":{"heading":115.32230989974643,"pitch":-32.90205653702113,"roll":-26.716300888867444},"location":"Right Ankle"},{"euler":{"heading":177.58859042761952,"pitch":-162.29897803747033,"roll":50.60905578112399},"location":"Right Hip"},{"euler":{"heading":226.73055900192537,"pitch":-24.947336428254463,"roll":68.04620529617445},"location":"Right Knee"},{"euler":{"heading":57.235580607055276,"pitch":-140.91985648476134,"roll":62.55433014687944},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.82"} +{"sensors":[{"euler":{"heading":86.8642543714229,"pitch":118.70199615751261,"roll":12.765457110021913},"location":"Left Knee"},{"euler":{"heading":66.68477747813621,"pitch":87.06196649301256,"roll":7.779264173690717},"location":"Left Ankle"},{"euler":{"heading":112.0963289097718,"pitch":-33.20560088331902,"roll":-26.4196707999807},"location":"Right Ankle"},{"euler":{"heading":177.2922313848576,"pitch":-162.5565802337233,"roll":51.01065020301159},"location":"Right Hip"},{"euler":{"heading":225.02625310173283,"pitch":-39.302602785429016,"roll":68.922834766557},"location":"Right Knee"},{"euler":{"heading":51.86202254634975,"pitch":-138.96537083628522,"roll":62.51764713219149},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.184"} +{"sensors":[{"euler":{"heading":88.76532893428062,"pitch":118.95679654176135,"roll":11.638911399019722},"location":"Left Knee"},{"euler":{"heading":63.32254973032259,"pitch":86.36201984371131,"roll":8.676337756321646},"location":"Left Ankle"},{"euler":{"heading":109.01169601879462,"pitch":-33.37879079498712,"roll":-26.433953719982632},"location":"Right Ankle"},{"euler":{"heading":177.34425824637182,"pitch":-162.663422210351,"roll":51.62833518271044},"location":"Right Hip"},{"euler":{"heading":223.87362779155956,"pitch":-51.003592506886115,"roll":69.3993012899013},"location":"Right Knee"},{"euler":{"heading":82.42582029171479,"pitch":-136.9938337526567,"roll":61.84088241897235},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.284"} +{"sensors":[{"euler":{"heading":87.19504604085256,"pitch":120.23611688758521,"roll":12.50627025911775},"location":"Left Knee"},{"euler":{"heading":57.302794757290336,"pitch":85.42581785934019,"roll":6.883703980689481},"location":"Left Ankle"},{"euler":{"heading":105.88552641691517,"pitch":-33.42841171548841,"roll":-26.65930834798437},"location":"Right Ankle"},{"euler":{"heading":177.55983242173463,"pitch":-162.8408299893159,"roll":52.340501664439394},"location":"Right Hip"},{"euler":{"heading":223.4175150124036,"pitch":-60.2469832561975,"roll":69.52187116091118},"location":"Right Knee"},{"euler":{"heading":109.76448826254332,"pitch":-134.99445037739105,"roll":61.075544177075116},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.385"} +{"sensors":[{"euler":{"heading":83.7317914367673,"pitch":122.11875519882669,"roll":14.324393233205974},"location":"Left Knee"},{"euler":{"heading":86.3225152815613,"pitch":84.11448607340617,"roll":3.439083582620533},"location":"Left Ankle"},{"euler":{"heading":102.48447377522365,"pitch":-33.166820543939565,"roll":-27.249627513185935},"location":"Right Ankle"},{"euler":{"heading":177.99134917956115,"pitch":-163.07549699038432,"roll":53.12520149799546},"location":"Right Hip"},{"euler":{"heading":223.70701351116324,"pitch":-67.43478493057775,"roll":69.12593404482006},"location":"Right Knee"},{"euler":{"heading":134.769289436289,"pitch":-133.70125533965194,"roll":60.48048975936761},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.487"} +{"sensors":[{"euler":{"heading":81.20861229309057,"pitch":123.29437967894403,"roll":16.01070390988538},"location":"Left Knee"},{"euler":{"heading":112.72776375340516,"pitch":83.75928746606556,"roll":0.7201752243584796},"location":"Left Ankle"},{"euler":{"heading":98.52352639770127,"pitch":-32.56263848954561,"roll":-28.44341476186734},"location":"Right Ankle"},{"euler":{"heading":178.66096426160505,"pitch":-163.4304472913459,"roll":53.91268134819592},"location":"Right Hip"},{"euler":{"heading":225.02381216004693,"pitch":-72.86005643751997,"roll":68.03834064033805},"location":"Right Knee"},{"euler":{"heading":121.85486049266011,"pitch":-132.92487980568674,"roll":60.14494078343085},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.587"} +{"sensors":[{"euler":{"heading":79.7190010637815,"pitch":123.73369171104962,"roll":17.15338351889684},"location":"Left Knee"},{"euler":{"heading":101.90498737806465,"pitch":83.61460871945901,"roll":-0.6455922980773685},"location":"Left Ankle"},{"euler":{"heading":119.93992375793114,"pitch":-30.937624640591054,"roll":-30.286573285680607},"location":"Right Ankle"},{"euler":{"heading":180.05111783544453,"pitch":-163.10615256221132,"roll":54.077663213376326},"location":"Right Hip"},{"euler":{"heading":228.03393094404225,"pitch":-76.61780079376798,"roll":65.82200657630425},"location":"Right Knee"},{"euler":{"heading":110.15062444339411,"pitch":-132.63864182511807,"roll":60.03669670508776},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.691"} +{"sensors":[{"euler":{"heading":78.93460095740336,"pitch":123.46657253994466,"roll":18.02554516700716},"location":"Left Knee"},{"euler":{"heading":92.72073864025818,"pitch":84.01564784751312,"roll":-1.5622830682696316},"location":"Left Ankle"},{"euler":{"heading":138.70843138213803,"pitch":-29.493862176531948,"roll":-31.801665957112547},"location":"Right Ankle"},{"euler":{"heading":181.6147560519001,"pitch":-162.3267873059902,"roll":53.54489689203869},"location":"Right Hip"},{"euler":{"heading":230.79928784963803,"pitch":-79.85602071439119,"roll":63.81480591867383},"location":"Right Knee"},{"euler":{"heading":100.2418119990547,"pitch":-133.09352764260626,"roll":60.22677703457899},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.792"} +{"sensors":[{"euler":{"heading":78.68489086166302,"pitch":122.7949152859502,"roll":18.572990650306444},"location":"Left Knee"},{"euler":{"heading":85.04241477623236,"pitch":84.6328330627618,"roll":-1.9185547614426683},"location":"Left Ankle"},{"euler":{"heading":130.31258824392424,"pitch":-29.881975958878755,"roll":-32.2402493614013},"location":"Right Ankle"},{"euler":{"heading":182.9470304467101,"pitch":-161.69410857539117,"roll":52.45290720283483},"location":"Right Hip"},{"euler":{"heading":231.93810906467422,"pitch":-83.48291864295207,"roll":63.489575326806445},"location":"Right Knee"},{"euler":{"heading":91.63638079914924,"pitch":-134.18417487834563,"roll":60.51659933112109},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.892"} +{"sensors":[{"euler":{"heading":78.99765177549672,"pitch":121.90917375735518,"roll":18.6906915852758},"location":"Left Knee"},{"euler":{"heading":78.65067329860912,"pitch":85.33204975648562,"roll":-1.7579492852984016},"location":"Left Ankle"},{"euler":{"heading":124.95632941953181,"pitch":-31.25002836299088,"roll":-30.978724425261166},"location":"Right Ankle"},{"euler":{"heading":183.4460774020391,"pitch":-161.52469771785206,"roll":51.35136648255134},"location":"Right Hip"},{"euler":{"heading":231.2505481582068,"pitch":-89.80962677865686,"roll":64.9718677941258},"location":"Right Knee"},{"euler":{"heading":84.11024271923432,"pitch":-135.77825739051107,"roll":60.91493939800899},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.992"} +{"sensors":[{"euler":{"heading":79.82288659794705,"pitch":120.93700638161967,"roll":18.30912242674822},"location":"Left Knee"},{"euler":{"heading":73.40435596874822,"pitch":86.02384478083705,"roll":-1.0821543567685614},"location":"Left Ankle"},{"euler":{"heading":142.42944647757864,"pitch":-32.80002552669179,"roll":-28.69960198273505},"location":"Right Ankle"},{"euler":{"heading":182.7514696618352,"pitch":-161.76597794606687,"roll":50.803729834296206},"location":"Right Hip"},{"euler":{"heading":229.16299334238613,"pitch":-66.84741410079117,"roll":66.13093101471321},"location":"Right Knee"},{"euler":{"heading":77.6054684473109,"pitch":-137.76293165145995,"roll":61.435945458208096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.93"} +{"sensors":[{"euler":{"heading":81.40309793815234,"pitch":119.91830574345771,"roll":17.171960184073402},"location":"Left Knee"},{"euler":{"heading":69.5889203718734,"pitch":86.58396030275334,"roll":0.5760610789082947},"location":"Left Ankle"},{"euler":{"heading":137.59275182982077,"pitch":-33.93877297402261,"roll":-27.05464178446155},"location":"Right Ankle"},{"euler":{"heading":181.61382269565166,"pitch":-162.18938015146017,"roll":50.54835685086659},"location":"Right Hip"},{"euler":{"heading":227.02794400814753,"pitch":-45.368922690712054,"roll":67.3428379132419},"location":"Right Knee"},{"euler":{"heading":71.86367160257981,"pitch":-139.71163848631397,"roll":61.97360091238728},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.193"} +{"sensors":[{"euler":{"heading":84.28778814433711,"pitch":119.19522516911194,"roll":14.854764165666063},"location":"Left Knee"},{"euler":{"heading":67.41127833468606,"pitch":86.72556427247801,"roll":3.9372049710174655},"location":"Left Ankle"},{"euler":{"heading":132.5334766468387,"pitch":-34.58239567662035,"roll":-26.274177606015396},"location":"Right Ankle"},{"euler":{"heading":180.9774404260865,"pitch":-162.54544213631414,"roll":50.49352116577993},"location":"Right Hip"},{"euler":{"heading":225.2501496073328,"pitch":-23.30703042164085,"roll":68.52730412191771},"location":"Right Knee"},{"euler":{"heading":65.85230444232184,"pitch":-139.3217246376826,"roll":62.338740821148555},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.293"} +{"sensors":[{"euler":{"heading":87.6027593299034,"pitch":118.66945265220075,"roll":12.400537749099458},"location":"Left Knee"},{"euler":{"heading":65.72640050121746,"pitch":86.39675784523021,"roll":7.3559844739157185},"location":"Left Ankle"},{"euler":{"heading":127.54887898215482,"pitch":-34.892906108958314,"roll":-25.940509845413857},"location":"Right Ankle"},{"euler":{"heading":180.36094638347785,"pitch":-162.85339792268272,"roll":50.86916904920194},"location":"Right Hip"},{"euler":{"heading":223.84388464659952,"pitch":-37.451327379476766,"roll":69.26832370972593},"location":"Right Knee"},{"euler":{"heading":59.36082399808966,"pitch":-137.12705217391434,"roll":62.142366739033704},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.393"} +{"sensors":[{"euler":{"heading":89.12998339691308,"pitch":118.96500738698069,"roll":11.447983974189512},"location":"Left Knee"},{"euler":{"heading":62.38501045109572,"pitch":85.60083206070719,"roll":8.139136026524147},"location":"Left Ankle"},{"euler":{"heading":122.65649108393933,"pitch":-35.03486549806248,"roll":-26.071458860872472},"location":"Right Ankle"},{"euler":{"heading":180.24360174513006,"pitch":-162.94305813041444,"roll":51.42600214428175},"location":"Right Hip"},{"euler":{"heading":223.1032461819396,"pitch":-48.856194641529086,"roll":69.57899133875334},"location":"Right Knee"},{"euler":{"heading":89.14349159828069,"pitch":-135.0705969565229,"roll":61.38438006513033},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.495"} +{"sensors":[{"euler":{"heading":87.16073505722177,"pitch":120.24350664828262,"roll":12.52818557677056},"location":"Left Knee"},{"euler":{"heading":56.271509405986144,"pitch":84.57824885463647,"roll":6.112722423871732},"location":"Left Ankle"},{"euler":{"heading":117.8970919755454,"pitch":-34.881378948256234,"roll":-26.414312974785226},"location":"Right Ankle"},{"euler":{"heading":180.56299157061707,"pitch":-162.936252317373,"roll":52.02715192985358},"location":"Right Hip"},{"euler":{"heading":222.94292156374564,"pitch":-57.933075177376175,"roll":69.564842204878},"location":"Right Knee"},{"euler":{"heading":115.99789243845262,"pitch":-133.14478726087063,"roll":60.677192058617294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.596"} +{"sensors":[{"euler":{"heading":83.83841155149959,"pitch":122.01290598345436,"roll":14.450367019093505},"location":"Left Knee"},{"euler":{"heading":85.35685846538753,"pitch":83.67667396917282,"roll":2.651450181484559},"location":"Left Ankle"},{"euler":{"heading":113.00738277799086,"pitch":-34.24324105343061,"roll":-27.335381677306703},"location":"Right Ankle"},{"euler":{"heading":181.13169241355536,"pitch":-162.87387708563568,"roll":52.65568673686822},"location":"Right Hip"},{"euler":{"heading":223.3361294073711,"pitch":-65.07101765963856,"roll":69.0583579843902},"location":"Right Knee"},{"euler":{"heading":104.48560319460736,"pitch":-131.94280853478358,"roll":60.071972852755565},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.697"} +{"sensors":[{"euler":{"heading":81.46082039634963,"pitch":123.09286538510892,"roll":16.149080317184154},"location":"Left Knee"},{"euler":{"heading":113.58992261884879,"pitch":83.49025657225555,"roll":0.08630516333610272},"location":"Left Ankle"},{"euler":{"heading":107.61914450019177,"pitch":-33.35641694808755,"roll":-28.745593509576032},"location":"Right Ankle"},{"euler":{"heading":181.94977317219983,"pitch":-162.97398937707212,"roll":53.2651180631814},"location":"Right Hip"},{"euler":{"heading":224.833766466634,"pitch":-70.49516589367471,"roll":67.80877218595117},"location":"Right Knee"},{"euler":{"heading":94.63704287514662,"pitch":-131.27977768130523,"roll":59.764775567480015},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.798"} +{"sensors":[{"euler":{"heading":79.89598835671467,"pitch":123.50857884659803,"roll":17.37792228546574},"location":"Left Knee"},{"euler":{"heading":102.55593035696391,"pitch":83.36623091502999,"roll":-1.3848253529975076},"location":"Left Ankle"},{"euler":{"heading":127.96348005017259,"pitch":-31.508275253278796,"roll":-30.53353415861843},"location":"Right Ankle"},{"euler":{"heading":183.21104585497986,"pitch":-162.5703404393649,"roll":53.41985625686326},"location":"Right Hip"},{"euler":{"heading":227.4066398199706,"pitch":-74.60814930430723,"roll":65.67789496735605},"location":"Right Knee"},{"euler":{"heading":85.73583858763196,"pitch":-131.09554991317472,"roll":59.68204801073202},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.899"} +{"sensors":[{"euler":{"heading":78.8813895210432,"pitch":123.52647096193823,"roll":18.171380056919165},"location":"Left Knee"},{"euler":{"heading":92.96283732126751,"pitch":83.32335782352699,"roll":-2.4588428176977573},"location":"Left Ankle"},{"euler":{"heading":145.97338204515535,"pitch":-29.601197727950915,"roll":-31.99893074275659},"location":"Right Ankle"},{"euler":{"heading":184.73994126948187,"pitch":-161.6945563954284,"roll":52.87787063117693},"location":"Right Hip"},{"euler":{"heading":229.51597583797354,"pitch":-78.16608437387652,"roll":63.96635547062045},"location":"Right Knee"},{"euler":{"heading":78.13100472886876,"pitch":-131.71724492185726,"roll":59.85134320965882},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.0"} +{"sensors":[{"euler":{"heading":78.35575056893889,"pitch":123.28632386574441,"roll":18.58549205122725},"location":"Left Knee"},{"euler":{"heading":84.78530358914077,"pitch":83.34102204117428,"roll":-2.9942085359279815},"location":"Left Ankle"},{"euler":{"heading":137.03229384063982,"pitch":-29.43482795515582,"roll":-32.580287668480935},"location":"Right Ankle"},{"euler":{"heading":185.8471971425337,"pitch":-161.03760075588556,"roll":51.80883356805924},"location":"Right Hip"},{"euler":{"heading":230.01437825417622,"pitch":-82.19322593648887,"roll":63.9384699235584},"location":"Right Knee"},{"euler":{"heading":71.43040425598188,"pitch":-132.75177042967155,"roll":60.19120888869294},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.100"} +{"sensors":[{"euler":{"heading":78.488925512045,"pitch":122.61394147916997,"roll":18.695692846104524},"location":"Left Knee"},{"euler":{"heading":78.1067732302267,"pitch":83.79441983705685,"roll":-2.8885376823351834},"location":"Left Ankle"},{"euler":{"heading":131.01656445657585,"pitch":-30.60384515964024,"roll":-31.372258901632843},"location":"Right Ankle"},{"euler":{"heading":181.56872742828034,"pitch":-160.846340680297,"roll":50.671700211253324},"location":"Right Hip"},{"euler":{"heading":228.9629404287586,"pitch":-89.82390334284,"roll":65.50712293120256},"location":"Right Knee"},{"euler":{"heading":65.63736383038369,"pitch":-134.05159338670438,"roll":60.71583799982365},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.201"} +{"sensors":[{"euler":{"heading":79.1837829608405,"pitch":121.81504733125298,"roll":18.282373561494072},"location":"Left Knee"},{"euler":{"heading":72.55859590720402,"pitch":84.21497785335116,"roll":-2.274683914101665},"location":"Left Ankle"},{"euler":{"heading":147.97115801091826,"pitch":-32.205960643676214,"roll":-29.147533011469562},"location":"Right Ankle"},{"euler":{"heading":181.3181046854523,"pitch":-160.9867066122673,"roll":50.023280190128},"location":"Right Hip"},{"euler":{"heading":226.82289638588273,"pitch":-67.11651300855601,"roll":66.48141063808231},"location":"Right Knee"},{"euler":{"heading":60.704877447345325,"pitch":-135.84643404803396,"roll":61.306754199841286},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.302"} +{"sensors":[{"euler":{"heading":80.56540466475646,"pitch":121.02104259812769,"roll":17.097886205344665},"location":"Left Knee"},{"euler":{"heading":68.42773631648362,"pitch":84.58723006801604,"roll":-0.7722155226914984},"location":"Left Ankle"},{"euler":{"heading":142.54904220982644,"pitch":-33.34786457930859,"roll":-27.539029710322605},"location":"Right Ankle"},{"euler":{"heading":180.19254421690707,"pitch":-161.46303595104058,"roll":49.8397021711152},"location":"Right Hip"},{"euler":{"heading":224.28435674729448,"pitch":-46.97986170770041,"roll":67.43951957427407},"location":"Right Knee"},{"euler":{"heading":56.3968897026108,"pitch":-138.00554064323057,"roll":61.86982877985716},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.403"} +{"sensors":[{"euler":{"heading":83.44011419828082,"pitch":120.50018833831493,"roll":14.7818475848102},"location":"Left Knee"},{"euler":{"heading":65.92871268483526,"pitch":84.62225706121444,"roll":2.3737560295776516},"location":"Left Ankle"},{"euler":{"heading":136.8816379888438,"pitch":-34.29432812137773,"roll":-26.860126739290344},"location":"Right Ankle"},{"euler":{"heading":179.86703979521636,"pitch":-161.75423235593652,"roll":49.78698195400368},"location":"Right Hip"},{"euler":{"heading":222.50592107256503,"pitch":-26.05687553693037,"roll":68.46431761684667},"location":"Right Knee"},{"euler":{"heading":52.082200732349726,"pitch":-138.72373657890753,"roll":62.301595901871444},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.504"} +{"sensors":[{"euler":{"heading":86.86485277845274,"pitch":119.87516950448344,"roll":12.353662826329181},"location":"Left Knee"},{"euler":{"heading":64.19834141635174,"pitch":84.735031355093,"roll":5.773880426619886},"location":"Left Ankle"},{"euler":{"heading":131.40597418995944,"pitch":-35.10239530923996,"roll":-26.56786406536131},"location":"Right Ankle"},{"euler":{"heading":179.48658581569472,"pitch":-162.08505912034286,"roll":50.16453375860331},"location":"Right Hip"},{"euler":{"heading":221.41157896530854,"pitch":-40.69493798323734,"roll":69.12413585516201},"location":"Right Knee"},{"euler":{"heading":47.28023065911476,"pitch":-137.03261292101678,"roll":62.3151863116843},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.604"} +{"sensors":[{"euler":{"heading":88.64086750060747,"pitch":119.9501525540351,"roll":11.312046543696264},"location":"Left Knee"},{"euler":{"heading":61.297257274716564,"pitch":84.3490282195837,"roll":6.983992383957897},"location":"Left Ankle"},{"euler":{"heading":126.3153767709635,"pitch":-35.71090577831596,"roll":-26.46107765882518},"location":"Right Ankle"},{"euler":{"heading":179.62542723412525,"pitch":-162.2453032083086,"roll":50.754330382742985},"location":"Right Hip"},{"euler":{"heading":220.90792106877768,"pitch":-52.4566941849136,"roll":69.4929722696458},"location":"Right Knee"},{"euler":{"heading":78.48345759320328,"pitch":-135.0418516289151,"roll":61.73991768051587},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.705"} +{"sensors":[{"euler":{"heading":86.81428075054671,"pitch":121.0676372986316,"roll":12.280841889326638},"location":"Left Knee"},{"euler":{"heading":55.817531547244904,"pitch":83.53912539762533,"roll":5.479343145562107},"location":"Left Ankle"},{"euler":{"heading":121.40258909386715,"pitch":-35.896065200484365,"roll":-26.50871989294266},"location":"Right Ankle"},{"euler":{"heading":180.01913451071272,"pitch":-162.38327288747774,"roll":51.41014734446869},"location":"Right Hip"},{"euler":{"heading":220.83587896189994,"pitch":-61.80477476642224,"roll":69.59992504268122},"location":"Right Knee"},{"euler":{"heading":106.41636183388296,"pitch":-133.00016646602361,"roll":61.11592591246429},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.805"} +{"sensors":[{"euler":{"heading":83.19535267549205,"pitch":122.82337356876843,"roll":14.265257700393974},"location":"Left Knee"},{"euler":{"heading":85.11077839252042,"pitch":82.36021285786279,"roll":2.2064088310058962},"location":"Left Ankle"},{"euler":{"heading":116.36858018448044,"pitch":-35.56270868043593,"roll":-27.070347903648397},"location":"Right Ankle"},{"euler":{"heading":180.51097105964146,"pitch":-162.48869559872998,"roll":52.14413261002182},"location":"Right Hip"},{"euler":{"heading":221.10229106570995,"pitch":-69.18054728978002,"roll":69.29618253841309},"location":"Right Knee"},{"euler":{"heading":95.94347565049466,"pitch":-131.60639981942126,"roll":60.65433332121786},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.906"} +{"sensors":[{"euler":{"heading":80.65706740794285,"pitch":123.92228621189159,"roll":16.063731930354578},"location":"Left Knee"},{"euler":{"heading":111.61845055326839,"pitch":82.01794157207651,"roll":-0.6704820520946932},"location":"Left Ankle"},{"euler":{"heading":110.7504721660324,"pitch":-34.63768781239234,"roll":-28.41956311328356},"location":"Right Ankle"},{"euler":{"heading":181.1848739536773,"pitch":-162.72107603885698,"roll":52.879719349019645},"location":"Right Hip"},{"euler":{"heading":222.32331195913898,"pitch":-74.63124256080202,"roll":68.32906428457179},"location":"Right Knee"},{"euler":{"heading":86.8678780854452,"pitch":-130.68325983747914,"roll":60.38264998909608},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.7"} +{"sensors":[{"euler":{"heading":79.09136066714856,"pitch":124.26130759070243,"roll":17.39485873731912},"location":"Left Knee"},{"euler":{"heading":100.73160549794156,"pitch":81.97239741486887,"roll":-2.2096838468852242},"location":"Left Ankle"},{"euler":{"heading":131.01917494942916,"pitch":-32.892669031153105,"roll":-30.296356801955202},"location":"Right Ankle"},{"euler":{"heading":182.29138655830957,"pitch":-162.46146843497127,"roll":53.17924741411768},"location":"Right Hip"},{"euler":{"heading":225.11598076322508,"pitch":-78.49936830472181,"roll":66.3086578561146},"location":"Right Knee"},{"euler":{"heading":78.68734027690067,"pitch":-130.23368385373124,"roll":60.306884990186475},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.108"} +{"sensors":[{"euler":{"heading":78.03847460043372,"pitch":124.11642683163218,"roll":18.324122863587206},"location":"Left Knee"},{"euler":{"heading":91.3146949481474,"pitch":82.07515767338198,"roll":-3.269965462196702},"location":"Left Ankle"},{"euler":{"heading":148.48600745448624,"pitch":-31.247152128037797,"roll":-31.997971121759683},"location":"Right Ankle"},{"euler":{"heading":183.81224790247862,"pitch":-161.79032159147414,"roll":52.70507267270592},"location":"Right Hip"},{"euler":{"heading":227.76688268690256,"pitch":-81.81193147424963,"roll":64.29654207050315},"location":"Right Knee"},{"euler":{"heading":71.8686062492106,"pitch":-130.8103154683581,"roll":60.52619649116783},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.209"} +{"sensors":[{"euler":{"heading":77.40337714039035,"pitch":123.79228414846897,"roll":18.829210577228483},"location":"Left Knee"},{"euler":{"heading":83.39572545333267,"pitch":82.21139190604379,"roll":-3.6242189159770315},"location":"Left Ankle"},{"euler":{"heading":139.03740670903764,"pitch":-31.30993691523402,"roll":-32.39817400958371},"location":"Right Ankle"},{"euler":{"heading":184.90602311223074,"pitch":-161.23628943232674,"roll":51.734565405435326},"location":"Right Hip"},{"euler":{"heading":228.6464444182123,"pitch":-85.36198832682467,"roll":63.96063786345284},"location":"Right Knee"},{"euler":{"heading":65.86299562428955,"pitch":-132.0855339215223,"roll":60.873576842051044},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.310"} +{"sensors":[{"euler":{"heading":77.46303942635132,"pitch":123.25680573362207,"roll":18.877539519505635},"location":"Left Knee"},{"euler":{"heading":77.16240290799941,"pitch":82.51525271543942,"roll":-3.2242970243793283},"location":"Left Ankle"},{"euler":{"heading":133.1399160381339,"pitch":-32.26644322371062,"roll":-30.970856608625343},"location":"Right Ankle"},{"euler":{"heading":184.83417080100767,"pitch":-161.15016048909408,"roll":50.80485886489179},"location":"Right Hip"},{"euler":{"heading":227.38179997639108,"pitch":-92.20078949414221,"roll":65.54582407710755},"location":"Right Knee"},{"euler":{"heading":60.457946061860596,"pitch":-133.57698052937008,"roll":61.31746915784594},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.410"} +{"sensors":[{"euler":{"heading":78.06673548371619,"pitch":122.58737516025987,"roll":18.464785567555072},"location":"Left Knee"},{"euler":{"heading":72.02116261719947,"pitch":82.83872744389548,"roll":-2.3393673219413955},"location":"Left Ankle"},{"euler":{"heading":129.3071744343205,"pitch":-33.32729890133955,"roll":-28.68627094776281},"location":"Right Ankle"},{"euler":{"heading":183.6882537209069,"pitch":-161.51014444018466,"roll":50.361872978402616},"location":"Right Hip"},{"euler":{"heading":224.793619978752,"pitch":-70.118210544728,"roll":66.6224916693968},"location":"Right Knee"},{"euler":{"heading":55.88090145567454,"pitch":-135.58803247643306,"roll":61.86072224206134},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.511"} +{"sensors":[{"euler":{"heading":79.43506193534456,"pitch":121.89738764423387,"roll":17.374557010799567},"location":"Left Knee"},{"euler":{"heading":68.15654635547952,"pitch":83.11110469950594,"roll":-0.617930589747256},"location":"Left Ankle"},{"euler":{"heading":125.63895699088846,"pitch":-34.0570690112056,"roll":-27.03014385298653},"location":"Right Ankle"},{"euler":{"heading":182.1131783488162,"pitch":-162.1028799961662,"roll":50.24443568056236},"location":"Right Hip"},{"euler":{"heading":222.16425798087678,"pitch":-50.043889490255204,"roll":67.6477425024571},"location":"Right Knee"},{"euler":{"heading":52.07406131010708,"pitch":-138.11047922878976,"roll":62.41215001785521},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.612"} +{"sensors":[{"euler":{"heading":82.2603057418101,"pitch":121.4826488798105,"roll":15.093351309719612},"location":"Left Knee"},{"euler":{"heading":65.59714171993157,"pitch":83.08749422955535,"roll":2.49386246922747},"location":"Left Ankle"},{"euler":{"heading":121.68756129179961,"pitch":-34.45761211008504,"roll":-26.26462946768788},"location":"Right Ankle"},{"euler":{"heading":181.3643605139346,"pitch":-162.40509199654957,"roll":50.31999211250613},"location":"Right Hip"},{"euler":{"heading":220.0165821827891,"pitch":-29.408250541229684,"roll":68.7829682522114},"location":"Right Knee"},{"euler":{"heading":47.954155179096375,"pitch":-138.7244313059108,"roll":62.808435016069694},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.712"} +{"sensors":[{"euler":{"heading":85.45927516762909,"pitch":121.17188399182946,"roll":12.802766178747651},"location":"Left Knee"},{"euler":{"heading":63.36867754793841,"pitch":82.71624480659982,"roll":5.344476222304722},"location":"Left Ankle"},{"euler":{"heading":117.77505516261965,"pitch":-34.611850899076536,"roll":-25.94441652091909},"location":"Right Ankle"},{"euler":{"heading":180.46542446254116,"pitch":-162.8020827968946,"roll":50.81299290125551},"location":"Right Hip"},{"euler":{"heading":218.2461739645102,"pitch":-44.42367548710672,"roll":69.61717142699027},"location":"Right Knee"},{"euler":{"heading":79.06498966118673,"pitch":-136.7957381753197,"roll":62.69009151446273},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.813"} +{"sensors":[{"euler":{"heading":86.40709765086619,"pitch":121.54844559264652,"roll":12.178739560872886},"location":"Left Knee"},{"euler":{"heading":59.644309793144565,"pitch":82.07587032593983,"roll":5.791278600074251},"location":"Left Ankle"},{"euler":{"heading":114.07879964635768,"pitch":-34.67566580916888,"roll":-25.887474868827184},"location":"Right Ankle"},{"euler":{"heading":180.19388201628706,"pitch":-162.99062451720516,"roll":51.48169361112996},"location":"Right Hip"},{"euler":{"heading":217.1403065680592,"pitch":-56.19380793839605,"roll":70.10545428429124},"location":"Right Knee"},{"euler":{"heading":106.78349069506805,"pitch":-134.80366435778774,"roll":62.033582363016464},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.914"} +{"sensors":[{"euler":{"heading":84.17888788577957,"pitch":122.76860103338187,"roll":13.392115604785598},"location":"Left Knee"},{"euler":{"heading":89.49862881383011,"pitch":81.28078329334585,"roll":3.662150740066826},"location":"Left Ankle"},{"euler":{"heading":110.34591968172191,"pitch":-34.53934922825199,"roll":-26.123727381944466},"location":"Right Ankle"},{"euler":{"heading":180.23699381465835,"pitch":-163.15406206548465,"roll":52.22727425001696},"location":"Right Hip"},{"euler":{"heading":216.7012759112533,"pitch":-65.24942714455645,"roll":70.27615885586212},"location":"Right Knee"},{"euler":{"heading":131.78639162556124,"pitch":-132.92954792200896,"roll":61.39897412671482},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.15"} +{"sensors":[{"euler":{"heading":80.77974909720162,"pitch":124.46049093004369,"roll":15.246654044307038},"location":"Left Knee"},{"euler":{"heading":115.32376593244709,"pitch":80.39020496401126,"roll":0.45218566606014354},"location":"Left Ankle"},{"euler":{"heading":106.35507771354972,"pitch":-34.10416430542679,"roll":-26.817604643750023},"location":"Right Ankle"},{"euler":{"heading":180.4695444331925,"pitch":-163.5324058589362,"roll":53.09204682501527},"location":"Right Hip"},{"euler":{"heading":217.16239832012798,"pitch":-71.9432344301008,"roll":69.8422929702759},"location":"Right Knee"},{"euler":{"heading":118.79525246300511,"pitch":-131.88034312980807,"roll":60.94657671404334},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.116"} +{"sensors":[{"euler":{"heading":78.90177418748146,"pitch":125.20819183703932,"roll":16.746988639876335},"location":"Left Knee"},{"euler":{"heading":139.64763933920239,"pitch":80.68243446761014,"roll":-1.6180329005458707},"location":"Left Ankle"},{"euler":{"heading":101.75706994219475,"pitch":-33.406247874884116,"roll":-28.11084417937502},"location":"Right Ankle"},{"euler":{"heading":181.02258998987327,"pitch":-163.80416527304257,"roll":53.90159214251374},"location":"Right Hip"},{"euler":{"heading":218.99615848811519,"pitch":-76.75516098709073,"roll":68.52056367324832},"location":"Right Knee"},{"euler":{"heading":107.36572721670461,"pitch":-131.27355881682726,"roll":60.664419042639004},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.217"} +{"sensors":[{"euler":{"heading":77.81159676873332,"pitch":125.16237265333538,"roll":17.8660397758887},"location":"Left Knee"},{"euler":{"heading":126.31412540528214,"pitch":81.01419102084913,"roll":-2.7249796104912836},"location":"Left Ankle"},{"euler":{"heading":122.64386294797528,"pitch":-31.715623087395702,"roll":-29.86225976143752},"location":"Right Ankle"},{"euler":{"heading":182.28908099088596,"pitch":-163.23624874573832,"roll":53.95518292826237},"location":"Right Hip"},{"euler":{"heading":221.78404263930366,"pitch":-80.35464488838167,"roll":66.39975730592349},"location":"Right Knee"},{"euler":{"heading":97.48540449503416,"pitch":-131.30245293514454,"roll":60.75422713837511},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.318"} +{"sensors":[{"euler":{"heading":77.24918709186,"pitch":124.73988538800185,"roll":18.566935798299834},"location":"Left Knee"},{"euler":{"heading":114.77646286475392,"pitch":81.39402191876422,"roll":-3.352481649442155},"location":"Left Ankle"},{"euler":{"heading":114.71072665317774,"pitch":-30.56906077865613,"roll":-31.21978378529377},"location":"Right Ankle"},{"euler":{"heading":183.64767289179738,"pitch":-162.4751238711645,"roll":53.265914635436125},"location":"Right Hip"},{"euler":{"heading":223.7556383753733,"pitch":-83.56918039954351,"roll":65.18478157533114},"location":"Right Knee"},{"euler":{"heading":88.88061404553075,"pitch":-132.2409576416301,"roll":61.022554424537596},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.418"} +{"sensors":[{"euler":{"heading":77.286768382674,"pitch":124.02214684920168,"roll":18.872742218469853},"location":"Left Knee"},{"euler":{"heading":104.86131657827853,"pitch":81.96711972688782,"roll":-3.4484834844979395},"location":"Left Ankle"},{"euler":{"heading":109.61465398785997,"pitch":-31.193404700790516,"roll":-31.222805406764394},"location":"Right Ankle"},{"euler":{"heading":184.30165560261767,"pitch":-162.05261148404804,"roll":52.15807317189251},"location":"Right Hip"},{"euler":{"heading":224.04257453783597,"pitch":-87.96851235958917,"roll":65.73505341779803},"location":"Right Knee"},{"euler":{"heading":81.31130264097767,"pitch":-133.64186187746708,"roll":61.414048982083834},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.519"} +{"sensors":[{"euler":{"heading":77.9268415444066,"pitch":123.18868216428152,"roll":18.67296799662287},"location":"Left Knee"},{"euler":{"heading":96.43768492045068,"pitch":82.53290775419904,"roll":-2.978635136048146},"location":"Left Ankle"},{"euler":{"heading":107.12193858907398,"pitch":-32.292814230711464,"roll":-29.463024866087956},"location":"Right Ankle"},{"euler":{"heading":183.9527400423559,"pitch":-162.07235033564325,"roll":51.26726585470326},"location":"Right Hip"},{"euler":{"heading":222.42581708405237,"pitch":-63.721661123630255,"roll":67.15529807601823},"location":"Right Knee"},{"euler":{"heading":74.70517237687991,"pitch":-135.57767568972037,"roll":61.87889408387545},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.620"} +{"sensors":[{"euler":{"heading":78.89665738996594,"pitch":122.33856394785337,"roll":18.05567119696058},"location":"Left Knee"},{"euler":{"heading":89.57516642840561,"pitch":83.11711697877915,"roll":-1.8120216224433312},"location":"Left Ankle"},{"euler":{"heading":106.32849473016658,"pitch":-33.39478280764032,"roll":-27.266722379479162},"location":"Right Ankle"},{"euler":{"heading":182.68246603812034,"pitch":-162.48386530207893,"roll":50.82803926923294},"location":"Right Hip"},{"euler":{"heading":219.82073537564713,"pitch":-45.02449501126723,"roll":67.7022682684164},"location":"Right Knee"},{"euler":{"heading":68.98465513919193,"pitch":-137.91990812074832,"roll":62.397254675487915},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.720"} +{"sensors":[{"euler":{"heading":80.86324165096934,"pitch":121.44220755306804,"roll":16.500104077264524},"location":"Left Knee"},{"euler":{"heading":84.49889978556504,"pitch":83.27415528090124,"roll":0.7254305398010021},"location":"Left Ankle"},{"euler":{"heading":104.78314525714993,"pitch":-33.97405452687629,"roll":-26.171300141531248},"location":"Right Ankle"},{"euler":{"heading":181.6954694343083,"pitch":-162.89172877187104,"roll":50.60773534230965},"location":"Right Hip"},{"euler":{"heading":217.48866183808244,"pitch":-26.972045510140507,"roll":68.58204144157477},"location":"Right Knee"},{"euler":{"heading":63.87993962527274,"pitch":-139.7154173086735,"roll":62.963779207939126},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.821"} +{"sensors":[{"euler":{"heading":84.12691748587241,"pitch":120.66048679776124,"roll":14.081343669538072},"location":"Left Knee"},{"euler":{"heading":81.40525980700855,"pitch":83.65923975281112,"roll":4.596637485820902},"location":"Left Ankle"},{"euler":{"heading":102.81108073143493,"pitch":-34.42039907418866,"roll":-25.566670127378124},"location":"Right Ankle"},{"euler":{"heading":180.97592249087748,"pitch":-163.24005589468393,"roll":50.778211808078694},"location":"Right Hip"},{"euler":{"heading":215.77729565427418,"pitch":-7.906090959126455,"roll":69.4425872974173},"location":"Right Knee"},{"euler":{"heading":57.960695662745465,"pitch":-138.56262557780616,"roll":63.129901287145216},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.921"} +{"sensors":[{"euler":{"heading":87.08922573728518,"pitch":120.40068811798513,"roll":12.204459302584265},"location":"Left Knee"},{"euler":{"heading":77.7772338263077,"pitch":83.10581577753001,"roll":7.105723737238812},"location":"Left Ankle"},{"euler":{"heading":100.84247265829144,"pitch":-34.75960916676979,"roll":-25.28500311464031},"location":"Right Ankle"},{"euler":{"heading":180.64083024178973,"pitch":-163.40355030521556,"roll":51.287890627270826},"location":"Right Hip"},{"euler":{"heading":214.61206608884677,"pitch":-24.71548186321381,"roll":70.09207856767557},"location":"Right Knee"},{"euler":{"heading":88.10212609647093,"pitch":-136.41886302002555,"roll":62.6544111584307},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.22"} +{"sensors":[{"euler":{"heading":86.92405316355666,"pitch":121.00436930618662,"roll":12.28401337232584},"location":"Left Knee"},{"euler":{"heading":71.96826044367693,"pitch":82.31398419977701,"roll":6.720151363514931},"location":"Left Ankle"},{"euler":{"heading":98.73322539246229,"pitch":-34.85239825009281,"roll":-25.337752803176283},"location":"Right Ankle"},{"euler":{"heading":180.88299721761078,"pitch":-163.40069527469402,"roll":51.87785156454375},"location":"Right Hip"},{"euler":{"heading":214.0133594799621,"pitch":-38.212683676892425,"roll":70.46412071090802},"location":"Right Knee"},{"euler":{"heading":115.07316348682383,"pitch":-134.251976718023,"roll":61.91397004258763},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.123"} +{"sensors":[{"euler":{"heading":83.60039784720101,"pitch":122.57268237556796,"roll":13.999362035093256},"location":"Left Knee"},{"euler":{"heading":100.18393439930924,"pitch":81.30133577979932,"roll":3.8731362271634375},"location":"Left Ankle"},{"euler":{"heading":96.40990285321605,"pitch":-34.69840842508353,"roll":-25.728977522858656},"location":"Right Ankle"},{"euler":{"heading":181.1071974958497,"pitch":-163.51687574722462,"roll":52.54006640808937},"location":"Right Hip"},{"euler":{"heading":213.8932735319659,"pitch":-48.991415309203184,"roll":70.55520863981722},"location":"Right Knee"},{"euler":{"heading":139.39084713814145,"pitch":-132.5392790462207,"roll":61.31632303832887},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.224"} +{"sensors":[{"euler":{"heading":80.0591080624809,"pitch":124.30916413801117,"roll":15.936925831583931},"location":"Left Knee"},{"euler":{"heading":124.94054095937832,"pitch":80.77120220181938,"roll":0.6920726044470937},"location":"Left Ankle"},{"euler":{"heading":93.60016256789444,"pitch":-34.18481758257518,"roll":-26.79357977057279},"location":"Right Ankle"},{"euler":{"heading":181.47772774626472,"pitch":-163.79643817250215,"roll":53.354809767280436},"location":"Right Hip"},{"euler":{"heading":214.6351961787693,"pitch":-57.26727377828287,"roll":70.01843777583551},"location":"Right Knee"},{"euler":{"heading":125.68301242432732,"pitch":-131.59160114159863,"roll":60.890940734495985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.325"} +{"sensors":[{"euler":{"heading":77.99069725623282,"pitch":125.04699772421006,"roll":17.41198324842554},"location":"Left Knee"},{"euler":{"heading":112.4714868634405,"pitch":80.73783198163744,"roll":-1.0958846559976156},"location":"Left Ankle"},{"euler":{"heading":89.696396311105,"pitch":-33.453835824317665,"roll":-28.23922179351551},"location":"Right Ankle"},{"euler":{"heading":182.17995497163824,"pitch":-163.82929435525193,"roll":53.95057879055239},"location":"Right Hip"},{"euler":{"heading":216.93417656089235,"pitch":-63.38429640045459,"roll":68.53534399825196},"location":"Right Knee"},{"euler":{"heading":113.4709611818946,"pitch":-130.99494102743876,"roll":60.664346661046395},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.425"} +{"sensors":[{"euler":{"heading":76.70412753060954,"pitch":125.18604795178905,"roll":18.395784923582987},"location":"Left Knee"},{"euler":{"heading":101.77433817709645,"pitch":80.78279878347371,"roll":-2.3362961903978543},"location":"Left Ankle"},{"euler":{"heading":111.5455066799945,"pitch":-31.4959522418859,"roll":-30.18404961416396},"location":"Right Ankle"},{"euler":{"heading":183.31820947447443,"pitch":-163.30886491972674,"roll":53.92427091149715},"location":"Right Hip"},{"euler":{"heading":219.67200890480314,"pitch":-68.42086676040913,"roll":66.47555959842677},"location":"Right Knee"},{"euler":{"heading":102.72386506370513,"pitch":-131.1079469246949,"roll":60.73541199494176},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.526"} +{"sensors":[{"euler":{"heading":75.97746477754858,"pitch":124.92369315661014,"roll":19.043706431224688},"location":"Left Knee"},{"euler":{"heading":92.59690435938681,"pitch":80.94826890512634,"roll":-3.0589165713580693},"location":"Left Ankle"},{"euler":{"heading":104.93470601199506,"pitch":-30.502607017697308,"roll":-31.353144652747567},"location":"Right Ankle"},{"euler":{"heading":184.392638527027,"pitch":-162.59047842775408,"roll":53.23809382034744},"location":"Right Hip"},{"euler":{"heading":221.53605801432283,"pitch":-72.94128008436822,"roll":65.31550363858409},"location":"Right Knee"},{"euler":{"heading":93.37022855733463,"pitch":-132.04715223222541,"roll":60.99312079544758},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.627"} +{"sensors":[{"euler":{"heading":75.92971829979372,"pitch":124.36257384094914,"roll":19.289335788102218},"location":"Left Knee"},{"euler":{"heading":84.86846392344813,"pitch":81.3409420146137,"roll":-3.184274914222262},"location":"Left Ankle"},{"euler":{"heading":101.40998541079556,"pitch":-31.264846315927578,"roll":-30.98033018747281},"location":"Right Ankle"},{"euler":{"heading":184.8971246743243,"pitch":-162.17518058497868,"roll":52.13928443831269},"location":"Right Hip"},{"euler":{"heading":221.34495221289055,"pitch":-79.35965207593141,"roll":66.17145327472568},"location":"Right Knee"},{"euler":{"heading":85.08945570160117,"pitch":-133.54243700900287,"roll":61.312558715902824},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.728"} +{"sensors":[{"euler":{"heading":76.51174646981434,"pitch":123.61381645685422,"roll":19.066652209292},"location":"Left Knee"},{"euler":{"heading":78.39411753110332,"pitch":81.79434781315234,"roll":-2.797097422800036},"location":"Left Ankle"},{"euler":{"heading":100.300236869716,"pitch":-32.575861684334825,"roll":-29.08229716872553},"location":"Right Ankle"},{"euler":{"heading":184.21366220689188,"pitch":-162.29516252648082,"roll":51.38785599448142},"location":"Right Hip"},{"euler":{"heading":219.5229569916015,"pitch":-57.079936868338265,"roll":67.22305794725311},"location":"Right Knee"},{"euler":{"heading":77.98051013144106,"pitch":-135.5381933081026,"roll":61.75630284431254},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.828"} +{"sensors":[{"euler":{"heading":77.70432182283291,"pitch":122.75868481116879,"roll":18.2849869883628},"location":"Left Knee"},{"euler":{"heading":73.22970577799299,"pitch":82.2586630318371,"roll":-1.7361376805200321},"location":"Left Ankle"},{"euler":{"heading":99.8827131827444,"pitch":-33.549525515901344,"roll":-27.230317451852976},"location":"Right Ankle"},{"euler":{"heading":182.7985459862027,"pitch":-162.75314627383275,"roll":51.10532039503328},"location":"Right Hip"},{"euler":{"heading":217.02066129244133,"pitch":-38.57819318150444,"roll":67.8195021525278},"location":"Right Knee"},{"euler":{"heading":71.96370911829696,"pitch":-138.07187397729234,"roll":62.218172559881296},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.930"} +{"sensors":[{"euler":{"heading":80.05888964054962,"pitch":122.12656633005192,"roll":16.36898828952652},"location":"Left Knee"},{"euler":{"heading":69.5317352001937,"pitch":82.1265467286534,"roll":0.8062260875319709},"location":"Left Ankle"},{"euler":{"heading":98.73819186446995,"pitch":-34.288322964311206,"roll":-26.36978570666768},"location":"Right Ankle"},{"euler":{"heading":182.19369138758245,"pitch":-162.9653316464495,"roll":50.894788355529954},"location":"Right Hip"},{"euler":{"heading":215.11859516319723,"pitch":-19.589123863353997,"roll":68.66255193727503},"location":"Right Knee"},{"euler":{"heading":66.29858820646727,"pitch":-139.4459365795631,"roll":62.62135530389317},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.30"} +{"sensors":[{"euler":{"heading":83.42175067649467,"pitch":121.22640969704672,"roll":13.988339460573869},"location":"Left Knee"},{"euler":{"heading":67.11606168017433,"pitch":81.98264205578805,"roll":4.375603478778774},"location":"Left Ankle"},{"euler":{"heading":97.23937267802296,"pitch":-34.815740667880085,"roll":-25.870307136000914},"location":"Right Ankle"},{"euler":{"heading":181.6368222488242,"pitch":-163.20004848180454,"roll":51.14280951997696},"location":"Right Hip"},{"euler":{"heading":213.68173564687748,"pitch":-0.41146147701859803,"roll":69.30254674354752},"location":"Right Knee"},{"euler":{"heading":59.86247938582055,"pitch":-138.08884292160678,"roll":62.552969773503854},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.131"} +{"sensors":[{"euler":{"heading":85.8295756088452,"pitch":121.15376872734204,"roll":12.677005514516482},"location":"Left Knee"},{"euler":{"heading":64.21070551215689,"pitch":81.62812785020924,"roll":6.044293130900897},"location":"Left Ankle"},{"euler":{"heading":95.82168541022067,"pitch":-35.321666601092076,"roll":-25.683276422400823},"location":"Right Ankle"},{"euler":{"heading":181.66689002394176,"pitch":-163.2425436336241,"roll":51.709778567979264},"location":"Right Hip"},{"euler":{"heading":212.92606208218976,"pitch":-17.42031532931674,"roll":69.75354206919278},"location":"Right Knee"},{"euler":{"heading":89.73873144723851,"pitch":-136.3299586294461,"roll":61.91642279615347},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.232"} +{"sensors":[{"euler":{"heading":84.54036804796068,"pitch":122.02589185460783,"roll":13.396804963064834},"location":"Left Knee"},{"euler":{"heading":58.964634960941204,"pitch":81.09656506518832,"roll":4.958613817810807},"location":"Left Ankle"},{"euler":{"heading":94.1395168691986,"pitch":-35.695749940982864,"roll":-25.733698780160744},"location":"Right Ankle"},{"euler":{"heading":182.03770102154758,"pitch":-163.3057892702617,"roll":52.401300711181335},"location":"Right Hip"},{"euler":{"heading":212.89595587397076,"pitch":-31.147033796385067,"roll":69.94068786227349},"location":"Right Knee"},{"euler":{"heading":116.67110830251465,"pitch":-134.44696276650149,"roll":61.20603051653813},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.332"} +{"sensors":[{"euler":{"heading":81.10508124316462,"pitch":123.53580266914706,"roll":15.338374466758351},"location":"Left Knee"},{"euler":{"heading":87.98067146484709,"pitch":80.36190855866948,"roll":1.6315024360297268},"location":"Left Ankle"},{"euler":{"heading":92.08806518227874,"pitch":-35.732424946884585,"roll":-26.26657890214467},"location":"Right Ankle"},{"euler":{"heading":182.50268091939282,"pitch":-163.51271034323554,"roll":53.129920640063204},"location":"Right Hip"},{"euler":{"heading":213.4251102865737,"pitch":-42.18858041674656,"roll":69.72161907604615},"location":"Right Knee"},{"euler":{"heading":105.22899747226319,"pitch":-133.24601648985134,"roll":60.66042746488432},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.435"} +{"sensors":[{"euler":{"heading":78.78832311884817,"pitch":124.35722240223235,"roll":17.054537020082517},"location":"Left Knee"},{"euler":{"heading":114.63885431836238,"pitch":80.38196770280254,"roll":-0.7253978075732459},"location":"Left Ankle"},{"euler":{"heading":89.38550866405086,"pitch":-35.54043245219613,"roll":-27.4961710119302},"location":"Right Ankle"},{"euler":{"heading":183.26491282745351,"pitch":-163.76768930891197,"roll":53.84192857605689},"location":"Right Hip"},{"euler":{"heading":215.12009925791634,"pitch":-50.7197223750719,"roll":68.78695716844153},"location":"Right Knee"},{"euler":{"heading":95.43734772503687,"pitch":-132.5026648408662,"roll":60.33813471839589},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.536"} +{"sensors":[{"euler":{"heading":77.47824080696334,"pitch":124.47775016200913,"roll":18.230333318074265},"location":"Left Knee"},{"euler":{"heading":103.56871888652614,"pitch":80.70002093252229,"roll":-2.1403580268159215},"location":"Left Ankle"},{"euler":{"heading":111.83445779764578,"pitch":-33.76138920697652,"roll":-29.409053910737182},"location":"Right Ankle"},{"euler":{"heading":184.6071715447082,"pitch":-163.3159203780208,"roll":53.9389857184512},"location":"Right Hip"},{"euler":{"heading":218.0518393321247,"pitch":-57.029000137564715,"roll":66.92076145159739},"location":"Right Knee"},{"euler":{"heading":86.50611295253319,"pitch":-132.10864835677958,"roll":60.24807124655631},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.637"} +{"sensors":[{"euler":{"heading":76.63041672626701,"pitch":124.20497514580822,"roll":19.01979998626684},"location":"Left Knee"},{"euler":{"heading":94.04309699787353,"pitch":81.06751883927006,"roll":-3.0638222241343294},"location":"Left Ankle"},{"euler":{"heading":131.4197620178812,"pitch":-31.954000286278866,"roll":-31.036898519663467},"location":"Right Ankle"},{"euler":{"heading":186.08395439023738,"pitch":-162.45932834021872,"roll":53.36383714660608},"location":"Right Hip"},{"euler":{"heading":220.49665539891222,"pitch":-62.55735012380825,"roll":65.17868530643764},"location":"Right Knee"},{"euler":{"heading":78.83050165727987,"pitch":-132.66653352110163,"roll":60.39826412190068},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.738"} +{"sensors":[{"euler":{"heading":76.3173750536403,"pitch":123.74697763122741,"roll":19.37406998764016},"location":"Left Knee"},{"euler":{"heading":86.05128729808618,"pitch":81.44826695534306,"roll":-3.3511900017208966},"location":"Left Ankle"},{"euler":{"heading":123.99653581609309,"pitch":-32.00235025765098,"roll":-31.42070866769712},"location":"Right Ankle"},{"euler":{"heading":186.93180895121367,"pitch":-161.89464550619687,"roll":52.346203431945476},"location":"Right Hip"},{"euler":{"heading":221.22198985902102,"pitch":-68.28911511142742,"roll":65.29831677579388},"location":"Right Knee"},{"euler":{"heading":71.89745149155189,"pitch":-135.39363016899148,"roll":60.63343770971061},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.840"} +{"sensors":[{"euler":{"heading":76.62313754827628,"pitch":123.13477986810467,"roll":19.267912988876144},"location":"Left Knee"},{"euler":{"heading":79.21490856827756,"pitch":81.83469025980875,"roll":-3.184821001548807},"location":"Left Ankle"},{"euler":{"heading":119.92813223448378,"pitch":-33.10211523188588,"roll":-30.04113780092741},"location":"Right Ankle"},{"euler":{"heading":186.7948780560923,"pitch":-161.7301809555772,"roll":51.424083088750926},"location":"Right Hip"},{"euler":{"heading":220.01854087311892,"pitch":-43.82895360028468,"roll":66.99973509821449},"location":"Right Knee"},{"euler":{"heading":65.79520634239671,"pitch":-136.76676715209234,"roll":60.957593938739556},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.940"} +{"sensors":[{"euler":{"heading":77.51082379344865,"pitch":122.50255188129421,"roll":18.60987168998853},"location":"Left Knee"},{"euler":{"heading":73.5746677114498,"pitch":82.13247123382789,"roll":-2.4913389013939264},"location":"Left Ankle"},{"euler":{"heading":138.2228190110354,"pitch":-34.38565370869729,"roll":-27.98077402083467},"location":"Right Ankle"},{"euler":{"heading":185.77789025048307,"pitch":-161.98841286001948,"roll":51.000424779875836},"location":"Right Hip"},{"euler":{"heading":217.78543678580704,"pitch":-26.396058240256213,"roll":67.52476158839303},"location":"Right Knee"},{"euler":{"heading":60.64068570815704,"pitch":-138.74009043688312,"roll":61.3243345448656},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.41"} +{"sensors":[{"euler":{"heading":79.12224141410378,"pitch":121.7460466931648,"roll":17.286384520989678},"location":"Left Knee"},{"euler":{"heading":69.39220094030482,"pitch":82.4067241104451,"roll":-0.8234550112545338},"location":"Left Ankle"},{"euler":{"heading":133.56303710993186,"pitch":-35.509588337827566,"roll":-26.563946618751203},"location":"Right Ankle"},{"euler":{"heading":184.53135122543478,"pitch":-162.35207157401754,"roll":50.75663230188825},"location":"Right Hip"},{"euler":{"heading":215.71314310722636,"pitch":-10.07520241623059,"roll":68.24103542955373},"location":"Right Knee"},{"euler":{"heading":56.26411713734134,"pitch":-140.4910813931948,"roll":61.766901090379044},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.141"} +{"sensors":[{"euler":{"heading":82.3537672726934,"pitch":121.17144202384833,"roll":14.82649606889071},"location":"Left Knee"},{"euler":{"heading":67.13423084627433,"pitch":82.55980169940058,"roll":2.59639048987092},"location":"Left Ankle"},{"euler":{"heading":128.65673339893866,"pitch":-36.17737950404481,"roll":-25.963801956876082},"location":"Right Ankle"},{"euler":{"heading":183.9782161028913,"pitch":-162.5481144166158,"roll":50.72471907169943},"location":"Right Hip"},{"euler":{"heading":214.01682879650372,"pitch":6.807317825392468,"roll":69.05443188659837},"location":"Right Knee"},{"euler":{"heading":51.025205423607204,"pitch":-139.59822325387535,"roll":61.85896098134114},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.242"} +{"sensors":[{"euler":{"heading":85.55589054542406,"pitch":120.8105478214635,"roll":12.64384646200164},"location":"Left Knee"},{"euler":{"heading":65.0458077616469,"pitch":82.06632152946052,"roll":5.6992514408838275},"location":"Left Ankle"},{"euler":{"heading":124.04731005904479,"pitch":-36.709641553640324,"roll":-25.629921761188474},"location":"Right Ankle"},{"euler":{"heading":183.46789449260217,"pitch":-162.7120529749542,"roll":51.170997164529496},"location":"Right Hip"},{"euler":{"heading":212.77139591685335,"pitch":23.957836042853224,"roll":69.63023869793852},"location":"Right Knee"},{"euler":{"heading":81.66643488124649,"pitch":-137.5821509284878,"roll":61.385564883207024},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.343"} +{"sensors":[{"euler":{"heading":86.43780149088165,"pitch":121.14199303931716,"roll":12.191961815801477},"location":"Left Knee"},{"euler":{"heading":61.37247698548221,"pitch":81.40343937651447,"roll":5.941826296795445},"location":"Left Ankle"},{"euler":{"heading":119.79882905314031,"pitch":-37.22617739827629,"roll":-25.679429585069627},"location":"Right Ankle"},{"euler":{"heading":183.54610504334198,"pitch":-162.74709767745878,"roll":51.75389744807655},"location":"Right Hip"},{"euler":{"heading":212.344256325168,"pitch":5.137052438567903,"roll":69.99221482814467},"location":"Right Knee"},{"euler":{"heading":109.15604139312184,"pitch":-135.60518583563902,"roll":60.59075839488632},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.444"} +{"sensors":[{"euler":{"heading":83.7877713417935,"pitch":122.39654373538545,"roll":13.610265634221332},"location":"Left Knee"},{"euler":{"heading":91.222729286934,"pitch":80.50059543886302,"roll":3.628893667115901},"location":"Left Ankle"},{"euler":{"heading":115.51269614782628,"pitch":-37.472309658448665,"roll":-25.955236626562666},"location":"Right Ankle"},{"euler":{"heading":183.73524453900777,"pitch":-162.92863790971293,"roll":52.4035077032689},"location":"Right Hip"},{"euler":{"heading":212.4223306926512,"pitch":-10.332902805288889,"roll":70.0929933453302},"location":"Right Knee"},{"euler":{"heading":134.04043725380967,"pitch":-133.7634172520751,"roll":59.98793255539769},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.544"} +{"sensors":[{"euler":{"heading":80.36524420761415,"pitch":124.04438936184691,"roll":15.555489070799199},"location":"Left Knee"},{"euler":{"heading":116.76295635824061,"pitch":79.73178589497671,"roll":0.2035043004043109},"location":"Left Ankle"},{"euler":{"heading":110.94267653304365,"pitch":-37.2625786926038,"roll":-26.7534629639064},"location":"Right Ankle"},{"euler":{"heading":184.02422008510698,"pitch":-163.26077411874164,"roll":53.13190693294201},"location":"Right Hip"},{"euler":{"heading":213.24884762338607,"pitch":-22.81836252476,"roll":69.70869401079719},"location":"Right Knee"},{"euler":{"heading":120.8926435284287,"pitch":-132.7933255268676,"roll":59.60788929985792},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.645"} +{"sensors":[{"euler":{"heading":78.29746978685274,"pitch":124.83370042566222,"roll":17.09369016371928},"location":"Left Knee"},{"euler":{"heading":140.91166072241657,"pitch":80.00860730547905,"roll":-1.9730961296361202},"location":"Left Ankle"},{"euler":{"heading":105.4984088797393,"pitch":-36.473820823343424,"roll":-28.240616667515763},"location":"Right Ankle"},{"euler":{"heading":184.6592980765963,"pitch":-163.47219670686746,"roll":53.749966239647804},"location":"Right Hip"},{"euler":{"heading":215.21146286104747,"pitch":-32.849026272284,"roll":68.60032460971748},"location":"Right Knee"},{"euler":{"heading":109.22837917558583,"pitch":-132.18274297418083,"roll":59.334600369872135},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.745"} +{"sensors":[{"euler":{"heading":77.16147280816746,"pitch":124.862830383096,"roll":18.159321147347352},"location":"Left Knee"},{"euler":{"heading":127.32674465017492,"pitch":80.27649657493114,"roll":-3.1507865166725084},"location":"Left Ankle"},{"euler":{"heading":125.79856799176537,"pitch":-34.34518874100908,"roll":-30.32905500076419},"location":"Right Ankle"},{"euler":{"heading":185.92461826893668,"pitch":-162.79997703618074,"roll":53.60621961568303},"location":"Right Hip"},{"euler":{"heading":218.05906657494273,"pitch":-40.8641236450556,"roll":66.58404214874574},"location":"Right Knee"},{"euler":{"heading":98.99304125802725,"pitch":-131.97071867676274,"roll":59.413640332884924},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.848"} +{"sensors":[{"euler":{"heading":70.13282552735072,"pitch":99.3702973447864,"roll":22.355889032612616},"location":"Left Knee"},{"euler":{"heading":114.59407018515742,"pitch":72.24884691743803,"roll":-2.835707865005258},"location":"Left Ankle"},{"euler":{"heading":113.21871119258883,"pitch":-30.910669866908176,"roll":-27.296149500687772},"location":"Right Ankle"},{"euler":{"heading":167.33215644204301,"pitch":-146.51997933256266,"roll":48.24559765411473},"location":"Right Hip"},{"euler":{"heading":196.25315991744847,"pitch":-36.777711280550044,"roll":59.925637933871165},"location":"Right Knee"},{"euler":{"heading":89.09373713222452,"pitch":-118.77364680908647,"roll":53.47227629959643},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.948"} +{"sensors":[{"euler":{"heading":63.11954297461565,"pitch":89.43326761030775,"roll":20.120300129351357},"location":"Left Knee"},{"euler":{"heading":103.13466316664169,"pitch":65.02396222569423,"roll":-2.552137078504732},"location":"Left Ankle"},{"euler":{"heading":101.89684007332994,"pitch":-27.81960288021736,"roll":-24.566534550618996},"location":"Right Ankle"},{"euler":{"heading":150.5989407978387,"pitch":-131.8679813993064,"roll":43.42103788870326},"location":"Right Hip"},{"euler":{"heading":176.62784392570362,"pitch":-33.09994015249504,"roll":53.93307414048405},"location":"Right Knee"},{"euler":{"heading":80.18436341900207,"pitch":-106.89628212817783,"roll":48.12504866963679},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.606"} +{"sensors":[{"euler":{"heading":56.80758867715409,"pitch":80.48994084927698,"roll":18.10827011641622},"location":"Left Knee"},{"euler":{"heading":92.82119684997753,"pitch":58.52156600312481,"roll":-2.296923370654259},"location":"Left Ankle"},{"euler":{"heading":91.70715606599695,"pitch":-25.037642592195624,"roll":-22.109881095557096},"location":"Right Ankle"},{"euler":{"heading":135.53904671805483,"pitch":-118.68118325937576,"roll":39.078934099832935},"location":"Right Hip"},{"euler":{"heading":158.96505953313326,"pitch":-29.789946137245533,"roll":48.53976672643565},"location":"Right Knee"},{"euler":{"heading":72.16592707710187,"pitch":-96.20665391536005,"roll":43.31254380267311},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.708"} +{"sensors":[{"euler":{"heading":51.12682980943868,"pitch":72.44094676434928,"roll":16.2974431047746},"location":"Left Knee"},{"euler":{"heading":83.53907716497977,"pitch":52.66940940281233,"roll":-2.067231033588833},"location":"Left Ankle"},{"euler":{"heading":82.53644045939726,"pitch":-22.533878332976062,"roll":-19.898892986001385},"location":"Right Ankle"},{"euler":{"heading":121.98514204624935,"pitch":-106.81306493343818,"roll":35.17104068984964},"location":"Right Hip"},{"euler":{"heading":143.06855357981993,"pitch":-26.81095152352098,"roll":43.68579005379209},"location":"Right Knee"},{"euler":{"heading":64.94933436939168,"pitch":-86.58598852382404,"roll":38.9812894224058},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.808"} +{"sensors":[{"euler":{"heading":46.014146828494816,"pitch":65.19685208791435,"roll":14.667698794297142},"location":"Left Knee"},{"euler":{"heading":75.1851694484818,"pitch":47.4024684625311,"roll":-1.8605079302299499},"location":"Left Ankle"},{"euler":{"heading":74.28279641345753,"pitch":-20.280490499678457,"roll":-17.90900368740125},"location":"Right Ankle"},{"euler":{"heading":109.78662784162442,"pitch":-96.13175844009437,"roll":31.653936620864677},"location":"Right Hip"},{"euler":{"heading":128.76169822183795,"pitch":-24.129856371168884,"roll":39.31721104841288},"location":"Right Knee"},{"euler":{"heading":58.454400932452515,"pitch":-77.92738967144165,"roll":35.08316048016522},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.908"} +{"sensors":[{"euler":{"heading":41.412732145645336,"pitch":58.677166879122915,"roll":13.200928914867427},"location":"Left Knee"},{"euler":{"heading":67.66665250363363,"pitch":42.66222161627799,"roll":-1.674457137206955},"location":"Left Ankle"},{"euler":{"heading":66.85451677211178,"pitch":-18.252441449710613,"roll":-16.118103318661124},"location":"Right Ankle"},{"euler":{"heading":98.80796505746198,"pitch":-86.51858259608494,"roll":28.48854295877821},"location":"Right Hip"},{"euler":{"heading":115.88552839965415,"pitch":-21.716870734051998,"roll":35.38548994357159},"location":"Right Knee"},{"euler":{"heading":52.60896083920726,"pitch":-70.13465070429748,"roll":31.574844432148698},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.9"} +{"sensors":[{"euler":{"heading":37.2714589310808,"pitch":52.80945019121062,"roll":11.880836023380684},"location":"Left Knee"},{"euler":{"heading":60.89998725327027,"pitch":38.395999454650195,"roll":-1.5070114234862595},"location":"Left Ankle"},{"euler":{"heading":60.1690650949006,"pitch":-16.42719730473955,"roll":-14.506292986795012},"location":"Right Ankle"},{"euler":{"heading":88.9271685517158,"pitch":-77.86672433647645,"roll":25.63968866290039},"location":"Right Hip"},{"euler":{"heading":104.29697555968873,"pitch":-19.5451836606468,"roll":31.846940949214435},"location":"Right Knee"},{"euler":{"heading":47.348064755286536,"pitch":-63.12118563386774,"roll":28.41735998893383},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.110"} +{"sensors":[{"euler":{"heading":33.54431303797272,"pitch":47.52850517208956,"roll":10.692752421042616},"location":"Left Knee"},{"euler":{"heading":54.80998852794324,"pitch":34.55639950918518,"roll":-1.3563102811376335},"location":"Left Ankle"},{"euler":{"heading":54.15215858541055,"pitch":-14.784477574265596,"roll":-13.05566368811551},"location":"Right Ankle"},{"euler":{"heading":80.03445169654422,"pitch":-70.08005190282881,"roll":23.07571979661035},"location":"Right Hip"},{"euler":{"heading":93.86727800371986,"pitch":-17.59066529458212,"roll":28.66224685429299},"location":"Right Knee"},{"euler":{"heading":42.613258279757886,"pitch":-56.809067070480964,"roll":25.575623990040445},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.768"} +{"sensors":[{"euler":{"heading":30.18988173417545,"pitch":42.775654654880604,"roll":9.623477178938355},"location":"Left Knee"},{"euler":{"heading":49.32898967514892,"pitch":31.10075955826666,"roll":-1.2206792530238701},"location":"Left Ankle"},{"euler":{"heading":48.73694272686949,"pitch":-13.306029816839036,"roll":-11.75009731930396},"location":"Right Ankle"},{"euler":{"heading":72.0310065268898,"pitch":-63.072046712545934,"roll":20.768147816949316},"location":"Right Hip"},{"euler":{"heading":84.48055020334787,"pitch":-15.831598765123909,"roll":25.796022168863693},"location":"Right Knee"},{"euler":{"heading":38.3519324517821,"pitch":-51.12816036343287,"roll":23.0180615910364},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.869"} +{"sensors":[{"euler":{"heading":27.170893560757907,"pitch":38.498089189392545,"roll":8.66112946104452},"location":"Left Knee"},{"euler":{"heading":44.39609070763403,"pitch":27.990683602439994,"roll":-1.098611327721483},"location":"Left Ankle"},{"euler":{"heading":43.863248454182546,"pitch":-11.975426835155133,"roll":-10.575087587373563},"location":"Right Ankle"},{"euler":{"heading":64.82790587420082,"pitch":-56.76484204129134,"roll":18.691333035254384},"location":"Right Hip"},{"euler":{"heading":76.03249518301308,"pitch":-14.248438888611519,"roll":23.216419951977326},"location":"Right Knee"},{"euler":{"heading":34.51673920660389,"pitch":-46.015344327089586,"roll":20.716255431932762},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.970"} +{"sensors":[{"euler":{"heading":24.45380420468212,"pitch":34.64828027045329,"roll":7.795016514940069},"location":"Left Knee"},{"euler":{"heading":39.95648163687063,"pitch":25.191615242195994,"roll":-0.9887501949493348},"location":"Left Ankle"},{"euler":{"heading":39.476923608764295,"pitch":-10.77788415163962,"roll":-9.517578828636207},"location":"Right Ankle"},{"euler":{"heading":58.34511528678074,"pitch":-51.08835783716221,"roll":16.822199731728947},"location":"Right Hip"},{"euler":{"heading":68.42924566471177,"pitch":-12.823594999750368,"roll":20.894777956779592},"location":"Right Knee"},{"euler":{"heading":31.0650652859435,"pitch":-41.41380989438063,"roll":18.644629888739487},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:18.71"} +{"sensors":[{"euler":{"heading":22.008423784213907,"pitch":31.183452243407963,"roll":7.015514863446062},"location":"Left Knee"},{"euler":{"heading":35.96083347318356,"pitch":22.672453717976396,"roll":-0.8898751754544013},"location":"Left Ankle"},{"euler":{"heading":35.529231247887864,"pitch":-9.700095736475658,"roll":-8.565820945772586},"location":"Right Ankle"},{"euler":{"heading":52.51060375810267,"pitch":-45.97952205344599,"roll":15.139979758556052},"location":"Right Hip"},{"euler":{"heading":61.586321098240596,"pitch":-11.54123549977533,"roll":18.805300161101634},"location":"Right Knee"},{"euler":{"heading":27.958558757349152,"pitch":-37.272428904942565,"roll":16.780166899865538},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:18.172"} +{"sensors":[{"euler":{"heading":19.807581405792515,"pitch":28.065107019067167,"roll":6.313963377101456},"location":"Left Knee"},{"euler":{"heading":32.36475012586521,"pitch":20.405208346178757,"roll":-0.8008876579089612},"location":"Left Ankle"},{"euler":{"heading":31.976308123099077,"pitch":-8.730086162828092,"roll":-7.709238851195328},"location":"Right Ankle"},{"euler":{"heading":47.2595433822924,"pitch":-41.38156984810139,"roll":13.625981782700448},"location":"Right Hip"},{"euler":{"heading":55.427688988416534,"pitch":-10.387111949797799,"roll":16.92477014499147},"location":"Right Knee"},{"euler":{"heading":25.162702881614237,"pitch":-33.54518601444831,"roll":15.102150209878985},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:18.274"} +{"sensors":[{"euler":{"heading":17.826823265213264,"pitch":25.25859631716045,"roll":5.68256703939131},"location":"Left Knee"},{"euler":{"heading":29.128275113278686,"pitch":18.36468751156088,"roll":-0.7207988921180651},"location":"Left Ankle"},{"euler":{"heading":28.77867731078917,"pitch":-7.857077546545283,"roll":-6.938314966075795},"location":"Right Ankle"},{"euler":{"heading":42.53358904406316,"pitch":-37.243412863291255,"roll":12.263383604430404},"location":"Right Hip"},{"euler":{"heading":49.884920089574884,"pitch":-9.34840075481802,"roll":15.232293130492323},"location":"Right Knee"},{"euler":{"heading":22.646432593452815,"pitch":-30.19066741300348,"roll":13.591935188891087},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:26.933"} +{"sensors":[{"euler":{"heading":16.04414093869194,"pitch":22.732736685444404,"roll":5.1143103354521795},"location":"Left Knee"},{"euler":{"heading":26.215447601950817,"pitch":16.528218760404794,"roll":-0.6487190029062586},"location":"Left Ankle"},{"euler":{"heading":25.900809579710256,"pitch":-7.0713697918907545,"roll":-6.244483469468215},"location":"Right Ankle"},{"euler":{"heading":38.28023013965685,"pitch":-33.51907157696213,"roll":11.037045243987363},"location":"Right Hip"},{"euler":{"heading":44.8964280806174,"pitch":-8.413560679336218,"roll":13.709063817443091},"location":"Right Knee"},{"euler":{"heading":20.381789334107534,"pitch":-27.171600671703136,"roll":12.232741670001978},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.34"} +{"sensors":[{"euler":{"heading":14.439726844822745,"pitch":20.459463016899964,"roll":4.602879301906961},"location":"Left Knee"},{"euler":{"heading":23.593902841755735,"pitch":14.875396884364315,"roll":-0.5838471026156328},"location":"Left Ankle"},{"euler":{"heading":23.31072862173923,"pitch":-6.36423281270168,"roll":-5.620035122521394},"location":"Right Ankle"},{"euler":{"heading":34.45220712569117,"pitch":-30.16716441926592,"roll":9.933340719588626},"location":"Right Hip"},{"euler":{"heading":40.40678527255566,"pitch":-7.572204611402596,"roll":12.338157435698783},"location":"Right Knee"},{"euler":{"heading":18.343610400696782,"pitch":-24.454440604532824,"roll":11.009467503001781},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.136"} +{"sensors":[{"euler":{"heading":12.995754160340471,"pitch":18.41351671520997,"roll":4.142591371716265},"location":"Left Knee"},{"euler":{"heading":21.234512557580164,"pitch":13.387857195927884,"roll":-0.5254623923540696},"location":"Left Ankle"},{"euler":{"heading":20.979655759565308,"pitch":-5.727809531431512,"roll":-5.058031610269254},"location":"Right Ankle"},{"euler":{"heading":31.00698641312205,"pitch":-27.15044797733933,"roll":8.940006647629763},"location":"Right Hip"},{"euler":{"heading":36.366106745300094,"pitch":-6.814984150262337,"roll":11.104341692128905},"location":"Right Knee"},{"euler":{"heading":16.509249360627106,"pitch":-22.00899654407954,"roll":9.908520752701603},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.237"} +{"sensors":[{"euler":{"heading":11.696178744306424,"pitch":16.572165043688972,"roll":3.728332234544639},"location":"Left Knee"},{"euler":{"heading":19.111061301822147,"pitch":12.049071476335095,"roll":-0.4729161531186626},"location":"Left Ankle"},{"euler":{"heading":18.88169018360878,"pitch":-5.155028578288361,"roll":-4.552228449242329},"location":"Right Ankle"},{"euler":{"heading":27.906287771809847,"pitch":-24.435403179605398,"roll":8.046005982866788},"location":"Right Hip"},{"euler":{"heading":32.72949607077008,"pitch":-6.133485735236103,"roll":9.993907522916015},"location":"Right Knee"},{"euler":{"heading":14.858324424564396,"pitch":-19.808096889671585,"roll":8.917668677431443},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.337"} +{"sensors":[{"euler":{"heading":10.526560869875782,"pitch":14.914948539320076,"roll":3.355499011090175},"location":"Left Knee"},{"euler":{"heading":17.19995517163993,"pitch":10.844164328701586,"roll":-0.4256245378067963},"location":"Left Ankle"},{"euler":{"heading":16.993521165247902,"pitch":-4.639525720459525,"roll":-4.097005604318096},"location":"Right Ankle"},{"euler":{"heading":25.115658994628863,"pitch":-21.991862861644858,"roll":7.241405384580109},"location":"Right Hip"},{"euler":{"heading":29.456546463693076,"pitch":-5.520137161712493,"roll":8.994516770624413},"location":"Right Knee"},{"euler":{"heading":13.372491982107956,"pitch":-17.827287200704426,"roll":8.0259018096883},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.438"} +{"sensors":[{"euler":{"heading":9.473904782888203,"pitch":13.423453685388068,"roll":3.0199491099811575},"location":"Left Knee"},{"euler":{"heading":15.47995965447594,"pitch":9.759747895831428,"roll":-0.3830620840261167},"location":"Left Ankle"},{"euler":{"heading":15.294169048723113,"pitch":-4.175573148413572,"roll":-3.687305043886287},"location":"Right Ankle"},{"euler":{"heading":22.604093095165975,"pitch":-19.79267657548037,"roll":6.5172648461220986},"location":"Right Hip"},{"euler":{"heading":26.51089181732377,"pitch":-4.968123445541244,"roll":8.095065093561972},"location":"Right Knee"},{"euler":{"heading":12.03524278389716,"pitch":-16.044558480633984,"roll":7.22331162871947},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.538"} +{"sensors":[{"euler":{"heading":8.526514304599383,"pitch":12.081108316849262,"roll":2.717954198983042},"location":"Left Knee"},{"euler":{"heading":13.931963689028345,"pitch":8.783773106248285,"roll":-0.344755875623505},"location":"Left Ankle"},{"euler":{"heading":13.764752143850801,"pitch":-3.758015833572215,"roll":-3.3185745394976585},"location":"Right Ankle"},{"euler":{"heading":20.34368378564938,"pitch":-17.813408917932335,"roll":5.865538361509889},"location":"Right Hip"},{"euler":{"heading":23.859802635591393,"pitch":-4.47131110098712,"roll":7.285558584205775},"location":"Right Knee"},{"euler":{"heading":10.831718505507444,"pitch":-14.440102632570586,"roll":6.500980465847523},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.639"} +{"sensors":[{"euler":{"heading":7.673862874139445,"pitch":10.872997485164335,"roll":2.4461587790847377},"location":"Left Knee"},{"euler":{"heading":12.53876732012551,"pitch":7.905395795623456,"roll":-0.31028028806115454},"location":"Left Ankle"},{"euler":{"heading":12.388276929465722,"pitch":-3.382214250214994,"roll":-2.986717085547893},"location":"Right Ankle"},{"euler":{"heading":18.30931540708444,"pitch":-16.032068026139104,"roll":5.2789845253589},"location":"Right Hip"},{"euler":{"heading":21.473822372032256,"pitch":-4.024179990888408,"roll":6.557002725785198},"location":"Right Knee"},{"euler":{"heading":9.7485466549567,"pitch":-12.996092369313528,"roll":5.8508824192627715},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.740"} +{"sensors":[{"euler":{"heading":6.906476586725501,"pitch":9.785697736647903,"roll":2.201542901176264},"location":"Left Knee"},{"euler":{"heading":11.28489058811296,"pitch":7.114856216061111,"roll":-0.2792522592550391},"location":"Left Ankle"},{"euler":{"heading":11.14944923651915,"pitch":-3.0439928251934947,"roll":-2.6880453769931036},"location":"Right Ankle"},{"euler":{"heading":16.478383866375996,"pitch":-14.428861223525194,"roll":4.75108607282301},"location":"Right Hip"},{"euler":{"heading":19.32644013482903,"pitch":-3.621761991799567,"roll":5.901302453206679},"location":"Right Knee"},{"euler":{"heading":8.77369198946103,"pitch":-11.696483132382175,"roll":5.2657941773364945},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.36"} +{"sensors":[{"euler":{"heading":6.215828928052951,"pitch":8.807127962983113,"roll":1.9813886110586378},"location":"Left Knee"},{"euler":{"heading":10.156401529301665,"pitch":6.403370594455,"roll":-0.2513270333295352},"location":"Left Ankle"},{"euler":{"heading":10.034504312867234,"pitch":-2.7395935426741453,"roll":-2.4192408392937934},"location":"Right Ankle"},{"euler":{"heading":14.830545479738397,"pitch":-12.985975101172675,"roll":4.275977465540709},"location":"Right Hip"},{"euler":{"heading":17.393796121346128,"pitch":-3.2595857926196103,"roll":5.311172207886011},"location":"Right Knee"},{"euler":{"heading":7.896322790514927,"pitch":-10.526834819143957,"roll":4.739214759602845},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.139"} +{"sensors":[{"euler":{"heading":5.594246035247656,"pitch":7.926415166684802,"roll":1.7832497499527742},"location":"Left Knee"},{"euler":{"heading":9.140761376371499,"pitch":5.7630335350095,"roll":-0.2261943299965817},"location":"Left Ankle"},{"euler":{"heading":9.031053881580512,"pitch":-2.4656341884067308,"roll":-2.177316755364414},"location":"Right Ankle"},{"euler":{"heading":13.347490931764558,"pitch":-11.687377591055409,"roll":3.848379718986638},"location":"Right Hip"},{"euler":{"heading":15.654416509211515,"pitch":-2.9336272133576493,"roll":4.78005498709741},"location":"Right Knee"},{"euler":{"heading":7.106690511463435,"pitch":-9.474151337229562,"roll":4.265293283642561},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.239"} +{"sensors":[{"euler":{"heading":5.034821431722891,"pitch":7.133773650016322,"roll":1.6049247749574969},"location":"Left Knee"},{"euler":{"heading":8.22668523873435,"pitch":5.18673018150855,"roll":-0.20357489699692355},"location":"Left Ankle"},{"euler":{"heading":8.12794849342246,"pitch":-2.219070769566058,"roll":-1.9595850798279726},"location":"Right Ankle"},{"euler":{"heading":12.012741838588102,"pitch":-10.518639831949868,"roll":3.4635417470879744},"location":"Right Hip"},{"euler":{"heading":14.088974858290364,"pitch":-2.6402644920218843,"roll":4.302049488387669},"location":"Right Knee"},{"euler":{"heading":6.396021460317091,"pitch":-8.526736203506607,"roll":3.8387639552783046},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.340"} +{"sensors":[{"euler":{"heading":4.531339288550602,"pitch":6.42039628501469,"roll":1.4444322974617472},"location":"Left Knee"},{"euler":{"heading":7.404016714860915,"pitch":4.6680571633576955,"roll":-0.1832174072972312},"location":"Left Ankle"},{"euler":{"heading":7.3151536440802145,"pitch":-1.997163692609452,"roll":-1.7636265718451754},"location":"Right Ankle"},{"euler":{"heading":10.811467654729292,"pitch":-9.466775848754882,"roll":3.117187572379177},"location":"Right Hip"},{"euler":{"heading":12.680077372461328,"pitch":-2.376238042819696,"roll":3.8718445395489023},"location":"Right Knee"},{"euler":{"heading":5.756419314285382,"pitch":-7.674062583155946,"roll":3.4548875597504742},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.440"} +{"sensors":[{"euler":{"heading":4.078205359695542,"pitch":5.778356656513221,"roll":1.2999890677155725},"location":"Left Knee"},{"euler":{"heading":6.663615043374824,"pitch":4.201251447021926,"roll":-0.1648956665675081},"location":"Left Ankle"},{"euler":{"heading":6.5836382796721935,"pitch":-1.7974473233485069,"roll":-1.5872639146606577},"location":"Right Ankle"},{"euler":{"heading":9.730320889256364,"pitch":-8.520098263879394,"roll":2.8054688151412592},"location":"Right Hip"},{"euler":{"heading":11.412069635215195,"pitch":-2.1386142385377265,"roll":3.484660085594012},"location":"Right Knee"},{"euler":{"heading":5.180777382856844,"pitch":-6.906656324840352,"roll":3.1093988037754268},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.541"} +{"sensors":[{"euler":{"heading":3.670384823725988,"pitch":5.200520990861899,"roll":1.1699901609440153},"location":"Left Knee"},{"euler":{"heading":5.997253539037342,"pitch":3.7811263023197337,"roll":-0.1484060999107573},"location":"Left Ankle"},{"euler":{"heading":5.925274451704975,"pitch":-1.6177025910136562,"roll":-1.428537523194592},"location":"Right Ankle"},{"euler":{"heading":8.757288800330727,"pitch":-7.668088437491455,"roll":2.5249219336271334},"location":"Right Hip"},{"euler":{"heading":10.270862671693676,"pitch":-1.9247528146839539,"roll":3.136194077034611},"location":"Right Knee"},{"euler":{"heading":4.66269964457116,"pitch":-6.215990692356317,"roll":2.798458923397884},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.641"} +{"sensors":[{"euler":{"heading":3.3033463413533894,"pitch":4.68046889177571,"roll":1.0529911448496139},"location":"Left Knee"},{"euler":{"heading":5.397528185133607,"pitch":3.40301367208776,"roll":-0.13356548991968156},"location":"Left Ankle"},{"euler":{"heading":5.332747006534477,"pitch":-1.4559323319122905,"roll":-1.285683770875133},"location":"Right Ankle"},{"euler":{"heading":7.881559920297654,"pitch":-6.901279593742309,"roll":2.2724297402644202},"location":"Right Hip"},{"euler":{"heading":9.243776404524308,"pitch":-1.7322775332155584,"roll":2.82257466933115},"location":"Right Knee"},{"euler":{"heading":4.196429680114044,"pitch":-5.594391623120686,"roll":2.518613031058096},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.742"} +{"sensors":[{"euler":{"heading":2.9730117072180504,"pitch":4.212422002598139,"roll":0.9476920303646525},"location":"Left Knee"},{"euler":{"heading":4.857775366620247,"pitch":3.062712304878984,"roll":-0.1202089409277134},"location":"Left Ankle"},{"euler":{"heading":4.79947230588103,"pitch":-1.3103390987210615,"roll":-1.1571153937876197},"location":"Right Ankle"},{"euler":{"heading":7.093403928267889,"pitch":-6.211151634368078,"roll":2.045186766237978},"location":"Right Hip"},{"euler":{"heading":8.319398764071877,"pitch":-1.5590497798940026,"roll":2.540317202398035},"location":"Right Knee"},{"euler":{"heading":3.77678671210264,"pitch":-5.034952460808618,"roll":2.266751727952286},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.843"} +{"sensors":[{"euler":{"heading":2.6757105364962452,"pitch":3.7911798023383247,"roll":0.8529228273281874},"location":"Left Knee"},{"euler":{"heading":4.3719978299582225,"pitch":2.756441074391086,"roll":-0.10818804683494207},"location":"Left Ankle"},{"euler":{"heading":4.319525075292927,"pitch":-1.1793051888489554,"roll":-1.0414038544088577},"location":"Right Ankle"},{"euler":{"heading":6.3840635354411,"pitch":-5.59003647093127,"roll":1.8406680896141803},"location":"Right Hip"},{"euler":{"heading":7.4874588876646895,"pitch":-1.4031448019046024,"roll":2.286285482158232},"location":"Right Knee"},{"euler":{"heading":3.399108040892376,"pitch":-4.531457214727756,"roll":2.0400765551570577},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.944"} +{"sensors":[{"euler":{"heading":2.4081394828466207,"pitch":3.4120618221044925,"roll":0.7676305445953686},"location":"Left Knee"},{"euler":{"heading":3.9347980469624004,"pitch":2.4807969669519774,"roll":-0.09736924215144786},"location":"Left Ankle"},{"euler":{"heading":3.8875725677636344,"pitch":-1.0613746699640598,"roll":-0.937263468967972},"location":"Right Ankle"},{"euler":{"heading":5.7456571818969895,"pitch":-5.031032823838143,"roll":1.6566012806527624},"location":"Right Hip"},{"euler":{"heading":6.738712998898221,"pitch":-1.2628303217141423,"roll":2.057656933942409},"location":"Right Knee"},{"euler":{"heading":3.0591972368031386,"pitch":-4.07831149325498,"roll":1.836068899641352},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:30.44"} +{"sensors":[{"euler":{"heading":2.1673255345619586,"pitch":3.0708556398940434,"roll":0.6908674901358318},"location":"Left Knee"},{"euler":{"heading":3.5413182422661604,"pitch":2.2327172702567797,"roll":-0.08763231793630308},"location":"Left Ankle"},{"euler":{"heading":3.498815310987271,"pitch":-0.9552372029676539,"roll":-0.8435371220711748},"location":"Right Ankle"},{"euler":{"heading":5.171091463707291,"pitch":-4.527929541454329,"roll":1.490941152587486},"location":"Right Hip"},{"euler":{"heading":6.064841699008399,"pitch":-1.1365472895427282,"roll":1.851891240548168},"location":"Right Knee"},{"euler":{"heading":2.753277513122825,"pitch":-3.670480343929482,"roll":1.6524620096772167},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:30.146"} +{"sensors":[{"euler":{"heading":1.9505929811057627,"pitch":2.763770075904639,"roll":0.6217807411222487},"location":"Left Knee"},{"euler":{"heading":3.1871864180395444,"pitch":2.009445543231102,"roll":-0.07886908614267277},"location":"Left Ankle"},{"euler":{"heading":3.148933779888544,"pitch":-0.8597134826708885,"roll":-0.7591834098640573},"location":"Right Ankle"},{"euler":{"heading":4.6539823173365615,"pitch":-4.075136587308896,"roll":1.3418470373287374},"location":"Right Hip"},{"euler":{"heading":5.458357529107559,"pitch":-2.6228925605884554,"roll":1.6667021164933513},"location":"Right Knee"},{"euler":{"heading":2.4779497618105424,"pitch":-4.903432309536534,"roll":1.487215808709495},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:30.246"} +{"sensors":[{"euler":{"heading":1.7555336829951864,"pitch":2.487393068314175,"roll":0.5596026670100238},"location":"Left Knee"},{"euler":{"heading":2.86846777623559,"pitch":1.8085009889079917,"roll":-0.0709821775284055},"location":"Left Ankle"},{"euler":{"heading":2.8340404018996894,"pitch":-0.7737421344037997,"roll":-0.6832650688776516},"location":"Right Ankle"},{"euler":{"heading":4.188584085602906,"pitch":-3.6676229285780066,"roll":1.2076623335958638},"location":"Right Hip"},{"euler":{"heading":4.912521776196804,"pitch":-2.3606033045296098,"roll":1.5000319048440163},"location":"Right Knee"},{"euler":{"heading":2.2301547856294883,"pitch":-4.413089078582881,"roll":1.3384942278385457},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.6"} +{"sensors":[{"euler":{"heading":1.579980314695668,"pitch":2.2386537614827575,"roll":0.5036424003090214},"location":"Left Knee"},{"euler":{"heading":2.581620998612031,"pitch":1.6276508900171927,"roll":-0.06388395977556495},"location":"Left Ankle"},{"euler":{"heading":2.5506363617097207,"pitch":-0.6963679209634197,"roll":-0.6149385619898865},"location":"Right Ankle"},{"euler":{"heading":3.769725677042615,"pitch":-3.300860635720206,"roll":1.0868961002362776},"location":"Right Hip"},{"euler":{"heading":4.4212695985771235,"pitch":-2.124542974076649,"roll":1.3500287143596146},"location":"Right Knee"},{"euler":{"heading":2.0071393070665398,"pitch":-3.971780170724593,"roll":1.2046448050546912},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.107"} +{"sensors":[{"euler":{"heading":1.421982283226101,"pitch":2.014788385334482,"roll":0.4532781602781193},"location":"Left Knee"},{"euler":{"heading":2.323458898750828,"pitch":1.4648858010154735,"roll":-0.05749556379800846},"location":"Left Ankle"},{"euler":{"heading":2.2955727255387486,"pitch":-0.6267311288670777,"roll":-0.5534447057908979},"location":"Right Ankle"},{"euler":{"heading":3.392753109338354,"pitch":-2.9707745721481853,"roll":0.9782064902126498},"location":"Right Hip"},{"euler":{"heading":3.979142638719411,"pitch":-1.9120886766689842,"roll":1.2150258429236531},"location":"Right Knee"},{"euler":{"heading":1.8064253763598859,"pitch":-3.5746021536521337,"roll":1.084180324549222},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.208"} +{"sensors":[{"euler":{"heading":1.2797840549034911,"pitch":1.8133095468010338,"roll":0.40795034425030735},"location":"Left Knee"},{"euler":{"heading":2.0911130088757455,"pitch":1.318397220913926,"roll":-0.05174600741820761},"location":"Left Ankle"},{"euler":{"heading":2.0660154529848738,"pitch":-0.56405801598037,"roll":-0.49810023521180813},"location":"Right Ankle"},{"euler":{"heading":3.0534777984045185,"pitch":-2.673697114933367,"roll":0.8803858411913849},"location":"Right Hip"},{"euler":{"heading":3.5812283748474703,"pitch":-1.7208798090020858,"roll":1.0935232586312877},"location":"Right Knee"},{"euler":{"heading":1.6257828387238973,"pitch":-3.2171419382869204,"roll":0.9757622920942999},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.309"} +{"sensors":[{"euler":{"heading":1.1518056494131421,"pitch":1.6319785921209304,"roll":0.3671553098252766},"location":"Left Knee"},{"euler":{"heading":1.882001707988171,"pitch":1.1865574988225336,"roll":-0.04657140667638685},"location":"Left Ankle"},{"euler":{"heading":1.8594139076863865,"pitch":-0.507652214382333,"roll":-0.4482902116906273},"location":"Right Ankle"},{"euler":{"heading":2.748130018564067,"pitch":-2.4063274034400304,"roll":0.7923472570722464},"location":"Right Hip"},{"euler":{"heading":3.223105537362723,"pitch":-1.5487918281018773,"roll":0.984170932768159},"location":"Right Knee"},{"euler":{"heading":1.4632045548515076,"pitch":-2.8954277444582286,"roll":0.8781860628848699},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.410"} +{"sensors":[{"euler":{"heading":1.0366250844718279,"pitch":1.4687807329088374,"roll":0.33043977884274894},"location":"Left Knee"},{"euler":{"heading":1.693801537189354,"pitch":1.0679017489402802,"roll":-0.04191426600874817},"location":"Left Ankle"},{"euler":{"heading":1.6734725169177478,"pitch":-0.4568869929440997,"roll":-0.4034611905215646},"location":"Right Ankle"},{"euler":{"heading":2.4733170167076604,"pitch":-2.165694663096027,"roll":0.7131125313650217},"location":"Right Hip"},{"euler":{"heading":2.900794983626451,"pitch":-1.3939126452916897,"roll":0.8857538394913431},"location":"Right Knee"},{"euler":{"heading":1.3168840993663569,"pitch":-2.6058849700124056,"roll":0.790367456596383},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.511"} +{"sensors":[{"euler":{"heading":0.9329625760246452,"pitch":1.3219026596179537,"roll":0.29739580095847407},"location":"Left Knee"},{"euler":{"heading":1.5244213834704186,"pitch":0.9611115740462522,"roll":-0.037722839407873354},"location":"Left Ankle"},{"euler":{"heading":1.5061252652259731,"pitch":-0.41119829364968974,"roll":-0.36311507146940813},"location":"Right Ankle"},{"euler":{"heading":2.2259853150368945,"pitch":-1.9491251967864245,"roll":0.6418012782285196},"location":"Right Hip"},{"euler":{"heading":2.610715485263806,"pitch":-1.2545213807625208,"roll":0.7971784555422088},"location":"Right Knee"},{"euler":{"heading":1.1851956894297213,"pitch":-2.345296473011165,"roll":0.7113307109367447},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.614"} +{"sensors":[{"euler":{"heading":0.8396663184221806,"pitch":1.1897123936561584,"roll":0.2676562208626267},"location":"Left Knee"},{"euler":{"heading":1.3719792451233768,"pitch":0.8650004166416271,"roll":-0.03395055546708602},"location":"Left Ankle"},{"euler":{"heading":1.3555127387033759,"pitch":-0.3700784642847208,"roll":-0.3268035643224673},"location":"Right Ankle"},{"euler":{"heading":2.003386783533205,"pitch":-1.7542126771077822,"roll":0.5776211504056676},"location":"Right Hip"},{"euler":{"heading":2.3496439367374253,"pitch":-1.1290692426862687,"roll":0.7174606099879879},"location":"Right Knee"},{"euler":{"heading":1.0666761204867492,"pitch":-2.1107668257100487,"roll":0.6401976398430702},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:34.910"} +{"sensors":[{"euler":{"heading":0.7556996865799626,"pitch":1.0707411542905427,"roll":0.24089059877636404},"location":"Left Knee"},{"euler":{"heading":1.2347813206110392,"pitch":0.7785003749774644,"roll":-0.03055549992037742},"location":"Left Ankle"},{"euler":{"heading":1.2199614648330384,"pitch":-0.33307061785624875,"roll":-0.2941232078902206},"location":"Right Ankle"},{"euler":{"heading":1.8030481051798843,"pitch":-1.578791409397004,"roll":0.5198590353651009},"location":"Right Hip"},{"euler":{"heading":2.1146795430636827,"pitch":-1.0161623184176418,"roll":0.6457145489891891},"location":"Right Knee"},{"euler":{"heading":0.9600085084380743,"pitch":-1.8996901431390438,"roll":0.5761778758587632},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.10"} +{"sensors":[{"euler":{"heading":0.6801297179219663,"pitch":0.9636670388614885,"roll":0.21680153889872764},"location":"Left Knee"},{"euler":{"heading":1.1113031885499354,"pitch":0.7006503374797179,"roll":-0.02749994992833968},"location":"Left Ankle"},{"euler":{"heading":1.0979653183497347,"pitch":-0.2997635560706239,"roll":-0.26471088710119856},"location":"Right Ankle"},{"euler":{"heading":1.622743294661896,"pitch":-1.4209122684573035,"roll":0.46787313182859086},"location":"Right Hip"},{"euler":{"heading":1.9032115887573144,"pitch":-0.9145460865758777,"roll":0.5811430940902702},"location":"Right Knee"},{"euler":{"heading":0.8640076575942669,"pitch":-1.7097211288251395,"roll":0.5185600882728869},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.111"} +{"sensors":[{"euler":{"heading":0.6121167461297697,"pitch":0.8673003349753396,"roll":0.19512138500885487},"location":"Left Knee"},{"euler":{"heading":1.000172869694942,"pitch":0.6305853037317461,"roll":-0.024749954935505712},"location":"Left Ankle"},{"euler":{"heading":0.9881687865147613,"pitch":-0.2697872004635615,"roll":-0.2382397983910787},"location":"Right Ankle"},{"euler":{"heading":1.4604689651957066,"pitch":-1.278821041611573,"roll":0.4210858186457318},"location":"Right Hip"},{"euler":{"heading":1.712890429881583,"pitch":-0.82309147791829,"roll":0.5230287846812433},"location":"Right Knee"},{"euler":{"heading":0.7776068918348402,"pitch":-1.5387490159426256,"roll":0.4667040794455982},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.212"} +{"sensors":[{"euler":{"heading":0.5509050715167928,"pitch":0.7805703014778057,"roll":0.17560924650796939},"location":"Left Knee"},{"euler":{"heading":0.9001555827254477,"pitch":0.5675267733585716,"roll":-0.022274959441955143},"location":"Left Ankle"},{"euler":{"heading":0.8893519078632851,"pitch":-0.24280848041720537,"roll":-0.21441581855197084},"location":"Right Ankle"},{"euler":{"heading":1.3144220686761359,"pitch":-1.1509389374504158,"roll":0.37897723678115863},"location":"Right Hip"},{"euler":{"heading":1.5416013868934249,"pitch":-0.740782330126461,"roll":0.47072590621311894},"location":"Right Knee"},{"euler":{"heading":0.6998462026513562,"pitch":-1.3848741143483632,"roll":0.42003367150103843},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.312"} +{"sensors":[{"euler":{"heading":0.4958145643651135,"pitch":0.7025132713300252,"roll":0.15804832185717246},"location":"Left Knee"},{"euler":{"heading":0.810140024452903,"pitch":0.5107740960227145,"roll":-0.02004746349775963},"location":"Left Ankle"},{"euler":{"heading":0.8004167170769566,"pitch":-0.21852763237548484,"roll":-0.19297423669677377},"location":"Right Ankle"},{"euler":{"heading":1.1829798618085223,"pitch":-1.0358450437053741,"roll":0.3410795131030428},"location":"Right Hip"},{"euler":{"heading":1.3874412482040823,"pitch":-0.666704097113815,"roll":0.4236533155918071},"location":"Right Knee"},{"euler":{"heading":0.6298615823862206,"pitch":-1.246386702913527,"roll":0.3780303043509346},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:36.608"} +{"sensors":[{"euler":{"heading":0.44623310792860216,"pitch":0.6322619441970226,"roll":0.14224348967145523},"location":"Left Knee"},{"euler":{"heading":0.7291260220076127,"pitch":0.4596966864204431,"roll":-0.018042717147983667},"location":"Left Ankle"},{"euler":{"heading":0.720375045369261,"pitch":-0.19667486913793636,"roll":-0.1736768130270964},"location":"Right Ankle"},{"euler":{"heading":1.0646818756276701,"pitch":-0.9322605393348368,"roll":0.30697156179273855},"location":"Right Hip"},{"euler":{"heading":1.2486971233836741,"pitch":-0.6000336874024335,"roll":0.38128798403262637},"location":"Right Knee"},{"euler":{"heading":0.5668754241475985,"pitch":-1.1217480326221743,"roll":0.3402272739158411},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:38.918"} +{"sensors":[{"euler":{"heading":0.40160979713574196,"pitch":0.5690357497773204,"roll":0.1280191407043097},"location":"Left Knee"},{"euler":{"heading":0.6562134198068514,"pitch":0.41372701777839876,"roll":-0.0162384454331853},"location":"Left Ankle"},{"euler":{"heading":0.648337540832335,"pitch":-0.17700738222414272,"roll":-0.15630913172438676},"location":"Right Ankle"},{"euler":{"heading":0.9582136880649031,"pitch":-0.8390344854013531,"roll":0.2762744056134647},"location":"Right Hip"},{"euler":{"heading":1.1238274110453068,"pitch":-0.5400303186621901,"roll":0.34315918562936376},"location":"Right Knee"},{"euler":{"heading":0.5101878817328387,"pitch":-1.015823229359957,"roll":0.306204546524257},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:39.20"} +{"sensors":[{"euler":{"heading":0.3614488174221678,"pitch":0.5058821747995884,"roll":0.11521722663387873},"location":"Left Knee"},{"euler":{"heading":0.5905920778261663,"pitch":0.3661043160005589,"roll":-0.01461460088986677},"location":"Left Ankle"},{"euler":{"heading":0.5835037867491015,"pitch":-0.16555664400172845,"roll":-0.1406782185519481},"location":"Right Ankle"},{"euler":{"heading":0.8623923192584129,"pitch":-0.7613810368612177,"roll":0.24864696505211825},"location":"Right Hip"},{"euler":{"heading":1.0114446699407762,"pitch":-0.49227728679597105,"roll":0.3088432670664274},"location":"Right Knee"},{"euler":{"heading":0.4591690935595548,"pitch":-0.9204909064239613,"roll":0.2755840918718313},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:39.121"} diff --git a/sensors/treadmill_imu_data/imu_data_treadmill_4min_1.7mph.json b/sensors/treadmill_imu_data/imu_data_treadmill_4min_1.7mph.json new file mode 100644 index 0000000..4a936b2 --- /dev/null +++ b/sensors/treadmill_imu_data/imu_data_treadmill_4min_1.7mph.json @@ -0,0 +1,6980 @@ +{"sensors":[{"euler":{"heading":357.9375,"pitch":-150.1875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":359.6875,"pitch":147.375,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.25,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.75,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.3125,"pitch":-54.75,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":134.5625,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.462"} +{"sensors":[{"euler":{"heading":357.8125,"pitch":-150.3125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":359.5625,"pitch":147.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.1875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.75,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.375,"pitch":-54.75,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":134.625,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.513"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-150.3125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.5625,"pitch":147.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.1875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.6875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.375,"pitch":-54.75,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":134.625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.564"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-150.375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":359.5625,"pitch":147.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.1875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.6875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.4375,"pitch":-54.75,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":134.6875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.615"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":359.5625,"pitch":147.5625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.125,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.4375,"pitch":-54.75,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":134.6875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.666"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-150.375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":359.625,"pitch":147.625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.0625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.5625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.5,"pitch":-54.75,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.1875,"pitch":134.75,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.717"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.4375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.625,"pitch":147.8125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.0625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.5,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.5625,"pitch":-54.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":134.875,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.768"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-150.4375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.75,"pitch":148.1875,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":136.0625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-134.375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-54.6875,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":134.8125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.819"} +{"sensors":[{"euler":{"heading":357.8125,"pitch":-150.3125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.8125,"pitch":148.5625,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":135.9375,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":359.625,"pitch":-134.3125,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-54.625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":134.6875,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.869"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-150.125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":148.6875,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":135.9375,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":359.625,"pitch":-134.3125,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-54.625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":134.625,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.920"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":148.5625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":135.9375,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-134.375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-54.5625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":134.6875,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:58.971"} +{"sensors":[{"euler":{"heading":357.875,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":359.875,"pitch":148.4375,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":136.125,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":359.3125,"pitch":-134.4375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-54.5625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.3125,"pitch":134.75,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.21"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.0625,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.8125,"pitch":148.3125,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-54.625,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":134.6875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.72"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.0,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.8125,"pitch":148.1875,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.6875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-54.625,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":134.5625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.123"} +{"sensors":[{"euler":{"heading":357.875,"pitch":-149.9375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":148.25,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.6875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.75,"pitch":-135.0,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-54.625,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":134.625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.174"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.8125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":148.3125,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-135.0625,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.625,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":134.75,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.225"} +{"sensors":[{"euler":{"heading":358.3125,"pitch":-149.8125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":148.4375,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.9375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-54.75,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":0.8125,"pitch":135.0625,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.276"} +{"sensors":[{"euler":{"heading":358.3125,"pitch":-149.8125,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":148.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.3125,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-54.8125,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.75,"pitch":135.125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.327"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":148.5625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.25,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.9375,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.6875,"pitch":135.125,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.378"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":-149.9375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":148.625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.3125,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.9375,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":135.1875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.429"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.9375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":148.625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.25,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-55.0,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.6875,"pitch":135.25,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.480"} +{"sensors":[{"euler":{"heading":358.3125,"pitch":-149.875,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":148.6875,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.1875,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-134.8125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-54.9375,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.9375,"pitch":135.375,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.531"} +{"sensors":[{"euler":{"heading":358.625,"pitch":-149.8125,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":148.8125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.0,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-134.75,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-55.125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":1.3125,"pitch":135.5625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.582"} +{"sensors":[{"euler":{"heading":358.8125,"pitch":-149.8125,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":149.125,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":135.875,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":-134.6875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-55.25,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":1.625,"pitch":135.875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.633"} +{"sensors":[{"euler":{"heading":358.8125,"pitch":-149.75,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":0.0625,"pitch":149.1875,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":135.75,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.3125,"pitch":-134.75,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-55.3125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":1.75,"pitch":136.1875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.684"} +{"sensors":[{"euler":{"heading":358.625,"pitch":-149.8125,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":149.125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":135.8125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.75,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-55.375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":1.5625,"pitch":136.3125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.734"} +{"sensors":[{"euler":{"heading":358.3125,"pitch":-150.0,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":359.8125,"pitch":149.0,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":135.8125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-134.875,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-55.5625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":1.3125,"pitch":136.3125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.785"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-150.125,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":359.75,"pitch":149.0,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":135.8125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":358.1875,"pitch":-135.0,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-55.5625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":136.1875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.835"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-150.25,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":359.8125,"pitch":149.0,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":135.75,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":358.25,"pitch":-135.0,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-55.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":1.1875,"pitch":136.25,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.886"} +{"sensors":[{"euler":{"heading":358.375,"pitch":-150.1875,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":359.875,"pitch":149.0625,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":135.6875,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-134.875,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-55.625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":1.375,"pitch":136.25,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.937"} +{"sensors":[{"euler":{"heading":358.4375,"pitch":-150.125,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":149.125,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":135.75,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.8125,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-55.625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":1.4375,"pitch":136.3125,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:02:59.988"} +{"sensors":[{"euler":{"heading":358.375,"pitch":-150.0,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":149.125,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.0,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.75,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-55.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":1.3125,"pitch":136.1875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.39"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-150.0,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":149.1875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.3125,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":358.5625,"pitch":-134.6875,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-55.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":136.0,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.89"} +{"sensors":[{"euler":{"heading":357.875,"pitch":-150.0,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":359.875,"pitch":149.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.5,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":358.375,"pitch":-134.6875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-55.5625,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":135.625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.140"} +{"sensors":[{"euler":{"heading":357.625,"pitch":-150.0,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":359.875,"pitch":149.3125,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":136.625,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":358.25,"pitch":-134.6875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-55.5625,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.1875,"pitch":135.3125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.191"} +{"sensors":[{"euler":{"heading":357.5625,"pitch":-150.0,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":359.875,"pitch":149.3125,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":136.6875,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.25,"pitch":-134.75,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-55.5625,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":135.125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.241"} +{"sensors":[{"euler":{"heading":357.625,"pitch":-150.0,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":149.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":136.625,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.375,"pitch":-134.6875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-55.5,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":135.0625,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.292"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-149.9375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":149.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.625,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-55.375,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":135.0625,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.343"} +{"sensors":[{"euler":{"heading":357.875,"pitch":-149.875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.0625,"pitch":149.3125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.625,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.5,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-55.3125,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":135.0,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.394"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-149.875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":149.375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.5625,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.4375,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-55.3125,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.0,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.445"} +{"sensors":[{"euler":{"heading":357.8125,"pitch":-149.875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":149.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.5625,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-55.3125,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.3125,"pitch":135.0,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.497"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.0,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":149.0625,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.625,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.3125,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-55.1875,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":134.875,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.548"} +{"sensors":[{"euler":{"heading":357.25,"pitch":-150.0625,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.875,"pitch":148.875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":136.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.75,"pitch":-134.3125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-55.125,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":359.625,"pitch":134.75,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.599"} +{"sensors":[{"euler":{"heading":357.0,"pitch":-150.25,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":359.8125,"pitch":148.75,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":136.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.3125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-54.875,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":359.4375,"pitch":134.625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.649"} +{"sensors":[{"euler":{"heading":356.875,"pitch":-150.375,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":359.75,"pitch":148.5625,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.625,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-54.75,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":359.25,"pitch":134.625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.700"} +{"sensors":[{"euler":{"heading":356.6875,"pitch":-150.5,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":359.625,"pitch":148.3125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.5625,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-134.375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-54.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.0625,"pitch":134.5625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.751"} +{"sensors":[{"euler":{"heading":356.4375,"pitch":-150.625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":359.5,"pitch":148.125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.5625,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-134.375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-54.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":358.9375,"pitch":134.625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.801"} +{"sensors":[{"euler":{"heading":356.3125,"pitch":-150.75,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":359.4375,"pitch":148.0,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.5625,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.4375,"pitch":-134.4375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-54.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":358.875,"pitch":134.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.852"} +{"sensors":[{"euler":{"heading":356.375,"pitch":-150.75,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":359.5,"pitch":148.0,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.4375,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-54.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.0625,"pitch":134.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.903"} +{"sensors":[{"euler":{"heading":356.5625,"pitch":-150.6875,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":359.5625,"pitch":148.1875,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.375,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.3125,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-54.75,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":134.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:00.954"} +{"sensors":[{"euler":{"heading":356.75,"pitch":-150.625,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":359.6875,"pitch":148.375,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.375,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-134.25,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-54.75,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":134.6875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.5"} +{"sensors":[{"euler":{"heading":356.75,"pitch":-150.625,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":359.75,"pitch":148.5,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.5,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.1875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-54.75,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.375,"pitch":134.625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.56"} +{"sensors":[{"euler":{"heading":356.75,"pitch":-150.625,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":359.75,"pitch":148.625,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.6875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.1875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-54.8125,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":134.5625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.107"} +{"sensors":[{"euler":{"heading":356.875,"pitch":-150.5625,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":359.8125,"pitch":148.75,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.8125,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.1875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-54.8125,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.375,"pitch":134.625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.157"} +{"sensors":[{"euler":{"heading":357.0,"pitch":-150.5625,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.8125,"pitch":149.0,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.1875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.5625,"pitch":-54.9375,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.4375,"pitch":134.625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.208"} +{"sensors":[{"euler":{"heading":357.125,"pitch":-150.5,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":149.1875,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-55.0,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.4375,"pitch":134.625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.259"} +{"sensors":[{"euler":{"heading":357.1875,"pitch":-150.4375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":149.3125,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.8125,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-55.0625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":134.6875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.310"} +{"sensors":[{"euler":{"heading":357.25,"pitch":-150.375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":149.25,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.8125,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-55.0625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.625,"pitch":134.75,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.361"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.3125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.0625,"pitch":149.25,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.75,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.1875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-55.0625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":134.875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.412"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.25,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":149.25,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.75,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.1875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-55.0,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":135.0,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.463"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.25,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":149.25,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.75,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.1875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-55.0,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":135.0625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.513"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.1875,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":149.25,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.75,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.25,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-55.0625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":135.0625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.564"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.1875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":149.1875,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.8125,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.3125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-55.1875,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":135.0,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.615"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.1875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":149.25,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.3125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-55.25,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":135.0,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.666"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.1875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":149.1875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.375,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-55.1875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":135.0625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.717"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":149.1875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.9375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.4375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-55.125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":135.125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.767"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":149.1875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.9375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.75,"pitch":-134.4375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-55.125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":135.1875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.818"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":149.125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.9375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.75,"pitch":-134.4375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-55.125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":135.1875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.869"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":149.125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.9375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.5,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-55.125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":135.125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.919"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":149.125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.0,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.5,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-55.0,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":135.125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:01.970"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-150.0,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":149.125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.125,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.5,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-54.9375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":135.1875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.21"} +{"sensors":[{"euler":{"heading":357.875,"pitch":-150.0,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":149.25,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.125,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.5,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-54.9375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":135.25,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.72"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-149.875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.3125,"pitch":149.25,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.0625,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.5,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.9375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":135.3125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.123"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":-149.8125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":149.3125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.0625,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.4375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.173"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.8125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":149.3125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.0625,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.4375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":135.4375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.224"} +{"sensors":[{"euler":{"heading":358.1875,"pitch":-149.8125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":149.3125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.0625,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.4375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.625,"pitch":135.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.275"} +{"sensors":[{"euler":{"heading":358.1875,"pitch":-149.75,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":149.3125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.0625,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.4375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.9375,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.625,"pitch":135.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.325"} +{"sensors":[{"euler":{"heading":358.25,"pitch":-149.75,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":149.4375,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.125,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.4375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-55.0,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":135.4375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.376"} +{"sensors":[{"euler":{"heading":358.3125,"pitch":-149.6875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.4375,"pitch":149.5,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.25,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.4375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-55.0,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.625,"pitch":135.4375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.427"} +{"sensors":[{"euler":{"heading":358.375,"pitch":-149.625,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.4375,"pitch":149.5,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.25,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.5,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.125,"pitch":-54.875,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.6875,"pitch":135.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.478"} +{"sensors":[{"euler":{"heading":358.4375,"pitch":-149.625,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.5,"pitch":149.4375,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.25,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.5,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.125,"pitch":-54.875,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.75,"pitch":135.5625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.529"} +{"sensors":[{"euler":{"heading":358.4375,"pitch":-149.625,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.5,"pitch":149.3125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.25,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.4375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.125,"pitch":-54.875,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.6875,"pitch":135.5,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.580"} +{"sensors":[{"euler":{"heading":358.375,"pitch":-149.6875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.5,"pitch":149.25,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.25,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.4375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-54.8125,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":135.5,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.631"} +{"sensors":[{"euler":{"heading":358.1875,"pitch":-149.8125,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.4375,"pitch":149.0625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":137.25,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.5625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-54.8125,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.5,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.682"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":-149.9375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.3125,"pitch":148.8125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.1875,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-54.75,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":135.5,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.733"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-150.0,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.6875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.0625,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-54.75,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":135.5,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.784"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.625,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.9375,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.5625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-54.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":135.5,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.835"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.625,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.9375,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.5,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-54.5625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":135.5,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.885"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.6875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.875,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.4375,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-54.5625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.5,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.937"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-150.0,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.6875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.875,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.375,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-54.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:02.987"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.6875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.875,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.375,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.125,"pitch":-54.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.38"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.5625,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.8125,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.125,"pitch":-54.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.90"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.5,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.6875,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-134.3125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.125,"pitch":-54.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.141"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.5,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.5625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.3125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.1875,"pitch":-54.5625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.191"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-150.125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.4375,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.25,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.125,"pitch":-54.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.242"} +{"sensors":[{"euler":{"heading":357.8125,"pitch":-150.125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.5,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-134.25,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.125,"pitch":-54.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":135.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.293"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-150.1875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.5625,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.25,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-54.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":135.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.343"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.25,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.625,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.25,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-54.75,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":135.5625,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.394"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.3125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-54.8125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":135.5,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.445"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.8125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":135.5,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.496"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.8125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":135.5,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.548"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.4375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.25,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.8125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":135.5,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.599"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.4375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":135.4375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.649"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.4375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":135.4375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.700"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.4375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":135.4375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.751"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.4375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":135.5,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.802"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.5,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.9375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":135.4375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.853"} +{"sensors":[{"euler":{"heading":357.125,"pitch":-150.625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-54.9375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.625,"pitch":135.375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.904"} +{"sensors":[{"euler":{"heading":357.0,"pitch":-150.6875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":148.6875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.5,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-134.25,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-54.9375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":135.375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:03.955"} +{"sensors":[{"euler":{"heading":356.875,"pitch":-150.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":148.6875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.5,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-134.25,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.4375,"pitch":135.3125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.6"} +{"sensors":[{"euler":{"heading":356.9375,"pitch":-150.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.5625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.5625,"pitch":135.3125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.57"} +{"sensors":[{"euler":{"heading":357.0625,"pitch":-150.6875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":148.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.5625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":135.375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.107"} +{"sensors":[{"euler":{"heading":357.1875,"pitch":-150.625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.5625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":135.375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.158"} +{"sensors":[{"euler":{"heading":357.1875,"pitch":-150.625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.5625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":135.375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.209"} +{"sensors":[{"euler":{"heading":357.1875,"pitch":-150.625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.5625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.8125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":135.4375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.259"} +{"sensors":[{"euler":{"heading":357.25,"pitch":-150.625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.5625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.75,"pitch":-134.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.8125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":135.4375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.310"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.5625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.5625,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-54.75,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":135.4375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.361"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.5,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":136.5,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.0625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-54.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.1875,"pitch":135.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.413"} +{"sensors":[{"euler":{"heading":357.5625,"pitch":-150.4375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.3125,"pitch":148.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":136.5,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.0625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.125,"pitch":-54.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":135.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.464"} +{"sensors":[{"euler":{"heading":357.625,"pitch":-150.375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":148.875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":136.5,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.0625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.1875,"pitch":-54.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.515"} +{"sensors":[{"euler":{"heading":357.625,"pitch":-150.375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":148.875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":136.5,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-134.0,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.1875,"pitch":-54.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.6875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.566"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.3125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":148.875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":136.5,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-134.0,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.1875,"pitch":-54.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":135.6875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.617"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.3125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":148.875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-134.0,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.1875,"pitch":-54.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":135.6875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.668"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.25,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":148.875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":136.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.0625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.1875,"pitch":-54.75,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.6875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.719"} +{"sensors":[{"euler":{"heading":357.625,"pitch":-150.25,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":148.875,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":136.5625,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.0625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-54.8125,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":135.625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.770"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.25,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.3125,"pitch":148.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":136.6875,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-134.0625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-54.8125,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":135.5,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.821"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.3125,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.3125,"pitch":148.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":136.875,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.375,"pitch":-134.125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-54.75,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":135.375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.872"} +{"sensors":[{"euler":{"heading":357.125,"pitch":-150.4375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":136.9375,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.0625,"pitch":-134.1875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":0.6875,"pitch":-54.6875,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":359.5625,"pitch":135.375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.922"} +{"sensors":[{"euler":{"heading":357.0,"pitch":-150.5625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.75,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":137.0,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.0,"pitch":-134.25,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-54.625,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":359.4375,"pitch":135.3125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:04.973"} +{"sensors":[{"euler":{"heading":357.0,"pitch":-150.5625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":148.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":136.9375,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.0625,"pitch":-134.25,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-54.5625,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":359.4375,"pitch":135.25,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.24"} +{"sensors":[{"euler":{"heading":357.125,"pitch":-150.5,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.3125,"pitch":148.875,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":136.875,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":358.375,"pitch":-134.25,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-54.5625,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":135.375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.74"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.3125,"pitch":149.0,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.75,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.1875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.1875,"pitch":-54.625,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":135.5625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.125"} +{"sensors":[{"euler":{"heading":357.8125,"pitch":-150.1875,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.5,"pitch":149.1875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.625,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-134.125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.375,"pitch":-54.5625,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":0.6875,"pitch":135.8125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.176"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":-150.0625,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":136.5,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":-134.125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.5625,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":136.0,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.227"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-150.0,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.3125,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":136.5,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-134.0625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.5,"pitch":-54.625,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":1.1875,"pitch":136.125,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.278"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":-149.9375,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.625,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-134.125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.5,"pitch":-54.6875,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":1.125,"pitch":136.1875,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.328"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-149.9375,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.25,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.8125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-134.25,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.4375,"pitch":-54.625,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":1.0,"pitch":136.125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.379"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-149.9375,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.1875,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":136.9375,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-134.4375,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-54.6875,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":0.9375,"pitch":136.0625,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.430"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.875,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":137.0,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-134.5625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.6875,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":1.0,"pitch":136.0,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.481"} +{"sensors":[{"euler":{"heading":358.25,"pitch":-149.8125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":136.9375,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-134.625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":2.0,"pitch":-54.625,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":1.25,"pitch":136.0625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.532"} +{"sensors":[{"euler":{"heading":358.375,"pitch":-149.6875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":137.1875,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":359.25,"pitch":-134.5625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":2.0,"pitch":-54.5625,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":1.25,"pitch":136.0625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.583"} +{"sensors":[{"euler":{"heading":358.3125,"pitch":-149.625,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.0625,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":137.375,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-134.625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-54.5,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":1.125,"pitch":135.9375,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.634"} +{"sensors":[{"euler":{"heading":358.25,"pitch":-149.625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.0625,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.4375,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-134.625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.8125,"pitch":-54.5,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":1.0,"pitch":135.8125,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.685"} +{"sensors":[{"euler":{"heading":358.1875,"pitch":-149.6875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.0,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.5,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.6875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.5,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.875,"pitch":135.75,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.735"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.6875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.0,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.4375,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-134.6875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.5,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.875,"pitch":135.75,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.787"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.6875,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.0,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.4375,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-134.6875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.5,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.9375,"pitch":135.75,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.838"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.0,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.375,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-134.625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.5625,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.875,"pitch":135.6875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.889"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":-149.75,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.0625,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.375,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.5625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.8125,"pitch":-54.5625,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.8125,"pitch":135.625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.939"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":-149.75,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.0625,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.375,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-134.5625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.5625,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.625,"pitch":135.6875,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:05.990"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-149.875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.0,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.3125,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.25,"pitch":-134.5,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.5625,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.75,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.41"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-149.875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.0,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.3125,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-134.375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.5625,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.6875,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.92"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-149.875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.0,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.25,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":-134.3125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-54.5,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.625,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.143"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-149.875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.0,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.25,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":-134.25,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.4375,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.625,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.193"} +{"sensors":[{"euler":{"heading":357.8125,"pitch":-149.9375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.0,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":137.25,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-134.125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":1.75,"pitch":-54.5,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":0.3125,"pitch":135.5625,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.244"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":-150.0625,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":148.9375,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.3125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-134.0625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-54.5625,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":135.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.295"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.1875,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":149.0,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.3125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.3125,"pitch":-134.0625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.625,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":135.4375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.346"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.1875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":149.0,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.25,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-134.0,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.625,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":135.4375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.397"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.1875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":149.0625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.25,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-133.875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.625,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":135.3125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.448"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.25,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":149.0625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.1875,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-133.8125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.75,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":135.25,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.498"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.3125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":149.0625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.1875,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-133.8125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":1.5,"pitch":-54.75,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":135.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.550"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":149.125,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.1875,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-133.8125,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.75,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.625,"pitch":135.125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.601"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.3125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":149.1875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.1875,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-133.75,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.75,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.625,"pitch":135.125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.651"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.3125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.1875,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":-133.75,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.6875,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":135.1875,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.702"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.25,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.125,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-133.75,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-54.625,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":135.1875,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.753"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.25,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.125,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.625,"pitch":-133.6875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-54.625,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":135.1875,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.803"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.25,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.25,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-133.75,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.625,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":135.125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.855"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.25,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.1875,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.25,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-133.875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.5,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":135.125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.905"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.25,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.1875,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.375,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":359.3125,"pitch":-133.9375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-54.5,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":135.125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:06.956"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.25,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.1875,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.4375,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-133.9375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-54.4375,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":135.125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.7"} +{"sensors":[{"euler":{"heading":357.625,"pitch":-150.125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.1875,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.5,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-133.9375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.6875,"pitch":-54.375,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":135.1875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.58"} +{"sensors":[{"euler":{"heading":357.8125,"pitch":-150.0,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.1875,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":137.5,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-134.0,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.75,"pitch":-54.3125,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":135.25,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.108"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-149.9375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":149.25,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":137.625,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.6875,"pitch":-134.0,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.3125,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":135.25,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.160"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-149.875,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":149.25,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-134.0,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.3125,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.3125,"pitch":135.3125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.211"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":-149.8125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":149.1875,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-134.0,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.3125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.262"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":149.125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-134.0625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-54.375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.313"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":149.0625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-134.0625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-54.375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.364"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.0625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-134.0625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-54.375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.415"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.0625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-134.0625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-54.375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.3125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.467"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.0625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-134.0625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-54.375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.3125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.518"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.0625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-134.0625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-54.375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.3125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.568"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.0625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-134.0625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":2.0,"pitch":-54.3125,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.619"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.0625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-134.0625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":2.0,"pitch":-54.3125,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":135.375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.670"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.0625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-134.125,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":2.0625,"pitch":-54.25,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":135.4375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.721"} +{"sensors":[{"euler":{"heading":358.1875,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.0,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-134.1875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":2.0625,"pitch":-54.1875,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.625,"pitch":135.4375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.772"} +{"sensors":[{"euler":{"heading":358.125,"pitch":-149.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":149.0,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-134.1875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":2.0625,"pitch":-54.25,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":135.4375,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.823"} +{"sensors":[{"euler":{"heading":358.0,"pitch":-149.8125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":149.0,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.8125,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.6875,"pitch":-134.25,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":2.0625,"pitch":-54.25,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.375,"pitch":135.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.874"} +{"sensors":[{"euler":{"heading":357.875,"pitch":-149.875,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.0,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.8125,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-134.3125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":2.0625,"pitch":-54.25,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":135.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.925"} +{"sensors":[{"euler":{"heading":357.8125,"pitch":-149.9375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.0,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.8125,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-134.375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":2.0625,"pitch":-54.3125,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":135.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:07.976"} +{"sensors":[{"euler":{"heading":357.625,"pitch":-150.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.0625,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":137.875,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.4375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":2.0625,"pitch":-54.375,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":135.5625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.28"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":138.0,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.5,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":2.0,"pitch":-54.4375,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":135.5625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.79"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.1875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":149.25,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":138.0625,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-134.5625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-54.4375,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":135.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.130"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.25,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":149.3125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":138.125,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":358.5625,"pitch":-134.625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.5625,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":135.4375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.181"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.4375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":138.0,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-134.625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-54.75,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":135.4375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.231"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.4375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":137.875,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-134.625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.8125,"pitch":-54.9375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":359.5625,"pitch":135.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.282"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.0625,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.4375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":137.8125,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":358.4375,"pitch":-134.6875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.75,"pitch":-55.0625,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":135.5625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.332"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.4375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":137.8125,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":358.1875,"pitch":-134.75,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-55.1875,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":135.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.383"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.4375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":137.9375,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":358.0,"pitch":-134.8125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-55.25,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":359.25,"pitch":135.5625,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.434"} +{"sensors":[{"euler":{"heading":357.25,"pitch":-150.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.4375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":137.9375,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":357.9375,"pitch":-134.875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-55.3125,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":359.25,"pitch":135.5,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.485"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.4375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":137.9375,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":357.9375,"pitch":-134.875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-55.3125,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":359.25,"pitch":135.5625,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.536"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":137.9375,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":357.9375,"pitch":-134.875,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-55.25,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":135.6875,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.587"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":137.9375,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":357.8125,"pitch":-135.0,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-55.25,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":135.75,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.638"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.3125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":138.0,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":357.75,"pitch":-135.0625,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":1.6875,"pitch":-55.3125,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":359.25,"pitch":135.75,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.689"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.0625,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":149.1875,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":138.0,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":357.6875,"pitch":-135.0625,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":1.6875,"pitch":-55.375,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":359.1875,"pitch":135.75,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.739"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.0,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.1875,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":138.0625,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":357.8125,"pitch":-135.0625,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":1.75,"pitch":-55.3125,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":135.8125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.790"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-149.9375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":138.0625,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":358.125,"pitch":-135.0,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.8125,"pitch":-55.25,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":135.875,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.842"} +{"sensors":[{"euler":{"heading":357.5625,"pitch":-149.9375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.1875,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":138.0,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":358.3125,"pitch":-134.8125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-55.1875,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":359.625,"pitch":136.0,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.893"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-149.9375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":149.125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":138.0625,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":358.375,"pitch":-134.5625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.8125,"pitch":-55.0625,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":359.625,"pitch":136.1875,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.943"} +{"sensors":[{"euler":{"heading":357.25,"pitch":-150.0,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":148.9375,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":138.1875,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":358.125,"pitch":-134.625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.75,"pitch":-54.9375,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":136.125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:08.995"} +{"sensors":[{"euler":{"heading":356.9375,"pitch":-150.125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.5,"pitch":148.75,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":138.375,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":357.8125,"pitch":-134.6875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.6875,"pitch":-54.8125,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":359.125,"pitch":136.1875,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.45"} +{"sensors":[{"euler":{"heading":356.875,"pitch":-150.1875,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":148.75,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":138.5,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":357.9375,"pitch":-134.8125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.8125,"pitch":-54.75,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":359.125,"pitch":135.9375,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.96"} +{"sensors":[{"euler":{"heading":357.0625,"pitch":-150.125,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":149.125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":138.5,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":358.375,"pitch":-134.6875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":2.0,"pitch":-54.6875,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":135.875,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.148"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.0,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.375,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":138.3125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-134.5625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":2.125,"pitch":-54.625,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":136.0,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.199"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-149.875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.375,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":138.25,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-134.375,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":2.1875,"pitch":-54.625,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":136.125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.250"} +{"sensors":[{"euler":{"heading":357.75,"pitch":-149.875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.375,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":138.25,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.25,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":2.125,"pitch":-54.625,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":136.25,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.300"} +{"sensors":[{"euler":{"heading":357.625,"pitch":-150.0,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.4375,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":138.3125,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-134.1875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":2.0625,"pitch":-54.75,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":136.25,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.351"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.0,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.4375,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":138.375,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-134.125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":2.0,"pitch":-54.8125,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":136.1875,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.402"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.0625,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.4375,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":138.375,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.1875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-54.9375,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":136.125,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.452"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.125,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.5,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":138.25,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-134.125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-55.0625,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":136.125,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.503"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.625,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":138.125,"roll":75.125},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.0625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-55.125,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":136.125,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.554"} +{"sensors":[{"euler":{"heading":357.5,"pitch":-150.1875,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":149.75,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":137.9375,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.0,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.75,"pitch":-55.3125,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":136.125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.604"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.25,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":149.9375,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":90.0,"pitch":137.8125,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-133.9375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.75,"pitch":-55.5,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":136.125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.655"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":-150.375,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":150.0,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":137.6875,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-133.875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.6875,"pitch":-55.6875,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":136.125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.706"} +{"sensors":[{"euler":{"heading":357.375,"pitch":-150.4375,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":150.0625,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":89.875,"pitch":137.625,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":358.75,"pitch":-133.8125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.6875,"pitch":-55.875,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":136.0625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.757"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":-150.5,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":0.875,"pitch":150.125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":137.5625,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-133.6875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-56.0625,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":136.125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.807"} +{"sensors":[{"euler":{"heading":357.25,"pitch":-150.625,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":150.125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":137.5,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":358.75,"pitch":-133.625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-56.1875,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":359.625,"pitch":136.125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.858"} +{"sensors":[{"euler":{"heading":357.25,"pitch":-150.6875,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":150.125,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":137.375,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-133.5625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-56.1875,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":359.5625,"pitch":136.25,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.909"} +{"sensors":[{"euler":{"heading":357.125,"pitch":-150.75,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":150.1875,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":89.75,"pitch":137.25,"roll":75.4375},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-133.375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.5,"pitch":-56.1875,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":359.4375,"pitch":136.3125,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:09.960"} +{"sensors":[{"euler":{"heading":357.0625,"pitch":-150.875,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":150.25,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":137.1875,"roll":75.4375},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-133.1875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.5,"pitch":-56.1875,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":136.375,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.10"} +{"sensors":[{"euler":{"heading":357.0,"pitch":-150.875,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":150.375,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":137.125,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-133.0,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.5,"pitch":-56.125,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":359.25,"pitch":136.375,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.61"} +{"sensors":[{"euler":{"heading":356.8125,"pitch":-150.9375,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":0.4375,"pitch":150.5625,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":89.625,"pitch":137.125,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-132.875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":1.4375,"pitch":-56.125,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":359.1875,"pitch":136.4375,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.112"} +{"sensors":[{"euler":{"heading":356.6875,"pitch":-150.9375,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":0.3125,"pitch":150.5625,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":137.125,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":-132.875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":1.375,"pitch":-56.25,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":359.125,"pitch":136.375,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.162"} +{"sensors":[{"euler":{"heading":356.625,"pitch":-150.9375,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":0.3125,"pitch":150.5625,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":89.5,"pitch":137.125,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":-132.8125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":1.3125,"pitch":-56.375,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":359.25,"pitch":136.25,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.213"} +{"sensors":[{"euler":{"heading":356.75,"pitch":-150.9375,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":150.6875,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":89.5,"pitch":136.875,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-132.75,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.3125,"pitch":-56.375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.4375,"pitch":136.25,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.264"} +{"sensors":[{"euler":{"heading":356.8125,"pitch":-150.9375,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":150.75,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":89.625,"pitch":136.625,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-132.625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.375,"pitch":-56.4375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.5625,"pitch":136.3125,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.315"} +{"sensors":[{"euler":{"heading":356.8125,"pitch":-151.0,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":0.3125,"pitch":150.625,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":89.625,"pitch":136.5,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-132.4375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.375,"pitch":-56.5,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":359.5625,"pitch":136.4375,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.365"} +{"sensors":[{"euler":{"heading":356.5625,"pitch":-151.125,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":150.5625,"roll":73.125},"location":"Left Ankle"},{"euler":{"heading":89.5,"pitch":136.5,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":359.6875,"pitch":-132.3125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.25,"pitch":-56.625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":136.5,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.416"} +{"sensors":[{"euler":{"heading":356.3125,"pitch":-151.3125,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":150.5625,"roll":73.125},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":136.625,"roll":75.625},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-132.3125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":1.0625,"pitch":-56.8125,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":359.0625,"pitch":136.5,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.467"} +{"sensors":[{"euler":{"heading":356.1875,"pitch":-151.375,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":150.6875,"roll":73.0625},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":136.5625,"roll":75.6875},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-132.375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":1.0,"pitch":-57.0,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":358.8125,"pitch":136.375,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.518"} +{"sensors":[{"euler":{"heading":356.125,"pitch":-151.4375,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":150.75,"roll":73.0},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":136.4375,"roll":75.6875},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-132.375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-57.0625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":358.75,"pitch":136.4375,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.568"} +{"sensors":[{"euler":{"heading":356.125,"pitch":-151.4375,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":150.8125,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":136.25,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":359.3125,"pitch":-132.25,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-57.1875,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":358.75,"pitch":136.4375,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.619"} +{"sensors":[{"euler":{"heading":356.125,"pitch":-151.5,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":151.0625,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":136.125,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-132.25,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-57.25,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":358.625,"pitch":136.375,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.669"} +{"sensors":[{"euler":{"heading":355.9375,"pitch":-151.5625,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":0.0625,"pitch":151.125,"roll":72.875},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":136.0,"roll":75.8125},"location":"Right Ankle"},{"euler":{"heading":359.25,"pitch":-132.125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-57.375,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":358.3125,"pitch":136.25,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.720"} +{"sensors":[{"euler":{"heading":355.625,"pitch":-151.5625,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":359.875,"pitch":151.125,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":136.0625,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-132.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":0.5,"pitch":-57.5625,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":357.9375,"pitch":136.125,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.770"} +{"sensors":[{"euler":{"heading":355.4375,"pitch":-151.5625,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":359.5625,"pitch":151.4375,"roll":72.625},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":136.0625,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":358.75,"pitch":-132.25,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":0.375,"pitch":-57.625,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":357.625,"pitch":135.9375,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.822"} +{"sensors":[{"euler":{"heading":355.0625,"pitch":-151.5,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":359.3125,"pitch":151.9375,"roll":72.5},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":135.9375,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-132.25,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":0.3125,"pitch":-57.75,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":357.5,"pitch":135.75,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.872"} +{"sensors":[{"euler":{"heading":355.3125,"pitch":-151.3125,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":359.375,"pitch":152.5625,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":135.6875,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-132.1875,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":0.125,"pitch":-57.875,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":357.875,"pitch":135.1875,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.923"} +{"sensors":[{"euler":{"heading":355.9375,"pitch":-151.0,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":359.6875,"pitch":153.5,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":135.375,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-132.1875,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":359.875,"pitch":-58.0625,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":358.0625,"pitch":134.5625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:10.973"} +{"sensors":[{"euler":{"heading":356.5,"pitch":-150.4375,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":0.0625,"pitch":155.0,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":87.9375,"pitch":135.5,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-132.125,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":359.75,"pitch":-58.5625,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":357.875,"pitch":133.8125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.24"} +{"sensors":[{"euler":{"heading":357.25,"pitch":-149.5625,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":0.5625,"pitch":157.3125,"roll":72.1875},"location":"Left Ankle"},{"euler":{"heading":87.4375,"pitch":135.8125,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-132.125,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":359.5625,"pitch":-59.4375,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":357.4375,"pitch":132.9375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.75"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-148.5625,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":1.25,"pitch":160.0,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":86.5,"pitch":136.5625,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":358.25,"pitch":-132.375,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":359.1875,"pitch":-60.0625,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":356.375,"pitch":131.4375,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.126"} +{"sensors":[{"euler":{"heading":358.625,"pitch":-147.3125,"roll":54.4375},"location":"Left Knee"},{"euler":{"heading":3.8125,"pitch":164.625,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":139.0625,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":357.75,"pitch":-131.5,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":358.6875,"pitch":-60.5625,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":354.25,"pitch":128.875,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.177"} +{"sensors":[{"euler":{"heading":359.4375,"pitch":-146.1875,"roll":53.5625},"location":"Left Knee"},{"euler":{"heading":5.1875,"pitch":170.0,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":141.75,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-130.5,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":358.75,"pitch":-60.5625,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":351.75,"pitch":126.25,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.228"} +{"sensors":[{"euler":{"heading":359.5,"pitch":-145.8125,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":4.1875,"pitch":170.9375,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":142.0625,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":358.5625,"pitch":-130.875,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":359.0,"pitch":-60.875,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":350.9375,"pitch":125.375,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.279"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":-146.875,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":1.4375,"pitch":166.375,"roll":72.1875},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":141.25,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":357.6875,"pitch":-131.75,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":359.375,"pitch":-61.75,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":350.6875,"pitch":124.625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.330"} +{"sensors":[{"euler":{"heading":355.125,"pitch":-149.75,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":359.0,"pitch":158.125,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":83.125,"pitch":141.9375,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":357.25,"pitch":-132.125,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":359.875,"pitch":-62.75,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":350.1875,"pitch":124.0,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.381"} +{"sensors":[{"euler":{"heading":351.5625,"pitch":-152.875,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":356.5,"pitch":150.75,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":82.1875,"pitch":143.375,"roll":78.9375},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-132.125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":-63.375,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":349.8125,"pitch":123.75,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.433"} +{"sensors":[{"euler":{"heading":347.875,"pitch":-156.125,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":353.5625,"pitch":143.75,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":144.625,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":356.4375,"pitch":-132.5,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":0.25,"pitch":-64.375,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":349.0625,"pitch":123.75,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.483"} +{"sensors":[{"euler":{"heading":344.75,"pitch":-158.9375,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":350.9375,"pitch":138.3125,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":146.0,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":355.6875,"pitch":-133.3125,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":0.625,"pitch":-65.375,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":348.3125,"pitch":123.625,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.534"} +{"sensors":[{"euler":{"heading":341.6875,"pitch":-162.0,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":348.5625,"pitch":133.5625,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":80.5,"pitch":147.625,"roll":80.0625},"location":"Right Ankle"},{"euler":{"heading":354.9375,"pitch":-133.9375,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":1.1875,"pitch":-66.5625,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":347.9375,"pitch":123.5,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.585"} +{"sensors":[{"euler":{"heading":339.625,"pitch":-164.5625,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":347.125,"pitch":130.3125,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":150.1875,"roll":80.375},"location":"Right Ankle"},{"euler":{"heading":354.5,"pitch":-134.625,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":-67.3125,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":348.25,"pitch":123.6875,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.635"} +{"sensors":[{"euler":{"heading":340.6875,"pitch":-164.25,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":346.9375,"pitch":127.9375,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":153.4375,"roll":80.8125},"location":"Right Ankle"},{"euler":{"heading":354.0625,"pitch":-135.375,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":2.75,"pitch":-68.125,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":348.9375,"pitch":124.125,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.686"} +{"sensors":[{"euler":{"heading":340.375,"pitch":-165.0625,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":346.625,"pitch":126.1875,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":157.5,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":353.5625,"pitch":-136.5,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":4.0,"pitch":-69.0625,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":350.5625,"pitch":124.875,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.737"} +{"sensors":[{"euler":{"heading":341.0625,"pitch":-164.5625,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":347.625,"pitch":126.25,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":77.875,"pitch":163.0,"roll":81.4375},"location":"Right Ankle"},{"euler":{"heading":353.25,"pitch":-137.25,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":5.5625,"pitch":-69.9375,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":352.125,"pitch":125.75,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.788"} +{"sensors":[{"euler":{"heading":344.1875,"pitch":-162.9375,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":350.1875,"pitch":128.75,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":170.25,"roll":81.5},"location":"Right Ankle"},{"euler":{"heading":353.0625,"pitch":-138.0,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":7.3125,"pitch":-70.6875,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":354.3125,"pitch":127.0,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.839"} +{"sensors":[{"euler":{"heading":345.6875,"pitch":-161.9375,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":351.4375,"pitch":129.3125,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":76.125,"pitch":179.25,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":352.3125,"pitch":-138.75,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":8.9375,"pitch":-71.4375,"roll":65.4375},"location":"Right Knee"},{"euler":{"heading":356.5,"pitch":129.0625,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.890"} +{"sensors":[{"euler":{"heading":347.8125,"pitch":-159.6875,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":352.5,"pitch":130.125,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-170.625,"roll":80.8125},"location":"Right Ankle"},{"euler":{"heading":351.625,"pitch":-138.9375,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":10.875,"pitch":-72.0625,"roll":63.9375},"location":"Right Knee"},{"euler":{"heading":356.8125,"pitch":129.5625,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.941"} +{"sensors":[{"euler":{"heading":349.5625,"pitch":-157.875,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":354.125,"pitch":130.6875,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":73.8125,"pitch":-160.625,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":352.3125,"pitch":-139.0,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":13.1875,"pitch":-71.5,"roll":62.0625},"location":"Right Knee"},{"euler":{"heading":358.1875,"pitch":130.5625,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:11.992"} +{"sensors":[{"euler":{"heading":352.0,"pitch":-156.125,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":355.6875,"pitch":130.6875,"roll":72.875},"location":"Left Ankle"},{"euler":{"heading":71.75,"pitch":-150.8125,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":353.0625,"pitch":-138.4375,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":15.5,"pitch":-70.9375,"roll":60.0},"location":"Right Knee"},{"euler":{"heading":0.3125,"pitch":132.0,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.43"} +{"sensors":[{"euler":{"heading":353.3125,"pitch":-154.4375,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":356.75,"pitch":130.0625,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":70.125,"pitch":-142.375,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":354.125,"pitch":-137.3125,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":18.9375,"pitch":-70.5625,"roll":57.5},"location":"Right Knee"},{"euler":{"heading":1.25,"pitch":133.1875,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.94"} +{"sensors":[{"euler":{"heading":354.9375,"pitch":-152.625,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":358.0625,"pitch":129.6875,"roll":75.5},"location":"Left Ankle"},{"euler":{"heading":65.3125,"pitch":-131.9375,"roll":73.9375},"location":"Right Ankle"},{"euler":{"heading":356.0,"pitch":-134.125,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":20.875,"pitch":-70.9375,"roll":54.5},"location":"Right Knee"},{"euler":{"heading":1.9375,"pitch":133.8125,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.146"} +{"sensors":[{"euler":{"heading":356.5,"pitch":-150.75,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":359.0625,"pitch":130.0625,"roll":76.5},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-123.375,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":357.9375,"pitch":-131.25,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":22.5,"pitch":-71.75,"roll":52.625},"location":"Right Knee"},{"euler":{"heading":2.25,"pitch":134.0,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.197"} +{"sensors":[{"euler":{"heading":358.375,"pitch":-148.875,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":130.0625,"roll":77.6875},"location":"Left Ankle"},{"euler":{"heading":56.25,"pitch":-119.0625,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":359.875,"pitch":-127.625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":24.1875,"pitch":-72.375,"roll":50.6875},"location":"Right Knee"},{"euler":{"heading":2.5625,"pitch":133.875,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.248"} +{"sensors":[{"euler":{"heading":0.375,"pitch":-147.25,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":2.5,"pitch":130.75,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":57.0,"pitch":-120.6875,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":1.6875,"pitch":-124.9375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":25.875,"pitch":-71.25,"roll":50.25},"location":"Right Knee"},{"euler":{"heading":2.9375,"pitch":134.0625,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.299"} +{"sensors":[{"euler":{"heading":1.6875,"pitch":-145.6875,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":3.75,"pitch":132.6875,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":-125.0,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":4.0,"pitch":-122.75,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":25.375,"pitch":-69.875,"roll":51.875},"location":"Right Knee"},{"euler":{"heading":3.3125,"pitch":134.375,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.350"} +{"sensors":[{"euler":{"heading":3.625,"pitch":-144.125,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":4.875,"pitch":135.1875,"roll":80.125},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":-132.6875,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":6.3125,"pitch":-120.875,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":22.8125,"pitch":-67.25,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":3.9375,"pitch":134.75,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.401"} +{"sensors":[{"euler":{"heading":5.1875,"pitch":-142.625,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":6.0,"pitch":138.1875,"roll":80.75},"location":"Left Ankle"},{"euler":{"heading":70.9375,"pitch":-145.875,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":8.8125,"pitch":-119.3125,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":19.0,"pitch":-64.0625,"roll":60.375},"location":"Right Knee"},{"euler":{"heading":4.6875,"pitch":135.1875,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.452"} +{"sensors":[{"euler":{"heading":6.375,"pitch":-141.25,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":6.6875,"pitch":141.0625,"roll":81.0625},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":-168.5625,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":11.3125,"pitch":-118.1875,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":14.375,"pitch":-60.8125,"roll":64.25},"location":"Right Knee"},{"euler":{"heading":5.625,"pitch":136.3125,"roll":79.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.502"} +{"sensors":[{"euler":{"heading":7.5,"pitch":-139.8125,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":7.25,"pitch":144.0,"roll":81.375},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":163.5,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":13.4375,"pitch":-117.375,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":9.5625,"pitch":-55.0625,"roll":68.9375},"location":"Right Knee"},{"euler":{"heading":6.3125,"pitch":137.5625,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.552"} +{"sensors":[{"euler":{"heading":8.0625,"pitch":-138.8125,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":7.75,"pitch":148.5,"roll":81.5625},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":142.9375,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":14.75,"pitch":-116.8125,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":5.0,"pitch":-45.0,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":6.6875,"pitch":138.375,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.604"} +{"sensors":[{"euler":{"heading":8.8125,"pitch":-137.6875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":8.375,"pitch":153.1875,"roll":81.8125},"location":"Left Ankle"},{"euler":{"heading":97.1875,"pitch":132.3125,"roll":70.8125},"location":"Right Ankle"},{"euler":{"heading":15.0625,"pitch":-116.875,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":1.625,"pitch":-36.5,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":6.6875,"pitch":139.0625,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.654"} +{"sensors":[{"euler":{"heading":9.75,"pitch":-136.5,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":9.375,"pitch":159.4375,"roll":81.875},"location":"Left Ankle"},{"euler":{"heading":102.375,"pitch":126.5625,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":14.5625,"pitch":-117.5,"roll":46.0},"location":"Right Hip"},{"euler":{"heading":358.1875,"pitch":-25.125,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":6.5,"pitch":139.75,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.705"} +{"sensors":[{"euler":{"heading":10.5,"pitch":-135.1875,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":9.5,"pitch":166.9375,"roll":81.1875},"location":"Left Ankle"},{"euler":{"heading":106.0,"pitch":122.8125,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":13.5,"pitch":-118.4375,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":354.8125,"pitch":-15.375,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":6.5,"pitch":140.875,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.756"} +{"sensors":[{"euler":{"heading":11.3125,"pitch":-133.75,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":9.9375,"pitch":174.125,"roll":80.5},"location":"Left Ankle"},{"euler":{"heading":105.125,"pitch":123.5,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":11.875,"pitch":-119.4375,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":353.8125,"pitch":-14.0,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":6.25,"pitch":141.875,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.807"} +{"sensors":[{"euler":{"heading":12.0625,"pitch":-132.8125,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":10.5625,"pitch":-179.1875,"roll":79.8125},"location":"Left Ankle"},{"euler":{"heading":103.0,"pitch":124.625,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":10.0625,"pitch":-120.1875,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":352.875,"pitch":-17.0,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":6.0625,"pitch":142.6875,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.858"} +{"sensors":[{"euler":{"heading":13.0625,"pitch":-131.5625,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":11.8125,"pitch":-171.8125,"roll":78.875},"location":"Left Ankle"},{"euler":{"heading":99.9375,"pitch":126.1875,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":7.25,"pitch":-121.6875,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":352.0,"pitch":-22.25,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":6.1875,"pitch":143.625,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.908"} +{"sensors":[{"euler":{"heading":14.75,"pitch":-129.8125,"roll":51.125},"location":"Left Knee"},{"euler":{"heading":13.125,"pitch":-164.625,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":97.0,"pitch":127.5625,"roll":68.75},"location":"Right Ankle"},{"euler":{"heading":6.125,"pitch":-123.375,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":351.1875,"pitch":-25.875,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":6.4375,"pitch":144.0,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:12.959"} +{"sensors":[{"euler":{"heading":16.5625,"pitch":-128.625,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":15.1875,"pitch":-157.5,"roll":75.4375},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":128.375,"roll":70.125},"location":"Right Ankle"},{"euler":{"heading":5.125,"pitch":-124.125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":350.9375,"pitch":-30.875,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":5.5,"pitch":143.6875,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.10"} +{"sensors":[{"euler":{"heading":17.75,"pitch":-127.9375,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":17.9375,"pitch":-150.3125,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":92.375,"pitch":128.75,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":3.375,"pitch":-125.3125,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":351.25,"pitch":-36.5,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":4.25,"pitch":143.125,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.61"} +{"sensors":[{"euler":{"heading":20.25,"pitch":-127.0,"roll":44.9375},"location":"Left Knee"},{"euler":{"heading":21.1875,"pitch":-143.5625,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":128.9375,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":2.0,"pitch":-126.375,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":351.375,"pitch":-41.1875,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":1.9375,"pitch":140.625,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.112"} +{"sensors":[{"euler":{"heading":22.5625,"pitch":-126.3125,"roll":42.0625},"location":"Left Knee"},{"euler":{"heading":24.625,"pitch":-137.75,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":90.0,"pitch":129.125,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":1.375,"pitch":-127.125,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":352.1875,"pitch":-46.1875,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":138.125,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.164"} +{"sensors":[{"euler":{"heading":25.8125,"pitch":-125.5,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":30.25,"pitch":-132.625,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":129.0,"roll":74.125},"location":"Right Ankle"},{"euler":{"heading":0.9375,"pitch":-127.6875,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":353.1875,"pitch":-50.375,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":357.0,"pitch":133.9375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.215"} +{"sensors":[{"euler":{"heading":29.3125,"pitch":-124.5,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":34.3125,"pitch":-129.375,"roll":61.875},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":129.1875,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":0.375,"pitch":-127.6875,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":353.625,"pitch":-53.75,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":355.0,"pitch":129.5625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.265"} +{"sensors":[{"euler":{"heading":28.625,"pitch":-125.5,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":30.9375,"pitch":-133.3125,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":87.625,"pitch":129.875,"roll":75.625},"location":"Right Ankle"},{"euler":{"heading":359.6875,"pitch":-128.0,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":354.5,"pitch":-57.0,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":353.625,"pitch":126.4375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.316"} +{"sensors":[{"euler":{"heading":23.1875,"pitch":-128.1875,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":23.375,"pitch":-143.125,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":130.4375,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-128.1875,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":355.1875,"pitch":-59.9375,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":352.0625,"pitch":124.75,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.367"} +{"sensors":[{"euler":{"heading":14.75,"pitch":-131.75,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":13.1875,"pitch":-155.0,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":130.1875,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":358.375,"pitch":-128.5,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":355.5625,"pitch":-62.0625,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":350.0625,"pitch":124.0625,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.418"} +{"sensors":[{"euler":{"heading":3.9375,"pitch":-137.1875,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":4.5625,"pitch":-172.0625,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":84.0625,"pitch":130.875,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":357.25,"pitch":-128.9375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":355.6875,"pitch":-63.9375,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":347.8125,"pitch":122.875,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.469"} +{"sensors":[{"euler":{"heading":356.875,"pitch":-141.25,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":357.25,"pitch":168.4375,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":131.375,"roll":79.125},"location":"Right Ankle"},{"euler":{"heading":356.375,"pitch":-129.3125,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":355.6875,"pitch":-64.8125,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":345.8125,"pitch":122.125,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.519"} +{"sensors":[{"euler":{"heading":350.3125,"pitch":-146.5,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":352.25,"pitch":150.6875,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":132.9375,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":355.875,"pitch":-129.5625,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":355.875,"pitch":-66.0,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":344.3125,"pitch":121.5,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.570"} +{"sensors":[{"euler":{"heading":344.0625,"pitch":-153.4375,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":348.4375,"pitch":137.25,"roll":73.0},"location":"Left Ankle"},{"euler":{"heading":79.6875,"pitch":136.6875,"roll":80.75},"location":"Right Ankle"},{"euler":{"heading":355.4375,"pitch":-129.6875,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":356.375,"pitch":-67.6875,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":344.0,"pitch":121.0625,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.621"} +{"sensors":[{"euler":{"heading":339.9375,"pitch":-159.6875,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":345.6875,"pitch":128.3125,"roll":71.25},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":140.375,"roll":81.4375},"location":"Right Ankle"},{"euler":{"heading":354.9375,"pitch":-130.1875,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":357.3125,"pitch":-69.125,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":344.5,"pitch":121.0,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.672"} +{"sensors":[{"euler":{"heading":336.5,"pitch":-165.625,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":343.25,"pitch":122.1875,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":144.9375,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":354.5625,"pitch":-131.0625,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":358.875,"pitch":-70.375,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":346.5,"pitch":121.8125,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.723"} +{"sensors":[{"euler":{"heading":334.6875,"pitch":-170.4375,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":342.0625,"pitch":119.25,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":150.875,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":354.4375,"pitch":-132.0,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":1.25,"pitch":-70.9375,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":348.875,"pitch":123.125,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.774"} +{"sensors":[{"euler":{"heading":335.6875,"pitch":-172.1875,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":342.3125,"pitch":118.25,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":159.1875,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":354.75,"pitch":-132.6875,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":3.8125,"pitch":-71.625,"roll":69.25},"location":"Right Knee"},{"euler":{"heading":350.8125,"pitch":124.0625,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.824"} +{"sensors":[{"euler":{"heading":339.875,"pitch":-170.0625,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":346.0,"pitch":120.9375,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":169.5,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":354.75,"pitch":-133.1875,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":6.625,"pitch":-72.4375,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":352.9375,"pitch":125.0,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.875"} +{"sensors":[{"euler":{"heading":342.8125,"pitch":-168.625,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":349.5625,"pitch":122.0,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":77.375,"pitch":-177.5625,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":354.4375,"pitch":-133.625,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":10.0625,"pitch":-73.0625,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":355.3125,"pitch":126.8125,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.925"} +{"sensors":[{"euler":{"heading":346.0625,"pitch":-165.5625,"roll":60.8125},"location":"Left Knee"},{"euler":{"heading":351.6875,"pitch":123.25,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":-161.625,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":354.375,"pitch":-133.1875,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":13.625,"pitch":-73.9375,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":355.8125,"pitch":127.6875,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:13.976"} +{"sensors":[{"euler":{"heading":348.1875,"pitch":-162.875,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":353.4375,"pitch":124.0,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":74.4375,"pitch":-147.125,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":355.125,"pitch":-132.5,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":16.8125,"pitch":-74.125,"roll":60.875},"location":"Right Knee"},{"euler":{"heading":356.625,"pitch":128.1875,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.26"} +{"sensors":[{"euler":{"heading":350.25,"pitch":-160.4375,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":354.6875,"pitch":124.625,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-135.5,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":356.625,"pitch":-131.5625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":19.875,"pitch":-73.5625,"roll":58.25},"location":"Right Knee"},{"euler":{"heading":357.9375,"pitch":128.9375,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.78"} +{"sensors":[{"euler":{"heading":351.25,"pitch":-158.375,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":355.875,"pitch":125.625,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-124.875,"roll":74.3125},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-129.6875,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":24.0625,"pitch":-72.8125,"roll":55.0},"location":"Right Knee"},{"euler":{"heading":358.375,"pitch":129.6875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.128"} +{"sensors":[{"euler":{"heading":352.4375,"pitch":-156.5625,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":357.5625,"pitch":126.6875,"roll":74.5},"location":"Left Ankle"},{"euler":{"heading":62.25,"pitch":-118.5,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":2.25,"pitch":-127.1875,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":26.5625,"pitch":-72.6875,"roll":52.0625},"location":"Right Knee"},{"euler":{"heading":358.5,"pitch":129.875,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.179"} +{"sensors":[{"euler":{"heading":353.375,"pitch":-154.5,"roll":61.4375},"location":"Left Knee"},{"euler":{"heading":358.375,"pitch":125.25,"roll":75.5625},"location":"Left Ankle"},{"euler":{"heading":61.625,"pitch":-116.5,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":4.0,"pitch":-123.9375,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":28.3125,"pitch":-72.375,"roll":51.0},"location":"Right Knee"},{"euler":{"heading":358.125,"pitch":129.6875,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.230"} +{"sensors":[{"euler":{"heading":354.5625,"pitch":-153.0625,"roll":61.5625},"location":"Left Knee"},{"euler":{"heading":359.3125,"pitch":123.6875,"roll":76.5},"location":"Left Ankle"},{"euler":{"heading":61.125,"pitch":-120.4375,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":5.3125,"pitch":-121.625,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":26.8125,"pitch":-71.0625,"roll":51.8125},"location":"Right Knee"},{"euler":{"heading":357.75,"pitch":129.4375,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.280"} +{"sensors":[{"euler":{"heading":355.5625,"pitch":-151.3125,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":123.75,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":62.75,"pitch":-125.625,"roll":71.3125},"location":"Right Ankle"},{"euler":{"heading":6.6875,"pitch":-119.75,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":23.5,"pitch":-69.25,"roll":54.25},"location":"Right Knee"},{"euler":{"heading":358.0,"pitch":129.6875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.330"} +{"sensors":[{"euler":{"heading":356.9375,"pitch":-149.4375,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":0.6875,"pitch":124.125,"roll":77.8125},"location":"Left Ankle"},{"euler":{"heading":66.0625,"pitch":-134.375,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":8.4375,"pitch":-118.4375,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":19.5,"pitch":-66.3125,"roll":57.8125},"location":"Right Knee"},{"euler":{"heading":358.25,"pitch":130.0,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.381"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":-148.125,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":1.0625,"pitch":126.1875,"roll":78.375},"location":"Left Ankle"},{"euler":{"heading":70.9375,"pitch":-154.9375,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":10.3125,"pitch":-117.5,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":15.125,"pitch":-62.125,"roll":61.875},"location":"Right Knee"},{"euler":{"heading":358.6875,"pitch":130.4375,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.432"} +{"sensors":[{"euler":{"heading":359.1875,"pitch":-146.9375,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":2.0,"pitch":127.6875,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-178.875,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":12.125,"pitch":-116.875,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":10.9375,"pitch":-57.1875,"roll":65.875},"location":"Right Knee"},{"euler":{"heading":359.0625,"pitch":130.8125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.483"} +{"sensors":[{"euler":{"heading":0.5625,"pitch":-145.875,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":3.0,"pitch":129.125,"roll":79.875},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":158.375,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":13.375,"pitch":-116.75,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":6.8125,"pitch":-51.5,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":131.3125,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.534"} +{"sensors":[{"euler":{"heading":1.6875,"pitch":-144.75,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":3.625,"pitch":131.5625,"roll":80.3125},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":143.375,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-116.875,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":3.75,"pitch":-44.625,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":0.9375,"pitch":132.3125,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.584"} +{"sensors":[{"euler":{"heading":2.6875,"pitch":-143.625,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":4.0625,"pitch":133.875,"roll":80.625},"location":"Left Ankle"},{"euler":{"heading":95.5625,"pitch":133.3125,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":14.25,"pitch":-117.4375,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":1.3125,"pitch":-37.25,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":1.4375,"pitch":133.25,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.634"} +{"sensors":[{"euler":{"heading":3.4375,"pitch":-142.6875,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":4.5,"pitch":138.8125,"roll":80.75},"location":"Left Ankle"},{"euler":{"heading":100.125,"pitch":127.0625,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":13.5,"pitch":-118.0,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":358.8125,"pitch":-28.625,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":1.8125,"pitch":134.1875,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.685"} +{"sensors":[{"euler":{"heading":4.25,"pitch":-141.5625,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":5.0625,"pitch":143.4375,"roll":80.875},"location":"Left Ankle"},{"euler":{"heading":101.875,"pitch":124.875,"roll":68.5},"location":"Right Ankle"},{"euler":{"heading":12.1875,"pitch":-118.625,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":356.5625,"pitch":-20.875,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":1.6875,"pitch":135.125,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.736"} +{"sensors":[{"euler":{"heading":5.3125,"pitch":-140.4375,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":5.5,"pitch":148.375,"roll":80.8125},"location":"Left Ankle"},{"euler":{"heading":102.375,"pitch":124.0625,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":10.5,"pitch":-119.375,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":355.4375,"pitch":-18.6875,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":2.0625,"pitch":136.1875,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.786"} +{"sensors":[{"euler":{"heading":6.3125,"pitch":-139.3125,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":5.625,"pitch":154.375,"roll":80.3125},"location":"Left Ankle"},{"euler":{"heading":100.375,"pitch":125.875,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":8.1875,"pitch":-120.0,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":355.375,"pitch":-23.3125,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":2.0625,"pitch":137.6875,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.837"} +{"sensors":[{"euler":{"heading":7.5625,"pitch":-137.9375,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":5.9375,"pitch":160.1875,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":127.25,"roll":70.125},"location":"Right Ankle"},{"euler":{"heading":6.125,"pitch":-121.75,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":354.8125,"pitch":-28.9375,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":2.25,"pitch":139.3125,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.887"} +{"sensors":[{"euler":{"heading":9.3125,"pitch":-135.625,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":6.4375,"pitch":166.75,"roll":78.6875},"location":"Left Ankle"},{"euler":{"heading":96.4375,"pitch":128.875,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":3.5625,"pitch":-124.875,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":354.25,"pitch":-30.8125,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":3.5625,"pitch":140.5,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.938"} +{"sensors":[{"euler":{"heading":11.125,"pitch":-133.8125,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":7.4375,"pitch":174.6875,"roll":77.6875},"location":"Left Ankle"},{"euler":{"heading":94.3125,"pitch":128.875,"roll":72.6875},"location":"Right Ankle"},{"euler":{"heading":3.4375,"pitch":-125.4375,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":353.25,"pitch":-34.9375,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":4.4375,"pitch":140.5,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:14.989"} +{"sensors":[{"euler":{"heading":11.9375,"pitch":-132.5,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":8.375,"pitch":-177.25,"roll":76.375},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":128.5625,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":2.3125,"pitch":-126.8125,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":353.6875,"pitch":-40.6875,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":3.6875,"pitch":140.5,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.39"} +{"sensors":[{"euler":{"heading":11.5625,"pitch":-131.5625,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":9.1875,"pitch":-169.3125,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":91.8125,"pitch":127.875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":1.0625,"pitch":-127.625,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":353.6875,"pitch":-45.375,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":2.125,"pitch":139.8125,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.90"} +{"sensors":[{"euler":{"heading":12.125,"pitch":-130.75,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":12.3125,"pitch":-159.5,"roll":72.875},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":127.9375,"roll":75.4375},"location":"Right Ankle"},{"euler":{"heading":0.125,"pitch":-128.125,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":354.375,"pitch":-50.125,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":358.6875,"pitch":136.625,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.141"} +{"sensors":[{"euler":{"heading":14.9375,"pitch":-129.8125,"roll":44.4375},"location":"Left Knee"},{"euler":{"heading":17.5625,"pitch":-150.1875,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":127.5625,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-128.3125,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":355.125,"pitch":-54.9375,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":355.9375,"pitch":132.625,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.192"} +{"sensors":[{"euler":{"heading":18.125,"pitch":-129.1875,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":20.625,"pitch":-145.5,"roll":68.5},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":127.6875,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-128.4375,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":355.625,"pitch":-57.6875,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":353.75,"pitch":129.125,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.243"} +{"sensors":[{"euler":{"heading":18.375,"pitch":-130.0625,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":20.0625,"pitch":-147.0,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":88.1875,"pitch":128.1875,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":358.5625,"pitch":-128.1875,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":355.75,"pitch":-60.4375,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":352.125,"pitch":126.4375,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.293"} +{"sensors":[{"euler":{"heading":15.125,"pitch":-132.5,"roll":44.0625},"location":"Left Knee"},{"euler":{"heading":16.125,"pitch":-153.9375,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":129.0625,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":358.25,"pitch":-128.0,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":355.875,"pitch":-62.5,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":351.0,"pitch":124.8125,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.344"} +{"sensors":[{"euler":{"heading":9.25,"pitch":-136.1875,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":10.4375,"pitch":-165.75,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":129.6875,"roll":79.9375},"location":"Right Ankle"},{"euler":{"heading":357.5625,"pitch":-127.9375,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":355.8125,"pitch":-64.4375,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":349.625,"pitch":124.5625,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.394"} +{"sensors":[{"euler":{"heading":2.375,"pitch":-140.9375,"roll":50.3125},"location":"Left Knee"},{"euler":{"heading":5.0,"pitch":163.125,"roll":72.5},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":130.1875,"roll":80.875},"location":"Right Ankle"},{"euler":{"heading":356.5,"pitch":-127.9375,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":355.625,"pitch":-66.125,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":348.0625,"pitch":123.5,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.445"} +{"sensors":[{"euler":{"heading":355.8125,"pitch":-146.1875,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":359.375,"pitch":158.875,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":131.0625,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":355.875,"pitch":-128.25,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":356.0,"pitch":-67.25,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":346.5625,"pitch":123.125,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.495"} +{"sensors":[{"euler":{"heading":350.0625,"pitch":-151.75,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":354.375,"pitch":147.0,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":133.0625,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":355.0,"pitch":-128.6875,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":356.4375,"pitch":-68.375,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":345.3125,"pitch":123.0,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.546"} +{"sensors":[{"euler":{"heading":344.5625,"pitch":-157.625,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":349.25,"pitch":136.125,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":134.75,"roll":82.8125},"location":"Right Ankle"},{"euler":{"heading":354.3125,"pitch":-129.0,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":356.875,"pitch":-69.5,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":344.8125,"pitch":123.125,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.597"} +{"sensors":[{"euler":{"heading":340.5625,"pitch":-163.1875,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":345.8125,"pitch":129.3125,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":78.0625,"pitch":175.625,"roll":83.3125},"location":"Right Ankle"},{"euler":{"heading":354.125,"pitch":-129.3125,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":357.9375,"pitch":-70.25,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":345.3125,"pitch":123.75,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.648"} +{"sensors":[{"euler":{"heading":337.6875,"pitch":-166.8125,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":344.5625,"pitch":125.0,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":176.4375,"roll":83.625},"location":"Right Ankle"},{"euler":{"heading":354.25,"pitch":-129.875,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":359.625,"pitch":-71.25,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":346.9375,"pitch":124.8125,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.699"} +{"sensors":[{"euler":{"heading":337.875,"pitch":-167.5,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":345.125,"pitch":124.125,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":177.375,"roll":84.0},"location":"Right Ankle"},{"euler":{"heading":354.5625,"pitch":-130.4375,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":1.3125,"pitch":-71.875,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":349.25,"pitch":125.8125,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.749"} +{"sensors":[{"euler":{"heading":342.875,"pitch":-164.875,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":347.9375,"pitch":126.5625,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":76.9375,"pitch":178.3125,"roll":83.8125},"location":"Right Ankle"},{"euler":{"heading":354.8125,"pitch":-131.0,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":3.75,"pitch":-72.375,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":352.0,"pitch":126.9375,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.800"} +{"sensors":[{"euler":{"heading":344.625,"pitch":-163.8125,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":350.4375,"pitch":128.0,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":179.4375,"roll":83.1875},"location":"Right Ankle"},{"euler":{"heading":354.8125,"pitch":-131.6875,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":6.375,"pitch":-72.75,"roll":68.0625},"location":"Right Knee"},{"euler":{"heading":355.125,"pitch":129.0625,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.851"} +{"sensors":[{"euler":{"heading":348.375,"pitch":-161.0625,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":352.6875,"pitch":129.5625,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-171.375,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":354.75,"pitch":-131.375,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":10.0,"pitch":-73.375,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":355.9375,"pitch":129.625,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.901"} +{"sensors":[{"euler":{"heading":350.75,"pitch":-158.8125,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":355.625,"pitch":130.625,"roll":72.375},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":-157.5625,"roll":81.1875},"location":"Right Ankle"},{"euler":{"heading":355.125,"pitch":-130.75,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":13.3125,"pitch":-73.625,"roll":63.5},"location":"Right Knee"},{"euler":{"heading":357.125,"pitch":129.625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:15.952"} +{"sensors":[{"euler":{"heading":353.625,"pitch":-156.8125,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":358.125,"pitch":130.1875,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":-146.5625,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":355.4375,"pitch":-130.6875,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":15.875,"pitch":-73.5,"roll":61.4375},"location":"Right Knee"},{"euler":{"heading":358.875,"pitch":129.625,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.3"} +{"sensors":[{"euler":{"heading":356.0,"pitch":-154.8125,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":359.9375,"pitch":128.625,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-136.8125,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":355.9375,"pitch":-130.5,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":17.8125,"pitch":-73.125,"roll":59.3125},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":129.6875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.54"} +{"sensors":[{"euler":{"heading":358.3125,"pitch":-152.8125,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":1.6875,"pitch":127.3125,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":67.0625,"pitch":-125.6875,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":357.1875,"pitch":-129.125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":20.9375,"pitch":-73.25,"roll":56.6875},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":129.75,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.105"} +{"sensors":[{"euler":{"heading":359.75,"pitch":-150.75,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":3.125,"pitch":127.1875,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":63.5,"pitch":-117.625,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":359.6875,"pitch":-126.3125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":24.0625,"pitch":-73.5,"roll":54.3125},"location":"Right Knee"},{"euler":{"heading":1.5,"pitch":130.0,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.155"} +{"sensors":[{"euler":{"heading":1.5625,"pitch":-149.0625,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":4.6875,"pitch":126.1875,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":59.3125,"pitch":-112.375,"roll":68.9375},"location":"Right Ankle"},{"euler":{"heading":3.0625,"pitch":-122.4375,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":26.0,"pitch":-74.25,"roll":51.875},"location":"Right Knee"},{"euler":{"heading":1.4375,"pitch":130.25,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.206"} +{"sensors":[{"euler":{"heading":3.4375,"pitch":-147.5625,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":6.25,"pitch":126.75,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":56.75,"pitch":-110.4375,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":6.1875,"pitch":-119.125,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":26.9375,"pitch":-74.0,"roll":50.75},"location":"Right Knee"},{"euler":{"heading":1.875,"pitch":130.125,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.257"} +{"sensors":[{"euler":{"heading":4.8125,"pitch":-146.1875,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":7.25,"pitch":127.75,"roll":80.125},"location":"Left Ankle"},{"euler":{"heading":61.6875,"pitch":-117.5625,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":8.875,"pitch":-117.625,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":26.0,"pitch":-71.3125,"roll":52.9375},"location":"Right Knee"},{"euler":{"heading":1.875,"pitch":130.1875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.307"} +{"sensors":[{"euler":{"heading":6.0,"pitch":-145.125,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":8.125,"pitch":128.9375,"roll":80.5625},"location":"Left Ankle"},{"euler":{"heading":68.875,"pitch":-132.875,"roll":74.4375},"location":"Right Ankle"},{"euler":{"heading":11.0,"pitch":-116.5,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":21.375,"pitch":-67.8125,"roll":58.0},"location":"Right Knee"},{"euler":{"heading":2.6875,"pitch":130.875,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.359"} +{"sensors":[{"euler":{"heading":6.8125,"pitch":-143.875,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":8.6875,"pitch":130.875,"roll":80.9375},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":-160.1875,"roll":78.5625},"location":"Right Ankle"},{"euler":{"heading":12.5,"pitch":-116.1875,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":15.3125,"pitch":-62.1875,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":3.25,"pitch":131.6875,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.409"} +{"sensors":[{"euler":{"heading":8.25,"pitch":-142.5625,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":9.5,"pitch":133.875,"roll":81.375},"location":"Left Ankle"},{"euler":{"heading":85.8125,"pitch":160.6875,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":12.9375,"pitch":-116.625,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":9.5,"pitch":-53.5,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":4.0,"pitch":132.8125,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.460"} +{"sensors":[{"euler":{"heading":9.5,"pitch":-141.5,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":10.3125,"pitch":138.8125,"roll":81.75},"location":"Left Ankle"},{"euler":{"heading":94.125,"pitch":137.25,"roll":74.0625},"location":"Right Ankle"},{"euler":{"heading":12.875,"pitch":-118.0625,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":4.5625,"pitch":-42.5,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":4.875,"pitch":133.75,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.510"} +{"sensors":[{"euler":{"heading":10.8125,"pitch":-140.0,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":11.0625,"pitch":144.875,"roll":82.0625},"location":"Left Ankle"},{"euler":{"heading":100.625,"pitch":127.625,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":11.5625,"pitch":-119.6875,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-32.875,"roll":77.25},"location":"Right Knee"},{"euler":{"heading":5.375,"pitch":134.9375,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.560"} +{"sensors":[{"euler":{"heading":12.375,"pitch":-138.3125,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":11.8125,"pitch":152.25,"roll":81.9375},"location":"Left Ankle"},{"euler":{"heading":101.1875,"pitch":126.5625,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":9.625,"pitch":-121.0625,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":0.1875,"pitch":-29.8125,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":5.8125,"pitch":136.25,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.611"} +{"sensors":[{"euler":{"heading":14.1875,"pitch":-136.4375,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":11.75,"pitch":161.4375,"roll":81.25},"location":"Left Ankle"},{"euler":{"heading":97.8125,"pitch":128.0,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":6.6875,"pitch":-122.75,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":357.625,"pitch":-34.8125,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":6.875,"pitch":137.6875,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.661"} +{"sensors":[{"euler":{"heading":15.4375,"pitch":-134.25,"roll":53.5625},"location":"Left Knee"},{"euler":{"heading":10.375,"pitch":171.25,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":131.125,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":4.9375,"pitch":-125.0625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":355.8125,"pitch":-36.5625,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":7.0,"pitch":138.125,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.711"} +{"sensors":[{"euler":{"heading":16.125,"pitch":-132.8125,"roll":51.25},"location":"Left Knee"},{"euler":{"heading":11.5625,"pitch":-178.125,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":91.3125,"pitch":133.125,"roll":73.75},"location":"Right Ankle"},{"euler":{"heading":5.375,"pitch":-125.125,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":355.1875,"pitch":-39.9375,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":5.0625,"pitch":137.375,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.762"} +{"sensors":[{"euler":{"heading":16.75,"pitch":-131.5625,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":13.5,"pitch":-168.8125,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":134.6875,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":3.625,"pitch":-125.3125,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":354.625,"pitch":-44.9375,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":3.25,"pitch":136.625,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.813"} +{"sensors":[{"euler":{"heading":16.9375,"pitch":-130.625,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":16.5,"pitch":-159.25,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":134.1875,"roll":75.8125},"location":"Right Ankle"},{"euler":{"heading":2.125,"pitch":-125.875,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":354.3125,"pitch":-48.625,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":134.0625,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.864"} +{"sensors":[{"euler":{"heading":18.875,"pitch":-130.0,"roll":44.1875},"location":"Left Knee"},{"euler":{"heading":21.375,"pitch":-149.75,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":132.875,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":1.125,"pitch":-126.625,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":354.25,"pitch":-51.6875,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":356.0625,"pitch":130.25,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.914"} +{"sensors":[{"euler":{"heading":22.8125,"pitch":-129.375,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":26.4375,"pitch":-143.4375,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":132.0,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":359.875,"pitch":-127.0625,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":353.625,"pitch":-54.5,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":353.1875,"pitch":124.8125,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:16.965"} +{"sensors":[{"euler":{"heading":24.375,"pitch":-129.875,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":27.75,"pitch":-143.0625,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":132.8125,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-127.1875,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":354.25,"pitch":-57.75,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":351.4375,"pitch":122.6875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.16"} +{"sensors":[{"euler":{"heading":21.4375,"pitch":-132.3125,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":24.1875,"pitch":-149.0,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":133.625,"roll":79.125},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-127.0,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":354.125,"pitch":-60.25,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":349.8125,"pitch":121.5625,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.67"} +{"sensors":[{"euler":{"heading":15.5,"pitch":-136.0,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":19.1875,"pitch":-159.375,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":135.9375,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":358.25,"pitch":-126.6875,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":354.3125,"pitch":-62.375,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":348.0,"pitch":121.125,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.118"} +{"sensors":[{"euler":{"heading":8.1875,"pitch":-140.75,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":12.875,"pitch":-175.0625,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":137.875,"roll":80.8125},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-126.8125,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":355.4375,"pitch":-64.125,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":346.5,"pitch":120.875,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.169"} +{"sensors":[{"euler":{"heading":358.5,"pitch":-147.75,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":5.125,"pitch":167.0625,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":139.375,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":358.1875,"pitch":-127.0625,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":356.1875,"pitch":-65.9375,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":345.4375,"pitch":120.8125,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.220"} +{"sensors":[{"euler":{"heading":353.4375,"pitch":-153.3125,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":359.375,"pitch":152.5,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":141.125,"roll":81.4375},"location":"Right Ankle"},{"euler":{"heading":357.8125,"pitch":-127.625,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":357.125,"pitch":-67.0,"roll":74.625},"location":"Right Knee"},{"euler":{"heading":344.5,"pitch":120.625,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.270"} +{"sensors":[{"euler":{"heading":349.4375,"pitch":-158.6875,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":355.5625,"pitch":142.25,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":143.6875,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":357.625,"pitch":-128.125,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":357.8125,"pitch":-68.125,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":344.4375,"pitch":121.0625,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.320"} +{"sensors":[{"euler":{"heading":345.1875,"pitch":-163.6875,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":353.1875,"pitch":136.1875,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":78.5625,"pitch":145.875,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-128.6875,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":358.375,"pitch":-69.625,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":345.875,"pitch":122.125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.370"} +{"sensors":[{"euler":{"heading":342.1875,"pitch":-167.625,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":351.0,"pitch":131.125,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":77.8125,"pitch":150.0625,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":356.6875,"pitch":-129.625,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":359.5625,"pitch":-70.625,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":348.0625,"pitch":123.625,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.421"} +{"sensors":[{"euler":{"heading":340.75,"pitch":-169.25,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":350.125,"pitch":128.75,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":155.875,"roll":83.0625},"location":"Right Ankle"},{"euler":{"heading":356.1875,"pitch":-130.75,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-71.5625,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":350.6875,"pitch":124.9375,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.472"} +{"sensors":[{"euler":{"heading":342.625,"pitch":-168.125,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":351.375,"pitch":128.8125,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":177.75,"roll":83.1875},"location":"Right Ankle"},{"euler":{"heading":355.625,"pitch":-132.25,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":2.5,"pitch":-72.1875,"roll":69.75},"location":"Right Knee"},{"euler":{"heading":353.3125,"pitch":126.125,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.523"} +{"sensors":[{"euler":{"heading":346.8125,"pitch":-165.3125,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":353.3125,"pitch":129.8125,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":168.0,"roll":82.9375},"location":"Right Ankle"},{"euler":{"heading":354.6875,"pitch":-133.6875,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":4.5,"pitch":-72.5,"roll":68.0625},"location":"Right Knee"},{"euler":{"heading":356.875,"pitch":127.9375,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.573"} +{"sensors":[{"euler":{"heading":348.5625,"pitch":-164.125,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":356.0625,"pitch":131.5625,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":179.875,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":353.6875,"pitch":-134.4375,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":7.8125,"pitch":-72.8125,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":358.875,"pitch":129.9375,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.624"} +{"sensors":[{"euler":{"heading":352.5,"pitch":-161.625,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":359.625,"pitch":131.625,"roll":73.0625},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":-165.25,"roll":81.0625},"location":"Right Ankle"},{"euler":{"heading":353.5625,"pitch":-134.8125,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":11.0625,"pitch":-73.0,"roll":63.5},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":130.125,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.675"} +{"sensors":[{"euler":{"heading":354.8125,"pitch":-159.25,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":2.3125,"pitch":129.9375,"roll":75.3125},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-149.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":354.6875,"pitch":-134.8125,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":15.3125,"pitch":-72.625,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":2.0,"pitch":130.0,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.725"} +{"sensors":[{"euler":{"heading":358.375,"pitch":-157.0,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":4.5625,"pitch":126.1875,"roll":77.0625},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":-136.4375,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":356.125,"pitch":-133.5,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":17.8125,"pitch":-72.5,"roll":58.0},"location":"Right Knee"},{"euler":{"heading":3.1875,"pitch":129.8125,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.776"} +{"sensors":[{"euler":{"heading":0.1875,"pitch":-154.75,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":6.3125,"pitch":122.9375,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":64.1875,"pitch":-125.0,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-130.75,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":22.875,"pitch":-72.25,"roll":54.9375},"location":"Right Knee"},{"euler":{"heading":3.6875,"pitch":129.9375,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.827"} +{"sensors":[{"euler":{"heading":2.125,"pitch":-152.5625,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":7.6875,"pitch":122.375,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":57.8125,"pitch":-115.4375,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":3.25,"pitch":-126.5625,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":24.8125,"pitch":-72.4375,"roll":51.875},"location":"Right Knee"},{"euler":{"heading":4.5625,"pitch":130.3125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.878"} +{"sensors":[{"euler":{"heading":2.8125,"pitch":-149.9375,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":8.0,"pitch":124.5,"roll":80.125},"location":"Left Ankle"},{"euler":{"heading":53.6875,"pitch":-110.0,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":7.1875,"pitch":-122.125,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":26.125,"pitch":-72.5,"roll":49.5},"location":"Right Knee"},{"euler":{"heading":4.875,"pitch":131.3125,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.929"} +{"sensors":[{"euler":{"heading":2.875,"pitch":-148.1875,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":6.75,"pitch":130.4375,"roll":80.125},"location":"Left Ankle"},{"euler":{"heading":56.0,"pitch":-114.625,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":10.0625,"pitch":-119.75,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":27.9375,"pitch":-69.5,"roll":49.5},"location":"Right Knee"},{"euler":{"heading":4.75,"pitch":132.625,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:17.980"} +{"sensors":[{"euler":{"heading":2.5625,"pitch":-146.75,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":6.4375,"pitch":132.0625,"roll":80.5},"location":"Left Ankle"},{"euler":{"heading":58.75,"pitch":-124.5625,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":12.0,"pitch":-118.0625,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":23.9375,"pitch":-66.375,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":4.4375,"pitch":133.4375,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.31"} +{"sensors":[{"euler":{"heading":3.0625,"pitch":-145.5625,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":6.9375,"pitch":131.4375,"roll":81.125},"location":"Left Ankle"},{"euler":{"heading":62.125,"pitch":-132.0625,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":13.3125,"pitch":-116.6875,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":19.0625,"pitch":-63.625,"roll":56.5},"location":"Right Knee"},{"euler":{"heading":4.375,"pitch":133.75,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.81"} +{"sensors":[{"euler":{"heading":4.25,"pitch":-144.4375,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":8.0,"pitch":131.25,"roll":81.875},"location":"Left Ankle"},{"euler":{"heading":67.8125,"pitch":-147.0625,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":15.125,"pitch":-117.8125,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":14.25,"pitch":-58.9375,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":4.375,"pitch":133.6875,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.132"} +{"sensors":[{"euler":{"heading":5.6875,"pitch":-143.25,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":9.4375,"pitch":133.375,"roll":82.6875},"location":"Left Ankle"},{"euler":{"heading":74.8125,"pitch":-171.5625,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":17.5625,"pitch":-118.25,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":9.5,"pitch":-52.8125,"roll":65.625},"location":"Right Knee"},{"euler":{"heading":5.0,"pitch":133.875,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.182"} +{"sensors":[{"euler":{"heading":7.125,"pitch":-141.9375,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":10.6875,"pitch":175.375,"roll":83.25},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":164.375,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":18.6875,"pitch":-118.125,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":5.1875,"pitch":-45.3125,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":5.5625,"pitch":134.5,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.233"} +{"sensors":[{"euler":{"heading":8.9375,"pitch":-140.5,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":11.9375,"pitch":176.1875,"roll":83.625},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":146.375,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":17.6875,"pitch":-118.375,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":1.8125,"pitch":-34.25,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":6.25,"pitch":135.0,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.284"} +{"sensors":[{"euler":{"heading":10.25,"pitch":-139.0,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":12.8125,"pitch":177.0625,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":111.375,"pitch":136.0625,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":16.0,"pitch":-119.0625,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":359.1875,"pitch":-25.25,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":6.5625,"pitch":135.9375,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.335"} +{"sensors":[{"euler":{"heading":11.6875,"pitch":-137.5,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":13.625,"pitch":177.9375,"roll":83.6875},"location":"Left Ankle"},{"euler":{"heading":100.0625,"pitch":130.875,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-120.0,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":357.0625,"pitch":-17.6875,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":7.0,"pitch":137.375,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.386"} +{"sensors":[{"euler":{"heading":13.0,"pitch":-136.0,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":14.375,"pitch":178.75,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":102.125,"pitch":128.75,"roll":67.3125},"location":"Right Ankle"},{"euler":{"heading":12.5625,"pitch":-121.0625,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":355.75,"pitch":-14.1875,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":7.625,"pitch":139.0,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.437"} +{"sensors":[{"euler":{"heading":14.5,"pitch":-134.625,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":15.3125,"pitch":177.625,"roll":82.75},"location":"Left Ankle"},{"euler":{"heading":100.0,"pitch":129.8125,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":11.0,"pitch":-122.1875,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":355.0,"pitch":-17.375,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":8.0,"pitch":140.375,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.488"} +{"sensors":[{"euler":{"heading":16.6875,"pitch":-133.125,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":15.75,"pitch":-173.0,"roll":81.1875},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":130.9375,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":7.75,"pitch":-124.25,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":354.9375,"pitch":-23.1875,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":8.125,"pitch":141.8125,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.539"} +{"sensors":[{"euler":{"heading":19.3125,"pitch":-130.875,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":17.125,"pitch":-164.25,"roll":79.3125},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":133.125,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":5.9375,"pitch":-126.4375,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":354.1875,"pitch":-26.375,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":9.125,"pitch":141.875,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.589"} +{"sensors":[{"euler":{"heading":21.6875,"pitch":-128.625,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":19.5625,"pitch":-157.1875,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":92.125,"pitch":134.5625,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":5.8125,"pitch":-126.5,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":354.25,"pitch":-32.1875,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":8.9375,"pitch":141.125,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.640"} +{"sensors":[{"euler":{"heading":22.9375,"pitch":-127.5625,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":22.5625,"pitch":-149.5625,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":135.0,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":5.0625,"pitch":-126.8125,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":354.125,"pitch":-38.125,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":7.375,"pitch":140.5,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.691"} +{"sensors":[{"euler":{"heading":26.25,"pitch":-126.5625,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":27.0,"pitch":-141.125,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":87.75,"pitch":135.1875,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":3.5,"pitch":-127.25,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":353.625,"pitch":-43.0625,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":138.1875,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.742"} +{"sensors":[{"euler":{"heading":28.125,"pitch":-126.4375,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":32.625,"pitch":-133.5,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":134.4375,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":2.625,"pitch":-127.0625,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":352.75,"pitch":-47.6875,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":1.75,"pitch":134.0625,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.793"} +{"sensors":[{"euler":{"heading":30.4375,"pitch":-126.5625,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":39.875,"pitch":-126.3125,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":81.4375,"pitch":134.3125,"roll":78.5625},"location":"Right Ankle"},{"euler":{"heading":1.25,"pitch":-126.75,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":351.375,"pitch":-50.5625,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":357.0625,"pitch":129.5,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.843"} +{"sensors":[{"euler":{"heading":33.75,"pitch":-126.4375,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":48.125,"pitch":-120.0,"roll":59.0625},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":133.8125,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-126.875,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":350.5625,"pitch":-53.3125,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":353.125,"pitch":124.0625,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.894"} +{"sensors":[{"euler":{"heading":36.625,"pitch":-126.8125,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":47.8125,"pitch":-120.6875,"roll":59.3125},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":133.6875,"roll":80.3125},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-126.875,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":350.3125,"pitch":-55.75,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":350.3125,"pitch":122.125,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.945"} +{"sensors":[{"euler":{"heading":31.25,"pitch":-130.625,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":41.4375,"pitch":-143.25,"roll":62.625},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":134.0625,"roll":80.875},"location":"Right Ankle"},{"euler":{"heading":358.4375,"pitch":-126.75,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":350.125,"pitch":-58.5625,"roll":77.25},"location":"Right Knee"},{"euler":{"heading":347.9375,"pitch":121.125,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:18.996"} +{"sensors":[{"euler":{"heading":22.8125,"pitch":-135.1875,"roll":43.75},"location":"Left Knee"},{"euler":{"heading":32.0625,"pitch":-138.875,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":135.25,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":357.9375,"pitch":-126.875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":350.8125,"pitch":-60.75,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":346.25,"pitch":120.6875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.47"} +{"sensors":[{"euler":{"heading":10.9375,"pitch":-141.375,"roll":48.75},"location":"Left Knee"},{"euler":{"heading":20.0625,"pitch":-165.0625,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":76.0625,"pitch":136.3125,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":357.625,"pitch":-127.6875,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":352.1875,"pitch":-62.75,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":344.8125,"pitch":121.0,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.97"} +{"sensors":[{"euler":{"heading":357.0,"pitch":-148.625,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":8.375,"pitch":167.625,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":134.3125,"roll":81.9375},"location":"Right Ankle"},{"euler":{"heading":356.875,"pitch":-128.375,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":352.9375,"pitch":-64.5,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":344.0,"pitch":121.375,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.148"} +{"sensors":[{"euler":{"heading":348.9375,"pitch":-155.75,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":359.25,"pitch":146.5,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":132.875,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":356.0625,"pitch":-129.0625,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":353.5625,"pitch":-66.3125,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":343.9375,"pitch":121.625,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.199"} +{"sensors":[{"euler":{"heading":344.5625,"pitch":-160.25,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":352.0,"pitch":132.3125,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":135.8125,"roll":82.8125},"location":"Right Ankle"},{"euler":{"heading":355.375,"pitch":-129.875,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":354.6875,"pitch":-68.1875,"roll":74.375},"location":"Right Knee"},{"euler":{"heading":345.125,"pitch":122.5625,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.249"} +{"sensors":[{"euler":{"heading":340.4375,"pitch":-165.25,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":347.9375,"pitch":126.125,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":175.625,"roll":83.3125},"location":"Right Ankle"},{"euler":{"heading":354.8125,"pitch":-131.0625,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":356.0625,"pitch":-69.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":347.375,"pitch":124.1875,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.300"} +{"sensors":[{"euler":{"heading":340.25,"pitch":-167.5,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":347.8125,"pitch":124.5,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":176.5625,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":354.625,"pitch":-132.3125,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":358.8125,"pitch":-70.8125,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":351.125,"pitch":125.625,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.351"} +{"sensors":[{"euler":{"heading":343.375,"pitch":-165.5625,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":350.4375,"pitch":126.4375,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":177.375,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":354.5,"pitch":-134.0,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":1.75,"pitch":-71.25,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":354.375,"pitch":127.5,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.402"} +{"sensors":[{"euler":{"heading":345.875,"pitch":-164.5,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":353.1875,"pitch":127.6875,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":170.0625,"roll":82.5},"location":"Right Ankle"},{"euler":{"heading":352.8125,"pitch":-134.8125,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":5.0625,"pitch":-72.3125,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":357.3125,"pitch":130.125,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.452"} +{"sensors":[{"euler":{"heading":350.75,"pitch":-161.4375,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":356.5625,"pitch":128.3125,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":76.9375,"pitch":-176.4375,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":352.625,"pitch":-135.0625,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":8.5,"pitch":-72.75,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":357.6875,"pitch":129.875,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.504"} +{"sensors":[{"euler":{"heading":353.375,"pitch":-158.6875,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":129.8125,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":-160.375,"roll":81.0},"location":"Right Ankle"},{"euler":{"heading":353.125,"pitch":-135.4375,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":13.0,"pitch":-74.125,"roll":62.6875},"location":"Right Knee"},{"euler":{"heading":7.5,"pitch":129.75,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.555"} +{"sensors":[{"euler":{"heading":357.125,"pitch":-156.375,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":3.0,"pitch":129.0,"roll":76.1875},"location":"Left Ankle"},{"euler":{"heading":73.0,"pitch":-147.3125,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":354.6875,"pitch":-135.0625,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":16.3125,"pitch":-73.875,"roll":60.625},"location":"Right Knee"},{"euler":{"heading":1.5625,"pitch":129.9375,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.606"} +{"sensors":[{"euler":{"heading":359.6875,"pitch":-154.0625,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":4.375,"pitch":126.5625,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":69.3125,"pitch":-134.125,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":356.8125,"pitch":-133.25,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":18.75,"pitch":-73.5625,"roll":58.4375},"location":"Right Knee"},{"euler":{"heading":3.0,"pitch":130.125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.657"} +{"sensors":[{"euler":{"heading":2.125,"pitch":-152.0,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":5.75,"pitch":124.1875,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":-122.625,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":-130.6875,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":21.9375,"pitch":-73.3125,"roll":55.9375},"location":"Right Knee"},{"euler":{"heading":3.9375,"pitch":130.0625,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.707"} +{"sensors":[{"euler":{"heading":4.5625,"pitch":-150.125,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":7.375,"pitch":123.5625,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":61.3125,"pitch":-114.8125,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":2.9375,"pitch":-126.8125,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":25.4375,"pitch":-73.6875,"roll":53.1875},"location":"Right Knee"},{"euler":{"heading":4.125,"pitch":130.1875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.758"} +{"sensors":[{"euler":{"heading":5.9375,"pitch":-148.3125,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":9.0625,"pitch":123.25,"roll":80.125},"location":"Left Ankle"},{"euler":{"heading":56.0625,"pitch":-108.4375,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":6.3125,"pitch":-122.9375,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":27.5625,"pitch":-74.4375,"roll":50.6875},"location":"Right Knee"},{"euler":{"heading":3.875,"pitch":130.875,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.809"} +{"sensors":[{"euler":{"heading":7.125,"pitch":-146.8125,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":10.375,"pitch":124.6875,"roll":80.8125},"location":"Left Ankle"},{"euler":{"heading":57.875,"pitch":-109.6875,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":8.9375,"pitch":-119.9375,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":27.3125,"pitch":-73.375,"roll":51.0},"location":"Right Knee"},{"euler":{"heading":4.375,"pitch":131.3125,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.860"} +{"sensors":[{"euler":{"heading":8.1875,"pitch":-145.375,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":11.3125,"pitch":126.9375,"roll":81.25},"location":"Left Ankle"},{"euler":{"heading":62.6875,"pitch":-120.0625,"roll":70.8125},"location":"Right Ankle"},{"euler":{"heading":11.1875,"pitch":-118.0625,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":25.6875,"pitch":-71.0,"roll":53.4375},"location":"Right Knee"},{"euler":{"heading":4.0625,"pitch":131.4375,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.911"} +{"sensors":[{"euler":{"heading":9.25,"pitch":-144.25,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":12.375,"pitch":129.6875,"roll":81.8125},"location":"Left Ankle"},{"euler":{"heading":68.75,"pitch":-135.3125,"roll":75.625},"location":"Right Ankle"},{"euler":{"heading":12.75,"pitch":-117.0,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":20.625,"pitch":-67.9375,"roll":58.1875},"location":"Right Knee"},{"euler":{"heading":3.875,"pitch":131.5,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:19.962"} +{"sensors":[{"euler":{"heading":10.3125,"pitch":-143.0625,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":13.0625,"pitch":132.4375,"roll":82.125},"location":"Left Ankle"},{"euler":{"heading":76.0625,"pitch":-164.8125,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":14.125,"pitch":-116.75,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":14.3125,"pitch":-62.75,"roll":63.8125},"location":"Right Knee"},{"euler":{"heading":4.0,"pitch":132.125,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.12"} +{"sensors":[{"euler":{"heading":11.125,"pitch":-142.125,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":13.6875,"pitch":135.5,"roll":82.4375},"location":"Left Ankle"},{"euler":{"heading":85.5,"pitch":156.375,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":15.125,"pitch":-117.125,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":8.625,"pitch":-53.3125,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":4.1875,"pitch":133.3125,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.63"} +{"sensors":[{"euler":{"heading":12.125,"pitch":-140.8125,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":14.25,"pitch":139.6875,"roll":82.75},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":135.75,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":15.0,"pitch":-118.625,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":3.8125,"pitch":-40.5625,"roll":74.0},"location":"Right Knee"},{"euler":{"heading":4.3125,"pitch":134.4375,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.114"} +{"sensors":[{"euler":{"heading":13.9375,"pitch":-139.3125,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":15.25,"pitch":145.125,"roll":83.125},"location":"Left Ankle"},{"euler":{"heading":102.625,"pitch":124.8125,"roll":68.8125},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-120.5,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":0.5,"pitch":-26.8125,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":5.0625,"pitch":135.375,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.165"} +{"sensors":[{"euler":{"heading":15.6875,"pitch":-137.6875,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":16.25,"pitch":176.9375,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":105.8125,"pitch":121.3125,"roll":66.6875},"location":"Right Ankle"},{"euler":{"heading":12.75,"pitch":-122.0,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":358.6875,"pitch":-17.8125,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":5.75,"pitch":136.625,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.216"} +{"sensors":[{"euler":{"heading":17.75,"pitch":-136.0,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":16.8125,"pitch":162.5,"roll":83.0625},"location":"Left Ankle"},{"euler":{"heading":103.625,"pitch":122.8125,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":10.5,"pitch":-123.375,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":356.5625,"pitch":-17.0,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":6.5625,"pitch":138.3125,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.266"} +{"sensors":[{"euler":{"heading":19.5,"pitch":-134.3125,"roll":54.375},"location":"Left Knee"},{"euler":{"heading":16.9375,"pitch":172.625,"roll":82.25},"location":"Left Ankle"},{"euler":{"heading":100.75,"pitch":123.5625,"roll":67.5625},"location":"Right Ankle"},{"euler":{"heading":7.375,"pitch":-125.25,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":354.1875,"pitch":-21.5625,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":6.8125,"pitch":140.5,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.317"} +{"sensors":[{"euler":{"heading":21.375,"pitch":-131.875,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":16.4375,"pitch":-178.0,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":97.4375,"pitch":125.25,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":5.1875,"pitch":-127.875,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":353.125,"pitch":-25.75,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":8.125,"pitch":141.25,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.368"} +{"sensors":[{"euler":{"heading":22.4375,"pitch":-130.0,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":18.25,"pitch":-167.0,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":94.1875,"pitch":126.4375,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":5.9375,"pitch":-127.8125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":352.25,"pitch":-30.8125,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":7.0,"pitch":140.375,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.418"} +{"sensors":[{"euler":{"heading":24.6875,"pitch":-128.4375,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":21.0625,"pitch":-156.875,"roll":75.1875},"location":"Left Ankle"},{"euler":{"heading":92.3125,"pitch":127.375,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":4.875,"pitch":-128.375,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":353.3125,"pitch":-37.5,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":6.25,"pitch":139.25,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.469"} +{"sensors":[{"euler":{"heading":25.9375,"pitch":-127.5625,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":24.0625,"pitch":-148.5,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":127.125,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":3.8125,"pitch":-129.125,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":353.25,"pitch":-42.0625,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":4.5,"pitch":137.375,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.521"} +{"sensors":[{"euler":{"heading":28.0,"pitch":-127.25,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":28.5625,"pitch":-140.0625,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":126.5625,"roll":74.4375},"location":"Right Ankle"},{"euler":{"heading":3.0625,"pitch":-129.9375,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":354.125,"pitch":-46.3125,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":1.375,"pitch":133.6875,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.572"} +{"sensors":[{"euler":{"heading":32.0625,"pitch":-126.3125,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":36.0625,"pitch":-132.4375,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":125.875,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":2.3125,"pitch":-130.625,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":354.625,"pitch":-50.0625,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":358.5,"pitch":129.0,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.623"} +{"sensors":[{"euler":{"heading":35.3125,"pitch":-125.6875,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":39.875,"pitch":-129.375,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":87.9375,"pitch":125.9375,"roll":76.3125},"location":"Right Ankle"},{"euler":{"heading":1.75,"pitch":-130.9375,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":354.8125,"pitch":-52.875,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":356.625,"pitch":125.3125,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.673"} +{"sensors":[{"euler":{"heading":32.75,"pitch":-127.9375,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":36.3125,"pitch":-134.375,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":127.25,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":1.3125,"pitch":-130.6875,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":354.5,"pitch":-55.9375,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":355.0,"pitch":122.8125,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.725"} +{"sensors":[{"euler":{"heading":27.25,"pitch":-131.25,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":30.0625,"pitch":-143.0,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":83.5,"pitch":129.375,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":0.75,"pitch":-130.5625,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":354.375,"pitch":-58.25,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":352.75,"pitch":121.875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.775"} +{"sensors":[{"euler":{"heading":17.9375,"pitch":-136.5,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":21.375,"pitch":-158.625,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":130.4375,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":359.625,"pitch":-130.9375,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":354.4375,"pitch":-60.875,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":350.0625,"pitch":121.6875,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.826"} +{"sensors":[{"euler":{"heading":6.9375,"pitch":-143.125,"roll":50.875},"location":"Left Knee"},{"euler":{"heading":10.625,"pitch":176.6875,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":131.1875,"roll":80.375},"location":"Right Ankle"},{"euler":{"heading":358.375,"pitch":-131.25,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":354.5,"pitch":-62.625,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":348.3125,"pitch":122.0,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.877"} +{"sensors":[{"euler":{"heading":355.1875,"pitch":-152.1875,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":0.75,"pitch":151.0,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":78.125,"pitch":133.0625,"roll":81.25},"location":"Right Ankle"},{"euler":{"heading":357.5,"pitch":-131.6875,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":355.0625,"pitch":-64.4375,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":347.0,"pitch":122.625,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.928"} +{"sensors":[{"euler":{"heading":346.9375,"pitch":-160.1875,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":352.625,"pitch":133.375,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":136.1875,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":356.625,"pitch":-132.125,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":356.0,"pitch":-66.1875,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":347.125,"pitch":123.6875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:20.979"} +{"sensors":[{"euler":{"heading":340.875,"pitch":-167.125,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":346.625,"pitch":124.0625,"roll":67.25},"location":"Left Ankle"},{"euler":{"heading":75.8125,"pitch":140.3125,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":355.6875,"pitch":-133.0,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":357.0,"pitch":-68.375,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":348.375,"pitch":124.875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.30"} +{"sensors":[{"euler":{"heading":337.4375,"pitch":-171.625,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":343.5625,"pitch":119.25,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":176.1875,"roll":83.3125},"location":"Right Ankle"},{"euler":{"heading":354.9375,"pitch":-133.875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":358.1875,"pitch":-69.5,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":350.125,"pitch":126.0625,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.80"} +{"sensors":[{"euler":{"heading":337.3125,"pitch":-172.5,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":343.625,"pitch":118.375,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":176.9375,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":354.375,"pitch":-135.3125,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":0.5,"pitch":-71.1875,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":352.3125,"pitch":127.25,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.131"} +{"sensors":[{"euler":{"heading":341.4375,"pitch":-169.4375,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":346.375,"pitch":121.0,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":76.375,"pitch":163.125,"roll":83.125},"location":"Right Ankle"},{"euler":{"heading":353.625,"pitch":-136.5625,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":3.125,"pitch":-71.625,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":354.8125,"pitch":128.125,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.182"} +{"sensors":[{"euler":{"heading":343.5,"pitch":-168.375,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":350.375,"pitch":122.0,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":75.5,"pitch":174.5625,"roll":82.875},"location":"Right Ankle"},{"euler":{"heading":352.5,"pitch":-136.9375,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":5.25,"pitch":-72.625,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":356.8125,"pitch":129.75,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.233"} +{"sensors":[{"euler":{"heading":348.25,"pitch":-165.375,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":353.75,"pitch":124.75,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":75.0625,"pitch":-170.375,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":352.0625,"pitch":-136.9375,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":8.875,"pitch":-74.4375,"roll":64.9375},"location":"Right Knee"},{"euler":{"heading":357.75,"pitch":130.125,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.284"} +{"sensors":[{"euler":{"heading":350.875,"pitch":-162.0625,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":357.375,"pitch":125.875,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":-157.125,"roll":80.875},"location":"Right Ankle"},{"euler":{"heading":352.625,"pitch":-137.8125,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":13.25,"pitch":-74.625,"roll":62.0625},"location":"Right Knee"},{"euler":{"heading":358.4375,"pitch":130.1875,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.334"} +{"sensors":[{"euler":{"heading":353.75,"pitch":-159.4375,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":126.3125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":72.875,"pitch":-145.25,"roll":79.0625},"location":"Right Ankle"},{"euler":{"heading":353.375,"pitch":-137.1875,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":17.5625,"pitch":-74.875,"roll":59.8125},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":129.8125,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.385"} +{"sensors":[{"euler":{"heading":356.75,"pitch":-156.9375,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":2.3125,"pitch":125.0,"roll":75.625},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":-132.8125,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":356.875,"pitch":-135.375,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":21.8125,"pitch":-74.4375,"roll":57.125},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":129.8125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.435"} +{"sensors":[{"euler":{"heading":359.0,"pitch":-154.75,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":3.875,"pitch":122.625,"roll":77.0625},"location":"Left Ankle"},{"euler":{"heading":64.625,"pitch":-120.1875,"roll":72.125},"location":"Right Ankle"},{"euler":{"heading":0.25,"pitch":-131.25,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":25.8125,"pitch":-74.0,"roll":53.6875},"location":"Right Knee"},{"euler":{"heading":2.3125,"pitch":130.0,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.486"} +{"sensors":[{"euler":{"heading":1.1875,"pitch":-152.625,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":5.0625,"pitch":122.5625,"roll":78.125},"location":"Left Ankle"},{"euler":{"heading":59.375,"pitch":-113.5,"roll":68.125},"location":"Right Ankle"},{"euler":{"heading":4.9375,"pitch":-126.25,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":29.0,"pitch":-74.1875,"roll":50.5625},"location":"Right Knee"},{"euler":{"heading":3.375,"pitch":130.75,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.537"} +{"sensors":[{"euler":{"heading":1.25,"pitch":-150.5,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":5.8125,"pitch":123.8125,"roll":79.0},"location":"Left Ankle"},{"euler":{"heading":58.1875,"pitch":-114.75,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":9.1875,"pitch":-122.5,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":29.4375,"pitch":-72.375,"roll":50.1875},"location":"Right Knee"},{"euler":{"heading":2.6875,"pitch":131.75,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.588"} +{"sensors":[{"euler":{"heading":2.5,"pitch":-149.0,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":6.0625,"pitch":122.5,"roll":79.625},"location":"Left Ankle"},{"euler":{"heading":59.6875,"pitch":-121.3125,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":12.0625,"pitch":-120.125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":27.875,"pitch":-69.625,"roll":52.125},"location":"Right Knee"},{"euler":{"heading":3.75,"pitch":132.5,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.639"} +{"sensors":[{"euler":{"heading":3.9375,"pitch":-147.5625,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":6.75,"pitch":121.0,"roll":80.25},"location":"Left Ankle"},{"euler":{"heading":64.0,"pitch":-127.4375,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":14.75,"pitch":-118.0,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":23.3125,"pitch":-66.625,"roll":55.875},"location":"Right Knee"},{"euler":{"heading":5.0,"pitch":133.375,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.690"} +{"sensors":[{"euler":{"heading":5.75,"pitch":-145.875,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":8.0625,"pitch":120.5,"roll":81.0},"location":"Left Ankle"},{"euler":{"heading":68.625,"pitch":-139.6875,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":16.8125,"pitch":-117.0625,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":18.0,"pitch":-61.875,"roll":60.75},"location":"Right Knee"},{"euler":{"heading":5.5,"pitch":133.625,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.741"} +{"sensors":[{"euler":{"heading":8.0625,"pitch":-144.1875,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":9.75,"pitch":122.0,"roll":81.875},"location":"Left Ankle"},{"euler":{"heading":74.875,"pitch":-161.1875,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":18.75,"pitch":-116.5,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":12.5,"pitch":-55.5625,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":6.375,"pitch":133.8125,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.792"} +{"sensors":[{"euler":{"heading":10.125,"pitch":-142.375,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":11.1875,"pitch":125.75,"roll":82.5625},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":168.5625,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-116.5,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":7.8125,"pitch":-47.3125,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":7.5625,"pitch":134.6875,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.843"} +{"sensors":[{"euler":{"heading":12.0625,"pitch":-139.9375,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":12.625,"pitch":175.0,"roll":83.25},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":145.125,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-117.375,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":3.9375,"pitch":-36.4375,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":8.5,"pitch":135.4375,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.894"} +{"sensors":[{"euler":{"heading":14.125,"pitch":-137.8125,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":14.0625,"pitch":176.1875,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":133.125,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-118.75,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-24.625,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":9.1875,"pitch":136.3125,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.944"} +{"sensors":[{"euler":{"heading":16.0625,"pitch":-135.75,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":15.375,"pitch":177.4375,"roll":84.0},"location":"Left Ankle"},{"euler":{"heading":103.5,"pitch":127.5,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":18.75,"pitch":-120.5,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":359.0,"pitch":-15.625,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":9.75,"pitch":137.9375,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:21.995"} +{"sensors":[{"euler":{"heading":17.6875,"pitch":-133.8125,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":16.375,"pitch":178.75,"roll":83.5625},"location":"Left Ankle"},{"euler":{"heading":104.625,"pitch":125.875,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":16.75,"pitch":-121.875,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":357.375,"pitch":-11.0,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":9.9375,"pitch":139.9375,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.46"} +{"sensors":[{"euler":{"heading":19.875,"pitch":-131.875,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":16.875,"pitch":-178.625,"roll":82.0},"location":"Left Ankle"},{"euler":{"heading":101.0,"pitch":127.75,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":14.0625,"pitch":-123.125,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":354.8125,"pitch":-11.625,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":9.8125,"pitch":141.6875,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.97"} +{"sensors":[{"euler":{"heading":21.5,"pitch":-129.9375,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":17.375,"pitch":-169.4375,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":94.375,"pitch":131.1875,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":10.4375,"pitch":-125.375,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":352.8125,"pitch":-19.125,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":9.625,"pitch":144.1875,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.148"} +{"sensors":[{"euler":{"heading":22.5,"pitch":-128.0,"roll":48.6875},"location":"Left Knee"},{"euler":{"heading":18.9375,"pitch":-161.0625,"roll":76.6875},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":134.5,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":10.125,"pitch":-125.5625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":352.625,"pitch":-26.875,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":9.4375,"pitch":145.0625,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.198"} +{"sensors":[{"euler":{"heading":23.875,"pitch":-126.8125,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":22.0625,"pitch":-151.0,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":137.9375,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":8.0,"pitch":-125.75,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":352.125,"pitch":-35.75,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":7.1875,"pitch":144.5625,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.250"} +{"sensors":[{"euler":{"heading":26.625,"pitch":-125.625,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":26.5,"pitch":-141.625,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":138.5625,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":5.4375,"pitch":-126.4375,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":351.0,"pitch":-41.8125,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":5.5625,"pitch":141.375,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.300"} +{"sensors":[{"euler":{"heading":30.6875,"pitch":-125.125,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":35.8125,"pitch":-130.75,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":138.6875,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":3.8125,"pitch":-126.6875,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":350.25,"pitch":-47.1875,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":2.4375,"pitch":136.75,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.351"} +{"sensors":[{"euler":{"heading":35.875,"pitch":-125.0625,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":47.0,"pitch":-122.625,"roll":58.75},"location":"Left Ankle"},{"euler":{"heading":76.125,"pitch":140.0,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":2.5,"pitch":-126.6875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":349.6875,"pitch":-51.8125,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":358.8125,"pitch":130.6875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.403"} +{"sensors":[{"euler":{"heading":42.3125,"pitch":-124.0,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":54.125,"pitch":-117.5625,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":142.4375,"roll":80.625},"location":"Right Ankle"},{"euler":{"heading":1.5,"pitch":-126.875,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":349.625,"pitch":-55.6875,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":355.125,"pitch":125.3125,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.453"} +{"sensors":[{"euler":{"heading":41.5625,"pitch":-126.375,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":50.875,"pitch":-120.875,"roll":57.6875},"location":"Left Ankle"},{"euler":{"heading":72.1875,"pitch":145.25,"roll":81.5},"location":"Right Ankle"},{"euler":{"heading":0.6875,"pitch":-126.8125,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":349.8125,"pitch":-59.375,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":351.9375,"pitch":122.875,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.504"} +{"sensors":[{"euler":{"heading":34.6875,"pitch":-130.8125,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":43.125,"pitch":-127.8125,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":149.0625,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":-126.6875,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":350.3125,"pitch":-62.6875,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":349.3125,"pitch":121.8125,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.555"} +{"sensors":[{"euler":{"heading":20.625,"pitch":-136.75,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":30.75,"pitch":-143.125,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":70.0625,"pitch":152.1875,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-127.5,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":350.875,"pitch":-65.5625,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":347.375,"pitch":121.375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.606"} +{"sensors":[{"euler":{"heading":5.6875,"pitch":-144.75,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":15.0,"pitch":-173.25,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":177.125,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":357.25,"pitch":-128.5,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":352.0625,"pitch":-67.875,"roll":74.375},"location":"Right Knee"},{"euler":{"heading":346.0625,"pitch":122.0625,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.657"} +{"sensors":[{"euler":{"heading":351.8125,"pitch":-153.875,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":359.5625,"pitch":150.6875,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":69.0625,"pitch":177.6875,"roll":84.0625},"location":"Right Ankle"},{"euler":{"heading":356.375,"pitch":-129.625,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":353.3125,"pitch":-69.9375,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":346.375,"pitch":123.3125,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.707"} +{"sensors":[{"euler":{"heading":341.625,"pitch":-162.25,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":347.9375,"pitch":127.75,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":68.5625,"pitch":178.625,"roll":84.5625},"location":"Right Ankle"},{"euler":{"heading":355.5625,"pitch":-130.75,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":355.5625,"pitch":-71.6875,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":347.9375,"pitch":124.5,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.758"} +{"sensors":[{"euler":{"heading":337.4375,"pitch":-169.1875,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":343.6875,"pitch":119.625,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":68.0,"pitch":179.75,"roll":84.8125},"location":"Right Ankle"},{"euler":{"heading":354.9375,"pitch":-132.125,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":357.75,"pitch":-73.25,"roll":70.6875},"location":"Right Knee"},{"euler":{"heading":350.6875,"pitch":125.5625,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.809"} +{"sensors":[{"euler":{"heading":337.875,"pitch":-171.6875,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":345.875,"pitch":119.5,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":67.1875,"pitch":-178.9375,"roll":84.8125},"location":"Right Ankle"},{"euler":{"heading":354.25,"pitch":-133.375,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":359.8125,"pitch":-74.5,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":354.0,"pitch":127.1875,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.860"} +{"sensors":[{"euler":{"heading":163.4375,"pitch":-167.875,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":349.5625,"pitch":122.25,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-177.375,"roll":84.0},"location":"Right Ankle"},{"euler":{"heading":353.3125,"pitch":-134.5625,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":2.375,"pitch":-75.4375,"roll":67.125},"location":"Right Knee"},{"euler":{"heading":356.6875,"pitch":128.5,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.910"} +{"sensors":[{"euler":{"heading":165.4375,"pitch":-166.875,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":353.1875,"pitch":123.25,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-142.625,"roll":81.9375},"location":"Right Ankle"},{"euler":{"heading":352.5625,"pitch":-134.1875,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":6.375,"pitch":-76.3125,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":357.75,"pitch":129.8125,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:22.961"} +{"sensors":[{"euler":{"heading":169.8125,"pitch":-163.25,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":355.6875,"pitch":123.75,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-127.4375,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":354.5,"pitch":-131.875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":10.6875,"pitch":-76.6875,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":358.5625,"pitch":130.0625,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.11"} +{"sensors":[{"euler":{"heading":172.0625,"pitch":-159.9375,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":358.4375,"pitch":123.0625,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":59.5,"pitch":-115.4375,"roll":74.125},"location":"Right Ankle"},{"euler":{"heading":357.5,"pitch":-129.6875,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":16.75,"pitch":-76.5625,"roll":57.1875},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":129.9375,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.62"} +{"sensors":[{"euler":{"heading":176.0,"pitch":-157.0,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":2.5,"pitch":124.6875,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":56.5,"pitch":-109.375,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":1.75,"pitch":-126.125,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":22.75,"pitch":-76.3125,"roll":53.3125},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":130.3125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.113"} +{"sensors":[{"euler":{"heading":177.9375,"pitch":-154.0,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":4.3125,"pitch":124.625,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":52.125,"pitch":-105.9375,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":6.5625,"pitch":-121.9375,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":27.1875,"pitch":-76.1875,"roll":49.9375},"location":"Right Knee"},{"euler":{"heading":1.5625,"pitch":131.0625,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.163"} +{"sensors":[{"euler":{"heading":179.3125,"pitch":-151.375,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":4.6875,"pitch":124.6875,"roll":78.5},"location":"Left Ankle"},{"euler":{"heading":52.0625,"pitch":-103.75,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":10.0,"pitch":-118.875,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":29.9375,"pitch":-74.875,"roll":47.8125},"location":"Right Knee"},{"euler":{"heading":2.0,"pitch":131.8125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.215"} +{"sensors":[{"euler":{"heading":181.0625,"pitch":-149.125,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":5.75,"pitch":123.9375,"roll":79.625},"location":"Left Ankle"},{"euler":{"heading":54.125,"pitch":-108.9375,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":13.6875,"pitch":-117.0625,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":28.0625,"pitch":-71.5,"roll":50.0},"location":"Right Knee"},{"euler":{"heading":3.0,"pitch":132.4375,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.266"} +{"sensors":[{"euler":{"heading":183.25,"pitch":-146.75,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":7.8125,"pitch":124.375,"roll":80.75},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-117.75,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":15.75,"pitch":-115.8125,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":23.0625,"pitch":-68.1875,"roll":54.125},"location":"Right Knee"},{"euler":{"heading":4.1875,"pitch":132.625,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.316"} +{"sensors":[{"euler":{"heading":185.75,"pitch":-144.875,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":9.875,"pitch":125.3125,"roll":81.75},"location":"Left Ankle"},{"euler":{"heading":65.3125,"pitch":-136.5,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":17.5,"pitch":-115.1875,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":17.1875,"pitch":-63.125,"roll":59.5625},"location":"Right Knee"},{"euler":{"heading":4.9375,"pitch":132.75,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.367"} +{"sensors":[{"euler":{"heading":188.125,"pitch":-143.0,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":11.4375,"pitch":129.125,"roll":82.5},"location":"Left Ankle"},{"euler":{"heading":74.9375,"pitch":-166.4375,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-114.8125,"roll":44.125},"location":"Right Hip"},{"euler":{"heading":11.4375,"pitch":-54.3125,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":133.125,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.419"} +{"sensors":[{"euler":{"heading":189.5625,"pitch":-141.1875,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":12.3125,"pitch":136.125,"roll":83.0},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":162.1875,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":21.5625,"pitch":-114.6875,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":6.4375,"pitch":-44.6875,"roll":70.0},"location":"Right Knee"},{"euler":{"heading":6.75,"pitch":134.4375,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.470"} +{"sensors":[{"euler":{"heading":190.5,"pitch":-139.3125,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":13.0,"pitch":176.0625,"roll":83.4375},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":141.75,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":22.0,"pitch":-115.1875,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":2.375,"pitch":-32.4375,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":7.1875,"pitch":136.4375,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.521"} +{"sensors":[{"euler":{"heading":191.6875,"pitch":-137.75,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":14.1875,"pitch":177.125,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":99.375,"pitch":130.0625,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-116.4375,"roll":43.5625},"location":"Right Hip"},{"euler":{"heading":358.8125,"pitch":-18.9375,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":7.8125,"pitch":137.4375,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.572"} +{"sensors":[{"euler":{"heading":193.5,"pitch":-135.8125,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":15.4375,"pitch":178.3125,"roll":83.5625},"location":"Left Ankle"},{"euler":{"heading":104.5,"pitch":125.0625,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":19.25,"pitch":-118.0,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":356.25,"pitch":-8.1875,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":8.0625,"pitch":138.5,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.622"} +{"sensors":[{"euler":{"heading":195.1875,"pitch":-134.0625,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":16.75,"pitch":176.375,"roll":83.125},"location":"Left Ankle"},{"euler":{"heading":108.0,"pitch":121.5,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":16.875,"pitch":-119.5625,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":356.0625,"pitch":-4.5625,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":8.0625,"pitch":140.25,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.674"} +{"sensors":[{"euler":{"heading":197.5,"pitch":-132.3125,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":18.0625,"pitch":-174.0,"roll":82.375},"location":"Left Ankle"},{"euler":{"heading":106.0625,"pitch":122.8125,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":14.4375,"pitch":-121.0625,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":355.5625,"pitch":-9.0,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":8.9375,"pitch":142.25,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.724"} +{"sensors":[{"euler":{"heading":199.6875,"pitch":-130.625,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":19.25,"pitch":-165.75,"roll":80.8125},"location":"Left Ankle"},{"euler":{"heading":101.125,"pitch":125.375,"roll":67.875},"location":"Right Ankle"},{"euler":{"heading":10.875,"pitch":-123.375,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":353.9375,"pitch":-16.9375,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":9.875,"pitch":144.3125,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.775"} +{"sensors":[{"euler":{"heading":202.8125,"pitch":-128.3125,"roll":49.5625},"location":"Left Knee"},{"euler":{"heading":21.8125,"pitch":-155.8125,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":97.1875,"pitch":126.9375,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":10.1875,"pitch":-123.75,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":353.625,"pitch":-24.9375,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":10.625,"pitch":143.625,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.825"} +{"sensors":[{"euler":{"heading":205.75,"pitch":-126.1875,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":25.9375,"pitch":-146.0625,"roll":74.5},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":128.5625,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":9.5,"pitch":-123.9375,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":353.0625,"pitch":-31.875,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":8.6875,"pitch":142.4375,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.876"} +{"sensors":[{"euler":{"heading":207.6875,"pitch":-125.375,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":30.5625,"pitch":-137.25,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":128.125,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":7.25,"pitch":-124.875,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":352.8125,"pitch":-39.5625,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":6.1875,"pitch":141.0,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.927"} +{"sensors":[{"euler":{"heading":210.5625,"pitch":-124.875,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":38.9375,"pitch":-127.9375,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":126.625,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":5.8125,"pitch":-126.0625,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":353.5625,"pitch":-46.5,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":2.75,"pitch":136.75,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:23.978"} +{"sensors":[{"euler":{"heading":214.625,"pitch":-124.1875,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":45.75,"pitch":-121.875,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":124.9375,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":4.375,"pitch":-126.8125,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":353.25,"pitch":-51.5,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":359.0,"pitch":131.9375,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:24.29"} +{"sensors":[{"euler":{"heading":216.0,"pitch":-124.75,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":45.6875,"pitch":-122.8125,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":124.6875,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":2.625,"pitch":-127.1875,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":353.4375,"pitch":-56.6875,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":356.4375,"pitch":127.0,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:24.80"} +{"sensors":[{"euler":{"heading":212.1875,"pitch":-127.5625,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":40.625,"pitch":-128.5625,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":125.6875,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":2.1875,"pitch":-127.5625,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":354.75,"pitch":-61.5,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":353.8125,"pitch":125.3125,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:24.130"} +{"sensors":[{"euler":{"heading":203.8125,"pitch":-131.8125,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":32.125,"pitch":-138.8125,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":127.625,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":1.0,"pitch":-128.8125,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":357.3125,"pitch":-66.0,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":350.6875,"pitch":123.6875,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:24.182"} +{"sensors":[{"euler":{"heading":193.125,"pitch":-138.625,"roll":45.125},"location":"Left Knee"},{"euler":{"heading":22.25,"pitch":-155.25,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":129.0625,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":0.1875,"pitch":-129.75,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":358.375,"pitch":-68.0,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":348.625,"pitch":123.0625,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:24.232"} +{"sensors":[{"euler":{"heading":182.4375,"pitch":-145.8125,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":11.5625,"pitch":179.0625,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":133.75,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":359.3125,"pitch":-129.5625,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":358.6875,"pitch":-70.0,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":347.3125,"pitch":123.1875,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:24.283"} +{"sensors":[{"euler":{"heading":173.0,"pitch":-153.6875,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":1.0,"pitch":152.25,"roll":72.375},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":141.1875,"roll":82.4375},"location":"Right Ankle"},{"euler":{"heading":358.5625,"pitch":-129.25,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":359.0625,"pitch":-71.5625,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":347.0625,"pitch":123.75,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:24.334"} +{"sensors":[{"euler":{"heading":164.5,"pitch":-161.375,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":351.875,"pitch":134.125,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":176.8125,"roll":83.3125},"location":"Right Ankle"},{"euler":{"heading":357.5625,"pitch":-129.625,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":0.375,"pitch":-73.4375,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":347.875,"pitch":124.9375,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:24.384"} +{"sensors":[{"euler":{"heading":157.5,"pitch":-167.25,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":346.0,"pitch":125.125,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":178.375,"roll":83.8125},"location":"Right Ankle"},{"euler":{"heading":356.9375,"pitch":-131.125,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":2.9375,"pitch":-74.8125,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":349.8125,"pitch":126.375,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:24.435"} +{"sensors":[{"euler":{"heading":349.8125,"pitch":126.375,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":148.1875,"pitch":177.625,"roll":83.875},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":136.125,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":20.75,"pitch":-116.4375,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":1.8125,"pitch":-29.625,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:24.487"} +{"sensors":[{"euler":{"heading":192.125,"pitch":-137.5,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":148.625,"pitch":178.25,"roll":83.875},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":129.125,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":20.0625,"pitch":-117.125,"roll":43.6875},"location":"Right Hip"},{"euler":{"heading":0.375,"pitch":-23.9375,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:25.144"} +{"sensors":[{"euler":{"heading":194.0,"pitch":-135.5,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":149.6875,"pitch":179.4375,"roll":83.8125},"location":"Left Ankle"},{"euler":{"heading":107.625,"pitch":122.8125,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":18.1875,"pitch":-118.625,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":358.5625,"pitch":-13.0,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":15.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:25.196"} +{"sensors":[{"euler":{"heading":195.25,"pitch":-133.9375,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":150.8125,"pitch":-174.1875,"roll":83.0},"location":"Left Ankle"},{"euler":{"heading":109.875,"pitch":121.125,"roll":64.1875},"location":"Right Ankle"},{"euler":{"heading":16.1875,"pitch":-120.1875,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":357.25,"pitch":-11.1875,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:25.247"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":142.3125,"pitch":133.875,"roll":82.6875},"location":"Left Ankle"},{"euler":{"heading":81.9375,"pitch":170.8125,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-115.375,"roll":43.9375},"location":"Right Hip"},{"euler":{"heading":168.3125,"pitch":-54.0625,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:25.298"} +{"sensors":[{"euler":{"heading":181.75,"pitch":-144.3125,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":142.75,"pitch":136.0,"roll":82.9375},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":152.6875,"roll":75.125},"location":"Right Ankle"},{"euler":{"heading":19.9375,"pitch":-115.75,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":163.9375,"pitch":-50.1875,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:26.541"} +{"sensors":[{"euler":{"heading":183.5625,"pitch":-142.3125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":144.0,"pitch":176.1875,"roll":83.5},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":133.6875,"roll":70.75},"location":"Right Ankle"},{"euler":{"heading":19.6875,"pitch":-116.8125,"roll":43.8125},"location":"Right Hip"},{"euler":{"heading":158.625,"pitch":-36.8125,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:26.591"} +{"sensors":[{"euler":{"heading":184.5,"pitch":-140.6875,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":177.375,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":104.8125,"pitch":124.3125,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":18.3125,"pitch":-118.375,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":155.9375,"pitch":-23.375,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:26.643"} +{"sensors":[{"euler":{"heading":186.0,"pitch":-138.625,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":146.0625,"pitch":178.5625,"roll":83.5625},"location":"Left Ankle"},{"euler":{"heading":110.25,"pitch":120.5625,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":16.9375,"pitch":-119.8125,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":155.0,"pitch":-13.875,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:26.694"} +{"sensors":[{"euler":{"heading":188.4375,"pitch":-136.4375,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":147.5,"pitch":-179.875,"roll":83.0},"location":"Left Ankle"},{"euler":{"heading":110.625,"pitch":120.625,"roll":64.3125},"location":"Right Ankle"},{"euler":{"heading":15.5,"pitch":-120.875,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":154.9375,"pitch":-14.5,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:26.745"} +{"sensors":[{"euler":{"heading":191.125,"pitch":-134.0,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":148.5625,"pitch":-169.0,"roll":81.1875},"location":"Left Ankle"},{"euler":{"heading":107.125,"pitch":122.5,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":13.0625,"pitch":-122.4375,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":155.25,"pitch":-25.25,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:26.795"} +{"sensors":[{"euler":{"heading":194.3125,"pitch":-130.8125,"roll":50.75},"location":"Left Knee"},{"euler":{"heading":151.0625,"pitch":-157.3125,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":124.6875,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":11.3125,"pitch":-124.5625,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":-30.1875,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:26.846"} +{"sensors":[{"euler":{"heading":197.5625,"pitch":-127.875,"roll":48.125},"location":"Left Knee"},{"euler":{"heading":155.375,"pitch":-143.0625,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":99.5625,"pitch":127.1875,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":11.3125,"pitch":-124.375,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":153.8125,"pitch":-38.1875,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:26.897"} +{"sensors":[{"euler":{"heading":201.625,"pitch":-126.25,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":161.3125,"pitch":-133.1875,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":127.75,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":9.625,"pitch":-124.875,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":153.625,"pitch":-45.6875,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:26.948"} +{"sensors":[{"euler":{"heading":205.375,"pitch":-126.0,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":171.1875,"pitch":-125.5,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":94.0,"pitch":127.375,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":7.1875,"pitch":-126.125,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":153.75,"pitch":-51.4375,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:26.999"} +{"sensors":[{"euler":{"heading":209.9375,"pitch":-125.25,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":177.125,"pitch":-120.875,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":125.875,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":5.4375,"pitch":-127.125,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":154.125,"pitch":-56.9375,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.50"} +{"sensors":[{"euler":{"heading":210.1875,"pitch":-126.875,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":175.375,"pitch":-124.375,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":89.75,"pitch":125.5625,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":4.5,"pitch":-127.125,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":153.875,"pitch":-61.0,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.100"} +{"sensors":[{"euler":{"heading":205.5625,"pitch":-130.8125,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":169.75,"pitch":-130.6875,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":87.625,"pitch":126.0,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":3.0625,"pitch":-127.4375,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":-63.5,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.151"} +{"sensors":[{"euler":{"heading":197.5,"pitch":-135.4375,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":162.0,"pitch":-140.3125,"roll":66.75},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":127.0,"roll":78.5625},"location":"Right Ankle"},{"euler":{"heading":1.375,"pitch":-128.375,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":154.9375,"pitch":-66.3125,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.202"} +{"sensors":[{"euler":{"heading":186.625,"pitch":-141.625,"roll":48.125},"location":"Left Knee"},{"euler":{"heading":151.125,"pitch":-158.125,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":129.375,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":359.875,"pitch":-129.3125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":155.8125,"pitch":-68.875,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.253"} +{"sensors":[{"euler":{"heading":174.5,"pitch":-148.9375,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":138.8125,"pitch":175.0,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":132.3125,"roll":80.4375},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-130.1875,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":156.75,"pitch":-70.6875,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.303"} +{"sensors":[{"euler":{"heading":163.875,"pitch":-156.9375,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":128.125,"pitch":147.5625,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":136.4375,"roll":81.1875},"location":"Right Ankle"},{"euler":{"heading":357.5625,"pitch":-130.8125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":157.8125,"pitch":-72.0625,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.354"} +{"sensors":[{"euler":{"heading":156.1875,"pitch":-165.3125,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":120.5625,"pitch":128.6875,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":143.5625,"roll":81.9375},"location":"Right Ankle"},{"euler":{"heading":356.5625,"pitch":-132.1875,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":-73.9375,"roll":71.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.408"} +{"sensors":[{"euler":{"heading":150.3125,"pitch":-171.375,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":117.0,"pitch":123.375,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":152.1875,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":355.9375,"pitch":-133.125,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":-74.8125,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.459"} +{"sensors":[{"euler":{"heading":149.5,"pitch":-172.25,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":117.375,"pitch":121.25,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":166.375,"roll":83.0},"location":"Right Ankle"},{"euler":{"heading":355.4375,"pitch":-134.75,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":166.0625,"pitch":-75.375,"roll":67.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.509"} +{"sensors":[{"euler":{"heading":155.0,"pitch":-168.4375,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":121.875,"pitch":125.5,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":-174.6875,"roll":82.5},"location":"Right Ankle"},{"euler":{"heading":354.75,"pitch":-136.25,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":170.1875,"pitch":-75.6875,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.559"} +{"sensors":[{"euler":{"heading":161.375,"pitch":-165.6875,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":126.875,"pitch":128.5625,"roll":72.1875},"location":"Left Ankle"},{"euler":{"heading":76.0,"pitch":-152.8125,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":353.8125,"pitch":-136.0,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":174.375,"pitch":-76.625,"roll":61.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.610"} +{"sensors":[{"euler":{"heading":164.8125,"pitch":-161.6875,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":131.1875,"pitch":128.625,"roll":75.8125},"location":"Left Ankle"},{"euler":{"heading":71.25,"pitch":-133.875,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":355.375,"pitch":-134.0,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":179.0,"pitch":-76.625,"roll":57.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.661"} +{"sensors":[{"euler":{"heading":168.6875,"pitch":-158.6875,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":129.4375,"roll":78.375},"location":"Left Ankle"},{"euler":{"heading":65.625,"pitch":-121.1875,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":359.25,"pitch":-131.25,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":184.625,"pitch":-75.5625,"roll":52.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.712"} +{"sensors":[{"euler":{"heading":171.75,"pitch":-156.0625,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":138.375,"pitch":129.4375,"roll":80.0},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-114.4375,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":4.5,"pitch":-126.625,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":186.9375,"pitch":-75.6875,"roll":49.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.763"} +{"sensors":[{"euler":{"heading":173.5625,"pitch":-153.625,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":139.75,"pitch":127.25,"roll":80.9375},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":-114.9375,"roll":64.5},"location":"Right Ankle"},{"euler":{"heading":8.6875,"pitch":-122.375,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":189.25,"pitch":-73.6875,"roll":47.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.814"} +{"sensors":[{"euler":{"heading":176.0625,"pitch":-151.3125,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":140.8125,"pitch":126.9375,"roll":81.5625},"location":"Left Ankle"},{"euler":{"heading":60.5625,"pitch":-122.1875,"roll":65.75},"location":"Right Ankle"},{"euler":{"heading":13.0,"pitch":-119.9375,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":187.25,"pitch":-69.375,"roll":50.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.864"} +{"sensors":[{"euler":{"heading":178.0,"pitch":-148.6875,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":141.9375,"pitch":130.5,"roll":82.1875},"location":"Left Ankle"},{"euler":{"heading":65.625,"pitch":-131.625,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":15.6875,"pitch":-118.125,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":180.625,"pitch":-66.9375,"roll":55.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.915"} +{"sensors":[{"euler":{"heading":179.9375,"pitch":-146.625,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":143.1875,"pitch":135.4375,"roll":82.8125},"location":"Left Ankle"},{"euler":{"heading":73.375,"pitch":-151.75,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":17.5625,"pitch":-117.3125,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":174.1875,"pitch":-60.875,"roll":61.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:27.966"} +{"sensors":[{"euler":{"heading":181.4375,"pitch":-144.6875,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":144.0,"pitch":175.9375,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":173.875,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-116.6875,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":166.8125,"pitch":-52.375,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.17"} +{"sensors":[{"euler":{"heading":182.75,"pitch":-142.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":144.875,"pitch":176.75,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":144.125,"roll":73.125},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-117.5625,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":160.25,"pitch":-40.4375,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.67"} +{"sensors":[{"euler":{"heading":184.3125,"pitch":-141.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":146.0,"pitch":177.8125,"roll":84.0},"location":"Left Ankle"},{"euler":{"heading":101.75,"pitch":128.5,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":17.875,"pitch":-119.5,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":156.375,"pitch":-25.1875,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.118"} +{"sensors":[{"euler":{"heading":186.375,"pitch":-138.8125,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":147.0625,"pitch":179.0,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":108.875,"pitch":121.3125,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":15.3125,"pitch":-121.625,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":154.625,"pitch":-11.8125,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.168"} +{"sensors":[{"euler":{"heading":189.375,"pitch":-136.3125,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":147.75,"pitch":-176.1875,"roll":82.1875},"location":"Left Ankle"},{"euler":{"heading":108.5,"pitch":121.125,"roll":64.6875},"location":"Right Ankle"},{"euler":{"heading":13.6875,"pitch":-122.625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":153.3125,"pitch":-9.1875,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.219"} +{"sensors":[{"euler":{"heading":192.125,"pitch":-133.875,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":148.375,"pitch":-167.0,"roll":79.375},"location":"Left Ankle"},{"euler":{"heading":103.4375,"pitch":123.875,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":11.25,"pitch":-124.875,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":152.8125,"pitch":-20.8125,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.269"} +{"sensors":[{"euler":{"heading":195.25,"pitch":-130.4375,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":151.1875,"pitch":-155.875,"roll":75.9375},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":126.0,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":10.9375,"pitch":-125.25,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":151.5,"pitch":-27.875,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.320"} +{"sensors":[{"euler":{"heading":196.5625,"pitch":-128.3125,"roll":46.0},"location":"Left Knee"},{"euler":{"heading":156.1875,"pitch":-143.5625,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":127.875,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":10.4375,"pitch":-125.3125,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":151.5625,"pitch":-35.5,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.370"} +{"sensors":[{"euler":{"heading":200.25,"pitch":-126.8125,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":165.4375,"pitch":-130.75,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":92.6875,"pitch":128.125,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":8.0625,"pitch":-126.25,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":152.125,"pitch":-43.125,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.422"} +{"sensors":[{"euler":{"heading":206.4375,"pitch":-125.625,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":172.375,"pitch":-126.6875,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":126.9375,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":6.0625,"pitch":-127.625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":152.5625,"pitch":-49.25,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.472"} +{"sensors":[{"euler":{"heading":208.25,"pitch":-126.8125,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":172.6875,"pitch":-128.625,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":125.8125,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":5.4375,"pitch":-128.1875,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":153.5,"pitch":-54.3125,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.522"} +{"sensors":[{"euler":{"heading":205.625,"pitch":-129.8125,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":167.75,"pitch":-133.9375,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":126.125,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":4.125,"pitch":-128.5,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":153.9375,"pitch":-58.5,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.573"} +{"sensors":[{"euler":{"heading":197.625,"pitch":-134.4375,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":159.125,"pitch":-145.375,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":128.75,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":2.75,"pitch":-129.0,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":155.4375,"pitch":-61.8125,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.623"} +{"sensors":[{"euler":{"heading":182.8125,"pitch":-142.375,"roll":48.375},"location":"Left Knee"},{"euler":{"heading":147.0625,"pitch":-166.375,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":131.6875,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":2.375,"pitch":-129.6875,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":157.375,"pitch":-64.625,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.674"} +{"sensors":[{"euler":{"heading":170.375,"pitch":-150.3125,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":135.1875,"pitch":164.8125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":86.4375,"pitch":134.125,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":0.9375,"pitch":-130.625,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":158.875,"pitch":-66.75,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.725"} +{"sensors":[{"euler":{"heading":160.875,"pitch":-158.375,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":125.3125,"pitch":142.125,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":137.4375,"roll":79.9375},"location":"Right Ankle"},{"euler":{"heading":359.25,"pitch":-131.8125,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":-68.625,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.776"} +{"sensors":[{"euler":{"heading":152.625,"pitch":-166.375,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":116.75,"pitch":126.75,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":142.75,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":358.125,"pitch":-133.125,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":-70.0625,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.827"} +{"sensors":[{"euler":{"heading":147.3125,"pitch":-171.875,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":113.4375,"pitch":120.4375,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":153.1875,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":357.5,"pitch":-134.3125,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":164.5625,"pitch":-70.9375,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.878"} +{"sensors":[{"euler":{"heading":146.4375,"pitch":-173.4375,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":115.875,"pitch":120.375,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":81.5625,"pitch":166.0625,"roll":81.9375},"location":"Right Ankle"},{"euler":{"heading":357.0625,"pitch":-135.125,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":167.0625,"pitch":-71.6875,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.929"} +{"sensors":[{"euler":{"heading":151.9375,"pitch":-169.75,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":120.875,"pitch":124.625,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":64.0,"pitch":-177.0,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":355.875,"pitch":-136.5,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":170.5,"pitch":-72.625,"roll":65.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:28.979"} +{"sensors":[{"euler":{"heading":156.0625,"pitch":-167.625,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":124.5,"pitch":126.75,"roll":72.1875},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-154.8125,"roll":80.5},"location":"Right Ankle"},{"euler":{"heading":354.875,"pitch":-136.4375,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":175.0,"pitch":-73.6875,"roll":61.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.30"} +{"sensors":[{"euler":{"heading":160.75,"pitch":-163.5625,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":127.6875,"pitch":127.8125,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":72.3125,"pitch":-135.5,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":356.9375,"pitch":-134.0625,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":180.875,"pitch":-73.3125,"roll":57.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.80"} +{"sensors":[{"euler":{"heading":164.0625,"pitch":-160.6875,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":131.25,"pitch":127.3125,"roll":76.875},"location":"Left Ankle"},{"euler":{"heading":67.125,"pitch":-124.1875,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":1.6875,"pitch":-130.75,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":184.875,"pitch":-73.0,"roll":52.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.131"} +{"sensors":[{"euler":{"heading":167.0625,"pitch":-158.1875,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":134.0,"pitch":124.3125,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-117.5,"roll":67.875},"location":"Right Ankle"},{"euler":{"heading":6.1875,"pitch":-125.4375,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":185.625,"pitch":-73.625,"roll":50.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.181"} +{"sensors":[{"euler":{"heading":168.5,"pitch":-155.875,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":135.4375,"pitch":121.9375,"roll":80.125},"location":"Left Ankle"},{"euler":{"heading":59.8125,"pitch":-121.4375,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":8.9375,"pitch":-121.6875,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":187.0,"pitch":-71.3125,"roll":49.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.232"} +{"sensors":[{"euler":{"heading":170.8125,"pitch":-153.0625,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":122.75,"roll":80.9375},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-127.1875,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":11.8125,"pitch":-119.75,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":182.75,"pitch":-68.5,"roll":53.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.282"} +{"sensors":[{"euler":{"heading":173.125,"pitch":-150.875,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":138.0,"pitch":126.375,"roll":81.6875},"location":"Left Ankle"},{"euler":{"heading":67.6875,"pitch":-138.6875,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":14.25,"pitch":-118.0,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":-65.6875,"roll":58.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.333"} +{"sensors":[{"euler":{"heading":175.3125,"pitch":-148.8125,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":139.5625,"pitch":131.0625,"roll":82.375},"location":"Left Ankle"},{"euler":{"heading":75.125,"pitch":-161.1875,"roll":75.8125},"location":"Right Ankle"},{"euler":{"heading":16.125,"pitch":-117.5,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":171.1875,"pitch":-58.8125,"roll":63.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.384"} +{"sensors":[{"euler":{"heading":177.25,"pitch":-146.875,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":140.5,"pitch":136.6875,"roll":82.875},"location":"Left Ankle"},{"euler":{"heading":82.1875,"pitch":169.625,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":17.5625,"pitch":-117.0625,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":164.5,"pitch":-50.3125,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.434"} +{"sensors":[{"euler":{"heading":179.0,"pitch":-145.0,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":141.8125,"pitch":176.0,"roll":83.4375},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":144.3125,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-117.375,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":159.5625,"pitch":-39.375,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.485"} +{"sensors":[{"euler":{"heading":181.1875,"pitch":-142.9375,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":143.0,"pitch":177.0,"roll":83.6875},"location":"Left Ankle"},{"euler":{"heading":99.1875,"pitch":130.8125,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":17.3125,"pitch":-118.5,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":156.5625,"pitch":-27.25,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.536"} +{"sensors":[{"euler":{"heading":182.625,"pitch":-141.25,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":144.3125,"pitch":178.25,"roll":83.625},"location":"Left Ankle"},{"euler":{"heading":104.1875,"pitch":124.0,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":15.8125,"pitch":-120.1875,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":154.625,"pitch":-17.125,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.586"} +{"sensors":[{"euler":{"heading":184.75,"pitch":-139.125,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":178.625,"roll":82.8125},"location":"Left Ankle"},{"euler":{"heading":103.9375,"pitch":123.4375,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":13.375,"pitch":-121.875,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":152.875,"pitch":-13.1875,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.637"} +{"sensors":[{"euler":{"heading":187.4375,"pitch":-136.4375,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":146.5625,"pitch":-170.625,"roll":80.3125},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":127.625,"roll":69.125},"location":"Right Ankle"},{"euler":{"heading":9.125,"pitch":-123.875,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":149.6875,"pitch":-20.0625,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.688"} +{"sensors":[{"euler":{"heading":190.6875,"pitch":-132.9375,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":148.8125,"pitch":-159.125,"roll":77.125},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":129.25,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":8.0,"pitch":-124.875,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":147.0,"pitch":-25.5,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.739"} +{"sensors":[{"euler":{"heading":192.75,"pitch":-129.9375,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":153.0625,"pitch":-146.875,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":129.75,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":7.75,"pitch":-125.25,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":147.9375,"pitch":-34.375,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.790"} +{"sensors":[{"euler":{"heading":195.75,"pitch":-128.4375,"roll":44.4375},"location":"Left Knee"},{"euler":{"heading":161.8125,"pitch":-135.1875,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":128.625,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":5.8125,"pitch":-126.5,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":149.3125,"pitch":-43.25,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.841"} +{"sensors":[{"euler":{"heading":201.5,"pitch":-127.0625,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":169.625,"pitch":-127.1875,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":127.3125,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":4.0,"pitch":-128.0,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":150.875,"pitch":-51.5625,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.891"} +{"sensors":[{"euler":{"heading":204.1875,"pitch":-127.9375,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":170.375,"pitch":-127.9375,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":88.6875,"pitch":126.75,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":3.75,"pitch":-128.6875,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":153.0,"pitch":-57.1875,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.942"} +{"sensors":[{"euler":{"heading":202.25,"pitch":-130.6875,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":167.6875,"pitch":-132.0625,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":126.625,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":3.0,"pitch":-129.0,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":-61.3125,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:29.993"} +{"sensors":[{"euler":{"heading":194.5625,"pitch":-134.8125,"roll":43.25},"location":"Left Knee"},{"euler":{"heading":161.6875,"pitch":-137.875,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":88.125,"pitch":127.75,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":1.875,"pitch":-129.5,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":155.625,"pitch":-79.8125,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.43"} +{"sensors":[{"euler":{"heading":183.5625,"pitch":-141.0625,"roll":47.75},"location":"Left Knee"},{"euler":{"heading":152.375,"pitch":-158.0,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":130.25,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":1.1875,"pitch":-130.0,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":156.6875,"pitch":-66.375,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.94"} +{"sensors":[{"euler":{"heading":171.875,"pitch":-148.875,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":138.5625,"pitch":172.25,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":133.5,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":0.3125,"pitch":-130.5,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":-68.5625,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.145"} +{"sensors":[{"euler":{"heading":161.5625,"pitch":-157.6875,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":127.4375,"pitch":143.625,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":137.8125,"roll":80.375},"location":"Right Ankle"},{"euler":{"heading":359.6875,"pitch":-131.125,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":159.4375,"pitch":-70.6875,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.196"} +{"sensors":[{"euler":{"heading":153.3125,"pitch":-165.9375,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":118.875,"pitch":127.0625,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":144.0,"roll":81.25},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-131.5625,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":161.1875,"pitch":-72.125,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.246"} +{"sensors":[{"euler":{"heading":147.0625,"pitch":-172.875,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":114.5,"pitch":119.0625,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":155.875,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-132.5,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":163.625,"pitch":-73.0625,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.297"} +{"sensors":[{"euler":{"heading":144.375,"pitch":-175.9375,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":117.25,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":169.875,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":358.4375,"pitch":-134.0,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":166.375,"pitch":-73.875,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.348"} +{"sensors":[{"euler":{"heading":148.4375,"pitch":-173.75,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":119.5625,"pitch":120.75,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-172.875,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":357.875,"pitch":-135.625,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":169.9375,"pitch":-74.6875,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.398"} +{"sensors":[{"euler":{"heading":153.125,"pitch":-171.9375,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":124.4375,"pitch":122.3125,"roll":71.6875},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-152.3125,"roll":81.0},"location":"Right Ankle"},{"euler":{"heading":356.75,"pitch":-135.5625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":173.375,"pitch":-75.6875,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.449"} +{"sensors":[{"euler":{"heading":158.5,"pitch":-167.4375,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":127.4375,"pitch":122.5,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-130.1875,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":357.75,"pitch":-132.9375,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":178.0,"pitch":-76.0625,"roll":59.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.499"} +{"sensors":[{"euler":{"heading":160.9375,"pitch":-164.3125,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":123.0625,"roll":75.75},"location":"Left Ankle"},{"euler":{"heading":64.375,"pitch":-118.25,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":2.6875,"pitch":-128.9375,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":183.0,"pitch":-75.4375,"roll":54.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.550"} +{"sensors":[{"euler":{"heading":163.3125,"pitch":-161.1875,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":131.75,"pitch":123.3125,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-112.4375,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":8.125,"pitch":-123.5625,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":184.75,"pitch":-75.625,"roll":51.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.600"} +{"sensors":[{"euler":{"heading":163.625,"pitch":-157.9375,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":131.875,"pitch":121.125,"roll":78.25},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":-117.4375,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":12.125,"pitch":-119.6875,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":187.0625,"pitch":-72.3125,"roll":51.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.651"} +{"sensors":[{"euler":{"heading":165.9375,"pitch":-155.9375,"roll":61.4375},"location":"Left Knee"},{"euler":{"heading":132.9375,"pitch":120.0,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":61.75,"pitch":-126.0,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":16.0,"pitch":-117.625,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":183.6875,"pitch":-68.625,"roll":53.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.702"} +{"sensors":[{"euler":{"heading":168.625,"pitch":-154.0625,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":134.5,"pitch":120.375,"roll":80.125},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":-132.8125,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-115.625,"roll":45.25},"location":"Right Hip"},{"euler":{"heading":178.125,"pitch":-65.625,"roll":57.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.753"} +{"sensors":[{"euler":{"heading":171.125,"pitch":-152.1875,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":121.25,"roll":81.1875},"location":"Left Ankle"},{"euler":{"heading":71.5,"pitch":-149.5625,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-114.8125,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":173.0625,"pitch":-59.4375,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.804"} +{"sensors":[{"euler":{"heading":173.75,"pitch":-150.4375,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":137.625,"pitch":123.6875,"roll":82.0},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":-175.6875,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":24.0625,"pitch":-114.0625,"roll":42.25},"location":"Right Hip"},{"euler":{"heading":167.4375,"pitch":-51.75,"roll":67.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.854"} +{"sensors":[{"euler":{"heading":176.1875,"pitch":-148.4375,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":139.6875,"pitch":127.125,"roll":82.8125},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":157.0,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":25.125,"pitch":-114.75,"roll":41.8125},"location":"Right Hip"},{"euler":{"heading":161.875,"pitch":-40.5625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.906"} +{"sensors":[{"euler":{"heading":178.5,"pitch":-146.3125,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":141.125,"pitch":175.25,"roll":83.375},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":138.375,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":23.8125,"pitch":-116.4375,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":157.9375,"pitch":-26.0,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:30.956"} +{"sensors":[{"euler":{"heading":180.375,"pitch":-144.0625,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":142.5,"pitch":176.5,"roll":83.6875},"location":"Left Ankle"},{"euler":{"heading":104.25,"pitch":128.9375,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-118.75,"roll":43.9375},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":-12.1875,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.7"} +{"sensors":[{"euler":{"heading":183.0,"pitch":-141.4375,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":144.125,"pitch":178.0,"roll":83.4375},"location":"Left Ankle"},{"euler":{"heading":107.875,"pitch":124.9375,"roll":63.875},"location":"Right Ankle"},{"euler":{"heading":17.625,"pitch":-120.75,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":152.8125,"pitch":-4.375,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.57"} +{"sensors":[{"euler":{"heading":185.8125,"pitch":-138.5,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":177.1875,"roll":81.875},"location":"Left Ankle"},{"euler":{"heading":105.1875,"pitch":126.1875,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":15.3125,"pitch":-122.1875,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":152.375,"pitch":-9.4375,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.107"} +{"sensors":[{"euler":{"heading":188.9375,"pitch":-135.375,"roll":53.5625},"location":"Left Knee"},{"euler":{"heading":147.0625,"pitch":-170.6875,"roll":79.3125},"location":"Left Ankle"},{"euler":{"heading":100.75,"pitch":127.9375,"roll":67.5625},"location":"Right Ankle"},{"euler":{"heading":12.5625,"pitch":-124.8125,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":150.1875,"pitch":-17.6875,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.158"} +{"sensors":[{"euler":{"heading":191.6875,"pitch":-132.0,"roll":50.875},"location":"Left Knee"},{"euler":{"heading":150.625,"pitch":-156.4375,"roll":75.8125},"location":"Left Ankle"},{"euler":{"heading":96.9375,"pitch":129.0,"roll":70.125},"location":"Right Ankle"},{"euler":{"heading":12.4375,"pitch":-125.25,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":149.75,"pitch":-26.875,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.209"} +{"sensors":[{"euler":{"heading":194.8125,"pitch":-129.875,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":157.25,"pitch":-141.625,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":131.1875,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":10.5625,"pitch":-125.9375,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":150.375,"pitch":-36.1875,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.260"} +{"sensors":[{"euler":{"heading":199.0,"pitch":-128.5625,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":166.5625,"pitch":-131.0,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":130.1875,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":7.875,"pitch":-127.4375,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":151.3125,"pitch":-43.875,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.310"} +{"sensors":[{"euler":{"heading":202.875,"pitch":-127.5625,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":171.3125,"pitch":-126.3125,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":91.6875,"pitch":128.75,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":6.1875,"pitch":-128.75,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":152.4375,"pitch":-50.4375,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.361"} +{"sensors":[{"euler":{"heading":202.9375,"pitch":-129.0,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":171.75,"pitch":-126.75,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":127.9375,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":4.625,"pitch":-129.0,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":152.75,"pitch":-55.3125,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.412"} +{"sensors":[{"euler":{"heading":200.875,"pitch":-132.5,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":168.9375,"pitch":-129.5,"roll":61.875},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":128.625,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":3.3125,"pitch":-129.125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":153.0,"pitch":-59.3125,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.463"} +{"sensors":[{"euler":{"heading":191.625,"pitch":-137.5,"roll":44.5625},"location":"Left Knee"},{"euler":{"heading":163.0625,"pitch":-134.8125,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":130.75,"roll":77.875},"location":"Right Ankle"},{"euler":{"heading":1.9375,"pitch":-129.625,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":153.875,"pitch":-62.75,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.513"} +{"sensors":[{"euler":{"heading":181.0625,"pitch":-143.875,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":154.375,"pitch":-153.6875,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":132.9375,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":0.875,"pitch":-130.3125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":-65.3125,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.564"} +{"sensors":[{"euler":{"heading":170.125,"pitch":-151.6875,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":144.375,"pitch":-178.875,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":136.625,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":0.3125,"pitch":-131.0625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":156.75,"pitch":-67.5625,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.615"} +{"sensors":[{"euler":{"heading":162.1875,"pitch":-159.75,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":133.0625,"pitch":154.3125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":141.875,"roll":80.625},"location":"Right Ankle"},{"euler":{"heading":359.875,"pitch":-131.6875,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":158.25,"pitch":-69.6875,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.666"} +{"sensors":[{"euler":{"heading":155.5625,"pitch":-166.8125,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":125.875,"pitch":136.75,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":150.3125,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-132.0625,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":159.4375,"pitch":-71.125,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.717"} +{"sensors":[{"euler":{"heading":150.8125,"pitch":-172.6875,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":122.5625,"pitch":127.375,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":162.5625,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":358.5625,"pitch":-132.8125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":161.375,"pitch":-72.0,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.768"} +{"sensors":[{"euler":{"heading":148.9375,"pitch":-175.5625,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":122.25,"pitch":124.5625,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":77.8125,"pitch":175.25,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":358.25,"pitch":-134.125,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":164.125,"pitch":-72.6875,"roll":69.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.818"} +{"sensors":[{"euler":{"heading":153.0,"pitch":-173.0625,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":125.25,"pitch":126.4375,"roll":68.375},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-170.25,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":357.8125,"pitch":-135.375,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":167.1875,"pitch":-73.125,"roll":66.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.870"} +{"sensors":[{"euler":{"heading":156.5,"pitch":-171.5,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":128.4375,"pitch":125.0,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":-150.5625,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":357.8125,"pitch":-135.3125,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":171.875,"pitch":-73.875,"roll":62.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.921"} +{"sensors":[{"euler":{"heading":161.75,"pitch":-167.5,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":131.125,"pitch":125.125,"roll":73.125},"location":"Left Ankle"},{"euler":{"heading":69.125,"pitch":-133.6875,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-132.9375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":-74.875,"roll":59.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:31.972"} +{"sensors":[{"euler":{"heading":164.75,"pitch":-163.4375,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":134.25,"pitch":125.375,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":64.4375,"pitch":-120.3125,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":1.5,"pitch":-129.5625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":181.8125,"pitch":-74.0625,"roll":54.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.23"} +{"sensors":[{"euler":{"heading":168.6875,"pitch":-160.3125,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":137.625,"pitch":124.4375,"roll":77.6875},"location":"Left Ankle"},{"euler":{"heading":56.125,"pitch":-115.1875,"roll":65.6875},"location":"Right Ankle"},{"euler":{"heading":7.1875,"pitch":-124.9375,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":184.375,"pitch":-74.125,"roll":50.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.73"} +{"sensors":[{"euler":{"heading":170.5,"pitch":-157.375,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":138.5625,"pitch":124.125,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":53.3125,"pitch":-113.6875,"roll":62.5625},"location":"Right Ankle"},{"euler":{"heading":12.6875,"pitch":-119.375,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":186.1875,"pitch":-73.4375,"roll":48.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.124"} +{"sensors":[{"euler":{"heading":172.5,"pitch":-155.125,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":139.8125,"pitch":122.625,"roll":79.9375},"location":"Left Ankle"},{"euler":{"heading":55.25,"pitch":-117.75,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":18.5,"pitch":-116.9375,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":187.1875,"pitch":-69.3125,"roll":49.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.175"} +{"sensors":[{"euler":{"heading":174.75,"pitch":-153.125,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":141.125,"pitch":123.3125,"roll":81.0},"location":"Left Ankle"},{"euler":{"heading":58.3125,"pitch":-119.5625,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":22.5,"pitch":-115.5,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":183.5,"pitch":-66.6875,"roll":52.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.226"} +{"sensors":[{"euler":{"heading":176.25,"pitch":-151.125,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":142.375,"pitch":125.125,"roll":81.75},"location":"Left Ankle"},{"euler":{"heading":64.3125,"pitch":-127.0625,"roll":70.75},"location":"Right Ankle"},{"euler":{"heading":25.6875,"pitch":-114.4375,"roll":41.375},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-62.6875,"roll":58.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.276"} +{"sensors":[{"euler":{"heading":178.0625,"pitch":-149.25,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":144.125,"pitch":127.875,"roll":82.5},"location":"Left Ankle"},{"euler":{"heading":72.5,"pitch":-146.6875,"roll":75.625},"location":"Right Ankle"},{"euler":{"heading":28.8125,"pitch":-114.625,"roll":39.4375},"location":"Right Hip"},{"euler":{"heading":172.9375,"pitch":-56.0,"roll":63.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.327"} +{"sensors":[{"euler":{"heading":180.0,"pitch":-147.25,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":175.0,"roll":83.25},"location":"Left Ankle"},{"euler":{"heading":81.1875,"pitch":-179.75,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":30.4375,"pitch":-114.75,"roll":38.5625},"location":"Right Hip"},{"euler":{"heading":166.375,"pitch":-46.25,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.377"} +{"sensors":[{"euler":{"heading":181.75,"pitch":-145.25,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":146.875,"pitch":175.9375,"roll":83.9375},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":153.5625,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":29.9375,"pitch":-116.0625,"roll":38.875},"location":"Right Hip"},{"euler":{"heading":161.1875,"pitch":-32.4375,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.429"} +{"sensors":[{"euler":{"heading":183.5,"pitch":-142.5,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":148.25,"pitch":177.25,"roll":84.375},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":136.375,"roll":69.1875},"location":"Right Ankle"},{"euler":{"heading":27.0,"pitch":-117.625,"roll":40.5},"location":"Right Hip"},{"euler":{"heading":157.6875,"pitch":-18.6875,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.480"} +{"sensors":[{"euler":{"heading":185.25,"pitch":-140.1875,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":149.8125,"pitch":178.75,"roll":84.3125},"location":"Left Ankle"},{"euler":{"heading":103.75,"pitch":131.625,"roll":67.0},"location":"Right Ankle"},{"euler":{"heading":23.4375,"pitch":-119.375,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":155.4375,"pitch":-11.5625,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.530"} +{"sensors":[{"euler":{"heading":187.1875,"pitch":-137.875,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":151.3125,"pitch":-179.625,"roll":83.625},"location":"Left Ankle"},{"euler":{"heading":105.0,"pitch":130.5,"roll":68.0},"location":"Right Ankle"},{"euler":{"heading":20.0,"pitch":-120.9375,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":156.1875,"pitch":-14.75,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.581"} +{"sensors":[{"euler":{"heading":190.1875,"pitch":-135.125,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":152.1875,"pitch":-165.3125,"roll":81.6875},"location":"Left Ankle"},{"euler":{"heading":104.1875,"pitch":129.6875,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":17.25,"pitch":-122.6875,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":156.25,"pitch":-24.8125,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.632"} +{"sensors":[{"euler":{"heading":192.875,"pitch":-131.5625,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":153.875,"pitch":-154.1875,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":100.875,"pitch":129.1875,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":14.0,"pitch":-125.625,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":153.8125,"pitch":-28.9375,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.683"} +{"sensors":[{"euler":{"heading":196.25,"pitch":-128.6875,"roll":48.4375},"location":"Left Knee"},{"euler":{"heading":157.9375,"pitch":-141.875,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":97.0,"pitch":130.125,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":13.625,"pitch":-125.625,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":152.4375,"pitch":-36.8125,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.734"} +{"sensors":[{"euler":{"heading":200.3125,"pitch":-127.25,"roll":44.5625},"location":"Left Knee"},{"euler":{"heading":164.8125,"pitch":-131.125,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":93.875,"pitch":130.4375,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":11.875,"pitch":-126.375,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":151.75,"pitch":-43.75,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.785"} +{"sensors":[{"euler":{"heading":203.875,"pitch":-126.6875,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":173.9375,"pitch":-122.75,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":91.4375,"pitch":128.875,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":8.5,"pitch":-112.0625,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":150.5,"pitch":-48.75,"roll":-0.9375},"location":"Right Knee"},{"euler":{"heading":-0.0625,"pitch":-0.0625,"roll":-0.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.835"} +{"sensors":[{"euler":{"heading":-0.0625,"pitch":-0.0625,"roll":-0.0625},"location":"Left Knee"},{"euler":{"heading":129.4375,"pitch":123.625,"roll":75.0},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":-123.9375,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":6.0625,"pitch":-135.5625,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":179.3125,"pitch":-74.8125,"roll":55.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:32.886"} +{"sensors":[{"euler":{"heading":162.6875,"pitch":-162.9375,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":131.5,"pitch":125.0,"roll":75.625},"location":"Left Ankle"},{"euler":{"heading":62.25,"pitch":-119.625,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":11.0625,"pitch":-134.0625,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":181.8125,"pitch":-74.6875,"roll":54.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:33.546"} +{"sensors":[{"euler":{"heading":164.5625,"pitch":-159.5625,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":132.375,"pitch":123.5,"roll":76.9375},"location":"Left Ankle"},{"euler":{"heading":56.875,"pitch":-115.1875,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":17.8125,"pitch":-132.25,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":185.6875,"pitch":-73.9375,"roll":50.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:33.598"} +{"sensors":[{"euler":{"heading":166.25,"pitch":-157.25,"roll":62.0625},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":119.6875,"roll":78.25},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":-118.0,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":22.25,"pitch":-127.375,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":188.1875,"pitch":-71.875,"roll":49.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:33.648"} +{"sensors":[{"euler":{"heading":168.375,"pitch":-154.9375,"roll":62.0625},"location":"Left Knee"},{"euler":{"heading":134.8125,"pitch":118.5625,"roll":79.25},"location":"Left Ankle"},{"euler":{"heading":60.75,"pitch":-122.625,"roll":65.375},"location":"Right Ankle"},{"euler":{"heading":23.5,"pitch":-121.3125,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":-68.25,"roll":52.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:33.699"} +{"sensors":[{"euler":{"heading":170.875,"pitch":-152.875,"roll":61.75},"location":"Left Knee"},{"euler":{"heading":136.25,"pitch":118.3125,"roll":80.25},"location":"Left Ankle"},{"euler":{"heading":66.6875,"pitch":-132.6875,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":25.125,"pitch":-119.3125,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":180.375,"pitch":-65.0,"roll":57.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:33.750"} +{"sensors":[{"euler":{"heading":173.1875,"pitch":-150.8125,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":137.5,"pitch":120.5,"roll":81.125},"location":"Left Ankle"},{"euler":{"heading":74.9375,"pitch":-152.9375,"roll":74.125},"location":"Right Ankle"},{"euler":{"heading":24.9375,"pitch":-118.6875,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":174.375,"pitch":-59.1875,"roll":63.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:33.801"} +{"sensors":[{"euler":{"heading":174.8125,"pitch":-148.8125,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":138.75,"pitch":124.5625,"roll":81.9375},"location":"Left Ankle"},{"euler":{"heading":83.5,"pitch":177.1875,"roll":75.125},"location":"Right Ankle"},{"euler":{"heading":23.9375,"pitch":-119.4375,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":167.9375,"pitch":-50.375,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:33.852"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":59.5,"pitch":-118.0,"roll":61.8125},"location":"Right Ankle"},{"euler":{"heading":14.9375,"pitch":-122.625,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":191.6875,"pitch":-71.5625,"roll":49.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:33.903"} +{"sensors":[{"euler":{"heading":169.625,"pitch":-155.0,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":138.0,"pitch":120.6875,"roll":80.4375},"location":"Left Ankle"},{"euler":{"heading":59.9375,"pitch":-119.8125,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":16.6875,"pitch":-121.4375,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":190.6875,"pitch":-70.0625,"roll":50.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.197"} +{"sensors":[{"euler":{"heading":171.875,"pitch":-152.9375,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":139.75,"pitch":121.25,"roll":81.3125},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-123.0625,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":19.6875,"pitch":-119.1875,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":185.0,"pitch":-67.75,"roll":54.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.248"} +{"sensors":[{"euler":{"heading":174.4375,"pitch":-150.9375,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":141.5,"pitch":123.9375,"roll":82.1875},"location":"Left Ankle"},{"euler":{"heading":69.1875,"pitch":-133.5625,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":22.0,"pitch":-117.75,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":178.375,"pitch":-63.6875,"roll":60.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.299"} +{"sensors":[{"euler":{"heading":176.8125,"pitch":-149.0,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":128.75,"roll":82.875},"location":"Left Ankle"},{"euler":{"heading":76.6875,"pitch":-158.4375,"roll":75.8125},"location":"Right Ankle"},{"euler":{"heading":23.625,"pitch":-116.75,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":171.375,"pitch":-56.0625,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.350"} +{"sensors":[{"euler":{"heading":179.3125,"pitch":-146.875,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":144.0,"pitch":175.3125,"roll":83.5},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":167.0625,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":25.4375,"pitch":-116.5,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":164.125,"pitch":-43.8125,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.400"} +{"sensors":[{"euler":{"heading":181.1875,"pitch":-144.9375,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":145.25,"pitch":176.1875,"roll":84.0},"location":"Left Ankle"},{"euler":{"heading":94.8125,"pitch":140.875,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":24.8125,"pitch":-117.75,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":158.3125,"pitch":-26.125,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.451"} +{"sensors":[{"euler":{"heading":183.125,"pitch":-142.75,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":146.3125,"pitch":177.25,"roll":84.1875},"location":"Left Ankle"},{"euler":{"heading":104.1875,"pitch":129.1875,"roll":66.5625},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-120.25,"roll":43.9375},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":-9.3125,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.501"} +{"sensors":[{"euler":{"heading":185.4375,"pitch":-140.3125,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":147.625,"pitch":178.625,"roll":84.0},"location":"Left Ankle"},{"euler":{"heading":108.6875,"pitch":125.1875,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-122.0625,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":152.9375,"pitch":-0.5,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.552"} +{"sensors":[{"euler":{"heading":187.75,"pitch":-137.6875,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":148.5,"pitch":-179.0,"roll":82.5625},"location":"Left Ankle"},{"euler":{"heading":106.25,"pitch":126.1875,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":16.9375,"pitch":-123.375,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":152.375,"pitch":-5.5,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.603"} +{"sensors":[{"euler":{"heading":190.4375,"pitch":-134.75,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":149.25,"pitch":-169.0,"roll":79.8125},"location":"Left Ankle"},{"euler":{"heading":101.75,"pitch":127.5625,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":13.5,"pitch":-126.6875,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":152.375,"pitch":-14.875,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.654"} +{"sensors":[{"euler":{"heading":193.875,"pitch":-131.125,"roll":50.3125},"location":"Left Knee"},{"euler":{"heading":193.875,"pitch":-131.125,"roll":50.3125},"location":"Left Ankle"},{"euler":{"heading":80.75,"pitch":-177.6875,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-138.5625,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":169.5,"pitch":-73.75,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:35.704"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":124.25,"pitch":121.125,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":-165.0625,"roll":80.8125},"location":"Right Ankle"},{"euler":{"heading":357.25,"pitch":-138.875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":170.8125,"pitch":-74.5,"roll":65.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:36.360"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":127.1875,"pitch":122.6875,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":76.125,"pitch":-146.3125,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":356.8125,"pitch":-137.875,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":176.3125,"pitch":-75.5625,"roll":61.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:36.410"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":129.5,"pitch":123.4375,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":71.6875,"pitch":-129.0625,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":0.875,"pitch":-134.0625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":182.625,"pitch":-74.125,"roll":57.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:36.462"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":132.5,"pitch":124.0,"roll":75.4375},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":-122.25,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":7.0,"pitch":-128.0625,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":185.25,"pitch":-74.125,"roll":53.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:36.513"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":133.1875,"pitch":123.875,"roll":76.5625},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":-123.0,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":11.4375,"pitch":-123.0,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":187.25,"pitch":-73.3125,"roll":51.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:36.564"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":123.6875,"roll":77.75},"location":"Left Ankle"},{"euler":{"heading":64.8125,"pitch":-128.625,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":15.8125,"pitch":-120.5625,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":187.0,"pitch":-69.25,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:36.615"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":135.25,"pitch":125.9375,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":68.5625,"pitch":-136.125,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":18.75,"pitch":-118.8125,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":181.75,"pitch":-66.5625,"roll":56.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:36.666"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":136.375,"pitch":128.9375,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":74.4375,"pitch":-151.625,"roll":74.0625},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-117.875,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-61.5625,"roll":62.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:36.717"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":137.75,"pitch":131.125,"roll":80.625},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":-179.0625,"roll":75.6875},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-117.5625,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":-53.4375,"roll":67.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:03:36.768"} +{"sensors":[{"euler":{"heading":263.5625,"pitch":143.6875,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":127.9375,"pitch":138.5,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":136.875,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":22.875,"pitch":-142.1875,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":-55.25,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-135.3125,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:56.44"} +{"sensors":[{"euler":{"heading":263.5,"pitch":143.9375,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":138.4375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":135.9375,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":22.75,"pitch":-142.5,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":177.0625,"pitch":-55.75,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":95.8125,"pitch":-135.6875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:56.145"} +{"sensors":[{"euler":{"heading":263.4375,"pitch":144.1875,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":138.625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":135.0625,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":23.375,"pitch":-142.4375,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":177.625,"pitch":-55.75,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":96.4375,"pitch":-135.9375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:56.246"} +{"sensors":[{"euler":{"heading":263.6875,"pitch":144.125,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":127.9375,"pitch":138.8125,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":99.625,"pitch":134.4375,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-142.3125,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":177.9375,"pitch":-55.875,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":97.0625,"pitch":-136.4375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:56.347"} +{"sensors":[{"euler":{"heading":263.625,"pitch":144.1875,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":138.5625,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":100.0625,"pitch":133.5625,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":23.9375,"pitch":-142.5,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":178.1875,"pitch":-55.875,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":97.375,"pitch":-136.75,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:56.448"} +{"sensors":[{"euler":{"heading":263.4375,"pitch":144.375,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":138.5625,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":100.125,"pitch":133.25,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-142.4375,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":178.1875,"pitch":-55.875,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":97.375,"pitch":-136.8125,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:56.548"} +{"sensors":[{"euler":{"heading":263.4375,"pitch":144.375,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":138.5625,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":100.125,"pitch":133.125,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":24.125,"pitch":-142.375,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":-55.875,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":97.4375,"pitch":-136.8125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:56.648"} +{"sensors":[{"euler":{"heading":263.5,"pitch":144.375,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":138.5625,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":100.25,"pitch":132.9375,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":24.25,"pitch":-142.3125,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-55.875,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":97.5625,"pitch":-136.9375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:56.749"} +{"sensors":[{"euler":{"heading":263.375,"pitch":144.5,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":138.5625,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":132.625,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":24.25,"pitch":-142.375,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":178.5,"pitch":-55.625,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":97.625,"pitch":-137.0,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:56.850"} +{"sensors":[{"euler":{"heading":263.25,"pitch":144.5625,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":138.5,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":100.5,"pitch":132.75,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":24.1875,"pitch":-142.375,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":178.5,"pitch":-55.5,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":97.5,"pitch":-136.9375,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:56.951"} +{"sensors":[{"euler":{"heading":263.1875,"pitch":144.625,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":138.4375,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":100.5,"pitch":132.9375,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":24.125,"pitch":-142.4375,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-55.3125,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":97.375,"pitch":-136.8125,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:57.51"} +{"sensors":[{"euler":{"heading":263.125,"pitch":144.625,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":138.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":100.5,"pitch":133.25,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-142.5,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-55.0,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":97.1875,"pitch":-136.6875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:57.152"} +{"sensors":[{"euler":{"heading":263.125,"pitch":144.5625,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":138.25,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":100.1875,"pitch":133.5625,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":24.1875,"pitch":-142.25,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":178.0,"pitch":-54.75,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":97.375,"pitch":-136.5,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:57.253"} +{"sensors":[{"euler":{"heading":263.25,"pitch":144.4375,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":138.3125,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":100.3125,"pitch":133.5,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-142.3125,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":178.1875,"pitch":-54.5625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":97.5,"pitch":-136.4375,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:57.354"} +{"sensors":[{"euler":{"heading":263.3125,"pitch":144.4375,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":138.25,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":100.5,"pitch":133.3125,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":24.5,"pitch":-142.375,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":-54.5625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":97.625,"pitch":-136.5,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:57.454"} +{"sensors":[{"euler":{"heading":263.0625,"pitch":144.5625,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":138.3125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":133.125,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-142.625,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":178.375,"pitch":-54.6875,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":97.75,"pitch":-136.625,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:57.555"} +{"sensors":[{"euler":{"heading":263.25,"pitch":144.5,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":128.0,"pitch":138.5625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":100.625,"pitch":133.25,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":24.5625,"pitch":-142.75,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-54.625,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":98.0,"pitch":-136.6875,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:57.655"} +{"sensors":[{"euler":{"heading":263.3125,"pitch":144.375,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":128.0,"pitch":138.6875,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":100.3125,"pitch":134.0,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":24.25,"pitch":-142.875,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":178.375,"pitch":-54.625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":97.8125,"pitch":-136.8125,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:57.756"} +{"sensors":[{"euler":{"heading":262.875,"pitch":144.5,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":138.75,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":134.9375,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":23.6875,"pitch":-142.875,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":177.9375,"pitch":-54.75,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":96.9375,"pitch":-136.5,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:57.857"} +{"sensors":[{"euler":{"heading":262.375,"pitch":144.6875,"roll":61.4375},"location":"Left Knee"},{"euler":{"heading":127.6875,"pitch":138.6875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":99.625,"pitch":135.0625,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":23.0625,"pitch":-143.25,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":177.8125,"pitch":-54.75,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":96.5625,"pitch":-136.3125,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:57.958"} +{"sensors":[{"euler":{"heading":262.25,"pitch":144.75,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":127.75,"pitch":138.5625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":135.3125,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":23.125,"pitch":-143.25,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":177.8125,"pitch":-54.5625,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":96.25,"pitch":-135.875,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:58.58"} +{"sensors":[{"euler":{"heading":262.6875,"pitch":144.6875,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":128.25,"pitch":138.4375,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":100.0,"pitch":135.375,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":23.1875,"pitch":-143.3125,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":177.9375,"pitch":-54.4375,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":96.1875,"pitch":-135.5,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:58.159"} +{"sensors":[{"euler":{"heading":262.625,"pitch":144.6875,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":128.5,"pitch":138.3125,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":100.375,"pitch":135.1875,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":23.3125,"pitch":-143.3125,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":178.125,"pitch":-54.25,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":96.125,"pitch":-135.4375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:58.259"} +{"sensors":[{"euler":{"heading":262.125,"pitch":144.9375,"roll":61.875},"location":"Left Knee"},{"euler":{"heading":128.3125,"pitch":137.875,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":135.4375,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":23.1875,"pitch":-143.25,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":178.0625,"pitch":-54.25,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-135.4375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:58.360"} +{"sensors":[{"euler":{"heading":261.1875,"pitch":145.25,"roll":62.0625},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":137.25,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":100.1875,"pitch":135.9375,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":22.375,"pitch":-143.375,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":-54.0625,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-135.375,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:58.460"} +{"sensors":[{"euler":{"heading":260.5,"pitch":145.5,"roll":62.125},"location":"Left Knee"},{"euler":{"heading":127.4375,"pitch":136.9375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":99.75,"pitch":136.8125,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-143.5,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":-54.25,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":94.0625,"pitch":-135.4375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:58.561"} +{"sensors":[{"euler":{"heading":260.3125,"pitch":145.5,"roll":62.0625},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":136.9375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":136.8125,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-143.6875,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":-54.5625,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":94.1875,"pitch":-135.8125,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:58.661"} +{"sensors":[{"euler":{"heading":260.625,"pitch":145.3125,"roll":62.0},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":137.0625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":99.9375,"pitch":135.875,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":22.0625,"pitch":-143.875,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":178.0625,"pitch":-54.875,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-136.3125,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:58.762"} +{"sensors":[{"euler":{"heading":261.0625,"pitch":145.1875,"roll":61.875},"location":"Left Knee"},{"euler":{"heading":127.1875,"pitch":137.5,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":100.0625,"pitch":135.125,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":22.5625,"pitch":-143.6875,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":178.0625,"pitch":-55.0625,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":95.8125,"pitch":-136.875,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:58.864"} +{"sensors":[{"euler":{"heading":261.0625,"pitch":145.1875,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":127.1875,"pitch":137.6875,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":100.0625,"pitch":134.4375,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":22.5,"pitch":-143.625,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":-55.4375,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":96.0625,"pitch":-137.3125,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:58.965"} +{"sensors":[{"euler":{"heading":260.6875,"pitch":145.4375,"roll":61.75},"location":"Left Knee"},{"euler":{"heading":126.875,"pitch":137.625,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":99.875,"pitch":133.6875,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":22.125,"pitch":-143.5,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":177.375,"pitch":-55.8125,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":95.8125,"pitch":-137.4375,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:59.66"} +{"sensors":[{"euler":{"heading":260.25,"pitch":145.75,"roll":61.75},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":137.5,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":99.5,"pitch":133.0,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-143.3125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":-56.5625,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-137.4375,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:59.167"} +{"sensors":[{"euler":{"heading":260.0,"pitch":146.0625,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":126.5625,"pitch":137.6875,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":132.125,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-143.3125,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":176.5625,"pitch":-57.25,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-137.5,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:59.268"} +{"sensors":[{"euler":{"heading":259.875,"pitch":146.375,"roll":61.5625},"location":"Left Knee"},{"euler":{"heading":126.5,"pitch":138.1875,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":99.0625,"pitch":131.375,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":21.0,"pitch":-143.25,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":176.3125,"pitch":-57.8125,"roll":74.0},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-137.625,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:59.369"} +{"sensors":[{"euler":{"heading":259.4375,"pitch":146.75,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":138.125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":98.8125,"pitch":130.875,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":20.4375,"pitch":-143.25,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-58.4375,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":94.3125,"pitch":-137.75,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:59.470"} +{"sensors":[{"euler":{"heading":258.75,"pitch":147.0,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":125.875,"pitch":138.0,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":130.8125,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":19.6875,"pitch":-143.375,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-58.875,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":93.5,"pitch":-137.6875,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:59.570"} +{"sensors":[{"euler":{"heading":258.3125,"pitch":147.3125,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":125.75,"pitch":137.8125,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":130.75,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":18.9375,"pitch":-143.8125,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-59.0625,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":93.25,"pitch":-137.75,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:59.671"} +{"sensors":[{"euler":{"heading":258.8125,"pitch":147.1875,"roll":61.5625},"location":"Left Knee"},{"euler":{"heading":125.9375,"pitch":138.125,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":130.5625,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":18.5,"pitch":-144.125,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-59.5625,"roll":74.0},"location":"Right Knee"},{"euler":{"heading":93.25,"pitch":-137.8125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:59.772"} +{"sensors":[{"euler":{"heading":259.1875,"pitch":146.9375,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":126.0625,"pitch":138.75,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":97.8125,"pitch":131.0625,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":18.0625,"pitch":-144.125,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-60.1875,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":93.125,"pitch":-137.9375,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:59.872"} +{"sensors":[{"euler":{"heading":259.4375,"pitch":146.75,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":126.375,"pitch":139.5625,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":97.5,"pitch":131.6875,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":17.75,"pitch":-144.3125,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-60.6875,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":93.3125,"pitch":-138.25,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:06:59.973"} +{"sensors":[{"euler":{"heading":259.625,"pitch":146.625,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":126.4375,"pitch":139.75,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":97.5,"pitch":131.75,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":17.75,"pitch":-144.4375,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-60.75,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":93.625,"pitch":-138.5625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:00.74"} +{"sensors":[{"euler":{"heading":259.9375,"pitch":146.375,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":126.5625,"pitch":139.8125,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":131.75,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-144.4375,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-60.5625,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":94.0625,"pitch":-138.875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:00.175"} +{"sensors":[{"euler":{"heading":259.875,"pitch":146.375,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":139.8125,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":131.75,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-144.4375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":175.875,"pitch":-60.5,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":94.125,"pitch":-139.0625,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:00.275"} +{"sensors":[{"euler":{"heading":259.625,"pitch":146.375,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":126.5625,"pitch":139.6875,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":97.5,"pitch":132.5625,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":17.5625,"pitch":-144.625,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-60.125,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":93.875,"pitch":-139.1875,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:00.376"} +{"sensors":[{"euler":{"heading":259.5,"pitch":146.25,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":126.4375,"pitch":139.4375,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":97.375,"pitch":133.625,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":17.375,"pitch":-144.875,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-59.8125,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":93.875,"pitch":-139.1875,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:00.477"} +{"sensors":[{"euler":{"heading":259.625,"pitch":146.0625,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":126.5,"pitch":139.3125,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":97.5625,"pitch":134.0,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":17.5,"pitch":-145.125,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-59.4375,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":94.1875,"pitch":-139.375,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:00.578"} +{"sensors":[{"euler":{"heading":260.0,"pitch":145.75,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":139.3125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":97.8125,"pitch":134.3125,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":17.875,"pitch":-145.25,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":176.3125,"pitch":-58.8125,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":94.625,"pitch":-139.375,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:00.679"} +{"sensors":[{"euler":{"heading":260.125,"pitch":145.5,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":126.6875,"pitch":139.0,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":134.5625,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":17.9375,"pitch":-145.1875,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":176.3125,"pitch":-58.625,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":94.6875,"pitch":-139.4375,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:00.780"} +{"sensors":[{"euler":{"heading":260.0625,"pitch":145.4375,"roll":61.4375},"location":"Left Knee"},{"euler":{"heading":126.6875,"pitch":138.75,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":134.5625,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":17.9375,"pitch":-145.25,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":-58.5,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-139.5,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:00.881"} +{"sensors":[{"euler":{"heading":260.125,"pitch":145.375,"roll":61.4375},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":138.875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":134.6875,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":18.0625,"pitch":-145.1875,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":-58.5,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-139.5625,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:00.982"} +{"sensors":[{"euler":{"heading":260.25,"pitch":145.4375,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":126.6875,"pitch":139.0625,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":135.0,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":18.1875,"pitch":-145.125,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":-58.4375,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-139.5,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:01.83"} +{"sensors":[{"euler":{"heading":260.125,"pitch":145.5,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":139.1875,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":97.5625,"pitch":135.125,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":18.125,"pitch":-145.1875,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":-58.375,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-139.6875,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:01.184"} +{"sensors":[{"euler":{"heading":260.3125,"pitch":145.4375,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":139.3125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":135.0625,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":18.25,"pitch":-145.3125,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-58.4375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-139.9375,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:01.284"} +{"sensors":[{"euler":{"heading":260.375,"pitch":145.4375,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":139.375,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":134.75,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":18.4375,"pitch":-145.1875,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-58.8125,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-140.0625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:01.385"} +{"sensors":[{"euler":{"heading":260.375,"pitch":145.4375,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":126.8125,"pitch":139.4375,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":134.625,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":18.3125,"pitch":-145.1875,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-59.0,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-140.0,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:01.485"} +{"sensors":[{"euler":{"heading":260.375,"pitch":145.4375,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":139.3125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":134.625,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":18.25,"pitch":-145.1875,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-58.875,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-139.8125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:01.586"} +{"sensors":[{"euler":{"heading":260.75,"pitch":145.4375,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":127.0625,"pitch":139.0,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":97.8125,"pitch":134.375,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-145.0,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-58.625,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-139.375,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:01.688"} +{"sensors":[{"euler":{"heading":260.6875,"pitch":145.5625,"roll":61.4375},"location":"Left Knee"},{"euler":{"heading":127.1875,"pitch":138.875,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":134.1875,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":19.0,"pitch":-144.6875,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":-58.3125,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":95.125,"pitch":-139.125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:01.789"} +{"sensors":[{"euler":{"heading":260.4375,"pitch":145.75,"roll":61.5625},"location":"Left Knee"},{"euler":{"heading":127.0625,"pitch":138.625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":134.5,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":18.9375,"pitch":-144.75,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":-57.9375,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-138.8125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:01.889"} +{"sensors":[{"euler":{"heading":260.625,"pitch":145.75,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":138.625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":134.6875,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-144.5625,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":-57.5,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":95.125,"pitch":-138.5,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:01.990"} +{"sensors":[{"euler":{"heading":261.0,"pitch":145.625,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":127.3125,"pitch":138.5,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":134.6875,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":20.25,"pitch":-144.375,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":176.9375,"pitch":-57.0,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":95.5,"pitch":-138.3125,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:02.91"} +{"sensors":[{"euler":{"heading":261.5625,"pitch":145.75,"roll":61.75},"location":"Left Knee"},{"euler":{"heading":128.0625,"pitch":138.25,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":134.75,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":20.9375,"pitch":-144.125,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":177.0625,"pitch":-56.8125,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-137.5,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:02.192"} +{"sensors":[{"euler":{"heading":261.75,"pitch":145.9375,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":128.75,"pitch":138.25,"roll":74.5625},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":135.25,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-144.0,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":176.875,"pitch":-56.625,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-136.75,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:02.292"} +{"sensors":[{"euler":{"heading":261.9375,"pitch":145.8125,"roll":61.9375},"location":"Left Knee"},{"euler":{"heading":128.8125,"pitch":137.75,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":136.0625,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-144.0625,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":176.9375,"pitch":-56.5,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-136.5,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:02.393"} +{"sensors":[{"euler":{"heading":262.5625,"pitch":145.3125,"roll":61.9375},"location":"Left Knee"},{"euler":{"heading":129.1875,"pitch":137.875,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":98.25,"pitch":136.5,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":21.375,"pitch":-143.875,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":177.1875,"pitch":-56.375,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-136.25,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:02.494"} +{"sensors":[{"euler":{"heading":263.0,"pitch":145.0625,"roll":62.0},"location":"Left Knee"},{"euler":{"heading":129.4375,"pitch":137.4375,"roll":75.0625},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":136.8125,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-143.8125,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":177.1875,"pitch":-56.1875,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-136.0625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:02.595"} +{"sensors":[{"euler":{"heading":263.1875,"pitch":145.0625,"roll":62.0625},"location":"Left Knee"},{"euler":{"heading":129.625,"pitch":137.125,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":137.75,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-143.8125,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":177.125,"pitch":-56.0625,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-135.625,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:02.696"} +{"sensors":[{"euler":{"heading":264.125,"pitch":144.9375,"roll":62.1875},"location":"Left Knee"},{"euler":{"heading":130.3125,"pitch":136.9375,"roll":75.625},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":138.875,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-143.6875,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":177.5,"pitch":-55.6875,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":95.625,"pitch":-135.25,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:02.796"} +{"sensors":[{"euler":{"heading":264.8125,"pitch":144.75,"roll":62.3125},"location":"Left Knee"},{"euler":{"heading":131.0625,"pitch":136.8125,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":98.25,"pitch":139.5,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":22.5,"pitch":-143.4375,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":177.8125,"pitch":-55.3125,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":95.8125,"pitch":-134.75,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:02.897"} +{"sensors":[{"euler":{"heading":265.25,"pitch":144.3125,"roll":62.5},"location":"Left Knee"},{"euler":{"heading":130.9375,"pitch":136.0,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":140.0,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":23.1875,"pitch":-143.1875,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":178.25,"pitch":-54.75,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":96.375,"pitch":-134.875,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:02.998"} +{"sensors":[{"euler":{"heading":265.0625,"pitch":144.125,"roll":62.8125},"location":"Left Knee"},{"euler":{"heading":130.875,"pitch":135.5625,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":140.625,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":23.1875,"pitch":-143.0625,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":178.1875,"pitch":-54.0625,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":95.875,"pitch":-134.3125,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:03.99"} +{"sensors":[{"euler":{"heading":264.9375,"pitch":143.9375,"roll":63.0625},"location":"Left Knee"},{"euler":{"heading":130.75,"pitch":134.6875,"roll":76.1875},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":141.625,"roll":76.3125},"location":"Right Ankle"},{"euler":{"heading":23.125,"pitch":-143.125,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":178.125,"pitch":-53.5,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-133.75,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:03.199"} +{"sensors":[{"euler":{"heading":265.3125,"pitch":143.625,"roll":63.125},"location":"Left Knee"},{"euler":{"heading":131.0625,"pitch":134.5625,"roll":76.375},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":142.1875,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":23.625,"pitch":-143.125,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":-53.0625,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.5,"pitch":-133.1875,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:03.300"} +{"sensors":[{"euler":{"heading":265.375,"pitch":143.5,"roll":63.1875},"location":"Left Knee"},{"euler":{"heading":131.375,"pitch":134.4375,"roll":76.625},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":143.0625,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":23.9375,"pitch":-142.875,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-52.8125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-132.8125,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:03.401"} +{"sensors":[{"euler":{"heading":266.0,"pitch":143.25,"roll":63.3125},"location":"Left Knee"},{"euler":{"heading":131.8125,"pitch":134.3125,"roll":76.875},"location":"Left Ankle"},{"euler":{"heading":98.5625,"pitch":143.6875,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":24.875,"pitch":-142.6875,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":179.0,"pitch":-52.375,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":96.0625,"pitch":-132.25,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:03.502"} +{"sensors":[{"euler":{"heading":265.9375,"pitch":143.3125,"roll":63.4375},"location":"Left Knee"},{"euler":{"heading":132.125,"pitch":133.25,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":98.5625,"pitch":144.3125,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-142.75,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":178.8125,"pitch":-52.0,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":95.8125,"pitch":-132.0625,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:03.603"} +{"sensors":[{"euler":{"heading":266.0625,"pitch":143.1875,"roll":63.625},"location":"Left Knee"},{"euler":{"heading":132.6875,"pitch":132.4375,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":146.75,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":24.6875,"pitch":-142.125,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":178.875,"pitch":-52.0625,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":95.6875,"pitch":-131.4375,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:03.703"} +{"sensors":[{"euler":{"heading":267.0,"pitch":142.625,"roll":63.75},"location":"Left Knee"},{"euler":{"heading":134.75,"pitch":131.25,"roll":78.8125},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":151.25,"roll":76.3125},"location":"Right Ankle"},{"euler":{"heading":25.125,"pitch":-141.3125,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":179.8125,"pitch":-52.75,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":95.9375,"pitch":-131.0625,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:03.805"} +{"sensors":[{"euler":{"heading":267.25,"pitch":142.5,"roll":63.5625},"location":"Left Knee"},{"euler":{"heading":136.3125,"pitch":133.4375,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":159.9375,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":24.9375,"pitch":-139.4375,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":179.8125,"pitch":-54.25,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-130.375,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:03.906"} +{"sensors":[{"euler":{"heading":267.25,"pitch":142.25,"roll":63.4375},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":135.625,"roll":80.25},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":163.6875,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":25.75,"pitch":-136.9375,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":181.3125,"pitch":-54.5,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-130.3125,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:04.6"} +{"sensors":[{"euler":{"heading":267.5,"pitch":141.5625,"roll":63.125},"location":"Left Knee"},{"euler":{"heading":137.6875,"pitch":137.125,"roll":80.5625},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":153.6875,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":25.0,"pitch":-135.3125,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":-50.9375,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":93.75,"pitch":-130.625,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:04.108"} +{"sensors":[{"euler":{"heading":268.5,"pitch":140.625,"roll":62.8125},"location":"Left Knee"},{"euler":{"heading":138.625,"pitch":140.125,"roll":80.875},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":141.125,"roll":73.9375},"location":"Right Ankle"},{"euler":{"heading":25.75,"pitch":-133.5,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":172.875,"pitch":-45.6875,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":94.25,"pitch":-131.0625,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:04.208"} +{"sensors":[{"euler":{"heading":269.4375,"pitch":139.4375,"roll":62.25},"location":"Left Knee"},{"euler":{"heading":139.25,"pitch":144.0625,"roll":81.125},"location":"Left Ankle"},{"euler":{"heading":98.125,"pitch":132.75,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":27.125,"pitch":-131.875,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":169.5,"pitch":-37.875,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-132.375,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:04.309"} +{"sensors":[{"euler":{"heading":270.5,"pitch":138.0,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":139.75,"pitch":150.1875,"roll":81.125},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":128.625,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":27.125,"pitch":-131.0625,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":-30.0625,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-134.1875,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:04.409"} +{"sensors":[{"euler":{"heading":271.4375,"pitch":136.5625,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":139.625,"pitch":157.8125,"roll":80.3125},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":126.4375,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":25.8125,"pitch":-131.1875,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":163.6875,"pitch":-26.75,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":95.75,"pitch":-136.25,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:04.510"} +{"sensors":[{"euler":{"heading":272.375,"pitch":135.3125,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":139.5625,"pitch":164.0625,"roll":79.5625},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":125.5625,"roll":71.0625},"location":"Right Ankle"},{"euler":{"heading":22.25,"pitch":-132.25,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":-26.5625,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":96.0625,"pitch":-139.375,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:04.611"} +{"sensors":[{"euler":{"heading":273.875,"pitch":133.75,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":140.0,"pitch":171.6875,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":94.625,"pitch":127.0625,"roll":72.5625},"location":"Right Ankle"},{"euler":{"heading":16.75,"pitch":-134.875,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":-34.75,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":96.9375,"pitch":-141.625,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:04.711"} +{"sensors":[{"euler":{"heading":276.8125,"pitch":131.625,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":141.0625,"pitch":-179.3125,"roll":76.3125},"location":"Left Ankle"},{"euler":{"heading":91.9375,"pitch":127.0,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":14.75,"pitch":-136.75,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":-43.5625,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":99.25,"pitch":-143.375,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:04.812"} +{"sensors":[{"euler":{"heading":278.0,"pitch":130.9375,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":143.25,"pitch":-169.375,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":125.875,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":12.25,"pitch":-138.375,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":-51.8125,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":96.6875,"pitch":-142.9375,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:04.912"} +{"sensors":[{"euler":{"heading":280.5625,"pitch":130.0,"roll":47.875},"location":"Left Knee"},{"euler":{"heading":147.0625,"pitch":-157.75,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":124.9375,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":10.6875,"pitch":-138.5,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":161.0625,"pitch":-59.0,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":92.625,"pitch":-138.125,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:05.13"} +{"sensors":[{"euler":{"heading":196.875,"pitch":128.875,"roll":43.75},"location":"Left Knee"},{"euler":{"heading":157.6875,"pitch":-145.375,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":123.125,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":10.0,"pitch":-138.9375,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":-65.0,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":88.375,"pitch":-131.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:05.113"} +{"sensors":[{"euler":{"heading":202.0,"pitch":129.0625,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":164.1875,"pitch":-141.5625,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":118.5,"roll":80.375},"location":"Right Ankle"},{"euler":{"heading":9.0625,"pitch":-139.5,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":162.375,"pitch":-69.75,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":86.8125,"pitch":-126.875,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:05.213"} +{"sensors":[{"euler":{"heading":284.8125,"pitch":133.75,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":157.1875,"pitch":-155.5,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":117.1875,"roll":81.0625},"location":"Right Ankle"},{"euler":{"heading":8.8125,"pitch":-139.6875,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":163.5625,"pitch":-71.9375,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":85.5625,"pitch":-126.0,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:05.314"} +{"sensors":[{"euler":{"heading":272.75,"pitch":140.6875,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":144.5625,"pitch":-179.3125,"roll":70.0625},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":116.6875,"roll":81.9375},"location":"Right Ankle"},{"euler":{"heading":8.0625,"pitch":-139.9375,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":-73.75,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":82.625,"pitch":-124.5,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:05.414"} +{"sensors":[{"euler":{"heading":265.6875,"pitch":147.25,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":162.0,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":120.0625,"roll":82.9375},"location":"Right Ankle"},{"euler":{"heading":7.4375,"pitch":-140.375,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":164.5,"pitch":-74.875,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-122.0625,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:05.514"} +{"sensors":[{"euler":{"heading":261.625,"pitch":152.5,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":133.1875,"pitch":149.625,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":174.9375,"roll":83.75},"location":"Right Ankle"},{"euler":{"heading":7.875,"pitch":-140.75,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":-75.8125,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-120.6875,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:05.615"} +{"sensors":[{"euler":{"heading":259.5625,"pitch":157.5,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":131.5,"pitch":142.375,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":78.75,"pitch":176.25,"roll":84.75},"location":"Right Ankle"},{"euler":{"heading":8.3125,"pitch":-141.8125,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":167.9375,"pitch":-76.3125,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":82.125,"pitch":-120.6875,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:05.715"} +{"sensors":[{"euler":{"heading":257.875,"pitch":162.1875,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":128.625,"pitch":134.5,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":177.8125,"roll":85.5625},"location":"Right Ankle"},{"euler":{"heading":8.125,"pitch":-143.25,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":170.5625,"pitch":-76.5,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":84.25,"pitch":-122.4375,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:05.816"} +{"sensors":[{"euler":{"heading":257.3125,"pitch":165.125,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":128.5625,"pitch":131.3125,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":179.0,"roll":85.5625},"location":"Right Ankle"},{"euler":{"heading":6.9375,"pitch":-146.8125,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":173.8125,"pitch":-76.125,"roll":68.1875},"location":"Right Knee"},{"euler":{"heading":87.8125,"pitch":-124.6875,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:05.916"} +{"sensors":[{"euler":{"heading":261.75,"pitch":161.6875,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":132.1875,"pitch":133.4375,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":-178.75,"roll":84.5625},"location":"Right Ankle"},{"euler":{"heading":6.25,"pitch":-148.9375,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":-76.0,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":91.75,"pitch":-127.375,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:06.17"} +{"sensors":[{"euler":{"heading":265.3125,"pitch":157.625,"roll":61.5625},"location":"Left Knee"},{"euler":{"heading":134.125,"pitch":133.0625,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-149.1875,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":6.6875,"pitch":-150.125,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":182.6875,"pitch":-74.75,"roll":62.9375},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-129.0625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:06.117"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":154.5625,"roll":62.3125},"location":"Left Knee"},{"euler":{"heading":137.125,"pitch":131.75,"roll":73.0625},"location":"Left Ankle"},{"euler":{"heading":74.75,"pitch":-135.5,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":8.625,"pitch":-149.625,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":188.0625,"pitch":-73.0,"roll":59.5},"location":"Right Knee"},{"euler":{"heading":97.9375,"pitch":-130.875,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:06.218"} +{"sensors":[{"euler":{"heading":270.0625,"pitch":151.375,"roll":62.6875},"location":"Left Knee"},{"euler":{"heading":138.0625,"pitch":130.125,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":69.8125,"pitch":-124.0,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":13.0625,"pitch":-145.1875,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":192.4375,"pitch":-71.875,"roll":55.625},"location":"Right Knee"},{"euler":{"heading":98.6875,"pitch":-131.6875,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:06.319"} +{"sensors":[{"euler":{"heading":271.625,"pitch":148.25,"roll":62.9375},"location":"Left Knee"},{"euler":{"heading":139.3125,"pitch":129.125,"roll":76.25},"location":"Left Ankle"},{"euler":{"heading":62.5,"pitch":-117.9375,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":17.25,"pitch":-137.5625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":193.75,"pitch":-71.75,"roll":53.0},"location":"Right Knee"},{"euler":{"heading":98.5625,"pitch":-131.375,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:06.420"} +{"sensors":[{"euler":{"heading":273.1875,"pitch":145.125,"roll":62.75},"location":"Left Knee"},{"euler":{"heading":140.6875,"pitch":130.5,"roll":77.5},"location":"Left Ankle"},{"euler":{"heading":64.75,"pitch":-125.6875,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-132.0625,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":191.125,"pitch":-69.125,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":98.5,"pitch":-131.375,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:06.521"} +{"sensors":[{"euler":{"heading":274.625,"pitch":142.9375,"roll":62.3125},"location":"Left Knee"},{"euler":{"heading":142.0625,"pitch":132.0,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":73.5625,"pitch":-150.6875,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":25.25,"pitch":-127.9375,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":183.875,"pitch":-62.9375,"roll":63.0},"location":"Right Knee"},{"euler":{"heading":99.125,"pitch":-132.0625,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:06.621"} +{"sensors":[{"euler":{"heading":276.375,"pitch":140.8125,"roll":61.875},"location":"Left Knee"},{"euler":{"heading":143.1875,"pitch":134.375,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":160.75,"roll":77.875},"location":"Right Ankle"},{"euler":{"heading":29.0625,"pitch":-125.5625,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":174.9375,"pitch":-51.0625,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":99.875,"pitch":-133.25,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:06.722"} +{"sensors":[{"euler":{"heading":277.3125,"pitch":139.0625,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":144.25,"pitch":137.25,"roll":80.25},"location":"Left Ankle"},{"euler":{"heading":96.8125,"pitch":130.1875,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":29.8125,"pitch":-125.1875,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":167.125,"pitch":-31.1875,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":100.4375,"pitch":-134.75,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:06.822"} +{"sensors":[{"euler":{"heading":278.6875,"pitch":137.0625,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":145.125,"pitch":143.625,"roll":80.5},"location":"Left Ankle"},{"euler":{"heading":101.25,"pitch":122.5625,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":28.3125,"pitch":-126.125,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":161.0,"pitch":-9.25,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":100.625,"pitch":-136.375,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:06.923"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":135.375,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":151.75,"roll":80.0625},"location":"Left Ankle"},{"euler":{"heading":100.625,"pitch":121.8125,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":26.1875,"pitch":-127.125,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":160.1875,"pitch":-14.5625,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":101.125,"pitch":-138.9375,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:07.23"} +{"sensors":[{"euler":{"heading":281.0625,"pitch":133.625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":160.125,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":123.3125,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-129.8125,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":160.5,"pitch":-27.0,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":101.25,"pitch":-141.0625,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:07.123"} +{"sensors":[{"euler":{"heading":284.0,"pitch":131.25,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":147.5,"pitch":172.375,"roll":78.4375},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":123.6875,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":19.5,"pitch":-132.5625,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":160.125,"pitch":-33.875,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":102.5625,"pitch":-141.6875,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:07.224"} +{"sensors":[{"euler":{"heading":285.0625,"pitch":129.5,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":149.1875,"pitch":-173.4375,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":91.25,"pitch":123.5,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":16.75,"pitch":-134.375,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":-44.375,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":101.1875,"pitch":-142.1875,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:07.325"} +{"sensors":[{"euler":{"heading":284.125,"pitch":129.125,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":151.3125,"pitch":-159.5625,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":119.0,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":14.125,"pitch":-136.8125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":-53.9375,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":96.125,"pitch":-139.625,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:07.426"} +{"sensors":[{"euler":{"heading":198.625,"pitch":128.3125,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":160.8125,"pitch":-141.3125,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":90.0,"pitch":113.9375,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":12.9375,"pitch":-137.6875,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":-61.625,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":90.5,"pitch":-131.625,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:07.527"} +{"sensors":[{"euler":{"heading":204.3125,"pitch":128.1875,"roll":42.3125},"location":"Left Knee"},{"euler":{"heading":168.0,"pitch":-138.1875,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":112.0625,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":12.1875,"pitch":-137.8125,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":-67.0,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":86.75,"pitch":-124.3125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:07.628"} +{"sensors":[{"euler":{"heading":285.9375,"pitch":133.3125,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":157.625,"pitch":-155.3125,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":112.3125,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":12.0,"pitch":-137.8125,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":162.6875,"pitch":-70.3125,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":84.125,"pitch":-122.0,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:07.729"} +{"sensors":[{"euler":{"heading":272.4375,"pitch":141.0,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":144.625,"pitch":178.625,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":112.0,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":11.0,"pitch":-138.3125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":163.375,"pitch":-72.1875,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":80.8125,"pitch":-120.5,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:07.829"} +{"sensors":[{"euler":{"heading":261.875,"pitch":150.5,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":134.5625,"pitch":155.125,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":113.0,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":9.75,"pitch":-138.75,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":163.4375,"pitch":-73.9375,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":78.125,"pitch":-118.9375,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:07.930"} +{"sensors":[{"euler":{"heading":256.75,"pitch":156.5,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":129.1875,"pitch":140.125,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":115.4375,"roll":83.125},"location":"Right Ankle"},{"euler":{"heading":8.9375,"pitch":-139.5,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":-75.75,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":77.5,"pitch":-118.75,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:08.31"} +{"sensors":[{"euler":{"heading":250.75,"pitch":165.25,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":123.75,"pitch":129.25,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":174.6875,"roll":83.875},"location":"Right Ankle"},{"euler":{"heading":8.5625,"pitch":-140.6875,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":165.8125,"pitch":-77.0625,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":79.25,"pitch":-119.875,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:08.131"} +{"sensors":[{"euler":{"heading":250.75,"pitch":169.125,"roll":63.0},"location":"Left Knee"},{"euler":{"heading":123.5,"pitch":125.375,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":80.8125,"pitch":175.75,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":8.5,"pitch":-142.125,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":168.0625,"pitch":-77.5,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":82.4375,"pitch":-122.0,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:08.232"} +{"sensors":[{"euler":{"heading":257.1875,"pitch":165.25,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":128.5625,"pitch":128.8125,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":177.25,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":8.625,"pitch":-143.5625,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":170.875,"pitch":-77.625,"roll":69.4375},"location":"Right Knee"},{"euler":{"heading":87.125,"pitch":-124.125,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:08.333"} +{"sensors":[{"euler":{"heading":259.3125,"pitch":161.4375,"roll":63.5625},"location":"Left Knee"},{"euler":{"heading":130.1875,"pitch":128.625,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":179.6875,"roll":85.375},"location":"Right Ankle"},{"euler":{"heading":8.6875,"pitch":-145.3125,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":-77.3125,"roll":66.5},"location":"Right Knee"},{"euler":{"heading":90.25,"pitch":-128.1875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:08.433"} +{"sensors":[{"euler":{"heading":263.875,"pitch":156.875,"roll":63.5},"location":"Left Knee"},{"euler":{"heading":132.5,"pitch":128.0,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":-177.625,"roll":83.9375},"location":"Right Ankle"},{"euler":{"heading":9.75,"pitch":-146.875,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":183.875,"pitch":-76.125,"roll":63.375},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-131.5625,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:08.534"} +{"sensors":[{"euler":{"heading":266.8125,"pitch":153.0625,"roll":63.5},"location":"Left Knee"},{"euler":{"heading":134.75,"pitch":128.4375,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-132.5625,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":13.3125,"pitch":-145.125,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":189.875,"pitch":-74.8125,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":98.25,"pitch":-133.3125,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:08.634"} +{"sensors":[{"euler":{"heading":268.6875,"pitch":149.1875,"roll":63.4375},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":130.25,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-117.5,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-139.0,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":195.25,"pitch":-73.25,"roll":55.5},"location":"Right Knee"},{"euler":{"heading":99.25,"pitch":-134.125,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:08.735"} +{"sensors":[{"euler":{"heading":271.0,"pitch":146.8125,"roll":63.3125},"location":"Left Knee"},{"euler":{"heading":137.4375,"pitch":130.125,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":-113.375,"roll":71.1875},"location":"Right Ankle"},{"euler":{"heading":25.5625,"pitch":-131.125,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":196.375,"pitch":-73.25,"roll":53.6875},"location":"Right Knee"},{"euler":{"heading":100.25,"pitch":-134.6875,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:08.836"} +{"sensors":[{"euler":{"heading":272.125,"pitch":145.125,"roll":63.1875},"location":"Left Knee"},{"euler":{"heading":138.125,"pitch":130.375,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":69.0625,"pitch":-123.125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":29.0625,"pitch":-126.125,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":191.125,"pitch":-70.125,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":100.5,"pitch":-135.625,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:08.937"} +{"sensors":[{"euler":{"heading":272.9375,"pitch":143.5,"roll":62.8125},"location":"Left Knee"},{"euler":{"heading":138.75,"pitch":131.8125,"roll":77.4375},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":-161.75,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":31.4375,"pitch":-123.5625,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":181.1875,"pitch":-62.625,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":100.0,"pitch":-136.0,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:09.38"} +{"sensors":[{"euler":{"heading":274.0,"pitch":142.125,"roll":62.25},"location":"Left Knee"},{"euler":{"heading":139.4375,"pitch":134.3125,"roll":77.9375},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":145.9375,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":33.0,"pitch":-122.375,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":171.8125,"pitch":-46.375,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":100.1875,"pitch":-136.9375,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:09.139"} +{"sensors":[{"euler":{"heading":274.4375,"pitch":140.8125,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":139.8125,"pitch":139.0,"roll":78.0625},"location":"Left Ankle"},{"euler":{"heading":96.25,"pitch":126.6875,"roll":72.75},"location":"Right Ankle"},{"euler":{"heading":32.25,"pitch":-122.875,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":-28.75,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":99.875,"pitch":-137.6875,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:09.240"} +{"sensors":[{"euler":{"heading":276.5625,"pitch":138.5,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":141.0,"pitch":145.0625,"roll":78.375},"location":"Left Ankle"},{"euler":{"heading":100.25,"pitch":121.8125,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":30.4375,"pitch":-124.0,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":162.25,"pitch":-17.8125,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":100.3125,"pitch":-138.625,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:09.341"} +{"sensors":[{"euler":{"heading":278.75,"pitch":136.1875,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":142.4375,"pitch":152.8125,"roll":78.375},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":122.9375,"roll":71.875},"location":"Right Ankle"},{"euler":{"heading":28.0,"pitch":-125.125,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":-25.875,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":101.125,"pitch":-140.5625,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:09.442"} +{"sensors":[{"euler":{"heading":281.5,"pitch":133.8125,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":144.125,"pitch":163.375,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":122.8125,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":24.25,"pitch":-129.1875,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":-34.75,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":102.1875,"pitch":-142.0625,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:09.543"} +{"sensors":[{"euler":{"heading":283.5,"pitch":131.5625,"roll":53.875},"location":"Left Knee"},{"euler":{"heading":146.0625,"pitch":176.5625,"roll":75.5625},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":120.9375,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":20.0,"pitch":-133.6875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":160.4375,"pitch":-45.125,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":100.4375,"pitch":-141.75,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:09.643"} +{"sensors":[{"euler":{"heading":282.75,"pitch":130.625,"roll":50.625},"location":"Left Knee"},{"euler":{"heading":147.1875,"pitch":-172.0,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":117.75,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":15.4375,"pitch":-135.875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":-53.4375,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":96.375,"pitch":-139.9375,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:09.743"} +{"sensors":[{"euler":{"heading":284.5,"pitch":129.375,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":154.5,"pitch":-155.125,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":116.5625,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-136.5,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":160.8125,"pitch":-61.1875,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":91.5,"pitch":-134.0,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:09.844"} +{"sensors":[{"euler":{"heading":199.875,"pitch":128.8125,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":160.875,"pitch":-146.75,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":114.6875,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":12.75,"pitch":-137.1875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":161.6875,"pitch":-65.875,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":87.25,"pitch":-127.9375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:09.945"} +{"sensors":[{"euler":{"heading":286.6875,"pitch":132.25,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":156.25,"pitch":-157.5625,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":114.875,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":12.6875,"pitch":-137.125,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":163.0,"pitch":-69.125,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":85.5625,"pitch":-124.5,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:10.45"} +{"sensors":[{"euler":{"heading":277.1875,"pitch":138.75,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":147.5625,"pitch":-179.5625,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":113.6875,"roll":80.0625},"location":"Right Ankle"},{"euler":{"heading":12.3125,"pitch":-137.9375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":164.125,"pitch":-70.875,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":84.0625,"pitch":-123.1875,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:10.145"} +{"sensors":[{"euler":{"heading":268.5625,"pitch":146.5,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":139.5,"pitch":159.6875,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":113.9375,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":11.5625,"pitch":-138.0625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":164.4375,"pitch":-72.8125,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":81.875,"pitch":-121.8125,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:10.246"} +{"sensors":[{"euler":{"heading":263.375,"pitch":152.8125,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":133.375,"pitch":146.5,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":116.625,"roll":82.4375},"location":"Right Ankle"},{"euler":{"heading":11.125,"pitch":-138.8125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":165.6875,"pitch":-74.375,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":81.625,"pitch":-121.625,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:10.347"} +{"sensors":[{"euler":{"heading":256.5,"pitch":161.75,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":133.875,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":174.4375,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":10.625,"pitch":-140.375,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":-75.5,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":83.5625,"pitch":-123.5,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:10.447"} +{"sensors":[{"euler":{"heading":254.8125,"pitch":166.875,"roll":62.3125},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":129.0,"roll":67.25},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":176.0,"roll":84.375},"location":"Right Ankle"},{"euler":{"heading":10.125,"pitch":-141.75,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":170.375,"pitch":-76.0,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":86.4375,"pitch":-125.1875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:10.548"} +{"sensors":[{"euler":{"heading":260.1875,"pitch":163.3125,"roll":61.9375},"location":"Left Knee"},{"euler":{"heading":130.9375,"pitch":132.0625,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":177.8125,"roll":84.75},"location":"Right Ankle"},{"euler":{"heading":10.3125,"pitch":-143.75,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":174.375,"pitch":-76.125,"roll":67.8125},"location":"Right Knee"},{"euler":{"heading":91.6875,"pitch":-128.625,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:10.649"} +{"sensors":[{"euler":{"heading":264.625,"pitch":158.875,"roll":62.1875},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":133.0625,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-179.4375,"roll":84.125},"location":"Right Ankle"},{"euler":{"heading":10.0625,"pitch":-145.5625,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":179.875,"pitch":-76.125,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-131.125,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:10.750"} +{"sensors":[{"euler":{"heading":267.9375,"pitch":155.125,"roll":62.4375},"location":"Left Knee"},{"euler":{"heading":135.3125,"pitch":132.1875,"roll":72.1875},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-149.875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":10.9375,"pitch":-145.625,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":185.625,"pitch":-75.1875,"roll":62.0},"location":"Right Knee"},{"euler":{"heading":98.0625,"pitch":-133.375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:10.850"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":152.1875,"roll":62.875},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":131.0625,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":74.4375,"pitch":-127.1875,"roll":77.875},"location":"Right Ankle"},{"euler":{"heading":14.8125,"pitch":-141.3125,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":190.3125,"pitch":-73.625,"roll":58.1875},"location":"Right Knee"},{"euler":{"heading":98.375,"pitch":-134.625,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:10.951"} +{"sensors":[{"euler":{"heading":269.75,"pitch":149.4375,"roll":62.9375},"location":"Left Knee"},{"euler":{"heading":137.0625,"pitch":130.625,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":65.3125,"pitch":-116.0,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":19.5,"pitch":-134.3125,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":193.8125,"pitch":-73.5,"roll":54.9375},"location":"Right Knee"},{"euler":{"heading":97.5,"pitch":-134.4375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:11.52"} +{"sensors":[{"euler":{"heading":270.8125,"pitch":147.1875,"roll":62.75},"location":"Left Knee"},{"euler":{"heading":137.6875,"pitch":131.125,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":67.375,"pitch":-122.375,"roll":71.3125},"location":"Right Ankle"},{"euler":{"heading":23.375,"pitch":-128.4375,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":193.375,"pitch":-70.3125,"roll":56.0625},"location":"Right Knee"},{"euler":{"heading":97.25,"pitch":-134.8125,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:11.152"} +{"sensors":[{"euler":{"heading":271.5,"pitch":145.3125,"roll":62.4375},"location":"Left Knee"},{"euler":{"heading":137.875,"pitch":132.875,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-146.5625,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-125.8125,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":183.4375,"pitch":-63.5625,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":97.0625,"pitch":-135.5,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:11.253"} +{"sensors":[{"euler":{"heading":272.5625,"pitch":143.9375,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":138.625,"pitch":134.875,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":162.8125,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":27.3125,"pitch":-125.0625,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":172.875,"pitch":-49.5,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":97.1875,"pitch":-136.25,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:11.353"} +{"sensors":[{"euler":{"heading":274.0,"pitch":142.5,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":139.5625,"pitch":138.25,"roll":77.875},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":132.625,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":27.9375,"pitch":-125.8125,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":164.6875,"pitch":-28.9375,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":97.8125,"pitch":-137.1875,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:11.457"} +{"sensors":[{"euler":{"heading":275.8125,"pitch":140.625,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":141.375,"pitch":144.3125,"roll":78.5},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":124.8125,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":27.375,"pitch":-126.625,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":-17.375,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":98.3125,"pitch":-138.0,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:11.558"} +{"sensors":[{"euler":{"heading":278.25,"pitch":138.1875,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":143.1875,"pitch":152.75,"roll":78.6875},"location":"Left Ankle"},{"euler":{"heading":96.4375,"pitch":127.25,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":26.0,"pitch":-127.1875,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":-22.6875,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":98.9375,"pitch":-139.25,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:11.659"} +{"sensors":[{"euler":{"heading":281.1875,"pitch":135.3125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":144.875,"pitch":163.125,"roll":78.0},"location":"Left Ankle"},{"euler":{"heading":92.8125,"pitch":129.8125,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":20.9375,"pitch":-130.25,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":-30.6875,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":99.375,"pitch":-140.6875,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:11.759"} +{"sensors":[{"euler":{"heading":284.0,"pitch":132.5,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":146.8125,"pitch":175.75,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":129.5625,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":19.25,"pitch":-133.6875,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":161.0,"pitch":-40.5,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":100.375,"pitch":-140.9375,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:11.860"} +{"sensors":[{"euler":{"heading":285.0,"pitch":130.4375,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":148.0,"pitch":-173.3125,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":128.3125,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":14.625,"pitch":-136.625,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":160.1875,"pitch":-47.8125,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":99.4375,"pitch":-141.625,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:11.961"} +{"sensors":[{"euler":{"heading":284.3125,"pitch":130.4375,"roll":49.375},"location":"Left Knee"},{"euler":{"heading":150.875,"pitch":-161.375,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":125.375,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":12.375,"pitch":-138.5,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":160.625,"pitch":-54.5625,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":96.5625,"pitch":-139.8125,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:12.62"} +{"sensors":[{"euler":{"heading":288.125,"pitch":129.0,"roll":45.625},"location":"Left Knee"},{"euler":{"heading":160.125,"pitch":-147.0625,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":123.4375,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":11.5625,"pitch":-138.8125,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":161.4375,"pitch":-60.125,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":92.125,"pitch":-134.0625,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:12.162"} +{"sensors":[{"euler":{"heading":201.3125,"pitch":128.9375,"roll":43.875},"location":"Left Knee"},{"euler":{"heading":163.375,"pitch":-143.625,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":121.5625,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":10.5625,"pitch":-138.75,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":-64.0,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":88.0,"pitch":-128.0625,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:12.263"} +{"sensors":[{"euler":{"heading":284.25,"pitch":133.75,"roll":47.5625},"location":"Left Knee"},{"euler":{"heading":155.6875,"pitch":-157.5625,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":83.8125,"pitch":119.8125,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":10.0,"pitch":-138.875,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":-66.9375,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":85.625,"pitch":-125.5,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:12.363"} +{"sensors":[{"euler":{"heading":273.5625,"pitch":141.5,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":175.25,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":119.3125,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":9.6875,"pitch":-138.9375,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":162.9375,"pitch":-69.625,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":83.6875,"pitch":-124.1875,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:12.464"} +{"sensors":[{"euler":{"heading":265.75,"pitch":149.3125,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":137.3125,"pitch":157.0,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":80.8125,"pitch":174.3125,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":9.4375,"pitch":-138.8125,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":164.125,"pitch":-72.3125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":81.75,"pitch":-122.5625,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:12.564"} +{"sensors":[{"euler":{"heading":260.875,"pitch":155.25,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":132.0625,"pitch":145.5,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":175.4375,"roll":84.125},"location":"Right Ankle"},{"euler":{"heading":9.0,"pitch":-140.0,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":166.4375,"pitch":-74.0,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":81.3125,"pitch":-122.3125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:12.665"} +{"sensors":[{"euler":{"heading":257.25,"pitch":162.5,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":128.5,"pitch":136.375,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":176.625,"roll":84.875},"location":"Right Ankle"},{"euler":{"heading":9.5625,"pitch":-141.0,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":169.3125,"pitch":-75.125,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":83.5,"pitch":-123.5625,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:12.765"} +{"sensors":[{"euler":{"heading":257.5625,"pitch":165.0625,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":127.9375,"pitch":131.3125,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":178.5,"roll":85.5625},"location":"Right Ankle"},{"euler":{"heading":9.6875,"pitch":-142.5,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":172.5,"pitch":-75.6875,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":86.5,"pitch":-125.5,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:12.866"} +{"sensors":[{"euler":{"heading":262.125,"pitch":162.5625,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":132.25,"pitch":133.5,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-179.0625,"roll":85.25},"location":"Right Ankle"},{"euler":{"heading":10.9375,"pitch":-143.4375,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":-75.8125,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":92.125,"pitch":-128.625,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:12.966"} +{"sensors":[{"euler":{"heading":265.0625,"pitch":158.5,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":133.6875,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":-142.375,"roll":82.625},"location":"Right Ankle"},{"euler":{"heading":11.4375,"pitch":-144.0,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":181.5625,"pitch":-75.25,"roll":63.375},"location":"Right Knee"},{"euler":{"heading":93.6875,"pitch":-131.25,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:13.67"} +{"sensors":[{"euler":{"heading":267.75,"pitch":154.375,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":135.9375,"pitch":134.125,"roll":72.1875},"location":"Left Ankle"},{"euler":{"heading":71.8125,"pitch":-125.0,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":12.8125,"pitch":-143.125,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":186.0625,"pitch":-73.4375,"roll":59.625},"location":"Right Knee"},{"euler":{"heading":96.3125,"pitch":-133.3125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:13.167"} +{"sensors":[{"euler":{"heading":269.4375,"pitch":150.9375,"roll":62.0},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":132.625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":-114.3125,"roll":72.5},"location":"Right Ankle"},{"euler":{"heading":16.0625,"pitch":-139.4375,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":190.625,"pitch":-73.0,"roll":55.25},"location":"Right Knee"},{"euler":{"heading":97.1875,"pitch":-134.75,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:13.269"} +{"sensors":[{"euler":{"heading":271.0,"pitch":148.375,"roll":62.125},"location":"Left Knee"},{"euler":{"heading":138.0,"pitch":131.5,"roll":75.6875},"location":"Left Ankle"},{"euler":{"heading":57.0,"pitch":-109.8125,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":21.5625,"pitch":-132.4375,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":192.5625,"pitch":-72.5625,"roll":52.9375},"location":"Right Knee"},{"euler":{"heading":97.5625,"pitch":-135.25,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:13.369"} +{"sensors":[{"euler":{"heading":272.125,"pitch":146.25,"roll":62.25},"location":"Left Knee"},{"euler":{"heading":138.8125,"pitch":131.0,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":-120.5,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":25.8125,"pitch":-126.125,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":189.625,"pitch":-68.6875,"roll":56.25},"location":"Right Knee"},{"euler":{"heading":97.625,"pitch":-135.4375,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:13.469"} +{"sensors":[{"euler":{"heading":273.375,"pitch":144.625,"roll":61.9375},"location":"Left Knee"},{"euler":{"heading":139.75,"pitch":132.1875,"roll":77.4375},"location":"Left Ankle"},{"euler":{"heading":71.375,"pitch":-150.0625,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":29.8125,"pitch":-123.3125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":181.125,"pitch":-60.6875,"roll":63.875},"location":"Right Knee"},{"euler":{"heading":97.5625,"pitch":-135.75,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:13.570"} +{"sensors":[{"euler":{"heading":274.6875,"pitch":143.3125,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":140.6875,"pitch":134.4375,"roll":78.0625},"location":"Left Ankle"},{"euler":{"heading":84.375,"pitch":156.8125,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":32.8125,"pitch":-121.875,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":171.8125,"pitch":-45.8125,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":98.0625,"pitch":-136.25,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:13.671"} +{"sensors":[{"euler":{"heading":276.25,"pitch":141.625,"roll":60.8125},"location":"Left Knee"},{"euler":{"heading":141.8125,"pitch":137.875,"roll":78.6875},"location":"Left Ankle"},{"euler":{"heading":92.875,"pitch":130.9375,"roll":71.9375},"location":"Right Ankle"},{"euler":{"heading":32.0625,"pitch":-122.5,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":163.0,"pitch":-24.3125,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":98.5625,"pitch":-137.3125,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:13.773"} +{"sensors":[{"euler":{"heading":278.25,"pitch":139.625,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":159.6875,"roll":79.0625},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":123.625,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":29.3125,"pitch":-124.5,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":159.625,"pitch":-9.5625,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":99.5,"pitch":-139.1875,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:13.873"} +{"sensors":[{"euler":{"heading":280.4375,"pitch":137.8125,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":144.0625,"pitch":152.875,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":95.75,"pitch":125.9375,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":27.9375,"pitch":-125.0625,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":-15.8125,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":100.9375,"pitch":-141.6875,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:13.973"} +{"sensors":[{"euler":{"heading":283.0,"pitch":135.25,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":163.5,"roll":77.75},"location":"Left Ankle"},{"euler":{"heading":93.375,"pitch":128.4375,"roll":73.9375},"location":"Right Ankle"},{"euler":{"heading":23.0,"pitch":-128.5625,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":159.4375,"pitch":-23.625,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":102.1875,"pitch":-144.125,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:14.74"} +{"sensors":[{"euler":{"heading":285.8125,"pitch":132.875,"roll":53.875},"location":"Left Knee"},{"euler":{"heading":147.6875,"pitch":176.1875,"roll":76.3125},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":128.5,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-131.5625,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":159.5625,"pitch":-34.1875,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":103.0,"pitch":-144.3125,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:14.174"} +{"sensors":[{"euler":{"heading":103.0,"pitch":-144.3125,"roll":65.75},"location":"Left Knee"},{"euler":{"heading":103.0,"pitch":-144.3125,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":65.75,"pitch":-119.125,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":18.3125,"pitch":-137.875,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":191.125,"pitch":-71.5625,"roll":56.3125},"location":"Right Knee"},{"euler":{"heading":97.25,"pitch":-133.4375,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:14.275"} +{"sensors":[{"euler":{"heading":268.75,"pitch":151.9375,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":135.4375,"pitch":130.875,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":65.75,"pitch":-119.125,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-137.0625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":191.375,"pitch":-71.75,"roll":55.9375},"location":"Right Knee"},{"euler":{"heading":97.125,"pitch":-133.375,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:15.563"} +{"sensors":[{"euler":{"heading":270.0,"pitch":149.5625,"roll":62.6875},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":131.1875,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":61.3125,"pitch":-118.5,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":23.3125,"pitch":-130.1875,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":190.8125,"pitch":-69.375,"roll":55.6875},"location":"Right Knee"},{"euler":{"heading":96.5625,"pitch":-133.1875,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:15.664"} +{"sensors":[{"euler":{"heading":271.0,"pitch":147.75,"roll":62.5},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":132.0,"roll":75.625},"location":"Left Ankle"},{"euler":{"heading":70.0625,"pitch":-137.9375,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":27.6875,"pitch":-125.6875,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":184.5,"pitch":-63.25,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":96.8125,"pitch":-133.5625,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:15.765"} +{"sensors":[{"euler":{"heading":272.5,"pitch":145.625,"roll":62.25},"location":"Left Knee"},{"euler":{"heading":137.625,"pitch":133.75,"roll":76.3125},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":172.0,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":31.3125,"pitch":-123.5625,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-50.75,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":97.625,"pitch":-134.25,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:15.865"} +{"sensors":[{"euler":{"heading":274.25,"pitch":143.5625,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":138.75,"pitch":135.4375,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":93.9375,"pitch":134.1875,"roll":73.5},"location":"Right Ankle"},{"euler":{"heading":32.9375,"pitch":-123.0625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":167.5,"pitch":-29.0625,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":98.25,"pitch":-135.25,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:15.966"} +{"sensors":[{"euler":{"heading":275.8125,"pitch":141.5,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":139.625,"pitch":138.75,"roll":77.6875},"location":"Left Ankle"},{"euler":{"heading":101.8125,"pitch":124.0625,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":31.875,"pitch":-124.25,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":-5.0625,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":98.75,"pitch":-136.9375,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:16.67"} +{"sensors":[{"euler":{"heading":278.3125,"pitch":139.375,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":140.5625,"pitch":144.25,"roll":78.0625},"location":"Left Ankle"},{"euler":{"heading":104.75,"pitch":121.125,"roll":67.0},"location":"Right Ankle"},{"euler":{"heading":30.125,"pitch":-125.25,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":-1.625,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":99.4375,"pitch":-139.125,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:16.167"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":137.8125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":141.375,"pitch":152.0,"roll":77.875},"location":"Left Ankle"},{"euler":{"heading":101.125,"pitch":122.9375,"roll":69.1875},"location":"Right Ankle"},{"euler":{"heading":25.5625,"pitch":-127.3125,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":-14.5625,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":99.5625,"pitch":-141.75,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:16.268"} +{"sensors":[{"euler":{"heading":282.5,"pitch":135.4375,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":143.375,"pitch":163.4375,"roll":76.625},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":124.125,"roll":71.25},"location":"Right Ankle"},{"euler":{"heading":20.9375,"pitch":-132.25,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":-21.25,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":101.125,"pitch":-143.375,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:16.369"} +{"sensors":[{"euler":{"heading":285.125,"pitch":132.75,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":176.3125,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":94.9375,"pitch":123.0,"roll":73.375},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-134.9375,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":158.6875,"pitch":-34.125,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":101.4375,"pitch":-144.4375,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:16.469"} +{"sensors":[{"euler":{"heading":285.25,"pitch":131.0,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":147.125,"pitch":-171.375,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":121.5,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":16.8125,"pitch":-136.625,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":159.1875,"pitch":-44.5,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":98.4375,"pitch":-143.0,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:16.570"} +{"sensors":[{"euler":{"heading":285.6875,"pitch":131.0625,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":152.6875,"pitch":-158.0625,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":122.0625,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":15.5,"pitch":-136.875,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":-53.375,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":94.4375,"pitch":-139.1875,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:16.671"} +{"sensors":[{"euler":{"heading":201.25,"pitch":129.6875,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":161.0,"pitch":-147.875,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":121.4375,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":13.5625,"pitch":-137.6875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":160.3125,"pitch":-60.25,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":89.6875,"pitch":-131.8125,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:16.772"} +{"sensors":[{"euler":{"heading":199.75,"pitch":131.9375,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":157.875,"pitch":-153.9375,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":121.375,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":12.625,"pitch":-138.125,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":161.25,"pitch":-65.125,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":87.0,"pitch":-126.9375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:16.873"} +{"sensors":[{"euler":{"heading":281.1875,"pitch":137.125,"roll":47.1875},"location":"Left Knee"},{"euler":{"heading":149.375,"pitch":-169.375,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":120.5,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":11.625,"pitch":-138.4375,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":161.6875,"pitch":-67.75,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":84.0,"pitch":-124.3125,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:16.974"} +{"sensors":[{"euler":{"heading":272.375,"pitch":143.6875,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":141.1875,"pitch":172.25,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":120.6875,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":10.8125,"pitch":-138.875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":161.875,"pitch":-69.625,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":81.0,"pitch":-122.375,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:17.75"} +{"sensors":[{"euler":{"heading":265.4375,"pitch":150.1875,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":134.5,"pitch":155.75,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":83.0,"pitch":121.125,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":10.25,"pitch":-139.3125,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":162.375,"pitch":-71.0625,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":79.625,"pitch":-120.9375,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:17.175"} +{"sensors":[{"euler":{"heading":258.375,"pitch":156.75,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":132.1875,"pitch":148.375,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":124.3125,"roll":82.5625},"location":"Right Ankle"},{"euler":{"heading":9.5625,"pitch":-140.4375,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":163.75,"pitch":-72.5625,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-120.8125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:17.276"} +{"sensors":[{"euler":{"heading":255.5,"pitch":161.0625,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":129.6875,"pitch":141.5,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":174.8125,"roll":83.1875},"location":"Right Ankle"},{"euler":{"heading":9.125,"pitch":-142.1875,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":166.3125,"pitch":-73.5,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-122.375,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:17.377"} +{"sensors":[{"euler":{"heading":257.6875,"pitch":161.75,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":132.9375,"pitch":141.5,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":81.5625,"pitch":175.9375,"roll":83.625},"location":"Right Ankle"},{"euler":{"heading":9.25,"pitch":-144.0625,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":-74.4375,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":86.25,"pitch":-124.125,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:17.478"} +{"sensors":[{"euler":{"heading":263.3125,"pitch":159.0625,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":145.75,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":178.0,"roll":83.875},"location":"Right Ankle"},{"euler":{"heading":9.1875,"pitch":-145.6875,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":175.0625,"pitch":-74.75,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":92.0,"pitch":-128.625,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:17.579"} +{"sensors":[{"euler":{"heading":266.4375,"pitch":155.0625,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":138.6875,"pitch":145.9375,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":-172.125,"roll":82.9375},"location":"Right Ankle"},{"euler":{"heading":8.625,"pitch":-146.875,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":181.0,"pitch":-74.6875,"roll":64.5},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-131.3125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:17.679"} +{"sensors":[{"euler":{"heading":267.875,"pitch":152.0625,"roll":61.5625},"location":"Left Knee"},{"euler":{"heading":139.5,"pitch":144.75,"roll":75.9375},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":-143.5,"roll":80.75},"location":"Right Ankle"},{"euler":{"heading":10.875,"pitch":-144.6875,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":185.75,"pitch":-71.75,"roll":62.0},"location":"Right Knee"},{"euler":{"heading":96.6875,"pitch":-133.875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:17.780"} +{"sensors":[{"euler":{"heading":269.5,"pitch":149.375,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":139.375,"pitch":143.1875,"roll":76.9375},"location":"Left Ankle"},{"euler":{"heading":67.25,"pitch":-121.75,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-136.125,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":190.875,"pitch":-71.1875,"roll":57.1875},"location":"Right Knee"},{"euler":{"heading":97.0,"pitch":-134.75,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:17.881"} +{"sensors":[{"euler":{"heading":271.4375,"pitch":147.0,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":140.5,"pitch":142.4375,"roll":78.4375},"location":"Left Ankle"},{"euler":{"heading":63.5,"pitch":-119.9375,"roll":71.1875},"location":"Right Ankle"},{"euler":{"heading":25.875,"pitch":-127.375,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":190.4375,"pitch":-68.8125,"roll":57.0},"location":"Right Knee"},{"euler":{"heading":98.0,"pitch":-135.4375,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:17.981"} +{"sensors":[{"euler":{"heading":272.625,"pitch":145.0625,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":140.9375,"pitch":141.875,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":70.5625,"pitch":-141.75,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":30.1875,"pitch":-123.4375,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":183.9375,"pitch":-62.125,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":98.1875,"pitch":-136.0625,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:18.82"} +{"sensors":[{"euler":{"heading":274.0625,"pitch":143.4375,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":141.375,"pitch":142.5,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":168.3125,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":32.5,"pitch":-121.9375,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":173.0,"pitch":-48.25,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":98.9375,"pitch":-137.625,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:18.183"} +{"sensors":[{"euler":{"heading":275.1875,"pitch":142.25,"roll":60.8125},"location":"Left Knee"},{"euler":{"heading":142.0,"pitch":143.375,"roll":80.0},"location":"Left Ankle"},{"euler":{"heading":93.125,"pitch":132.5625,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":32.9375,"pitch":-121.9375,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":164.1875,"pitch":-25.0,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":99.625,"pitch":-139.3125,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:18.284"} +{"sensors":[{"euler":{"heading":276.6875,"pitch":140.75,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":142.4375,"pitch":146.875,"roll":80.125},"location":"Left Ankle"},{"euler":{"heading":102.9375,"pitch":121.5625,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":30.1875,"pitch":-124.0625,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":158.375,"pitch":-1.8125,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":99.875,"pitch":-140.9375,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:18.385"} +{"sensors":[{"euler":{"heading":278.3125,"pitch":139.1875,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":142.8125,"pitch":153.375,"roll":79.75},"location":"Left Ankle"},{"euler":{"heading":102.9375,"pitch":120.5625,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":28.25,"pitch":-124.875,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":157.9375,"pitch":-4.4375,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":100.1875,"pitch":-143.0,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:18.486"} +{"sensors":[{"euler":{"heading":280.25,"pitch":137.0625,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":143.875,"pitch":164.125,"roll":78.6875},"location":"Left Ankle"},{"euler":{"heading":99.125,"pitch":122.9375,"roll":68.8125},"location":"Right Ankle"},{"euler":{"heading":24.25,"pitch":-127.25,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":-13.875,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":100.375,"pitch":-144.0625,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:18.587"} +{"sensors":[{"euler":{"heading":283.75,"pitch":134.3125,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":146.3125,"pitch":176.8125,"roll":76.375},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":123.625,"roll":71.25},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-130.75,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":156.75,"pitch":-23.4375,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":100.4375,"pitch":-143.5625,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:18.688"} +{"sensors":[{"euler":{"heading":285.3125,"pitch":131.5625,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":148.5,"pitch":-170.0,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":122.625,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-134.125,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":156.625,"pitch":-34.5625,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":99.125,"pitch":-143.125,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:18.789"} +{"sensors":[{"euler":{"heading":285.75,"pitch":130.0,"roll":48.125},"location":"Left Knee"},{"euler":{"heading":152.6875,"pitch":-156.25,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":121.5,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":15.0625,"pitch":-135.875,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":156.5625,"pitch":-44.125,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":94.4375,"pitch":-139.125,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:18.890"} +{"sensors":[{"euler":{"heading":199.375,"pitch":129.0625,"roll":43.8125},"location":"Left Knee"},{"euler":{"heading":162.3125,"pitch":-141.5625,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":119.4375,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":13.1875,"pitch":-137.0,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":156.9375,"pitch":-51.3125,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":88.875,"pitch":-132.4375,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:18.991"} +{"sensors":[{"euler":{"heading":203.0625,"pitch":129.1875,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":164.8125,"pitch":-139.3125,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":117.25,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":12.1875,"pitch":-137.375,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":157.75,"pitch":-57.1875,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":84.9375,"pitch":-127.1875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:19.92"} +{"sensors":[{"euler":{"heading":198.25,"pitch":132.375,"roll":43.8125},"location":"Left Knee"},{"euler":{"heading":158.6875,"pitch":-148.625,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":115.625,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":11.625,"pitch":-137.5,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":158.5625,"pitch":-61.1875,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":83.0625,"pitch":-124.9375,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:19.193"} +{"sensors":[{"euler":{"heading":280.125,"pitch":137.6875,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":150.6875,"pitch":-164.3125,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":114.6875,"roll":79.0},"location":"Right Ankle"},{"euler":{"heading":11.0625,"pitch":-138.3125,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":-64.8125,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":81.25,"pitch":-123.3125,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:19.294"} +{"sensors":[{"euler":{"heading":274.1875,"pitch":142.75,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":143.8125,"pitch":179.3125,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":115.25,"roll":80.125},"location":"Right Ankle"},{"euler":{"heading":10.6875,"pitch":-138.6875,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":-68.25,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":80.1875,"pitch":-122.25,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:19.395"} +{"sensors":[{"euler":{"heading":266.625,"pitch":148.125,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":136.25,"pitch":159.1875,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":119.0,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":10.375,"pitch":-139.3125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":163.25,"pitch":-70.5,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":80.5625,"pitch":-122.0625,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:19.496"} +{"sensors":[{"euler":{"heading":262.625,"pitch":154.4375,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":132.5,"pitch":147.625,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":124.0625,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":9.1875,"pitch":-140.8125,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":165.125,"pitch":-71.75,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-122.875,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:19.597"} +{"sensors":[{"euler":{"heading":260.0,"pitch":158.4375,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":130.5,"pitch":142.8125,"roll":70.0625},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":175.0625,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":8.125,"pitch":-142.3125,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":166.9375,"pitch":-72.9375,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":83.5625,"pitch":-124.8125,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:19.697"} +{"sensors":[{"euler":{"heading":264.5,"pitch":157.375,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":135.625,"pitch":145.6875,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":80.3125,"pitch":176.4375,"roll":83.8125},"location":"Right Ankle"},{"euler":{"heading":7.75,"pitch":-144.3125,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":170.25,"pitch":-73.8125,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":87.75,"pitch":-126.9375,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:19.799"} +{"sensors":[{"euler":{"heading":268.625,"pitch":154.125,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":137.6875,"pitch":146.4375,"roll":72.875},"location":"Left Ankle"},{"euler":{"heading":79.5,"pitch":178.6875,"roll":84.0},"location":"Right Ankle"},{"euler":{"heading":7.5625,"pitch":-146.25,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":174.8125,"pitch":-74.625,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":92.75,"pitch":-130.6875,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:19.900"} +{"sensors":[{"euler":{"heading":271.625,"pitch":150.75,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":138.6875,"pitch":145.1875,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":-169.4375,"roll":82.9375},"location":"Right Ankle"},{"euler":{"heading":8.125,"pitch":-148.4375,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":180.5625,"pitch":-74.0625,"roll":64.9375},"location":"Right Knee"},{"euler":{"heading":97.375,"pitch":-134.375,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:20.0"} +{"sensors":[{"euler":{"heading":273.625,"pitch":147.4375,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":139.375,"pitch":142.6875,"roll":76.875},"location":"Left Ankle"},{"euler":{"heading":76.75,"pitch":-147.25,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":8.75,"pitch":-148.1875,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":185.125,"pitch":-72.5,"roll":61.9375},"location":"Right Knee"},{"euler":{"heading":100.125,"pitch":-137.375,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:20.100"} +{"sensors":[{"euler":{"heading":275.5,"pitch":144.3125,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":141.125,"pitch":144.1875,"roll":78.6875},"location":"Left Ankle"},{"euler":{"heading":66.75,"pitch":-124.25,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":12.0,"pitch":-142.4375,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":188.625,"pitch":-71.4375,"roll":57.75},"location":"Right Knee"},{"euler":{"heading":100.8125,"pitch":-138.125,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:20.201"} +{"sensors":[{"euler":{"heading":277.375,"pitch":141.75,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":142.625,"pitch":145.9375,"roll":80.0},"location":"Left Ankle"},{"euler":{"heading":59.6875,"pitch":-117.0,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":17.5625,"pitch":-134.1875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":191.6875,"pitch":-71.625,"roll":54.125},"location":"Right Knee"},{"euler":{"heading":101.0,"pitch":-138.1875,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:20.302"} +{"sensors":[{"euler":{"heading":278.5625,"pitch":139.875,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":143.4375,"pitch":148.0625,"roll":80.6875},"location":"Left Ankle"},{"euler":{"heading":64.625,"pitch":-127.25,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":22.25,"pitch":-128.8125,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":189.4375,"pitch":-67.375,"roll":57.375},"location":"Right Knee"},{"euler":{"heading":101.125,"pitch":-138.875,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:20.402"} +{"sensors":[{"euler":{"heading":279.5,"pitch":138.4375,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":144.0,"pitch":149.1875,"roll":81.125},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":-151.625,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":25.8125,"pitch":-126.0625,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":181.5,"pitch":-60.6875,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":101.6875,"pitch":-140.3125,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:20.503"} +{"sensors":[{"euler":{"heading":280.75,"pitch":137.0625,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":144.875,"pitch":152.5625,"roll":81.5},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":157.1875,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":28.3125,"pitch":-124.25,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":172.25,"pitch":-46.9375,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":101.9375,"pitch":-141.375,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:20.604"} +{"sensors":[{"euler":{"heading":282.5625,"pitch":135.625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":159.625,"roll":81.5625},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":129.3125,"roll":71.25},"location":"Right Ankle"},{"euler":{"heading":27.3125,"pitch":-124.6875,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":164.1875,"pitch":-25.625,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":102.1875,"pitch":-142.6875,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:20.704"} +{"sensors":[{"euler":{"heading":284.0625,"pitch":134.5,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":146.9375,"pitch":166.875,"roll":81.0625},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":123.0625,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":25.8125,"pitch":-125.9375,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":161.625,"pitch":-14.625,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":102.75,"pitch":-145.0625,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:20.804"} +{"sensors":[{"euler":{"heading":286.0,"pitch":133.125,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":147.5625,"pitch":174.9375,"roll":79.8125},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":125.3125,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":22.625,"pitch":-127.1875,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":158.75,"pitch":-19.75,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":102.8125,"pitch":-147.375,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:20.905"} +{"sensors":[{"euler":{"heading":288.3125,"pitch":131.375,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":148.8125,"pitch":-174.875,"roll":77.75},"location":"Left Ankle"},{"euler":{"heading":93.9375,"pitch":123.625,"roll":72.0},"location":"Right Ankle"},{"euler":{"heading":18.625,"pitch":-130.4375,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":-26.125,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":103.25,"pitch":-149.0,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:21.6"} +{"sensors":[{"euler":{"heading":289.375,"pitch":129.75,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":150.25,"pitch":-165.3125,"roll":75.0625},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":121.0,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-134.25,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":156.75,"pitch":-34.6875,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":101.875,"pitch":-149.875,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:21.107"} +{"sensors":[{"euler":{"heading":291.125,"pitch":128.5625,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":154.375,"pitch":-154.75,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":118.0,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":10.9375,"pitch":-136.9375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":157.125,"pitch":-43.375,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":98.875,"pitch":-146.9375,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:21.208"} +{"sensors":[{"euler":{"heading":204.9375,"pitch":127.4375,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":163.25,"pitch":-142.875,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":116.4375,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":9.4375,"pitch":-137.75,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":158.0,"pitch":-51.0625,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":94.125,"pitch":-140.25,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:21.308"} +{"sensors":[{"euler":{"heading":207.875,"pitch":127.125,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":166.125,"pitch":-139.375,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":114.75,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":7.5625,"pitch":-138.625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":158.8125,"pitch":-58.1875,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":89.0,"pitch":-133.8125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:21.409"} +{"sensors":[{"euler":{"heading":201.125,"pitch":131.5,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":156.25,"pitch":-153.375,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":113.0625,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":6.5,"pitch":-139.3125,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":159.875,"pitch":-64.75,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":86.5625,"pitch":-130.9375,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:21.510"} +{"sensors":[{"euler":{"heading":282.625,"pitch":136.5625,"roll":63.9375},"location":"Left Knee"},{"euler":{"heading":148.0,"pitch":-171.4375,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":112.8125,"roll":78.9375},"location":"Right Ankle"},{"euler":{"heading":6.125,"pitch":-139.9375,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":161.25,"pitch":-67.875,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":85.1875,"pitch":-128.6875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:21.611"} +{"sensors":[{"euler":{"heading":275.75,"pitch":141.6875,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":142.0625,"pitch":172.9375,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":113.5625,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":5.75,"pitch":-140.5,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":162.25,"pitch":-70.5625,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":83.8125,"pitch":-127.0,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:21.712"} +{"sensors":[{"euler":{"heading":270.3125,"pitch":146.25,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":137.9375,"pitch":160.625,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":83.9375,"pitch":117.4375,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":5.6875,"pitch":-141.1875,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":-72.5625,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":82.9375,"pitch":-125.75,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:21.813"} +{"sensors":[{"euler":{"heading":268.1875,"pitch":149.75,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":156.5625,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":123.6875,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":5.9375,"pitch":-142.125,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":166.3125,"pitch":-73.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":84.4375,"pitch":-126.1875,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:21.914"} +{"sensors":[{"euler":{"heading":267.9375,"pitch":152.6875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":138.6875,"pitch":153.4375,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":81.4375,"pitch":175.375,"roll":83.5625},"location":"Right Ankle"},{"euler":{"heading":6.9375,"pitch":-143.25,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":-74.875,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":87.75,"pitch":-128.0,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:22.15"} +{"sensors":[{"euler":{"heading":272.9375,"pitch":150.4375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":142.625,"pitch":157.4375,"roll":73.0},"location":"Left Ankle"},{"euler":{"heading":80.3125,"pitch":177.5625,"roll":84.375},"location":"Right Ankle"},{"euler":{"heading":8.25,"pitch":-145.3125,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":173.9375,"pitch":-74.875,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":93.3125,"pitch":-130.3125,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:22.116"} +{"sensors":[{"euler":{"heading":276.75,"pitch":147.625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":144.1875,"pitch":159.1875,"roll":75.5625},"location":"Left Ankle"},{"euler":{"heading":80.5,"pitch":-179.6875,"roll":83.9375},"location":"Right Ankle"},{"euler":{"heading":9.5,"pitch":-146.5,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":180.375,"pitch":-77.0,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":96.4375,"pitch":-132.625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:22.217"} +{"sensors":[{"euler":{"heading":278.8125,"pitch":145.25,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":159.625,"roll":77.75},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":-147.0,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":12.875,"pitch":-144.0,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":185.9375,"pitch":-75.0,"roll":62.875},"location":"Right Knee"},{"euler":{"heading":100.1875,"pitch":-135.4375,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:22.318"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":142.9375,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":146.5625,"pitch":158.5625,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-125.25,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":18.375,"pitch":-137.6875,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":190.875,"pitch":-74.125,"roll":59.3125},"location":"Right Knee"},{"euler":{"heading":101.25,"pitch":-136.875,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:22.419"} +{"sensors":[{"euler":{"heading":279.625,"pitch":141.1875,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":146.8125,"pitch":156.125,"roll":80.9375},"location":"Left Ankle"},{"euler":{"heading":67.4375,"pitch":-127.25,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":22.0625,"pitch":-131.3125,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":190.3125,"pitch":-70.8125,"roll":59.0625},"location":"Right Knee"},{"euler":{"heading":101.5625,"pitch":-137.8125,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:22.520"} +{"sensors":[{"euler":{"heading":280.6875,"pitch":139.3125,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":147.8125,"pitch":159.375,"roll":81.5625},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":-153.875,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":24.5,"pitch":-127.5,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":183.8125,"pitch":-65.1875,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":101.4375,"pitch":-137.8125,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:22.621"} +{"sensors":[{"euler":{"heading":281.5625,"pitch":137.5625,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":148.5,"pitch":164.25,"roll":81.9375},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":163.375,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":26.6875,"pitch":-125.9375,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-54.25,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":101.3125,"pitch":-139.0,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:22.721"} +{"sensors":[{"euler":{"heading":282.25,"pitch":135.875,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":148.375,"pitch":168.6875,"roll":81.625},"location":"Left Ankle"},{"euler":{"heading":87.4375,"pitch":142.0625,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":26.9375,"pitch":-125.9375,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":168.875,"pitch":-41.5625,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":101.5,"pitch":-140.625,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:22.822"} +{"sensors":[{"euler":{"heading":282.375,"pitch":134.875,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":148.75,"pitch":175.0625,"roll":81.0},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":137.625,"roll":74.0625},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-127.5625,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":163.3125,"pitch":-28.5625,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":101.0625,"pitch":-141.5625,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:22.922"} +{"sensors":[{"euler":{"heading":283.875,"pitch":133.5,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":149.25,"pitch":-177.25,"roll":79.5625},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":139.5,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-129.6875,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":-29.4375,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":100.875,"pitch":-144.0,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:23.22"} +{"sensors":[{"euler":{"heading":285.9375,"pitch":131.6875,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":150.125,"pitch":-169.125,"roll":77.4375},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":138.1875,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":18.125,"pitch":-132.5,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":160.375,"pitch":-36.0,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":101.25,"pitch":-145.6875,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:23.123"} +{"sensors":[{"euler":{"heading":288.4375,"pitch":129.9375,"roll":49.375},"location":"Left Knee"},{"euler":{"heading":152.25,"pitch":-160.375,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":136.375,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":15.5,"pitch":-134.4375,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":-43.125,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":99.75,"pitch":-144.5,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:23.223"} +{"sensors":[{"euler":{"heading":291.375,"pitch":128.8125,"roll":45.4375},"location":"Left Knee"},{"euler":{"heading":157.875,"pitch":-148.3125,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":133.3125,"roll":80.375},"location":"Right Ankle"},{"euler":{"heading":13.625,"pitch":-135.25,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":-49.75,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-140.375,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:23.324"} +{"sensors":[{"euler":{"heading":206.3125,"pitch":127.9375,"roll":42.0625},"location":"Left Knee"},{"euler":{"heading":167.6875,"pitch":-138.6875,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":79.6875,"pitch":131.8125,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":12.8125,"pitch":-135.125,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":160.1875,"pitch":-55.9375,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":89.125,"pitch":-132.875,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:23.425"} +{"sensors":[{"euler":{"heading":203.6875,"pitch":131.125,"roll":43.0625},"location":"Left Knee"},{"euler":{"heading":164.375,"pitch":-146.5,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":131.5625,"roll":82.8125},"location":"Right Ankle"},{"euler":{"heading":12.1875,"pitch":-134.75,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":160.8125,"pitch":-60.9375,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":85.6875,"pitch":-128.0,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:23.525"} +{"sensors":[{"euler":{"heading":281.875,"pitch":138.1875,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":153.5625,"pitch":-168.625,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":175.5,"roll":83.625},"location":"Right Ankle"},{"euler":{"heading":12.125,"pitch":-134.4375,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":161.6875,"pitch":-64.5625,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":83.0,"pitch":-125.5,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:23.625"} +{"sensors":[{"euler":{"heading":269.1875,"pitch":147.3125,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":140.1875,"pitch":163.875,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":176.125,"roll":84.125},"location":"Right Ankle"},{"euler":{"heading":12.0625,"pitch":-134.875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":162.6875,"pitch":-67.125,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":80.6875,"pitch":-124.4375,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:23.725"} +{"sensors":[{"euler":{"heading":261.9375,"pitch":154.5625,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":133.9375,"pitch":148.875,"roll":71.25},"location":"Left Ankle"},{"euler":{"heading":77.3125,"pitch":176.5625,"roll":84.1875},"location":"Right Ankle"},{"euler":{"heading":12.4375,"pitch":-135.9375,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":-68.625,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":80.25,"pitch":-124.1875,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:23.826"} +{"sensors":[{"euler":{"heading":262.25,"pitch":157.1875,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":135.4375,"pitch":147.5,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":177.5625,"roll":84.5},"location":"Right Ankle"},{"euler":{"heading":14.0,"pitch":-136.3125,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":-69.4375,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":83.25,"pitch":-125.1875,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:23.927"} +{"sensors":[{"euler":{"heading":266.4375,"pitch":155.1875,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":147.375,"roll":72.0},"location":"Left Ankle"},{"euler":{"heading":76.75,"pitch":179.0,"roll":84.375},"location":"Right Ankle"},{"euler":{"heading":15.25,"pitch":-137.375,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":171.375,"pitch":-69.25,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":87.9375,"pitch":-127.0625,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:24.28"} +{"sensors":[{"euler":{"heading":269.125,"pitch":152.0625,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":138.5625,"pitch":148.5,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":76.0625,"pitch":-179.0,"roll":83.5},"location":"Right Ankle"},{"euler":{"heading":14.4375,"pitch":-138.75,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-72.5,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":90.25,"pitch":-144.0,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:24.128"} +{"sensors":[{"euler":{"heading":271.5,"pitch":149.8125,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":140.6875,"pitch":148.75,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":-159.625,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":14.4375,"pitch":-140.25,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":181.875,"pitch":-72.3125,"roll":64.75},"location":"Right Knee"},{"euler":{"heading":92.3125,"pitch":-129.875,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:24.228"} +{"sensors":[{"euler":{"heading":273.25,"pitch":147.6875,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":142.375,"pitch":146.5625,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-130.1875,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":19.9375,"pitch":-134.5,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":188.8125,"pitch":-72.3125,"roll":60.6875},"location":"Right Knee"},{"euler":{"heading":94.25,"pitch":-130.875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:24.328"} +{"sensors":[{"euler":{"heading":275.625,"pitch":145.5625,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":144.25,"pitch":145.5625,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":-128.875,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":25.0625,"pitch":-127.625,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":189.4375,"pitch":-69.75,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-130.9375,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:24.429"} +{"sensors":[{"euler":{"heading":277.125,"pitch":144.0,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":145.0,"pitch":143.25,"roll":80.4375},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":-157.5,"roll":79.125},"location":"Right Ankle"},{"euler":{"heading":29.375,"pitch":-124.5625,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":184.5625,"pitch":-63.6875,"roll":63.625},"location":"Right Knee"},{"euler":{"heading":96.9375,"pitch":-132.5,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:24.529"} +{"sensors":[{"euler":{"heading":278.4375,"pitch":142.5,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":142.8125,"roll":81.0},"location":"Left Ankle"},{"euler":{"heading":86.5,"pitch":145.4375,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":30.375,"pitch":-124.0625,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":174.1875,"pitch":-49.0625,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":97.75,"pitch":-134.25,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:24.629"} +{"sensors":[{"euler":{"heading":279.75,"pitch":140.6875,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":146.5625,"pitch":149.625,"roll":81.1875},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":127.8125,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":28.4375,"pitch":-125.375,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":168.375,"pitch":-34.5625,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":97.375,"pitch":-135.6875,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:24.730"} +{"sensors":[{"euler":{"heading":280.8125,"pitch":138.9375,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":146.1875,"pitch":159.9375,"roll":80.0},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":129.625,"roll":74.4375},"location":"Right Ankle"},{"euler":{"heading":24.1875,"pitch":-127.6875,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":167.4375,"pitch":-37.75,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":97.0625,"pitch":-137.5625,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:24.830"} +{"sensors":[{"euler":{"heading":281.9375,"pitch":136.3125,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":170.5,"roll":76.9375},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":126.125,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":17.6875,"pitch":-133.125,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":-43.4375,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-138.6875,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:24.930"} +{"sensors":[{"euler":{"heading":284.75,"pitch":133.125,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":148.6875,"pitch":-174.1875,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":88.125,"pitch":124.625,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":16.0625,"pitch":-134.1875,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":163.9375,"pitch":-51.8125,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":93.875,"pitch":-137.25,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:25.31"} +{"sensors":[{"euler":{"heading":285.375,"pitch":132.0,"roll":47.5625},"location":"Left Knee"},{"euler":{"heading":154.0625,"pitch":-158.0625,"roll":70.6875},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":119.875,"roll":78.9375},"location":"Right Ankle"},{"euler":{"heading":12.125,"pitch":-135.25,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":161.875,"pitch":-59.0,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":87.6875,"pitch":-133.75,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:25.131"} +{"sensors":[{"euler":{"heading":198.3125,"pitch":131.9375,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":159.3125,"pitch":-149.625,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":115.1875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":10.5,"pitch":-137.0625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":-65.5625,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":81.625,"pitch":-112.0625,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:25.231"} +{"sensors":[{"euler":{"heading":282.125,"pitch":136.1875,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":151.1875,"pitch":-163.0,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":115.1875,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":11.625,"pitch":-138.3125,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":169.6875,"pitch":-68.875,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":80.125,"pitch":-126.75,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:25.332"} +{"sensors":[{"euler":{"heading":256.0,"pitch":144.0625,"roll":52.0},"location":"Left Knee"},{"euler":{"heading":142.125,"pitch":175.0,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":88.6875,"pitch":117.625,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":11.9375,"pitch":-139.75,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":174.5625,"pitch":-72.25,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":78.0625,"pitch":-125.75,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:25.433"} +{"sensors":[{"euler":{"heading":263.375,"pitch":152.9375,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":135.125,"pitch":155.875,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":122.1875,"roll":80.8125},"location":"Right Ankle"},{"euler":{"heading":10.875,"pitch":-138.8125,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":172.5625,"pitch":-73.5625,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":75.5,"pitch":-123.6875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:25.533"} +{"sensors":[{"euler":{"heading":253.6875,"pitch":163.125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":126.375,"pitch":138.75,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":80.8125,"pitch":126.3125,"roll":82.5},"location":"Right Ankle"},{"euler":{"heading":10.125,"pitch":-138.125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":170.3125,"pitch":-75.375,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":74.1875,"pitch":-122.75,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:25.634"} +{"sensors":[{"euler":{"heading":247.8125,"pitch":172.1875,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":121.0625,"pitch":130.375,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":75.5,"pitch":177.6875,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":10.5625,"pitch":-138.1875,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":171.0,"pitch":-76.75,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":76.0,"pitch":-122.875,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:25.735"} +{"sensors":[{"euler":{"heading":247.5,"pitch":175.75,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":119.5,"pitch":125.9375,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":75.375,"pitch":178.6875,"roll":85.875},"location":"Right Ankle"},{"euler":{"heading":11.1875,"pitch":-140.0625,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":173.9375,"pitch":-77.8125,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":79.5,"pitch":-124.1875,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:25.835"} +{"sensors":[{"euler":{"heading":250.6875,"pitch":175.25,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":122.0625,"pitch":127.0,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":74.625,"pitch":179.75,"roll":86.0},"location":"Right Ankle"},{"euler":{"heading":11.0625,"pitch":-142.25,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":175.3125,"pitch":-77.9375,"roll":68.0},"location":"Right Knee"},{"euler":{"heading":84.75,"pitch":-126.5,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:25.936"} +{"sensors":[{"euler":{"heading":256.25,"pitch":171.75,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":129.4375,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-178.4375,"roll":85.1875},"location":"Right Ankle"},{"euler":{"heading":11.5,"pitch":-145.625,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":179.25,"pitch":-77.0625,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":91.5,"pitch":-129.75,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:26.36"} +{"sensors":[{"euler":{"heading":261.4375,"pitch":168.0,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":131.4375,"pitch":132.375,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":72.5,"pitch":-141.75,"roll":82.8125},"location":"Right Ankle"},{"euler":{"heading":10.6875,"pitch":-148.5,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":183.0625,"pitch":-76.0,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-131.6875,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:26.137"} +{"sensors":[{"euler":{"heading":264.5625,"pitch":163.5,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":134.25,"pitch":132.875,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":68.8125,"pitch":-126.8125,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":11.1875,"pitch":-148.1875,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":187.0625,"pitch":-74.8125,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":96.8125,"pitch":-132.5,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:26.238"} +{"sensors":[{"euler":{"heading":268.3125,"pitch":158.4375,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":137.9375,"pitch":135.25,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":61.875,"pitch":-116.4375,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":12.9375,"pitch":-145.875,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":190.8125,"pitch":-74.1875,"roll":55.375},"location":"Right Knee"},{"euler":{"heading":98.0,"pitch":-132.625,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:26.339"} +{"sensors":[{"euler":{"heading":272.3125,"pitch":154.0625,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":142.6875,"pitch":135.125,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":52.9375,"pitch":-108.0625,"roll":64.375},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-139.25,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":195.5,"pitch":-73.6875,"roll":51.0},"location":"Right Knee"},{"euler":{"heading":99.3125,"pitch":-132.0,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:26.439"} +{"sensors":[{"euler":{"heading":275.875,"pitch":151.1875,"roll":62.3125},"location":"Left Knee"},{"euler":{"heading":144.9375,"pitch":132.3125,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":44.125,"pitch":-100.875,"roll":56.9375},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-132.8125,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":197.1875,"pitch":-72.75,"roll":48.6875},"location":"Right Knee"},{"euler":{"heading":101.0625,"pitch":-131.6875,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:26.539"} +{"sensors":[{"euler":{"heading":278.375,"pitch":148.25,"roll":62.5625},"location":"Left Knee"},{"euler":{"heading":147.0625,"pitch":133.0625,"roll":79.5625},"location":"Left Ankle"},{"euler":{"heading":40.75,"pitch":-97.1875,"roll":53.125},"location":"Right Ankle"},{"euler":{"heading":28.125,"pitch":-128.625,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":198.125,"pitch":-72.25,"roll":47.0625},"location":"Right Knee"},{"euler":{"heading":101.5625,"pitch":-131.625,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:26.640"} +{"sensors":[{"euler":{"heading":281.25,"pitch":145.625,"roll":62.1875},"location":"Left Knee"},{"euler":{"heading":148.8125,"pitch":135.9375,"roll":80.1875},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":-104.25,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":31.625,"pitch":-125.4375,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":194.875,"pitch":-68.9375,"roll":52.4375},"location":"Right Knee"},{"euler":{"heading":102.625,"pitch":-132.125,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:26.740"} +{"sensors":[{"euler":{"heading":283.0625,"pitch":143.5,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":149.5,"pitch":137.3125,"roll":80.6875},"location":"Left Ankle"},{"euler":{"heading":70.125,"pitch":-134.9375,"roll":75.625},"location":"Right Ankle"},{"euler":{"heading":34.8125,"pitch":-123.9375,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":185.5,"pitch":-59.375,"roll":64.5},"location":"Right Knee"},{"euler":{"heading":104.1875,"pitch":-134.125,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:26.840"} +{"sensors":[{"euler":{"heading":285.0,"pitch":141.1875,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":150.625,"pitch":142.6875,"roll":81.1875},"location":"Left Ankle"},{"euler":{"heading":93.375,"pitch":143.125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":33.4375,"pitch":-125.875,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":174.125,"pitch":-35.6875,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":104.4375,"pitch":-135.0,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:26.941"} +{"sensors":[{"euler":{"heading":287.4375,"pitch":137.8125,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":151.9375,"pitch":151.625,"roll":81.5625},"location":"Left Ankle"},{"euler":{"heading":105.9375,"pitch":123.25,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":28.8125,"pitch":-130.0625,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":168.25,"pitch":-12.9375,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":104.9375,"pitch":-137.0,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:27.41"} +{"sensors":[{"euler":{"heading":289.6875,"pitch":135.0625,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":152.875,"pitch":162.125,"roll":81.5625},"location":"Left Ankle"},{"euler":{"heading":102.875,"pitch":123.125,"roll":68.125},"location":"Right Ankle"},{"euler":{"heading":23.6875,"pitch":-132.5625,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":-14.0,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":105.625,"pitch":-140.875,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:27.142"} +{"sensors":[{"euler":{"heading":293.25,"pitch":132.625,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":153.5,"pitch":176.25,"roll":79.875},"location":"Left Ankle"},{"euler":{"heading":95.125,"pitch":127.0,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":20.6875,"pitch":-135.0,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":161.375,"pitch":-22.625,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":107.8125,"pitch":-143.0625,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:27.243"} +{"sensors":[{"euler":{"heading":293.6875,"pitch":131.5,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":153.1875,"pitch":-171.75,"roll":76.6875},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":130.0625,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":17.25,"pitch":-136.3125,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":161.0625,"pitch":-32.8125,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":104.75,"pitch":-144.3125,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:27.344"} +{"sensors":[{"euler":{"heading":293.4375,"pitch":130.0625,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":155.125,"pitch":-158.375,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":130.5,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":15.8125,"pitch":-136.625,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":161.25,"pitch":-42.0625,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":99.625,"pitch":-141.25,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:27.445"} +{"sensors":[{"euler":{"heading":295.1875,"pitch":128.25,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":161.25,"pitch":-147.8125,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":129.25,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":16.0625,"pitch":-137.4375,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":163.375,"pitch":-50.25,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":94.0625,"pitch":-135.1875,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:27.546"} +{"sensors":[{"euler":{"heading":207.0625,"pitch":128.375,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":164.8125,"pitch":-142.8125,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":131.5625,"roll":80.1875},"location":"Right Ankle"},{"euler":{"heading":13.4375,"pitch":-137.3125,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":161.6875,"pitch":-54.8125,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":88.0625,"pitch":-126.8125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:27.647"} +{"sensors":[{"euler":{"heading":289.0,"pitch":132.625,"roll":45.4375},"location":"Left Knee"},{"euler":{"heading":157.25,"pitch":-152.3125,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":134.5,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":11.6875,"pitch":-136.5,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":-59.1875,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":83.0625,"pitch":-123.0,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:27.747"} +{"sensors":[{"euler":{"heading":83.0625,"pitch":-123.0,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":136.8125,"pitch":139.0625,"roll":70.0625},"location":"Left Ankle"},{"euler":{"heading":71.375,"pitch":-137.0625,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.75,"pitch":-145.0625,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":179.6875,"pitch":-73.75,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:27.847"} +{"sensors":[{"euler":{"heading":267.5625,"pitch":162.0625,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":137.6875,"pitch":139.6875,"roll":70.6875},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-135.8125,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":-145.25,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":180.0625,"pitch":-73.5625,"roll":64.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:28.499"} +{"sensors":[{"euler":{"heading":272.375,"pitch":157.6875,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":140.6875,"pitch":139.5,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":69.0625,"pitch":-124.625,"roll":78.5625},"location":"Right Ankle"},{"euler":{"heading":14.5,"pitch":-146.4375,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":186.5625,"pitch":-75.625,"roll":60.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:28.600"} +{"sensors":[{"euler":{"heading":276.8125,"pitch":153.5625,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":143.625,"pitch":139.375,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":65.1875,"pitch":-118.1875,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":15.625,"pitch":-146.6875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":189.875,"pitch":-74.375,"roll":58.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:28.700"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":150.1875,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":138.6875,"roll":78.0625},"location":"Left Ankle"},{"euler":{"heading":61.25,"pitch":-113.25,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":18.4375,"pitch":-144.5625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":195.5,"pitch":-74.25,"roll":54.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:28.802"} +{"sensors":[{"euler":{"heading":281.3125,"pitch":147.625,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":148.625,"pitch":136.125,"roll":79.8125},"location":"Left Ankle"},{"euler":{"heading":55.875,"pitch":-107.8125,"roll":63.875},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-139.25,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":197.8125,"pitch":-72.375,"roll":51.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:28.902"} +{"sensors":[{"euler":{"heading":283.1875,"pitch":145.1875,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":150.5625,"pitch":137.4375,"roll":80.8125},"location":"Left Ankle"},{"euler":{"heading":46.875,"pitch":-104.125,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":25.6875,"pitch":-135.6875,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":198.875,"pitch":-72.0,"roll":49.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:29.2"} +{"sensors":[{"euler":{"heading":285.5,"pitch":142.9375,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":152.0,"pitch":141.4375,"roll":81.375},"location":"Left Ankle"},{"euler":{"heading":40.8125,"pitch":-99.4375,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":25.9375,"pitch":-134.125,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":199.3125,"pitch":-72.0625,"roll":48.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:29.103"} +{"sensors":[{"euler":{"heading":287.8125,"pitch":140.3125,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":153.625,"pitch":145.75,"roll":82.0625},"location":"Left Ankle"},{"euler":{"heading":37.125,"pitch":-96.0625,"roll":48.375},"location":"Right Ankle"},{"euler":{"heading":26.8125,"pitch":-132.375,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":200.3125,"pitch":-72.0,"roll":47.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:29.204"} +{"sensors":[{"euler":{"heading":289.1875,"pitch":137.6875,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":154.875,"pitch":152.8125,"roll":82.625},"location":"Left Ankle"},{"euler":{"heading":37.375,"pitch":-95.5625,"roll":47.75},"location":"Right Ankle"},{"euler":{"heading":30.3125,"pitch":-128.875,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":200.0625,"pitch":-71.625,"roll":46.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:29.305"} +{"sensors":[{"euler":{"heading":290.5625,"pitch":135.875,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":156.3125,"pitch":160.875,"roll":82.9375},"location":"Left Ankle"},{"euler":{"heading":48.9375,"pitch":-109.1875,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":32.0,"pitch":-126.375,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":192.5625,"pitch":-66.875,"roll":54.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:29.406"} +{"sensors":[{"euler":{"heading":292.0,"pitch":134.5,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":157.4375,"pitch":167.0,"roll":82.9375},"location":"Left Ankle"},{"euler":{"heading":72.0,"pitch":-159.375,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":32.375,"pitch":-125.4375,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":179.875,"pitch":-53.625,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:29.507"} +{"sensors":[{"euler":{"heading":293.0625,"pitch":132.75,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":157.75,"pitch":173.25,"roll":82.9375},"location":"Left Ankle"},{"euler":{"heading":96.6875,"pitch":131.0625,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":29.4375,"pitch":-127.6875,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":169.875,"pitch":-27.125,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:29.608"} +{"sensors":[{"euler":{"heading":293.8125,"pitch":131.5,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":158.875,"pitch":-175.5,"roll":82.5625},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":123.8125,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":25.5,"pitch":-130.0,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":163.0625,"pitch":-7.125,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:29.709"} +{"sensors":[{"euler":{"heading":296.6875,"pitch":129.375,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":160.5,"pitch":-162.0625,"roll":81.125},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":124.9375,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":21.0,"pitch":-133.125,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":160.375,"pitch":-14.5,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:29.809"} +{"sensors":[{"euler":{"heading":299.625,"pitch":127.8125,"roll":50.75},"location":"Left Knee"},{"euler":{"heading":163.1875,"pitch":-148.625,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":93.6875,"pitch":127.0,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-134.4375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":159.875,"pitch":-23.4375,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:29.910"} +{"sensors":[{"euler":{"heading":300.875,"pitch":126.625,"roll":46.8125},"location":"Left Knee"},{"euler":{"heading":166.25,"pitch":-141.1875,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":127.4375,"roll":74.4375},"location":"Right Ankle"},{"euler":{"heading":17.1875,"pitch":-135.375,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":-32.8125,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:30.10"} +{"sensors":[{"euler":{"heading":211.5625,"pitch":125.8125,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":171.0,"pitch":-134.3125,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":124.75,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":16.3125,"pitch":-137.0625,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":161.8125,"pitch":-41.625,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:30.111"} +{"sensors":[{"euler":{"heading":214.9375,"pitch":126.125,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":177.4375,"pitch":-129.9375,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":121.9375,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":16.0625,"pitch":-137.9375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":164.5,"pitch":-49.125,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:30.212"} +{"sensors":[{"euler":{"heading":207.3125,"pitch":131.5625,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":168.4375,"pitch":-142.5,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":122.375,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":15.5625,"pitch":-137.8125,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":166.0,"pitch":-54.25,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:30.313"} +{"sensors":[{"euler":{"heading":283.5625,"pitch":139.9375,"roll":48.6875},"location":"Left Knee"},{"euler":{"heading":156.125,"pitch":-165.625,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":126.0625,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":15.0625,"pitch":-137.25,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":-57.3125,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:30.413"} +{"sensors":[{"euler":{"heading":270.875,"pitch":149.6875,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":142.75,"pitch":167.0,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":80.5625,"pitch":131.625,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":15.1875,"pitch":-134.75,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":162.8125,"pitch":-60.125,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:30.514"} +{"sensors":[{"euler":{"heading":262.9375,"pitch":156.375,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":131.1875,"pitch":146.375,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":78.0625,"pitch":136.625,"roll":83.0625},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-135.0,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":162.625,"pitch":-63.4375,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:30.614"} +{"sensors":[{"euler":{"heading":257.0625,"pitch":162.1875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":139.625,"roll":68.0},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":175.75,"roll":83.625},"location":"Right Ankle"},{"euler":{"heading":13.25,"pitch":-136.625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":-66.4375,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:30.715"} +{"sensors":[{"euler":{"heading":258.1875,"pitch":162.0,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":128.375,"pitch":139.4375,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":77.4375,"pitch":176.5625,"roll":84.25},"location":"Right Ankle"},{"euler":{"heading":12.9375,"pitch":-137.9375,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":166.125,"pitch":-68.625,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:30.816"} +{"sensors":[{"euler":{"heading":260.4375,"pitch":161.1875,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":139.75,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":77.6875,"pitch":177.625,"roll":84.5},"location":"Right Ankle"},{"euler":{"heading":13.0625,"pitch":-140.5625,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":169.5,"pitch":-69.5625,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:30.916"} +{"sensors":[{"euler":{"heading":267.125,"pitch":158.0,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":132.125,"pitch":139.25,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":179.1875,"roll":83.875},"location":"Right Ankle"},{"euler":{"heading":13.25,"pitch":-142.4375,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":174.625,"pitch":-71.1875,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:31.17"} +{"sensors":[{"euler":{"heading":273.0,"pitch":153.5,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":134.625,"pitch":138.3125,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-166.6875,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":14.3125,"pitch":-144.1875,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":179.4375,"pitch":-70.875,"roll":65.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:31.117"} +{"sensors":[{"euler":{"heading":275.375,"pitch":149.0,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":135.1875,"roll":76.5},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":-151.4375,"roll":80.8125},"location":"Right Ankle"},{"euler":{"heading":14.5625,"pitch":-145.375,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":183.375,"pitch":-71.25,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:31.218"} +{"sensors":[{"euler":{"heading":276.4375,"pitch":145.8125,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":138.1875,"pitch":133.75,"roll":78.125},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-135.5,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":16.0625,"pitch":-144.625,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":187.0625,"pitch":-70.5,"roll":60.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:31.318"} +{"sensors":[{"euler":{"heading":278.6875,"pitch":143.25,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":140.75,"pitch":130.25,"roll":80.0625},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":-121.375,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-138.875,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":190.9375,"pitch":-70.4375,"roll":56.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:31.419"} +{"sensors":[{"euler":{"heading":281.0625,"pitch":140.625,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":143.6875,"pitch":131.625,"roll":81.625},"location":"Left Ankle"},{"euler":{"heading":56.25,"pitch":-112.875,"roll":65.8125},"location":"Right Ankle"},{"euler":{"heading":26.375,"pitch":-132.0,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":193.1875,"pitch":-68.25,"roll":54.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:31.520"} +{"sensors":[{"euler":{"heading":282.9375,"pitch":138.1875,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":135.375,"roll":82.5625},"location":"Left Ankle"},{"euler":{"heading":50.5,"pitch":-105.0,"roll":62.125},"location":"Right Ankle"},{"euler":{"heading":30.375,"pitch":-126.75,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":195.125,"pitch":-68.9375,"roll":51.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:31.621"} +{"sensors":[{"euler":{"heading":283.8125,"pitch":136.3125,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":146.375,"pitch":175.5625,"roll":83.1875},"location":"Left Ankle"},{"euler":{"heading":56.1875,"pitch":-114.125,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":32.8125,"pitch":-124.75,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":191.8125,"pitch":-65.875,"roll":54.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:31.721"} +{"sensors":[{"euler":{"heading":284.625,"pitch":134.6875,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":147.0,"pitch":176.5,"roll":83.5},"location":"Left Ankle"},{"euler":{"heading":69.375,"pitch":-142.6875,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":33.625,"pitch":-124.1875,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":182.875,"pitch":-57.375,"roll":63.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:31.822"} +{"sensors":[{"euler":{"heading":286.25,"pitch":133.125,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":148.4375,"pitch":177.8125,"roll":83.8125},"location":"Left Ankle"},{"euler":{"heading":88.0,"pitch":153.9375,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":33.3125,"pitch":-124.3125,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":173.75,"pitch":-41.625,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:31.923"} +{"sensors":[{"euler":{"heading":287.6875,"pitch":131.75,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":149.1875,"pitch":178.5625,"roll":83.6875},"location":"Left Ankle"},{"euler":{"heading":101.5,"pitch":123.875,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":30.4375,"pitch":-126.5,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":166.3125,"pitch":-18.4375,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:32.24"} +{"sensors":[{"euler":{"heading":289.6875,"pitch":130.4375,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":150.5625,"pitch":178.5625,"roll":83.0625},"location":"Left Ankle"},{"euler":{"heading":100.875,"pitch":122.125,"roll":68.375},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-129.1875,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":162.5625,"pitch":-14.3125,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:32.125"} +{"sensors":[{"euler":{"heading":292.625,"pitch":128.8125,"roll":53.375},"location":"Left Knee"},{"euler":{"heading":150.8125,"pitch":-172.4375,"roll":80.0625},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":122.5625,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-132.25,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":-18.9375,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:32.226"} +{"sensors":[{"euler":{"heading":295.625,"pitch":127.625,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":152.75,"pitch":-162.5,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":94.8125,"pitch":123.125,"roll":72.6875},"location":"Right Ankle"},{"euler":{"heading":19.8125,"pitch":-133.4375,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":-27.9375,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:32.326"} +{"sensors":[{"euler":{"heading":296.3125,"pitch":126.75,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":154.8125,"pitch":-154.0,"roll":73.0},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":119.5,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":17.4375,"pitch":-136.125,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":-38.125,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:32.427"} +{"sensors":[{"euler":{"heading":208.875,"pitch":125.8125,"roll":42.125},"location":"Left Knee"},{"euler":{"heading":162.1875,"pitch":-142.5625,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":91.25,"pitch":117.3125,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":15.5625,"pitch":-137.5625,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":-48.4375,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:32.528"} +{"sensors":[{"euler":{"heading":214.25,"pitch":125.25,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":170.8125,"pitch":-134.1875,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":88.125,"pitch":117.3125,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":13.375,"pitch":-138.0625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":161.875,"pitch":-55.1875,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:32.629"} +{"sensors":[{"euler":{"heading":209.1875,"pitch":129.5625,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":165.625,"pitch":-141.3125,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":117.5625,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":12.1875,"pitch":-137.4375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":160.3125,"pitch":-59.875,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:32.730"} +{"sensors":[{"euler":{"heading":287.0,"pitch":136.375,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":154.625,"pitch":-159.625,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":81.9375,"pitch":116.8125,"roll":80.5},"location":"Right Ankle"},{"euler":{"heading":10.75,"pitch":-137.5,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":-79.875,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:32.830"} +{"sensors":[{"euler":{"heading":275.1875,"pitch":144.0625,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":142.375,"pitch":176.25,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":116.0,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":10.5,"pitch":-138.3125,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":-67.5625,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:32.931"} +{"sensors":[{"euler":{"heading":270.625,"pitch":149.3125,"roll":53.375},"location":"Left Knee"},{"euler":{"heading":136.5,"pitch":158.0,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":118.375,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":11.1875,"pitch":-139.1875,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":-70.3125,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:33.32"} +{"sensors":[{"euler":{"heading":267.875,"pitch":154.5625,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":134.875,"pitch":149.25,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":174.375,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":12.1875,"pitch":-139.375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":166.3125,"pitch":-71.625,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:33.133"} +{"sensors":[{"euler":{"heading":266.625,"pitch":157.25,"roll":56.5},"location":"Left Knee"},{"euler":{"heading":134.1875,"pitch":143.5625,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":175.4375,"roll":84.0625},"location":"Right Ankle"},{"euler":{"heading":12.25,"pitch":-141.0,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":-72.375,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:33.233"} +{"sensors":[{"euler":{"heading":267.3125,"pitch":157.5625,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":134.25,"pitch":140.3125,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":78.875,"pitch":176.625,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":12.25,"pitch":-143.5,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":172.0625,"pitch":-72.3125,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:33.334"} +{"sensors":[{"euler":{"heading":272.1875,"pitch":155.1875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":137.125,"pitch":141.4375,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":78.3125,"pitch":178.6875,"roll":84.75},"location":"Right Ankle"},{"euler":{"heading":12.125,"pitch":-145.625,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":-72.0,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:33.435"} +{"sensors":[{"euler":{"heading":276.375,"pitch":151.3125,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":140.5625,"pitch":141.875,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-178.4375,"roll":83.5625},"location":"Right Ankle"},{"euler":{"heading":12.0,"pitch":-147.875,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":181.4375,"pitch":-74.5,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:33.535"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":147.6875,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":143.25,"pitch":142.0,"roll":76.6875},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-148.125,"roll":81.4375},"location":"Right Ankle"},{"euler":{"heading":11.9375,"pitch":-148.4375,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":186.1875,"pitch":-73.1875,"roll":61.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:33.636"} +{"sensors":[{"euler":{"heading":282.8125,"pitch":144.4375,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":146.1875,"pitch":140.625,"roll":78.875},"location":"Left Ankle"},{"euler":{"heading":72.0625,"pitch":-132.25,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":13.375,"pitch":-146.625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-72.3125,"roll":58.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:33.736"} +{"sensors":[{"euler":{"heading":285.5625,"pitch":140.375,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":148.5625,"pitch":141.6875,"roll":80.5},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-119.6875,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":16.625,"pitch":-142.8125,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":192.0,"pitch":-71.3125,"roll":55.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:33.837"} +{"sensors":[{"euler":{"heading":287.9375,"pitch":137.375,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":150.3125,"pitch":142.6875,"roll":81.8125},"location":"Left Ankle"},{"euler":{"heading":54.5625,"pitch":-106.6875,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":23.875,"pitch":-135.5,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":194.8125,"pitch":-69.625,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:33.938"} +{"sensors":[{"euler":{"heading":289.125,"pitch":135.0,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":151.375,"pitch":146.9375,"roll":82.625},"location":"Left Ankle"},{"euler":{"heading":54.125,"pitch":-107.6875,"roll":64.5},"location":"Right Ankle"},{"euler":{"heading":28.1875,"pitch":-130.3125,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":196.25,"pitch":-67.9375,"roll":52.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:34.39"} +{"sensors":[{"euler":{"heading":288.6875,"pitch":133.6875,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":151.5625,"pitch":154.25,"roll":82.875},"location":"Left Ankle"},{"euler":{"heading":62.25,"pitch":-124.9375,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":31.875,"pitch":-127.4375,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-61.4375,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:34.140"} +{"sensors":[{"euler":{"heading":289.125,"pitch":132.5625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":151.6875,"pitch":159.75,"roll":83.0625},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-176.75,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":33.75,"pitch":-125.875,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":178.625,"pitch":-49.5,"roll":68.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:34.241"} +{"sensors":[{"euler":{"heading":290.8125,"pitch":131.25,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":152.875,"pitch":178.5625,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":91.6875,"pitch":139.1875,"roll":72.4375},"location":"Right Ankle"},{"euler":{"heading":32.75,"pitch":-126.25,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":169.3125,"pitch":-28.625,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:34.342"} +{"sensors":[{"euler":{"heading":292.375,"pitch":130.0,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":154.3125,"pitch":178.1875,"roll":83.0625},"location":"Left Ankle"},{"euler":{"heading":101.3125,"pitch":125.0625,"roll":67.5},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-127.8125,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":-8.0,"roll":77.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:34.443"} +{"sensors":[{"euler":{"heading":293.875,"pitch":128.9375,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":155.5625,"pitch":-171.0625,"roll":82.3125},"location":"Left Ankle"},{"euler":{"heading":102.1875,"pitch":123.875,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":28.4375,"pitch":-128.75,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":-4.5625,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:34.543"} +{"sensors":[{"euler":{"heading":296.125,"pitch":127.625,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":157.125,"pitch":-161.125,"roll":80.4375},"location":"Left Ankle"},{"euler":{"heading":97.375,"pitch":126.25,"roll":69.1875},"location":"Right Ankle"},{"euler":{"heading":22.9375,"pitch":-131.8125,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":159.25,"pitch":-11.0,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:34.645"} +{"sensors":[{"euler":{"heading":300.125,"pitch":125.8125,"roll":48.6875},"location":"Left Knee"},{"euler":{"heading":160.25,"pitch":-149.9375,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":127.0,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-132.875,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":159.0,"pitch":-20.375,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:34.746"} +{"sensors":[{"euler":{"heading":212.4375,"pitch":125.0625,"roll":44.5625},"location":"Left Knee"},{"euler":{"heading":162.0625,"pitch":-144.625,"roll":72.375},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":125.8125,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":18.5,"pitch":-135.1875,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":159.125,"pitch":-30.6875,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:34.847"} +{"sensors":[{"euler":{"heading":214.875,"pitch":124.625,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":166.4375,"pitch":-138.625,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":124.125,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":16.625,"pitch":-136.0,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":159.5625,"pitch":-42.0625,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:34.948"} +{"sensors":[{"euler":{"heading":218.5625,"pitch":124.25,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":175.9375,"pitch":-129.8125,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":120.9375,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":14.375,"pitch":-137.0,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":144.0,"pitch":-50.25,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:35.49"} +{"sensors":[{"euler":{"heading":217.5625,"pitch":126.625,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":173.5,"pitch":-133.125,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":118.5625,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":12.3125,"pitch":-136.625,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":158.5625,"pitch":-56.1875,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:35.150"} +{"sensors":[{"euler":{"heading":205.6875,"pitch":132.75,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":161.375,"pitch":-149.9375,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":119.375,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":10.8125,"pitch":-135.875,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":158.0,"pitch":-60.3125,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:35.250"} +{"sensors":[{"euler":{"heading":281.0625,"pitch":141.0,"roll":48.25},"location":"Left Knee"},{"euler":{"heading":147.5625,"pitch":-175.125,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":118.9375,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":10.25,"pitch":-136.875,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":159.1875,"pitch":-64.375,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:35.351"} +{"sensors":[{"euler":{"heading":270.8125,"pitch":149.125,"roll":52.375},"location":"Left Knee"},{"euler":{"heading":135.875,"pitch":158.8125,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":119.625,"roll":82.8125},"location":"Right Ankle"},{"euler":{"heading":10.3125,"pitch":-136.75,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":-67.4375,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:35.452"} +{"sensors":[{"euler":{"heading":264.6875,"pitch":154.75,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":127.75,"pitch":140.0,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":174.9375,"roll":83.9375},"location":"Right Ankle"},{"euler":{"heading":10.4375,"pitch":-137.3125,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":-69.8125,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:35.553"} +{"sensors":[{"euler":{"heading":260.875,"pitch":159.75,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":123.4375,"pitch":130.125,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":75.8125,"pitch":176.0625,"roll":84.9375},"location":"Right Ankle"},{"euler":{"heading":11.1875,"pitch":-138.875,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":-74.1875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:35.653"} +{"sensors":[{"euler":{"heading":265.875,"pitch":159.625,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":129.25,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":177.5625,"roll":85.875},"location":"Right Ankle"},{"euler":{"heading":12.125,"pitch":-140.5,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":-74.75,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:35.754"} +{"sensors":[{"euler":{"heading":269.75,"pitch":157.4375,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":130.25,"pitch":131.125,"roll":68.375},"location":"Left Ankle"},{"euler":{"heading":74.9375,"pitch":-179.875,"roll":85.8125},"location":"Right Ankle"},{"euler":{"heading":13.375,"pitch":-141.5,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":173.5,"pitch":-74.5,"roll":68.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:35.854"} +{"sensors":[{"euler":{"heading":273.5,"pitch":153.0,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":133.125,"pitch":131.625,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":74.1875,"pitch":-177.125,"roll":84.0},"location":"Right Ankle"},{"euler":{"heading":13.5,"pitch":-143.5625,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":178.25,"pitch":-75.8125,"roll":65.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:35.955"} +{"sensors":[{"euler":{"heading":277.125,"pitch":149.25,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":135.5625,"pitch":130.8125,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":73.8125,"pitch":-135.625,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":13.5625,"pitch":-144.0625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":183.4375,"pitch":-75.6875,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:36.56"} +{"sensors":[{"euler":{"heading":279.6875,"pitch":145.5625,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":138.625,"pitch":130.875,"roll":75.5},"location":"Left Ankle"},{"euler":{"heading":69.875,"pitch":-123.0625,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":16.375,"pitch":-142.375,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":188.9375,"pitch":-73.6875,"roll":58.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:36.157"} +{"sensors":[{"euler":{"heading":282.6875,"pitch":141.8125,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":141.875,"pitch":129.4375,"roll":78.0},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-106.3125,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":24.75,"pitch":-135.875,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":195.75,"pitch":-73.125,"roll":56.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:36.258"} +{"sensors":[{"euler":{"heading":286.0625,"pitch":139.0,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":127.4375,"roll":80.3125},"location":"Left Ankle"},{"euler":{"heading":57.875,"pitch":-104.4375,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":31.625,"pitch":-127.3125,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":198.5625,"pitch":-73.1875,"roll":53.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:36.358"} +{"sensors":[{"euler":{"heading":288.1875,"pitch":137.0625,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":147.625,"pitch":128.625,"roll":81.3125},"location":"Left Ankle"},{"euler":{"heading":79.5,"pitch":-112.4375,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":36.875,"pitch":-122.875,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":193.375,"pitch":-68.0625,"roll":58.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:36.459"} +{"sensors":[{"euler":{"heading":289.1875,"pitch":135.6875,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":148.5,"pitch":131.9375,"roll":81.625},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":-154.9375,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":39.9375,"pitch":-121.1875,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":184.125,"pitch":-57.9375,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:36.560"} +{"sensors":[{"euler":{"heading":290.9375,"pitch":134.0625,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":149.75,"pitch":138.3125,"roll":82.125},"location":"Left Ankle"},{"euler":{"heading":111.25,"pitch":140.25,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":40.4375,"pitch":-121.6875,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":176.9375,"pitch":-39.8125,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:36.660"} +{"sensors":[{"euler":{"heading":293.3125,"pitch":132.125,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":150.875,"pitch":145.625,"roll":82.5},"location":"Left Ankle"},{"euler":{"heading":101.875,"pitch":123.5,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":37.0625,"pitch":-123.5625,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":-18.125,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:36.761"} +{"sensors":[{"euler":{"heading":293.875,"pitch":131.5,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":151.1875,"pitch":153.5,"roll":82.4375},"location":"Left Ankle"},{"euler":{"heading":99.9375,"pitch":122.875,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":32.1875,"pitch":-126.625,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":-11.3125,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:36.862"} +{"sensors":[{"euler":{"heading":295.3125,"pitch":130.1875,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":150.9375,"pitch":163.0625,"roll":81.4375},"location":"Left Ankle"},{"euler":{"heading":99.3125,"pitch":122.875,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":25.8125,"pitch":-131.8125,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":162.625,"pitch":-15.375,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:36.963"} +{"sensors":[{"euler":{"heading":298.4375,"pitch":128.3125,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":150.875,"pitch":176.625,"roll":77.9375},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":125.375,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-133.5625,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":161.625,"pitch":-23.5625,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:37.63"} +{"sensors":[{"euler":{"heading":299.0625,"pitch":127.25,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":152.375,"pitch":-169.9375,"roll":75.0},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":126.5625,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-134.875,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":161.0625,"pitch":-33.25,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:37.164"} +{"sensors":[{"euler":{"heading":299.4375,"pitch":126.9375,"roll":45.625},"location":"Left Knee"},{"euler":{"heading":157.1875,"pitch":-156.0625,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":124.625,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":18.8125,"pitch":-135.6875,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":-41.3125,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:37.266"} +{"sensors":[{"euler":{"heading":212.5625,"pitch":126.875,"roll":41.5},"location":"Left Knee"},{"euler":{"heading":164.0625,"pitch":-141.0,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":124.3125,"roll":79.0},"location":"Right Ankle"},{"euler":{"heading":17.375,"pitch":-135.0,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":159.5625,"pitch":-48.1875,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:37.367"} +{"sensors":[{"euler":{"heading":216.3125,"pitch":127.1875,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":173.375,"pitch":-131.4375,"roll":61.875},"location":"Left Ankle"},{"euler":{"heading":81.9375,"pitch":123.375,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":15.1875,"pitch":-134.625,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":158.3125,"pitch":-54.5,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:37.468"} +{"sensors":[{"euler":{"heading":220.4375,"pitch":126.875,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":184.875,"pitch":-123.9375,"roll":57.6875},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":121.3125,"roll":82.5},"location":"Right Ankle"},{"euler":{"heading":12.9375,"pitch":-135.3125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":158.4375,"pitch":-60.5,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:37.568"} +{"sensors":[{"euler":{"heading":217.6875,"pitch":128.625,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":175.1875,"pitch":-133.1875,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":78.0625,"pitch":174.375,"roll":83.5},"location":"Right Ankle"},{"euler":{"heading":12.0625,"pitch":-136.875,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":159.875,"pitch":-64.4375,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:37.670"} +{"sensors":[{"euler":{"heading":290.5625,"pitch":136.125,"roll":45.6875},"location":"Left Knee"},{"euler":{"heading":154.0625,"pitch":-161.8125,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":76.5,"pitch":175.0625,"roll":84.3125},"location":"Right Ankle"},{"euler":{"heading":11.0625,"pitch":-137.375,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":160.125,"pitch":-66.9375,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:37.771"} +{"sensors":[{"euler":{"heading":270.8125,"pitch":146.875,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":133.3125,"pitch":153.625,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":175.6875,"roll":84.9375},"location":"Right Ankle"},{"euler":{"heading":10.0,"pitch":-138.8125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":161.0625,"pitch":-68.6875,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:37.872"} +{"sensors":[{"euler":{"heading":259.8125,"pitch":157.75,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":122.125,"pitch":127.5625,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":176.3125,"roll":85.4375},"location":"Right Ankle"},{"euler":{"heading":10.375,"pitch":-140.25,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":164.0625,"pitch":-72.1875,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:37.972"} +{"sensors":[{"euler":{"heading":262.3125,"pitch":161.3125,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":127.0625,"pitch":127.5625,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":76.9375,"pitch":177.3125,"roll":85.5625},"location":"Right Ankle"},{"euler":{"heading":11.625,"pitch":-141.3125,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":168.125,"pitch":-72.625,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:38.73"} +{"sensors":[{"euler":{"heading":269.25,"pitch":157.6875,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":131.4375,"pitch":129.75,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":179.25,"roll":85.1875},"location":"Right Ankle"},{"euler":{"heading":11.9375,"pitch":-143.25,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":173.4375,"pitch":-73.625,"roll":68.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:38.174"} +{"sensors":[{"euler":{"heading":274.0,"pitch":153.625,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":132.0,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":-177.625,"roll":83.5625},"location":"Right Ankle"},{"euler":{"heading":12.0625,"pitch":-144.375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":178.5,"pitch":-75.125,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:38.275"} +{"sensors":[{"euler":{"heading":277.9375,"pitch":149.875,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":139.6875,"pitch":132.1875,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-139.875,"roll":81.0},"location":"Right Ankle"},{"euler":{"heading":13.875,"pitch":-144.4375,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":184.0625,"pitch":-74.5625,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:38.375"} +{"sensors":[{"euler":{"heading":280.875,"pitch":146.8125,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":141.375,"pitch":130.375,"roll":75.3125},"location":"Left Ankle"},{"euler":{"heading":70.0625,"pitch":-127.125,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":15.5625,"pitch":-143.25,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":186.8125,"pitch":-73.375,"roll":60.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:38.476"} +{"sensors":[{"euler":{"heading":283.4375,"pitch":143.6875,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":144.8125,"pitch":129.375,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":65.5,"pitch":-116.625,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-139.875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":191.0625,"pitch":-72.8125,"roll":57.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:38.577"} +{"sensors":[{"euler":{"heading":286.0,"pitch":141.0,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":148.9375,"pitch":127.0,"roll":79.375},"location":"Left Ankle"},{"euler":{"heading":57.8125,"pitch":-106.125,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":25.5,"pitch":-132.8125,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":194.6875,"pitch":-70.875,"roll":54.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:38.677"} +{"sensors":[{"euler":{"heading":289.0,"pitch":138.1875,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":152.125,"pitch":128.25,"roll":80.8125},"location":"Left Ankle"},{"euler":{"heading":46.25,"pitch":-100.3125,"roll":59.125},"location":"Right Ankle"},{"euler":{"heading":30.625,"pitch":-126.9375,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":195.25,"pitch":-70.9375,"roll":51.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:38.778"} +{"sensors":[{"euler":{"heading":290.75,"pitch":135.9375,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":153.5,"pitch":132.5,"roll":81.625},"location":"Left Ankle"},{"euler":{"heading":51.9375,"pitch":-109.3125,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-124.5,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":192.3125,"pitch":-66.75,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:38.878"} +{"sensors":[{"euler":{"heading":292.1875,"pitch":134.1875,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":154.625,"pitch":138.125,"roll":82.25},"location":"Left Ankle"},{"euler":{"heading":71.5,"pitch":-143.5,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":37.125,"pitch":-123.3125,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":182.5625,"pitch":-55.0,"roll":66.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:38.979"} +{"sensors":[{"euler":{"heading":292.875,"pitch":133.5,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":155.8125,"pitch":145.8125,"roll":82.8125},"location":"Left Ankle"},{"euler":{"heading":91.9375,"pitch":141.6875,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":36.875,"pitch":-124.4375,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":171.375,"pitch":-31.125,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:39.80"} +{"sensors":[{"euler":{"heading":294.9375,"pitch":131.5625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":157.25,"pitch":160.0,"roll":82.9375},"location":"Left Ankle"},{"euler":{"heading":101.8125,"pitch":123.75,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":32.5,"pitch":-127.4375,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":-9.8125,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:39.181"} +{"sensors":[{"euler":{"heading":296.5,"pitch":130.5,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":158.125,"pitch":173.9375,"roll":81.75},"location":"Left Ankle"},{"euler":{"heading":98.875,"pitch":123.9375,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":26.875,"pitch":-131.375,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":162.0,"pitch":-14.9375,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:39.282"} +{"sensors":[{"euler":{"heading":299.8125,"pitch":128.5625,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":158.4375,"pitch":-174.0,"roll":79.375},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":123.25,"roll":72.4375},"location":"Right Ankle"},{"euler":{"heading":24.1875,"pitch":-134.0625,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":-23.0625,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:39.382"} +{"sensors":[{"euler":{"heading":300.1875,"pitch":127.5625,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":158.5,"pitch":-163.5,"roll":75.875},"location":"Left Ankle"},{"euler":{"heading":93.125,"pitch":121.375,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-136.25,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":-33.6875,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:39.483"} +{"sensors":[{"euler":{"heading":300.875,"pitch":127.125,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":160.6875,"pitch":-155.25,"roll":72.0},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":119.0625,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":16.375,"pitch":-137.4375,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":161.625,"pitch":-42.5625,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:39.584"} +{"sensors":[{"euler":{"heading":212.0,"pitch":127.125,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":166.4375,"pitch":-147.875,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":117.625,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-137.8125,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":-51.0,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:39.685"} +{"sensors":[{"euler":{"heading":209.9375,"pitch":128.4375,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":164.125,"pitch":-148.375,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":113.0625,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":11.5625,"pitch":-138.625,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":161.375,"pitch":-56.1875,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:39.786"} +{"sensors":[{"euler":{"heading":201.625,"pitch":132.5,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":154.875,"pitch":-161.8125,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":111.75,"roll":81.25},"location":"Right Ankle"},{"euler":{"heading":10.125,"pitch":-137.9375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":-59.75,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:39.888"} +{"sensors":[{"euler":{"heading":280.4375,"pitch":139.125,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":144.875,"pitch":176.25,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":82.9375,"pitch":112.375,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":9.9375,"pitch":-138.6875,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":-63.5,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:39.989"} +{"sensors":[{"euler":{"heading":270.5625,"pitch":146.6875,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":136.8125,"pitch":157.3125,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":112.6875,"roll":82.4375},"location":"Right Ankle"},{"euler":{"heading":9.125,"pitch":-139.3125,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":164.125,"pitch":-69.25,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:40.89"} +{"sensors":[{"euler":{"heading":262.375,"pitch":154.8125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":129.9375,"pitch":141.9375,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":81.9375,"pitch":173.8125,"roll":83.1875},"location":"Right Ankle"},{"euler":{"heading":9.625,"pitch":-139.5,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":-71.1875,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:40.190"} +{"sensors":[{"euler":{"heading":256.0625,"pitch":163.375,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":123.8125,"pitch":128.375,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":174.75,"roll":84.125},"location":"Right Ankle"},{"euler":{"heading":9.9375,"pitch":-140.125,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":-73.5625,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:40.291"} +{"sensors":[{"euler":{"heading":250.375,"pitch":168.25,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":121.3125,"pitch":123.5625,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":80.5625,"pitch":175.9375,"roll":85.0},"location":"Right Ankle"},{"euler":{"heading":10.375,"pitch":-140.75,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":170.125,"pitch":-74.9375,"roll":72.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:40.392"} +{"sensors":[{"euler":{"heading":254.0625,"pitch":165.6875,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":124.0625,"pitch":124.0625,"roll":68.0},"location":"Left Ankle"},{"euler":{"heading":79.5,"pitch":177.5,"roll":86.0625},"location":"Right Ankle"},{"euler":{"heading":11.0,"pitch":-141.8125,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":173.125,"pitch":-77.4375,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:40.493"} +{"sensors":[{"euler":{"heading":261.25,"pitch":163.1875,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":128.6875,"pitch":124.6875,"roll":70.0625},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":-179.6875,"roll":86.125},"location":"Right Ankle"},{"euler":{"heading":11.0625,"pitch":-142.0,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":-77.8125,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:40.594"} +{"sensors":[{"euler":{"heading":264.1875,"pitch":159.25,"roll":62.6875},"location":"Left Knee"},{"euler":{"heading":132.0,"pitch":124.625,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":75.8125,"pitch":-175.625,"roll":83.3125},"location":"Right Ankle"},{"euler":{"heading":11.9375,"pitch":-141.9375,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":182.875,"pitch":-77.1875,"roll":64.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:40.695"} +{"sensors":[{"euler":{"heading":265.9375,"pitch":155.8125,"roll":63.1875},"location":"Left Knee"},{"euler":{"heading":132.875,"pitch":123.5,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":-121.4375,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":-140.3125,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":188.1875,"pitch":-76.6875,"roll":60.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:40.796"} +{"sensors":[{"euler":{"heading":268.125,"pitch":152.9375,"roll":63.375},"location":"Left Knee"},{"euler":{"heading":134.9375,"pitch":122.6875,"roll":75.1875},"location":"Left Ankle"},{"euler":{"heading":65.25,"pitch":-103.5,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-134.375,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":193.0625,"pitch":-75.9375,"roll":58.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:40.897"} +{"sensors":[{"euler":{"heading":270.0,"pitch":150.125,"roll":63.5625},"location":"Left Knee"},{"euler":{"heading":137.3125,"pitch":120.9375,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":66.0,"pitch":-107.0625,"roll":73.125},"location":"Right Ankle"},{"euler":{"heading":27.0,"pitch":-128.6875,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":194.0,"pitch":-73.875,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:40.998"} +{"sensors":[{"euler":{"heading":271.8125,"pitch":147.9375,"roll":63.3125},"location":"Left Knee"},{"euler":{"heading":138.6875,"pitch":119.5,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":72.0625,"pitch":-120.25,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":31.9375,"pitch":-124.75,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":188.6875,"pitch":-67.75,"roll":63.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:41.99"} +{"sensors":[{"euler":{"heading":273.4375,"pitch":145.875,"roll":63.0625},"location":"Left Knee"},{"euler":{"heading":139.875,"pitch":118.9375,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":80.5,"pitch":-163.375,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":36.1875,"pitch":-122.5625,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":182.3125,"pitch":-59.0625,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:41.200"} +{"sensors":[{"euler":{"heading":275.0625,"pitch":143.8125,"roll":62.875},"location":"Left Knee"},{"euler":{"heading":140.9375,"pitch":119.5,"roll":80.1875},"location":"Left Ankle"},{"euler":{"heading":87.625,"pitch":152.625,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":38.25,"pitch":-121.625,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-45.3125,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:41.301"} +{"sensors":[{"euler":{"heading":276.6875,"pitch":141.6875,"roll":62.125},"location":"Left Knee"},{"euler":{"heading":141.75,"pitch":121.875,"roll":80.8125},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":133.125,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":36.9375,"pitch":-122.1875,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":-28.0,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:41.402"} +{"sensors":[{"euler":{"heading":277.875,"pitch":140.0625,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":142.5625,"pitch":126.9375,"roll":81.4375},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":128.625,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":32.9375,"pitch":-124.1875,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":165.125,"pitch":-13.8125,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:41.503"} +{"sensors":[{"euler":{"heading":279.375,"pitch":138.4375,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":143.8125,"pitch":136.5,"roll":82.0},"location":"Left Ankle"},{"euler":{"heading":93.125,"pitch":127.25,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":27.625,"pitch":-126.8125,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":162.8125,"pitch":-13.0,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:41.604"} +{"sensors":[{"euler":{"heading":281.1875,"pitch":136.4375,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":143.875,"pitch":152.0625,"roll":81.25},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":128.625,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":22.5,"pitch":-129.6875,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":-19.5625,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:41.704"} +{"sensors":[{"euler":{"heading":283.5625,"pitch":134.3125,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":143.875,"pitch":166.75,"roll":78.6875},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":131.4375,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":19.75,"pitch":-133.375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":163.1875,"pitch":-27.9375,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:41.805"} +{"sensors":[{"euler":{"heading":286.125,"pitch":131.6875,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":146.0,"pitch":-178.125,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":133.0625,"roll":79.0625},"location":"Right Ankle"},{"euler":{"heading":15.375,"pitch":-135.9375,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":-36.6875,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:41.905"} +{"sensors":[{"euler":{"heading":285.75,"pitch":130.3125,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":149.0625,"pitch":-163.125,"roll":72.375},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":130.0,"roll":80.75},"location":"Right Ankle"},{"euler":{"heading":12.5,"pitch":-138.0,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":159.375,"pitch":-44.75,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:42.6"} +{"sensors":[{"euler":{"heading":201.125,"pitch":128.75,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":160.0,"pitch":-147.6875,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":126.875,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":10.625,"pitch":-139.25,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":160.25,"pitch":-52.0625,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:42.107"} +{"sensors":[{"euler":{"heading":203.375,"pitch":129.9375,"roll":43.0},"location":"Left Knee"},{"euler":{"heading":161.0,"pitch":-147.8125,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":124.5625,"roll":83.0},"location":"Right Ankle"},{"euler":{"heading":9.8125,"pitch":-139.6875,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":-58.1875,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:42.208"} +{"sensors":[{"euler":{"heading":288.0,"pitch":134.375,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":155.3125,"pitch":-160.8125,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":80.3125,"pitch":175.125,"roll":83.9375},"location":"Right Ankle"},{"euler":{"heading":9.6875,"pitch":-139.8125,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":161.875,"pitch":-62.0625,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:42.309"} +{"sensors":[{"euler":{"heading":281.8125,"pitch":140.5,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":149.3125,"pitch":-179.8125,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":175.625,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":9.1875,"pitch":-140.25,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":162.5625,"pitch":-65.0625,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:42.409"} +{"sensors":[{"euler":{"heading":275.25,"pitch":146.8125,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":142.75,"pitch":166.75,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":176.0625,"roll":85.1875},"location":"Right Ankle"},{"euler":{"heading":8.75,"pitch":-141.0,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":164.8125,"pitch":-70.25,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:42.510"} +{"sensors":[{"euler":{"heading":268.625,"pitch":152.8125,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":136.0,"pitch":152.3125,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":177.125,"roll":86.0625},"location":"Right Ankle"},{"euler":{"heading":8.625,"pitch":-141.75,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":166.375,"pitch":-72.5,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:42.610"} +{"sensors":[{"euler":{"heading":263.0625,"pitch":158.25,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":129.25,"pitch":140.1875,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":178.25,"roll":86.9375},"location":"Right Ankle"},{"euler":{"heading":8.0625,"pitch":-142.875,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":167.3125,"pitch":-74.25,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:42.711"} +{"sensors":[{"euler":{"heading":257.5625,"pitch":163.6875,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":124.125,"pitch":131.3125,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":179.3125,"roll":87.375},"location":"Right Ankle"},{"euler":{"heading":8.0,"pitch":-143.375,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":-75.3125,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:42.812"} +{"sensors":[{"euler":{"heading":257.6875,"pitch":164.1875,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":125.5625,"pitch":130.25,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":72.125,"pitch":-178.5625,"roll":86.9375},"location":"Right Ankle"},{"euler":{"heading":8.0625,"pitch":-144.6875,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":171.5,"pitch":-75.75,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:42.913"} +{"sensors":[{"euler":{"heading":263.4375,"pitch":161.1875,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":131.25,"pitch":134.0625,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-175.9375,"roll":84.8125},"location":"Right Ankle"},{"euler":{"heading":8.0625,"pitch":-146.4375,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-76.1875,"roll":66.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:43.14"} +{"sensors":[{"euler":{"heading":267.625,"pitch":156.5,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":134.75,"pitch":135.75,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":-120.0,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":8.25,"pitch":-147.1875,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":180.1875,"pitch":-77.5,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:43.115"} +{"sensors":[{"euler":{"heading":270.625,"pitch":152.9375,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":137.75,"pitch":133.625,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":64.3125,"pitch":-112.75,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":9.3125,"pitch":-145.75,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":185.5,"pitch":-76.3125,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:43.215"} +{"sensors":[{"euler":{"heading":271.9375,"pitch":150.3125,"roll":60.8125},"location":"Left Knee"},{"euler":{"heading":139.6875,"pitch":130.125,"roll":75.6875},"location":"Left Ankle"},{"euler":{"heading":57.625,"pitch":-106.0625,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":13.6875,"pitch":-141.0625,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":191.1875,"pitch":-75.4375,"roll":55.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:43.316"} +{"sensors":[{"euler":{"heading":273.875,"pitch":147.8125,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":141.8125,"pitch":128.4375,"roll":77.4375},"location":"Left Ankle"},{"euler":{"heading":50.5625,"pitch":-98.375,"roll":62.9375},"location":"Right Ankle"},{"euler":{"heading":20.6875,"pitch":-132.75,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":193.8125,"pitch":-74.1875,"roll":53.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:43.417"} +{"sensors":[{"euler":{"heading":275.75,"pitch":145.5625,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":143.4375,"pitch":127.6875,"roll":78.4375},"location":"Left Ankle"},{"euler":{"heading":53.625,"pitch":-100.5625,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":27.5625,"pitch":-126.8125,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":193.9375,"pitch":-71.25,"roll":55.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:43.518"} +{"sensors":[{"euler":{"heading":277.5,"pitch":143.6875,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":144.5,"pitch":129.625,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":62.5,"pitch":-111.375,"roll":72.125},"location":"Right Ankle"},{"euler":{"heading":33.0,"pitch":-123.9375,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":187.875,"pitch":-65.75,"roll":62.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:43.619"} +{"sensors":[{"euler":{"heading":278.75,"pitch":142.4375,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":132.5,"roll":79.9375},"location":"Left Ankle"},{"euler":{"heading":73.375,"pitch":-149.1875,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":36.3125,"pitch":-122.375,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":179.75,"pitch":-55.375,"roll":69.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:43.720"} +{"sensors":[{"euler":{"heading":279.9375,"pitch":141.25,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":147.375,"pitch":137.5,"roll":80.5625},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":157.875,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":36.375,"pitch":-122.375,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":171.75,"pitch":-39.5625,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:43.821"} +{"sensors":[{"euler":{"heading":281.125,"pitch":139.8125,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":148.5625,"pitch":143.5625,"roll":81.0},"location":"Left Ankle"},{"euler":{"heading":91.1875,"pitch":133.9375,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":33.6875,"pitch":-124.4375,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":-21.125,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:43.921"} +{"sensors":[{"euler":{"heading":283.125,"pitch":138.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":150.0,"pitch":152.4375,"roll":81.25},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":127.5,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":30.5625,"pitch":-126.125,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":163.25,"pitch":-14.0625,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:44.22"} +{"sensors":[{"euler":{"heading":286.0625,"pitch":135.9375,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":150.9375,"pitch":161.5625,"roll":81.0625},"location":"Left Ankle"},{"euler":{"heading":93.875,"pitch":126.5625,"roll":72.125},"location":"Right Ankle"},{"euler":{"heading":25.8125,"pitch":-128.625,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":162.0,"pitch":-17.125,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:44.122"} +{"sensors":[{"euler":{"heading":288.5625,"pitch":134.125,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":150.9375,"pitch":174.25,"roll":78.875},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":127.875,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":22.125,"pitch":-132.0,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":160.375,"pitch":-21.875,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:44.223"} +{"sensors":[{"euler":{"heading":292.0625,"pitch":131.5,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":151.4375,"pitch":-173.3125,"roll":75.1875},"location":"Left Ankle"},{"euler":{"heading":86.6875,"pitch":129.0,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-133.8125,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":159.0625,"pitch":-30.3125,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:44.324"} +{"sensors":[{"euler":{"heading":292.8125,"pitch":129.625,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":155.375,"pitch":-159.625,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":127.3125,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":15.375,"pitch":-136.125,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":158.25,"pitch":-38.0,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:44.425"} +{"sensors":[{"euler":{"heading":206.875,"pitch":128.1875,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":166.25,"pitch":-143.5,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":121.75,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":12.625,"pitch":-138.125,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":158.625,"pitch":-44.9375,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:44.525"} +{"sensors":[{"euler":{"heading":212.3125,"pitch":127.9375,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":171.9375,"pitch":-138.3125,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":119.625,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":11.5,"pitch":-139.0,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":-52.8125,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:44.626"} +{"sensors":[{"euler":{"heading":208.8125,"pitch":131.0,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":168.0,"pitch":-145.875,"roll":65.375},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":120.9375,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":11.25,"pitch":-138.875,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":160.25,"pitch":-56.625,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:44.727"} +{"sensors":[{"euler":{"heading":289.8125,"pitch":136.625,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":160.0,"pitch":-160.5625,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":123.1875,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":10.75,"pitch":-139.125,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":160.4375,"pitch":-59.5625,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:44.828"} +{"sensors":[{"euler":{"heading":279.5,"pitch":143.5,"roll":50.3125},"location":"Left Knee"},{"euler":{"heading":149.4375,"pitch":178.5,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":124.1875,"roll":82.875},"location":"Right Ankle"},{"euler":{"heading":9.75,"pitch":-139.6875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":160.6875,"pitch":-62.75,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:44.929"} +{"sensors":[{"euler":{"heading":266.8125,"pitch":152.375,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":135.5625,"pitch":150.625,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":175.1875,"roll":84.125},"location":"Right Ankle"},{"euler":{"heading":8.875,"pitch":-140.625,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":-66.0,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:45.30"} +{"sensors":[{"euler":{"heading":256.4375,"pitch":163.1875,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":124.5625,"pitch":130.875,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":74.625,"pitch":176.375,"roll":85.25},"location":"Right Ankle"},{"euler":{"heading":8.0625,"pitch":-141.6875,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":162.8125,"pitch":-69.0625,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:45.131"} +{"sensors":[{"euler":{"heading":252.9375,"pitch":168.0,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":121.875,"pitch":124.625,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":73.375,"pitch":177.5,"roll":86.0625},"location":"Right Ankle"},{"euler":{"heading":7.0625,"pitch":-143.4375,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":165.6875,"pitch":-73.25,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:45.231"} +{"sensors":[{"euler":{"heading":259.375,"pitch":164.8125,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":128.5625,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":73.125,"pitch":178.875,"roll":86.1875},"location":"Right Ankle"},{"euler":{"heading":7.0,"pitch":-145.5,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":168.875,"pitch":-73.75,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:45.332"} +{"sensors":[{"euler":{"heading":264.4375,"pitch":162.0,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":133.75,"pitch":131.9375,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":-179.25,"roll":84.75},"location":"Right Ankle"},{"euler":{"heading":6.5625,"pitch":-147.1875,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":173.3125,"pitch":-74.0,"roll":67.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:45.433"} +{"sensors":[{"euler":{"heading":269.25,"pitch":157.4375,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":138.5625,"pitch":133.75,"roll":70.6875},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":-143.0625,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":6.25,"pitch":-147.375,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":180.0625,"pitch":-76.6875,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:45.534"} +{"sensors":[{"euler":{"heading":271.875,"pitch":154.4375,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":140.375,"pitch":131.75,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":68.875,"pitch":-124.8125,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":10.5625,"pitch":-143.6875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":187.0,"pitch":-76.125,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:45.635"} +{"sensors":[{"euler":{"heading":272.125,"pitch":152.4375,"roll":61.5625},"location":"Left Knee"},{"euler":{"heading":141.8125,"pitch":126.75,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":61.25,"pitch":-113.8125,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":17.3125,"pitch":-136.8125,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":191.0625,"pitch":-73.8125,"roll":56.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:45.737"} +{"sensors":[{"euler":{"heading":273.1875,"pitch":150.4375,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":142.8125,"pitch":123.4375,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":58.375,"pitch":-107.625,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":23.0625,"pitch":-128.8125,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":192.4375,"pitch":-71.8125,"roll":55.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:45.837"} +{"sensors":[{"euler":{"heading":274.75,"pitch":148.625,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":144.3125,"pitch":122.1875,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-113.5625,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":28.625,"pitch":-123.875,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":189.625,"pitch":-69.0,"roll":58.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:45.937"} +{"sensors":[{"euler":{"heading":276.625,"pitch":146.9375,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":122.4375,"roll":77.875},"location":"Left Ankle"},{"euler":{"heading":70.125,"pitch":-131.25,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":34.1875,"pitch":-121.0625,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":185.125,"pitch":-63.8125,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:46.38"} +{"sensors":[{"euler":{"heading":277.75,"pitch":145.375,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":147.125,"pitch":124.1875,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":177.5625,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-120.0625,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":179.4375,"pitch":-55.4375,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:46.139"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":143.75,"roll":60.8125},"location":"Left Knee"},{"euler":{"heading":148.75,"pitch":128.4375,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":88.0,"pitch":142.3125,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":37.3125,"pitch":-120.875,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":174.6875,"pitch":-47.75,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:46.239"} +{"sensors":[{"euler":{"heading":281.75,"pitch":141.6875,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":149.6875,"pitch":134.8125,"roll":79.75},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":125.75,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":33.4375,"pitch":-123.1875,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":-36.1875,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:46.340"} +{"sensors":[{"euler":{"heading":284.5625,"pitch":139.625,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":150.4375,"pitch":142.9375,"roll":80.125},"location":"Left Ankle"},{"euler":{"heading":96.6875,"pitch":121.875,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":27.5,"pitch":-126.6875,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":-32.875,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:46.441"} +{"sensors":[{"euler":{"heading":287.375,"pitch":137.125,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":150.375,"pitch":155.1875,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":96.3125,"pitch":121.0625,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-130.5,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":166.5625,"pitch":-39.5,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:46.542"} +{"sensors":[{"euler":{"heading":291.3125,"pitch":133.9375,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":150.6875,"pitch":168.375,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":121.1875,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":19.9375,"pitch":-133.4375,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":163.9375,"pitch":-42.625,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:46.643"} +{"sensors":[{"euler":{"heading":291.8125,"pitch":131.9375,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":150.875,"pitch":-179.625,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":120.625,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":16.3125,"pitch":-135.8125,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":163.0625,"pitch":-49.8125,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:46.744"} +{"sensors":[{"euler":{"heading":293.3125,"pitch":130.125,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":154.9375,"pitch":-166.1875,"roll":73.0},"location":"Left Ankle"},{"euler":{"heading":86.875,"pitch":120.5625,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":14.0,"pitch":-136.5625,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":163.1875,"pitch":-55.5625,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:46.845"} +{"sensors":[{"euler":{"heading":297.1875,"pitch":128.8125,"roll":45.25},"location":"Left Knee"},{"euler":{"heading":160.8125,"pitch":-153.5625,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":122.0,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":13.375,"pitch":-136.875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":163.625,"pitch":-60.625,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:46.946"} +{"sensors":[{"euler":{"heading":210.4375,"pitch":127.75,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":165.9375,"pitch":-144.3125,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":123.8125,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":12.3125,"pitch":-137.125,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":162.9375,"pitch":-64.3125,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:47.47"} +{"sensors":[{"euler":{"heading":212.1875,"pitch":126.875,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":173.1875,"pitch":-134.9375,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":125.3125,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":11.5,"pitch":-137.875,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":163.25,"pitch":-67.4375,"roll":75.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:47.148"} +{"sensors":[{"euler":{"heading":218.1875,"pitch":124.8125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":181.3125,"pitch":-129.0625,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":174.5625,"roll":83.3125},"location":"Right Ankle"},{"euler":{"heading":11.0,"pitch":-139.875,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":164.3125,"pitch":-69.125,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:47.249"} +{"sensors":[{"euler":{"heading":213.0625,"pitch":128.125,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":171.1875,"pitch":-140.8125,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":76.5,"pitch":175.1875,"roll":83.75},"location":"Right Ankle"},{"euler":{"heading":10.5625,"pitch":-141.5625,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":165.4375,"pitch":-70.375,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:47.350"} +{"sensors":[{"euler":{"heading":285.75,"pitch":136.625,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":151.1875,"pitch":-171.375,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":175.8125,"roll":84.3125},"location":"Right Ankle"},{"euler":{"heading":9.4375,"pitch":-143.0625,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":165.8125,"pitch":-71.4375,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:47.451"} +{"sensors":[{"euler":{"heading":269.8125,"pitch":148.75,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":135.25,"pitch":149.75,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":73.6875,"pitch":176.75,"roll":84.875},"location":"Right Ankle"},{"euler":{"heading":7.875,"pitch":-144.6875,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":166.375,"pitch":-72.9375,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:47.552"} +{"sensors":[{"euler":{"heading":259.1875,"pitch":160.9375,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":126.8125,"pitch":130.1875,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":72.3125,"pitch":178.0,"roll":85.625},"location":"Right Ankle"},{"euler":{"heading":6.875,"pitch":-147.0625,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":-74.4375,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:47.653"} +{"sensors":[{"euler":{"heading":256.75,"pitch":165.375,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":126.8125,"pitch":127.1875,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":71.5625,"pitch":179.5,"roll":85.75},"location":"Right Ankle"},{"euler":{"heading":6.875,"pitch":-148.8125,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":170.4375,"pitch":-75.1875,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:47.754"} +{"sensors":[{"euler":{"heading":264.9375,"pitch":162.375,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":133.0,"pitch":131.6875,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-178.375,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":7.25,"pitch":-151.125,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":174.9375,"pitch":-75.125,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:47.854"} +{"sensors":[{"euler":{"heading":269.5625,"pitch":158.625,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":137.875,"pitch":134.625,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":69.75,"pitch":-142.625,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":8.1875,"pitch":-151.875,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":180.8125,"pitch":-75.875,"roll":60.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:47.956"} +{"sensors":[{"euler":{"heading":271.75,"pitch":155.3125,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":139.25,"pitch":133.125,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":67.0,"pitch":-129.375,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":8.9375,"pitch":-151.0,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":185.0625,"pitch":-75.125,"roll":58.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:48.57"} +{"sensors":[{"euler":{"heading":273.125,"pitch":152.5625,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":140.4375,"pitch":131.625,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":63.125,"pitch":-120.25,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":9.75,"pitch":-148.375,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":189.75,"pitch":-74.625,"roll":53.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:48.157"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":150.5,"pitch":154.4375,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":133.125,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":31.625,"pitch":-125.875,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":168.6875,"pitch":-27.5625,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:48.259"} +{"sensors":[{"euler":{"heading":286.375,"pitch":137.125,"roll":56.5},"location":"Left Knee"},{"euler":{"heading":150.6875,"pitch":156.75,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":96.3125,"pitch":132.375,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":30.9375,"pitch":-126.3125,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":168.375,"pitch":-26.8125,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:48.917"} +{"sensors":[{"euler":{"heading":288.4375,"pitch":134.5,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":153.0625,"pitch":168.9375,"roll":78.5},"location":"Left Ankle"},{"euler":{"heading":95.5625,"pitch":131.25,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":27.1875,"pitch":-128.5,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":167.5,"pitch":-30.5,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:49.18"} +{"sensors":[{"euler":{"heading":291.1875,"pitch":131.875,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":155.3125,"pitch":179.6875,"roll":77.625},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":135.0,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":22.125,"pitch":-131.5,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":165.4375,"pitch":-36.9375,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:49.118"} +{"sensors":[{"euler":{"heading":293.9375,"pitch":129.75,"roll":49.75},"location":"Left Knee"},{"euler":{"heading":156.3125,"pitch":-169.1875,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":136.5,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":86.9375,"pitch":136.5,"roll":78.0625},"location":"Right Hip"},{"euler":{"heading":168.625,"pitch":-74.25,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:49.219"} +{"sensors":[{"euler":{"heading":263.5,"pitch":153.8125,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":130.25,"pitch":142.75,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":175.3125,"roll":83.875},"location":"Right Ankle"},{"euler":{"heading":12.3125,"pitch":-140.25,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":168.8125,"pitch":-74.6875,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:49.875"} +{"sensors":[{"euler":{"heading":254.75,"pitch":162.9375,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":130.1875,"roll":65.375},"location":"Left Ankle"},{"euler":{"heading":81.1875,"pitch":176.4375,"roll":84.9375},"location":"Right Ankle"},{"euler":{"heading":11.375,"pitch":-141.75,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":169.9375,"pitch":-76.4375,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:49.976"} +{"sensors":[{"euler":{"heading":251.0625,"pitch":170.3125,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":121.6875,"pitch":124.75,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":80.0625,"pitch":177.6875,"roll":85.8125},"location":"Right Ankle"},{"euler":{"heading":10.6875,"pitch":-143.4375,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":172.1875,"pitch":-77.75,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:50.77"} +{"sensors":[{"euler":{"heading":253.125,"pitch":170.8125,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":124.3125,"pitch":125.75,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":178.875,"roll":85.9375},"location":"Right Ankle"},{"euler":{"heading":10.125,"pitch":-145.375,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":174.5,"pitch":-78.0,"roll":69.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:50.178"} +{"sensors":[{"euler":{"heading":260.25,"pitch":168.375,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":128.9375,"roll":64.625},"location":"Left Ankle"},{"euler":{"heading":78.3125,"pitch":-178.9375,"roll":85.625},"location":"Right Ankle"},{"euler":{"heading":10.5,"pitch":-147.3125,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":178.875,"pitch":-77.9375,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:50.279"} +{"sensors":[{"euler":{"heading":266.5,"pitch":163.9375,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":134.9375,"pitch":130.9375,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-176.0625,"roll":83.375},"location":"Right Ankle"},{"euler":{"heading":10.6875,"pitch":-149.375,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":185.25,"pitch":-78.0625,"roll":62.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:50.380"} +{"sensors":[{"euler":{"heading":270.3125,"pitch":159.875,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":130.125,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":75.125,"pitch":-132.5,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":11.375,"pitch":-149.875,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-76.0625,"roll":60.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:50.482"} +{"sensors":[{"euler":{"heading":272.125,"pitch":156.125,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":139.125,"pitch":130.0,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":70.125,"pitch":-120.875,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":12.375,"pitch":-147.0625,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":207.875,"pitch":-74.3125,"roll":57.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:50.582"} +{"sensors":[{"euler":{"heading":273.5,"pitch":152.8125,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":140.5625,"pitch":130.5,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-112.625,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-139.875,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":198.0625,"pitch":-73.3125,"roll":53.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:50.683"} +{"sensors":[{"euler":{"heading":274.8125,"pitch":150.3125,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":141.625,"pitch":129.9375,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":61.5625,"pitch":-114.3125,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":23.5625,"pitch":-132.5,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":198.875,"pitch":-70.8125,"roll":54.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:50.784"} +{"sensors":[{"euler":{"heading":276.375,"pitch":148.375,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":142.75,"pitch":131.0,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-130.25,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":27.3125,"pitch":-128.25,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":192.5,"pitch":-66.4375,"roll":60.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:50.884"} +{"sensors":[{"euler":{"heading":278.375,"pitch":146.375,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":144.375,"pitch":133.5,"roll":75.6875},"location":"Left Ankle"},{"euler":{"heading":82.1875,"pitch":-165.3125,"roll":78.9375},"location":"Right Ankle"},{"euler":{"heading":31.875,"pitch":-125.1875,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":184.3125,"pitch":-58.0625,"roll":68.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:50.985"} +{"sensors":[{"euler":{"heading":280.625,"pitch":144.0,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":136.8125,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":149.25,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-123.4375,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":176.875,"pitch":-46.5,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:51.86"} +{"sensors":[{"euler":{"heading":282.0625,"pitch":141.6875,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":146.1875,"pitch":139.3125,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":132.4375,"roll":74.3125},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-123.625,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":170.3125,"pitch":-31.625,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:51.187"} +{"sensors":[{"euler":{"heading":283.6875,"pitch":139.75,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":146.75,"pitch":144.625,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":127.5,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-125.4375,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":-19.9375,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:51.288"} +{"sensors":[{"euler":{"heading":286.4375,"pitch":137.5,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":148.125,"pitch":153.625,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":128.5,"roll":72.75},"location":"Right Ankle"},{"euler":{"heading":26.4375,"pitch":-127.8125,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":163.3125,"pitch":-25.6875,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:51.389"} +{"sensors":[{"euler":{"heading":288.9375,"pitch":135.3125,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":149.6875,"pitch":163.5625,"roll":75.625},"location":"Left Ankle"},{"euler":{"heading":94.25,"pitch":130.6875,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":23.0,"pitch":-132.5625,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":-34.1875,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:51.490"} +{"sensors":[{"euler":{"heading":290.5625,"pitch":133.125,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":151.8125,"pitch":175.4375,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":91.375,"pitch":130.25,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":18.625,"pitch":-135.75,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":163.125,"pitch":-42.5,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:51.591"} +{"sensors":[{"euler":{"heading":290.5,"pitch":131.8125,"roll":47.3125},"location":"Left Knee"},{"euler":{"heading":155.1875,"pitch":-167.5,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":127.875,"roll":77.875},"location":"Right Ankle"},{"euler":{"heading":15.5625,"pitch":-138.125,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":163.0,"pitch":-51.875,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:51.691"} +{"sensors":[{"euler":{"heading":203.75,"pitch":130.5,"roll":43.25},"location":"Left Knee"},{"euler":{"heading":164.5625,"pitch":-148.1875,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":88.375,"pitch":125.625,"roll":78.9375},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-139.1875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":-59.1875,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:51.792"} +{"sensors":[{"euler":{"heading":209.0625,"pitch":130.3125,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":171.25,"pitch":-141.1875,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":123.3125,"roll":79.9375},"location":"Right Ankle"},{"euler":{"heading":12.8125,"pitch":-139.75,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":163.6875,"pitch":-65.1875,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:51.893"} +{"sensors":[{"euler":{"heading":201.0625,"pitch":136.625,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":160.75,"pitch":-158.5,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":122.3125,"roll":80.4375},"location":"Right Ankle"},{"euler":{"heading":12.9375,"pitch":-140.0625,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":164.875,"pitch":-68.125,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:51.994"} +{"sensors":[{"euler":{"heading":275.125,"pitch":147.0,"roll":52.125},"location":"Left Knee"},{"euler":{"heading":144.4375,"pitch":170.8125,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":122.8125,"roll":81.0625},"location":"Right Ankle"},{"euler":{"heading":12.0,"pitch":-140.6875,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":-70.1875,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:52.95"} +{"sensors":[{"euler":{"heading":262.25,"pitch":158.25,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":131.875,"pitch":143.3125,"roll":68.0},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":122.9375,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":10.9375,"pitch":-141.4375,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":166.125,"pitch":-71.6875,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:52.196"} +{"sensors":[{"euler":{"heading":252.125,"pitch":169.1875,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":124.6875,"pitch":129.8125,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":127.375,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":10.3125,"pitch":-142.875,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":167.625,"pitch":-72.625,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:52.297"} +{"sensors":[{"euler":{"heading":252.25,"pitch":171.625,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":124.6875,"pitch":127.125,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":83.0,"pitch":175.5625,"roll":83.5625},"location":"Right Ankle"},{"euler":{"heading":9.875,"pitch":-144.3125,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":170.0,"pitch":-74.0625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:52.398"} +{"sensors":[{"euler":{"heading":260.0,"pitch":167.125,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":132.1875,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":177.375,"roll":84.0625},"location":"Right Ankle"},{"euler":{"heading":10.5625,"pitch":-146.25,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":173.8125,"pitch":-74.25,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:52.498"} +{"sensors":[{"euler":{"heading":267.5625,"pitch":163.3125,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":137.3125,"pitch":136.0625,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":80.75,"pitch":179.4375,"roll":83.5625},"location":"Right Ankle"},{"euler":{"heading":10.625,"pitch":-148.3125,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":-73.75,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:52.598"} +{"sensors":[{"euler":{"heading":271.875,"pitch":159.0,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":140.25,"pitch":137.0625,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":-164.0625,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":10.875,"pitch":-150.5625,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":184.0625,"pitch":-73.25,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:52.699"} +{"sensors":[{"euler":{"heading":273.4375,"pitch":156.0,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":141.5,"pitch":136.125,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-138.1875,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":13.5625,"pitch":-146.875,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-71.1875,"roll":60.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:52.800"} +{"sensors":[{"euler":{"heading":274.125,"pitch":153.25,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":142.125,"pitch":135.0625,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":63.6875,"pitch":-121.0625,"roll":72.0},"location":"Right Ankle"},{"euler":{"heading":19.5,"pitch":-138.25,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":193.125,"pitch":-70.5,"roll":55.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:52.901"} +{"sensors":[{"euler":{"heading":275.4375,"pitch":150.75,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":142.9375,"pitch":134.5625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-118.625,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":25.4375,"pitch":-130.3125,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":193.0,"pitch":-68.875,"roll":54.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:53.2"} +{"sensors":[{"euler":{"heading":276.5,"pitch":148.25,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":143.4375,"pitch":135.0625,"roll":75.0},"location":"Left Ankle"},{"euler":{"heading":65.5,"pitch":-132.0,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":30.5,"pitch":-126.0625,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":188.0625,"pitch":-63.6875,"roll":59.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:53.103"} +{"sensors":[{"euler":{"heading":277.25,"pitch":146.5,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":143.6875,"pitch":136.3125,"roll":75.5},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-165.5625,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":33.75,"pitch":-124.375,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":180.6875,"pitch":-53.9375,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:53.204"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":144.8125,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":138.375,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":156.4375,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":35.0625,"pitch":-123.8125,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":173.9375,"pitch":-40.0,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:53.305"} +{"sensors":[{"euler":{"heading":281.8125,"pitch":142.875,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":146.875,"pitch":142.375,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":139.1875,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":34.0,"pitch":-123.875,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":171.25,"pitch":-32.5,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:53.406"} +{"sensors":[{"euler":{"heading":284.5,"pitch":140.75,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":148.8125,"pitch":147.8125,"roll":77.875},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":134.75,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-125.625,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":167.375,"pitch":-25.3125,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:53.507"} +{"sensors":[{"euler":{"heading":286.375,"pitch":138.75,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":149.75,"pitch":155.0625,"roll":77.5},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":134.3125,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":26.0,"pitch":-128.0625,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":164.4375,"pitch":-27.4375,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:53.608"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":-149.6875,"roll":80.875},"location":"Right Ankle"},{"euler":{"heading":13.6875,"pitch":-148.5,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":189.5625,"pitch":-74.5625,"roll":61.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:53.709"} +{"sensors":[{"euler":{"heading":273.0,"pitch":156.0,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":140.1875,"pitch":129.9375,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-145.875,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-147.9375,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":190.9375,"pitch":-74.75,"roll":60.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:55.8"} +{"sensors":[{"euler":{"heading":275.1875,"pitch":152.5625,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":141.75,"pitch":131.1875,"roll":72.375},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-126.25,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":19.25,"pitch":-141.3125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":196.375,"pitch":-73.5,"roll":56.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:55.109"} +{"sensors":[{"euler":{"heading":276.25,"pitch":149.8125,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":142.75,"pitch":132.25,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":63.5,"pitch":-117.25,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":26.125,"pitch":-133.3125,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":198.4375,"pitch":-70.1875,"roll":53.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:55.210"} +{"sensors":[{"euler":{"heading":277.0625,"pitch":147.8125,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":142.9375,"pitch":132.5,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":66.25,"pitch":-125.8125,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":31.125,"pitch":-127.875,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":196.5,"pitch":-66.6875,"roll":56.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:55.311"} +{"sensors":[{"euler":{"heading":278.1875,"pitch":145.8125,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":143.3125,"pitch":134.0,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-146.9375,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":35.4375,"pitch":-124.1875,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":188.9375,"pitch":-60.625,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:55.411"} +{"sensors":[{"euler":{"heading":279.625,"pitch":144.0,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":144.125,"pitch":136.5,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":166.6875,"roll":77.8125},"location":"Right Ankle"},{"euler":{"heading":38.125,"pitch":-122.8125,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":180.3125,"pitch":-47.9375,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:55.513"} +{"sensors":[{"euler":{"heading":281.25,"pitch":142.4375,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":145.0,"pitch":139.125,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":96.25,"pitch":134.4375,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":36.875,"pitch":-124.0,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":172.25,"pitch":-27.625,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:55.613"} +{"sensors":[{"euler":{"heading":282.875,"pitch":140.5625,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":142.4375,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":127.4375,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-125.9375,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":-12.625,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:55.714"} +{"sensors":[{"euler":{"heading":284.25,"pitch":138.8125,"roll":56.5},"location":"Left Knee"},{"euler":{"heading":147.25,"pitch":149.75,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":101.3125,"pitch":129.25,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":30.3125,"pitch":-127.8125,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":-14.0,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:55.815"} +{"sensors":[{"euler":{"heading":287.3125,"pitch":136.4375,"roll":54.4375},"location":"Left Knee"},{"euler":{"heading":149.0,"pitch":159.375,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":98.125,"pitch":130.4375,"roll":71.0625},"location":"Right Ankle"},{"euler":{"heading":25.25,"pitch":-130.75,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":-22.125,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:55.916"} +{"sensors":[{"euler":{"heading":291.1875,"pitch":133.8125,"roll":52.0},"location":"Left Knee"},{"euler":{"heading":151.5,"pitch":171.0625,"roll":75.1875},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":131.375,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":23.9375,"pitch":-133.5,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":163.4375,"pitch":-29.875,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:56.17"} +{"sensors":[{"euler":{"heading":293.25,"pitch":131.5625,"roll":49.0},"location":"Left Knee"},{"euler":{"heading":154.5625,"pitch":-174.8125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":130.375,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":21.0,"pitch":-136.3125,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":-39.8125,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:56.118"} +{"sensors":[{"euler":{"heading":294.8125,"pitch":129.8125,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":162.0625,"pitch":-155.0625,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":91.8125,"pitch":128.1875,"roll":76.3125},"location":"Right Ankle"},{"euler":{"heading":18.6875,"pitch":-138.0625,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":164.3125,"pitch":-48.25,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:56.218"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":67.5,"pitch":-127.75,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":35.5625,"pitch":-125.0625,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":193.5625,"pitch":-65.75,"roll":58.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:56.319"} +{"sensors":[{"euler":{"heading":275.0,"pitch":149.875,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":141.6875,"pitch":129.8125,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":-131.125,"roll":72.75},"location":"Right Ankle"},{"euler":{"heading":36.375,"pitch":-124.375,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":191.9375,"pitch":-64.6875,"roll":59.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:57.595"} +{"sensors":[{"euler":{"heading":275.8125,"pitch":148.125,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":142.0,"pitch":130.5,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":76.6875,"pitch":-160.5,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":38.9375,"pitch":-122.25,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":182.4375,"pitch":-55.4375,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:57.696"} +{"sensors":[{"euler":{"heading":277.5625,"pitch":146.125,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":142.5,"pitch":132.4375,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":149.9375,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":39.5,"pitch":-121.8125,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":175.25,"pitch":-44.0,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:57.796"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":143.6875,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":143.6875,"pitch":137.0625,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":133.5625,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":37.125,"pitch":-123.8125,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":168.1875,"pitch":-24.875,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:57.897"} +{"sensors":[{"euler":{"heading":282.3125,"pitch":141.3125,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":144.75,"pitch":142.375,"roll":76.5625},"location":"Left Ankle"},{"euler":{"heading":102.4375,"pitch":125.9375,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":31.25,"pitch":-126.75,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":-11.0625,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:57.997"} +{"sensors":[{"euler":{"heading":283.5,"pitch":139.75,"roll":56.5},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":149.375,"roll":76.5625},"location":"Left Ankle"},{"euler":{"heading":99.75,"pitch":126.375,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":27.125,"pitch":-128.875,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":162.9375,"pitch":-19.5,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:58.98"} +{"sensors":[{"euler":{"heading":286.3125,"pitch":137.5,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":147.5,"pitch":158.125,"roll":75.625},"location":"Left Ankle"},{"euler":{"heading":97.125,"pitch":128.1875,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":24.375,"pitch":-131.1875,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":163.6875,"pitch":-29.0625,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:58.198"} +{"sensors":[{"euler":{"heading":289.9375,"pitch":134.75,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":149.6875,"pitch":169.1875,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":131.25,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":22.5,"pitch":-133.0625,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":162.6875,"pitch":-38.0,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:58.299"} +{"sensors":[{"euler":{"heading":291.1875,"pitch":132.125,"roll":48.4375},"location":"Left Knee"},{"euler":{"heading":153.375,"pitch":-173.8125,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":129.75,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":19.8125,"pitch":-135.1875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":162.5,"pitch":-46.6875,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:58.400"} +{"sensors":[{"euler":{"heading":202.625,"pitch":131.3125,"roll":43.625},"location":"Left Knee"},{"euler":{"heading":162.375,"pitch":-151.625,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":126.1875,"roll":75.8125},"location":"Right Ankle"},{"euler":{"heading":16.3125,"pitch":-137.1875,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":-53.75,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:58.501"} +{"sensors":[{"euler":{"heading":206.3125,"pitch":132.0625,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":168.375,"pitch":-144.125,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":122.625,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":15.9375,"pitch":-138.25,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":-60.375,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:58.602"} +{"sensors":[{"euler":{"heading":272.1875,"pitch":138.4375,"roll":46.625},"location":"Left Knee"},{"euler":{"heading":159.3125,"pitch":-162.3125,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":121.9375,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":17.0625,"pitch":-138.125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":166.25,"pitch":-64.1875,"roll":77.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:58.702"} +{"sensors":[{"euler":{"heading":273.3125,"pitch":148.3125,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":144.625,"pitch":167.9375,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":121.9375,"roll":77.875},"location":"Right Ankle"},{"euler":{"heading":16.4375,"pitch":-139.0,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":-66.75,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:58.803"} +{"sensors":[{"euler":{"heading":262.0625,"pitch":158.1875,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":134.0,"pitch":145.75,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":122.4375,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":14.9375,"pitch":-140.125,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":167.5,"pitch":-69.375,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:58.904"} +{"sensors":[{"euler":{"heading":253.8125,"pitch":167.6875,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":127.25,"pitch":134.25,"roll":66.75},"location":"Left Ankle"},{"euler":{"heading":86.875,"pitch":124.625,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":14.125,"pitch":-141.125,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":168.5,"pitch":-71.25,"roll":74.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:59.5"} +{"sensors":[{"euler":{"heading":252.6875,"pitch":172.0,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":125.25,"pitch":129.1875,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":128.3125,"roll":80.625},"location":"Right Ankle"},{"euler":{"heading":13.0,"pitch":-142.8125,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":170.25,"pitch":-72.8125,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:59.106"} +{"sensors":[{"euler":{"heading":257.875,"pitch":169.1875,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":132.375,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":83.8125,"pitch":135.5625,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":12.5,"pitch":-144.9375,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":172.8125,"pitch":-73.75,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:59.206"} +{"sensors":[{"euler":{"heading":264.125,"pitch":164.625,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":133.9375,"pitch":134.5625,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":147.75,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":12.1875,"pitch":-147.3125,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":-73.5625,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:59.307"} +{"sensors":[{"euler":{"heading":268.9375,"pitch":160.5625,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":137.6875,"pitch":135.875,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":172.3125,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":11.125,"pitch":-149.0625,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":180.75,"pitch":-73.5625,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:59.408"} +{"sensors":[{"euler":{"heading":272.5625,"pitch":156.75,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":140.1875,"pitch":135.9375,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":77.8125,"pitch":-160.5,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":12.125,"pitch":-148.25,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":184.9375,"pitch":-71.625,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:59.509"} +{"sensors":[{"euler":{"heading":273.8125,"pitch":154.0,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":140.4375,"pitch":133.9375,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":73.1875,"pitch":-136.5625,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":18.25,"pitch":-142.6875,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":191.3125,"pitch":-69.625,"roll":58.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:59.609"} +{"sensors":[{"euler":{"heading":274.625,"pitch":151.3125,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":141.6875,"pitch":133.3125,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":63.5625,"pitch":-119.1875,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":25.125,"pitch":-135.0625,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":195.4375,"pitch":-69.5,"roll":54.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:59.710"} +{"sensors":[{"euler":{"heading":276.0625,"pitch":148.9375,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":142.25,"pitch":134.0625,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":63.25,"pitch":-122.0,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":30.9375,"pitch":-128.5625,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":195.75,"pitch":-67.625,"roll":54.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:59.811"} +{"sensors":[{"euler":{"heading":277.625,"pitch":146.875,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":135.5,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":68.75,"pitch":-133.75,"roll":73.375},"location":"Right Ankle"},{"euler":{"heading":36.125,"pitch":-124.3125,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":191.25,"pitch":-63.5,"roll":58.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:07:59.912"} +{"sensors":[{"euler":{"heading":278.9375,"pitch":144.875,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":143.625,"pitch":137.4375,"roll":76.1875},"location":"Left Ankle"},{"euler":{"heading":78.5625,"pitch":-170.3125,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":39.6875,"pitch":-122.375,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":182.4375,"pitch":-53.8125,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:00.13"} +{"sensors":[{"euler":{"heading":280.625,"pitch":143.25,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":144.6875,"pitch":139.9375,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":151.375,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":39.375,"pitch":-122.5625,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":173.5625,"pitch":-40.1875,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:00.114"} +{"sensors":[{"euler":{"heading":282.1875,"pitch":141.625,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":143.625,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":100.875,"pitch":130.5,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":36.4375,"pitch":-125.25,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":-20.3125,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:00.215"} +{"sensors":[{"euler":{"heading":284.1875,"pitch":139.75,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":146.6875,"pitch":149.375,"roll":77.75},"location":"Left Ankle"},{"euler":{"heading":103.9375,"pitch":126.9375,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":32.6875,"pitch":-127.5,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":164.6875,"pitch":-18.5625,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:00.316"} +{"sensors":[{"euler":{"heading":286.3125,"pitch":137.6875,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":147.5625,"pitch":156.375,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":100.0625,"pitch":127.5,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":26.75,"pitch":-130.1875,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":163.125,"pitch":-24.3125,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:00.417"} +{"sensors":[{"euler":{"heading":289.125,"pitch":135.75,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":148.6875,"pitch":164.5625,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":96.3125,"pitch":128.5625,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":25.0625,"pitch":-131.875,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":162.8125,"pitch":-31.625,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:00.519"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":71.5,"pitch":-132.3125,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":13.125,"pitch":-147.625,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":192.5,"pitch":-74.5,"roll":57.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:00.619"} +{"sensors":[{"euler":{"heading":272.625,"pitch":152.0625,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":140.875,"pitch":132.3125,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-130.0625,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":13.6875,"pitch":-147.25,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":193.875,"pitch":-74.25,"roll":56.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:01.915"} +{"sensors":[{"euler":{"heading":275.0,"pitch":149.0625,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":142.1875,"pitch":131.9375,"roll":75.75},"location":"Left Ankle"},{"euler":{"heading":64.75,"pitch":-117.1875,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":21.0625,"pitch":-141.125,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":197.5625,"pitch":-72.3125,"roll":54.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:02.16"} +{"sensors":[{"euler":{"heading":277.3125,"pitch":146.6875,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":144.0,"pitch":129.6875,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":65.25,"pitch":-119.3125,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":27.4375,"pitch":-133.0625,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":198.6875,"pitch":-69.8125,"roll":54.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:02.117"} +{"sensors":[{"euler":{"heading":278.9375,"pitch":145.0,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":128.6875,"roll":79.0},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":-138.5625,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":31.9375,"pitch":-127.6875,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":192.6875,"pitch":-65.375,"roll":60.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:02.217"} +{"sensors":[{"euler":{"heading":280.4375,"pitch":143.6875,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":146.6875,"pitch":129.5625,"roll":79.875},"location":"Left Ankle"},{"euler":{"heading":83.1875,"pitch":178.9375,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":35.5625,"pitch":-125.0,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":184.4375,"pitch":-56.875,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:02.318"} +{"sensors":[{"euler":{"heading":281.625,"pitch":142.5,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":147.5,"pitch":132.1875,"roll":80.3125},"location":"Left Ankle"},{"euler":{"heading":93.75,"pitch":139.25,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":37.375,"pitch":-124.0625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":176.5625,"pitch":-41.9375,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:02.419"} +{"sensors":[{"euler":{"heading":282.5625,"pitch":141.0,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":147.75,"pitch":139.0,"roll":80.3125},"location":"Left Ankle"},{"euler":{"heading":101.375,"pitch":124.625,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":35.25,"pitch":-125.4375,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":169.0,"pitch":-18.625,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:02.521"} +{"sensors":[{"euler":{"heading":283.0625,"pitch":139.25,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":147.4375,"pitch":148.9375,"roll":79.625},"location":"Left Ankle"},{"euler":{"heading":103.375,"pitch":121.8125,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":31.6875,"pitch":-127.625,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":164.9375,"pitch":-5.25,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:02.621"} +{"sensors":[{"euler":{"heading":284.3125,"pitch":137.1875,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":147.5,"pitch":156.8125,"roll":78.875},"location":"Left Ankle"},{"euler":{"heading":100.375,"pitch":124.8125,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":27.625,"pitch":-130.125,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":-13.8125,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:02.722"} +{"sensors":[{"euler":{"heading":286.375,"pitch":135.0,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":147.8125,"pitch":166.25,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":123.75,"roll":72.125},"location":"Right Ankle"},{"euler":{"heading":23.25,"pitch":-134.5,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":164.875,"pitch":-26.4375,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:02.823"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":123.0,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":17.9375,"pitch":-138.1875,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":170.875,"pitch":-63.0,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:02.924"} +{"sensors":[{"euler":{"heading":268.5625,"pitch":150.875,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":141.8125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":123.25,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":18.125,"pitch":-138.125,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":171.0,"pitch":-63.0,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:04.222"} +{"sensors":[{"euler":{"heading":268.6875,"pitch":150.8125,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":136.8125,"pitch":141.125,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":123.8125,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":18.625,"pitch":-138.375,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":-62.875,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:04.323"} +{"sensors":[{"euler":{"heading":268.5625,"pitch":151.0,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":140.6875,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":92.625,"pitch":123.1875,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-138.5,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":172.25,"pitch":-62.75,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:04.423"} +{"sensors":[{"euler":{"heading":268.3125,"pitch":151.125,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":136.4375,"pitch":140.25,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":93.1875,"pitch":122.5,"roll":77.8125},"location":"Right Ankle"},{"euler":{"heading":19.5,"pitch":-138.6875,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":172.75,"pitch":-62.3125,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:04.524"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":91.1875,"pitch":128.4375,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":15.3125,"pitch":-141.125,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":172.4375,"pitch":-64.1875,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":-0.0625,"roll":-16.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:04.624"} +{"sensors":[{"euler":{"heading":0.0,"pitch":-0.0625,"roll":-16.0},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":140.25,"roll":72.5},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":129.5,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":15.375,"pitch":-141.125,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":-64.5,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:05.917"} +{"sensors":[{"euler":{"heading":266.25,"pitch":151.0625,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":133.75,"pitch":140.3125,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":129.625,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":15.5625,"pitch":-141.0625,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":-64.4375,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:06.572"} +{"sensors":[{"euler":{"heading":267.0,"pitch":150.9375,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":134.1875,"pitch":140.625,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":129.5,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":16.4375,"pitch":-140.5625,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":173.125,"pitch":-64.25,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:06.673"} +{"sensors":[{"euler":{"heading":267.3125,"pitch":151.0625,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":134.5,"pitch":141.1875,"roll":72.5},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":128.875,"roll":79.0},"location":"Right Ankle"},{"euler":{"heading":17.5625,"pitch":-140.0625,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":173.6875,"pitch":-64.1875,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:06.774"} +{"sensors":[{"euler":{"heading":268.0,"pitch":151.1875,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":135.125,"pitch":142.5625,"roll":72.375},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":127.375,"roll":79.0625},"location":"Right Ankle"},{"euler":{"heading":19.0,"pitch":-139.3125,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":174.3125,"pitch":-64.5,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:06.874"} +{"sensors":[{"euler":{"heading":268.375,"pitch":151.25,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":135.4375,"pitch":143.9375,"roll":72.1875},"location":"Left Ankle"},{"euler":{"heading":91.25,"pitch":125.375,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":20.25,"pitch":-138.375,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":174.3125,"pitch":-65.4375,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:06.975"} +{"sensors":[{"euler":{"heading":267.875,"pitch":151.375,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":135.375,"pitch":145.125,"roll":72.0},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":124.0,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":20.9375,"pitch":-137.3125,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":174.0,"pitch":-66.5625,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:07.76"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":135.5625,"pitch":150.625,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":87.75,"pitch":108.75,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":20.25,"pitch":-134.625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":172.9375,"pitch":-78.875,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:07.176"} +{"sensors":[{"euler":{"heading":268.5,"pitch":152.3125,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":135.5625,"pitch":150.625,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":108.5,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":20.1875,"pitch":-134.5625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":172.875,"pitch":-79.0,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:07.831"} +{"sensors":[{"euler":{"heading":268.125,"pitch":152.5,"roll":54.875},"location":"Left Knee"},{"euler":{"heading":135.4375,"pitch":150.75,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":107.25,"roll":82.4375},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-134.625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":172.6875,"pitch":-79.75,"roll":75.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:07.931"} +{"sensors":[{"euler":{"heading":267.3125,"pitch":152.75,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":135.0,"pitch":150.375,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":86.875,"pitch":106.75,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":19.0,"pitch":-134.75,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":173.4375,"pitch":-82.25,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:08.32"} +{"sensors":[{"euler":{"heading":267.375,"pitch":152.8125,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":135.0,"pitch":150.1875,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":107.0,"roll":82.625},"location":"Right Ankle"},{"euler":{"heading":19.0,"pitch":-134.75,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":173.3125,"pitch":-82.25,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:08.133"} +{"sensors":[{"euler":{"heading":267.5625,"pitch":152.8125,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":135.1875,"pitch":149.9375,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":107.0,"roll":82.5},"location":"Right Ankle"},{"euler":{"heading":19.375,"pitch":-134.5625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":173.3125,"pitch":-81.9375,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:08.234"} +{"sensors":[{"euler":{"heading":267.5,"pitch":152.9375,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":135.3125,"pitch":149.0,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":106.75,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-134.75,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":173.25,"pitch":-81.3125,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:08.335"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":137.8125,"pitch":145.375,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":111.625,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":20.4375,"pitch":-136.125,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":173.9375,"pitch":-79.875,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:08.436"} +{"sensors":[{"euler":{"heading":269.75,"pitch":151.6875,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":137.8125,"pitch":145.3125,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":137.8125,"pitch":145.3125,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":137.8125,"pitch":145.3125,"roll":72.8125},"location":"Right Hip"},{"euler":{"heading":137.8125,"pitch":145.3125,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:09.94"} +{"sensors":[{"euler":{"heading":266.8125,"pitch":150.5,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":133.8125,"pitch":146.9375,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":174.3125,"roll":83.625},"location":"Right Ankle"},{"euler":{"heading":11.4375,"pitch":-141.125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":173.625,"pitch":-81.25,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:11.32"} +{"sensors":[{"euler":{"heading":266.625,"pitch":150.375,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":147.75,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":174.375,"roll":83.75},"location":"Right Ankle"},{"euler":{"heading":10.8125,"pitch":-141.125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":173.5,"pitch":-81.875,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:11.133"} +{"sensors":[{"euler":{"heading":266.1875,"pitch":150.3125,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":133.4375,"pitch":148.1875,"roll":71.25},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":174.375,"roll":83.875},"location":"Right Ankle"},{"euler":{"heading":10.0625,"pitch":-141.1875,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":173.0625,"pitch":-82.5625,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:11.234"} +{"sensors":[{"euler":{"heading":265.5,"pitch":150.5,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":132.875,"pitch":148.25,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":174.375,"roll":84.0},"location":"Right Ankle"},{"euler":{"heading":9.5,"pitch":-141.125,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":172.75,"pitch":-83.5,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:11.334"} +{"sensors":[{"euler":{"heading":264.6875,"pitch":150.625,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":132.375,"pitch":148.9375,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":174.4375,"roll":84.1875},"location":"Right Ankle"},{"euler":{"heading":8.75,"pitch":-141.0,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":172.3125,"pitch":-84.875,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:11.435"} +{"sensors":[{"euler":{"heading":264.1875,"pitch":150.5625,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":132.1875,"pitch":149.9375,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":174.5,"roll":84.375},"location":"Right Ankle"},{"euler":{"heading":8.1875,"pitch":-140.6875,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":172.0,"pitch":-86.25,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:11.536"} +{"sensors":[{"euler":{"heading":263.4375,"pitch":150.4375,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":150.25,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":174.5,"roll":84.4375},"location":"Right Ankle"},{"euler":{"heading":7.5625,"pitch":-140.4375,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":-87.75,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:11.637"} +{"sensors":[{"euler":{"heading":262.5,"pitch":150.4375,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":131.0,"pitch":150.0,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":174.625,"roll":84.5625},"location":"Right Ankle"},{"euler":{"heading":6.9375,"pitch":-140.3125,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":171.375,"pitch":-88.6875,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:11.738"} +{"sensors":[{"euler":{"heading":261.5625,"pitch":150.5,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":149.8125,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":174.6875,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":6.3125,"pitch":-140.125,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":-89.8125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:11.838"} +{"sensors":[{"euler":{"heading":261.125,"pitch":150.5625,"roll":54.375},"location":"Left Knee"},{"euler":{"heading":130.125,"pitch":149.75,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":174.8125,"roll":84.8125},"location":"Right Ankle"},{"euler":{"heading":5.9375,"pitch":-140.125,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":171.1875,"pitch":-90.75,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:11.939"} +{"sensors":[{"euler":{"heading":261.0,"pitch":150.375,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":130.0625,"pitch":150.0625,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":5.0625,"roll":84.875},"location":"Right Ankle"},{"euler":{"heading":6.125,"pitch":-140.1875,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":171.375,"pitch":-91.1875,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":-0.0625,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:12.40"} +{"sensors":[{"euler":{"heading":261.375,"pitch":150.25,"roll":54.0625},"location":"Left Knee"},{"euler":{"heading":129.9375,"pitch":150.0,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":5.0625,"roll":84.875},"location":"Right Ankle"},{"euler":{"heading":6.1875,"pitch":-140.125,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":-92.9375,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:12.141"} +{"sensors":[{"euler":{"heading":260.75,"pitch":150.3125,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":129.5,"pitch":149.25,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":5.0,"roll":84.875},"location":"Right Ankle"},{"euler":{"heading":5.8125,"pitch":-139.9375,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":171.75,"pitch":-93.75,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:12.242"} +{"sensors":[{"euler":{"heading":259.6875,"pitch":150.5,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":128.75,"pitch":149.1875,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":4.9375,"roll":85.0},"location":"Right Ankle"},{"euler":{"heading":5.1875,"pitch":-140.0625,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":-93.625,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:12.343"} +{"sensors":[{"euler":{"heading":258.9375,"pitch":150.75,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":128.0,"pitch":149.4375,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":4.8125,"roll":85.0625},"location":"Right Ankle"},{"euler":{"heading":4.625,"pitch":-140.4375,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":171.5,"pitch":-92.625,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:12.444"} +{"sensors":[{"euler":{"heading":258.5,"pitch":150.875,"roll":53.625},"location":"Left Knee"},{"euler":{"heading":127.5625,"pitch":149.5625,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":175.1875,"roll":85.1875},"location":"Right Ankle"},{"euler":{"heading":4.0,"pitch":-140.625,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":170.875,"pitch":-90.25,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:12.545"} +{"sensors":[{"euler":{"heading":257.9375,"pitch":150.8125,"roll":53.5625},"location":"Left Knee"},{"euler":{"heading":127.5625,"pitch":150.0625,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":81.5625,"pitch":175.25,"roll":85.25},"location":"Right Ankle"},{"euler":{"heading":3.5,"pitch":-140.5625,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":170.5625,"pitch":-89.9375,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:12.646"} +{"sensors":[{"euler":{"heading":257.5,"pitch":150.8125,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":127.1875,"pitch":149.75,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":175.375,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":3.0625,"pitch":-140.6875,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":170.375,"pitch":-89.9375,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:12.747"} +{"sensors":[{"euler":{"heading":257.375,"pitch":150.8125,"roll":53.5625},"location":"Left Knee"},{"euler":{"heading":127.0,"pitch":149.6875,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":81.1875,"pitch":175.375,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":2.875,"pitch":-140.875,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":170.5625,"pitch":-89.625,"roll":71.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:12.847"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":125.875,"pitch":149.9375,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":175.375,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":2.1875,"pitch":-141.5,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":170.6875,"pitch":-89.5,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:12.948"} +{"sensors":[{"euler":{"heading":255.5625,"pitch":151.1875,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":125.8125,"pitch":149.875,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":175.375,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":2.125,"pitch":-141.5,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":170.6875,"pitch":-89.4375,"roll":71.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:13.595"} +{"sensors":[{"euler":{"heading":255.375,"pitch":151.25,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":125.625,"pitch":149.8125,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":175.375,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":2.125,"pitch":-141.4375,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":170.6875,"pitch":-89.5,"roll":71.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:13.696"} +{"sensors":[{"euler":{"heading":255.25,"pitch":151.3125,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":125.5625,"pitch":149.8125,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":175.375,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":2.125,"pitch":-141.4375,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":170.625,"pitch":-89.375,"roll":71.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:13.797"} +{"sensors":[{"euler":{"heading":255.25,"pitch":151.375,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":125.5625,"pitch":149.875,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":175.375,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":2.125,"pitch":-141.4375,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":170.625,"pitch":-89.3125,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:13.898"} +{"sensors":[{"euler":{"heading":255.375,"pitch":151.4375,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":149.75,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":175.3125,"roll":85.25},"location":"Right Ankle"},{"euler":{"heading":2.1875,"pitch":-141.4375,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":170.6875,"pitch":-89.3125,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:13.999"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:14.99"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":170.875,"pitch":-89.6875,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:17.948"} +{"sensors":[{"euler":{"heading":253.25,"pitch":152.625,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":123.6875,"pitch":151.0,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":175.5625,"roll":85.25},"location":"Right Ankle"},{"euler":{"heading":1.0,"pitch":-141.8125,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":170.9375,"pitch":-89.625,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:20.524"} +{"sensors":[{"euler":{"heading":253.75,"pitch":152.3125,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":123.9375,"pitch":150.8125,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":175.5,"roll":85.125},"location":"Right Ankle"},{"euler":{"heading":1.6875,"pitch":-141.625,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":-89.0,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:20.625"} +{"sensors":[{"euler":{"heading":253.625,"pitch":152.1875,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":124.0625,"pitch":150.75,"roll":68.5625},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":175.4375,"roll":85.0},"location":"Right Ankle"},{"euler":{"heading":2.25,"pitch":-141.4375,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":171.1875,"pitch":-87.9375,"roll":71.1875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:20.725"} +{"sensors":[{"euler":{"heading":253.9375,"pitch":151.875,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":150.625,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":175.4375,"roll":84.875},"location":"Right Ankle"},{"euler":{"heading":2.875,"pitch":-141.4375,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":171.4375,"pitch":-87.125,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:20.826"} +{"sensors":[{"euler":{"heading":254.3125,"pitch":151.375,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":124.5625,"pitch":150.1875,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":175.3125,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":3.625,"pitch":-141.625,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":171.8125,"pitch":-86.125,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:20.927"} +{"sensors":[{"euler":{"heading":255.3125,"pitch":150.8125,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":125.0625,"pitch":150.0625,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":175.25,"roll":84.5},"location":"Right Ankle"},{"euler":{"heading":4.375,"pitch":-141.875,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":172.3125,"pitch":-85.375,"roll":71.3125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:21.28"} +{"sensors":[{"euler":{"heading":256.375,"pitch":150.125,"roll":53.875},"location":"Left Knee"},{"euler":{"heading":125.6875,"pitch":150.25,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":175.25,"roll":84.375},"location":"Right Ankle"},{"euler":{"heading":5.5,"pitch":-142.0625,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":173.0,"pitch":-84.6875,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:21.129"} +{"sensors":[{"euler":{"heading":257.6875,"pitch":149.3125,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":150.5,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":175.1875,"roll":84.25},"location":"Right Ankle"},{"euler":{"heading":6.625,"pitch":-142.125,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":173.375,"pitch":-83.6875,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:21.229"} +{"sensors":[{"euler":{"heading":259.1875,"pitch":148.625,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":127.375,"pitch":150.75,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":82.9375,"pitch":175.125,"roll":84.125},"location":"Right Ankle"},{"euler":{"heading":8.0,"pitch":-142.1875,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":174.0,"pitch":-82.8125,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:21.330"} +{"sensors":[{"euler":{"heading":260.875,"pitch":147.875,"roll":54.0625},"location":"Left Knee"},{"euler":{"heading":128.3125,"pitch":151.5625,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":83.1875,"pitch":175.0,"roll":83.9375},"location":"Right Ankle"},{"euler":{"heading":9.25,"pitch":-142.125,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":174.3125,"pitch":-82.375,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:21.430"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-79.375,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:21.532"} +{"sensors":[{"euler":{"heading":273.0625,"pitch":145.6875,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":137.875,"pitch":151.9375,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":127.5625,"roll":83.0},"location":"Right Ankle"},{"euler":{"heading":13.0,"pitch":-140.8125,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-79.1875,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:24.109"} +{"sensors":[{"euler":{"heading":273.0625,"pitch":145.9375,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":138.0,"pitch":150.9375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":129.125,"roll":82.875},"location":"Right Ankle"},{"euler":{"heading":13.3125,"pitch":-141.6875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":-78.5,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:24.210"} +{"sensors":[{"euler":{"heading":273.5625,"pitch":145.6875,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":138.125,"pitch":150.3125,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":130.6875,"roll":82.8125},"location":"Right Ankle"},{"euler":{"heading":13.6875,"pitch":-142.0,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":177.1875,"pitch":-78.0,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:24.311"} +{"sensors":[{"euler":{"heading":273.375,"pitch":145.6875,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":138.0,"pitch":149.375,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":131.8125,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":13.4375,"pitch":-142.1875,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":177.0,"pitch":-77.5625,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:24.412"} +{"sensors":[{"euler":{"heading":272.75,"pitch":145.9375,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":137.3125,"pitch":147.9375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":132.5,"roll":82.625},"location":"Right Ankle"},{"euler":{"heading":13.125,"pitch":-142.4375,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":176.9375,"pitch":-0.0625,"roll":-0.0625},"location":"Right Knee"},{"euler":{"heading":176.9375,"pitch":-0.0625,"roll":-0.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:24.513"} +{"sensors":[{"euler":{"heading":176.9375,"pitch":-0.0625,"roll":-0.0625},"location":"Left Knee"},{"euler":{"heading":137.125,"pitch":150.125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":132.0625,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":15.1875,"pitch":-140.6875,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:25.164"} +{"sensors":[{"euler":{"heading":270.6875,"pitch":146.3125,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":150.125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":131.9375,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":15.125,"pitch":-140.75,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:25.831"} +{"sensors":[{"euler":{"heading":271.25,"pitch":146.125,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":137.5,"pitch":150.3125,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":86.4375,"pitch":131.5,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":15.5,"pitch":-140.9375,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:25.932"} +{"sensors":[{"euler":{"heading":272.4375,"pitch":145.6875,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":138.1875,"pitch":151.125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":130.625,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":16.125,"pitch":-141.125,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:26.33"} +{"sensors":[{"euler":{"heading":273.625,"pitch":145.25,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":139.125,"pitch":152.375,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":130.0625,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":16.375,"pitch":-141.25,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:26.134"} +{"sensors":[{"euler":{"heading":274.5625,"pitch":144.8125,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":139.625,"pitch":152.875,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":130.0,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":16.3125,"pitch":-141.5,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:26.236"} +{"sensors":[{"euler":{"heading":274.625,"pitch":144.75,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":139.5625,"pitch":153.0,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":86.6875,"pitch":130.25,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":15.9375,"pitch":-141.75,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:26.337"} +{"sensors":[{"euler":{"heading":274.3125,"pitch":144.6875,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":139.375,"pitch":153.375,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":131.0625,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":15.5,"pitch":-141.8125,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:26.438"} +{"sensors":[{"euler":{"heading":274.125,"pitch":144.5,"roll":56.5},"location":"Left Knee"},{"euler":{"heading":139.375,"pitch":154.0,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":86.25,"pitch":131.25,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.375,"pitch":-141.9375,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:26.539"} +{"sensors":[{"euler":{"heading":273.875,"pitch":144.4375,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":139.375,"pitch":154.25,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":131.375,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":15.5,"pitch":-141.875,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:26.640"} +{"sensors":[{"euler":{"heading":273.4375,"pitch":144.4375,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":139.25,"pitch":154.4375,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":131.4375,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.375,"pitch":-141.8125,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:26.741"} +{"sensors":[{"euler":{"heading":272.9375,"pitch":144.5625,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":138.9375,"pitch":154.4375,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":131.375,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.25,"pitch":-141.6875,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:26.843"} +{"sensors":[{"euler":{"heading":272.1875,"pitch":144.6875,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":138.5,"pitch":154.875,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":131.25,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.0625,"pitch":-141.5625,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:26.943"} +{"sensors":[{"euler":{"heading":271.3125,"pitch":144.875,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":138.0,"pitch":155.0,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":131.1875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.0,"pitch":-141.3125,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:27.44"} +{"sensors":[{"euler":{"heading":271.125,"pitch":144.9375,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":137.9375,"pitch":155.125,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":131.0625,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.0,"pitch":-141.125,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:27.145"} +{"sensors":[{"euler":{"heading":271.125,"pitch":145.0,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":137.9375,"pitch":155.0,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":130.75,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.3125,"pitch":-140.875,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:27.246"} +{"sensors":[{"euler":{"heading":271.1875,"pitch":145.0625,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":138.0625,"pitch":154.875,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":130.75,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.5,"pitch":-140.625,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:27.347"} +{"sensors":[{"euler":{"heading":271.0625,"pitch":145.125,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":138.0625,"pitch":154.875,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":130.8125,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.5,"pitch":-140.5625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:27.448"} +{"sensors":[{"euler":{"heading":271.0625,"pitch":145.125,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":138.125,"pitch":155.0,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":130.875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.4375,"pitch":-140.5,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:27.549"} +{"sensors":[{"euler":{"heading":271.0625,"pitch":145.0625,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":138.125,"pitch":155.125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":85.5,"pitch":131.125,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.3125,"pitch":-140.5,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:27.650"} +{"sensors":[{"euler":{"heading":271.0625,"pitch":145.0625,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":138.1875,"pitch":155.125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":85.5,"pitch":131.125,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.25,"pitch":-140.5625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:27.750"} +{"sensors":[{"euler":{"heading":271.0,"pitch":145.0625,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":138.1875,"pitch":155.1875,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":85.5,"pitch":131.1875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.1875,"pitch":-140.625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:27.851"} +{"sensors":[{"euler":{"heading":270.9375,"pitch":145.125,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":138.1875,"pitch":155.25,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":130.9375,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":15.1875,"pitch":-140.5625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:27.952"} +{"sensors":[{"euler":{"heading":270.75,"pitch":145.25,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":138.125,"pitch":155.1875,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":130.75,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":15.125,"pitch":-140.5,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:28.53"} +{"sensors":[{"euler":{"heading":270.4375,"pitch":145.375,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":138.0,"pitch":155.0,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":130.75,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":15.0625,"pitch":-140.4375,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:28.153"} +{"sensors":[{"euler":{"heading":270.1875,"pitch":145.5625,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":137.8125,"pitch":154.5625,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":130.375,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":15.0,"pitch":-140.375,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:28.254"} +{"sensors":[{"euler":{"heading":269.75,"pitch":145.8125,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":137.6875,"pitch":154.4375,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":129.5625,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.875,"pitch":-140.375,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:28.354"} +{"sensors":[{"euler":{"heading":269.1875,"pitch":146.0625,"roll":56.375},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":154.25,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":129.125,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.75,"pitch":-140.0625,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:28.455"} +{"sensors":[{"euler":{"heading":268.625,"pitch":146.3125,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":137.0625,"pitch":154.0625,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":128.9375,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":14.4375,"pitch":-139.875,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:28.556"} +{"sensors":[{"euler":{"heading":268.1875,"pitch":146.5625,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":153.9375,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":128.5,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.375,"pitch":-139.9375,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:28.657"} +{"sensors":[{"euler":{"heading":268.25,"pitch":146.5,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":153.9375,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":128.1875,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.5,"pitch":-139.8125,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:28.758"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":136.8125,"pitch":154.5625,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":126.75,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":14.5625,"pitch":-139.625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:28.859"} +{"sensors":[{"euler":{"heading":268.3125,"pitch":146.4375,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":136.8125,"pitch":154.5625,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":126.6875,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":14.5625,"pitch":-139.625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:29.522"} +{"sensors":[{"euler":{"heading":268.375,"pitch":146.4375,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":154.9375,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":126.6875,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":14.5625,"pitch":-139.625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:29.623"} +{"sensors":[{"euler":{"heading":268.3125,"pitch":146.4375,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":154.9375,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":126.75,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":14.5625,"pitch":-139.625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:29.724"} +{"sensors":[{"euler":{"heading":268.3125,"pitch":146.4375,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":154.5,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":126.8125,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":14.5625,"pitch":-139.6875,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:29.825"} +{"sensors":[{"euler":{"heading":268.25,"pitch":146.4375,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":136.75,"pitch":154.375,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":126.8125,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":14.5625,"pitch":-139.75,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:29.925"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":146.375,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":154.5625,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":126.75,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":14.625,"pitch":-139.6875,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:30.26"} +{"sensors":[{"euler":{"heading":268.5,"pitch":146.375,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":154.625,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":126.875,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":14.6875,"pitch":-139.6875,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:30.127"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":153.875,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":128.1875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.1875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:30.228"} +{"sensors":[{"euler":{"heading":267.375,"pitch":146.6875,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":154.0,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":128.1875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":13.875,"pitch":-140.1875,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:30.891"} +{"sensors":[{"euler":{"heading":267.4375,"pitch":146.5625,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":136.375,"pitch":154.8125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":129.4375,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.1875,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:30.992"} +{"sensors":[{"euler":{"heading":267.8125,"pitch":146.375,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":136.5,"pitch":155.125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":130.125,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":-140.25,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:31.93"} +{"sensors":[{"euler":{"heading":268.125,"pitch":146.1875,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":155.4375,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":130.875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":13.75,"pitch":-140.3125,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:31.194"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":145.9375,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":155.9375,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":131.1875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":13.6875,"pitch":-140.4375,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:31.295"} +{"sensors":[{"euler":{"heading":268.75,"pitch":145.6875,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":137.0625,"pitch":156.25,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":131.8125,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":13.625,"pitch":-140.5,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:31.396"} +{"sensors":[{"euler":{"heading":268.9375,"pitch":145.5,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":156.5,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":132.125,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":13.4375,"pitch":-140.6875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:31.497"} +{"sensors":[{"euler":{"heading":269.1875,"pitch":145.375,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":157.0,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":132.8125,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.4375,"pitch":-140.6875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:31.598"} +{"sensors":[{"euler":{"heading":269.4375,"pitch":145.25,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":137.5,"pitch":157.0625,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":133.375,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.375,"pitch":-140.75,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:31.699"} +{"sensors":[{"euler":{"heading":269.3125,"pitch":145.25,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":156.875,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":133.1875,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":13.1875,"pitch":-140.875,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:31.799"} +{"sensors":[{"euler":{"heading":268.875,"pitch":145.5,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":137.0625,"pitch":156.375,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":132.625,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":13.0625,"pitch":-140.9375,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:31.900"} +{"sensors":[{"euler":{"heading":268.625,"pitch":145.625,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":137.0,"pitch":156.0625,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":131.6875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":13.0625,"pitch":-140.875,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:32.0"} +{"sensors":[{"euler":{"heading":268.5,"pitch":145.75,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":156.0,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":131.3125,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":13.125,"pitch":-140.8125,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:32.102"} +{"sensors":[{"euler":{"heading":268.375,"pitch":145.8125,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":156.0625,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":130.9375,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":13.1875,"pitch":-140.75,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:32.202"} +{"sensors":[{"euler":{"heading":268.3125,"pitch":145.875,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":156.0625,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":130.6875,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":13.1875,"pitch":-140.75,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:32.303"} +{"sensors":[{"euler":{"heading":268.3125,"pitch":145.875,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":156.0625,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":130.625,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":13.1875,"pitch":-140.8125,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:32.404"} +{"sensors":[{"euler":{"heading":268.375,"pitch":145.875,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":156.125,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":130.8125,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":13.0625,"pitch":-140.875,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:32.504"} +{"sensors":[{"euler":{"heading":268.625,"pitch":145.75,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":137.125,"pitch":156.4375,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":130.8125,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.0,"pitch":-141.0,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:32.605"} +{"sensors":[{"euler":{"heading":269.0,"pitch":145.5,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":156.875,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":131.125,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.0625,"pitch":-141.0,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:32.706"} +{"sensors":[{"euler":{"heading":269.375,"pitch":145.1875,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":137.4375,"pitch":157.125,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":131.5,"roll":82.4375},"location":"Right Ankle"},{"euler":{"heading":13.0625,"pitch":-141.125,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:32.807"} +{"sensors":[{"euler":{"heading":269.4375,"pitch":145.125,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":137.4375,"pitch":157.0625,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":131.5625,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":12.875,"pitch":-141.3125,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:32.907"} +{"sensors":[{"euler":{"heading":269.8125,"pitch":144.9375,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":137.6875,"pitch":157.5,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":84.6875,"pitch":132.0,"roll":82.5},"location":"Right Ankle"},{"euler":{"heading":12.75,"pitch":-141.5,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:33.8"} +{"sensors":[{"euler":{"heading":270.0625,"pitch":144.6875,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":137.8125,"pitch":157.8125,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":132.8125,"roll":82.5625},"location":"Right Ankle"},{"euler":{"heading":12.75,"pitch":-141.5,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:33.109"} +{"sensors":[{"euler":{"heading":270.375,"pitch":144.5625,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":137.9375,"pitch":158.0625,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":133.4375,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":12.75,"pitch":-141.5,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:33.209"} +{"sensors":[{"euler":{"heading":270.625,"pitch":144.375,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":138.1875,"pitch":158.4375,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":133.625,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":12.8125,"pitch":-141.5,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:33.310"} +{"sensors":[{"euler":{"heading":270.375,"pitch":144.4375,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":138.0625,"pitch":158.1875,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":84.375,"pitch":133.1875,"roll":82.625},"location":"Right Ankle"},{"euler":{"heading":12.875,"pitch":-141.4375,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:33.410"} +{"sensors":[{"euler":{"heading":270.0,"pitch":144.625,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":137.75,"pitch":157.8125,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":132.375,"roll":82.5},"location":"Right Ankle"},{"euler":{"heading":12.9375,"pitch":-141.3125,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:33.511"} +{"sensors":[{"euler":{"heading":269.5625,"pitch":144.8125,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":137.6875,"pitch":157.5625,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":131.5,"roll":82.4375},"location":"Right Ankle"},{"euler":{"heading":13.125,"pitch":-141.125,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:33.612"} +{"sensors":[{"euler":{"heading":269.3125,"pitch":145.0,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":137.625,"pitch":157.3125,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":130.75,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":13.3125,"pitch":-140.875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:33.712"} +{"sensors":[{"euler":{"heading":269.0625,"pitch":145.25,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":156.875,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":130.75,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":13.5,"pitch":-140.6875,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:33.813"} +{"sensors":[{"euler":{"heading":268.8125,"pitch":145.5,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":137.3125,"pitch":156.625,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":130.75,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":13.625,"pitch":-140.4375,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:33.914"} +{"sensors":[{"euler":{"heading":268.5625,"pitch":145.6875,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":137.25,"pitch":156.375,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":130.625,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":13.75,"pitch":-140.375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:34.14"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":145.8125,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":156.0625,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":130.4375,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":-140.3125,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:34.116"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":145.875,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":156.125,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":130.5,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":-140.25,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:34.216"} +{"sensors":[{"euler":{"heading":268.375,"pitch":145.875,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":156.1875,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":130.5,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":-140.1875,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:34.317"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":145.8125,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":156.1875,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":130.5,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.1875,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:34.418"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":145.8125,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":156.1875,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":130.5,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.25,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:34.519"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":145.75,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":156.125,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":130.5625,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":-140.3125,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:34.620"} +{"sensors":[{"euler":{"heading":268.5,"pitch":145.6875,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":156.125,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":130.6875,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":-140.3125,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:34.720"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":145.6875,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":156.125,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":130.375,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":-140.3125,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:34.821"} +{"sensors":[{"euler":{"heading":268.25,"pitch":145.875,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":137.0625,"pitch":156.0,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":130.125,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":-140.375,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:34.922"} +{"sensors":[{"euler":{"heading":268.0,"pitch":146.0,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":155.625,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":129.8125,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":13.875,"pitch":-140.375,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:35.23"} +{"sensors":[{"euler":{"heading":267.875,"pitch":146.0625,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":136.8125,"pitch":155.375,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":129.4375,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":13.875,"pitch":-140.375,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:35.124"} +{"sensors":[{"euler":{"heading":267.6875,"pitch":146.1875,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":136.75,"pitch":155.1875,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":129.0,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.4375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:35.225"} +{"sensors":[{"euler":{"heading":267.6875,"pitch":146.1875,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":155.0625,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":128.9375,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.4375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:35.325"} +{"sensors":[{"euler":{"heading":267.6875,"pitch":146.1875,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":155.0625,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":128.9375,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.4375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:35.426"} +{"sensors":[{"euler":{"heading":267.6875,"pitch":146.1875,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":155.0,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":128.875,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.0625,"pitch":-140.375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:35.527"} +{"sensors":[{"euler":{"heading":267.6875,"pitch":146.25,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":155.0,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":128.875,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.0625,"pitch":-140.375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:35.628"} +{"sensors":[{"euler":{"heading":267.6875,"pitch":146.25,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":155.125,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":128.6875,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.0625,"pitch":-140.375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:35.729"} +{"sensors":[{"euler":{"heading":267.4375,"pitch":146.3125,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":155.125,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":128.6875,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":13.875,"pitch":-140.375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:35.829"} +{"sensors":[{"euler":{"heading":267.125,"pitch":146.4375,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":136.4375,"pitch":155.0,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":128.625,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":13.625,"pitch":-140.4375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:35.930"} +{"sensors":[{"euler":{"heading":267.0625,"pitch":146.5,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":136.5,"pitch":155.0625,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":128.3125,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":13.6875,"pitch":-140.4375,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:36.31"} +{"sensors":[{"euler":{"heading":267.25,"pitch":146.4375,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":128.125,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:36.132"} +{"sensors":[{"euler":{"heading":267.25,"pitch":146.4375,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.1875,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":128.0625,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:36.233"} +{"sensors":[{"euler":{"heading":267.25,"pitch":146.4375,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.1875,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":127.9375,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:36.334"} +{"sensors":[{"euler":{"heading":267.25,"pitch":146.375,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":155.25,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":127.8125,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":14.0,"pitch":-140.3125,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:36.435"} +{"sensors":[{"euler":{"heading":267.3125,"pitch":146.375,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":155.3125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":127.6875,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":-140.375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:36.535"} +{"sensors":[{"euler":{"heading":267.3125,"pitch":146.375,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":155.3125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":127.625,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":14.0,"pitch":-140.375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:36.636"} +{"sensors":[{"euler":{"heading":267.375,"pitch":146.375,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":155.375,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":127.125,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-140.4375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:36.737"} +{"sensors":[{"euler":{"heading":267.375,"pitch":146.375,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":155.375,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":127.0625,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.375,"pitch":-140.3125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:36.838"} +{"sensors":[{"euler":{"heading":267.125,"pitch":146.5,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.25,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":126.9375,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-140.25,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:36.939"} +{"sensors":[{"euler":{"heading":266.875,"pitch":146.6875,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.25,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":126.75,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.0625,"pitch":-140.25,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:37.40"} +{"sensors":[{"euler":{"heading":266.875,"pitch":146.6875,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.25,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":126.75,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.125,"pitch":-140.1875,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:37.140"} +{"sensors":[{"euler":{"heading":267.0,"pitch":146.6875,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.25,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":126.75,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.25,"pitch":-140.0,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:37.241"} +{"sensors":[{"euler":{"heading":267.0,"pitch":146.6875,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.3125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":126.75,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.3125,"pitch":-139.9375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:37.342"} +{"sensors":[{"euler":{"heading":266.9375,"pitch":146.6875,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.3125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":126.75,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.3125,"pitch":-139.875,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:37.442"} +{"sensors":[{"euler":{"heading":266.9375,"pitch":146.6875,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.25,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":126.8125,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.375,"pitch":-139.8125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:37.543"} +{"sensors":[{"euler":{"heading":267.0,"pitch":146.6875,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":155.25,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":126.8125,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.375,"pitch":-139.75,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:37.644"} +{"sensors":[{"euler":{"heading":267.1875,"pitch":146.5625,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":155.3125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":126.8125,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.5,"pitch":-139.625,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:37.745"} +{"sensors":[{"euler":{"heading":267.375,"pitch":146.4375,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":155.3125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":126.8125,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":14.6875,"pitch":-139.4375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:37.845"} +{"sensors":[{"euler":{"heading":267.5,"pitch":146.375,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":136.75,"pitch":155.3125,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":126.8125,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":15.0625,"pitch":-139.25,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:37.946"} +{"sensors":[{"euler":{"heading":267.375,"pitch":146.5,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":154.875,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":125.9375,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":15.125,"pitch":-139.4375,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:38.46"} +{"sensors":[{"euler":{"heading":267.1875,"pitch":146.625,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":154.5625,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":124.9375,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":15.1875,"pitch":-139.75,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:38.148"} +{"sensors":[{"euler":{"heading":267.25,"pitch":146.625,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":154.625,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":125.0,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":15.375,"pitch":-139.625,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:38.249"} +{"sensors":[{"euler":{"heading":267.25,"pitch":146.5,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":136.5,"pitch":154.5,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":125.0,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":15.25,"pitch":-139.5625,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:38.350"} +{"sensors":[{"euler":{"heading":266.875,"pitch":146.625,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":136.3125,"pitch":154.0,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":124.5,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":15.0,"pitch":-139.75,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:38.451"} +{"sensors":[{"euler":{"heading":266.5625,"pitch":146.8125,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":153.875,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":124.375,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":14.8125,"pitch":-139.75,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:38.551"} +{"sensors":[{"euler":{"heading":266.625,"pitch":146.8125,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":153.9375,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":124.375,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":14.875,"pitch":-139.625,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:38.652"} +{"sensors":[{"euler":{"heading":266.625,"pitch":146.8125,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":136.25,"pitch":153.9375,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":124.1875,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":14.9375,"pitch":-139.5625,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:38.753"} +{"sensors":[{"euler":{"heading":266.625,"pitch":146.875,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":136.125,"pitch":153.6875,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":124.0,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":15.0,"pitch":-139.5,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:38.854"} +{"sensors":[{"euler":{"heading":266.5625,"pitch":146.875,"roll":56.375},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":153.625,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":123.9375,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":15.125,"pitch":-139.4375,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:38.955"} +{"sensors":[{"euler":{"heading":266.5625,"pitch":146.875,"roll":56.375},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":153.5625,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":123.9375,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":15.25,"pitch":-139.3125,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:39.56"} +{"sensors":[{"euler":{"heading":266.625,"pitch":146.8125,"roll":56.375},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":153.5625,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":123.8125,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":15.375,"pitch":-139.25,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:39.157"} +{"sensors":[{"euler":{"heading":266.5,"pitch":146.875,"roll":56.375},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":153.5625,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":123.8125,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":15.3125,"pitch":-139.25,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:39.257"} +{"sensors":[{"euler":{"heading":266.5625,"pitch":146.75,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":153.625,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":123.5,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":15.375,"pitch":-139.1875,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:39.359"} +{"sensors":[{"euler":{"heading":267.375,"pitch":146.1875,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":153.9375,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":122.75,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":15.625,"pitch":-138.9375,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:39.459"} +{"sensors":[{"euler":{"heading":268.5625,"pitch":145.375,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":137.5,"pitch":154.875,"roll":73.0625},"location":"Left Ankle"},{"euler":{"heading":85.5,"pitch":122.1875,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":15.75,"pitch":-138.75,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:39.560"} +{"sensors":[{"euler":{"heading":270.375,"pitch":145.0625,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":139.125,"pitch":156.25,"roll":73.0625},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":121.6875,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":15.6875,"pitch":-138.5625,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:39.661"} +{"sensors":[{"euler":{"heading":271.4375,"pitch":144.875,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":140.5625,"pitch":157.625,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":121.5,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":15.25,"pitch":-138.5,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:39.761"} +{"sensors":[{"euler":{"heading":272.0625,"pitch":144.5625,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":140.9375,"pitch":158.125,"roll":72.875},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":121.5625,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":15.0,"pitch":-138.4375,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:39.862"} +{"sensors":[{"euler":{"heading":272.5625,"pitch":144.4375,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":140.4375,"pitch":157.0,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":121.375,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":15.125,"pitch":-138.375,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:39.964"} +{"sensors":[{"euler":{"heading":273.5,"pitch":143.9375,"roll":54.875},"location":"Left Knee"},{"euler":{"heading":140.5,"pitch":157.1875,"roll":72.75},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":120.875,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":15.3125,"pitch":-138.25,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:40.65"} +{"sensors":[{"euler":{"heading":275.9375,"pitch":143.0,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":142.625,"pitch":160.0625,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":120.1875,"roll":81.25},"location":"Right Ankle"},{"euler":{"heading":15.8125,"pitch":-138.1875,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:40.166"} +{"sensors":[{"euler":{"heading":278.5625,"pitch":142.1875,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":162.9375,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":86.4375,"pitch":119.1875,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":16.25,"pitch":-138.1875,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:40.267"} +{"sensors":[{"euler":{"heading":279.625,"pitch":142.0625,"roll":53.875},"location":"Left Knee"},{"euler":{"heading":146.5,"pitch":163.9375,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":118.8125,"roll":81.0},"location":"Right Ankle"},{"euler":{"heading":16.25,"pitch":-138.375,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:40.368"} +{"sensors":[{"euler":{"heading":277.5,"pitch":143.3125,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":144.3125,"pitch":160.625,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":119.625,"roll":80.875},"location":"Right Ankle"},{"euler":{"heading":16.375,"pitch":-138.375,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:40.469"} +{"sensors":[{"euler":{"heading":276.5,"pitch":144.6875,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":143.4375,"pitch":157.8125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":121.0625,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":16.8125,"pitch":-138.375,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:40.570"} +{"sensors":[{"euler":{"heading":276.25,"pitch":145.375,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":155.1875,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":88.0,"pitch":122.3125,"roll":80.4375},"location":"Right Ankle"},{"euler":{"heading":17.4375,"pitch":-138.25,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:40.671"} +{"sensors":[{"euler":{"heading":275.5,"pitch":145.875,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":142.5,"pitch":152.75,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":124.6875,"roll":80.3125},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-137.4375,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:40.772"} +{"sensors":[{"euler":{"heading":275.1875,"pitch":146.25,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":142.25,"pitch":150.6875,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":128.0,"roll":80.5},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-136.4375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:40.873"} +{"sensors":[{"euler":{"heading":275.3125,"pitch":146.3125,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":142.5,"pitch":149.4375,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":132.25,"roll":80.875},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-134.9375,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:40.974"} +{"sensors":[{"euler":{"heading":275.1875,"pitch":146.4375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":142.6875,"pitch":149.25,"roll":75.5},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":136.3125,"roll":81.25},"location":"Right Ankle"},{"euler":{"heading":21.0,"pitch":-134.125,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:41.75"} +{"sensors":[{"euler":{"heading":275.0,"pitch":146.6875,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":142.4375,"pitch":148.875,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":139.8125,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-133.8125,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:41.176"} +{"sensors":[{"euler":{"heading":274.5,"pitch":147.0625,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":142.125,"pitch":148.375,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":143.6875,"roll":81.0},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-133.25,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:41.276"} +{"sensors":[{"euler":{"heading":274.4375,"pitch":147.25,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":142.3125,"pitch":148.75,"roll":75.4375},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":150.625,"roll":80.1875},"location":"Right Ankle"},{"euler":{"heading":21.1875,"pitch":-133.6875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:41.377"} +{"sensors":[{"euler":{"heading":274.9375,"pitch":146.9375,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":142.4375,"pitch":149.1875,"roll":75.4375},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":154.5625,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":21.125,"pitch":-133.4375,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:41.478"} +{"sensors":[{"euler":{"heading":275.1875,"pitch":146.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":142.5,"pitch":149.1875,"roll":75.5},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":160.8125,"roll":79.0},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-133.625,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:41.578"} +{"sensors":[{"euler":{"heading":275.3125,"pitch":146.75,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":142.5,"pitch":149.3125,"roll":75.4375},"location":"Left Ankle"},{"euler":{"heading":74.8125,"pitch":159.875,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":18.75,"pitch":-134.5625,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:41.679"} +{"sensors":[{"euler":{"heading":275.8125,"pitch":146.625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":142.3125,"pitch":149.3125,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":152.375,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":17.6875,"pitch":-136.8125,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:41.780"} +{"sensors":[{"euler":{"heading":276.6875,"pitch":146.4375,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":142.4375,"pitch":150.0625,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":144.5625,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":18.1875,"pitch":-139.125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:41.881"} +{"sensors":[{"euler":{"heading":278.1875,"pitch":145.9375,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":143.25,"pitch":152.0,"roll":74.5625},"location":"Left Ankle"},{"euler":{"heading":83.125,"pitch":139.4375,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":18.8125,"pitch":-140.4375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:41.982"} +{"sensors":[{"euler":{"heading":280.9375,"pitch":144.9375,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":145.9375,"pitch":156.875,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":137.4375,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-140.125,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:42.83"} +{"sensors":[{"euler":{"heading":283.5625,"pitch":145.0625,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":150.0,"pitch":161.5625,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":137.0625,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":20.0,"pitch":-139.4375,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:42.184"} +{"sensors":[{"euler":{"heading":286.0,"pitch":145.5625,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":153.5,"pitch":162.625,"roll":75.0625},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":137.75,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":20.1875,"pitch":-138.6875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:42.285"} +{"sensors":[{"euler":{"heading":286.8125,"pitch":145.9375,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":154.0625,"pitch":160.1875,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":137.0,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-138.75,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:42.386"} +{"sensors":[{"euler":{"heading":287.0,"pitch":146.125,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":152.375,"pitch":155.125,"roll":75.0},"location":"Left Ankle"},{"euler":{"heading":83.1875,"pitch":135.5,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-138.75,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:42.487"} +{"sensors":[{"euler":{"heading":287.3125,"pitch":146.4375,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":150.8125,"pitch":152.5625,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":135.375,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":20.6875,"pitch":-138.75,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:42.588"} +{"sensors":[{"euler":{"heading":286.1875,"pitch":146.8125,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":148.6875,"pitch":150.75,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":135.4375,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-138.9375,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:42.688"} +{"sensors":[{"euler":{"heading":284.5625,"pitch":147.3125,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":147.625,"pitch":150.8125,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":134.75,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":20.1875,"pitch":-139.3125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:42.789"} +{"sensors":[{"euler":{"heading":283.875,"pitch":147.5,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":147.625,"pitch":151.4375,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":134.5625,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":20.0625,"pitch":-139.125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:42.890"} +{"sensors":[{"euler":{"heading":283.75,"pitch":147.8125,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":148.4375,"pitch":152.1875,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":134.8125,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-139.0625,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:42.991"} +{"sensors":[{"euler":{"heading":283.875,"pitch":147.75,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":148.625,"pitch":152.0625,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":82.9375,"pitch":135.6875,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-138.6875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:43.95"} +{"sensors":[{"euler":{"heading":282.5625,"pitch":147.8125,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":148.1875,"pitch":152.0625,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":136.3125,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-138.625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:43.195"} +{"sensors":[{"euler":{"heading":281.375,"pitch":147.875,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":147.4375,"pitch":151.0,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":136.9375,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":20.1875,"pitch":-138.5625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:43.296"} +{"sensors":[{"euler":{"heading":280.4375,"pitch":147.875,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":146.6875,"pitch":149.875,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":138.125,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":19.6875,"pitch":-138.625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:43.396"} +{"sensors":[{"euler":{"heading":279.6875,"pitch":147.9375,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":146.25,"pitch":149.3125,"roll":74.5625},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":139.25,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":19.4375,"pitch":-138.75,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:43.497"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.875,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":149.0,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":79.0,"pitch":140.375,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-138.5,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:43.598"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":147.8125,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":146.0625,"pitch":148.5625,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":141.6875,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-138.3125,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:43.699"} +{"sensors":[{"euler":{"heading":279.625,"pitch":147.625,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":148.4375,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":77.8125,"pitch":142.0625,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":19.9375,"pitch":-138.1875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:43.799"} +{"sensors":[{"euler":{"heading":279.6875,"pitch":147.5,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":146.1875,"pitch":148.25,"roll":75.0},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":142.125,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-138.3125,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:43.900"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.375,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":146.0625,"pitch":148.0,"roll":75.0625},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":142.1875,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":20.875,"pitch":-138.25,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:44.1"} +{"sensors":[{"euler":{"heading":279.6875,"pitch":147.25,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":147.9375,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":141.9375,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-138.3125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:44.102"} +{"sensors":[{"euler":{"heading":279.875,"pitch":147.0625,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":146.1875,"pitch":148.125,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":141.3125,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-138.375,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:44.203"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":147.125,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":146.0,"pitch":147.9375,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":140.3125,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-138.625,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:44.303"} +{"sensors":[{"euler":{"heading":279.5,"pitch":147.3125,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":147.6875,"roll":75.0},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":139.4375,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-138.875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:44.404"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.4375,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":147.9375,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":138.8125,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":21.375,"pitch":-138.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:44.505"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":147.4375,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":147.875,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":138.5625,"roll":79.0625},"location":"Right Ankle"},{"euler":{"heading":21.0,"pitch":-138.6875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:44.606"} +{"sensors":[{"euler":{"heading":278.5,"pitch":147.625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":144.4375,"pitch":147.625,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":138.3125,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-138.8125,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:44.707"} +{"sensors":[{"euler":{"heading":277.8125,"pitch":147.8125,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":143.75,"pitch":147.875,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":137.75,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":20.1875,"pitch":-139.0,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:44.808"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":147.0625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":144.6875,"pitch":147.3125,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":138.0,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.75,"pitch":-141.0625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-67.0625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":91.3125,"pitch":-135.75,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:51.178"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":147.0,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":144.75,"pitch":147.5625,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":138.1875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.6875,"pitch":-141.125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-67.0,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":92.0,"pitch":-136.5625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:51.278"} +{"sensors":[{"euler":{"heading":279.625,"pitch":146.6875,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":144.8125,"pitch":147.9375,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":138.375,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":20.6875,"pitch":-141.1875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-67.125,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":92.6875,"pitch":-137.3125,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:51.379"} +{"sensors":[{"euler":{"heading":280.0,"pitch":146.5625,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":145.0,"pitch":148.375,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":138.5625,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":20.6875,"pitch":-141.1875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-67.4375,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":93.3125,"pitch":-138.0625,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:51.480"} +{"sensors":[{"euler":{"heading":280.125,"pitch":146.4375,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":148.625,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":138.6875,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":20.5625,"pitch":-141.25,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-67.4375,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":93.8125,"pitch":-138.6875,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:51.580"} +{"sensors":[{"euler":{"heading":280.1875,"pitch":146.4375,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":148.5,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":138.75,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-141.4375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-67.3125,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":94.1875,"pitch":-139.0625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:51.682"} +{"sensors":[{"euler":{"heading":280.25,"pitch":146.375,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":148.5625,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":138.75,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-141.4375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":175.875,"pitch":-67.125,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-139.3125,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:51.783"} +{"sensors":[{"euler":{"heading":280.3125,"pitch":146.3125,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":148.625,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":138.75,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":20.6875,"pitch":-141.375,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-67.0,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":94.75,"pitch":-139.625,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:51.884"} +{"sensors":[{"euler":{"heading":280.25,"pitch":146.375,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":148.5625,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":138.6875,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":20.75,"pitch":-141.25,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":175.875,"pitch":-66.875,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-139.875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:51.984"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":146.5625,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":148.1875,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":138.25,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":20.75,"pitch":-141.25,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-66.5625,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":95.125,"pitch":-140.0625,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:52.86"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.0625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":144.6875,"pitch":147.3125,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":137.875,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":20.75,"pitch":-141.3125,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.9375,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-140.375,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:52.186"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.25,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":144.625,"pitch":147.1875,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":137.6875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-141.1875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.9375,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-140.1875,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:52.287"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.3125,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":144.75,"pitch":147.5625,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":137.5625,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":21.0625,"pitch":-140.9375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-66.125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-140.0625,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:52.388"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.25,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":144.8125,"pitch":147.6875,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":137.3125,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":21.1875,"pitch":-140.875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-66.125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-140.3125,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:52.489"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.25,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":144.75,"pitch":147.5625,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":137.1875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":21.0625,"pitch":-140.9375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-66.0,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-140.5625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:52.590"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":147.3125,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":144.75,"pitch":147.4375,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":137.1875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":21.0625,"pitch":-140.9375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-66.125,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-140.5625,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:52.690"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":147.25,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":144.8125,"pitch":147.6875,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":137.25,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":21.1875,"pitch":-140.9375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-65.8125,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-140.5625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:52.791"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":147.1875,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":144.875,"pitch":147.75,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":137.5,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-140.875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-65.5,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.5,"pitch":-140.6875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:52.892"} +{"sensors":[{"euler":{"heading":279.75,"pitch":147.0625,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":144.9375,"pitch":147.9375,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":137.5625,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-140.875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-65.6875,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.75,"pitch":-140.875,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:52.993"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":147.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.125,"pitch":148.3125,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":137.625,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":21.0625,"pitch":-141.125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-65.5625,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.9375,"pitch":-141.1875,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:53.94"} +{"sensors":[{"euler":{"heading":279.6875,"pitch":147.0625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":148.1875,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":137.625,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-141.3125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-65.5625,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":96.0,"pitch":-141.3125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:53.195"} +{"sensors":[{"euler":{"heading":279.875,"pitch":146.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":148.6875,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":137.8125,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":20.6875,"pitch":-141.375,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-65.6875,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":96.0,"pitch":-141.25,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:53.296"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":146.6875,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":149.3125,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":138.1875,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":20.5625,"pitch":-141.5,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-65.75,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":96.0,"pitch":-141.25,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:53.397"} +{"sensors":[{"euler":{"heading":280.375,"pitch":146.5625,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":149.6875,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":138.625,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-141.5,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-65.75,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":96.125,"pitch":-141.3125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:53.498"} +{"sensors":[{"euler":{"heading":280.4375,"pitch":146.5,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":149.6875,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":138.5,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-141.5,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-65.8125,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":96.125,"pitch":-141.4375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:53.598"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":146.75,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":145.25,"pitch":149.125,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":137.9375,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":20.5625,"pitch":-141.5625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-65.625,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":96.0625,"pitch":-141.5,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:53.699"} +{"sensors":[{"euler":{"heading":279.625,"pitch":147.0625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":148.75,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":137.75,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":20.4375,"pitch":-141.5625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.375,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":95.75,"pitch":-141.375,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:53.800"} +{"sensors":[{"euler":{"heading":279.5,"pitch":147.1875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":148.6875,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":137.75,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.5625,"pitch":-141.5,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.25,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":95.625,"pitch":-141.1875,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:53.901"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.3125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":148.6875,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":137.6875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-141.375,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-65.125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-141.125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:54.1"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":147.375,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":148.6875,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":137.6875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.6875,"pitch":-141.375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-65.125,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":95.5,"pitch":-141.0625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:54.102"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.375,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":145.125,"pitch":148.75,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":137.6875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-141.4375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.0625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-141.0625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:54.204"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.375,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":145.125,"pitch":148.75,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":137.6875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.5625,"pitch":-141.4375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.0625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-141.0625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:54.304"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.3125,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":148.75,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":137.6875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-141.5,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.0625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":95.5,"pitch":-141.0625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:54.405"} +{"sensors":[{"euler":{"heading":279.5,"pitch":147.1875,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":145.25,"pitch":149.0625,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":137.625,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-141.5625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.0625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-141.125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:54.506"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.1875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":149.3125,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":137.625,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-141.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-65.0625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-141.125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:54.607"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":149.375,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":137.625,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-141.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-65.0625,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-141.125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:54.708"} +{"sensors":[{"euler":{"heading":279.6875,"pitch":147.125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":149.5625,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":137.625,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-141.6875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-65.0625,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":95.6875,"pitch":-141.25,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:54.808"} +{"sensors":[{"euler":{"heading":279.75,"pitch":147.0625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":149.875,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":137.75,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":20.1875,"pitch":-141.75,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-65.1875,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-141.1875,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:54.909"} +{"sensors":[{"euler":{"heading":279.875,"pitch":146.875,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":150.25,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":137.9375,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-141.8125,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-65.4375,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-141.125,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:55.10"} +{"sensors":[{"euler":{"heading":280.0,"pitch":146.8125,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":150.75,"roll":74.5625},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":138.0,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":20.0,"pitch":-142.0,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-65.625,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-141.3125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:55.111"} +{"sensors":[{"euler":{"heading":280.125,"pitch":146.75,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.9375,"roll":74.5},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":138.25,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":19.8125,"pitch":-142.0,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":-65.875,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":95.5,"pitch":-141.5,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:55.212"} +{"sensors":[{"euler":{"heading":280.25,"pitch":146.75,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":151.125,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":138.4375,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":19.75,"pitch":-142.0,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":175.3125,"pitch":-66.1875,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-141.625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:55.312"} +{"sensors":[{"euler":{"heading":280.25,"pitch":146.8125,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":151.3125,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":138.25,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":19.75,"pitch":-141.9375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":-66.4375,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-141.6875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:55.413"} +{"sensors":[{"euler":{"heading":280.1875,"pitch":146.875,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":151.4375,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":137.9375,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":19.6875,"pitch":-141.9375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-66.625,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-141.8125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:55.514"} +{"sensors":[{"euler":{"heading":280.0,"pitch":146.9375,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":151.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":137.8125,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":19.75,"pitch":-141.8125,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-66.8125,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-141.8125,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:55.615"} +{"sensors":[{"euler":{"heading":279.9375,"pitch":147.0,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":151.5625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":137.8125,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-141.5625,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-66.8125,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":95.125,"pitch":-141.75,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:55.716"} +{"sensors":[{"euler":{"heading":279.9375,"pitch":147.0,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":151.625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":137.6875,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":20.0,"pitch":-141.4375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-66.8125,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":95.125,"pitch":-141.75,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:55.817"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":147.0,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":151.75,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":137.75,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-141.25,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-66.8125,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-141.8125,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:55.918"} +{"sensors":[{"euler":{"heading":280.125,"pitch":147.0,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":152.0,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":137.9375,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-141.1875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-66.8125,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.75,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:56.19"} +{"sensors":[{"euler":{"heading":280.125,"pitch":147.0,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":152.0,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":137.8125,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-141.1875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-67.0,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.6875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:56.120"} +{"sensors":[{"euler":{"heading":280.125,"pitch":147.0,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":152.0,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":137.8125,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.25,"pitch":-141.0625,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-67.1875,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.6875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:56.222"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":147.0625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":152.0,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":137.875,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-140.9375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-67.0,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.6875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:56.323"} +{"sensors":[{"euler":{"heading":280.0,"pitch":147.0625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":152.0,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":137.9375,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-140.875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-66.8125,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-141.625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:56.424"} +{"sensors":[{"euler":{"heading":280.0,"pitch":147.0625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":152.125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":137.9375,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.25,"pitch":-140.8125,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-66.875,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-141.5625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:56.524"} +{"sensors":[{"euler":{"heading":280.0,"pitch":147.0625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":152.125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":137.9375,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.25,"pitch":-140.8125,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-66.9375,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-141.5625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:56.624"} +{"sensors":[{"euler":{"heading":280.0,"pitch":147.0625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":152.125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":137.9375,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-140.75,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-66.9375,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-141.5625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:56.725"} +{"sensors":[{"euler":{"heading":280.0,"pitch":147.0625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":152.125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":137.9375,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-140.6875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-66.9375,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-141.5625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:56.826"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":147.0625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":152.1875,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":138.0,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.4375,"pitch":-140.6875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-66.6875,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.6875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:56.926"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":147.0625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":152.0625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":137.9375,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-140.6875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-66.5625,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:57.27"} +{"sensors":[{"euler":{"heading":279.9375,"pitch":147.125,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":152.0625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":137.6875,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-140.6875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-66.4375,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:57.129"} +{"sensors":[{"euler":{"heading":279.75,"pitch":147.3125,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":151.75,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":137.25,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-140.6875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-66.1875,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:57.229"} +{"sensors":[{"euler":{"heading":279.625,"pitch":147.4375,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":151.5,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":137.0,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":20.5625,"pitch":-140.6875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.9375,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.625,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:57.329"} +{"sensors":[{"euler":{"heading":279.625,"pitch":147.5,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":151.4375,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":136.9375,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-140.6875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.6875,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.6875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:57.430"} +{"sensors":[{"euler":{"heading":279.625,"pitch":147.5625,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":151.375,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":136.875,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":21.0,"pitch":-140.625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.5625,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.625,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:57.531"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":147.625,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":151.125,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":136.875,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":21.1875,"pitch":-140.5625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-65.375,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.4375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:57.632"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":147.75,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":150.8125,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":137.0,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-140.5625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-65.125,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-141.375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:57.733"} +{"sensors":[{"euler":{"heading":279.0625,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":137.0625,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-140.5625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-64.8125,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-141.375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:57.835"} +{"sensors":[{"euler":{"heading":279.0625,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":137.0625,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.5,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-64.625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-141.3125,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:57.935"} +{"sensors":[{"euler":{"heading":279.125,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":137.0625,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-140.4375,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-64.625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-141.25,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:58.35"} +{"sensors":[{"euler":{"heading":279.0625,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":150.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":136.9375,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-140.4375,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-64.625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.6875,"pitch":-141.125,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:58.136"} +{"sensors":[{"euler":{"heading":279.0,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":136.8125,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":21.375,"pitch":-140.5625,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-64.625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-141.0625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:58.237"} +{"sensors":[{"euler":{"heading":279.0,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":136.6875,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-140.625,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-64.625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-141.0625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:58.338"} +{"sensors":[{"euler":{"heading":279.0,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":136.5,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-140.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-64.625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-141.0625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:58.439"} +{"sensors":[{"euler":{"heading":279.0625,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":136.375,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":21.1875,"pitch":-140.6875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-64.625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:58.539"} +{"sensors":[{"euler":{"heading":279.0,"pitch":148.0,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":150.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":136.5,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-140.6875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-64.5625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:58.640"} +{"sensors":[{"euler":{"heading":279.0,"pitch":148.0,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":136.5,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-140.625,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-64.4375,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:58.741"} +{"sensors":[{"euler":{"heading":278.9375,"pitch":148.125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":136.5,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-140.625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-64.1875,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":94.6875,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:58.841"} +{"sensors":[{"euler":{"heading":278.8125,"pitch":148.125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":150.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":136.5625,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":21.5625,"pitch":-140.625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-64.0,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.625,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:58.942"} +{"sensors":[{"euler":{"heading":278.6875,"pitch":148.1875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.25,"pitch":150.3125,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":136.75,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":21.5625,"pitch":-140.625,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-64.0,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-141.0625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:59.43"} +{"sensors":[{"euler":{"heading":278.6875,"pitch":148.1875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":150.5,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":137.125,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-140.5625,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-64.0,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.4375,"pitch":-141.0,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:59.144"} +{"sensors":[{"euler":{"heading":278.6875,"pitch":148.1875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":150.5,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":137.375,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-140.625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-63.9375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-141.0,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:59.244"} +{"sensors":[{"euler":{"heading":278.6875,"pitch":148.1875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":150.4375,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":137.4375,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-140.6875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-63.9375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-141.0625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:59.344"} +{"sensors":[{"euler":{"heading":278.75,"pitch":148.1875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":150.5,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":137.9375,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.6875,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-63.9375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-141.0625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:59.444"} +{"sensors":[{"euler":{"heading":278.8125,"pitch":148.125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":150.5,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":138.0625,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":21.375,"pitch":-140.75,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-63.8125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-141.0625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:59.545"} +{"sensors":[{"euler":{"heading":278.9375,"pitch":148.0625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":150.5,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":138.1875,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-140.875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-63.625,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.6875,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:59.645"} +{"sensors":[{"euler":{"heading":278.875,"pitch":148.0625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":150.5625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":138.4375,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-140.875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-63.625,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.6875,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:59.746"} +{"sensors":[{"euler":{"heading":278.875,"pitch":148.125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":150.5625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":138.5625,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-140.9375,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-63.625,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.6875,"pitch":-141.1875,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:59.846"} +{"sensors":[{"euler":{"heading":278.9375,"pitch":148.125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":138.625,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-140.9375,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-63.625,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.75,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:08:59.947"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":138.6875,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":21.375,"pitch":-140.875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.875,"pitch":-63.625,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:00.48"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":138.9375,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5625,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:00.148"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":148.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":139.0625,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5625,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:00.248"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.125,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:00.349"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.125,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:00.449"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.1875,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.4375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:00.550"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:00.651"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-141.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:00.751"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.8125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-141.1875,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:00.851"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0625,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.375,"pitch":-140.8125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.4375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:00.952"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0625,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":150.5,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-140.8125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.4375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:01.53"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":148.0,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":150.6875,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.4375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:01.153"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":148.0,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":150.75,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.4375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:01.254"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":150.75,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:01.355"} +{"sensors":[{"euler":{"heading":279.125,"pitch":148.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":150.75,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.5625,"pitch":-140.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.125,"pitch":-141.5625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:01.456"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":148.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":150.75,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.5625,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.125,"pitch":-141.5625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:01.557"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":148.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":150.75,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.5625,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:01.658"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":148.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":150.75,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.4375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.125,"pitch":-141.5625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:01.759"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":148.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":150.8125,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.4375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:01.860"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":147.9375,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":151.1875,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.4375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:01.961"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":147.9375,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":151.25,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.4375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:02.62"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":151.25,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-63.4375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:02.163"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":151.25,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:02.264"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":151.25,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:02.365"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":151.25,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-140.625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:02.465"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.9375,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":151.3125,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:02.566"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":151.3125,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:02.667"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":151.3125,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:02.767"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":151.3125,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.5,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:02.869"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":151.3125,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:02.970"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":151.3125,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":139.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:03.71"} +{"sensors":[{"euler":{"heading":279.25,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:03.172"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-140.5625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:03.273"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.6875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:03.374"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-141.6875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:03.475"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.6875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:03.576"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-140.625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.6875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:03.677"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-140.625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-141.75,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:03.778"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-140.625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-141.75,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:03.879"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-141.8125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:03.980"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.375,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-141.875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:04.80"} +{"sensors":[{"euler":{"heading":279.375,"pitch":147.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-141.875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:04.181"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":147.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-140.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-141.875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:04.282"} +{"sensors":[{"euler":{"heading":279.5,"pitch":147.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-140.6875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-141.9375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:04.383"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.75,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-140.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.5,"pitch":-141.9375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:04.483"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.75,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-140.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.5,"pitch":-141.9375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:04.584"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.75,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-140.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-141.9375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:04.684"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-140.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-141.875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:04.784"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-140.5625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.25,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-141.875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:04.885"} +{"sensors":[{"euler":{"heading":279.5,"pitch":147.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-140.5625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-141.8125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:04.986"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-140.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.6875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:05.87"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":147.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-140.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-141.625,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:05.188"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":147.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-140.625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-141.625,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:05.288"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":147.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-140.6875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.6875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:05.388"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":147.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-140.6875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.6875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:05.489"} +{"sensors":[{"euler":{"heading":279.5,"pitch":147.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-140.75,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.75,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:05.589"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.75,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-140.75,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.75,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:05.689"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.75,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-140.75,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.75,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:05.790"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.75,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-140.8125,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.75,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:05.890"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.75,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-140.8125,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.75,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:05.991"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":147.75,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-140.875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.8125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:06.91"} +{"sensors":[{"euler":{"heading":279.625,"pitch":147.6875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-140.875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.25,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:06.192"} +{"sensors":[{"euler":{"heading":279.6875,"pitch":147.6875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-140.875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.25,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.9375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:06.293"} +{"sensors":[{"euler":{"heading":279.75,"pitch":147.6875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-140.875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.25,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-141.9375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:06.393"} +{"sensors":[{"euler":{"heading":279.75,"pitch":147.6875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-140.9375,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.25,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:06.494"} +{"sensors":[{"euler":{"heading":279.75,"pitch":147.6875,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-140.875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.0625,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:06.595"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":147.625,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":22.0,"pitch":-140.875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.0,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:06.696"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":147.625,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":22.0,"pitch":-140.8125,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.0,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:06.797"} +{"sensors":[{"euler":{"heading":279.75,"pitch":147.6875,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.4375,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":22.0,"pitch":-140.8125,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-62.9375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:06.898"} +{"sensors":[{"euler":{"heading":279.75,"pitch":147.6875,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":22.0625,"pitch":-140.75,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-62.875,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-141.75,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:06.998"} +{"sensors":[{"euler":{"heading":279.75,"pitch":147.6875,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.4375,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":22.25,"pitch":-140.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":-62.875,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-141.6875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:07.99"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":147.625,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":152.125,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":139.25,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":22.375,"pitch":-140.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":176.1875,"pitch":-63.125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-141.0625,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:07.199"} +{"sensors":[{"euler":{"heading":280.1875,"pitch":147.5,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":145.9375,"pitch":152.9375,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":138.25,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":22.9375,"pitch":-140.5625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":-63.4375,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-140.625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:07.300"} +{"sensors":[{"euler":{"heading":280.75,"pitch":147.375,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":146.0625,"pitch":153.125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":138.0,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":23.5,"pitch":-140.3125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":-63.4375,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-140.9375,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:07.400"} +{"sensors":[{"euler":{"heading":281.125,"pitch":147.25,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":146.3125,"pitch":153.3125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":139.5625,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":24.25,"pitch":-139.3125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":-63.5625,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-141.0,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:07.500"} +{"sensors":[{"euler":{"heading":281.5625,"pitch":147.1875,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":146.5,"pitch":153.5,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":142.25,"roll":80.125},"location":"Right Ankle"},{"euler":{"heading":25.25,"pitch":-138.0,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":177.1875,"pitch":-63.6875,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":95.6875,"pitch":-141.1875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:07.601"} +{"sensors":[{"euler":{"heading":281.5,"pitch":147.375,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":146.3125,"pitch":152.875,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":143.1875,"roll":80.4375},"location":"Right Ankle"},{"euler":{"heading":25.625,"pitch":-138.0,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":-64.3125,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-141.5,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:07.701"} +{"sensors":[{"euler":{"heading":280.8125,"pitch":148.0625,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":145.875,"pitch":151.8125,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":139.9375,"roll":80.875},"location":"Right Ankle"},{"euler":{"heading":25.5625,"pitch":-138.5,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":180.75,"pitch":-65.5,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.875,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:07.802"} +{"sensors":[{"euler":{"heading":280.3125,"pitch":148.5625,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":151.4375,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":135.25,"roll":80.8125},"location":"Right Ankle"},{"euler":{"heading":25.5,"pitch":-138.625,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":182.0625,"pitch":-66.0625,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-141.6875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:07.902"} +{"sensors":[{"euler":{"heading":280.125,"pitch":148.75,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":151.9375,"roll":73.0},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":130.5,"roll":80.3125},"location":"Right Ankle"},{"euler":{"heading":25.625,"pitch":-138.875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":181.5625,"pitch":-66.375,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":94.375,"pitch":-141.0,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:08.2"} +{"sensors":[{"euler":{"heading":279.9375,"pitch":148.75,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":153.1875,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":126.75,"roll":80.1875},"location":"Right Ankle"},{"euler":{"heading":25.125,"pitch":-139.0,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":180.6875,"pitch":-67.25,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":94.0625,"pitch":-139.6875,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:08.103"} +{"sensors":[{"euler":{"heading":278.5,"pitch":149.0625,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":144.625,"pitch":155.625,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":123.375,"roll":80.4375},"location":"Right Ankle"},{"euler":{"heading":24.25,"pitch":-138.5625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":179.1875,"pitch":-68.4375,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":92.0625,"pitch":-136.625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:08.203"} +{"sensors":[{"euler":{"heading":277.375,"pitch":148.6875,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":160.0,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":121.125,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":22.875,"pitch":-138.625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":177.9375,"pitch":-69.6875,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":88.0,"pitch":-132.125,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:08.304"} +{"sensors":[{"euler":{"heading":277.1875,"pitch":147.9375,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":147.9375,"pitch":168.6875,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":119.625,"roll":80.375},"location":"Right Ankle"},{"euler":{"heading":22.25,"pitch":-138.4375,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":177.375,"pitch":-69.8125,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":84.6875,"pitch":-128.0625,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:08.404"} +{"sensors":[{"euler":{"heading":277.25,"pitch":147.625,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":147.5,"pitch":168.875,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":119.25,"roll":80.125},"location":"Right Ankle"},{"euler":{"heading":23.0625,"pitch":-138.0,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":177.4375,"pitch":-69.4375,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":83.3125,"pitch":-125.9375,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:08.505"} +{"sensors":[{"euler":{"heading":275.125,"pitch":150.9375,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":159.6875,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":119.5625,"roll":79.9375},"location":"Right Ankle"},{"euler":{"heading":23.8125,"pitch":-137.6875,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":177.4375,"pitch":-68.9375,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":82.0625,"pitch":-124.375,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:08.605"} +{"sensors":[{"euler":{"heading":272.4375,"pitch":155.0625,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":143.6875,"pitch":153.0625,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":119.75,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":24.125,"pitch":-137.5,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":177.25,"pitch":-68.25,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":80.5,"pitch":-122.625,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:08.705"} +{"sensors":[{"euler":{"heading":270.0625,"pitch":158.5625,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":143.0,"pitch":149.125,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":120.375,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":24.8125,"pitch":-137.3125,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":177.375,"pitch":-67.5625,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-120.25,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:08.806"} +{"sensors":[{"euler":{"heading":267.5625,"pitch":162.3125,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":141.125,"pitch":143.5,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":121.0625,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":25.75,"pitch":-137.0625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":-67.25,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":77.1875,"pitch":-119.125,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:08.906"} +{"sensors":[{"euler":{"heading":263.1875,"pitch":166.8125,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":139.25,"pitch":137.9375,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":121.625,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":26.25,"pitch":-137.0,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":-66.9375,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":68.875,"pitch":-118.1875,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:09.7"} +{"sensors":[{"euler":{"heading":260.25,"pitch":171.375,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":134.0625,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":122.125,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":26.75,"pitch":-136.8125,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":177.8125,"pitch":-66.75,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":70.9375,"pitch":-117.3125,"roll":43.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:09.107"} +{"sensors":[{"euler":{"heading":258.375,"pitch":175.5625,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":135.6875,"pitch":131.0,"roll":63.625},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":122.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":27.0625,"pitch":-136.8125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":178.0,"pitch":-66.625,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":72.375,"pitch":-116.8125,"roll":42.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:09.208"} +{"sensors":[{"euler":{"heading":255.0,"pitch":-179.9375,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":133.9375,"pitch":128.3125,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":122.0625,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":27.375,"pitch":-136.5625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":177.9375,"pitch":-66.625,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":73.25,"pitch":-116.875,"roll":41.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:09.308"} +{"sensors":[{"euler":{"heading":252.25,"pitch":-176.75,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":133.3125,"pitch":127.3125,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":122.3125,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":27.4375,"pitch":-136.3125,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":-66.8125,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":73.5625,"pitch":-116.75,"roll":40.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:09.409"} +{"sensors":[{"euler":{"heading":251.75,"pitch":-176.0625,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":133.625,"pitch":127.625,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":88.875,"pitch":122.25,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":27.4375,"pitch":-136.1875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":177.625,"pitch":-67.0625,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":73.75,"pitch":-116.25,"roll":40.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:09.509"} +{"sensors":[{"euler":{"heading":252.5,"pitch":-176.5,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":134.3125,"pitch":128.125,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":122.125,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":27.375,"pitch":-136.1875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":-67.25,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":73.8125,"pitch":-116.0,"roll":40.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:09.610"} +{"sensors":[{"euler":{"heading":253.375,"pitch":-177.125,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":134.9375,"pitch":128.6875,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":122.0625,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-136.25,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":-67.4375,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":73.75,"pitch":-115.875,"roll":40.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:09.710"} +{"sensors":[{"euler":{"heading":254.25,"pitch":-177.8125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":135.375,"pitch":129.0625,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":122.0625,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":27.3125,"pitch":-136.1875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":177.625,"pitch":-67.375,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":73.8125,"pitch":-115.75,"roll":40.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:09.811"} +{"sensors":[{"euler":{"heading":254.625,"pitch":-178.25,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":135.0,"pitch":128.75,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":122.25,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-136.1875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":-67.4375,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":73.8125,"pitch":-115.5625,"roll":40.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:09.912"} +{"sensors":[{"euler":{"heading":254.5625,"pitch":-178.25,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":134.6875,"pitch":128.5,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":122.3125,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":27.1875,"pitch":-136.1875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":-67.5,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":73.75,"pitch":-115.375,"roll":39.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:10.13"} +{"sensors":[{"euler":{"heading":255.0625,"pitch":-178.75,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":135.0,"pitch":129.0625,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":122.5,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":27.3125,"pitch":-136.1875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":177.375,"pitch":-67.625,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":73.9375,"pitch":-115.1875,"roll":39.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:10.113"} +{"sensors":[{"euler":{"heading":256.9375,"pitch":179.1875,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":130.375,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":122.625,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":27.375,"pitch":-136.125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":-67.8125,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":74.0,"pitch":-115.3125,"roll":40.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:10.214"} +{"sensors":[{"euler":{"heading":260.3125,"pitch":175.6875,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":139.625,"pitch":134.25,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":88.375,"pitch":122.5,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-136.25,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":-67.875,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":73.6875,"pitch":-115.4375,"roll":40.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:10.314"} +{"sensors":[{"euler":{"heading":264.5625,"pitch":171.0625,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":142.8125,"pitch":138.8125,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":88.375,"pitch":122.0625,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":26.875,"pitch":-136.5,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":177.125,"pitch":-67.9375,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":72.625,"pitch":-115.75,"roll":42.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:10.415"} +{"sensors":[{"euler":{"heading":269.5,"pitch":165.9375,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":145.9375,"pitch":144.5,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":121.0,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":26.1875,"pitch":-136.9375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":-68.125,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":71.4375,"pitch":-116.375,"roll":43.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:10.515"} +{"sensors":[{"euler":{"heading":274.1875,"pitch":160.875,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":148.8125,"pitch":151.25,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":119.8125,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":25.4375,"pitch":-137.375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":-68.125,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":76.1875,"pitch":-116.75,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:10.616"} +{"sensors":[{"euler":{"heading":278.875,"pitch":154.8125,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":151.4375,"pitch":158.875,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":88.6875,"pitch":119.4375,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":25.375,"pitch":-137.375,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":-68.1875,"roll":75.5625},"location":"Right Knee"},{"euler":{"heading":77.8125,"pitch":-117.8125,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:10.717"} +{"sensors":[{"euler":{"heading":285.0625,"pitch":148.8125,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":155.875,"pitch":169.5625,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":119.0625,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":25.125,"pitch":-137.4375,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-68.3125,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-118.75,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:10.818"} +{"sensors":[{"euler":{"heading":291.3125,"pitch":143.1875,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":159.8125,"pitch":-179.8125,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":118.75,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":25.0,"pitch":-137.5,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-68.25,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":83.125,"pitch":-120.0625,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:10.919"} +{"sensors":[{"euler":{"heading":296.5,"pitch":138.8125,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":162.8125,"pitch":-171.0,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":118.6875,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":24.625,"pitch":-137.5,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-68.125,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":85.375,"pitch":-121.4375,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:11.20"} +{"sensors":[{"euler":{"heading":300.625,"pitch":135.625,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":164.375,"pitch":-166.375,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":118.5,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":24.375,"pitch":-137.5625,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-67.9375,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":87.5,"pitch":-123.4375,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:11.121"} +{"sensors":[{"euler":{"heading":304.5,"pitch":133.1875,"roll":45.4375},"location":"Left Knee"},{"euler":{"heading":166.8125,"pitch":-161.9375,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":118.5625,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-137.375,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-67.6875,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":89.625,"pitch":-125.5625,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:11.222"} +{"sensors":[{"euler":{"heading":217.0625,"pitch":131.5625,"roll":44.5},"location":"Left Knee"},{"euler":{"heading":168.875,"pitch":-158.5625,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":118.5625,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":24.5,"pitch":-137.25,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":-67.625,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":91.5,"pitch":-127.125,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:11.323"} +{"sensors":[{"euler":{"heading":218.375,"pitch":130.625,"roll":43.6875},"location":"Left Knee"},{"euler":{"heading":170.375,"pitch":-156.125,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":118.4375,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":24.375,"pitch":-137.1875,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":175.1875,"pitch":-67.625,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":92.5,"pitch":-128.375,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:11.424"} +{"sensors":[{"euler":{"heading":219.5625,"pitch":130.25,"roll":43.0625},"location":"Left Knee"},{"euler":{"heading":171.4375,"pitch":-154.5625,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":118.0625,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":24.0625,"pitch":-137.1875,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":175.0,"pitch":-67.5625,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":93.0,"pitch":-129.0625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:11.525"} +{"sensors":[{"euler":{"heading":220.25,"pitch":130.125,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":172.4375,"pitch":-154.0,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":117.8125,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":24.375,"pitch":-137.0625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":175.1875,"pitch":-67.625,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":93.75,"pitch":-129.5625,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:11.626"} +{"sensors":[{"euler":{"heading":221.0,"pitch":130.0,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":173.3125,"pitch":-153.625,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":117.625,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":24.875,"pitch":-136.8125,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":175.3125,"pitch":-67.8125,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":94.375,"pitch":-129.875,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:11.727"} +{"sensors":[{"euler":{"heading":220.875,"pitch":130.0,"roll":43.0},"location":"Left Knee"},{"euler":{"heading":173.375,"pitch":-153.1875,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":117.5,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":24.9375,"pitch":-136.75,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-68.1875,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-129.9375,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:11.828"} +{"sensors":[{"euler":{"heading":219.25,"pitch":130.4375,"roll":43.6875},"location":"Left Knee"},{"euler":{"heading":172.25,"pitch":-153.75,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":117.1875,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":24.8125,"pitch":-136.8125,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-68.5,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":93.75,"pitch":-129.3125,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:11.929"} +{"sensors":[{"euler":{"heading":305.4375,"pitch":131.9375,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":168.6875,"pitch":-158.5625,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":116.625,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":24.625,"pitch":-136.9375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":-68.8125,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":92.1875,"pitch":-128.3125,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:12.30"} +{"sensors":[{"euler":{"heading":300.875,"pitch":134.625,"roll":47.1875},"location":"Left Knee"},{"euler":{"heading":164.8125,"pitch":-165.6875,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":116.375,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":24.5625,"pitch":-136.9375,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-69.125,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":89.875,"pitch":-126.75,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:12.131"} +{"sensors":[{"euler":{"heading":297.0625,"pitch":137.6875,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":161.75,"pitch":-173.5,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":116.25,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":24.9375,"pitch":-136.8125,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-69.375,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":87.3125,"pitch":-124.9375,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:12.232"} +{"sensors":[{"euler":{"heading":293.75,"pitch":140.4375,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":159.375,"pitch":-178.9375,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":116.3125,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":25.375,"pitch":-136.5625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":175.875,"pitch":-69.375,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":84.875,"pitch":-122.875,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:12.333"} +{"sensors":[{"euler":{"heading":290.5,"pitch":143.0625,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":156.375,"pitch":175.0625,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":116.3125,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":25.5625,"pitch":-136.5625,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-69.375,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-121.125,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:12.434"} +{"sensors":[{"euler":{"heading":287.125,"pitch":145.6875,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":154.0,"pitch":170.5625,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":116.375,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":25.75,"pitch":-136.5,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":-69.3125,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":79.5625,"pitch":-119.5625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:12.535"} +{"sensors":[{"euler":{"heading":284.3125,"pitch":148.5625,"roll":53.0625},"location":"Left Knee"},{"euler":{"heading":151.4375,"pitch":165.125,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":116.5625,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":26.0625,"pitch":-136.375,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":176.1875,"pitch":-69.375,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":77.5625,"pitch":-118.5,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:12.635"} +{"sensors":[{"euler":{"heading":280.625,"pitch":151.875,"roll":54.375},"location":"Left Knee"},{"euler":{"heading":148.5,"pitch":157.75,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":116.8125,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":26.4375,"pitch":-136.375,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":-69.1875,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":76.375,"pitch":-117.75,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:12.736"} +{"sensors":[{"euler":{"heading":276.9375,"pitch":155.375,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":151.6875,"roll":68.5},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":116.875,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":26.625,"pitch":-136.375,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":-69.125,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":69.8125,"pitch":-117.4375,"roll":44.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:12.836"} +{"sensors":[{"euler":{"heading":273.5,"pitch":158.8125,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":144.625,"pitch":149.5,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":117.0,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":27.0,"pitch":-136.4375,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-69.0,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":70.8125,"pitch":-117.25,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:12.937"} +{"sensors":[{"euler":{"heading":272.5625,"pitch":160.125,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":144.9375,"pitch":149.75,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":117.0625,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":27.1875,"pitch":-136.375,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":-69.1875,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":71.375,"pitch":-116.875,"roll":43.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:13.38"} +{"sensors":[{"euler":{"heading":273.625,"pitch":159.875,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":147.1875,"pitch":152.25,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":117.4375,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":27.4375,"pitch":-136.375,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":-69.0625,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":71.5,"pitch":-117.0,"roll":43.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:13.139"} +{"sensors":[{"euler":{"heading":275.3125,"pitch":158.25,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":148.875,"pitch":155.125,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":117.5,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":27.3125,"pitch":-136.375,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":-69.25,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":71.25,"pitch":-117.125,"roll":43.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:13.240"} +{"sensors":[{"euler":{"heading":278.0625,"pitch":155.8125,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":150.6875,"pitch":158.5625,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":117.625,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":27.125,"pitch":-136.5,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":-69.25,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":69.625,"pitch":-117.0,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:13.340"} +{"sensors":[{"euler":{"heading":282.0625,"pitch":151.9375,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":154.375,"pitch":165.6875,"roll":70.0625},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":117.8125,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":26.6875,"pitch":-136.8125,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":176.875,"pitch":-69.125,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":77.375,"pitch":-117.6875,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:13.441"} +{"sensors":[{"euler":{"heading":288.1875,"pitch":147.25,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":159.125,"pitch":174.625,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":116.9375,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":26.0,"pitch":-137.4375,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-69.0625,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":79.5625,"pitch":-118.9375,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:13.542"} +{"sensors":[{"euler":{"heading":296.0,"pitch":141.4375,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":165.125,"pitch":-171.5625,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":116.875,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":25.4375,"pitch":-137.6875,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":-69.0,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":81.8125,"pitch":-120.375,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:13.642"} +{"sensors":[{"euler":{"heading":303.75,"pitch":136.3125,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":170.875,"pitch":-159.375,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":89.625,"pitch":117.1875,"roll":79.125},"location":"Right Ankle"},{"euler":{"heading":24.8125,"pitch":-137.9375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":-68.5625,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":84.625,"pitch":-122.0625,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:13.743"} +{"sensors":[{"euler":{"heading":220.1875,"pitch":131.875,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":176.5,"pitch":-149.6875,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":117.0625,"roll":79.0},"location":"Right Ankle"},{"euler":{"heading":24.1875,"pitch":-138.25,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-68.1875,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":87.75,"pitch":-123.8125,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:13.844"} +{"sensors":[{"euler":{"heading":225.3125,"pitch":128.3125,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":180.375,"pitch":-143.1875,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":117.0625,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":23.9375,"pitch":-138.5625,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-67.625,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":90.5,"pitch":-126.5625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:13.945"} +{"sensors":[{"euler":{"heading":228.75,"pitch":125.6875,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":183.75,"pitch":-138.375,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":117.1875,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":23.75,"pitch":-138.8125,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-66.9375,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":92.9375,"pitch":-128.5625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:14.45"} +{"sensors":[{"euler":{"heading":229.0625,"pitch":124.75,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":184.375,"pitch":-137.375,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":117.1875,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":23.5625,"pitch":-138.8125,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-66.75,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":94.375,"pitch":-130.375,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:14.146"} +{"sensors":[{"euler":{"heading":228.9375,"pitch":124.625,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":182.0625,"pitch":-139.5625,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":116.25,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":23.0625,"pitch":-138.9375,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-66.625,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-131.9375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:14.247"} +{"sensors":[{"euler":{"heading":229.875,"pitch":124.4375,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":182.625,"pitch":-139.0625,"roll":59.1875},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":115.5,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":23.1875,"pitch":-138.75,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":175.3125,"pitch":-67.0625,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-132.6875,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:14.348"} +{"sensors":[{"euler":{"heading":231.3125,"pitch":124.125,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":184.0,"pitch":-138.4375,"roll":58.5625},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":115.125,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":23.75,"pitch":-138.375,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-67.8125,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":95.875,"pitch":-133.0625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:14.449"} +{"sensors":[{"euler":{"heading":231.1875,"pitch":124.3125,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":183.3125,"pitch":-139.25,"roll":59.1875},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":114.375,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":24.0625,"pitch":-138.1875,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-67.9375,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":96.1875,"pitch":-133.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:14.550"} +{"sensors":[{"euler":{"heading":228.75,"pitch":125.0625,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":180.875,"pitch":-141.125,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":113.6875,"roll":78.5625},"location":"Right Ankle"},{"euler":{"heading":24.125,"pitch":-138.1875,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-68.5,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":95.6875,"pitch":-133.6875,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:14.651"} +{"sensors":[{"euler":{"heading":223.4375,"pitch":127.0625,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":176.75,"pitch":-143.9375,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":113.25,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":24.0625,"pitch":-138.1875,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-68.75,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":93.0,"pitch":-132.3125,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:14.752"} +{"sensors":[{"euler":{"heading":217.25,"pitch":129.8125,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":170.8125,"pitch":-150.5625,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":112.9375,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-138.0,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":175.3125,"pitch":-69.125,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":90.0625,"pitch":-129.9375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:14.853"} +{"sensors":[{"euler":{"heading":301.0,"pitch":133.5,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":164.4375,"pitch":-160.5,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":112.625,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":24.625,"pitch":-137.5625,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-69.1875,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":86.5,"pitch":-127.4375,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:14.954"} +{"sensors":[{"euler":{"heading":295.9375,"pitch":137.125,"roll":48.25},"location":"Left Knee"},{"euler":{"heading":159.3125,"pitch":-171.0,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":112.875,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":25.625,"pitch":-137.0625,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-69.0625,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":84.125,"pitch":-125.1875,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:15.55"} +{"sensors":[{"euler":{"heading":292.375,"pitch":140.125,"roll":50.0625},"location":"Left Knee"},{"euler":{"heading":157.0625,"pitch":-176.1875,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":113.0,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":26.3125,"pitch":-136.8125,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-68.9375,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":82.4375,"pitch":-123.25,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:15.156"} +{"sensors":[{"euler":{"heading":289.5,"pitch":142.1875,"roll":51.1875},"location":"Left Knee"},{"euler":{"heading":154.625,"pitch":178.625,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":113.0625,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":26.625,"pitch":-136.75,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-68.9375,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-121.25,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:15.256"} +{"sensors":[{"euler":{"heading":286.3125,"pitch":144.5,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":152.0,"pitch":173.6875,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":113.0625,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":26.9375,"pitch":-136.5625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":-69.0,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-120.25,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:15.358"} +{"sensors":[{"euler":{"heading":284.0,"pitch":146.4375,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":149.875,"pitch":169.25,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":112.8125,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":27.625,"pitch":-136.3125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":-69.0625,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":76.875,"pitch":-119.625,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:15.458"} +{"sensors":[{"euler":{"heading":281.5625,"pitch":149.0,"roll":54.1875},"location":"Left Knee"},{"euler":{"heading":148.125,"pitch":164.1875,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":112.75,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":27.8125,"pitch":-136.25,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":-68.875,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":76.3125,"pitch":-119.1875,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:15.559"} +{"sensors":[{"euler":{"heading":279.75,"pitch":151.3125,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":146.625,"pitch":159.5625,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":91.25,"pitch":112.5,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":28.0625,"pitch":-136.1875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":176.5625,"pitch":-68.8125,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":69.0,"pitch":-118.875,"roll":44.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:15.660"} +{"sensors":[{"euler":{"heading":277.5,"pitch":153.125,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":144.875,"pitch":156.625,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":91.1875,"pitch":111.9375,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":28.25,"pitch":-135.9375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-69.125,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":69.125,"pitch":-118.75,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:15.761"} +{"sensors":[{"euler":{"heading":275.9375,"pitch":154.3125,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":144.25,"pitch":155.4375,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":111.5,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":28.0,"pitch":-136.0,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":-69.3125,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":69.1875,"pitch":-118.4375,"roll":43.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:15.862"} +{"sensors":[{"euler":{"heading":275.9375,"pitch":154.5625,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":144.5625,"pitch":155.125,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":111.5,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":28.1875,"pitch":-135.875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":176.5625,"pitch":-69.4375,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":69.375,"pitch":-118.25,"roll":43.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:15.963"} +{"sensors":[{"euler":{"heading":277.1875,"pitch":153.6875,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":156.3125,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":111.5625,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":28.25,"pitch":-135.875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":-69.4375,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":69.1875,"pitch":-118.1875,"roll":43.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:16.64"} +{"sensors":[{"euler":{"heading":279.75,"pitch":151.4375,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":147.625,"pitch":160.125,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":111.6875,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":28.125,"pitch":-136.0,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":-69.4375,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":68.5,"pitch":-118.3125,"roll":44.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:16.164"} +{"sensors":[{"euler":{"heading":284.0625,"pitch":147.5,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":152.375,"pitch":169.0,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":111.875,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":27.8125,"pitch":-136.1875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":176.3125,"pitch":-69.5,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":76.8125,"pitch":-118.375,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:16.265"} +{"sensors":[{"euler":{"heading":289.5,"pitch":142.625,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":157.0625,"pitch":178.625,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":111.875,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":27.125,"pitch":-136.5,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-69.5,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":78.75,"pitch":-118.9375,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:16.365"} +{"sensors":[{"euler":{"heading":294.5,"pitch":138.0,"roll":50.3125},"location":"Left Knee"},{"euler":{"heading":161.0625,"pitch":-170.5625,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":111.625,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":26.5625,"pitch":-136.9375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-69.3125,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-120.25,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:16.466"} +{"sensors":[{"euler":{"heading":298.8125,"pitch":134.375,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":164.3125,"pitch":-161.9375,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":111.625,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":26.25,"pitch":-136.8125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-69.125,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":82.5625,"pitch":-121.5625,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:16.567"} +{"sensors":[{"euler":{"heading":303.875,"pitch":131.3125,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":167.9375,"pitch":-155.25,"roll":67.3125},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":111.875,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":25.5,"pitch":-136.875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":175.0,"pitch":-68.75,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":84.6875,"pitch":-122.75,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:16.668"} +{"sensors":[{"euler":{"heading":218.8125,"pitch":128.5625,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":171.9375,"pitch":-149.1875,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":112.0,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":24.9375,"pitch":-137.125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":174.8125,"pitch":-68.5,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":87.125,"pitch":-124.9375,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:16.768"} +{"sensors":[{"euler":{"heading":222.5,"pitch":126.25,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":174.5625,"pitch":-144.8125,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":111.875,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":24.5625,"pitch":-137.375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":174.6875,"pitch":-68.0,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":89.75,"pitch":-127.5625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:16.869"} +{"sensors":[{"euler":{"heading":224.625,"pitch":125.0625,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":177.375,"pitch":-141.1875,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":111.875,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-137.375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":174.4375,"pitch":-67.8125,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":91.3125,"pitch":-130.25,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:16.970"} +{"sensors":[{"euler":{"heading":227.5625,"pitch":124.0,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":178.0625,"pitch":-140.8125,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":112.375,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-137.4375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":174.0625,"pitch":-67.5,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":92.8125,"pitch":-132.6875,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:17.71"} +{"sensors":[{"euler":{"heading":229.25,"pitch":123.5625,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":179.5625,"pitch":-140.125,"roll":60.4375},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":112.9375,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":24.1875,"pitch":-137.25,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":174.0625,"pitch":-67.5,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":93.9375,"pitch":-134.8125,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:17.172"} +{"sensors":[{"euler":{"heading":230.4375,"pitch":123.125,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":181.6875,"pitch":-138.8125,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":113.75,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":24.5,"pitch":-137.0625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":174.125,"pitch":-67.375,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-135.6875,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:17.273"} +{"sensors":[{"euler":{"heading":230.0,"pitch":123.25,"roll":36.8125},"location":"Left Knee"},{"euler":{"heading":181.0625,"pitch":-139.0625,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":113.5,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":24.3125,"pitch":-137.3125,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":174.1875,"pitch":-67.125,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":94.75,"pitch":-136.0,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:17.374"} +{"sensors":[{"euler":{"heading":227.25,"pitch":124.4375,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":177.625,"pitch":-142.25,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":113.1875,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":24.5625,"pitch":-137.1875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":174.1875,"pitch":-67.3125,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":94.0625,"pitch":-135.3125,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:17.475"} +{"sensors":[{"euler":{"heading":223.3125,"pitch":126.125,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":173.3125,"pitch":-146.625,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":91.1875,"pitch":112.875,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":25.0,"pitch":-137.0,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":174.25,"pitch":-67.5625,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":92.4375,"pitch":-133.75,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:17.576"} +{"sensors":[{"euler":{"heading":218.25,"pitch":128.5,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":168.9375,"pitch":-152.5,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":91.25,"pitch":112.875,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":25.375,"pitch":-136.6875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":174.375,"pitch":-67.875,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":90.25,"pitch":-131.5,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:17.677"} +{"sensors":[{"euler":{"heading":213.25,"pitch":131.5625,"roll":44.875},"location":"Left Knee"},{"euler":{"heading":164.3125,"pitch":-161.4375,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":91.25,"pitch":112.9375,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":25.875,"pitch":-136.5,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":174.5625,"pitch":-68.0,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":87.9375,"pitch":-129.375,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:17.779"} +{"sensors":[{"euler":{"heading":298.25,"pitch":135.1875,"roll":47.5625},"location":"Left Knee"},{"euler":{"heading":159.8125,"pitch":-171.375,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":91.3125,"pitch":112.9375,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":25.9375,"pitch":-136.5,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":174.6875,"pitch":-68.0625,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":85.8125,"pitch":-127.5,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:17.879"} +{"sensors":[{"euler":{"heading":293.9375,"pitch":138.75,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":155.6875,"pitch":178.3125,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":91.25,"pitch":113.125,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":26.1875,"pitch":-136.5,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":174.875,"pitch":-68.1875,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":83.875,"pitch":-125.9375,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:17.980"} +{"sensors":[{"euler":{"heading":289.8125,"pitch":142.125,"roll":51.6875},"location":"Left Knee"},{"euler":{"heading":151.5625,"pitch":169.5625,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":91.3125,"pitch":113.3125,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":26.5,"pitch":-136.5625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":175.1875,"pitch":-68.0625,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":82.5,"pitch":-125.0625,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:18.81"} +{"sensors":[{"euler":{"heading":288.4375,"pitch":143.875,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":150.3125,"pitch":164.125,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":91.4375,"pitch":113.8125,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":26.75,"pitch":-136.5625,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-67.9375,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":82.375,"pitch":-125.0,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:18.181"} +{"sensors":[{"euler":{"heading":286.0,"pitch":146.4375,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":147.5,"pitch":155.3125,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":91.375,"pitch":114.1875,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":26.75,"pitch":-136.6875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-68.0625,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":83.5,"pitch":-126.0625,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:18.282"} +{"sensors":[{"euler":{"heading":283.4375,"pitch":148.375,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":145.125,"pitch":150.9375,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":114.6875,"roll":78.5625},"location":"Right Ankle"},{"euler":{"heading":26.4375,"pitch":-136.9375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-68.25,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":84.3125,"pitch":-127.375,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:18.382"} +{"sensors":[{"euler":{"heading":282.625,"pitch":148.5,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":145.0,"pitch":151.0625,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":115.25,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":25.5625,"pitch":-137.5,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-68.125,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":84.9375,"pitch":-128.375,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:18.483"} +{"sensors":[{"euler":{"heading":282.3125,"pitch":148.75,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":144.1875,"pitch":148.75,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":116.5625,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":24.9375,"pitch":-137.9375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-67.75,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":87.0625,"pitch":-130.6875,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:18.584"} +{"sensors":[{"euler":{"heading":280.5,"pitch":150.5,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":142.0,"pitch":142.5625,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":119.9375,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":25.375,"pitch":-137.75,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-67.375,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":90.0625,"pitch":-134.3125,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:18.685"} +{"sensors":[{"euler":{"heading":279.5,"pitch":151.0,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":140.875,"pitch":139.3125,"roll":71.25},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":123.6875,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":25.8125,"pitch":-137.75,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":-66.8125,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":91.0,"pitch":-136.25,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:18.785"} +{"sensors":[{"euler":{"heading":280.1875,"pitch":150.5625,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":140.6875,"pitch":137.5625,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":126.375,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":26.5625,"pitch":-138.125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":177.6875,"pitch":-65.875,"roll":74.375},"location":"Right Knee"},{"euler":{"heading":92.4375,"pitch":-137.4375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:18.886"} +{"sensors":[{"euler":{"heading":280.6875,"pitch":150.4375,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":141.25,"pitch":137.0,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":128.5625,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":28.375,"pitch":-138.125,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":179.25,"pitch":-64.75,"roll":74.0},"location":"Right Knee"},{"euler":{"heading":94.0625,"pitch":-137.75,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:18.987"} +{"sensors":[{"euler":{"heading":282.25,"pitch":149.5,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":142.375,"pitch":137.875,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":130.75,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":29.5625,"pitch":-138.125,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":180.375,"pitch":-63.8125,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-137.75,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:19.88"} +{"sensors":[{"euler":{"heading":283.0625,"pitch":148.6875,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":138.5,"roll":72.625},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":133.0625,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":30.5,"pitch":-138.3125,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":181.375,"pitch":-62.75,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":95.75,"pitch":-137.6875,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:19.189"} +{"sensors":[{"euler":{"heading":283.4375,"pitch":148.1875,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":143.4375,"pitch":138.875,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":92.4375,"pitch":135.125,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":31.4375,"pitch":-138.125,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":182.3125,"pitch":-62.25,"roll":72.6875},"location":"Right Knee"},{"euler":{"heading":96.0,"pitch":-137.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:19.290"} +{"sensors":[{"euler":{"heading":283.1875,"pitch":147.875,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":143.4375,"pitch":139.1875,"roll":73.0625},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":137.125,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":31.875,"pitch":-137.875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":183.125,"pitch":-62.375,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-137.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:19.390"} +{"sensors":[{"euler":{"heading":282.875,"pitch":147.875,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":143.25,"pitch":139.0,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":91.625,"pitch":139.9375,"roll":79.0},"location":"Right Ankle"},{"euler":{"heading":31.8125,"pitch":-137.8125,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":183.25,"pitch":-62.5625,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-137.4375,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:19.491"} +{"sensors":[{"euler":{"heading":283.0,"pitch":147.6875,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":143.1875,"pitch":139.5625,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":89.625,"pitch":142.875,"roll":79.0625},"location":"Right Ankle"},{"euler":{"heading":31.4375,"pitch":-138.0625,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":182.25,"pitch":-61.8125,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":94.0625,"pitch":-137.125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:19.591"} +{"sensors":[{"euler":{"heading":283.375,"pitch":147.375,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":143.4375,"pitch":140.75,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":142.0,"roll":78.9375},"location":"Right Ankle"},{"euler":{"heading":31.0,"pitch":-138.5625,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":182.125,"pitch":-62.125,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":94.0,"pitch":-136.8125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:19.692"} +{"sensors":[{"euler":{"heading":283.6875,"pitch":147.0,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":143.875,"pitch":140.8125,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":139.375,"roll":78.5625},"location":"Right Ankle"},{"euler":{"heading":31.125,"pitch":-139.125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":182.75,"pitch":-61.9375,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":94.375,"pitch":-136.9375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:19.793"} +{"sensors":[{"euler":{"heading":283.3125,"pitch":146.75,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":143.75,"pitch":139.9375,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":137.75,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":31.5,"pitch":-139.375,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":182.6875,"pitch":-61.5,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-137.1875,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:19.894"} +{"sensors":[{"euler":{"heading":283.25,"pitch":146.625,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":143.875,"pitch":139.6875,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":137.25,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":32.5,"pitch":-139.25,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":182.5,"pitch":-61.25,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-137.3125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:19.995"} +{"sensors":[{"euler":{"heading":283.25,"pitch":146.5625,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":143.9375,"pitch":139.75,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.5625,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":32.4375,"pitch":-139.4375,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":182.5,"pitch":-61.25,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-137.5,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:20.96"} +{"sensors":[{"euler":{"heading":283.125,"pitch":146.5625,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":144.0,"pitch":139.75,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.8125,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":32.25,"pitch":-139.75,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":182.5,"pitch":-61.25,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.5,"pitch":-137.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:20.196"} +{"sensors":[{"euler":{"heading":283.125,"pitch":146.5,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":144.0,"pitch":139.875,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":138.0625,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":32.3125,"pitch":-139.8125,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":182.5625,"pitch":-61.3125,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.5625,"pitch":-137.6875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:20.297"} +{"sensors":[{"euler":{"heading":282.75,"pitch":146.6875,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":143.8125,"pitch":139.75,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":138.0625,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":32.1875,"pitch":-139.875,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":182.5,"pitch":-61.375,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-137.9375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:20.398"} +{"sensors":[{"euler":{"heading":282.6875,"pitch":146.75,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":143.75,"pitch":139.6875,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":137.75,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":32.0625,"pitch":-140.0,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":182.5,"pitch":-61.5,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-138.125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:20.499"} +{"sensors":[{"euler":{"heading":282.875,"pitch":146.75,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":143.6875,"pitch":139.5,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":137.5,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":32.3125,"pitch":-140.0,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":182.5625,"pitch":-61.5,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":95.9375,"pitch":-138.6875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:20.600"} +{"sensors":[{"euler":{"heading":283.0625,"pitch":146.75,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":143.6875,"pitch":139.5625,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":137.1875,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":32.3125,"pitch":-140.0,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":182.375,"pitch":-61.8125,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":96.125,"pitch":-138.8125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:20.701"} +{"sensors":[{"euler":{"heading":283.5,"pitch":146.625,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":143.8125,"pitch":140.0625,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":136.875,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":32.5625,"pitch":-139.8125,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":182.4375,"pitch":-62.125,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":96.5625,"pitch":-139.125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:20.802"} +{"sensors":[{"euler":{"heading":283.5,"pitch":146.6875,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":143.875,"pitch":140.625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":136.5625,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":32.875,"pitch":-139.625,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":182.5,"pitch":-62.5,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":96.6875,"pitch":-139.0625,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:20.903"} +{"sensors":[{"euler":{"heading":283.4375,"pitch":146.6875,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":143.875,"pitch":141.125,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.0625,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":32.625,"pitch":-139.5625,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":182.0,"pitch":-62.5,"roll":72.5625},"location":"Right Knee"},{"euler":{"heading":96.625,"pitch":-138.875,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:21.3"} +{"sensors":[{"euler":{"heading":283.25,"pitch":146.75,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":143.8125,"pitch":141.0,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":136.125,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":31.875,"pitch":-139.8125,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":181.8125,"pitch":-62.3125,"roll":72.5625},"location":"Right Knee"},{"euler":{"heading":96.0625,"pitch":-138.625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:21.104"} +{"sensors":[{"euler":{"heading":282.875,"pitch":147.0,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":143.6875,"pitch":140.8125,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":136.8125,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":31.1875,"pitch":-140.0,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":181.625,"pitch":-62.375,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-138.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:21.205"} +{"sensors":[{"euler":{"heading":283.25,"pitch":146.75,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":144.1875,"pitch":141.625,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":137.5625,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":31.5,"pitch":-140.25,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":182.375,"pitch":-62.625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":95.125,"pitch":-137.3125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:21.306"} +{"sensors":[{"euler":{"heading":285.375,"pitch":146.1875,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":142.5625,"roll":75.0625},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":138.125,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":33.4375,"pitch":-140.0625,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":183.5625,"pitch":-61.6875,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":97.1875,"pitch":-137.0625,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:21.407"} +{"sensors":[{"euler":{"heading":286.8125,"pitch":145.5625,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":147.3125,"pitch":143.4375,"roll":75.9375},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":141.125,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":35.125,"pitch":-139.0625,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":183.75,"pitch":-60.8125,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":97.9375,"pitch":-136.875,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:21.508"} +{"sensors":[{"euler":{"heading":287.125,"pitch":145.4375,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":148.4375,"pitch":142.4375,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":144.9375,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":35.875,"pitch":-138.1875,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":183.8125,"pitch":-60.5,"roll":71.1875},"location":"Right Knee"},{"euler":{"heading":98.0,"pitch":-136.375,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:21.609"} +{"sensors":[{"euler":{"heading":287.3125,"pitch":145.375,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":149.125,"pitch":140.8125,"roll":77.4375},"location":"Left Ankle"},{"euler":{"heading":90.0,"pitch":146.9375,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":36.8125,"pitch":-138.125,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":184.5625,"pitch":-59.9375,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":98.25,"pitch":-135.875,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:21.710"} +{"sensors":[{"euler":{"heading":287.5625,"pitch":145.4375,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":149.625,"pitch":138.8125,"roll":77.9375},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":149.3125,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-137.125,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":185.3125,"pitch":-59.5625,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":98.4375,"pitch":-135.3125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:21.811"} +{"sensors":[{"euler":{"heading":287.5,"pitch":145.6875,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":149.875,"pitch":136.0,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":156.8125,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":41.25,"pitch":-133.6875,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":-58.5,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":98.5625,"pitch":-135.0625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:21.912"} +{"sensors":[{"euler":{"heading":287.6875,"pitch":145.6875,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":150.25,"pitch":135.75,"roll":78.5625},"location":"Left Ankle"},{"euler":{"heading":88.875,"pitch":163.0,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":44.6875,"pitch":-130.1875,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":188.8125,"pitch":-58.875,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":97.8125,"pitch":-134.0625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:22.13"} +{"sensors":[{"euler":{"heading":288.875,"pitch":144.25,"roll":60.8125},"location":"Left Knee"},{"euler":{"heading":151.5,"pitch":138.875,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":157.5625,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":46.125,"pitch":-128.6875,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":187.4375,"pitch":-56.0625,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":97.75,"pitch":-134.0625,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:22.113"} +{"sensors":[{"euler":{"heading":289.6875,"pitch":142.625,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":152.6875,"pitch":144.3125,"roll":79.9375},"location":"Left Ankle"},{"euler":{"heading":92.625,"pitch":142.5625,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":46.0625,"pitch":-128.4375,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":181.8125,"pitch":-48.1875,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":97.0,"pitch":-134.125,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:22.214"} +{"sensors":[{"euler":{"heading":290.75,"pitch":140.875,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":154.25,"pitch":150.9375,"roll":80.375},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":133.0625,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":45.75,"pitch":-128.1875,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":-35.9375,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":97.0,"pitch":-134.8125,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:22.315"} +{"sensors":[{"euler":{"heading":292.875,"pitch":138.75,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":155.5625,"pitch":158.25,"roll":80.75},"location":"Left Ankle"},{"euler":{"heading":98.6875,"pitch":125.0625,"roll":70.25},"location":"Right Ankle"},{"euler":{"heading":45.3125,"pitch":-128.4375,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":173.25,"pitch":-24.375,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":98.0,"pitch":-136.375,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:22.416"} +{"sensors":[{"euler":{"heading":295.125,"pitch":136.25,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":157.0625,"pitch":167.125,"roll":80.875},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":125.25,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":43.625,"pitch":-129.1875,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":172.1875,"pitch":-16.625,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":99.0625,"pitch":-138.1875,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:22.516"} +{"sensors":[{"euler":{"heading":297.6875,"pitch":133.625,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":158.75,"pitch":178.8125,"roll":80.375},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":130.5,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":41.1875,"pitch":-129.8125,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":172.5,"pitch":-22.75,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":100.25,"pitch":-140.8125,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:22.617"} +{"sensors":[{"euler":{"heading":300.875,"pitch":130.8125,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":160.3125,"pitch":-169.0625,"roll":78.8125},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":138.9375,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":36.0,"pitch":-131.9375,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":172.1875,"pitch":-33.9375,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":101.8125,"pitch":-144.8125,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:22.718"} +{"sensors":[{"euler":{"heading":304.3125,"pitch":128.4375,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":163.1875,"pitch":-156.75,"roll":75.875},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":146.25,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":33.5,"pitch":-133.75,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":173.5625,"pitch":-46.25,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":104.625,"pitch":-148.9375,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:22.818"} +{"sensors":[{"euler":{"heading":307.5625,"pitch":126.3125,"roll":47.0625},"location":"Left Knee"},{"euler":{"heading":168.3125,"pitch":-145.125,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":151.5625,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":29.75,"pitch":-137.0625,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":174.1875,"pitch":-55.0625,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":105.9375,"pitch":-151.0625,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:22.919"} +{"sensors":[{"euler":{"heading":222.9375,"pitch":124.0,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":175.75,"pitch":-133.9375,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":158.5,"roll":82.875},"location":"Right Ankle"},{"euler":{"heading":28.125,"pitch":-139.3125,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":-62.1875,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":105.3125,"pitch":-147.1875,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:23.20"} +{"sensors":[{"euler":{"heading":228.9375,"pitch":122.875,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":188.0,"pitch":-124.4375,"roll":58.625},"location":"Left Ankle"},{"euler":{"heading":75.375,"pitch":179.625,"roll":84.3125},"location":"Right Ankle"},{"euler":{"heading":26.0,"pitch":-140.375,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":-67.375,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":99.75,"pitch":-135.9375,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:23.121"} +{"sensors":[{"euler":{"heading":226.25,"pitch":126.3125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":181.1875,"pitch":-132.3125,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":-178.8125,"roll":84.8125},"location":"Right Ankle"},{"euler":{"heading":24.625,"pitch":-141.5625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":178.1875,"pitch":-72.375,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":94.6875,"pitch":-128.6875,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:23.222"} +{"sensors":[{"euler":{"heading":300.9375,"pitch":135.875,"roll":47.6875},"location":"Left Knee"},{"euler":{"heading":163.375,"pitch":-163.875,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":72.875,"pitch":-177.375,"roll":84.75},"location":"Right Ankle"},{"euler":{"heading":23.9375,"pitch":-142.8125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":180.75,"pitch":-75.25,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":89.5,"pitch":-125.875,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:23.323"} +{"sensors":[{"euler":{"heading":282.625,"pitch":151.625,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":152.1875,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":71.625,"pitch":-175.8125,"roll":84.0625},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-144.625,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":182.9375,"pitch":-78.1875,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":84.3125,"pitch":-124.875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:23.424"} +{"sensors":[{"euler":{"heading":267.5,"pitch":167.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":135.0,"pitch":131.875,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":-120.4375,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":20.5625,"pitch":-146.0625,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":187.5625,"pitch":-80.875,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":84.875,"pitch":-125.6875,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:23.525"} +{"sensors":[{"euler":{"heading":262.375,"pitch":177.25,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":123.75,"roll":62.0},"location":"Left Ankle"},{"euler":{"heading":67.375,"pitch":-111.875,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-148.375,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":191.25,"pitch":-80.625,"roll":62.9375},"location":"Right Knee"},{"euler":{"heading":89.0625,"pitch":-127.625,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:23.626"} +{"sensors":[{"euler":{"heading":268.375,"pitch":174.5625,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":135.6875,"pitch":126.6875,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":63.1875,"pitch":-105.875,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-150.1875,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":195.5,"pitch":-81.125,"roll":59.5},"location":"Right Knee"},{"euler":{"heading":92.6875,"pitch":-129.0,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:23.726"} +{"sensors":[{"euler":{"heading":275.3125,"pitch":169.875,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":141.6875,"pitch":129.6875,"roll":67.25},"location":"Left Ankle"},{"euler":{"heading":57.6875,"pitch":-98.9375,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-150.0,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":200.0,"pitch":-80.9375,"roll":55.25},"location":"Right Knee"},{"euler":{"heading":94.375,"pitch":-130.5,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:23.828"} +{"sensors":[{"euler":{"heading":279.6875,"pitch":164.5,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":130.75,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":53.75,"pitch":-100.375,"roll":62.9375},"location":"Right Ankle"},{"euler":{"heading":23.125,"pitch":-150.0625,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":205.75,"pitch":-64.0625,"roll":51.0},"location":"Right Knee"},{"euler":{"heading":96.75,"pitch":-132.0,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:23.929"} +{"sensors":[{"euler":{"heading":282.1875,"pitch":160.4375,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":147.375,"pitch":131.4375,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":47.375,"pitch":-98.5625,"roll":55.875},"location":"Right Ankle"},{"euler":{"heading":28.875,"pitch":-144.0625,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":209.6875,"pitch":-78.5625,"roll":47.625},"location":"Right Knee"},{"euler":{"heading":97.875,"pitch":-132.8125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:24.30"} +{"sensors":[{"euler":{"heading":283.8125,"pitch":157.5625,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":148.875,"pitch":131.0,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":43.3125,"pitch":-98.6875,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":35.375,"pitch":-132.875,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":211.25,"pitch":-76.5,"roll":45.3125},"location":"Right Knee"},{"euler":{"heading":98.1875,"pitch":-133.0,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:24.131"} +{"sensors":[{"euler":{"heading":284.8125,"pitch":155.5625,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":149.875,"pitch":127.875,"roll":75.5625},"location":"Left Ankle"},{"euler":{"heading":54.0,"pitch":-103.625,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":41.625,"pitch":-125.5625,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":204.0625,"pitch":-72.0,"roll":53.6875},"location":"Right Knee"},{"euler":{"heading":98.5625,"pitch":-133.375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:24.231"} +{"sensors":[{"euler":{"heading":286.625,"pitch":153.0625,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":150.875,"pitch":125.4375,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":69.3125,"pitch":-127.625,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":47.3125,"pitch":-122.125,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":192.625,"pitch":-63.5625,"roll":65.875},"location":"Right Knee"},{"euler":{"heading":99.625,"pitch":-134.75,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:24.333"} +{"sensors":[{"euler":{"heading":288.6875,"pitch":150.3125,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":151.875,"pitch":124.125,"roll":77.875},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":168.6875,"roll":80.125},"location":"Right Ankle"},{"euler":{"heading":50.25,"pitch":-120.6875,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":182.8125,"pitch":-48.875,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":100.625,"pitch":-136.75,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:24.434"} +{"sensors":[{"euler":{"heading":291.3125,"pitch":146.75,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":153.3125,"pitch":128.0,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":95.125,"pitch":129.75,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":49.0,"pitch":-121.8125,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":174.375,"pitch":-20.3125,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":101.0,"pitch":-138.0625,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:24.535"} +{"sensors":[{"euler":{"heading":293.4375,"pitch":143.75,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":154.25,"pitch":135.5625,"roll":79.8125},"location":"Left Ankle"},{"euler":{"heading":100.75,"pitch":120.375,"roll":71.9375},"location":"Right Ankle"},{"euler":{"heading":45.6875,"pitch":-124.1875,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":170.8125,"pitch":1.5625,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":101.5,"pitch":-140.125,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:24.635"} +{"sensors":[{"euler":{"heading":295.0,"pitch":141.25,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":154.375,"pitch":145.4375,"roll":79.5625},"location":"Left Ankle"},{"euler":{"heading":97.125,"pitch":122.625,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":41.4375,"pitch":-125.9375,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":169.875,"pitch":-8.5625,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":101.125,"pitch":-142.375,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:24.736"} +{"sensors":[{"euler":{"heading":297.1875,"pitch":138.625,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":154.8125,"pitch":158.25,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":124.75,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":36.8125,"pitch":-129.0,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":-17.625,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":100.9375,"pitch":-144.1875,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:24.837"} +{"sensors":[{"euler":{"heading":299.875,"pitch":135.125,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":156.8125,"pitch":173.0625,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":126.8125,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":35.8125,"pitch":-130.5625,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":168.75,"pitch":-30.375,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":100.75,"pitch":-144.5,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:24.938"} +{"sensors":[{"euler":{"heading":300.875,"pitch":132.25,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":158.9375,"pitch":-170.625,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":127.4375,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":33.5,"pitch":-132.375,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":-42.9375,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":98.5625,"pitch":-142.375,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:25.39"} +{"sensors":[{"euler":{"heading":213.375,"pitch":130.625,"roll":44.8125},"location":"Left Knee"},{"euler":{"heading":167.4375,"pitch":-149.5,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":128.1875,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":30.9375,"pitch":-133.5625,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":169.625,"pitch":-53.3125,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":90.9375,"pitch":-134.6875,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:25.139"} +{"sensors":[{"euler":{"heading":216.5625,"pitch":130.625,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":172.0,"pitch":-141.8125,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":130.5,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":28.375,"pitch":-134.5,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":170.0625,"pitch":-60.9375,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":85.5,"pitch":-127.6875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:25.240"} +{"sensors":[{"euler":{"heading":296.5,"pitch":136.4375,"roll":46.0},"location":"Left Knee"},{"euler":{"heading":160.0,"pitch":-159.8125,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":174.875,"roll":83.3125},"location":"Right Ankle"},{"euler":{"heading":26.4375,"pitch":-135.6875,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":-65.875,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":81.8125,"pitch":-124.875,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:25.340"} +{"sensors":[{"euler":{"heading":280.875,"pitch":146.5,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":165.9375,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":175.25,"roll":83.8125},"location":"Right Ankle"},{"euler":{"heading":25.375,"pitch":-136.6875,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":172.4375,"pitch":-68.75,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":79.5,"pitch":-123.75,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:25.440"} +{"sensors":[{"euler":{"heading":271.6875,"pitch":155.75,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":133.75,"pitch":138.5,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":176.1875,"roll":84.625},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-137.5625,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":173.9375,"pitch":-71.6875,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":78.5625,"pitch":-123.25,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:25.541"} +{"sensors":[{"euler":{"heading":263.75,"pitch":166.25,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":128.0,"pitch":127.5,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":176.5,"roll":84.8125},"location":"Right Ankle"},{"euler":{"heading":24.0625,"pitch":-139.625,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":-73.5625,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":81.625,"pitch":-125.375,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:25.642"} +{"sensors":[{"euler":{"heading":266.75,"pitch":167.25,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":132.8125,"pitch":129.8125,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":177.625,"roll":85.25},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-140.625,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":180.0,"pitch":-74.5,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":86.125,"pitch":-127.125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:25.743"} +{"sensors":[{"euler":{"heading":274.4375,"pitch":163.625,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":132.4375,"roll":68.5625},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":179.625,"roll":85.0625},"location":"Right Ankle"},{"euler":{"heading":26.4375,"pitch":-141.6875,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":185.9375,"pitch":-75.6875,"roll":68.3125},"location":"Right Knee"},{"euler":{"heading":91.5625,"pitch":-130.5,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:25.844"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":159.0625,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":140.75,"pitch":133.25,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":-177.25,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":25.4375,"pitch":-143.4375,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":190.9375,"pitch":-75.125,"roll":65.25},"location":"Right Knee"},{"euler":{"heading":94.0625,"pitch":-131.6875,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:25.945"} +{"sensors":[{"euler":{"heading":282.5,"pitch":155.1875,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":142.625,"pitch":132.5625,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-132.75,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":28.8125,"pitch":-141.3125,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":197.1875,"pitch":-73.5,"roll":61.25},"location":"Right Knee"},{"euler":{"heading":96.375,"pitch":-133.125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:26.46"} +{"sensors":[{"euler":{"heading":284.5625,"pitch":151.8125,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":144.3125,"pitch":132.0,"roll":74.5},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":-117.75,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":36.9375,"pitch":-132.9375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":201.6875,"pitch":-73.1875,"roll":56.625},"location":"Right Knee"},{"euler":{"heading":98.1875,"pitch":-134.625,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:26.147"} +{"sensors":[{"euler":{"heading":286.25,"pitch":149.125,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":146.25,"pitch":128.4375,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":62.8125,"pitch":-117.75,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":42.5625,"pitch":-125.8125,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":200.875,"pitch":-71.875,"roll":57.3125},"location":"Right Knee"},{"euler":{"heading":99.25,"pitch":-135.25,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:26.247"} +{"sensors":[{"euler":{"heading":287.25,"pitch":147.1875,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":146.5625,"pitch":127.4375,"roll":77.8125},"location":"Left Ankle"},{"euler":{"heading":69.625,"pitch":-135.1875,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":46.4375,"pitch":-122.25,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":194.125,"pitch":-67.0,"roll":63.8125},"location":"Right Knee"},{"euler":{"heading":99.875,"pitch":-136.1875,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:26.349"} +{"sensors":[{"euler":{"heading":288.4375,"pitch":145.3125,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":147.0,"pitch":127.5,"roll":78.4375},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":169.0,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":49.3125,"pitch":-120.875,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":184.25,"pitch":-55.8125,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":100.75,"pitch":-138.0,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:26.450"} +{"sensors":[{"euler":{"heading":289.3125,"pitch":143.625,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":147.3125,"pitch":130.5,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":92.6875,"pitch":133.0625,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":49.125,"pitch":-121.125,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":-29.875,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":100.875,"pitch":-139.75,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:26.551"} +{"sensors":[{"euler":{"heading":290.5625,"pitch":141.3125,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":148.25,"pitch":136.25,"roll":79.5625},"location":"Left Ankle"},{"euler":{"heading":99.8125,"pitch":122.25,"roll":71.25},"location":"Right Ankle"},{"euler":{"heading":46.75,"pitch":-122.8125,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":171.25,"pitch":-8.6875,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":100.9375,"pitch":-141.375,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:26.652"} +{"sensors":[{"euler":{"heading":292.9375,"pitch":138.9375,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":149.0625,"pitch":146.0,"roll":79.625},"location":"Left Ankle"},{"euler":{"heading":99.625,"pitch":120.5,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":41.6875,"pitch":-125.5,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":168.75,"pitch":-6.0625,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":101.0,"pitch":-143.9375,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:26.755"} +{"sensors":[{"euler":{"heading":295.875,"pitch":136.3125,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":149.4375,"pitch":158.5,"roll":78.0625},"location":"Left Ankle"},{"euler":{"heading":80.3125,"pitch":121.0,"roll":74.1875},"location":"Right Ankle"},{"euler":{"heading":37.125,"pitch":-129.1875,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":168.4375,"pitch":-17.3125,"roll":81.4375},"location":"Right Knee"},{"euler":{"heading":101.625,"pitch":-147.0,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:26.856"} +{"sensors":[{"euler":{"heading":299.1875,"pitch":132.875,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":151.1875,"pitch":174.9375,"roll":75.4375},"location":"Left Ankle"},{"euler":{"heading":92.3125,"pitch":118.0,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":34.0625,"pitch":-132.3125,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":167.5,"pitch":-33.125,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":101.3125,"pitch":-146.75,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:26.957"} +{"sensors":[{"euler":{"heading":299.25,"pitch":130.5625,"roll":46.8125},"location":"Left Knee"},{"euler":{"heading":156.9375,"pitch":-160.0625,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":115.0625,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":31.125,"pitch":-133.8125,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":168.0,"pitch":-48.75,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":94.625,"pitch":-141.25,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:27.58"} +{"sensors":[{"euler":{"heading":215.625,"pitch":129.125,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":169.125,"pitch":-143.8125,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":88.0625,"pitch":112.0625,"roll":80.0625},"location":"Right Ankle"},{"euler":{"heading":29.0625,"pitch":-135.0,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":-61.125,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":86.625,"pitch":-130.1875,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:27.158"} +{"sensors":[{"euler":{"heading":212.375,"pitch":133.75,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":162.25,"pitch":-155.0625,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":87.75,"pitch":109.5,"roll":81.0},"location":"Right Ankle"},{"euler":{"heading":28.5,"pitch":-135.3125,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":171.0625,"pitch":-68.1875,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":83.1875,"pitch":-125.75,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:27.259"} +{"sensors":[{"euler":{"heading":288.125,"pitch":143.4375,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":148.9375,"pitch":173.0625,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":109.875,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":28.375,"pitch":-134.875,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":172.5625,"pitch":-71.5,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":80.75,"pitch":-124.125,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:27.360"} +{"sensors":[{"euler":{"heading":273.1875,"pitch":156.4375,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":135.0625,"pitch":139.875,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":173.6875,"roll":83.1875},"location":"Right Ankle"},{"euler":{"heading":27.5,"pitch":-135.125,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":173.8125,"pitch":-74.8125,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":78.8125,"pitch":-123.75,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:27.461"} +{"sensors":[{"euler":{"heading":263.0625,"pitch":169.5625,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":129.0,"pitch":127.0,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":83.9375,"pitch":174.875,"roll":84.375},"location":"Right Ankle"},{"euler":{"heading":27.1875,"pitch":-136.0625,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":176.3125,"pitch":-77.375,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-124.875,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:27.562"} +{"sensors":[{"euler":{"heading":261.3125,"pitch":174.5625,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":129.0,"pitch":124.25,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":176.4375,"roll":85.6875},"location":"Right Ankle"},{"euler":{"heading":27.8125,"pitch":-137.25,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":180.9375,"pitch":-80.1875,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":85.0625,"pitch":-127.0,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:27.663"} +{"sensors":[{"euler":{"heading":269.4375,"pitch":169.3125,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":133.125,"pitch":127.0625,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":178.5,"roll":86.75},"location":"Right Ankle"},{"euler":{"heading":28.625,"pitch":-138.5,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":185.25,"pitch":-79.8125,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":90.0625,"pitch":-129.4375,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:27.764"} +{"sensors":[{"euler":{"heading":274.125,"pitch":163.9375,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":138.125,"pitch":130.0,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":78.5625,"pitch":-178.0,"roll":85.5},"location":"Right Ankle"},{"euler":{"heading":27.125,"pitch":-140.1875,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":190.375,"pitch":-81.1875,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":91.6875,"pitch":-130.875,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:27.865"} +{"sensors":[{"euler":{"heading":279.125,"pitch":158.875,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":141.0,"pitch":130.6875,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":-122.875,"roll":80.375},"location":"Right Ankle"},{"euler":{"heading":28.4375,"pitch":-139.875,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":197.6875,"pitch":-79.125,"roll":60.3125},"location":"Right Knee"},{"euler":{"heading":95.125,"pitch":-132.9375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:27.965"} +{"sensors":[{"euler":{"heading":281.5625,"pitch":155.125,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":142.5,"pitch":130.3125,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":-108.9375,"roll":72.0},"location":"Right Ankle"},{"euler":{"heading":36.9375,"pitch":-132.5,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":203.4375,"pitch":-75.625,"roll":55.75},"location":"Right Knee"},{"euler":{"heading":97.125,"pitch":-134.5625,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:28.66"} +{"sensors":[{"euler":{"heading":282.9375,"pitch":152.0,"roll":61.9375},"location":"Left Knee"},{"euler":{"heading":143.3125,"pitch":130.0625,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":62.1875,"pitch":-109.625,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":43.1875,"pitch":-124.375,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":204.25,"pitch":-73.6875,"roll":55.0},"location":"Right Knee"},{"euler":{"heading":97.25,"pitch":-135.1875,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:28.167"} +{"sensors":[{"euler":{"heading":284.1875,"pitch":149.125,"roll":61.75},"location":"Left Knee"},{"euler":{"heading":144.3125,"pitch":130.9375,"roll":75.9375},"location":"Left Ankle"},{"euler":{"heading":67.1875,"pitch":-126.125,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":47.625,"pitch":-121.0,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":196.4375,"pitch":-68.3125,"roll":61.625},"location":"Right Knee"},{"euler":{"heading":97.25,"pitch":-135.75,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:28.267"} +{"sensors":[{"euler":{"heading":285.5625,"pitch":146.4375,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":144.8125,"pitch":133.0,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":-171.75,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":50.75,"pitch":-119.25,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":186.9375,"pitch":-58.375,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":97.6875,"pitch":-137.3125,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:28.368"} +{"sensors":[{"euler":{"heading":287.625,"pitch":144.25,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":145.9375,"pitch":136.3125,"roll":77.9375},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":135.4375,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":50.8125,"pitch":-119.3125,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":177.8125,"pitch":-38.5,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":98.4375,"pitch":-139.0,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:28.469"} +{"sensors":[{"euler":{"heading":289.5,"pitch":142.0,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":147.0625,"pitch":142.0,"roll":78.4375},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":119.3125,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":47.6875,"pitch":-121.0625,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":170.9375,"pitch":-8.4375,"roll":80.75},"location":"Right Knee"},{"euler":{"heading":99.0625,"pitch":-141.375,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:28.570"} +{"sensors":[{"euler":{"heading":291.5,"pitch":139.8125,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":147.9375,"pitch":149.4375,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":100.75,"pitch":115.625,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":44.3125,"pitch":-123.0,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":168.125,"pitch":4.0,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":99.5625,"pitch":-144.3125,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:28.671"} +{"sensors":[{"euler":{"heading":293.75,"pitch":137.5,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":149.25,"pitch":159.25,"roll":77.625},"location":"Left Ankle"},{"euler":{"heading":96.375,"pitch":118.5625,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":40.0625,"pitch":-124.875,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":166.875,"pitch":-9.625,"roll":81.4375},"location":"Right Knee"},{"euler":{"heading":99.375,"pitch":-146.875,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:28.772"} +{"sensors":[{"euler":{"heading":297.75,"pitch":134.0,"roll":53.375},"location":"Left Knee"},{"euler":{"heading":151.875,"pitch":173.1875,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":92.625,"pitch":118.6875,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":38.25,"pitch":-127.875,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":166.5625,"pitch":-21.8125,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":101.375,"pitch":-147.9375,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:28.873"} +{"sensors":[{"euler":{"heading":300.125,"pitch":130.625,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":155.6875,"pitch":-168.3125,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":115.375,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":35.5,"pitch":-130.5,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":166.8125,"pitch":-36.9375,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":99.75,"pitch":-146.375,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:28.974"} +{"sensors":[{"euler":{"heading":213.75,"pitch":129.375,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":168.6875,"pitch":-145.5,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":111.875,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":32.5,"pitch":-132.25,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":167.5,"pitch":-50.125,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":91.25,"pitch":-137.375,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:29.75"} +{"sensors":[{"euler":{"heading":217.9375,"pitch":130.0625,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":172.375,"pitch":-142.375,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":108.8125,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-133.5625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":168.625,"pitch":-60.3125,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":85.3125,"pitch":-129.875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:29.176"} +{"sensors":[{"euler":{"heading":298.6875,"pitch":136.6875,"roll":46.4375},"location":"Left Knee"},{"euler":{"heading":161.625,"pitch":-161.875,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":107.8125,"roll":80.8125},"location":"Right Ankle"},{"euler":{"heading":29.5,"pitch":-134.3125,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":170.125,"pitch":-66.5,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":82.4375,"pitch":-126.5,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:29.278"} +{"sensors":[{"euler":{"heading":283.8125,"pitch":147.125,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":147.8125,"pitch":165.125,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":108.8125,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":28.375,"pitch":-135.6875,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":171.625,"pitch":-71.125,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":80.5625,"pitch":-125.4375,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:29.378"} +{"sensors":[{"euler":{"heading":272.875,"pitch":158.25,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":136.3125,"pitch":140.5,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":174.4375,"roll":84.0},"location":"Right Ankle"},{"euler":{"heading":26.75,"pitch":-137.1875,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":172.9375,"pitch":-74.4375,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-125.5625,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:29.480"} +{"sensors":[{"euler":{"heading":266.25,"pitch":168.3125,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":132.75,"pitch":129.5625,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":176.6875,"roll":85.875},"location":"Right Ankle"},{"euler":{"heading":25.125,"pitch":-139.75,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":175.9375,"pitch":-76.5625,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":83.125,"pitch":-127.5,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:29.581"} +{"sensors":[{"euler":{"heading":287.9375,"pitch":165.5625,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":139.5,"pitch":133.875,"roll":67.3125},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":179.6875,"roll":87.1875},"location":"Right Ankle"},{"euler":{"heading":24.8125,"pitch":-142.625,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":182.4375,"pitch":-78.8125,"roll":69.0},"location":"Right Knee"},{"euler":{"heading":88.8125,"pitch":-129.1875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:29.682"} +{"sensors":[{"euler":{"heading":283.9375,"pitch":157.6875,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":146.6875,"pitch":139.5,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":-175.1875,"roll":83.75},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-144.9375,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":191.25,"pitch":-80.75,"roll":64.0},"location":"Right Knee"},{"euler":{"heading":93.9375,"pitch":-131.8125,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:29.782"} +{"sensors":[{"euler":{"heading":290.3125,"pitch":151.6875,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":152.5,"pitch":143.875,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":69.125,"pitch":-114.0625,"roll":75.625},"location":"Right Ankle"},{"euler":{"heading":32.0625,"pitch":-141.4375,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":203.5625,"pitch":-78.9375,"roll":57.875},"location":"Right Knee"},{"euler":{"heading":99.0625,"pitch":-134.0625,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:29.883"} +{"sensors":[{"euler":{"heading":293.5625,"pitch":147.5625,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":155.0,"pitch":147.4375,"roll":77.625},"location":"Left Ankle"},{"euler":{"heading":66.125,"pitch":-110.5625,"roll":69.25},"location":"Right Ankle"},{"euler":{"heading":40.5,"pitch":-130.0625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":208.875,"pitch":-76.5625,"roll":54.125},"location":"Right Knee"},{"euler":{"heading":101.1875,"pitch":-137.0625,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:29.984"} +{"sensors":[{"euler":{"heading":295.1875,"pitch":143.9375,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":155.75,"pitch":151.0,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-113.875,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":45.25,"pitch":-123.75,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":202.9375,"pitch":-73.875,"roll":58.9375},"location":"Right Knee"},{"euler":{"heading":101.875,"pitch":-140.0,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:30.84"} +{"sensors":[{"euler":{"heading":297.4375,"pitch":140.375,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":156.6875,"pitch":157.8125,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":77.8125,"pitch":-151.25,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":48.6875,"pitch":-120.8125,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":190.6875,"pitch":-48.6875,"roll":69.3125},"location":"Right Knee"},{"euler":{"heading":102.5,"pitch":-143.0,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:30.185"} +{"sensors":[{"euler":{"heading":299.8125,"pitch":136.9375,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":158.9375,"pitch":170.0,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":132.4375,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":49.875,"pitch":-120.1875,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":-34.25,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":103.5,"pitch":-145.9375,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:30.286"} +{"sensors":[{"euler":{"heading":303.6875,"pitch":132.5625,"roll":54.1875},"location":"Left Knee"},{"euler":{"heading":162.25,"pitch":-173.0,"roll":79.25},"location":"Left Ankle"},{"euler":{"heading":102.0,"pitch":113.6875,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":45.25,"pitch":-122.8125,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":166.875,"pitch":14.375,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":104.9375,"pitch":-150.375,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:30.386"} +{"sensors":[{"euler":{"heading":307.3125,"pitch":129.1875,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":166.4375,"pitch":-154.8125,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":102.5,"pitch":112.3125,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":39.8125,"pitch":-125.4375,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":23.125,"roll":80.4375},"location":"Right Knee"},{"euler":{"heading":106.625,"pitch":-154.875,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:30.487"} +{"sensors":[{"euler":{"heading":313.1875,"pitch":125.0625,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":173.9375,"pitch":-136.5625,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":116.375,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":36.1875,"pitch":-128.0625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":161.0625,"pitch":-6.0625,"roll":81.125},"location":"Right Knee"},{"euler":{"heading":106.875,"pitch":-155.5,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:30.588"} +{"sensors":[{"euler":{"heading":230.125,"pitch":122.9375,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":191.75,"pitch":-120.375,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":117.625,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":32.875,"pitch":-130.9375,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":-36.625,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":96.25,"pitch":-144.5,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:30.688"} +{"sensors":[{"euler":{"heading":236.0,"pitch":123.4375,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":196.75,"pitch":-120.6875,"roll":53.3125},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":119.5,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":31.3125,"pitch":-132.5625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":166.875,"pitch":-55.4375,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":89.25,"pitch":-131.5,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:30.789"} +{"sensors":[{"euler":{"heading":224.0625,"pitch":131.5,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":181.5625,"pitch":-137.875,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":175.5625,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":29.6875,"pitch":-134.625,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":171.3125,"pitch":-70.625,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":83.5,"pitch":-126.5625,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:30.890"} +{"sensors":[{"euler":{"heading":287.4375,"pitch":150.0625,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":154.4375,"pitch":169.875,"roll":71.25},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":178.0625,"roll":87.1875},"location":"Right Ankle"},{"euler":{"heading":28.5625,"pitch":-136.75,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":174.9375,"pitch":-76.4375,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":79.25,"pitch":-125.375,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:30.991"} +{"sensors":[{"euler":{"heading":266.0,"pitch":169.4375,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":131.375,"pitch":129.1875,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":73.3125,"pitch":-178.5625,"roll":88.125},"location":"Right Ankle"},{"euler":{"heading":27.0625,"pitch":-138.875,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":179.5,"pitch":-84.1875,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":79.9375,"pitch":-125.625,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:31.91"} +{"sensors":[{"euler":{"heading":258.9375,"pitch":-179.25,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":126.3125,"pitch":120.625,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":69.5625,"pitch":-173.75,"roll":83.75},"location":"Right Ankle"},{"euler":{"heading":26.0,"pitch":-142.375,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":186.0625,"pitch":-86.25,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":85.625,"pitch":-128.125,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:31.192"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":174.5625,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":135.0,"pitch":126.6875,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":63.6875,"pitch":-91.5625,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":25.9375,"pitch":-145.6875,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":193.4375,"pitch":-85.375,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":90.875,"pitch":-129.75,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:31.292"} +{"sensors":[{"euler":{"heading":279.25,"pitch":165.1875,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":144.875,"pitch":135.25,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":55.5,"pitch":-88.625,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":30.6875,"pitch":-142.3125,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":205.0,"pitch":-83.9375,"roll":53.0},"location":"Right Knee"},{"euler":{"heading":91.4375,"pitch":-130.25,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:31.393"} +{"sensors":[{"euler":{"heading":285.1875,"pitch":158.0625,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":148.75,"pitch":140.1875,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":51.0,"pitch":-93.0625,"roll":58.875},"location":"Right Ankle"},{"euler":{"heading":41.4375,"pitch":-130.4375,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":210.4375,"pitch":-79.0,"roll":49.0625},"location":"Right Knee"},{"euler":{"heading":95.8125,"pitch":-132.8125,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:31.494"} +{"sensors":[{"euler":{"heading":288.3125,"pitch":152.9375,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":151.0625,"pitch":141.375,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":59.25,"pitch":-101.625,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":50.1875,"pitch":-123.875,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":203.25,"pitch":-74.375,"roll":57.8125},"location":"Right Knee"},{"euler":{"heading":97.4375,"pitch":-134.8125,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:31.595"} +{"sensors":[{"euler":{"heading":291.3125,"pitch":147.875,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":153.1875,"pitch":148.3125,"roll":77.6875},"location":"Left Ankle"},{"euler":{"heading":74.8125,"pitch":-141.875,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":56.375,"pitch":-120.0625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":189.0625,"pitch":-60.375,"roll":71.3125},"location":"Right Knee"},{"euler":{"heading":98.8125,"pitch":-138.8125,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:31.695"} +{"sensors":[{"euler":{"heading":294.6875,"pitch":142.8125,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":155.6875,"pitch":159.3125,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":94.5,"pitch":123.625,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":57.8125,"pitch":-120.9375,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":174.25,"pitch":-17.5625,"roll":81.0625},"location":"Right Knee"},{"euler":{"heading":99.5625,"pitch":-141.875,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:31.796"} +{"sensors":[{"euler":{"heading":297.8125,"pitch":137.5625,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":158.625,"pitch":175.625,"roll":78.875},"location":"Left Ankle"},{"euler":{"heading":106.375,"pitch":112.625,"roll":65.6875},"location":"Right Ankle"},{"euler":{"heading":53.0625,"pitch":-124.25,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":164.4375,"pitch":33.375,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":100.5,"pitch":-145.25,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:31.897"} +{"sensors":[{"euler":{"heading":302.625,"pitch":132.375,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":163.25,"pitch":-161.625,"roll":77.6875},"location":"Left Ankle"},{"euler":{"heading":104.0625,"pitch":112.125,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":48.3125,"pitch":-126.0,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":31.4375,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":101.5625,"pitch":-149.5625,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:31.998"} +{"sensors":[{"euler":{"heading":310.0625,"pitch":126.8125,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":170.75,"pitch":-142.0,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":92.4375,"pitch":116.6875,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":44.1875,"pitch":-127.6875,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":160.625,"pitch":5.625,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":102.9375,"pitch":-150.6875,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:32.98"} +{"sensors":[{"euler":{"heading":227.5625,"pitch":123.9375,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":187.4375,"pitch":-124.1875,"roll":59.4375},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":116.375,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":40.75,"pitch":-130.8125,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":162.6875,"pitch":-21.0,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":93.9375,"pitch":-140.0,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:32.199"} +{"sensors":[{"euler":{"heading":234.0,"pitch":124.6875,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":192.875,"pitch":-123.5625,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":114.9375,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":37.25,"pitch":-133.375,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":-45.1875,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":87.9375,"pitch":-128.3125,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:32.299"} +{"sensors":[{"euler":{"heading":220.6875,"pitch":132.0625,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":178.3125,"pitch":-140.625,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":114.6875,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":34.0625,"pitch":-135.1875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":167.625,"pitch":-60.0625,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":83.375,"pitch":-123.8125,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:32.400"} +{"sensors":[{"euler":{"heading":287.875,"pitch":145.8125,"roll":52.9375},"location":"Left Knee"},{"euler":{"heading":156.1875,"pitch":174.5625,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":79.5,"pitch":175.625,"roll":84.875},"location":"Right Ankle"},{"euler":{"heading":32.0,"pitch":-137.9375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":172.75,"pitch":-74.875,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":80.25,"pitch":-123.3125,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:32.501"} +{"sensors":[{"euler":{"heading":269.125,"pitch":164.25,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":134.4375,"pitch":129.625,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":179.1875,"roll":87.625},"location":"Right Ankle"},{"euler":{"heading":31.1875,"pitch":-139.5625,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":177.8125,"pitch":-79.3125,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-123.6875,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:32.602"} +{"sensors":[{"euler":{"heading":258.375,"pitch":179.625,"roll":62.375},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":117.1875,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":72.5625,"pitch":-176.0,"roll":85.6875},"location":"Right Ankle"},{"euler":{"heading":31.3125,"pitch":-141.75,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":184.875,"pitch":-83.4375,"roll":68.875},"location":"Right Knee"},{"euler":{"heading":85.4375,"pitch":-125.8125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:32.703"} +{"sensors":[{"euler":{"heading":269.125,"pitch":174.5625,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":136.4375,"pitch":124.25,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":67.25,"pitch":-96.625,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":32.3125,"pitch":-143.25,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":194.5625,"pitch":-82.875,"roll":62.1875},"location":"Right Knee"},{"euler":{"heading":90.5,"pitch":-127.25,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:32.803"} +{"sensors":[{"euler":{"heading":276.1875,"pitch":165.5,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":145.0,"pitch":128.4375,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":56.9375,"pitch":-91.8125,"roll":65.8125},"location":"Right Ankle"},{"euler":{"heading":40.1875,"pitch":-138.1875,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":204.4375,"pitch":-81.4375,"roll":54.375},"location":"Right Knee"},{"euler":{"heading":88.1875,"pitch":-126.5625,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:32.905"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":158.75,"roll":62.1875},"location":"Left Knee"},{"euler":{"heading":149.5,"pitch":130.6875,"roll":76.6875},"location":"Left Ankle"},{"euler":{"heading":54.375,"pitch":-95.0,"roll":63.25},"location":"Right Ankle"},{"euler":{"heading":48.375,"pitch":-129.25,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":205.125,"pitch":-76.25,"roll":54.3125},"location":"Right Knee"},{"euler":{"heading":90.3125,"pitch":-128.8125,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:33.5"} +{"sensors":[{"euler":{"heading":283.1875,"pitch":153.0625,"roll":62.125},"location":"Left Knee"},{"euler":{"heading":150.3125,"pitch":133.4375,"roll":78.0},"location":"Left Ankle"},{"euler":{"heading":63.9375,"pitch":-110.5625,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":56.3125,"pitch":-123.375,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":194.625,"pitch":-67.4375,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":92.8125,"pitch":-131.9375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:33.106"} +{"sensors":[{"euler":{"heading":286.8125,"pitch":147.75,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":153.0,"pitch":140.375,"roll":79.8125},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":168.5625,"roll":81.0625},"location":"Right Ankle"},{"euler":{"heading":60.0625,"pitch":-120.9375,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":179.6875,"pitch":-42.8125,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":92.9375,"pitch":-133.375,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:33.207"} +{"sensors":[{"euler":{"heading":291.1875,"pitch":141.9375,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":156.6875,"pitch":156.625,"roll":81.3125},"location":"Left Ankle"},{"euler":{"heading":101.125,"pitch":116.625,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":59.4375,"pitch":-122.5,"roll":43.8125},"location":"Right Hip"},{"euler":{"heading":170.4375,"pitch":21.4375,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-136.4375,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:33.308"} +{"sensors":[{"euler":{"heading":295.5625,"pitch":136.25,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":159.5625,"pitch":-178.4375,"roll":80.9375},"location":"Left Ankle"},{"euler":{"heading":111.75,"pitch":106.8125,"roll":64.125},"location":"Right Ankle"},{"euler":{"heading":54.0,"pitch":-125.25,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":48.0,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":96.4375,"pitch":-140.125,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:33.409"} +{"sensors":[{"euler":{"heading":301.875,"pitch":131.0,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":164.125,"pitch":-153.5,"roll":78.25},"location":"Left Ankle"},{"euler":{"heading":103.625,"pitch":109.8125,"roll":68.5},"location":"Right Ankle"},{"euler":{"heading":47.75,"pitch":-127.75,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":163.4375,"pitch":30.9375,"roll":81.125},"location":"Right Knee"},{"euler":{"heading":96.75,"pitch":-143.5,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:33.510"} +{"sensors":[{"euler":{"heading":309.875,"pitch":125.3125,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":173.625,"pitch":-133.5,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":93.0625,"pitch":112.5625,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":44.8125,"pitch":-129.25,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":162.5625,"pitch":0.75,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-139.875,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:33.611"} +{"sensors":[{"euler":{"heading":229.8125,"pitch":123.5625,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":190.375,"pitch":-122.375,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":110.5625,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":39.125,"pitch":-132.375,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":-3.3125,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":87.125,"pitch":-130.625,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:33.711"} +{"sensors":[{"euler":{"heading":226.25,"pitch":129.125,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":183.0,"pitch":-133.875,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":85.5,"pitch":110.0625,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":36.8125,"pitch":-133.625,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":-61.75,"roll":82.0},"location":"Right Knee"},{"euler":{"heading":83.6875,"pitch":-126.3125,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:33.813"} +{"sensors":[{"euler":{"heading":296.3125,"pitch":140.9375,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":159.625,"pitch":-168.75,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":174.375,"roll":84.0625},"location":"Right Ankle"},{"euler":{"heading":33.9375,"pitch":-136.4375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":172.875,"pitch":-76.0,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":79.625,"pitch":-124.5,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:33.914"} +{"sensors":[{"euler":{"heading":273.75,"pitch":158.25,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":136.4375,"pitch":138.75,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":177.125,"roll":87.0625},"location":"Right Ankle"},{"euler":{"heading":33.125,"pitch":-137.125,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-80.5625,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":78.8125,"pitch":-124.875,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:34.15"} +{"sensors":[{"euler":{"heading":262.375,"pitch":175.6875,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":124.5625,"pitch":119.0,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":-179.0,"roll":89.0},"location":"Right Ankle"},{"euler":{"heading":32.6875,"pitch":-139.5625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":182.3125,"pitch":-83.3125,"roll":72.6875},"location":"Right Knee"},{"euler":{"heading":84.5625,"pitch":-127.5625,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:34.115"} +{"sensors":[{"euler":{"heading":262.5625,"pitch":179.0625,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":120.875,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-6.125,"roll":83.8125},"location":"Right Ankle"},{"euler":{"heading":32.375,"pitch":-142.3125,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":189.375,"pitch":-85.6875,"roll":68.0},"location":"Right Knee"},{"euler":{"heading":88.75,"pitch":-129.0625,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:34.215"} +{"sensors":[{"euler":{"heading":274.125,"pitch":169.5,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":138.8125,"pitch":127.3125,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":68.3125,"pitch":-85.6875,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":33.6875,"pitch":-140.9375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":197.0625,"pitch":-85.4375,"roll":61.5625},"location":"Right Knee"},{"euler":{"heading":91.1875,"pitch":-130.375,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:34.316"} +{"sensors":[{"euler":{"heading":280.0,"pitch":162.0,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":143.5625,"pitch":131.625,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":58.6875,"pitch":-91.3125,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":42.0625,"pitch":-135.4375,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":205.375,"pitch":-83.0,"roll":55.125},"location":"Right Knee"},{"euler":{"heading":93.5,"pitch":-132.125,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:34.416"} +{"sensors":[{"euler":{"heading":284.1875,"pitch":155.9375,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":148.75,"pitch":137.25,"roll":74.5},"location":"Left Ankle"},{"euler":{"heading":55.8125,"pitch":-89.0625,"roll":64.6875},"location":"Right Ankle"},{"euler":{"heading":49.5625,"pitch":-125.9375,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":205.5625,"pitch":-77.0,"roll":53.75},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-133.6875,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:34.517"} +{"sensors":[{"euler":{"heading":288.8125,"pitch":150.5,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":150.5625,"pitch":141.25,"roll":76.25},"location":"Left Ankle"},{"euler":{"heading":65.625,"pitch":-98.6875,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":54.125,"pitch":-121.0,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":195.875,"pitch":-71.5,"roll":63.375},"location":"Right Knee"},{"euler":{"heading":96.5625,"pitch":-136.125,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:34.617"} +{"sensors":[{"euler":{"heading":293.25,"pitch":145.3125,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":153.875,"pitch":151.0,"roll":77.625},"location":"Left Ankle"},{"euler":{"heading":80.75,"pitch":177.0625,"roll":84.3125},"location":"Right Ankle"},{"euler":{"heading":56.5625,"pitch":-118.4375,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":181.9375,"pitch":-53.5625,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":97.5,"pitch":-138.9375,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:34.718"} +{"sensors":[{"euler":{"heading":296.6875,"pitch":140.625,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":156.9375,"pitch":163.9375,"roll":78.4375},"location":"Left Ankle"},{"euler":{"heading":99.0625,"pitch":108.625,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":53.875,"pitch":-120.5,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":168.75,"pitch":11.8125,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":97.8125,"pitch":-142.1875,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:34.819"} +{"sensors":[{"euler":{"heading":300.3125,"pitch":136.1875,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":159.75,"pitch":179.25,"roll":78.5},"location":"Left Ankle"},{"euler":{"heading":105.5,"pitch":102.625,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":48.8125,"pitch":-122.75,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":40.625,"roll":80.75},"location":"Right Knee"},{"euler":{"heading":99.125,"pitch":-147.0,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:34.919"} +{"sensors":[{"euler":{"heading":304.875,"pitch":131.9375,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":163.875,"pitch":-161.25,"roll":76.6875},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":107.0,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":41.9375,"pitch":-125.125,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":159.125,"pitch":20.875,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":99.875,"pitch":-151.4375,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:35.21"} +{"sensors":[{"euler":{"heading":310.6875,"pitch":126.75,"roll":45.4375},"location":"Left Knee"},{"euler":{"heading":171.9375,"pitch":-141.3125,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":105.0625,"roll":74.4375},"location":"Right Ankle"},{"euler":{"heading":39.25,"pitch":-127.125,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":159.1875,"pitch":-7.0625,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":97.75,"pitch":-148.3125,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:35.121"} +{"sensors":[{"euler":{"heading":228.25,"pitch":124.5,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":187.75,"pitch":-124.0,"roll":58.625},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":100.1875,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":34.125,"pitch":-131.0,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":162.375,"pitch":-4.0625,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":86.875,"pitch":-136.4375,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:35.222"} +{"sensors":[{"euler":{"heading":226.4375,"pitch":128.0,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":183.4375,"pitch":-128.6875,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":84.0625,"pitch":97.5,"roll":79.9375},"location":"Right Ankle"},{"euler":{"heading":32.9375,"pitch":-132.5,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":166.125,"pitch":-66.875,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":83.1875,"pitch":-128.9375,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:35.322"} +{"sensors":[{"euler":{"heading":299.625,"pitch":137.4375,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":165.75,"pitch":-150.0,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":97.375,"roll":81.9375},"location":"Right Ankle"},{"euler":{"heading":30.3125,"pitch":-134.9375,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":169.4375,"pitch":-75.0625,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":79.5,"pitch":-125.75,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:35.423"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":151.9375,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":144.5625,"pitch":146.5,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":78.875,"pitch":174.6875,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":29.5625,"pitch":-137.0,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":173.4375,"pitch":-79.875,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":77.0625,"pitch":-124.875,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:35.524"} +{"sensors":[{"euler":{"heading":265.5625,"pitch":168.0625,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":128.25,"pitch":127.0625,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":76.125,"pitch":1.875,"roll":88.0625},"location":"Right Ankle"},{"euler":{"heading":28.5,"pitch":-138.9375,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":178.0,"pitch":-83.0,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":78.6875,"pitch":-125.8125,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:35.625"} +{"sensors":[{"euler":{"heading":259.9375,"pitch":178.875,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":125.3125,"pitch":120.25,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":73.375,"pitch":-2.25,"roll":87.5625},"location":"Right Ankle"},{"euler":{"heading":28.25,"pitch":-141.5,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":183.9375,"pitch":-86.0625,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":84.5625,"pitch":-129.4375,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:35.726"} +{"sensors":[{"euler":{"heading":269.5625,"pitch":172.8125,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":134.4375,"pitch":126.5625,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":68.625,"pitch":-84.0625,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":27.8125,"pitch":-144.5625,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":190.625,"pitch":-85.6875,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":90.5,"pitch":-131.9375,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:35.827"} +{"sensors":[{"euler":{"heading":279.9375,"pitch":164.375,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":141.25,"pitch":131.0,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":60.4375,"pitch":-85.125,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":32.125,"pitch":-139.9375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":200.8125,"pitch":-84.75,"roll":56.6875},"location":"Right Knee"},{"euler":{"heading":92.75,"pitch":-133.6875,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:35.927"} +{"sensors":[{"euler":{"heading":285.5625,"pitch":157.3125,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":145.9375,"pitch":135.5,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":56.1875,"pitch":-92.5625,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":39.8125,"pitch":-131.125,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":206.875,"pitch":-81.5625,"roll":52.6875},"location":"Right Knee"},{"euler":{"heading":96.5,"pitch":-136.375,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:36.28"} +{"sensors":[{"euler":{"heading":289.6875,"pitch":151.1875,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":148.5625,"pitch":138.375,"roll":75.75},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-98.125,"roll":72.4375},"location":"Right Ankle"},{"euler":{"heading":46.9375,"pitch":-124.0,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":200.5,"pitch":-76.0,"roll":59.0625},"location":"Right Knee"},{"euler":{"heading":98.625,"pitch":-138.3125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:36.129"} +{"sensors":[{"euler":{"heading":293.3125,"pitch":146.1875,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":150.9375,"pitch":146.9375,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":-139.4375,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":52.375,"pitch":-119.625,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":189.0,"pitch":-64.5625,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":99.875,"pitch":-141.3125,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:36.230"} +{"sensors":[{"euler":{"heading":297.1875,"pitch":141.5,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":154.375,"pitch":159.125,"roll":78.25},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":123.5625,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":53.625,"pitch":-119.125,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":175.25,"pitch":-30.375,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":101.25,"pitch":-144.0,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:36.331"} +{"sensors":[{"euler":{"heading":300.875,"pitch":137.0,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":157.5625,"pitch":174.0625,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":104.0,"pitch":105.0625,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":50.3125,"pitch":-121.25,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":166.25,"pitch":29.0625,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":102.75,"pitch":-148.0,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:36.431"} +{"sensors":[{"euler":{"heading":305.3125,"pitch":132.875,"roll":51.6875},"location":"Left Knee"},{"euler":{"heading":161.6875,"pitch":-166.875,"roll":77.6875},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":106.0,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":46.25,"pitch":-122.5,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":162.25,"pitch":36.125,"roll":81.0625},"location":"Right Knee"},{"euler":{"heading":103.6875,"pitch":-152.375,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:36.532"} +{"sensors":[{"euler":{"heading":309.75,"pitch":128.6875,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":167.3125,"pitch":-148.0625,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":107.875,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":39.5625,"pitch":-126.4375,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":159.0625,"pitch":9.5625,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":102.375,"pitch":-152.5,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:36.633"} +{"sensors":[{"euler":{"heading":226.75,"pitch":126.1875,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":183.625,"pitch":-129.25,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":105.8125,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":34.8125,"pitch":-130.0,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":160.875,"pitch":-2.3125,"roll":83.375},"location":"Right Knee"},{"euler":{"heading":92.3125,"pitch":-141.8125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:36.733"} +{"sensors":[{"euler":{"heading":230.375,"pitch":126.875,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":185.9375,"pitch":-128.1875,"roll":59.75},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":102.5625,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":31.8125,"pitch":-132.3125,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":164.6875,"pitch":-57.3125,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":87.625,"pitch":-132.5,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:36.834"} +{"sensors":[{"euler":{"heading":217.5,"pitch":133.625,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":171.75,"pitch":-144.8125,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":101.625,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":29.25,"pitch":-134.375,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":167.75,"pitch":-69.3125,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":82.875,"pitch":-128.1875,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:36.935"} +{"sensors":[{"euler":{"heading":287.5,"pitch":145.8125,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":152.625,"pitch":175.3125,"roll":71.25},"location":"Left Ankle"},{"euler":{"heading":78.875,"pitch":174.75,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":28.0,"pitch":-136.75,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":171.25,"pitch":-76.8125,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-126.25,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:37.36"} +{"sensors":[{"euler":{"heading":274.1875,"pitch":159.5,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":139.9375,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":76.0,"pitch":177.9375,"roll":87.9375},"location":"Right Ankle"},{"euler":{"heading":26.75,"pitch":-139.0,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-80.6875,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":78.1875,"pitch":-125.9375,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:37.136"} +{"sensors":[{"euler":{"heading":265.0625,"pitch":172.0625,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":125.3125,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":-2.375,"roll":87.375},"location":"Right Ankle"},{"euler":{"heading":27.0625,"pitch":-141.75,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":181.625,"pitch":-85.375,"roll":70.6875},"location":"Right Knee"},{"euler":{"heading":82.8125,"pitch":-128.125,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:37.238"} +{"sensors":[{"euler":{"heading":266.9375,"pitch":175.4375,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":133.5,"pitch":126.125,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":68.25,"pitch":-83.5,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":26.5,"pitch":-145.25,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":188.3125,"pitch":-85.8125,"roll":65.625},"location":"Right Knee"},{"euler":{"heading":88.0,"pitch":-129.875,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:37.338"} +{"sensors":[{"euler":{"heading":281.75,"pitch":165.0625,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":144.0,"pitch":134.375,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":61.75,"pitch":-83.125,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":27.3125,"pitch":-144.0625,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":198.9375,"pitch":-85.3125,"roll":58.0625},"location":"Right Knee"},{"euler":{"heading":92.0625,"pitch":-131.75,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:37.439"} +{"sensors":[{"euler":{"heading":289.0,"pitch":157.3125,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":149.375,"pitch":139.25,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":53.5,"pitch":-88.375,"roll":62.5},"location":"Right Ankle"},{"euler":{"heading":36.4375,"pitch":-134.75,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":206.75,"pitch":-85.5,"roll":52.125},"location":"Right Knee"},{"euler":{"heading":96.0625,"pitch":-133.875,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:37.539"} +{"sensors":[{"euler":{"heading":291.9375,"pitch":151.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":151.75,"pitch":142.4375,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":56.5,"pitch":-92.75,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":44.1875,"pitch":-126.1875,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":207.25,"pitch":-80.5625,"roll":53.5625},"location":"Right Knee"},{"euler":{"heading":97.125,"pitch":-136.5,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:37.640"} +{"sensors":[{"euler":{"heading":294.375,"pitch":147.25,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":153.3125,"pitch":146.0625,"roll":77.125},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-103.4375,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":51.5625,"pitch":-120.0,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":195.8125,"pitch":-70.375,"roll":63.625},"location":"Right Knee"},{"euler":{"heading":99.1875,"pitch":-140.5,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:37.740"} +{"sensors":[{"euler":{"heading":297.6875,"pitch":142.9375,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":155.75,"pitch":152.8125,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":165.1875,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":55.125,"pitch":-117.4375,"roll":44.25},"location":"Right Hip"},{"euler":{"heading":179.0625,"pitch":-45.4375,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":100.9375,"pitch":-144.6875,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:37.841"} +{"sensors":[{"euler":{"heading":300.875,"pitch":138.5625,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":158.6875,"pitch":166.9375,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":113.5625,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":52.9375,"pitch":-118.75,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":166.3125,"pitch":11.8125,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":101.5625,"pitch":-148.4375,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:37.942"} +{"sensors":[{"euler":{"heading":304.125,"pitch":134.4375,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":162.125,"pitch":-170.0625,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":108.0,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":47.125,"pitch":-121.9375,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":36.25,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":102.375,"pitch":-152.125,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:38.43"} +{"sensors":[{"euler":{"heading":309.1875,"pitch":130.3125,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":168.4375,"pitch":-149.1875,"roll":75.3125},"location":"Left Ankle"},{"euler":{"heading":95.125,"pitch":109.8125,"roll":69.1875},"location":"Right Ankle"},{"euler":{"heading":40.0,"pitch":-124.875,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":157.625,"pitch":21.625,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":103.3125,"pitch":-156.1875,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:38.145"} +{"sensors":[{"euler":{"heading":226.0,"pitch":125.8125,"roll":42.125},"location":"Left Knee"},{"euler":{"heading":178.75,"pitch":-131.875,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":108.1875,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":38.5625,"pitch":-126.875,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":158.25,"pitch":-1.5,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":100.25,"pitch":-151.75,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:38.246"} +{"sensors":[{"euler":{"heading":234.25,"pitch":124.125,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":190.1875,"pitch":-122.4375,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":83.8125,"pitch":103.8125,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":34.1875,"pitch":-130.125,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":161.25,"pitch":-30.3125,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":90.375,"pitch":-138.8125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:38.347"} +{"sensors":[{"euler":{"heading":227.375,"pitch":129.3125,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":179.5625,"pitch":-134.25,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":101.0,"roll":80.1875},"location":"Right Ankle"},{"euler":{"heading":31.625,"pitch":-132.25,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":164.8125,"pitch":-59.4375,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":85.3125,"pitch":-130.9375,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:38.448"} +{"sensors":[{"euler":{"heading":296.125,"pitch":140.4375,"roll":47.8125},"location":"Left Knee"},{"euler":{"heading":158.875,"pitch":-167.0625,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":99.5,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":29.375,"pitch":-134.6875,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":-70.125,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":80.0,"pitch":-127.25,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:38.549"} +{"sensors":[{"euler":{"heading":277.1875,"pitch":155.1875,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":139.625,"pitch":148.3125,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":175.0625,"roll":85.0},"location":"Right Ankle"},{"euler":{"heading":27.9375,"pitch":-136.5,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":-76.125,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":77.25,"pitch":-125.375,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:38.650"} +{"sensors":[{"euler":{"heading":265.125,"pitch":170.0,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":126.875,"pitch":124.6875,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":74.1875,"pitch":1.5,"roll":88.375},"location":"Right Ankle"},{"euler":{"heading":26.625,"pitch":-139.8125,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":175.875,"pitch":-81.375,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":79.125,"pitch":-126.3125,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:38.751"} +{"sensors":[{"euler":{"heading":261.375,"pitch":178.625,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":125.1875,"pitch":120.25,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":71.75,"pitch":-2.625,"roll":87.1875},"location":"Right Ankle"},{"euler":{"heading":26.4375,"pitch":-143.875,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":182.875,"pitch":-85.625,"roll":69.6875},"location":"Right Knee"},{"euler":{"heading":86.375,"pitch":-129.4375,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:38.852"} +{"sensors":[{"euler":{"heading":273.4375,"pitch":172.375,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":135.5625,"pitch":126.3125,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":66.5,"pitch":-77.0625,"roll":80.5},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-146.6875,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":190.5625,"pitch":-86.0,"roll":63.9375},"location":"Right Knee"},{"euler":{"heading":92.625,"pitch":-132.4375,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:38.952"} +{"sensors":[{"euler":{"heading":281.25,"pitch":163.4375,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":143.0625,"pitch":131.5,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":-85.8125,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":29.8125,"pitch":-142.0,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":200.5,"pitch":-85.6875,"roll":56.375},"location":"Right Knee"},{"euler":{"heading":92.625,"pitch":-133.6875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:39.53"} +{"sensors":[{"euler":{"heading":287.5625,"pitch":156.75,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":146.5,"pitch":134.375,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":54.4375,"pitch":-89.1875,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":38.25,"pitch":-131.5,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":205.1875,"pitch":-82.6875,"roll":53.625},"location":"Right Knee"},{"euler":{"heading":97.0625,"pitch":-137.3125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:39.154"} +{"sensors":[{"euler":{"heading":291.5,"pitch":151.3125,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":149.1875,"pitch":135.4375,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":62.3125,"pitch":-93.5625,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":48.1875,"pitch":-122.875,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":200.4375,"pitch":-75.0625,"roll":59.4375},"location":"Right Knee"},{"euler":{"heading":99.1875,"pitch":-140.0,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:39.254"} +{"sensors":[{"euler":{"heading":296.375,"pitch":146.3125,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":152.8125,"pitch":140.3125,"roll":78.375},"location":"Left Ankle"},{"euler":{"heading":71.3125,"pitch":-115.3125,"roll":80.8125},"location":"Right Ankle"},{"euler":{"heading":56.75,"pitch":-116.6875,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":189.5625,"pitch":-65.4375,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":101.75,"pitch":-143.5625,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:39.355"} +{"sensors":[{"euler":{"heading":299.6875,"pitch":141.6875,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":155.125,"pitch":149.25,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":139.875,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":59.125,"pitch":-115.875,"roll":41.625},"location":"Right Hip"},{"euler":{"heading":177.375,"pitch":-33.9375,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":103.3125,"pitch":-148.3125,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:39.456"} +{"sensors":[{"euler":{"heading":302.5,"pitch":137.0,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":158.0,"pitch":168.25,"roll":80.125},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":110.8125,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":55.6875,"pitch":-118.5625,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":24.3125,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":103.3125,"pitch":-152.125,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:39.556"} +{"sensors":[{"euler":{"heading":305.6875,"pitch":132.75,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":161.875,"pitch":-167.4375,"roll":78.8125},"location":"Left Ankle"},{"euler":{"heading":101.875,"pitch":109.9375,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":48.0625,"pitch":-122.4375,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":157.75,"pitch":36.375,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":103.4375,"pitch":-155.8125,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:39.657"} +{"sensors":[{"euler":{"heading":312.0,"pitch":128.5625,"roll":47.625},"location":"Left Knee"},{"euler":{"heading":169.125,"pitch":-144.1875,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":111.9375,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":41.125,"pitch":-125.1875,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":157.0,"pitch":22.5625,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":104.3125,"pitch":-158.3125,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:39.758"} +{"sensors":[{"euler":{"heading":228.6875,"pitch":125.0625,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":180.1875,"pitch":-128.5625,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":110.875,"roll":74.1875},"location":"Right Ankle"},{"euler":{"heading":39.4375,"pitch":-127.9375,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":158.3125,"pitch":0.1875,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":100.125,"pitch":-152.0625,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:39.858"} +{"sensors":[{"euler":{"heading":238.875,"pitch":122.75,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":199.75,"pitch":-113.75,"roll":51.25},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":108.8125,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":35.25,"pitch":-131.0625,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":161.4375,"pitch":-30.4375,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":88.4375,"pitch":-133.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:39.959"} +{"sensors":[{"euler":{"heading":232.3125,"pitch":127.5625,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":189.75,"pitch":-123.6875,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":106.75,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":33.75,"pitch":-132.125,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":163.8125,"pitch":-50.125,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":83.1875,"pitch":-125.5,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:40.60"} +{"sensors":[{"euler":{"heading":298.625,"pitch":140.0625,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":165.5,"pitch":-151.1875,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":79.5625,"pitch":108.75,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":32.3125,"pitch":-134.0,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":166.75,"pitch":-61.875,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":78.9375,"pitch":-124.0,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:40.161"} +{"sensors":[{"euler":{"heading":274.3125,"pitch":159.25,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":137.875,"pitch":144.4375,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":175.8125,"roll":85.4375},"location":"Right Ankle"},{"euler":{"heading":30.75,"pitch":-135.0625,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":170.5,"pitch":-70.375,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":76.9375,"pitch":-123.75,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:40.262"} +{"sensors":[{"euler":{"heading":260.6875,"pitch":178.375,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":122.9375,"pitch":120.375,"roll":60.4375},"location":"Left Ankle"},{"euler":{"heading":73.3125,"pitch":179.5,"roll":89.0625},"location":"Right Ankle"},{"euler":{"heading":29.375,"pitch":-137.8125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":-79.875,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":79.9375,"pitch":-126.6875,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:40.362"} +{"sensors":[{"euler":{"heading":259.6875,"pitch":-178.5,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":123.4375,"pitch":120.1875,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":70.8125,"pitch":-4.75,"roll":85.75},"location":"Right Ankle"},{"euler":{"heading":28.75,"pitch":-142.0625,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":185.625,"pitch":-84.75,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":87.0,"pitch":-129.6875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:40.463"} +{"sensors":[{"euler":{"heading":272.5625,"pitch":173.375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":134.875,"pitch":126.5625,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":65.1875,"pitch":-86.625,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":28.375,"pitch":-144.75,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":193.5,"pitch":-84.375,"roll":62.5},"location":"Right Knee"},{"euler":{"heading":92.125,"pitch":-132.0,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:40.564"} +{"sensors":[{"euler":{"heading":280.9375,"pitch":164.8125,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":142.25,"pitch":131.0625,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":56.6875,"pitch":-87.3125,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":36.125,"pitch":-140.125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":205.625,"pitch":-85.3125,"roll":55.25},"location":"Right Knee"},{"euler":{"heading":94.0,"pitch":-133.75,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:40.665"} +{"sensors":[{"euler":{"heading":286.9375,"pitch":158.5,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":132.5625,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":49.875,"pitch":-88.0,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":46.75,"pitch":-127.6875,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":210.8125,"pitch":-83.75,"roll":51.0625},"location":"Right Knee"},{"euler":{"heading":96.625,"pitch":-136.0625,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:40.766"} +{"sensors":[{"euler":{"heading":291.125,"pitch":153.5,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":147.8125,"pitch":134.0,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":56.1875,"pitch":-91.3125,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":54.4375,"pitch":-119.3125,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":201.375,"pitch":-76.125,"roll":59.3125},"location":"Right Knee"},{"euler":{"heading":97.875,"pitch":-137.6875,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:40.867"} +{"sensors":[{"euler":{"heading":294.875,"pitch":148.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":149.4375,"pitch":136.4375,"roll":76.5625},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-126.25,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":58.375,"pitch":-116.125,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":186.4375,"pitch":-58.25,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":99.125,"pitch":-141.25,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:40.968"} +{"sensors":[{"euler":{"heading":297.9375,"pitch":144.5625,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":152.0,"pitch":141.375,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":122.0625,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":59.75,"pitch":-115.5625,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":172.25,"pitch":0.375,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":101.625,"pitch":-145.375,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:41.69"} +{"sensors":[{"euler":{"heading":301.875,"pitch":139.4375,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":156.1875,"pitch":158.8125,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":105.0625,"pitch":109.4375,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":55.5,"pitch":-118.5625,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":42.0,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":102.0625,"pitch":-148.375,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:41.170"} +{"sensors":[{"euler":{"heading":305.5625,"pitch":134.5625,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":161.4375,"pitch":-174.125,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":109.4375,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":50.25,"pitch":-121.6875,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":158.9375,"pitch":43.4375,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":102.0625,"pitch":-151.0,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:41.271"} +{"sensors":[{"euler":{"heading":311.4375,"pitch":130.3125,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":167.6875,"pitch":-151.3125,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":97.0625,"pitch":110.0,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":44.125,"pitch":-124.625,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":158.5,"pitch":31.375,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":103.75,"pitch":-153.5,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:41.371"} +{"sensors":[{"euler":{"heading":228.4375,"pitch":126.6875,"roll":41.5625},"location":"Left Knee"},{"euler":{"heading":179.375,"pitch":-132.3125,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":91.4375,"pitch":107.4375,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":42.6875,"pitch":-126.8125,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":160.875,"pitch":12.875,"roll":82.0625},"location":"Right Knee"},{"euler":{"heading":99.0625,"pitch":-147.8125,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:41.472"} +{"sensors":[{"euler":{"heading":237.4375,"pitch":124.75,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":193.4375,"pitch":-120.9375,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":104.375,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":37.4375,"pitch":-130.25,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":162.25,"pitch":-1.375,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":87.9375,"pitch":-132.375,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:41.573"} +{"sensors":[{"euler":{"heading":229.25,"pitch":130.3125,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":183.625,"pitch":-130.875,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":103.6875,"roll":78.5625},"location":"Right Ankle"},{"euler":{"heading":35.6875,"pitch":-131.5,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":166.0625,"pitch":-44.0625,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":81.8125,"pitch":-125.125,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:41.674"} +{"sensors":[{"euler":{"heading":294.75,"pitch":143.25,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":158.75,"pitch":-165.5625,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":103.625,"roll":81.4375},"location":"Right Ankle"},{"euler":{"heading":34.375,"pitch":-132.5,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":168.75,"pitch":-59.75,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":77.9375,"pitch":-123.75,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:41.774"} +{"sensors":[{"euler":{"heading":272.875,"pitch":162.0,"roll":56.375},"location":"Left Knee"},{"euler":{"heading":134.8125,"pitch":139.8125,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":174.5,"roll":84.25},"location":"Right Ankle"},{"euler":{"heading":32.5625,"pitch":-134.0,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":172.3125,"pitch":-69.9375,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":76.75,"pitch":-124.0625,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:41.876"} +{"sensors":[{"euler":{"heading":259.625,"pitch":-179.75,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":120.75,"pitch":120.75,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":178.3125,"roll":88.1875},"location":"Right Ankle"},{"euler":{"heading":31.4375,"pitch":-136.3125,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":-77.4375,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":80.8125,"pitch":-127.125,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:41.976"} +{"sensors":[{"euler":{"heading":258.125,"pitch":-177.625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":120.1875,"pitch":118.0625,"roll":59.0625},"location":"Left Ankle"},{"euler":{"heading":72.0625,"pitch":-176.5,"roll":86.5},"location":"Right Ankle"},{"euler":{"heading":30.75,"pitch":-140.0625,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":185.0,"pitch":-83.0,"roll":69.9375},"location":"Right Knee"},{"euler":{"heading":85.6875,"pitch":-129.5,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:42.77"} +{"sensors":[{"euler":{"heading":272.0625,"pitch":174.1875,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":133.125,"pitch":126.0625,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":66.0625,"pitch":-83.125,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":29.6875,"pitch":-142.875,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":193.375,"pitch":-84.1875,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":91.0625,"pitch":-131.625,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:42.178"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":165.5,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":139.5,"pitch":130.1875,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":56.4375,"pitch":-88.375,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":35.3125,"pitch":-138.8125,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":203.4375,"pitch":-83.3125,"roll":57.5},"location":"Right Knee"},{"euler":{"heading":91.8125,"pitch":-132.4375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:42.279"} +{"sensors":[{"euler":{"heading":284.8125,"pitch":159.25,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":142.8125,"pitch":132.0625,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":53.375,"pitch":-90.4375,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":44.5625,"pitch":-127.8125,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":208.25,"pitch":-80.0,"roll":54.3125},"location":"Right Knee"},{"euler":{"heading":95.0625,"pitch":-134.75,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:42.379"} +{"sensors":[{"euler":{"heading":288.1875,"pitch":154.125,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":144.75,"pitch":132.6875,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":60.1875,"pitch":-98.25,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":51.25,"pitch":-120.4375,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":198.5625,"pitch":-71.4375,"roll":62.875},"location":"Right Knee"},{"euler":{"heading":96.125,"pitch":-136.625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:42.480"} +{"sensors":[{"euler":{"heading":291.625,"pitch":149.5625,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":147.0625,"pitch":136.75,"roll":76.5},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-169.0,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":56.125,"pitch":-116.9375,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":184.125,"pitch":-46.4375,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":97.25,"pitch":-139.5,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:42.581"} +{"sensors":[{"euler":{"heading":295.1875,"pitch":144.625,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":150.4375,"pitch":146.75,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":96.75,"pitch":112.25,"roll":74.1875},"location":"Right Ankle"},{"euler":{"heading":55.625,"pitch":-117.3125,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":170.8125,"pitch":16.75,"roll":81.4375},"location":"Right Knee"},{"euler":{"heading":98.5,"pitch":-142.25,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:42.682"} +{"sensors":[{"euler":{"heading":298.9375,"pitch":139.4375,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":155.0625,"pitch":166.375,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":108.9375,"pitch":104.0,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":51.125,"pitch":-120.375,"roll":46.0},"location":"Right Hip"},{"euler":{"heading":163.3125,"pitch":55.5625,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":98.5,"pitch":-144.375,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:42.782"} +{"sensors":[{"euler":{"heading":303.75,"pitch":134.5625,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":158.875,"pitch":-171.5,"roll":78.0625},"location":"Left Ankle"},{"euler":{"heading":104.75,"pitch":104.375,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":46.8125,"pitch":-122.125,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":45.0625,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":100.0,"pitch":-148.9375,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:42.883"} +{"sensors":[{"euler":{"heading":309.5625,"pitch":129.1875,"roll":47.6875},"location":"Left Knee"},{"euler":{"heading":165.875,"pitch":-148.75,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":102.625,"roll":72.5625},"location":"Right Ankle"},{"euler":{"heading":43.75,"pitch":-124.875,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":160.875,"pitch":28.6875,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":100.9375,"pitch":-148.9375,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:42.983"} +{"sensors":[{"euler":{"heading":227.4375,"pitch":126.75,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":182.5,"pitch":-129.3125,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":93.125,"pitch":98.375,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":41.0625,"pitch":-127.625,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":0.6875,"roll":84.75},"location":"Right Knee"},{"euler":{"heading":92.3125,"pitch":-139.375,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:43.84"} +{"sensors":[{"euler":{"heading":230.6875,"pitch":128.625,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":182.375,"pitch":-131.5625,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":94.6875,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":39.4375,"pitch":-128.9375,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":168.5625,"pitch":-3.0625,"roll":85.375},"location":"Right Knee"},{"euler":{"heading":85.625,"pitch":-129.25,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:43.185"} +{"sensors":[{"euler":{"heading":302.0,"pitch":138.75,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":164.75,"pitch":-155.9375,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":88.0,"pitch":93.625,"roll":81.1875},"location":"Right Ankle"},{"euler":{"heading":37.1875,"pitch":-130.375,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":172.125,"pitch":-5.75,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-125.6875,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:43.286"} +{"sensors":[{"euler":{"heading":282.375,"pitch":154.4375,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":143.375,"pitch":155.625,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":83.9375,"pitch":5.6875,"roll":84.25},"location":"Right Ankle"},{"euler":{"heading":37.125,"pitch":-130.875,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":175.0,"pitch":-72.875,"roll":81.125},"location":"Right Knee"},{"euler":{"heading":77.0625,"pitch":-124.125,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:43.386"} +{"sensors":[{"euler":{"heading":265.3125,"pitch":172.4375,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":125.5625,"pitch":122.9375,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":2.25,"roll":87.5625},"location":"Right Ankle"},{"euler":{"heading":36.1875,"pitch":-131.875,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":-81.6875,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":79.4375,"pitch":-125.75,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:43.487"} +{"sensors":[{"euler":{"heading":260.5,"pitch":-179.125,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":123.25,"pitch":118.0,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":-1.9375,"roll":87.5625},"location":"Right Ankle"},{"euler":{"heading":35.625,"pitch":-135.0,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":184.0,"pitch":-84.3125,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":83.9375,"pitch":-128.0,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:43.588"} +{"sensors":[{"euler":{"heading":271.875,"pitch":173.25,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":124.4375,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":72.4375,"pitch":-76.3125,"roll":81.0},"location":"Right Ankle"},{"euler":{"heading":36.1875,"pitch":-137.25,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":194.9375,"pitch":-86.125,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":89.0,"pitch":-129.75,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:43.689"} +{"sensors":[{"euler":{"heading":281.125,"pitch":164.6875,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":141.625,"pitch":127.875,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":63.9375,"pitch":-87.4375,"roll":71.3125},"location":"Right Ankle"},{"euler":{"heading":44.8125,"pitch":-131.5625,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":205.625,"pitch":-84.875,"roll":60.0},"location":"Right Knee"},{"euler":{"heading":91.0,"pitch":-130.5,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:43.790"} +{"sensors":[{"euler":{"heading":285.75,"pitch":158.4375,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":130.625,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":61.75,"pitch":-92.5,"roll":68.375},"location":"Right Ankle"},{"euler":{"heading":51.375,"pitch":-123.4375,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":208.5,"pitch":-81.8125,"roll":57.625},"location":"Right Knee"},{"euler":{"heading":92.8125,"pitch":-132.1875,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:43.891"} +{"sensors":[{"euler":{"heading":289.625,"pitch":153.625,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":147.4375,"pitch":130.875,"roll":76.25},"location":"Left Ankle"},{"euler":{"heading":70.25,"pitch":-100.8125,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":55.75,"pitch":-118.5,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":198.0625,"pitch":-73.875,"roll":66.6875},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-134.0,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:43.991"} +{"sensors":[{"euler":{"heading":292.6875,"pitch":149.375,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":149.375,"pitch":133.4375,"roll":77.875},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":179.0625,"roll":84.0625},"location":"Right Ankle"},{"euler":{"heading":57.6875,"pitch":-116.4375,"roll":44.25},"location":"Right Hip"},{"euler":{"heading":183.6875,"pitch":-44.3125,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":96.5625,"pitch":-138.0,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:44.92"} +{"sensors":[{"euler":{"heading":296.75,"pitch":144.75,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":152.9375,"pitch":142.375,"roll":79.5625},"location":"Left Ankle"},{"euler":{"heading":97.0625,"pitch":111.5,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":55.1875,"pitch":-118.0625,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":22.5625,"roll":81.125},"location":"Right Knee"},{"euler":{"heading":97.5625,"pitch":-140.75,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:44.192"} +{"sensors":[{"euler":{"heading":300.875,"pitch":139.375,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":157.4375,"pitch":164.4375,"roll":80.1875},"location":"Left Ankle"},{"euler":{"heading":105.4375,"pitch":102.5625,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":50.625,"pitch":-121.1875,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":165.4375,"pitch":46.8125,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":98.125,"pitch":-143.3125,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:44.294"} +{"sensors":[{"euler":{"heading":305.125,"pitch":134.8125,"roll":52.375},"location":"Left Knee"},{"euler":{"heading":161.3125,"pitch":-171.1875,"roll":78.5625},"location":"Left Ankle"},{"euler":{"heading":99.75,"pitch":104.75,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":44.4375,"pitch":-123.625,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":31.4375,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":99.0625,"pitch":-147.5625,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:44.394"} +{"sensors":[{"euler":{"heading":311.1875,"pitch":128.875,"roll":48.0},"location":"Left Knee"},{"euler":{"heading":167.5625,"pitch":-148.3125,"roll":72.625},"location":"Left Ankle"},{"euler":{"heading":92.875,"pitch":102.5,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":43.3125,"pitch":-125.125,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":163.8125,"pitch":8.875,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":100.1875,"pitch":-147.6875,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:44.495"} +{"sensors":[{"euler":{"heading":231.8125,"pitch":126.3125,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":184.75,"pitch":-112.75,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":97.3125,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":40.75,"pitch":-127.8125,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":-2.125,"roll":84.6875},"location":"Right Knee"},{"euler":{"heading":93.3125,"pitch":-139.125,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:44.596"} +{"sensors":[{"euler":{"heading":232.6875,"pitch":128.875,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":186.875,"pitch":-128.875,"roll":58.6875},"location":"Left Ankle"},{"euler":{"heading":84.125,"pitch":88.375,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":38.375,"pitch":-129.25,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":-4.5,"roll":84.375},"location":"Right Knee"},{"euler":{"heading":86.375,"pitch":-127.875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:44.697"} +{"sensors":[{"euler":{"heading":303.625,"pitch":138.625,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":168.6875,"pitch":-154.375,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":5.5,"roll":84.3125},"location":"Right Ankle"},{"euler":{"heading":35.5625,"pitch":-129.8125,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":170.125,"pitch":-68.5625,"roll":82.625},"location":"Right Knee"},{"euler":{"heading":79.875,"pitch":-123.625,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:44.797"} +{"sensors":[{"euler":{"heading":277.0,"pitch":157.3125,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":140.1875,"pitch":147.75,"roll":70.6875},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":3.3125,"roll":86.3125},"location":"Right Ankle"},{"euler":{"heading":33.75,"pitch":-131.75,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":173.375,"pitch":-77.375,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":75.4375,"pitch":-123.625,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:44.898"} +{"sensors":[{"euler":{"heading":259.8125,"pitch":178.6875,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":120.25,"pitch":118.375,"roll":59.625},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":0.3125,"roll":88.0625},"location":"Right Ankle"},{"euler":{"heading":33.5,"pitch":-133.25,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":178.25,"pitch":-85.875,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":78.1875,"pitch":-126.375,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:44.999"} +{"sensors":[{"euler":{"heading":255.9375,"pitch":-174.0625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":118.625,"pitch":116.8125,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-3.75,"roll":85.5},"location":"Right Ankle"},{"euler":{"heading":33.25,"pitch":-135.1875,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":183.9375,"pitch":-87.3125,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":83.0625,"pitch":-129.1875,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:45.99"} +{"sensors":[{"euler":{"heading":266.0625,"pitch":178.0625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":124.375,"pitch":121.25,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":-82.0625,"roll":81.0},"location":"Right Ankle"},{"euler":{"heading":31.625,"pitch":-139.3125,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":190.625,"pitch":-86.5625,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":88.9375,"pitch":-131.125,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:45.200"} +{"sensors":[{"euler":{"heading":276.0625,"pitch":171.375,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":136.375,"pitch":126.6875,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":60.8125,"pitch":-80.875,"roll":71.1875},"location":"Right Ankle"},{"euler":{"heading":31.75,"pitch":-138.5625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":199.75,"pitch":-86.125,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":90.125,"pitch":-132.6875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:45.300"} +{"sensors":[{"euler":{"heading":283.8125,"pitch":163.25,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":141.9375,"pitch":129.6875,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":51.625,"pitch":-87.1875,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":43.0625,"pitch":-128.375,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":209.5625,"pitch":-85.75,"roll":53.6875},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-134.4375,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:45.402"} +{"sensors":[{"euler":{"heading":287.9375,"pitch":157.875,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":145.3125,"pitch":127.4375,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":55.5625,"pitch":-90.875,"roll":62.75},"location":"Right Ankle"},{"euler":{"heading":51.0625,"pitch":-117.875,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":209.1875,"pitch":-79.1875,"roll":55.375},"location":"Right Knee"},{"euler":{"heading":96.625,"pitch":-136.625,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:45.502"} +{"sensors":[{"euler":{"heading":291.6875,"pitch":153.125,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":146.9375,"pitch":128.0,"roll":75.8125},"location":"Left Ankle"},{"euler":{"heading":66.4375,"pitch":-94.625,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":56.75,"pitch":-112.625,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":194.9375,"pitch":-67.9375,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":98.625,"pitch":-139.5625,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:45.603"} +{"sensors":[{"euler":{"heading":295.25,"pitch":148.625,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":148.4375,"pitch":131.75,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":80.8125,"pitch":177.5625,"roll":84.25},"location":"Right Ankle"},{"euler":{"heading":57.375,"pitch":-110.375,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":178.75,"pitch":-27.25,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":99.1875,"pitch":-143.0625,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:45.704"} +{"sensors":[{"euler":{"heading":298.5,"pitch":143.5,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":152.0,"pitch":145.1875,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":108.1875,"roll":70.8125},"location":"Right Ankle"},{"euler":{"heading":52.8125,"pitch":-112.1875,"roll":44.125},"location":"Right Hip"},{"euler":{"heading":166.6875,"pitch":32.25,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":98.625,"pitch":-144.5625,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:45.805"} +{"sensors":[{"euler":{"heading":302.9375,"pitch":138.3125,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":156.625,"pitch":171.25,"roll":78.5},"location":"Left Ankle"},{"euler":{"heading":102.375,"pitch":102.3125,"roll":67.3125},"location":"Right Ankle"},{"euler":{"heading":48.4375,"pitch":-117.3125,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":161.4375,"pitch":43.375,"roll":77.25},"location":"Right Knee"},{"euler":{"heading":97.4375,"pitch":-145.9375,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:45.906"} +{"sensors":[{"euler":{"heading":308.75,"pitch":133.3125,"roll":50.0625},"location":"Left Knee"},{"euler":{"heading":162.3125,"pitch":-163.5,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":102.625,"roll":72.125},"location":"Right Ankle"},{"euler":{"heading":43.0625,"pitch":-122.0625,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":161.25,"pitch":35.0625,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":100.0625,"pitch":-148.6875,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:46.7"} +{"sensors":[{"euler":{"heading":226.3125,"pitch":128.3125,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":172.3125,"pitch":-140.125,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":92.625,"pitch":97.5625,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":42.4375,"pitch":-124.125,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":164.875,"pitch":0.875,"roll":83.9375},"location":"Right Knee"},{"euler":{"heading":97.1875,"pitch":-144.25,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:46.107"} +{"sensors":[{"euler":{"heading":234.75,"pitch":126.8125,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":189.9375,"pitch":-122.5,"roll":56.6875},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":93.3125,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":38.4375,"pitch":-127.1875,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":167.125,"pitch":-2.125,"roll":84.75},"location":"Right Knee"},{"euler":{"heading":85.875,"pitch":-130.8125,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:46.208"} +{"sensors":[{"euler":{"heading":229.0,"pitch":131.0625,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":182.0625,"pitch":-131.75,"roll":57.9375},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":89.375,"roll":80.125},"location":"Right Ankle"},{"euler":{"heading":36.1875,"pitch":-128.1875,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":169.25,"pitch":-4.8125,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-122.5,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:46.309"} +{"sensors":[{"euler":{"heading":297.8125,"pitch":142.625,"roll":47.0625},"location":"Left Knee"},{"euler":{"heading":163.125,"pitch":-159.0625,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":84.0,"pitch":84.75,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":34.0625,"pitch":-129.125,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":170.6875,"pitch":-65.4375,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":73.4375,"pitch":-120.625,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:46.409"} +{"sensors":[{"euler":{"heading":274.5,"pitch":160.625,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":136.25,"pitch":144.625,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":81.4375,"pitch":5.0,"roll":84.8125},"location":"Right Ankle"},{"euler":{"heading":32.5,"pitch":-131.0,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":173.875,"pitch":-81.3125,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":72.5,"pitch":-121.0625,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:46.510"} +{"sensors":[{"euler":{"heading":261.625,"pitch":177.625,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":122.75,"pitch":121.875,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":1.5625,"roll":87.9375},"location":"Right Ankle"},{"euler":{"heading":30.9375,"pitch":-133.625,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":179.1875,"pitch":-84.9375,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":76.4375,"pitch":-124.0,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:46.610"} +{"sensors":[{"euler":{"heading":260.1875,"pitch":-178.25,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":124.375,"pitch":121.1875,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":73.5625,"pitch":-3.1875,"roll":86.25},"location":"Right Ankle"},{"euler":{"heading":30.3125,"pitch":-137.25,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":186.3125,"pitch":-86.5625,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":84.25,"pitch":-128.375,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:46.711"} +{"sensors":[{"euler":{"heading":271.9375,"pitch":174.8125,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":134.375,"pitch":126.25,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":68.5,"pitch":-77.9375,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":30.3125,"pitch":-140.625,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":194.3125,"pitch":-86.9375,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":91.4375,"pitch":-132.25,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:46.812"} +{"sensors":[{"euler":{"heading":281.0625,"pitch":166.0625,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":140.9375,"pitch":128.875,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":59.1875,"pitch":-84.8125,"roll":67.5},"location":"Right Ankle"},{"euler":{"heading":35.625,"pitch":-136.0,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":205.875,"pitch":-85.875,"roll":57.625},"location":"Right Knee"},{"euler":{"heading":92.875,"pitch":-133.8125,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:46.913"} +{"sensors":[{"euler":{"heading":285.875,"pitch":159.75,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":143.5,"pitch":129.1875,"roll":72.1875},"location":"Left Ankle"},{"euler":{"heading":54.9375,"pitch":-89.375,"roll":62.125},"location":"Right Ankle"},{"euler":{"heading":42.75,"pitch":-125.125,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":208.875,"pitch":-82.3125,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":96.1875,"pitch":-137.4375,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:47.14"} +{"sensors":[{"euler":{"heading":290.1875,"pitch":154.625,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":146.3125,"pitch":129.5,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":60.6875,"pitch":-93.5625,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":50.6875,"pitch":-117.375,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":200.75,"pitch":-73.125,"roll":62.0},"location":"Right Knee"},{"euler":{"heading":97.375,"pitch":-139.0,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:47.115"} +{"sensors":[{"euler":{"heading":295.0,"pitch":149.625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":149.375,"pitch":133.625,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":73.125,"pitch":-118.1875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":56.75,"pitch":-114.625,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":188.5,"pitch":-55.8125,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":98.625,"pitch":-141.5,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:47.216"} +{"sensors":[{"euler":{"heading":298.25,"pitch":144.6875,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":152.5,"pitch":143.625,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":122.375,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":57.3125,"pitch":-115.0,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":173.0625,"pitch":5.5,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":99.0625,"pitch":-144.4375,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:47.317"} +{"sensors":[{"euler":{"heading":302.375,"pitch":139.5625,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":156.9375,"pitch":164.125,"roll":80.0625},"location":"Left Ankle"},{"euler":{"heading":105.5625,"pitch":103.1875,"roll":66.5625},"location":"Right Ankle"},{"euler":{"heading":51.8125,"pitch":-119.0625,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":52.0,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":99.125,"pitch":-146.625,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:47.418"} +{"sensors":[{"euler":{"heading":305.75,"pitch":134.8125,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":160.375,"pitch":-170.5625,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":101.0,"pitch":104.6875,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":46.75,"pitch":-121.5,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":162.5625,"pitch":42.125,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":100.0,"pitch":-151.0625,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:47.518"} +{"sensors":[{"euler":{"heading":312.375,"pitch":129.9375,"roll":47.3125},"location":"Left Knee"},{"euler":{"heading":167.0,"pitch":-144.25,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":93.875,"pitch":102.6875,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":42.8125,"pitch":-124.25,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":23.25,"roll":80.75},"location":"Right Knee"},{"euler":{"heading":102.3125,"pitch":-151.8125,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:47.619"} +{"sensors":[{"euler":{"heading":229.75,"pitch":127.25,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":181.125,"pitch":-125.875,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":99.6875,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":39.8125,"pitch":-127.1875,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":164.6875,"pitch":-0.75,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":91.3125,"pitch":-140.125,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:47.720"} +{"sensors":[{"euler":{"heading":239.625,"pitch":125.75,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":192.6875,"pitch":-121.75,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":93.9375,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":37.0625,"pitch":-128.75,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":166.6875,"pitch":-3.875,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-125.0,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:47.821"} +{"sensors":[{"euler":{"heading":224.0625,"pitch":134.4375,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":175.6875,"pitch":-139.625,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":90.8125,"roll":82.4375},"location":"Right Ankle"},{"euler":{"heading":35.125,"pitch":-129.1875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":168.875,"pitch":-58.5,"roll":82.4375},"location":"Right Knee"},{"euler":{"heading":75.6875,"pitch":-120.75,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:47.921"} +{"sensors":[{"euler":{"heading":284.4375,"pitch":150.625,"roll":52.375},"location":"Left Knee"},{"euler":{"heading":144.625,"pitch":168.0,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":5.25,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-130.0625,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":171.4375,"pitch":-70.4375,"roll":80.4375},"location":"Right Knee"},{"euler":{"heading":72.625,"pitch":-120.9375,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:48.22"} +{"sensors":[{"euler":{"heading":264.625,"pitch":173.1875,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":122.5,"pitch":122.0625,"roll":63.0625},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":2.375,"roll":87.375},"location":"Right Ankle"},{"euler":{"heading":32.375,"pitch":-131.625,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":-79.8125,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":74.625,"pitch":-122.8125,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:48.123"} +{"sensors":[{"euler":{"heading":255.8125,"pitch":-174.5,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":118.6875,"pitch":115.9375,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":-1.6875,"roll":87.75},"location":"Right Ankle"},{"euler":{"heading":32.875,"pitch":-134.125,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":182.375,"pitch":-83.6875,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-126.75,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:48.224"} +{"sensors":[{"euler":{"heading":268.5,"pitch":177.75,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":128.5625,"pitch":121.5625,"roll":61.875},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-79.3125,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":32.3125,"pitch":-138.75,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":191.4375,"pitch":-84.9375,"roll":67.8125},"location":"Right Knee"},{"euler":{"heading":87.375,"pitch":-129.375,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:48.325"} +{"sensors":[{"euler":{"heading":278.25,"pitch":170.4375,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":138.3125,"pitch":125.5625,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-83.625,"roll":71.9375},"location":"Right Ankle"},{"euler":{"heading":33.625,"pitch":-137.9375,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":203.4375,"pitch":-84.4375,"roll":59.625},"location":"Right Knee"},{"euler":{"heading":88.9375,"pitch":-130.125,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:48.425"} +{"sensors":[{"euler":{"heading":283.375,"pitch":163.125,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":141.625,"pitch":126.8125,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":55.4375,"pitch":-90.25,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":43.375,"pitch":-129.0,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":210.5,"pitch":-82.25,"roll":54.125},"location":"Right Knee"},{"euler":{"heading":91.875,"pitch":-132.3125,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:48.526"} +{"sensors":[{"euler":{"heading":285.625,"pitch":157.5,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":143.125,"pitch":127.5625,"roll":72.875},"location":"Left Ankle"},{"euler":{"heading":56.0625,"pitch":-93.3125,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":50.375,"pitch":-119.0,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":205.8125,"pitch":-74.375,"roll":56.75},"location":"Right Knee"},{"euler":{"heading":91.8125,"pitch":-133.5625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:48.627"} +{"sensors":[{"euler":{"heading":289.0,"pitch":153.1875,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":144.625,"pitch":130.6875,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":65.875,"pitch":-104.625,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":56.5,"pitch":-114.8125,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":194.0,"pitch":-62.875,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":93.125,"pitch":-135.875,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:48.727"} +{"sensors":[{"euler":{"heading":293.125,"pitch":148.6875,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":147.1875,"pitch":134.375,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":160.5,"roll":82.4375},"location":"Right Ankle"},{"euler":{"heading":59.4375,"pitch":-113.75,"roll":41.875},"location":"Right Hip"},{"euler":{"heading":178.8125,"pitch":-27.375,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-139.0,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:48.828"} +{"sensors":[{"euler":{"heading":297.4375,"pitch":143.5625,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":150.625,"pitch":145.8125,"roll":78.4375},"location":"Left Ankle"},{"euler":{"heading":99.75,"pitch":110.875,"roll":71.3125},"location":"Right Ankle"},{"euler":{"heading":55.9375,"pitch":-116.625,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":168.25,"pitch":32.6875,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":96.8125,"pitch":-142.5,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:48.928"} +{"sensors":[{"euler":{"heading":301.1875,"pitch":138.6875,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":155.5,"pitch":169.3125,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":107.0,"roll":68.8125},"location":"Right Ankle"},{"euler":{"heading":48.4375,"pitch":-119.8125,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":41.5625,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":96.875,"pitch":-145.0625,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:49.29"} +{"sensors":[{"euler":{"heading":306.5,"pitch":133.4375,"roll":50.1875},"location":"Left Knee"},{"euler":{"heading":160.9375,"pitch":-163.3125,"roll":76.375},"location":"Left Ankle"},{"euler":{"heading":96.375,"pitch":105.875,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":43.75,"pitch":-123.25,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":24.4375,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":98.8125,"pitch":-147.875,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:49.129"} +{"sensors":[{"euler":{"heading":225.75,"pitch":128.125,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":173.3125,"pitch":-136.3125,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":99.75,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":41.625,"pitch":-126.875,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":166.5625,"pitch":-0.3125,"roll":84.125},"location":"Right Knee"},{"euler":{"heading":96.8125,"pitch":-142.8125,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:49.230"} +{"sensors":[{"euler":{"heading":234.625,"pitch":126.4375,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":187.25,"pitch":-123.6875,"roll":57.625},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":94.0625,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":38.125,"pitch":-129.625,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":169.6875,"pitch":-3.625,"roll":84.0},"location":"Right Knee"},{"euler":{"heading":85.75,"pitch":-129.125,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:49.330"} +{"sensors":[{"euler":{"heading":226.0,"pitch":132.5625,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":175.625,"pitch":-135.5625,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":93.0625,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":35.75,"pitch":-129.125,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":171.1875,"pitch":-59.125,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":77.1875,"pitch":-122.9375,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:49.431"} +{"sensors":[{"euler":{"heading":289.625,"pitch":146.625,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":150.0,"pitch":-176.5625,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":175.3125,"roll":85.0625},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-129.5625,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":173.6875,"pitch":-69.8125,"roll":80.125},"location":"Right Knee"},{"euler":{"heading":73.125,"pitch":-122.375,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:49.532"} +{"sensors":[{"euler":{"heading":267.5,"pitch":169.4375,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":129.625,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":1.625,"roll":87.875},"location":"Right Ankle"},{"euler":{"heading":34.4375,"pitch":-131.125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":178.25,"pitch":-79.125,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":74.75,"pitch":-123.9375,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:49.632"} +{"sensors":[{"euler":{"heading":256.4375,"pitch":-175.5625,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":117.875,"pitch":116.25,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":75.5,"pitch":-2.75,"roll":87.3125},"location":"Right Ankle"},{"euler":{"heading":35.75,"pitch":-133.0,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":184.875,"pitch":-82.1875,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":80.8125,"pitch":-127.0625,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:49.733"} +{"sensors":[{"euler":{"heading":267.375,"pitch":178.9375,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":120.875,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":71.375,"pitch":-74.9375,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":37.1875,"pitch":-136.0625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":192.625,"pitch":-82.3125,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":86.5625,"pitch":-128.375,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:49.834"} +{"sensors":[{"euler":{"heading":277.875,"pitch":171.0,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":137.25,"pitch":125.1875,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":63.8125,"pitch":-81.5,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":40.0625,"pitch":-135.4375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":203.4375,"pitch":-83.25,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":88.25,"pitch":-129.4375,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:49.934"} +{"sensors":[{"euler":{"heading":283.25,"pitch":164.25,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":142.3125,"pitch":127.4375,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":56.625,"pitch":-87.625,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":49.3125,"pitch":-126.5625,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":208.625,"pitch":-82.0625,"roll":55.375},"location":"Right Knee"},{"euler":{"heading":91.3125,"pitch":-131.4375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:50.35"} +{"sensors":[{"euler":{"heading":286.5,"pitch":159.1875,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":144.125,"pitch":126.3125,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":60.75,"pitch":-90.1875,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":57.625,"pitch":-117.1875,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":204.4375,"pitch":-71.875,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":92.75,"pitch":-132.75,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:50.136"} +{"sensors":[{"euler":{"heading":289.875,"pitch":155.0,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":146.3125,"pitch":125.0625,"roll":75.625},"location":"Left Ankle"},{"euler":{"heading":71.75,"pitch":-104.5,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":63.125,"pitch":-113.5625,"roll":43.0},"location":"Right Hip"},{"euler":{"heading":192.0,"pitch":-58.75,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":94.375,"pitch":-135.3125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:50.237"} +{"sensors":[{"euler":{"heading":293.3125,"pitch":150.375,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":148.125,"pitch":125.375,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":88.875,"pitch":130.5625,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":63.8125,"pitch":-113.3125,"roll":41.5625},"location":"Right Hip"},{"euler":{"heading":177.25,"pitch":-8.3125,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":96.5,"pitch":-139.875,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:50.338"} +{"sensors":[{"euler":{"heading":296.3125,"pitch":145.375,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":150.5,"pitch":134.1875,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":106.125,"pitch":105.0625,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":57.6875,"pitch":-117.25,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":166.5,"pitch":48.75,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":97.1875,"pitch":-142.8125,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:50.438"} +{"sensors":[{"euler":{"heading":299.375,"pitch":140.4375,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":154.4375,"pitch":160.6875,"roll":79.3125},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":102.875,"roll":67.0},"location":"Right Ankle"},{"euler":{"heading":50.6875,"pitch":-121.0,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":47.9375,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":96.3125,"pitch":-144.625,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:50.539"} +{"sensors":[{"euler":{"heading":306.0,"pitch":133.0,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":159.5625,"pitch":-169.25,"roll":76.3125},"location":"Left Ankle"},{"euler":{"heading":99.375,"pitch":102.0,"roll":72.75},"location":"Right Ankle"},{"euler":{"heading":47.25,"pitch":-124.3125,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":162.5,"pitch":27.4375,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":99.6875,"pitch":-146.25,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:50.639"} +{"sensors":[{"euler":{"heading":225.5,"pitch":127.25,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":174.375,"pitch":-136.6875,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":98.6875,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":47.125,"pitch":-126.1875,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":166.6875,"pitch":1.0625,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":93.1875,"pitch":-135.8125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:50.740"} +{"sensors":[{"euler":{"heading":234.1875,"pitch":126.4375,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":188.5625,"pitch":-123.875,"roll":56.1875},"location":"Left Ankle"},{"euler":{"heading":92.4375,"pitch":91.6875,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":44.3125,"pitch":-128.4375,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":-1.9375,"roll":84.875},"location":"Right Knee"},{"euler":{"heading":83.0625,"pitch":-124.0,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:50.841"} +{"sensors":[{"euler":{"heading":221.875,"pitch":135.625,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":176.1875,"pitch":-134.875,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":87.9375,"pitch":90.125,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":42.1875,"pitch":-128.5,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":170.625,"pitch":-4.375,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-120.125,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:50.941"} +{"sensors":[{"euler":{"heading":283.0,"pitch":153.875,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":150.75,"pitch":176.5625,"roll":72.5},"location":"Left Ankle"},{"euler":{"heading":83.0,"pitch":5.125,"roll":84.8125},"location":"Right Ankle"},{"euler":{"heading":40.9375,"pitch":-128.4375,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":172.375,"pitch":-60.9375,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":73.75,"pitch":-120.5625,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:51.42"} +{"sensors":[{"euler":{"heading":263.4375,"pitch":175.4375,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":126.8125,"pitch":125.6875,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":2.1875,"roll":87.5},"location":"Right Ankle"},{"euler":{"heading":38.875,"pitch":-129.8125,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":174.625,"pitch":-70.625,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":74.25,"pitch":-122.6875,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:51.143"} +{"sensors":[{"euler":{"heading":255.4375,"pitch":-172.75,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":118.9375,"pitch":117.0,"roll":58.3125},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-1.1875,"roll":88.125},"location":"Right Ankle"},{"euler":{"heading":36.4375,"pitch":-133.3125,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":179.4375,"pitch":-76.3125,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-126.375,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:51.243"} +{"sensors":[{"euler":{"heading":263.6875,"pitch":-179.125,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":123.0625,"pitch":119.4375,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":72.6875,"pitch":-84.9375,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":35.5625,"pitch":-137.25,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":187.0625,"pitch":-81.25,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":85.4375,"pitch":-128.4375,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:51.344"} +{"sensors":[{"euler":{"heading":273.1875,"pitch":174.1875,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":133.5625,"pitch":124.375,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":66.5625,"pitch":-90.3125,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":35.6875,"pitch":-137.0625,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":198.375,"pitch":-81.4375,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":87.8125,"pitch":-129.1875,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:51.444"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":167.1875,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":140.0625,"pitch":125.3125,"roll":71.0625},"location":"Left Ankle"},{"euler":{"heading":57.0625,"pitch":-90.75,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":47.25,"pitch":-127.4375,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":205.3125,"pitch":-79.9375,"roll":56.375},"location":"Right Knee"},{"euler":{"heading":92.125,"pitch":-132.0625,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:51.545"} +{"sensors":[{"euler":{"heading":283.8125,"pitch":161.8125,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":142.625,"pitch":119.8125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":59.8125,"pitch":-95.25,"roll":67.5},"location":"Right Ankle"},{"euler":{"heading":54.5625,"pitch":-117.625,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":203.625,"pitch":-71.125,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":94.25,"pitch":-134.0,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:51.646"} +{"sensors":[{"euler":{"heading":287.0625,"pitch":157.0625,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":144.75,"pitch":121.9375,"roll":75.8125},"location":"Left Ankle"},{"euler":{"heading":71.25,"pitch":-114.5625,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":59.125,"pitch":-114.0,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":189.9375,"pitch":-54.9375,"roll":72.5625},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-135.75,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:51.747"} +{"sensors":[{"euler":{"heading":289.625,"pitch":152.0,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":128.375,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":123.8125,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":60.0,"pitch":-114.25,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":173.4375,"pitch":1.8125,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":95.8125,"pitch":-138.9375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:51.847"} +{"sensors":[{"euler":{"heading":293.875,"pitch":146.4375,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":148.0,"pitch":136.125,"roll":78.375},"location":"Left Ankle"},{"euler":{"heading":105.5625,"pitch":106.1875,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":55.8125,"pitch":-118.1875,"roll":44.875},"location":"Right Hip"},{"euler":{"heading":163.75,"pitch":48.8125,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":96.5,"pitch":-141.375,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:51.948"} +{"sensors":[{"euler":{"heading":297.625,"pitch":140.125,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":150.75,"pitch":156.375,"roll":78.375},"location":"Left Ankle"},{"euler":{"heading":107.0625,"pitch":103.625,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":50.1875,"pitch":-120.75,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":51.625,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":96.1875,"pitch":-144.6875,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:52.48"} +{"sensors":[{"euler":{"heading":303.1875,"pitch":134.375,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":156.1875,"pitch":-160.5625,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":103.75,"roll":72.75},"location":"Right Ankle"},{"euler":{"heading":45.8125,"pitch":-124.0,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":158.9375,"pitch":36.9375,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":98.625,"pitch":-147.0625,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:52.149"} +{"sensors":[{"euler":{"heading":309.9375,"pitch":129.5,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":167.8125,"pitch":-128.625,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":100.5,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":45.9375,"pitch":-124.875,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":164.1875,"pitch":2.25,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":95.9375,"pitch":-143.125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:52.250"} +{"sensors":[{"euler":{"heading":231.0625,"pitch":126.9375,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":186.5,"pitch":-124.1875,"roll":59.75},"location":"Left Ankle"},{"euler":{"heading":89.5,"pitch":93.1875,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":42.75,"pitch":-127.875,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":-0.875,"roll":84.8125},"location":"Right Knee"},{"euler":{"heading":86.625,"pitch":-132.125,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:52.351"} +{"sensors":[{"euler":{"heading":227.5625,"pitch":132.0,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":181.875,"pitch":-130.9375,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":87.0,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":40.1875,"pitch":-128.5,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":168.25,"pitch":-3.25,"roll":84.625},"location":"Right Knee"},{"euler":{"heading":80.25,"pitch":-124.6875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:52.452"} +{"sensors":[{"euler":{"heading":293.5,"pitch":145.75,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":158.875,"pitch":-165.0,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":5.375,"roll":84.3125},"location":"Right Ankle"},{"euler":{"heading":37.5,"pitch":-129.9375,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":170.3125,"pitch":-58.1875,"roll":83.125},"location":"Right Knee"},{"euler":{"heading":75.3125,"pitch":-123.625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:52.553"} +{"sensors":[{"euler":{"heading":269.4375,"pitch":167.3125,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":132.1875,"pitch":131.4375,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":81.5625,"pitch":2.75,"roll":86.6875},"location":"Right Ankle"},{"euler":{"heading":36.0,"pitch":-131.9375,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":174.5,"pitch":-71.1875,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":75.1875,"pitch":-124.875,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:52.653"} +{"sensors":[{"euler":{"heading":256.1875,"pitch":-174.6875,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":117.6875,"pitch":115.75,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":-0.8125,"roll":88.25},"location":"Right Ankle"},{"euler":{"heading":35.1875,"pitch":-134.25,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":179.6875,"pitch":-78.0625,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":80.75,"pitch":-128.0,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:52.754"} +{"sensors":[{"euler":{"heading":259.75,"pitch":-175.6875,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":122.0625,"pitch":118.3125,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":-5.625,"roll":84.75},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-138.75,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":187.1875,"pitch":-82.4375,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":86.3125,"pitch":-129.9375,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:52.854"} +{"sensors":[{"euler":{"heading":273.4375,"pitch":175.3125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":132.125,"pitch":123.75,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":70.375,"pitch":-87.5,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-140.0625,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":196.4375,"pitch":-83.5,"roll":64.9375},"location":"Right Knee"},{"euler":{"heading":91.1875,"pitch":-131.875,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:52.954"} +{"sensors":[{"euler":{"heading":281.5,"pitch":167.1875,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":139.8125,"pitch":126.5,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":58.75,"pitch":-89.0625,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":44.8125,"pitch":-132.4375,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":206.625,"pitch":-82.0625,"roll":57.6875},"location":"Right Knee"},{"euler":{"heading":94.4375,"pitch":-133.75,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:53.55"} +{"sensors":[{"euler":{"heading":285.4375,"pitch":160.6875,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":143.625,"pitch":124.3125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":55.6875,"pitch":-92.875,"roll":60.125},"location":"Right Ankle"},{"euler":{"heading":53.4375,"pitch":-120.4375,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":208.5625,"pitch":-73.625,"roll":56.125},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-134.75,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:53.155"} +{"sensors":[{"euler":{"heading":289.0625,"pitch":156.25,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":146.6875,"pitch":124.25,"roll":76.3125},"location":"Left Ankle"},{"euler":{"heading":64.3125,"pitch":-102.4375,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":59.375,"pitch":-115.75,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":196.0625,"pitch":-64.6875,"roll":67.25},"location":"Right Knee"},{"euler":{"heading":96.5625,"pitch":-136.9375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:53.255"} +{"sensors":[{"euler":{"heading":292.3125,"pitch":151.5625,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":147.875,"pitch":126.8125,"roll":77.6875},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":178.5,"roll":84.0},"location":"Right Ankle"},{"euler":{"heading":62.5625,"pitch":-114.75,"roll":43.0},"location":"Right Hip"},{"euler":{"heading":181.5,"pitch":-28.375,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":96.75,"pitch":-139.6875,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:53.356"} +{"sensors":[{"euler":{"heading":294.9375,"pitch":146.0625,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":149.375,"pitch":139.0625,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":104.375,"pitch":106.5,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":59.375,"pitch":-117.375,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":169.0625,"pitch":40.75,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":96.5625,"pitch":-142.375,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:53.457"} +{"sensors":[{"euler":{"heading":299.0625,"pitch":139.8125,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":154.625,"pitch":160.75,"roll":80.0},"location":"Left Ankle"},{"euler":{"heading":110.5,"pitch":105.0625,"roll":64.875},"location":"Right Ankle"},{"euler":{"heading":52.25,"pitch":-121.6875,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":50.0625,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":95.625,"pitch":-143.8125,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:53.558"} +{"sensors":[{"euler":{"heading":304.4375,"pitch":133.875,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":159.625,"pitch":-167.4375,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":102.4375,"pitch":106.0625,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":46.4375,"pitch":-125.4375,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":162.125,"pitch":37.125,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":95.5,"pitch":-145.75,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:53.658"} +{"sensors":[{"euler":{"heading":314.1875,"pitch":127.9375,"roll":45.625},"location":"Left Knee"},{"euler":{"heading":173.375,"pitch":-136.625,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":95.75,"pitch":103.1875,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":45.9375,"pitch":-126.75,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":163.5625,"pitch":16.875,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-140.8125,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:53.759"} +{"sensors":[{"euler":{"heading":235.0,"pitch":126.375,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":193.5,"pitch":-119.3125,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":96.6875,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":42.6875,"pitch":-129.3125,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":-0.6875,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":86.125,"pitch":-128.0625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:53.860"} +{"sensors":[{"euler":{"heading":230.9375,"pitch":130.875,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":185.6875,"pitch":-127.8125,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":95.125,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":41.4375,"pitch":-129.25,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":167.4375,"pitch":-3.75,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-121.375,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:53.961"} +{"sensors":[{"euler":{"heading":297.5,"pitch":144.375,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":162.8125,"pitch":-159.6875,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":173.6875,"roll":83.6875},"location":"Right Ankle"},{"euler":{"heading":38.75,"pitch":-130.0625,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":-53.25,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":75.8125,"pitch":-121.125,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:54.61"} +{"sensors":[{"euler":{"heading":272.25,"pitch":165.4375,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":135.25,"pitch":137.6875,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":4.0625,"roll":85.8125},"location":"Right Ankle"},{"euler":{"heading":36.8125,"pitch":-131.8125,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":-67.0625,"roll":80.3125},"location":"Right Knee"},{"euler":{"heading":74.875,"pitch":-123.0,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:54.163"} +{"sensors":[{"euler":{"heading":258.25,"pitch":-176.0625,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":118.5,"pitch":115.875,"roll":58.8125},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":1.0,"roll":88.625},"location":"Right Ankle"},{"euler":{"heading":35.9375,"pitch":-135.0625,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":-77.875,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":81.125,"pitch":-127.5625,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:54.263"} +{"sensors":[{"euler":{"heading":264.0625,"pitch":-177.4375,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":125.0625,"pitch":119.5625,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":75.0625,"pitch":-3.1875,"roll":86.6875},"location":"Right Ankle"},{"euler":{"heading":34.75,"pitch":-139.4375,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":183.8125,"pitch":-80.25,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":88.5625,"pitch":-130.5,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:54.364"} +{"sensors":[{"euler":{"heading":275.3125,"pitch":174.5,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":134.875,"pitch":124.4375,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-94.9375,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":35.125,"pitch":-138.125,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":195.25,"pitch":-83.25,"roll":64.75},"location":"Right Knee"},{"euler":{"heading":91.125,"pitch":-131.5625,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:54.465"} +{"sensors":[{"euler":{"heading":283.875,"pitch":167.25,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":143.0625,"pitch":126.75,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":-95.9375,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":48.1875,"pitch":-128.375,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":205.5625,"pitch":-79.0625,"roll":56.9375},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-132.625,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:54.565"} +{"sensors":[{"euler":{"heading":288.1875,"pitch":161.3125,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":146.0,"pitch":125.0,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":60.75,"pitch":-103.375,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":57.1875,"pitch":-120.0625,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":205.375,"pitch":-72.5,"roll":57.9375},"location":"Right Knee"},{"euler":{"heading":95.9375,"pitch":-134.1875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:54.666"} +{"sensors":[{"euler":{"heading":290.625,"pitch":156.5,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":125.75,"roll":75.5625},"location":"Left Ankle"},{"euler":{"heading":74.1875,"pitch":-124.75,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":62.3125,"pitch":-116.25,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":192.0625,"pitch":-60.125,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":96.9375,"pitch":-136.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:54.766"} +{"sensors":[{"euler":{"heading":293.4375,"pitch":151.875,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":144.375,"pitch":127.625,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":134.5625,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":63.3125,"pitch":-115.1875,"roll":43.5625},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":-11.3125,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":97.75,"pitch":-139.8125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:54.868"} +{"sensors":[{"euler":{"heading":296.25,"pitch":146.5625,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":147.3125,"pitch":136.625,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":107.1875,"pitch":108.4375,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":58.5625,"pitch":-118.4375,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":42.8125,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":98.0,"pitch":-142.875,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:54.968"} +{"sensors":[{"euler":{"heading":299.125,"pitch":140.8125,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":150.125,"pitch":159.3125,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":111.25,"pitch":104.1875,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":53.375,"pitch":-121.3125,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":162.375,"pitch":52.3125,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":97.5,"pitch":-146.3125,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:55.69"} +{"sensors":[{"euler":{"heading":304.3125,"pitch":134.1875,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":154.5625,"pitch":-174.6875,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":100.9375,"pitch":107.4375,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":46.75,"pitch":-125.25,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":160.3125,"pitch":39.4375,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":98.0625,"pitch":-150.625,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:55.171"} +{"sensors":[{"euler":{"heading":311.625,"pitch":129.0625,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":165.375,"pitch":-142.875,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":94.125,"pitch":105.6875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":46.25,"pitch":-126.0625,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":16.625,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-146.1875,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:55.272"} +{"sensors":[{"euler":{"heading":232.5625,"pitch":127.25,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":185.5625,"pitch":-123.1875,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":98.625,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":41.875,"pitch":-129.25,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":-0.8125,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":84.4375,"pitch":-132.25,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:55.373"} +{"sensors":[{"euler":{"heading":224.875,"pitch":134.75,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":178.0,"pitch":-133.0,"roll":60.9375},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":95.4375,"roll":80.4375},"location":"Right Ankle"},{"euler":{"heading":40.0,"pitch":-129.3125,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":165.375,"pitch":-3.0625,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":77.4375,"pitch":-123.9375,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:55.473"} +{"sensors":[{"euler":{"heading":289.4375,"pitch":149.6875,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":155.375,"pitch":-169.125,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":173.1875,"roll":83.1875},"location":"Right Ankle"},{"euler":{"heading":37.75,"pitch":-130.5625,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":166.5,"pitch":-46.9375,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":73.375,"pitch":-122.75,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:55.574"} +{"sensors":[{"euler":{"heading":268.6875,"pitch":170.5625,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":129.875,"pitch":135.5,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":3.625,"roll":86.1875},"location":"Right Ankle"},{"euler":{"heading":36.9375,"pitch":-131.9375,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":169.1875,"pitch":-59.625,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":74.0,"pitch":-122.75,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:55.674"} +{"sensors":[{"euler":{"heading":259.375,"pitch":-174.625,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":116.9375,"pitch":116.625,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":74.25,"pitch":0.1875,"roll":88.3125},"location":"Right Ankle"},{"euler":{"heading":35.125,"pitch":-134.4375,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":173.125,"pitch":-71.125,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":78.6875,"pitch":-126.5,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:55.775"} +{"sensors":[{"euler":{"heading":262.375,"pitch":-175.375,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":121.125,"pitch":119.8125,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":-3.9375,"roll":85.1875},"location":"Right Ankle"},{"euler":{"heading":33.75,"pitch":-139.375,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":180.5,"pitch":-80.4375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":83.875,"pitch":-129.1875,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:55.876"} +{"sensors":[{"euler":{"heading":274.0,"pitch":176.25,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":124.0625,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":65.8125,"pitch":-81.875,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":33.1875,"pitch":-138.625,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":188.5,"pitch":-84.375,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":88.625,"pitch":-130.6875,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:55.977"} +{"sensors":[{"euler":{"heading":281.3125,"pitch":167.8125,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":125.6875,"roll":70.0625},"location":"Left Ankle"},{"euler":{"heading":55.375,"pitch":-86.125,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":42.375,"pitch":-134.0625,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":199.5625,"pitch":-83.0625,"roll":59.625},"location":"Right Knee"},{"euler":{"heading":92.0625,"pitch":-132.6875,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:56.77"} +{"sensors":[{"euler":{"heading":285.5625,"pitch":161.5,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":140.4375,"pitch":125.8125,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":53.625,"pitch":-89.125,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":51.875,"pitch":-124.0,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":205.5625,"pitch":-79.6875,"roll":56.25},"location":"Right Knee"},{"euler":{"heading":94.4375,"pitch":-135.625,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:56.178"} +{"sensors":[{"euler":{"heading":288.4375,"pitch":155.625,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":141.375,"pitch":127.5,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":61.4375,"pitch":-94.625,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":59.6875,"pitch":-117.1875,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":196.5,"pitch":-69.5,"roll":63.9375},"location":"Right Knee"},{"euler":{"heading":96.3125,"pitch":-138.4375,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:56.280"} +{"sensors":[{"euler":{"heading":291.375,"pitch":150.9375,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":142.6875,"pitch":131.1875,"roll":76.5625},"location":"Left Ankle"},{"euler":{"heading":77.3125,"pitch":-175.875,"roll":83.8125},"location":"Right Ankle"},{"euler":{"heading":62.9375,"pitch":-114.75,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":183.8125,"pitch":-45.5,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":97.4375,"pitch":-141.75,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:56.380"} +{"sensors":[{"euler":{"heading":295.1875,"pitch":146.1875,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":145.9375,"pitch":137.8125,"roll":78.25},"location":"Left Ankle"},{"euler":{"heading":98.0,"pitch":115.0,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":60.6875,"pitch":-116.4375,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":170.4375,"pitch":22.375,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":99.1875,"pitch":-145.125,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:56.480"} +{"sensors":[{"euler":{"heading":299.9375,"pitch":140.875,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":150.75,"pitch":156.25,"roll":79.75},"location":"Left Ankle"},{"euler":{"heading":110.125,"pitch":101.8125,"roll":65.6875},"location":"Right Ankle"},{"euler":{"heading":54.125,"pitch":-120.6875,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":162.6875,"pitch":53.875,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":99.0625,"pitch":-148.125,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:56.581"} +{"sensors":[{"euler":{"heading":305.6875,"pitch":135.3125,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":155.75,"pitch":-175.5,"roll":78.4375},"location":"Left Ankle"},{"euler":{"heading":102.8125,"pitch":104.25,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":47.5625,"pitch":-123.75,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":161.4375,"pitch":42.25,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":100.125,"pitch":-151.75,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:56.682"} +{"sensors":[{"euler":{"heading":315.0,"pitch":129.4375,"roll":47.5},"location":"Left Knee"},{"euler":{"heading":166.6875,"pitch":-144.8125,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":101.125,"roll":74.0625},"location":"Right Ankle"},{"euler":{"heading":47.0625,"pitch":-125.0625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":161.0625,"pitch":25.9375,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":101.1875,"pitch":-148.5,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:56.783"} +{"sensors":[{"euler":{"heading":235.25,"pitch":126.75,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":187.6875,"pitch":-123.0,"roll":58.9375},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":95.125,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":44.375,"pitch":-128.0625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":165.125,"pitch":0.75,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":91.0625,"pitch":-135.75,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:56.884"} +{"sensors":[{"euler":{"heading":236.875,"pitch":129.1875,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":187.75,"pitch":-124.5,"roll":55.8125},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":89.5,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":41.4375,"pitch":-129.5625,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":166.9375,"pitch":-2.1875,"roll":85.0625},"location":"Right Knee"},{"euler":{"heading":82.0625,"pitch":-126.3125,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:56.985"} +{"sensors":[{"euler":{"heading":306.5,"pitch":140.5,"roll":45.1875},"location":"Left Knee"},{"euler":{"heading":166.3125,"pitch":-147.0,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":86.4375,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":38.5,"pitch":-130.75,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":168.8125,"pitch":-4.3125,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":75.375,"pitch":-124.4375,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:57.86"} +{"sensors":[{"euler":{"heading":278.4375,"pitch":175.625,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":138.3125,"pitch":156.8125,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":5.6875,"roll":84.1875},"location":"Right Ankle"},{"euler":{"heading":36.625,"pitch":-132.8125,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":-66.125,"roll":82.0},"location":"Right Knee"},{"euler":{"heading":73.0,"pitch":-124.8125,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:57.187"} +{"sensors":[{"euler":{"heading":261.8125,"pitch":178.625,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":119.0,"pitch":122.625,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":2.3125,"roll":86.6875},"location":"Right Ankle"},{"euler":{"heading":34.5625,"pitch":-134.9375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":174.9375,"pitch":-79.3125,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":75.5625,"pitch":-126.625,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:57.288"} +{"sensors":[{"euler":{"heading":260.625,"pitch":-177.375,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":120.3125,"pitch":119.6875,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-2.625,"roll":86.125},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-137.9375,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":181.5625,"pitch":-82.5625,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":81.75,"pitch":-129.25,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:57.389"} +{"sensors":[{"euler":{"heading":272.6875,"pitch":175.4375,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":128.875,"pitch":124.75,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-72.3125,"roll":79.0625},"location":"Right Ankle"},{"euler":{"heading":34.3125,"pitch":-139.125,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":189.5,"pitch":-84.625,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":89.25,"pitch":-132.75,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:57.490"} +{"sensors":[{"euler":{"heading":278.75,"pitch":167.3125,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":133.0625,"pitch":126.25,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":58.5625,"pitch":-85.0625,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":41.5,"pitch":-132.375,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":199.375,"pitch":-83.125,"roll":61.1875},"location":"Right Knee"},{"euler":{"heading":91.125,"pitch":-135.125,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:57.590"} +{"sensors":[{"euler":{"heading":283.8125,"pitch":161.1875,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":137.875,"pitch":126.5,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":55.5,"pitch":-88.5,"roll":63.0625},"location":"Right Ankle"},{"euler":{"heading":51.0,"pitch":-121.625,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":203.5,"pitch":-77.125,"roll":57.25},"location":"Right Knee"},{"euler":{"heading":93.5,"pitch":-138.0625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:57.691"} +{"sensors":[{"euler":{"heading":288.625,"pitch":155.8125,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":141.375,"pitch":126.5,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-92.5,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":58.0625,"pitch":-115.5,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":193.8125,"pitch":-68.625,"roll":66.0},"location":"Right Knee"},{"euler":{"heading":95.625,"pitch":-139.75,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:57.792"} +{"sensors":[{"euler":{"heading":292.8125,"pitch":150.9375,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":143.9375,"pitch":131.8125,"roll":77.8125},"location":"Left Ankle"},{"euler":{"heading":78.875,"pitch":-177.125,"roll":84.125},"location":"Right Ankle"},{"euler":{"heading":62.125,"pitch":-113.625,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":180.4375,"pitch":-36.3125,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":96.875,"pitch":-142.6875,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:57.892"} +{"sensors":[{"euler":{"heading":295.875,"pitch":145.875,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":147.5625,"pitch":145.75,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":100.25,"pitch":110.5625,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":60.75,"pitch":-115.9375,"roll":43.125},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":36.1875,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":97.125,"pitch":-145.625,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:57.993"} +{"sensors":[{"euler":{"heading":299.5625,"pitch":140.3125,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":152.1875,"pitch":171.0,"roll":80.0},"location":"Left Ankle"},{"euler":{"heading":110.5,"pitch":101.0,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":53.625,"pitch":-120.8125,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":57.3125,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":96.625,"pitch":-147.6875,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:58.94"} +{"sensors":[{"euler":{"heading":305.0625,"pitch":134.5625,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":157.5625,"pitch":-157.5625,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":103.625,"pitch":102.5,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":46.9375,"pitch":-124.1875,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":161.875,"pitch":47.5,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":97.1875,"pitch":-150.5,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:58.195"} +{"sensors":[{"euler":{"heading":313.4375,"pitch":128.1875,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":167.875,"pitch":-133.75,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":100.75,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":45.5,"pitch":-126.1875,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":161.375,"pitch":26.9375,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":96.3125,"pitch":-147.8125,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:58.296"} +{"sensors":[{"euler":{"heading":233.1875,"pitch":126.25,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":189.0625,"pitch":-117.5625,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":91.6875,"pitch":96.1875,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":42.3125,"pitch":-129.0,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":164.1875,"pitch":0.6875,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":86.3125,"pitch":-134.5625,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:58.396"} +{"sensors":[{"euler":{"heading":233.4375,"pitch":129.9375,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":182.9375,"pitch":-125.5625,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":91.3125,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":40.5625,"pitch":-129.75,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":166.0,"pitch":-1.5625,"roll":84.75},"location":"Right Knee"},{"euler":{"heading":79.625,"pitch":-126.1875,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:58.498"} +{"sensors":[{"euler":{"heading":299.375,"pitch":142.875,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":158.4375,"pitch":-154.875,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":6.25,"roll":83.6875},"location":"Right Ankle"},{"euler":{"heading":39.125,"pitch":-130.5,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":168.1875,"pitch":-3.8125,"roll":84.0625},"location":"Right Knee"},{"euler":{"heading":75.8125,"pitch":-125.0625,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:58.598"} +{"sensors":[{"euler":{"heading":273.3125,"pitch":164.125,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":139.5,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":3.9375,"roll":85.875},"location":"Right Ankle"},{"euler":{"heading":37.625,"pitch":-132.9375,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":171.0625,"pitch":-58.0,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":74.75,"pitch":-125.3125,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:58.699"} +{"sensors":[{"euler":{"heading":257.75,"pitch":-176.25,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":112.0625,"pitch":114.3125,"roll":59.375},"location":"Left Ankle"},{"euler":{"heading":78.5625,"pitch":0.8125,"roll":88.25},"location":"Right Ankle"},{"euler":{"heading":36.25,"pitch":-135.5625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":-74.25,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":79.4375,"pitch":-128.625,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:58.800"} +{"sensors":[{"euler":{"heading":261.625,"pitch":-176.8125,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":119.75,"pitch":118.625,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-4.125,"roll":85.6875},"location":"Right Ankle"},{"euler":{"heading":34.875,"pitch":-139.3125,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":183.0625,"pitch":-79.0,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":85.0,"pitch":-130.5,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:58.901"} +{"sensors":[{"euler":{"heading":273.1875,"pitch":174.8125,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":128.3125,"pitch":122.6875,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":68.5625,"pitch":-84.9375,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":35.5,"pitch":-137.0625,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":193.5,"pitch":-81.5,"roll":66.5},"location":"Right Knee"},{"euler":{"heading":86.9375,"pitch":-131.4375,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:59.2"} +{"sensors":[{"euler":{"heading":279.875,"pitch":167.4375,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":127.125,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":59.875,"pitch":-90.9375,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":48.4375,"pitch":-128.3125,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":201.9375,"pitch":-77.5625,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":90.0625,"pitch":-132.875,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:59.102"} +{"sensors":[{"euler":{"heading":282.625,"pitch":161.5625,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":130.0625,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-98.5,"roll":67.875},"location":"Right Ankle"},{"euler":{"heading":57.5625,"pitch":-119.3125,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":201.5625,"pitch":-69.25,"roll":62.5},"location":"Right Knee"},{"euler":{"heading":90.875,"pitch":-134.875,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:59.203"} +{"sensors":[{"euler":{"heading":286.8125,"pitch":156.9375,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":138.5,"pitch":131.1875,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-117.875,"roll":80.5},"location":"Right Ankle"},{"euler":{"heading":63.375,"pitch":-115.4375,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":187.6875,"pitch":-43.75,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-138.0625,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:59.304"} +{"sensors":[{"euler":{"heading":290.375,"pitch":151.6875,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":139.875,"pitch":136.625,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":129.8125,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":64.0,"pitch":-115.4375,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":175.0625,"pitch":16.9375,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":95.75,"pitch":-141.5625,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:59.404"} +{"sensors":[{"euler":{"heading":294.0,"pitch":146.4375,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":143.0625,"pitch":146.6875,"roll":76.625},"location":"Left Ankle"},{"euler":{"heading":107.125,"pitch":107.4375,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":60.5,"pitch":-118.25,"roll":44.125},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":53.25,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":96.5625,"pitch":-145.0,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:59.505"} +{"sensors":[{"euler":{"heading":298.3125,"pitch":141.0625,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":147.0625,"pitch":163.5,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":108.375,"pitch":105.0,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":52.875,"pitch":-122.125,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":56.6875,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":96.1875,"pitch":-148.5625,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:59.606"} +{"sensors":[{"euler":{"heading":305.3125,"pitch":135.375,"roll":51.1875},"location":"Left Knee"},{"euler":{"heading":153.625,"pitch":-172.125,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":106.3125,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":47.3125,"pitch":-125.125,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":159.125,"pitch":42.8125,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":98.8125,"pitch":-151.25,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:59.706"} +{"sensors":[{"euler":{"heading":234.0,"pitch":129.6875,"roll":44.8125},"location":"Left Knee"},{"euler":{"heading":167.25,"pitch":-141.9375,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":101.4375,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":46.1875,"pitch":-126.4375,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":160.375,"pitch":35.4375,"roll":81.0625},"location":"Right Knee"},{"euler":{"heading":92.8125,"pitch":-144.5,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:59.807"} +{"sensors":[{"euler":{"heading":234.875,"pitch":127.375,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":182.875,"pitch":-126.6875,"roll":57.1875},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":92.5,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":43.625,"pitch":-128.6875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":162.9375,"pitch":2.125,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":83.75,"pitch":-130.6875,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:09:59.908"} +{"sensors":[{"euler":{"heading":225.375,"pitch":134.0,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":172.625,"pitch":-136.25,"roll":61.875},"location":"Left Ankle"},{"euler":{"heading":86.4375,"pitch":89.0,"roll":82.5625},"location":"Right Ankle"},{"euler":{"heading":41.125,"pitch":-129.4375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":166.625,"pitch":-1.5,"roll":85.25},"location":"Right Knee"},{"euler":{"heading":77.0625,"pitch":-125.5625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:00.9"} +{"sensors":[{"euler":{"heading":289.75,"pitch":149.125,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":149.0625,"pitch":176.375,"roll":71.6875},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":5.375,"roll":84.5625},"location":"Right Ankle"},{"euler":{"heading":39.75,"pitch":-131.3125,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":170.375,"pitch":-4.25,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":72.75,"pitch":-124.0625,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:00.109"} +{"sensors":[{"euler":{"heading":269.3125,"pitch":170.8125,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":126.25,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":2.375,"roll":87.1875},"location":"Right Ankle"},{"euler":{"heading":38.1875,"pitch":-133.8125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":173.625,"pitch":-70.375,"roll":82.0625},"location":"Right Knee"},{"euler":{"heading":74.4375,"pitch":-125.1875,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:00.211"} +{"sensors":[{"euler":{"heading":257.625,"pitch":-172.4375,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":112.125,"pitch":113.8125,"roll":57.375},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":-1.6875,"roll":87.5},"location":"Right Ankle"},{"euler":{"heading":37.25,"pitch":-137.0625,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":179.4375,"pitch":-79.75,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-128.8125,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:00.312"} +{"sensors":[{"euler":{"heading":265.8125,"pitch":-178.1875,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":118.1875,"pitch":118.3125,"roll":60.9375},"location":"Left Ankle"},{"euler":{"heading":74.75,"pitch":-75.0,"roll":82.5},"location":"Right Ankle"},{"euler":{"heading":35.6875,"pitch":-141.25,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":186.8125,"pitch":-84.75,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":86.5625,"pitch":-131.25,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:00.413"} +{"sensors":[{"euler":{"heading":275.25,"pitch":174.0625,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":128.3125,"pitch":122.125,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":66.375,"pitch":-83.1875,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":35.75,"pitch":-140.0,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":195.1875,"pitch":-84.4375,"roll":65.9375},"location":"Right Knee"},{"euler":{"heading":88.0,"pitch":-132.3125,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:00.513"} +{"sensors":[{"euler":{"heading":281.75,"pitch":166.6875,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":134.3125,"pitch":125.1875,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":56.75,"pitch":-88.375,"roll":61.0},"location":"Right Ankle"},{"euler":{"heading":47.375,"pitch":-131.6875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":204.0625,"pitch":-84.0625,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":92.25,"pitch":-135.1875,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:00.615"} +{"sensors":[{"euler":{"heading":286.125,"pitch":160.5,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":125.3125,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-90.9375,"roll":64.5},"location":"Right Ankle"},{"euler":{"heading":56.875,"pitch":-120.5625,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":203.5625,"pitch":-75.125,"roll":61.625},"location":"Right Knee"},{"euler":{"heading":93.4375,"pitch":-136.4375,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:00.716"} +{"sensors":[{"euler":{"heading":290.0625,"pitch":155.375,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":139.4375,"pitch":125.5625,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":72.125,"pitch":-108.9375,"roll":77.8125},"location":"Right Ankle"},{"euler":{"heading":63.125,"pitch":-115.9375,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":190.4375,"pitch":-58.3125,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":95.3125,"pitch":-138.375,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:00.817"} +{"sensors":[{"euler":{"heading":292.875,"pitch":150.4375,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":141.3125,"pitch":130.25,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":125.125,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":63.6875,"pitch":-115.625,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":175.875,"pitch":12.3125,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-141.375,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:00.918"} +{"sensors":[{"euler":{"heading":295.8125,"pitch":144.9375,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":144.1875,"pitch":142.625,"roll":77.9375},"location":"Left Ankle"},{"euler":{"heading":109.125,"pitch":103.9375,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":58.0,"pitch":-119.375,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":55.1875,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-143.875,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:01.20"} +{"sensors":[{"euler":{"heading":300.3125,"pitch":138.875,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":149.125,"pitch":167.5625,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":107.375,"pitch":104.125,"roll":67.5625},"location":"Right Ankle"},{"euler":{"heading":51.0625,"pitch":-122.8125,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":53.9375,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":93.875,"pitch":-145.8125,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:01.121"} +{"sensors":[{"euler":{"heading":307.4375,"pitch":132.6875,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":155.1875,"pitch":-163.0,"roll":75.875},"location":"Left Ankle"},{"euler":{"heading":99.375,"pitch":102.75,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":47.3125,"pitch":-125.8125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":160.625,"pitch":39.3125,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":96.625,"pitch":-148.0,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:01.221"} +{"sensors":[{"euler":{"heading":227.0,"pitch":128.125,"roll":43.625},"location":"Left Knee"},{"euler":{"heading":170.0625,"pitch":-134.1875,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":99.625,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":45.625,"pitch":-127.1875,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":163.4375,"pitch":26.6875,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":90.75,"pitch":-140.8125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:01.322"} +{"sensors":[{"euler":{"heading":236.0625,"pitch":126.875,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":184.3125,"pitch":-125.0625,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":90.0,"pitch":91.8125,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":43.5,"pitch":-129.0,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":0.125,"roll":85.0625},"location":"Right Knee"},{"euler":{"heading":83.5,"pitch":-129.1875,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:01.423"} +{"sensors":[{"euler":{"heading":225.5,"pitch":134.5,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":170.6875,"pitch":-141.9375,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":87.1875,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":41.3125,"pitch":-129.75,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":167.3125,"pitch":-2.0,"roll":85.4375},"location":"Right Knee"},{"euler":{"heading":77.9375,"pitch":-124.625,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:01.523"} +{"sensors":[{"euler":{"heading":288.0625,"pitch":151.1875,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":143.8125,"pitch":165.4375,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":5.875,"roll":83.9375},"location":"Right Ankle"},{"euler":{"heading":39.1875,"pitch":-131.0,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":169.25,"pitch":-4.4375,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":74.125,"pitch":-124.5625,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:01.624"} +{"sensors":[{"euler":{"heading":267.125,"pitch":173.1875,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":118.9375,"pitch":122.75,"roll":63.0625},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":3.1875,"roll":86.375},"location":"Right Ankle"},{"euler":{"heading":37.75,"pitch":-132.6875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":173.0625,"pitch":-68.0625,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":74.9375,"pitch":-125.875,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:01.725"} +{"sensors":[{"euler":{"heading":258.0625,"pitch":-172.9375,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":113.5625,"pitch":115.1875,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":-0.625,"roll":87.8125},"location":"Right Ankle"},{"euler":{"heading":37.125,"pitch":-135.3125,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":178.6875,"pitch":-80.3125,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":80.1875,"pitch":-128.5625,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:01.826"} +{"sensors":[{"euler":{"heading":267.125,"pitch":-179.5,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":121.6875,"pitch":119.875,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":74.9375,"pitch":-70.5,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":36.4375,"pitch":-138.75,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":187.5625,"pitch":-85.5625,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":86.0625,"pitch":-130.625,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:01.927"} +{"sensors":[{"euler":{"heading":277.4375,"pitch":171.875,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":124.125,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":66.0625,"pitch":-82.4375,"roll":72.5},"location":"Right Ankle"},{"euler":{"heading":40.125,"pitch":-135.25,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":197.25,"pitch":-85.8125,"roll":65.125},"location":"Right Knee"},{"euler":{"heading":86.625,"pitch":-131.375,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:02.28"} +{"sensors":[{"euler":{"heading":283.0625,"pitch":164.9375,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":134.1875,"pitch":126.4375,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":60.625,"pitch":-92.0625,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":51.75,"pitch":-126.5625,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":206.125,"pitch":-83.5,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":90.0625,"pitch":-133.9375,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:02.129"} +{"sensors":[{"euler":{"heading":286.5,"pitch":159.6875,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":135.75,"pitch":124.8125,"roll":73.0},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":-97.875,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":61.0,"pitch":-117.9375,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":199.75,"pitch":-70.9375,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":92.1875,"pitch":-136.0,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:02.229"} +{"sensors":[{"euler":{"heading":290.25,"pitch":154.75,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":138.1875,"pitch":125.8125,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":-176.625,"roll":83.3125},"location":"Right Ankle"},{"euler":{"heading":63.875,"pitch":-115.9375,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":184.0625,"pitch":-36.8125,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":93.875,"pitch":-138.6875,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:02.330"} +{"sensors":[{"euler":{"heading":293.0625,"pitch":149.375,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":140.4375,"pitch":134.375,"roll":76.625},"location":"Left Ankle"},{"euler":{"heading":100.1875,"pitch":114.1875,"roll":74.125},"location":"Right Ankle"},{"euler":{"heading":62.4375,"pitch":-117.0625,"roll":43.125},"location":"Right Hip"},{"euler":{"heading":169.25,"pitch":38.125,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":93.75,"pitch":-140.9375,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:02.431"} +{"sensors":[{"euler":{"heading":296.4375,"pitch":143.6875,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":144.0,"pitch":148.9375,"roll":77.875},"location":"Left Ankle"},{"euler":{"heading":113.4375,"pitch":101.625,"roll":64.5},"location":"Right Ankle"},{"euler":{"heading":56.9375,"pitch":-121.25,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":162.5625,"pitch":62.625,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":94.125,"pitch":-144.0625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:02.531"} +{"sensors":[{"euler":{"heading":301.75,"pitch":137.8125,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":148.75,"pitch":173.125,"roll":78.375},"location":"Left Ankle"},{"euler":{"heading":107.875,"pitch":103.25,"roll":67.5625},"location":"Right Ankle"},{"euler":{"heading":52.0,"pitch":-122.6875,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":161.875,"pitch":53.8125,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-147.8125,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:02.632"} +{"sensors":[{"euler":{"heading":309.375,"pitch":131.5625,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":158.4375,"pitch":-155.0625,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":101.25,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":49.3125,"pitch":-125.625,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":40.75,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":96.0,"pitch":-146.625,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:02.733"} +{"sensors":[{"euler":{"heading":229.8125,"pitch":127.75,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":179.125,"pitch":-128.3125,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":93.875,"pitch":97.4375,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":46.0,"pitch":-127.75,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":163.6875,"pitch":32.625,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":85.6875,"pitch":-133.875,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:02.834"} +{"sensors":[{"euler":{"heading":235.6875,"pitch":128.75,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":182.5625,"pitch":-126.4375,"roll":57.75},"location":"Left Ankle"},{"euler":{"heading":89.875,"pitch":91.0,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":43.8125,"pitch":-129.25,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":1.5,"roll":85.3125},"location":"Right Knee"},{"euler":{"heading":79.1875,"pitch":-125.0,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:02.935"} +{"sensors":[{"euler":{"heading":307.5,"pitch":140.1875,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":163.0625,"pitch":-151.375,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":87.625,"roll":81.1875},"location":"Right Ankle"},{"euler":{"heading":41.6875,"pitch":-130.25,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":166.8125,"pitch":-0.625,"roll":86.125},"location":"Right Knee"},{"euler":{"heading":75.25,"pitch":-123.4375,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:03.36"} +{"sensors":[{"euler":{"heading":280.125,"pitch":160.875,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":135.125,"pitch":146.375,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":83.4375,"roll":83.125},"location":"Right Ankle"},{"euler":{"heading":39.6875,"pitch":-132.25,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":-3.3125,"roll":84.9375},"location":"Right Knee"},{"euler":{"heading":74.3125,"pitch":-124.6875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:03.137"} +{"sensors":[{"euler":{"heading":261.75,"pitch":-178.6875,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":113.5,"pitch":116.1875,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":3.5625,"roll":86.0625},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-134.125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":173.3125,"pitch":-64.9375,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":78.0,"pitch":-127.6875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:03.237"} +{"sensors":[{"euler":{"heading":261.5625,"pitch":-175.125,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":117.8125,"pitch":116.625,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":77.75,"pitch":-1.0625,"roll":88.125},"location":"Right Ankle"},{"euler":{"heading":37.3125,"pitch":-137.0625,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":179.625,"pitch":-78.375,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":83.375,"pitch":-129.75,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:03.338"} +{"sensors":[{"euler":{"heading":274.4375,"pitch":175.5,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":126.4375,"pitch":121.8125,"roll":65.375},"location":"Left Ankle"},{"euler":{"heading":73.4375,"pitch":-77.4375,"roll":80.375},"location":"Right Ankle"},{"euler":{"heading":36.8125,"pitch":-136.6875,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":190.75,"pitch":-84.8125,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":87.0625,"pitch":-131.4375,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:03.439"} +{"sensors":[{"euler":{"heading":281.9375,"pitch":167.625,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":132.5625,"pitch":124.5625,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":64.4375,"pitch":-91.0,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":48.0625,"pitch":-127.4375,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":202.0625,"pitch":-83.0625,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":89.75,"pitch":-132.375,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:03.541"} +{"sensors":[{"euler":{"heading":286.1875,"pitch":161.3125,"roll":60.8125},"location":"Left Knee"},{"euler":{"heading":137.0625,"pitch":127.3125,"roll":72.625},"location":"Left Ankle"},{"euler":{"heading":65.4375,"pitch":-100.6875,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":58.875,"pitch":-118.25,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":205.5,"pitch":-73.1875,"roll":62.75},"location":"Right Knee"},{"euler":{"heading":91.0625,"pitch":-134.5,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:03.642"} +{"sensors":[{"euler":{"heading":290.25,"pitch":156.0625,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":138.625,"pitch":126.8125,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":-113.5625,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":64.4375,"pitch":-114.875,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":191.8125,"pitch":-55.875,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":93.5625,"pitch":-137.125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:03.742"} +{"sensors":[{"euler":{"heading":293.5625,"pitch":150.375,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":140.875,"pitch":130.75,"roll":76.5},"location":"Left Ankle"},{"euler":{"heading":92.9375,"pitch":132.8125,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":65.125,"pitch":-114.9375,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":177.6875,"pitch":13.625,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":95.4375,"pitch":-141.0,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:03.843"} +{"sensors":[{"euler":{"heading":297.0,"pitch":144.625,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":143.25,"roll":78.6875},"location":"Left Ankle"},{"euler":{"heading":110.9375,"pitch":103.5625,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":61.0,"pitch":-118.0625,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":62.0,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-143.4375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:03.944"} +{"sensors":[{"euler":{"heading":302.1875,"pitch":138.6875,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":149.875,"pitch":165.5625,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":115.8125,"pitch":99.375,"roll":62.3125},"location":"Right Ankle"},{"euler":{"heading":55.0,"pitch":-121.3125,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":161.25,"pitch":66.0,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":96.0625,"pitch":-147.75,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:04.45"} +{"sensors":[{"euler":{"heading":307.9375,"pitch":133.4375,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":154.5625,"pitch":-166.9375,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":106.5625,"pitch":100.875,"roll":67.5625},"location":"Right Ankle"},{"euler":{"heading":48.75,"pitch":-124.1875,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":159.375,"pitch":58.0625,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":97.1875,"pitch":-152.75,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:04.146"} +{"sensors":[{"euler":{"heading":226.25,"pitch":127.5625,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":166.375,"pitch":-136.375,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":98.5,"roll":73.75},"location":"Right Ankle"},{"euler":{"heading":49.125,"pitch":-125.125,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":159.5,"pitch":45.4375,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":91.6875,"pitch":-145.5,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:04.247"} +{"sensors":[{"euler":{"heading":238.875,"pitch":125.5625,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":186.75,"pitch":-122.0625,"roll":53.75},"location":"Left Ankle"},{"euler":{"heading":93.75,"pitch":91.4375,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":44.9375,"pitch":-127.25,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":162.8125,"pitch":34.75,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":79.5625,"pitch":-129.5625,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:04.348"} +{"sensors":[{"euler":{"heading":230.25,"pitch":132.75,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":176.125,"pitch":-131.6875,"roll":59.5},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":86.125,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":43.0625,"pitch":-127.5,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":0.875,"roll":85.6875},"location":"Right Knee"},{"euler":{"heading":73.0,"pitch":-123.625,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:04.449"} +{"sensors":[{"euler":{"heading":293.375,"pitch":148.25,"roll":50.875},"location":"Left Knee"},{"euler":{"heading":151.375,"pitch":-170.8125,"roll":71.6875},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":82.0,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":41.75,"pitch":-128.75,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":167.5625,"pitch":-1.5,"roll":86.0},"location":"Right Knee"},{"euler":{"heading":69.75,"pitch":-122.3125,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:04.550"} +{"sensors":[{"euler":{"heading":271.1875,"pitch":169.1875,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":125.625,"pitch":130.625,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":5.75,"roll":84.0},"location":"Right Ankle"},{"euler":{"heading":39.1875,"pitch":-131.0625,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":171.5,"pitch":-5.6875,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":70.4375,"pitch":-122.8125,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:04.650"} +{"sensors":[{"euler":{"heading":258.8125,"pitch":-174.4375,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":111.3125,"pitch":114.25,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":2.25,"roll":87.25},"location":"Right Ankle"},{"euler":{"heading":38.0,"pitch":-133.9375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":-75.8125,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":75.8125,"pitch":-126.625,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:04.750"} +{"sensors":[{"euler":{"heading":263.0,"pitch":-174.75,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":118.6875,"pitch":118.4375,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":78.0625,"pitch":-2.875,"roll":86.6875},"location":"Right Ankle"},{"euler":{"heading":36.6875,"pitch":-138.8125,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":-82.0,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-129.625,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:04.851"} +{"sensors":[{"euler":{"heading":276.375,"pitch":174.375,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":128.125,"pitch":122.125,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":70.3125,"pitch":-87.1875,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":36.1875,"pitch":-137.25,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":196.3125,"pitch":-84.6875,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":86.5,"pitch":-131.125,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:04.952"} +{"sensors":[{"euler":{"heading":283.125,"pitch":166.625,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":124.75,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":59.6875,"pitch":-92.875,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":48.6875,"pitch":-127.0625,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":205.0625,"pitch":-79.3125,"roll":59.125},"location":"Right Knee"},{"euler":{"heading":90.0625,"pitch":-133.5625,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:05.53"} +{"sensors":[{"euler":{"heading":285.75,"pitch":160.125,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":136.125,"pitch":125.625,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":61.875,"pitch":-97.375,"roll":66.5625},"location":"Right Ankle"},{"euler":{"heading":59.5,"pitch":-117.5625,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":204.8125,"pitch":-71.75,"roll":61.3125},"location":"Right Knee"},{"euler":{"heading":91.1875,"pitch":-136.0625,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:05.153"} +{"sensors":[{"euler":{"heading":290.3125,"pitch":155.0625,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":139.0,"pitch":125.9375,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":-104.9375,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":66.0625,"pitch":-113.625,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":191.75,"pitch":-55.125,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":94.25,"pitch":-139.125,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:05.254"} +{"sensors":[{"euler":{"heading":294.6875,"pitch":149.4375,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":142.0625,"pitch":129.9375,"roll":77.0625},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":132.8125,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":66.5,"pitch":-113.375,"roll":41.3125},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":12.875,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":94.875,"pitch":-142.0,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:05.355"} +{"sensors":[{"euler":{"heading":298.8125,"pitch":143.6875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":146.375,"pitch":145.1875,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":108.5,"pitch":105.0625,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":60.375,"pitch":-117.8125,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":59.625,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":94.3125,"pitch":-144.25,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:05.455"} +{"sensors":[{"euler":{"heading":302.9375,"pitch":137.6875,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":150.875,"pitch":172.25,"roll":78.875},"location":"Left Ankle"},{"euler":{"heading":108.625,"pitch":102.5625,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":52.75,"pitch":-120.9375,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":159.625,"pitch":60.5,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":93.875,"pitch":-147.4375,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:05.555"} +{"sensors":[{"euler":{"heading":310.4375,"pitch":131.0,"roll":49.5625},"location":"Left Knee"},{"euler":{"heading":158.625,"pitch":-154.875,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":99.875,"pitch":100.9375,"roll":71.1875},"location":"Right Ankle"},{"euler":{"heading":48.1875,"pitch":-124.25,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":158.9375,"pitch":46.75,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":94.9375,"pitch":-147.1875,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:05.656"} +{"sensors":[{"euler":{"heading":230.5625,"pitch":127.5,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":177.625,"pitch":-127.875,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":97.3125,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":46.125,"pitch":-126.0,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":38.8125,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":84.1875,"pitch":-135.9375,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:05.756"} +{"sensors":[{"euler":{"heading":236.125,"pitch":127.9375,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":185.3125,"pitch":-122.1875,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":89.875,"pitch":90.4375,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":42.75,"pitch":-127.625,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":162.9375,"pitch":1.875,"roll":84.625},"location":"Right Knee"},{"euler":{"heading":75.8125,"pitch":-125.125,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:05.857"} +{"sensors":[{"euler":{"heading":220.0,"pitch":138.5,"roll":44.4375},"location":"Left Knee"},{"euler":{"heading":168.0,"pitch":-140.6875,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":86.5,"roll":80.3125},"location":"Right Ankle"},{"euler":{"heading":41.25,"pitch":-128.0,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":-0.5625,"roll":85.625},"location":"Right Knee"},{"euler":{"heading":71.1875,"pitch":-122.4375,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:05.959"} +{"sensors":[{"euler":{"heading":283.125,"pitch":156.625,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":142.25,"pitch":162.0625,"roll":72.0},"location":"Left Ankle"},{"euler":{"heading":83.5,"pitch":81.0625,"roll":83.125},"location":"Right Ankle"},{"euler":{"heading":39.6875,"pitch":-129.375,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":-3.3125,"roll":84.8125},"location":"Right Knee"},{"euler":{"heading":70.125,"pitch":-122.0,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:06.60"} +{"sensors":[{"euler":{"heading":266.625,"pitch":175.6875,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":119.0625,"pitch":121.6875,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":79.125,"pitch":3.25,"roll":86.4375},"location":"Right Ankle"},{"euler":{"heading":38.125,"pitch":-131.3125,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":172.0625,"pitch":-64.0,"roll":82.0625},"location":"Right Knee"},{"euler":{"heading":74.3125,"pitch":-124.4375,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:06.160"} +{"sensors":[{"euler":{"heading":260.9375,"pitch":-173.75,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":115.625,"pitch":115.8125,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":75.5,"pitch":-1.4375,"roll":87.625},"location":"Right Ankle"},{"euler":{"heading":37.9375,"pitch":-134.875,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":179.5625,"pitch":-75.75,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":81.5625,"pitch":-128.5625,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:06.261"} +{"sensors":[{"euler":{"heading":272.1875,"pitch":179.25,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":126.9375,"pitch":121.5,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":71.25,"pitch":-76.25,"roll":80.5},"location":"Right Ankle"},{"euler":{"heading":37.9375,"pitch":-137.0625,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":189.5,"pitch":-83.0,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":88.4375,"pitch":-131.375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:06.361"} +{"sensors":[{"euler":{"heading":282.0,"pitch":169.6875,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":133.375,"pitch":124.625,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":62.125,"pitch":-85.4375,"roll":68.0},"location":"Right Ankle"},{"euler":{"heading":47.125,"pitch":-131.0625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":202.1875,"pitch":-82.875,"roll":62.6875},"location":"Right Knee"},{"euler":{"heading":90.125,"pitch":-132.5,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:06.461"} +{"sensors":[{"euler":{"heading":286.3125,"pitch":162.375,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":137.9375,"pitch":126.5,"roll":71.75},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-89.875,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":56.0,"pitch":-119.25,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":204.6875,"pitch":-74.625,"roll":61.625},"location":"Right Knee"},{"euler":{"heading":92.125,"pitch":-135.4375,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:06.562"} +{"sensors":[{"euler":{"heading":289.8125,"pitch":156.625,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":139.3125,"pitch":128.5625,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":67.8125,"pitch":-97.6875,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":62.875,"pitch":-114.3125,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":194.625,"pitch":-62.625,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":93.6875,"pitch":-137.1875,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:06.663"} +{"sensors":[{"euler":{"heading":293.8125,"pitch":151.75,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":141.5625,"pitch":131.9375,"roll":75.6875},"location":"Left Ankle"},{"euler":{"heading":84.6875,"pitch":179.5,"roll":84.5},"location":"Right Ankle"},{"euler":{"heading":66.4375,"pitch":-113.1875,"roll":42.875},"location":"Right Hip"},{"euler":{"heading":180.9375,"pitch":-12.3125,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-140.6875,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:06.763"} +{"sensors":[{"euler":{"heading":297.5,"pitch":146.5625,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":145.9375,"pitch":140.8125,"roll":77.875},"location":"Left Ankle"},{"euler":{"heading":103.6875,"pitch":108.9375,"roll":71.3125},"location":"Right Ankle"},{"euler":{"heading":62.625,"pitch":-115.9375,"roll":43.5625},"location":"Right Hip"},{"euler":{"heading":166.0625,"pitch":56.5625,"roll":75.5625},"location":"Right Knee"},{"euler":{"heading":94.75,"pitch":-144.0,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:06.864"} +{"sensors":[{"euler":{"heading":301.75,"pitch":140.25,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":150.1875,"pitch":161.0,"roll":79.0},"location":"Left Ankle"},{"euler":{"heading":111.125,"pitch":102.0,"roll":64.375},"location":"Right Ankle"},{"euler":{"heading":54.5,"pitch":-120.6875,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":159.5,"pitch":64.625,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-147.0,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:06.965"} +{"sensors":[{"euler":{"heading":307.5625,"pitch":134.1875,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":155.0625,"pitch":-167.0,"roll":77.5},"location":"Left Ankle"},{"euler":{"heading":103.0625,"pitch":103.125,"roll":69.25},"location":"Right Ankle"},{"euler":{"heading":48.3125,"pitch":-123.625,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":158.0,"pitch":58.1875,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-150.9375,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:07.66"} +{"sensors":[{"euler":{"heading":317.0,"pitch":128.0625,"roll":45.0},"location":"Left Knee"},{"euler":{"heading":166.5625,"pitch":-136.875,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":95.1875,"pitch":99.1875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":47.6875,"pitch":-125.25,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":160.3125,"pitch":45.0625,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":91.75,"pitch":-146.0625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:07.167"} +{"sensors":[{"euler":{"heading":236.4375,"pitch":125.5,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":186.8125,"pitch":-119.4375,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":89.9375,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":43.3125,"pitch":-128.5,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":162.4375,"pitch":3.625,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-132.5625,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:07.268"} +{"sensors":[{"euler":{"heading":231.4375,"pitch":130.8125,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":179.9375,"pitch":-128.0,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":86.4375,"pitch":83.8125,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":41.25,"pitch":-128.375,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":163.8125,"pitch":0.875,"roll":85.375},"location":"Right Knee"},{"euler":{"heading":73.1875,"pitch":-125.75,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:07.369"} +{"sensors":[{"euler":{"heading":298.1875,"pitch":144.0625,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":157.0,"pitch":-160.3125,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":83.5625,"pitch":6.0,"roll":83.5625},"location":"Right Ankle"},{"euler":{"heading":40.1875,"pitch":-129.5,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":166.8125,"pitch":-1.75,"roll":85.75},"location":"Right Knee"},{"euler":{"heading":69.8125,"pitch":-124.625,"roll":45.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:07.469"} +{"sensors":[{"euler":{"heading":275.875,"pitch":164.0,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":131.25,"pitch":141.0625,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":3.0625,"roll":86.0625},"location":"Right Ankle"},{"euler":{"heading":39.625,"pitch":-131.375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":170.625,"pitch":-4.875,"roll":84.125},"location":"Right Knee"},{"euler":{"heading":59.5,"pitch":-125.0625,"roll":44.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:07.570"} +{"sensors":[{"euler":{"heading":264.1875,"pitch":179.75,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":118.25,"roll":60.5625},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-0.8125,"roll":87.0625},"location":"Right Ankle"},{"euler":{"heading":38.75,"pitch":-133.5625,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":-79.1875,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":75.6875,"pitch":-127.9375,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:07.671"} +{"sensors":[{"euler":{"heading":262.875,"pitch":-176.3125,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":118.6875,"pitch":118.6875,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":73.625,"pitch":-6.0625,"roll":83.125},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-137.75,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":184.25,"pitch":-85.25,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":82.5625,"pitch":-131.3125,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:07.772"} +{"sensors":[{"euler":{"heading":275.0625,"pitch":174.625,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":127.25,"pitch":124.0625,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":48.75,"pitch":-73.625,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":37.125,"pitch":-137.6875,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":192.25,"pitch":-85.8125,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":85.9375,"pitch":-132.875,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:07.873"} +{"sensors":[{"euler":{"heading":283.125,"pitch":166.5625,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":125.0,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":56.0625,"pitch":-84.3125,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":48.6875,"pitch":-130.3125,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":203.75,"pitch":-86.5,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":89.9375,"pitch":-135.375,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:07.973"} +{"sensors":[{"euler":{"heading":289.25,"pitch":159.875,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":139.625,"pitch":125.5625,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":60.375,"pitch":-89.75,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":59.0,"pitch":-119.9375,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":204.25,"pitch":-77.1875,"roll":63.625},"location":"Right Knee"},{"euler":{"heading":93.375,"pitch":-138.5,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:08.75"} +{"sensors":[{"euler":{"heading":294.8125,"pitch":154.0625,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":142.625,"pitch":127.5625,"roll":75.9375},"location":"Left Ankle"},{"euler":{"heading":73.5625,"pitch":-94.25,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":65.25,"pitch":-115.125,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":191.25,"pitch":-59.1875,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":95.75,"pitch":-140.5625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:08.175"} +{"sensors":[{"euler":{"heading":299.0625,"pitch":148.125,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":145.875,"pitch":136.125,"roll":77.9375},"location":"Left Ankle"},{"euler":{"heading":92.6875,"pitch":115.375,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":64.1875,"pitch":-115.875,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":23.25,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-143.3125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:08.276"} +{"sensors":[{"euler":{"heading":302.1875,"pitch":142.25,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":149.9375,"pitch":152.875,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":109.0,"pitch":101.75,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":57.5625,"pitch":-121.0,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":62.0,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-146.25,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:08.377"} +{"sensors":[{"euler":{"heading":306.75,"pitch":136.3125,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":153.8125,"pitch":-178.1875,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":108.0625,"pitch":102.25,"roll":65.375},"location":"Right Ankle"},{"euler":{"heading":50.8125,"pitch":-123.9375,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":59.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":95.375,"pitch":-149.6875,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:08.478"} +{"sensors":[{"euler":{"heading":314.4375,"pitch":130.75,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":159.1875,"pitch":-155.8125,"roll":75.0625},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":101.8125,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":47.4375,"pitch":-126.25,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":159.125,"pitch":49.125,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":98.6875,"pitch":-152.875,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:08.578"} +{"sensors":[{"euler":{"heading":229.875,"pitch":127.3125,"roll":42.625},"location":"Left Knee"},{"euler":{"heading":170.1875,"pitch":-133.5,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":97.0625,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":44.4375,"pitch":-128.375,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":39.8125,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":90.5,"pitch":-144.625,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:08.679"} +{"sensors":[{"euler":{"heading":235.25,"pitch":126.75,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":181.8125,"pitch":-124.4375,"roll":57.3125},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":90.625,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":42.0,"pitch":-130.0625,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":164.1875,"pitch":2.4375,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":80.5,"pitch":-132.1875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:08.780"} +{"sensors":[{"euler":{"heading":224.25,"pitch":134.5625,"roll":43.0625},"location":"Left Knee"},{"euler":{"heading":168.75,"pitch":-136.0,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":85.375,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":39.8125,"pitch":-130.75,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":166.0,"pitch":-0.1875,"roll":85.0},"location":"Right Knee"},{"euler":{"heading":74.875,"pitch":-127.1875,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:08.881"} +{"sensors":[{"euler":{"heading":273.3125,"pitch":150.875,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":143.8125,"pitch":169.5,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":5.4375,"roll":84.5},"location":"Right Ankle"},{"euler":{"heading":39.1875,"pitch":-132.3125,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":170.0625,"pitch":-3.5,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":72.5625,"pitch":-126.25,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:08.983"} +{"sensors":[{"euler":{"heading":267.625,"pitch":172.375,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":120.75,"pitch":123.3125,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":2.75,"roll":87.125},"location":"Right Ankle"},{"euler":{"heading":38.4375,"pitch":-135.875,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":174.75,"pitch":-60.9375,"roll":82.0},"location":"Right Knee"},{"euler":{"heading":73.8125,"pitch":-127.875,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:09.84"} +{"sensors":[{"euler":{"heading":257.875,"pitch":-173.0625,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":111.9375,"pitch":111.1875,"roll":59.0625},"location":"Left Ankle"},{"euler":{"heading":78.75,"pitch":-1.125,"roll":87.75},"location":"Right Ankle"},{"euler":{"heading":38.5625,"pitch":-139.6875,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":180.625,"pitch":-76.25,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-130.6875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:09.185"} +{"sensors":[{"euler":{"heading":266.9375,"pitch":-177.5625,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":122.3125,"pitch":116.875,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-6.4375,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":38.8125,"pitch":-144.6875,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":189.125,"pitch":-83.0,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":87.3125,"pitch":-133.625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:09.285"} +{"sensors":[{"euler":{"heading":278.0,"pitch":172.625,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":130.625,"pitch":120.125,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":67.1875,"pitch":-80.75,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":43.0,"pitch":-141.875,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":199.1875,"pitch":-84.375,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":89.75,"pitch":-135.0625,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:09.387"} +{"sensors":[{"euler":{"heading":283.5,"pitch":164.75,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":136.375,"pitch":121.8125,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":62.9375,"pitch":-89.5,"roll":66.5625},"location":"Right Ankle"},{"euler":{"heading":52.5625,"pitch":-132.1875,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":208.5,"pitch":-81.6875,"roll":61.0625},"location":"Right Knee"},{"euler":{"heading":93.8125,"pitch":-138.25,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:09.487"} +{"sensors":[{"euler":{"heading":287.8125,"pitch":158.0,"roll":62.125},"location":"Left Knee"},{"euler":{"heading":141.0625,"pitch":126.125,"roll":75.6875},"location":"Left Ankle"},{"euler":{"heading":69.6875,"pitch":-94.6875,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":60.5625,"pitch":-124.5,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":202.9375,"pitch":-73.1875,"roll":67.0625},"location":"Right Knee"},{"euler":{"heading":95.1875,"pitch":-139.0,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:09.588"} +{"sensors":[{"euler":{"heading":292.5625,"pitch":151.75,"roll":60.8125},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":134.5,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":-175.1875,"roll":83.625},"location":"Right Ankle"},{"euler":{"heading":65.875,"pitch":-120.625,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":190.75,"pitch":-48.5,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":95.625,"pitch":-140.8125,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:09.690"} +{"sensors":[{"euler":{"heading":296.5625,"pitch":145.9375,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":146.75,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":115.25,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":66.375,"pitch":-120.3125,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":37.875,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":96.125,"pitch":-143.4375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:09.791"} +{"sensors":[{"euler":{"heading":300.8125,"pitch":140.125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":149.625,"pitch":163.375,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":112.75,"pitch":101.3125,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":63.3125,"pitch":-121.8125,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":168.75,"pitch":66.25,"roll":74.625},"location":"Right Knee"},{"euler":{"heading":97.8125,"pitch":-147.0625,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:09.891"} +{"sensors":[{"euler":{"heading":305.9375,"pitch":134.75,"roll":53.875},"location":"Left Knee"},{"euler":{"heading":154.4375,"pitch":-171.0,"roll":79.0},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":100.0625,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":59.25,"pitch":-122.625,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":69.9375,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":99.0,"pitch":-151.3125,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:09.992"} +{"sensors":[{"euler":{"heading":313.0625,"pitch":128.125,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":161.75,"pitch":-145.4375,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":104.5,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":52.0625,"pitch":-126.3125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":161.875,"pitch":56.5625,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":100.3125,"pitch":-152.6875,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:10.92"} +{"sensors":[{"euler":{"heading":233.625,"pitch":124.625,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":180.3125,"pitch":-124.75,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":93.5,"pitch":102.8125,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":49.4375,"pitch":-128.9375,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":43.875,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":92.5625,"pitch":-141.25,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:10.193"} +{"sensors":[{"euler":{"heading":237.0625,"pitch":125.75,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":184.75,"pitch":-121.0,"roll":56.625},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":99.1875,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":45.1875,"pitch":-132.4375,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":167.6875,"pitch":2.5625,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":85.375,"pitch":-131.0625,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:10.294"} +{"sensors":[{"euler":{"heading":309.875,"pitch":136.4375,"roll":46.125},"location":"Left Knee"},{"euler":{"heading":165.25,"pitch":-141.5625,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":86.6875,"pitch":101.1875,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":42.5625,"pitch":-133.5625,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":169.875,"pitch":-0.3125,"roll":84.8125},"location":"Right Knee"},{"euler":{"heading":79.1875,"pitch":-127.3125,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:10.395"} +{"sensors":[{"euler":{"heading":283.5,"pitch":154.75,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":139.625,"pitch":161.375,"roll":72.875},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":175.5625,"roll":85.5},"location":"Right Ankle"},{"euler":{"heading":41.0,"pitch":-136.0625,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":-3.3125,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":74.5625,"pitch":-126.8125,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:10.495"} +{"sensors":[{"euler":{"heading":265.6875,"pitch":176.3125,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":117.9375,"pitch":120.6875,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":178.75,"roll":88.6875},"location":"Right Ankle"},{"euler":{"heading":39.8125,"pitch":-138.5625,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":-60.5625,"roll":82.125},"location":"Right Knee"},{"euler":{"heading":75.125,"pitch":-127.5625,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:10.596"} +{"sensors":[{"euler":{"heading":258.4375,"pitch":-170.375,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":111.8125,"pitch":114.625,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-3.1875,"roll":86.625},"location":"Right Ankle"},{"euler":{"heading":39.875,"pitch":-141.5625,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":182.3125,"pitch":-75.1875,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":81.5,"pitch":-131.1875,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:10.696"} +{"sensors":[{"euler":{"heading":269.6875,"pitch":-177.125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":120.75,"pitch":120.9375,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-79.6875,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":39.0,"pitch":-145.8125,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":190.1875,"pitch":-83.5625,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":88.5625,"pitch":-134.125,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:10.798"} +{"sensors":[{"euler":{"heading":281.125,"pitch":173.625,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":130.0625,"pitch":126.375,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":61.4375,"pitch":-82.375,"roll":69.0625},"location":"Right Ankle"},{"euler":{"heading":41.0,"pitch":-143.125,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":200.5,"pitch":-85.125,"roll":65.25},"location":"Right Knee"},{"euler":{"heading":89.9375,"pitch":-135.5,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:10.899"} +{"sensors":[{"euler":{"heading":286.3125,"pitch":166.625,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":135.375,"pitch":130.875,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":57.9375,"pitch":-90.5,"roll":61.5},"location":"Right Ankle"},{"euler":{"heading":51.5625,"pitch":-133.0625,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":208.75,"pitch":-81.875,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":92.9375,"pitch":-138.5,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:10.999"} +{"sensors":[{"euler":{"heading":288.5625,"pitch":160.5625,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":132.125,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":65.8125,"pitch":-91.9375,"roll":70.625},"location":"Right Ankle"},{"euler":{"heading":59.5625,"pitch":-123.0625,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":201.25,"pitch":-72.625,"roll":68.625},"location":"Right Knee"},{"euler":{"heading":93.5,"pitch":-140.4375,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:11.101"} +{"sensors":[{"euler":{"heading":291.4375,"pitch":155.3125,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":138.125,"pitch":137.3125,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":-175.75,"roll":84.625},"location":"Right Ankle"},{"euler":{"heading":62.9375,"pitch":-118.5625,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":187.0625,"pitch":-37.9375,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":93.0625,"pitch":-142.75,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:11.201"} +{"sensors":[{"euler":{"heading":294.3125,"pitch":150.125,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":140.9375,"pitch":159.375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":97.5625,"pitch":107.5625,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":62.0,"pitch":-118.0625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":171.3125,"pitch":62.9375,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":92.1875,"pitch":-144.8125,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:11.302"} +{"sensors":[{"euler":{"heading":297.8125,"pitch":144.625,"roll":56.5},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":156.75,"roll":76.375},"location":"Left Ankle"},{"euler":{"heading":108.125,"pitch":98.1875,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":56.5,"pitch":-121.0,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":72.25,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":91.1875,"pitch":-145.9375,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:11.402"} +{"sensors":[{"euler":{"heading":303.0,"pitch":137.875,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":151.1875,"pitch":177.25,"roll":77.0625},"location":"Left Ankle"},{"euler":{"heading":104.9375,"pitch":98.25,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":50.875,"pitch":-123.0,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":157.9375,"pitch":69.625,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":91.8125,"pitch":-149.5625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:11.504"} +{"sensors":[{"euler":{"heading":311.4375,"pitch":130.6875,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":158.625,"pitch":-154.75,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":96.25,"pitch":95.375,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":47.9375,"pitch":-126.25,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":158.0625,"pitch":58.75,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":94.4375,"pitch":-150.0625,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:11.605"} +{"sensors":[{"euler":{"heading":230.875,"pitch":128.0,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":177.8125,"pitch":-129.0,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":91.75,"pitch":89.6875,"roll":77.875},"location":"Right Ankle"},{"euler":{"heading":45.6875,"pitch":-129.0625,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":161.8125,"pitch":56.625,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":86.3125,"pitch":-139.9375,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:11.705"} +{"sensors":[{"euler":{"heading":231.3125,"pitch":130.5625,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":176.9375,"pitch":-129.875,"roll":59.5625},"location":"Left Ankle"},{"euler":{"heading":88.0625,"pitch":83.625,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":42.6875,"pitch":-131.25,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":165.375,"pitch":3.125,"roll":85.3125},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-129.6875,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:11.806"} +{"sensors":[{"euler":{"heading":302.25,"pitch":141.1875,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":157.4375,"pitch":-154.75,"roll":68.0},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":79.8125,"roll":82.8125},"location":"Right Ankle"},{"euler":{"heading":40.5625,"pitch":-132.0625,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":167.3125,"pitch":0.3125,"roll":86.875},"location":"Right Knee"},{"euler":{"heading":71.625,"pitch":-125.0,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:11.907"} +{"sensors":[{"euler":{"heading":278.875,"pitch":160.375,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":134.625,"pitch":150.1875,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":4.75,"roll":84.75},"location":"Right Ankle"},{"euler":{"heading":39.0625,"pitch":-133.375,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":169.25,"pitch":-1.9375,"roll":86.375},"location":"Right Knee"},{"euler":{"heading":68.5625,"pitch":-124.1875,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:12.8"} +{"sensors":[{"euler":{"heading":262.375,"pitch":-179.3125,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":113.9375,"pitch":118.5,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":77.4375,"pitch":2.0,"roll":86.5},"location":"Right Ankle"},{"euler":{"heading":38.25,"pitch":-134.8125,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":173.1875,"pitch":-6.0625,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":71.9375,"pitch":-126.1875,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:12.109"} +{"sensors":[{"euler":{"heading":258.9375,"pitch":-171.75,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":112.75,"pitch":114.5,"roll":57.5},"location":"Left Ankle"},{"euler":{"heading":74.375,"pitch":-1.8125,"roll":86.125},"location":"Right Ankle"},{"euler":{"heading":39.75,"pitch":-137.625,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":180.375,"pitch":-81.6875,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":78.9375,"pitch":-129.75,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:12.210"} +{"sensors":[{"euler":{"heading":270.4375,"pitch":-178.5,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":123.3125,"pitch":119.875,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":71.1875,"pitch":-69.25,"roll":64.875},"location":"Right Ankle"},{"euler":{"heading":40.0,"pitch":-140.5,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":190.125,"pitch":-85.5625,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":85.4375,"pitch":-132.5625,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:12.311"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":171.8125,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":123.4375,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":61.1875,"pitch":-80.6875,"roll":69.25},"location":"Right Ankle"},{"euler":{"heading":43.5,"pitch":-137.5,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":200.5,"pitch":-86.5625,"roll":65.625},"location":"Right Knee"},{"euler":{"heading":85.75,"pitch":-132.25,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:12.411"} +{"sensors":[{"euler":{"heading":284.125,"pitch":165.5625,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":137.75,"pitch":124.375,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":59.9375,"pitch":-89.0625,"roll":63.5},"location":"Right Ankle"},{"euler":{"heading":52.5,"pitch":-128.3125,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":209.25,"pitch":-79.9375,"roll":61.6875},"location":"Right Knee"},{"euler":{"heading":88.0625,"pitch":-134.1875,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:12.512"} +{"sensors":[{"euler":{"heading":287.375,"pitch":159.3125,"roll":61.5625},"location":"Left Knee"},{"euler":{"heading":139.125,"pitch":125.0,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":67.125,"pitch":-93.0,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":59.6875,"pitch":-121.0,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":198.125,"pitch":-68.625,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":88.5625,"pitch":-135.75,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:12.613"} +{"sensors":[{"euler":{"heading":292.3125,"pitch":154.4375,"roll":60.8125},"location":"Left Knee"},{"euler":{"heading":141.5,"pitch":128.875,"roll":75.875},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":-178.4375,"roll":85.375},"location":"Right Ankle"},{"euler":{"heading":62.6875,"pitch":-118.0625,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":181.875,"pitch":-17.3125,"roll":81.4375},"location":"Right Knee"},{"euler":{"heading":90.125,"pitch":-138.0625,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:12.714"} +{"sensors":[{"euler":{"heading":295.8125,"pitch":149.1875,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":143.9375,"pitch":136.625,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":98.875,"pitch":110.25,"roll":73.5},"location":"Right Ankle"},{"euler":{"heading":60.1875,"pitch":-119.8125,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":168.5625,"pitch":51.5625,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":90.625,"pitch":-141.0,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:12.815"} +{"sensors":[{"euler":{"heading":299.875,"pitch":143.1875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":146.875,"pitch":152.3125,"roll":78.25},"location":"Left Ankle"},{"euler":{"heading":108.875,"pitch":100.9375,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":55.1875,"pitch":-123.0625,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":163.375,"pitch":66.4375,"roll":72.6875},"location":"Right Knee"},{"euler":{"heading":90.5625,"pitch":-144.1875,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:12.916"} +{"sensors":[{"euler":{"heading":305.625,"pitch":137.25,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":150.875,"pitch":176.6875,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":100.875,"pitch":104.125,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":49.4375,"pitch":-125.5,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":162.875,"pitch":59.6875,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":92.0625,"pitch":-147.625,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:13.16"} +{"sensors":[{"euler":{"heading":312.125,"pitch":131.625,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":160.5625,"pitch":-149.8125,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":101.75,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":49.4375,"pitch":-125.625,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":164.5,"pitch":47.875,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":91.625,"pitch":-146.4375,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:13.117"} +{"sensors":[{"euler":{"heading":230.9375,"pitch":129.125,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":179.9375,"pitch":-125.75,"roll":60.25},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":94.375,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":43.9375,"pitch":-128.9375,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":40.3125,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":80.5,"pitch":-134.9375,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:13.218"} +{"sensors":[{"euler":{"heading":229.1875,"pitch":132.5,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":174.0,"pitch":-132.5625,"roll":61.875},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":86.125,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":41.5625,"pitch":-130.75,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":167.75,"pitch":1.125,"roll":85.875},"location":"Right Knee"},{"euler":{"heading":73.8125,"pitch":-126.875,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:13.318"} +{"sensors":[{"euler":{"heading":296.625,"pitch":145.4375,"roll":49.0},"location":"Left Knee"},{"euler":{"heading":151.25,"pitch":-168.125,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":6.375,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":39.75,"pitch":-133.1875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":170.5625,"pitch":-1.375,"roll":86.5625},"location":"Right Knee"},{"euler":{"heading":68.8125,"pitch":-124.875,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:13.418"} +{"sensors":[{"euler":{"heading":273.0,"pitch":166.5,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":126.5,"pitch":136.4375,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":3.625,"roll":85.9375},"location":"Right Ankle"},{"euler":{"heading":38.4375,"pitch":-136.25,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":174.125,"pitch":-4.375,"roll":84.875},"location":"Right Knee"},{"euler":{"heading":68.375,"pitch":-125.625,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:13.520"} +{"sensors":[{"euler":{"heading":259.4375,"pitch":-174.625,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":110.125,"pitch":115.5625,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":78.3125,"pitch":0.0,"roll":86.75},"location":"Right Ankle"},{"euler":{"heading":37.9375,"pitch":-140.3125,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":179.625,"pitch":-82.3125,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":75.1875,"pitch":-129.5,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:13.620"} +{"sensors":[{"euler":{"heading":259.0,"pitch":-171.125,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":115.125,"pitch":116.25,"roll":57.4375},"location":"Left Ankle"},{"euler":{"heading":74.625,"pitch":-5.0625,"roll":84.0625},"location":"Right Ankle"},{"euler":{"heading":37.0,"pitch":-146.0625,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":188.5625,"pitch":-86.25,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":81.375,"pitch":-130.9375,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:13.721"} +{"sensors":[{"euler":{"heading":274.8125,"pitch":178.375,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":128.25,"pitch":122.8125,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":67.0,"pitch":-75.125,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":37.0625,"pitch":-147.4375,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":198.5,"pitch":-85.375,"roll":67.6875},"location":"Right Knee"},{"euler":{"heading":85.6875,"pitch":-132.375,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:13.821"} +{"sensors":[{"euler":{"heading":285.875,"pitch":168.5,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":138.0625,"pitch":125.75,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":57.875,"pitch":-84.375,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":47.8125,"pitch":-136.75,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":206.6875,"pitch":-81.6875,"roll":60.6875},"location":"Right Knee"},{"euler":{"heading":90.25,"pitch":-133.5625,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:13.922"} +{"sensors":[{"euler":{"heading":289.5,"pitch":161.625,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":142.1875,"pitch":128.4375,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":61.5,"pitch":-94.0,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":55.0,"pitch":-125.5,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":208.4375,"pitch":-76.6875,"roll":62.125},"location":"Right Knee"},{"euler":{"heading":89.8125,"pitch":-135.0625,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:14.23"} +{"sensors":[{"euler":{"heading":293.75,"pitch":156.375,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":143.5625,"pitch":131.0625,"roll":75.1875},"location":"Left Ankle"},{"euler":{"heading":73.125,"pitch":-110.25,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":60.625,"pitch":-119.3125,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":194.875,"pitch":-61.25,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":91.0,"pitch":-137.625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:14.124"} +{"sensors":[{"euler":{"heading":297.5,"pitch":151.75,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":146.3125,"pitch":136.8125,"roll":76.875},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":126.4375,"roll":80.125},"location":"Right Ankle"},{"euler":{"heading":62.5,"pitch":-118.125,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":178.5625,"pitch":10.8125,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":91.75,"pitch":-139.875,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:14.224"} +{"sensors":[{"euler":{"heading":301.8125,"pitch":146.1875,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":149.9375,"pitch":148.875,"roll":78.5625},"location":"Left Ankle"},{"euler":{"heading":108.0,"pitch":104.0625,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":59.125,"pitch":-122.9375,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":60.3125,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":91.3125,"pitch":-142.1875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:14.325"} +{"sensors":[{"euler":{"heading":307.75,"pitch":139.75,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":154.5,"pitch":172.5,"roll":78.5625},"location":"Left Ankle"},{"euler":{"heading":106.5625,"pitch":104.25,"roll":67.875},"location":"Right Ankle"},{"euler":{"heading":52.125,"pitch":-124.75,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":164.0625,"pitch":61.75,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":92.625,"pitch":-146.3125,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:14.426"} +{"sensors":[{"euler":{"heading":314.0625,"pitch":133.125,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":161.25,"pitch":-156.4375,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":95.625,"pitch":104.25,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":48.5625,"pitch":-126.25,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":163.3125,"pitch":48.75,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":93.3125,"pitch":-147.6875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:14.527"} +{"sensors":[{"euler":{"heading":231.75,"pitch":129.75,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":178.75,"pitch":-129.375,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":89.75,"pitch":98.5625,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":44.25,"pitch":-129.5,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":40.0,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":83.25,"pitch":-138.4375,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:14.628"} +{"sensors":[{"euler":{"heading":239.5625,"pitch":129.6875,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":184.625,"pitch":-124.5,"roll":56.6875},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":86.875,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":41.1875,"pitch":-131.75,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":168.0625,"pitch":0.375,"roll":85.6875},"location":"Right Knee"},{"euler":{"heading":74.9375,"pitch":-127.0625,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:14.729"} +{"sensors":[{"euler":{"heading":224.5625,"pitch":140.125,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":166.25,"pitch":-145.6875,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":80.375,"pitch":4.875,"roll":84.9375},"location":"Right Ankle"},{"euler":{"heading":39.25,"pitch":-132.6875,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":169.0625,"pitch":-2.1875,"roll":85.8125},"location":"Right Knee"},{"euler":{"heading":69.8125,"pitch":-124.3125,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:14.830"} +{"sensors":[{"euler":{"heading":282.9375,"pitch":159.875,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":133.875,"pitch":153.6875,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":2.0,"roll":87.125},"location":"Right Ankle"},{"euler":{"heading":37.9375,"pitch":-134.0625,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":171.3125,"pitch":-5.125,"roll":84.0625},"location":"Right Knee"},{"euler":{"heading":67.125,"pitch":-124.8125,"roll":45.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:14.930"} +{"sensors":[{"euler":{"heading":262.5625,"pitch":179.625,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":111.125,"pitch":117.375,"roll":59.4375},"location":"Left Ankle"},{"euler":{"heading":73.3125,"pitch":-1.375,"roll":87.0},"location":"Right Ankle"},{"euler":{"heading":36.6875,"pitch":-137.8125,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":-77.0625,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":71.75,"pitch":-128.125,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:15.31"} +{"sensors":[{"euler":{"heading":263.3125,"pitch":-177.5625,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":112.5625,"pitch":115.0625,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":70.0625,"pitch":-61.75,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":36.75,"pitch":-141.9375,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":185.25,"pitch":-84.25,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-130.5625,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:15.132"} +{"sensors":[{"euler":{"heading":277.75,"pitch":172.9375,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":124.125,"pitch":121.4375,"roll":64.0625},"location":"Left Ankle"},{"euler":{"heading":62.6875,"pitch":-77.3125,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":38.625,"pitch":-138.8125,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":197.3125,"pitch":-88.125,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":80.5625,"pitch":-130.875,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:15.233"} +{"sensors":[{"euler":{"heading":285.75,"pitch":165.375,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":132.375,"pitch":124.375,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":53.4375,"pitch":-82.375,"roll":59.5},"location":"Right Ankle"},{"euler":{"heading":49.4375,"pitch":-130.25,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":206.5625,"pitch":-86.6875,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":84.375,"pitch":-132.25,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:15.334"} +{"sensors":[{"euler":{"heading":290.5,"pitch":159.125,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":138.3125,"pitch":125.9375,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-91.5625,"roll":63.75},"location":"Right Ankle"},{"euler":{"heading":57.9375,"pitch":-122.0625,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":206.875,"pitch":-78.5,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":86.0625,"pitch":-133.4375,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:15.434"} +{"sensors":[{"euler":{"heading":295.8125,"pitch":153.6875,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":140.75,"pitch":128.375,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":-102.1875,"roll":79.0},"location":"Right Ankle"},{"euler":{"heading":64.0625,"pitch":-117.8125,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":192.3125,"pitch":-54.375,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":88.875,"pitch":-136.3125,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:15.535"} +{"sensors":[{"euler":{"heading":299.8125,"pitch":148.75,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":141.75,"pitch":133.4375,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":94.3125,"pitch":118.5625,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":64.6875,"pitch":-118.125,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":33.8125,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":90.375,"pitch":-139.625,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:15.635"} +{"sensors":[{"euler":{"heading":303.75,"pitch":143.375,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":144.5625,"pitch":143.8125,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":109.3125,"pitch":102.625,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":59.25,"pitch":-121.625,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":166.5625,"pitch":65.3125,"roll":74.625},"location":"Right Knee"},{"euler":{"heading":91.6875,"pitch":-144.25,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:15.736"} +{"sensors":[{"euler":{"heading":309.3125,"pitch":137.6875,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":147.9375,"pitch":165.5,"roll":77.875},"location":"Left Ankle"},{"euler":{"heading":106.75,"pitch":102.125,"roll":66.5625},"location":"Right Ankle"},{"euler":{"heading":51.375,"pitch":-125.5625,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":162.5,"pitch":61.875,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":92.875,"pitch":-148.8125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:15.837"} +{"sensors":[{"euler":{"heading":315.25,"pitch":130.3125,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":154.8125,"pitch":-159.875,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":98.5625,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":49.8125,"pitch":-127.75,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":163.0,"pitch":52.125,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":89.75,"pitch":-144.0,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:15.938"} +{"sensors":[{"euler":{"heading":235.5625,"pitch":128.125,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":176.125,"pitch":-128.875,"roll":59.5},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":94.125,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":44.4375,"pitch":-130.8125,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":164.625,"pitch":32.3125,"roll":82.4375},"location":"Right Knee"},{"euler":{"heading":76.75,"pitch":-129.625,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:16.38"} +{"sensors":[{"euler":{"heading":234.0625,"pitch":132.25,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":172.8125,"pitch":-132.6875,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":87.6875,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":43.0625,"pitch":-131.0,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":167.3125,"pitch":1.75,"roll":86.125},"location":"Right Knee"},{"euler":{"heading":70.0,"pitch":-123.125,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:16.139"} +{"sensors":[{"euler":{"heading":303.375,"pitch":145.0625,"roll":48.375},"location":"Left Knee"},{"euler":{"heading":153.0,"pitch":-160.3125,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":81.5625,"roll":82.625},"location":"Right Ankle"},{"euler":{"heading":40.875,"pitch":-131.5,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":168.25,"pitch":-0.625,"roll":86.875},"location":"Right Knee"},{"euler":{"heading":67.0,"pitch":-122.0,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:16.240"} +{"sensors":[{"euler":{"heading":276.0,"pitch":165.3125,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":123.75,"pitch":135.5625,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":4.25,"roll":85.25},"location":"Right Ankle"},{"euler":{"heading":39.25,"pitch":-132.8125,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":171.0625,"pitch":-3.8125,"roll":85.3125},"location":"Right Knee"},{"euler":{"heading":66.3125,"pitch":-123.125,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:16.341"} +{"sensors":[{"euler":{"heading":262.6875,"pitch":-177.25,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":107.1875,"pitch":114.125,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":76.5625,"pitch":0.6875,"roll":87.3125},"location":"Right Ankle"},{"euler":{"heading":38.5625,"pitch":-135.4375,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":176.9375,"pitch":-76.5,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":71.8125,"pitch":-126.625,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:16.442"} +{"sensors":[{"euler":{"heading":266.5,"pitch":-178.375,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":114.1875,"pitch":117.1875,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":72.75,"pitch":-4.6875,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":39.5625,"pitch":-139.0625,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":185.4375,"pitch":-82.1875,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-129.6875,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:16.542"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":173.0,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":123.1875,"pitch":121.4375,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":66.6875,"pitch":-78.0,"roll":75.125},"location":"Right Ankle"},{"euler":{"heading":40.5625,"pitch":-139.3125,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":196.0,"pitch":-86.8125,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":83.4375,"pitch":-131.25,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:16.643"} +{"sensors":[{"euler":{"heading":286.75,"pitch":165.0,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":130.625,"pitch":123.375,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":58.75,"pitch":-86.625,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":49.25,"pitch":-134.0625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":206.5,"pitch":-85.25,"roll":62.4375},"location":"Right Knee"},{"euler":{"heading":86.6875,"pitch":-132.5,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:16.743"} +{"sensors":[{"euler":{"heading":290.1875,"pitch":158.25,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":135.1875,"pitch":126.1875,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":-92.5,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":57.8125,"pitch":-124.5625,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":210.5,"pitch":-77.125,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":87.6875,"pitch":-135.1875,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:16.844"} +{"sensors":[{"euler":{"heading":295.375,"pitch":152.875,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":137.5625,"pitch":128.75,"roll":74.5},"location":"Left Ankle"},{"euler":{"heading":72.75,"pitch":-110.125,"roll":79.0625},"location":"Right Ankle"},{"euler":{"heading":64.0,"pitch":-118.9375,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":197.125,"pitch":-61.875,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":90.125,"pitch":-137.1875,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:16.945"} +{"sensors":[{"euler":{"heading":300.0625,"pitch":148.3125,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":140.9375,"pitch":132.875,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":120.9375,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":65.6875,"pitch":-117.375,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":180.3125,"pitch":26.8125,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":92.5625,"pitch":-140.3125,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:17.45"} +{"sensors":[{"euler":{"heading":304.4375,"pitch":142.9375,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":144.4375,"pitch":144.8125,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":110.8125,"pitch":101.6875,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":60.875,"pitch":-121.0625,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":169.875,"pitch":67.375,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":92.0,"pitch":-142.125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:17.146"} +{"sensors":[{"euler":{"heading":309.3125,"pitch":137.4375,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":148.8125,"pitch":167.8125,"roll":78.0},"location":"Left Ankle"},{"euler":{"heading":109.5625,"pitch":101.5625,"roll":66.125},"location":"Right Ankle"},{"euler":{"heading":54.875,"pitch":-123.375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":65.75,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":92.25,"pitch":-145.75,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:17.247"} +{"sensors":[{"euler":{"heading":316.875,"pitch":130.25,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":155.8125,"pitch":-159.75,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":98.5625,"pitch":101.0,"roll":72.6875},"location":"Right Ankle"},{"euler":{"heading":51.1875,"pitch":-125.9375,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":163.3125,"pitch":52.4375,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":93.0,"pitch":-144.8125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:17.348"} +{"sensors":[{"euler":{"heading":235.9375,"pitch":128.375,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":175.375,"pitch":-129.9375,"roll":60.9375},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":97.5,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":46.125,"pitch":-127.5625,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":163.3125,"pitch":49.75,"roll":80.625},"location":"Right Knee"},{"euler":{"heading":80.875,"pitch":-134.3125,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:17.448"} +{"sensors":[{"euler":{"heading":240.5625,"pitch":129.9375,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":180.5625,"pitch":-126.625,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":89.625,"roll":80.0625},"location":"Right Ankle"},{"euler":{"heading":44.125,"pitch":-128.6875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":164.3125,"pitch":4.0625,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":72.1875,"pitch":-124.75,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:17.549"} +{"sensors":[{"euler":{"heading":221.75,"pitch":142.125,"roll":44.5625},"location":"Left Knee"},{"euler":{"heading":159.75,"pitch":-152.25,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":84.0625,"pitch":82.6875,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":42.125,"pitch":-130.4375,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":168.4375,"pitch":0.3125,"roll":86.6875},"location":"Right Knee"},{"euler":{"heading":66.6875,"pitch":-122.8125,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:17.650"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":162.0,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":128.75,"pitch":145.5625,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":5.6875,"roll":84.0},"location":"Right Ankle"},{"euler":{"heading":40.375,"pitch":-132.875,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":171.8125,"pitch":-2.5625,"roll":86.3125},"location":"Right Knee"},{"euler":{"heading":66.0,"pitch":-123.6875,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:17.751"} +{"sensors":[{"euler":{"heading":264.4375,"pitch":-179.125,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":109.3125,"pitch":116.9375,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":78.3125,"pitch":2.1875,"roll":86.625},"location":"Right Ankle"},{"euler":{"heading":39.9375,"pitch":-135.125,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":-74.375,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":72.1875,"pitch":-127.4375,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:17.851"} +{"sensors":[{"euler":{"heading":266.4375,"pitch":-177.4375,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":114.625,"pitch":118.6875,"roll":57.4375},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":-2.25,"roll":86.6875},"location":"Right Ankle"},{"euler":{"heading":39.4375,"pitch":-140.5625,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":184.5,"pitch":-85.625,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":79.875,"pitch":-131.125,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:17.952"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":173.5625,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":123.0,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":-76.0625,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":40.8125,"pitch":-140.375,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":197.3125,"pitch":-90.0,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":83.4375,"pitch":-132.1875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:18.53"} +{"sensors":[{"euler":{"heading":288.8125,"pitch":165.6875,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":132.25,"pitch":125.6875,"roll":68.0},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-91.125,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":52.375,"pitch":-131.5,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":206.9375,"pitch":-86.8125,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":87.75,"pitch":-133.625,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:18.154"} +{"sensors":[{"euler":{"heading":293.5625,"pitch":159.5,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":138.1875,"pitch":127.5625,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":-96.8125,"roll":73.5},"location":"Right Ankle"},{"euler":{"heading":59.8125,"pitch":-122.8125,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":206.1875,"pitch":-78.625,"roll":66.25},"location":"Right Knee"},{"euler":{"heading":88.875,"pitch":-134.5625,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:18.254"} +{"sensors":[{"euler":{"heading":300.25,"pitch":154.1875,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":140.3125,"pitch":129.25,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":-175.3125,"roll":84.125},"location":"Right Ankle"},{"euler":{"heading":67.25,"pitch":-117.4375,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":194.8125,"pitch":-61.5,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":92.0625,"pitch":-136.5,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:18.354"} +{"sensors":[{"euler":{"heading":305.5,"pitch":148.8125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":142.125,"pitch":134.1875,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":96.75,"pitch":111.625,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":69.25,"pitch":-116.4375,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":180.9375,"pitch":35.9375,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":94.0625,"pitch":-139.625,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:18.455"} +{"sensors":[{"euler":{"heading":309.4375,"pitch":143.0625,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":143.6875,"pitch":145.25,"roll":77.6875},"location":"Left Ankle"},{"euler":{"heading":111.0625,"pitch":100.25,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":63.9375,"pitch":-119.8125,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":170.125,"pitch":68.875,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":94.3125,"pitch":-142.375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:18.556"} +{"sensors":[{"euler":{"heading":315.0625,"pitch":136.3125,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":149.4375,"pitch":165.3125,"roll":78.6875},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":102.25,"roll":66.25},"location":"Right Ankle"},{"euler":{"heading":56.625,"pitch":-123.0,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":65.3125,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-144.5625,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:18.656"} +{"sensors":[{"euler":{"heading":323.4375,"pitch":129.3125,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":154.75,"pitch":-165.375,"roll":75.5625},"location":"Left Ankle"},{"euler":{"heading":98.875,"pitch":99.0,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":52.5625,"pitch":-125.8125,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":164.6875,"pitch":55.5,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":96.375,"pitch":-144.3125,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:18.757"} +{"sensors":[{"euler":{"heading":238.75,"pitch":127.3125,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":168.5,"pitch":-137.1875,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":93.5,"pitch":93.25,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":47.0,"pitch":-128.25,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":165.4375,"pitch":55.1875,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":84.75,"pitch":-136.625,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:18.857"} +{"sensors":[{"euler":{"heading":237.375,"pitch":129.9375,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":169.625,"pitch":-132.1875,"roll":60.9375},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":86.125,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":44.125,"pitch":-131.0625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":3.125,"roll":85.6875},"location":"Right Knee"},{"euler":{"heading":74.5,"pitch":-127.875,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:18.957"} +{"sensors":[{"euler":{"heading":220.5625,"pitch":139.625,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":151.4375,"pitch":-155.5,"roll":68.5625},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":81.25,"roll":80.3125},"location":"Right Ankle"},{"euler":{"heading":42.125,"pitch":-133.1875,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":172.6875,"pitch":-0.1875,"roll":88.0},"location":"Right Knee"},{"euler":{"heading":68.4375,"pitch":-124.125,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:19.58"} +{"sensors":[{"euler":{"heading":282.125,"pitch":158.4375,"roll":54.4375},"location":"Left Knee"},{"euler":{"heading":123.625,"pitch":146.9375,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":86.25,"pitch":74.5,"roll":82.8125},"location":"Right Ankle"},{"euler":{"heading":40.6875,"pitch":-135.5,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":-3.125,"roll":86.5},"location":"Right Knee"},{"euler":{"heading":66.0625,"pitch":-124.375,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:19.159"} +{"sensors":[{"euler":{"heading":264.9375,"pitch":178.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":103.5625,"pitch":117.0625,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":3.0625,"roll":85.625},"location":"Right Ankle"},{"euler":{"heading":40.4375,"pitch":-136.5,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":180.0,"pitch":-86.1875,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":70.625,"pitch":-126.875,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:19.259"} +{"sensors":[{"euler":{"heading":262.5625,"pitch":-175.3125,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":117.0625,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-2.0625,"roll":86.1875},"location":"Right Ankle"},{"euler":{"heading":40.9375,"pitch":-139.8125,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":187.4375,"pitch":-89.0,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-129.625,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:19.360"} +{"sensors":[{"euler":{"heading":276.3125,"pitch":176.0,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":117.5625,"pitch":122.75,"roll":63.625},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-65.0,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":40.4375,"pitch":-141.75,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":196.0,"pitch":-89.4375,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":82.0625,"pitch":-131.0,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:19.460"} +{"sensors":[{"euler":{"heading":284.9375,"pitch":166.5625,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":124.625,"pitch":126.0,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":60.875,"pitch":-80.3125,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":50.3125,"pitch":-135.5625,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":206.375,"pitch":-89.1875,"roll":63.875},"location":"Right Knee"},{"euler":{"heading":84.875,"pitch":-132.125,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:19.561"} +{"sensors":[{"euler":{"heading":290.8125,"pitch":159.0,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":130.9375,"pitch":129.375,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":64.4375,"pitch":-85.3125,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":59.8125,"pitch":-125.625,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":210.8125,"pitch":-83.875,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":87.25,"pitch":-134.3125,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:19.661"} +{"sensors":[{"euler":{"heading":297.125,"pitch":153.9375,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":133.25,"pitch":128.3125,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-92.375,"roll":80.5},"location":"Right Ankle"},{"euler":{"heading":67.25,"pitch":-119.0,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":198.625,"pitch":-67.4375,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":90.875,"pitch":-135.8125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:19.761"} +{"sensors":[{"euler":{"heading":301.0,"pitch":149.0,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":135.4375,"pitch":134.0625,"roll":76.375},"location":"Left Ankle"},{"euler":{"heading":93.375,"pitch":121.125,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":71.0,"pitch":-118.0625,"roll":43.9375},"location":"Right Hip"},{"euler":{"heading":183.375,"pitch":3.6875,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":91.9375,"pitch":-138.375,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:19.862"} +{"sensors":[{"euler":{"heading":304.5,"pitch":143.5625,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":138.125,"pitch":145.875,"roll":77.625},"location":"Left Ankle"},{"euler":{"heading":110.0,"pitch":100.8125,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":68.25,"pitch":-122.3125,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":170.375,"pitch":69.8125,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":91.625,"pitch":-141.0,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:19.964"} +{"sensors":[{"euler":{"heading":308.875,"pitch":137.625,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":141.25,"pitch":167.25,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":112.75,"pitch":98.3125,"roll":64.125},"location":"Right Ankle"},{"euler":{"heading":59.6875,"pitch":-125.1875,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":165.8125,"pitch":73.8125,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":90.5625,"pitch":-143.9375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:20.64"} +{"sensors":[{"euler":{"heading":316.3125,"pitch":131.0625,"roll":48.375},"location":"Left Knee"},{"euler":{"heading":148.0,"pitch":-165.125,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":101.1875,"pitch":98.1875,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":53.875,"pitch":-126.375,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":64.9375,"roll":75.5625},"location":"Right Knee"},{"euler":{"heading":92.125,"pitch":-146.25,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:20.165"} +{"sensors":[{"euler":{"heading":236.9375,"pitch":126.9375,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":164.25,"pitch":-135.0625,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":93.75,"pitch":93.8125,"roll":75.6875},"location":"Right Ankle"},{"euler":{"heading":51.8125,"pitch":-127.5625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":164.625,"pitch":62.4375,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":84.8125,"pitch":-135.5,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:20.267"} +{"sensors":[{"euler":{"heading":242.875,"pitch":126.625,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":173.9375,"pitch":-126.125,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":85.8125,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":47.5625,"pitch":-130.1875,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":167.5,"pitch":4.875,"roll":84.125},"location":"Right Knee"},{"euler":{"heading":76.6875,"pitch":-125.875,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:20.368"} +{"sensors":[{"euler":{"heading":228.0,"pitch":138.0,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":153.1875,"pitch":-148.8125,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":79.6875,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":44.75,"pitch":-131.0,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":169.1875,"pitch":2.3125,"roll":86.6875},"location":"Right Knee"},{"euler":{"heading":70.5,"pitch":-123.0625,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:20.470"} +{"sensors":[{"euler":{"heading":286.0625,"pitch":156.75,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":151.8125,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":73.125,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":43.1875,"pitch":-133.25,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":-0.25,"roll":88.0},"location":"Right Knee"},{"euler":{"heading":68.0,"pitch":-123.375,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:20.571"} +{"sensors":[{"euler":{"heading":266.6875,"pitch":177.9375,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":103.0,"pitch":117.625,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":4.5625,"roll":84.625},"location":"Right Ankle"},{"euler":{"heading":42.0,"pitch":-135.3125,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":175.1875,"pitch":-3.5625,"roll":86.1875},"location":"Right Knee"},{"euler":{"heading":71.625,"pitch":-126.5,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:20.671"} +{"sensors":[{"euler":{"heading":263.5625,"pitch":-174.375,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":116.1875,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":77.4375,"pitch":0.625,"roll":86.375},"location":"Right Ankle"},{"euler":{"heading":41.5,"pitch":-139.0625,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":181.5625,"pitch":-87.25,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":78.5,"pitch":-130.9375,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:20.773"} +{"sensors":[{"euler":{"heading":274.8125,"pitch":177.8125,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":113.875,"pitch":120.875,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":72.1875,"pitch":-54.8125,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":40.6875,"pitch":-141.5,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":191.0,"pitch":-91.875,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":84.0625,"pitch":-132.625,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:20.874"} +{"sensors":[{"euler":{"heading":284.8125,"pitch":168.6875,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":121.1875,"pitch":122.6875,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":63.6875,"pitch":-79.0625,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":49.5625,"pitch":-135.9375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":204.625,"pitch":-90.5625,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":86.0,"pitch":-132.375,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:20.975"} +{"sensors":[{"euler":{"heading":289.625,"pitch":161.625,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":127.4375,"pitch":125.0625,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":63.0,"pitch":-86.1875,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":59.5625,"pitch":-126.6875,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":209.9375,"pitch":-84.25,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":88.125,"pitch":-135.4375,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:21.75"} +{"sensors":[{"euler":{"heading":292.625,"pitch":156.0625,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":127.375,"pitch":127.3125,"roll":72.5},"location":"Left Ankle"},{"euler":{"heading":71.375,"pitch":-90.375,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":65.5625,"pitch":-120.1875,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":195.6875,"pitch":-64.3125,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":89.625,"pitch":-137.5,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:21.176"} +{"sensors":[{"euler":{"heading":296.1875,"pitch":151.25,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":128.8125,"pitch":133.625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":135.625,"roll":83.125},"location":"Right Ankle"},{"euler":{"heading":67.0625,"pitch":-118.375,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":179.3125,"pitch":30.6875,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":90.125,"pitch":-140.0625,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:21.277"} +{"sensors":[{"euler":{"heading":300.6875,"pitch":146.0625,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":132.75,"pitch":142.8125,"roll":76.25},"location":"Left Ankle"},{"euler":{"heading":106.5625,"pitch":101.5,"roll":69.25},"location":"Right Ankle"},{"euler":{"heading":64.8125,"pitch":-120.5625,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":170.0,"pitch":69.875,"roll":74.625},"location":"Right Knee"},{"euler":{"heading":91.5625,"pitch":-143.0,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:21.378"} +{"sensors":[{"euler":{"heading":306.3125,"pitch":139.8125,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":137.0625,"pitch":158.75,"roll":77.125},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":98.125,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":58.9375,"pitch":-123.75,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":166.4375,"pitch":74.5625,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":93.5,"pitch":-147.5,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:21.478"} +{"sensors":[{"euler":{"heading":312.9375,"pitch":133.8125,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":141.75,"pitch":-173.75,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":102.0,"pitch":98.0625,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":53.0625,"pitch":-126.5,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":66.5625,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-149.4375,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:21.580"} +{"sensors":[{"euler":{"heading":232.375,"pitch":129.8125,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":174.8125,"pitch":-138.0,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":93.5,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":50.375,"pitch":-128.625,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":165.4375,"pitch":63.75,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":83.875,"pitch":-136.625,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:21.680"} +{"sensors":[{"euler":{"heading":237.75,"pitch":130.625,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":165.9375,"pitch":-134.3125,"roll":61.125},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":86.0625,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":46.5625,"pitch":-130.6875,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":167.4375,"pitch":5.125,"roll":84.0625},"location":"Right Knee"},{"euler":{"heading":75.875,"pitch":-126.4375,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:21.781"} +{"sensors":[{"euler":{"heading":220.875,"pitch":140.6875,"roll":43.625},"location":"Left Knee"},{"euler":{"heading":146.25,"pitch":-158.3125,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":78.75,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":43.625,"pitch":-131.125,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":2.3125,"roll":86.75},"location":"Right Knee"},{"euler":{"heading":69.6875,"pitch":-123.6875,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:21.881"} +{"sensors":[{"euler":{"heading":283.625,"pitch":157.0,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":119.875,"pitch":148.625,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":84.6875,"pitch":71.5625,"roll":82.5625},"location":"Right Ankle"},{"euler":{"heading":42.4375,"pitch":-133.3125,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":173.375,"pitch":-0.9375,"roll":88.125},"location":"Right Knee"},{"euler":{"heading":67.0,"pitch":-123.9375,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:21.982"} +{"sensors":[{"euler":{"heading":268.9375,"pitch":174.625,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":102.0625,"pitch":118.875,"roll":59.75},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":3.0625,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":41.9375,"pitch":-135.875,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":178.75,"pitch":-5.1875,"roll":84.75},"location":"Right Knee"},{"euler":{"heading":71.0625,"pitch":-126.25,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:22.83"} +{"sensors":[{"euler":{"heading":266.0625,"pitch":-178.125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":103.3125,"pitch":116.5,"roll":57.1875},"location":"Left Ankle"},{"euler":{"heading":78.5625,"pitch":-1.5625,"roll":86.0625},"location":"Right Ankle"},{"euler":{"heading":41.0625,"pitch":-140.625,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":185.9375,"pitch":-92.4375,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":78.8125,"pitch":-130.1875,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:22.184"} +{"sensors":[{"euler":{"heading":279.25,"pitch":173.9375,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":117.125,"pitch":122.9375,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":-59.8125,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":40.3125,"pitch":-142.5625,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":195.6875,"pitch":-92.5625,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":84.5,"pitch":-132.0625,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:22.285"} +{"sensors":[{"euler":{"heading":290.4375,"pitch":165.1875,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":125.6875,"pitch":123.9375,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-79.5,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":51.625,"pitch":-134.0625,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":207.5,"pitch":-91.4375,"roll":65.25},"location":"Right Knee"},{"euler":{"heading":87.875,"pitch":-131.9375,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:22.385"} +{"sensors":[{"euler":{"heading":293.875,"pitch":158.5625,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":129.875,"pitch":126.6875,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":63.8125,"pitch":-86.9375,"roll":65.75},"location":"Right Ankle"},{"euler":{"heading":62.1875,"pitch":-124.875,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":212.1875,"pitch":-84.5,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":89.75,"pitch":-135.6875,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:22.486"} +{"sensors":[{"euler":{"heading":297.875,"pitch":152.9375,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":131.5,"pitch":129.9375,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-92.4375,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":67.375,"pitch":-118.9375,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":196.9375,"pitch":-49.5,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":91.5,"pitch":-138.1875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:22.587"} +{"sensors":[{"euler":{"heading":302.375,"pitch":148.1875,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":134.1875,"pitch":135.4375,"roll":75.875},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":122.5625,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":67.625,"pitch":-117.75,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":180.0,"pitch":37.75,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":93.0,"pitch":-141.3125,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:22.688"} +{"sensors":[{"euler":{"heading":304.9375,"pitch":143.125,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":136.25,"pitch":146.875,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":109.9375,"pitch":100.0,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":62.75,"pitch":-121.375,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":170.5,"pitch":74.8125,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":92.8125,"pitch":-145.625,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:22.789"} +{"sensors":[{"euler":{"heading":311.0,"pitch":137.5,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":140.3125,"pitch":167.9375,"roll":77.9375},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":102.4375,"roll":68.8125},"location":"Right Ankle"},{"euler":{"heading":55.5,"pitch":-124.25,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":68.375,"roll":74.0},"location":"Right Knee"},{"euler":{"heading":94.5625,"pitch":-148.8125,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:22.890"} +{"sensors":[{"euler":{"heading":318.0625,"pitch":131.0625,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":147.3125,"pitch":-157.75,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":99.8125,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":52.0,"pitch":-126.625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":163.625,"pitch":59.3125,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":92.25,"pitch":-145.625,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:22.992"} +{"sensors":[{"euler":{"heading":236.9375,"pitch":128.625,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":169.75,"pitch":-127.6875,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":92.9375,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":46.0,"pitch":-128.375,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":162.125,"pitch":57.6875,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":81.375,"pitch":-134.125,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:23.93"} +{"sensors":[{"euler":{"heading":240.625,"pitch":128.9375,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":171.0625,"pitch":-126.6875,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":80.25,"roll":81.25},"location":"Right Ankle"},{"euler":{"heading":43.8125,"pitch":-129.8125,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":5.5,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":72.8125,"pitch":-125.625,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:23.194"} +{"sensors":[{"euler":{"heading":222.75,"pitch":139.875,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":148.9375,"pitch":-153.0,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":68.75,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":41.1875,"pitch":-131.9375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":1.5625,"roll":87.0},"location":"Right Knee"},{"euler":{"heading":67.1875,"pitch":-123.8125,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:23.295"} +{"sensors":[{"euler":{"heading":283.4375,"pitch":160.1875,"roll":53.625},"location":"Left Knee"},{"euler":{"heading":119.625,"pitch":140.125,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":4.5,"roll":84.4375},"location":"Right Ankle"},{"euler":{"heading":39.8125,"pitch":-134.375,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":172.125,"pitch":-1.8125,"roll":87.5},"location":"Right Knee"},{"euler":{"heading":66.3125,"pitch":-125.125,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:23.396"} +{"sensors":[{"euler":{"heading":266.1875,"pitch":178.5,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":115.25,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":1.25,"roll":85.6875},"location":"Right Ankle"},{"euler":{"heading":39.0625,"pitch":-138.125,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":177.9375,"pitch":-6.0625,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-128.625,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:23.497"} +{"sensors":[{"euler":{"heading":262.1875,"pitch":-176.125,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":117.1875,"roll":57.4375},"location":"Left Ankle"},{"euler":{"heading":73.8125,"pitch":-4.0625,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":38.875,"pitch":-142.75,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":186.875,"pitch":-90.6875,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":79.375,"pitch":-131.4375,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:23.598"} +{"sensors":[{"euler":{"heading":276.6875,"pitch":174.125,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":120.4375,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":67.0625,"pitch":-68.1875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":40.5625,"pitch":-142.5625,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":200.0625,"pitch":-92.6875,"roll":69.9375},"location":"Right Knee"},{"euler":{"heading":83.3125,"pitch":-132.25,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:23.698"} +{"sensors":[{"euler":{"heading":288.6875,"pitch":165.375,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":122.875,"pitch":122.6875,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":58.4375,"pitch":-80.6875,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":53.1875,"pitch":-132.4375,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":207.0625,"pitch":-90.125,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":87.5,"pitch":-133.5,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:23.799"} +{"sensors":[{"euler":{"heading":291.75,"pitch":160.0,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":127.625,"pitch":125.5625,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":63.1875,"pitch":-85.5,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":61.0625,"pitch":-124.0625,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":192.4375,"pitch":-82.625,"roll":67.0625},"location":"Right Knee"},{"euler":{"heading":87.8125,"pitch":-135.5,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:23.900"} +{"sensors":[{"euler":{"heading":296.9375,"pitch":155.125,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":129.9375,"pitch":126.875,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-96.3125,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":65.6875,"pitch":-118.8125,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":194.0,"pitch":-59.75,"roll":80.625},"location":"Right Knee"},{"euler":{"heading":89.5,"pitch":-138.25,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:24.1"} +{"sensors":[{"euler":{"heading":302.6875,"pitch":149.625,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":133.0625,"pitch":133.9375,"roll":75.4375},"location":"Left Ankle"},{"euler":{"heading":93.1875,"pitch":112.625,"roll":79.9375},"location":"Right Ankle"},{"euler":{"heading":65.9375,"pitch":-118.25,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":179.1875,"pitch":56.875,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":91.375,"pitch":-140.9375,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:24.102"} +{"sensors":[{"euler":{"heading":307.75,"pitch":143.4375,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":147.5625,"roll":77.0625},"location":"Left Ankle"},{"euler":{"heading":109.375,"pitch":97.875,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":61.875,"pitch":-121.75,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":170.5625,"pitch":78.125,"roll":74.0},"location":"Right Knee"},{"euler":{"heading":92.5,"pitch":-143.1875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:24.203"} +{"sensors":[{"euler":{"heading":314.6875,"pitch":136.8125,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":141.4375,"pitch":172.8125,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":103.875,"pitch":100.125,"roll":70.25},"location":"Right Ankle"},{"euler":{"heading":55.875,"pitch":-124.625,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":166.375,"pitch":70.1875,"roll":74.625},"location":"Right Knee"},{"euler":{"heading":93.5625,"pitch":-145.4375,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:24.303"} +{"sensors":[{"euler":{"heading":231.5,"pitch":130.5625,"roll":44.25},"location":"Left Knee"},{"euler":{"heading":152.5,"pitch":-150.5,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":94.9375,"pitch":96.4375,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":54.1875,"pitch":-125.4375,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":165.375,"pitch":62.625,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":89.0,"pitch":-139.5,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:24.404"} +{"sensors":[{"euler":{"heading":239.25,"pitch":129.5625,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":166.0,"pitch":-131.625,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":89.0625,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":48.1875,"pitch":-129.5625,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":167.6875,"pitch":63.9375,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":76.625,"pitch":-128.75,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:24.504"} +{"sensors":[{"euler":{"heading":228.8125,"pitch":136.875,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":154.6875,"pitch":-145.4375,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":80.875,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":45.6875,"pitch":-130.875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":170.4375,"pitch":3.8125,"roll":85.375},"location":"Right Knee"},{"euler":{"heading":70.75,"pitch":-124.9375,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:24.605"} +{"sensors":[{"euler":{"heading":292.9375,"pitch":151.75,"roll":50.0625},"location":"Left Knee"},{"euler":{"heading":130.5,"pitch":168.4375,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":75.125,"roll":82.5625},"location":"Right Ankle"},{"euler":{"heading":43.375,"pitch":-132.5,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":172.75,"pitch":1.0,"roll":88.0625},"location":"Right Knee"},{"euler":{"heading":66.3125,"pitch":-124.125,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:24.706"} +{"sensors":[{"euler":{"heading":270.125,"pitch":171.0625,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":105.6875,"pitch":125.5625,"roll":62.4375},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":4.25,"roll":85.125},"location":"Right Ankle"},{"euler":{"heading":40.8125,"pitch":-134.6875,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-2.5625,"roll":87.0625},"location":"Right Knee"},{"euler":{"heading":65.9375,"pitch":-124.9375,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:24.806"} +{"sensors":[{"euler":{"heading":259.25,"pitch":-173.875,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":112.625,"roll":53.4375},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":0.3125,"roll":85.625},"location":"Right Ankle"},{"euler":{"heading":40.0625,"pitch":-138.8125,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":181.75,"pitch":-91.25,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":73.25,"pitch":-129.125,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:24.907"} +{"sensors":[{"euler":{"heading":262.875,"pitch":-173.6875,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":115.125,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":74.9375,"pitch":-51.0625,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":39.6875,"pitch":-144.3125,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":190.4375,"pitch":-94.0,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":80.0625,"pitch":-132.0625,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:25.8"} +{"sensors":[{"euler":{"heading":278.0625,"pitch":176.125,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":111.0,"pitch":119.125,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":67.4375,"pitch":-72.375,"roll":73.9375},"location":"Right Ankle"},{"euler":{"heading":41.1875,"pitch":-142.6875,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":200.9375,"pitch":-94.125,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":82.1875,"pitch":-132.375,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:25.108"} +{"sensors":[{"euler":{"heading":285.1875,"pitch":168.25,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":118.0625,"pitch":122.8125,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":57.8125,"pitch":-83.5625,"roll":48.125},"location":"Right Ankle"},{"euler":{"heading":51.625,"pitch":-133.125,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":207.25,"pitch":-91.1875,"roll":63.75},"location":"Right Knee"},{"euler":{"heading":85.625,"pitch":-134.25,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:25.209"} +{"sensors":[{"euler":{"heading":289.75,"pitch":161.6875,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":123.1875,"pitch":123.9375,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":60.9375,"pitch":-87.9375,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":59.9375,"pitch":-123.5,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":205.9375,"pitch":-82.6875,"roll":68.3125},"location":"Right Knee"},{"euler":{"heading":86.8125,"pitch":-135.375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:25.309"} +{"sensors":[{"euler":{"heading":294.875,"pitch":156.0625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":126.6875,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":72.875,"pitch":-97.6875,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":65.6875,"pitch":-118.6875,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":191.8125,"pitch":-53.1875,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":88.8125,"pitch":-137.8125,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:25.410"} +{"sensors":[{"euler":{"heading":300.9375,"pitch":150.5625,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":129.75,"pitch":133.3125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":94.1875,"pitch":111.0625,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":67.125,"pitch":-117.75,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":177.25,"pitch":58.75,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":91.3125,"pitch":-140.125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:25.511"} +{"sensors":[{"euler":{"heading":306.1875,"pitch":144.625,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":133.625,"pitch":143.125,"roll":75.75},"location":"Left Ankle"},{"euler":{"heading":109.5625,"pitch":99.5625,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":62.875,"pitch":-121.3125,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":168.375,"pitch":76.4375,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":92.875,"pitch":-143.4375,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:25.612"} +{"sensors":[{"euler":{"heading":311.0,"pitch":138.9375,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":137.5625,"pitch":162.1875,"roll":76.1875},"location":"Left Ankle"},{"euler":{"heading":106.875,"pitch":100.4375,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":55.625,"pitch":-124.875,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":72.625,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":93.8125,"pitch":-148.25,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:25.713"} +{"sensors":[{"euler":{"heading":317.25,"pitch":132.75,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":143.6875,"pitch":-169.375,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":97.0,"pitch":97.625,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":51.3125,"pitch":-127.1875,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":164.0625,"pitch":63.5625,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":93.8125,"pitch":-148.0625,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:25.814"} +{"sensors":[{"euler":{"heading":235.5,"pitch":130.0,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":164.0,"pitch":-134.75,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":92.25,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":45.875,"pitch":-129.0625,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":62.0,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":81.0,"pitch":-135.75,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:25.915"} +{"sensors":[{"euler":{"heading":236.9375,"pitch":132.125,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":164.1875,"pitch":-135.125,"roll":60.4375},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":83.1875,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":44.125,"pitch":-130.5,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":166.375,"pitch":5.625,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":72.5,"pitch":-126.3125,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:26.16"} +{"sensors":[{"euler":{"heading":218.375,"pitch":143.625,"roll":44.9375},"location":"Left Knee"},{"euler":{"heading":143.4375,"pitch":-165.9375,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":81.4375,"pitch":6.4375,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":42.125,"pitch":-132.0,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":167.5625,"pitch":3.0,"roll":85.6875},"location":"Right Knee"},{"euler":{"heading":68.625,"pitch":-123.5,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:26.117"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":163.6875,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":115.125,"pitch":135.9375,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":3.625,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":41.0625,"pitch":-133.875,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":170.4375,"pitch":-0.125,"roll":87.5},"location":"Right Knee"},{"euler":{"heading":67.6875,"pitch":-124.0,"roll":46.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:26.217"} +{"sensors":[{"euler":{"heading":264.25,"pitch":-177.3125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":97.0625,"pitch":113.875,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":0.25,"roll":86.0},"location":"Right Ankle"},{"euler":{"heading":40.6875,"pitch":-137.1875,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-4.0625,"roll":85.875},"location":"Right Knee"},{"euler":{"heading":73.3125,"pitch":-128.375,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:26.318"} +{"sensors":[{"euler":{"heading":265.1875,"pitch":-177.1875,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":103.1875,"pitch":116.8125,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":71.875,"pitch":-43.9375,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":41.0,"pitch":-142.0,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":184.875,"pitch":-92.9375,"roll":80.3125},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-132.0625,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:26.419"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":173.625,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":114.4375,"pitch":122.3125,"roll":62.625},"location":"Left Ankle"},{"euler":{"heading":65.4375,"pitch":-66.9375,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":40.375,"pitch":-142.75,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":194.375,"pitch":-93.5625,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":84.5,"pitch":-132.625,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:26.520"} +{"sensors":[{"euler":{"heading":289.3125,"pitch":166.0,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":122.375,"pitch":124.9375,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":57.75,"pitch":-80.8125,"roll":63.25},"location":"Right Ankle"},{"euler":{"heading":50.375,"pitch":-137.4375,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":206.0625,"pitch":-93.625,"roll":66.1875},"location":"Right Knee"},{"euler":{"heading":87.375,"pitch":-134.0625,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:26.620"} +{"sensors":[{"euler":{"heading":294.6875,"pitch":159.8125,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":128.875,"pitch":127.0,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":63.5,"pitch":-84.0,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":59.75,"pitch":-127.25,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":206.9375,"pitch":-88.5625,"roll":69.4375},"location":"Right Knee"},{"euler":{"heading":89.8125,"pitch":-135.9375,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:26.721"} +{"sensors":[{"euler":{"heading":298.0625,"pitch":154.6875,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":128.8125,"pitch":127.0625,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-90.625,"roll":80.625},"location":"Right Ankle"},{"euler":{"heading":66.4375,"pitch":-120.75,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":193.8125,"pitch":-60.5,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":92.125,"pitch":-139.3125,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:26.821"} +{"sensors":[{"euler":{"heading":301.5625,"pitch":149.4375,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":131.125,"pitch":134.25,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":112.25,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":66.625,"pitch":-120.0625,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":178.125,"pitch":66.5,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":92.1875,"pitch":-140.9375,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:26.922"} +{"sensors":[{"euler":{"heading":303.5,"pitch":143.875,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":132.25,"pitch":147.1875,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":110.4375,"pitch":98.375,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":62.1875,"pitch":-123.1875,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":167.5625,"pitch":78.5625,"roll":70.6875},"location":"Right Knee"},{"euler":{"heading":90.8125,"pitch":-143.625,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:27.22"} +{"sensors":[{"euler":{"heading":307.9375,"pitch":138.1875,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":136.5,"pitch":166.1875,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":114.6875,"pitch":93.75,"roll":64.5625},"location":"Right Ankle"},{"euler":{"heading":56.125,"pitch":-125.1875,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":83.9375,"roll":68.9375},"location":"Right Knee"},{"euler":{"heading":91.9375,"pitch":-148.5,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:27.123"} +{"sensors":[{"euler":{"heading":314.5,"pitch":132.625,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":142.375,"pitch":-166.125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":101.125,"pitch":95.4375,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":51.0625,"pitch":-127.0625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":162.625,"pitch":73.625,"roll":72.6875},"location":"Right Knee"},{"euler":{"heading":93.9375,"pitch":-152.3125,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:27.224"} +{"sensors":[{"euler":{"heading":236.6875,"pitch":128.0625,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":162.3125,"pitch":-133.3125,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":90.25,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":47.75,"pitch":-128.6875,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":70.375,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":82.8125,"pitch":-139.8125,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:27.325"} +{"sensors":[{"euler":{"heading":239.75,"pitch":130.4375,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":163.375,"pitch":-132.75,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":88.375,"pitch":81.6875,"roll":80.125},"location":"Right Ankle"},{"euler":{"heading":44.875,"pitch":-132.1875,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":69.6875,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":75.25,"pitch":-130.0,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:27.426"} +{"sensors":[{"euler":{"heading":222.375,"pitch":141.5,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":144.5,"pitch":-159.25,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":72.375,"roll":82.5625},"location":"Right Ankle"},{"euler":{"heading":41.8125,"pitch":-133.875,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":170.4375,"pitch":3.8125,"roll":85.75},"location":"Right Knee"},{"euler":{"heading":69.25,"pitch":-125.5625,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:27.527"} +{"sensors":[{"euler":{"heading":283.3125,"pitch":160.75,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":140.75,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":82.1875,"pitch":4.6875,"roll":84.5},"location":"Right Ankle"},{"euler":{"heading":40.6875,"pitch":-136.5,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":173.4375,"pitch":0.875,"roll":88.375},"location":"Right Knee"},{"euler":{"heading":66.8125,"pitch":-125.0625,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:27.628"} +{"sensors":[{"euler":{"heading":266.625,"pitch":-179.875,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":97.5,"pitch":115.25,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":78.75,"pitch":1.625,"roll":85.75},"location":"Right Ankle"},{"euler":{"heading":39.9375,"pitch":-138.4375,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":176.875,"pitch":-2.375,"roll":87.4375},"location":"Right Knee"},{"euler":{"heading":71.1875,"pitch":-127.125,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:27.728"} +{"sensors":[{"euler":{"heading":261.875,"pitch":-172.6875,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":98.125,"pitch":113.625,"roll":54.875},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":-2.9375,"roll":84.625},"location":"Right Ankle"},{"euler":{"heading":40.0625,"pitch":-143.375,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":184.0625,"pitch":-92.25,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":79.1875,"pitch":-130.9375,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:27.829"} +{"sensors":[{"euler":{"heading":275.375,"pitch":179.25,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":110.25,"pitch":120.375,"roll":61.125},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-64.0625,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":39.8125,"pitch":-148.125,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":192.9375,"pitch":-93.875,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":87.3125,"pitch":-134.0625,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:27.930"} +{"sensors":[{"euler":{"heading":287.0625,"pitch":169.5625,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":120.4375,"pitch":120.8125,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":62.25,"pitch":-77.6875,"roll":66.25},"location":"Right Ankle"},{"euler":{"heading":48.5625,"pitch":-139.3125,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":207.5,"pitch":-90.9375,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":87.875,"pitch":-133.625,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:28.31"} +{"sensors":[{"euler":{"heading":292.125,"pitch":162.5,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":125.625,"pitch":124.5,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":62.6875,"pitch":-83.75,"roll":64.1875},"location":"Right Ankle"},{"euler":{"heading":59.8125,"pitch":-125.875,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":213.9375,"pitch":-84.875,"roll":65.1875},"location":"Right Knee"},{"euler":{"heading":90.0625,"pitch":-136.5625,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:28.132"} +{"sensors":[{"euler":{"heading":294.4375,"pitch":157.1875,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":125.4375,"roll":72.625},"location":"Left Ankle"},{"euler":{"heading":72.625,"pitch":-84.4375,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":67.0625,"pitch":-118.8125,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":199.625,"pitch":-72.9375,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":91.4375,"pitch":-139.25,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:28.233"} +{"sensors":[{"euler":{"heading":299.625,"pitch":152.3125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":128.4375,"pitch":128.5625,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":178.125,"roll":86.0625},"location":"Right Ankle"},{"euler":{"heading":69.5,"pitch":-116.25,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":185.0625,"pitch":4.1875,"roll":83.9375},"location":"Right Knee"},{"euler":{"heading":91.6875,"pitch":-140.625,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:28.333"} +{"sensors":[{"euler":{"heading":304.9375,"pitch":146.6875,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":132.4375,"pitch":136.8125,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":106.0,"pitch":102.0,"roll":71.25},"location":"Right Ankle"},{"euler":{"heading":67.25,"pitch":-119.125,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":171.5,"pitch":76.5,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":93.0,"pitch":-143.625,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:28.435"} +{"sensors":[{"euler":{"heading":310.5625,"pitch":139.6875,"roll":54.375},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":155.0,"roll":77.9375},"location":"Left Ankle"},{"euler":{"heading":112.875,"pitch":100.625,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":58.8125,"pitch":-124.6875,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":76.125,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":93.3125,"pitch":-146.375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:28.536"} +{"sensors":[{"euler":{"heading":315.1875,"pitch":133.625,"roll":49.5625},"location":"Left Knee"},{"euler":{"heading":140.0625,"pitch":-177.625,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":106.125,"pitch":99.375,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":51.5,"pitch":-128.5625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":75.0,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":93.9375,"pitch":-150.8125,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:28.637"} +{"sensors":[{"euler":{"heading":233.0,"pitch":128.6875,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":153.0625,"pitch":-141.9375,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":95.75,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":50.5,"pitch":-129.875,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":165.8125,"pitch":69.875,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":90.5,"pitch":-145.1875,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:28.737"} +{"sensors":[{"euler":{"heading":244.75,"pitch":127.1875,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":171.1875,"pitch":-124.3125,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":92.9375,"pitch":88.25,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":46.5625,"pitch":-133.0625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":69.25,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":78.625,"pitch":-132.25,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:28.839"} +{"sensors":[{"euler":{"heading":236.75,"pitch":134.75,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":162.5,"pitch":-133.0,"roll":60.625},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":80.6875,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":44.375,"pitch":-134.3125,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":170.4375,"pitch":4.8125,"roll":84.625},"location":"Right Knee"},{"euler":{"heading":70.125,"pitch":-125.375,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:28.940"} +{"sensors":[{"euler":{"heading":298.125,"pitch":150.9375,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":137.125,"pitch":-176.875,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":5.75,"roll":83.875},"location":"Right Ankle"},{"euler":{"heading":43.9375,"pitch":-136.4375,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":173.0625,"pitch":2.0,"roll":87.125},"location":"Right Knee"},{"euler":{"heading":57.0625,"pitch":-123.75,"roll":44.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:29.40"} +{"sensors":[{"euler":{"heading":272.0625,"pitch":175.125,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":108.25,"pitch":126.8125,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":2.4375,"roll":86.25},"location":"Right Ankle"},{"euler":{"heading":42.625,"pitch":-137.25,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":174.625,"pitch":-1.0625,"roll":87.9375},"location":"Right Knee"},{"euler":{"heading":57.625,"pitch":-125.375,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:29.141"} +{"sensors":[{"euler":{"heading":261.625,"pitch":-172.0,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":94.5625,"pitch":114.0,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-1.75,"roll":85.25},"location":"Right Ankle"},{"euler":{"heading":41.25,"pitch":-140.875,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":179.5,"pitch":-5.6875,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":75.4375,"pitch":-130.0,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:29.242"} +{"sensors":[{"euler":{"heading":272.625,"pitch":-177.875,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":104.9375,"pitch":120.125,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":70.5,"pitch":-66.9375,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":41.0,"pitch":-145.5625,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-91.4375,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":84.0,"pitch":-133.0625,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:29.343"} +{"sensors":[{"euler":{"heading":282.5625,"pitch":174.5625,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":112.5625,"pitch":121.5625,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":62.1875,"pitch":-79.8125,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":45.125,"pitch":-140.25,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":203.5625,"pitch":-90.5,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":83.5625,"pitch":-133.875,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:29.443"} +{"sensors":[{"euler":{"heading":287.375,"pitch":167.9375,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":117.75,"pitch":122.625,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":60.5625,"pitch":-86.9375,"roll":62.4375},"location":"Right Ankle"},{"euler":{"heading":57.25,"pitch":-125.0625,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":212.5,"pitch":-86.3125,"roll":63.625},"location":"Right Knee"},{"euler":{"heading":87.625,"pitch":-137.9375,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:29.544"} +{"sensors":[{"euler":{"heading":290.4375,"pitch":161.3125,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":119.9375,"pitch":123.8125,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":67.8125,"pitch":-85.6875,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":66.0,"pitch":-117.0625,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":203.5,"pitch":-76.4375,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":89.8125,"pitch":-139.75,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:29.645"} +{"sensors":[{"euler":{"heading":295.3125,"pitch":155.25,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":123.5625,"pitch":128.9375,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":-178.0625,"roll":86.9375},"location":"Right Ankle"},{"euler":{"heading":69.375,"pitch":-114.5,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":188.375,"pitch":-1.0,"roll":84.6875},"location":"Right Knee"},{"euler":{"heading":90.5625,"pitch":-141.25,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:29.745"} +{"sensors":[{"euler":{"heading":298.75,"pitch":149.625,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":126.875,"pitch":135.3125,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":104.625,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":68.9375,"pitch":-117.875,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":72.9375,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":92.3125,"pitch":-144.75,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:29.846"} +{"sensors":[{"euler":{"heading":304.25,"pitch":143.625,"roll":54.1875},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":145.5625,"roll":75.4375},"location":"Left Ankle"},{"euler":{"heading":112.5,"pitch":97.75,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":63.5,"pitch":-121.0625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":168.375,"pitch":79.8125,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":93.9375,"pitch":-148.5625,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:29.947"} +{"sensors":[{"euler":{"heading":310.1875,"pitch":137.6875,"roll":50.5625},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":165.8125,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":108.0,"pitch":97.9375,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":54.6875,"pitch":-124.75,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":78.4375,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":94.8125,"pitch":-153.0,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:30.48"} +{"sensors":[{"euler":{"heading":227.6875,"pitch":131.5625,"roll":44.75},"location":"Left Knee"},{"euler":{"heading":144.6875,"pitch":-157.875,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":94.6875,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":52.3125,"pitch":-126.5,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":67.875,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":93.625,"pitch":-150.6875,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:30.150"} +{"sensors":[{"euler":{"heading":242.1875,"pitch":128.1875,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":168.5,"pitch":-128.1875,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":87.4375,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":46.875,"pitch":-130.9375,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":166.25,"pitch":71.9375,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":80.6875,"pitch":-135.4375,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:30.251"} +{"sensors":[{"euler":{"heading":239.375,"pitch":133.9375,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":163.9375,"pitch":-134.25,"roll":61.3125},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":77.1875,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":44.875,"pitch":-131.75,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":168.6875,"pitch":5.8125,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":73.0,"pitch":-127.1875,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:30.352"} +{"sensors":[{"euler":{"heading":300.5625,"pitch":149.0,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":135.8125,"pitch":-175.875,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":84.6875,"pitch":68.9375,"roll":82.8125},"location":"Right Ankle"},{"euler":{"heading":44.5,"pitch":-133.625,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":172.1875,"pitch":2.6875,"roll":87.0625},"location":"Right Knee"},{"euler":{"heading":67.8125,"pitch":-126.0625,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:30.452"} +{"sensors":[{"euler":{"heading":272.75,"pitch":171.3125,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":107.4375,"pitch":127.4375,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":3.625,"roll":85.0625},"location":"Right Ankle"},{"euler":{"heading":43.375,"pitch":-135.375,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-0.6875,"roll":89.0625},"location":"Right Knee"},{"euler":{"heading":68.875,"pitch":-126.625,"roll":45.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:30.553"} +{"sensors":[{"euler":{"heading":262.375,"pitch":-173.1875,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":93.125,"pitch":112.3125,"roll":53.3125},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-0.375,"roll":85.375},"location":"Right Ankle"},{"euler":{"heading":43.4375,"pitch":-138.625,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":182.8125,"pitch":-174.25,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-131.0625,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:30.654"} +{"sensors":[{"euler":{"heading":269.875,"pitch":-176.4375,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":104.0,"pitch":118.5625,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-54.375,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":42.4375,"pitch":-144.625,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":191.6875,"pitch":-93.75,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":85.25,"pitch":-134.3125,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:30.755"} +{"sensors":[{"euler":{"heading":283.4375,"pitch":174.25,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":114.625,"pitch":120.5,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":66.0,"pitch":-71.125,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":323.3125,"pitch":-146.0,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":202.25,"pitch":-92.25,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":87.4375,"pitch":-135.125,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:30.855"} +{"sensors":[{"euler":{"heading":292.5625,"pitch":165.5,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":122.6875,"pitch":123.6875,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":57.3125,"pitch":-80.0,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":332.5625,"pitch":-137.0,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":210.6875,"pitch":-89.625,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":90.875,"pitch":-137.125,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:30.957"} +{"sensors":[{"euler":{"heading":296.625,"pitch":159.6875,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":126.8125,"pitch":125.375,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":61.625,"pitch":-82.1875,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":340.625,"pitch":-124.0625,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":211.3125,"pitch":-81.0,"roll":65.375},"location":"Right Knee"},{"euler":{"heading":92.125,"pitch":-139.5,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:31.57"} +{"sensors":[{"euler":{"heading":302.375,"pitch":154.0,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":129.125,"pitch":128.8125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":74.1875,"pitch":-90.625,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":347.25,"pitch":-116.375,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":196.5,"pitch":-64.0,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":94.125,"pitch":-142.3125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:31.158"} +{"sensors":[{"euler":{"heading":306.625,"pitch":149.3125,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":134.4375,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":103.0625,"roll":79.125},"location":"Right Ankle"},{"euler":{"heading":347.375,"pitch":-115.5625,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":178.25,"pitch":63.5625,"roll":80.3125},"location":"Right Knee"},{"euler":{"heading":94.75,"pitch":-145.6875,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:31.259"} +{"sensors":[{"euler":{"heading":310.375,"pitch":143.625,"roll":54.4375},"location":"Left Knee"},{"euler":{"heading":134.5,"pitch":147.6875,"roll":76.625},"location":"Left Ankle"},{"euler":{"heading":112.0,"pitch":95.25,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":341.25,"pitch":-120.875,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":82.5,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":93.625,"pitch":-146.625,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:31.360"} +{"sensors":[{"euler":{"heading":316.6875,"pitch":137.0625,"roll":51.0},"location":"Left Knee"},{"euler":{"heading":139.125,"pitch":171.6875,"roll":76.625},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":95.875,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":334.3125,"pitch":-124.625,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":165.125,"pitch":75.75,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":95.25,"pitch":-148.75,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:31.461"} +{"sensors":[{"euler":{"heading":234.25,"pitch":130.625,"roll":43.75},"location":"Left Knee"},{"euler":{"heading":150.875,"pitch":-148.6875,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":97.8125,"pitch":91.6875,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":334.3125,"pitch":-125.5,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":168.125,"pitch":72.5,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":89.375,"pitch":-139.75,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:31.562"} +{"sensors":[{"euler":{"heading":238.375,"pitch":129.875,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":158.625,"pitch":-134.0,"roll":62.0},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":82.6875,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":330.1875,"pitch":-128.4375,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":171.3125,"pitch":73.25,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":77.25,"pitch":-130.5,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:31.662"} +{"sensors":[{"euler":{"heading":226.0,"pitch":137.9375,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":144.75,"pitch":-150.875,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":92.8125,"pitch":74.375,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":328.8125,"pitch":-129.9375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":175.25,"pitch":4.1875,"roll":85.75},"location":"Right Knee"},{"euler":{"heading":70.25,"pitch":-127.0,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:31.763"} +{"sensors":[{"euler":{"heading":291.0,"pitch":153.6875,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":123.25,"pitch":156.875,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":69.6875,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":327.5,"pitch":-132.75,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":179.1875,"pitch":1.0625,"roll":88.875},"location":"Right Knee"},{"euler":{"heading":55.3125,"pitch":-125.8125,"roll":44.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:31.864"} +{"sensors":[{"euler":{"heading":272.1875,"pitch":172.9375,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":102.5625,"pitch":123.375,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":87.8125,"pitch":5.0,"roll":84.0625},"location":"Right Ankle"},{"euler":{"heading":325.8125,"pitch":-135.1875,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":182.4375,"pitch":-177.5625,"roll":87.4375},"location":"Right Knee"},{"euler":{"heading":56.5,"pitch":-127.125,"roll":44.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:31.965"} +{"sensors":[{"euler":{"heading":262.875,"pitch":-173.9375,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":93.0,"pitch":112.75,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":0.875,"roll":85.0625},"location":"Right Ankle"},{"euler":{"heading":325.1875,"pitch":-138.75,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":187.875,"pitch":-97.25,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":74.875,"pitch":-130.1875,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:32.66"} +{"sensors":[{"euler":{"heading":270.875,"pitch":-177.3125,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":104.4375,"pitch":119.0,"roll":57.6875},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-4.75,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":323.375,"pitch":-144.75,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":194.8125,"pitch":-92.25,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":82.0625,"pitch":-132.5625,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:32.167"} +{"sensors":[{"euler":{"heading":284.75,"pitch":172.3125,"roll":56.5},"location":"Left Knee"},{"euler":{"heading":114.6875,"pitch":119.625,"roll":64.625},"location":"Left Ankle"},{"euler":{"heading":69.25,"pitch":-70.625,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":327.9375,"pitch":-140.8125,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":204.125,"pitch":-90.0625,"roll":70.0},"location":"Right Knee"},{"euler":{"heading":84.5625,"pitch":-132.5625,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:32.268"} +{"sensors":[{"euler":{"heading":293.0,"pitch":164.3125,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":121.4375,"pitch":121.1875,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":59.25,"pitch":-82.25,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":339.0,"pitch":-126.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":212.0625,"pitch":-86.0625,"roll":62.9375},"location":"Right Knee"},{"euler":{"heading":87.5625,"pitch":-134.9375,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:32.368"} +{"sensors":[{"euler":{"heading":295.5,"pitch":158.4375,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":125.125,"pitch":125.5625,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":64.0,"pitch":-80.0625,"roll":68.0},"location":"Right Ankle"},{"euler":{"heading":346.25,"pitch":-118.8125,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":206.75,"pitch":-79.5625,"roll":69.0},"location":"Right Knee"},{"euler":{"heading":89.25,"pitch":-137.5625,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:32.469"} +{"sensors":[{"euler":{"heading":300.1875,"pitch":153.1875,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":126.5625,"pitch":128.0,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-5.5625,"roll":84.375},"location":"Right Ankle"},{"euler":{"heading":348.8125,"pitch":-114.5,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":191.1875,"pitch":-3.875,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":91.25,"pitch":-140.6875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:32.571"} +{"sensors":[{"euler":{"heading":305.5,"pitch":147.5,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":130.375,"pitch":136.125,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":101.25,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":347.0,"pitch":-115.5625,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":174.875,"pitch":65.375,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":92.3125,"pitch":-143.625,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:32.672"} +{"sensors":[{"euler":{"heading":309.3125,"pitch":141.6875,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":134.0,"pitch":150.625,"roll":77.625},"location":"Left Ankle"},{"euler":{"heading":113.0,"pitch":94.0625,"roll":65.375},"location":"Right Ankle"},{"euler":{"heading":341.8125,"pitch":-122.125,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":166.5625,"pitch":82.0,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":93.5625,"pitch":-147.6875,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:32.773"} +{"sensors":[{"euler":{"heading":314.25,"pitch":136.125,"roll":50.5625},"location":"Left Knee"},{"euler":{"heading":138.0625,"pitch":177.3125,"roll":76.9375},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":95.875,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":335.125,"pitch":-125.1875,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":75.25,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":94.3125,"pitch":-151.8125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:32.874"} +{"sensors":[{"euler":{"heading":230.0,"pitch":130.4375,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":149.625,"pitch":-144.25,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":91.0,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":333.4375,"pitch":-126.5625,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":163.0625,"pitch":69.25,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":85.25,"pitch":-143.5,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:32.975"} +{"sensors":[{"euler":{"heading":244.3125,"pitch":129.4375,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":171.125,"pitch":-123.25,"roll":57.625},"location":"Left Ankle"},{"euler":{"heading":88.0625,"pitch":78.1875,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":328.8125,"pitch":-129.375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":164.125,"pitch":67.9375,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":74.5625,"pitch":-128.9375,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:33.76"} +{"sensors":[{"euler":{"heading":232.1875,"pitch":139.3125,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":159.4375,"pitch":-136.5,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":65.375,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":326.6875,"pitch":-128.9375,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":164.4375,"pitch":63.9375,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":67.1875,"pitch":-123.875,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:33.177"} +{"sensors":[{"euler":{"heading":286.375,"pitch":159.125,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":125.375,"pitch":161.75,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":80.375,"pitch":5.0625,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":325.25,"pitch":-131.0625,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":167.75,"pitch":2.9375,"roll":85.9375},"location":"Right Knee"},{"euler":{"heading":53.6875,"pitch":-123.125,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:33.278"} +{"sensors":[{"euler":{"heading":264.6875,"pitch":-177.875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":98.375,"pitch":118.3125,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":2.0,"roll":85.3125},"location":"Right Ankle"},{"euler":{"heading":325.0625,"pitch":-133.9375,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":173.0,"pitch":-1.1875,"roll":88.4375},"location":"Right Knee"},{"euler":{"heading":66.75,"pitch":-125.25,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:33.379"} +{"sensors":[{"euler":{"heading":262.75,"pitch":-170.4375,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":93.375,"pitch":113.0,"roll":51.1875},"location":"Left Ankle"},{"euler":{"heading":73.625,"pitch":-2.25,"roll":84.3125},"location":"Right Ankle"},{"euler":{"heading":325.5625,"pitch":-136.375,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":179.125,"pitch":-6.0,"roll":83.9375},"location":"Right Knee"},{"euler":{"heading":75.75,"pitch":-130.1875,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:33.479"} +{"sensors":[{"euler":{"heading":274.9375,"pitch":-177.875,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":107.6875,"pitch":120.6875,"roll":57.9375},"location":"Left Ankle"},{"euler":{"heading":69.0,"pitch":-59.8125,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":325.1875,"pitch":-140.3125,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":188.0625,"pitch":-91.75,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":82.375,"pitch":-132.5,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:33.580"} +{"sensors":[{"euler":{"heading":286.9375,"pitch":172.5625,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":115.9375,"pitch":121.8125,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":62.5,"pitch":-75.3125,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":333.125,"pitch":-137.5,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":204.25,"pitch":-92.8125,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":84.6875,"pitch":-132.25,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:33.680"} +{"sensors":[{"euler":{"heading":294.375,"pitch":165.25,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":124.5625,"pitch":124.875,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":59.9375,"pitch":-84.3125,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":343.5,"pitch":-124.4375,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":212.0,"pitch":-83.125,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":87.875,"pitch":-134.3125,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:33.781"} +{"sensors":[{"euler":{"heading":297.0,"pitch":159.3125,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":125.8125,"pitch":127.6875,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":68.625,"pitch":-81.4375,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":351.125,"pitch":-117.4375,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":201.125,"pitch":-73.3125,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":89.875,"pitch":-137.25,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:33.882"} +{"sensors":[{"euler":{"heading":299.625,"pitch":154.0,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":126.6875,"pitch":132.0,"roll":72.75},"location":"Left Ankle"},{"euler":{"heading":81.9375,"pitch":-179.5,"roll":86.8125},"location":"Right Ankle"},{"euler":{"heading":353.0,"pitch":-113.5,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":184.8125,"pitch":35.5,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":89.625,"pitch":-140.3125,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:33.983"} +{"sensors":[{"euler":{"heading":305.0625,"pitch":147.5625,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":130.625,"pitch":139.6875,"roll":75.0625},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":102.25,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":349.625,"pitch":-116.4375,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":171.25,"pitch":74.5,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":91.125,"pitch":-142.1875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:34.84"} +{"sensors":[{"euler":{"heading":310.5625,"pitch":141.375,"roll":54.0},"location":"Left Knee"},{"euler":{"heading":135.0625,"pitch":153.375,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":112.25,"pitch":95.125,"roll":66.125},"location":"Right Ankle"},{"euler":{"heading":343.375,"pitch":-121.6875,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":81.5625,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":92.9375,"pitch":-146.1875,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:34.185"} +{"sensors":[{"euler":{"heading":316.5,"pitch":135.125,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":139.6875,"pitch":-189.3125,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":101.3125,"pitch":96.375,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":336.75,"pitch":-124.9375,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":162.75,"pitch":75.0625,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":94.5,"pitch":-150.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:34.286"} +{"sensors":[{"euler":{"heading":234.4375,"pitch":130.625,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":153.4375,"pitch":-143.75,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":90.0,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":334.3125,"pitch":-126.0,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":162.375,"pitch":70.4375,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":85.125,"pitch":-141.0625,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:34.387"} +{"sensors":[{"euler":{"heading":244.375,"pitch":130.3125,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":169.0,"pitch":-126.9375,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":78.125,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":330.8125,"pitch":-128.1875,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":163.8125,"pitch":69.875,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":75.5,"pitch":-129.6875,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:34.488"} +{"sensors":[{"euler":{"heading":227.75,"pitch":140.25,"roll":42.0},"location":"Left Knee"},{"euler":{"heading":154.4375,"pitch":-159.125,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":65.875,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":327.6875,"pitch":-129.375,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":165.375,"pitch":69.0625,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":68.125,"pitch":-125.75,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:34.588"} +{"sensors":[{"euler":{"heading":286.5,"pitch":159.1875,"roll":52.9375},"location":"Left Knee"},{"euler":{"heading":121.3125,"pitch":147.3125,"roll":70.0625},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":4.6875,"roll":83.75},"location":"Right Ankle"},{"euler":{"heading":326.4375,"pitch":-131.4375,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":3.75,"roll":85.6875},"location":"Right Knee"},{"euler":{"heading":65.6875,"pitch":-125.4375,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:34.689"} +{"sensors":[{"euler":{"heading":264.6875,"pitch":-178.0,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":95.1875,"pitch":114.125,"roll":57.1875},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":1.5625,"roll":84.5625},"location":"Right Ankle"},{"euler":{"heading":325.625,"pitch":-135.125,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":172.5625,"pitch":-0.5625,"roll":89.3125},"location":"Right Knee"},{"euler":{"heading":69.25,"pitch":-127.8125,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:34.790"} +{"sensors":[{"euler":{"heading":260.125,"pitch":-168.3125,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":110.875,"roll":50.9375},"location":"Left Ankle"},{"euler":{"heading":74.25,"pitch":-29.3125,"roll":82.8125},"location":"Right Ankle"},{"euler":{"heading":327.125,"pitch":-139.1875,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":180.8125,"pitch":-174.25,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-132.1875,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:34.891"} +{"sensors":[{"euler":{"heading":274.6875,"pitch":-177.125,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":105.0,"pitch":118.5625,"roll":58.625},"location":"Left Ankle"},{"euler":{"heading":68.5625,"pitch":-56.4375,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":327.125,"pitch":-142.1875,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":191.9375,"pitch":-95.375,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":83.6875,"pitch":-133.9375,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:34.991"} +{"sensors":[{"euler":{"heading":285.625,"pitch":172.125,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":112.875,"pitch":121.8125,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":62.0625,"pitch":-76.5625,"roll":65.375},"location":"Right Ankle"},{"euler":{"heading":335.4375,"pitch":-135.5625,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":206.4375,"pitch":-95.5,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":85.0,"pitch":-134.1875,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:35.93"} +{"sensors":[{"euler":{"heading":291.9375,"pitch":163.9375,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":121.1875,"pitch":125.75,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":57.1875,"pitch":-82.875,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":344.9375,"pitch":-121.3125,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":213.125,"pitch":-85.0,"roll":63.1875},"location":"Right Knee"},{"euler":{"heading":87.8125,"pitch":-136.625,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:35.193"} +{"sensors":[{"euler":{"heading":299.9375,"pitch":157.25,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":126.8125,"pitch":128.5625,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":62.75,"pitch":-84.25,"roll":66.5625},"location":"Right Ankle"},{"euler":{"heading":352.125,"pitch":-114.375,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":203.3125,"pitch":-76.125,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":90.3125,"pitch":-136.125,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:35.294"} +{"sensors":[{"euler":{"heading":305.5,"pitch":151.9375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":130.5,"pitch":133.5625,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-177.8125,"roll":87.5625},"location":"Right Ankle"},{"euler":{"heading":355.125,"pitch":-112.3125,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":187.1875,"pitch":3.125,"roll":86.0},"location":"Right Knee"},{"euler":{"heading":91.1875,"pitch":-138.625,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:35.394"} +{"sensors":[{"euler":{"heading":309.0625,"pitch":146.6875,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":133.0,"pitch":140.5625,"roll":75.9375},"location":"Left Ankle"},{"euler":{"heading":106.1875,"pitch":98.9375,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":351.8125,"pitch":-116.5625,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":172.1875,"pitch":81.1875,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":92.375,"pitch":-142.375,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:35.495"} +{"sensors":[{"euler":{"heading":313.375,"pitch":140.9375,"roll":53.5625},"location":"Left Knee"},{"euler":{"heading":138.0,"pitch":158.75,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":110.9375,"pitch":97.625,"roll":66.25},"location":"Right Ankle"},{"euler":{"heading":343.4375,"pitch":-122.1875,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":165.875,"pitch":76.75,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":92.625,"pitch":-145.75,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:35.596"} +{"sensors":[{"euler":{"heading":320.375,"pitch":134.625,"roll":49.0},"location":"Left Knee"},{"euler":{"heading":142.25,"pitch":-173.0625,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":102.125,"pitch":95.3125,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":337.5,"pitch":-125.5625,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":166.6875,"pitch":74.6875,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":94.625,"pitch":-149.75,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:35.697"} +{"sensors":[{"euler":{"heading":238.25,"pitch":130.6875,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":156.5625,"pitch":-138.25,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":96.25,"pitch":88.1875,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":334.5625,"pitch":-127.6875,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":166.5,"pitch":73.375,"roll":77.25},"location":"Right Knee"},{"euler":{"heading":85.4375,"pitch":-140.1875,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:35.798"} +{"sensors":[{"euler":{"heading":245.0,"pitch":130.3125,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":167.8125,"pitch":-127.4375,"roll":57.1875},"location":"Left Ankle"},{"euler":{"heading":92.4375,"pitch":78.1875,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":331.25,"pitch":-130.375,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":170.0,"pitch":79.1875,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":75.125,"pitch":-128.3125,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:35.898"} +{"sensors":[{"euler":{"heading":230.0625,"pitch":140.5625,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":152.1875,"pitch":-144.375,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":69.6875,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":328.5,"pitch":-130.9375,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":4.8125,"roll":85.0625},"location":"Right Knee"},{"euler":{"heading":67.375,"pitch":-124.5,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:36.0"} +{"sensors":[{"euler":{"heading":286.8125,"pitch":160.625,"roll":52.125},"location":"Left Knee"},{"euler":{"heading":120.9375,"pitch":149.875,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":5.25,"roll":83.6875},"location":"Right Ankle"},{"euler":{"heading":327.1875,"pitch":-132.8125,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":174.0,"pitch":1.875,"roll":88.0},"location":"Right Knee"},{"euler":{"heading":54.625,"pitch":-125.25,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:36.101"} +{"sensors":[{"euler":{"heading":266.0625,"pitch":-178.0,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":96.75,"pitch":116.1875,"roll":56.3125},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":2.3125,"roll":85.125},"location":"Right Ankle"},{"euler":{"heading":325.0625,"pitch":-136.5625,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":-177.875,"roll":87.625},"location":"Right Knee"},{"euler":{"heading":69.1875,"pitch":-128.625,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:36.202"} +{"sensors":[{"euler":{"heading":262.8125,"pitch":-171.875,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":93.8125,"pitch":115.1875,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":79.3125,"pitch":-2.9375,"roll":84.1875},"location":"Right Ankle"},{"euler":{"heading":324.75,"pitch":-141.125,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":186.6875,"pitch":-103.9375,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":77.4375,"pitch":-132.75,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:36.303"} +{"sensors":[{"euler":{"heading":276.625,"pitch":-179.875,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":107.8125,"pitch":122.1875,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-68.125,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":323.5625,"pitch":-144.125,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":196.1875,"pitch":-95.375,"roll":75.5625},"location":"Right Knee"},{"euler":{"heading":83.125,"pitch":-134.375,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:36.404"} +{"sensors":[{"euler":{"heading":288.375,"pitch":171.0,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":118.8125,"pitch":123.125,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":62.1875,"pitch":-79.4375,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":331.75,"pitch":-137.125,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":207.375,"pitch":-92.25,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":85.5625,"pitch":-133.9375,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:36.504"} +{"sensors":[{"euler":{"heading":295.75,"pitch":164.3125,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":126.0625,"pitch":125.1875,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":64.3125,"pitch":-83.625,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":342.75,"pitch":-125.3125,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":213.25,"pitch":-86.375,"roll":66.6875},"location":"Right Knee"},{"euler":{"heading":88.0,"pitch":-136.875,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:36.606"} +{"sensors":[{"euler":{"heading":301.625,"pitch":157.9375,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":128.125,"pitch":127.125,"roll":73.0},"location":"Left Ankle"},{"euler":{"heading":74.375,"pitch":-82.5,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":349.3125,"pitch":-117.8125,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":199.4375,"pitch":-75.6875,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":90.875,"pitch":-139.0625,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:36.707"} +{"sensors":[{"euler":{"heading":306.6875,"pitch":152.5,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":130.5,"pitch":132.3125,"roll":75.0625},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":104.75,"roll":82.5},"location":"Right Ankle"},{"euler":{"heading":349.625,"pitch":-116.8125,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":182.5625,"pitch":6.125,"roll":83.125},"location":"Right Knee"},{"euler":{"heading":90.9375,"pitch":-141.0625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:36.807"} +{"sensors":[{"euler":{"heading":308.6875,"pitch":147.125,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":131.0625,"pitch":141.0625,"roll":76.1875},"location":"Left Ankle"},{"euler":{"heading":109.625,"pitch":93.8125,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":345.6875,"pitch":-119.8125,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":170.25,"pitch":83.9375,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":90.625,"pitch":-145.4375,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:36.908"} +{"sensors":[{"euler":{"heading":312.1875,"pitch":141.375,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":133.625,"pitch":156.8125,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":110.5,"pitch":93.375,"roll":67.3125},"location":"Right Ankle"},{"euler":{"heading":339.3125,"pitch":-123.6875,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":83.1875,"roll":69.75},"location":"Right Knee"},{"euler":{"heading":91.375,"pitch":-149.5,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:37.9"} +{"sensors":[{"euler":{"heading":317.8125,"pitch":135.0625,"roll":47.6875},"location":"Left Knee"},{"euler":{"heading":139.25,"pitch":-171.75,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":100.0,"pitch":89.625,"roll":74.3125},"location":"Right Ankle"},{"euler":{"heading":335.875,"pitch":-125.5,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":164.75,"pitch":76.375,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":90.6875,"pitch":-148.4375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:37.110"} +{"sensors":[{"euler":{"heading":239.8125,"pitch":130.4375,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":161.625,"pitch":-129.9375,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":94.3125,"pitch":81.3125,"roll":77.875},"location":"Right Ankle"},{"euler":{"heading":331.125,"pitch":-127.875,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":78.3125,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":76.6875,"pitch":-133.375,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:37.211"} +{"sensors":[{"euler":{"heading":237.8125,"pitch":134.0625,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":159.9375,"pitch":-134.8125,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":92.3125,"pitch":73.25,"roll":79.9375},"location":"Right Ankle"},{"euler":{"heading":329.9375,"pitch":-130.5,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":170.5625,"pitch":83.3125,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":69.4375,"pitch":-126.625,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:37.311"} +{"sensors":[{"euler":{"heading":306.6875,"pitch":147.3125,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":139.0,"pitch":-172.375,"roll":72.625},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":65.375,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":328.875,"pitch":-131.4375,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":173.3125,"pitch":4.375,"roll":85.5625},"location":"Right Knee"},{"euler":{"heading":67.375,"pitch":-125.6875,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:37.412"} +{"sensors":[{"euler":{"heading":277.8125,"pitch":169.125,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":108.625,"pitch":128.9375,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":4.25,"roll":84.25},"location":"Right Ankle"},{"euler":{"heading":327.25,"pitch":-133.875,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":0.875,"roll":89.0625},"location":"Right Knee"},{"euler":{"heading":67.9375,"pitch":-127.5625,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:37.512"} +{"sensors":[{"euler":{"heading":262.5,"pitch":-172.9375,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":89.5,"pitch":110.8125,"roll":53.125},"location":"Left Ankle"},{"euler":{"heading":81.1875,"pitch":-16.0,"roll":85.1875},"location":"Right Ankle"},{"euler":{"heading":326.375,"pitch":-137.3125,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":182.125,"pitch":-175.875,"roll":85.875},"location":"Right Knee"},{"euler":{"heading":74.1875,"pitch":-131.0625,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:37.614"} +{"sensors":[{"euler":{"heading":267.5,"pitch":-173.625,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":97.375,"pitch":116.375,"roll":54.4375},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":-51.375,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":325.0,"pitch":-144.0,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":190.8125,"pitch":-97.5,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":81.1875,"pitch":-134.0,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:37.714"} +{"sensors":[{"euler":{"heading":283.5,"pitch":175.5,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":109.1875,"pitch":121.0625,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":-69.0625,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":327.5625,"pitch":-143.4375,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":204.375,"pitch":-93.625,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":85.25,"pitch":-135.1875,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:37.815"} +{"sensors":[{"euler":{"heading":294.6875,"pitch":166.5625,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":121.0625,"pitch":122.0,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":62.5625,"pitch":-83.0,"roll":62.5},"location":"Right Ankle"},{"euler":{"heading":339.5625,"pitch":-131.125,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":214.125,"pitch":-86.75,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":90.125,"pitch":-136.625,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:37.915"} +{"sensors":[{"euler":{"heading":300.5,"pitch":159.8125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":126.6875,"pitch":124.4375,"roll":72.1875},"location":"Left Ankle"},{"euler":{"heading":69.3125,"pitch":-84.8125,"roll":69.125},"location":"Right Ankle"},{"euler":{"heading":348.625,"pitch":-119.75,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":210.3125,"pitch":-83.0,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":91.875,"pitch":-138.25,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:38.16"} +{"sensors":[{"euler":{"heading":306.4375,"pitch":153.5,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":128.9375,"pitch":128.0,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-174.75,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":356.8125,"pitch":-117.6875,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":193.4375,"pitch":-2.6875,"roll":85.875},"location":"Right Knee"},{"euler":{"heading":93.0,"pitch":-140.5,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:38.117"} +{"sensors":[{"euler":{"heading":309.875,"pitch":148.1875,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":130.3125,"pitch":133.125,"roll":75.6875},"location":"Left Ankle"},{"euler":{"heading":98.9375,"pitch":100.1875,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":357.25,"pitch":-121.5,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":75.9375,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":93.3125,"pitch":-143.5,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:38.218"} +{"sensors":[{"euler":{"heading":313.125,"pitch":142.4375,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":132.4375,"pitch":145.75,"roll":77.0625},"location":"Left Ankle"},{"euler":{"heading":114.0,"pitch":94.6875,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":345.375,"pitch":-124.125,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":166.8125,"pitch":83.3125,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":92.5625,"pitch":-147.0625,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:38.319"} +{"sensors":[{"euler":{"heading":318.6875,"pitch":136.0625,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":171.75,"roll":76.75},"location":"Left Ankle"},{"euler":{"heading":103.875,"pitch":96.875,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":336.5,"pitch":-127.1875,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":164.0625,"pitch":75.5,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":94.625,"pitch":-150.625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:38.420"} +{"sensors":[{"euler":{"heading":235.8125,"pitch":131.4375,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":148.0,"pitch":-150.3125,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":95.5625,"pitch":90.5,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":332.8125,"pitch":-129.125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":164.125,"pitch":71.5,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":85.75,"pitch":-143.8125,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:38.521"} +{"sensors":[{"euler":{"heading":244.4375,"pitch":130.625,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":163.125,"pitch":-131.125,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":79.5,"roll":79.1875},"location":"Right Ankle"},{"euler":{"heading":326.625,"pitch":-133.5,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":71.3125,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":76.375,"pitch":-132.1875,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:38.622"} +{"sensors":[{"euler":{"heading":228.375,"pitch":140.125,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":146.4375,"pitch":-151.75,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":68.25,"roll":81.5},"location":"Right Ankle"},{"euler":{"heading":324.5,"pitch":-135.4375,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":168.8125,"pitch":6.125,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":69.875,"pitch":-128.125,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:38.723"} +{"sensors":[{"euler":{"heading":290.8125,"pitch":159.625,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":119.4375,"pitch":153.1875,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":4.8125,"roll":83.8125},"location":"Right Ankle"},{"euler":{"heading":323.875,"pitch":-137.75,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":2.6875,"roll":87.125},"location":"Right Knee"},{"euler":{"heading":67.1875,"pitch":-127.0625,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:38.823"} +{"sensors":[{"euler":{"heading":268.8125,"pitch":-179.0625,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":94.9375,"pitch":116.125,"roll":56.3125},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":1.25,"roll":85.1875},"location":"Right Ankle"},{"euler":{"heading":322.6875,"pitch":-140.0,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":-178.625,"roll":88.625},"location":"Right Knee"},{"euler":{"heading":69.625,"pitch":-129.625,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:38.924"} +{"sensors":[{"euler":{"heading":261.1875,"pitch":-170.8125,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":88.8125,"pitch":111.75,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-31.625,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":323.0,"pitch":-144.0625,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":183.625,"pitch":-99.8125,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":76.625,"pitch":-133.3125,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:39.25"} +{"sensors":[{"euler":{"heading":275.4375,"pitch":-179.4375,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":102.125,"pitch":118.5,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":68.625,"pitch":-61.5,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":321.5,"pitch":-147.625,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":192.8125,"pitch":-95.75,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":81.375,"pitch":-134.4375,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:39.126"} +{"sensors":[{"euler":{"heading":285.0625,"pitch":170.5,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":111.6875,"pitch":120.4375,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-76.5625,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":329.875,"pitch":-139.8125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":205.3125,"pitch":-92.1875,"roll":68.1875},"location":"Right Knee"},{"euler":{"heading":82.0625,"pitch":-135.5625,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:39.227"} +{"sensors":[{"euler":{"heading":291.875,"pitch":162.875,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":118.5,"pitch":125.0625,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":61.3125,"pitch":-83.125,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":339.125,"pitch":-125.0625,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":211.4375,"pitch":-84.8125,"roll":66.25},"location":"Right Knee"},{"euler":{"heading":85.9375,"pitch":-138.0,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:39.328"} +{"sensors":[{"euler":{"heading":298.125,"pitch":157.0,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":122.25,"pitch":126.375,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":70.0625,"pitch":-86.375,"roll":74.375},"location":"Right Ankle"},{"euler":{"heading":345.1875,"pitch":-117.6875,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":198.0,"pitch":-66.375,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":87.5625,"pitch":-139.3125,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:39.428"} +{"sensors":[{"euler":{"heading":305.4375,"pitch":151.375,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":126.6875,"pitch":130.6875,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":111.4375,"roll":84.1875},"location":"Right Ankle"},{"euler":{"heading":346.9375,"pitch":-114.875,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":179.3125,"pitch":55.0625,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":89.9375,"pitch":-142.3125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:39.529"} +{"sensors":[{"euler":{"heading":309.625,"pitch":145.5,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":130.375,"pitch":141.3125,"roll":76.25},"location":"Left Ankle"},{"euler":{"heading":109.4375,"pitch":95.0625,"roll":68.5},"location":"Right Ankle"},{"euler":{"heading":345.5,"pitch":-117.375,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":169.1875,"pitch":74.8125,"roll":69.3125},"location":"Right Knee"},{"euler":{"heading":91.3125,"pitch":-145.625,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:39.630"} +{"sensors":[{"euler":{"heading":314.75,"pitch":139.4375,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":133.9375,"pitch":160.0,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":112.375,"pitch":93.75,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":339.4375,"pitch":-120.5625,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":73.1875,"roll":67.6875},"location":"Right Knee"},{"euler":{"heading":92.75,"pitch":-150.1875,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:39.731"} +{"sensors":[{"euler":{"heading":321.9375,"pitch":132.5,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":140.4375,"pitch":-166.625,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":101.25,"pitch":90.8125,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":336.25,"pitch":-123.1875,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":66.0625,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":91.875,"pitch":-147.3125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:39.831"} +{"sensors":[{"euler":{"heading":242.4375,"pitch":129.125,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":161.375,"pitch":-132.125,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":83.6875,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":331.625,"pitch":-125.875,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":166.3125,"pitch":63.1875,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":79.0625,"pitch":-133.0625,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:39.932"} +{"sensors":[{"euler":{"heading":236.4375,"pitch":135.5,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":154.25,"pitch":-136.75,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":92.125,"pitch":74.3125,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":329.375,"pitch":-127.75,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":168.8125,"pitch":61.0625,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":71.6875,"pitch":-127.625,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:40.32"} +{"sensors":[{"euler":{"heading":300.1875,"pitch":151.0625,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":127.6875,"pitch":169.4375,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":62.875,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":328.0625,"pitch":-130.5625,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":173.25,"pitch":4.4375,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":67.1875,"pitch":-126.6875,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:40.133"} +{"sensors":[{"euler":{"heading":275.8125,"pitch":174.25,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":120.75,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":85.8125,"pitch":3.125,"roll":84.25},"location":"Right Ankle"},{"euler":{"heading":328.6875,"pitch":-133.6875,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":0.5625,"roll":87.75},"location":"Right Knee"},{"euler":{"heading":68.5625,"pitch":-128.3125,"roll":45.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:40.234"} +{"sensors":[{"euler":{"heading":264.4375,"pitch":-171.1875,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":89.5,"pitch":109.5625,"roll":52.3125},"location":"Left Ankle"},{"euler":{"heading":81.5625,"pitch":-1.75,"roll":84.4375},"location":"Right Ankle"},{"euler":{"heading":328.625,"pitch":-137.5625,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":185.4375,"pitch":-4.9375,"roll":84.875},"location":"Right Knee"},{"euler":{"heading":75.125,"pitch":-132.0,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:40.334"} +{"sensors":[{"euler":{"heading":272.1875,"pitch":-177.1875,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":99.9375,"pitch":114.8125,"roll":57.5},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":-52.4375,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":328.4375,"pitch":-141.625,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":195.0,"pitch":-86.25,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":80.1875,"pitch":-133.25,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:40.435"} +{"sensors":[{"euler":{"heading":282.75,"pitch":173.375,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":107.875,"pitch":118.0625,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":69.9375,"pitch":-74.75,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":334.75,"pitch":-138.1875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":210.1875,"pitch":-89.375,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":77.5625,"pitch":-132.4375,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:40.536"} +{"sensors":[{"euler":{"heading":286.9375,"pitch":165.875,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":112.0625,"pitch":120.5,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":69.875,"pitch":-82.5625,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":342.75,"pitch":-125.25,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":213.4375,"pitch":-86.6875,"roll":67.0625},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-135.1875,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:40.637"} +{"sensors":[{"euler":{"heading":290.0,"pitch":160.1875,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":115.4375,"pitch":124.8125,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":80.0625,"pitch":-71.3125,"roll":81.9375},"location":"Right Ankle"},{"euler":{"heading":347.625,"pitch":-118.0,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":197.5,"pitch":-70.75,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":82.0,"pitch":-137.1875,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:40.738"} +{"sensors":[{"euler":{"heading":294.25,"pitch":154.6875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":117.8125,"pitch":129.75,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":174.3125,"roll":84.0625},"location":"Right Ankle"},{"euler":{"heading":349.375,"pitch":-115.375,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":180.4375,"pitch":50.3125,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":82.75,"pitch":-139.8125,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:40.839"} +{"sensors":[{"euler":{"heading":300.375,"pitch":149.25,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":122.25,"pitch":136.375,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":97.8125,"roll":70.125},"location":"Right Ankle"},{"euler":{"heading":346.5625,"pitch":-116.625,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":168.6875,"pitch":70.5,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":84.8125,"pitch":-142.625,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:40.940"} +{"sensors":[{"euler":{"heading":305.4375,"pitch":143.0625,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":149.6875,"roll":76.5},"location":"Left Ankle"},{"euler":{"heading":113.8125,"pitch":91.625,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":341.4375,"pitch":-119.5625,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":165.6875,"pitch":77.0625,"roll":67.875},"location":"Right Knee"},{"euler":{"heading":86.4375,"pitch":-146.75,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:41.41"} +{"sensors":[{"euler":{"heading":311.9375,"pitch":136.625,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":131.6875,"pitch":-179.3125,"roll":75.75},"location":"Left Ankle"},{"euler":{"heading":103.1875,"pitch":92.4375,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":335.5,"pitch":-122.5625,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":163.6875,"pitch":68.5625,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":89.125,"pitch":-150.8125,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:41.141"} +{"sensors":[{"euler":{"heading":235.5625,"pitch":129.125,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":151.5625,"pitch":-138.0,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":86.1875,"roll":75.8125},"location":"Right Ankle"},{"euler":{"heading":333.3125,"pitch":-123.875,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":63.0,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-139.1875,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:41.242"} +{"sensors":[{"euler":{"heading":243.75,"pitch":130.0625,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":159.375,"pitch":-133.0625,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":74.4375,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":329.5625,"pitch":-126.9375,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":166.8125,"pitch":61.6875,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":73.1875,"pitch":-129.8125,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:41.343"} +{"sensors":[{"euler":{"heading":228.75,"pitch":140.625,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":-152.8125,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":88.0625,"pitch":62.875,"roll":80.625},"location":"Right Ankle"},{"euler":{"heading":327.5625,"pitch":-128.25,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":170.5625,"pitch":4.6875,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":67.25,"pitch":-127.375,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:41.444"} +{"sensors":[{"euler":{"heading":272.375,"pitch":159.625,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":110.9375,"pitch":136.75,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":45.0,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":327.3125,"pitch":-131.75,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":1.0625,"roll":87.8125},"location":"Right Knee"},{"euler":{"heading":51.5625,"pitch":-127.1875,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:41.545"} +{"sensors":[{"euler":{"heading":268.9375,"pitch":179.5625,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":114.1875,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":2.1875,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":326.5625,"pitch":-134.8125,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":181.125,"pitch":-2.875,"roll":86.9375},"location":"Right Knee"},{"euler":{"heading":53.5625,"pitch":-128.6875,"roll":44.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:41.646"} +{"sensors":[{"euler":{"heading":262.75,"pitch":-171.125,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":110.6875,"roll":53.125},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":-21.4375,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":326.0625,"pitch":-140.5,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":187.9375,"pitch":-90.875,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":74.0625,"pitch":-132.6875,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:41.747"} +{"sensors":[{"euler":{"heading":274.6875,"pitch":-178.4375,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":102.3125,"pitch":118.4375,"roll":60.25},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":-48.25,"roll":79.125},"location":"Right Ankle"},{"euler":{"heading":324.375,"pitch":-144.4375,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":197.3125,"pitch":-90.625,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-134.0625,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:41.848"} +{"sensors":[{"euler":{"heading":286.625,"pitch":171.125,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":112.6875,"pitch":119.375,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":66.125,"pitch":-70.625,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":332.5,"pitch":-135.1875,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":207.0625,"pitch":-87.375,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-134.0625,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:41.949"} +{"sensors":[{"euler":{"heading":294.0625,"pitch":164.125,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":121.25,"pitch":122.5,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":68.75,"pitch":-73.0,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":338.9375,"pitch":-123.75,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":207.5,"pitch":-84.9375,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":84.3125,"pitch":-135.75,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:42.50"} +{"sensors":[{"euler":{"heading":299.625,"pitch":158.125,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":123.5,"pitch":124.625,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":-3.0,"roll":85.5},"location":"Right Ankle"},{"euler":{"heading":346.8125,"pitch":-117.75,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":196.5625,"pitch":-68.9375,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":87.625,"pitch":-139.375,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:42.151"} +{"sensors":[{"euler":{"heading":305.25,"pitch":152.1875,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":126.25,"pitch":129.9375,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":95.6875,"pitch":95.0,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":348.75,"pitch":-117.625,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":180.6875,"pitch":70.25,"roll":82.125},"location":"Right Knee"},{"euler":{"heading":88.625,"pitch":-142.8125,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:42.251"} +{"sensors":[{"euler":{"heading":308.75,"pitch":146.5,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":128.9375,"pitch":140.125,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":111.5,"pitch":93.5,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":342.75,"pitch":-122.1875,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":167.6875,"pitch":81.4375,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":88.875,"pitch":-147.0625,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:42.352"} +{"sensors":[{"euler":{"heading":315.0625,"pitch":139.625,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":132.0,"pitch":161.4375,"roll":76.875},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":92.4375,"roll":66.4375},"location":"Right Ankle"},{"euler":{"heading":337.5,"pitch":-124.5625,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":164.9375,"pitch":78.625,"roll":69.4375},"location":"Right Knee"},{"euler":{"heading":90.75,"pitch":-150.9375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:42.453"} +{"sensors":[{"euler":{"heading":323.9375,"pitch":132.3125,"roll":45.1875},"location":"Left Knee"},{"euler":{"heading":141.875,"pitch":-161.3125,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":100.5,"pitch":88.4375,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":337.0625,"pitch":-124.6875,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":165.75,"pitch":73.9375,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":90.3125,"pitch":-147.5,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:42.554"} +{"sensors":[{"euler":{"heading":243.4375,"pitch":129.625,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":157.75,"pitch":-136.25,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":97.1875,"pitch":79.9375,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":332.25,"pitch":-128.75,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":170.0,"pitch":79.6875,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-136.1875,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:42.655"} +{"sensors":[{"euler":{"heading":235.25,"pitch":136.4375,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":149.25,"pitch":-158.625,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":70.875,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":330.3125,"pitch":-131.375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":174.125,"pitch":88.6875,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":71.8125,"pitch":-130.9375,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:42.755"} +{"sensors":[{"euler":{"heading":301.0,"pitch":150.75,"roll":48.5625},"location":"Left Knee"},{"euler":{"heading":126.875,"pitch":161.375,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":61.3125,"roll":80.1875},"location":"Right Ankle"},{"euler":{"heading":328.125,"pitch":-135.125,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":177.5,"pitch":176.0,"roll":85.875},"location":"Right Knee"},{"euler":{"heading":66.0625,"pitch":-129.0,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:42.856"} +{"sensors":[{"euler":{"heading":275.75,"pitch":171.125,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":123.4375,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":45.125,"roll":82.5},"location":"Right Ankle"},{"euler":{"heading":326.0625,"pitch":-138.8125,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":180.0625,"pitch":179.375,"roll":87.875},"location":"Right Knee"},{"euler":{"heading":52.875,"pitch":-129.3125,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:42.957"} +{"sensors":[{"euler":{"heading":262.75,"pitch":-172.25,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":88.875,"pitch":110.875,"roll":52.3125},"location":"Left Ankle"},{"euler":{"heading":85.8125,"pitch":1.0,"roll":84.125},"location":"Right Ankle"},{"euler":{"heading":325.375,"pitch":-142.6875,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":186.5,"pitch":-175.8125,"roll":85.0625},"location":"Right Knee"},{"euler":{"heading":53.625,"pitch":-131.8125,"roll":44.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:43.58"} +{"sensors":[{"euler":{"heading":265.125,"pitch":-170.6875,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":93.375,"pitch":113.375,"roll":53.0625},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":-42.1875,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":323.75,"pitch":-147.875,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":193.6875,"pitch":-105.25,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":76.375,"pitch":-133.4375,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:43.160"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":178.375,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":106.75,"pitch":118.125,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-66.1875,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":322.9375,"pitch":-149.8125,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":203.125,"pitch":-97.1875,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":79.3125,"pitch":-133.9375,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:43.260"} +{"sensors":[{"euler":{"heading":291.5,"pitch":168.5,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":116.0,"pitch":119.5625,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":57.8125,"pitch":-76.875,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":333.5625,"pitch":-138.3125,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":209.8125,"pitch":-93.375,"roll":64.5},"location":"Right Knee"},{"euler":{"heading":84.3125,"pitch":-135.4375,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:43.361"} +{"sensors":[{"euler":{"heading":296.375,"pitch":161.1875,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":123.0625,"pitch":123.375,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":59.125,"pitch":-84.75,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":341.1875,"pitch":-124.875,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":211.0625,"pitch":-81.125,"roll":66.0},"location":"Right Knee"},{"euler":{"heading":85.3125,"pitch":-137.4375,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:43.462"} +{"sensors":[{"euler":{"heading":302.5,"pitch":155.25,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":125.625,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":-79.8125,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":346.375,"pitch":-117.5,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":194.5625,"pitch":-58.875,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":88.0,"pitch":-139.5,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:43.563"} +{"sensors":[{"euler":{"heading":306.625,"pitch":149.8125,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":128.875,"pitch":130.75,"roll":75.75},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":104.1875,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":348.4375,"pitch":-115.625,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":62.5625,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":89.3125,"pitch":-143.3125,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:43.664"} +{"sensors":[{"euler":{"heading":309.6875,"pitch":144.0,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":132.25,"pitch":145.75,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":112.3125,"pitch":93.375,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":343.0,"pitch":-121.0,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":83.8125,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":89.625,"pitch":-147.125,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:43.764"} +{"sensors":[{"euler":{"heading":314.4375,"pitch":137.25,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":173.3125,"roll":79.0},"location":"Left Ankle"},{"euler":{"heading":112.75,"pitch":91.25,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":320.0625,"pitch":-123.625,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":162.625,"pitch":84.5625,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":91.4375,"pitch":-152.4375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:43.866"} +{"sensors":[{"euler":{"heading":232.0625,"pitch":132.0,"roll":44.5},"location":"Left Knee"},{"euler":{"heading":144.25,"pitch":-149.5,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":98.875,"pitch":87.5625,"roll":72.75},"location":"Right Ankle"},{"euler":{"heading":334.1875,"pitch":-124.5,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":162.125,"pitch":76.625,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":92.125,"pitch":-152.8125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:43.967"} +{"sensors":[{"euler":{"heading":242.6875,"pitch":129.125,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":164.9375,"pitch":-122.9375,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":91.5625,"pitch":80.875,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":328.625,"pitch":-127.875,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":163.6875,"pitch":79.0,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-139.5,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:44.67"} +{"sensors":[{"euler":{"heading":238.5,"pitch":133.875,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":157.9375,"pitch":-131.4375,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":72.0625,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":326.75,"pitch":-130.375,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":167.4375,"pitch":84.3125,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":71.75,"pitch":-130.6875,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:44.168"} +{"sensors":[{"euler":{"heading":301.125,"pitch":148.1875,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":131.8125,"pitch":-178.75,"roll":72.9375},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":57.1875,"roll":81.25},"location":"Right Ankle"},{"euler":{"heading":325.0625,"pitch":-133.6875,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":171.5,"pitch":174.75,"roll":84.6875},"location":"Right Knee"},{"euler":{"heading":65.8125,"pitch":-128.4375,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:44.269"} +{"sensors":[{"euler":{"heading":276.5,"pitch":168.8125,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":106.0625,"pitch":126.375,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":35.25,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":323.5,"pitch":-136.8125,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":174.9375,"pitch":178.0,"roll":87.5},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-128.625,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:44.370"} +{"sensors":[{"euler":{"heading":265.0,"pitch":-175.1875,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":111.75,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-1.8125,"roll":83.0625},"location":"Right Ankle"},{"euler":{"heading":323.0,"pitch":-140.75,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":181.0625,"pitch":-177.3125,"roll":86.125},"location":"Right Knee"},{"euler":{"heading":70.8125,"pitch":-132.0,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:44.471"} +{"sensors":[{"euler":{"heading":269.5625,"pitch":-175.5,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":118.0,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":-37.25,"roll":79.125},"location":"Right Ankle"},{"euler":{"heading":322.8125,"pitch":-145.75,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":188.625,"pitch":-111.5,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":77.1875,"pitch":-134.625,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:44.571"} +{"sensors":[{"euler":{"heading":284.9375,"pitch":174.25,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":113.125,"pitch":122.0,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":66.0625,"pitch":-64.4375,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":323.375,"pitch":-144.4375,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":198.5,"pitch":-104.1875,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-135.25,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:44.672"} +{"sensors":[{"euler":{"heading":296.1875,"pitch":164.625,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":123.625,"pitch":125.0,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":-75.6875,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":335.3125,"pitch":-133.5,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":209.4375,"pitch":-100.75,"roll":65.5625},"location":"Right Knee"},{"euler":{"heading":85.6875,"pitch":-137.375,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:44.773"} +{"sensors":[{"euler":{"heading":301.375,"pitch":158.375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":129.5625,"pitch":130.5,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":64.25,"pitch":-78.375,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":343.0,"pitch":-123.125,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":205.9375,"pitch":-85.625,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":88.4375,"pitch":-140.375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:44.874"} +{"sensors":[{"euler":{"heading":306.8125,"pitch":152.6875,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":135.3125,"roll":75.0},"location":"Left Ankle"},{"euler":{"heading":80.0625,"pitch":-6.125,"roll":83.6875},"location":"Right Ankle"},{"euler":{"heading":347.3125,"pitch":-116.5625,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":190.4375,"pitch":-1.4375,"roll":86.0625},"location":"Right Knee"},{"euler":{"heading":91.25,"pitch":-143.6875,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:44.975"} +{"sensors":[{"euler":{"heading":312.0,"pitch":147.25,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":134.5,"pitch":143.5625,"roll":76.9375},"location":"Left Ankle"},{"euler":{"heading":99.875,"pitch":96.625,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":344.75,"pitch":-119.1875,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":172.9375,"pitch":74.0,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":91.9375,"pitch":-147.3125,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:45.75"} +{"sensors":[{"euler":{"heading":316.0,"pitch":141.6875,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":159.0,"roll":78.25},"location":"Left Ankle"},{"euler":{"heading":113.0,"pitch":93.6875,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":338.0,"pitch":-124.9375,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":164.5625,"pitch":81.5,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":93.1875,"pitch":-151.75,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:45.176"} +{"sensors":[{"euler":{"heading":321.0,"pitch":135.5,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":141.5625,"pitch":-170.0,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":102.5,"pitch":95.4375,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":333.1875,"pitch":-126.75,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":162.4375,"pitch":74.25,"roll":69.4375},"location":"Right Knee"},{"euler":{"heading":94.6875,"pitch":-153.625,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:45.277"} +{"sensors":[{"euler":{"heading":238.75,"pitch":129.9375,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":155.0,"pitch":-135.0625,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":92.3125,"pitch":91.625,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":329.4375,"pitch":-127.5625,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":69.3125,"roll":74.0},"location":"Right Knee"},{"euler":{"heading":85.5,"pitch":-143.25,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:45.378"} +{"sensors":[{"euler":{"heading":245.625,"pitch":129.25,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":165.3125,"pitch":-124.0625,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":73.875,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":324.875,"pitch":-130.1875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":67.8125,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":73.0625,"pitch":-131.25,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:45.479"} +{"sensors":[{"euler":{"heading":226.875,"pitch":139.0625,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":148.0,"pitch":-138.4375,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":83.5625,"pitch":66.5,"roll":82.125},"location":"Right Ankle"},{"euler":{"heading":322.9375,"pitch":-133.5625,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":167.9375,"pitch":6.25,"roll":82.9375},"location":"Right Knee"},{"euler":{"heading":65.375,"pitch":-128.25,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:45.579"} +{"sensors":[{"euler":{"heading":288.0625,"pitch":158.25,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":114.25,"pitch":143.1875,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":4.3125,"roll":83.5},"location":"Right Ankle"},{"euler":{"heading":321.625,"pitch":-137.9375,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":171.9375,"pitch":2.6875,"roll":86.5},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-128.5625,"roll":44.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:45.681"} +{"sensors":[{"euler":{"heading":269.125,"pitch":-177.875,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":93.0,"pitch":114.625,"roll":55.9375},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":0.1875,"roll":84.1875},"location":"Right Ankle"},{"euler":{"heading":322.0625,"pitch":-141.9375,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":177.4375,"pitch":-178.1875,"roll":88.625},"location":"Right Knee"},{"euler":{"heading":69.5,"pitch":-132.125,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:45.782"} +{"sensors":[{"euler":{"heading":264.5,"pitch":-171.8125,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":115.125,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-42.0625,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":321.625,"pitch":-147.5625,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":187.25,"pitch":-97.625,"roll":81.4375},"location":"Right Knee"},{"euler":{"heading":76.875,"pitch":-135.4375,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:45.882"} +{"sensors":[{"euler":{"heading":279.75,"pitch":177.375,"roll":54.875},"location":"Left Knee"},{"euler":{"heading":109.4375,"pitch":121.5,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":67.5625,"pitch":-65.5625,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":321.4375,"pitch":-147.8125,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":197.6875,"pitch":-96.375,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":78.4375,"pitch":-134.5625,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:45.983"} +{"sensors":[{"euler":{"heading":290.0,"pitch":168.25,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":116.75,"pitch":125.0,"roll":67.3125},"location":"Left Ankle"},{"euler":{"heading":60.625,"pitch":-78.3125,"roll":60.8125},"location":"Right Ankle"},{"euler":{"heading":333.9375,"pitch":-135.3125,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":209.1875,"pitch":-95.1875,"roll":64.5625},"location":"Right Knee"},{"euler":{"heading":82.9375,"pitch":-137.9375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:46.84"} +{"sensors":[{"euler":{"heading":293.4375,"pitch":161.375,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":123.125,"pitch":132.125,"roll":71.75},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":-80.3125,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":342.9375,"pitch":-122.875,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":207.0,"pitch":-80.75,"roll":69.25},"location":"Right Knee"},{"euler":{"heading":83.375,"pitch":-140.0,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:46.185"} +{"sensors":[{"euler":{"heading":298.8125,"pitch":156.0,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":134.9375,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-84.6875,"roll":83.0},"location":"Right Ankle"},{"euler":{"heading":347.1875,"pitch":-116.625,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":189.5625,"pitch":-3.5625,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":85.8125,"pitch":-142.6875,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:46.285"} +{"sensors":[{"euler":{"heading":305.8125,"pitch":150.25,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":130.25,"pitch":141.9375,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":97.1875,"pitch":102.625,"roll":75.4375},"location":"Right Ankle"},{"euler":{"heading":348.8125,"pitch":-117.0,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":67.9375,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":87.5625,"pitch":-145.1875,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:46.387"} +{"sensors":[{"euler":{"heading":311.0,"pitch":144.1875,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":134.375,"pitch":156.5625,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":115.4375,"pitch":95.0625,"roll":61.4375},"location":"Right Ankle"},{"euler":{"heading":343.9375,"pitch":-121.375,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":163.375,"pitch":80.0625,"roll":66.25},"location":"Right Knee"},{"euler":{"heading":89.125,"pitch":-149.125,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:46.487"} +{"sensors":[{"euler":{"heading":316.375,"pitch":138.0625,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":138.5625,"pitch":-177.9375,"roll":78.0},"location":"Left Ankle"},{"euler":{"heading":115.8125,"pitch":93.0625,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":338.3125,"pitch":-123.875,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":162.625,"pitch":79.8125,"roll":66.25},"location":"Right Knee"},{"euler":{"heading":91.3125,"pitch":-154.75,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:46.588"} +{"sensors":[{"euler":{"heading":234.3125,"pitch":131.75,"roll":43.8125},"location":"Left Knee"},{"euler":{"heading":147.25,"pitch":-145.3125,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":91.875,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":333.875,"pitch":-125.5,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":73.6875,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":92.6875,"pitch":-154.9375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:46.689"} +{"sensors":[{"euler":{"heading":246.9375,"pitch":127.9375,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":168.9375,"pitch":-120.75,"roll":57.375},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":85.75,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":331.0625,"pitch":-127.375,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":164.5625,"pitch":75.75,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":79.375,"pitch":-139.9375,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:46.789"} +{"sensors":[{"euler":{"heading":245.4375,"pitch":132.5625,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":165.875,"pitch":-124.625,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":76.3125,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":327.375,"pitch":-129.4375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":77.75,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":70.5,"pitch":-129.75,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:46.890"} +{"sensors":[{"euler":{"heading":219.4375,"pitch":145.8125,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":137.5625,"pitch":-161.0625,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":67.3125,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":325.75,"pitch":-132.4375,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":172.0625,"pitch":4.6875,"roll":85.1875},"location":"Right Knee"},{"euler":{"heading":63.1875,"pitch":-126.9375,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:46.991"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":169.625,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":108.625,"pitch":135.0625,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":84.0,"pitch":52.3125,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":324.0625,"pitch":-134.375,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":175.25,"pitch":178.4375,"roll":88.4375},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-127.375,"roll":43.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:47.92"} +{"sensors":[{"euler":{"heading":265.3125,"pitch":-174.5,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":114.5625,"roll":53.4375},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":2.0,"roll":84.25},"location":"Right Ankle"},{"euler":{"heading":323.875,"pitch":-138.0,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":181.1875,"pitch":-176.9375,"roll":86.5},"location":"Right Knee"},{"euler":{"heading":52.4375,"pitch":-130.9375,"roll":44.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:47.193"} +{"sensors":[{"euler":{"heading":263.8125,"pitch":-171.5625,"roll":53.0625},"location":"Left Knee"},{"euler":{"heading":94.25,"pitch":115.75,"roll":52.9375},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-27.75,"roll":82.9375},"location":"Right Ankle"},{"euler":{"heading":322.3125,"pitch":-144.375,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":188.625,"pitch":-103.0,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":75.625,"pitch":-133.9375,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:47.293"} +{"sensors":[{"euler":{"heading":281.375,"pitch":178.4375,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":109.375,"pitch":123.3125,"roll":60.9375},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":-55.0,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":319.4375,"pitch":-150.75,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":197.4375,"pitch":-98.75,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":82.125,"pitch":-136.1875,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:47.395"} +{"sensors":[{"euler":{"heading":296.4375,"pitch":167.0625,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":122.875,"pitch":127.5,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":-74.6875,"roll":65.75},"location":"Right Ankle"},{"euler":{"heading":329.1875,"pitch":-141.75,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":210.625,"pitch":-95.375,"roll":66.25},"location":"Right Knee"},{"euler":{"heading":84.625,"pitch":-135.0,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:47.495"} +{"sensors":[{"euler":{"heading":303.0625,"pitch":160.3125,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":129.25,"pitch":131.4375,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":-82.375,"roll":57.125},"location":"Right Ankle"},{"euler":{"heading":338.625,"pitch":-126.625,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":217.25,"pitch":-88.375,"roll":60.5},"location":"Right Knee"},{"euler":{"heading":87.625,"pitch":-138.875,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:47.596"} +{"sensors":[{"euler":{"heading":307.9375,"pitch":155.0,"roll":56.5},"location":"Left Knee"},{"euler":{"heading":131.6875,"pitch":134.0625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":65.625,"pitch":-83.375,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":347.5,"pitch":-118.625,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":207.625,"pitch":-79.1875,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":90.875,"pitch":-142.25,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:47.698"} +{"sensors":[{"euler":{"heading":312.0625,"pitch":149.6875,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":134.3125,"pitch":139.8125,"roll":75.75},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":-178.625,"roll":88.5625},"location":"Right Ankle"},{"euler":{"heading":348.0625,"pitch":-115.0,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":188.125,"pitch":2.3125,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":91.8125,"pitch":-145.4375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:47.798"} +{"sensors":[{"euler":{"heading":314.8125,"pitch":144.625,"roll":53.375},"location":"Left Knee"},{"euler":{"heading":135.5,"pitch":149.875,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":105.125,"pitch":97.4375,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":344.8125,"pitch":-119.0625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":170.6875,"pitch":77.5,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":91.5,"pitch":-150.0625,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:47.899"} +{"sensors":[{"euler":{"heading":318.5625,"pitch":138.5,"roll":51.125},"location":"Left Knee"},{"euler":{"heading":138.5625,"pitch":171.5625,"roll":78.5},"location":"Left Ankle"},{"euler":{"heading":116.1875,"pitch":91.4375,"roll":62.0625},"location":"Right Ankle"},{"euler":{"heading":336.875,"pitch":-123.3125,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":163.4375,"pitch":84.375,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":93.3125,"pitch":-154.25,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:48.0"} +{"sensors":[{"euler":{"heading":326.1875,"pitch":131.0,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":-152.125,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":106.125,"pitch":88.875,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":333.5625,"pitch":-125.3125,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":164.75,"pitch":81.0,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":94.6875,"pitch":-153.25,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:48.100"} +{"sensors":[{"euler":{"heading":245.875,"pitch":128.1875,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":164.875,"pitch":-125.125,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":84.625,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":331.625,"pitch":-126.5,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":79.8125,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":85.5625,"pitch":-142.5625,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:48.201"} +{"sensors":[{"euler":{"heading":252.4375,"pitch":129.0625,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":172.0625,"pitch":-121.5625,"roll":54.9375},"location":"Left Ankle"},{"euler":{"heading":91.8125,"pitch":75.8125,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":328.625,"pitch":-128.9375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":166.6875,"pitch":81.1875,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":77.1875,"pitch":-131.875,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:48.302"} +{"sensors":[{"euler":{"heading":234.25,"pitch":139.125,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":151.0625,"pitch":-145.25,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":66.3125,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":325.625,"pitch":-130.5625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":6.625,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":68.9375,"pitch":-128.0625,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:48.403"} +{"sensors":[{"euler":{"heading":291.9375,"pitch":157.75,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":118.875,"pitch":148.25,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":53.5625,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":323.6875,"pitch":-132.5,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":171.9375,"pitch":3.375,"roll":86.5625},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-128.4375,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:48.504"} +{"sensors":[{"euler":{"heading":269.3125,"pitch":-179.1875,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":91.875,"pitch":115.1875,"roll":55.875},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":2.8125,"roll":83.8125},"location":"Right Ankle"},{"euler":{"heading":324.25,"pitch":-137.1875,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":178.25,"pitch":-178.75,"roll":87.75},"location":"Right Knee"},{"euler":{"heading":52.8125,"pitch":-131.3125,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:48.605"} +{"sensors":[{"euler":{"heading":262.5625,"pitch":-170.25,"roll":54.0625},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":111.4375,"roll":51.625},"location":"Left Ankle"},{"euler":{"heading":77.625,"pitch":-18.3125,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":324.0625,"pitch":-141.875,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":186.6875,"pitch":-114.9375,"roll":82.4375},"location":"Right Knee"},{"euler":{"heading":75.9375,"pitch":-134.4375,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:48.705"} +{"sensors":[{"euler":{"heading":275.375,"pitch":-177.6875,"roll":54.875},"location":"Left Knee"},{"euler":{"heading":102.0625,"pitch":116.5625,"roll":58.75},"location":"Left Ankle"},{"euler":{"heading":72.6875,"pitch":-53.4375,"roll":75.8125},"location":"Right Ankle"},{"euler":{"heading":322.875,"pitch":-146.375,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":198.625,"pitch":-104.75,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":81.75,"pitch":-136.25,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:48.806"} +{"sensors":[{"euler":{"heading":287.0,"pitch":172.3125,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":112.375,"pitch":119.875,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":64.0625,"pitch":-75.5,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":330.3125,"pitch":-137.75,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":209.8125,"pitch":-93.3125,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-135.125,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:48.906"} +{"sensors":[{"euler":{"heading":295.1875,"pitch":164.9375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":120.5625,"pitch":121.8125,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":60.25,"pitch":-81.0625,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":340.0,"pitch":-123.6875,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":214.4375,"pitch":-86.75,"roll":64.4375},"location":"Right Knee"},{"euler":{"heading":84.75,"pitch":-137.625,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:49.7"} +{"sensors":[{"euler":{"heading":301.6875,"pitch":158.75,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":123.8125,"pitch":124.0625,"roll":72.375},"location":"Left Ankle"},{"euler":{"heading":70.25,"pitch":-77.875,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":346.6875,"pitch":-117.0,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":200.0625,"pitch":-76.5625,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":87.9375,"pitch":-139.1875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:49.107"} +{"sensors":[{"euler":{"heading":305.375,"pitch":153.25,"roll":56.375},"location":"Left Knee"},{"euler":{"heading":126.0,"pitch":128.375,"roll":74.5},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":173.9375,"roll":83.6875},"location":"Right Ankle"},{"euler":{"heading":346.875,"pitch":-114.25,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":181.875,"pitch":64.4375,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":88.8125,"pitch":-142.625,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:49.207"} +{"sensors":[{"euler":{"heading":309.5,"pitch":147.5625,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":129.5,"pitch":137.3125,"roll":76.625},"location":"Left Ankle"},{"euler":{"heading":111.625,"pitch":93.75,"roll":49.0},"location":"Right Ankle"},{"euler":{"heading":344.375,"pitch":-118.625,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":82.25,"roll":67.6875},"location":"Right Knee"},{"euler":{"heading":89.5,"pitch":-145.4375,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:49.308"} +{"sensors":[{"euler":{"heading":314.875,"pitch":141.1875,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":133.875,"pitch":157.0625,"roll":78.0625},"location":"Left Ankle"},{"euler":{"heading":117.0,"pitch":91.9375,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":338.625,"pitch":-122.25,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":82.9375,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":90.125,"pitch":-148.4375,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:49.409"} +{"sensors":[{"euler":{"heading":320.375,"pitch":135.125,"roll":47.875},"location":"Left Knee"},{"euler":{"heading":139.5,"pitch":-168.875,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":92.0,"roll":68.125},"location":"Right Ankle"},{"euler":{"heading":332.4375,"pitch":-124.9375,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":160.1875,"pitch":78.6875,"roll":68.375},"location":"Right Knee"},{"euler":{"heading":91.125,"pitch":-151.3125,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:49.509"} +{"sensors":[{"euler":{"heading":239.0,"pitch":130.6875,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":156.1875,"pitch":-133.125,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":88.5,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":331.3125,"pitch":-125.625,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":162.625,"pitch":76.625,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":85.0,"pitch":-128.3125,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:49.610"} +{"sensors":[{"euler":{"heading":253.0,"pitch":128.75,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":171.5,"pitch":-118.8125,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":80.6875,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":327.5625,"pitch":-129.3125,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":165.875,"pitch":79.0625,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":75.5625,"pitch":-130.5625,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:49.711"} +{"sensors":[{"euler":{"heading":237.1875,"pitch":138.375,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":153.0,"pitch":-138.75,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":73.0625,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":325.0625,"pitch":-130.0625,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":168.5625,"pitch":81.8125,"roll":82.4375},"location":"Right Knee"},{"euler":{"heading":67.25,"pitch":-126.5625,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:49.811"} +{"sensors":[{"euler":{"heading":293.3125,"pitch":155.5625,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":120.125,"pitch":157.5,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":84.0,"pitch":59.625,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":323.3125,"pitch":-132.25,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":171.5,"pitch":4.25,"roll":85.6875},"location":"Right Knee"},{"euler":{"heading":51.5,"pitch":-127.3125,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:49.912"} +{"sensors":[{"euler":{"heading":269.9375,"pitch":177.75,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":93.3125,"pitch":116.5,"roll":57.9375},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":3.8125,"roll":83.625},"location":"Right Ankle"},{"euler":{"heading":323.3125,"pitch":-134.75,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":179.75,"roll":88.875},"location":"Right Knee"},{"euler":{"heading":67.5,"pitch":-130.4375,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:50.13"} +{"sensors":[{"euler":{"heading":265.0625,"pitch":-172.3125,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":113.3125,"roll":52.125},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":-8.625,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":322.9375,"pitch":-138.9375,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":183.6875,"pitch":-175.3125,"roll":84.9375},"location":"Right Knee"},{"euler":{"heading":75.0,"pitch":-133.8125,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:50.113"} +{"sensors":[{"euler":{"heading":277.0625,"pitch":-178.8125,"roll":54.375},"location":"Left Knee"},{"euler":{"heading":103.8125,"pitch":119.0,"roll":58.9375},"location":"Left Ankle"},{"euler":{"heading":72.4375,"pitch":-49.75,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":322.3125,"pitch":-142.125,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":194.0625,"pitch":-102.6875,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":79.3125,"pitch":-135.5,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:50.213"} +{"sensors":[{"euler":{"heading":288.75,"pitch":171.25,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":111.6875,"pitch":122.9375,"roll":64.0625},"location":"Left Ankle"},{"euler":{"heading":64.125,"pitch":-73.625,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":330.0625,"pitch":-135.8125,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":204.4375,"pitch":-97.875,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":81.5,"pitch":-136.3125,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:50.314"} +{"sensors":[{"euler":{"heading":297.375,"pitch":163.8125,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":121.0625,"pitch":124.375,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":64.6875,"pitch":-79.25,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":338.375,"pitch":-123.6875,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":207.5625,"pitch":-84.0625,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":85.8125,"pitch":-138.9375,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:50.415"} +{"sensors":[{"euler":{"heading":304.75,"pitch":157.5625,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":124.5,"pitch":126.125,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":75.0625,"pitch":-72.375,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":345.9375,"pitch":-117.25,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":195.875,"pitch":-72.1875,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":90.5625,"pitch":-142.125,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:50.516"} +{"sensors":[{"euler":{"heading":311.375,"pitch":151.375,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":128.25,"pitch":132.5,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":96.875,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":349.75,"pitch":-113.6875,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":181.0,"pitch":73.25,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":93.1875,"pitch":-145.5625,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:50.617"} +{"sensors":[{"euler":{"heading":315.4375,"pitch":145.1875,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":132.125,"pitch":145.1875,"roll":76.625},"location":"Left Ankle"},{"euler":{"heading":111.6875,"pitch":94.375,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":345.3125,"pitch":-118.6875,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":165.75,"pitch":81.875,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":92.875,"pitch":-147.1875,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:50.717"} +{"sensors":[{"euler":{"heading":320.1875,"pitch":139.25,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":167.5625,"roll":77.6875},"location":"Left Ankle"},{"euler":{"heading":116.375,"pitch":92.875,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":338.0,"pitch":-123.0,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":161.25,"pitch":81.0,"roll":64.4375},"location":"Right Knee"},{"euler":{"heading":93.0625,"pitch":-151.25,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:50.818"} +{"sensors":[{"euler":{"heading":324.9375,"pitch":133.6875,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":141.125,"pitch":-162.0,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":106.625,"pitch":90.375,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":335.1875,"pitch":-124.9375,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":77.8125,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":94.1875,"pitch":-154.3125,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:50.920"} +{"sensors":[{"euler":{"heading":243.625,"pitch":130.0,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":157.875,"pitch":-131.6875,"roll":62.4375},"location":"Left Ankle"},{"euler":{"heading":99.5,"pitch":84.25,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":331.5,"pitch":-127.75,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":77.875,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":83.125,"pitch":-140.8125,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:51.21"} +{"sensors":[{"euler":{"heading":243.6875,"pitch":132.875,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":158.125,"pitch":-130.25,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":93.75,"pitch":77.6875,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":327.5,"pitch":-129.25,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":78.3125,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":72.4375,"pitch":-129.0625,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:51.121"} +{"sensors":[{"euler":{"heading":221.25,"pitch":146.0,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":138.1875,"pitch":-163.875,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":68.8125,"roll":79.125},"location":"Right Ankle"},{"euler":{"heading":325.0,"pitch":-130.5,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":167.25,"pitch":78.0,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":65.5625,"pitch":-125.6875,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:51.223"} +{"sensors":[{"euler":{"heading":282.875,"pitch":167.5,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":109.625,"pitch":135.25,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":55.8125,"roll":81.0625},"location":"Right Ankle"},{"euler":{"heading":322.5625,"pitch":-131.875,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":169.0,"pitch":5.0625,"roll":84.75},"location":"Right Knee"},{"euler":{"heading":63.4375,"pitch":-125.875,"roll":45.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:51.323"} +{"sensors":[{"euler":{"heading":266.375,"pitch":-174.9375,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":90.9375,"pitch":112.875,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":2.875,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":322.4375,"pitch":-135.5,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":175.25,"pitch":179.625,"roll":89.3125},"location":"Right Knee"},{"euler":{"heading":68.125,"pitch":-129.75,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:51.424"} +{"sensors":[{"euler":{"heading":268.5625,"pitch":-173.375,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":93.9375,"pitch":114.3125,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":-24.6875,"roll":81.1875},"location":"Right Ankle"},{"euler":{"heading":324.375,"pitch":-138.8125,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":185.875,"pitch":-173.4375,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":75.3125,"pitch":-133.1875,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:51.525"} +{"sensors":[{"euler":{"heading":282.5625,"pitch":176.625,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":106.5625,"pitch":119.625,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":-65.75,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":326.0,"pitch":-137.6875,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":199.875,"pitch":-100.6875,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":76.5,"pitch":-133.1875,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:51.626"} +{"sensors":[{"euler":{"heading":292.5,"pitch":168.0,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":122.5625,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":61.5,"pitch":-79.1875,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":336.5,"pitch":-127.6875,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":209.625,"pitch":-95.875,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":80.0625,"pitch":-134.375,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:51.727"} +{"sensors":[{"euler":{"heading":297.4375,"pitch":161.5625,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":121.75,"pitch":126.5,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":67.875,"pitch":-82.125,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":344.25,"pitch":-119.6875,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":202.625,"pitch":-82.125,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":83.0625,"pitch":-136.625,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:51.828"} +{"sensors":[{"euler":{"heading":299.8125,"pitch":156.25,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":122.5625,"pitch":129.5,"roll":73.0},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-2.625,"roll":84.9375},"location":"Right Ankle"},{"euler":{"heading":347.9375,"pitch":-114.625,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":186.0625,"pitch":2.875,"roll":85.1875},"location":"Right Knee"},{"euler":{"heading":85.125,"pitch":-142.0625,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:51.929"} +{"sensors":[{"euler":{"heading":304.1875,"pitch":150.8125,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":125.6875,"pitch":135.6875,"roll":75.0},"location":"Left Ankle"},{"euler":{"heading":102.5,"pitch":96.75,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":346.5625,"pitch":-115.9375,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":169.75,"pitch":76.6875,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":87.1875,"pitch":-145.5625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:52.30"} +{"sensors":[{"euler":{"heading":309.5625,"pitch":144.125,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":130.875,"pitch":151.3125,"roll":77.5},"location":"Left Ankle"},{"euler":{"heading":115.9375,"pitch":91.4375,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":340.8125,"pitch":-120.8125,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":84.875,"roll":63.8125},"location":"Right Knee"},{"euler":{"heading":88.5625,"pitch":-148.625,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:52.131"} +{"sensors":[{"euler":{"heading":314.625,"pitch":137.875,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":137.5,"pitch":-179.0,"roll":77.5},"location":"Left Ankle"},{"euler":{"heading":109.0,"pitch":91.4375,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":334.625,"pitch":-122.6875,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":159.0,"pitch":80.1875,"roll":66.0},"location":"Right Knee"},{"euler":{"heading":88.125,"pitch":-151.0,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:52.232"} +{"sensors":[{"euler":{"heading":236.125,"pitch":131.1875,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":149.0625,"pitch":-141.6875,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":85.0,"roll":72.5625},"location":"Right Ankle"},{"euler":{"heading":333.6875,"pitch":-125.125,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":76.625,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":84.4375,"pitch":-143.625,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:52.333"} +{"sensors":[{"euler":{"heading":250.8125,"pitch":129.25,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":170.4375,"pitch":-121.4375,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":76.9375,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":329.4375,"pitch":-127.4375,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":162.875,"pitch":81.625,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":75.0625,"pitch":-130.375,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:52.434"} +{"sensors":[{"euler":{"heading":240.125,"pitch":136.875,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":159.875,"pitch":-133.3125,"roll":60.3125},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":68.1875,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":327.375,"pitch":-128.6875,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":85.0,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":68.5625,"pitch":-125.8125,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:52.534"} +{"sensors":[{"euler":{"heading":300.625,"pitch":153.0,"roll":48.4375},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":177.6875,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":57.125,"roll":80.3125},"location":"Right Ankle"},{"euler":{"heading":324.6875,"pitch":-129.0,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":84.625,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":63.5625,"pitch":-125.1875,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:52.635"} +{"sensors":[{"euler":{"heading":274.1875,"pitch":174.4375,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":101.75,"pitch":124.25,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":40.375,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":322.8125,"pitch":-132.5,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":170.8125,"pitch":175.9375,"roll":85.875},"location":"Right Knee"},{"euler":{"heading":63.0625,"pitch":-126.375,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:52.736"} +{"sensors":[{"euler":{"heading":263.625,"pitch":-171.25,"roll":54.875},"location":"Left Knee"},{"euler":{"heading":88.375,"pitch":110.0,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":0.75,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":323.625,"pitch":-135.75,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":178.375,"pitch":-178.9375,"roll":86.9375},"location":"Right Knee"},{"euler":{"heading":70.375,"pitch":-131.1875,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:52.837"} +{"sensors":[{"euler":{"heading":272.6875,"pitch":-175.875,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":97.5625,"pitch":114.75,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":74.1875,"pitch":-39.25,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":324.0,"pitch":-141.0625,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":188.5,"pitch":-110.25,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":77.5,"pitch":-133.625,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:52.938"} +{"sensors":[{"euler":{"heading":286.0,"pitch":174.3125,"roll":54.875},"location":"Left Knee"},{"euler":{"heading":109.8125,"pitch":120.0625,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":65.0,"pitch":-69.0,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":328.5625,"pitch":-137.875,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":204.5625,"pitch":-101.3125,"roll":71.1875},"location":"Right Knee"},{"euler":{"heading":79.9375,"pitch":-135.0,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:53.39"} +{"sensors":[{"euler":{"heading":296.875,"pitch":166.3125,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":120.8125,"pitch":123.0,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":60.9375,"pitch":-78.1875,"roll":60.1875},"location":"Right Ankle"},{"euler":{"heading":338.3125,"pitch":-125.0,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":211.4375,"pitch":-91.0625,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":84.375,"pitch":-135.375,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:53.140"} +{"sensors":[{"euler":{"heading":298.5625,"pitch":144.375,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":122.9375,"pitch":127.8125,"roll":71.6875},"location":"Left Ankle"},{"euler":{"heading":70.9375,"pitch":-78.1875,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":346.625,"pitch":-118.4375,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":204.625,"pitch":-84.125,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":85.0,"pitch":-137.9375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:53.240"} +{"sensors":[{"euler":{"heading":301.1875,"pitch":155.0625,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":123.875,"pitch":130.75,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":-178.8125,"roll":88.8125},"location":"Right Ankle"},{"euler":{"heading":349.0,"pitch":-113.5,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":186.6875,"pitch":5.3125,"roll":85.3125},"location":"Right Knee"},{"euler":{"heading":85.8125,"pitch":-141.125,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:53.340"} +{"sensors":[{"euler":{"heading":305.0,"pitch":149.9375,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":137.8125,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":94.8125,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":346.9375,"pitch":-116.4375,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":169.5625,"pitch":82.1875,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":86.9375,"pitch":-144.125,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:53.441"} +{"sensors":[{"euler":{"heading":309.5625,"pitch":144.1875,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":130.125,"pitch":150.375,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":116.0,"pitch":91.1875,"roll":62.1875},"location":"Right Ankle"},{"euler":{"heading":341.4375,"pitch":-120.375,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":85.75,"roll":63.1875},"location":"Right Knee"},{"euler":{"heading":88.125,"pitch":-147.3125,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:53.542"} +{"sensors":[{"euler":{"heading":316.5625,"pitch":138.125,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":135.8125,"pitch":178.3125,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":108.8125,"pitch":92.1875,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":335.1875,"pitch":-122.625,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":159.5625,"pitch":81.375,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":89.9375,"pitch":-151.125,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:53.642"} +{"sensors":[{"euler":{"heading":235.0625,"pitch":132.3125,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":147.8125,"pitch":-145.25,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":86.375,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":333.75,"pitch":-123.9375,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":76.625,"roll":69.6875},"location":"Right Knee"},{"euler":{"heading":87.125,"pitch":-147.1875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:53.743"} +{"sensors":[{"euler":{"heading":251.625,"pitch":129.875,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":172.375,"pitch":-119.5,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":91.8125,"pitch":77.25,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":327.6875,"pitch":-126.6875,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":160.875,"pitch":78.0625,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":76.3125,"pitch":-131.8125,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:53.844"} +{"sensors":[{"euler":{"heading":242.25,"pitch":137.4375,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":161.8125,"pitch":-133.0625,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":88.125,"pitch":66.5,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":325.5625,"pitch":-128.4375,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":164.1875,"pitch":81.875,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":67.9375,"pitch":-126.3125,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:53.945"} +{"sensors":[{"euler":{"heading":300.375,"pitch":153.4375,"roll":47.8125},"location":"Left Knee"},{"euler":{"heading":130.75,"pitch":173.4375,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":51.875,"roll":80.4375},"location":"Right Ankle"},{"euler":{"heading":323.5,"pitch":-130.5,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":82.875,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":63.4375,"pitch":-125.6875,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:54.46"} +{"sensors":[{"euler":{"heading":273.3125,"pitch":175.6875,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":100.625,"pitch":122.5625,"roll":60.9375},"location":"Left Ankle"},{"euler":{"heading":80.8125,"pitch":30.25,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":322.875,"pitch":-132.9375,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":170.4375,"pitch":175.5625,"roll":85.5625},"location":"Right Knee"},{"euler":{"heading":51.625,"pitch":-127.0625,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:54.146"} +{"sensors":[{"euler":{"heading":263.3125,"pitch":-170.5625,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":87.5625,"pitch":110.125,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":-2.25,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":323.125,"pitch":-135.5625,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":-179.3125,"roll":88.125},"location":"Right Knee"},{"euler":{"heading":71.4375,"pitch":-131.25,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:54.246"} +{"sensors":[{"euler":{"heading":272.3125,"pitch":-174.625,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":115.3125,"roll":54.0625},"location":"Left Ankle"},{"euler":{"heading":72.1875,"pitch":-36.6875,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":323.625,"pitch":-141.75,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":187.3125,"pitch":-113.6875,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":79.1875,"pitch":-134.1875,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:54.347"} +{"sensors":[{"euler":{"heading":285.75,"pitch":175.6875,"roll":54.4375},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":119.4375,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":65.8125,"pitch":-65.875,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":326.3125,"pitch":-140.4375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":202.1875,"pitch":-105.0625,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":79.3125,"pitch":-134.5,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:54.448"} +{"sensors":[{"euler":{"heading":296.6875,"pitch":167.25,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":118.5,"pitch":122.5,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":61.5625,"pitch":-76.0,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":336.875,"pitch":-126.5,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":211.5625,"pitch":-95.5,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":84.4375,"pitch":-136.4375,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:54.549"} +{"sensors":[{"euler":{"heading":302.125,"pitch":160.875,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":125.3125,"pitch":126.625,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":71.25,"pitch":-69.375,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":344.875,"pitch":-118.0625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":202.75,"pitch":-89.25,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":86.6875,"pitch":-138.375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:54.650"} +{"sensors":[{"euler":{"heading":307.125,"pitch":155.5,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":128.1875,"pitch":130.0,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-2.875,"roll":86.375},"location":"Right Ankle"},{"euler":{"heading":347.375,"pitch":-114.1875,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":185.375,"pitch":6.0,"roll":84.9375},"location":"Right Knee"},{"euler":{"heading":87.75,"pitch":-141.0,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:54.751"} +{"sensors":[{"euler":{"heading":312.1875,"pitch":149.9375,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":132.4375,"pitch":138.0,"roll":75.5},"location":"Left Ankle"},{"euler":{"heading":102.1875,"pitch":91.8125,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":344.75,"pitch":-115.25,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":170.375,"pitch":77.5625,"roll":69.75},"location":"Right Knee"},{"euler":{"heading":89.0625,"pitch":-143.9375,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:54.852"} +{"sensors":[{"euler":{"heading":316.9375,"pitch":143.75,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":137.0625,"pitch":153.9375,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":113.625,"pitch":90.8125,"roll":63.75},"location":"Right Ankle"},{"euler":{"heading":338.625,"pitch":-119.375,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":163.625,"pitch":78.875,"roll":63.1875},"location":"Right Knee"},{"euler":{"heading":90.0625,"pitch":-147.125,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:54.953"} +{"sensors":[{"euler":{"heading":322.6875,"pitch":137.6875,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":142.625,"pitch":-175.625,"roll":76.5},"location":"Left Ankle"},{"euler":{"heading":107.3125,"pitch":90.8125,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":332.25,"pitch":-122.6875,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":76.0625,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":91.0,"pitch":-151.0,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:55.54"} +{"sensors":[{"euler":{"heading":241.9375,"pitch":131.0,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":154.75,"pitch":-139.25,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":98.8125,"pitch":83.75,"roll":73.5},"location":"Right Ankle"},{"euler":{"heading":331.1875,"pitch":-124.0625,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":161.875,"pitch":71.0625,"roll":70.0},"location":"Right Knee"},{"euler":{"heading":85.25,"pitch":-143.0,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:55.155"} +{"sensors":[{"euler":{"heading":253.0,"pitch":129.125,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":171.0,"pitch":-122.25,"roll":55.5625},"location":"Left Ankle"},{"euler":{"heading":93.0625,"pitch":70.1875,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":326.0625,"pitch":-127.25,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":68.75,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":73.625,"pitch":-129.4375,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:55.256"} +{"sensors":[{"euler":{"heading":237.75,"pitch":138.3125,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":161.3125,"pitch":-126.625,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":60.0,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":322.875,"pitch":-127.4375,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":162.9375,"pitch":67.1875,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":65.1875,"pitch":-125.0,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:55.356"} +{"sensors":[{"euler":{"heading":293.75,"pitch":156.5625,"roll":50.5625},"location":"Left Knee"},{"euler":{"heading":126.0625,"pitch":164.3125,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":45.125,"roll":80.3125},"location":"Right Ankle"},{"euler":{"heading":322.1875,"pitch":-130.125,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":166.75,"pitch":66.625,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-125.125,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:55.456"} +{"sensors":[{"euler":{"heading":272.8125,"pitch":177.75,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":99.9375,"pitch":119.625,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":23.0625,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":322.125,"pitch":-132.875,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":171.625,"pitch":3.8125,"roll":85.625},"location":"Right Knee"},{"euler":{"heading":51.75,"pitch":-126.875,"roll":44.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:55.557"} +{"sensors":[{"euler":{"heading":266.0625,"pitch":-172.0625,"roll":53.625},"location":"Left Knee"},{"euler":{"heading":89.6875,"pitch":110.9375,"roll":51.0},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":-13.125,"roll":81.9375},"location":"Right Ankle"},{"euler":{"heading":323.875,"pitch":-135.6875,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":179.5625,"pitch":-1.8125,"roll":87.9375},"location":"Right Knee"},{"euler":{"heading":71.5625,"pitch":-132.125,"roll":45.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:55.657"} +{"sensors":[{"euler":{"heading":277.8125,"pitch":-179.0625,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":103.125,"pitch":119.1875,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":69.8125,"pitch":-46.5625,"roll":75.6875},"location":"Right Ankle"},{"euler":{"heading":323.6875,"pitch":-140.4375,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":189.0625,"pitch":-93.8125,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":79.0,"pitch":-134.5,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:55.758"} +{"sensors":[{"euler":{"heading":289.5625,"pitch":171.125,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":112.5,"pitch":122.5625,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":63.3125,"pitch":-72.3125,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":330.75,"pitch":-136.375,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":205.125,"pitch":-95.6875,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-134.4375,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:55.859"} +{"sensors":[{"euler":{"heading":297.0625,"pitch":163.1875,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":119.3125,"pitch":126.9375,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":63.9375,"pitch":-75.125,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":340.0625,"pitch":-123.1875,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":208.3125,"pitch":-89.625,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":81.5,"pitch":-136.5625,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:55.960"} +{"sensors":[{"euler":{"heading":303.3125,"pitch":157.25,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":131.9375,"roll":71.75},"location":"Left Ankle"},{"euler":{"heading":76.0625,"pitch":-67.8125,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":348.6875,"pitch":-115.875,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":194.875,"pitch":-5.125,"roll":84.5625},"location":"Right Knee"},{"euler":{"heading":85.125,"pitch":-138.5625,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:56.61"} +{"sensors":[{"euler":{"heading":307.0,"pitch":152.5,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":128.6875,"pitch":135.3125,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":173.75,"roll":83.75},"location":"Right Ankle"},{"euler":{"heading":351.625,"pitch":-113.125,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":177.25,"pitch":72.875,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":85.8125,"pitch":-140.875,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:56.162"} +{"sensors":[{"euler":{"heading":312.5625,"pitch":146.875,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":132.9375,"pitch":145.75,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":109.625,"pitch":94.625,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":348.1875,"pitch":-116.9375,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":163.25,"pitch":82.5625,"roll":64.5},"location":"Right Knee"},{"euler":{"heading":86.4375,"pitch":-143.0625,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:56.262"} +{"sensors":[{"euler":{"heading":317.4375,"pitch":140.875,"roll":51.0},"location":"Left Knee"},{"euler":{"heading":138.3125,"pitch":165.0,"roll":77.75},"location":"Left Ankle"},{"euler":{"heading":117.9375,"pitch":91.25,"roll":61.125},"location":"Right Ankle"},{"euler":{"heading":341.0625,"pitch":-120.8125,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":159.0,"pitch":84.5625,"roll":60.625},"location":"Right Knee"},{"euler":{"heading":88.375,"pitch":-147.25,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:56.363"} +{"sensors":[{"euler":{"heading":325.125,"pitch":134.1875,"roll":45.625},"location":"Left Knee"},{"euler":{"heading":144.1875,"pitch":-164.5625,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":110.0625,"pitch":89.3125,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":334.0625,"pitch":-124.1875,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":82.75,"roll":63.8125},"location":"Right Knee"},{"euler":{"heading":90.6875,"pitch":-152.125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:56.464"} +{"sensors":[{"euler":{"heading":246.875,"pitch":130.25,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":160.25,"pitch":-133.8125,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":101.125,"pitch":82.4375,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":334.0625,"pitch":-125.125,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":80.5,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":83.875,"pitch":-144.75,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:56.565"} +{"sensors":[{"euler":{"heading":256.625,"pitch":129.625,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":172.5,"pitch":-122.75,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":97.1875,"pitch":73.4375,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":329.0,"pitch":-129.375,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":84.0625,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":74.625,"pitch":-131.5,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:56.666"} +{"sensors":[{"euler":{"heading":239.1875,"pitch":138.8125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":154.375,"pitch":-142.25,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":62.625,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":326.875,"pitch":-129.9375,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":165.75,"pitch":86.875,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":67.5625,"pitch":-126.4375,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:56.767"} +{"sensors":[{"euler":{"heading":293.9375,"pitch":157.0625,"roll":50.5625},"location":"Left Knee"},{"euler":{"heading":122.0625,"pitch":155.375,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":89.875,"pitch":53.0,"roll":80.125},"location":"Right Ankle"},{"euler":{"heading":326.125,"pitch":-132.25,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":169.875,"pitch":92.5,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":64.0,"pitch":-126.125,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:56.868"} +{"sensors":[{"euler":{"heading":271.6875,"pitch":178.5625,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":117.25,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":27.75,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":325.0625,"pitch":-134.0625,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":174.1875,"pitch":175.8125,"roll":85.5625},"location":"Right Knee"},{"euler":{"heading":65.0625,"pitch":-127.6875,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:56.969"} +{"sensors":[{"euler":{"heading":263.5,"pitch":-170.5,"roll":54.4375},"location":"Left Knee"},{"euler":{"heading":88.125,"pitch":109.375,"roll":50.4375},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-9.125,"roll":80.875},"location":"Right Ankle"},{"euler":{"heading":324.9375,"pitch":-137.375,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":179.6875,"pitch":-179.0,"roll":87.1875},"location":"Right Knee"},{"euler":{"heading":71.5625,"pitch":-131.625,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:57.69"} +{"sensors":[{"euler":{"heading":273.8125,"pitch":-176.9375,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":99.6875,"pitch":115.75,"roll":55.875},"location":"Left Ankle"},{"euler":{"heading":73.625,"pitch":-46.8125,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":323.75,"pitch":-141.8125,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":189.1875,"pitch":-109.1875,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":77.25,"pitch":-133.5,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:57.170"} +{"sensors":[{"euler":{"heading":286.9375,"pitch":172.9375,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":109.4375,"pitch":119.75,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":64.75,"pitch":-68.25,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":330.75,"pitch":-135.8125,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":202.5625,"pitch":-101.3125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":77.0625,"pitch":-133.5625,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:57.271"} +{"sensors":[{"euler":{"heading":292.9375,"pitch":164.5,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":115.25,"pitch":123.25,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-76.5625,"roll":62.4375},"location":"Right Ankle"},{"euler":{"heading":340.125,"pitch":-121.5625,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":205.625,"pitch":-87.375,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":79.5625,"pitch":-136.3125,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:57.372"} +{"sensors":[{"euler":{"heading":297.3125,"pitch":158.8125,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":118.8125,"pitch":125.9375,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":-71.625,"roll":74.375},"location":"Right Ankle"},{"euler":{"heading":347.5625,"pitch":-114.9375,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":189.4375,"pitch":-0.9375,"roll":87.5},"location":"Right Knee"},{"euler":{"heading":82.6875,"pitch":-138.75,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:57.473"} +{"sensors":[{"euler":{"heading":305.4375,"pitch":153.25,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":124.0625,"pitch":128.1875,"roll":72.1875},"location":"Left Ankle"},{"euler":{"heading":92.3125,"pitch":173.5625,"roll":83.5625},"location":"Right Ankle"},{"euler":{"heading":350.25,"pitch":-112.125,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":174.625,"pitch":76.9375,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":85.75,"pitch":-140.875,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:57.574"} +{"sensors":[{"euler":{"heading":313.5625,"pitch":146.75,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":129.875,"pitch":137.0625,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":110.0,"pitch":90.125,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":352.125,"pitch":-115.75,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":164.1875,"pitch":87.0,"roll":63.75},"location":"Right Knee"},{"euler":{"heading":88.0625,"pitch":-143.1875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:57.675"} +{"sensors":[{"euler":{"heading":318.25,"pitch":140.8125,"roll":51.6875},"location":"Left Knee"},{"euler":{"heading":134.875,"pitch":155.9375,"roll":76.875},"location":"Left Ankle"},{"euler":{"heading":115.5,"pitch":91.625,"roll":62.5},"location":"Right Ankle"},{"euler":{"heading":343.625,"pitch":-120.9375,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":156.625,"pitch":81.75,"roll":59.25},"location":"Right Knee"},{"euler":{"heading":87.75,"pitch":-146.1875,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:57.775"} +{"sensors":[{"euler":{"heading":323.125,"pitch":135.125,"roll":46.875},"location":"Left Knee"},{"euler":{"heading":140.25,"pitch":-171.5625,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":106.25,"pitch":91.25,"roll":66.4375},"location":"Right Ankle"},{"euler":{"heading":333.25,"pitch":-126.0,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":153.375,"pitch":78.4375,"roll":62.3125},"location":"Right Knee"},{"euler":{"heading":88.125,"pitch":-150.1875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:57.876"} +{"sensors":[{"euler":{"heading":241.625,"pitch":131.625,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":155.5625,"pitch":-137.5625,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":99.5,"pitch":82.1875,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":331.1875,"pitch":-128.25,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":155.3125,"pitch":77.5625,"roll":66.875},"location":"Right Knee"},{"euler":{"heading":78.9375,"pitch":-144.0625,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:57.977"} +{"sensors":[{"euler":{"heading":253.6875,"pitch":129.375,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":164.8125,"pitch":-128.375,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":93.6875,"pitch":72.875,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":327.9375,"pitch":-130.125,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":158.125,"pitch":78.125,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":70.375,"pitch":-129.6875,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:58.78"} +{"sensors":[{"euler":{"heading":236.25,"pitch":139.375,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":146.9375,"pitch":-150.9375,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":88.0625,"pitch":62.125,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":325.3125,"pitch":-129.75,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":159.1875,"pitch":78.5625,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":63.3125,"pitch":-124.875,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:58.179"} +{"sensors":[{"euler":{"heading":291.6875,"pitch":160.4375,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":115.75,"pitch":135.3125,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":51.625,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":323.9375,"pitch":-131.0,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":161.4375,"pitch":78.4375,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":51.25,"pitch":-125.0,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:58.280"} +{"sensors":[{"euler":{"heading":271.25,"pitch":-178.3125,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":91.6875,"pitch":110.75,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":80.5625,"pitch":28.5,"roll":81.0},"location":"Right Ankle"},{"euler":{"heading":323.5,"pitch":-134.1875,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":166.0,"pitch":86.75,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-127.8125,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:58.381"} +{"sensors":[{"euler":{"heading":266.375,"pitch":-170.5,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":109.9375,"roll":49.3125},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-9.25,"roll":80.1875},"location":"Right Ankle"},{"euler":{"heading":325.0,"pitch":-137.5,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":179.375,"roll":88.4375},"location":"Right Knee"},{"euler":{"heading":72.5625,"pitch":-132.9375,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:58.482"} +{"sensors":[{"euler":{"heading":277.875,"pitch":-177.9375,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":101.25,"pitch":116.125,"roll":57.375},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-45.6875,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":324.75,"pitch":-140.8125,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":186.5625,"pitch":-111.75,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":78.5625,"pitch":-135.125,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:58.583"} +{"sensors":[{"euler":{"heading":289.125,"pitch":171.9375,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":109.8125,"pitch":118.4375,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":63.625,"pitch":-68.3125,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":335.0625,"pitch":-132.6875,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":202.1875,"pitch":-102.5625,"roll":72.6875},"location":"Right Knee"},{"euler":{"heading":78.9375,"pitch":-135.1875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:58.684"} +{"sensors":[{"euler":{"heading":294.3125,"pitch":164.375,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":115.875,"pitch":122.625,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":-75.625,"roll":61.1875},"location":"Right Ankle"},{"euler":{"heading":345.5,"pitch":-120.3125,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":207.125,"pitch":-91.8125,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-138.0625,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:58.784"} +{"sensors":[{"euler":{"heading":301.4375,"pitch":158.125,"roll":56.9375},"location":"Left Knee"},{"euler":{"heading":122.5625,"pitch":125.0625,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-60.75,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":351.6875,"pitch":-114.0,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":194.125,"pitch":-6.375,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":85.5,"pitch":-139.75,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:58.885"} +{"sensors":[{"euler":{"heading":307.5,"pitch":152.375,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":126.5625,"pitch":129.5625,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":91.1875,"pitch":3.625,"roll":86.1875},"location":"Right Ankle"},{"euler":{"heading":353.1875,"pitch":-113.5,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":177.5625,"pitch":83.5625,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":86.6875,"pitch":-142.8125,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:58.986"} +{"sensors":[{"euler":{"heading":312.4375,"pitch":146.5625,"roll":54.0},"location":"Left Knee"},{"euler":{"heading":130.8125,"pitch":140.875,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":112.5625,"pitch":89.0,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":349.25,"pitch":-118.0,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":163.6875,"pitch":87.8125,"roll":64.0},"location":"Right Knee"},{"euler":{"heading":88.125,"pitch":-145.9375,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:59.87"} +{"sensors":[{"euler":{"heading":318.5625,"pitch":139.9375,"roll":51.25},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":163.375,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":117.1875,"pitch":88.5,"roll":62.3125},"location":"Right Ankle"},{"euler":{"heading":341.75,"pitch":-122.75,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":158.9375,"pitch":86.4375,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":90.0,"pitch":-149.75,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:59.188"} +{"sensors":[{"euler":{"heading":326.5,"pitch":133.0625,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":143.5625,"pitch":-159.6875,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":106.5,"pitch":84.5,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":337.625,"pitch":-125.1875,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":158.5625,"pitch":80.875,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":91.4375,"pitch":-149.75,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:59.289"} +{"sensors":[{"euler":{"heading":248.1875,"pitch":128.875,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":164.6875,"pitch":-127.875,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":99.375,"pitch":78.4375,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":333.875,"pitch":-127.375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":161.0,"pitch":82.9375,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":80.6875,"pitch":-137.375,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:59.389"} +{"sensors":[{"euler":{"heading":253.6875,"pitch":129.875,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":166.5625,"pitch":-123.375,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":94.625,"pitch":69.9375,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":330.3125,"pitch":-129.75,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":162.75,"pitch":83.75,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":70.3125,"pitch":-127.75,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:59.490"} +{"sensors":[{"euler":{"heading":236.5625,"pitch":140.5,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":-142.25,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":55.25,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":327.875,"pitch":-131.0,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":164.5,"pitch":84.5625,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":63.0,"pitch":-124.5625,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:59.591"} +{"sensors":[{"euler":{"heading":293.875,"pitch":160.6875,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":115.0,"pitch":140.1875,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":42.4375,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":325.6875,"pitch":-132.6875,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":166.5625,"pitch":84.9375,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":52.8125,"pitch":-124.875,"roll":43.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:59.692"} +{"sensors":[{"euler":{"heading":272.6875,"pitch":-179.4375,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":90.9375,"pitch":113.1875,"roll":53.75},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":17.25,"roll":81.5625},"location":"Right Ankle"},{"euler":{"heading":325.0625,"pitch":-135.625,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":171.0625,"pitch":176.5,"roll":85.9375},"location":"Right Knee"},{"euler":{"heading":52.875,"pitch":-128.625,"roll":44.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:59.794"} +{"sensors":[{"euler":{"heading":271.1875,"pitch":-175.0,"roll":54.1875},"location":"Left Knee"},{"euler":{"heading":90.0625,"pitch":111.5625,"roll":50.1875},"location":"Left Ankle"},{"euler":{"heading":76.0,"pitch":-23.125,"roll":80.3125},"location":"Right Ankle"},{"euler":{"heading":324.9375,"pitch":-140.3125,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":179.5,"pitch":-177.375,"roll":87.125},"location":"Right Knee"},{"euler":{"heading":73.125,"pitch":-133.0625,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:59.894"} +{"sensors":[{"euler":{"heading":286.8125,"pitch":175.0,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":105.3125,"pitch":119.375,"roll":58.3125},"location":"Left Ankle"},{"euler":{"heading":69.25,"pitch":-56.0,"roll":71.875},"location":"Right Ankle"},{"euler":{"heading":326.0,"pitch":-139.5,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":191.75,"pitch":-108.0625,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":76.9375,"pitch":-134.6875,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:10:59.995"} +{"sensors":[{"euler":{"heading":296.25,"pitch":166.4375,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":112.6875,"pitch":121.0,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":-72.1875,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":338.5625,"pitch":-128.9375,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":204.25,"pitch":-102.9375,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-136.0625,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:00.96"} +{"sensors":[{"euler":{"heading":299.8125,"pitch":160.125,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":118.25,"pitch":124.875,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":67.5,"pitch":-69.1875,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":347.9375,"pitch":-118.875,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":204.25,"pitch":-85.375,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":82.9375,"pitch":-139.0,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:00.197"} +{"sensors":[{"euler":{"heading":305.3125,"pitch":154.8125,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":121.1875,"pitch":125.875,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":84.0625,"pitch":-3.5625,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":353.75,"pitch":-114.4375,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":191.125,"pitch":1.125,"roll":88.4375},"location":"Right Knee"},{"euler":{"heading":87.5625,"pitch":-142.625,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:00.298"} +{"sensors":[{"euler":{"heading":310.75,"pitch":149.1875,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":125.375,"pitch":130.6875,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":86.5625,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":353.9375,"pitch":-114.75,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":174.8125,"pitch":85.3125,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":89.25,"pitch":-145.875,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:00.399"} +{"sensors":[{"euler":{"heading":315.375,"pitch":143.625,"roll":52.0},"location":"Left Knee"},{"euler":{"heading":128.8125,"pitch":141.125,"roll":74.5},"location":"Left Ankle"},{"euler":{"heading":115.4375,"pitch":88.5625,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":348.3125,"pitch":-118.875,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":161.1875,"pitch":88.5,"roll":61.5625},"location":"Right Knee"},{"euler":{"heading":89.875,"pitch":-149.3125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:00.500"} +{"sensors":[{"euler":{"heading":320.875,"pitch":137.6875,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":160.125,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":116.5,"pitch":87.3125,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":340.5625,"pitch":-121.75,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":158.0625,"pitch":86.625,"roll":60.875},"location":"Right Knee"},{"euler":{"heading":92.0,"pitch":-153.8125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:00.601"} +{"sensors":[{"euler":{"heading":238.625,"pitch":131.6875,"roll":43.0},"location":"Left Knee"},{"euler":{"heading":142.0625,"pitch":-162.125,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":105.6875,"pitch":82.8125,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":337.5,"pitch":-123.6875,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":82.3125,"roll":65.4375},"location":"Right Knee"},{"euler":{"heading":91.9375,"pitch":-150.9375,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:00.702"} +{"sensors":[{"euler":{"heading":251.875,"pitch":128.5625,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":165.1875,"pitch":-128.0625,"roll":60.4375},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":74.3125,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":333.125,"pitch":-126.5625,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":161.0625,"pitch":87.25,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-137.125,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:00.802"} +{"sensors":[{"euler":{"heading":253.625,"pitch":132.3125,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":162.625,"pitch":-129.25,"roll":59.0},"location":"Left Ankle"},{"euler":{"heading":96.5625,"pitch":65.1875,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":330.3125,"pitch":-129.4375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":164.75,"pitch":91.375,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":68.3125,"pitch":-129.125,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:00.903"} +{"sensors":[{"euler":{"heading":228.9375,"pitch":143.5625,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":139.1875,"pitch":-158.125,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":50.8125,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":328.375,"pitch":-131.4375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":168.75,"pitch":100.4375,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-126.5625,"roll":43.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:01.4"} +{"sensors":[{"euler":{"heading":289.75,"pitch":161.4375,"roll":51.25},"location":"Left Knee"},{"euler":{"heading":112.625,"pitch":139.625,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":37.25,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":327.1875,"pitch":-133.875,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":172.6875,"pitch":110.625,"roll":82.0},"location":"Right Knee"},{"euler":{"heading":52.1875,"pitch":-126.125,"roll":42.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:01.105"} +{"sensors":[{"euler":{"heading":273.125,"pitch":179.125,"roll":53.375},"location":"Left Knee"},{"euler":{"heading":91.625,"pitch":114.375,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":13.25,"roll":80.75},"location":"Right Ankle"},{"euler":{"heading":326.25,"pitch":-137.5625,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":177.0,"roll":84.9375},"location":"Right Knee"},{"euler":{"heading":52.25,"pitch":-128.8125,"roll":43.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:01.206"} +{"sensors":[{"euler":{"heading":267.75,"pitch":-172.0625,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":87.4375,"pitch":111.375,"roll":48.625},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-19.8125,"roll":80.0625},"location":"Right Ankle"},{"euler":{"heading":325.5,"pitch":-142.1875,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":184.25,"pitch":-177.75,"roll":84.875},"location":"Right Knee"},{"euler":{"heading":72.5625,"pitch":-133.125,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:01.307"} +{"sensors":[{"euler":{"heading":282.0625,"pitch":179.25,"roll":53.625},"location":"Left Knee"},{"euler":{"heading":102.9375,"pitch":118.4375,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":-46.25,"roll":74.125},"location":"Right Ankle"},{"euler":{"heading":324.75,"pitch":-147.8125,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":194.375,"pitch":-117.375,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":78.875,"pitch":-135.75,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:01.408"} +{"sensors":[{"euler":{"heading":294.5,"pitch":169.125,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":113.9375,"pitch":119.375,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":-65.0,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":335.0,"pitch":-137.5625,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":204.0625,"pitch":-106.0625,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":80.625,"pitch":-136.0625,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:01.509"} +{"sensors":[{"euler":{"heading":301.3125,"pitch":162.1875,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":120.125,"pitch":120.4375,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":62.75,"pitch":-69.875,"roll":61.3125},"location":"Right Ankle"},{"euler":{"heading":345.3125,"pitch":-121.75,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":209.0,"pitch":-90.5,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":83.75,"pitch":-139.5,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:01.610"} +{"sensors":[{"euler":{"heading":307.4375,"pitch":156.375,"roll":56.375},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":122.875,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":75.5,"pitch":-54.5625,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":353.875,"pitch":-112.875,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":196.875,"pitch":-81.5625,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":88.1875,"pitch":-141.8125,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:01.711"} +{"sensors":[{"euler":{"heading":313.9375,"pitch":150.3125,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":128.3125,"pitch":127.9375,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":3.625,"roll":85.6875},"location":"Right Ankle"},{"euler":{"heading":355.9375,"pitch":-111.5,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":179.3125,"pitch":85.3125,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":89.25,"pitch":-144.0625,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:01.812"} +{"sensors":[{"euler":{"heading":318.5,"pitch":144.75,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":131.9375,"pitch":136.625,"roll":75.0},"location":"Left Ankle"},{"euler":{"heading":112.25,"pitch":86.6875,"roll":66.4375},"location":"Right Ankle"},{"euler":{"heading":352.0625,"pitch":-115.875,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":163.9375,"pitch":87.875,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":91.0,"pitch":-147.9375,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:01.913"} +{"sensors":[{"euler":{"heading":323.4375,"pitch":138.0625,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":136.0,"pitch":157.625,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":116.5,"pitch":87.1875,"roll":63.0625},"location":"Right Ankle"},{"euler":{"heading":342.5,"pitch":-122.125,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":158.875,"pitch":86.625,"roll":60.75},"location":"Right Knee"},{"euler":{"heading":91.875,"pitch":-152.0,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:02.13"} +{"sensors":[{"euler":{"heading":241.1875,"pitch":132.0,"roll":44.1875},"location":"Left Knee"},{"euler":{"heading":142.6875,"pitch":-168.3125,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":104.625,"pitch":82.5625,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":338.0625,"pitch":-124.4375,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":158.9375,"pitch":82.5625,"roll":65.5625},"location":"Right Knee"},{"euler":{"heading":95.0,"pitch":-154.3125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:02.114"} +{"sensors":[{"euler":{"heading":251.6875,"pitch":129.0625,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":161.625,"pitch":-129.5,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":96.4375,"pitch":73.8125,"roll":74.4375},"location":"Right Ankle"},{"euler":{"heading":333.9375,"pitch":-126.5,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":83.0,"roll":70.6875},"location":"Right Knee"},{"euler":{"heading":82.5,"pitch":-141.125,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:02.215"} +{"sensors":[{"euler":{"heading":258.4375,"pitch":129.5625,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":168.0625,"pitch":-127.125,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":91.3125,"pitch":64.125,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":330.5625,"pitch":-128.6875,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":85.375,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":72.5625,"pitch":-129.0625,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:02.317"} +{"sensors":[{"euler":{"heading":241.875,"pitch":139.5625,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":149.3125,"pitch":-150.625,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":54.0625,"roll":79.0625},"location":"Right Ankle"},{"euler":{"heading":328.375,"pitch":-131.0,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":87.4375,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":64.5,"pitch":-125.625,"roll":45.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:02.418"} +{"sensors":[{"euler":{"heading":298.1875,"pitch":157.5,"roll":48.6875},"location":"Left Knee"},{"euler":{"heading":114.8125,"pitch":143.1875,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":39.75,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":327.1875,"pitch":-133.4375,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":89.6875,"roll":81.125},"location":"Right Knee"},{"euler":{"heading":53.625,"pitch":-125.875,"roll":43.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:02.519"} +{"sensors":[{"euler":{"heading":277.875,"pitch":177.625,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":91.875,"pitch":113.625,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":12.6875,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":326.875,"pitch":-136.6875,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":173.25,"pitch":175.625,"roll":85.375},"location":"Right Knee"},{"euler":{"heading":67.8125,"pitch":-129.5,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:02.620"} +{"sensors":[{"euler":{"heading":274.0,"pitch":-178.375,"roll":53.0625},"location":"Left Knee"},{"euler":{"heading":93.75,"pitch":113.625,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-26.75,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":326.25,"pitch":-140.875,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":181.6875,"pitch":-178.25,"roll":86.5},"location":"Right Knee"},{"euler":{"heading":76.0625,"pitch":-134.125,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:02.721"} +{"sensors":[{"euler":{"heading":288.1875,"pitch":172.625,"roll":54.4375},"location":"Left Knee"},{"euler":{"heading":104.0625,"pitch":117.0625,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-59.625,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":329.3125,"pitch":-137.1875,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":194.125,"pitch":-114.5,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":75.8125,"pitch":-134.8125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:02.822"} +{"sensors":[{"euler":{"heading":293.1875,"pitch":165.4375,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":108.3125,"pitch":118.5,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-75.125,"roll":56.375},"location":"Right Ankle"},{"euler":{"heading":343.9375,"pitch":-124.1875,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":205.25,"pitch":-103.25,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-139.375,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:02.924"} +{"sensors":[{"euler":{"heading":296.1875,"pitch":159.8125,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":111.5625,"pitch":120.6875,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":63.0625,"pitch":-74.6875,"roll":62.125},"location":"Right Ankle"},{"euler":{"heading":354.5625,"pitch":-115.75,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":199.375,"pitch":-85.125,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":83.25,"pitch":-142.1875,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:03.25"} +{"sensors":[{"euler":{"heading":299.8125,"pitch":154.75,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":114.5,"pitch":123.75,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":77.6875,"pitch":-63.4375,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":-112.6875,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":184.0,"pitch":5.5,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":84.75,"pitch":-144.5625,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:03.126"} +{"sensors":[{"euler":{"heading":305.6875,"pitch":149.625,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":117.4375,"pitch":128.6875,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":98.9375,"pitch":84.3125,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":357.5,"pitch":-114.0,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":167.6875,"pitch":84.4375,"roll":68.625},"location":"Right Knee"},{"euler":{"heading":87.0625,"pitch":-147.875,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:03.227"} +{"sensors":[{"euler":{"heading":311.9375,"pitch":143.9375,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":122.625,"pitch":138.9375,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":115.1875,"pitch":87.5,"roll":63.125},"location":"Right Ankle"},{"euler":{"heading":350.0,"pitch":-118.875,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":157.0625,"pitch":86.25,"roll":58.9375},"location":"Right Knee"},{"euler":{"heading":89.3125,"pitch":-151.3125,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:03.328"} +{"sensors":[{"euler":{"heading":317.625,"pitch":138.4375,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":127.5,"pitch":160.625,"roll":75.0625},"location":"Left Ankle"},{"euler":{"heading":113.25,"pitch":85.9375,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":341.125,"pitch":-122.4375,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":154.6875,"pitch":85.5625,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":90.625,"pitch":-155.9375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:03.428"} +{"sensors":[{"euler":{"heading":238.1875,"pitch":132.1875,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":140.6875,"pitch":-158.8125,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":100.875,"pitch":80.1875,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":339.5625,"pitch":-122.875,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":155.0625,"pitch":80.0625,"roll":65.5625},"location":"Right Knee"},{"euler":{"heading":87.9375,"pitch":-151.625,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:03.530"} +{"sensors":[{"euler":{"heading":254.5625,"pitch":128.125,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":165.5,"pitch":-127.0625,"roll":58.625},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":70.1875,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":334.375,"pitch":-125.625,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":84.5,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":75.5,"pitch":-133.4375,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:03.630"} +{"sensors":[{"euler":{"heading":255.875,"pitch":132.75,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":160.25,"pitch":-131.625,"roll":58.875},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":59.375,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":332.125,"pitch":-127.375,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":88.6875,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":65.8125,"pitch":-126.1875,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:03.732"} +{"sensors":[{"euler":{"heading":233.25,"pitch":144.5625,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":135.0,"pitch":-167.75,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":49.25,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":331.1875,"pitch":-130.25,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":165.375,"pitch":97.6875,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-124.25,"roll":43.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:03.832"} +{"sensors":[{"euler":{"heading":289.9375,"pitch":163.3125,"roll":50.75},"location":"Left Knee"},{"euler":{"heading":108.1875,"pitch":133.4375,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":33.25,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":329.125,"pitch":-133.1875,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":106.8125,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":52.625,"pitch":-124.9375,"roll":42.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:03.932"} +{"sensors":[{"euler":{"heading":272.9375,"pitch":-179.25,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":88.25,"pitch":111.8125,"roll":51.375},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":9.8125,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":327.375,"pitch":-137.25,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":176.3125,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":66.75,"pitch":-129.125,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:04.33"} +{"sensors":[{"euler":{"heading":272.0,"pitch":-175.8125,"roll":53.875},"location":"Left Knee"},{"euler":{"heading":91.125,"pitch":111.6875,"roll":50.3125},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":-21.0,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":325.3125,"pitch":-144.375,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":185.0625,"pitch":-176.75,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":75.0625,"pitch":-133.1875,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:04.133"} +{"sensors":[{"euler":{"heading":289.25,"pitch":172.75,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":105.125,"pitch":116.75,"roll":59.0625},"location":"Left Ankle"},{"euler":{"heading":72.125,"pitch":-52.6875,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":326.625,"pitch":-144.875,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":196.9375,"pitch":-118.4375,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":78.9375,"pitch":-135.0,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:04.234"} +{"sensors":[{"euler":{"heading":299.5,"pitch":163.4375,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":114.6875,"pitch":119.5625,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-67.8125,"roll":58.0},"location":"Right Ankle"},{"euler":{"heading":340.0,"pitch":-127.6875,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":205.5,"pitch":-98.5625,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":82.9375,"pitch":-137.0625,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:04.335"} +{"sensors":[{"euler":{"heading":302.4375,"pitch":157.5625,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":120.1875,"pitch":123.0,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":60.9375,"pitch":-71.8125,"roll":60.375},"location":"Right Ankle"},{"euler":{"heading":351.9375,"pitch":-118.0,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":205.5625,"pitch":-86.5625,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":83.6875,"pitch":-139.4375,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:04.436"} +{"sensors":[{"euler":{"heading":308.5625,"pitch":152.0625,"roll":54.875},"location":"Left Knee"},{"euler":{"heading":123.25,"pitch":125.9375,"roll":71.0625},"location":"Left Ankle"},{"euler":{"heading":71.375,"pitch":-67.3125,"roll":73.125},"location":"Right Ankle"},{"euler":{"heading":358.25,"pitch":-112.8125,"roll":43.5625},"location":"Right Hip"},{"euler":{"heading":190.3125,"pitch":-0.875,"roll":87.75},"location":"Right Knee"},{"euler":{"heading":86.4375,"pitch":-142.0,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:04.537"} +{"sensors":[{"euler":{"heading":315.25,"pitch":146.625,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":127.75,"pitch":133.0625,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":95.625,"pitch":70.9375,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":358.5625,"pitch":-113.8125,"roll":42.625},"location":"Right Hip"},{"euler":{"heading":171.25,"pitch":87.125,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":88.4375,"pitch":-144.75,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:04.637"} +{"sensors":[{"euler":{"heading":320.3125,"pitch":141.0625,"roll":50.875},"location":"Left Knee"},{"euler":{"heading":131.5625,"pitch":145.625,"roll":76.1875},"location":"Left Ankle"},{"euler":{"heading":116.3125,"pitch":84.875,"roll":63.875},"location":"Right Ankle"},{"euler":{"heading":351.625,"pitch":-119.6875,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":160.8125,"pitch":89.875,"roll":61.25},"location":"Right Knee"},{"euler":{"heading":90.0625,"pitch":-148.3125,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:04.738"} +{"sensors":[{"euler":{"heading":326.125,"pitch":134.25,"roll":47.5},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":172.6875,"roll":76.6875},"location":"Left Ankle"},{"euler":{"heading":113.625,"pitch":83.625,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":343.4375,"pitch":-122.9375,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":159.0625,"pitch":87.375,"roll":63.875},"location":"Right Knee"},{"euler":{"heading":92.9375,"pitch":-152.625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:04.838"} +{"sensors":[{"euler":{"heading":245.125,"pitch":129.8125,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":148.25,"pitch":-148.375,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":104.375,"pitch":76.8125,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":341.5625,"pitch":-124.0625,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":83.875,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":89.125,"pitch":-146.875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:04.939"} +{"sensors":[{"euler":{"heading":260.375,"pitch":127.0,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":171.4375,"pitch":-121.625,"roll":57.375},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":68.25,"roll":73.75},"location":"Right Ankle"},{"euler":{"heading":336.375,"pitch":-126.25,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":161.4375,"pitch":86.4375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":78.1875,"pitch":-131.8125,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:05.40"} +{"sensors":[{"euler":{"heading":253.25,"pitch":134.4375,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":158.375,"pitch":-131.875,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":94.8125,"pitch":58.875,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":333.0,"pitch":-128.8125,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":163.9375,"pitch":92.75,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":68.6875,"pitch":-126.125,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:05.140"} +{"sensors":[{"euler":{"heading":228.5625,"pitch":147.875,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":127.1875,"pitch":174.75,"roll":73.0},"location":"Left Ankle"},{"euler":{"heading":91.8125,"pitch":49.5625,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":331.1875,"pitch":-131.625,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":167.0625,"pitch":98.4375,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":64.4375,"pitch":-125.9375,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:05.241"} +{"sensors":[{"euler":{"heading":272.6875,"pitch":167.625,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":100.125,"pitch":124.0625,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":34.875,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":329.6875,"pitch":-132.3125,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":170.0625,"pitch":173.6875,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-126.875,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:05.342"} +{"sensors":[{"euler":{"heading":272.6875,"pitch":-177.0625,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":85.5625,"pitch":109.1875,"roll":49.625},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":9.625,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":329.0,"pitch":-135.3125,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":176.9375,"pitch":179.1875,"roll":86.6875},"location":"Right Knee"},{"euler":{"heading":68.9375,"pitch":-131.0625,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:05.442"} +{"sensors":[{"euler":{"heading":276.9375,"pitch":-178.1875,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":95.5,"pitch":115.0,"roll":51.8125},"location":"Left Ankle"},{"euler":{"heading":77.875,"pitch":-22.0625,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":328.875,"pitch":-139.5,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":185.25,"pitch":-174.5625,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":75.3125,"pitch":-133.9375,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:05.543"} +{"sensors":[{"euler":{"heading":291.5,"pitch":171.875,"roll":53.625},"location":"Left Knee"},{"euler":{"heading":107.3125,"pitch":117.9375,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":69.5625,"pitch":-58.1875,"roll":68.5},"location":"Right Ankle"},{"euler":{"heading":331.9375,"pitch":-137.4375,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":196.25,"pitch":-109.875,"roll":75.5625},"location":"Right Knee"},{"euler":{"heading":77.6875,"pitch":-134.625,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:05.645"} +{"sensors":[{"euler":{"heading":300.625,"pitch":164.375,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":115.75,"pitch":119.5,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":60.5,"pitch":-68.3125,"roll":55.9375},"location":"Right Ankle"},{"euler":{"heading":343.6875,"pitch":-127.75,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":223.5,"pitch":-98.5625,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":82.0625,"pitch":-137.0625,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:05.745"} +{"sensors":[{"euler":{"heading":306.125,"pitch":158.125,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":122.75,"pitch":123.625,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-72.125,"roll":62.1875},"location":"Right Ankle"},{"euler":{"heading":352.625,"pitch":-118.625,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":207.1875,"pitch":-92.1875,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":83.625,"pitch":-139.125,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:05.846"} +{"sensors":[{"euler":{"heading":312.1875,"pitch":152.375,"roll":55.0625},"location":"Left Knee"},{"euler":{"heading":125.9375,"pitch":127.25,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":-54.3125,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":357.1875,"pitch":-113.875,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":188.4375,"pitch":0.75,"roll":88.6875},"location":"Right Knee"},{"euler":{"heading":85.75,"pitch":-141.125,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:05.947"} +{"sensors":[{"euler":{"heading":317.5,"pitch":147.125,"roll":53.625},"location":"Left Knee"},{"euler":{"heading":129.75,"pitch":132.75,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":100.8125,"pitch":78.1875,"roll":75.625},"location":"Right Ankle"},{"euler":{"heading":355.5625,"pitch":-115.1875,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":169.0,"pitch":85.375,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":87.3125,"pitch":-143.9375,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:06.48"} +{"sensors":[{"euler":{"heading":321.875,"pitch":141.625,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":133.25,"pitch":142.4375,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":116.6875,"pitch":83.625,"roll":62.5625},"location":"Right Ankle"},{"euler":{"heading":348.9375,"pitch":-120.1875,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":88.0625,"roll":61.875},"location":"Right Knee"},{"euler":{"heading":88.5625,"pitch":-146.625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:06.149"} +{"sensors":[{"euler":{"heading":325.6875,"pitch":136.5,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":135.875,"pitch":163.125,"roll":76.0},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":82.625,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":342.0625,"pitch":-122.625,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":158.9375,"pitch":87.125,"roll":63.5625},"location":"Right Knee"},{"euler":{"heading":89.9375,"pitch":-151.6875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:06.250"} +{"sensors":[{"euler":{"heading":241.0625,"pitch":132.0625,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":144.4375,"pitch":-158.375,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":102.1875,"pitch":77.75,"roll":70.625},"location":"Right Ankle"},{"euler":{"heading":341.4375,"pitch":-122.1875,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":159.1875,"pitch":82.125,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":87.5625,"pitch":-148.25,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:06.351"} +{"sensors":[{"euler":{"heading":257.0625,"pitch":129.125,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":166.0625,"pitch":-128.9375,"roll":61.125},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":65.3125,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":336.1875,"pitch":-126.1875,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":87.5625,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":77.25,"pitch":-134.5,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:06.452"} +{"sensors":[{"euler":{"heading":249.5,"pitch":136.125,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":157.25,"pitch":-136.75,"roll":63.0625},"location":"Left Ankle"},{"euler":{"heading":94.8125,"pitch":58.375,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":333.25,"pitch":-128.125,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":164.8125,"pitch":89.625,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":69.1875,"pitch":-129.1875,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:06.553"} +{"sensors":[{"euler":{"heading":219.8125,"pitch":150.125,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":126.25,"pitch":163.75,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":49.0625,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":330.875,"pitch":-131.625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":168.375,"pitch":94.875,"roll":80.3125},"location":"Right Knee"},{"euler":{"heading":50.375,"pitch":-128.0,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:06.654"} +{"sensors":[{"euler":{"heading":283.3125,"pitch":169.8125,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":121.0,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":33.75,"roll":78.5625},"location":"Right Ankle"},{"euler":{"heading":328.8125,"pitch":-134.375,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":172.0,"pitch":174.5625,"roll":84.125},"location":"Right Knee"},{"euler":{"heading":51.125,"pitch":-128.9375,"roll":43.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:06.755"} +{"sensors":[{"euler":{"heading":269.1875,"pitch":-174.625,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":83.0625,"pitch":108.625,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":6.9375,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":328.25,"pitch":-138.4375,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":179.375,"pitch":179.9375,"roll":86.1875},"location":"Right Knee"},{"euler":{"heading":69.8125,"pitch":-133.8125,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:06.855"} +{"sensors":[{"euler":{"heading":276.6875,"pitch":-178.375,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":95.6875,"pitch":115.75,"roll":52.125},"location":"Left Ankle"},{"euler":{"heading":78.5,"pitch":-20.625,"roll":79.0625},"location":"Right Ankle"},{"euler":{"heading":327.375,"pitch":-143.9375,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":188.3125,"pitch":-118.1875,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":74.8125,"pitch":-134.9375,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:06.956"} +{"sensors":[{"euler":{"heading":292.25,"pitch":170.8125,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":107.3125,"pitch":119.1875,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-59.9375,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":332.5,"pitch":-139.25,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":200.9375,"pitch":-108.25,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":75.9375,"pitch":-134.9375,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:07.57"} +{"sensors":[{"euler":{"heading":301.4375,"pitch":163.0625,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":114.875,"pitch":121.8125,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":-68.875,"roll":60.125},"location":"Right Ankle"},{"euler":{"heading":343.9375,"pitch":-126.75,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":209.1875,"pitch":-102.75,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":64.25,"pitch":-137.5,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:07.157"} +{"sensors":[{"euler":{"heading":307.125,"pitch":157.0,"roll":54.4375},"location":"Left Knee"},{"euler":{"heading":124.3125,"pitch":128.125,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":-59.5625,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":352.625,"pitch":-117.5,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":201.3125,"pitch":-92.0,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":82.875,"pitch":-138.3125,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:07.258"} +{"sensors":[{"euler":{"heading":313.9375,"pitch":151.625,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":128.1875,"pitch":131.1875,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":86.5,"pitch":-2.75,"roll":83.375},"location":"Right Ankle"},{"euler":{"heading":356.9375,"pitch":-114.0,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":184.125,"pitch":86.5,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":85.5,"pitch":-141.625,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:07.359"} +{"sensors":[{"euler":{"heading":320.4375,"pitch":145.9375,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":132.25,"pitch":137.25,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":107.875,"pitch":80.8125,"roll":70.75},"location":"Right Ankle"},{"euler":{"heading":356.125,"pitch":-116.375,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":167.125,"pitch":88.75,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":88.9375,"pitch":-145.4375,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:07.460"} +{"sensors":[{"euler":{"heading":326.1875,"pitch":139.75,"roll":50.625},"location":"Left Knee"},{"euler":{"heading":137.3125,"pitch":151.6875,"roll":76.25},"location":"Left Ankle"},{"euler":{"heading":121.5625,"pitch":82.75,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":350.0,"pitch":-120.75,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":159.625,"pitch":90.375,"roll":60.0},"location":"Right Knee"},{"euler":{"heading":90.5625,"pitch":-148.0625,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:07.560"} +{"sensors":[{"euler":{"heading":331.875,"pitch":134.125,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":142.0625,"pitch":178.5,"roll":76.1875},"location":"Left Ankle"},{"euler":{"heading":113.5625,"pitch":82.5,"roll":64.3125},"location":"Right Ankle"},{"euler":{"heading":343.0,"pitch":-123.4375,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":157.625,"pitch":86.4375,"roll":62.875},"location":"Right Knee"},{"euler":{"heading":91.8125,"pitch":-151.0625,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:07.661"} +{"sensors":[{"euler":{"heading":247.8125,"pitch":129.375,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":150.875,"pitch":-145.6875,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":105.3125,"pitch":75.125,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":342.125,"pitch":-124.25,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":85.125,"roll":68.1875},"location":"Right Knee"},{"euler":{"heading":83.8125,"pitch":-143.3125,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:07.761"} +{"sensors":[{"euler":{"heading":257.8125,"pitch":128.3125,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":163.5,"pitch":-130.5625,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":102.0625,"pitch":64.9375,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":336.6875,"pitch":-127.875,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":162.75,"pitch":87.5625,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":72.75,"pitch":-132.3125,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:07.862"} +{"sensors":[{"euler":{"heading":246.0625,"pitch":136.625,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":154.3125,"pitch":-140.0,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":97.5,"pitch":59.25,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":333.8125,"pitch":-128.375,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":87.6875,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":64.125,"pitch":-127.9375,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:07.963"} +{"sensors":[{"euler":{"heading":304.375,"pitch":153.1875,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":120.5,"pitch":146.75,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":92.125,"pitch":50.4375,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":332.125,"pitch":-129.375,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":87.3125,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":51.875,"pitch":-126.625,"roll":42.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:08.64"} +{"sensors":[{"euler":{"heading":278.375,"pitch":174.125,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":115.375,"roll":54.4375},"location":"Left Ankle"},{"euler":{"heading":87.625,"pitch":33.9375,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":330.5625,"pitch":-131.875,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":173.625,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":51.625,"pitch":-127.875,"roll":42.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:08.164"} +{"sensors":[{"euler":{"heading":270.3125,"pitch":-173.9375,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":84.5,"pitch":110.3125,"roll":46.1875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":5.75,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":330.5625,"pitch":-134.5625,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":176.5625,"pitch":178.9375,"roll":87.375},"location":"Right Knee"},{"euler":{"heading":53.5625,"pitch":-132.5625,"roll":43.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:08.265"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":-179.6875,"roll":53.5625},"location":"Left Knee"},{"euler":{"heading":97.8125,"pitch":117.375,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-28.0625,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":330.75,"pitch":-139.0,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":186.75,"pitch":-118.75,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":74.125,"pitch":-134.6875,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:08.365"} +{"sensors":[{"euler":{"heading":291.9375,"pitch":171.3125,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":107.0,"pitch":118.75,"roll":59.625},"location":"Left Ankle"},{"euler":{"heading":71.375,"pitch":-61.125,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":339.3125,"pitch":-133.875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":199.8125,"pitch":-105.6875,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":74.0625,"pitch":-134.4375,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:08.466"} +{"sensors":[{"euler":{"heading":297.9375,"pitch":164.5,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":112.625,"pitch":120.75,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":69.75,"pitch":-67.3125,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":349.5625,"pitch":-121.4375,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":205.8125,"pitch":-93.75,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":78.125,"pitch":-136.9375,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:08.566"} +{"sensors":[{"euler":{"heading":302.75,"pitch":159.0,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":116.75,"pitch":122.6875,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":-35.5,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":356.3125,"pitch":-115.1875,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":-1.8125,"roll":88.125},"location":"Right Knee"},{"euler":{"heading":82.1875,"pitch":-139.5,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:08.667"} +{"sensors":[{"euler":{"heading":306.6875,"pitch":153.9375,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":118.5,"pitch":125.375,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":66.375,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":357.8125,"pitch":-112.75,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":83.9375,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":83.4375,"pitch":-142.25,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:08.767"} +{"sensors":[{"euler":{"heading":312.6875,"pitch":147.9375,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":122.375,"pitch":131.5625,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":113.625,"pitch":83.0,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":355.8125,"pitch":-115.6875,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":162.375,"pitch":88.875,"roll":61.8125},"location":"Right Knee"},{"euler":{"heading":85.75,"pitch":-144.4375,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:08.868"} +{"sensors":[{"euler":{"heading":318.1875,"pitch":141.8125,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":127.9375,"pitch":144.75,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":122.875,"pitch":82.0625,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":348.625,"pitch":-120.1875,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":155.75,"pitch":89.0625,"roll":57.125},"location":"Right Knee"},{"euler":{"heading":86.3125,"pitch":-146.4375,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:08.968"} +{"sensors":[{"euler":{"heading":324.125,"pitch":135.375,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":133.0,"pitch":169.9375,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":116.3125,"pitch":79.875,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":341.0,"pitch":-122.3125,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":87.5625,"roll":60.0},"location":"Right Knee"},{"euler":{"heading":88.25,"pitch":-151.625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:09.69"} +{"sensors":[{"euler":{"heading":244.6875,"pitch":130.0,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":144.9375,"pitch":-149.1875,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":106.125,"pitch":75.0625,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":340.375,"pitch":-123.25,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":155.8125,"pitch":83.375,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":84.0,"pitch":-145.4375,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:09.170"} +{"sensors":[{"euler":{"heading":254.25,"pitch":129.125,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":158.75,"pitch":-132.8125,"roll":60.4375},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":65.0625,"roll":71.1875},"location":"Right Ankle"},{"euler":{"heading":335.75,"pitch":-127.75,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":87.9375,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":72.5,"pitch":-131.875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:09.270"} +{"sensors":[{"euler":{"heading":243.625,"pitch":137.5625,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":149.125,"pitch":-140.9375,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":98.8125,"pitch":56.25,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":333.875,"pitch":-127.9375,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":162.5,"pitch":93.8125,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":66.0625,"pitch":-127.75,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:09.371"} +{"sensors":[{"euler":{"heading":300.25,"pitch":154.375,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":120.8125,"pitch":146.9375,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":94.6875,"pitch":48.1875,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":332.9375,"pitch":-129.25,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":165.875,"pitch":98.0,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-127.0625,"roll":43.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:09.472"} +{"sensors":[{"euler":{"heading":276.75,"pitch":175.0625,"roll":54.0625},"location":"Left Knee"},{"euler":{"heading":94.625,"pitch":114.5625,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":34.0625,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":332.1875,"pitch":-131.5,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":170.25,"pitch":108.1875,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":51.5,"pitch":-128.5,"roll":43.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:09.573"} +{"sensors":[{"euler":{"heading":270.0,"pitch":-174.375,"roll":53.375},"location":"Left Knee"},{"euler":{"heading":84.8125,"pitch":109.1875,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":9.8125,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":331.8125,"pitch":-134.1875,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":177.0,"roll":85.5},"location":"Right Knee"},{"euler":{"heading":53.375,"pitch":-132.375,"roll":44.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:09.674"} +{"sensors":[{"euler":{"heading":281.1875,"pitch":179.0,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":116.625,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-22.0625,"roll":76.3125},"location":"Right Ankle"},{"euler":{"heading":331.4375,"pitch":-139.375,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":186.1875,"pitch":-176.0,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":77.625,"pitch":-135.375,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:09.774"} +{"sensors":[{"euler":{"heading":294.1875,"pitch":169.625,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":106.9375,"pitch":118.6875,"roll":60.25},"location":"Left Ankle"},{"euler":{"heading":71.5625,"pitch":-62.0,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":339.4375,"pitch":-133.0625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":200.625,"pitch":-107.6875,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":78.125,"pitch":-135.75,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:09.874"} +{"sensors":[{"euler":{"heading":299.75,"pitch":162.3125,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":112.8125,"pitch":120.75,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":66.5,"pitch":-72.25,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":350.9375,"pitch":-121.75,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":209.0,"pitch":-96.3125,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-138.9375,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:09.975"} +{"sensors":[{"euler":{"heading":306.1875,"pitch":156.5625,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":121.375,"pitch":124.6875,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":76.5,"pitch":-61.1875,"roll":70.8125},"location":"Right Ankle"},{"euler":{"heading":357.5,"pitch":-114.5625,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":197.125,"pitch":-173.1875,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":86.1875,"pitch":-142.1875,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:10.77"} +{"sensors":[{"euler":{"heading":312.8125,"pitch":150.75,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":125.125,"pitch":127.4375,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":3.75,"roll":85.5625},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-112.75,"roll":44.875},"location":"Right Hip"},{"euler":{"heading":179.5,"pitch":88.4375,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":88.4375,"pitch":-145.0,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:10.177"} +{"sensors":[{"euler":{"heading":318.3125,"pitch":144.8125,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":129.3125,"pitch":135.75,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":114.6875,"pitch":81.6875,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":356.9375,"pitch":-116.6875,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":163.9375,"pitch":91.0625,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":89.875,"pitch":-148.5625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:10.278"} +{"sensors":[{"euler":{"heading":323.4375,"pitch":138.3125,"roll":50.125},"location":"Left Knee"},{"euler":{"heading":133.625,"pitch":155.6875,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":121.4375,"pitch":84.125,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":348.0,"pitch":-121.5625,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":155.9375,"pitch":87.0625,"roll":58.1875},"location":"Right Knee"},{"euler":{"heading":90.1875,"pitch":-151.3125,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:10.379"} +{"sensors":[{"euler":{"heading":329.1875,"pitch":132.8125,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":140.1875,"pitch":-169.4375,"roll":75.1875},"location":"Left Ankle"},{"euler":{"heading":111.625,"pitch":81.8125,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":341.75,"pitch":-124.1875,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":83.8125,"roll":61.8125},"location":"Right Knee"},{"euler":{"heading":91.625,"pitch":-153.0,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:10.480"} +{"sensors":[{"euler":{"heading":249.1875,"pitch":129.5,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":154.625,"pitch":-136.0625,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":104.0,"pitch":75.75,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":339.5,"pitch":-125.4375,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":84.0,"roll":67.8125},"location":"Right Knee"},{"euler":{"heading":82.625,"pitch":-143.5,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:10.580"} +{"sensors":[{"euler":{"heading":258.3125,"pitch":129.375,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":165.1875,"pitch":-127.1875,"roll":57.1875},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":66.9375,"roll":71.25},"location":"Right Ankle"},{"euler":{"heading":335.0625,"pitch":-128.625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":159.5,"pitch":85.125,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":70.75,"pitch":-131.875,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:10.682"} +{"sensors":[{"euler":{"heading":241.1875,"pitch":139.3125,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":147.4375,"pitch":-148.1875,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":96.4375,"pitch":58.1875,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":332.0,"pitch":-129.75,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":160.6875,"pitch":86.5625,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":61.75,"pitch":-127.625,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:10.783"} +{"sensors":[{"euler":{"heading":297.375,"pitch":156.875,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":117.4375,"pitch":141.125,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":51.625,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":330.1875,"pitch":-130.875,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":87.4375,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":50.125,"pitch":-127.0625,"roll":42.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:10.883"} +{"sensors":[{"euler":{"heading":275.4375,"pitch":176.6875,"roll":53.5625},"location":"Left Knee"},{"euler":{"heading":91.375,"pitch":113.25,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":39.875,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":328.9375,"pitch":-134.0625,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":166.3125,"pitch":95.75,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":49.25,"pitch":-129.125,"roll":43.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:10.984"} +{"sensors":[{"euler":{"heading":269.0625,"pitch":-173.8125,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":82.8125,"pitch":108.625,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":84.125,"pitch":19.3125,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":328.25,"pitch":-138.0,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":173.4375,"pitch":177.125,"roll":86.375},"location":"Right Knee"},{"euler":{"heading":69.5,"pitch":-134.3125,"roll":45.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:11.85"} +{"sensors":[{"euler":{"heading":280.875,"pitch":178.9375,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":96.4375,"pitch":116.125,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":-12.5,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":327.375,"pitch":-143.125,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":184.0625,"pitch":-175.5625,"roll":84.375},"location":"Right Knee"},{"euler":{"heading":76.125,"pitch":-136.625,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:11.186"} +{"sensors":[{"euler":{"heading":294.4375,"pitch":169.0625,"roll":54.0},"location":"Left Knee"},{"euler":{"heading":106.9375,"pitch":118.0625,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":-53.3125,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":337.4375,"pitch":-136.5,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":198.875,"pitch":-110.3125,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-137.5,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:11.287"} +{"sensors":[{"euler":{"heading":302.8125,"pitch":161.25,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":115.125,"pitch":119.0,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":72.1875,"pitch":-57.1875,"roll":69.125},"location":"Right Ankle"},{"euler":{"heading":347.9375,"pitch":-122.375,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":202.0,"pitch":-91.875,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":82.4375,"pitch":-140.625,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:11.388"} +{"sensors":[{"euler":{"heading":309.25,"pitch":155.625,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":121.25,"pitch":122.4375,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":-17.25,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":355.1875,"pitch":-115.625,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":189.0625,"pitch":179.375,"roll":89.25},"location":"Right Knee"},{"euler":{"heading":86.375,"pitch":-143.125,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:11.489"} +{"sensors":[{"euler":{"heading":314.9375,"pitch":150.1875,"roll":53.625},"location":"Left Knee"},{"euler":{"heading":125.1875,"pitch":126.4375,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":102.875,"pitch":70.8125,"roll":75.625},"location":"Right Ankle"},{"euler":{"heading":355.75,"pitch":-116.9375,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":172.6875,"pitch":91.5625,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":87.375,"pitch":-145.625,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:11.590"} +{"sensors":[{"euler":{"heading":319.25,"pitch":144.8125,"roll":51.6875},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":134.0,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":118.1875,"pitch":81.0,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":349.25,"pitch":-121.0625,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":160.25,"pitch":91.0,"roll":60.9375},"location":"Right Knee"},{"euler":{"heading":87.4375,"pitch":-148.625,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:11.690"} +{"sensors":[{"euler":{"heading":323.9375,"pitch":138.75,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":133.9375,"pitch":153.75,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":114.5,"pitch":82.5625,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":342.125,"pitch":-124.0625,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":156.0625,"pitch":84.625,"roll":60.375},"location":"Right Knee"},{"euler":{"heading":86.6875,"pitch":-150.125,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:11.791"} +{"sensors":[{"euler":{"heading":244.5625,"pitch":131.625,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":144.6875,"pitch":-147.875,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":105.0,"pitch":75.4375,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":341.0,"pitch":-124.375,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":156.3125,"pitch":83.0,"roll":64.75},"location":"Right Knee"},{"euler":{"heading":83.875,"pitch":-142.6875,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:11.892"} +{"sensors":[{"euler":{"heading":251.5,"pitch":130.1875,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":157.3125,"pitch":-135.25,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":101.0,"pitch":64.25,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":335.375,"pitch":-128.75,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":87.8125,"roll":70.1875},"location":"Right Knee"},{"euler":{"heading":70.3125,"pitch":-132.0,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:11.993"} +{"sensors":[{"euler":{"heading":246.375,"pitch":135.0625,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":152.75,"pitch":-133.1875,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":56.6875,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":333.8125,"pitch":-130.8125,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":162.9375,"pitch":93.875,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":64.5,"pitch":-127.625,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:12.94"} +{"sensors":[{"euler":{"heading":223.125,"pitch":148.1875,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":132.75,"pitch":167.75,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":94.8125,"pitch":48.25,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":332.0,"pitch":-132.875,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":98.9375,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":50.875,"pitch":-126.75,"roll":43.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:12.195"} +{"sensors":[{"euler":{"heading":286.5,"pitch":167.75,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":103.125,"pitch":121.4375,"roll":59.0},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":36.875,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":330.4375,"pitch":-136.1875,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":171.0625,"pitch":108.5625,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":51.0625,"pitch":-128.125,"roll":43.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:12.297"} +{"sensors":[{"euler":{"heading":271.3125,"pitch":-175.1875,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":85.75,"pitch":108.75,"roll":46.4375},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":15.875,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":329.8125,"pitch":-140.1875,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":176.4375,"roll":84.6875},"location":"Right Knee"},{"euler":{"heading":51.0625,"pitch":-132.0625,"roll":43.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:12.397"} +{"sensors":[{"euler":{"heading":271.625,"pitch":-173.6875,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":113.0625,"roll":48.5},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":-11.25,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":328.8125,"pitch":-144.8125,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":184.6875,"pitch":-177.625,"roll":85.0625},"location":"Right Knee"},{"euler":{"heading":53.4375,"pitch":-133.25,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:12.497"} +{"sensors":[{"euler":{"heading":287.1875,"pitch":176.3125,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":103.0,"pitch":116.125,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-44.75,"roll":72.0},"location":"Right Ankle"},{"euler":{"heading":329.25,"pitch":-147.625,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":196.5625,"pitch":-114.875,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":77.4375,"pitch":-135.8125,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:12.598"} +{"sensors":[{"euler":{"heading":298.25,"pitch":167.5625,"roll":53.875},"location":"Left Knee"},{"euler":{"heading":112.125,"pitch":118.75,"roll":61.3125},"location":"Left Ankle"},{"euler":{"heading":66.9375,"pitch":-61.375,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":341.5,"pitch":-135.6875,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":204.125,"pitch":-104.5625,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":81.875,"pitch":-138.0,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:12.698"} +{"sensors":[{"euler":{"heading":301.875,"pitch":161.3125,"roll":54.375},"location":"Left Knee"},{"euler":{"heading":118.125,"pitch":123.0,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":-60.125,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":350.25,"pitch":-122.1875,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":202.3125,"pitch":-91.75,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":83.0625,"pitch":-140.25,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:12.799"} +{"sensors":[{"euler":{"heading":305.5,"pitch":155.8125,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":118.9375,"pitch":124.6875,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":-46.1875,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":354.8125,"pitch":-116.5625,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":186.875,"pitch":4.1875,"roll":85.6875},"location":"Right Knee"},{"euler":{"heading":86.0,"pitch":-143.5625,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:12.900"} +{"sensors":[{"euler":{"heading":311.5,"pitch":150.0,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":123.4375,"pitch":129.0,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":104.3125,"pitch":78.625,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":355.0625,"pitch":-116.3125,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":168.8125,"pitch":87.875,"roll":68.9375},"location":"Right Knee"},{"euler":{"heading":87.875,"pitch":-145.9375,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:13.1"} +{"sensors":[{"euler":{"heading":317.6875,"pitch":143.6875,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":128.8125,"pitch":138.0,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":120.625,"pitch":81.4375,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":349.5,"pitch":-120.625,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":157.75,"pitch":90.875,"roll":58.3125},"location":"Right Knee"},{"euler":{"heading":89.0,"pitch":-149.9375,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:13.102"} +{"sensors":[{"euler":{"heading":324.4375,"pitch":137.625,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":133.75,"pitch":157.0,"roll":75.875},"location":"Left Ankle"},{"euler":{"heading":119.6875,"pitch":81.9375,"roll":59.75},"location":"Right Ankle"},{"euler":{"heading":343.3125,"pitch":-122.25,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":154.25,"pitch":87.5,"roll":57.5},"location":"Right Knee"},{"euler":{"heading":91.875,"pitch":-155.5625,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:13.202"} +{"sensors":[{"euler":{"heading":243.5,"pitch":131.625,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":-163.6875,"roll":71.75},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":74.9375,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":340.3125,"pitch":-124.625,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":155.8125,"pitch":83.125,"roll":63.5625},"location":"Right Knee"},{"euler":{"heading":91.1875,"pitch":-154.375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:13.303"} +{"sensors":[{"euler":{"heading":259.625,"pitch":128.1875,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":165.75,"pitch":-132.6875,"roll":61.125},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":66.75,"roll":72.75},"location":"Right Ankle"},{"euler":{"heading":336.1875,"pitch":-127.125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":159.25,"pitch":86.375,"roll":69.75},"location":"Right Knee"},{"euler":{"heading":82.0,"pitch":-139.75,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:13.405"} +{"sensors":[{"euler":{"heading":252.25,"pitch":134.5,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":156.6875,"pitch":-143.0625,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":55.75,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":333.75,"pitch":-128.9375,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":161.4375,"pitch":88.875,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":73.5,"pitch":-131.625,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:13.506"} +{"sensors":[{"euler":{"heading":221.0,"pitch":149.875,"roll":44.0625},"location":"Left Knee"},{"euler":{"heading":127.6875,"pitch":168.25,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":91.375,"pitch":43.9375,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":332.125,"pitch":-131.875,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":166.25,"pitch":94.375,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":66.4375,"pitch":-128.875,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:13.606"} +{"sensors":[{"euler":{"heading":282.5,"pitch":172.0625,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":98.5625,"pitch":121.25,"roll":57.6875},"location":"Left Ankle"},{"euler":{"heading":87.9375,"pitch":25.4375,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":330.8125,"pitch":-136.5625,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":108.75,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":50.8125,"pitch":-130.0625,"roll":44.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:13.707"} +{"sensors":[{"euler":{"heading":269.25,"pitch":-172.9375,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":84.125,"pitch":108.625,"roll":46.125},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":-4.9375,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":330.0,"pitch":-141.0,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":177.9375,"roll":85.5625},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-133.3125,"roll":44.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:13.807"} +{"sensors":[{"euler":{"heading":280.75,"pitch":-179.0,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":115.75,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-35.125,"roll":73.5},"location":"Right Ankle"},{"euler":{"heading":328.9375,"pitch":-146.8125,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":187.5625,"pitch":-128.25,"roll":83.125},"location":"Right Knee"},{"euler":{"heading":75.875,"pitch":-134.6875,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:13.908"} +{"sensors":[{"euler":{"heading":291.4375,"pitch":171.875,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":105.5,"pitch":117.75,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":67.5,"pitch":-61.4375,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":351.0625,"pitch":-140.0,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":199.3125,"pitch":-111.75,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":76.0625,"pitch":-135.75,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:14.9"} +{"sensors":[{"euler":{"heading":302.1875,"pitch":163.9375,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":116.5,"pitch":120.1875,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":66.9375,"pitch":-66.4375,"roll":62.0},"location":"Right Ankle"},{"euler":{"heading":344.375,"pitch":-122.9375,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":203.625,"pitch":-93.6875,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":81.25,"pitch":-136.8125,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:14.110"} +{"sensors":[{"euler":{"heading":308.75,"pitch":157.125,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":123.25,"pitch":122.6875,"roll":68.375},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-58.875,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":353.625,"pitch":-116.875,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":191.8125,"pitch":-178.3125,"roll":88.25},"location":"Right Knee"},{"euler":{"heading":84.6875,"pitch":-139.375,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:14.210"} +{"sensors":[{"euler":{"heading":314.875,"pitch":150.125,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":125.875,"pitch":126.625,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":56.625,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":357.0,"pitch":-113.5,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":174.3125,"pitch":84.4375,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":86.9375,"pitch":-143.5,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:14.311"} +{"sensors":[{"euler":{"heading":321.0625,"pitch":143.8125,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":129.5,"pitch":134.5625,"roll":73.0625},"location":"Left Ankle"},{"euler":{"heading":114.5625,"pitch":83.0,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":352.6875,"pitch":-117.75,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":159.0,"pitch":86.5625,"roll":59.4375},"location":"Right Knee"},{"euler":{"heading":89.0625,"pitch":-147.625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:14.411"} +{"sensors":[{"euler":{"heading":325.5,"pitch":137.8125,"roll":47.875},"location":"Left Knee"},{"euler":{"heading":133.9375,"pitch":151.375,"roll":75.5},"location":"Left Ankle"},{"euler":{"heading":121.3125,"pitch":81.9375,"roll":59.5},"location":"Right Ankle"},{"euler":{"heading":345.5625,"pitch":-122.0,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":153.6875,"pitch":87.875,"roll":55.3125},"location":"Right Knee"},{"euler":{"heading":90.5,"pitch":-152.9375,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:14.512"} +{"sensors":[{"euler":{"heading":245.75,"pitch":131.5625,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":-170.5625,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":108.1875,"pitch":81.0,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":341.625,"pitch":-123.3125,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":152.9375,"pitch":82.0,"roll":59.875},"location":"Right Knee"},{"euler":{"heading":93.8125,"pitch":-155.875,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:14.613"} +{"sensors":[{"euler":{"heading":258.5,"pitch":128.9375,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":166.0625,"pitch":-131.5625,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":99.1875,"pitch":73.4375,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":337.0625,"pitch":-124.5625,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":152.9375,"pitch":80.125,"roll":64.375},"location":"Right Knee"},{"euler":{"heading":78.0,"pitch":-140.4375,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:14.715"} +{"sensors":[{"euler":{"heading":256.625,"pitch":133.0625,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":165.625,"pitch":-129.3125,"roll":58.9375},"location":"Left Ankle"},{"euler":{"heading":93.6875,"pitch":62.125,"roll":74.1875},"location":"Right Ankle"},{"euler":{"heading":334.25,"pitch":-126.3125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":155.9375,"pitch":80.625,"roll":69.9375},"location":"Right Knee"},{"euler":{"heading":66.1875,"pitch":-130.75,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:14.815"} +{"sensors":[{"euler":{"heading":225.0,"pitch":148.1875,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":133.5625,"pitch":-179.0625,"roll":72.5},"location":"Left Ankle"},{"euler":{"heading":89.5,"pitch":51.9375,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":331.6875,"pitch":-127.5625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":157.3125,"pitch":79.625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":49.1875,"pitch":-126.5,"roll":43.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:14.916"} +{"sensors":[{"euler":{"heading":283.1875,"pitch":170.0,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":121.8125,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":85.5,"pitch":37.75,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":330.875,"pitch":-130.375,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":160.875,"pitch":80.375,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":51.4375,"pitch":-127.125,"roll":42.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:15.17"} +{"sensors":[{"euler":{"heading":269.5625,"pitch":-173.875,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":84.6875,"pitch":107.375,"roll":47.1875},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":13.125,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":330.5,"pitch":-133.3125,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":167.25,"pitch":6.5625,"roll":83.375},"location":"Right Knee"},{"euler":{"heading":52.875,"pitch":-130.8125,"roll":43.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:15.117"} +{"sensors":[{"euler":{"heading":280.375,"pitch":-178.375,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":95.4375,"pitch":113.5625,"roll":50.375},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":-20.4375,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":331.0625,"pitch":-137.9375,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":177.0625,"pitch":-179.4375,"roll":88.3125},"location":"Right Knee"},{"euler":{"heading":74.4375,"pitch":-134.0625,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:15.218"} +{"sensors":[{"euler":{"heading":291.6875,"pitch":171.5,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":105.0625,"pitch":117.3125,"roll":57.625},"location":"Left Ankle"},{"euler":{"heading":70.3125,"pitch":-54.1875,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":335.5625,"pitch":-135.375,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":191.875,"pitch":-111.5,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":74.375,"pitch":-134.0,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:15.319"} +{"sensors":[{"euler":{"heading":298.8125,"pitch":164.3125,"roll":54.0625},"location":"Left Knee"},{"euler":{"heading":110.1875,"pitch":118.6875,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-62.25,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":344.5,"pitch":-123.8125,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":201.625,"pitch":-103.1875,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-137.5625,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:15.420"} +{"sensors":[{"euler":{"heading":301.625,"pitch":158.4375,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":116.8125,"pitch":123.0625,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":84.0,"pitch":-33.25,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":353.0,"pitch":-117.3125,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":191.25,"pitch":-175.875,"roll":85.8125},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-141.3125,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:15.521"} +{"sensors":[{"euler":{"heading":309.9375,"pitch":151.8125,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":120.75,"pitch":125.25,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":56.9375,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":357.0,"pitch":-114.0625,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":84.4375,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":84.8125,"pitch":-143.875,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:15.622"} +{"sensors":[{"euler":{"heading":316.8125,"pitch":145.125,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":126.0625,"pitch":133.75,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":114.375,"pitch":81.5625,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":354.5625,"pitch":-116.3125,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":86.5,"roll":60.875},"location":"Right Knee"},{"euler":{"heading":85.75,"pitch":-147.625,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:15.722"} +{"sensors":[{"euler":{"heading":322.375,"pitch":139.1875,"roll":48.0},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":149.625,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":123.25,"pitch":80.5625,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":348.375,"pitch":-120.1875,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":152.6875,"pitch":89.4375,"roll":54.1875},"location":"Right Knee"},{"euler":{"heading":87.125,"pitch":-152.5,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:15.823"} +{"sensors":[{"euler":{"heading":238.875,"pitch":133.4375,"roll":42.8125},"location":"Left Knee"},{"euler":{"heading":139.6875,"pitch":-173.5625,"roll":74.5625},"location":"Left Ankle"},{"euler":{"heading":111.5625,"pitch":79.3125,"roll":64.875},"location":"Right Ankle"},{"euler":{"heading":343.9375,"pitch":-121.3125,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":152.8125,"pitch":84.25,"roll":58.3125},"location":"Right Knee"},{"euler":{"heading":89.3125,"pitch":-156.625,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:15.924"} +{"sensors":[{"euler":{"heading":254.9375,"pitch":128.6875,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":162.6875,"pitch":-132.5625,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":103.1875,"pitch":70.8125,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":342.25,"pitch":-122.3125,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":156.25,"pitch":85.0625,"roll":65.0625},"location":"Right Knee"},{"euler":{"heading":80.0,"pitch":-142.8125,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:16.25"} +{"sensors":[{"euler":{"heading":259.875,"pitch":130.75,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":165.875,"pitch":-128.125,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":58.875,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":338.125,"pitch":-124.6875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":158.5,"pitch":88.1875,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":68.125,"pitch":-130.375,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:16.126"} +{"sensors":[{"euler":{"heading":236.6875,"pitch":158.625,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":139.9375,"pitch":-166.3125,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":52.125,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":335.4375,"pitch":-126.625,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":160.5625,"pitch":90.1875,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":49.3125,"pitch":-127.5,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:16.227"} +{"sensors":[{"euler":{"heading":291.625,"pitch":165.125,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":107.1875,"pitch":126.6875,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":40.8125,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":333.1875,"pitch":-130.1875,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":93.125,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":50.9375,"pitch":-127.8125,"roll":42.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:16.328"} +{"sensors":[{"euler":{"heading":273.4375,"pitch":-176.8125,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":87.125,"pitch":109.625,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":23.25,"roll":77.375},"location":"Right Ankle"},{"euler":{"heading":331.9375,"pitch":-134.1875,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":169.0,"pitch":109.3125,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-130.9375,"roll":43.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:16.428"} +{"sensors":[{"euler":{"heading":268.1875,"pitch":-172.0625,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":86.4375,"pitch":108.4375,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":81.1875,"pitch":-6.5,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":330.0625,"pitch":-141.9375,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":177.9375,"pitch":179.3125,"roll":86.125},"location":"Right Knee"},{"euler":{"heading":71.875,"pitch":-133.5,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:16.529"} +{"sensors":[{"euler":{"heading":288.9375,"pitch":175.6875,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":105.0625,"pitch":117.375,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":75.0,"pitch":-38.6875,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":330.375,"pitch":-145.6875,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":191.0625,"pitch":-121.4375,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":79.0625,"pitch":-135.3125,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:16.630"} +{"sensors":[{"euler":{"heading":300.9375,"pitch":164.875,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":116.0625,"pitch":121.1875,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":68.8125,"pitch":-61.0625,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":342.5,"pitch":-132.6875,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":202.875,"pitch":-102.0625,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":81.5625,"pitch":-136.25,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:16.730"} +{"sensors":[{"euler":{"heading":306.375,"pitch":157.75,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":125.75,"pitch":128.8125,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-55.5,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":350.9375,"pitch":-121.4375,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":200.75,"pitch":-97.1875,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":82.8125,"pitch":-139.375,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:16.832"} +{"sensors":[{"euler":{"heading":312.375,"pitch":151.75,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":128.5,"pitch":132.625,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":91.9375,"pitch":12.5,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":357.4375,"pitch":-115.0625,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":184.1875,"pitch":5.9375,"roll":84.0},"location":"Right Knee"},{"euler":{"heading":86.0,"pitch":-142.625,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:16.932"} +{"sensors":[{"euler":{"heading":320.125,"pitch":145.375,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":133.625,"pitch":141.0,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":107.6875,"pitch":78.5,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":358.4375,"pitch":-115.5,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":163.6875,"pitch":86.6875,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":88.3125,"pitch":-146.1875,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:17.33"} +{"sensors":[{"euler":{"heading":326.5,"pitch":139.0625,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":139.5625,"pitch":159.5,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":124.0,"pitch":80.6875,"roll":58.0625},"location":"Right Ankle"},{"euler":{"heading":352.75,"pitch":-120.25,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":154.4375,"pitch":91.0,"roll":54.1875},"location":"Right Knee"},{"euler":{"heading":90.25,"pitch":-150.75,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:17.134"} +{"sensors":[{"euler":{"heading":241.8125,"pitch":133.0625,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":145.0,"pitch":-166.375,"roll":75.5625},"location":"Left Ankle"},{"euler":{"heading":115.9375,"pitch":79.75,"roll":63.4375},"location":"Right Ankle"},{"euler":{"heading":347.4375,"pitch":-121.375,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":87.1875,"roll":57.5625},"location":"Right Knee"},{"euler":{"heading":91.625,"pitch":-155.25,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:17.234"} +{"sensors":[{"euler":{"heading":251.9375,"pitch":130.3125,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":163.75,"pitch":-132.3125,"roll":62.4375},"location":"Left Ankle"},{"euler":{"heading":105.3125,"pitch":72.9375,"roll":70.25},"location":"Right Ankle"},{"euler":{"heading":345.6875,"pitch":-121.6875,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":156.25,"pitch":84.375,"roll":63.5},"location":"Right Knee"},{"euler":{"heading":85.0625,"pitch":-148.0,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:17.335"} +{"sensors":[{"euler":{"heading":263.9375,"pitch":129.5,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":171.0625,"pitch":-126.375,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":102.0,"pitch":63.5,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":340.0,"pitch":-124.75,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":158.5,"pitch":87.8125,"roll":68.125},"location":"Right Knee"},{"euler":{"heading":73.6875,"pitch":-134.375,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:17.435"} +{"sensors":[{"euler":{"heading":242.9375,"pitch":141.75,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":144.8125,"pitch":-154.9375,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":58.4375,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":336.3125,"pitch":-127.3125,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":159.0,"pitch":88.0625,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-129.4375,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:17.536"} +{"sensors":[{"euler":{"heading":291.6875,"pitch":164.0625,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":127.3125,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":93.375,"pitch":48.875,"roll":75.4375},"location":"Right Ankle"},{"euler":{"heading":334.4375,"pitch":-130.125,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":161.4375,"pitch":87.9375,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":50.6875,"pitch":-129.1875,"roll":42.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:17.636"} +{"sensors":[{"euler":{"heading":270.5625,"pitch":-175.3125,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":86.3125,"pitch":109.5625,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":29.4375,"roll":78.3125},"location":"Right Ankle"},{"euler":{"heading":333.3125,"pitch":-132.8125,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":168.375,"pitch":93.375,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-131.5,"roll":43.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:17.737"} +{"sensors":[{"euler":{"heading":274.8125,"pitch":-176.5625,"roll":50.625},"location":"Left Knee"},{"euler":{"heading":91.5625,"pitch":114.1875,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":-4.5,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":333.25,"pitch":-136.625,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":178.5,"pitch":179.875,"roll":88.4375},"location":"Right Knee"},{"euler":{"heading":53.25,"pitch":-134.25,"roll":44.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:17.838"} +{"sensors":[{"euler":{"heading":290.5625,"pitch":173.1875,"roll":52.125},"location":"Left Knee"},{"euler":{"heading":106.4375,"pitch":120.4375,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":75.75,"pitch":-44.5,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":337.6875,"pitch":-134.75,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":193.5,"pitch":-113.375,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":72.1875,"pitch":-133.3125,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:17.939"} +{"sensors":[{"euler":{"heading":298.9375,"pitch":165.5,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":111.9375,"pitch":122.125,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-64.9375,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":347.875,"pitch":-124.0,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":201.5,"pitch":-98.25,"roll":75.125},"location":"Right Knee"},{"euler":{"heading":75.375,"pitch":-135.8125,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:18.40"} +{"sensors":[{"euler":{"heading":305.375,"pitch":159.3125,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":121.0625,"pitch":126.375,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":84.125,"pitch":-29.9375,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":355.9375,"pitch":-118.125,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":190.8125,"pitch":-178.4375,"roll":88.4375},"location":"Right Knee"},{"euler":{"heading":78.75,"pitch":-137.6875,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:18.140"} +{"sensors":[{"euler":{"heading":314.5625,"pitch":152.25,"roll":53.375},"location":"Left Knee"},{"euler":{"heading":127.0,"pitch":130.8125,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":99.125,"pitch":55.5625,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-114.5625,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":174.3125,"pitch":86.1875,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":84.125,"pitch":-141.1875,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:18.241"} +{"sensors":[{"euler":{"heading":322.625,"pitch":145.0625,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":131.1875,"pitch":138.8125,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":115.5,"pitch":79.0625,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":357.75,"pitch":-116.6875,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":91.25,"roll":59.0},"location":"Right Knee"},{"euler":{"heading":87.1875,"pitch":-145.4375,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:18.342"} +{"sensors":[{"euler":{"heading":328.4375,"pitch":138.5,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":156.4375,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":122.5,"pitch":80.8125,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":350.875,"pitch":-120.1875,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":152.4375,"pitch":88.8125,"roll":53.625},"location":"Right Knee"},{"euler":{"heading":88.625,"pitch":-150.25,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:18.442"} +{"sensors":[{"euler":{"heading":243.125,"pitch":132.9375,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":141.6875,"pitch":-170.8125,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":110.6875,"pitch":78.875,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-121.8125,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":151.625,"pitch":84.1875,"roll":57.1875},"location":"Right Knee"},{"euler":{"heading":89.5,"pitch":-153.6875,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:18.543"} +{"sensors":[{"euler":{"heading":256.75,"pitch":129.0,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":168.0,"pitch":-129.4375,"roll":59.5625},"location":"Left Ankle"},{"euler":{"heading":101.1875,"pitch":72.3125,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":343.4375,"pitch":-120.9375,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":82.8125,"roll":63.5},"location":"Right Knee"},{"euler":{"heading":78.0625,"pitch":-139.5,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:18.644"} +{"sensors":[{"euler":{"heading":259.75,"pitch":131.875,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":167.25,"pitch":-130.25,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":99.8125,"pitch":62.1875,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":339.75,"pitch":-123.875,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":156.75,"pitch":85.4375,"roll":67.875},"location":"Right Knee"},{"euler":{"heading":68.25,"pitch":-130.75,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:18.745"} +{"sensors":[{"euler":{"heading":236.125,"pitch":145.1875,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":138.0,"pitch":-175.125,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":97.25,"pitch":55.625,"roll":73.125},"location":"Right Ankle"},{"euler":{"heading":336.5,"pitch":-125.6875,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":158.6875,"pitch":88.1875,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":50.5,"pitch":-128.125,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:18.845"} +{"sensors":[{"euler":{"heading":290.1875,"pitch":166.4375,"roll":50.875},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":125.5625,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":46.375,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":335.0,"pitch":-129.25,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":162.0,"pitch":90.125,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":50.9375,"pitch":-128.625,"roll":42.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:18.945"} +{"sensors":[{"euler":{"heading":272.875,"pitch":-176.0625,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":87.375,"pitch":109.625,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":87.9375,"pitch":28.8125,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":333.1875,"pitch":-132.5,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":167.375,"pitch":111.875,"roll":81.125},"location":"Right Knee"},{"euler":{"heading":51.375,"pitch":-131.25,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:19.46"} +{"sensors":[{"euler":{"heading":281.625,"pitch":-179.375,"roll":52.375},"location":"Left Knee"},{"euler":{"heading":98.9375,"pitch":116.4375,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":81.9375,"pitch":-7.875,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":333.0625,"pitch":-138.4375,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":178.625,"roll":87.25},"location":"Right Knee"},{"euler":{"heading":75.0625,"pitch":-134.4375,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:19.147"} +{"sensors":[{"euler":{"heading":295.75,"pitch":170.6875,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":111.8125,"pitch":120.3125,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-47.4375,"roll":71.3125},"location":"Right Ankle"},{"euler":{"heading":338.5,"pitch":-136.0,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":193.75,"pitch":-110.6875,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":75.875,"pitch":-133.9375,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:19.247"} +{"sensors":[{"euler":{"heading":306.5625,"pitch":162.4375,"roll":53.5625},"location":"Left Knee"},{"euler":{"heading":118.1875,"pitch":121.1875,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-54.625,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":347.5,"pitch":-125.8125,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":199.5625,"pitch":-100.8125,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":81.375,"pitch":-137.1875,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:19.347"} +{"sensors":[{"euler":{"heading":310.1875,"pitch":156.1875,"roll":54.0},"location":"Left Knee"},{"euler":{"heading":125.9375,"pitch":127.6875,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":89.75,"pitch":-10.5,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":356.6875,"pitch":-118.875,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":190.875,"pitch":177.875,"roll":88.5625},"location":"Right Knee"},{"euler":{"heading":84.8125,"pitch":-141.6875,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:19.448"} +{"sensors":[{"euler":{"heading":315.0625,"pitch":150.1875,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":126.25,"pitch":131.5,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":71.625,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":357.875,"pitch":-116.0,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":172.5,"pitch":86.9375,"roll":70.1875},"location":"Right Knee"},{"euler":{"heading":86.0,"pitch":-145.4375,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:19.549"} +{"sensors":[{"euler":{"heading":321.625,"pitch":143.75,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":131.5625,"pitch":142.9375,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":119.25,"pitch":82.375,"roll":60.875},"location":"Right Ankle"},{"euler":{"heading":352.125,"pitch":-119.625,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":156.375,"pitch":89.75,"roll":56.875},"location":"Right Knee"},{"euler":{"heading":87.0625,"pitch":-150.0625,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:19.650"} +{"sensors":[{"euler":{"heading":328.0,"pitch":137.0,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":136.75,"pitch":163.0625,"roll":75.8125},"location":"Left Ankle"},{"euler":{"heading":121.3125,"pitch":80.6875,"roll":58.75},"location":"Right Ankle"},{"euler":{"heading":347.4375,"pitch":-121.25,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":87.75,"roll":55.875},"location":"Right Knee"},{"euler":{"heading":90.875,"pitch":-156.875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:19.751"} +{"sensors":[{"euler":{"heading":246.625,"pitch":131.8125,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":146.3125,"pitch":-152.5,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":107.375,"pitch":76.375,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":345.0,"pitch":-121.1875,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":154.8125,"pitch":82.4375,"roll":61.875},"location":"Right Knee"},{"euler":{"heading":91.375,"pitch":-155.0,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:19.852"} +{"sensors":[{"euler":{"heading":261.9375,"pitch":128.6875,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":170.4375,"pitch":-127.5625,"roll":58.0},"location":"Left Ankle"},{"euler":{"heading":101.4375,"pitch":68.6875,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":339.125,"pitch":-123.6875,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":156.3125,"pitch":84.375,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":76.9375,"pitch":-138.4375,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:19.953"} +{"sensors":[{"euler":{"heading":254.375,"pitch":136.3125,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":156.9375,"pitch":-146.25,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":58.875,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":337.375,"pitch":-125.9375,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":158.3125,"pitch":85.5,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":67.125,"pitch":-130.875,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:20.53"} +{"sensors":[{"euler":{"heading":219.25,"pitch":153.375,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":125.625,"pitch":149.0,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":51.625,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":335.5,"pitch":-127.3125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":161.0,"pitch":86.375,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":49.5625,"pitch":-128.75,"roll":43.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:20.154"} +{"sensors":[{"euler":{"heading":278.5625,"pitch":175.8125,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":94.1875,"pitch":114.75,"roll":52.5},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":38.875,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":334.125,"pitch":-130.3125,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":164.875,"pitch":87.1875,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":50.625,"pitch":-130.125,"roll":43.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:20.255"} +{"sensors":[{"euler":{"heading":272.5,"pitch":-173.9375,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":86.125,"pitch":111.3125,"roll":45.1875},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":1.0625,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":333.125,"pitch":-134.4375,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":172.0,"pitch":174.875,"roll":84.875},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-134.375,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:20.355"} +{"sensors":[{"euler":{"heading":287.0625,"pitch":177.8125,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":122.125,"roll":54.625},"location":"Left Ankle"},{"euler":{"heading":78.125,"pitch":-24.0,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":332.0625,"pitch":-139.75,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":183.9375,"pitch":-176.125,"roll":84.8125},"location":"Right Knee"},{"euler":{"heading":76.4375,"pitch":-135.0625,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:20.455"} +{"sensors":[{"euler":{"heading":298.875,"pitch":167.8125,"roll":51.25},"location":"Left Knee"},{"euler":{"heading":114.8125,"pitch":123.875,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":67.75,"pitch":-57.9375,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":339.5,"pitch":-134.6875,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":197.4375,"pitch":-103.9375,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":74.5625,"pitch":-133.9375,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:20.556"} +{"sensors":[{"euler":{"heading":306.625,"pitch":160.25,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":120.8125,"pitch":127.5625,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":-61.875,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":348.25,"pitch":-125.3125,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":201.5625,"pitch":-93.0,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":78.625,"pitch":-137.0625,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:20.657"} +{"sensors":[{"euler":{"heading":313.6875,"pitch":154.0,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":128.0625,"pitch":133.8125,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-43.375,"roll":94.875},"location":"Right Ankle"},{"euler":{"heading":355.75,"pitch":-118.9375,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":187.5625,"pitch":3.5625,"roll":86.3125},"location":"Right Knee"},{"euler":{"heading":83.0,"pitch":-140.875,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:20.757"} +{"sensors":[{"euler":{"heading":322.0625,"pitch":147.625,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":131.875,"pitch":139.0625,"roll":71.6875},"location":"Left Ankle"},{"euler":{"heading":100.625,"pitch":78.125,"roll":75.625},"location":"Right Ankle"},{"euler":{"heading":357.8125,"pitch":-118.25,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":170.0,"pitch":88.6875,"roll":68.25},"location":"Right Knee"},{"euler":{"heading":87.3125,"pitch":-145.6875,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:20.858"} +{"sensors":[{"euler":{"heading":328.75,"pitch":141.375,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":150.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":120.5,"pitch":84.3125,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":353.375,"pitch":-121.6875,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":157.5,"pitch":89.1875,"roll":56.75},"location":"Right Knee"},{"euler":{"heading":90.4375,"pitch":-151.0625,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:20.959"} +{"sensors":[{"euler":{"heading":334.8125,"pitch":135.5,"roll":45.0},"location":"Left Knee"},{"euler":{"heading":141.9375,"pitch":173.0,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":117.625,"pitch":82.9375,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":348.0625,"pitch":-123.1875,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":155.3125,"pitch":87.5625,"roll":57.0625},"location":"Right Knee"},{"euler":{"heading":94.0,"pitch":-157.8125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:21.60"} +{"sensors":[{"euler":{"heading":254.3125,"pitch":129.4375,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":155.6875,"pitch":-145.5625,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":102.5,"pitch":77.6875,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":346.0,"pitch":-122.25,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":156.875,"pitch":82.0,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":91.1875,"pitch":-151.625,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:21.161"} +{"sensors":[{"euler":{"heading":267.5625,"pitch":127.1875,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":176.0,"pitch":-123.375,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":67.125,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":340.375,"pitch":-124.375,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":157.75,"pitch":85.625,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":75.875,"pitch":-136.8125,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:21.261"} +{"sensors":[{"euler":{"heading":256.5625,"pitch":134.5625,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":158.8125,"pitch":-138.6875,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":59.5625,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":337.125,"pitch":-124.8125,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":158.1875,"pitch":82.75,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":66.6875,"pitch":-131.1875,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:21.363"} +{"sensors":[{"euler":{"heading":219.875,"pitch":152.5625,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":124.0,"pitch":149.125,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":51.3125,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":333.625,"pitch":-129.8125,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":160.25,"pitch":83.125,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":50.375,"pitch":-129.75,"roll":42.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:21.463"} +{"sensors":[{"euler":{"heading":279.375,"pitch":175.0,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":92.5625,"pitch":113.5625,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":35.5625,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":331.0625,"pitch":-135.375,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":86.875,"roll":80.625},"location":"Right Knee"},{"euler":{"heading":50.1875,"pitch":-131.9375,"roll":43.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:21.564"} +{"sensors":[{"euler":{"heading":279.375,"pitch":-178.6875,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":87.625,"pitch":109.6875,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":80.0625,"pitch":4.75,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":329.625,"pitch":-140.75,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":173.625,"pitch":177.25,"roll":86.875},"location":"Right Knee"},{"euler":{"heading":72.5,"pitch":-135.5,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:21.665"} +{"sensors":[{"euler":{"heading":296.0625,"pitch":170.125,"roll":51.25},"location":"Left Knee"},{"euler":{"heading":106.75,"pitch":120.5625,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-37.0,"roll":73.75},"location":"Right Ankle"},{"euler":{"heading":330.0625,"pitch":-144.5625,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-123.25,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":75.0625,"pitch":-135.5,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:21.765"} +{"sensors":[{"euler":{"heading":304.875,"pitch":161.875,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":112.125,"pitch":121.5625,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":71.25,"pitch":-59.5,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":341.8125,"pitch":-133.875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":201.25,"pitch":-109.25,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-137.25,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:21.866"} +{"sensors":[{"euler":{"heading":312.0,"pitch":155.4375,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":117.9375,"pitch":122.875,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":-40.75,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":351.5625,"pitch":-122.4375,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":193.9375,"pitch":-174.0625,"roll":83.9375},"location":"Right Knee"},{"euler":{"heading":81.75,"pitch":-140.9375,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:21.967"} +{"sensors":[{"euler":{"heading":317.6875,"pitch":149.0,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":123.25,"pitch":127.8125,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":98.8125,"pitch":50.375,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":357.6875,"pitch":-116.25,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":178.5,"pitch":91.0,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":86.25,"pitch":-145.75,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:22.68"} +{"sensors":[{"euler":{"heading":324.0625,"pitch":143.0625,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":135.1875,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":113.625,"pitch":80.125,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":355.625,"pitch":-117.9375,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":161.0,"pitch":91.0625,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":87.25,"pitch":-149.4375,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:22.169"} +{"sensors":[{"euler":{"heading":331.125,"pitch":137.3125,"roll":45.5},"location":"Left Knee"},{"euler":{"heading":134.0,"pitch":152.9375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":123.0,"pitch":80.125,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":349.0625,"pitch":-121.4375,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":153.4375,"pitch":91.625,"roll":54.125},"location":"Right Knee"},{"euler":{"heading":89.3125,"pitch":-153.75,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:22.270"} +{"sensors":[{"euler":{"heading":249.5625,"pitch":131.4375,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":141.1875,"pitch":-172.375,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":74.25,"roll":67.3125},"location":"Right Ankle"},{"euler":{"heading":345.625,"pitch":-122.1875,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":155.5,"pitch":89.5625,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":90.875,"pitch":-155.125,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:22.371"} +{"sensors":[{"euler":{"heading":262.375,"pitch":127.5625,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":161.5,"pitch":-135.875,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":105.4375,"pitch":65.75,"roll":70.75},"location":"Right Ankle"},{"euler":{"heading":342.6875,"pitch":-123.875,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":159.5,"pitch":91.6875,"roll":66.1875},"location":"Right Knee"},{"euler":{"heading":77.5,"pitch":-141.4375,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:22.471"} +{"sensors":[{"euler":{"heading":258.875,"pitch":133.5,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":154.8125,"pitch":-142.6875,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":102.8125,"pitch":57.0625,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":339.0625,"pitch":-126.8125,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":161.0,"pitch":94.5,"roll":70.1875},"location":"Right Knee"},{"euler":{"heading":67.375,"pitch":-131.875,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:22.571"} +{"sensors":[{"euler":{"heading":228.375,"pitch":148.25,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":128.5,"pitch":165.3125,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":100.0,"pitch":51.625,"roll":73.375},"location":"Right Ankle"},{"euler":{"heading":336.4375,"pitch":-129.875,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":164.8125,"pitch":100.125,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":49.125,"pitch":-129.3125,"roll":43.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:22.672"} +{"sensors":[{"euler":{"heading":288.0625,"pitch":169.0625,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":99.3125,"pitch":120.625,"roll":57.4375},"location":"Left Ankle"},{"euler":{"heading":96.3125,"pitch":39.0,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":335.5,"pitch":-134.5,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":170.1875,"pitch":113.375,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":50.4375,"pitch":-129.5,"roll":42.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:22.772"} +{"sensors":[{"euler":{"heading":275.5625,"pitch":-176.4375,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":84.8125,"pitch":108.75,"roll":45.6875},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":20.75,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":333.375,"pitch":-139.6875,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":134.1875,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-131.9375,"roll":43.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:22.873"} +{"sensors":[{"euler":{"heading":281.4375,"pitch":-179.4375,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":94.4375,"pitch":113.9375,"roll":50.375},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":-8.25,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":331.25,"pitch":-147.5,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":185.125,"pitch":-171.1875,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":72.9375,"pitch":-134.625,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:22.973"} +{"sensors":[{"euler":{"heading":295.4375,"pitch":169.6875,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":116.5,"roll":58.3125},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":-46.25,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":336.375,"pitch":-143.1875,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":194.1875,"pitch":-125.5625,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":72.6875,"pitch":-134.125,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:23.74"} +{"sensors":[{"euler":{"heading":306.25,"pitch":161.0,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":113.125,"pitch":117.3125,"roll":62.625},"location":"Left Ankle"},{"euler":{"heading":74.75,"pitch":-61.0625,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":346.25,"pitch":-129.5,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":200.375,"pitch":-112.375,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":77.8125,"pitch":-137.5625,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:23.174"} +{"sensors":[{"euler":{"heading":312.75,"pitch":154.5625,"roll":53.5625},"location":"Left Knee"},{"euler":{"heading":122.25,"pitch":123.25,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":-20.0,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":356.125,"pitch":-119.125,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":188.375,"pitch":178.75,"roll":87.875},"location":"Right Knee"},{"euler":{"heading":82.1875,"pitch":-140.9375,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:23.275"} +{"sensors":[{"euler":{"heading":320.375,"pitch":147.6875,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":125.0625,"pitch":126.8125,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":61.5625,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-115.625,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":166.8125,"pitch":90.6875,"roll":68.375},"location":"Right Knee"},{"euler":{"heading":86.125,"pitch":-145.25,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:23.376"} +{"sensors":[{"euler":{"heading":327.75,"pitch":141.125,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":131.0,"pitch":137.125,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":120.375,"pitch":78.75,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":354.6875,"pitch":-120.125,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":155.9375,"pitch":95.3125,"roll":55.5},"location":"Right Knee"},{"euler":{"heading":88.5,"pitch":-149.875,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:23.477"} +{"sensors":[{"euler":{"heading":334.9375,"pitch":134.6875,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":136.125,"pitch":157.875,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":119.125,"pitch":79.0,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":348.75,"pitch":-122.0,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":153.8125,"pitch":89.4375,"roll":56.875},"location":"Right Knee"},{"euler":{"heading":91.875,"pitch":-154.8125,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:23.577"} +{"sensors":[{"euler":{"heading":251.75,"pitch":130.3125,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":145.8125,"pitch":-159.125,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":71.5,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":346.625,"pitch":-122.4375,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":155.25,"pitch":86.6875,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":89.3125,"pitch":-149.75,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:23.678"} +{"sensors":[{"euler":{"heading":263.4375,"pitch":128.9375,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":161.5625,"pitch":-137.125,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":102.4375,"pitch":60.6875,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":339.75,"pitch":-126.625,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":156.4375,"pitch":90.875,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":74.375,"pitch":-136.0625,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:23.779"} +{"sensors":[{"euler":{"heading":251.0625,"pitch":138.3125,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":144.375,"pitch":-161.25,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":100.1875,"pitch":56.375,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":337.0,"pitch":-129.0625,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":158.25,"pitch":92.1875,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":65.625,"pitch":-130.0,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:23.879"} +{"sensors":[{"euler":{"heading":304.6875,"pitch":157.4375,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":113.625,"pitch":134.5625,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":95.1875,"pitch":49.875,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":334.625,"pitch":-132.375,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":160.5,"pitch":93.0,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":49.125,"pitch":-128.3125,"roll":43.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:23.980"} +{"sensors":[{"euler":{"heading":278.3125,"pitch":179.75,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":86.625,"pitch":111.625,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":34.875,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":332.4375,"pitch":-135.6875,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":98.375,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":49.9375,"pitch":-131.4375,"roll":43.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:24.81"} +{"sensors":[{"euler":{"heading":281.6875,"pitch":-179.5625,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":90.8125,"pitch":113.75,"roll":47.4375},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":4.9375,"roll":79.125},"location":"Right Ankle"},{"euler":{"heading":330.3125,"pitch":-140.5,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":174.1875,"pitch":177.375,"roll":86.1875},"location":"Right Knee"},{"euler":{"heading":51.9375,"pitch":-134.5625,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:24.182"} +{"sensors":[{"euler":{"heading":297.4375,"pitch":169.625,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":119.625,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":73.6875,"pitch":-47.125,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":336.125,"pitch":-137.125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":190.5625,"pitch":-126.25,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":71.1875,"pitch":-134.125,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:24.283"} +{"sensors":[{"euler":{"heading":307.0,"pitch":161.1875,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":111.625,"pitch":120.125,"roll":61.3125},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":-61.75,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":348.6875,"pitch":-127.75,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":201.5625,"pitch":-115.875,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":75.625,"pitch":-136.3125,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:24.384"} +{"sensors":[{"euler":{"heading":310.625,"pitch":155.25,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":116.5625,"pitch":124.0,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":-23.125,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":355.375,"pitch":-119.375,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":188.75,"pitch":178.8125,"roll":87.75},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-140.0,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:24.484"} +{"sensors":[{"euler":{"heading":315.875,"pitch":150.0625,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":119.3125,"pitch":126.5625,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":99.3125,"pitch":65.1875,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":357.9375,"pitch":-115.9375,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":89.5625,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":82.6875,"pitch":-144.9375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:24.585"} +{"sensors":[{"euler":{"heading":325.1875,"pitch":142.5625,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":127.0,"pitch":135.125,"roll":71.0625},"location":"Left Ankle"},{"euler":{"heading":118.0625,"pitch":79.25,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":355.375,"pitch":-119.5,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":156.0625,"pitch":93.3125,"roll":55.9375},"location":"Right Knee"},{"euler":{"heading":86.125,"pitch":-148.6875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:24.686"} +{"sensors":[{"euler":{"heading":333.0,"pitch":136.5,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":153.75,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":121.8125,"pitch":78.9375,"roll":59.375},"location":"Right Ankle"},{"euler":{"heading":350.5,"pitch":-121.5625,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":152.8125,"pitch":91.125,"roll":54.5},"location":"Right Knee"},{"euler":{"heading":89.0625,"pitch":-153.4375,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:24.786"} +{"sensors":[{"euler":{"heading":251.125,"pitch":131.0625,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":141.75,"pitch":-168.875,"roll":71.25},"location":"Left Ankle"},{"euler":{"heading":109.1875,"pitch":72.0625,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":346.625,"pitch":-122.8125,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":153.6875,"pitch":85.9375,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":91.0625,"pitch":-154.25,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:24.887"} +{"sensors":[{"euler":{"heading":263.3125,"pitch":129.125,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":164.3125,"pitch":-134.375,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":103.9375,"pitch":61.75,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":341.75,"pitch":-125.25,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":157.125,"pitch":91.75,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":76.4375,"pitch":-139.25,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:24.987"} +{"sensors":[{"euler":{"heading":261.4375,"pitch":134.75,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":152.0625,"pitch":-148.3125,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":57.375,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":339.1875,"pitch":-128.5,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":94.3125,"roll":70.1875},"location":"Right Knee"},{"euler":{"heading":67.8125,"pitch":-131.875,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:25.88"} +{"sensors":[{"euler":{"heading":228.75,"pitch":151.25,"roll":42.6875},"location":"Left Knee"},{"euler":{"heading":120.4375,"pitch":148.125,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":50.4375,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":335.4375,"pitch":-132.25,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":162.375,"pitch":97.5,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":49.8125,"pitch":-129.0,"roll":43.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:25.189"} +{"sensors":[{"euler":{"heading":283.625,"pitch":173.625,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":91.875,"pitch":114.9375,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":36.5,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":334.0,"pitch":-135.75,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":166.9375,"pitch":107.125,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":50.75,"pitch":-130.6875,"roll":43.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:25.290"} +{"sensors":[{"euler":{"heading":276.0625,"pitch":-175.5,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":82.6875,"pitch":106.875,"roll":44.0},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":8.9375,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":334.0,"pitch":-140.9375,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":175.8125,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":52.1875,"pitch":-134.8125,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:25.390"} +{"sensors":[{"euler":{"heading":293.75,"pitch":174.4375,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":116.5,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-36.3125,"roll":73.125},"location":"Right Ankle"},{"euler":{"heading":335.3125,"pitch":-143.0,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-146.5,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":74.125,"pitch":-136.125,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:25.491"} +{"sensors":[{"euler":{"heading":304.5,"pitch":164.5625,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":109.0625,"pitch":115.75,"roll":59.4375},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":-61.25,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":346.0,"pitch":-134.3125,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":198.4375,"pitch":-116.5625,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":78.8125,"pitch":-137.625,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:25.592"} +{"sensors":[{"euler":{"heading":310.8125,"pitch":157.0,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":112.875,"pitch":118.375,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":-51.6875,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":353.0,"pitch":-122.9375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":196.25,"pitch":-93.125,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":82.625,"pitch":-141.1875,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:25.693"} +{"sensors":[{"euler":{"heading":314.8125,"pitch":151.125,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":117.8125,"pitch":124.6875,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":26.6875,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":357.625,"pitch":-118.25,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":182.0625,"pitch":90.875,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":84.1875,"pitch":-144.375,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:25.794"} +{"sensors":[{"euler":{"heading":321.4375,"pitch":145.5,"roll":50.0625},"location":"Left Knee"},{"euler":{"heading":120.9375,"pitch":130.9375,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":113.5625,"pitch":76.0625,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-117.9375,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":163.5625,"pitch":93.3125,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":87.5,"pitch":-148.25,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:25.894"} +{"sensors":[{"euler":{"heading":329.375,"pitch":139.4375,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":129.4375,"pitch":143.5625,"roll":73.0625},"location":"Left Ankle"},{"euler":{"heading":126.9375,"pitch":76.4375,"roll":57.75},"location":"Right Ankle"},{"euler":{"heading":354.5625,"pitch":-120.875,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":154.125,"pitch":96.75,"roll":52.5},"location":"Right Knee"},{"euler":{"heading":90.375,"pitch":-152.125,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:25.995"} +{"sensors":[{"euler":{"heading":246.625,"pitch":133.625,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":135.1875,"pitch":170.125,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":114.875,"pitch":76.625,"roll":63.75},"location":"Right Ankle"},{"euler":{"heading":347.875,"pitch":-123.4375,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":151.6875,"pitch":88.8125,"roll":56.0625},"location":"Right Knee"},{"euler":{"heading":93.5625,"pitch":-156.375,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:26.96"} +{"sensors":[{"euler":{"heading":259.375,"pitch":129.3125,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":156.3125,"pitch":-144.1875,"roll":64.0625},"location":"Left Ankle"},{"euler":{"heading":106.5,"pitch":67.9375,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":344.875,"pitch":-124.5,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":154.5625,"pitch":89.25,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-142.3125,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:26.197"} +{"sensors":[{"euler":{"heading":260.9375,"pitch":132.8125,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":157.0625,"pitch":-140.5,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":103.0625,"pitch":56.5625,"roll":70.25},"location":"Right Ankle"},{"euler":{"heading":340.875,"pitch":-128.125,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":158.125,"pitch":94.125,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":68.9375,"pitch":-132.625,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:26.298"} +{"sensors":[{"euler":{"heading":236.1875,"pitch":147.0625,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":131.25,"pitch":171.75,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":100.1875,"pitch":51.8125,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":337.375,"pitch":-130.375,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":161.625,"pitch":97.4375,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":47.5,"pitch":-129.0,"roll":43.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:26.399"} +{"sensors":[{"euler":{"heading":290.375,"pitch":167.75,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":103.125,"pitch":122.25,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":41.0,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":335.1875,"pitch":-134.0,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":165.125,"pitch":101.375,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":49.5,"pitch":-129.125,"roll":42.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:26.501"} +{"sensors":[{"euler":{"heading":275.25,"pitch":-176.0625,"roll":52.125},"location":"Left Knee"},{"euler":{"heading":83.0,"pitch":108.0625,"roll":45.25},"location":"Left Ankle"},{"euler":{"heading":91.4375,"pitch":23.5,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":333.875,"pitch":-138.375,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":171.375,"pitch":115.875,"roll":80.3125},"location":"Right Knee"},{"euler":{"heading":50.5,"pitch":-132.1875,"roll":43.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:26.601"} +{"sensors":[{"euler":{"heading":288.25,"pitch":177.0,"roll":52.375},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":115.625,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":-8.5,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":333.375,"pitch":-144.375,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":182.25,"pitch":179.0625,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":72.875,"pitch":-134.6875,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:26.702"} +{"sensors":[{"euler":{"heading":301.3125,"pitch":167.0625,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":107.75,"pitch":118.75,"roll":58.5},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-49.8125,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":343.8125,"pitch":-136.125,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":193.125,"pitch":-125.125,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":72.9375,"pitch":-134.25,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:26.803"} +{"sensors":[{"euler":{"heading":306.9375,"pitch":159.875,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":111.25,"pitch":118.6875,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":77.6875,"pitch":-55.875,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":353.25,"pitch":-123.25,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":197.3125,"pitch":-114.125,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":76.5,"pitch":-138.9375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:26.904"} +{"sensors":[{"euler":{"heading":314.4375,"pitch":153.5625,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":121.1875,"pitch":123.5,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":19.0625,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-116.25,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":182.75,"pitch":97.0625,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":81.8125,"pitch":-142.0625,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:27.4"} +{"sensors":[{"euler":{"heading":321.75,"pitch":147.0,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":122.875,"pitch":126.875,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":73.1875,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-117.0625,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":163.25,"pitch":92.875,"roll":60.9375},"location":"Right Knee"},{"euler":{"heading":85.0,"pitch":-146.75,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:27.106"} +{"sensors":[{"euler":{"heading":329.375,"pitch":140.5,"roll":48.25},"location":"Left Knee"},{"euler":{"heading":129.4375,"pitch":139.875,"roll":72.625},"location":"Left Ankle"},{"euler":{"heading":125.125,"pitch":76.8125,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":354.5625,"pitch":-120.9375,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":152.9375,"pitch":95.1875,"roll":51.1875},"location":"Right Knee"},{"euler":{"heading":87.25,"pitch":-150.4375,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:27.207"} +{"sensors":[{"euler":{"heading":246.5625,"pitch":134.5,"roll":43.625},"location":"Left Knee"},{"euler":{"heading":135.9375,"pitch":164.625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":116.6875,"pitch":75.875,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":348.375,"pitch":-122.3125,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":151.875,"pitch":90.25,"roll":54.8125},"location":"Right Knee"},{"euler":{"heading":90.5,"pitch":-155.375,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:27.307"} +{"sensors":[{"euler":{"heading":255.25,"pitch":131.0625,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":150.75,"pitch":-153.25,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":106.25,"pitch":66.875,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":346.375,"pitch":-122.9375,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":154.4375,"pitch":89.5,"roll":61.25},"location":"Right Knee"},{"euler":{"heading":82.625,"pitch":-147.0,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:27.409"} +{"sensors":[{"euler":{"heading":262.9375,"pitch":131.875,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":158.25,"pitch":-141.875,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":58.1875,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":340.75,"pitch":-126.125,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":154.375,"pitch":91.9375,"roll":65.0625},"location":"Right Knee"},{"euler":{"heading":72.25,"pitch":-134.625,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:27.510"} +{"sensors":[{"euler":{"heading":239.5625,"pitch":144.625,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":136.4375,"pitch":-179.0,"roll":68.375},"location":"Left Ankle"},{"euler":{"heading":99.4375,"pitch":53.9375,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":336.875,"pitch":-128.625,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":155.875,"pitch":92.8125,"roll":68.375},"location":"Right Knee"},{"euler":{"heading":62.8125,"pitch":-129.8125,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:27.610"} +{"sensors":[{"euler":{"heading":296.25,"pitch":164.1875,"roll":49.5625},"location":"Left Knee"},{"euler":{"heading":107.3125,"pitch":126.4375,"roll":58.875},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":43.8125,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":336.1875,"pitch":-131.1875,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":160.375,"pitch":95.5625,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":47.9375,"pitch":-129.625,"roll":43.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:27.711"} +{"sensors":[{"euler":{"heading":279.3125,"pitch":-178.5625,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":86.375,"pitch":110.25,"roll":46.3125},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":28.375,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":334.6875,"pitch":-135.125,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":165.875,"pitch":106.125,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":50.0,"pitch":-132.625,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:27.812"} +{"sensors":[{"euler":{"heading":288.625,"pitch":178.0,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":94.0625,"pitch":114.625,"roll":49.125},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":0.875,"roll":75.4375},"location":"Right Ankle"},{"euler":{"heading":335.1875,"pitch":-141.8125,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":176.3125,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":75.625,"pitch":-136.5625,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:27.913"} +{"sensors":[{"euler":{"heading":301.75,"pitch":168.5,"roll":52.375},"location":"Left Knee"},{"euler":{"heading":108.1875,"pitch":118.875,"roll":57.375},"location":"Left Ankle"},{"euler":{"heading":76.9375,"pitch":-44.1875,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":345.125,"pitch":-136.3125,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":193.3125,"pitch":-138.625,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":76.625,"pitch":-137.4375,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:28.14"} +{"sensors":[{"euler":{"heading":312.875,"pitch":160.0625,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":120.375,"roll":62.0},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":-51.0625,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":355.0,"pitch":-124.0625,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":197.1875,"pitch":-127.6875,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":82.0,"pitch":-140.0,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:28.114"} +{"sensors":[{"euler":{"heading":319.875,"pitch":153.125,"roll":52.9375},"location":"Left Knee"},{"euler":{"heading":122.6875,"pitch":123.4375,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":93.875,"pitch":5.0,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":1.5625,"pitch":-117.75,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":184.125,"pitch":111.75,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":86.8125,"pitch":-143.9375,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:28.215"} +{"sensors":[{"euler":{"heading":325.1875,"pitch":146.1875,"roll":52.0},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":126.4375,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":108.625,"pitch":69.4375,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":2.375,"pitch":-118.375,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":96.5,"roll":64.9375},"location":"Right Knee"},{"euler":{"heading":89.375,"pitch":-149.25,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:28.316"} +{"sensors":[{"euler":{"heading":330.25,"pitch":140.8125,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":128.625,"pitch":134.875,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":123.0625,"pitch":76.4375,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":356.1875,"pitch":-122.0,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":95.0,"roll":52.4375},"location":"Right Knee"},{"euler":{"heading":90.125,"pitch":-154.4375,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:28.417"} +{"sensors":[{"euler":{"heading":245.75,"pitch":135.5,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":132.25,"pitch":152.5625,"roll":73.0625},"location":"Left Ankle"},{"euler":{"heading":116.9375,"pitch":77.875,"roll":62.5625},"location":"Right Ankle"},{"euler":{"heading":348.5,"pitch":-123.25,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":150.75,"pitch":89.625,"roll":51.625},"location":"Right Knee"},{"euler":{"heading":91.625,"pitch":-159.25,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:28.519"} +{"sensors":[{"euler":{"heading":253.9375,"pitch":131.0,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":145.25,"pitch":-162.1875,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":105.8125,"pitch":67.625,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":346.125,"pitch":-124.0625,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":151.75,"pitch":87.1875,"roll":57.4375},"location":"Right Knee"},{"euler":{"heading":85.4375,"pitch":-150.9375,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:28.619"} +{"sensors":[{"euler":{"heading":264.5,"pitch":130.25,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":159.75,"pitch":-138.5625,"roll":61.1875},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":59.5,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-127.1875,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":151.75,"pitch":88.6875,"roll":62.625},"location":"Right Knee"},{"euler":{"heading":71.5,"pitch":-134.875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:28.719"} +{"sensors":[{"euler":{"heading":248.875,"pitch":139.9375,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":140.1875,"pitch":-163.9375,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":54.375,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":337.0,"pitch":-129.6875,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":153.4375,"pitch":89.125,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":62.375,"pitch":-129.625,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:28.821"} +{"sensors":[{"euler":{"heading":303.125,"pitch":159.0625,"roll":47.1875},"location":"Left Knee"},{"euler":{"heading":112.9375,"pitch":134.3125,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":95.125,"pitch":47.875,"roll":72.75},"location":"Right Ankle"},{"euler":{"heading":334.875,"pitch":-132.6875,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":156.125,"pitch":90.5,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":47.0625,"pitch":-129.0,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:28.921"} +{"sensors":[{"euler":{"heading":279.75,"pitch":179.4375,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":87.0625,"pitch":111.4375,"roll":48.625},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":33.125,"roll":74.3125},"location":"Right Ankle"},{"euler":{"heading":334.1875,"pitch":-134.9375,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":94.1875,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":48.6875,"pitch":-132.3125,"roll":44.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:29.22"} +{"sensors":[{"euler":{"heading":283.5625,"pitch":-179.1875,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":87.6875,"pitch":111.0625,"roll":46.25},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":8.5,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":333.75,"pitch":-140.4375,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":170.6875,"pitch":114.0625,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-135.3125,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:29.123"} +{"sensors":[{"euler":{"heading":299.9375,"pitch":169.5625,"roll":51.0},"location":"Left Knee"},{"euler":{"heading":105.0,"pitch":119.5,"roll":56.1875},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":-30.9375,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":337.75,"pitch":-139.8125,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":185.5625,"pitch":-170.5,"roll":82.0625},"location":"Right Knee"},{"euler":{"heading":71.9375,"pitch":-134.1875,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:29.223"} +{"sensors":[{"euler":{"heading":308.375,"pitch":161.5,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":109.5,"pitch":120.0,"roll":60.25},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-59.375,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":349.375,"pitch":-129.4375,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":197.75,"pitch":-133.9375,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":77.5,"pitch":-138.875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:29.324"} +{"sensors":[{"euler":{"heading":312.125,"pitch":154.875,"roll":52.125},"location":"Left Knee"},{"euler":{"heading":115.1875,"pitch":123.0625,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":-26.375,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":357.875,"pitch":-120.6875,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":187.625,"pitch":176.875,"roll":85.5},"location":"Right Knee"},{"euler":{"heading":81.125,"pitch":-143.1875,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:29.425"} +{"sensors":[{"euler":{"heading":317.5625,"pitch":148.8125,"roll":52.5625},"location":"Left Knee"},{"euler":{"heading":119.9375,"pitch":126.1875,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":105.9375,"pitch":57.8125,"roll":72.5625},"location":"Right Ankle"},{"euler":{"heading":358.75,"pitch":-117.5,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":92.6875,"roll":68.625},"location":"Right Knee"},{"euler":{"heading":83.875,"pitch":-146.875,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:29.526"} +{"sensors":[{"euler":{"heading":325.0,"pitch":142.375,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":124.5625,"pitch":134.0625,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":120.1875,"pitch":78.1875,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":355.8125,"pitch":-121.625,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":154.6875,"pitch":94.4375,"roll":52.9375},"location":"Right Knee"},{"euler":{"heading":86.9375,"pitch":-151.6875,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:29.627"} +{"sensors":[{"euler":{"heading":333.25,"pitch":136.3125,"roll":46.0},"location":"Left Knee"},{"euler":{"heading":131.4375,"pitch":149.625,"roll":73.4375},"location":"Left Ankle"},{"euler":{"heading":125.5625,"pitch":76.0625,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":350.875,"pitch":-123.3125,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":150.8125,"pitch":95.0625,"roll":49.125},"location":"Right Knee"},{"euler":{"heading":90.1875,"pitch":-156.875,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:29.728"} +{"sensors":[{"euler":{"heading":251.3125,"pitch":130.625,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":138.875,"pitch":-175.75,"roll":72.0},"location":"Left Ankle"},{"euler":{"heading":110.25,"pitch":73.625,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":347.1875,"pitch":-123.75,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":150.0625,"pitch":87.625,"roll":54.1875},"location":"Right Knee"},{"euler":{"heading":91.125,"pitch":-157.375,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:29.829"} +{"sensors":[{"euler":{"heading":262.9375,"pitch":128.4375,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":161.4375,"pitch":-136.4375,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":66.3125,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":341.625,"pitch":-125.75,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":150.5,"pitch":87.3125,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":75.0625,"pitch":-140.6875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:29.929"} +{"sensors":[{"euler":{"heading":258.1875,"pitch":134.0,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":151.75,"pitch":-145.75,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":98.9375,"pitch":56.375,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":337.375,"pitch":-128.3125,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":151.9375,"pitch":88.6875,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":64.1875,"pitch":-131.5,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:30.30"} +{"sensors":[{"euler":{"heading":227.9375,"pitch":148.8125,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":124.0,"pitch":161.375,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":95.75,"pitch":48.0625,"roll":73.125},"location":"Right Ankle"},{"euler":{"heading":334.8125,"pitch":-131.125,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":154.625,"pitch":91.0625,"roll":67.8125},"location":"Right Knee"},{"euler":{"heading":45.75,"pitch":-128.5,"roll":44.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:30.131"} +{"sensors":[{"euler":{"heading":288.8125,"pitch":169.8125,"roll":52.0},"location":"Left Knee"},{"euler":{"heading":96.8125,"pitch":120.25,"roll":55.1875},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":37.0625,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":334.5625,"pitch":-135.0,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":95.625,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":48.0,"pitch":-129.0625,"roll":43.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:30.232"} +{"sensors":[{"euler":{"heading":277.25,"pitch":-176.0625,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":82.8125,"pitch":108.8125,"roll":44.0625},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":16.8125,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":334.1875,"pitch":-139.8125,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":107.75,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":50.4375,"pitch":-132.8125,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:30.332"} +{"sensors":[{"euler":{"heading":290.8125,"pitch":177.0625,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":97.4375,"pitch":116.75,"roll":50.75},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":-18.5625,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":334.875,"pitch":-144.125,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":178.6875,"pitch":151.5625,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":73.5,"pitch":-135.1875,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:30.433"} +{"sensors":[{"euler":{"heading":302.875,"pitch":166.9375,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":106.6875,"pitch":120.3125,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":71.875,"pitch":-52.4375,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":346.6875,"pitch":-136.5625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":192.3125,"pitch":-142.75,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":76.0625,"pitch":-136.625,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:30.533"} +{"sensors":[{"euler":{"heading":308.875,"pitch":144.0625,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":111.0,"pitch":120.375,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":-52.625,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":357.0,"pitch":-123.5,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":195.375,"pitch":-175.625,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":80.875,"pitch":-141.1875,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:30.634"} +{"sensors":[{"euler":{"heading":314.0,"pitch":153.25,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":118.3125,"pitch":124.5,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":14.5,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":2.125,"pitch":-116.9375,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":179.375,"pitch":105.0625,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":82.6875,"pitch":-144.0,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:30.735"} +{"sensors":[{"euler":{"heading":320.5625,"pitch":147.125,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":121.4375,"pitch":127.9375,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":109.5,"pitch":74.6875,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":0.5,"pitch":-117.8125,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":158.4375,"pitch":91.6875,"roll":57.8125},"location":"Right Knee"},{"euler":{"heading":84.9375,"pitch":-147.75,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:30.836"} +{"sensors":[{"euler":{"heading":326.4375,"pitch":141.1875,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":127.625,"pitch":137.3125,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":124.0,"pitch":77.6875,"roll":58.0},"location":"Right Ankle"},{"euler":{"heading":353.8125,"pitch":-122.25,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":148.5625,"pitch":93.375,"roll":47.8125},"location":"Right Knee"},{"euler":{"heading":85.9375,"pitch":-152.5,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:30.937"} +{"sensors":[{"euler":{"heading":243.5,"pitch":135.5,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":133.5,"pitch":161.3125,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":117.9375,"pitch":77.375,"roll":60.625},"location":"Right Ankle"},{"euler":{"heading":348.4375,"pitch":-122.5625,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":147.3125,"pitch":89.125,"roll":50.3125},"location":"Right Knee"},{"euler":{"heading":87.375,"pitch":-156.25,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:31.38"} +{"sensors":[{"euler":{"heading":256.3125,"pitch":129.4375,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":149.8125,"pitch":-149.625,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":106.4375,"pitch":68.0625,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":347.375,"pitch":-123.3125,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":149.1875,"pitch":87.25,"roll":55.875},"location":"Right Knee"},{"euler":{"heading":81.625,"pitch":-146.5625,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:31.139"} +{"sensors":[{"euler":{"heading":265.0625,"pitch":129.8125,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":163.0625,"pitch":-131.5625,"roll":59.1875},"location":"Left Ankle"},{"euler":{"heading":102.4375,"pitch":57.3125,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":340.6875,"pitch":-126.5,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":150.8125,"pitch":90.5,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":67.875,"pitch":-131.9375,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:31.240"} +{"sensors":[{"euler":{"heading":248.0,"pitch":140.625,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":142.6875,"pitch":-157.9375,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":99.75,"pitch":51.5625,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":338.4375,"pitch":-129.0625,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":153.75,"pitch":93.125,"roll":64.9375},"location":"Right Knee"},{"euler":{"heading":59.625,"pitch":-127.75,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:31.341"} +{"sensors":[{"euler":{"heading":303.9375,"pitch":159.8125,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":113.8125,"pitch":139.8125,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":40.75,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":337.125,"pitch":-132.375,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":157.4375,"pitch":95.8125,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":49.3125,"pitch":-127.3125,"roll":42.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:31.441"} +{"sensors":[{"euler":{"heading":280.8125,"pitch":179.5,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":87.9375,"pitch":114.625,"roll":48.1875},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":24.9375,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":334.9375,"pitch":-136.5,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":162.5,"pitch":103.1875,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":50.1875,"pitch":-129.5,"roll":42.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:31.542"} +{"sensors":[{"euler":{"heading":278.1875,"pitch":-175.25,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":83.625,"pitch":111.875,"roll":43.0625},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":1.3125,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":333.8125,"pitch":-142.8125,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":171.375,"pitch":119.6875,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":51.75,"pitch":-133.9375,"roll":43.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:31.643"} +{"sensors":[{"euler":{"heading":296.0625,"pitch":173.625,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":101.25,"pitch":119.3125,"roll":52.9375},"location":"Left Ankle"},{"euler":{"heading":78.0625,"pitch":-36.8125,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":335.4375,"pitch":-145.0,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":184.125,"pitch":175.875,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":72.4375,"pitch":-134.9375,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:31.744"} +{"sensors":[{"euler":{"heading":303.9375,"pitch":165.375,"roll":51.1875},"location":"Left Knee"},{"euler":{"heading":106.375,"pitch":120.5625,"roll":57.4375},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":-60.1875,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":347.6875,"pitch":-131.875,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":196.9375,"pitch":-131.3125,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":75.875,"pitch":-138.0625,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:31.845"} +{"sensors":[{"euler":{"heading":307.0625,"pitch":159.875,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":112.6875,"pitch":124.4375,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":-29.0625,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":356.3125,"pitch":-120.5625,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":187.75,"pitch":177.3125,"roll":84.875},"location":"Right Knee"},{"euler":{"heading":79.0,"pitch":-142.125,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:31.945"} +{"sensors":[{"euler":{"heading":316.4375,"pitch":153.3125,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":117.6875,"pitch":126.625,"roll":64.625},"location":"Left Ankle"},{"euler":{"heading":101.4375,"pitch":44.3125,"roll":77.8125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":-115.875,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":170.1875,"pitch":96.125,"roll":68.3125},"location":"Right Knee"},{"euler":{"heading":83.0625,"pitch":-144.3125,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:32.46"} +{"sensors":[{"euler":{"heading":324.0625,"pitch":146.625,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":123.8125,"pitch":131.0625,"roll":68.375},"location":"Left Ankle"},{"euler":{"heading":119.625,"pitch":75.0,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-119.25,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":154.25,"pitch":96.8125,"roll":52.5625},"location":"Right Knee"},{"euler":{"heading":84.625,"pitch":-147.75,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:32.148"} +{"sensors":[{"euler":{"heading":330.75,"pitch":139.6875,"roll":47.3125},"location":"Left Knee"},{"euler":{"heading":129.8125,"pitch":142.8125,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":126.0,"pitch":76.4375,"roll":57.8125},"location":"Right Ankle"},{"euler":{"heading":352.5625,"pitch":-122.6875,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":148.9375,"pitch":94.75,"roll":47.875},"location":"Right Knee"},{"euler":{"heading":86.125,"pitch":-152.25,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:32.248"} +{"sensors":[{"euler":{"heading":248.375,"pitch":133.4375,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":170.375,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":112.9375,"pitch":74.1875,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":347.375,"pitch":-123.6875,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":149.0,"pitch":89.25,"roll":52.8125},"location":"Right Knee"},{"euler":{"heading":89.125,"pitch":-155.875,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:32.350"} +{"sensors":[{"euler":{"heading":263.75,"pitch":129.1875,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":160.5625,"pitch":-141.5625,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":105.5,"pitch":65.9375,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-124.9375,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":150.875,"pitch":89.75,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":76.4375,"pitch":-139.75,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:32.451"} +{"sensors":[{"euler":{"heading":261.6875,"pitch":133.5625,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":156.9375,"pitch":-142.875,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":102.8125,"pitch":55.5625,"roll":71.1875},"location":"Right Ankle"},{"euler":{"heading":341.5,"pitch":-128.625,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":153.4375,"pitch":93.6875,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":67.1875,"pitch":-130.4375,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:32.551"} +{"sensors":[{"euler":{"heading":233.5,"pitch":148.125,"roll":40.875},"location":"Left Knee"},{"euler":{"heading":126.9375,"pitch":167.1875,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":99.3125,"pitch":45.5625,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-131.3125,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":156.5625,"pitch":96.875,"roll":66.6875},"location":"Right Knee"},{"euler":{"heading":49.0625,"pitch":-128.0,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:32.651"} +{"sensors":[{"euler":{"heading":290.1875,"pitch":170.125,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":120.0,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":33.0625,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":337.5,"pitch":-134.1875,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":100.0,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":49.875,"pitch":-129.625,"roll":42.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:32.752"} +{"sensors":[{"euler":{"heading":276.375,"pitch":-174.875,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":80.4375,"pitch":108.4375,"roll":42.6875},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":11.125,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":336.125,"pitch":-137.4375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":166.6875,"pitch":112.25,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":51.25,"pitch":-133.125,"roll":43.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:32.853"} +{"sensors":[{"euler":{"heading":288.125,"pitch":178.5625,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":116.6875,"roll":48.875},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":-20.8125,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":336.4375,"pitch":-142.0,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":177.375,"pitch":154.75,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":52.625,"pitch":-134.5625,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:32.954"} +{"sensors":[{"euler":{"heading":300.6875,"pitch":169.125,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":103.3125,"pitch":117.375,"roll":56.1875},"location":"Left Ankle"},{"euler":{"heading":73.8125,"pitch":-51.8125,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":346.25,"pitch":-135.6875,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":191.3125,"pitch":-145.75,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":72.5625,"pitch":-135.6875,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:33.55"} +{"sensors":[{"euler":{"heading":309.25,"pitch":161.625,"roll":52.375},"location":"Left Knee"},{"euler":{"heading":109.875,"pitch":118.5,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":-50.9375,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":355.875,"pitch":-121.8125,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":197.125,"pitch":-175.625,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":78.625,"pitch":-139.6875,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:33.156"} +{"sensors":[{"euler":{"heading":313.8125,"pitch":155.6875,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":117.25,"pitch":122.75,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":96.875,"pitch":5.625,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":2.25,"pitch":-116.75,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":183.4375,"pitch":112.625,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":82.1875,"pitch":-142.9375,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:33.257"} +{"sensors":[{"euler":{"heading":322.5,"pitch":149.1875,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":120.5,"pitch":125.5,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":109.6875,"pitch":67.375,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":2.75,"pitch":-117.625,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":97.875,"roll":61.625},"location":"Right Knee"},{"euler":{"heading":86.0,"pitch":-147.125,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:33.357"} +{"sensors":[{"euler":{"heading":330.0,"pitch":141.8125,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":127.3125,"pitch":135.125,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":125.5625,"pitch":76.3125,"roll":59.125},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-122.125,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":152.3125,"pitch":97.1875,"roll":49.375},"location":"Right Knee"},{"euler":{"heading":88.0,"pitch":-151.625,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:33.458"} +{"sensors":[{"euler":{"heading":246.9375,"pitch":135.5625,"roll":44.9375},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":151.9375,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":118.875,"pitch":76.375,"roll":62.5625},"location":"Right Ankle"},{"euler":{"heading":351.25,"pitch":-123.0625,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":150.5,"pitch":93.0,"roll":50.5625},"location":"Right Knee"},{"euler":{"heading":91.875,"pitch":-158.0625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:33.559"} +{"sensors":[{"euler":{"heading":256.625,"pitch":130.0,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":145.25,"pitch":-163.125,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":69.4375,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":348.8125,"pitch":-123.25,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":150.625,"pitch":87.25,"roll":55.9375},"location":"Right Knee"},{"euler":{"heading":88.875,"pitch":-151.5625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:33.659"} +{"sensors":[{"euler":{"heading":264.25,"pitch":130.0625,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":155.25,"pitch":-144.5,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":100.9375,"pitch":59.875,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":341.25,"pitch":-127.0,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":150.5,"pitch":88.6875,"roll":60.8125},"location":"Right Knee"},{"euler":{"heading":74.25,"pitch":-135.875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:33.760"} +{"sensors":[{"euler":{"heading":250.0,"pitch":138.875,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":136.375,"pitch":-172.25,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":49.5,"roll":72.5},"location":"Right Ankle"},{"euler":{"heading":337.4375,"pitch":-128.875,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":151.0,"pitch":89.0,"roll":64.375},"location":"Right Knee"},{"euler":{"heading":65.375,"pitch":-130.4375,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:33.861"} +{"sensors":[{"euler":{"heading":306.25,"pitch":157.0625,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":107.4375,"pitch":133.6875,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":92.125,"pitch":41.0,"roll":74.1875},"location":"Right Ankle"},{"euler":{"heading":335.5,"pitch":-131.875,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":154.25,"pitch":90.3125,"roll":68.25},"location":"Right Knee"},{"euler":{"heading":46.625,"pitch":-128.4375,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:33.962"} +{"sensors":[{"euler":{"heading":283.75,"pitch":176.9375,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":86.25,"pitch":113.5,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":26.0,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":333.75,"pitch":-136.625,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":160.3125,"pitch":95.875,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":48.75,"pitch":-131.5,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:34.63"} +{"sensors":[{"euler":{"heading":283.875,"pitch":-177.8125,"roll":49.0},"location":"Left Knee"},{"euler":{"heading":89.25,"pitch":115.375,"roll":44.4375},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":-6.0,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":334.6875,"pitch":-142.3125,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":170.75,"pitch":115.625,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-136.1875,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:34.164"} +{"sensors":[{"euler":{"heading":301.875,"pitch":171.1875,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":121.8125,"roll":55.9375},"location":"Left Ankle"},{"euler":{"heading":76.0,"pitch":-40.6875,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":338.625,"pitch":-141.875,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":187.125,"pitch":-152.75,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":73.5,"pitch":-135.9375,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:34.265"} +{"sensors":[{"euler":{"heading":314.0,"pitch":161.0,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":115.75,"pitch":123.375,"roll":61.1875},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-60.375,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":348.8125,"pitch":-128.9375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":197.6875,"pitch":-121.8125,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":78.8125,"pitch":-138.25,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:34.366"} +{"sensors":[{"euler":{"heading":320.3125,"pitch":154.25,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":125.1875,"pitch":129.4375,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":-41.125,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":358.1875,"pitch":-121.375,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":188.5,"pitch":177.8125,"roll":85.4375},"location":"Right Knee"},{"euler":{"heading":83.625,"pitch":-142.25,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:34.466"} +{"sensors":[{"euler":{"heading":326.4375,"pitch":148.3125,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":127.5,"pitch":132.125,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":97.8125,"pitch":28.25,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":1.9375,"pitch":-117.9375,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":172.0,"pitch":101.4375,"roll":68.625},"location":"Right Knee"},{"euler":{"heading":87.25,"pitch":-146.875,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:34.567"} +{"sensors":[{"euler":{"heading":333.3125,"pitch":142.4375,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":132.25,"pitch":139.875,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":118.75,"pitch":72.3125,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-121.5625,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":155.75,"pitch":99.0,"roll":52.375},"location":"Right Knee"},{"euler":{"heading":88.875,"pitch":-150.875,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:34.668"} +{"sensors":[{"euler":{"heading":338.5625,"pitch":136.6875,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":154.375,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":122.0625,"pitch":74.5,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":351.0,"pitch":-124.1875,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":148.5625,"pitch":95.1875,"roll":47.4375},"location":"Right Knee"},{"euler":{"heading":91.125,"pitch":-156.1875,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:34.768"} +{"sensors":[{"euler":{"heading":254.25,"pitch":131.625,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":142.5625,"pitch":-170.5625,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":109.0625,"pitch":67.875,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":346.125,"pitch":-124.9375,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":147.75,"pitch":89.9375,"roll":52.3125},"location":"Right Knee"},{"euler":{"heading":92.3125,"pitch":-157.375,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:34.869"} +{"sensors":[{"euler":{"heading":263.8125,"pitch":129.3125,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":161.3125,"pitch":-136.8125,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":103.875,"pitch":57.9375,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":343.0625,"pitch":-126.9375,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":149.5,"pitch":90.3125,"roll":57.0625},"location":"Right Knee"},{"euler":{"heading":78.5625,"pitch":-143.625,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:34.970"} +{"sensors":[{"euler":{"heading":260.375,"pitch":133.9375,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":147.4375,"pitch":-149.6875,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":100.25,"pitch":49.4375,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":338.875,"pitch":-131.0,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":151.875,"pitch":91.8125,"roll":61.8125},"location":"Right Knee"},{"euler":{"heading":67.875,"pitch":-133.375,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:35.71"} +{"sensors":[{"euler":{"heading":232.875,"pitch":148.0625,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":119.625,"pitch":156.9375,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":96.75,"pitch":40.25,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":336.9375,"pitch":-133.4375,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":155.4375,"pitch":94.9375,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":46.1875,"pitch":-130.3125,"roll":43.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:35.171"} +{"sensors":[{"euler":{"heading":293.125,"pitch":168.0,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":92.875,"pitch":119.9375,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":25.25,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":336.875,"pitch":-136.0625,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":100.0,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":48.8125,"pitch":-130.5625,"roll":41.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:35.272"} +{"sensors":[{"euler":{"heading":280.75,"pitch":-178.3125,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":80.375,"pitch":110.5,"roll":41.875},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":3.3125,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":337.0,"pitch":-138.8125,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":166.0,"pitch":109.8125,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-134.1875,"roll":42.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:35.373"} +{"sensors":[{"euler":{"heading":290.25,"pitch":176.0625,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":94.0625,"pitch":118.375,"roll":47.875},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":-23.3125,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":336.1875,"pitch":-144.6875,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":141.25,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":51.4375,"pitch":-136.1875,"roll":44.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:35.474"} +{"sensors":[{"euler":{"heading":304.1875,"pitch":166.125,"roll":50.3125},"location":"Left Knee"},{"euler":{"heading":103.875,"pitch":120.4375,"roll":55.0625},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-51.4375,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":342.5,"pitch":-140.0,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":187.8125,"pitch":-153.9375,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":71.9375,"pitch":-136.5,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:35.575"} +{"sensors":[{"euler":{"heading":313.0625,"pitch":158.9375,"roll":51.1875},"location":"Left Knee"},{"euler":{"heading":110.625,"pitch":120.6875,"roll":59.625},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-63.1875,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":352.6875,"pitch":-127.4375,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":198.0625,"pitch":-132.0625,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":78.125,"pitch":-141.0625,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:35.675"} +{"sensors":[{"euler":{"heading":318.75,"pitch":152.6875,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":117.375,"pitch":123.0625,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":-31.0625,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":0.6875,"pitch":-119.9375,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":185.0625,"pitch":122.125,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":83.1875,"pitch":-145.6875,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:35.776"} +{"sensors":[{"euler":{"heading":326.375,"pitch":146.5625,"roll":50.125},"location":"Left Knee"},{"euler":{"heading":120.25,"pitch":126.25,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":103.0,"pitch":47.25,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":0.75,"pitch":-117.0625,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":166.125,"pitch":97.0625,"roll":63.875},"location":"Right Knee"},{"euler":{"heading":85.1875,"pitch":-148.25,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:35.877"} +{"sensors":[{"euler":{"heading":331.5,"pitch":141.0,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":134.5625,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":120.6875,"pitch":73.6875,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":355.625,"pitch":-121.3125,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":151.0625,"pitch":96.75,"roll":49.9375},"location":"Right Knee"},{"euler":{"heading":86.25,"pitch":-152.4375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:35.978"} +{"sensors":[{"euler":{"heading":247.8125,"pitch":135.3125,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":131.6875,"pitch":151.5625,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":121.75,"pitch":72.375,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":349.9375,"pitch":-122.75,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":148.3125,"pitch":94.375,"roll":49.125},"location":"Right Knee"},{"euler":{"heading":88.0,"pitch":-156.8125,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:36.79"} +{"sensors":[{"euler":{"heading":256.375,"pitch":130.8125,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":141.75,"pitch":-167.8125,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":108.5625,"pitch":63.1875,"roll":68.75},"location":"Right Ankle"},{"euler":{"heading":347.5625,"pitch":-123.75,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":149.625,"pitch":89.875,"roll":55.1875},"location":"Right Knee"},{"euler":{"heading":87.375,"pitch":-153.9375,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:36.180"} +{"sensors":[{"euler":{"heading":270.375,"pitch":128.25,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":163.0625,"pitch":-136.75,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":53.5,"roll":71.3125},"location":"Right Ankle"},{"euler":{"heading":340.9375,"pitch":-126.625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":150.875,"pitch":91.8125,"roll":60.875},"location":"Right Knee"},{"euler":{"heading":71.75,"pitch":-137.625,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:36.281"} +{"sensors":[{"euler":{"heading":260.4375,"pitch":136.1875,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":145.875,"pitch":-156.125,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":98.25,"pitch":44.875,"roll":72.125},"location":"Right Ankle"},{"euler":{"heading":339.0,"pitch":-128.9375,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":152.375,"pitch":93.75,"roll":64.6875},"location":"Right Knee"},{"euler":{"heading":62.3125,"pitch":-130.3125,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:36.382"} +{"sensors":[{"euler":{"heading":225.4375,"pitch":154.375,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":114.875,"pitch":142.75,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":35.1875,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":337.5,"pitch":-131.375,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":155.8125,"pitch":96.1875,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":47.6875,"pitch":-128.0625,"roll":42.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:36.483"} +{"sensors":[{"euler":{"heading":286.0,"pitch":175.75,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":88.0,"pitch":113.875,"roll":49.375},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":18.9375,"roll":75.125},"location":"Right Ankle"},{"euler":{"heading":337.0,"pitch":-134.0625,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":101.0625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-130.0625,"roll":42.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:36.584"} +{"sensors":[{"euler":{"heading":278.125,"pitch":-175.875,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":81.5,"pitch":109.375,"roll":41.875},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":-8.4375,"roll":75.4375},"location":"Right Ankle"},{"euler":{"heading":337.0625,"pitch":-138.1875,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":116.125,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-134.5625,"roll":43.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:36.685"} +{"sensors":[{"euler":{"heading":293.125,"pitch":174.25,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":97.25,"pitch":116.25,"roll":51.4375},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":-37.8125,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":337.125,"pitch":-141.875,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":184.125,"pitch":-174.9375,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":69.9375,"pitch":-135.625,"roll":45.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:36.786"} +{"sensors":[{"euler":{"heading":303.9375,"pitch":165.3125,"roll":51.0},"location":"Left Knee"},{"euler":{"heading":102.75,"pitch":117.5625,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":68.6875,"pitch":-57.75,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":346.3125,"pitch":-131.4375,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":194.5625,"pitch":-124.0625,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":72.625,"pitch":-137.625,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:36.887"} +{"sensors":[{"euler":{"heading":308.375,"pitch":159.5,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":109.125,"pitch":119.875,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-52.4375,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":355.0625,"pitch":-122.375,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":191.375,"pitch":-177.5,"roll":85.5625},"location":"Right Knee"},{"euler":{"heading":75.3125,"pitch":-140.75,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:36.988"} +{"sensors":[{"euler":{"heading":317.375,"pitch":152.8125,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":114.1875,"pitch":121.6875,"roll":63.625},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":-1.5625,"roll":80.5},"location":"Right Ankle"},{"euler":{"heading":0.5,"pitch":-117.6875,"roll":32.0625},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":100.8125,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":80.25,"pitch":-143.125,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:37.89"} +{"sensors":[{"euler":{"heading":325.125,"pitch":146.1875,"roll":49.75},"location":"Left Knee"},{"euler":{"heading":118.4375,"pitch":127.25,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":110.0,"pitch":69.1875,"roll":71.875},"location":"Right Ankle"},{"euler":{"heading":352.0,"pitch":-119.5625,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":159.0,"pitch":95.625,"roll":56.6875},"location":"Right Knee"},{"euler":{"heading":82.5625,"pitch":-147.125,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:37.190"} +{"sensors":[{"euler":{"heading":332.25,"pitch":140.0,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":125.6875,"pitch":138.1875,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":125.125,"pitch":74.125,"roll":59.5},"location":"Right Ankle"},{"euler":{"heading":354.6875,"pitch":-122.5,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":150.0625,"pitch":98.0,"roll":47.75},"location":"Right Knee"},{"euler":{"heading":85.0625,"pitch":-151.3125,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:37.291"} +{"sensors":[{"euler":{"heading":249.4375,"pitch":134.125,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":132.125,"pitch":159.0,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":118.5,"pitch":71.0,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":349.75,"pitch":-123.625,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":149.25,"pitch":94.6875,"roll":51.0625},"location":"Right Knee"},{"euler":{"heading":88.4375,"pitch":-156.375,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:37.392"} +{"sensors":[{"euler":{"heading":260.5625,"pitch":129.125,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":150.125,"pitch":-151.0625,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":106.75,"pitch":60.5,"roll":70.25},"location":"Right Ankle"},{"euler":{"heading":348.375,"pitch":-124.6875,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":151.4375,"pitch":91.125,"roll":57.25},"location":"Right Knee"},{"euler":{"heading":81.8125,"pitch":-146.3125,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:37.493"} +{"sensors":[{"euler":{"heading":267.3125,"pitch":129.9375,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":156.5625,"pitch":-139.25,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":102.8125,"pitch":49.875,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":342.625,"pitch":-128.5,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":152.125,"pitch":94.5625,"roll":61.375},"location":"Right Knee"},{"euler":{"heading":66.5,"pitch":-131.0625,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:37.594"} +{"sensors":[{"euler":{"heading":250.375,"pitch":140.0625,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":134.9375,"pitch":-174.9375,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":43.75,"roll":71.9375},"location":"Right Ankle"},{"euler":{"heading":339.625,"pitch":-129.5,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":152.8125,"pitch":94.3125,"roll":64.5625},"location":"Right Knee"},{"euler":{"heading":47.75,"pitch":-127.6875,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:37.695"} +{"sensors":[{"euler":{"heading":303.75,"pitch":159.8125,"roll":47.875},"location":"Left Knee"},{"euler":{"heading":102.375,"pitch":123.5625,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":33.5,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":337.3125,"pitch":-132.75,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":155.625,"pitch":95.875,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":49.1875,"pitch":-127.4375,"roll":42.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:37.796"} +{"sensors":[{"euler":{"heading":280.8125,"pitch":-179.0625,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":81.3125,"pitch":107.9375,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":14.1875,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":334.875,"pitch":-136.9375,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":103.1875,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":50.0,"pitch":-132.125,"roll":42.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:37.896"} +{"sensors":[{"euler":{"heading":292.0,"pitch":176.3125,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":91.9375,"pitch":115.4375,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":-14.625,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":334.6875,"pitch":-142.4375,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":174.125,"pitch":131.5625,"roll":81.4375},"location":"Right Knee"},{"euler":{"heading":51.1875,"pitch":-135.625,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:37.997"} +{"sensors":[{"euler":{"heading":302.8125,"pitch":167.6875,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":101.375,"pitch":117.1875,"roll":54.875},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-49.5,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":342.375,"pitch":-138.0,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":190.125,"pitch":-154.3125,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":71.375,"pitch":-136.75,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:38.98"} +{"sensors":[{"euler":{"heading":310.0625,"pitch":160.75,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":106.25,"pitch":118.125,"roll":58.3125},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-54.75,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":352.75,"pitch":-124.625,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":194.6875,"pitch":-140.6875,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":76.6875,"pitch":-140.6875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:38.199"} +{"sensors":[{"euler":{"heading":315.1875,"pitch":154.8125,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":113.0,"pitch":119.5,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":-4.375,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":0.6875,"pitch":-117.5,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":180.0625,"pitch":108.4375,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":80.75,"pitch":-145.375,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:38.300"} +{"sensors":[{"euler":{"heading":324.5,"pitch":147.5625,"roll":50.75},"location":"Left Knee"},{"euler":{"heading":117.125,"pitch":123.625,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":105.5,"pitch":66.875,"roll":73.375},"location":"Right Ankle"},{"euler":{"heading":2.1875,"pitch":-116.6875,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":95.6875,"roll":59.4375},"location":"Right Knee"},{"euler":{"heading":84.25,"pitch":-147.75,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:38.401"} +{"sensors":[{"euler":{"heading":331.8125,"pitch":141.125,"roll":47.6875},"location":"Left Knee"},{"euler":{"heading":124.0625,"pitch":133.625,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":124.0625,"pitch":74.875,"roll":58.0625},"location":"Right Ankle"},{"euler":{"heading":357.75,"pitch":-120.875,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":148.5,"pitch":96.5625,"roll":46.625},"location":"Right Knee"},{"euler":{"heading":86.4375,"pitch":-152.4375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:38.502"} +{"sensors":[{"euler":{"heading":248.0625,"pitch":135.75,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":129.6875,"pitch":152.0625,"roll":72.0},"location":"Left Ankle"},{"euler":{"heading":122.0,"pitch":73.25,"roll":60.5},"location":"Right Ankle"},{"euler":{"heading":353.3125,"pitch":-121.3125,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":147.625,"pitch":94.625,"roll":47.75},"location":"Right Knee"},{"euler":{"heading":87.5625,"pitch":-156.1875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:38.602"} +{"sensors":[{"euler":{"heading":255.1875,"pitch":131.1875,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":142.5,"pitch":-162.375,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":110.3125,"pitch":60.375,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":349.875,"pitch":-123.125,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":150.6875,"pitch":92.875,"roll":54.125},"location":"Right Knee"},{"euler":{"heading":84.1875,"pitch":-150.375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:38.703"} +{"sensors":[{"euler":{"heading":270.125,"pitch":127.9375,"roll":27.75},"location":"Left Knee"},{"euler":{"heading":156.5625,"pitch":-141.6875,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":106.5,"pitch":50.125,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":344.9375,"pitch":-125.9375,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":152.8125,"pitch":97.875,"roll":59.375},"location":"Right Knee"},{"euler":{"heading":71.9375,"pitch":-135.1875,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:38.804"} +{"sensors":[{"euler":{"heading":260.9375,"pitch":136.25,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":142.25,"pitch":-161.1875,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":104.375,"pitch":43.6875,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":343.5,"pitch":-129.1875,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":156.125,"pitch":101.4375,"roll":62.6875},"location":"Right Knee"},{"euler":{"heading":63.3125,"pitch":-130.5,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:38.905"} +{"sensors":[{"euler":{"heading":227.25,"pitch":151.75,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":113.25,"pitch":139.125,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":101.0,"pitch":36.875,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":341.75,"pitch":-131.9375,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":159.3125,"pitch":104.1875,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":45.125,"pitch":-131.375,"roll":41.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:39.5"} +{"sensors":[{"euler":{"heading":289.3125,"pitch":171.375,"roll":50.875},"location":"Left Knee"},{"euler":{"heading":87.4375,"pitch":112.9375,"roll":50.0625},"location":"Left Ankle"},{"euler":{"heading":95.8125,"pitch":27.0,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":339.875,"pitch":-133.625,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":162.0,"pitch":106.4375,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":47.625,"pitch":-131.75,"roll":42.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:39.106"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":-176.8125,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":79.875,"pitch":107.6875,"roll":42.3125},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":7.0625,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":338.375,"pitch":-139.375,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":119.0625,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":48.8125,"pitch":-136.25,"roll":43.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:39.206"} +{"sensors":[{"euler":{"heading":293.1875,"pitch":175.1875,"roll":51.25},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":116.625,"roll":51.5},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-17.625,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":337.1875,"pitch":-143.375,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":179.125,"pitch":151.5625,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":72.4375,"pitch":-137.5,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:39.307"} +{"sensors":[{"euler":{"heading":305.9375,"pitch":164.75,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":103.75,"pitch":117.0625,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":72.5625,"pitch":-49.4375,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":347.3125,"pitch":-134.0625,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":189.9375,"pitch":-155.6875,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":74.125,"pitch":-138.75,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:39.408"} +{"sensors":[{"euler":{"heading":314.0,"pitch":157.5625,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":110.375,"pitch":119.0625,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":-46.125,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":357.1875,"pitch":-121.9375,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":190.8125,"pitch":178.75,"roll":84.0625},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-143.0625,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:39.508"} +{"sensors":[{"euler":{"heading":320.4375,"pitch":151.375,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":118.75,"pitch":123.5,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":96.125,"pitch":4.5625,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":2.625,"pitch":-116.8125,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":104.125,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":83.25,"pitch":-146.4375,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:39.609"} +{"sensors":[{"euler":{"heading":327.375,"pitch":145.5,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":121.75,"pitch":129.25,"roll":68.5},"location":"Left Ankle"},{"euler":{"heading":111.875,"pitch":66.25,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":1.125,"pitch":-118.625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":156.375,"pitch":98.3125,"roll":54.0},"location":"Right Knee"},{"euler":{"heading":84.875,"pitch":-150.625,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:39.709"} +{"sensors":[{"euler":{"heading":333.6875,"pitch":139.8125,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":128.5,"pitch":142.625,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":125.875,"pitch":71.75,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":354.5625,"pitch":-123.0,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":147.5625,"pitch":98.4375,"roll":45.3125},"location":"Right Knee"},{"euler":{"heading":85.5625,"pitch":-154.1875,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:39.810"} +{"sensors":[{"euler":{"heading":250.125,"pitch":134.125,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":133.25,"pitch":167.875,"roll":73.125},"location":"Left Ankle"},{"euler":{"heading":116.8125,"pitch":67.9375,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":349.75,"pitch":-124.0,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":147.0625,"pitch":94.5625,"roll":48.875},"location":"Right Knee"},{"euler":{"heading":89.6875,"pitch":-158.8125,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:39.911"} +{"sensors":[{"euler":{"heading":262.3125,"pitch":130.375,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":151.875,"pitch":-145.0,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":107.8125,"pitch":58.625,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":348.0625,"pitch":-125.0,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":150.0,"pitch":93.8125,"roll":55.3125},"location":"Right Knee"},{"euler":{"heading":79.4375,"pitch":-145.9375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:40.11"} +{"sensors":[{"euler":{"heading":265.5,"pitch":133.0,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":154.875,"pitch":-144.0,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":104.875,"pitch":47.1875,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":343.4375,"pitch":-128.8125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":152.0,"pitch":97.0625,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":68.25,"pitch":-133.125,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:40.112"} +{"sensors":[{"euler":{"heading":243.1875,"pitch":144.3125,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":127.1875,"pitch":171.0625,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":40.125,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":341.125,"pitch":-129.8125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":153.4375,"pitch":97.75,"roll":62.9375},"location":"Right Knee"},{"euler":{"heading":62.375,"pitch":-129.4375,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:40.213"} +{"sensors":[{"euler":{"heading":298.0625,"pitch":167.25,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":96.4375,"pitch":120.375,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":29.5,"roll":73.5625},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-131.8125,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":155.8125,"pitch":97.9375,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":46.4375,"pitch":-130.0,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:40.314"} +{"sensors":[{"euler":{"heading":278.5625,"pitch":-176.5,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":105.9375,"roll":42.9375},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":12.875,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":336.75,"pitch":-136.3125,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":106.1875,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":47.125,"pitch":-134.0,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:40.415"} +{"sensors":[{"euler":{"heading":290.875,"pitch":176.875,"roll":50.0625},"location":"Left Knee"},{"euler":{"heading":91.125,"pitch":114.125,"roll":48.4375},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-13.375,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":336.6875,"pitch":-142.0,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":172.9375,"pitch":128.375,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":71.0625,"pitch":-136.8125,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:40.515"} +{"sensors":[{"euler":{"heading":304.125,"pitch":167.25,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":101.25,"pitch":115.8125,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-47.625,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":345.25,"pitch":-137.1875,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":190.125,"pitch":-168.625,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":71.375,"pitch":-137.125,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:40.616"} +{"sensors":[{"euler":{"heading":312.8125,"pitch":159.875,"roll":51.1875},"location":"Left Knee"},{"euler":{"heading":109.3125,"pitch":116.9375,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":74.8125,"pitch":-55.375,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":355.0,"pitch":-124.1875,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":195.5625,"pitch":-144.9375,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":76.875,"pitch":-140.5625,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:40.717"} +{"sensors":[{"euler":{"heading":318.125,"pitch":153.8125,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":116.125,"pitch":120.6875,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":-30.4375,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":2.4375,"pitch":-118.0,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":183.0,"pitch":119.125,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":81.5,"pitch":-145.0,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:40.818"} +{"sensors":[{"euler":{"heading":324.75,"pitch":147.6875,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":118.375,"pitch":124.0625,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":103.125,"pitch":52.125,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":2.625,"pitch":-116.75,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":98.1875,"roll":61.25},"location":"Right Knee"},{"euler":{"heading":84.3125,"pitch":-148.9375,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:40.919"} +{"sensors":[{"euler":{"heading":331.5,"pitch":141.75,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":133.75,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":121.5,"pitch":71.8125,"roll":61.5625},"location":"Right Ankle"},{"euler":{"heading":355.875,"pitch":-121.6875,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":146.6875,"pitch":96.5,"roll":45.8125},"location":"Right Knee"},{"euler":{"heading":85.875,"pitch":-152.875,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:41.20"} +{"sensors":[{"euler":{"heading":247.875,"pitch":136.5,"roll":43.0},"location":"Left Knee"},{"euler":{"heading":128.875,"pitch":150.8125,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":117.4375,"pitch":68.25,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":350.3125,"pitch":-122.4375,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":145.8125,"pitch":95.3125,"roll":47.0625},"location":"Right Knee"},{"euler":{"heading":89.25,"pitch":-159.125,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:41.120"} +{"sensors":[{"euler":{"heading":256.375,"pitch":131.3125,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":139.0,"pitch":-164.125,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":106.125,"pitch":56.0625,"roll":70.625},"location":"Right Ankle"},{"euler":{"heading":347.375,"pitch":-123.125,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":147.5625,"pitch":90.9375,"roll":53.4375},"location":"Right Knee"},{"euler":{"heading":86.125,"pitch":-152.3125,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:41.221"} +{"sensors":[{"euler":{"heading":268.3125,"pitch":130.4375,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":154.625,"pitch":-143.125,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":101.4375,"pitch":43.875,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":341.5,"pitch":-127.1875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":148.4375,"pitch":94.6875,"roll":57.5},"location":"Right Knee"},{"euler":{"heading":71.5,"pitch":-136.375,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:41.322"} +{"sensors":[{"euler":{"heading":257.625,"pitch":138.875,"roll":47.625},"location":"Left Knee"},{"euler":{"heading":139.0,"pitch":-165.75,"roll":66.75},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":33.875,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":339.375,"pitch":-129.25,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":150.6875,"pitch":97.3125,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":63.375,"pitch":-131.0,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:41.423"} +{"sensors":[{"euler":{"heading":222.75,"pitch":156.75,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":107.625,"pitch":136.5,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":94.0,"pitch":22.75,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":337.0625,"pitch":-132.375,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":99.75,"roll":64.9375},"location":"Right Knee"},{"euler":{"heading":44.0625,"pitch":-129.625,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:41.523"} +{"sensors":[{"euler":{"heading":286.125,"pitch":177.25,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":84.0,"pitch":112.375,"roll":46.625},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":8.0,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":335.375,"pitch":-135.8125,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":158.5625,"pitch":105.25,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":45.6875,"pitch":-133.125,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:41.624"} +{"sensors":[{"euler":{"heading":281.9375,"pitch":-177.125,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":82.875,"pitch":111.9375,"roll":42.6875},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":-13.875,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":334.5,"pitch":-142.4375,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":119.0625,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":70.125,"pitch":-137.5625,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:41.725"} +{"sensors":[{"euler":{"heading":302.9375,"pitch":171.1875,"roll":48.375},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":118.6875,"roll":52.8125},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-42.3125,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":335.3125,"pitch":-144.0625,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":182.5,"pitch":166.5,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":73.75,"pitch":-138.1875,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:41.826"} +{"sensors":[{"euler":{"heading":315.9375,"pitch":161.625,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":111.9375,"pitch":121.25,"roll":58.9375},"location":"Left Ankle"},{"euler":{"heading":67.125,"pitch":-60.3125,"roll":57.375},"location":"Right Ankle"},{"euler":{"heading":347.375,"pitch":-132.125,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":195.0,"pitch":-136.5625,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":78.6875,"pitch":-140.75,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:41.927"} +{"sensors":[{"euler":{"heading":321.4375,"pitch":155.1875,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":119.8125,"pitch":124.625,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-51.0625,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":356.375,"pitch":-122.0625,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":190.25,"pitch":178.8125,"roll":83.625},"location":"Right Knee"},{"euler":{"heading":82.5,"pitch":-145.3125,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:42.28"} +{"sensors":[{"euler":{"heading":327.5625,"pitch":149.5,"roll":50.1875},"location":"Left Knee"},{"euler":{"heading":122.25,"pitch":126.0,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":-15.75,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":2.3125,"pitch":-116.6875,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":173.5625,"pitch":106.4375,"roll":68.625},"location":"Right Knee"},{"euler":{"heading":86.1875,"pitch":-149.125,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:42.129"} +{"sensors":[{"euler":{"heading":333.875,"pitch":143.5625,"roll":48.3125},"location":"Left Knee"},{"euler":{"heading":127.375,"pitch":131.5625,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":127.125,"pitch":65.75,"roll":68.9375},"location":"Right Ankle"},{"euler":{"heading":359.3125,"pitch":-120.3125,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":153.25,"pitch":98.5625,"roll":50.5625},"location":"Right Knee"},{"euler":{"heading":87.3125,"pitch":-152.875,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:42.230"} +{"sensors":[{"euler":{"heading":248.5625,"pitch":138.5625,"roll":44.8125},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":159.1875,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":122.375,"pitch":70.25,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":351.4375,"pitch":-123.9375,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":145.625,"pitch":96.75,"roll":43.9375},"location":"Right Knee"},{"euler":{"heading":88.75,"pitch":-157.5625,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:42.332"} +{"sensors":[{"euler":{"heading":253.625,"pitch":132.875,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":136.8125,"pitch":177.0625,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":108.6875,"pitch":63.0,"roll":68.8125},"location":"Right Ankle"},{"euler":{"heading":347.25,"pitch":-124.625,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":145.375,"pitch":91.8125,"roll":48.875},"location":"Right Knee"},{"euler":{"heading":90.75,"pitch":-159.5,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:42.432"} +{"sensors":[{"euler":{"heading":266.0625,"pitch":130.0625,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":158.9375,"pitch":-138.0,"roll":62.4375},"location":"Left Ankle"},{"euler":{"heading":100.0,"pitch":52.6875,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":343.5,"pitch":-125.4375,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":145.375,"pitch":89.9375,"roll":53.5},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-144.25,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:42.533"} +{"sensors":[{"euler":{"heading":267.625,"pitch":133.875,"roll":28.375},"location":"Left Knee"},{"euler":{"heading":155.1875,"pitch":-146.0625,"roll":62.6875},"location":"Left Ankle"},{"euler":{"heading":95.125,"pitch":41.3125,"roll":72.5},"location":"Right Ankle"},{"euler":{"heading":339.9375,"pitch":-128.125,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":146.625,"pitch":90.6875,"roll":58.25},"location":"Right Knee"},{"euler":{"heading":66.0,"pitch":-133.375,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:42.634"} +{"sensors":[{"euler":{"heading":236.3125,"pitch":148.125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":125.625,"pitch":155.6875,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":29.875,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":337.25,"pitch":-130.5,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":149.5,"pitch":93.4375,"roll":62.1875},"location":"Right Knee"},{"euler":{"heading":44.75,"pitch":-130.1875,"roll":44.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:42.735"} +{"sensors":[{"euler":{"heading":291.9375,"pitch":168.9375,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":116.125,"roll":53.4375},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":18.5625,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":336.0625,"pitch":-135.0,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":154.375,"pitch":97.9375,"roll":66.5},"location":"Right Knee"},{"euler":{"heading":45.5625,"pitch":-130.875,"roll":43.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:42.836"} +{"sensors":[{"euler":{"heading":278.25,"pitch":-176.5625,"roll":50.75},"location":"Left Knee"},{"euler":{"heading":77.875,"pitch":105.8125,"roll":42.3125},"location":"Left Ankle"},{"euler":{"heading":84.125,"pitch":-0.125,"roll":73.375},"location":"Right Ankle"},{"euler":{"heading":334.75,"pitch":-139.1875,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":107.8125,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":46.875,"pitch":-135.0,"roll":44.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:42.937"} +{"sensors":[{"euler":{"heading":290.625,"pitch":176.8125,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":92.75,"pitch":112.9375,"roll":49.9375},"location":"Left Ankle"},{"euler":{"heading":78.9375,"pitch":-25.375,"roll":69.25},"location":"Right Ankle"},{"euler":{"heading":334.875,"pitch":-144.9375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":174.9375,"pitch":138.0,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":72.0,"pitch":-137.8125,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:43.38"} +{"sensors":[{"euler":{"heading":302.0625,"pitch":167.0,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":99.625,"pitch":114.25,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":69.75,"pitch":-49.75,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":345.1875,"pitch":-135.875,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":185.75,"pitch":-172.5,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-139.3125,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:43.139"} +{"sensors":[{"euler":{"heading":311.375,"pitch":159.25,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":106.625,"pitch":116.75,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-54.5625,"roll":62.75},"location":"Right Ankle"},{"euler":{"heading":354.1875,"pitch":-123.0625,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":187.9375,"pitch":179.375,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":77.0625,"pitch":-142.75,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:43.240"} +{"sensors":[{"euler":{"heading":318.0625,"pitch":152.8125,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":115.25,"pitch":120.9375,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":86.5,"pitch":-25.125,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":1.0625,"pitch":-117.375,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":174.3125,"pitch":104.625,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-146.25,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:43.341"} +{"sensors":[{"euler":{"heading":324.5,"pitch":147.125,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":117.75,"pitch":125.125,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":49.375,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":0.8125,"pitch":-118.0,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":156.1875,"pitch":97.25,"roll":54.6875},"location":"Right Knee"},{"euler":{"heading":83.4375,"pitch":-150.75,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:43.442"} +{"sensors":[{"euler":{"heading":331.0625,"pitch":141.6875,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":123.9375,"pitch":136.25,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":119.9375,"pitch":69.625,"roll":62.5625},"location":"Right Ankle"},{"euler":{"heading":353.8125,"pitch":-122.375,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":144.75,"pitch":97.0625,"roll":43.625},"location":"Right Knee"},{"euler":{"heading":85.375,"pitch":-155.25,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:43.543"} +{"sensors":[{"euler":{"heading":248.375,"pitch":135.9375,"roll":42.0},"location":"Left Knee"},{"euler":{"heading":129.4375,"pitch":158.6875,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":113.5,"pitch":66.5,"roll":65.375},"location":"Right Ankle"},{"euler":{"heading":348.6875,"pitch":-123.625,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":143.625,"pitch":92.25,"roll":46.5625},"location":"Right Knee"},{"euler":{"heading":89.6875,"pitch":-160.125,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:43.643"} +{"sensors":[{"euler":{"heading":259.0625,"pitch":131.75,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":147.4375,"pitch":-154.0,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":103.25,"pitch":53.3125,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":345.875,"pitch":-124.875,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":145.3125,"pitch":91.25,"roll":51.6875},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-149.875,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:43.744"} +{"sensors":[{"euler":{"heading":269.5,"pitch":131.9375,"roll":26.875},"location":"Left Knee"},{"euler":{"heading":155.125,"pitch":-142.9375,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":96.8125,"pitch":41.8125,"roll":71.1875},"location":"Right Ankle"},{"euler":{"heading":340.625,"pitch":-127.125,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":145.375,"pitch":91.0,"roll":56.25},"location":"Right Knee"},{"euler":{"heading":69.5,"pitch":-136.3125,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:43.845"} +{"sensors":[{"euler":{"heading":248.8125,"pitch":142.25,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":133.1875,"pitch":160.5,"roll":70.6875},"location":"Left Ankle"},{"euler":{"heading":93.5,"pitch":31.875,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":339.3125,"pitch":-129.25,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":148.9375,"pitch":93.75,"roll":60.375},"location":"Right Knee"},{"euler":{"heading":62.1875,"pitch":-131.6875,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:43.946"} +{"sensors":[{"euler":{"heading":304.125,"pitch":160.9375,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":98.75,"pitch":124.5625,"roll":57.5},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":18.8125,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":338.375,"pitch":-134.8125,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":154.3125,"pitch":99.625,"roll":64.9375},"location":"Right Knee"},{"euler":{"heading":46.6875,"pitch":-131.0,"roll":43.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:44.47"} +{"sensors":[{"euler":{"heading":286.125,"pitch":179.1875,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":108.875,"roll":43.0},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":0.875,"roll":73.125},"location":"Right Ankle"},{"euler":{"heading":337.625,"pitch":-139.125,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":160.5625,"pitch":109.375,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-135.4375,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:44.148"} +{"sensors":[{"euler":{"heading":291.25,"pitch":178.4375,"roll":49.75},"location":"Left Knee"},{"euler":{"heading":91.8125,"pitch":115.125,"roll":46.625},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-21.8125,"roll":70.6875},"location":"Right Ankle"},{"euler":{"heading":336.5,"pitch":-146.1875,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":170.8125,"pitch":124.75,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":73.5,"pitch":-137.875,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:44.248"} +{"sensors":[{"euler":{"heading":306.875,"pitch":167.3125,"roll":50.625},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":117.5,"roll":55.25},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":-46.5625,"roll":62.875},"location":"Right Ankle"},{"euler":{"heading":342.0,"pitch":-142.5625,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":185.5,"pitch":172.75,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":74.5,"pitch":-138.4375,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:44.349"} +{"sensors":[{"euler":{"heading":316.4375,"pitch":158.875,"roll":51.1875},"location":"Left Knee"},{"euler":{"heading":111.125,"pitch":118.5,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":68.0,"pitch":-59.0625,"roll":55.875},"location":"Right Ankle"},{"euler":{"heading":353.1875,"pitch":-127.625,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":196.0625,"pitch":-143.1875,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":79.125,"pitch":-142.0,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:44.450"} +{"sensors":[{"euler":{"heading":321.6875,"pitch":152.625,"roll":51.6875},"location":"Left Knee"},{"euler":{"heading":120.3125,"pitch":124.0,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":-41.25,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":3.0625,"pitch":-118.8125,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":186.375,"pitch":140.75,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":83.4375,"pitch":-145.4375,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:44.550"} +{"sensors":[{"euler":{"heading":327.4375,"pitch":147.1875,"roll":50.3125},"location":"Left Knee"},{"euler":{"heading":122.4375,"pitch":127.5,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":97.5,"pitch":18.9375,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":5.625,"pitch":-115.8125,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":166.625,"pitch":103.625,"roll":62.875},"location":"Right Knee"},{"euler":{"heading":85.0625,"pitch":-148.75,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:44.651"} +{"sensors":[{"euler":{"heading":332.4375,"pitch":142.125,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":127.0,"pitch":135.9375,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":120.75,"pitch":68.25,"roll":62.75},"location":"Right Ankle"},{"euler":{"heading":1.8125,"pitch":-120.1875,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":147.5,"pitch":99.6875,"roll":44.9375},"location":"Right Knee"},{"euler":{"heading":86.3125,"pitch":-152.8125,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:44.752"} +{"sensors":[{"euler":{"heading":247.5625,"pitch":136.875,"roll":44.0625},"location":"Left Knee"},{"euler":{"heading":131.4375,"pitch":151.125,"roll":73.125},"location":"Left Ankle"},{"euler":{"heading":120.875,"pitch":69.75,"roll":60.625},"location":"Right Ankle"},{"euler":{"heading":353.3125,"pitch":-122.8125,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":143.25,"pitch":96.25,"roll":43.3125},"location":"Right Knee"},{"euler":{"heading":88.5625,"pitch":-158.0,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:44.853"} +{"sensors":[{"euler":{"heading":254.75,"pitch":132.125,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":139.5625,"pitch":-170.25,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":109.5625,"pitch":57.875,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":350.5625,"pitch":-124.0,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":144.875,"pitch":93.5625,"roll":48.9375},"location":"Right Knee"},{"euler":{"heading":88.1875,"pitch":-155.3125,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:44.954"} +{"sensors":[{"euler":{"heading":270.75,"pitch":129.1875,"roll":28.0625},"location":"Left Knee"},{"euler":{"heading":164.1875,"pitch":-133.5,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":103.375,"pitch":48.8125,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":345.1875,"pitch":-125.5625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":146.5625,"pitch":95.0625,"roll":54.25},"location":"Right Knee"},{"euler":{"heading":73.3125,"pitch":-139.0,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:45.54"} +{"sensors":[{"euler":{"heading":263.75,"pitch":138.0625,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":152.125,"pitch":-153.375,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":100.1875,"pitch":40.0625,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":344.25,"pitch":-127.5,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":149.375,"pitch":97.75,"roll":58.3125},"location":"Right Knee"},{"euler":{"heading":63.8125,"pitch":-131.875,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:45.155"} +{"sensors":[{"euler":{"heading":224.9375,"pitch":155.0625,"roll":42.3125},"location":"Left Knee"},{"euler":{"heading":118.5625,"pitch":140.875,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":30.9375,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":342.125,"pitch":-131.0,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":152.75,"pitch":100.375,"roll":61.875},"location":"Right Knee"},{"euler":{"heading":48.0,"pitch":-129.625,"roll":42.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:45.257"} +{"sensors":[{"euler":{"heading":284.4375,"pitch":176.1875,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":85.8125,"pitch":112.8125,"roll":48.75},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":20.25,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":339.5,"pitch":-134.0625,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":155.8125,"pitch":102.4375,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":48.4375,"pitch":-131.0625,"roll":41.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:45.358"} +{"sensors":[{"euler":{"heading":278.5625,"pitch":-176.375,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":79.375,"pitch":108.0,"roll":42.625},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":-0.1875,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":337.6875,"pitch":-139.0,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":162.5,"pitch":113.875,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":48.6875,"pitch":-135.0625,"roll":42.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:45.458"} +{"sensors":[{"euler":{"heading":297.5625,"pitch":173.3125,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":117.125,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":-26.0,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":337.4375,"pitch":-141.25,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":173.5,"pitch":142.0625,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":48.3125,"pitch":-136.5625,"roll":44.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:45.559"} +{"sensors":[{"euler":{"heading":307.4375,"pitch":164.5625,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":117.25,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":-53.3125,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":350.375,"pitch":-132.5,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":190.1875,"pitch":-168.5625,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":72.25,"pitch":-139.0625,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:45.661"} +{"sensors":[{"euler":{"heading":313.3125,"pitch":158.4375,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":109.5,"pitch":118.0625,"roll":60.4375},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":-50.625,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-121.75,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":188.75,"pitch":161.8125,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":75.75,"pitch":-143.0625,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:45.761"} +{"sensors":[{"euler":{"heading":321.125,"pitch":151.6875,"roll":51.25},"location":"Left Knee"},{"euler":{"heading":116.1875,"pitch":121.125,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":6.25,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":5.625,"pitch":-115.1875,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":173.375,"pitch":108.8125,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":80.0625,"pitch":-146.25,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:45.863"} +{"sensors":[{"euler":{"heading":328.0625,"pitch":145.75,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":118.6875,"pitch":125.0,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":110.6875,"pitch":60.0625,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":3.6875,"pitch":-117.0,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":154.5,"pitch":100.0,"roll":51.6875},"location":"Right Knee"},{"euler":{"heading":82.5625,"pitch":-151.4375,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:45.963"} +{"sensors":[{"euler":{"heading":334.1875,"pitch":139.8125,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":125.1875,"pitch":136.1875,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":122.0,"pitch":69.0625,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":355.375,"pitch":-121.9375,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":143.75,"pitch":98.25,"roll":42.5},"location":"Right Knee"},{"euler":{"heading":83.9375,"pitch":-154.6875,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:46.64"} +{"sensors":[{"euler":{"heading":251.9375,"pitch":134.0,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":130.3125,"pitch":162.75,"roll":71.6875},"location":"Left Ankle"},{"euler":{"heading":111.875,"pitch":63.9375,"roll":66.4375},"location":"Right Ankle"},{"euler":{"heading":349.25,"pitch":-124.375,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":143.0625,"pitch":94.0625,"roll":46.125},"location":"Right Knee"},{"euler":{"heading":87.125,"pitch":-157.125,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:46.165"} +{"sensors":[{"euler":{"heading":263.875,"pitch":131.0625,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":150.3125,"pitch":-148.4375,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":104.8125,"pitch":53.1875,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":346.9375,"pitch":-125.625,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":144.875,"pitch":93.4375,"roll":51.9375},"location":"Right Knee"},{"euler":{"heading":73.375,"pitch":-145.0625,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:46.266"} +{"sensors":[{"euler":{"heading":264.125,"pitch":134.8125,"roll":28.9375},"location":"Left Knee"},{"euler":{"heading":149.875,"pitch":-151.5625,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":103.875,"pitch":45.375,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":343.0625,"pitch":-128.8125,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":147.125,"pitch":96.0,"roll":56.25},"location":"Right Knee"},{"euler":{"heading":63.125,"pitch":-134.625,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:46.367"} +{"sensors":[{"euler":{"heading":237.5,"pitch":147.75,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":123.5,"pitch":153.75,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":40.5,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":341.0,"pitch":-130.5,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":149.25,"pitch":97.4375,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":45.75,"pitch":-130.375,"roll":42.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:46.467"} +{"sensors":[{"euler":{"heading":292.9375,"pitch":169.0625,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":93.125,"pitch":116.5,"roll":52.3125},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":29.625,"roll":72.0},"location":"Right Ankle"},{"euler":{"heading":340.0625,"pitch":-132.0,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":152.6875,"pitch":99.25,"roll":64.375},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-130.375,"roll":41.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:46.568"} +{"sensors":[{"euler":{"heading":277.0,"pitch":-175.1875,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":75.9375,"pitch":106.25,"roll":40.625},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":12.3125,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":338.375,"pitch":-137.25,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":159.875,"pitch":108.5625,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-134.75,"roll":42.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:46.669"} +{"sensors":[{"euler":{"heading":290.5,"pitch":177.875,"roll":50.75},"location":"Left Knee"},{"euler":{"heading":92.375,"pitch":115.375,"roll":47.875},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-20.25,"roll":69.1875},"location":"Right Ankle"},{"euler":{"heading":338.9375,"pitch":-143.3125,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":173.9375,"pitch":140.375,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":49.1875,"pitch":-137.625,"roll":44.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:46.770"} +{"sensors":[{"euler":{"heading":303.4375,"pitch":167.125,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":100.625,"pitch":116.5,"roll":54.4375},"location":"Left Ankle"},{"euler":{"heading":70.5625,"pitch":-50.6875,"roll":61.5625},"location":"Right Ankle"},{"euler":{"heading":351.5625,"pitch":-134.8125,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":186.375,"pitch":-176.375,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":71.6875,"pitch":-138.875,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:46.871"} +{"sensors":[{"euler":{"heading":310.9375,"pitch":160.0,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":105.5,"pitch":118.125,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":-50.875,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":0.75,"pitch":-122.125,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":188.5625,"pitch":178.0,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":75.25,"pitch":-142.0625,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:46.972"} +{"sensors":[{"euler":{"heading":317.3125,"pitch":153.75,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":110.9375,"pitch":120.875,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":92.375,"pitch":-8.875,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":5.8125,"pitch":-116.5,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":173.8125,"pitch":107.8125,"roll":69.9375},"location":"Right Knee"},{"euler":{"heading":78.6875,"pitch":-145.0625,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:47.73"} +{"sensors":[{"euler":{"heading":324.5,"pitch":147.75,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":113.5,"pitch":124.3125,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":108.3125,"pitch":57.625,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":5.0,"pitch":-117.6875,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":155.125,"pitch":100.0,"roll":52.125},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-148.6875,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:47.174"} +{"sensors":[{"euler":{"heading":331.5625,"pitch":142.0625,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":120.25,"pitch":131.75,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":122.25,"pitch":67.3125,"roll":61.125},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-121.0625,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":143.4375,"pitch":99.4375,"roll":41.625},"location":"Right Knee"},{"euler":{"heading":82.75,"pitch":-152.25,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:47.274"} +{"sensors":[{"euler":{"heading":247.6875,"pitch":136.9375,"roll":42.0},"location":"Left Knee"},{"euler":{"heading":126.0,"pitch":148.375,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":113.625,"pitch":63.0,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":351.875,"pitch":-122.375,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":142.125,"pitch":95.25,"roll":44.4375},"location":"Right Knee"},{"euler":{"heading":85.25,"pitch":-157.0,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:47.376"} +{"sensors":[{"euler":{"heading":257.375,"pitch":132.4375,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":140.1875,"pitch":-161.5,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":104.875,"pitch":49.5625,"roll":70.6875},"location":"Right Ankle"},{"euler":{"heading":349.5625,"pitch":-123.8125,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":145.625,"pitch":94.4375,"roll":50.9375},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-149.5625,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:47.477"} +{"sensors":[{"euler":{"heading":267.375,"pitch":132.5625,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":150.0625,"pitch":-149.3125,"roll":64.0625},"location":"Left Ankle"},{"euler":{"heading":101.5625,"pitch":39.0,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":342.6875,"pitch":-128.5625,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":145.6875,"pitch":96.5,"roll":54.625},"location":"Right Knee"},{"euler":{"heading":67.625,"pitch":-135.3125,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:47.578"} +{"sensors":[{"euler":{"heading":249.6875,"pitch":142.25,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":173.125,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":99.125,"pitch":31.625,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":340.5625,"pitch":-131.3125,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":148.875,"pitch":99.3125,"roll":58.25},"location":"Right Knee"},{"euler":{"heading":58.9375,"pitch":-130.375,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:47.679"} +{"sensors":[{"euler":{"heading":302.1875,"pitch":161.3125,"roll":46.875},"location":"Left Knee"},{"euler":{"heading":96.875,"pitch":123.5625,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":95.75,"pitch":21.0625,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":339.1875,"pitch":-134.9375,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":152.75,"pitch":103.375,"roll":62.1875},"location":"Right Knee"},{"euler":{"heading":45.5625,"pitch":-129.9375,"roll":42.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:47.780"} +{"sensors":[{"euler":{"heading":281.75,"pitch":-178.3125,"roll":50.0625},"location":"Left Knee"},{"euler":{"heading":77.3125,"pitch":107.5625,"roll":42.875},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":5.1875,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":338.0625,"pitch":-137.625,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":158.125,"pitch":110.6875,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":47.3125,"pitch":-134.375,"roll":43.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:47.881"} +{"sensors":[{"euler":{"heading":286.3125,"pitch":179.0,"roll":49.0},"location":"Left Knee"},{"euler":{"heading":86.1875,"pitch":113.75,"roll":44.6875},"location":"Left Ankle"},{"euler":{"heading":83.8125,"pitch":-16.75,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":336.9375,"pitch":-144.75,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":168.0,"pitch":122.4375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":48.6875,"pitch":-136.9375,"roll":44.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:47.982"} +{"sensors":[{"euler":{"heading":302.6875,"pitch":169.25,"roll":50.1875},"location":"Left Knee"},{"euler":{"heading":98.5625,"pitch":116.5625,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":76.6875,"pitch":-40.625,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":343.125,"pitch":-141.625,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":181.6875,"pitch":159.3125,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":71.375,"pitch":-138.25,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:48.82"} +{"sensors":[{"euler":{"heading":313.25,"pitch":161.5625,"roll":50.625},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":116.875,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":71.6875,"pitch":-54.875,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":354.3125,"pitch":-127.1875,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":189.4375,"pitch":-174.8125,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":76.1875,"pitch":-141.3125,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:48.184"} +{"sensors":[{"euler":{"heading":318.25,"pitch":155.5625,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":114.0625,"pitch":120.4375,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-36.4375,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":3.5,"pitch":-118.875,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":181.1875,"pitch":123.625,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":79.625,"pitch":-145.1875,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:48.285"} +{"sensors":[{"euler":{"heading":325.5625,"pitch":149.5625,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":116.625,"pitch":122.4375,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":97.375,"pitch":14.0625,"roll":80.1875},"location":"Right Ankle"},{"euler":{"heading":5.5625,"pitch":-115.4375,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":101.75,"roll":61.1875},"location":"Right Knee"},{"euler":{"heading":82.6875,"pitch":-148.6875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:48.385"} +{"sensors":[{"euler":{"heading":331.8125,"pitch":143.6875,"roll":47.625},"location":"Left Knee"},{"euler":{"heading":121.625,"pitch":129.75,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":118.125,"pitch":65.8125,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":0.3125,"pitch":-120.3125,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":148.125,"pitch":100.1875,"roll":45.4375},"location":"Right Knee"},{"euler":{"heading":84.4375,"pitch":-152.75,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:48.486"} +{"sensors":[{"euler":{"heading":248.875,"pitch":137.625,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":143.5,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":119.375,"pitch":67.0,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":353.875,"pitch":-123.0,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":144.9375,"pitch":96.9375,"roll":44.375},"location":"Right Knee"},{"euler":{"heading":87.4375,"pitch":-157.25,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:48.587"} +{"sensors":[{"euler":{"heading":257.6875,"pitch":131.25,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":135.9375,"pitch":175.6875,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":106.5625,"pitch":55.1875,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":350.25,"pitch":-123.9375,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":145.4375,"pitch":91.8125,"roll":50.4375},"location":"Right Knee"},{"euler":{"heading":88.5625,"pitch":-156.0625,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:48.688"} +{"sensors":[{"euler":{"heading":269.5625,"pitch":130.4375,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":158.125,"pitch":-142.0625,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":100.3125,"pitch":44.5,"roll":70.625},"location":"Right Ankle"},{"euler":{"heading":345.0,"pitch":-125.9375,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":144.625,"pitch":93.0,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":72.1875,"pitch":-140.6875,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:48.788"} +{"sensors":[{"euler":{"heading":263.4375,"pitch":135.125,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":-151.875,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":38.375,"roll":70.125},"location":"Right Ankle"},{"euler":{"heading":341.3125,"pitch":-129.4375,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":147.0625,"pitch":95.0625,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":62.25,"pitch":-133.1875,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:48.889"} +{"sensors":[{"euler":{"heading":231.9375,"pitch":150.5,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":116.5,"pitch":145.75,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":94.0,"pitch":30.375,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":339.5,"pitch":-131.4375,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":149.5625,"pitch":95.9375,"roll":62.75},"location":"Right Knee"},{"euler":{"heading":44.9375,"pitch":-129.125,"roll":44.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:48.990"} +{"sensors":[{"euler":{"heading":291.4375,"pitch":171.875,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":86.6875,"pitch":113.4375,"roll":49.5625},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":17.6875,"roll":72.4375},"location":"Right Ankle"},{"euler":{"heading":337.875,"pitch":-135.3125,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":153.875,"pitch":99.75,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-131.625,"roll":43.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:49.91"} +{"sensors":[{"euler":{"heading":287.875,"pitch":179.75,"roll":48.375},"location":"Left Knee"},{"euler":{"heading":78.8125,"pitch":110.5625,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-6.25,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":337.9375,"pitch":-139.25,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":163.1875,"pitch":113.5,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-136.1875,"roll":43.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:49.192"} +{"sensors":[{"euler":{"heading":302.75,"pitch":170.4375,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":95.9375,"pitch":116.875,"roll":50.875},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-38.25,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-140.375,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":178.875,"pitch":159.625,"roll":80.125},"location":"Right Knee"},{"euler":{"heading":68.9375,"pitch":-136.875,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:49.292"} +{"sensors":[{"euler":{"heading":312.125,"pitch":161.6875,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":117.875,"roll":55.375},"location":"Left Ankle"},{"euler":{"heading":65.6875,"pitch":-57.6875,"roll":56.9375},"location":"Right Ankle"},{"euler":{"heading":349.8125,"pitch":-128.625,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":189.125,"pitch":-151.0625,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":72.5,"pitch":-139.0,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:49.393"} +{"sensors":[{"euler":{"heading":316.9375,"pitch":155.9375,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":107.0,"pitch":120.25,"roll":59.3125},"location":"Left Ankle"},{"euler":{"heading":75.75,"pitch":-52.0625,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":359.625,"pitch":-120.5625,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":187.4375,"pitch":139.375,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":75.5625,"pitch":-142.375,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:49.493"} +{"sensors":[{"euler":{"heading":321.3125,"pitch":150.3125,"roll":48.6875},"location":"Left Knee"},{"euler":{"heading":111.3125,"pitch":123.6875,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":91.6875,"pitch":-21.75,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":2.9375,"pitch":-116.5,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":171.875,"pitch":103.3125,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":79.1875,"pitch":-146.9375,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:49.594"} +{"sensors":[{"euler":{"heading":329.875,"pitch":144.3125,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":116.0625,"pitch":127.3125,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":112.25,"pitch":60.4375,"roll":70.6875},"location":"Right Ankle"},{"euler":{"heading":0.9375,"pitch":-119.625,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":153.0,"pitch":100.875,"roll":48.8125},"location":"Right Knee"},{"euler":{"heading":83.4375,"pitch":-150.5625,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:49.694"} +{"sensors":[{"euler":{"heading":248.0625,"pitch":138.4375,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":123.25,"pitch":138.375,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":124.3125,"pitch":67.5,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":355.5,"pitch":-122.5625,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":144.875,"pitch":100.625,"roll":42.0625},"location":"Right Knee"},{"euler":{"heading":85.5,"pitch":-154.3125,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:49.795"} +{"sensors":[{"euler":{"heading":255.3125,"pitch":133.0625,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":129.8125,"pitch":162.4375,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":110.875,"pitch":61.9375,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":350.1875,"pitch":-123.25,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":144.4375,"pitch":95.0,"roll":46.875},"location":"Right Knee"},{"euler":{"heading":88.0,"pitch":-157.375,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:49.896"} +{"sensors":[{"euler":{"heading":269.8125,"pitch":130.0,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":151.625,"pitch":-149.4375,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":49.6875,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":346.5,"pitch":-124.875,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":145.875,"pitch":92.8125,"roll":51.9375},"location":"Right Knee"},{"euler":{"heading":72.8125,"pitch":-142.125,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:49.997"} +{"sensors":[{"euler":{"heading":268.375,"pitch":134.0,"roll":26.75},"location":"Left Knee"},{"euler":{"heading":148.0,"pitch":-149.1875,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":39.25,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":342.5625,"pitch":-126.9375,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":146.375,"pitch":94.0625,"roll":56.875},"location":"Right Knee"},{"euler":{"heading":63.0,"pitch":-131.8125,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:50.97"} +{"sensors":[{"euler":{"heading":242.8125,"pitch":146.25,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":124.0,"pitch":163.625,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":94.125,"pitch":30.25,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-128.9375,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":147.6875,"pitch":95.0625,"roll":60.25},"location":"Right Knee"},{"euler":{"heading":45.0,"pitch":-127.6875,"roll":43.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:50.197"} +{"sensors":[{"euler":{"heading":297.875,"pitch":166.25,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":91.0625,"pitch":118.25,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":15.9375,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":339.0,"pitch":-133.5625,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":153.75,"pitch":100.75,"roll":65.25},"location":"Right Knee"},{"euler":{"heading":47.1875,"pitch":-129.125,"roll":42.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:50.298"} +{"sensors":[{"euler":{"heading":286.125,"pitch":-179.375,"roll":48.5625},"location":"Left Knee"},{"euler":{"heading":76.6875,"pitch":108.0,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":-5.4375,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":339.4375,"pitch":-138.8125,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":162.5625,"pitch":113.75,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":50.0,"pitch":-133.5625,"roll":43.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:50.399"} +{"sensors":[{"euler":{"heading":296.5,"pitch":176.0625,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":113.875,"roll":43.6875},"location":"Left Ankle"},{"euler":{"heading":80.375,"pitch":-27.5,"roll":67.5625},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-147.9375,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":191.375,"pitch":141.375,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":73.0,"pitch":-136.75,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:50.500"} +{"sensors":[{"euler":{"heading":310.4375,"pitch":165.875,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":100.9375,"pitch":115.9375,"roll":53.4375},"location":"Left Ankle"},{"euler":{"heading":72.0625,"pitch":-50.6875,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":344.125,"pitch":-142.25,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":188.5,"pitch":-173.0,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":72.625,"pitch":-136.75,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:50.600"} +{"sensors":[{"euler":{"heading":317.4375,"pitch":158.0625,"roll":49.5625},"location":"Left Knee"},{"euler":{"heading":106.5625,"pitch":119.0625,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":66.6875,"pitch":-64.875,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":353.5625,"pitch":-125.6875,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":195.4375,"pitch":-145.6875,"roll":80.75},"location":"Right Knee"},{"euler":{"heading":75.375,"pitch":-139.75,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:50.701"} +{"sensors":[{"euler":{"heading":320.875,"pitch":152.5625,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":113.625,"pitch":123.0,"roll":62.6875},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":-46.0625,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":3.0625,"pitch":-118.0625,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":183.375,"pitch":117.375,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":78.4375,"pitch":-142.875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:50.801"} +{"sensors":[{"euler":{"heading":327.9375,"pitch":147.125,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":116.4375,"pitch":125.6875,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":16.3125,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":5.25,"pitch":-117.375,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":163.5625,"pitch":99.6875,"roll":58.375},"location":"Right Knee"},{"euler":{"heading":80.9375,"pitch":-146.125,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:50.902"} +{"sensors":[{"euler":{"heading":334.6875,"pitch":141.25,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":122.5625,"pitch":132.6875,"roll":68.5625},"location":"Left Ankle"},{"euler":{"heading":117.9375,"pitch":70.0,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":0.3125,"pitch":-121.5625,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":146.8125,"pitch":98.0,"roll":43.0},"location":"Right Knee"},{"euler":{"heading":83.5625,"pitch":-150.75,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:51.3"} +{"sensors":[{"euler":{"heading":251.875,"pitch":135.9375,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":127.0,"pitch":144.6875,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":123.125,"pitch":70.375,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":353.625,"pitch":-123.6875,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":141.625,"pitch":97.5,"roll":40.5625},"location":"Right Knee"},{"euler":{"heading":87.25,"pitch":-156.8125,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:51.104"} +{"sensors":[{"euler":{"heading":258.8125,"pitch":131.9375,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":134.3125,"pitch":177.125,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":109.25,"pitch":61.5625,"roll":68.375},"location":"Right Ankle"},{"euler":{"heading":350.0,"pitch":-124.6875,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":142.6875,"pitch":92.6875,"roll":46.375},"location":"Right Knee"},{"euler":{"heading":88.9375,"pitch":-159.75,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:51.205"} +{"sensors":[{"euler":{"heading":274.875,"pitch":128.6875,"roll":25.8125},"location":"Left Knee"},{"euler":{"heading":157.4375,"pitch":-142.5,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":102.0625,"pitch":50.3125,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-127.125,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":142.875,"pitch":92.5,"roll":50.9375},"location":"Right Knee"},{"euler":{"heading":74.4375,"pitch":-143.75,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:51.306"} +{"sensors":[{"euler":{"heading":268.5,"pitch":135.8125,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":146.4375,"pitch":-152.875,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":38.8125,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":342.4375,"pitch":-130.125,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":147.4375,"pitch":96.25,"roll":56.6875},"location":"Right Knee"},{"euler":{"heading":64.125,"pitch":-133.625,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:51.407"} +{"sensors":[{"euler":{"heading":237.8125,"pitch":149.5625,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":116.5,"pitch":152.1875,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":94.9375,"pitch":28.625,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":339.9375,"pitch":-133.5,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":150.625,"pitch":98.875,"roll":60.8125},"location":"Right Knee"},{"euler":{"heading":44.75,"pitch":-129.0625,"roll":43.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:51.508"} +{"sensors":[{"euler":{"heading":294.5,"pitch":169.3125,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":86.625,"pitch":115.9375,"roll":50.625},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":14.75,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":337.8125,"pitch":-137.1875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":154.4375,"pitch":102.4375,"roll":65.4375},"location":"Right Knee"},{"euler":{"heading":45.5,"pitch":-130.9375,"roll":42.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:51.609"} +{"sensors":[{"euler":{"heading":282.3125,"pitch":-178.25,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":74.125,"pitch":107.6875,"roll":39.3125},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":-6.5625,"roll":72.5625},"location":"Right Ankle"},{"euler":{"heading":337.0625,"pitch":-142.875,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":162.125,"pitch":112.8125,"roll":71.1875},"location":"Right Knee"},{"euler":{"heading":46.5625,"pitch":-135.625,"roll":44.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:51.710"} +{"sensors":[{"euler":{"heading":296.625,"pitch":173.75,"roll":49.0},"location":"Left Knee"},{"euler":{"heading":88.4375,"pitch":114.9375,"roll":47.4375},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":-31.875,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":336.625,"pitch":-148.3125,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":174.4375,"pitch":138.0,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":71.625,"pitch":-138.1875,"roll":45.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:51.811"} +{"sensors":[{"euler":{"heading":311.375,"pitch":163.5,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":116.4375,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":65.125,"pitch":-55.1875,"roll":57.8125},"location":"Right Ankle"},{"euler":{"heading":346.25,"pitch":-136.25,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":186.1875,"pitch":-170.9375,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":72.375,"pitch":-138.625,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:51.912"} +{"sensors":[{"euler":{"heading":320.375,"pitch":156.375,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":110.4375,"pitch":117.9375,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":68.875,"pitch":-56.3125,"roll":59.125},"location":"Right Ankle"},{"euler":{"heading":356.5,"pitch":-125.25,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":191.375,"pitch":179.625,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":76.6875,"pitch":-142.375,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:52.13"} +{"sensors":[{"euler":{"heading":327.5625,"pitch":150.125,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":114.75,"pitch":120.5625,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":85.8125,"pitch":-35.8125,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":4.25,"pitch":-117.875,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":111.9375,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-145.375,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:52.114"} +{"sensors":[{"euler":{"heading":335.625,"pitch":144.0625,"roll":47.6875},"location":"Left Knee"},{"euler":{"heading":119.5625,"pitch":125.1875,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":105.25,"pitch":55.625,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":3.4375,"pitch":-118.125,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":153.1875,"pitch":98.75,"roll":50.5},"location":"Right Knee"},{"euler":{"heading":83.6875,"pitch":-149.375,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:52.214"} +{"sensors":[{"euler":{"heading":251.3125,"pitch":138.8125,"roll":44.8125},"location":"Left Knee"},{"euler":{"heading":123.875,"pitch":132.6875,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":123.125,"pitch":71.4375,"roll":61.0},"location":"Right Ankle"},{"euler":{"heading":357.1875,"pitch":-123.0625,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":143.0625,"pitch":98.0,"roll":41.3125},"location":"Right Knee"},{"euler":{"heading":85.4375,"pitch":-154.125,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:52.315"} +{"sensors":[{"euler":{"heading":254.4375,"pitch":133.8125,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":148.8125,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":114.625,"pitch":69.625,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":350.625,"pitch":-125.4375,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":143.1875,"pitch":92.8125,"roll":45.875},"location":"Right Knee"},{"euler":{"heading":89.625,"pitch":-159.3125,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:52.415"} +{"sensors":[{"euler":{"heading":261.75,"pitch":130.625,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":139.4375,"pitch":-168.9375,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":105.5,"pitch":57.625,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":349.125,"pitch":-126.0625,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":145.25,"pitch":92.4375,"roll":51.3125},"location":"Right Knee"},{"euler":{"heading":79.5625,"pitch":-149.5625,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:52.517"} +{"sensors":[{"euler":{"heading":268.375,"pitch":131.125,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":146.0625,"pitch":-151.9375,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":101.4375,"pitch":47.4375,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":342.625,"pitch":-130.6875,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":147.125,"pitch":93.6875,"roll":56.3125},"location":"Right Knee"},{"euler":{"heading":66.1875,"pitch":-135.0625,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:52.617"} +{"sensors":[{"euler":{"heading":253.125,"pitch":140.3125,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":129.125,"pitch":-179.8125,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":97.1875,"pitch":36.3125,"roll":72.0},"location":"Right Ankle"},{"euler":{"heading":340.4375,"pitch":-132.5625,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":149.1875,"pitch":94.5625,"roll":60.0625},"location":"Right Knee"},{"euler":{"heading":43.5625,"pitch":-129.5625,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:52.718"} +{"sensors":[{"euler":{"heading":305.1875,"pitch":160.0625,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":95.0,"pitch":123.1875,"roll":57.9375},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":25.875,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":338.3125,"pitch":-135.0,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":152.4375,"pitch":96.125,"roll":64.4375},"location":"Right Knee"},{"euler":{"heading":45.0,"pitch":-129.375,"roll":42.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:52.818"} +{"sensors":[{"euler":{"heading":283.875,"pitch":179.75,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":75.625,"pitch":107.5625,"roll":41.375},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":5.3125,"roll":73.375},"location":"Right Ankle"},{"euler":{"heading":337.5,"pitch":-137.9375,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":159.3125,"pitch":104.5625,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":47.1875,"pitch":-133.4375,"roll":42.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:52.920"} +{"sensors":[{"euler":{"heading":288.9375,"pitch":177.0625,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":82.9375,"pitch":114.125,"roll":44.75},"location":"Left Ankle"},{"euler":{"heading":79.5625,"pitch":-20.625,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":338.0,"pitch":-144.8125,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":170.4375,"pitch":123.5625,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":49.0625,"pitch":-137.0625,"roll":43.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:53.21"} +{"sensors":[{"euler":{"heading":306.1875,"pitch":166.875,"roll":50.0625},"location":"Left Knee"},{"euler":{"heading":97.4375,"pitch":117.4375,"roll":52.5},"location":"Left Ankle"},{"euler":{"heading":72.0,"pitch":-47.4375,"roll":63.25},"location":"Right Ankle"},{"euler":{"heading":344.4375,"pitch":-140.125,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":182.75,"pitch":171.8125,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":68.75,"pitch":-136.8125,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:53.122"} +{"sensors":[{"euler":{"heading":315.1875,"pitch":159.5,"roll":50.625},"location":"Left Knee"},{"euler":{"heading":104.625,"pitch":118.75,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":71.625,"pitch":-57.125,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":355.75,"pitch":-126.0,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":192.4375,"pitch":-159.75,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":72.375,"pitch":-139.875,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:53.223"} +{"sensors":[{"euler":{"heading":322.0,"pitch":153.375,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":112.9375,"pitch":121.875,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":88.375,"pitch":-32.75,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":4.25,"pitch":-119.0,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":181.75,"pitch":123.0625,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-143.0625,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:53.324"} +{"sensors":[{"euler":{"heading":329.625,"pitch":147.1875,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":115.8125,"pitch":124.0,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":106.625,"pitch":45.875,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":5.1875,"pitch":-117.5625,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":162.8125,"pitch":102.9375,"roll":57.0625},"location":"Right Knee"},{"euler":{"heading":80.625,"pitch":-147.125,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:53.424"} +{"sensors":[{"euler":{"heading":337.75,"pitch":140.75,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":134.1875,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":124.8125,"pitch":67.75,"roll":60.625},"location":"Right Ankle"},{"euler":{"heading":359.625,"pitch":-122.8125,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":147.0,"pitch":101.8125,"roll":43.0},"location":"Right Knee"},{"euler":{"heading":81.375,"pitch":-149.0,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:53.525"} +{"sensors":[{"euler":{"heading":254.875,"pitch":135.0625,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":130.375,"pitch":149.6875,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":119.4375,"pitch":67.75,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":352.5,"pitch":-125.0,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":142.25,"pitch":95.4375,"roll":43.5},"location":"Right Knee"},{"euler":{"heading":83.0625,"pitch":-152.75,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:53.625"} +{"sensors":[{"euler":{"heading":262.0625,"pitch":131.3125,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":138.5625,"pitch":-176.3125,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":108.75,"pitch":56.25,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":349.75,"pitch":-126.1875,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":142.625,"pitch":92.625,"roll":48.625},"location":"Right Knee"},{"euler":{"heading":79.625,"pitch":-151.125,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:53.725"} +{"sensors":[{"euler":{"heading":273.125,"pitch":129.875,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":152.875,"pitch":-149.5625,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":103.875,"pitch":45.3125,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":345.0,"pitch":-129.0,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":145.375,"pitch":95.0625,"roll":53.75},"location":"Right Knee"},{"euler":{"heading":69.0,"pitch":-136.75,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:53.826"} +{"sensors":[{"euler":{"heading":259.25,"pitch":138.875,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":137.3125,"pitch":-168.6875,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":100.3125,"pitch":36.875,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":342.0,"pitch":-131.0,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":147.375,"pitch":96.5,"roll":58.0},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-130.8125,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:53.927"} +{"sensors":[{"euler":{"heading":221.1875,"pitch":156.9375,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":104.75,"pitch":130.6875,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":96.8125,"pitch":28.375,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":340.3125,"pitch":-133.8125,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":151.0,"pitch":99.75,"roll":62.1875},"location":"Right Knee"},{"euler":{"heading":45.125,"pitch":-128.875,"roll":42.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:54.28"} +{"sensors":[{"euler":{"heading":286.0625,"pitch":178.0,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":78.25,"pitch":109.9375,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":14.5,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":339.6875,"pitch":-137.375,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":107.0625,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":46.625,"pitch":-132.375,"roll":42.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:54.128"} +{"sensors":[{"euler":{"heading":283.1875,"pitch":-177.5,"roll":49.375},"location":"Left Knee"},{"euler":{"heading":76.4375,"pitch":109.75,"roll":39.625},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":-6.875,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":339.0625,"pitch":-144.5625,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":167.1875,"pitch":121.5625,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":48.4375,"pitch":-136.0,"roll":43.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:54.229"} +{"sensors":[{"euler":{"heading":303.25,"pitch":169.8125,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":115.5,"roll":49.625},"location":"Left Ankle"},{"euler":{"heading":77.375,"pitch":-35.625,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":339.75,"pitch":-144.5,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":179.375,"pitch":157.1875,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":68.625,"pitch":-136.5625,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:54.330"} +{"sensors":[{"euler":{"heading":312.4375,"pitch":161.75,"roll":50.125},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":117.0,"roll":54.875},"location":"Left Ankle"},{"euler":{"heading":69.0,"pitch":-55.1875,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":351.8125,"pitch":-131.75,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":189.25,"pitch":-157.5625,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":72.625,"pitch":-138.9375,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:54.431"} +{"sensors":[{"euler":{"heading":319.4375,"pitch":155.25,"roll":51.125},"location":"Left Knee"},{"euler":{"heading":110.9375,"pitch":120.75,"roll":60.4375},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":-44.3125,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":2.375,"pitch":-121.625,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":185.4375,"pitch":129.875,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":75.375,"pitch":-141.0625,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:54.531"} +{"sensors":[{"euler":{"heading":325.5,"pitch":149.4375,"roll":50.5625},"location":"Left Knee"},{"euler":{"heading":114.625,"pitch":122.25,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":95.4375,"pitch":-10.5625,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":7.3125,"pitch":-117.25,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":170.9375,"pitch":105.8125,"roll":49.125},"location":"Right Knee"},{"euler":{"heading":79.25,"pitch":-144.0,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:54.633"} +{"sensors":[{"euler":{"heading":332.875,"pitch":143.6875,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":118.3125,"pitch":127.8125,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":115.375,"pitch":63.4375,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":3.4375,"pitch":-120.6875,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":150.75,"pitch":99.625,"roll":47.375},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-147.875,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:54.733"} +{"sensors":[{"euler":{"heading":248.0,"pitch":138.4375,"roll":44.75},"location":"Left Knee"},{"euler":{"heading":123.625,"pitch":138.375,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":124.9375,"pitch":68.0,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":355.5,"pitch":-124.8125,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":142.5625,"pitch":98.5625,"roll":40.8125},"location":"Right Knee"},{"euler":{"heading":81.3125,"pitch":-151.25,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:54.834"} +{"sensors":[{"euler":{"heading":254.25,"pitch":133.8125,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":129.4375,"pitch":161.5,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":112.375,"pitch":61.3125,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":349.9375,"pitch":-125.9375,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":142.0,"pitch":93.75,"roll":45.1875},"location":"Right Knee"},{"euler":{"heading":83.625,"pitch":-155.125,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:54.934"} +{"sensors":[{"euler":{"heading":266.375,"pitch":130.625,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":146.3125,"pitch":-151.9375,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":105.0,"pitch":51.25,"roll":68.8125},"location":"Right Ankle"},{"euler":{"heading":346.0,"pitch":-128.0625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":143.5625,"pitch":92.875,"roll":51.0625},"location":"Right Knee"},{"euler":{"heading":71.9375,"pitch":-140.5625,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:55.36"} +{"sensors":[{"euler":{"heading":264.5625,"pitch":134.3125,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":143.0,"pitch":-155.6875,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":100.375,"pitch":41.25,"roll":69.0625},"location":"Right Ankle"},{"euler":{"heading":339.75,"pitch":-131.3125,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":143.875,"pitch":93.8125,"roll":55.1875},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-131.75,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:55.136"} +{"sensors":[{"euler":{"heading":237.4375,"pitch":147.75,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":116.4375,"pitch":153.9375,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":95.4375,"pitch":32.5625,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":338.3125,"pitch":-132.0625,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":146.5625,"pitch":94.8125,"roll":59.125},"location":"Right Knee"},{"euler":{"heading":41.75,"pitch":-128.5625,"roll":43.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:55.237"} +{"sensors":[{"euler":{"heading":297.625,"pitch":166.9375,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":89.0,"pitch":117.875,"roll":52.25},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":22.9375,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":338.0,"pitch":-135.3125,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":150.875,"pitch":97.0625,"roll":63.5625},"location":"Right Knee"},{"euler":{"heading":45.5,"pitch":-129.6875,"roll":42.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:55.338"} +{"sensors":[{"euler":{"heading":285.3125,"pitch":-179.875,"roll":49.0},"location":"Left Knee"},{"euler":{"heading":76.0,"pitch":108.3125,"roll":40.25},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":4.25,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":338.5625,"pitch":-138.625,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":158.625,"pitch":105.9375,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":48.4375,"pitch":-134.625,"roll":42.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:55.439"} +{"sensors":[{"euler":{"heading":299.125,"pitch":173.625,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":91.3125,"pitch":116.75,"roll":46.5625},"location":"Left Ankle"},{"euler":{"heading":79.125,"pitch":-21.0,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":339.1875,"pitch":-143.25,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":170.8125,"pitch":134.6875,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":48.625,"pitch":-136.75,"roll":44.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:55.540"} +{"sensors":[{"euler":{"heading":309.0625,"pitch":164.6875,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":98.3125,"pitch":118.0625,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":70.25,"pitch":-48.1875,"roll":60.1875},"location":"Right Ankle"},{"euler":{"heading":350.0,"pitch":-134.0,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":184.375,"pitch":179.375,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":68.375,"pitch":-137.8125,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:55.641"} +{"sensors":[{"euler":{"heading":316.0,"pitch":158.125,"roll":50.1875},"location":"Left Knee"},{"euler":{"heading":104.4375,"pitch":119.6875,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":-52.5,"roll":63.25},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-122.1875,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":186.3125,"pitch":139.6875,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":72.5,"pitch":-141.3125,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:55.741"} +{"sensors":[{"euler":{"heading":322.875,"pitch":152.125,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":112.3125,"pitch":123.0625,"roll":61.125},"location":"Left Ankle"},{"euler":{"heading":92.375,"pitch":-15.75,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":4.4375,"pitch":-118.1875,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":104.375,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":76.0,"pitch":-144.5,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:55.841"} +{"sensors":[{"euler":{"heading":330.875,"pitch":146.0625,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":116.1875,"pitch":125.4375,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":107.25,"pitch":57.375,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":4.375,"pitch":-119.375,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":151.9375,"pitch":97.75,"roll":33.4375},"location":"Right Knee"},{"euler":{"heading":80.5625,"pitch":-148.875,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:55.943"} +{"sensors":[{"euler":{"heading":339.625,"pitch":139.375,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":124.4375,"pitch":134.125,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":123.875,"pitch":67.75,"roll":59.5625},"location":"Right Ankle"},{"euler":{"heading":358.75,"pitch":-123.625,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":142.0625,"pitch":99.0,"roll":39.4375},"location":"Right Knee"},{"euler":{"heading":82.75,"pitch":-152.375,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:56.44"} +{"sensors":[{"euler":{"heading":256.8125,"pitch":133.875,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":129.5625,"pitch":150.0625,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":117.1875,"pitch":65.5,"roll":63.0625},"location":"Right Ankle"},{"euler":{"heading":353.5625,"pitch":-124.9375,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":141.9375,"pitch":95.25,"roll":42.875},"location":"Right Knee"},{"euler":{"heading":86.125,"pitch":-156.9375,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:56.145"} +{"sensors":[{"euler":{"heading":265.9375,"pitch":130.125,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":141.5,"pitch":-167.9375,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":107.125,"pitch":53.5625,"roll":67.875},"location":"Right Ankle"},{"euler":{"heading":351.6875,"pitch":-125.875,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":143.375,"pitch":93.0625,"roll":48.25},"location":"Right Knee"},{"euler":{"heading":64.875,"pitch":-147.9375,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:56.247"} +{"sensors":[{"euler":{"heading":274.4375,"pitch":130.0,"roll":26.75},"location":"Left Knee"},{"euler":{"heading":153.75,"pitch":-147.0625,"roll":62.4375},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":46.75,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":345.0,"pitch":-128.125,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":142.125,"pitch":92.0625,"roll":52.1875},"location":"Right Knee"},{"euler":{"heading":67.0625,"pitch":-133.875,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:56.348"} +{"sensors":[{"euler":{"heading":254.3125,"pitch":141.5625,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":127.0625,"pitch":168.3125,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":40.75,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":342.375,"pitch":-128.8125,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":143.3125,"pitch":91.1875,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":43.4375,"pitch":-129.375,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:56.449"} +{"sensors":[{"euler":{"heading":305.4375,"pitch":161.0,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":120.4375,"roll":54.875},"location":"Left Ankle"},{"euler":{"heading":93.9375,"pitch":32.75,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":341.5,"pitch":-131.5625,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":146.5625,"pitch":93.8125,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":45.4375,"pitch":-129.875,"roll":42.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:56.550"} +{"sensors":[{"euler":{"heading":287.25,"pitch":178.625,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":75.9375,"pitch":108.1875,"roll":40.125},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":18.625,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":341.8125,"pitch":-134.25,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":152.8125,"pitch":100.4375,"roll":65.4375},"location":"Right Knee"},{"euler":{"heading":48.0,"pitch":-134.0,"roll":42.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:56.650"} +{"sensors":[{"euler":{"heading":296.875,"pitch":176.125,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":86.125,"pitch":114.4375,"roll":44.3125},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":-5.8125,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":342.5625,"pitch":-140.0625,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":117.375,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":50.1875,"pitch":-137.0,"roll":44.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:56.751"} +{"sensors":[{"euler":{"heading":309.3125,"pitch":166.4375,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":96.875,"pitch":117.4375,"roll":52.0625},"location":"Left Ankle"},{"euler":{"heading":77.3125,"pitch":-40.25,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":349.625,"pitch":-137.75,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":181.125,"pitch":158.5,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":68.9375,"pitch":-136.5,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:56.852"} +{"sensors":[{"euler":{"heading":312.6875,"pitch":159.75,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":99.375,"pitch":117.25,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":72.6875,"pitch":-54.0,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":0.5625,"pitch":-125.0625,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":190.1875,"pitch":178.0,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":72.75,"pitch":-141.875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:56.954"} +{"sensors":[{"euler":{"heading":320.8125,"pitch":153.25,"roll":50.625},"location":"Left Knee"},{"euler":{"heading":110.25,"pitch":121.375,"roll":60.5625},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":-22.4375,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":7.0,"pitch":-118.25,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":108.3125,"roll":74.625},"location":"Right Knee"},{"euler":{"heading":76.25,"pitch":-143.25,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:57.55"} +{"sensors":[{"euler":{"heading":330.3125,"pitch":146.5,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":115.0625,"pitch":124.0,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":102.1875,"pitch":45.3125,"roll":75.125},"location":"Right Ankle"},{"euler":{"heading":8.8125,"pitch":-116.3125,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":160.25,"pitch":97.9375,"roll":56.75},"location":"Right Knee"},{"euler":{"heading":79.8125,"pitch":-145.875,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:57.155"} +{"sensors":[{"euler":{"heading":336.75,"pitch":140.875,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":119.875,"pitch":130.25,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":120.625,"pitch":66.125,"roll":62.4375},"location":"Right Ankle"},{"euler":{"heading":4.875,"pitch":-120.125,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":145.0,"pitch":101.25,"roll":41.875},"location":"Right Knee"},{"euler":{"heading":83.25,"pitch":-151.0,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:57.255"} +{"sensors":[{"euler":{"heading":253.1875,"pitch":135.5,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":125.375,"pitch":143.1875,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":125.0,"pitch":66.0625,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-122.75,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":140.375,"pitch":99.4375,"roll":39.1875},"location":"Right Knee"},{"euler":{"heading":85.4375,"pitch":-155.625,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:57.356"} +{"sensors":[{"euler":{"heading":259.0,"pitch":131.5625,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":131.125,"pitch":175.875,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":113.125,"pitch":54.0,"roll":65.75},"location":"Right Ankle"},{"euler":{"heading":353.125,"pitch":-125.25,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":143.3125,"pitch":96.75,"roll":45.4375},"location":"Right Knee"},{"euler":{"heading":83.875,"pitch":-154.625,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:57.458"} +{"sensors":[{"euler":{"heading":271.9375,"pitch":128.9375,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":149.4375,"pitch":-148.5625,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":107.3125,"pitch":46.4375,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":346.9375,"pitch":-127.375,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":142.875,"pitch":96.375,"roll":50.4375},"location":"Right Knee"},{"euler":{"heading":69.1875,"pitch":-139.125,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:57.558"} +{"sensors":[{"euler":{"heading":265.9375,"pitch":135.9375,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":143.5,"pitch":-155.25,"roll":67.3125},"location":"Left Ankle"},{"euler":{"heading":103.125,"pitch":40.3125,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":344.4375,"pitch":-129.5,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":144.125,"pitch":96.125,"roll":53.875},"location":"Right Knee"},{"euler":{"heading":59.9375,"pitch":-131.8125,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:57.658"} +{"sensors":[{"euler":{"heading":235.375,"pitch":150.875,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":108.5625,"pitch":134.25,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":34.125,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":342.6875,"pitch":-130.75,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":146.5,"pitch":97.0,"roll":57.8125},"location":"Right Knee"},{"euler":{"heading":45.75,"pitch":-128.8125,"roll":42.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:57.759"} +{"sensors":[{"euler":{"heading":297.3125,"pitch":170.625,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":82.9375,"pitch":113.1875,"roll":46.125},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":23.5625,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":341.6875,"pitch":-133.375,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":150.875,"pitch":99.9375,"roll":62.625},"location":"Right Knee"},{"euler":{"heading":47.375,"pitch":-130.125,"roll":42.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:57.860"} +{"sensors":[{"euler":{"heading":292.0,"pitch":177.1875,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":77.625,"pitch":108.9375,"roll":39.8125},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":4.6875,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":342.125,"pitch":-136.5,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":159.0625,"pitch":109.1875,"roll":68.6875},"location":"Right Knee"},{"euler":{"heading":49.25,"pitch":-135.4375,"roll":42.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:57.961"} +{"sensors":[{"euler":{"heading":309.4375,"pitch":167.25,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":95.8125,"pitch":117.5,"roll":49.625},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-23.5625,"roll":66.4375},"location":"Right Ankle"},{"euler":{"heading":343.125,"pitch":-139.875,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":171.75,"pitch":135.875,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-136.5,"roll":44.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:58.62"} +{"sensors":[{"euler":{"heading":318.75,"pitch":158.875,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":102.125,"pitch":117.375,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-49.5625,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":356.25,"pitch":-131.1875,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":188.125,"pitch":179.0,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":72.5625,"pitch":-138.8125,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:58.164"} +{"sensors":[{"euler":{"heading":326.5,"pitch":152.0625,"roll":50.3125},"location":"Left Knee"},{"euler":{"heading":109.3125,"pitch":118.625,"roll":58.8125},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":-52.0,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":6.75,"pitch":-121.25,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":187.6875,"pitch":153.375,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":77.3125,"pitch":-142.75,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:58.265"} +{"sensors":[{"euler":{"heading":331.5625,"pitch":146.3125,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":121.3125,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":8.4375,"roll":74.6875},"location":"Right Ankle"},{"euler":{"heading":10.25,"pitch":-117.25,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":171.3125,"pitch":112.25,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":80.5625,"pitch":-146.0625,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:58.365"} +{"sensors":[{"euler":{"heading":337.0,"pitch":140.6875,"roll":47.1875},"location":"Left Knee"},{"euler":{"heading":117.75,"pitch":127.5625,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":114.5,"pitch":63.125,"roll":68.75},"location":"Right Ankle"},{"euler":{"heading":5.625,"pitch":-119.9375,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":151.625,"pitch":100.0,"roll":47.5},"location":"Right Knee"},{"euler":{"heading":80.9375,"pitch":-148.875,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:58.466"} +{"sensors":[{"euler":{"heading":253.75,"pitch":135.75,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":124.9375,"pitch":139.75,"roll":68.5},"location":"Left Ankle"},{"euler":{"heading":127.5625,"pitch":69.4375,"roll":56.375},"location":"Right Ankle"},{"euler":{"heading":357.8125,"pitch":-124.75,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":139.75,"pitch":98.4375,"roll":37.4375},"location":"Right Knee"},{"euler":{"heading":81.875,"pitch":-152.0,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:58.566"} +{"sensors":[{"euler":{"heading":258.9375,"pitch":131.875,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":130.1875,"pitch":160.875,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":119.875,"pitch":64.25,"roll":60.5},"location":"Right Ankle"},{"euler":{"heading":351.625,"pitch":-126.0625,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":138.625,"pitch":96.1875,"roll":40.4375},"location":"Right Knee"},{"euler":{"heading":85.125,"pitch":-157.3125,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:58.667"} +{"sensors":[{"euler":{"heading":269.625,"pitch":129.875,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":146.6875,"pitch":-152.6875,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":110.625,"pitch":53.4375,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":349.5625,"pitch":-127.5625,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":142.5625,"pitch":94.0,"roll":47.25},"location":"Right Knee"},{"euler":{"heading":74.5,"pitch":-147.125,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:58.768"} +{"sensors":[{"euler":{"heading":278.75,"pitch":130.8125,"roll":24.0},"location":"Left Knee"},{"euler":{"heading":154.25,"pitch":-144.6875,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":105.1875,"pitch":46.0625,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":345.5,"pitch":-130.0625,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":143.125,"pitch":94.8125,"roll":51.125},"location":"Right Knee"},{"euler":{"heading":64.125,"pitch":-133.5,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:58.869"} +{"sensors":[{"euler":{"heading":258.9375,"pitch":142.3125,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":129.6875,"pitch":173.875,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":99.8125,"pitch":38.6875,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":343.375,"pitch":-130.4375,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":144.0,"pitch":94.375,"roll":54.9375},"location":"Right Knee"},{"euler":{"heading":45.5,"pitch":-128.3125,"roll":43.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:58.970"} +{"sensors":[{"euler":{"heading":309.8125,"pitch":161.75,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":96.5,"pitch":119.875,"roll":54.6875},"location":"Left Ankle"},{"euler":{"heading":94.6875,"pitch":29.3125,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":342.25,"pitch":-132.8125,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":147.125,"pitch":96.0625,"roll":59.0625},"location":"Right Knee"},{"euler":{"heading":47.375,"pitch":-128.0,"roll":41.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:59.71"} +{"sensors":[{"euler":{"heading":291.125,"pitch":177.8125,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":76.25,"pitch":108.375,"roll":38.5625},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":14.375,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":341.75,"pitch":-135.6875,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":152.8125,"pitch":101.1875,"roll":64.5},"location":"Right Knee"},{"euler":{"heading":49.125,"pitch":-132.1875,"roll":41.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:59.172"} +{"sensors":[{"euler":{"heading":301.9375,"pitch":173.0625,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":114.9375,"roll":42.5},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":-9.75,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":342.1875,"pitch":-141.9375,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":163.5625,"pitch":114.5625,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":50.5,"pitch":-135.375,"roll":43.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:59.273"} +{"sensors":[{"euler":{"heading":312.5625,"pitch":164.5,"roll":49.0},"location":"Left Knee"},{"euler":{"heading":97.5,"pitch":117.625,"roll":50.3125},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-39.5,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":347.3125,"pitch":-139.3125,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":149.1875,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":68.125,"pitch":-136.25,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:59.373"} +{"sensors":[{"euler":{"heading":320.5625,"pitch":157.25,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":103.1875,"pitch":118.6875,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-55.1875,"roll":59.5625},"location":"Right Ankle"},{"euler":{"heading":358.125,"pitch":-126.625,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":187.1875,"pitch":173.375,"roll":82.0625},"location":"Right Knee"},{"euler":{"heading":72.75,"pitch":-139.5625,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:59.475"} +{"sensors":[{"euler":{"heading":325.5,"pitch":151.375,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":113.875,"pitch":122.875,"roll":61.125},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":-28.75,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":6.25,"pitch":-119.9375,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":114.25,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":76.0,"pitch":-142.4375,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:59.576"} +{"sensors":[{"euler":{"heading":332.3125,"pitch":145.625,"roll":48.6875},"location":"Left Knee"},{"euler":{"heading":115.625,"pitch":124.375,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":101.875,"pitch":31.375,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":8.875,"pitch":-117.125,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":158.5,"pitch":102.4375,"roll":54.75},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-146.9375,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:59.676"} +{"sensors":[{"euler":{"heading":338.4375,"pitch":140.125,"roll":46.0},"location":"Left Knee"},{"euler":{"heading":121.3125,"pitch":131.4375,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":123.25,"pitch":64.625,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":3.9375,"pitch":-121.625,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":142.875,"pitch":102.5,"roll":39.25},"location":"Right Knee"},{"euler":{"heading":83.25,"pitch":-151.1875,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:59.778"} +{"sensors":[{"euler":{"heading":254.8125,"pitch":135.1875,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":127.6875,"pitch":144.9375,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":128.5625,"pitch":66.1875,"roll":56.875},"location":"Right Ankle"},{"euler":{"heading":356.6875,"pitch":-124.5,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":137.875,"pitch":100.375,"roll":36.125},"location":"Right Knee"},{"euler":{"heading":84.9375,"pitch":-155.0,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:59.878"} +{"sensors":[{"euler":{"heading":261.0625,"pitch":130.875,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":135.25,"pitch":176.75,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":114.1875,"pitch":58.75,"roll":64.125},"location":"Right Ankle"},{"euler":{"heading":352.75,"pitch":-125.5625,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":138.3125,"pitch":94.125,"roll":41.75},"location":"Right Knee"},{"euler":{"heading":87.6875,"pitch":-158.125,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:11:59.979"} +{"sensors":[{"euler":{"heading":275.75,"pitch":129.3125,"roll":25.75},"location":"Left Knee"},{"euler":{"heading":161.125,"pitch":-140.4375,"roll":62.4375},"location":"Left Ankle"},{"euler":{"heading":109.0,"pitch":49.5,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":348.1875,"pitch":-127.9375,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":140.8125,"pitch":95.8125,"roll":47.8125},"location":"Right Knee"},{"euler":{"heading":72.9375,"pitch":-142.6875,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:00.80"} +{"sensors":[{"euler":{"heading":278.5,"pitch":133.625,"roll":25.0625},"location":"Left Knee"},{"euler":{"heading":150.1875,"pitch":-153.875,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":105.5,"pitch":42.375,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":346.0625,"pitch":-129.9375,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":142.8125,"pitch":97.3125,"roll":51.875},"location":"Right Knee"},{"euler":{"heading":64.125,"pitch":-133.5,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:00.181"} +{"sensors":[{"euler":{"heading":245.6875,"pitch":147.8125,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":117.4375,"pitch":148.4375,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":100.6875,"pitch":34.75,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":344.125,"pitch":-131.6875,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":145.375,"pitch":98.25,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":46.6875,"pitch":-129.3125,"roll":43.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:00.282"} +{"sensors":[{"euler":{"heading":299.125,"pitch":167.75,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":86.75,"pitch":115.1875,"roll":48.6875},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":22.4375,"roll":70.125},"location":"Right Ankle"},{"euler":{"heading":342.1875,"pitch":-135.0,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":150.3125,"pitch":101.0625,"roll":60.8125},"location":"Right Knee"},{"euler":{"heading":45.625,"pitch":-130.1875,"roll":40.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:00.383"} +{"sensors":[{"euler":{"heading":288.0625,"pitch":179.4375,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":75.0625,"pitch":106.6875,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":3.625,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":341.1875,"pitch":-140.8125,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":158.0625,"pitch":110.625,"roll":66.4375},"location":"Right Knee"},{"euler":{"heading":48.625,"pitch":-134.625,"roll":42.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:00.484"} +{"sensors":[{"euler":{"heading":302.0625,"pitch":171.9375,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":91.125,"pitch":114.875,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":-18.375,"roll":66.5625},"location":"Right Ankle"},{"euler":{"heading":340.0,"pitch":-149.5,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":169.9375,"pitch":129.9375,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":49.75,"pitch":-136.875,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:00.585"} +{"sensors":[{"euler":{"heading":313.0625,"pitch":162.375,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":98.4375,"pitch":116.0,"roll":53.0},"location":"Left Ankle"},{"euler":{"heading":73.1875,"pitch":-43.4375,"roll":60.1875},"location":"Right Ankle"},{"euler":{"heading":349.375,"pitch":-143.25,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":181.5,"pitch":163.0,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":69.5,"pitch":-137.8125,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:00.686"} +{"sensors":[{"euler":{"heading":321.875,"pitch":155.5625,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":105.25,"pitch":118.0625,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-50.5625,"roll":61.5},"location":"Right Ankle"},{"euler":{"heading":0.125,"pitch":-125.625,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":188.125,"pitch":162.875,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":73.6875,"pitch":-140.0625,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:00.786"} +{"sensors":[{"euler":{"heading":326.0,"pitch":150.5625,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":113.625,"pitch":121.75,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":-11.9375,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":5.75,"pitch":-119.4375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":170.0,"pitch":107.6875,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":76.0,"pitch":-143.25,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:00.887"} +{"sensors":[{"euler":{"heading":333.9375,"pitch":144.875,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":116.875,"pitch":124.0,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":108.0,"pitch":56.8125,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":4.4375,"pitch":-119.5,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":151.4375,"pitch":99.125,"roll":48.75},"location":"Right Knee"},{"euler":{"heading":79.4375,"pitch":-147.625,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:00.987"} +{"sensors":[{"euler":{"heading":339.5,"pitch":139.375,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":124.0,"pitch":132.875,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":127.125,"pitch":65.75,"roll":58.3125},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-125.1875,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":142.375,"pitch":102.3125,"roll":39.0},"location":"Right Knee"},{"euler":{"heading":81.5625,"pitch":-150.9375,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:01.88"} +{"sensors":[{"euler":{"heading":257.0,"pitch":133.75,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":152.25,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":119.875,"pitch":63.25,"roll":62.5},"location":"Right Ankle"},{"euler":{"heading":353.375,"pitch":-127.0,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":142.125,"pitch":97.0,"roll":42.5},"location":"Right Knee"},{"euler":{"heading":85.375,"pitch":-154.75,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:01.189"} +{"sensors":[{"euler":{"heading":266.375,"pitch":129.0625,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":140.6875,"pitch":-163.1875,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":109.625,"pitch":54.5,"roll":67.5},"location":"Right Ankle"},{"euler":{"heading":351.6875,"pitch":-127.375,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":143.875,"pitch":94.5625,"roll":48.4375},"location":"Right Knee"},{"euler":{"heading":80.5,"pitch":-147.875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:01.290"} +{"sensors":[{"euler":{"heading":270.5625,"pitch":130.875,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":128.9375,"pitch":-152.875,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":104.625,"pitch":45.9375,"roll":67.5625},"location":"Right Ankle"},{"euler":{"heading":344.4375,"pitch":-130.8125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":143.0,"pitch":92.9375,"roll":51.6875},"location":"Right Knee"},{"euler":{"heading":64.6875,"pitch":-135.75,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:01.391"} +{"sensors":[{"euler":{"heading":253.625,"pitch":140.875,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":123.75,"pitch":157.875,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":100.9375,"pitch":39.6875,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":341.75,"pitch":-132.25,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":144.8125,"pitch":93.4375,"roll":55.625},"location":"Right Knee"},{"euler":{"heading":42.1875,"pitch":-130.625,"roll":43.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:01.492"} +{"sensors":[{"euler":{"heading":305.9375,"pitch":159.6875,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":92.3125,"pitch":117.1875,"roll":53.0},"location":"Left Ankle"},{"euler":{"heading":97.0625,"pitch":30.875,"roll":70.125},"location":"Right Ankle"},{"euler":{"heading":339.625,"pitch":-136.125,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":147.8125,"pitch":96.25,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":43.6875,"pitch":-129.5625,"roll":42.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:01.592"} +{"sensors":[{"euler":{"heading":285.5625,"pitch":179.625,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":73.25,"pitch":106.5625,"roll":38.8125},"location":"Left Ankle"},{"euler":{"heading":91.8125,"pitch":17.3125,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":339.3125,"pitch":-139.375,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":153.375,"pitch":101.6875,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":46.4375,"pitch":-133.375,"roll":41.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:01.693"} +{"sensors":[{"euler":{"heading":291.0625,"pitch":178.25,"roll":48.25},"location":"Left Knee"},{"euler":{"heading":82.25,"pitch":113.25,"roll":41.1875},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":-3.75,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":338.625,"pitch":-146.1875,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":162.6875,"pitch":113.625,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-135.6875,"roll":42.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:01.793"} +{"sensors":[{"euler":{"heading":308.25,"pitch":167.75,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":117.0,"roll":50.375},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":-33.625,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":341.4375,"pitch":-147.125,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":177.0625,"pitch":146.1875,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":47.5,"pitch":-136.375,"roll":44.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:01.894"} +{"sensors":[{"euler":{"heading":321.25,"pitch":158.8125,"roll":49.75},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":117.5625,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":72.5625,"pitch":-52.875,"roll":59.5},"location":"Right Ankle"},{"euler":{"heading":352.8125,"pitch":-134.875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":186.9375,"pitch":-179.25,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":72.625,"pitch":-138.6875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:01.995"} +{"sensors":[{"euler":{"heading":326.5625,"pitch":152.6875,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":116.625,"pitch":122.5,"roll":62.0},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":-36.375,"roll":68.9375},"location":"Right Ankle"},{"euler":{"heading":2.3125,"pitch":-125.125,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":183.125,"pitch":135.9375,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":75.6875,"pitch":-142.0,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:02.96"} +{"sensors":[{"euler":{"heading":330.8125,"pitch":147.4375,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":116.0625,"pitch":125.25,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":16.1875,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":5.5,"pitch":-120.625,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":167.75,"pitch":109.1875,"roll":61.5},"location":"Right Knee"},{"euler":{"heading":78.0625,"pitch":-145.125,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:02.197"} +{"sensors":[{"euler":{"heading":334.6875,"pitch":142.9375,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":119.9375,"pitch":130.5625,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":120.1875,"pitch":62.375,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":1.125,"pitch":-123.25,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":146.0625,"pitch":100.8125,"roll":43.8125},"location":"Right Knee"},{"euler":{"heading":78.5625,"pitch":-148.75,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:02.297"} +{"sensors":[{"euler":{"heading":250.0625,"pitch":137.9375,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":124.375,"pitch":139.5625,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":126.5,"pitch":64.125,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":355.75,"pitch":-125.8125,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":138.125,"pitch":101.0625,"roll":36.75},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-153.125,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:02.398"} +{"sensors":[{"euler":{"heading":256.0625,"pitch":133.3125,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":130.125,"pitch":164.125,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":113.6875,"pitch":57.25,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":349.625,"pitch":-127.6875,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":138.8125,"pitch":96.375,"roll":41.25},"location":"Right Knee"},{"euler":{"heading":83.125,"pitch":-157.1875,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:02.499"} +{"sensors":[{"euler":{"heading":269.3125,"pitch":130.625,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":150.8125,"pitch":-148.4375,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":105.0,"pitch":49.4375,"roll":68.0},"location":"Right Ankle"},{"euler":{"heading":346.6875,"pitch":-128.5625,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":139.5,"pitch":92.6875,"roll":46.4375},"location":"Right Knee"},{"euler":{"heading":74.0625,"pitch":-146.125,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:02.600"} +{"sensors":[{"euler":{"heading":271.4375,"pitch":133.25,"roll":25.875},"location":"Left Knee"},{"euler":{"heading":145.875,"pitch":-151.6875,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":99.4375,"pitch":39.3125,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":342.6875,"pitch":-131.25,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":141.3125,"pitch":93.3125,"roll":51.5},"location":"Right Knee"},{"euler":{"heading":61.6875,"pitch":-132.1875,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:02.701"} +{"sensors":[{"euler":{"heading":245.875,"pitch":146.875,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":119.4375,"pitch":161.4375,"roll":68.5},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":30.9375,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":340.1875,"pitch":-132.6875,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":143.0,"pitch":94.4375,"roll":55.25},"location":"Right Knee"},{"euler":{"heading":41.6875,"pitch":-128.8125,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:02.802"} +{"sensors":[{"euler":{"heading":302.375,"pitch":164.75,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":91.75,"pitch":120.625,"roll":53.5625},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":20.125,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":340.25,"pitch":-137.25,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":148.875,"pitch":99.3125,"roll":59.5625},"location":"Right Knee"},{"euler":{"heading":44.0625,"pitch":-130.0625,"roll":43.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:02.903"} +{"sensors":[{"euler":{"heading":292.5625,"pitch":176.8125,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":109.625,"roll":41.0},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":2.9375,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":340.125,"pitch":-142.3125,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":156.625,"pitch":108.625,"roll":65.25},"location":"Right Knee"},{"euler":{"heading":46.625,"pitch":-134.625,"roll":43.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:03.3"} +{"sensors":[{"euler":{"heading":303.4375,"pitch":171.3125,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":91.0,"pitch":116.9375,"roll":45.75},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":-20.125,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":340.3125,"pitch":-147.625,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":168.0,"pitch":126.625,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":68.8125,"pitch":-136.875,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:03.104"} +{"sensors":[{"euler":{"heading":316.125,"pitch":162.1875,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":119.3125,"roll":52.625},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":-45.3125,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":348.4375,"pitch":-138.0625,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":181.9375,"pitch":159.625,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":69.875,"pitch":-137.5625,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:03.205"} +{"sensors":[{"euler":{"heading":322.875,"pitch":154.9375,"roll":48.6875},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":121.4375,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-52.625,"roll":59.5625},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-126.5625,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":187.9375,"pitch":164.6875,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":72.875,"pitch":-141.625,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:03.306"} +{"sensors":[{"euler":{"heading":331.0625,"pitch":148.25,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":117.375,"pitch":126.3125,"roll":62.6875},"location":"Left Ankle"},{"euler":{"heading":87.4375,"pitch":-25.75,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":6.75,"pitch":-120.125,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":174.125,"pitch":116.0,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-144.1875,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:03.407"} +{"sensors":[{"euler":{"heading":336.4375,"pitch":143.4375,"roll":47.0625},"location":"Left Knee"},{"euler":{"heading":120.625,"pitch":130.0625,"roll":64.625},"location":"Left Ankle"},{"euler":{"heading":106.1875,"pitch":45.25,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":7.1875,"pitch":-120.9375,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":103.5625,"roll":50.375},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-148.5,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:03.508"} +{"sensors":[{"euler":{"heading":250.875,"pitch":139.1875,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":136.8125,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":125.625,"pitch":67.0,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":0.75,"pitch":-125.625,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":139.125,"pitch":99.4375,"roll":36.875},"location":"Right Knee"},{"euler":{"heading":81.0,"pitch":-152.3125,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:03.608"} +{"sensors":[{"euler":{"heading":255.8125,"pitch":134.5,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":150.125,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":122.3125,"pitch":65.875,"roll":59.0},"location":"Right Ankle"},{"euler":{"heading":353.6875,"pitch":-126.3125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":136.875,"pitch":97.1875,"roll":36.875},"location":"Right Knee"},{"euler":{"heading":83.9375,"pitch":-158.25,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:03.708"} +{"sensors":[{"euler":{"heading":263.25,"pitch":130.8125,"roll":16.1875},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":-174.3125,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":109.3125,"pitch":56.5625,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":349.6875,"pitch":-127.75,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":137.0625,"pitch":91.5625,"roll":42.1875},"location":"Right Knee"},{"euler":{"heading":82.4375,"pitch":-154.875,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:03.809"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":127.625,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":159.3125,"pitch":-140.0,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":103.0625,"pitch":48.625,"roll":67.875},"location":"Right Ankle"},{"euler":{"heading":344.6875,"pitch":-129.6875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":137.3125,"pitch":90.6875,"roll":46.625},"location":"Right Knee"},{"euler":{"heading":67.6875,"pitch":-137.375,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:03.909"} +{"sensors":[{"euler":{"heading":269.1875,"pitch":136.875,"roll":28.0625},"location":"Left Knee"},{"euler":{"heading":141.6875,"pitch":-160.6875,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":99.4375,"pitch":40.1875,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":342.5,"pitch":-132.375,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":141.3125,"pitch":92.9375,"roll":52.0625},"location":"Right Knee"},{"euler":{"heading":56.5625,"pitch":-129.6875,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:04.10"} +{"sensors":[{"euler":{"heading":233.875,"pitch":152.8125,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":109.875,"pitch":137.5625,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":95.75,"pitch":32.125,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":340.625,"pitch":-135.0,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":143.4375,"pitch":95.0,"roll":55.75},"location":"Right Knee"},{"euler":{"heading":43.0,"pitch":-127.8125,"roll":43.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:04.110"} +{"sensors":[{"euler":{"heading":291.4375,"pitch":173.625,"roll":50.1875},"location":"Left Knee"},{"euler":{"heading":81.0625,"pitch":110.375,"roll":45.125},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":18.75,"roll":70.125},"location":"Right Ankle"},{"euler":{"heading":341.1875,"pitch":-138.375,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":149.0,"pitch":99.5625,"roll":60.5},"location":"Right Knee"},{"euler":{"heading":44.6875,"pitch":-131.125,"roll":43.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:04.211"} +{"sensors":[{"euler":{"heading":286.375,"pitch":-179.1875,"roll":49.375},"location":"Left Knee"},{"euler":{"heading":74.5625,"pitch":105.75,"roll":38.25},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":-1.6875,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":341.5625,"pitch":-141.875,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":109.8125,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":46.6875,"pitch":-135.1875,"roll":42.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:04.312"} +{"sensors":[{"euler":{"heading":303.0625,"pitch":170.5,"roll":49.375},"location":"Left Knee"},{"euler":{"heading":90.8125,"pitch":114.1875,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":77.625,"pitch":-28.1875,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":342.125,"pitch":-142.375,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":169.5,"pitch":130.75,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":46.0625,"pitch":-135.875,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:04.413"} +{"sensors":[{"euler":{"heading":312.1875,"pitch":162.1875,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":96.875,"pitch":115.125,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":71.6875,"pitch":-48.625,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":353.1875,"pitch":-131.6875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":180.9375,"pitch":158.3125,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":68.125,"pitch":-138.375,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:04.514"} +{"sensors":[{"euler":{"heading":320.0,"pitch":155.875,"roll":50.125},"location":"Left Knee"},{"euler":{"heading":104.9375,"pitch":116.6875,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":-39.125,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":2.375,"pitch":-122.5625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":176.1875,"pitch":122.6875,"roll":75.125},"location":"Right Knee"},{"euler":{"heading":73.0625,"pitch":-141.625,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:04.614"} +{"sensors":[{"euler":{"heading":325.0625,"pitch":150.4375,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":109.8125,"pitch":119.6875,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":98.6875,"pitch":-1.9375,"roll":75.9375},"location":"Right Ankle"},{"euler":{"heading":4.9375,"pitch":-119.625,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":106.9375,"roll":58.5625},"location":"Right Knee"},{"euler":{"heading":75.0625,"pitch":-145.125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:04.714"} +{"sensors":[{"euler":{"heading":330.625,"pitch":145.4375,"roll":46.8125},"location":"Left Knee"},{"euler":{"heading":112.375,"pitch":124.75,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":117.0,"pitch":57.5625,"roll":67.5},"location":"Right Ankle"},{"euler":{"heading":3.3125,"pitch":-121.9375,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":144.5625,"pitch":101.5,"roll":42.5},"location":"Right Knee"},{"euler":{"heading":77.9375,"pitch":-149.375,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:04.815"} +{"sensors":[{"euler":{"heading":246.875,"pitch":140.3125,"roll":43.75},"location":"Left Knee"},{"euler":{"heading":119.8125,"pitch":133.1875,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":127.0625,"pitch":65.75,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-125.125,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":135.625,"pitch":99.5,"roll":35.3125},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-153.125,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:04.916"} +{"sensors":[{"euler":{"heading":253.5,"pitch":135.8125,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":125.25,"pitch":154.4375,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":116.875,"pitch":62.625,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":352.4375,"pitch":-126.75,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":135.375,"pitch":95.0625,"roll":39.1875},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-157.0625,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:05.17"} +{"sensors":[{"euler":{"heading":268.6875,"pitch":131.0625,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":-158.375,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":106.5,"pitch":51.125,"roll":67.3125},"location":"Right Ankle"},{"euler":{"heading":350.0625,"pitch":-127.5625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":137.0625,"pitch":91.875,"roll":45.4375},"location":"Right Knee"},{"euler":{"heading":72.5,"pitch":-146.5,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:05.117"} +{"sensors":[{"euler":{"heading":275.375,"pitch":132.6875,"roll":25.3125},"location":"Left Knee"},{"euler":{"heading":149.1875,"pitch":-153.9375,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":103.1875,"pitch":41.125,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":344.875,"pitch":-130.375,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":139.4375,"pitch":93.125,"roll":50.0},"location":"Right Knee"},{"euler":{"heading":61.375,"pitch":-133.5,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:05.218"} +{"sensors":[{"euler":{"heading":251.3125,"pitch":145.125,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":121.5,"pitch":157.25,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":98.9375,"pitch":33.125,"roll":68.375},"location":"Right Ankle"},{"euler":{"heading":343.5,"pitch":-131.6875,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":143.5,"pitch":95.0625,"roll":56.125},"location":"Right Knee"},{"euler":{"heading":41.9375,"pitch":-129.625,"roll":44.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:05.319"} +{"sensors":[{"euler":{"heading":304.8125,"pitch":164.3125,"roll":48.0},"location":"Left Knee"},{"euler":{"heading":91.5,"pitch":118.1875,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":24.1875,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":342.125,"pitch":-133.8125,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":146.8125,"pitch":96.5,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":43.3125,"pitch":-130.25,"roll":43.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:05.419"} +{"sensors":[{"euler":{"heading":284.4375,"pitch":-179.375,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":72.625,"pitch":104.3125,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":8.8125,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":341.5,"pitch":-137.4375,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":104.3125,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":45.125,"pitch":-134.8125,"roll":43.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:05.520"} +{"sensors":[{"euler":{"heading":298.75,"pitch":173.375,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":85.3125,"pitch":112.625,"roll":43.8125},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-11.8125,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":342.0,"pitch":-142.25,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":121.8125,"roll":72.5625},"location":"Right Knee"},{"euler":{"heading":45.75,"pitch":-137.0,"roll":44.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:05.621"} +{"sensors":[{"euler":{"heading":311.5,"pitch":164.1875,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":96.5,"pitch":115.125,"roll":51.375},"location":"Left Ankle"},{"euler":{"heading":75.75,"pitch":-42.5625,"roll":61.1875},"location":"Right Ankle"},{"euler":{"heading":352.375,"pitch":-136.4375,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":180.125,"pitch":160.5625,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":67.8125,"pitch":-138.1875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:05.722"} +{"sensors":[{"euler":{"heading":319.1875,"pitch":156.9375,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":103.1875,"pitch":117.0625,"roll":55.75},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-42.5,"roll":66.4375},"location":"Right Ankle"},{"euler":{"heading":359.9375,"pitch":-124.8125,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":184.1875,"pitch":145.0,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":71.5625,"pitch":-141.75,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:05.822"} +{"sensors":[{"euler":{"heading":325.4375,"pitch":151.25,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":110.75,"pitch":119.6875,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":97.5,"pitch":-7.375,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":4.75,"pitch":-119.75,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":170.0625,"pitch":108.5625,"roll":66.6875},"location":"Right Knee"},{"euler":{"heading":74.8125,"pitch":-145.8125,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:05.923"} +{"sensors":[{"euler":{"heading":329.9375,"pitch":146.5,"roll":47.625},"location":"Left Knee"},{"euler":{"heading":110.75,"pitch":122.0,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":114.4375,"pitch":58.0625,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":2.3125,"pitch":-122.6875,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":149.6875,"pitch":98.1875,"roll":32.6875},"location":"Right Knee"},{"euler":{"heading":77.4375,"pitch":-150.375,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:06.25"} +{"sensors":[{"euler":{"heading":245.75,"pitch":141.625,"roll":44.4375},"location":"Left Knee"},{"euler":{"heading":116.8125,"pitch":129.75,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":128.8125,"pitch":65.625,"roll":56.0},"location":"Right Ankle"},{"euler":{"heading":354.3125,"pitch":-127.375,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":137.9375,"pitch":98.625,"roll":37.25},"location":"Right Knee"},{"euler":{"heading":79.125,"pitch":-154.5,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:06.125"} +{"sensors":[{"euler":{"heading":253.125,"pitch":136.6875,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":121.25,"pitch":145.75,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":120.25,"pitch":62.4375,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":349.625,"pitch":-128.0625,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":137.6875,"pitch":95.25,"roll":40.5},"location":"Right Knee"},{"euler":{"heading":82.3125,"pitch":-159.125,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:06.225"} +{"sensors":[{"euler":{"heading":265.0,"pitch":131.5625,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":138.25,"pitch":-169.9375,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":111.5625,"pitch":49.8125,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":349.75,"pitch":-129.3125,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":140.0625,"pitch":94.625,"roll":45.875},"location":"Right Knee"},{"euler":{"heading":79.4375,"pitch":-150.875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:06.326"} +{"sensors":[{"euler":{"heading":273.75,"pitch":131.9375,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":142.8125,"pitch":-158.0625,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":107.75,"pitch":39.125,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":344.8125,"pitch":-132.6875,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":142.9375,"pitch":98.75,"roll":51.125},"location":"Right Knee"},{"euler":{"heading":66.1875,"pitch":-136.875,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:06.427"} +{"sensors":[{"euler":{"heading":258.5625,"pitch":141.1875,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":124.125,"pitch":165.9375,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":103.5625,"pitch":31.125,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":343.75,"pitch":-134.0,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":146.5625,"pitch":101.625,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":59.0625,"pitch":-132.3125,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:06.527"} +{"sensors":[{"euler":{"heading":222.875,"pitch":158.6875,"roll":44.3125},"location":"Left Knee"},{"euler":{"heading":94.1875,"pitch":122.4375,"roll":55.75},"location":"Left Ankle"},{"euler":{"heading":99.3125,"pitch":21.6875,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":343.875,"pitch":-135.6875,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":150.625,"pitch":105.4375,"roll":59.1875},"location":"Right Knee"},{"euler":{"heading":43.5,"pitch":-130.3125,"roll":43.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:06.628"} +{"sensors":[{"euler":{"heading":292.0,"pitch":176.3125,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":76.9375,"pitch":109.0,"roll":41.0625},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":7.9375,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-137.5625,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":156.5625,"pitch":111.8125,"roll":64.1875},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-132.3125,"roll":42.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:06.729"} +{"sensors":[{"euler":{"heading":288.0625,"pitch":-179.1875,"roll":48.6875},"location":"Left Knee"},{"euler":{"heading":77.125,"pitch":109.25,"roll":37.8125},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":-10.375,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":344.4375,"pitch":-143.3125,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":123.9375,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":48.4375,"pitch":-136.0,"roll":42.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:06.830"} +{"sensors":[{"euler":{"heading":307.4375,"pitch":170.1875,"roll":49.0},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":115.375,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":-33.375,"roll":62.4375},"location":"Right Ankle"},{"euler":{"heading":344.6875,"pitch":-148.875,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":152.6875,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":71.125,"pitch":-138.5625,"roll":45.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:06.930"} +{"sensors":[{"euler":{"heading":316.3125,"pitch":161.4375,"roll":49.5625},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":116.75,"roll":52.625},"location":"Left Ankle"},{"euler":{"heading":71.1875,"pitch":-51.75,"roll":54.625},"location":"Right Ankle"},{"euler":{"heading":355.5625,"pitch":-136.9375,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":189.375,"pitch":-170.6875,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":72.6875,"pitch":-139.9375,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:07.31"} +{"sensors":[{"euler":{"heading":323.3125,"pitch":154.875,"roll":50.0625},"location":"Left Knee"},{"euler":{"heading":112.4375,"pitch":121.0,"roll":59.5},"location":"Left Ankle"},{"euler":{"heading":78.5,"pitch":-42.4375,"roll":61.8125},"location":"Right Ankle"},{"euler":{"heading":3.8125,"pitch":-123.8125,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":184.625,"pitch":129.75,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":75.5625,"pitch":-142.75,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:07.131"} +{"sensors":[{"euler":{"heading":331.6875,"pitch":149.0,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":115.875,"pitch":122.6875,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":-15.625,"roll":75.6875},"location":"Right Ankle"},{"euler":{"heading":6.8125,"pitch":-119.8125,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":168.875,"pitch":108.9375,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":78.6875,"pitch":-145.625,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:07.232"} +{"sensors":[{"euler":{"heading":338.5625,"pitch":143.3125,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":120.875,"pitch":126.8125,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":116.5,"pitch":54.6875,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":4.6875,"pitch":-122.625,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":146.875,"pitch":101.625,"roll":44.125},"location":"Right Knee"},{"euler":{"heading":82.1875,"pitch":-149.9375,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:07.332"} +{"sensors":[{"euler":{"heading":253.875,"pitch":138.3125,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":124.125,"pitch":135.4375,"roll":67.3125},"location":"Left Ankle"},{"euler":{"heading":127.625,"pitch":61.4375,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":356.9375,"pitch":-127.5,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":139.8125,"pitch":101.0625,"roll":38.0},"location":"Right Knee"},{"euler":{"heading":83.1875,"pitch":-153.8125,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:07.433"} +{"sensors":[{"euler":{"heading":259.4375,"pitch":133.5625,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":127.625,"pitch":159.875,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":115.0625,"pitch":52.75,"roll":65.6875},"location":"Right Ankle"},{"euler":{"heading":354.0625,"pitch":-128.4375,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":141.25,"pitch":98.0,"roll":43.1875},"location":"Right Knee"},{"euler":{"heading":85.25,"pitch":-154.5625,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:07.534"} +{"sensors":[{"euler":{"heading":272.375,"pitch":131.0,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":149.4375,"pitch":-154.625,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":110.375,"pitch":44.625,"roll":67.5},"location":"Right Ankle"},{"euler":{"heading":351.5625,"pitch":-130.375,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":142.875,"pitch":99.125,"roll":48.6875},"location":"Right Knee"},{"euler":{"heading":70.625,"pitch":-140.4375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:07.635"} +{"sensors":[{"euler":{"heading":266.8125,"pitch":137.0,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":140.5,"pitch":-165.5625,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":108.1875,"pitch":38.3125,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":346.625,"pitch":-134.25,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":144.75,"pitch":99.0,"roll":52.3125},"location":"Right Knee"},{"euler":{"heading":60.375,"pitch":-132.1875,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:07.736"} +{"sensors":[{"euler":{"heading":233.875,"pitch":151.6875,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":111.9375,"pitch":131.375,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":32.625,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":344.375,"pitch":-137.0,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":147.8125,"pitch":101.9375,"roll":56.375},"location":"Right Knee"},{"euler":{"heading":44.75,"pitch":-129.375,"roll":42.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:07.837"} +{"sensors":[{"euler":{"heading":292.75,"pitch":172.0,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":82.3125,"pitch":111.0,"roll":44.875},"location":"Left Ankle"},{"euler":{"heading":99.8125,"pitch":21.875,"roll":68.75},"location":"Right Ankle"},{"euler":{"heading":341.9375,"pitch":-141.0625,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":152.0,"pitch":105.8125,"roll":60.75},"location":"Right Knee"},{"euler":{"heading":45.625,"pitch":-130.625,"roll":41.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:07.937"} +{"sensors":[{"euler":{"heading":283.4375,"pitch":-177.625,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":70.4375,"pitch":105.4375,"roll":36.625},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":5.375,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":338.5625,"pitch":-147.75,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":159.375,"pitch":114.4375,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":46.75,"pitch":-135.5625,"roll":42.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:08.38"} +{"sensors":[{"euler":{"heading":299.0,"pitch":173.875,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":88.75,"pitch":114.8125,"roll":46.0625},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-22.375,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":339.0,"pitch":-150.6875,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":171.0625,"pitch":132.875,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":44.8125,"pitch":-137.1875,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:08.139"} +{"sensors":[{"euler":{"heading":308.875,"pitch":164.5,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":93.25,"pitch":114.3125,"roll":50.5625},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":-47.5,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":349.5625,"pitch":-140.0,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":180.125,"pitch":155.4375,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":66.5625,"pitch":-138.9375,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:08.240"} +{"sensors":[{"euler":{"heading":317.5625,"pitch":158.1875,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":100.0,"pitch":116.0625,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":84.6875,"pitch":-31.4375,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-126.375,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":174.5,"pitch":117.625,"roll":75.5625},"location":"Right Knee"},{"euler":{"heading":72.0625,"pitch":-143.0,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:08.341"} +{"sensors":[{"euler":{"heading":324.0625,"pitch":152.375,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":105.75,"pitch":117.75,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":11.875,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":4.5,"pitch":-120.9375,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":161.6875,"pitch":105.375,"roll":59.0},"location":"Right Knee"},{"euler":{"heading":74.5,"pitch":-146.0,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:08.442"} +{"sensors":[{"euler":{"heading":329.8125,"pitch":147.0625,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":108.8125,"pitch":122.0625,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":120.3125,"pitch":58.1875,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":2.625,"pitch":-123.0625,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":143.4375,"pitch":100.25,"roll":42.0},"location":"Right Knee"},{"euler":{"heading":75.375,"pitch":-148.5625,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:08.544"} +{"sensors":[{"euler":{"heading":246.5625,"pitch":141.8125,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":115.5,"pitch":131.125,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":129.6875,"pitch":62.8125,"roll":55.875},"location":"Right Ankle"},{"euler":{"heading":355.875,"pitch":-126.375,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":135.8125,"pitch":100.25,"roll":35.5},"location":"Right Knee"},{"euler":{"heading":76.0625,"pitch":-151.0625,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:08.644"} +{"sensors":[{"euler":{"heading":254.9375,"pitch":136.375,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":122.0,"pitch":147.1875,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":119.9375,"pitch":56.5625,"roll":62.1875},"location":"Right Ankle"},{"euler":{"heading":353.375,"pitch":-127.0625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":137.5625,"pitch":99.25,"roll":39.8125},"location":"Right Knee"},{"euler":{"heading":81.5625,"pitch":-156.875,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:08.745"} +{"sensors":[{"euler":{"heading":267.625,"pitch":132.5625,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":-166.1875,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":111.1875,"pitch":46.5,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":351.125,"pitch":-128.3125,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":139.75,"pitch":97.0625,"roll":45.5},"location":"Right Knee"},{"euler":{"heading":73.6875,"pitch":-148.4375,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:08.846"} +{"sensors":[{"euler":{"heading":273.125,"pitch":134.375,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":141.5,"pitch":-161.5625,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":108.625,"pitch":37.1875,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":346.5,"pitch":-132.375,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":141.75,"pitch":101.0,"roll":49.9375},"location":"Right Knee"},{"euler":{"heading":63.9375,"pitch":-136.0625,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:08.947"} +{"sensors":[{"euler":{"heading":253.25,"pitch":143.1875,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":127.0,"pitch":162.75,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":104.1875,"pitch":28.5625,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":345.125,"pitch":-135.0625,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":145.625,"pitch":103.9375,"roll":53.8125},"location":"Right Knee"},{"euler":{"heading":59.0,"pitch":-132.125,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:09.47"} +{"sensors":[{"euler":{"heading":308.5,"pitch":160.375,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":93.25,"pitch":117.9375,"roll":52.875},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":20.5625,"roll":68.125},"location":"Right Ankle"},{"euler":{"heading":341.875,"pitch":-138.5,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":148.625,"pitch":105.375,"roll":57.875},"location":"Right Knee"},{"euler":{"heading":42.8125,"pitch":-130.1875,"roll":43.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:09.149"} +{"sensors":[{"euler":{"heading":286.6875,"pitch":179.125,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":73.75,"pitch":105.5625,"roll":40.0625},"location":"Left Ankle"},{"euler":{"heading":96.25,"pitch":7.6875,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-144.1875,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":154.8125,"pitch":112.375,"roll":62.6875},"location":"Right Knee"},{"euler":{"heading":43.4375,"pitch":-132.125,"roll":43.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:09.250"} +{"sensors":[{"euler":{"heading":295.9375,"pitch":177.625,"roll":48.6875},"location":"Left Knee"},{"euler":{"heading":82.5,"pitch":110.75,"roll":41.3125},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":-10.1875,"roll":65.8125},"location":"Right Ankle"},{"euler":{"heading":339.5,"pitch":-152.1875,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":125.375,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-136.125,"roll":44.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:09.351"} +{"sensors":[{"euler":{"heading":311.25,"pitch":166.8125,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":95.5,"pitch":114.0625,"roll":50.0},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":-35.25,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":345.8125,"pitch":-147.625,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":150.0625,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":67.3125,"pitch":-136.5,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:09.451"} +{"sensors":[{"euler":{"heading":319.5625,"pitch":159.0625,"roll":50.125},"location":"Left Knee"},{"euler":{"heading":100.75,"pitch":113.75,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":78.125,"pitch":-46.6875,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":357.0,"pitch":-131.9375,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":185.375,"pitch":162.5,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":73.0,"pitch":-141.375,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:09.552"} +{"sensors":[{"euler":{"heading":325.3125,"pitch":153.0625,"roll":50.5625},"location":"Left Knee"},{"euler":{"heading":110.3125,"pitch":116.625,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":-14.9375,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":5.5625,"pitch":-122.5,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":174.0625,"pitch":119.3125,"roll":70.6875},"location":"Right Knee"},{"euler":{"heading":77.125,"pitch":-145.3125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:09.653"} +{"sensors":[{"euler":{"heading":331.5625,"pitch":147.4375,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":111.6875,"pitch":118.6875,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":107.1875,"pitch":35.5,"roll":73.9375},"location":"Right Ankle"},{"euler":{"heading":5.375,"pitch":-119.75,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":156.4375,"pitch":103.25,"roll":53.5},"location":"Right Knee"},{"euler":{"heading":79.0,"pitch":-148.8125,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:09.753"} +{"sensors":[{"euler":{"heading":337.125,"pitch":142.1875,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":117.125,"pitch":126.4375,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":124.6875,"pitch":61.8125,"roll":59.625},"location":"Right Ankle"},{"euler":{"heading":359.625,"pitch":-125.375,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":139.0,"pitch":100.875,"roll":37.9375},"location":"Right Knee"},{"euler":{"heading":77.625,"pitch":-151.0,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:09.854"} +{"sensors":[{"euler":{"heading":251.6875,"pitch":137.9375,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":121.0,"pitch":139.5,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":124.4375,"pitch":63.1875,"roll":58.0},"location":"Right Ankle"},{"euler":{"heading":352.4375,"pitch":-127.25,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":135.625,"pitch":97.6875,"roll":36.8125},"location":"Right Knee"},{"euler":{"heading":77.625,"pitch":-154.0,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:09.954"} +{"sensors":[{"euler":{"heading":258.75,"pitch":133.9375,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":131.3125,"pitch":175.8125,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":111.25,"pitch":54.6875,"roll":64.6875},"location":"Right Ankle"},{"euler":{"heading":349.375,"pitch":-127.875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":136.25,"pitch":92.1875,"roll":42.25},"location":"Right Knee"},{"euler":{"heading":76.3125,"pitch":-151.5625,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:10.55"} +{"sensors":[{"euler":{"heading":274.25,"pitch":131.8125,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":147.9375,"pitch":-153.5625,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":104.8125,"pitch":45.0625,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":343.4375,"pitch":-130.8125,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":138.1875,"pitch":92.25,"roll":48.1875},"location":"Right Knee"},{"euler":{"heading":63.75,"pitch":-137.0625,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:10.156"} +{"sensors":[{"euler":{"heading":263.9375,"pitch":140.75,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":129.9375,"pitch":-179.875,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":100.6875,"pitch":36.4375,"roll":68.375},"location":"Right Ankle"},{"euler":{"heading":341.5,"pitch":-132.1875,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":141.625,"pitch":93.5,"roll":53.0625},"location":"Right Knee"},{"euler":{"heading":55.375,"pitch":-130.75,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:10.257"} +{"sensors":[{"euler":{"heading":227.8125,"pitch":157.4375,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":102.8125,"pitch":131.25,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":28.625,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":339.875,"pitch":-135.8125,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":145.0,"pitch":95.5,"roll":56.8125},"location":"Right Knee"},{"euler":{"heading":41.5625,"pitch":-128.125,"roll":42.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:10.357"} +{"sensors":[{"euler":{"heading":291.25,"pitch":175.625,"roll":47.75},"location":"Left Knee"},{"euler":{"heading":78.25,"pitch":110.375,"roll":44.0},"location":"Left Ankle"},{"euler":{"heading":92.8125,"pitch":16.625,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":338.9375,"pitch":-138.75,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":149.75,"pitch":100.5,"roll":61.8125},"location":"Right Knee"},{"euler":{"heading":44.1875,"pitch":-130.3125,"roll":42.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:10.459"} +{"sensors":[{"euler":{"heading":285.3125,"pitch":-178.0,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":72.75,"pitch":107.1875,"roll":37.1875},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":-4.5,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-145.625,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":111.25,"roll":68.1875},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-134.75,"roll":42.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:10.560"} +{"sensors":[{"euler":{"heading":305.5625,"pitch":171.0625,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":89.6875,"pitch":115.125,"roll":46.75},"location":"Left Ankle"},{"euler":{"heading":79.5625,"pitch":-28.9375,"roll":63.5625},"location":"Right Ankle"},{"euler":{"heading":339.5625,"pitch":-149.8125,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":172.6875,"pitch":135.0,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":46.0625,"pitch":-136.875,"roll":44.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:10.660"} +{"sensors":[{"euler":{"heading":315.8125,"pitch":162.5,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":97.0625,"pitch":116.0625,"roll":52.0625},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":-46.875,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":351.3125,"pitch":-137.25,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":181.8125,"pitch":158.5,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":71.375,"pitch":-139.6875,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:10.762"} +{"sensors":[{"euler":{"heading":322.375,"pitch":156.3125,"roll":48.5625},"location":"Left Knee"},{"euler":{"heading":106.8125,"pitch":119.4375,"roll":57.6875},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":-37.0,"roll":66.25},"location":"Right Ankle"},{"euler":{"heading":0.875,"pitch":-125.625,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":178.25,"pitch":126.8125,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":73.9375,"pitch":-142.3125,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:10.862"} +{"sensors":[{"euler":{"heading":329.0625,"pitch":151.0,"roll":47.6875},"location":"Left Knee"},{"euler":{"heading":109.8125,"pitch":121.1875,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":99.1875,"pitch":-5.1875,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":4.875,"pitch":-121.3125,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":164.5625,"pitch":109.875,"roll":59.375},"location":"Right Knee"},{"euler":{"heading":76.25,"pitch":-145.5625,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:10.963"} +{"sensors":[{"euler":{"heading":334.3125,"pitch":146.375,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":115.75,"pitch":125.375,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":119.5625,"pitch":55.875,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":3.9375,"pitch":-123.75,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":144.625,"pitch":103.5625,"roll":42.1875},"location":"Right Knee"},{"euler":{"heading":78.625,"pitch":-149.4375,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:11.64"} +{"sensors":[{"euler":{"heading":250.1875,"pitch":141.4375,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":121.625,"pitch":134.375,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":129.25,"pitch":63.3125,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":358.0,"pitch":-127.0625,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":137.0,"pitch":101.6875,"roll":35.125},"location":"Right Knee"},{"euler":{"heading":79.25,"pitch":-152.125,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:11.164"} +{"sensors":[{"euler":{"heading":256.625,"pitch":136.5,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":125.625,"pitch":152.125,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":119.5,"pitch":56.3125,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":352.8125,"pitch":-128.75,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":137.5625,"pitch":98.5,"roll":38.6875},"location":"Right Knee"},{"euler":{"heading":82.8125,"pitch":-156.75,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:11.265"} +{"sensors":[{"euler":{"heading":270.8125,"pitch":131.75,"roll":28.75},"location":"Left Knee"},{"euler":{"heading":143.25,"pitch":-162.625,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":112.25,"pitch":45.6875,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":352.125,"pitch":-129.875,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":140.875,"pitch":100.375,"roll":44.8125},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-148.625,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:11.366"} +{"sensors":[{"euler":{"heading":278.0625,"pitch":133.375,"roll":24.25},"location":"Left Knee"},{"euler":{"heading":148.375,"pitch":-152.125,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":109.4375,"pitch":36.0,"roll":67.875},"location":"Right Ankle"},{"euler":{"heading":346.25,"pitch":-135.1875,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":144.625,"pitch":102.75,"roll":49.375},"location":"Right Knee"},{"euler":{"heading":65.9375,"pitch":-135.5,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:11.467"} +{"sensors":[{"euler":{"heading":260.0,"pitch":142.375,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":131.375,"pitch":179.6875,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":105.4375,"pitch":27.0625,"roll":68.125},"location":"Right Ankle"},{"euler":{"heading":345.0625,"pitch":-137.25,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":147.3125,"pitch":105.6875,"roll":53.25},"location":"Right Knee"},{"euler":{"heading":59.4375,"pitch":-131.625,"roll":45.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:11.568"} +{"sensors":[{"euler":{"heading":312.0625,"pitch":159.75,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":97.125,"pitch":121.5625,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":101.6875,"pitch":18.25,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":342.5625,"pitch":-142.125,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":152.375,"pitch":109.625,"roll":57.5625},"location":"Right Knee"},{"euler":{"heading":43.8125,"pitch":-129.9375,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:11.668"} +{"sensors":[{"euler":{"heading":289.0625,"pitch":177.25,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":76.4375,"pitch":104.1875,"roll":43.6875},"location":"Left Ankle"},{"euler":{"heading":96.0625,"pitch":2.5625,"roll":69.25},"location":"Right Ankle"},{"euler":{"heading":340.875,"pitch":-145.4375,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":157.8125,"pitch":115.0,"roll":62.5},"location":"Right Knee"},{"euler":{"heading":44.9375,"pitch":-131.8125,"roll":43.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:11.769"} +{"sensors":[{"euler":{"heading":294.3125,"pitch":177.375,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":78.0625,"pitch":106.5625,"roll":40.0625},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":-19.375,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":340.1875,"pitch":-151.625,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":167.25,"pitch":125.5625,"roll":68.9375},"location":"Right Knee"},{"euler":{"heading":47.0625,"pitch":-134.9375,"roll":43.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:11.870"} +{"sensors":[{"euler":{"heading":311.375,"pitch":166.1875,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":93.1875,"pitch":111.1875,"roll":50.125},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-45.5625,"roll":59.6875},"location":"Right Ankle"},{"euler":{"heading":345.25,"pitch":-148.125,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":179.9375,"pitch":153.5625,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":65.9375,"pitch":-135.4375,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:11.970"} +{"sensors":[{"euler":{"heading":319.125,"pitch":158.75,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":113.5,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":70.25,"pitch":-54.4375,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":357.5,"pitch":-132.375,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":187.6875,"pitch":174.4375,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":70.875,"pitch":-139.5,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:12.71"} +{"sensors":[{"euler":{"heading":323.25,"pitch":153.25,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":106.4375,"pitch":116.6875,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-39.3125,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":5.375,"pitch":-123.125,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":178.0625,"pitch":122.0,"roll":74.625},"location":"Right Knee"},{"euler":{"heading":73.25,"pitch":-141.5,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:12.171"} +{"sensors":[{"euler":{"heading":327.9375,"pitch":148.5,"roll":47.3125},"location":"Left Knee"},{"euler":{"heading":106.875,"pitch":117.8125,"roll":61.125},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":6.3125,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":7.0,"pitch":-119.625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":159.4375,"pitch":102.5,"roll":56.375},"location":"Right Knee"},{"euler":{"heading":74.9375,"pitch":-145.375,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:12.273"} +{"sensors":[{"euler":{"heading":334.75,"pitch":143.25,"roll":45.5},"location":"Left Knee"},{"euler":{"heading":112.8125,"pitch":121.0,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":119.125,"pitch":60.5,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":4.6875,"pitch":-123.0,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":141.1875,"pitch":101.5,"roll":39.1875},"location":"Right Knee"},{"euler":{"heading":78.4375,"pitch":-149.1875,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:12.374"} +{"sensors":[{"euler":{"heading":249.6875,"pitch":138.875,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":117.5,"pitch":129.875,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":129.4375,"pitch":62.75,"roll":56.9375},"location":"Right Ankle"},{"euler":{"heading":356.375,"pitch":-126.6875,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":133.6875,"pitch":101.8125,"roll":33.125},"location":"Right Knee"},{"euler":{"heading":78.8125,"pitch":-152.75,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:12.475"} +{"sensors":[{"euler":{"heading":255.0,"pitch":134.375,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":123.375,"pitch":154.0,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":115.5,"pitch":55.375,"roll":64.1875},"location":"Right Ankle"},{"euler":{"heading":349.875,"pitch":-128.6875,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":133.875,"pitch":95.0,"roll":38.4375},"location":"Right Knee"},{"euler":{"heading":79.375,"pitch":-155.375,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:12.576"} +{"sensors":[{"euler":{"heading":274.0625,"pitch":130.25,"roll":25.875},"location":"Left Knee"},{"euler":{"heading":148.75,"pitch":-151.875,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":107.375,"pitch":47.1875,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":346.0625,"pitch":-130.3125,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":134.625,"pitch":92.4375,"roll":43.25},"location":"Right Knee"},{"euler":{"heading":67.5625,"pitch":-139.9375,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:12.677"} +{"sensors":[{"euler":{"heading":271.0,"pitch":136.4375,"roll":26.75},"location":"Left Knee"},{"euler":{"heading":140.25,"pitch":-162.125,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":38.125,"roll":68.125},"location":"Right Ankle"},{"euler":{"heading":342.8125,"pitch":-133.25,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":138.75,"pitch":94.0625,"roll":49.0},"location":"Right Knee"},{"euler":{"heading":57.125,"pitch":-130.875,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:12.777"} +{"sensors":[{"euler":{"heading":238.375,"pitch":151.75,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":131.5625,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":30.0,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":341.0,"pitch":-134.9375,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":140.9375,"pitch":95.1875,"roll":52.5625},"location":"Right Knee"},{"euler":{"heading":41.875,"pitch":-128.125,"roll":43.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:12.878"} +{"sensors":[{"euler":{"heading":298.125,"pitch":170.25,"roll":47.8125},"location":"Left Knee"},{"euler":{"heading":86.1875,"pitch":113.6875,"roll":50.0},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":19.5,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":339.75,"pitch":-138.875,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":145.4375,"pitch":98.125,"roll":57.375},"location":"Right Knee"},{"euler":{"heading":43.8125,"pitch":-129.875,"roll":42.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:12.978"} +{"sensors":[{"euler":{"heading":290.8125,"pitch":177.9375,"roll":46.125},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":108.125,"roll":40.9375},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":1.25,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":339.125,"pitch":-143.375,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":153.125,"pitch":105.625,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":45.8125,"pitch":-134.6875,"roll":42.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:13.79"} +{"sensors":[{"euler":{"heading":304.8125,"pitch":170.375,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":90.375,"pitch":115.75,"roll":48.625},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":-24.375,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":338.875,"pitch":-146.875,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":164.5,"pitch":119.375,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":44.625,"pitch":-137.375,"roll":44.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:13.180"} +{"sensors":[{"euler":{"heading":316.5625,"pitch":161.75,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":98.0625,"pitch":117.75,"roll":54.0625},"location":"Left Ankle"},{"euler":{"heading":73.0,"pitch":-48.5,"roll":60.1875},"location":"Right Ankle"},{"euler":{"heading":350.0,"pitch":-136.75,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":141.75,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":67.6875,"pitch":-139.9375,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:13.281"} +{"sensors":[{"euler":{"heading":324.0625,"pitch":155.5,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":105.75,"pitch":121.5,"roll":58.4375},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-40.5625,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":-124.625,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":125.875,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":72.5625,"pitch":-143.625,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:13.382"} +{"sensors":[{"euler":{"heading":332.625,"pitch":149.375,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":112.8125,"pitch":123.3125,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":96.5,"pitch":-6.8125,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":4.3125,"pitch":-120.0,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":163.0,"pitch":109.5625,"roll":59.25},"location":"Right Knee"},{"euler":{"heading":76.1875,"pitch":-146.1875,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:13.483"} +{"sensors":[{"euler":{"heading":250.6875,"pitch":143.75,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":118.8125,"pitch":130.25,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":117.9375,"pitch":53.375,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":4.0625,"pitch":-122.3125,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":143.5,"pitch":104.75,"roll":41.8125},"location":"Right Knee"},{"euler":{"heading":79.5,"pitch":-149.5625,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:13.583"} +{"sensors":[{"euler":{"heading":256.875,"pitch":138.9375,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":141.8125,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":131.5,"pitch":60.5625,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":359.25,"pitch":-126.25,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":136.875,"pitch":104.5,"roll":35.125},"location":"Right Knee"},{"euler":{"heading":80.875,"pitch":-152.4375,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:13.684"} +{"sensors":[{"euler":{"heading":264.3125,"pitch":134.3125,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":128.875,"pitch":164.375,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":121.6875,"pitch":55.5625,"roll":63.0625},"location":"Right Ankle"},{"euler":{"heading":354.6875,"pitch":-127.9375,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":137.6875,"pitch":99.75,"roll":39.6875},"location":"Right Knee"},{"euler":{"heading":82.875,"pitch":-155.8125,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:13.784"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":129.875,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":151.0,"pitch":-153.375,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":111.4375,"pitch":44.9375,"roll":67.0},"location":"Right Ankle"},{"euler":{"heading":353.0,"pitch":-128.4375,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":140.25,"pitch":98.375,"roll":45.75},"location":"Right Knee"},{"euler":{"heading":73.125,"pitch":-144.4375,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:13.885"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":132.4375,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":148.125,"pitch":-155.5625,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":107.25,"pitch":36.625,"roll":66.6875},"location":"Right Ankle"},{"euler":{"heading":347.25,"pitch":-131.5,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":140.9375,"pitch":98.1875,"roll":49.3125},"location":"Right Knee"},{"euler":{"heading":62.375,"pitch":-133.25,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:13.986"} +{"sensors":[{"euler":{"heading":252.25,"pitch":144.6875,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":119.5,"pitch":151.9375,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":104.125,"pitch":29.0625,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":345.0,"pitch":-133.3125,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":142.5625,"pitch":100.875,"roll":53.0625},"location":"Right Knee"},{"euler":{"heading":43.3125,"pitch":-130.375,"roll":43.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:14.86"} +{"sensors":[{"euler":{"heading":310.6875,"pitch":161.375,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":89.125,"pitch":116.125,"roll":50.1875},"location":"Left Ankle"},{"euler":{"heading":101.125,"pitch":19.25,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":344.0625,"pitch":-136.8125,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":147.75,"pitch":105.375,"roll":57.625},"location":"Right Knee"},{"euler":{"heading":44.4375,"pitch":-129.875,"roll":42.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:14.187"} +{"sensors":[{"euler":{"heading":294.9375,"pitch":175.875,"roll":48.0},"location":"Left Knee"},{"euler":{"heading":75.9375,"pitch":107.0,"roll":38.9375},"location":"Left Ankle"},{"euler":{"heading":95.625,"pitch":4.625,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":343.6875,"pitch":-140.75,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":154.5,"pitch":113.25,"roll":62.75},"location":"Right Knee"},{"euler":{"heading":46.75,"pitch":-133.5625,"roll":42.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:14.287"} +{"sensors":[{"euler":{"heading":298.625,"pitch":175.5625,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":87.5,"pitch":113.75,"roll":43.1875},"location":"Left Ankle"},{"euler":{"heading":88.6875,"pitch":-14.125,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":341.375,"pitch":-149.25,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":164.9375,"pitch":125.5625,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":47.6875,"pitch":-136.5625,"roll":44.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:14.388"} +{"sensors":[{"euler":{"heading":314.375,"pitch":164.625,"roll":48.5625},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":114.25,"roll":51.3125},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":-37.625,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":347.3125,"pitch":-146.8125,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":177.375,"pitch":151.5,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":68.375,"pitch":-137.375,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:14.488"} +{"sensors":[{"euler":{"heading":324.0625,"pitch":156.1875,"roll":47.5625},"location":"Left Knee"},{"euler":{"heading":102.5625,"pitch":116.6875,"roll":55.625},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":-42.875,"roll":62.9375},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-131.6875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":184.0625,"pitch":149.3125,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":71.75,"pitch":-139.875,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:14.589"} +{"sensors":[{"euler":{"heading":326.0,"pitch":151.625,"roll":47.75},"location":"Left Knee"},{"euler":{"heading":111.0,"pitch":121.0,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":-11.5625,"roll":72.5},"location":"Right Ankle"},{"euler":{"heading":3.875,"pitch":-123.5,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":171.1875,"pitch":111.0625,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":72.875,"pitch":-142.75,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:14.689"} +{"sensors":[{"euler":{"heading":330.3125,"pitch":147.25,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":113.25,"pitch":122.75,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":109.375,"pitch":45.0,"roll":72.0},"location":"Right Ankle"},{"euler":{"heading":2.3125,"pitch":-122.5,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":152.625,"pitch":100.6875,"roll":51.3125},"location":"Right Knee"},{"euler":{"heading":73.25,"pitch":-146.0625,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:14.790"} +{"sensors":[{"euler":{"heading":250.5,"pitch":140.9375,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":121.625,"pitch":131.0625,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":126.4375,"pitch":61.375,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":359.3125,"pitch":-126.4375,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":137.9375,"pitch":102.1875,"roll":36.8125},"location":"Right Knee"},{"euler":{"heading":76.4375,"pitch":-149.125,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:14.891"} +{"sensors":[{"euler":{"heading":258.8125,"pitch":135.5,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":127.5,"pitch":144.5625,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":122.875,"pitch":60.3125,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":354.375,"pitch":-127.3125,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":135.6875,"pitch":99.4375,"roll":36.75},"location":"Right Knee"},{"euler":{"heading":80.8125,"pitch":-155.0625,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:14.992"} +{"sensors":[{"euler":{"heading":266.6875,"pitch":131.9375,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":136.5,"pitch":-163.9375,"roll":70.0625},"location":"Left Ankle"},{"euler":{"heading":112.4375,"pitch":49.5,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":350.875,"pitch":-129.3125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":136.8125,"pitch":95.5625,"roll":42.0625},"location":"Right Knee"},{"euler":{"heading":80.5625,"pitch":-152.8125,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:15.93"} +{"sensors":[{"euler":{"heading":278.375,"pitch":130.625,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":147.875,"pitch":-154.5,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":108.9375,"pitch":40.125,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":344.6875,"pitch":-134.625,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":139.625,"pitch":98.8125,"roll":47.4375},"location":"Right Knee"},{"euler":{"heading":68.75,"pitch":-139.125,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:15.194"} +{"sensors":[{"euler":{"heading":269.25,"pitch":137.375,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":132.5625,"pitch":175.75,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":105.0,"pitch":32.875,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":342.4375,"pitch":-136.9375,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":142.3125,"pitch":99.9375,"roll":51.3125},"location":"Right Knee"},{"euler":{"heading":61.3125,"pitch":-133.375,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:15.294"} +{"sensors":[{"euler":{"heading":232.875,"pitch":153.5,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":100.75,"pitch":122.8125,"roll":59.5625},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":24.0,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":341.4375,"pitch":-139.4375,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":145.3125,"pitch":102.25,"roll":55.375},"location":"Right Knee"},{"euler":{"heading":42.4375,"pitch":-130.4375,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:15.395"} +{"sensors":[{"euler":{"heading":294.875,"pitch":172.875,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":76.5,"pitch":106.0,"roll":41.0},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":11.3125,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":340.5625,"pitch":-142.5,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":151.0,"pitch":106.875,"roll":60.625},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-132.75,"roll":43.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:15.495"} +{"sensors":[{"euler":{"heading":288.5625,"pitch":179.5,"roll":47.875},"location":"Left Knee"},{"euler":{"heading":74.4375,"pitch":107.0,"roll":39.5625},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":-8.25,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":339.875,"pitch":-147.875,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":160.25,"pitch":116.875,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":45.25,"pitch":-135.5625,"roll":43.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:15.595"} +{"sensors":[{"euler":{"heading":306.8125,"pitch":169.0625,"roll":47.75},"location":"Left Knee"},{"euler":{"heading":89.625,"pitch":111.8125,"roll":49.5},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":-33.8125,"roll":62.0},"location":"Right Ankle"},{"euler":{"heading":342.5,"pitch":-148.25,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":141.625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":75.6875,"pitch":-136.75,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:15.696"} +{"sensors":[{"euler":{"heading":316.8125,"pitch":160.6875,"roll":47.875},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":112.8125,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":-48.3125,"roll":58.3125},"location":"Right Ankle"},{"euler":{"heading":352.625,"pitch":-133.5,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":179.75,"pitch":154.25,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":67.6875,"pitch":-139.0625,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:15.797"} +{"sensors":[{"euler":{"heading":323.5625,"pitch":154.5,"roll":48.3125},"location":"Left Knee"},{"euler":{"heading":108.5,"pitch":116.625,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":84.125,"pitch":-28.875,"roll":67.5},"location":"Right Ankle"},{"euler":{"heading":0.9375,"pitch":-124.6875,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":172.125,"pitch":110.6875,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":69.5625,"pitch":-140.625,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:15.897"} +{"sensors":[{"euler":{"heading":331.75,"pitch":148.125,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":111.8125,"pitch":119.8125,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":101.875,"pitch":17.75,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":3.4375,"pitch":-123.4375,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":156.8125,"pitch":102.4375,"roll":52.75},"location":"Right Knee"},{"euler":{"heading":72.25,"pitch":-143.3125,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:15.999"} +{"sensors":[{"euler":{"heading":247.75,"pitch":143.125,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":115.75,"pitch":125.875,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":123.0625,"pitch":58.4375,"roll":61.5625},"location":"Right Ankle"},{"euler":{"heading":2.125,"pitch":-126.5625,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":139.8125,"pitch":102.625,"roll":37.25},"location":"Right Knee"},{"euler":{"heading":75.25,"pitch":-147.625,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:16.99"} +{"sensors":[{"euler":{"heading":255.875,"pitch":137.875,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":122.0625,"pitch":139.125,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":129.375,"pitch":60.5625,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":356.875,"pitch":-127.9375,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":135.5625,"pitch":102.8125,"roll":34.5},"location":"Right Knee"},{"euler":{"heading":78.1875,"pitch":-151.3125,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:16.200"} +{"sensors":[{"euler":{"heading":264.5,"pitch":133.4375,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":129.8125,"pitch":171.875,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":117.25,"pitch":52.75,"roll":63.4375},"location":"Right Ankle"},{"euler":{"heading":351.375,"pitch":-130.3125,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":135.8125,"pitch":98.5625,"roll":39.25},"location":"Right Knee"},{"euler":{"heading":78.0625,"pitch":-151.4375,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:16.301"} +{"sensors":[{"euler":{"heading":279.125,"pitch":130.9375,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":-155.5625,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":111.625,"pitch":42.75,"roll":65.75},"location":"Right Ankle"},{"euler":{"heading":347.5625,"pitch":-133.5625,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":139.125,"pitch":99.875,"roll":45.1875},"location":"Right Knee"},{"euler":{"heading":67.0,"pitch":-137.8125,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:16.401"} +{"sensors":[{"euler":{"heading":272.625,"pitch":137.4375,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":138.1875,"pitch":-170.5625,"roll":66.75},"location":"Left Ankle"},{"euler":{"heading":107.6875,"pitch":33.5625,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":345.5,"pitch":-136.5,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":141.3125,"pitch":101.9375,"roll":49.25},"location":"Right Knee"},{"euler":{"heading":60.0625,"pitch":-131.25,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:16.502"} +{"sensors":[{"euler":{"heading":239.1875,"pitch":152.375,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":110.75,"pitch":137.875,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":102.625,"pitch":27.4375,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":343.4375,"pitch":-136.4375,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":142.5625,"pitch":101.25,"roll":52.5625},"location":"Right Knee"},{"euler":{"heading":44.625,"pitch":-128.6875,"roll":43.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:16.602"} +{"sensors":[{"euler":{"heading":299.8125,"pitch":170.75,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":81.8125,"pitch":111.6875,"roll":44.6875},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":17.8125,"roll":68.0},"location":"Right Ankle"},{"euler":{"heading":341.9375,"pitch":-140.3125,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":147.4375,"pitch":103.6875,"roll":57.3125},"location":"Right Knee"},{"euler":{"heading":44.4375,"pitch":-130.625,"roll":42.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:16.704"} +{"sensors":[{"euler":{"heading":293.125,"pitch":178.75,"roll":46.625},"location":"Left Knee"},{"euler":{"heading":74.8125,"pitch":108.6875,"roll":37.9375},"location":"Left Ankle"},{"euler":{"heading":91.75,"pitch":1.625,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":340.8125,"pitch":-144.625,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":111.25,"roll":62.9375},"location":"Right Knee"},{"euler":{"heading":46.0625,"pitch":-135.6875,"roll":43.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:16.805"} +{"sensors":[{"euler":{"heading":309.4375,"pitch":168.75,"roll":46.625},"location":"Left Knee"},{"euler":{"heading":91.4375,"pitch":115.0,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-22.125,"roll":64.5625},"location":"Right Ankle"},{"euler":{"heading":340.625,"pitch":-149.0,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":166.625,"pitch":127.0625,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":66.1875,"pitch":-137.4375,"roll":45.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:16.906"} +{"sensors":[{"euler":{"heading":317.5,"pitch":161.125,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":96.4375,"pitch":114.625,"roll":52.0625},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":-41.6875,"roll":62.0},"location":"Right Ankle"},{"euler":{"heading":350.1875,"pitch":-140.4375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":174.3125,"pitch":144.125,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":68.25,"pitch":-139.8125,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:17.8"} +{"sensors":[{"euler":{"heading":322.875,"pitch":155.75,"roll":48.0},"location":"Left Knee"},{"euler":{"heading":101.8125,"pitch":116.25,"roll":55.4375},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":-35.25,"roll":68.5},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-127.125,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":173.0625,"pitch":117.3125,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":71.9375,"pitch":-143.875,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:17.109"} +{"sensors":[{"euler":{"heading":328.625,"pitch":150.5,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":104.5625,"pitch":118.125,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":98.125,"pitch":1.625,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":3.875,"pitch":-121.8125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":158.75,"pitch":103.5,"roll":56.8125},"location":"Right Knee"},{"euler":{"heading":74.0625,"pitch":-146.75,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:17.210"} +{"sensors":[{"euler":{"heading":246.0,"pitch":144.9375,"roll":44.9375},"location":"Left Knee"},{"euler":{"heading":110.0,"pitch":123.1875,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":118.375,"pitch":57.8125,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":2.4375,"pitch":-124.25,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":139.3125,"pitch":100.0625,"roll":39.4375},"location":"Right Knee"},{"euler":{"heading":76.375,"pitch":-149.0625,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:17.311"} +{"sensors":[{"euler":{"heading":252.375,"pitch":140.25,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":116.8125,"pitch":130.5625,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":128.5625,"pitch":61.375,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":358.125,"pitch":-126.8125,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":131.625,"pitch":100.8125,"roll":32.4375},"location":"Right Knee"},{"euler":{"heading":77.8125,"pitch":-152.6875,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:17.412"} +{"sensors":[{"euler":{"heading":258.375,"pitch":136.3125,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":122.0,"pitch":146.125,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":119.6875,"pitch":56.9375,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":352.9375,"pitch":-127.5625,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":132.375,"pitch":97.4375,"roll":36.375},"location":"Right Knee"},{"euler":{"heading":95.75,"pitch":-158.0625,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:17.513"} +{"sensors":[{"euler":{"heading":271.5625,"pitch":132.0625,"roll":27.75},"location":"Left Knee"},{"euler":{"heading":139.125,"pitch":-167.375,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":109.8125,"pitch":44.375,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":349.3125,"pitch":-130.0,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":134.4375,"pitch":95.625,"roll":42.3125},"location":"Right Knee"},{"euler":{"heading":73.8125,"pitch":-150.125,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:17.613"} +{"sensors":[{"euler":{"heading":279.25,"pitch":132.625,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":144.75,"pitch":-154.5625,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":107.0,"pitch":34.0,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":343.6875,"pitch":-134.75,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":136.6875,"pitch":99.125,"roll":46.875},"location":"Right Knee"},{"euler":{"heading":62.3125,"pitch":-135.625,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:17.714"} +{"sensors":[{"euler":{"heading":257.4375,"pitch":145.1875,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":120.5,"pitch":163.1875,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":102.875,"pitch":27.8125,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":342.9375,"pitch":-135.1875,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":139.6875,"pitch":101.1875,"roll":51.125},"location":"Right Knee"},{"euler":{"heading":40.1875,"pitch":-130.8125,"roll":43.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:17.814"} +{"sensors":[{"euler":{"heading":220.875,"pitch":162.9375,"roll":43.8125},"location":"Left Knee"},{"euler":{"heading":91.6875,"pitch":118.375,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":99.5625,"pitch":20.5625,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":341.375,"pitch":-138.1875,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":143.5,"pitch":102.6875,"roll":54.875},"location":"Right Knee"},{"euler":{"heading":42.75,"pitch":-129.3125,"roll":42.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:17.915"} +{"sensors":[{"euler":{"heading":290.5625,"pitch":178.25,"roll":47.625},"location":"Left Knee"},{"euler":{"heading":72.375,"pitch":105.0,"roll":38.875},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":7.5625,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":341.8125,"pitch":-142.0,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":150.125,"pitch":109.8125,"roll":59.625},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-133.0625,"roll":43.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:18.16"} +{"sensors":[{"euler":{"heading":297.0,"pitch":175.25,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":79.5625,"pitch":110.25,"roll":39.5},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":-7.375,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":341.375,"pitch":-149.25,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":121.25,"roll":65.4375},"location":"Right Knee"},{"euler":{"heading":45.4375,"pitch":-136.875,"roll":44.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:18.116"} +{"sensors":[{"euler":{"heading":316.5625,"pitch":164.875,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":113.5625,"roll":49.3125},"location":"Left Ankle"},{"euler":{"heading":81.1875,"pitch":-30.125,"roll":62.0625},"location":"Right Ankle"},{"euler":{"heading":345.25,"pitch":-147.125,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":172.1875,"pitch":142.5625,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":67.6875,"pitch":-138.0,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:18.218"} +{"sensors":[{"euler":{"heading":327.4375,"pitch":156.875,"roll":47.5},"location":"Left Knee"},{"euler":{"heading":102.625,"pitch":115.125,"roll":54.625},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-43.25,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":355.5,"pitch":-131.5625,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":178.25,"pitch":146.4375,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":73.3125,"pitch":-141.75,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:18.319"} +{"sensors":[{"euler":{"heading":333.6875,"pitch":150.75,"roll":47.875},"location":"Left Knee"},{"euler":{"heading":113.3125,"pitch":119.3125,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":91.375,"pitch":-14.5,"roll":69.1875},"location":"Right Ankle"},{"euler":{"heading":2.0,"pitch":-124.8125,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":169.25,"pitch":115.3125,"roll":68.9375},"location":"Right Knee"},{"euler":{"heading":76.0625,"pitch":-144.375,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:18.420"} +{"sensors":[{"euler":{"heading":340.25,"pitch":145.375,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":115.5625,"pitch":122.1875,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":108.375,"pitch":32.75,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":358.5625,"pitch":-126.375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":106.0,"roll":52.1875},"location":"Right Knee"},{"euler":{"heading":77.0625,"pitch":-148.4375,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:18.520"} +{"sensors":[{"euler":{"heading":255.8125,"pitch":140.5625,"roll":43.25},"location":"Left Knee"},{"euler":{"heading":122.75,"pitch":132.625,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":127.125,"pitch":60.5625,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":356.125,"pitch":-129.625,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":137.0625,"pitch":101.9375,"roll":36.3125},"location":"Right Knee"},{"euler":{"heading":78.1875,"pitch":-151.0625,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:18.621"} +{"sensors":[{"euler":{"heading":263.75,"pitch":135.625,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":129.25,"pitch":149.875,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":124.6875,"pitch":59.9375,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":352.125,"pitch":-130.25,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":135.5625,"pitch":99.375,"roll":36.125},"location":"Right Knee"},{"euler":{"heading":78.625,"pitch":-153.0625,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:18.722"} +{"sensors":[{"euler":{"heading":273.1875,"pitch":131.375,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":139.875,"pitch":-171.125,"roll":68.5625},"location":"Left Ankle"},{"euler":{"heading":112.625,"pitch":47.25,"roll":65.375},"location":"Right Ankle"},{"euler":{"heading":348.9375,"pitch":-131.8125,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":136.6875,"pitch":96.8125,"roll":41.25},"location":"Right Knee"},{"euler":{"heading":75.875,"pitch":-147.875,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:18.823"} +{"sensors":[{"euler":{"heading":280.9375,"pitch":132.8125,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":146.875,"pitch":-154.25,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":109.0625,"pitch":37.9375,"roll":66.25},"location":"Right Ankle"},{"euler":{"heading":342.5,"pitch":-136.25,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":139.25,"pitch":99.6875,"roll":45.5625},"location":"Right Knee"},{"euler":{"heading":65.4375,"pitch":-134.25,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:18.924"} +{"sensors":[{"euler":{"heading":268.1875,"pitch":141.4375,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":129.125,"pitch":174.5625,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":31.9375,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":340.9375,"pitch":-138.1875,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":141.5,"pitch":102.0,"roll":49.1875},"location":"Right Knee"},{"euler":{"heading":58.25,"pitch":-129.875,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:19.25"} +{"sensors":[{"euler":{"heading":235.375,"pitch":157.4375,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":98.3125,"pitch":128.0625,"roll":55.1875},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":23.875,"roll":66.6875},"location":"Right Ankle"},{"euler":{"heading":339.4375,"pitch":-139.25,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":143.625,"pitch":102.125,"roll":52.75},"location":"Right Knee"},{"euler":{"heading":43.75,"pitch":-128.8125,"roll":43.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:19.125"} +{"sensors":[{"euler":{"heading":299.9375,"pitch":174.1875,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":76.375,"pitch":110.5625,"roll":39.1875},"location":"Left Ankle"},{"euler":{"heading":96.375,"pitch":13.75,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":338.3125,"pitch":-140.1875,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":147.9375,"pitch":103.75,"roll":57.75},"location":"Right Knee"},{"euler":{"heading":44.125,"pitch":-131.4375,"roll":42.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:19.225"} +{"sensors":[{"euler":{"heading":294.0625,"pitch":177.25,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":77.4375,"pitch":111.0,"roll":38.375},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":-3.0,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":337.1875,"pitch":-145.125,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":156.0,"pitch":111.25,"roll":64.0},"location":"Right Knee"},{"euler":{"heading":45.8125,"pitch":-134.6875,"roll":43.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:19.326"} +{"sensors":[{"euler":{"heading":311.6875,"pitch":167.375,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":90.5625,"pitch":114.5625,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":-27.375,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":340.375,"pitch":-145.0625,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":168.75,"pitch":131.25,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":64.0625,"pitch":-135.75,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:19.427"} +{"sensors":[{"euler":{"heading":321.0,"pitch":159.8125,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":98.625,"pitch":114.8125,"roll":52.75},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-45.0,"roll":59.125},"location":"Right Ankle"},{"euler":{"heading":351.5,"pitch":-136.0625,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":176.875,"pitch":142.625,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":68.0625,"pitch":-138.4375,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:19.527"} +{"sensors":[{"euler":{"heading":327.6875,"pitch":153.9375,"roll":47.75},"location":"Left Knee"},{"euler":{"heading":108.9375,"pitch":118.625,"roll":58.875},"location":"Left Ankle"},{"euler":{"heading":86.5,"pitch":-22.6875,"roll":67.3125},"location":"Right Ankle"},{"euler":{"heading":358.3125,"pitch":-126.5625,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":170.1875,"pitch":113.3125,"roll":69.6875},"location":"Right Knee"},{"euler":{"heading":69.9375,"pitch":-141.875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:19.628"} +{"sensors":[{"euler":{"heading":334.4375,"pitch":148.375,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":110.875,"pitch":120.875,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":104.125,"pitch":15.4375,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":359.625,"pitch":-123.875,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":158.0625,"pitch":105.75,"roll":53.9375},"location":"Right Knee"},{"euler":{"heading":72.0625,"pitch":-145.5625,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:19.728"} +{"sensors":[{"euler":{"heading":251.1875,"pitch":143.0,"roll":43.75},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":127.5,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":54.9375,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":353.9375,"pitch":-129.0625,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":139.9375,"pitch":102.375,"roll":39.0625},"location":"Right Knee"},{"euler":{"heading":71.4375,"pitch":-147.5625,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:19.830"} +{"sensors":[{"euler":{"heading":257.8125,"pitch":138.4375,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":122.5,"pitch":140.125,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":128.0,"pitch":58.6875,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":346.25,"pitch":-132.5,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":132.125,"pitch":101.9375,"roll":33.125},"location":"Right Knee"},{"euler":{"heading":71.5625,"pitch":-150.625,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:19.931"} +{"sensors":[{"euler":{"heading":264.125,"pitch":134.4375,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":165.0625,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":117.0625,"pitch":52.0625,"roll":61.5625},"location":"Right Ankle"},{"euler":{"heading":340.3125,"pitch":-134.0625,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":132.125,"pitch":97.6875,"roll":37.3125},"location":"Right Knee"},{"euler":{"heading":72.125,"pitch":-153.0,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:20.31"} +{"sensors":[{"euler":{"heading":278.25,"pitch":132.0,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":149.25,"pitch":-150.6875,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":110.8125,"pitch":42.9375,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":338.6875,"pitch":-135.1875,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":134.25,"pitch":97.1875,"roll":42.625},"location":"Right Knee"},{"euler":{"heading":61.4375,"pitch":-140.0,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:20.132"} +{"sensors":[{"euler":{"heading":274.8125,"pitch":137.0625,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":135.0625,"pitch":-161.6875,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":106.875,"pitch":34.0625,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":336.1875,"pitch":-138.0,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":137.1875,"pitch":99.625,"roll":47.5},"location":"Right Knee"},{"euler":{"heading":55.375,"pitch":-129.25,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:20.232"} +{"sensors":[{"euler":{"heading":250.125,"pitch":147.1875,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":109.375,"pitch":139.6875,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":103.5625,"pitch":27.875,"roll":63.25},"location":"Right Ankle"},{"euler":{"heading":335.3125,"pitch":-138.75,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":140.625,"pitch":102.4375,"roll":51.4375},"location":"Right Knee"},{"euler":{"heading":52.4375,"pitch":-127.4375,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:20.333"} +{"sensors":[{"euler":{"heading":217.0625,"pitch":164.25,"roll":44.875},"location":"Left Knee"},{"euler":{"heading":83.0,"pitch":112.3125,"roll":49.375},"location":"Left Ankle"},{"euler":{"heading":101.5625,"pitch":22.375,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":334.6875,"pitch":-141.5,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":145.5,"pitch":106.5625,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":39.25,"pitch":-127.1875,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:20.433"} +{"sensors":[{"euler":{"heading":291.8125,"pitch":177.9375,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":71.375,"pitch":104.75,"roll":37.0},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":8.25,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":334.3125,"pitch":-144.875,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":152.0,"pitch":113.5625,"roll":60.875},"location":"Right Knee"},{"euler":{"heading":41.1875,"pitch":-132.125,"roll":44.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:20.534"} +{"sensors":[{"euler":{"heading":305.1875,"pitch":172.3125,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":87.375,"pitch":113.625,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":-8.75,"roll":64.375},"location":"Right Ankle"},{"euler":{"heading":334.75,"pitch":-151.25,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":163.1875,"pitch":127.75,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":62.5,"pitch":-134.3125,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:20.634"} +{"sensors":[{"euler":{"heading":320.625,"pitch":162.5625,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":97.8125,"pitch":114.9375,"roll":51.25},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-39.375,"roll":58.3125},"location":"Right Ankle"},{"euler":{"heading":343.3125,"pitch":-143.6875,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":174.9375,"pitch":149.75,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":64.0,"pitch":-135.5,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:20.735"} +{"sensors":[{"euler":{"heading":330.0625,"pitch":155.125,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":105.25,"pitch":116.625,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-46.0625,"roll":59.8125},"location":"Right Ankle"},{"euler":{"heading":355.125,"pitch":-131.0,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":181.9375,"pitch":148.75,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":69.875,"pitch":-139.4375,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:20.835"} +{"sensors":[{"euler":{"heading":336.625,"pitch":149.25,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":117.625,"pitch":123.4375,"roll":63.0625},"location":"Left Ankle"},{"euler":{"heading":97.0,"pitch":-3.75,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":0.625,"pitch":-124.5,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":167.25,"pitch":117.375,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":72.125,"pitch":-142.5,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:20.936"} +{"sensors":[{"euler":{"heading":251.125,"pitch":144.5625,"roll":44.875},"location":"Left Knee"},{"euler":{"heading":117.5,"pitch":126.1875,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":113.625,"pitch":39.875,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":357.3125,"pitch":-127.0625,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":147.3125,"pitch":106.6875,"roll":45.1875},"location":"Right Knee"},{"euler":{"heading":71.3125,"pitch":-146.25,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:21.37"} +{"sensors":[{"euler":{"heading":257.875,"pitch":139.6875,"roll":41.5},"location":"Left Knee"},{"euler":{"heading":123.5,"pitch":135.0,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":126.75,"pitch":58.625,"roll":58.375},"location":"Right Ankle"},{"euler":{"heading":348.6875,"pitch":-132.0625,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":133.0,"pitch":103.8125,"roll":32.8125},"location":"Right Knee"},{"euler":{"heading":71.4375,"pitch":-149.125,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:21.138"} +{"sensors":[{"euler":{"heading":264.75,"pitch":135.4375,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":154.8125,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":120.0625,"pitch":56.0,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":339.5625,"pitch":-134.625,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":131.1875,"pitch":98.0,"roll":34.25},"location":"Right Knee"},{"euler":{"heading":73.0625,"pitch":-153.5,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:21.239"} +{"sensors":[{"euler":{"heading":276.6875,"pitch":132.5,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":141.625,"pitch":-164.625,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":112.6875,"pitch":43.875,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":340.5,"pitch":-134.8125,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":134.0625,"pitch":99.375,"roll":40.25},"location":"Right Knee"},{"euler":{"heading":69.1875,"pitch":-147.0,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:21.340"} +{"sensors":[{"euler":{"heading":282.0625,"pitch":134.5625,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":-160.6875,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":109.75,"pitch":36.5,"roll":64.375},"location":"Right Ankle"},{"euler":{"heading":337.375,"pitch":-137.5,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":135.625,"pitch":101.875,"roll":44.5},"location":"Right Knee"},{"euler":{"heading":63.25,"pitch":-133.25,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:21.441"} +{"sensors":[{"euler":{"heading":257.625,"pitch":145.1875,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":127.4375,"pitch":158.1875,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":106.5,"pitch":30.6875,"roll":63.4375},"location":"Right Ankle"},{"euler":{"heading":335.8125,"pitch":-138.75,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":138.5,"pitch":104.0,"roll":48.375},"location":"Right Knee"},{"euler":{"heading":55.25,"pitch":-128.0,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:21.542"} +{"sensors":[{"euler":{"heading":222.375,"pitch":161.875,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":91.25,"pitch":120.5625,"roll":50.8125},"location":"Left Ankle"},{"euler":{"heading":104.125,"pitch":25.25,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":335.1875,"pitch":-141.75,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":146.5,"pitch":109.0,"roll":55.3125},"location":"Right Knee"},{"euler":{"heading":40.25,"pitch":-126.3125,"roll":44.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:21.644"} +{"sensors":[{"euler":{"heading":292.375,"pitch":177.8125,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":70.0625,"pitch":105.9375,"roll":36.0625},"location":"Left Ankle"},{"euler":{"heading":99.0625,"pitch":11.5,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":336.1875,"pitch":-143.625,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":153.3125,"pitch":115.0625,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":42.375,"pitch":-130.5625,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:21.745"} +{"sensors":[{"euler":{"heading":295.875,"pitch":178.25,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":77.875,"pitch":110.3125,"roll":37.875},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":-4.5625,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":335.75,"pitch":-149.5,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":161.6875,"pitch":123.9375,"roll":65.875},"location":"Right Knee"},{"euler":{"heading":43.6875,"pitch":-132.9375,"roll":44.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:21.846"} +{"sensors":[{"euler":{"heading":314.9375,"pitch":166.375,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":91.625,"pitch":114.5,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":-27.4375,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":336.5625,"pitch":-151.6875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":175.0,"pitch":150.625,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":62.5,"pitch":-133.875,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:21.947"} +{"sensors":[{"euler":{"heading":325.5625,"pitch":158.625,"roll":46.625},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":115.5,"roll":53.3125},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":-52.4375,"roll":54.75},"location":"Right Ankle"},{"euler":{"heading":346.3125,"pitch":-137.25,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":185.4375,"pitch":172.5,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":67.5625,"pitch":-137.3125,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:22.48"} +{"sensors":[{"euler":{"heading":330.875,"pitch":153.0,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":109.5625,"pitch":118.125,"roll":58.5},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":-34.125,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":355.9375,"pitch":-128.4375,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":177.9375,"pitch":125.875,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":70.4375,"pitch":-141.625,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:22.149"} +{"sensors":[{"euler":{"heading":337.875,"pitch":147.75,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":112.8125,"pitch":120.6875,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":107.5,"pitch":24.8125,"roll":70.625},"location":"Right Ankle"},{"euler":{"heading":357.625,"pitch":-125.375,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":105.125,"roll":57.375},"location":"Right Knee"},{"euler":{"heading":71.0625,"pitch":-144.625,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:22.250"} +{"sensors":[{"euler":{"heading":253.8125,"pitch":142.75,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":117.625,"pitch":126.375,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":122.0,"pitch":54.0,"roll":62.1875},"location":"Right Ankle"},{"euler":{"heading":349.6875,"pitch":-131.625,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":141.75,"pitch":103.1875,"roll":40.125},"location":"Right Knee"},{"euler":{"heading":70.875,"pitch":-147.9375,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:22.350"} +{"sensors":[{"euler":{"heading":259.0,"pitch":138.625,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":122.8125,"pitch":137.1875,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":125.6875,"pitch":58.1875,"roll":57.375},"location":"Right Ankle"},{"euler":{"heading":340.6875,"pitch":-134.8125,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":133.8125,"pitch":100.6875,"roll":35.1875},"location":"Right Knee"},{"euler":{"heading":71.875,"pitch":-151.5,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:22.451"} +{"sensors":[{"euler":{"heading":265.75,"pitch":135.125,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":164.6875,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":113.875,"pitch":50.9375,"roll":62.5625},"location":"Right Ankle"},{"euler":{"heading":334.875,"pitch":-136.5,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":133.1875,"pitch":94.0625,"roll":39.875},"location":"Right Knee"},{"euler":{"heading":71.3125,"pitch":-150.4375,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:22.552"} +{"sensors":[{"euler":{"heading":281.5625,"pitch":132.4375,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":148.375,"pitch":-156.1875,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":108.4375,"pitch":43.4375,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":333.25,"pitch":-137.125,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":134.0,"pitch":95.6875,"roll":44.5625},"location":"Right Knee"},{"euler":{"heading":62.0625,"pitch":-135.0,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:22.653"} +{"sensors":[{"euler":{"heading":274.875,"pitch":138.5625,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":-172.25,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":104.5,"pitch":34.0625,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":332.1875,"pitch":-138.4375,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":137.0,"pitch":97.4375,"roll":48.875},"location":"Right Knee"},{"euler":{"heading":55.0625,"pitch":-128.125,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:22.754"} +{"sensors":[{"euler":{"heading":176.875,"pitch":155.625,"roll":36.8125},"location":"Left Knee"},{"euler":{"heading":99.6875,"pitch":130.75,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":101.0625,"pitch":27.4375,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":331.6875,"pitch":-139.75,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":141.0,"pitch":100.1875,"roll":53.0625},"location":"Right Knee"},{"euler":{"heading":51.0625,"pitch":-126.125,"roll":45.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:22.854"} +{"sensors":[{"euler":{"heading":192.6875,"pitch":173.4375,"roll":44.3125},"location":"Left Knee"},{"euler":{"heading":76.1875,"pitch":110.3125,"roll":42.0625},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":19.3125,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":331.0625,"pitch":-143.5,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":150.75,"pitch":106.0,"roll":61.5},"location":"Right Knee"},{"euler":{"heading":39.125,"pitch":-128.375,"roll":44.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:22.954"} +{"sensors":[{"euler":{"heading":288.9375,"pitch":179.75,"roll":45.1875},"location":"Left Knee"},{"euler":{"heading":71.0625,"pitch":106.6875,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":91.75,"pitch":4.1875,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":331.3125,"pitch":-148.625,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":160.6875,"pitch":118.875,"roll":68.3125},"location":"Right Knee"},{"euler":{"heading":41.6875,"pitch":-132.5625,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:23.55"} +{"sensors":[{"euler":{"heading":309.625,"pitch":169.875,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":86.4375,"pitch":112.625,"roll":45.9375},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":-21.625,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":332.375,"pitch":-152.625,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":174.875,"pitch":150.3125,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":60.625,"pitch":-134.25,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:23.157"} +{"sensors":[{"euler":{"heading":319.625,"pitch":161.6875,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":94.6875,"pitch":113.6875,"roll":51.4375},"location":"Left Ankle"},{"euler":{"heading":79.125,"pitch":-41.0,"roll":61.0},"location":"Right Ankle"},{"euler":{"heading":342.9375,"pitch":-138.6875,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":182.0,"pitch":166.6875,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":62.625,"pitch":-135.25,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:23.257"} +{"sensors":[{"euler":{"heading":326.125,"pitch":155.75,"roll":46.8125},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":117.3125,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":-17.125,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":351.875,"pitch":-128.875,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":176.875,"pitch":120.0,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":66.0,"pitch":-138.625,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:23.358"} +{"sensors":[{"euler":{"heading":332.8125,"pitch":150.5,"roll":46.125},"location":"Left Knee"},{"euler":{"heading":109.75,"pitch":119.1875,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":31.0,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":355.1875,"pitch":-126.125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":164.5625,"pitch":105.6875,"roll":60.4375},"location":"Right Knee"},{"euler":{"heading":69.1875,"pitch":-143.4375,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:23.459"} +{"sensors":[{"euler":{"heading":249.3125,"pitch":145.3125,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":112.25,"pitch":124.3125,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":125.0625,"pitch":57.1875,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":350.6875,"pitch":-130.0,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":145.3125,"pitch":102.0,"roll":43.625},"location":"Right Knee"},{"euler":{"heading":69.4375,"pitch":-146.8125,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:23.559"} +{"sensors":[{"euler":{"heading":256.375,"pitch":140.625,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":120.125,"pitch":137.1875,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":131.0625,"pitch":61.625,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":344.0,"pitch":-133.25,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":136.9375,"pitch":99.1875,"roll":37.1875},"location":"Right Knee"},{"euler":{"heading":69.0625,"pitch":-148.375,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:23.660"} +{"sensors":[{"euler":{"heading":263.9375,"pitch":136.0,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":126.4375,"pitch":160.875,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":119.5625,"pitch":55.6875,"roll":59.625},"location":"Right Ankle"},{"euler":{"heading":338.4375,"pitch":-135.0,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":138.0,"pitch":96.125,"roll":41.875},"location":"Right Knee"},{"euler":{"heading":70.5625,"pitch":-149.875,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:23.760"} +{"sensors":[{"euler":{"heading":282.875,"pitch":132.0,"roll":23.5625},"location":"Left Knee"},{"euler":{"heading":146.6875,"pitch":-156.875,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":45.875,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":336.8125,"pitch":-135.6875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":140.3125,"pitch":96.125,"roll":47.6875},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-134.625,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:23.861"} +{"sensors":[{"euler":{"heading":277.0,"pitch":137.8125,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":137.625,"pitch":-169.75,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":109.0625,"pitch":37.125,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":335.875,"pitch":-136.75,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":142.9375,"pitch":99.5625,"roll":52.3125},"location":"Right Knee"},{"euler":{"heading":53.875,"pitch":-125.875,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:23.962"} +{"sensors":[{"euler":{"heading":175.0625,"pitch":153.0,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":107.5,"pitch":134.8125,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":107.25,"pitch":33.6875,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":334.375,"pitch":-138.0625,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":146.625,"pitch":102.8125,"roll":56.1875},"location":"Right Knee"},{"euler":{"heading":50.3125,"pitch":-124.8125,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:24.63"} +{"sensors":[{"euler":{"heading":302.375,"pitch":169.5625,"roll":45.4375},"location":"Left Knee"},{"euler":{"heading":80.625,"pitch":110.8125,"roll":46.3125},"location":"Left Ankle"},{"euler":{"heading":103.75,"pitch":27.4375,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":334.0625,"pitch":-140.875,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":151.3125,"pitch":106.0,"roll":60.9375},"location":"Right Knee"},{"euler":{"heading":39.875,"pitch":-125.375,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:24.164"} +{"sensors":[{"euler":{"heading":293.5625,"pitch":178.4375,"roll":45.625},"location":"Left Knee"},{"euler":{"heading":71.875,"pitch":105.5625,"roll":36.8125},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":13.8125,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":334.1875,"pitch":-145.0625,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":158.375,"pitch":115.9375,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":43.0,"pitch":-130.5625,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:24.264"} +{"sensors":[{"euler":{"heading":307.6875,"pitch":171.0625,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":87.75,"pitch":113.625,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":-6.0625,"roll":64.375},"location":"Right Ankle"},{"euler":{"heading":334.375,"pitch":-152.75,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":170.5,"pitch":136.0625,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":63.8125,"pitch":-133.1875,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:24.365"} +{"sensors":[{"euler":{"heading":321.9375,"pitch":161.5,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":114.375,"roll":50.625},"location":"Left Ankle"},{"euler":{"heading":81.1875,"pitch":-32.875,"roll":61.4375},"location":"Right Ankle"},{"euler":{"heading":343.1875,"pitch":-143.25,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":179.875,"pitch":155.25,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":63.875,"pitch":-133.75,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:24.466"} +{"sensors":[{"euler":{"heading":326.875,"pitch":155.75,"roll":46.125},"location":"Left Knee"},{"euler":{"heading":99.0625,"pitch":115.5625,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":88.6875,"pitch":-22.0625,"roll":65.8125},"location":"Right Ankle"},{"euler":{"heading":351.875,"pitch":-131.1875,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":179.4375,"pitch":128.75,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":66.625,"pitch":-137.8125,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:24.566"} +{"sensors":[{"euler":{"heading":331.125,"pitch":150.75,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":110.875,"pitch":120.75,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":107.9375,"pitch":23.375,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":356.0,"pitch":-126.8125,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":167.6875,"pitch":108.0625,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":68.9375,"pitch":-142.0625,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:24.668"} +{"sensors":[{"euler":{"heading":247.625,"pitch":145.8125,"roll":44.5625},"location":"Left Knee"},{"euler":{"heading":111.375,"pitch":123.375,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":123.125,"pitch":55.875,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":353.6875,"pitch":-128.625,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":147.5625,"pitch":101.25,"roll":45.75},"location":"Right Knee"},{"euler":{"heading":70.375,"pitch":-146.1875,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:24.769"} +{"sensors":[{"euler":{"heading":254.0625,"pitch":141.125,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":118.625,"pitch":132.25,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":133.625,"pitch":59.9375,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":346.0,"pitch":-133.3125,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":136.75,"pitch":102.625,"roll":36.0625},"location":"Right Knee"},{"euler":{"heading":70.1875,"pitch":-148.625,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:24.869"} +{"sensors":[{"euler":{"heading":260.9375,"pitch":136.875,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":124.875,"pitch":150.0625,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":125.125,"pitch":59.0625,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":339.75,"pitch":-133.9375,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":136.625,"pitch":97.375,"roll":39.625},"location":"Right Knee"},{"euler":{"heading":71.3125,"pitch":-152.75,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:24.971"} +{"sensors":[{"euler":{"heading":272.375,"pitch":133.25,"roll":27.5},"location":"Left Knee"},{"euler":{"heading":138.75,"pitch":-166.625,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":115.1875,"pitch":49.9375,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":338.875,"pitch":-134.3125,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":138.125,"pitch":95.3125,"roll":45.125},"location":"Right Knee"},{"euler":{"heading":68.125,"pitch":-145.25,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:25.71"} +{"sensors":[{"euler":{"heading":283.75,"pitch":133.375,"roll":21.9375},"location":"Left Knee"},{"euler":{"heading":147.1875,"pitch":-152.4375,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":110.25,"pitch":41.25,"roll":62.5},"location":"Right Ankle"},{"euler":{"heading":334.4375,"pitch":-136.5,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":139.0625,"pitch":97.0625,"roll":49.625},"location":"Right Knee"},{"euler":{"heading":59.4375,"pitch":-129.375,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:25.172"} +{"sensors":[{"euler":{"heading":264.3125,"pitch":144.6875,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":129.9375,"pitch":177.3125,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":106.625,"pitch":35.125,"roll":61.5625},"location":"Right Ankle"},{"euler":{"heading":334.875,"pitch":-136.8125,"roll":79.9375},"location":"Right Hip"},{"euler":{"heading":142.25,"pitch":99.0625,"roll":53.4375},"location":"Right Knee"},{"euler":{"heading":52.3125,"pitch":-125.25,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:25.273"} +{"sensors":[{"euler":{"heading":222.3125,"pitch":163.5625,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":89.5625,"pitch":117.3125,"roll":52.75},"location":"Left Ankle"},{"euler":{"heading":104.8125,"pitch":35.4375,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":333.3125,"pitch":-138.625,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":144.6875,"pitch":99.75,"roll":57.375},"location":"Right Knee"},{"euler":{"heading":50.5,"pitch":-124.8125,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:25.374"} +{"sensors":[{"euler":{"heading":294.1875,"pitch":176.9375,"roll":45.625},"location":"Left Knee"},{"euler":{"heading":69.75,"pitch":105.1875,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":24.9375,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":333.5,"pitch":-139.875,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":149.6875,"pitch":104.25,"roll":62.5},"location":"Right Knee"},{"euler":{"heading":55.3125,"pitch":-130.0,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:25.475"} +{"sensors":[{"euler":{"heading":315.9375,"pitch":169.0,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":80.1875,"pitch":112.625,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":5.1875,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":334.75,"pitch":-145.3125,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":160.5625,"pitch":117.25,"roll":69.3125},"location":"Right Knee"},{"euler":{"heading":61.625,"pitch":-132.3125,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:25.575"} +{"sensors":[{"euler":{"heading":323.0,"pitch":161.0,"roll":45.1875},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":115.6875,"roll":49.125},"location":"Left Ankle"},{"euler":{"heading":83.0,"pitch":-23.625,"roll":63.125},"location":"Right Ankle"},{"euler":{"heading":340.625,"pitch":-142.375,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":175.875,"pitch":148.4375,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-132.1875,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:25.677"} +{"sensors":[{"euler":{"heading":332.0,"pitch":154.1875,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":101.625,"pitch":116.5,"roll":54.0625},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":-35.3125,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":349.875,"pitch":-131.0,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":181.75,"pitch":130.4375,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":65.4375,"pitch":-136.0625,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:25.778"} +{"sensors":[{"euler":{"heading":248.0,"pitch":148.875,"roll":44.875},"location":"Left Knee"},{"euler":{"heading":110.9375,"pitch":121.75,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":100.625,"pitch":3.8125,"roll":68.75},"location":"Right Ankle"},{"euler":{"heading":356.4375,"pitch":-126.6875,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":168.625,"pitch":113.4375,"roll":65.875},"location":"Right Knee"},{"euler":{"heading":68.8125,"pitch":-141.3125,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:25.878"} +{"sensors":[{"euler":{"heading":254.4375,"pitch":143.875,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":114.6875,"pitch":124.9375,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":117.8125,"pitch":49.5625,"roll":64.375},"location":"Right Ankle"},{"euler":{"heading":353.25,"pitch":-129.3125,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":149.0625,"pitch":101.4375,"roll":48.125},"location":"Right Knee"},{"euler":{"heading":71.5,"pitch":-147.25,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:25.979"} +{"sensors":[{"euler":{"heading":261.8125,"pitch":138.8125,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":120.125,"pitch":133.9375,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":130.0,"pitch":61.8125,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":345.3125,"pitch":-134.0,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":136.9375,"pitch":99.5625,"roll":37.1875},"location":"Right Knee"},{"euler":{"heading":72.4375,"pitch":-150.0625,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:26.80"} +{"sensors":[{"euler":{"heading":269.0,"pitch":134.75,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":126.3125,"pitch":151.75,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":122.75,"pitch":58.3125,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":338.5,"pitch":-135.875,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":136.0,"pitch":80.1875,"roll":39.875},"location":"Right Knee"},{"euler":{"heading":74.875,"pitch":-154.25,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:26.181"} +{"sensors":[{"euler":{"heading":280.8125,"pitch":132.4375,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":140.75,"pitch":-168.875,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":115.4375,"pitch":50.375,"roll":61.1875},"location":"Right Ankle"},{"euler":{"heading":339.0,"pitch":-135.9375,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":138.75,"pitch":97.25,"roll":45.4375},"location":"Right Knee"},{"euler":{"heading":65.9375,"pitch":-143.1875,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:26.281"} +{"sensors":[{"euler":{"heading":288.1875,"pitch":133.3125,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":144.625,"pitch":-160.125,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":111.4375,"pitch":44.4375,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":335.0625,"pitch":-137.0,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":139.8125,"pitch":96.3125,"roll":49.5},"location":"Right Knee"},{"euler":{"heading":58.3125,"pitch":-129.25,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:26.382"} +{"sensors":[{"euler":{"heading":263.1875,"pitch":143.625,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":169.25,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":38.75,"roll":60.625},"location":"Right Ankle"},{"euler":{"heading":334.0625,"pitch":-137.125,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":141.125,"pitch":97.3125,"roll":53.375},"location":"Right Knee"},{"euler":{"heading":51.9375,"pitch":-126.1875,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:26.482"} +{"sensors":[{"euler":{"heading":224.0625,"pitch":161.0625,"roll":43.0625},"location":"Left Knee"},{"euler":{"heading":91.0625,"pitch":116.5625,"roll":52.25},"location":"Left Ankle"},{"euler":{"heading":103.375,"pitch":33.6875,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":334.1875,"pitch":-139.625,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":145.3125,"pitch":100.625,"roll":57.8125},"location":"Right Knee"},{"euler":{"heading":39.9375,"pitch":-124.4375,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:26.583"} +{"sensors":[{"euler":{"heading":297.9375,"pitch":175.3125,"roll":45.6875},"location":"Left Knee"},{"euler":{"heading":70.6875,"pitch":106.375,"roll":36.1875},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":22.9375,"roll":63.5},"location":"Right Ankle"},{"euler":{"heading":334.0,"pitch":-142.125,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":151.0625,"pitch":106.5,"roll":63.0},"location":"Right Knee"},{"euler":{"heading":58.8125,"pitch":-129.75,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:26.684"} +{"sensors":[{"euler":{"heading":307.5,"pitch":171.5625,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":79.625,"pitch":111.6875,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":7.8125,"roll":64.5625},"location":"Right Ankle"},{"euler":{"heading":333.625,"pitch":-148.5625,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":162.0,"pitch":119.25,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":63.6875,"pitch":-132.4375,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:26.785"} +{"sensors":[{"euler":{"heading":322.1875,"pitch":161.5625,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":92.5,"pitch":115.0625,"roll":47.875},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":-30.0,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":340.5,"pitch":-141.75,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":177.1875,"pitch":148.25,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-132.875,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:26.886"} +{"sensors":[{"euler":{"heading":329.4375,"pitch":155.25,"roll":45.4375},"location":"Left Knee"},{"euler":{"heading":96.8125,"pitch":115.8125,"roll":51.625},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-38.875,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":351.25,"pitch":-130.125,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":184.375,"pitch":155.8125,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":66.8125,"pitch":-137.6875,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:26.987"} +{"sensors":[{"euler":{"heading":334.875,"pitch":149.8125,"roll":46.125},"location":"Left Knee"},{"euler":{"heading":107.875,"pitch":118.6875,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":6.0625,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":356.875,"pitch":-124.875,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":170.125,"pitch":113.1875,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":70.5,"pitch":-142.5625,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:27.88"} +{"sensors":[{"euler":{"heading":253.125,"pitch":143.9375,"roll":44.5},"location":"Left Knee"},{"euler":{"heading":112.8125,"pitch":121.8125,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":115.0,"pitch":51.875,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":353.6875,"pitch":-126.0625,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":150.875,"pitch":99.1875,"roll":48.125},"location":"Right Knee"},{"euler":{"heading":72.6875,"pitch":-146.0,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:27.190"} +{"sensors":[{"euler":{"heading":259.5625,"pitch":138.8125,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":119.0,"pitch":128.9375,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":131.4375,"pitch":62.375,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":346.9375,"pitch":-133.25,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":137.125,"pitch":102.125,"roll":36.8125},"location":"Right Knee"},{"euler":{"heading":74.375,"pitch":-150.4375,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:27.290"} +{"sensors":[{"euler":{"heading":266.4375,"pitch":134.3125,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":142.5,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":126.1875,"pitch":61.625,"roll":55.625},"location":"Right Ankle"},{"euler":{"heading":339.625,"pitch":-135.125,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":136.0,"pitch":95.8125,"roll":37.8125},"location":"Right Knee"},{"euler":{"heading":76.0625,"pitch":-154.6875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:27.391"} +{"sensors":[{"euler":{"heading":275.375,"pitch":131.3125,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":134.25,"pitch":-179.5625,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":114.8125,"pitch":52.875,"roll":61.5},"location":"Right Ankle"},{"euler":{"heading":338.6875,"pitch":-135.1875,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":137.0625,"pitch":94.125,"roll":43.375},"location":"Right Knee"},{"euler":{"heading":71.1875,"pitch":-148.5625,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:27.491"} +{"sensors":[{"euler":{"heading":285.8125,"pitch":130.5,"roll":21.5625},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":-153.3125,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":108.9375,"pitch":46.625,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":334.0625,"pitch":-136.9375,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":137.875,"pitch":94.4375,"roll":63.625},"location":"Right Knee"},{"euler":{"heading":60.5,"pitch":-131.6875,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:27.592"} +{"sensors":[{"euler":{"heading":274.25,"pitch":138.3125,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":128.25,"pitch":175.5625,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":105.375,"pitch":41.9375,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":333.625,"pitch":-136.875,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":139.625,"pitch":94.5,"roll":51.625},"location":"Right Knee"},{"euler":{"heading":54.3125,"pitch":-125.875,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:27.693"} +{"sensors":[{"euler":{"heading":233.5,"pitch":155.4375,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":91.8125,"pitch":119.6875,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":101.625,"pitch":37.75,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":332.75,"pitch":-137.8125,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":141.4375,"pitch":95.875,"roll":55.4375},"location":"Right Knee"},{"euler":{"heading":51.4375,"pitch":-123.875,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:27.794"} +{"sensors":[{"euler":{"heading":296.375,"pitch":173.5625,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":68.9375,"pitch":106.0,"roll":36.1875},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":29.5625,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":332.5,"pitch":-140.5625,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":147.125,"pitch":99.4375,"roll":60.8125},"location":"Right Knee"},{"euler":{"heading":55.6875,"pitch":-127.75,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:27.895"} +{"sensors":[{"euler":{"heading":303.625,"pitch":173.0,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":74.625,"pitch":109.5625,"roll":37.1875},"location":"Left Ankle"},{"euler":{"heading":92.875,"pitch":10.4375,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":332.875,"pitch":-147.6875,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":157.8125,"pitch":112.25,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":65.3125,"pitch":-133.0,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:27.996"} +{"sensors":[{"euler":{"heading":317.6875,"pitch":163.75,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":87.75,"pitch":113.625,"roll":46.1875},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":-20.8125,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":339.875,"pitch":-145.0,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":174.25,"pitch":138.75,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":64.1875,"pitch":-133.25,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:28.97"} +{"sensors":[{"euler":{"heading":325.1875,"pitch":157.1875,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":91.75,"pitch":114.5,"roll":49.75},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":-36.9375,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":348.8125,"pitch":-132.625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":181.25,"pitch":130.0625,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":67.6875,"pitch":-137.125,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:28.198"} +{"sensors":[{"euler":{"heading":330.5625,"pitch":152.0,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":98.8125,"pitch":118.0625,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":98.5625,"pitch":6.5625,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-127.5625,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":167.375,"pitch":112.9375,"roll":65.375},"location":"Right Knee"},{"euler":{"heading":71.6875,"pitch":-142.25,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:28.298"} +{"sensors":[{"euler":{"heading":245.4375,"pitch":147.3125,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":103.4375,"pitch":120.6875,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":118.8125,"pitch":47.3125,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":355.9375,"pitch":-126.875,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":152.0625,"pitch":104.0,"roll":49.0},"location":"Right Knee"},{"euler":{"heading":73.375,"pitch":-146.625,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:28.399"} +{"sensors":[{"euler":{"heading":252.9375,"pitch":142.125,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":125.9375,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":130.9375,"pitch":59.5625,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":352.25,"pitch":-130.5625,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":136.8125,"pitch":104.125,"roll":36.125},"location":"Right Knee"},{"euler":{"heading":74.125,"pitch":-149.3125,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:28.500"} +{"sensors":[{"euler":{"heading":259.375,"pitch":137.875,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":117.3125,"pitch":136.625,"roll":66.75},"location":"Left Ankle"},{"euler":{"heading":132.625,"pitch":60.25,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":344.4375,"pitch":-133.125,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":133.6875,"pitch":100.75,"roll":34.8125},"location":"Right Knee"},{"euler":{"heading":75.25,"pitch":-153.5,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:28.601"} +{"sensors":[{"euler":{"heading":268.125,"pitch":133.1875,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":124.375,"pitch":164.5,"roll":68.5},"location":"Left Ankle"},{"euler":{"heading":119.8125,"pitch":52.875,"roll":59.625},"location":"Right Ankle"},{"euler":{"heading":339.5625,"pitch":-134.25,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":135.9375,"pitch":97.5625,"roll":40.75},"location":"Right Knee"},{"euler":{"heading":75.6875,"pitch":-153.4375,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:28.702"} +{"sensors":[{"euler":{"heading":286.0,"pitch":130.0,"roll":22.4375},"location":"Left Knee"},{"euler":{"heading":142.5625,"pitch":-160.25,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":114.25,"pitch":46.8125,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":336.3125,"pitch":-134.875,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":136.5,"pitch":96.6875,"roll":45.1875},"location":"Right Knee"},{"euler":{"heading":62.3125,"pitch":-135.5625,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:28.803"} +{"sensors":[{"euler":{"heading":279.6875,"pitch":137.875,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":138.8125,"pitch":-166.5625,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":109.5,"pitch":38.875,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":335.875,"pitch":-134.75,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":138.625,"pitch":97.75,"roll":49.3125},"location":"Right Knee"},{"euler":{"heading":56.0,"pitch":-127.75,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:28.904"} +{"sensors":[{"euler":{"heading":237.8125,"pitch":153.75,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":98.5,"pitch":124.5,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":106.625,"pitch":34.3125,"roll":60.8125},"location":"Right Ankle"},{"euler":{"heading":335.3125,"pitch":-135.5625,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":140.875,"pitch":100.3125,"roll":53.125},"location":"Right Knee"},{"euler":{"heading":54.0,"pitch":-124.875,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:29.5"} +{"sensors":[{"euler":{"heading":301.25,"pitch":171.25,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":73.3125,"pitch":108.5,"roll":38.0},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":30.375,"roll":63.75},"location":"Right Ankle"},{"euler":{"heading":335.375,"pitch":-138.875,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":146.375,"pitch":104.5625,"roll":58.0},"location":"Right Knee"},{"euler":{"heading":56.875,"pitch":-126.875,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:29.105"} +{"sensors":[{"euler":{"heading":299.125,"pitch":175.8125,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":71.6875,"pitch":107.75,"roll":34.25},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":15.6875,"roll":63.125},"location":"Right Ankle"},{"euler":{"heading":335.3125,"pitch":-144.1875,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":114.25,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":63.6875,"pitch":-131.125,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:29.206"} +{"sensors":[{"euler":{"heading":316.875,"pitch":166.5625,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":89.25,"pitch":115.125,"roll":45.1875},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":-5.25,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":336.0625,"pitch":-150.625,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":171.9375,"pitch":142.25,"roll":70.0},"location":"Right Knee"},{"euler":{"heading":68.5,"pitch":-133.4375,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:29.307"} +{"sensors":[{"euler":{"heading":323.9375,"pitch":158.875,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":95.5,"pitch":114.625,"roll":49.5},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-37.4375,"roll":61.0},"location":"Right Ankle"},{"euler":{"heading":346.3125,"pitch":-138.75,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":180.4375,"pitch":156.125,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":69.625,"pitch":-135.875,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:29.408"} +{"sensors":[{"euler":{"heading":333.3125,"pitch":152.0625,"roll":46.8125},"location":"Left Knee"},{"euler":{"heading":102.0625,"pitch":116.6875,"roll":53.625},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":-13.6875,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":355.375,"pitch":-129.625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":174.75,"pitch":126.4375,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":73.8125,"pitch":-140.9375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:29.509"} +{"sensors":[{"euler":{"heading":339.6875,"pitch":146.375,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":110.375,"pitch":121.5625,"roll":58.9375},"location":"Left Ankle"},{"euler":{"heading":114.625,"pitch":36.75,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":356.5,"pitch":-126.3125,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":160.4375,"pitch":108.8125,"roll":55.6875},"location":"Right Knee"},{"euler":{"heading":75.5625,"pitch":-144.625,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:29.610"} +{"sensors":[{"euler":{"heading":256.5,"pitch":141.375,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":112.75,"pitch":126.0625,"roll":61.1875},"location":"Left Ankle"},{"euler":{"heading":128.9375,"pitch":58.25,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":352.1875,"pitch":-131.3125,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":139.5,"pitch":103.3125,"roll":38.4375},"location":"Right Knee"},{"euler":{"heading":76.75,"pitch":-148.625,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:29.710"} +{"sensors":[{"euler":{"heading":263.1875,"pitch":136.8125,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":120.3125,"pitch":135.9375,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":133.875,"pitch":61.5,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":342.875,"pitch":-135.75,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":135.6875,"pitch":101.0625,"roll":35.5625},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-152.75,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:29.811"} +{"sensors":[{"euler":{"heading":271.125,"pitch":132.6875,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":125.375,"pitch":158.1875,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":120.125,"pitch":56.0625,"roll":59.125},"location":"Right Ankle"},{"euler":{"heading":338.5625,"pitch":-136.25,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":136.8125,"pitch":96.9375,"roll":40.875},"location":"Right Knee"},{"euler":{"heading":78.5625,"pitch":-153.875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:29.911"} +{"sensors":[{"euler":{"heading":286.375,"pitch":130.5,"roll":23.0},"location":"Left Knee"},{"euler":{"heading":147.3125,"pitch":-159.4375,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":115.0625,"pitch":49.8125,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":336.125,"pitch":-137.125,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":137.6875,"pitch":96.1875,"roll":45.4375},"location":"Right Knee"},{"euler":{"heading":66.5,"pitch":-138.625,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:30.12"} +{"sensors":[{"euler":{"heading":282.625,"pitch":135.9375,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":141.9375,"pitch":-163.6875,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":112.25,"pitch":46.0625,"roll":59.6875},"location":"Right Ankle"},{"euler":{"heading":334.0625,"pitch":-138.5,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":137.8125,"pitch":96.6875,"roll":49.0},"location":"Right Knee"},{"euler":{"heading":59.875,"pitch":-128.6875,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:30.113"} +{"sensors":[{"euler":{"heading":249.125,"pitch":151.3125,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":102.625,"pitch":130.875,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":107.0,"pitch":42.4375,"roll":61.4375},"location":"Right Ankle"},{"euler":{"heading":333.5,"pitch":-137.875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":139.375,"pitch":96.125,"roll":52.8125},"location":"Right Knee"},{"euler":{"heading":55.0,"pitch":-125.5625,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:30.214"} +{"sensors":[{"euler":{"heading":304.25,"pitch":169.6875,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":76.625,"pitch":111.4375,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":34.9375,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":333.5,"pitch":-140.5,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":144.125,"pitch":98.875,"roll":58.0},"location":"Right Knee"},{"euler":{"heading":55.0625,"pitch":-126.4375,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:30.315"} +{"sensors":[{"euler":{"heading":298.375,"pitch":177.1875,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":69.125,"pitch":107.5625,"roll":32.6875},"location":"Left Ankle"},{"euler":{"heading":95.75,"pitch":19.9375,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":334.0625,"pitch":-143.5,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":152.0625,"pitch":106.875,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":63.4375,"pitch":-131.75,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:30.416"} +{"sensors":[{"euler":{"heading":315.75,"pitch":167.9375,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":86.8125,"pitch":115.1875,"roll":43.125},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":-8.4375,"roll":64.6875},"location":"Right Ankle"},{"euler":{"heading":334.875,"pitch":-150.3125,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":165.8125,"pitch":129.5,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":67.25,"pitch":-133.25,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:30.517"} +{"sensors":[{"euler":{"heading":324.5625,"pitch":159.5625,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":115.8125,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":80.75,"pitch":-36.5625,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-141.5,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":151.8125,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":67.625,"pitch":-133.9375,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:30.617"} +{"sensors":[{"euler":{"heading":330.4375,"pitch":153.8125,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":116.875,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":-18.8125,"roll":67.3125},"location":"Right Ankle"},{"euler":{"heading":352.375,"pitch":-131.125,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":174.1875,"pitch":122.6875,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":71.0,"pitch":-139.125,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:30.718"} +{"sensors":[{"euler":{"heading":335.875,"pitch":148.9375,"roll":45.5},"location":"Left Knee"},{"euler":{"heading":105.125,"pitch":121.1875,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":111.3125,"pitch":32.0,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":355.1875,"pitch":-127.5625,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":106.4375,"roll":57.1875},"location":"Right Knee"},{"euler":{"heading":72.8125,"pitch":-142.6875,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:30.818"} +{"sensors":[{"euler":{"heading":251.3125,"pitch":144.4375,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":106.625,"pitch":123.4375,"roll":59.4375},"location":"Left Ankle"},{"euler":{"heading":128.125,"pitch":58.25,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":352.375,"pitch":-130.4375,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":140.375,"pitch":100.9375,"roll":40.0},"location":"Right Knee"},{"euler":{"heading":74.3125,"pitch":-146.4375,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:30.919"} +{"sensors":[{"euler":{"heading":258.0,"pitch":139.75,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":114.0,"pitch":129.5625,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":135.6875,"pitch":60.0,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":345.75,"pitch":-134.375,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":134.5,"pitch":103.625,"roll":33.8125},"location":"Right Knee"},{"euler":{"heading":76.8125,"pitch":-151.6875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:31.20"} +{"sensors":[{"euler":{"heading":264.8125,"pitch":135.4375,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":117.625,"pitch":145.0,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":126.4375,"pitch":58.375,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":341.5,"pitch":-134.875,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":134.0625,"pitch":99.3125,"roll":37.5},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-157.4375,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:31.121"} +{"sensors":[{"euler":{"heading":280.9375,"pitch":129.75,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":140.5625,"pitch":-169.625,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":120.125,"pitch":52.3125,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":341.25,"pitch":-135.6875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":136.5,"pitch":98.5,"roll":42.6875},"location":"Right Knee"},{"euler":{"heading":73.4375,"pitch":-144.1875,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:31.222"} +{"sensors":[{"euler":{"heading":287.375,"pitch":132.75,"roll":22.875},"location":"Left Knee"},{"euler":{"heading":141.5,"pitch":-165.9375,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":114.5,"pitch":45.9375,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":335.5625,"pitch":-137.1875,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":136.25,"pitch":96.8125,"roll":46.5625},"location":"Right Knee"},{"euler":{"heading":63.1875,"pitch":-128.1875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:31.323"} +{"sensors":[{"euler":{"heading":259.6875,"pitch":147.0625,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":114.9375,"pitch":147.875,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":108.9375,"pitch":40.9375,"roll":58.625},"location":"Right Ankle"},{"euler":{"heading":335.3125,"pitch":-135.8125,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":137.875,"pitch":97.0625,"roll":50.375},"location":"Right Knee"},{"euler":{"heading":56.5625,"pitch":-124.8125,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:31.424"} +{"sensors":[{"euler":{"heading":306.125,"pitch":166.5,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":78.0625,"pitch":110.6875,"roll":43.5625},"location":"Left Ankle"},{"euler":{"heading":105.75,"pitch":36.3125,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":334.3125,"pitch":-138.75,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":141.75,"pitch":99.625,"roll":54.875},"location":"Right Knee"},{"euler":{"heading":55.375,"pitch":-124.625,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:31.525"} +{"sensors":[{"euler":{"heading":300.5,"pitch":176.1875,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":67.1875,"pitch":105.9375,"roll":32.8125},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":26.375,"roll":62.5625},"location":"Right Ankle"},{"euler":{"heading":335.25,"pitch":-141.25,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":149.1875,"pitch":106.875,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":62.5,"pitch":-130.0625,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:31.626"} +{"sensors":[{"euler":{"heading":313.75,"pitch":169.0,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":83.0,"pitch":114.0,"roll":40.75},"location":"Left Ankle"},{"euler":{"heading":96.375,"pitch":11.125,"roll":64.125},"location":"Right Ankle"},{"euler":{"heading":336.125,"pitch":-148.3125,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":122.625,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":68.5,"pitch":-133.0,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:31.727"} +{"sensors":[{"euler":{"heading":323.0,"pitch":161.4375,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":90.375,"pitch":113.6875,"roll":47.3125},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":-27.4375,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":345.125,"pitch":-139.5625,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":175.125,"pitch":143.5625,"roll":75.125},"location":"Right Knee"},{"euler":{"heading":66.9375,"pitch":-133.75,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:31.828"} +{"sensors":[{"euler":{"heading":329.0625,"pitch":155.625,"roll":46.4375},"location":"Left Knee"},{"euler":{"heading":94.8125,"pitch":113.4375,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":86.5,"pitch":-31.4375,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":354.5625,"pitch":-129.375,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":131.1875,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":72.0625,"pitch":-139.125,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:31.929"} +{"sensors":[{"euler":{"heading":336.5,"pitch":149.625,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":102.125,"pitch":115.5625,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":107.5625,"pitch":26.1875,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":358.625,"pitch":-125.125,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":160.4375,"pitch":108.0,"roll":58.4375},"location":"Right Knee"},{"euler":{"heading":76.0625,"pitch":-144.75,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:32.30"} +{"sensors":[{"euler":{"heading":252.5625,"pitch":144.625,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":103.6875,"pitch":118.8125,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":128.1875,"pitch":57.0,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":354.375,"pitch":-127.9375,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":143.6875,"pitch":101.1875,"roll":41.875},"location":"Right Knee"},{"euler":{"heading":77.6875,"pitch":-149.0625,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:32.131"} +{"sensors":[{"euler":{"heading":260.0,"pitch":139.9375,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":110.1875,"pitch":125.75,"roll":61.125},"location":"Left Ankle"},{"euler":{"heading":135.6875,"pitch":60.6875,"roll":51.0},"location":"Right Ankle"},{"euler":{"heading":347.4375,"pitch":-133.875,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":133.6875,"pitch":103.6875,"roll":32.8125},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-152.3125,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:32.232"} +{"sensors":[{"euler":{"heading":266.5,"pitch":135.9375,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":113.375,"pitch":137.9375,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":126.375,"pitch":58.25,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":343.1875,"pitch":-135.0625,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":135.6875,"pitch":99.8125,"roll":37.375},"location":"Right Knee"},{"euler":{"heading":81.75,"pitch":-157.5625,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:32.333"} +{"sensors":[{"euler":{"heading":279.75,"pitch":131.9375,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":130.9375,"pitch":175.9375,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":119.0625,"pitch":50.375,"roll":59.125},"location":"Right Ankle"},{"euler":{"heading":342.375,"pitch":-135.375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":137.5625,"pitch":98.25,"roll":42.75},"location":"Right Knee"},{"euler":{"heading":74.125,"pitch":-147.1875,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:32.434"} +{"sensors":[{"euler":{"heading":286.75,"pitch":133.6875,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":137.625,"pitch":-169.4375,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":113.6875,"pitch":43.9375,"roll":58.625},"location":"Right Ankle"},{"euler":{"heading":336.875,"pitch":-137.0625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":137.8125,"pitch":96.9375,"roll":46.3125},"location":"Right Knee"},{"euler":{"heading":63.0,"pitch":-130.8125,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:32.535"} +{"sensors":[{"euler":{"heading":258.6875,"pitch":145.4375,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":120.125,"pitch":151.1875,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":110.0,"pitch":39.75,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":335.9375,"pitch":-137.5625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":139.25,"pitch":98.125,"roll":49.9375},"location":"Right Knee"},{"euler":{"heading":55.3125,"pitch":-126.5,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:32.636"} +{"sensors":[{"euler":{"heading":222.875,"pitch":163.0,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":82.75,"pitch":113.625,"roll":46.3125},"location":"Left Ankle"},{"euler":{"heading":106.1875,"pitch":35.75,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":335.75,"pitch":-139.625,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":142.1875,"pitch":99.75,"roll":54.0},"location":"Right Knee"},{"euler":{"heading":54.0625,"pitch":-124.5,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:32.737"} +{"sensors":[{"euler":{"heading":298.375,"pitch":176.0625,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":67.375,"pitch":105.75,"roll":33.375},"location":"Left Ankle"},{"euler":{"heading":100.5,"pitch":26.625,"roll":63.5625},"location":"Right Ankle"},{"euler":{"heading":335.3125,"pitch":-142.125,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":147.5625,"pitch":104.0,"roll":59.3125},"location":"Right Knee"},{"euler":{"heading":60.375,"pitch":-129.1875,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:32.837"} +{"sensors":[{"euler":{"heading":313.4375,"pitch":169.125,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":81.8125,"pitch":114.125,"roll":39.8125},"location":"Left Ankle"},{"euler":{"heading":93.9375,"pitch":8.8125,"roll":64.1875},"location":"Right Ankle"},{"euler":{"heading":335.5,"pitch":-147.75,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":114.9375,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":67.8125,"pitch":-132.25,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:32.938"} +{"sensors":[{"euler":{"heading":325.125,"pitch":160.8125,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":93.3125,"pitch":116.25,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":-25.4375,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":341.9375,"pitch":-144.8125,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":173.5625,"pitch":135.125,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":67.3125,"pitch":-132.5625,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:33.39"} +{"sensors":[{"euler":{"heading":334.75,"pitch":153.625,"roll":46.0},"location":"Left Knee"},{"euler":{"heading":100.5625,"pitch":118.0,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":-25.25,"roll":66.5625},"location":"Right Ankle"},{"euler":{"heading":350.875,"pitch":-132.9375,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":177.625,"pitch":132.4375,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":71.625,"pitch":-136.625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:33.139"} +{"sensors":[{"euler":{"heading":341.8125,"pitch":147.75,"roll":45.375},"location":"Left Knee"},{"euler":{"heading":108.6875,"pitch":121.5625,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":108.125,"pitch":17.0,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-127.5625,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":113.5625,"roll":60.125},"location":"Right Knee"},{"euler":{"heading":74.9375,"pitch":-141.0,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:33.240"} +{"sensors":[{"euler":{"heading":256.75,"pitch":142.9375,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":110.5625,"pitch":123.875,"roll":58.875},"location":"Left Ankle"},{"euler":{"heading":120.875,"pitch":50.4375,"roll":62.125},"location":"Right Ankle"},{"euler":{"heading":358.25,"pitch":-129.0625,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":143.9375,"pitch":105.0,"roll":42.625},"location":"Right Knee"},{"euler":{"heading":76.5,"pitch":-146.0,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:33.341"} +{"sensors":[{"euler":{"heading":263.125,"pitch":138.375,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":130.5,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":135.125,"pitch":60.1875,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":351.0,"pitch":-133.0625,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":133.8125,"pitch":102.9375,"roll":33.6875},"location":"Right Knee"},{"euler":{"heading":75.3125,"pitch":-148.75,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:33.443"} +{"sensors":[{"euler":{"heading":270.0625,"pitch":134.0625,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":123.3125,"pitch":145.9375,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":127.1875,"pitch":60.0,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":344.25,"pitch":-134.625,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":134.125,"pitch":97.125,"roll":37.375},"location":"Right Knee"},{"euler":{"heading":74.625,"pitch":-151.9375,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:33.544"} +{"sensors":[{"euler":{"heading":282.25,"pitch":130.6875,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":-175.375,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":116.9375,"pitch":51.75,"roll":58.0625},"location":"Right Ankle"},{"euler":{"heading":342.75,"pitch":-134.3125,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":135.3125,"pitch":95.75,"roll":42.5},"location":"Right Knee"},{"euler":{"heading":72.5,"pitch":-144.375,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:33.645"} +{"sensors":[{"euler":{"heading":293.25,"pitch":130.625,"roll":19.6875},"location":"Left Knee"},{"euler":{"heading":146.625,"pitch":-156.3125,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":112.75,"pitch":46.3125,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":337.625,"pitch":-135.875,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":136.4375,"pitch":95.5625,"roll":46.5625},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-129.125,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:33.746"} +{"sensors":[{"euler":{"heading":273.6875,"pitch":140.625,"roll":26.75},"location":"Left Knee"},{"euler":{"heading":125.375,"pitch":175.125,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":110.4375,"pitch":42.625,"roll":58.625},"location":"Right Ankle"},{"euler":{"heading":336.4375,"pitch":-136.5625,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":137.5,"pitch":97.5,"roll":50.0625},"location":"Right Knee"},{"euler":{"heading":54.5625,"pitch":-125.4375,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:33.847"} +{"sensors":[{"euler":{"heading":231.125,"pitch":158.125,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":88.5,"pitch":116.5625,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":107.8125,"pitch":39.5625,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":335.125,"pitch":-139.0,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":140.75,"pitch":100.1875,"roll":54.125},"location":"Right Knee"},{"euler":{"heading":41.625,"pitch":-123.5,"roll":44.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:33.947"} +{"sensors":[{"euler":{"heading":298.3125,"pitch":174.875,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":66.375,"pitch":106.3125,"roll":33.9375},"location":"Left Ankle"},{"euler":{"heading":103.25,"pitch":31.9375,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":334.5,"pitch":-141.0,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":147.375,"pitch":104.75,"roll":60.375},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-127.1875,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:34.48"} +{"sensors":[{"euler":{"heading":300.75,"pitch":176.125,"roll":45.5},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":109.75,"roll":33.6875},"location":"Left Ankle"},{"euler":{"heading":97.375,"pitch":18.875,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":334.6875,"pitch":-147.5,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":155.9375,"pitch":115.6875,"roll":66.0},"location":"Right Knee"},{"euler":{"heading":79.9375,"pitch":-131.9375,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:34.149"} +{"sensors":[{"euler":{"heading":319.9375,"pitch":165.25,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":88.5625,"pitch":115.0625,"roll":44.6875},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":-6.875,"roll":64.1875},"location":"Right Ankle"},{"euler":{"heading":337.5625,"pitch":-149.5,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":140.3125,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":68.0625,"pitch":-132.8125,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:34.250"} +{"sensors":[{"euler":{"heading":331.0625,"pitch":156.875,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":96.9375,"pitch":116.25,"roll":49.75},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":-30.125,"roll":63.0625},"location":"Right Ankle"},{"euler":{"heading":349.0,"pitch":-135.8125,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":181.125,"pitch":154.25,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":71.6875,"pitch":-135.1875,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:34.351"} +{"sensors":[{"euler":{"heading":334.8125,"pitch":151.3125,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":102.1875,"pitch":118.25,"roll":53.75},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":-4.3125,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-112.8125,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":172.9375,"pitch":120.125,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":73.125,"pitch":-139.875,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:34.452"} +{"sensors":[{"euler":{"heading":251.0625,"pitch":146.125,"roll":44.9375},"location":"Left Knee"},{"euler":{"heading":110.1875,"pitch":122.875,"roll":59.1875},"location":"Left Ankle"},{"euler":{"heading":114.75,"pitch":38.4375,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":0.5,"pitch":-127.25,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":106.5625,"roll":52.0625},"location":"Right Knee"},{"euler":{"heading":75.8125,"pitch":-144.3125,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:34.553"} +{"sensors":[{"euler":{"heading":259.5,"pitch":140.6875,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":114.25,"pitch":127.6875,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":132.0625,"pitch":58.4375,"roll":52.5},"location":"Right Ankle"},{"euler":{"heading":355.3125,"pitch":-130.875,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":137.75,"pitch":103.4375,"roll":36.375},"location":"Right Knee"},{"euler":{"heading":77.0625,"pitch":-148.4375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:34.654"} +{"sensors":[{"euler":{"heading":266.9375,"pitch":135.8125,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":122.3125,"pitch":138.125,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":135.1875,"pitch":59.5625,"roll":49.9375},"location":"Right Ankle"},{"euler":{"heading":347.4375,"pitch":-134.375,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":134.8125,"pitch":102.0,"roll":34.1875},"location":"Right Knee"},{"euler":{"heading":78.8125,"pitch":-152.8125,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:34.755"} +{"sensors":[{"euler":{"heading":274.125,"pitch":132.375,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":126.25,"pitch":160.9375,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":123.875,"pitch":51.0,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":343.875,"pitch":-135.625,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":138.375,"pitch":100.625,"roll":40.8125},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-153.375,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:34.856"} +{"sensors":[{"euler":{"heading":286.3125,"pitch":130.0,"roll":23.1875},"location":"Left Knee"},{"euler":{"heading":145.125,"pitch":-158.5625,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":119.25,"pitch":44.3125,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":341.3125,"pitch":-137.4375,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":141.0625,"pitch":101.75,"roll":46.0},"location":"Right Knee"},{"euler":{"heading":70.875,"pitch":-139.25,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:34.957"} +{"sensors":[{"euler":{"heading":284.8125,"pitch":134.875,"roll":22.9375},"location":"Left Knee"},{"euler":{"heading":143.125,"pitch":-159.375,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":115.375,"pitch":38.5625,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":338.375,"pitch":-139.5625,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":143.25,"pitch":103.3125,"roll":49.875},"location":"Right Knee"},{"euler":{"heading":61.875,"pitch":-128.5,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:35.57"} +{"sensors":[{"euler":{"heading":253.875,"pitch":147.9375,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":106.3125,"pitch":135.625,"roll":62.6875},"location":"Left Ankle"},{"euler":{"heading":110.875,"pitch":33.8125,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":337.0625,"pitch":-140.75,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":144.25,"pitch":104.75,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":57.25,"pitch":-124.125,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:35.158"} +{"sensors":[{"euler":{"heading":308.75,"pitch":166.6875,"roll":45.25},"location":"Left Knee"},{"euler":{"heading":78.4375,"pitch":111.9375,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":108.3125,"pitch":33.1875,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":336.4375,"pitch":-142.375,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":147.4375,"pitch":105.3125,"roll":57.125},"location":"Right Knee"},{"euler":{"heading":56.25,"pitch":-124.125,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:35.258"} +{"sensors":[{"euler":{"heading":296.125,"pitch":178.3125,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":65.75,"pitch":105.0,"roll":31.8125},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":21.8125,"roll":62.9375},"location":"Right Ankle"},{"euler":{"heading":336.0,"pitch":-145.1875,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":153.875,"pitch":110.75,"roll":63.0},"location":"Right Knee"},{"euler":{"heading":61.9375,"pitch":-129.25,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:35.359"} +{"sensors":[{"euler":{"heading":309.6875,"pitch":171.0625,"roll":46.625},"location":"Left Knee"},{"euler":{"heading":83.1875,"pitch":113.1875,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":92.875,"pitch":2.4375,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":335.625,"pitch":-149.3125,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":165.875,"pitch":127.25,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":65.75,"pitch":-131.3125,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:35.460"} +{"sensors":[{"euler":{"heading":318.125,"pitch":162.8125,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":87.4375,"pitch":112.125,"roll":46.5625},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":-31.5,"roll":62.9375},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-138.5,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":144.625,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":64.25,"pitch":-131.5,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:35.560"} +{"sensors":[{"euler":{"heading":324.5625,"pitch":157.0625,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":91.125,"pitch":113.5,"roll":49.5},"location":"Left Ankle"},{"euler":{"heading":91.9375,"pitch":-11.8125,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":354.4375,"pitch":-129.875,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":172.875,"pitch":118.5,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":68.125,"pitch":-136.625,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:35.661"} +{"sensors":[{"euler":{"heading":330.1875,"pitch":151.4375,"roll":45.6875},"location":"Left Knee"},{"euler":{"heading":99.1875,"pitch":117.4375,"roll":54.625},"location":"Left Ankle"},{"euler":{"heading":112.5,"pitch":33.6875,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":358.3125,"pitch":-127.0625,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":106.0625,"roll":57.4375},"location":"Right Knee"},{"euler":{"heading":70.3125,"pitch":-140.75,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:35.761"} +{"sensors":[{"euler":{"heading":246.5625,"pitch":146.3125,"roll":43.6875},"location":"Left Knee"},{"euler":{"heading":101.375,"pitch":119.6875,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":130.0,"pitch":56.0625,"roll":50.4375},"location":"Right Ankle"},{"euler":{"heading":356.4375,"pitch":-130.5,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":142.125,"pitch":102.75,"roll":41.0},"location":"Right Knee"},{"euler":{"heading":72.25,"pitch":-144.9375,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:35.862"} +{"sensors":[{"euler":{"heading":254.375,"pitch":141.1875,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":107.875,"pitch":124.875,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":137.75,"pitch":59.25,"roll":47.6875},"location":"Right Ankle"},{"euler":{"heading":348.875,"pitch":-133.6875,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":133.125,"pitch":103.5,"roll":32.875},"location":"Right Knee"},{"euler":{"heading":74.5625,"pitch":-149.5,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:35.963"} +{"sensors":[{"euler":{"heading":261.0,"pitch":137.25,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":113.125,"pitch":136.25,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":129.375,"pitch":57.9375,"roll":51.375},"location":"Right Ankle"},{"euler":{"heading":342.5,"pitch":-134.0625,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":132.8125,"pitch":99.6875,"roll":35.875},"location":"Right Knee"},{"euler":{"heading":76.4375,"pitch":-155.0625,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:36.63"} +{"sensors":[{"euler":{"heading":274.625,"pitch":133.3125,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":127.4375,"pitch":189.375,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":118.5,"pitch":51.9375,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":341.6875,"pitch":-133.75,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":134.875,"pitch":95.6875,"roll":41.3125},"location":"Right Knee"},{"euler":{"heading":75.0,"pitch":-149.625,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:36.164"} +{"sensors":[{"euler":{"heading":286.6875,"pitch":132.1875,"roll":21.3125},"location":"Left Knee"},{"euler":{"heading":142.4375,"pitch":-159.5625,"roll":64.625},"location":"Left Ankle"},{"euler":{"heading":114.5625,"pitch":46.3125,"roll":55.75},"location":"Right Ankle"},{"euler":{"heading":335.1875,"pitch":-135.625,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":134.1875,"pitch":96.375,"roll":45.1875},"location":"Right Knee"},{"euler":{"heading":63.375,"pitch":-132.375,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:36.265"} +{"sensors":[{"euler":{"heading":273.125,"pitch":140.875,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":128.75,"pitch":172.5625,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":112.6875,"pitch":42.75,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":336.0625,"pitch":-135.875,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":137.5,"pitch":98.9375,"roll":49.3125},"location":"Right Knee"},{"euler":{"heading":57.1875,"pitch":-127.3125,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:36.366"} +{"sensors":[{"euler":{"heading":235.25,"pitch":157.0625,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":93.9375,"pitch":119.375,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":41.0,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":335.8125,"pitch":-138.1875,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":141.625,"pitch":101.1875,"roll":53.5},"location":"Right Knee"},{"euler":{"heading":55.125,"pitch":-124.125,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:36.467"} +{"sensors":[{"euler":{"heading":300.5,"pitch":174.0625,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":70.25,"pitch":106.875,"roll":36.1875},"location":"Left Ankle"},{"euler":{"heading":105.5,"pitch":32.3125,"roll":59.375},"location":"Right Ankle"},{"euler":{"heading":335.4375,"pitch":-140.8125,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":147.1875,"pitch":106.0,"roll":59.0},"location":"Right Knee"},{"euler":{"heading":59.9375,"pitch":-127.6875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:36.567"} +{"sensors":[{"euler":{"heading":301.0,"pitch":176.0625,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":70.25,"pitch":107.875,"roll":33.4375},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":17.3125,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":334.625,"pitch":-147.9375,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":157.125,"pitch":116.75,"roll":65.625},"location":"Right Knee"},{"euler":{"heading":65.3125,"pitch":-130.75,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:36.668"} +{"sensors":[{"euler":{"heading":322.375,"pitch":163.875,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":115.3125,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":88.375,"pitch":-11.625,"roll":61.5625},"location":"Right Ankle"},{"euler":{"heading":339.0625,"pitch":-147.625,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":172.5,"pitch":143.375,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":67.3125,"pitch":-130.875,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:36.768"} +{"sensors":[{"euler":{"heading":334.0,"pitch":155.3125,"roll":46.125},"location":"Left Knee"},{"euler":{"heading":99.4375,"pitch":117.3125,"roll":50.875},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":-31.0625,"roll":60.625},"location":"Right Ankle"},{"euler":{"heading":350.4375,"pitch":-134.1875,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":182.625,"pitch":157.1875,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-134.1875,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:36.868"} +{"sensors":[{"euler":{"heading":337.375,"pitch":150.3125,"roll":45.625},"location":"Left Knee"},{"euler":{"heading":103.25,"pitch":119.3125,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":96.9375,"pitch":-5.5,"roll":66.125},"location":"Right Ankle"},{"euler":{"heading":359.875,"pitch":-128.25,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":172.8125,"pitch":122.375,"roll":68.6875},"location":"Right Knee"},{"euler":{"heading":75.1875,"pitch":-140.125,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:36.969"} +{"sensors":[{"euler":{"heading":253.875,"pitch":145.0625,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":107.875,"pitch":121.875,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":117.375,"pitch":40.6875,"roll":61.5},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-127.0625,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":156.3125,"pitch":104.625,"roll":52.3125},"location":"Right Knee"},{"euler":{"heading":77.5625,"pitch":-145.3125,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:37.70"} +{"sensors":[{"euler":{"heading":261.25,"pitch":139.625,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":113.0,"pitch":127.3125,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":131.3125,"pitch":58.5,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":353.625,"pitch":-132.75,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":138.25,"pitch":104.0,"roll":36.0},"location":"Right Knee"},{"euler":{"heading":78.125,"pitch":-148.75,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:37.171"} +{"sensors":[{"euler":{"heading":267.75,"pitch":135.5625,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":119.1875,"pitch":136.3125,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":135.625,"pitch":60.25,"roll":48.5},"location":"Right Ankle"},{"euler":{"heading":344.875,"pitch":-135.0,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":134.6875,"pitch":100.5625,"roll":34.875},"location":"Right Knee"},{"euler":{"heading":79.875,"pitch":-154.375,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:37.272"} +{"sensors":[{"euler":{"heading":275.5625,"pitch":131.9375,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":125.5625,"pitch":160.4375,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":122.375,"pitch":53.875,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":342.25,"pitch":-135.75,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":135.9375,"pitch":96.3125,"roll":39.875},"location":"Right Knee"},{"euler":{"heading":79.6875,"pitch":-152.8125,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:37.372"} +{"sensors":[{"euler":{"heading":291.3125,"pitch":128.5,"roll":21.5},"location":"Left Knee"},{"euler":{"heading":145.75,"pitch":-159.3125,"roll":64.0625},"location":"Left Ankle"},{"euler":{"heading":116.375,"pitch":48.5,"roll":58.0625},"location":"Right Ankle"},{"euler":{"heading":338.5625,"pitch":-136.4375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":137.25,"pitch":97.375,"roll":45.25},"location":"Right Knee"},{"euler":{"heading":66.6875,"pitch":-132.5625,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:37.473"} +{"sensors":[{"euler":{"heading":284.75,"pitch":136.5,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":143.3125,"pitch":-157.4375,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":111.25,"pitch":42.1875,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":337.25,"pitch":-137.0,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":138.125,"pitch":96.6875,"roll":48.75},"location":"Right Knee"},{"euler":{"heading":57.8125,"pitch":-125.875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:37.574"} +{"sensors":[{"euler":{"heading":182.4375,"pitch":152.0,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":130.4375,"roll":59.4375},"location":"Left Ankle"},{"euler":{"heading":108.5625,"pitch":41.5625,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":337.0,"pitch":-137.5,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":140.8125,"pitch":97.9375,"roll":52.625},"location":"Right Knee"},{"euler":{"heading":55.25,"pitch":-123.875,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:37.676"} +{"sensors":[{"euler":{"heading":306.6875,"pitch":169.5625,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":74.6875,"pitch":110.9375,"roll":39.3125},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":34.6875,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":338.5625,"pitch":-138.625,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":146.1875,"pitch":102.25,"roll":58.375},"location":"Right Knee"},{"euler":{"heading":42.3125,"pitch":-128.375,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:37.776"} +{"sensors":[{"euler":{"heading":300.8125,"pitch":176.75,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":67.375,"pitch":106.75,"roll":31.4375},"location":"Left Ankle"},{"euler":{"heading":96.375,"pitch":19.625,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":338.9375,"pitch":-141.75,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":112.5625,"roll":64.1875},"location":"Right Knee"},{"euler":{"heading":64.4375,"pitch":-131.0625,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:37.877"} +{"sensors":[{"euler":{"heading":316.0625,"pitch":168.25,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":84.4375,"pitch":113.875,"roll":41.4375},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":-2.25,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":340.3125,"pitch":-146.375,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":168.1875,"pitch":137.875,"roll":70.1875},"location":"Right Knee"},{"euler":{"heading":65.6875,"pitch":-131.375,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:37.978"} +{"sensors":[{"euler":{"heading":325.4375,"pitch":160.1875,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":89.875,"pitch":114.0625,"roll":46.25},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-34.1875,"roll":60.4375},"location":"Right Ankle"},{"euler":{"heading":350.0,"pitch":-136.125,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":150.375,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":67.3125,"pitch":-132.8125,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:38.79"} +{"sensors":[{"euler":{"heading":332.5,"pitch":154.125,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":94.6875,"pitch":116.125,"roll":50.0625},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":-19.3125,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-128.9375,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":175.3125,"pitch":125.375,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":70.375,"pitch":-136.8125,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:38.180"} +{"sensors":[{"euler":{"heading":336.4375,"pitch":149.5,"roll":45.5},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":119.3125,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":112.25,"pitch":32.0,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":1.0,"pitch":-126.5,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":161.8125,"pitch":108.625,"roll":57.5},"location":"Right Knee"},{"euler":{"heading":72.375,"pitch":-142.0625,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:38.281"} +{"sensors":[{"euler":{"heading":251.75,"pitch":144.8125,"roll":43.25},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":121.75,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":130.875,"pitch":56.25,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":357.1875,"pitch":-130.375,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":142.75,"pitch":104.625,"roll":40.625},"location":"Right Knee"},{"euler":{"heading":74.1875,"pitch":-145.5625,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:38.381"} +{"sensors":[{"euler":{"heading":258.375,"pitch":140.25,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":111.375,"pitch":127.4375,"roll":62.6875},"location":"Left Ankle"},{"euler":{"heading":137.9375,"pitch":59.625,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":348.5625,"pitch":-133.9375,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":133.8125,"pitch":105.0625,"roll":33.125},"location":"Right Knee"},{"euler":{"heading":76.5625,"pitch":-150.5625,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:38.482"} +{"sensors":[{"euler":{"heading":264.1875,"pitch":136.5625,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":114.9375,"pitch":140.0625,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":128.1875,"pitch":58.0,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":341.5625,"pitch":-135.5625,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":134.0625,"pitch":100.125,"roll":37.0625},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-155.8125,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:38.583"} +{"sensors":[{"euler":{"heading":276.3125,"pitch":133.875,"roll":26.125},"location":"Left Knee"},{"euler":{"heading":130.5,"pitch":-179.125,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":119.3125,"pitch":52.0625,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":340.4375,"pitch":-135.5,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":136.0,"pitch":98.875,"roll":42.125},"location":"Right Knee"},{"euler":{"heading":73.375,"pitch":-146.4375,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:38.683"} +{"sensors":[{"euler":{"heading":289.0,"pitch":132.25,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":144.0625,"pitch":-159.0,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":115.3125,"pitch":46.25,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":335.6875,"pitch":-136.875,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":136.1875,"pitch":97.875,"roll":46.0},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-131.5625,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:38.784"} +{"sensors":[{"euler":{"heading":264.375,"pitch":145.4375,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":119.3125,"pitch":158.25,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":111.3125,"pitch":43.625,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":334.9375,"pitch":-136.8125,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":136.8125,"pitch":97.625,"roll":49.3125},"location":"Right Knee"},{"euler":{"heading":56.8125,"pitch":-127.0,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:38.885"} +{"sensors":[{"euler":{"heading":224.1875,"pitch":163.75,"roll":44.4375},"location":"Left Knee"},{"euler":{"heading":87.125,"pitch":115.25,"roll":47.5},"location":"Left Ankle"},{"euler":{"heading":108.0,"pitch":41.4375,"roll":59.6875},"location":"Right Ankle"},{"euler":{"heading":335.0,"pitch":-139.1875,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":140.25,"pitch":98.9375,"roll":53.625},"location":"Right Knee"},{"euler":{"heading":56.5,"pitch":-125.6875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:38.985"} +{"sensors":[{"euler":{"heading":298.0,"pitch":177.125,"roll":48.25},"location":"Left Knee"},{"euler":{"heading":67.625,"pitch":104.75,"roll":33.375},"location":"Left Ankle"},{"euler":{"heading":101.875,"pitch":32.5,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":335.75,"pitch":-140.625,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":146.0625,"pitch":103.375,"roll":59.0625},"location":"Right Knee"},{"euler":{"heading":62.0,"pitch":-129.625,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:39.86"} +{"sensors":[{"euler":{"heading":312.8125,"pitch":169.6875,"roll":47.5},"location":"Left Knee"},{"euler":{"heading":77.0,"pitch":109.5625,"roll":38.5625},"location":"Left Ankle"},{"euler":{"heading":96.25,"pitch":14.0,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":337.1875,"pitch":-146.5,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":157.8125,"pitch":118.4375,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":69.375,"pitch":-132.4375,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:39.187"} +{"sensors":[{"euler":{"heading":322.5,"pitch":161.875,"roll":47.0625},"location":"Left Knee"},{"euler":{"heading":88.5,"pitch":113.3125,"roll":46.5},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":-15.3125,"roll":63.4375},"location":"Right Ankle"},{"euler":{"heading":345.875,"pitch":-140.1875,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":172.5625,"pitch":139.75,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":67.5,"pitch":-132.9375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:39.288"} +{"sensors":[{"euler":{"heading":327.8125,"pitch":156.25,"roll":46.875},"location":"Left Knee"},{"euler":{"heading":92.3125,"pitch":114.25,"roll":49.375},"location":"Left Ankle"},{"euler":{"heading":91.75,"pitch":-15.625,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":354.9375,"pitch":-130.4375,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":172.875,"pitch":126.875,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":70.625,"pitch":-138.0,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:39.389"} +{"sensors":[{"euler":{"heading":332.6875,"pitch":151.4375,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":116.5,"roll":52.5},"location":"Left Ankle"},{"euler":{"heading":109.4375,"pitch":24.4375,"roll":66.6875},"location":"Right Ankle"},{"euler":{"heading":0.8125,"pitch":-127.6875,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":162.25,"pitch":111.625,"roll":58.4375},"location":"Right Knee"},{"euler":{"heading":73.25,"pitch":-143.3125,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:39.490"} +{"sensors":[{"euler":{"heading":248.5,"pitch":146.75,"roll":44.1875},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":117.125,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":127.4375,"pitch":53.5625,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":358.375,"pitch":-128.75,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":145.6875,"pitch":103.9375,"roll":42.75},"location":"Right Knee"},{"euler":{"heading":76.25,"pitch":-149.625,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:39.591"} +{"sensors":[{"euler":{"heading":255.3125,"pitch":142.0625,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":102.9375,"pitch":121.625,"roll":58.6875},"location":"Left Ankle"},{"euler":{"heading":136.1875,"pitch":59.8125,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":351.1875,"pitch":-133.1875,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":133.875,"pitch":104.5,"roll":32.75},"location":"Right Knee"},{"euler":{"heading":76.6875,"pitch":-152.625,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:39.692"} +{"sensors":[{"euler":{"heading":262.9375,"pitch":137.625,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":110.0625,"pitch":131.9375,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":132.6875,"pitch":58.625,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-133.75,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":132.4375,"pitch":101.375,"roll":34.75},"location":"Right Knee"},{"euler":{"heading":79.4375,"pitch":-158.1875,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:39.792"} +{"sensors":[{"euler":{"heading":274.5,"pitch":134.25,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":123.125,"pitch":172.0625,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":121.4375,"pitch":49.6875,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":342.625,"pitch":-134.4375,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":135.8125,"pitch":99.3125,"roll":40.75},"location":"Right Knee"},{"euler":{"heading":75.25,"pitch":-151.5,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:39.894"} +{"sensors":[{"euler":{"heading":290.1875,"pitch":133.375,"roll":20.8125},"location":"Left Knee"},{"euler":{"heading":138.9375,"pitch":-165.875,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":118.5,"pitch":45.875,"roll":56.8125},"location":"Right Ankle"},{"euler":{"heading":337.75,"pitch":-136.25,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":136.5625,"pitch":101.5,"roll":45.0625},"location":"Right Knee"},{"euler":{"heading":64.9375,"pitch":-132.5,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:39.994"} +{"sensors":[{"euler":{"heading":272.875,"pitch":143.4375,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":120.1875,"pitch":164.6875,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":115.5625,"pitch":41.3125,"roll":56.25},"location":"Right Ankle"},{"euler":{"heading":337.75,"pitch":-136.0625,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":138.875,"pitch":103.6875,"roll":48.8125},"location":"Right Knee"},{"euler":{"heading":56.125,"pitch":-126.3125,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:40.94"} +{"sensors":[{"euler":{"heading":187.75,"pitch":160.375,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":93.375,"pitch":119.0625,"roll":51.5625},"location":"Left Ankle"},{"euler":{"heading":114.75,"pitch":40.75,"roll":56.5},"location":"Right Ankle"},{"euler":{"heading":337.375,"pitch":-137.6875,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":141.75,"pitch":105.25,"roll":52.375},"location":"Right Knee"},{"euler":{"heading":53.0625,"pitch":-123.375,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:40.195"} +{"sensors":[{"euler":{"heading":296.1875,"pitch":176.9375,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":65.125,"pitch":105.625,"roll":33.5625},"location":"Left Ankle"},{"euler":{"heading":110.6875,"pitch":35.25,"roll":58.0},"location":"Right Ankle"},{"euler":{"heading":338.125,"pitch":-138.3125,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":145.5,"pitch":109.6875,"roll":57.0625},"location":"Right Knee"},{"euler":{"heading":57.25,"pitch":-126.625,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:40.295"} +{"sensors":[{"euler":{"heading":297.8125,"pitch":177.9375,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":66.6875,"pitch":105.5,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":104.3125,"pitch":23.75,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":336.9375,"pitch":-143.5625,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":119.0,"roll":62.5},"location":"Right Knee"},{"euler":{"heading":62.0,"pitch":-129.8125,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:40.396"} +{"sensors":[{"euler":{"heading":318.625,"pitch":166.5625,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":84.3125,"pitch":112.875,"roll":42.75},"location":"Left Ankle"},{"euler":{"heading":94.25,"pitch":-2.875,"roll":62.875},"location":"Right Ankle"},{"euler":{"heading":339.625,"pitch":-145.0625,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":139.75,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":67.625,"pitch":-132.0625,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:40.497"} +{"sensors":[{"euler":{"heading":331.125,"pitch":158.5,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":94.5,"pitch":114.25,"roll":48.1875},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":-26.125,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":350.5625,"pitch":-132.75,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":147.25,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":72.0625,"pitch":-136.0625,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:40.597"} +{"sensors":[{"euler":{"heading":337.4375,"pitch":152.625,"roll":47.0625},"location":"Left Knee"},{"euler":{"heading":99.8125,"pitch":115.0,"roll":51.5625},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":0.0,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":0.25,"pitch":-125.9375,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":168.5,"pitch":120.0,"roll":66.0},"location":"Right Knee"},{"euler":{"heading":76.5625,"pitch":-143.1875,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:40.698"} +{"sensors":[{"euler":{"heading":344.75,"pitch":147.25,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":103.625,"pitch":117.0,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":42.1875,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":1.3125,"pitch":-125.1875,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":153.875,"pitch":106.9375,"roll":48.5625},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-147.6875,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:40.799"} +{"sensors":[{"euler":{"heading":261.6875,"pitch":141.9375,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":105.875,"pitch":119.875,"roll":56.4375},"location":"Left Ankle"},{"euler":{"heading":134.875,"pitch":57.0625,"roll":48.25},"location":"Right Ankle"},{"euler":{"heading":351.625,"pitch":-132.4375,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":136.5,"pitch":104.875,"roll":33.75},"location":"Right Knee"},{"euler":{"heading":79.375,"pitch":-153.125,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:40.899"} +{"sensors":[{"euler":{"heading":269.3125,"pitch":136.875,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":109.375,"pitch":128.0,"roll":59.375},"location":"Left Ankle"},{"euler":{"heading":130.9375,"pitch":57.8125,"roll":52.5},"location":"Right Ankle"},{"euler":{"heading":344.0625,"pitch":-135.0,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":135.8125,"pitch":99.8125,"roll":37.1875},"location":"Right Knee"},{"euler":{"heading":81.6875,"pitch":-157.5625,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:41.0"} +{"sensors":[{"euler":{"heading":276.125,"pitch":133.1875,"roll":31.375},"location":"Left Knee"},{"euler":{"heading":117.375,"pitch":150.8125,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":118.5625,"pitch":46.9375,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":343.5,"pitch":-134.9375,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":137.25,"pitch":99.375,"roll":42.125},"location":"Right Knee"},{"euler":{"heading":77.8125,"pitch":-150.3125,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:41.100"} +{"sensors":[{"euler":{"heading":286.375,"pitch":132.8125,"roll":23.5625},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":-177.0625,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":118.25,"pitch":47.375,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":337.8125,"pitch":-137.5,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":137.8125,"pitch":100.9375,"roll":45.9375},"location":"Right Knee"},{"euler":{"heading":63.125,"pitch":-132.625,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:41.201"} +{"sensors":[{"euler":{"heading":275.9375,"pitch":141.6875,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":127.3125,"pitch":176.875,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":116.5,"pitch":43.4375,"roll":55.875},"location":"Right Ankle"},{"euler":{"heading":337.5,"pitch":-138.375,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":140.3125,"pitch":103.3125,"roll":49.5625},"location":"Right Knee"},{"euler":{"heading":55.8125,"pitch":-127.5625,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:41.301"} +{"sensors":[{"euler":{"heading":186.3125,"pitch":157.1875,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":95.1875,"pitch":124.125,"roll":54.4375},"location":"Left Ankle"},{"euler":{"heading":112.9375,"pitch":39.0625,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":337.5625,"pitch":-140.3125,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":143.625,"pitch":106.6875,"roll":53.375},"location":"Right Knee"},{"euler":{"heading":54.3125,"pitch":-124.5625,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:41.402"} +{"sensors":[{"euler":{"heading":303.3125,"pitch":174.9375,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":69.3125,"pitch":109.25,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":109.1875,"pitch":34.1875,"roll":61.125},"location":"Right Ankle"},{"euler":{"heading":337.6875,"pitch":-142.5,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":149.1875,"pitch":110.8125,"roll":58.5625},"location":"Right Knee"},{"euler":{"heading":59.5625,"pitch":-128.125,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:41.502"} +{"sensors":[{"euler":{"heading":300.8125,"pitch":177.375,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":67.5625,"pitch":106.8125,"roll":31.6875},"location":"Left Ankle"},{"euler":{"heading":101.0,"pitch":19.625,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":336.375,"pitch":-148.25,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":159.1875,"pitch":118.875,"roll":65.25},"location":"Right Knee"},{"euler":{"heading":64.8125,"pitch":-130.9375,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:41.603"} +{"sensors":[{"euler":{"heading":318.5,"pitch":166.1875,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":87.9375,"pitch":114.9375,"roll":44.1875},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":-11.5,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":340.875,"pitch":-147.25,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":173.0625,"pitch":141.0625,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":65.6875,"pitch":-130.4375,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:41.704"} +{"sensors":[{"euler":{"heading":327.5,"pitch":158.625,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":93.875,"pitch":115.375,"roll":48.5625},"location":"Left Ankle"},{"euler":{"heading":83.5,"pitch":-35.75,"roll":63.125},"location":"Right Ankle"},{"euler":{"heading":351.25,"pitch":-132.5,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":182.0,"pitch":156.9375,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":68.375,"pitch":-133.9375,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:41.805"} +{"sensors":[{"euler":{"heading":331.125,"pitch":153.5625,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":97.9375,"pitch":117.375,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":95.75,"pitch":-3.8125,"roll":68.375},"location":"Right Ankle"},{"euler":{"heading":0.875,"pitch":-127.6875,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":172.1875,"pitch":121.625,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":70.8125,"pitch":-139.1875,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:41.906"} +{"sensors":[{"euler":{"heading":336.5,"pitch":148.75,"roll":45.125},"location":"Left Knee"},{"euler":{"heading":101.25,"pitch":119.3125,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":118.5,"pitch":45.375,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":2.0625,"pitch":-127.1875,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":156.1875,"pitch":106.875,"roll":52.0625},"location":"Right Knee"},{"euler":{"heading":73.75,"pitch":-143.6875,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:42.7"} +{"sensors":[{"euler":{"heading":252.6875,"pitch":144.0,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":103.8125,"pitch":121.9375,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":49.8125,"pitch":60.1875,"roll":43.1875},"location":"Right Ankle"},{"euler":{"heading":357.5,"pitch":-130.625,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":137.8125,"pitch":105.1875,"roll":35.625},"location":"Right Knee"},{"euler":{"heading":75.1875,"pitch":-148.75,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:42.108"} +{"sensors":[{"euler":{"heading":259.3125,"pitch":139.8125,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":110.8125,"pitch":128.9375,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":140.4375,"pitch":59.0,"roll":45.9375},"location":"Right Ankle"},{"euler":{"heading":349.375,"pitch":-132.5625,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":132.3125,"pitch":105.5625,"roll":32.1875},"location":"Right Knee"},{"euler":{"heading":76.625,"pitch":-153.875,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:42.208"} +{"sensors":[{"euler":{"heading":266.8125,"pitch":135.5625,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":117.125,"pitch":148.9375,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":126.8125,"pitch":54.3125,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":343.0,"pitch":-134.0,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":132.9375,"pitch":98.25,"roll":38.375},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-156.125,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:42.309"} +{"sensors":[{"euler":{"heading":285.75,"pitch":130.25,"roll":23.5625},"location":"Left Knee"},{"euler":{"heading":144.5625,"pitch":-163.0625,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":120.375,"pitch":51.75,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":339.6875,"pitch":-133.625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":133.5625,"pitch":97.0,"roll":42.875},"location":"Right Knee"},{"euler":{"heading":65.3125,"pitch":-139.75,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:42.410"} +{"sensors":[{"euler":{"heading":288.6875,"pitch":135.875,"roll":21.5625},"location":"Left Knee"},{"euler":{"heading":140.875,"pitch":-168.375,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":115.5,"pitch":47.9375,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":338.4375,"pitch":-133.5625,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":134.625,"pitch":97.6875,"roll":46.875},"location":"Right Knee"},{"euler":{"heading":57.1875,"pitch":-129.4375,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:42.511"} +{"sensors":[{"euler":{"heading":177.1875,"pitch":150.3125,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":105.6875,"pitch":131.8125,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":43.4375,"roll":56.375},"location":"Right Ankle"},{"euler":{"heading":336.9375,"pitch":-133.75,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":136.1875,"pitch":98.6875,"roll":50.375},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-124.25,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:42.612"} +{"sensors":[{"euler":{"heading":217.8125,"pitch":169.3125,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":73.875,"pitch":110.375,"roll":40.8125},"location":"Left Ankle"},{"euler":{"heading":108.3125,"pitch":40.1875,"roll":58.875},"location":"Right Ankle"},{"euler":{"heading":337.4375,"pitch":-134.625,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":140.6875,"pitch":100.9375,"roll":55.125},"location":"Right Knee"},{"euler":{"heading":53.1875,"pitch":-124.625,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:42.713"} +{"sensors":[{"euler":{"heading":293.1875,"pitch":-179.8125,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":63.0,"pitch":105.0625,"roll":30.3125},"location":"Left Ankle"},{"euler":{"heading":103.0,"pitch":28.875,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":337.25,"pitch":-138.5,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":148.1875,"pitch":108.8125,"roll":61.0625},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-129.0,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:42.813"} +{"sensors":[{"euler":{"heading":313.5625,"pitch":171.0625,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":83.4375,"pitch":118.8125,"roll":37.9375},"location":"Left Ankle"},{"euler":{"heading":97.1875,"pitch":10.6875,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":337.4375,"pitch":-144.0,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":159.25,"pitch":124.0625,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":67.6875,"pitch":-131.4375,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:42.914"} +{"sensors":[{"euler":{"heading":327.1875,"pitch":162.1875,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":93.9375,"pitch":119.1875,"roll":45.8125},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":-22.25,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":344.5,"pitch":-142.4375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":149.3125,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":68.125,"pitch":-132.25,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:43.15"} +{"sensors":[{"euler":{"heading":338.375,"pitch":155.0,"roll":45.4375},"location":"Left Knee"},{"euler":{"heading":102.0,"pitch":120.1875,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":-31.4375,"roll":62.75},"location":"Right Ankle"},{"euler":{"heading":354.6875,"pitch":-130.6875,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":181.6875,"pitch":151.125,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":72.75,"pitch":-137.375,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:43.115"} +{"sensors":[{"euler":{"heading":346.5,"pitch":149.0,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":110.1875,"pitch":124.125,"roll":54.3125},"location":"Left Ankle"},{"euler":{"heading":101.8125,"pitch":11.0,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":2.3125,"pitch":-125.6875,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":168.1875,"pitch":116.25,"roll":65.4375},"location":"Right Knee"},{"euler":{"heading":76.3125,"pitch":-142.25,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:43.215"} +{"sensors":[{"euler":{"heading":263.1875,"pitch":143.6875,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":126.5625,"roll":56.625},"location":"Left Ankle"},{"euler":{"heading":124.125,"pitch":50.9375,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":0.0625,"pitch":-126.25,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":150.9375,"pitch":104.375,"roll":47.0625},"location":"Right Knee"},{"euler":{"heading":78.5,"pitch":-146.5625,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:43.317"} +{"sensors":[{"euler":{"heading":268.6875,"pitch":138.875,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":117.9375,"pitch":131.8125,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":134.8125,"pitch":59.125,"roll":49.4375},"location":"Right Ankle"},{"euler":{"heading":351.9375,"pitch":-132.6875,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":135.875,"pitch":105.6875,"roll":33.6875},"location":"Right Knee"},{"euler":{"heading":78.1875,"pitch":-150.4375,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:43.418"} +{"sensors":[{"euler":{"heading":272.9375,"pitch":135.125,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":121.75,"pitch":141.875,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":131.25,"pitch":60.125,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":343.6875,"pitch":-134.8125,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":134.75,"pitch":99.625,"roll":36.0},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-153.4375,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:43.518"} +{"sensors":[{"euler":{"heading":279.625,"pitch":132.75,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":130.75,"pitch":170.3125,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":122.1875,"pitch":58.375,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":341.375,"pitch":-133.3125,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":133.5,"pitch":93.9375,"roll":40.125},"location":"Right Knee"},{"euler":{"heading":73.9375,"pitch":-147.875,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:43.618"} +{"sensors":[{"euler":{"heading":292.875,"pitch":131.1875,"roll":21.75},"location":"Left Knee"},{"euler":{"heading":147.5625,"pitch":-144.5625,"roll":62.625},"location":"Left Ankle"},{"euler":{"heading":115.5625,"pitch":52.625,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":336.3125,"pitch":-134.25,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":133.8125,"pitch":94.1875,"roll":44.3125},"location":"Right Knee"},{"euler":{"heading":59.875,"pitch":-132.1875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:43.719"} +{"sensors":[{"euler":{"heading":280.6875,"pitch":141.5,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":133.8125,"pitch":191.0625,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":113.25,"pitch":49.0625,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":334.8125,"pitch":-134.375,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":135.375,"pitch":94.4375,"roll":47.9375},"location":"Right Knee"},{"euler":{"heading":52.1875,"pitch":-126.875,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:43.820"} +{"sensors":[{"euler":{"heading":185.1875,"pitch":158.375,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":125.5,"roll":54.6875},"location":"Left Ankle"},{"euler":{"heading":110.3125,"pitch":44.8125,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":335.5,"pitch":-135.5,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":140.625,"pitch":98.1875,"roll":54.0625},"location":"Right Knee"},{"euler":{"heading":41.375,"pitch":-125.0625,"roll":43.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:43.922"} +{"sensors":[{"euler":{"heading":300.0,"pitch":176.0,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":69.5,"pitch":111.1875,"roll":34.125},"location":"Left Ankle"},{"euler":{"heading":105.8125,"pitch":36.9375,"roll":59.5625},"location":"Right Ankle"},{"euler":{"heading":336.0,"pitch":-138.0625,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":146.75,"pitch":103.0625,"roll":59.375},"location":"Right Knee"},{"euler":{"heading":42.75,"pitch":-128.25,"roll":44.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:44.23"} +{"sensors":[{"euler":{"heading":297.375,"pitch":-179.625,"roll":46.0},"location":"Left Knee"},{"euler":{"heading":66.1875,"pitch":108.0625,"roll":29.375},"location":"Left Ankle"},{"euler":{"heading":99.125,"pitch":21.9375,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":336.25,"pitch":-143.875,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":156.625,"pitch":113.75,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":64.5625,"pitch":-131.9375,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:44.124"} +{"sensors":[{"euler":{"heading":319.125,"pitch":168.625,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":87.25,"pitch":117.1875,"roll":42.375},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":-3.4375,"roll":62.75},"location":"Right Ankle"},{"euler":{"heading":337.875,"pitch":-147.9375,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":139.1875,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":67.0,"pitch":-132.3125,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:44.225"} +{"sensors":[{"euler":{"heading":333.625,"pitch":159.0,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":98.625,"pitch":118.9375,"roll":48.875},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":-34.75,"roll":58.625},"location":"Right Ankle"},{"euler":{"heading":350.3125,"pitch":-135.125,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":182.0625,"pitch":164.0,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":70.5,"pitch":-132.8125,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:44.327"} +{"sensors":[{"euler":{"heading":339.25,"pitch":153.0625,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":104.1875,"pitch":120.875,"roll":52.5},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":-21.25,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":0.375,"pitch":-128.625,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":132.1875,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":73.0625,"pitch":-137.75,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:44.428"} +{"sensors":[{"euler":{"heading":344.0,"pitch":148.125,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":110.875,"pitch":124.0,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":110.4375,"pitch":31.75,"roll":64.6875},"location":"Right Ankle"},{"euler":{"heading":2.8125,"pitch":-125.0,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":108.25,"roll":56.75},"location":"Right Knee"},{"euler":{"heading":75.875,"pitch":-143.875,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:44.528"} +{"sensors":[{"euler":{"heading":258.625,"pitch":143.875,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":111.0625,"pitch":126.0,"roll":58.5625},"location":"Left Ankle"},{"euler":{"heading":131.3125,"pitch":55.9375,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-129.0625,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":140.25,"pitch":104.5,"roll":38.3125},"location":"Right Knee"},{"euler":{"heading":75.8125,"pitch":-148.4375,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:44.629"} +{"sensors":[{"euler":{"heading":265.0625,"pitch":139.0,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":117.375,"pitch":133.375,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":138.5625,"pitch":60.8125,"roll":46.8125},"location":"Right Ankle"},{"euler":{"heading":348.25,"pitch":-133.3125,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":132.125,"pitch":102.8125,"roll":31.3125},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-153.5625,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:44.730"} +{"sensors":[{"euler":{"heading":272.5,"pitch":134.625,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":121.3125,"pitch":149.0625,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":127.625,"pitch":55.6875,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":342.1875,"pitch":-135.5625,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":133.0,"pitch":99.375,"roll":35.5625},"location":"Right Knee"},{"euler":{"heading":81.4375,"pitch":-157.4375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:44.832"} +{"sensors":[{"euler":{"heading":283.875,"pitch":132.4375,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":-168.75,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":119.75,"pitch":48.375,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":340.9375,"pitch":-136.125,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":135.9375,"pitch":99.5625,"roll":41.3125},"location":"Right Knee"},{"euler":{"heading":68.6875,"pitch":-145.5,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:44.933"} +{"sensors":[{"euler":{"heading":290.375,"pitch":134.75,"roll":21.0625},"location":"Left Knee"},{"euler":{"heading":142.375,"pitch":-161.4375,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":115.6875,"pitch":42.1875,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":338.4375,"pitch":-136.8125,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":138.375,"pitch":101.125,"roll":45.8125},"location":"Right Knee"},{"euler":{"heading":60.0625,"pitch":-130.5625,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:45.33"} +{"sensors":[{"euler":{"heading":175.4375,"pitch":144.8125,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":119.5,"pitch":160.25,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":113.125,"pitch":37.875,"roll":58.875},"location":"Right Ankle"},{"euler":{"heading":337.4375,"pitch":-137.375,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":141.125,"pitch":104.0625,"roll":49.875},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-124.8125,"roll":45.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:45.135"} +{"sensors":[{"euler":{"heading":189.4375,"pitch":162.1875,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":87.75,"pitch":119.3125,"roll":49.75},"location":"Left Ankle"},{"euler":{"heading":109.5625,"pitch":33.5,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":337.125,"pitch":-139.375,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":144.875,"pitch":105.8125,"roll":54.0625},"location":"Right Knee"},{"euler":{"heading":43.0,"pitch":-123.9375,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:45.236"} +{"sensors":[{"euler":{"heading":295.375,"pitch":178.9375,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":64.9375,"pitch":107.1875,"roll":31.375},"location":"Left Ankle"},{"euler":{"heading":103.875,"pitch":23.25,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":336.3125,"pitch":-142.8125,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":150.5625,"pitch":109.75,"roll":59.375},"location":"Right Knee"},{"euler":{"heading":58.25,"pitch":-127.875,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:45.336"} +{"sensors":[{"euler":{"heading":301.3125,"pitch":177.9375,"roll":45.4375},"location":"Left Knee"},{"euler":{"heading":70.5,"pitch":112.625,"roll":32.125},"location":"Left Ankle"},{"euler":{"heading":96.25,"pitch":6.5625,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":335.6875,"pitch":-149.0,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":158.5625,"pitch":119.75,"roll":65.875},"location":"Right Knee"},{"euler":{"heading":64.6875,"pitch":-130.625,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:45.437"} +{"sensors":[{"euler":{"heading":316.875,"pitch":167.6875,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":88.0,"pitch":116.375,"roll":43.75},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":-22.25,"roll":62.1875},"location":"Right Ankle"},{"euler":{"heading":340.625,"pitch":-147.125,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":173.0,"pitch":144.875,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":63.875,"pitch":-129.5,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:45.537"} +{"sensors":[{"euler":{"heading":329.6875,"pitch":159.125,"roll":46.3125},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":117.375,"roll":48.5},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-38.75,"roll":58.5},"location":"Right Ankle"},{"euler":{"heading":351.875,"pitch":-132.0,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":181.75,"pitch":157.0625,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":67.625,"pitch":-132.5625,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:45.638"} +{"sensors":[{"euler":{"heading":334.1875,"pitch":154.0625,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":101.375,"pitch":121.1875,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":-6.9375,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":0.375,"pitch":-127.3125,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":172.0625,"pitch":115.5625,"roll":68.0},"location":"Right Knee"},{"euler":{"heading":68.75,"pitch":-136.625,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:45.739"} +{"sensors":[{"euler":{"heading":340.125,"pitch":149.0625,"roll":45.0},"location":"Left Knee"},{"euler":{"heading":109.0625,"pitch":124.6875,"roll":58.4375},"location":"Left Ankle"},{"euler":{"heading":115.0625,"pitch":44.5,"roll":48.25},"location":"Right Ankle"},{"euler":{"heading":1.0625,"pitch":-127.6875,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":153.375,"pitch":105.1875,"roll":51.0625},"location":"Right Knee"},{"euler":{"heading":71.8125,"pitch":-141.75,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:45.839"} +{"sensors":[{"euler":{"heading":258.3125,"pitch":143.375,"roll":42.6875},"location":"Left Knee"},{"euler":{"heading":113.625,"pitch":128.9375,"roll":61.3125},"location":"Left Ankle"},{"euler":{"heading":131.0625,"pitch":58.5625,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":355.3125,"pitch":-131.6875,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":138.5625,"pitch":103.875,"roll":36.3125},"location":"Right Knee"},{"euler":{"heading":74.25,"pitch":-146.5625,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:45.941"} +{"sensors":[{"euler":{"heading":265.3125,"pitch":138.6875,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":119.5625,"pitch":137.6875,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":138.25,"pitch":60.625,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":347.5625,"pitch":-135.0625,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":132.6875,"pitch":102.375,"roll":31.6875},"location":"Right Knee"},{"euler":{"heading":76.75,"pitch":-153.1875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:46.41"} +{"sensors":[{"euler":{"heading":271.125,"pitch":135.4375,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":122.6875,"pitch":156.6875,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":125.25,"pitch":56.625,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":341.25,"pitch":-136.125,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":132.6875,"pitch":96.5,"roll":36.4375},"location":"Right Knee"},{"euler":{"heading":78.8125,"pitch":-156.0625,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:46.142"} +{"sensors":[{"euler":{"heading":286.75,"pitch":132.625,"roll":23.1875},"location":"Left Knee"},{"euler":{"heading":149.5625,"pitch":-157.8125,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":116.5625,"pitch":51.0625,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":337.5625,"pitch":-136.0625,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":133.375,"pitch":95.625,"roll":41.75},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-138.125,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:46.242"} +{"sensors":[{"euler":{"heading":291.0,"pitch":136.4375,"roll":20.5625},"location":"Left Knee"},{"euler":{"heading":144.875,"pitch":-155.3125,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":111.75,"pitch":44.0625,"roll":58.3125},"location":"Right Ankle"},{"euler":{"heading":335.5625,"pitch":-136.8125,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":134.6875,"pitch":95.875,"roll":45.8125},"location":"Right Knee"},{"euler":{"heading":54.0,"pitch":-127.0,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:46.343"} +{"sensors":[{"euler":{"heading":178.6875,"pitch":149.0,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":110.75,"pitch":145.5625,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":108.6875,"pitch":41.6875,"roll":59.375},"location":"Right Ankle"},{"euler":{"heading":335.0625,"pitch":-136.5625,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":137.0,"pitch":96.8125,"roll":49.6875},"location":"Right Knee"},{"euler":{"heading":40.5,"pitch":-121.6875,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:46.444"} +{"sensors":[{"euler":{"heading":192.5625,"pitch":167.875,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":77.375,"pitch":113.375,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":105.0625,"pitch":36.9375,"roll":60.5},"location":"Right Ankle"},{"euler":{"heading":334.625,"pitch":-138.4375,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":141.0,"pitch":98.5625,"roll":54.3125},"location":"Right Knee"},{"euler":{"heading":41.8125,"pitch":-123.25,"roll":44.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:46.545"} +{"sensors":[{"euler":{"heading":294.1875,"pitch":-179.75,"roll":45.125},"location":"Left Knee"},{"euler":{"heading":61.875,"pitch":105.625,"roll":29.8125},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":25.9375,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":334.5,"pitch":-141.375,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":146.875,"pitch":104.375,"roll":60.125},"location":"Right Knee"},{"euler":{"heading":58.5,"pitch":-128.0625,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:46.645"} +{"sensors":[{"euler":{"heading":306.375,"pitch":174.3125,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":76.0,"pitch":113.375,"roll":36.1875},"location":"Left Ankle"},{"euler":{"heading":92.8125,"pitch":6.5,"roll":62.5625},"location":"Right Ankle"},{"euler":{"heading":334.5625,"pitch":-149.0,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":158.625,"pitch":120.9375,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":65.375,"pitch":-130.625,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:46.746"} +{"sensors":[{"euler":{"heading":320.8125,"pitch":165.3125,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":88.6875,"pitch":115.75,"roll":44.6875},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":-23.25,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":342.375,"pitch":-143.8125,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":174.125,"pitch":142.375,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":64.0625,"pitch":-130.75,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:46.847"} +{"sensors":[{"euler":{"heading":333.125,"pitch":157.4375,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":95.8125,"pitch":117.1875,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":84.6875,"pitch":-30.3125,"roll":61.8125},"location":"Right Ankle"},{"euler":{"heading":352.3125,"pitch":-131.9375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":179.9375,"pitch":143.0,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":68.6875,"pitch":-134.6875,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:46.949"} +{"sensors":[{"euler":{"heading":338.4375,"pitch":152.3125,"roll":45.6875},"location":"Left Knee"},{"euler":{"heading":104.75,"pitch":120.6875,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":6.9375,"roll":67.875},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-127.9375,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":167.125,"pitch":115.5,"roll":63.875},"location":"Right Knee"},{"euler":{"heading":71.75,"pitch":-140.6875,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:47.49"} +{"sensors":[{"euler":{"heading":254.625,"pitch":147.25,"roll":44.25},"location":"Left Knee"},{"euler":{"heading":105.5625,"pitch":122.375,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":122.8125,"pitch":48.1875,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":357.0,"pitch":-129.625,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":149.1875,"pitch":104.0,"roll":44.875},"location":"Right Knee"},{"euler":{"heading":74.25,"pitch":-145.375,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:47.150"} +{"sensors":[{"euler":{"heading":260.875,"pitch":142.0625,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":111.5625,"pitch":128.25,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":134.3125,"pitch":60.3125,"roll":50.6875},"location":"Right Ankle"},{"euler":{"heading":350.4375,"pitch":-133.5625,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":134.0625,"pitch":102.625,"roll":32.6875},"location":"Right Knee"},{"euler":{"heading":74.75,"pitch":-149.25,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:47.251"} +{"sensors":[{"euler":{"heading":266.8125,"pitch":138.0,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":116.9375,"pitch":137.3125,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":134.3125,"pitch":61.8125,"roll":49.125},"location":"Right Ankle"},{"euler":{"heading":343.8125,"pitch":-135.625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":132.25,"pitch":100.0,"roll":32.375},"location":"Right Knee"},{"euler":{"heading":76.375,"pitch":-155.0,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:47.351"} +{"sensors":[{"euler":{"heading":274.4375,"pitch":134.6875,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":124.3125,"pitch":162.75,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":122.0625,"pitch":55.875,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":342.0,"pitch":-135.625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":133.75,"pitch":95.625,"roll":37.875},"location":"Right Knee"},{"euler":{"heading":77.125,"pitch":-154.6875,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:47.452"} +{"sensors":[{"euler":{"heading":291.0,"pitch":131.25,"roll":21.875},"location":"Left Knee"},{"euler":{"heading":144.5625,"pitch":-158.0625,"roll":62.6875},"location":"Left Ankle"},{"euler":{"heading":115.4375,"pitch":51.75,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":334.9375,"pitch":-136.3125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":132.5625,"pitch":94.0,"roll":42.375},"location":"Right Knee"},{"euler":{"heading":60.375,"pitch":-133.1875,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:47.553"} +{"sensors":[{"euler":{"heading":280.6875,"pitch":139.75,"roll":24.0},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":-159.75,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":110.0625,"pitch":45.25,"roll":58.375},"location":"Right Ankle"},{"euler":{"heading":334.6875,"pitch":-135.5625,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":134.375,"pitch":94.125,"roll":46.375},"location":"Right Knee"},{"euler":{"heading":52.125,"pitch":-124.875,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:47.654"} +{"sensors":[{"euler":{"heading":182.625,"pitch":154.3125,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":102.3125,"pitch":133.8125,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":107.3125,"pitch":40.8125,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":335.125,"pitch":-136.1875,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":137.75,"pitch":96.5,"roll":50.3125},"location":"Right Knee"},{"euler":{"heading":40.8125,"pitch":-121.25,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:47.756"} +{"sensors":[{"euler":{"heading":198.75,"pitch":173.1875,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":111.5,"roll":38.6875},"location":"Left Ankle"},{"euler":{"heading":104.5,"pitch":35.25,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":335.75,"pitch":-138.4375,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":142.3125,"pitch":101.1875,"roll":55.0},"location":"Right Knee"},{"euler":{"heading":53.75,"pitch":-124.6875,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:47.857"} +{"sensors":[{"euler":{"heading":292.25,"pitch":-177.6875,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":61.4375,"pitch":104.9375,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":21.6875,"roll":61.4375},"location":"Right Ankle"},{"euler":{"heading":336.25,"pitch":-142.0625,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":150.25,"pitch":109.1875,"roll":60.8125},"location":"Right Knee"},{"euler":{"heading":63.8125,"pitch":-131.4375,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:47.958"} +{"sensors":[{"euler":{"heading":311.4375,"pitch":173.25,"roll":45.625},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":114.0,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":91.75,"pitch":-1.625,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":337.3125,"pitch":-149.0,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":127.9375,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":68.9375,"pitch":-134.0,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:48.59"} +{"sensors":[{"euler":{"heading":320.875,"pitch":164.1875,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":87.1875,"pitch":113.8125,"roll":44.9375},"location":"Left Ankle"},{"euler":{"heading":80.375,"pitch":-30.4375,"roll":58.375},"location":"Right Ankle"},{"euler":{"heading":347.6875,"pitch":-138.75,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":148.125,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":68.375,"pitch":-134.3125,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:48.159"} +{"sensors":[{"euler":{"heading":330.625,"pitch":157.5625,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":95.8125,"pitch":115.1875,"roll":49.625},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":-27.125,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":355.375,"pitch":-129.0625,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":137.625,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":71.5625,"pitch":-138.8125,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:48.261"} +{"sensors":[{"euler":{"heading":339.125,"pitch":151.625,"roll":46.625},"location":"Left Knee"},{"euler":{"heading":105.75,"pitch":119.0,"roll":55.5},"location":"Left Ankle"},{"euler":{"heading":108.25,"pitch":19.25,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":0.9375,"pitch":-126.1875,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":113.9375,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":74.5625,"pitch":-143.6875,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:48.361"} +{"sensors":[{"euler":{"heading":265.8125,"pitch":146.3125,"roll":44.9375},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":119.8125,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":128.9375,"pitch":51.6875,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-127.4375,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":144.75,"pitch":105.375,"roll":41.3125},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-149.5,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:48.462"} +{"sensors":[{"euler":{"heading":262.625,"pitch":141.3125,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":128.1875,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":136.5,"pitch":58.3125,"roll":48.5625},"location":"Right Ankle"},{"euler":{"heading":350.375,"pitch":-132.3125,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":132.9375,"pitch":105.125,"roll":31.6875},"location":"Right Knee"},{"euler":{"heading":78.125,"pitch":-153.0625,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:48.563"} +{"sensors":[{"euler":{"heading":269.9375,"pitch":136.3125,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":120.375,"pitch":141.375,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":129.4375,"pitch":54.6875,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":342.8125,"pitch":-135.5,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":134.1875,"pitch":101.75,"roll":35.5625},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-158.25,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:48.664"} +{"sensors":[{"euler":{"heading":280.25,"pitch":132.9375,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":131.25,"pitch":175.875,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":121.6875,"pitch":48.0,"roll":55.5625},"location":"Right Ankle"},{"euler":{"heading":342.75,"pitch":-135.625,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":136.0,"pitch":101.75,"roll":40.3125},"location":"Right Knee"},{"euler":{"heading":76.4375,"pitch":-149.25,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:48.764"} +{"sensors":[{"euler":{"heading":290.9375,"pitch":132.5625,"roll":21.6875},"location":"Left Knee"},{"euler":{"heading":139.9375,"pitch":-161.75,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":118.875,"pitch":44.1875,"roll":55.75},"location":"Right Ankle"},{"euler":{"heading":337.75,"pitch":-137.75,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":136.375,"pitch":102.0,"roll":43.9375},"location":"Right Knee"},{"euler":{"heading":62.4375,"pitch":-131.8125,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:48.865"} +{"sensors":[{"euler":{"heading":276.1875,"pitch":142.125,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":130.75,"pitch":-172.1875,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":116.1875,"pitch":41.5625,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":337.9375,"pitch":-136.875,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":138.25,"pitch":103.5,"roll":47.6875},"location":"Right Knee"},{"euler":{"heading":53.75,"pitch":-125.6875,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:48.966"} +{"sensors":[{"euler":{"heading":187.875,"pitch":159.875,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":123.4375,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":112.5,"pitch":37.625,"roll":59.0},"location":"Right Ankle"},{"euler":{"heading":337.5,"pitch":-138.125,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":141.5,"pitch":105.4375,"roll":51.375},"location":"Right Knee"},{"euler":{"heading":42.0,"pitch":-124.125,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:49.67"} +{"sensors":[{"euler":{"heading":202.5625,"pitch":176.5,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":69.5,"pitch":108.5,"roll":36.4375},"location":"Left Ankle"},{"euler":{"heading":107.25,"pitch":31.3125,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":335.75,"pitch":-140.625,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":145.75,"pitch":107.6875,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":58.0625,"pitch":-127.6875,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:49.167"} +{"sensors":[{"euler":{"heading":207.4375,"pitch":177.75,"roll":44.5},"location":"Left Knee"},{"euler":{"heading":72.6875,"pitch":112.25,"roll":34.6875},"location":"Left Ankle"},{"euler":{"heading":99.125,"pitch":16.3125,"roll":60.375},"location":"Right Ankle"},{"euler":{"heading":336.1875,"pitch":-145.5625,"roll":70.4375},"location":"Right Hip"},{"euler":{"heading":156.125,"pitch":116.6875,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":67.5,"pitch":-133.0625,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:49.268"} +{"sensors":[{"euler":{"heading":230.4375,"pitch":166.375,"roll":44.8125},"location":"Left Knee"},{"euler":{"heading":89.125,"pitch":116.375,"roll":45.75},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":-9.3125,"roll":62.5625},"location":"Right Ankle"},{"euler":{"heading":340.875,"pitch":-144.0,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":172.25,"pitch":136.3125,"roll":71.1875},"location":"Right Knee"},{"euler":{"heading":68.5,"pitch":-133.1875,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:49.369"} +{"sensors":[{"euler":{"heading":329.625,"pitch":159.5,"roll":45.25},"location":"Left Knee"},{"euler":{"heading":93.4375,"pitch":116.125,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-30.25,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":351.625,"pitch":-130.625,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":179.1875,"pitch":143.5625,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":71.9375,"pitch":-137.875,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:49.469"} +{"sensors":[{"euler":{"heading":334.625,"pitch":154.0625,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":98.9375,"pitch":117.5625,"roll":53.125},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":-9.125,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":1.0,"pitch":-125.75,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":170.25,"pitch":121.625,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":74.625,"pitch":-143.4375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:49.570"} +{"sensors":[{"euler":{"heading":343.125,"pitch":148.0625,"roll":45.25},"location":"Left Knee"},{"euler":{"heading":106.9375,"pitch":119.9375,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":116.125,"pitch":32.125,"roll":62.875},"location":"Right Ankle"},{"euler":{"heading":4.0,"pitch":-126.125,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":158.0625,"pitch":111.625,"roll":50.4375},"location":"Right Knee"},{"euler":{"heading":78.0,"pitch":-149.4375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:49.671"} +{"sensors":[{"euler":{"heading":260.1875,"pitch":143.0,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":110.5625,"pitch":124.125,"roll":60.25},"location":"Left Ankle"},{"euler":{"heading":135.5,"pitch":53.6875,"roll":47.5625},"location":"Right Ankle"},{"euler":{"heading":358.0625,"pitch":-131.3125,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":140.1875,"pitch":108.625,"roll":35.8125},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-153.4375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:49.772"} +{"sensors":[{"euler":{"heading":267.375,"pitch":138.25,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":117.9375,"pitch":134.9375,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":136.6875,"pitch":59.625,"roll":47.5},"location":"Right Ankle"},{"euler":{"heading":346.5,"pitch":-135.125,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":131.125,"pitch":103.0,"roll":29.375},"location":"Right Knee"},{"euler":{"heading":79.3125,"pitch":-156.625,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:49.872"} +{"sensors":[{"euler":{"heading":275.3125,"pitch":134.5625,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":124.0,"pitch":162.125,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":125.0,"pitch":53.8125,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":342.625,"pitch":-136.75,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":132.0625,"pitch":99.25,"roll":34.6875},"location":"Right Knee"},{"euler":{"heading":80.1875,"pitch":-155.4375,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:49.973"} +{"sensors":[{"euler":{"heading":291.75,"pitch":131.1875,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":150.6875,"pitch":-150.9375,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":118.375,"pitch":49.25,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":339.125,"pitch":-136.625,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":133.0625,"pitch":98.0625,"roll":39.9375},"location":"Right Knee"},{"euler":{"heading":63.75,"pitch":-136.375,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:50.75"} +{"sensors":[{"euler":{"heading":293.875,"pitch":135.375,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":149.75,"pitch":-142.1875,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":114.125,"pitch":43.8125,"roll":58.0},"location":"Right Ankle"},{"euler":{"heading":339.0625,"pitch":-136.75,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":135.6875,"pitch":99.5625,"roll":43.9375},"location":"Right Knee"},{"euler":{"heading":55.0,"pitch":-125.625,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:50.175"} +{"sensors":[{"euler":{"heading":178.125,"pitch":147.0,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":115.0625,"pitch":156.1875,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":110.125,"pitch":38.3125,"roll":59.5},"location":"Right Ankle"},{"euler":{"heading":338.75,"pitch":-135.9375,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":138.3125,"pitch":101.125,"roll":47.5},"location":"Right Knee"},{"euler":{"heading":38.375,"pitch":-126.1875,"roll":42.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:50.276"} +{"sensors":[{"euler":{"heading":192.0625,"pitch":164.5,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":85.4375,"pitch":117.9375,"roll":50.9375},"location":"Left Ankle"},{"euler":{"heading":105.9375,"pitch":32.25,"roll":61.3125},"location":"Right Ankle"},{"euler":{"heading":338.5625,"pitch":-138.0625,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":143.0,"pitch":103.375,"roll":52.0625},"location":"Right Knee"},{"euler":{"heading":41.875,"pitch":-125.625,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:50.377"} +{"sensors":[{"euler":{"heading":204.25,"pitch":175.1875,"roll":43.0},"location":"Left Knee"},{"euler":{"heading":70.8125,"pitch":109.5,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":100.125,"pitch":21.3125,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":338.375,"pitch":-141.5625,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":149.4375,"pitch":107.625,"roll":57.5},"location":"Right Knee"},{"euler":{"heading":62.4375,"pitch":-130.5625,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:50.477"} +{"sensors":[{"euler":{"heading":225.1875,"pitch":171.375,"roll":44.4375},"location":"Left Knee"},{"euler":{"heading":82.25,"pitch":115.6875,"roll":40.1875},"location":"Left Ankle"},{"euler":{"heading":92.8125,"pitch":0.5,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":338.75,"pitch":-146.9375,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":118.375,"roll":64.75},"location":"Right Knee"},{"euler":{"heading":71.25,"pitch":-135.6875,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:50.578"} +{"sensors":[{"euler":{"heading":235.375,"pitch":163.4375,"roll":44.8125},"location":"Left Knee"},{"euler":{"heading":90.25,"pitch":116.875,"roll":46.75},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":-26.6875,"roll":62.6875},"location":"Right Ankle"},{"euler":{"heading":346.6875,"pitch":-138.125,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":173.75,"pitch":137.0,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":70.4375,"pitch":-137.625,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:50.678"} +{"sensors":[{"euler":{"heading":245.75,"pitch":156.375,"roll":44.8125},"location":"Left Knee"},{"euler":{"heading":98.8125,"pitch":118.75,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":-27.0,"roll":62.875},"location":"Right Ankle"},{"euler":{"heading":355.75,"pitch":-126.9375,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":136.0,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":75.0,"pitch":-141.3125,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:50.779"} +{"sensors":[{"euler":{"heading":254.5,"pitch":150.375,"roll":44.8125},"location":"Left Knee"},{"euler":{"heading":108.4375,"pitch":121.9375,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":105.5625,"pitch":11.0,"roll":70.25},"location":"Right Ankle"},{"euler":{"heading":0.875,"pitch":-125.8125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":162.5625,"pitch":116.4375,"roll":57.75},"location":"Right Knee"},{"euler":{"heading":78.6875,"pitch":-146.25,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:50.880"} +{"sensors":[{"euler":{"heading":262.6875,"pitch":144.9375,"roll":43.0625},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":124.0625,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":126.875,"pitch":51.0,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":357.625,"pitch":-130.375,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":144.6875,"pitch":107.8125,"roll":40.25},"location":"Right Knee"},{"euler":{"heading":81.625,"pitch":-151.3125,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:50.981"} +{"sensors":[{"euler":{"heading":269.3125,"pitch":139.5,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":118.9375,"pitch":132.125,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":139.125,"pitch":59.0,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":347.875,"pitch":-135.5,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":134.0625,"pitch":106.75,"roll":30.8125},"location":"Right Knee"},{"euler":{"heading":82.75,"pitch":-155.4375,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:51.82"} +{"sensors":[{"euler":{"heading":276.125,"pitch":135.375,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":124.0625,"pitch":146.4375,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":129.1875,"pitch":56.875,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":340.0,"pitch":-138.4375,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":131.625,"pitch":101.4375,"roll":33.625},"location":"Right Knee"},{"euler":{"heading":84.8125,"pitch":-159.75,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:51.183"} +{"sensors":[{"euler":{"heading":284.125,"pitch":134.0625,"roll":25.3125},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":-175.375,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":120.75,"pitch":49.6875,"roll":56.75},"location":"Right Ankle"},{"euler":{"heading":340.3125,"pitch":-138.25,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":134.3125,"pitch":100.5625,"roll":39.6875},"location":"Right Knee"},{"euler":{"heading":75.75,"pitch":-148.4375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:51.284"} +{"sensors":[{"euler":{"heading":292.375,"pitch":134.4375,"roll":20.625},"location":"Left Knee"},{"euler":{"heading":140.75,"pitch":-166.0625,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":114.0,"pitch":45.125,"roll":57.75},"location":"Right Ankle"},{"euler":{"heading":334.1875,"pitch":-137.875,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":133.6875,"pitch":97.375,"roll":43.5},"location":"Right Knee"},{"euler":{"heading":62.75,"pitch":-129.1875,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:51.386"} +{"sensors":[{"euler":{"heading":176.0625,"pitch":144.5625,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":123.3125,"pitch":163.0,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":108.6875,"pitch":40.8125,"roll":59.0},"location":"Right Ankle"},{"euler":{"heading":333.25,"pitch":-136.75,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":134.6875,"pitch":96.625,"roll":47.0},"location":"Right Knee"},{"euler":{"heading":53.0,"pitch":-124.125,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:51.487"} +{"sensors":[{"euler":{"heading":189.4375,"pitch":162.75,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":118.0,"roll":48.9375},"location":"Left Ankle"},{"euler":{"heading":104.75,"pitch":35.3125,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":333.5,"pitch":-138.125,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":138.75,"pitch":98.875,"roll":51.3125},"location":"Right Knee"},{"euler":{"heading":52.3125,"pitch":-122.9375,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:51.587"} +{"sensors":[{"euler":{"heading":202.5625,"pitch":178.0625,"roll":44.3125},"location":"Left Knee"},{"euler":{"heading":65.5625,"pitch":104.875,"roll":32.8125},"location":"Left Ankle"},{"euler":{"heading":99.625,"pitch":25.3125,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":334.9375,"pitch":-139.25,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":144.375,"pitch":105.0625,"roll":56.625},"location":"Right Knee"},{"euler":{"heading":60.875,"pitch":-129.3125,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:51.688"} +{"sensors":[{"euler":{"heading":207.1875,"pitch":175.1875,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":79.0625,"pitch":113.25,"roll":37.5},"location":"Left Ankle"},{"euler":{"heading":93.5,"pitch":7.0625,"roll":62.4375},"location":"Right Ankle"},{"euler":{"heading":336.3125,"pitch":-146.125,"roll":69.9375},"location":"Right Hip"},{"euler":{"heading":156.125,"pitch":117.125,"roll":63.625},"location":"Right Knee"},{"euler":{"heading":70.0625,"pitch":-133.6875,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:51.789"} +{"sensors":[{"euler":{"heading":322.3125,"pitch":165.6875,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":89.0,"pitch":114.5,"roll":45.375},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":-18.625,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":342.5625,"pitch":-142.0,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":173.25,"pitch":143.1875,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":69.25,"pitch":-135.0625,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:51.889"} +{"sensors":[{"euler":{"heading":329.625,"pitch":159.0625,"roll":45.625},"location":"Left Knee"},{"euler":{"heading":94.0,"pitch":115.4375,"roll":48.9375},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":-27.8125,"roll":61.5},"location":"Right Ankle"},{"euler":{"heading":367.5,"pitch":-130.5,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":178.25,"pitch":145.375,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-139.875,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:51.990"} +{"sensors":[{"euler":{"heading":336.875,"pitch":153.25,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":104.125,"pitch":119.0,"roll":54.875},"location":"Left Ankle"},{"euler":{"heading":103.5,"pitch":5.875,"roll":66.5625},"location":"Right Ankle"},{"euler":{"heading":359.125,"pitch":-127.25,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":119.9375,"roll":61.3125},"location":"Right Knee"},{"euler":{"heading":76.9375,"pitch":-145.1875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:52.91"} +{"sensors":[{"euler":{"heading":255.375,"pitch":147.5625,"roll":44.3125},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":120.625,"roll":57.1875},"location":"Left Ankle"},{"euler":{"heading":121.0,"pitch":44.625,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-129.375,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":147.75,"pitch":108.75,"roll":43.8125},"location":"Right Knee"},{"euler":{"heading":80.1875,"pitch":-151.25,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:52.192"} +{"sensors":[{"euler":{"heading":262.0,"pitch":142.25,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":112.9375,"pitch":126.3125,"roll":60.8125},"location":"Left Ankle"},{"euler":{"heading":136.1875,"pitch":56.5,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":351.4375,"pitch":-134.0,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":136.1875,"pitch":107.75,"roll":32.625},"location":"Right Knee"},{"euler":{"heading":80.6875,"pitch":-155.25,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:52.294"} +{"sensors":[{"euler":{"heading":267.8125,"pitch":138.1875,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":117.9375,"pitch":137.6875,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":131.8125,"pitch":58.5625,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":344.4375,"pitch":-136.25,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":133.9375,"pitch":102.5,"roll":32.6875},"location":"Right Knee"},{"euler":{"heading":82.0,"pitch":-158.625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:52.394"} +{"sensors":[{"euler":{"heading":277.1875,"pitch":134.0625,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":126.4375,"pitch":168.75,"roll":67.25},"location":"Left Ankle"},{"euler":{"heading":120.4375,"pitch":51.125,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":341.0625,"pitch":-137.5625,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":134.9375,"pitch":98.5,"roll":38.1875},"location":"Right Knee"},{"euler":{"heading":80.125,"pitch":-154.4375,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:52.494"} +{"sensors":[{"euler":{"heading":292.125,"pitch":131.75,"roll":21.4375},"location":"Left Knee"},{"euler":{"heading":146.9375,"pitch":-157.75,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":113.75,"pitch":46.5,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":335.5,"pitch":-137.8125,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":134.3125,"pitch":97.9375,"roll":41.6875},"location":"Right Knee"},{"euler":{"heading":63.75,"pitch":-134.75,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:52.595"} +{"sensors":[{"euler":{"heading":283.0625,"pitch":140.3125,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":141.0625,"pitch":-164.1875,"roll":67.25},"location":"Left Ankle"},{"euler":{"heading":108.375,"pitch":41.5,"roll":59.625},"location":"Right Ankle"},{"euler":{"heading":335.0,"pitch":-136.8125,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":135.3125,"pitch":96.9375,"roll":45.4375},"location":"Right Knee"},{"euler":{"heading":55.0625,"pitch":-126.9375,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:52.696"} +{"sensors":[{"euler":{"heading":185.25,"pitch":155.5625,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":105.3125,"pitch":134.75,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":103.375,"pitch":36.9375,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":334.5,"pitch":-136.0,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":137.25,"pitch":96.5,"roll":49.3125},"location":"Right Knee"},{"euler":{"heading":52.5625,"pitch":-123.25,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:52.797"} +{"sensors":[{"euler":{"heading":211.375,"pitch":174.4375,"roll":44.75},"location":"Left Knee"},{"euler":{"heading":75.5625,"pitch":109.9375,"roll":39.875},"location":"Left Ankle"},{"euler":{"heading":97.8125,"pitch":28.4375,"roll":62.4375},"location":"Right Ankle"},{"euler":{"heading":334.875,"pitch":-137.6875,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":142.125,"pitch":98.9375,"roll":54.5},"location":"Right Knee"},{"euler":{"heading":57.0625,"pitch":-126.6875,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:52.898"} +{"sensors":[{"euler":{"heading":207.8125,"pitch":178.1875,"roll":44.1875},"location":"Left Knee"},{"euler":{"heading":74.875,"pitch":109.875,"roll":35.6875},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":10.75,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":335.75,"pitch":-141.0625,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":152.75,"pitch":111.0625,"roll":62.25},"location":"Right Knee"},{"euler":{"heading":65.1875,"pitch":-132.75,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:52.999"} +{"sensors":[{"euler":{"heading":227.1875,"pitch":167.5625,"roll":44.875},"location":"Left Knee"},{"euler":{"heading":90.5,"pitch":115.0,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":-14.5,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":340.1875,"pitch":-142.4375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":171.4375,"pitch":139.25,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":64.5,"pitch":-132.625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:53.100"} +{"sensors":[{"euler":{"heading":327.125,"pitch":160.8125,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":95.4375,"pitch":115.8125,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":-27.9375,"roll":60.375},"location":"Right Ankle"},{"euler":{"heading":349.3125,"pitch":-130.625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":175.875,"pitch":138.3125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":68.75,"pitch":-137.125,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:53.201"} +{"sensors":[{"euler":{"heading":331.4375,"pitch":156.1875,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":118.3125,"roll":53.75},"location":"Left Ankle"},{"euler":{"heading":95.4375,"pitch":-7.1875,"roll":65.6875},"location":"Right Ankle"},{"euler":{"heading":358.3125,"pitch":-128.125,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":168.125,"pitch":120.5,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-141.6875,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:53.301"} +{"sensors":[{"euler":{"heading":249.125,"pitch":151.0625,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":104.4375,"pitch":120.25,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":116.125,"pitch":33.3125,"roll":62.3125},"location":"Right Ankle"},{"euler":{"heading":0.125,"pitch":-129.6875,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":152.5625,"pitch":112.3125,"roll":47.6875},"location":"Right Knee"},{"euler":{"heading":75.75,"pitch":-147.125,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:53.402"} +{"sensors":[{"euler":{"heading":257.875,"pitch":145.375,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":108.6875,"pitch":124.1875,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":131.3125,"pitch":55.25,"roll":54.75},"location":"Right Ankle"},{"euler":{"heading":353.5,"pitch":-133.0625,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":137.5,"pitch":107.125,"roll":33.3125},"location":"Right Knee"},{"euler":{"heading":78.6875,"pitch":-152.1875,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:53.503"} +{"sensors":[{"euler":{"heading":265.25,"pitch":140.3125,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":116.9375,"pitch":133.875,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":139.5625,"pitch":59.0,"roll":47.125},"location":"Right Ankle"},{"euler":{"heading":343.5625,"pitch":-136.875,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":130.875,"pitch":105.0625,"roll":28.5},"location":"Right Knee"},{"euler":{"heading":81.375,"pitch":-157.4375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:53.604"} +{"sensors":[{"euler":{"heading":274.5,"pitch":135.625,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":122.5625,"pitch":152.0625,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":126.125,"pitch":54.25,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":339.625,"pitch":-138.5625,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":131.875,"pitch":99.875,"roll":33.8125},"location":"Right Knee"},{"euler":{"heading":86.0,"pitch":-162.0625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:53.705"} +{"sensors":[{"euler":{"heading":290.25,"pitch":132.8125,"roll":22.25},"location":"Left Knee"},{"euler":{"heading":146.0,"pitch":-162.125,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":50.0,"roll":56.8125},"location":"Right Ankle"},{"euler":{"heading":337.6875,"pitch":-137.875,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":132.8125,"pitch":98.0625,"roll":39.0625},"location":"Right Knee"},{"euler":{"heading":70.125,"pitch":-143.8125,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:53.805"} +{"sensors":[{"euler":{"heading":291.625,"pitch":135.8125,"roll":20.4375},"location":"Left Knee"},{"euler":{"heading":146.0,"pitch":-155.3125,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":112.1875,"pitch":44.1875,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":335.5,"pitch":-137.75,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":134.1875,"pitch":98.375,"roll":42.9375},"location":"Right Knee"},{"euler":{"heading":59.4375,"pitch":-129.9375,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:53.906"} +{"sensors":[{"euler":{"heading":178.875,"pitch":147.625,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":124.375,"pitch":169.6875,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":108.0625,"pitch":38.4375,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":336.3125,"pitch":-136.5625,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":136.3125,"pitch":99.5625,"roll":46.5625},"location":"Right Knee"},{"euler":{"heading":52.625,"pitch":-125.9375,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:54.7"} +{"sensors":[{"euler":{"heading":193.5625,"pitch":168.25,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":81.75,"pitch":114.875,"roll":46.1875},"location":"Left Ankle"},{"euler":{"heading":103.625,"pitch":31.9375,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":336.375,"pitch":-137.8125,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":140.125,"pitch":101.5625,"roll":50.9375},"location":"Right Knee"},{"euler":{"heading":36.375,"pitch":-130.75,"roll":43.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:54.108"} +{"sensors":[{"euler":{"heading":204.5625,"pitch":-179.875,"roll":44.5},"location":"Left Knee"},{"euler":{"heading":66.125,"pitch":105.4375,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":98.0,"pitch":21.0,"roll":61.8125},"location":"Right Ankle"},{"euler":{"heading":336.125,"pitch":-140.5625,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":145.4375,"pitch":106.6875,"roll":56.625},"location":"Right Knee"},{"euler":{"heading":61.5,"pitch":-132.1875,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:54.209"} +{"sensors":[{"euler":{"heading":219.9375,"pitch":173.0625,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":81.25,"pitch":113.6875,"roll":39.125},"location":"Left Ankle"},{"euler":{"heading":92.125,"pitch":1.3125,"roll":60.8125},"location":"Right Ankle"},{"euler":{"heading":336.8125,"pitch":-147.75,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":157.4375,"pitch":121.0,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":67.8125,"pitch":-135.125,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:54.310"} +{"sensors":[{"euler":{"heading":232.375,"pitch":164.375,"roll":44.0625},"location":"Left Knee"},{"euler":{"heading":88.875,"pitch":115.25,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":-25.0625,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":344.0625,"pitch":-141.25,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":172.125,"pitch":140.375,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":65.875,"pitch":-135.5625,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:54.411"} +{"sensors":[{"euler":{"heading":244.4375,"pitch":157.5,"roll":44.75},"location":"Left Knee"},{"euler":{"heading":97.75,"pitch":116.8125,"roll":50.4375},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":-25.75,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":353.3125,"pitch":-130.375,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":176.875,"pitch":140.6875,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":72.1875,"pitch":-141.125,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:54.512"} +{"sensors":[{"euler":{"heading":254.5625,"pitch":150.9375,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":108.6875,"pitch":121.1875,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":106.875,"pitch":14.375,"roll":64.6875},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-126.8125,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":164.8125,"pitch":118.0625,"roll":59.0},"location":"Right Knee"},{"euler":{"heading":77.6875,"pitch":-147.3125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:54.613"} +{"sensors":[{"euler":{"heading":263.8125,"pitch":145.0625,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":113.25,"pitch":124.375,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":124.5625,"pitch":47.0625,"roll":59.375},"location":"Right Ankle"},{"euler":{"heading":357.3125,"pitch":-130.25,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":145.0625,"pitch":110.0,"roll":40.6875},"location":"Right Knee"},{"euler":{"heading":81.875,"pitch":-152.8125,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:54.714"} +{"sensors":[{"euler":{"heading":271.3125,"pitch":139.6875,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":121.0,"pitch":132.4375,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":138.625,"pitch":57.4375,"roll":48.5625},"location":"Right Ankle"},{"euler":{"heading":348.5,"pitch":-135.5,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":134.75,"pitch":107.8125,"roll":31.3125},"location":"Right Knee"},{"euler":{"heading":84.0,"pitch":-157.0625,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:54.815"} +{"sensors":[{"euler":{"heading":277.8125,"pitch":135.625,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":124.4375,"pitch":146.4375,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":127.8125,"pitch":53.3125,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":343.3125,"pitch":-137.75,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":135.1875,"pitch":103.0625,"roll":35.375},"location":"Right Knee"},{"euler":{"heading":86.625,"pitch":-158.5625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:54.916"} +{"sensors":[{"euler":{"heading":289.125,"pitch":133.8125,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":140.4375,"pitch":-176.8125,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":120.25,"pitch":45.6875,"roll":57.8125},"location":"Right Ankle"},{"euler":{"heading":340.8125,"pitch":-138.8125,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":137.875,"pitch":102.6875,"roll":41.1875},"location":"Right Knee"},{"euler":{"heading":71.0,"pitch":-140.4375,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:55.16"} +{"sensors":[{"euler":{"heading":289.4375,"pitch":136.0,"roll":22.4375},"location":"Left Knee"},{"euler":{"heading":138.4375,"pitch":-174.0,"roll":63.625},"location":"Left Ankle"},{"euler":{"heading":115.9375,"pitch":42.875,"roll":58.3125},"location":"Right Ankle"},{"euler":{"heading":337.3125,"pitch":-138.0,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":137.1875,"pitch":100.5625,"roll":44.4375},"location":"Right Knee"},{"euler":{"heading":59.9375,"pitch":-129.375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:55.118"} +{"sensors":[{"euler":{"heading":180.8125,"pitch":149.375,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":119.9375,"pitch":151.5625,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":112.5,"pitch":38.3125,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":335.375,"pitch":-138.125,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":138.875,"pitch":101.5,"roll":47.4375},"location":"Right Knee"},{"euler":{"heading":54.4375,"pitch":-124.9375,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:55.218"} +{"sensors":[{"euler":{"heading":193.625,"pitch":167.1875,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":86.3125,"pitch":114.3125,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":108.5,"pitch":33.5625,"roll":60.5},"location":"Right Ankle"},{"euler":{"heading":334.875,"pitch":-139.75,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":143.25,"pitch":103.0,"roll":52.9375},"location":"Right Knee"},{"euler":{"heading":54.875,"pitch":-125.4375,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:55.320"} +{"sensors":[{"euler":{"heading":205.375,"pitch":178.25,"roll":43.8125},"location":"Left Knee"},{"euler":{"heading":70.75,"pitch":106.6875,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":102.875,"pitch":24.1875,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":334.875,"pitch":-143.6875,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":148.9375,"pitch":110.0,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":63.5625,"pitch":-131.6875,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:55.420"} +{"sensors":[{"euler":{"heading":209.1875,"pitch":171.625,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":87.0625,"pitch":115.8125,"roll":39.25},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":5.5625,"roll":62.9375},"location":"Right Ankle"},{"euler":{"heading":336.6875,"pitch":-149.75,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":161.8125,"pitch":125.5625,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":68.1875,"pitch":-133.5625,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:55.521"} +{"sensors":[{"euler":{"heading":234.75,"pitch":163.6875,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":96.25,"pitch":117.0625,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":-24.9375,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":344.5,"pitch":-143.125,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":149.375,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":64.1875,"pitch":-131.4375,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:55.622"} +{"sensors":[{"euler":{"heading":240.5625,"pitch":157.75,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":118.625,"roll":51.25},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":-29.4375,"roll":60.625},"location":"Right Ankle"},{"euler":{"heading":352.6875,"pitch":-132.375,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":182.3125,"pitch":146.0,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":66.75,"pitch":-135.3125,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:55.723"} +{"sensors":[{"euler":{"heading":243.125,"pitch":154.0,"roll":43.625},"location":"Left Knee"},{"euler":{"heading":111.0,"pitch":124.4375,"roll":57.75},"location":"Left Ankle"},{"euler":{"heading":100.125,"pitch":7.875,"roll":65.6875},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-129.125,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":168.375,"pitch":115.9375,"roll":63.0},"location":"Right Knee"},{"euler":{"heading":70.3125,"pitch":-141.375,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:55.824"} +{"sensors":[{"euler":{"heading":248.8125,"pitch":150.0,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":111.75,"pitch":124.875,"roll":59.375},"location":"Left Ankle"},{"euler":{"heading":116.875,"pitch":45.8125,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":358.0,"pitch":-131.0625,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":147.8125,"pitch":106.25,"roll":44.5},"location":"Right Knee"},{"euler":{"heading":74.0,"pitch":-148.5,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:55.925"} +{"sensors":[{"euler":{"heading":259.0,"pitch":144.125,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":118.5,"pitch":129.375,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":136.6875,"pitch":58.375,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":349.4375,"pitch":-134.5,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":134.875,"pitch":106.0625,"roll":31.75},"location":"Right Knee"},{"euler":{"heading":77.125,"pitch":-153.0625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:56.26"} +{"sensors":[{"euler":{"heading":268.3125,"pitch":138.5625,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":126.6875,"pitch":141.5625,"roll":67.3125},"location":"Left Ankle"},{"euler":{"heading":134.6875,"pitch":56.375,"roll":49.5625},"location":"Right Ankle"},{"euler":{"heading":343.9375,"pitch":-136.125,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":133.0625,"pitch":103.375,"roll":32.1875},"location":"Right Knee"},{"euler":{"heading":80.5,"pitch":-158.25,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:56.126"} +{"sensors":[{"euler":{"heading":277.9375,"pitch":134.25,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":134.6875,"pitch":178.4375,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":124.5625,"pitch":51.0,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":340.75,"pitch":-137.4375,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":133.625,"pitch":99.5,"roll":37.3125},"location":"Right Knee"},{"euler":{"heading":79.6875,"pitch":-153.5,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:56.227"} +{"sensors":[{"euler":{"heading":293.125,"pitch":132.1875,"roll":21.1875},"location":"Left Knee"},{"euler":{"heading":154.0625,"pitch":-151.125,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":118.5,"pitch":46.25,"roll":55.625},"location":"Right Ankle"},{"euler":{"heading":334.9375,"pitch":-138.9375,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":133.75,"pitch":99.875,"roll":41.0},"location":"Right Knee"},{"euler":{"heading":64.75,"pitch":-131.875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:56.328"} +{"sensors":[{"euler":{"heading":173.625,"pitch":141.6875,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":141.8125,"pitch":-170.0,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":114.125,"pitch":40.375,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":336.5625,"pitch":-137.6875,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":136.875,"pitch":101.4375,"roll":45.375},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-126.125,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:56.429"} +{"sensors":[{"euler":{"heading":187.4375,"pitch":159.8125,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":102.125,"pitch":124.9375,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":110.6875,"pitch":35.8125,"roll":59.125},"location":"Right Ankle"},{"euler":{"heading":337.0625,"pitch":-138.0625,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":141.125,"pitch":104.0,"roll":49.5625},"location":"Right Knee"},{"euler":{"heading":55.125,"pitch":-124.4375,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:56.529"} +{"sensors":[{"euler":{"heading":203.3125,"pitch":177.125,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":72.5,"pitch":107.5625,"roll":34.625},"location":"Left Ankle"},{"euler":{"heading":105.375,"pitch":28.8125,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":337.75,"pitch":-139.125,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":145.75,"pitch":108.3125,"roll":54.5},"location":"Right Knee"},{"euler":{"heading":61.375,"pitch":-129.8125,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:56.630"} +{"sensors":[{"euler":{"heading":208.0,"pitch":176.375,"roll":42.0},"location":"Left Knee"},{"euler":{"heading":77.6875,"pitch":113.6875,"roll":34.9375},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":13.0,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":338.8125,"pitch":-142.0625,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":155.1875,"pitch":117.0,"roll":60.875},"location":"Right Knee"},{"euler":{"heading":67.5625,"pitch":-134.1875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:56.731"} +{"sensors":[{"euler":{"heading":206.25,"pitch":167.25,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":92.1875,"pitch":116.5625,"roll":44.8125},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":-13.625,"roll":61.3125},"location":"Right Ankle"},{"euler":{"heading":342.1875,"pitch":-141.5,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":170.3125,"pitch":139.125,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":68.3125,"pitch":-134.875,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:56.831"} +{"sensors":[{"euler":{"heading":244.3125,"pitch":159.5625,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":116.8125,"roll":49.5},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":-28.25,"roll":59.875},"location":"Right Ankle"},{"euler":{"heading":351.75,"pitch":-132.625,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":179.9375,"pitch":149.4375,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":72.8125,"pitch":-139.25,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:56.932"} +{"sensors":[{"euler":{"heading":250.6875,"pitch":154.0,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":106.75,"pitch":119.625,"roll":53.4375},"location":"Left Ankle"},{"euler":{"heading":101.0,"pitch":-3.125,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":359.6875,"pitch":-128.625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":170.0625,"pitch":125.6875,"roll":63.5625},"location":"Right Knee"},{"euler":{"heading":76.1875,"pitch":-143.875,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:57.33"} +{"sensors":[{"euler":{"heading":257.875,"pitch":148.75,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":110.5,"pitch":122.5625,"roll":56.3125},"location":"Left Ankle"},{"euler":{"heading":121.125,"pitch":36.375,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":0.375,"pitch":-129.6875,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":153.5,"pitch":113.5625,"roll":47.75},"location":"Right Knee"},{"euler":{"heading":79.125,"pitch":-149.125,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:57.134"} +{"sensors":[{"euler":{"heading":263.4375,"pitch":144.1875,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":115.25,"pitch":127.8125,"roll":59.625},"location":"Left Ankle"},{"euler":{"heading":135.1875,"pitch":56.9375,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":354.375,"pitch":-133.0,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":137.8125,"pitch":107.4375,"roll":33.625},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-154.0625,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:57.234"} +{"sensors":[{"euler":{"heading":269.5625,"pitch":139.9375,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":121.3125,"pitch":137.3125,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":138.8125,"pitch":61.4375,"roll":45.9375},"location":"Right Ankle"},{"euler":{"heading":344.0,"pitch":-136.8125,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":130.5,"pitch":101.8125,"roll":29.75},"location":"Right Knee"},{"euler":{"heading":80.9375,"pitch":-158.5,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:57.335"} +{"sensors":[{"euler":{"heading":277.6875,"pitch":136.6875,"roll":28.25},"location":"Left Knee"},{"euler":{"heading":126.9375,"pitch":161.0,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":128.0,"pitch":52.5625,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":340.4375,"pitch":-138.5625,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":133.0,"pitch":101.4375,"roll":35.6875},"location":"Right Knee"},{"euler":{"heading":80.9375,"pitch":-158.5625,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:57.436"} +{"sensors":[{"euler":{"heading":297.5625,"pitch":132.4375,"roll":19.875},"location":"Left Knee"},{"euler":{"heading":151.75,"pitch":-159.75,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":121.5625,"pitch":47.875,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":338.0625,"pitch":-138.625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":134.1875,"pitch":101.4375,"roll":40.125},"location":"Right Knee"},{"euler":{"heading":68.5625,"pitch":-137.375,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:57.537"} +{"sensors":[{"euler":{"heading":172.25,"pitch":140.375,"roll":22.1875},"location":"Left Knee"},{"euler":{"heading":142.5,"pitch":-165.375,"roll":64.0625},"location":"Left Ankle"},{"euler":{"heading":115.6875,"pitch":43.5,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":337.125,"pitch":-137.0,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":135.5,"pitch":100.875,"roll":43.75},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-128.5,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:57.637"} +{"sensors":[{"euler":{"heading":184.1875,"pitch":155.125,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":110.3125,"pitch":138.1875,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":110.625,"pitch":39.9375,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":336.875,"pitch":-135.8125,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":136.875,"pitch":100.75,"roll":47.0625},"location":"Right Knee"},{"euler":{"heading":54.375,"pitch":-125.0,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:57.738"} +{"sensors":[{"euler":{"heading":196.75,"pitch":173.6875,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":74.8125,"pitch":108.5625,"roll":40.6875},"location":"Left Ankle"},{"euler":{"heading":105.875,"pitch":33.5625,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":337.4375,"pitch":-136.5625,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":140.375,"pitch":103.1875,"roll":51.8125},"location":"Right Knee"},{"euler":{"heading":54.25,"pitch":-129.3125,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:57.839"} +{"sensors":[{"euler":{"heading":208.9375,"pitch":-179.5625,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":68.875,"pitch":107.9375,"roll":30.3125},"location":"Left Ankle"},{"euler":{"heading":101.375,"pitch":22.3125,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":339.3125,"pitch":-141.4375,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":149.125,"pitch":111.625,"roll":57.6875},"location":"Right Knee"},{"euler":{"heading":64.625,"pitch":-132.75,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:57.939"} +{"sensors":[{"euler":{"heading":210.3125,"pitch":173.0,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":85.1875,"pitch":115.9375,"roll":37.8125},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":0.125,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":340.6875,"pitch":-147.375,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":162.8125,"pitch":128.5,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":71.625,"pitch":-136.0625,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:58.40"} +{"sensors":[{"euler":{"heading":238.0625,"pitch":164.25,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":95.8125,"pitch":116.75,"roll":45.625},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":-25.125,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":347.1875,"pitch":-139.8125,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":175.0625,"pitch":147.0625,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":69.625,"pitch":-135.8125,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:58.140"} +{"sensors":[{"euler":{"heading":337.6875,"pitch":157.625,"roll":45.0},"location":"Left Knee"},{"euler":{"heading":104.6875,"pitch":117.9375,"roll":50.5625},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":-23.9375,"roll":62.0},"location":"Right Ankle"},{"euler":{"heading":354.75,"pitch":-131.125,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":137.1875,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":74.6875,"pitch":-140.75,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:58.240"} +{"sensors":[{"euler":{"heading":255.25,"pitch":151.9375,"roll":44.5},"location":"Left Knee"},{"euler":{"heading":111.6875,"pitch":121.1875,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":108.9375,"pitch":17.625,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":359.875,"pitch":-128.25,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":161.0625,"pitch":115.5,"roll":56.375},"location":"Right Knee"},{"euler":{"heading":77.9375,"pitch":-145.1875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:58.340"} +{"sensors":[{"euler":{"heading":261.1875,"pitch":147.0,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":112.0,"pitch":124.5625,"roll":56.625},"location":"Left Ankle"},{"euler":{"heading":124.5,"pitch":46.0,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":356.625,"pitch":-131.75,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":141.5,"pitch":108.9375,"roll":38.8125},"location":"Right Knee"},{"euler":{"heading":79.625,"pitch":-149.5,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:58.441"} +{"sensors":[{"euler":{"heading":265.0625,"pitch":143.0,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":117.5625,"pitch":129.9375,"roll":60.4375},"location":"Left Ankle"},{"euler":{"heading":139.375,"pitch":55.1875,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":348.6875,"pitch":-134.75,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":131.1875,"pitch":108.5,"roll":29.8125},"location":"Right Knee"},{"euler":{"heading":79.5625,"pitch":-153.4375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:58.541"} +{"sensors":[{"euler":{"heading":270.25,"pitch":139.1875,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":122.0,"pitch":141.1875,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":131.0,"pitch":55.9375,"roll":49.875},"location":"Right Ankle"},{"euler":{"heading":341.6875,"pitch":-136.1875,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":129.875,"pitch":101.875,"roll":32.9375},"location":"Right Knee"},{"euler":{"heading":80.0625,"pitch":-157.6875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:58.641"} +{"sensors":[{"euler":{"heading":278.375,"pitch":136.625,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":136.8125,"pitch":-163.6875,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":121.5,"pitch":47.8125,"roll":54.6875},"location":"Right Ankle"},{"euler":{"heading":341.375,"pitch":-136.375,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":132.0625,"pitch":101.0,"roll":38.1875},"location":"Right Knee"},{"euler":{"heading":73.9375,"pitch":-148.0,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:58.742"} +{"sensors":[{"euler":{"heading":289.9375,"pitch":136.75,"roll":21.0},"location":"Left Knee"},{"euler":{"heading":144.125,"pitch":-163.6875,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":118.25,"pitch":41.5625,"roll":55.9375},"location":"Right Ankle"},{"euler":{"heading":335.6875,"pitch":-138.5625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":135.5625,"pitch":103.6875,"roll":42.6875},"location":"Right Knee"},{"euler":{"heading":63.3125,"pitch":-131.375,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:58.843"} +{"sensors":[{"euler":{"heading":176.25,"pitch":146.25,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":112.3125,"pitch":167.625,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":114.9375,"pitch":36.375,"roll":56.5},"location":"Right Ankle"},{"euler":{"heading":336.375,"pitch":-138.1875,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":137.75,"pitch":106.1875,"roll":46.125},"location":"Right Knee"},{"euler":{"heading":55.875,"pitch":-126.875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:58.943"} +{"sensors":[{"euler":{"heading":189.6875,"pitch":162.375,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":88.5625,"pitch":119.375,"roll":49.375},"location":"Left Ankle"},{"euler":{"heading":110.6875,"pitch":33.625,"roll":58.375},"location":"Right Ankle"},{"euler":{"heading":337.0,"pitch":-138.25,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":141.125,"pitch":106.75,"roll":50.25},"location":"Right Knee"},{"euler":{"heading":53.4375,"pitch":-125.0,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:59.44"} +{"sensors":[{"euler":{"heading":203.0625,"pitch":177.375,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":69.375,"pitch":106.5625,"roll":33.0},"location":"Left Ankle"},{"euler":{"heading":105.0625,"pitch":25.25,"roll":59.5},"location":"Right Ankle"},{"euler":{"heading":337.25,"pitch":-140.1875,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":146.6875,"pitch":111.4375,"roll":55.125},"location":"Right Knee"},{"euler":{"heading":58.5625,"pitch":-128.625,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:59.145"} +{"sensors":[{"euler":{"heading":207.875,"pitch":173.9375,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":81.4375,"pitch":114.125,"roll":37.1875},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":12.125,"roll":60.4375},"location":"Right Ankle"},{"euler":{"heading":338.25,"pitch":-145.6875,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":155.375,"pitch":122.75,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":66.625,"pitch":-133.1875,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:59.245"} +{"sensors":[{"euler":{"heading":236.75,"pitch":165.0625,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":95.625,"pitch":118.0,"roll":45.625},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":-8.625,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":341.6875,"pitch":-144.125,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":169.625,"pitch":137.0625,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":66.8125,"pitch":-133.9375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:59.345"} +{"sensors":[{"euler":{"heading":249.25,"pitch":157.5,"roll":43.75},"location":"Left Knee"},{"euler":{"heading":104.1875,"pitch":118.75,"roll":50.3125},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":-16.0,"roll":62.0},"location":"Right Ankle"},{"euler":{"heading":349.8125,"pitch":-133.125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":175.1875,"pitch":137.75,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":72.0,"pitch":-138.1875,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:59.446"} +{"sensors":[{"euler":{"heading":255.125,"pitch":152.0,"roll":43.875},"location":"Left Knee"},{"euler":{"heading":110.4375,"pitch":121.3125,"roll":54.0625},"location":"Left Ankle"},{"euler":{"heading":105.75,"pitch":11.875,"roll":62.875},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-128.5,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":122.0,"roll":59.25},"location":"Right Knee"},{"euler":{"heading":75.875,"pitch":-144.0,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:59.546"} +{"sensors":[{"euler":{"heading":260.4375,"pitch":147.375,"roll":42.3125},"location":"Left Knee"},{"euler":{"heading":110.625,"pitch":123.8125,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":122.1875,"pitch":41.3125,"roll":59.6875},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":-131.5,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":147.1875,"pitch":112.75,"roll":41.0},"location":"Right Knee"},{"euler":{"heading":78.125,"pitch":-149.0,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:59.647"} +{"sensors":[{"euler":{"heading":263.875,"pitch":143.8125,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":113.6875,"pitch":127.4375,"roll":58.9375},"location":"Left Ankle"},{"euler":{"heading":139.0,"pitch":53.5625,"roll":47.625},"location":"Right Ankle"},{"euler":{"heading":349.0625,"pitch":-135.1875,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":131.875,"pitch":109.5,"roll":29.0},"location":"Right Knee"},{"euler":{"heading":77.5,"pitch":-153.6875,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:59.748"} +{"sensors":[{"euler":{"heading":266.9375,"pitch":140.8125,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":118.625,"pitch":137.25,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":133.3125,"pitch":54.0625,"roll":49.4375},"location":"Right Ankle"},{"euler":{"heading":342.75,"pitch":-136.375,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":130.875,"pitch":104.0,"roll":30.875},"location":"Right Knee"},{"euler":{"heading":76.875,"pitch":-157.875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:59.848"} +{"sensors":[{"euler":{"heading":274.5625,"pitch":137.5,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":129.1875,"pitch":172.625,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":122.1875,"pitch":44.0625,"roll":55.0625},"location":"Right Ankle"},{"euler":{"heading":342.6875,"pitch":-136.6875,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":133.0625,"pitch":102.6875,"roll":36.5625},"location":"Right Knee"},{"euler":{"heading":73.5,"pitch":-151.1875,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:12:59.949"} +{"sensors":[{"euler":{"heading":293.625,"pitch":134.5625,"roll":19.5625},"location":"Left Knee"},{"euler":{"heading":143.0625,"pitch":-158.6875,"roll":62.0},"location":"Left Ankle"},{"euler":{"heading":117.875,"pitch":37.9375,"roll":56.5},"location":"Right Ankle"},{"euler":{"heading":337.3125,"pitch":-138.75,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":135.875,"pitch":106.0,"roll":40.875},"location":"Right Knee"},{"euler":{"heading":58.125,"pitch":-128.1875,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:00.50"} +{"sensors":[{"euler":{"heading":171.875,"pitch":143.5625,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":140.375,"pitch":-167.4375,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":114.9375,"pitch":31.75,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":339.625,"pitch":-136.8125,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":139.0625,"pitch":109.1875,"roll":44.875},"location":"Right Knee"},{"euler":{"heading":52.0,"pitch":-124.1875,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:00.151"} +{"sensors":[{"euler":{"heading":186.4375,"pitch":159.4375,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":100.1875,"pitch":123.9375,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":28.75,"roll":57.8125},"location":"Right Ankle"},{"euler":{"heading":340.0625,"pitch":-138.1875,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":142.8125,"pitch":111.5,"roll":48.4375},"location":"Right Knee"},{"euler":{"heading":51.0625,"pitch":-122.8125,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:00.252"} +{"sensors":[{"euler":{"heading":201.375,"pitch":175.8125,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":74.4375,"pitch":107.75,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":107.0,"pitch":21.625,"roll":59.5625},"location":"Right Ankle"},{"euler":{"heading":339.625,"pitch":-140.375,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":146.6875,"pitch":114.4375,"roll":52.5},"location":"Right Knee"},{"euler":{"heading":55.3125,"pitch":-125.4375,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:00.353"} +{"sensors":[{"euler":{"heading":207.4375,"pitch":-179.9375,"roll":44.3125},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":107.6875,"roll":33.5625},"location":"Left Ankle"},{"euler":{"heading":101.25,"pitch":10.4375,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":339.75,"pitch":-144.3125,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":155.0,"pitch":122.6875,"roll":58.1875},"location":"Right Knee"},{"euler":{"heading":64.0,"pitch":-131.5,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:00.455"} +{"sensors":[{"euler":{"heading":228.5,"pitch":169.3125,"roll":44.0625},"location":"Left Knee"},{"euler":{"heading":91.375,"pitch":114.8125,"roll":43.6875},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":-8.625,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":340.9375,"pitch":-145.6875,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":166.8125,"pitch":136.25,"roll":65.1875},"location":"Right Knee"},{"euler":{"heading":66.875,"pitch":-133.1875,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:00.556"} +{"sensors":[{"euler":{"heading":329.375,"pitch":161.75,"roll":45.0},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":114.0,"roll":47.875},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-26.625,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":350.3125,"pitch":-134.4375,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":172.875,"pitch":136.5625,"roll":72.6875},"location":"Right Knee"},{"euler":{"heading":71.0625,"pitch":-137.5,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:00.657"} +{"sensors":[{"euler":{"heading":335.75,"pitch":156.125,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":103.9375,"pitch":115.875,"roll":51.5625},"location":"Left Ankle"},{"euler":{"heading":93.875,"pitch":-3.5625,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":357.375,"pitch":-128.4375,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":166.9375,"pitch":121.625,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":75.0625,"pitch":-143.8125,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:00.758"} +{"sensors":[{"euler":{"heading":344.6875,"pitch":149.9375,"roll":45.125},"location":"Left Knee"},{"euler":{"heading":108.6875,"pitch":117.75,"roll":54.3125},"location":"Left Ankle"},{"euler":{"heading":117.25,"pitch":40.125,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":-128.3125,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":150.6875,"pitch":112.0625,"roll":46.125},"location":"Right Knee"},{"euler":{"heading":79.3125,"pitch":-150.1875,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:00.858"} +{"sensors":[{"euler":{"heading":263.25,"pitch":144.3125,"roll":42.125},"location":"Left Knee"},{"euler":{"heading":114.0,"pitch":123.6875,"roll":57.75},"location":"Left Ankle"},{"euler":{"heading":133.25,"pitch":54.0625,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":352.6875,"pitch":-133.0625,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":135.875,"pitch":107.9375,"roll":31.375},"location":"Right Knee"},{"euler":{"heading":79.0,"pitch":-153.1875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:00.959"} +{"sensors":[{"euler":{"heading":268.5,"pitch":139.8125,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":120.125,"pitch":134.5625,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":135.375,"pitch":56.5,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":342.375,"pitch":-137.375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":131.1875,"pitch":103.3125,"roll":29.5625},"location":"Right Knee"},{"euler":{"heading":77.875,"pitch":-154.75,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:01.59"} +{"sensors":[{"euler":{"heading":277.1875,"pitch":135.375,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":163.0,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":124.1875,"pitch":48.75,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":339.75,"pitch":-138.75,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":132.0625,"pitch":101.0,"roll":35.375},"location":"Right Knee"},{"euler":{"heading":75.0,"pitch":-148.5,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:01.160"} +{"sensors":[{"euler":{"heading":293.5625,"pitch":133.4375,"roll":21.375},"location":"Left Knee"},{"euler":{"heading":146.8125,"pitch":-160.6875,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":119.4375,"pitch":42.375,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":335.5,"pitch":-140.375,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":133.8125,"pitch":102.375,"roll":39.875},"location":"Right Knee"},{"euler":{"heading":60.375,"pitch":-129.375,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:01.261"} +{"sensors":[{"euler":{"heading":174.0625,"pitch":142.5,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":-169.1875,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":115.75,"pitch":35.875,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":336.6875,"pitch":-139.9375,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":137.0,"pitch":105.625,"roll":44.125},"location":"Right Knee"},{"euler":{"heading":52.9375,"pitch":-124.125,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:01.368"} +{"sensors":[{"euler":{"heading":189.0625,"pitch":159.125,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":96.375,"pitch":125.6875,"roll":53.5},"location":"Left Ankle"},{"euler":{"heading":112.25,"pitch":31.75,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":337.8125,"pitch":-139.9375,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":140.875,"pitch":107.9375,"roll":48.0},"location":"Right Knee"},{"euler":{"heading":52.5625,"pitch":-124.3125,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:01.468"} +{"sensors":[{"euler":{"heading":205.125,"pitch":178.9375,"roll":42.6875},"location":"Left Knee"},{"euler":{"heading":70.1875,"pitch":109.0625,"roll":32.75},"location":"Left Ankle"},{"euler":{"heading":106.625,"pitch":24.375,"roll":59.8125},"location":"Right Ankle"},{"euler":{"heading":337.5,"pitch":-141.625,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":145.0625,"pitch":110.875,"roll":52.75},"location":"Right Knee"},{"euler":{"heading":57.6875,"pitch":-129.125,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:01.569"} +{"sensors":[{"euler":{"heading":207.5625,"pitch":179.6875,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":70.8125,"pitch":107.6875,"roll":31.9375},"location":"Left Ankle"},{"euler":{"heading":100.0625,"pitch":13.0,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":338.0625,"pitch":-147.5625,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":118.8125,"roll":59.125},"location":"Right Knee"},{"euler":{"heading":63.3125,"pitch":-131.875,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:01.670"} +{"sensors":[{"euler":{"heading":208.5625,"pitch":167.75,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":90.6875,"pitch":115.5,"roll":42.75},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":-8.875,"roll":59.875},"location":"Right Ankle"},{"euler":{"heading":341.6875,"pitch":-147.625,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":167.9375,"pitch":137.5,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":67.25,"pitch":-133.6875,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:01.771"} +{"sensors":[{"euler":{"heading":246.25,"pitch":159.625,"roll":44.25},"location":"Left Knee"},{"euler":{"heading":99.0,"pitch":116.4375,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-36.8125,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":352.3125,"pitch":-134.5625,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":179.625,"pitch":155.9375,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":71.8125,"pitch":-136.625,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:01.872"} +{"sensors":[{"euler":{"heading":341.9375,"pitch":153.6875,"roll":45.25},"location":"Left Knee"},{"euler":{"heading":107.1875,"pitch":118.625,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":-25.75,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":2.5625,"pitch":-129.375,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":173.4375,"pitch":132.5,"roll":65.0625},"location":"Right Knee"},{"euler":{"heading":75.75,"pitch":-141.8125,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:01.973"} +{"sensors":[{"euler":{"heading":257.5,"pitch":148.8125,"roll":43.8125},"location":"Left Knee"},{"euler":{"heading":112.1875,"pitch":122.25,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":111.375,"pitch":24.3125,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":2.625,"pitch":-129.5,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":155.5625,"pitch":114.4375,"roll":47.375},"location":"Right Knee"},{"euler":{"heading":76.6875,"pitch":-145.4375,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:02.74"} +{"sensors":[{"euler":{"heading":263.0625,"pitch":144.4375,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":114.5625,"pitch":125.6875,"roll":58.5625},"location":"Left Ankle"},{"euler":{"heading":129.0,"pitch":51.625,"roll":54.8125},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-133.3125,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":136.8125,"pitch":108.8125,"roll":31.375},"location":"Right Knee"},{"euler":{"heading":77.125,"pitch":-149.6875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:02.174"} +{"sensors":[{"euler":{"heading":266.5625,"pitch":140.6875,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":120.625,"pitch":132.5,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":140.0,"pitch":55.3125,"roll":47.4375},"location":"Right Ankle"},{"euler":{"heading":346.5,"pitch":-137.0,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":128.0,"pitch":107.375,"roll":25.6875},"location":"Right Knee"},{"euler":{"heading":77.3125,"pitch":-154.125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:02.275"} +{"sensors":[{"euler":{"heading":272.75,"pitch":137.0625,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":125.8125,"pitch":150.6875,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":130.3125,"pitch":51.6875,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":340.1875,"pitch":-139.4375,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":129.75,"pitch":104.125,"roll":31.125},"location":"Right Knee"},{"euler":{"heading":79.0,"pitch":-156.9375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:02.375"} +{"sensors":[{"euler":{"heading":288.8125,"pitch":133.375,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":147.4375,"pitch":-156.4375,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":120.8125,"pitch":44.4375,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":340.1875,"pitch":-138.9375,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":131.625,"pitch":102.875,"roll":36.875},"location":"Right Knee"},{"euler":{"heading":68.625,"pitch":-140.875,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:02.476"} +{"sensors":[{"euler":{"heading":291.375,"pitch":136.8125,"roll":20.125},"location":"Left Knee"},{"euler":{"heading":146.375,"pitch":-154.3125,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":115.6875,"pitch":40.125,"roll":57.125},"location":"Right Ankle"},{"euler":{"heading":336.5,"pitch":-138.4375,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":131.9375,"pitch":101.75,"roll":40.0625},"location":"Right Knee"},{"euler":{"heading":58.4375,"pitch":-125.5625,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:02.577"} +{"sensors":[{"euler":{"heading":180.0,"pitch":147.875,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":118.875,"pitch":151.875,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":111.5,"pitch":36.0625,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":335.75,"pitch":-136.9375,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":133.1875,"pitch":101.8125,"roll":43.25},"location":"Right Knee"},{"euler":{"heading":52.9375,"pitch":-122.875,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:02.678"} +{"sensors":[{"euler":{"heading":195.4375,"pitch":167.6875,"roll":40.875},"location":"Left Knee"},{"euler":{"heading":81.5625,"pitch":114.375,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":107.8125,"pitch":30.875,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":336.625,"pitch":-139.1875,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":138.1875,"pitch":104.875,"roll":47.9375},"location":"Right Knee"},{"euler":{"heading":54.9375,"pitch":-124.875,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:02.778"} +{"sensors":[{"euler":{"heading":207.6875,"pitch":179.8125,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":67.375,"pitch":106.8125,"roll":30.0},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":21.0,"roll":60.5},"location":"Right Ankle"},{"euler":{"heading":337.3125,"pitch":-141.75,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":143.0625,"pitch":110.6875,"roll":53.125},"location":"Right Knee"},{"euler":{"heading":62.9375,"pitch":-131.875,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:02.879"} +{"sensors":[{"euler":{"heading":209.0625,"pitch":172.75,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":83.0,"pitch":114.5,"roll":37.1875},"location":"Left Ankle"},{"euler":{"heading":96.5,"pitch":5.125,"roll":61.8125},"location":"Right Ankle"},{"euler":{"heading":338.3125,"pitch":-148.1875,"roll":69.9375},"location":"Right Hip"},{"euler":{"heading":156.125,"pitch":123.25,"roll":60.0},"location":"Right Knee"},{"euler":{"heading":69.875,"pitch":-135.375,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:02.980"} +{"sensors":[{"euler":{"heading":236.9375,"pitch":164.875,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":114.75,"roll":43.8125},"location":"Left Ankle"},{"euler":{"heading":83.5625,"pitch":-21.6875,"roll":61.5},"location":"Right Ankle"},{"euler":{"heading":344.5,"pitch":-142.125,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":167.4375,"pitch":131.75,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":70.6875,"pitch":-138.0625,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:03.80"} +{"sensors":[{"euler":{"heading":245.625,"pitch":157.875,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":116.875,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":87.9375,"pitch":-21.6875,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":352.875,"pitch":-131.125,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":171.8125,"pitch":129.9375,"roll":68.125},"location":"Right Knee"},{"euler":{"heading":74.5,"pitch":-142.125,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:03.181"} +{"sensors":[{"euler":{"heading":252.8125,"pitch":152.375,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":107.625,"pitch":121.8125,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":107.625,"pitch":12.5625,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":0.0625,"pitch":-128.125,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":162.5625,"pitch":118.625,"roll":55.1875},"location":"Right Knee"},{"euler":{"heading":77.125,"pitch":-145.6875,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:03.282"} +{"sensors":[{"euler":{"heading":259.9375,"pitch":147.375,"roll":42.0625},"location":"Left Knee"},{"euler":{"heading":109.5,"pitch":123.1875,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":123.3125,"pitch":41.5,"roll":60.625},"location":"Right Ankle"},{"euler":{"heading":358.1875,"pitch":-132.0625,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":142.4375,"pitch":112.0625,"roll":38.0625},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-151.625,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:03.382"} +{"sensors":[{"euler":{"heading":265.1875,"pitch":143.375,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":129.0625,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":138.5,"pitch":53.125,"roll":49.0625},"location":"Right Ankle"},{"euler":{"heading":349.6875,"pitch":-136.0625,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":130.5,"pitch":110.1875,"roll":27.5625},"location":"Right Knee"},{"euler":{"heading":80.75,"pitch":-156.375,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:03.484"} +{"sensors":[{"euler":{"heading":272.5625,"pitch":139.1875,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":121.0625,"pitch":141.4375,"roll":64.0625},"location":"Left Ankle"},{"euler":{"heading":131.625,"pitch":52.8125,"roll":51.5625},"location":"Right Ankle"},{"euler":{"heading":342.0625,"pitch":-138.4375,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":130.5,"pitch":103.6875,"roll":30.75},"location":"Right Knee"},{"euler":{"heading":82.125,"pitch":-160.4375,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:03.584"} +{"sensors":[{"euler":{"heading":283.1875,"pitch":135.875,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":133.0625,"pitch":178.8125,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":122.1875,"pitch":44.25,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":342.0625,"pitch":-138.875,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":131.375,"pitch":103.75,"roll":34.9375},"location":"Right Knee"},{"euler":{"heading":76.375,"pitch":-150.25,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:03.684"} +{"sensors":[{"euler":{"heading":297.625,"pitch":134.125,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":144.9375,"pitch":-160.0,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":118.5625,"pitch":39.0,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":337.5625,"pitch":-139.625,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":132.75,"pitch":104.6875,"roll":38.8125},"location":"Right Knee"},{"euler":{"heading":64.0625,"pitch":-130.75,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:03.785"} +{"sensors":[{"euler":{"heading":175.3125,"pitch":143.6875,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":132.0625,"pitch":-178.0625,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":114.4375,"pitch":33.5,"roll":57.375},"location":"Right Ankle"},{"euler":{"heading":338.8125,"pitch":-138.125,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":134.75,"pitch":106.125,"roll":42.4375},"location":"Right Knee"},{"euler":{"heading":57.0,"pitch":-126.375,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:03.886"} +{"sensors":[{"euler":{"heading":188.5625,"pitch":160.6875,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":93.0625,"pitch":118.1875,"roll":53.125},"location":"Left Ankle"},{"euler":{"heading":110.3125,"pitch":28.3125,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":338.1875,"pitch":-140.125,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":138.6875,"pitch":108.3125,"roll":46.625},"location":"Right Knee"},{"euler":{"heading":54.0625,"pitch":-124.375,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:03.987"} +{"sensors":[{"euler":{"heading":204.5625,"pitch":178.0,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":67.4375,"pitch":105.4375,"roll":32.1875},"location":"Left Ankle"},{"euler":{"heading":105.375,"pitch":20.375,"roll":59.8125},"location":"Right Ankle"},{"euler":{"heading":338.0625,"pitch":-142.0625,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":143.625,"pitch":112.0,"roll":51.4375},"location":"Right Knee"},{"euler":{"heading":59.9375,"pitch":-129.375,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:04.87"} +{"sensors":[{"euler":{"heading":209.1875,"pitch":177.5,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":72.75,"pitch":111.0625,"roll":32.3125},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":7.5,"roll":60.8125},"location":"Right Ankle"},{"euler":{"heading":339.3125,"pitch":-148.0625,"roll":69.5625},"location":"Right Hip"},{"euler":{"heading":155.0,"pitch":121.25,"roll":58.9375},"location":"Right Knee"},{"euler":{"heading":66.0625,"pitch":-133.3125,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:04.188"} +{"sensors":[{"euler":{"heading":207.3125,"pitch":167.25,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":88.625,"pitch":115.125,"roll":43.3125},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":-17.4375,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":345.8125,"pitch":-144.1875,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":171.25,"pitch":140.8125,"roll":65.9375},"location":"Right Knee"},{"euler":{"heading":68.3125,"pitch":-134.4375,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:04.289"} +{"sensors":[{"euler":{"heading":245.125,"pitch":159.9375,"roll":43.625},"location":"Left Knee"},{"euler":{"heading":111.625,"pitch":115.875,"roll":47.4375},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":-24.625,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":353.8125,"pitch":-132.5,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":140.6875,"roll":69.75},"location":"Right Knee"},{"euler":{"heading":71.9375,"pitch":-137.75,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:04.389"} +{"sensors":[{"euler":{"heading":249.0,"pitch":155.0625,"roll":44.0625},"location":"Left Knee"},{"euler":{"heading":102.3125,"pitch":118.0,"roll":51.8125},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":3.125,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":0.9375,"pitch":-128.4375,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":164.75,"pitch":119.75,"roll":59.375},"location":"Right Knee"},{"euler":{"heading":75.0625,"pitch":-143.9375,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:04.490"} +{"sensors":[{"euler":{"heading":255.9375,"pitch":149.5625,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":106.3125,"pitch":119.6875,"roll":54.6875},"location":"Left Ankle"},{"euler":{"heading":120.6875,"pitch":37.25,"roll":61.625},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-129.0,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":148.9375,"pitch":110.375,"roll":42.6875},"location":"Right Knee"},{"euler":{"heading":79.125,"pitch":-150.75,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:04.591"} +{"sensors":[{"euler":{"heading":264.0625,"pitch":144.375,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":112.1875,"pitch":125.9375,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":136.625,"pitch":52.875,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":352.125,"pitch":-134.6875,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":132.5,"pitch":109.75,"roll":28.625},"location":"Right Knee"},{"euler":{"heading":79.0,"pitch":-153.5,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:04.692"} +{"sensors":[{"euler":{"heading":272.3125,"pitch":139.1875,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":122.25,"pitch":138.8125,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":135.4375,"pitch":56.0625,"roll":49.125},"location":"Right Ankle"},{"euler":{"heading":344.75,"pitch":-137.25,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":130.75,"pitch":103.6875,"roll":29.6875},"location":"Right Knee"},{"euler":{"heading":79.6875,"pitch":-155.875,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:04.793"} +{"sensors":[{"euler":{"heading":281.3125,"pitch":135.375,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":127.5625,"pitch":165.4375,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":123.5,"pitch":48.6875,"roll":55.0},"location":"Right Ankle"},{"euler":{"heading":342.5625,"pitch":-138.4375,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":131.5,"pitch":100.5625,"roll":34.25},"location":"Right Knee"},{"euler":{"heading":79.5625,"pitch":-152.4375,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:04.893"} +{"sensors":[{"euler":{"heading":294.6875,"pitch":133.9375,"roll":20.5},"location":"Left Knee"},{"euler":{"heading":142.4375,"pitch":-164.6875,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":117.0625,"pitch":43.6875,"roll":56.75},"location":"Right Ankle"},{"euler":{"heading":337.6875,"pitch":-138.75,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":131.3125,"pitch":100.1875,"roll":37.9375},"location":"Right Knee"},{"euler":{"heading":64.0,"pitch":-132.4375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:04.994"} +{"sensors":[{"euler":{"heading":173.9375,"pitch":142.625,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":133.375,"pitch":-175.25,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":113.75,"pitch":37.75,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":338.9375,"pitch":-137.9375,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":134.125,"pitch":102.3125,"roll":41.8125},"location":"Right Knee"},{"euler":{"heading":56.5,"pitch":-127.3125,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:05.95"} +{"sensors":[{"euler":{"heading":188.25,"pitch":157.9375,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":125.25,"roll":55.9375},"location":"Left Ankle"},{"euler":{"heading":109.625,"pitch":35.0,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":338.9375,"pitch":-136.75,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":135.8125,"pitch":101.9375,"roll":45.25},"location":"Right Knee"},{"euler":{"heading":54.8125,"pitch":-125.3125,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:05.195"} +{"sensors":[{"euler":{"heading":202.625,"pitch":174.4375,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":71.625,"pitch":109.3125,"roll":34.25},"location":"Left Ankle"},{"euler":{"heading":104.25,"pitch":29.0625,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":338.1875,"pitch":-138.0625,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":137.9375,"pitch":103.25,"roll":49.625},"location":"Right Knee"},{"euler":{"heading":58.5625,"pitch":-128.75,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:05.296"} +{"sensors":[{"euler":{"heading":208.0,"pitch":175.375,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":71.375,"pitch":110.0625,"roll":31.1875},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":17.125,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-143.5,"roll":70.4375},"location":"Right Hip"},{"euler":{"heading":146.4375,"pitch":111.75,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":67.5,"pitch":-134.6875,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:05.397"} +{"sensors":[{"euler":{"heading":207.5,"pitch":164.75,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":88.625,"pitch":115.9375,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":92.4375,"pitch":-5.6875,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":341.375,"pitch":-145.875,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":128.8125,"roll":63.5625},"location":"Right Knee"},{"euler":{"heading":69.4375,"pitch":-135.875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:05.497"} +{"sensors":[{"euler":{"heading":249.75,"pitch":157.1875,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":97.5625,"pitch":116.8125,"roll":47.375},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":-29.4375,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":350.125,"pitch":-137.9375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":174.5,"pitch":144.0625,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":73.3125,"pitch":-139.375,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:05.598"} +{"sensors":[{"euler":{"heading":257.125,"pitch":151.25,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":104.6875,"pitch":119.1875,"roll":51.8125},"location":"Left Ankle"},{"euler":{"heading":97.125,"pitch":-12.5625,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-131.5,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":169.625,"pitch":128.875,"roll":63.1875},"location":"Right Knee"},{"euler":{"heading":77.25,"pitch":-143.8125,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:05.699"} +{"sensors":[{"euler":{"heading":263.9375,"pitch":145.75,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":113.3125,"pitch":122.625,"roll":55.8125},"location":"Left Ankle"},{"euler":{"heading":117.4375,"pitch":26.3125,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":2.375,"pitch":-131.0,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":117.5625,"roll":48.0},"location":"Right Knee"},{"euler":{"heading":80.0,"pitch":-149.6875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:05.800"} +{"sensors":[{"euler":{"heading":269.375,"pitch":142.0625,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":116.375,"pitch":126.125,"roll":58.0},"location":"Left Ankle"},{"euler":{"heading":133.375,"pitch":49.9375,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":355.125,"pitch":-135.25,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":135.6875,"pitch":111.25,"roll":31.3125},"location":"Right Knee"},{"euler":{"heading":80.875,"pitch":-155.125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:05.901"} +{"sensors":[{"euler":{"heading":274.25,"pitch":138.375,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":123.125,"pitch":135.1875,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":139.4375,"pitch":55.125,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":344.375,"pitch":-138.375,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":128.3125,"pitch":107.125,"roll":26.5},"location":"Right Knee"},{"euler":{"heading":82.0625,"pitch":-160.0625,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:06.1"} +{"sensors":[{"euler":{"heading":284.3125,"pitch":134.5625,"roll":26.875},"location":"Left Knee"},{"euler":{"heading":129.9375,"pitch":160.875,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":127.375,"pitch":48.5,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":342.0,"pitch":-139.6875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":130.1875,"pitch":103.875,"roll":32.125},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-158.0625,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:06.102"} +{"sensors":[{"euler":{"heading":300.5625,"pitch":131.875,"roll":18.375},"location":"Left Knee"},{"euler":{"heading":151.5625,"pitch":-158.8125,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":120.875,"pitch":44.0,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":338.0,"pitch":-140.0,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":130.3125,"pitch":102.375,"roll":36.125},"location":"Right Knee"},{"euler":{"heading":66.8125,"pitch":-137.125,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:06.203"} +{"sensors":[{"euler":{"heading":292.25,"pitch":138.8125,"roll":20.25},"location":"Left Knee"},{"euler":{"heading":145.875,"pitch":-160.125,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":116.375,"pitch":38.5625,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":337.6875,"pitch":-139.75,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":132.25,"pitch":103.25,"roll":40.0625},"location":"Right Knee"},{"euler":{"heading":57.4375,"pitch":-127.3125,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:06.304"} +{"sensors":[{"euler":{"heading":183.5625,"pitch":153.5625,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":107.25,"pitch":132.75,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":113.4375,"pitch":33.8125,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":337.625,"pitch":-139.0,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":135.0625,"pitch":105.5625,"roll":43.6875},"location":"Right Knee"},{"euler":{"heading":53.8125,"pitch":-125.6875,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:06.405"} +{"sensors":[{"euler":{"heading":200.125,"pitch":170.0625,"roll":42.125},"location":"Left Knee"},{"euler":{"heading":78.3125,"pitch":110.125,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":108.875,"pitch":26.3125,"roll":58.75},"location":"Right Ankle"},{"euler":{"heading":338.3125,"pitch":-141.5,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":139.6875,"pitch":109.125,"roll":48.375},"location":"Right Knee"},{"euler":{"heading":56.875,"pitch":-127.75,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:06.505"} +{"sensors":[{"euler":{"heading":209.0,"pitch":176.625,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":71.1875,"pitch":107.0,"roll":30.125},"location":"Left Ankle"},{"euler":{"heading":103.125,"pitch":16.0,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":339.75,"pitch":-145.6875,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":147.5,"pitch":116.0625,"roll":53.9375},"location":"Right Knee"},{"euler":{"heading":65.1875,"pitch":-133.9375,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:06.606"} +{"sensors":[{"euler":{"heading":209.3125,"pitch":167.75,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":114.8125,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":93.6875,"pitch":-7.0,"roll":59.6875},"location":"Right Ankle"},{"euler":{"heading":342.75,"pitch":-147.4375,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":163.1875,"pitch":132.5,"roll":62.3125},"location":"Right Knee"},{"euler":{"heading":69.75,"pitch":-136.75,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:06.706"} +{"sensors":[{"euler":{"heading":245.0,"pitch":159.5,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":96.8125,"pitch":116.1875,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":81.5625,"pitch":-29.5625,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":352.0,"pitch":-134.9375,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":171.875,"pitch":139.375,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":70.4375,"pitch":-137.125,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:06.807"} +{"sensors":[{"euler":{"heading":252.8125,"pitch":152.9375,"roll":43.0},"location":"Left Knee"},{"euler":{"heading":105.1875,"pitch":118.3125,"roll":50.625},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":-15.25,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":-130.4375,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":170.375,"pitch":129.0,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":73.3125,"pitch":-141.375,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:06.908"} +{"sensors":[{"euler":{"heading":260.25,"pitch":147.75,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":110.75,"pitch":120.875,"roll":54.0625},"location":"Left Ankle"},{"euler":{"heading":113.875,"pitch":20.0,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":1.3125,"pitch":-129.25,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":156.625,"pitch":118.0,"roll":49.75},"location":"Right Knee"},{"euler":{"heading":76.75,"pitch":-147.1875,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:07.9"} +{"sensors":[{"euler":{"heading":267.8125,"pitch":143.125,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":113.8125,"pitch":124.125,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":129.6875,"pitch":45.125,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":356.4375,"pitch":-133.9375,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":138.3125,"pitch":112.25,"roll":34.0},"location":"Right Knee"},{"euler":{"heading":79.125,"pitch":-152.625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:07.110"} +{"sensors":[{"euler":{"heading":273.625,"pitch":139.25,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":120.1875,"pitch":130.625,"roll":60.4375},"location":"Left Ankle"},{"euler":{"heading":139.5,"pitch":53.125,"roll":47.6875},"location":"Right Ankle"},{"euler":{"heading":345.875,"pitch":-138.1875,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":127.9375,"pitch":109.1875,"roll":26.25},"location":"Right Knee"},{"euler":{"heading":80.9375,"pitch":-158.1875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:07.212"} +{"sensors":[{"euler":{"heading":280.625,"pitch":135.625,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":123.6875,"pitch":148.6875,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":127.75,"pitch":49.625,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":341.75,"pitch":-139.875,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":128.25,"pitch":103.9375,"roll":30.6875},"location":"Right Knee"},{"euler":{"heading":81.6875,"pitch":-157.1875,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:07.312"} +{"sensors":[{"euler":{"heading":296.0,"pitch":132.6875,"roll":20.75},"location":"Left Knee"},{"euler":{"heading":142.8125,"pitch":-172.0625,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":122.5625,"pitch":42.1875,"roll":55.0625},"location":"Right Ankle"},{"euler":{"heading":338.875,"pitch":-141.875,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":131.4375,"pitch":105.0625,"roll":35.625},"location":"Right Knee"},{"euler":{"heading":65.75,"pitch":-138.4375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:07.414"} +{"sensors":[{"euler":{"heading":293.0625,"pitch":138.3125,"roll":20.1875},"location":"Left Knee"},{"euler":{"heading":140.875,"pitch":-169.1875,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":119.875,"pitch":38.25,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":336.875,"pitch":-141.875,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":132.375,"pitch":105.9375,"roll":39.25},"location":"Right Knee"},{"euler":{"heading":57.9375,"pitch":-128.75,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:07.515"} +{"sensors":[{"euler":{"heading":181.375,"pitch":150.6875,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":111.8125,"pitch":136.375,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":116.3125,"pitch":35.125,"roll":56.5},"location":"Right Ankle"},{"euler":{"heading":336.375,"pitch":-141.0625,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":134.75,"pitch":106.875,"roll":42.6875},"location":"Right Knee"},{"euler":{"heading":53.5625,"pitch":-126.125,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:07.615"} +{"sensors":[{"euler":{"heading":197.25,"pitch":168.0625,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":79.3125,"pitch":111.125,"roll":39.375},"location":"Left Ankle"},{"euler":{"heading":110.9375,"pitch":30.875,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":338.375,"pitch":-141.375,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":138.3125,"pitch":107.8125,"roll":47.3125},"location":"Right Knee"},{"euler":{"heading":55.6875,"pitch":-127.125,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:07.716"} +{"sensors":[{"euler":{"heading":207.4375,"pitch":-179.8125,"roll":43.75},"location":"Left Knee"},{"euler":{"heading":66.0625,"pitch":102.9375,"roll":27.5625},"location":"Left Ankle"},{"euler":{"heading":104.75,"pitch":21.3125,"roll":59.875},"location":"Right Ankle"},{"euler":{"heading":339.3125,"pitch":-144.1875,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":145.375,"pitch":114.1875,"roll":52.5625},"location":"Right Knee"},{"euler":{"heading":62.0,"pitch":-132.0625,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:07.817"} +{"sensors":[{"euler":{"heading":220.75,"pitch":172.5,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":79.6875,"pitch":109.25,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":97.125,"pitch":1.125,"roll":59.375},"location":"Right Ankle"},{"euler":{"heading":340.375,"pitch":-149.75,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":157.3125,"pitch":125.4375,"roll":59.5},"location":"Right Knee"},{"euler":{"heading":66.5,"pitch":-133.5,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:07.918"} +{"sensors":[{"euler":{"heading":235.9375,"pitch":163.5,"roll":44.1875},"location":"Left Knee"},{"euler":{"heading":89.125,"pitch":111.8125,"roll":42.6875},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":-22.4375,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":349.5,"pitch":-140.75,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":168.5625,"pitch":134.1875,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":66.375,"pitch":-134.75,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:08.19"} +{"sensors":[{"euler":{"heading":240.3125,"pitch":158.0625,"roll":44.1875},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":112.625,"roll":46.375},"location":"Left Ankle"},{"euler":{"heading":88.1875,"pitch":-25.0,"roll":59.8125},"location":"Right Ankle"},{"euler":{"heading":357.25,"pitch":-132.4375,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":173.25,"pitch":134.375,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":69.1875,"pitch":-140.25,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:08.120"} +{"sensors":[{"euler":{"heading":246.4375,"pitch":153.0625,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":100.8125,"pitch":115.8125,"roll":51.5},"location":"Left Ankle"},{"euler":{"heading":107.875,"pitch":10.5,"roll":63.875},"location":"Right Ankle"},{"euler":{"heading":1.75,"pitch":-128.4375,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":159.0,"pitch":118.375,"roll":53.0},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-144.4375,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:08.220"} +{"sensors":[{"euler":{"heading":252.9375,"pitch":148.8125,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":102.5,"pitch":117.4375,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":124.3125,"pitch":42.75,"roll":59.375},"location":"Right Ankle"},{"euler":{"heading":357.625,"pitch":-132.875,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":138.6875,"pitch":110.3125,"roll":35.5},"location":"Right Knee"},{"euler":{"heading":73.0,"pitch":-147.8125,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:08.321"} +{"sensors":[{"euler":{"heading":259.0,"pitch":144.6875,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":109.625,"pitch":121.1875,"roll":59.0},"location":"Left Ankle"},{"euler":{"heading":137.1875,"pitch":51.5625,"roll":48.875},"location":"Right Ankle"},{"euler":{"heading":351.25,"pitch":-135.5625,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":125.1875,"pitch":109.125,"roll":24.125},"location":"Right Knee"},{"euler":{"heading":75.5,"pitch":-152.75,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:08.423"} +{"sensors":[{"euler":{"heading":264.1875,"pitch":141.1875,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":113.375,"pitch":131.125,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":131.375,"pitch":50.875,"roll":50.5},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-137.5,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":125.625,"pitch":103.625,"roll":26.0625},"location":"Right Knee"},{"euler":{"heading":76.8125,"pitch":-157.8125,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:08.524"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":136.125,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":125.0625,"pitch":162.5625,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":121.625,"pitch":42.1875,"roll":55.375},"location":"Right Ankle"},{"euler":{"heading":342.4375,"pitch":-139.75,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":128.125,"pitch":101.9375,"roll":31.625},"location":"Right Knee"},{"euler":{"heading":73.625,"pitch":-149.75,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:08.624"} +{"sensors":[{"euler":{"heading":296.375,"pitch":133.8125,"roll":19.0},"location":"Left Knee"},{"euler":{"heading":141.25,"pitch":-167.8125,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":118.125,"pitch":36.75,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":336.4375,"pitch":-142.1875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":130.25,"pitch":104.375,"roll":36.3125},"location":"Right Knee"},{"euler":{"heading":61.3125,"pitch":-130.9375,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:08.724"} +{"sensors":[{"euler":{"heading":175.125,"pitch":142.25,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":130.25,"pitch":169.9375,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":113.9375,"pitch":32.375,"roll":56.75},"location":"Right Ankle"},{"euler":{"heading":337.625,"pitch":-140.8125,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":130.625,"pitch":104.9375,"roll":39.125},"location":"Right Knee"},{"euler":{"heading":55.375,"pitch":-126.0,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:08.825"} +{"sensors":[{"euler":{"heading":188.625,"pitch":158.9375,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":93.1875,"pitch":117.625,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":110.3125,"pitch":31.625,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":337.25,"pitch":-140.0,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":132.5,"pitch":103.75,"roll":42.9375},"location":"Right Knee"},{"euler":{"heading":53.4375,"pitch":-125.125,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:08.926"} +{"sensors":[{"euler":{"heading":202.5,"pitch":173.875,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":70.875,"pitch":106.0625,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":104.875,"pitch":25.3125,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":337.625,"pitch":-141.5625,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":136.0625,"pitch":106.375,"roll":47.0625},"location":"Right Knee"},{"euler":{"heading":57.8125,"pitch":-128.8125,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:09.27"} +{"sensors":[{"euler":{"heading":208.25,"pitch":174.875,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":74.3125,"pitch":109.125,"roll":31.0625},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":9.9375,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":338.875,"pitch":-146.5625,"roll":70.1875},"location":"Right Hip"},{"euler":{"heading":146.4375,"pitch":115.5,"roll":53.9375},"location":"Right Knee"},{"euler":{"heading":66.3125,"pitch":-134.4375,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:09.127"} +{"sensors":[{"euler":{"heading":236.8125,"pitch":165.3125,"roll":43.75},"location":"Left Knee"},{"euler":{"heading":89.25,"pitch":113.0625,"roll":41.1875},"location":"Left Ankle"},{"euler":{"heading":91.375,"pitch":-13.625,"roll":59.875},"location":"Right Ankle"},{"euler":{"heading":343.375,"pitch":-146.1875,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":129.125,"roll":61.625},"location":"Right Knee"},{"euler":{"heading":67.75,"pitch":-136.1875,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:09.228"} +{"sensors":[{"euler":{"heading":246.9375,"pitch":158.0625,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":96.5,"pitch":114.5625,"roll":45.6875},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":-26.375,"roll":59.75},"location":"Right Ankle"},{"euler":{"heading":352.4375,"pitch":-135.125,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":169.0,"pitch":132.25,"roll":65.625},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-133.8125,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:09.329"} +{"sensors":[{"euler":{"heading":252.0,"pitch":153.0,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":116.125,"roll":49.375},"location":"Left Ankle"},{"euler":{"heading":102.9375,"pitch":2.8125,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-130.5625,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":117.4375,"roll":54.1875},"location":"Right Knee"},{"euler":{"heading":72.9375,"pitch":-142.125,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:09.429"} +{"sensors":[{"euler":{"heading":255.6875,"pitch":149.0625,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":103.0625,"pitch":117.9375,"roll":51.9375},"location":"Left Ankle"},{"euler":{"heading":118.4375,"pitch":36.375,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-132.6875,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":141.6875,"pitch":109.5,"roll":37.9375},"location":"Right Knee"},{"euler":{"heading":73.9375,"pitch":-146.5,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:09.530"} +{"sensors":[{"euler":{"heading":262.5625,"pitch":144.4375,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":107.0,"pitch":120.6875,"roll":55.375},"location":"Left Ankle"},{"euler":{"heading":134.8125,"pitch":50.3125,"roll":51.125},"location":"Right Ankle"},{"euler":{"heading":354.0625,"pitch":-134.75,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":126.5625,"pitch":109.5625,"roll":24.8125},"location":"Right Knee"},{"euler":{"heading":76.625,"pitch":-151.1875,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:09.631"} +{"sensors":[{"euler":{"heading":269.125,"pitch":140.5,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":113.75,"pitch":128.375,"roll":60.3125},"location":"Left Ankle"},{"euler":{"heading":134.5625,"pitch":51.375,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":347.5625,"pitch":-137.0625,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":123.125,"pitch":106.75,"roll":23.1875},"location":"Right Knee"},{"euler":{"heading":79.3125,"pitch":-155.9375,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:09.732"} +{"sensors":[{"euler":{"heading":281.5625,"pitch":135.6875,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":122.8125,"pitch":150.9375,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":123.4375,"pitch":42.875,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":343.625,"pitch":-139.75,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":124.875,"pitch":103.25,"roll":28.4375},"location":"Right Knee"},{"euler":{"heading":79.625,"pitch":-154.0,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:09.833"} +{"sensors":[{"euler":{"heading":300.6875,"pitch":132.5,"roll":18.625},"location":"Left Knee"},{"euler":{"heading":147.5,"pitch":-166.125,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":119.1875,"pitch":36.8125,"roll":55.875},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-141.5,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":125.875,"pitch":104.25,"roll":32.625},"location":"Right Knee"},{"euler":{"heading":65.0625,"pitch":-134.8125,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:09.933"} +{"sensors":[{"euler":{"heading":174.1875,"pitch":140.0,"roll":20.625},"location":"Left Knee"},{"euler":{"heading":144.1875,"pitch":-168.4375,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":117.25,"pitch":33.8125,"roll":55.0},"location":"Right Ankle"},{"euler":{"heading":338.25,"pitch":-141.8125,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":127.1875,"pitch":104.9375,"roll":36.375},"location":"Right Knee"},{"euler":{"heading":56.875,"pitch":-126.8125,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:10.34"} +{"sensors":[{"euler":{"heading":187.875,"pitch":154.5625,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":106.0625,"pitch":131.3125,"roll":57.9375},"location":"Left Ankle"},{"euler":{"heading":113.3125,"pitch":30.6875,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":338.875,"pitch":-141.625,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":129.625,"pitch":105.875,"roll":39.875},"location":"Right Knee"},{"euler":{"heading":54.25,"pitch":-124.5,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:10.135"} +{"sensors":[{"euler":{"heading":202.75,"pitch":171.5,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":109.75,"roll":35.5625},"location":"Left Ankle"},{"euler":{"heading":107.5,"pitch":26.3125,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":339.0,"pitch":-142.125,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":132.8125,"pitch":106.4375,"roll":44.1875},"location":"Right Knee"},{"euler":{"heading":57.375,"pitch":-127.25,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:10.236"} +{"sensors":[{"euler":{"heading":209.875,"pitch":177.1875,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":70.5,"pitch":106.9375,"roll":28.8125},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":15.1875,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":340.5625,"pitch":-146.125,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":140.3125,"pitch":112.375,"roll":50.125},"location":"Right Knee"},{"euler":{"heading":64.0625,"pitch":-132.625,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:10.337"} +{"sensors":[{"euler":{"heading":210.8125,"pitch":167.0,"roll":42.6875},"location":"Left Knee"},{"euler":{"heading":89.3125,"pitch":114.1875,"roll":38.9375},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":-4.5625,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":343.25,"pitch":-146.6875,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":123.25,"roll":58.4375},"location":"Right Knee"},{"euler":{"heading":68.375,"pitch":-135.75,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:10.439"} +{"sensors":[{"euler":{"heading":245.9375,"pitch":159.75,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":115.8125,"roll":44.25},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":-47.3125,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":353.6875,"pitch":-137.6875,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":167.75,"pitch":136.375,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":69.9375,"pitch":-137.4375,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:10.539"} +{"sensors":[{"euler":{"heading":253.0625,"pitch":153.75,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":101.5,"pitch":117.0625,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":-17.75,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":1.0625,"pitch":-132.1875,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":125.5,"roll":59.4375},"location":"Right Knee"},{"euler":{"heading":74.1875,"pitch":-142.875,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:10.640"} +{"sensors":[{"euler":{"heading":261.9375,"pitch":147.625,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":107.0,"pitch":119.4375,"roll":51.375},"location":"Left Ankle"},{"euler":{"heading":116.625,"pitch":25.75,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":1.8125,"pitch":-130.3125,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":148.625,"pitch":113.5625,"roll":43.5625},"location":"Right Knee"},{"euler":{"heading":76.125,"pitch":-146.8125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:10.741"} +{"sensors":[{"euler":{"heading":269.0625,"pitch":143.0625,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":112.5625,"pitch":122.875,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":132.1875,"pitch":49.4375,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":356.0,"pitch":-134.5,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":129.0625,"pitch":109.4375,"roll":27.125},"location":"Right Knee"},{"euler":{"heading":77.25,"pitch":-151.0,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:10.842"} +{"sensors":[{"euler":{"heading":275.25,"pitch":138.8125,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":119.5625,"pitch":129.6875,"roll":59.0625},"location":"Left Ankle"},{"euler":{"heading":135.5,"pitch":53.5,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":347.9375,"pitch":-138.4375,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":122.8125,"pitch":106.4375,"roll":22.5625},"location":"Right Knee"},{"euler":{"heading":79.1875,"pitch":-154.9375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:10.942"} +{"sensors":[{"euler":{"heading":283.25,"pitch":134.9375,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":125.25,"pitch":145.25,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":124.5625,"pitch":46.5625,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":344.125,"pitch":-141.125,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":125.125,"pitch":103.125,"roll":27.875},"location":"Right Knee"},{"euler":{"heading":80.9375,"pitch":-155.875,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:11.43"} +{"sensors":[{"euler":{"heading":296.3125,"pitch":133.9375,"roll":20.3125},"location":"Left Knee"},{"euler":{"heading":144.5,"pitch":-169.75,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":119.25,"pitch":42.625,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":340.25,"pitch":-141.25,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":124.875,"pitch":100.75,"roll":31.625},"location":"Right Knee"},{"euler":{"heading":66.375,"pitch":-139.125,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:11.144"} +{"sensors":[{"euler":{"heading":291.75,"pitch":138.875,"roll":20.875},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":-168.1875,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":114.625,"pitch":38.375,"roll":55.75},"location":"Right Ankle"},{"euler":{"heading":338.25,"pitch":-141.3125,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":126.6875,"pitch":100.125,"roll":35.75},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-129.3125,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:11.244"} +{"sensors":[{"euler":{"heading":184.1875,"pitch":152.5,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":113.4375,"pitch":132.8125,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":110.1875,"pitch":34.125,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":337.5,"pitch":-140.3125,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":128.125,"pitch":100.25,"roll":39.0},"location":"Right Knee"},{"euler":{"heading":52.75,"pitch":-126.4375,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:11.345"} +{"sensors":[{"euler":{"heading":199.8125,"pitch":170.1875,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":79.625,"pitch":110.1875,"roll":37.75},"location":"Left Ankle"},{"euler":{"heading":105.625,"pitch":29.1875,"roll":56.75},"location":"Right Ankle"},{"euler":{"heading":337.5625,"pitch":-142.4375,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":130.5625,"pitch":102.125,"roll":43.0},"location":"Right Knee"},{"euler":{"heading":56.0625,"pitch":-128.4375,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:11.446"} +{"sensors":[{"euler":{"heading":207.5,"pitch":179.6875,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":65.8125,"pitch":103.625,"roll":27.625},"location":"Left Ankle"},{"euler":{"heading":100.125,"pitch":18.4375,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":338.1875,"pitch":-147.125,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":137.6875,"pitch":107.8125,"roll":48.875},"location":"Right Knee"},{"euler":{"heading":63.375,"pitch":-134.25,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:11.547"} +{"sensors":[{"euler":{"heading":208.75,"pitch":171.0625,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":86.0625,"pitch":111.3125,"roll":37.25},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":3.0,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":339.5625,"pitch":-150.1875,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":149.9375,"pitch":117.4375,"roll":57.0625},"location":"Right Knee"},{"euler":{"heading":65.9375,"pitch":-136.875,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:11.648"} +{"sensors":[{"euler":{"heading":236.75,"pitch":163.375,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":89.5,"pitch":112.875,"roll":42.75},"location":"Left Ankle"},{"euler":{"heading":83.0,"pitch":-27.75,"roll":58.1875},"location":"Right Ankle"},{"euler":{"heading":349.8125,"pitch":-139.75,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":164.125,"pitch":127.0,"roll":66.1875},"location":"Right Knee"},{"euler":{"heading":66.125,"pitch":-137.75,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:11.748"} +{"sensors":[{"euler":{"heading":245.25,"pitch":157.1875,"roll":43.0},"location":"Left Knee"},{"euler":{"heading":94.75,"pitch":114.5,"roll":46.0625},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":-13.5625,"roll":62.0625},"location":"Right Ankle"},{"euler":{"heading":359.375,"pitch":-132.375,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":162.125,"pitch":119.625,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":71.1875,"pitch":-143.625,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:11.849"} +{"sensors":[{"euler":{"heading":250.375,"pitch":152.6875,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":97.125,"pitch":115.5625,"roll":48.5625},"location":"Left Ankle"},{"euler":{"heading":115.5,"pitch":25.875,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":1.6875,"pitch":-130.625,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":147.0625,"pitch":112.75,"roll":42.75},"location":"Right Knee"},{"euler":{"heading":73.125,"pitch":-147.625,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:11.949"} +{"sensors":[{"euler":{"heading":258.0,"pitch":148.25,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":101.9375,"pitch":117.6875,"roll":52.25},"location":"Left Ankle"},{"euler":{"heading":129.9375,"pitch":46.6875,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":355.3125,"pitch":-136.0625,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":129.3125,"pitch":109.5625,"roll":27.5},"location":"Right Knee"},{"euler":{"heading":74.875,"pitch":-151.9375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:12.50"} +{"sensors":[{"euler":{"heading":265.1875,"pitch":143.5625,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":109.1875,"pitch":123.0,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":138.875,"pitch":48.8125,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":349.125,"pitch":-139.625,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":121.1875,"pitch":110.75,"roll":20.9375},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-156.3125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:12.151"} +{"sensors":[{"euler":{"heading":274.6875,"pitch":138.375,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":116.125,"pitch":136.75,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":128.5625,"pitch":44.9375,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":344.9375,"pitch":-141.75,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":122.8125,"pitch":105.4375,"roll":25.3125},"location":"Right Knee"},{"euler":{"heading":82.5625,"pitch":-159.0,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:12.252"} +{"sensors":[{"euler":{"heading":293.3125,"pitch":134.3125,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":137.625,"pitch":-179.875,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":122.4375,"pitch":39.0,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":342.125,"pitch":-143.125,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":123.5625,"pitch":104.625,"roll":30.25},"location":"Right Knee"},{"euler":{"heading":69.125,"pitch":-142.125,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:12.352"} +{"sensors":[{"euler":{"heading":172.0625,"pitch":140.6875,"roll":21.4375},"location":"Left Knee"},{"euler":{"heading":130.375,"pitch":174.5,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":119.3125,"pitch":33.375,"roll":54.375},"location":"Right Ankle"},{"euler":{"heading":338.25,"pitch":-145.125,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":126.25,"pitch":105.125,"roll":34.4375},"location":"Right Knee"},{"euler":{"heading":57.4375,"pitch":-128.9375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:12.453"} +{"sensors":[{"euler":{"heading":185.0625,"pitch":153.125,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":126.8125,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":116.875,"pitch":31.125,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":339.875,"pitch":-144.75,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":129.625,"pitch":107.4375,"roll":38.4375},"location":"Right Knee"},{"euler":{"heading":55.4375,"pitch":-127.1875,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:12.554"} +{"sensors":[{"euler":{"heading":201.5,"pitch":169.3125,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":79.4375,"pitch":110.5,"roll":38.4375},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":25.875,"roll":58.0625},"location":"Right Ankle"},{"euler":{"heading":340.375,"pitch":-147.5,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":134.6875,"pitch":109.6875,"roll":43.0},"location":"Right Knee"},{"euler":{"heading":58.5,"pitch":-127.8125,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:12.655"} +{"sensors":[{"euler":{"heading":209.5,"pitch":178.1875,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":67.75,"pitch":103.75,"roll":28.5},"location":"Left Ankle"},{"euler":{"heading":105.4375,"pitch":13.9375,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":341.625,"pitch":-150.5625,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":141.875,"pitch":115.625,"roll":48.5625},"location":"Right Knee"},{"euler":{"heading":65.4375,"pitch":-133.75,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:12.756"} +{"sensors":[{"euler":{"heading":228.875,"pitch":170.0625,"roll":44.4375},"location":"Left Knee"},{"euler":{"heading":87.75,"pitch":109.1875,"roll":39.125},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":-6.25,"roll":58.375},"location":"Right Ankle"},{"euler":{"heading":345.3125,"pitch":-150.1875,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":155.5625,"pitch":127.9375,"roll":57.0625},"location":"Right Knee"},{"euler":{"heading":67.0,"pitch":-135.6875,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:12.856"} +{"sensors":[{"euler":{"heading":239.6875,"pitch":161.625,"roll":44.75},"location":"Left Knee"},{"euler":{"heading":90.5625,"pitch":111.375,"roll":43.3125},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":-30.0625,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":354.875,"pitch":-136.75,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":130.625,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":68.625,"pitch":-137.625,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:12.957"} +{"sensors":[{"euler":{"heading":242.8125,"pitch":157.1875,"roll":44.3125},"location":"Left Knee"},{"euler":{"heading":92.0,"pitch":110.625,"roll":45.625},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":-4.3125,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":3.5,"pitch":-130.4375,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":155.0,"pitch":116.25,"roll":52.5625},"location":"Right Knee"},{"euler":{"heading":71.0625,"pitch":-143.3125,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:13.58"} +{"sensors":[{"euler":{"heading":245.25,"pitch":153.4375,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":92.8125,"pitch":111.0625,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":116.8125,"pitch":31.0625,"roll":62.9375},"location":"Right Ankle"},{"euler":{"heading":2.0625,"pitch":-132.875,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":137.5625,"pitch":110.6875,"roll":35.25},"location":"Right Knee"},{"euler":{"heading":72.875,"pitch":-148.125,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:13.159"} +{"sensors":[{"euler":{"heading":251.25,"pitch":149.4375,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":98.375,"pitch":114.125,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":134.5625,"pitch":53.3125,"roll":50.0},"location":"Right Ankle"},{"euler":{"heading":358.0625,"pitch":-135.125,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":121.875,"pitch":107.5625,"roll":21.3125},"location":"Right Knee"},{"euler":{"heading":74.125,"pitch":-151.3125,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:13.261"} +{"sensors":[{"euler":{"heading":257.9375,"pitch":145.1875,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":105.25,"pitch":119.875,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":140.375,"pitch":52.125,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":350.75,"pitch":-137.875,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":117.25,"pitch":109.375,"roll":17.625},"location":"Right Knee"},{"euler":{"heading":76.25,"pitch":-155.1875,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:13.362"} +{"sensors":[{"euler":{"heading":267.375,"pitch":141.125,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":112.25,"pitch":133.5625,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":129.875,"pitch":50.125,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":344.8125,"pitch":-139.875,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":117.6875,"pitch":103.1875,"roll":21.5625},"location":"Right Knee"},{"euler":{"heading":79.3125,"pitch":-160.0625,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:13.462"} +{"sensors":[{"euler":{"heading":289.6875,"pitch":135.4375,"roll":21.75},"location":"Left Knee"},{"euler":{"heading":137.125,"pitch":-179.6875,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":42.625,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":342.25,"pitch":-141.625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":119.25,"pitch":100.9375,"roll":26.625},"location":"Right Knee"},{"euler":{"heading":68.75,"pitch":-144.125,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:13.563"} +{"sensors":[{"euler":{"heading":297.75,"pitch":137.0,"roll":18.75},"location":"Left Knee"},{"euler":{"heading":141.0625,"pitch":-171.625,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":114.8125,"pitch":37.25,"roll":54.6875},"location":"Right Ankle"},{"euler":{"heading":338.6875,"pitch":-141.875,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":119.5625,"pitch":99.4375,"roll":30.75},"location":"Right Knee"},{"euler":{"heading":57.6875,"pitch":-129.25,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:13.664"} +{"sensors":[{"euler":{"heading":183.6875,"pitch":150.5,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":116.3125,"pitch":143.6875,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":35.0625,"roll":54.5},"location":"Right Ankle"},{"euler":{"heading":339.5625,"pitch":-140.5625,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":121.5,"pitch":100.375,"roll":33.9375},"location":"Right Knee"},{"euler":{"heading":54.0,"pitch":-126.9375,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:13.765"} +{"sensors":[{"euler":{"heading":199.5,"pitch":168.6875,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":79.8125,"pitch":111.0625,"roll":39.5625},"location":"Left Ankle"},{"euler":{"heading":107.75,"pitch":30.8125,"roll":56.0},"location":"Right Ankle"},{"euler":{"heading":341.1875,"pitch":-141.375,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":125.25,"pitch":102.625,"roll":38.0625},"location":"Right Knee"},{"euler":{"heading":57.3125,"pitch":-129.3125,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:13.866"} +{"sensors":[{"euler":{"heading":207.625,"pitch":177.625,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":67.9375,"pitch":103.875,"roll":29.375},"location":"Left Ankle"},{"euler":{"heading":102.125,"pitch":21.5,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":343.5,"pitch":-142.8125,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":131.0625,"pitch":107.6875,"roll":43.4375},"location":"Right Knee"},{"euler":{"heading":65.25,"pitch":-134.5,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:13.967"} +{"sensors":[{"euler":{"heading":208.6875,"pitch":169.0625,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":80.125,"pitch":111.0625,"roll":34.8125},"location":"Left Ankle"},{"euler":{"heading":95.75,"pitch":3.5625,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":345.0625,"pitch":-148.5625,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":143.5,"pitch":117.3125,"roll":51.0},"location":"Right Knee"},{"euler":{"heading":72.0625,"pitch":-138.5,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:14.68"} +{"sensors":[{"euler":{"heading":243.9375,"pitch":160.375,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":89.5625,"pitch":114.5625,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":-16.0,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":352.0,"pitch":-143.0625,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":158.3125,"pitch":127.0,"roll":60.6875},"location":"Right Knee"},{"euler":{"heading":69.75,"pitch":-139.125,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:14.168"} +{"sensors":[{"euler":{"heading":254.875,"pitch":153.5625,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":100.375,"pitch":117.1875,"roll":47.1875},"location":"Left Ankle"},{"euler":{"heading":92.8125,"pitch":-8.5625,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":-133.0625,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":122.0,"roll":59.3125},"location":"Right Knee"},{"euler":{"heading":73.6875,"pitch":-142.9375,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:14.269"} +{"sensors":[{"euler":{"heading":264.5,"pitch":147.5,"roll":41.5},"location":"Left Knee"},{"euler":{"heading":106.875,"pitch":119.1875,"roll":50.9375},"location":"Left Ankle"},{"euler":{"heading":112.8125,"pitch":23.6875,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":4.875,"pitch":-131.1875,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":149.125,"pitch":115.6875,"roll":45.6875},"location":"Right Knee"},{"euler":{"heading":77.0625,"pitch":-146.3125,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:14.370"} +{"sensors":[{"euler":{"heading":271.75,"pitch":142.875,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":111.3125,"pitch":122.125,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":128.5625,"pitch":42.4375,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":3.125,"pitch":-135.3125,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":133.3125,"pitch":113.3125,"roll":29.875},"location":"Right Knee"},{"euler":{"heading":80.75,"pitch":-152.5625,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:14.471"} +{"sensors":[{"euler":{"heading":278.3125,"pitch":138.75,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":116.875,"pitch":128.125,"roll":57.5},"location":"Left Ankle"},{"euler":{"heading":138.25,"pitch":49.9375,"roll":48.4375},"location":"Right Ankle"},{"euler":{"heading":355.625,"pitch":-139.125,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":122.3125,"pitch":112.4375,"roll":21.0},"location":"Right Knee"},{"euler":{"heading":81.5,"pitch":-156.4375,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:14.571"} +{"sensors":[{"euler":{"heading":284.875,"pitch":135.0,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":122.3125,"pitch":140.25,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":128.6875,"pitch":48.5,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":347.375,"pitch":-142.5625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":122.625,"pitch":106.375,"roll":24.0},"location":"Right Knee"},{"euler":{"heading":84.75,"pitch":-159.875,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:14.672"} +{"sensors":[{"euler":{"heading":298.5625,"pitch":132.875,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":136.75,"pitch":175.8125,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":121.0,"pitch":40.9375,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":347.1875,"pitch":-142.75,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":123.9375,"pitch":105.4375,"roll":28.6875},"location":"Right Knee"},{"euler":{"heading":76.4375,"pitch":-148.375,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:14.772"} +{"sensors":[{"euler":{"heading":299.375,"pitch":136.9375,"roll":18.3125},"location":"Left Knee"},{"euler":{"heading":135.625,"pitch":-177.25,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":117.375,"pitch":38.3125,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":341.5,"pitch":-143.5,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":123.9375,"pitch":103.125,"roll":31.875},"location":"Right Knee"},{"euler":{"heading":64.3125,"pitch":-130.3125,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:14.874"} +{"sensors":[{"euler":{"heading":182.4375,"pitch":148.1875,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":117.75,"pitch":146.625,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":112.4375,"pitch":35.375,"roll":53.9375},"location":"Right Ankle"},{"euler":{"heading":340.6875,"pitch":-142.375,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":124.5625,"pitch":101.9375,"roll":35.125},"location":"Right Knee"},{"euler":{"heading":56.9375,"pitch":-128.1875,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:14.974"} +{"sensors":[{"euler":{"heading":197.0625,"pitch":165.9375,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":81.125,"pitch":112.25,"roll":42.0625},"location":"Left Ankle"},{"euler":{"heading":108.125,"pitch":31.875,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":340.25,"pitch":-143.125,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":127.5,"pitch":102.75,"roll":39.25},"location":"Right Knee"},{"euler":{"heading":54.875,"pitch":-128.5,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:15.75"} +{"sensors":[{"euler":{"heading":206.8125,"pitch":176.25,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":65.5625,"pitch":104.4375,"roll":28.25},"location":"Left Ankle"},{"euler":{"heading":100.875,"pitch":22.0,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":340.875,"pitch":-145.1875,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":133.125,"pitch":106.0625,"roll":45.125},"location":"Right Knee"},{"euler":{"heading":62.75,"pitch":-133.8125,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:15.176"} +{"sensors":[{"euler":{"heading":208.25,"pitch":169.4375,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":78.4375,"pitch":111.5,"roll":33.9375},"location":"Left Ankle"},{"euler":{"heading":92.4375,"pitch":2.875,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":342.375,"pitch":-150.6875,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":145.5,"pitch":115.5625,"roll":53.5},"location":"Right Knee"},{"euler":{"heading":70.1875,"pitch":-137.5625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:15.278"} +{"sensors":[{"euler":{"heading":243.625,"pitch":161.25,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":114.6875,"roll":42.3125},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":-18.75,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":350.125,"pitch":-144.25,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":158.0625,"pitch":126.875,"roll":61.6875},"location":"Right Knee"},{"euler":{"heading":68.3125,"pitch":-138.0625,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:15.378"} +{"sensors":[{"euler":{"heading":256.3125,"pitch":153.8125,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":101.75,"pitch":117.1875,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":-20.625,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":358.0,"pitch":-134.9375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":162.9375,"pitch":126.875,"roll":61.0625},"location":"Right Knee"},{"euler":{"heading":72.8125,"pitch":-141.75,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:15.479"} +{"sensors":[{"euler":{"heading":263.9375,"pitch":147.9375,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":106.9375,"pitch":118.875,"roll":51.25},"location":"Left Ankle"},{"euler":{"heading":106.75,"pitch":12.3125,"roll":61.0},"location":"Right Ankle"},{"euler":{"heading":5.375,"pitch":-131.875,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":151.4375,"pitch":120.125,"roll":47.25},"location":"Right Knee"},{"euler":{"heading":77.3125,"pitch":-146.875,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:15.580"} +{"sensors":[{"euler":{"heading":270.6875,"pitch":143.6875,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":110.4375,"pitch":121.0,"roll":53.8125},"location":"Left Ankle"},{"euler":{"heading":123.25,"pitch":42.625,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":4.0625,"pitch":-133.8125,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":133.125,"pitch":111.5,"roll":30.625},"location":"Right Knee"},{"euler":{"heading":79.625,"pitch":-151.625,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:15.681"} +{"sensors":[{"euler":{"heading":275.9375,"pitch":140.0,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":114.4375,"pitch":125.6875,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":138.875,"pitch":51.5625,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":354.5625,"pitch":-138.4375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":119.6875,"pitch":111.125,"roll":19.1875},"location":"Right Knee"},{"euler":{"heading":80.25,"pitch":-155.5625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:15.782"} +{"sensors":[{"euler":{"heading":281.9375,"pitch":136.4375,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":120.125,"pitch":135.8125,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":130.75,"pitch":50.3125,"roll":50.0625},"location":"Right Ankle"},{"euler":{"heading":347.25,"pitch":-141.3125,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":120.625,"pitch":105.1875,"roll":22.0625},"location":"Right Knee"},{"euler":{"heading":82.1875,"pitch":-159.8125,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:15.883"} +{"sensors":[{"euler":{"heading":291.5625,"pitch":135.9375,"roll":21.75},"location":"Left Knee"},{"euler":{"heading":128.875,"pitch":166.3125,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":122.125,"pitch":45.3125,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":344.8125,"pitch":-142.625,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":122.25,"pitch":103.0625,"roll":27.25},"location":"Right Knee"},{"euler":{"heading":72.875,"pitch":-150.75,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:15.984"} +{"sensors":[{"euler":{"heading":306.1875,"pitch":135.0,"roll":15.9375},"location":"Left Knee"},{"euler":{"heading":143.1875,"pitch":-170.25,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":116.5,"pitch":42.5625,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":338.5,"pitch":-143.5625,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":121.0625,"pitch":100.4375,"roll":30.0},"location":"Right Knee"},{"euler":{"heading":63.0625,"pitch":-131.3125,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:16.84"} +{"sensors":[{"euler":{"heading":179.5625,"pitch":144.6875,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":132.6875,"pitch":167.8125,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":111.5625,"pitch":39.0,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":339.5,"pitch":-141.75,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":122.125,"pitch":99.25,"roll":33.5625},"location":"Right Knee"},{"euler":{"heading":56.0625,"pitch":-128.125,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:16.185"} +{"sensors":[{"euler":{"heading":192.75,"pitch":161.5625,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":94.6875,"pitch":118.8125,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":35.375,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":339.6875,"pitch":-141.875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":124.8125,"pitch":100.125,"roll":37.3125},"location":"Right Knee"},{"euler":{"heading":54.875,"pitch":-127.5625,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:16.285"} +{"sensors":[{"euler":{"heading":204.25,"pitch":175.125,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":72.5,"pitch":104.875,"roll":34.3125},"location":"Left Ankle"},{"euler":{"heading":101.5625,"pitch":25.875,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":341.25,"pitch":-144.75,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":131.3125,"pitch":104.75,"roll":43.4375},"location":"Right Knee"},{"euler":{"heading":60.75,"pitch":-132.5625,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:16.387"} +{"sensors":[{"euler":{"heading":208.125,"pitch":170.0625,"roll":42.125},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":109.9375,"roll":37.0},"location":"Left Ankle"},{"euler":{"heading":95.625,"pitch":8.5625,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":342.8125,"pitch":-149.3125,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":141.375,"pitch":113.5,"roll":51.6875},"location":"Right Knee"},{"euler":{"heading":68.0625,"pitch":-136.25,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:16.488"} +{"sensors":[{"euler":{"heading":241.5625,"pitch":161.6875,"roll":42.125},"location":"Left Knee"},{"euler":{"heading":89.4375,"pitch":111.8125,"roll":42.6875},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":-15.625,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":350.5,"pitch":-144.4375,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":155.6875,"pitch":123.0625,"roll":60.0625},"location":"Right Knee"},{"euler":{"heading":67.3125,"pitch":-137.8125,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:16.589"} +{"sensors":[{"euler":{"heading":251.9375,"pitch":155.375,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":100.375,"pitch":115.75,"roll":50.125},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":-20.1875,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-134.375,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":124.1875,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-143.125,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:16.690"} +{"sensors":[{"euler":{"heading":259.3125,"pitch":150.0,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":103.125,"pitch":116.3125,"roll":52.75},"location":"Left Ankle"},{"euler":{"heading":106.0625,"pitch":12.6875,"roll":61.5625},"location":"Right Ankle"},{"euler":{"heading":5.8125,"pitch":-131.25,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":147.5,"pitch":116.4375,"roll":44.6875},"location":"Right Knee"},{"euler":{"heading":76.6875,"pitch":-147.5625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:16.791"} +{"sensors":[{"euler":{"heading":266.5625,"pitch":145.25,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":108.375,"pitch":119.75,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":124.375,"pitch":39.9375,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":2.9375,"pitch":-135.0625,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":129.0,"pitch":112.3125,"roll":27.75},"location":"Right Knee"},{"euler":{"heading":79.1875,"pitch":-151.9375,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:16.893"} +{"sensors":[{"euler":{"heading":272.9375,"pitch":141.375,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":115.0625,"pitch":126.25,"roll":60.3125},"location":"Left Ankle"},{"euler":{"heading":138.3125,"pitch":49.9375,"roll":32.0625},"location":"Right Ankle"},{"euler":{"heading":353.9375,"pitch":-139.4375,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":116.375,"pitch":111.875,"roll":16.875},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-155.6875,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:16.993"} +{"sensors":[{"euler":{"heading":281.6875,"pitch":136.75,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":122.0625,"pitch":142.5,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":129.5625,"pitch":48.4375,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":346.9375,"pitch":-142.0625,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":116.4375,"pitch":105.3125,"roll":19.625},"location":"Right Knee"},{"euler":{"heading":83.0,"pitch":-159.6875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:17.99"} +{"sensors":[{"euler":{"heading":294.875,"pitch":134.75,"roll":21.125},"location":"Left Knee"},{"euler":{"heading":136.125,"pitch":-176.0,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":121.125,"pitch":41.875,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":346.125,"pitch":-142.3125,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":118.6875,"pitch":103.6875,"roll":24.8125},"location":"Right Knee"},{"euler":{"heading":76.0,"pitch":-150.625,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:17.200"} +{"sensors":[{"euler":{"heading":304.9375,"pitch":134.875,"roll":16.6875},"location":"Left Knee"},{"euler":{"heading":143.0,"pitch":-170.375,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":114.9375,"pitch":37.9375,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":340.5,"pitch":-142.5,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":118.4375,"pitch":100.625,"roll":28.0},"location":"Right Knee"},{"euler":{"heading":65.0625,"pitch":-131.4375,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:17.300"} +{"sensors":[{"euler":{"heading":180.3125,"pitch":145.625,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":121.1875,"pitch":149.5,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":111.0625,"pitch":34.5,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":340.0625,"pitch":-141.6875,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":119.4375,"pitch":100.5,"roll":31.5},"location":"Right Knee"},{"euler":{"heading":56.625,"pitch":-128.3125,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:17.401"} +{"sensors":[{"euler":{"heading":193.9375,"pitch":161.875,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":86.625,"pitch":113.6875,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":108.6875,"pitch":31.9375,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":339.5,"pitch":-143.5625,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":122.875,"pitch":101.625,"roll":35.625},"location":"Right Knee"},{"euler":{"heading":55.3125,"pitch":-127.8125,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:17.502"} +{"sensors":[{"euler":{"heading":206.4375,"pitch":175.125,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":65.125,"pitch":102.8125,"roll":27.75},"location":"Left Ankle"},{"euler":{"heading":103.5625,"pitch":25.0625,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":340.125,"pitch":-145.4375,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":128.0625,"pitch":104.4375,"roll":40.875},"location":"Right Knee"},{"euler":{"heading":62.4375,"pitch":-132.5,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:17.603"} +{"sensors":[{"euler":{"heading":209.875,"pitch":173.0625,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":71.5625,"pitch":105.625,"roll":30.8125},"location":"Left Ankle"},{"euler":{"heading":97.5625,"pitch":10.9375,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":340.875,"pitch":-152.6875,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":138.0,"pitch":112.125,"roll":47.8125},"location":"Right Knee"},{"euler":{"heading":70.1875,"pitch":-136.125,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:17.703"} +{"sensors":[{"euler":{"heading":207.0,"pitch":163.9375,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":86.0,"pitch":109.5625,"roll":40.75},"location":"Left Ankle"},{"euler":{"heading":89.875,"pitch":-15.875,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":346.75,"pitch":-149.125,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":126.6875,"roll":56.5625},"location":"Right Knee"},{"euler":{"heading":67.4375,"pitch":-135.9375,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:17.804"} +{"sensors":[{"euler":{"heading":248.8125,"pitch":157.75,"roll":42.0},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":111.0625,"roll":44.5625},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":-26.375,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-136.3125,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":160.0,"pitch":128.4375,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":71.125,"pitch":-140.875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:17.905"} +{"sensors":[{"euler":{"heading":254.125,"pitch":152.875,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":96.1875,"pitch":112.9375,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":100.9375,"pitch":0.0625,"roll":61.5},"location":"Right Ankle"},{"euler":{"heading":4.75,"pitch":-132.3125,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":151.5625,"pitch":118.375,"roll":49.5625},"location":"Right Knee"},{"euler":{"heading":73.8125,"pitch":-144.0,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:18.6"} +{"sensors":[{"euler":{"heading":261.5625,"pitch":147.8125,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":101.625,"pitch":114.625,"roll":51.4375},"location":"Left Ankle"},{"euler":{"heading":120.625,"pitch":33.875,"roll":56.375},"location":"Right Ankle"},{"euler":{"heading":4.875,"pitch":-133.9375,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":134.625,"pitch":112.4375,"roll":31.5625},"location":"Right Knee"},{"euler":{"heading":76.1875,"pitch":-148.5,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:18.107"} +{"sensors":[{"euler":{"heading":268.625,"pitch":142.8125,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":117.75,"roll":54.75},"location":"Left Ankle"},{"euler":{"heading":137.25,"pitch":48.1875,"roll":49.3125},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":-137.6875,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":120.875,"pitch":113.5625,"roll":19.5625},"location":"Right Knee"},{"euler":{"heading":78.125,"pitch":-153.0,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:18.207"} +{"sensors":[{"euler":{"heading":275.6875,"pitch":138.875,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":112.4375,"pitch":126.125,"roll":59.375},"location":"Left Ankle"},{"euler":{"heading":136.6875,"pitch":50.5,"roll":47.4375},"location":"Right Ankle"},{"euler":{"heading":350.4375,"pitch":-140.3125,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":116.125,"pitch":109.125,"roll":16.9375},"location":"Right Knee"},{"euler":{"heading":80.1875,"pitch":-157.625,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:18.308"} +{"sensors":[{"euler":{"heading":284.3125,"pitch":136.0,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":119.875,"pitch":147.6875,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":124.9375,"pitch":44.8125,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":345.9375,"pitch":-142.25,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":118.0,"pitch":103.125,"roll":22.375},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-157.625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:18.410"} +{"sensors":[{"euler":{"heading":301.5,"pitch":133.0,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":139.4375,"pitch":-175.4375,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":119.3125,"pitch":41.6875,"roll":53.5625},"location":"Right Ankle"},{"euler":{"heading":341.4375,"pitch":-143.25,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":117.5625,"pitch":102.0,"roll":25.625},"location":"Right Knee"},{"euler":{"heading":67.75,"pitch":-141.4375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:18.511"} +{"sensors":[{"euler":{"heading":177.0625,"pitch":140.375,"roll":21.6875},"location":"Left Knee"},{"euler":{"heading":132.9375,"pitch":167.0625,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":116.1875,"pitch":38.3125,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":339.5625,"pitch":-144.125,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":118.5625,"pitch":101.6875,"roll":29.25},"location":"Right Knee"},{"euler":{"heading":59.625,"pitch":-131.0625,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:18.612"} +{"sensors":[{"euler":{"heading":189.875,"pitch":155.1875,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":121.5,"roll":52.8125},"location":"Left Ankle"},{"euler":{"heading":112.9375,"pitch":35.8125,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":340.5625,"pitch":-142.5625,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":120.8125,"pitch":101.8125,"roll":32.875},"location":"Right Knee"},{"euler":{"heading":55.1875,"pitch":-127.6875,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:18.713"} +{"sensors":[{"euler":{"heading":203.8125,"pitch":171.1875,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":72.0625,"pitch":106.0,"roll":33.6875},"location":"Left Ankle"},{"euler":{"heading":107.25,"pitch":29.75,"roll":55.875},"location":"Right Ankle"},{"euler":{"heading":341.6875,"pitch":-143.75,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":125.75,"pitch":103.5625,"roll":38.3125},"location":"Right Knee"},{"euler":{"heading":58.1875,"pitch":-129.4375,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:18.815"} +{"sensors":[{"euler":{"heading":210.1875,"pitch":176.5,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":66.3125,"pitch":103.6875,"roll":27.9375},"location":"Left Ankle"},{"euler":{"heading":101.0625,"pitch":18.25,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":342.125,"pitch":-149.3125,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":133.5625,"pitch":109.75,"roll":44.625},"location":"Right Knee"},{"euler":{"heading":67.375,"pitch":-135.5,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:18.916"} +{"sensors":[{"euler":{"heading":211.5,"pitch":166.5,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":83.8125,"pitch":109.75,"roll":37.8125},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":-2.3125,"roll":56.75},"location":"Right Ankle"},{"euler":{"heading":344.75,"pitch":-152.875,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":146.5,"pitch":123.5625,"roll":53.1875},"location":"Right Knee"},{"euler":{"heading":70.9375,"pitch":-138.375,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:19.16"} +{"sensors":[{"euler":{"heading":246.9375,"pitch":159.8125,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":91.875,"pitch":112.5,"roll":44.1875},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":-25.125,"roll":56.25},"location":"Right Ankle"},{"euler":{"heading":355.5,"pitch":-140.3125,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":159.3125,"pitch":127.75,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":70.6875,"pitch":-139.4375,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:19.117"} +{"sensors":[{"euler":{"heading":253.5625,"pitch":154.125,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":97.125,"pitch":113.6875,"roll":47.875},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":-7.125,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":4.0625,"pitch":-133.6875,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":152.125,"pitch":118.625,"roll":51.0625},"location":"Right Knee"},{"euler":{"heading":72.875,"pitch":-143.875,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:19.218"} +{"sensors":[{"euler":{"heading":261.3125,"pitch":148.5,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":102.5625,"pitch":114.6875,"roll":51.1875},"location":"Left Ankle"},{"euler":{"heading":111.4375,"pitch":22.25,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":6.1875,"pitch":-132.0,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":139.8125,"pitch":112.75,"roll":36.8125},"location":"Right Knee"},{"euler":{"heading":76.4375,"pitch":-148.25,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:19.318"} +{"sensors":[{"euler":{"heading":271.4375,"pitch":143.0,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":108.4375,"pitch":118.0,"roll":54.75},"location":"Left Ankle"},{"euler":{"heading":132.0,"pitch":45.5625,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":2.5,"pitch":-136.1875,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":122.5625,"pitch":113.3125,"roll":21.0},"location":"Right Knee"},{"euler":{"heading":80.625,"pitch":-153.6875,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:19.418"} +{"sensors":[{"euler":{"heading":278.0625,"pitch":138.5625,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":114.125,"pitch":125.125,"roll":58.75},"location":"Left Ankle"},{"euler":{"heading":138.25,"pitch":49.375,"roll":47.75},"location":"Right Ankle"},{"euler":{"heading":353.9375,"pitch":-140.3125,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":115.6875,"pitch":111.9375,"roll":15.875},"location":"Right Knee"},{"euler":{"heading":81.4375,"pitch":-157.5625,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:19.519"} +{"sensors":[{"euler":{"heading":285.6875,"pitch":135.25,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":120.1875,"pitch":140.1875,"roll":63.625},"location":"Left Ankle"},{"euler":{"heading":127.6875,"pitch":45.125,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":346.3125,"pitch":-142.8125,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":116.5,"pitch":107.9375,"roll":20.1875},"location":"Right Knee"},{"euler":{"heading":83.5625,"pitch":-160.25,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:19.619"} +{"sensors":[{"euler":{"heading":300.625,"pitch":133.1875,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":139.125,"pitch":-178.5,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":120.9375,"pitch":38.5,"roll":53.9375},"location":"Right Ankle"},{"euler":{"heading":343.125,"pitch":-143.6875,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":117.625,"pitch":105.75,"roll":24.4375},"location":"Right Knee"},{"euler":{"heading":69.3125,"pitch":-145.0625,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:19.721"} +{"sensors":[{"euler":{"heading":304.625,"pitch":136.9375,"roll":17.25},"location":"Left Knee"},{"euler":{"heading":141.8125,"pitch":-169.875,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":117.4375,"pitch":36.375,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":340.1875,"pitch":-144.875,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":118.4375,"pitch":103.6875,"roll":27.9375},"location":"Right Knee"},{"euler":{"heading":61.5625,"pitch":-131.1875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:19.822"} +{"sensors":[{"euler":{"heading":185.5625,"pitch":147.875,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":118.375,"pitch":137.4375,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":112.875,"pitch":32.875,"roll":54.25},"location":"Right Ankle"},{"euler":{"heading":340.6875,"pitch":-143.4375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":120.125,"pitch":103.375,"roll":31.9375},"location":"Right Knee"},{"euler":{"heading":56.4375,"pitch":-128.625,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:19.923"} +{"sensors":[{"euler":{"heading":199.875,"pitch":164.75,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":83.5625,"pitch":111.75,"roll":39.5},"location":"Left Ankle"},{"euler":{"heading":108.375,"pitch":28.0,"roll":55.625},"location":"Right Ankle"},{"euler":{"heading":341.3125,"pitch":-146.0,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":123.8125,"pitch":105.0625,"roll":35.75},"location":"Right Knee"},{"euler":{"heading":58.0,"pitch":-129.0,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:20.23"} +{"sensors":[{"euler":{"heading":210.25,"pitch":175.4375,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":66.0625,"pitch":103.6875,"roll":27.25},"location":"Left Ankle"},{"euler":{"heading":101.8125,"pitch":17.875,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":341.9375,"pitch":-149.375,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":130.3125,"pitch":108.5625,"roll":41.6875},"location":"Right Knee"},{"euler":{"heading":66.0,"pitch":-134.375,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:20.124"} +{"sensors":[{"euler":{"heading":212.3125,"pitch":168.375,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":78.8125,"pitch":109.625,"roll":34.3125},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":0.0625,"roll":56.9375},"location":"Right Ankle"},{"euler":{"heading":342.8125,"pitch":-155.9375,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":144.0625,"pitch":120.25,"roll":50.5},"location":"Right Knee"},{"euler":{"heading":70.625,"pitch":-137.0625,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:20.225"} +{"sensors":[{"euler":{"heading":247.625,"pitch":160.5,"roll":42.625},"location":"Left Knee"},{"euler":{"heading":92.0625,"pitch":114.0625,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-24.4375,"roll":53.9375},"location":"Right Ankle"},{"euler":{"heading":353.0625,"pitch":-144.625,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":158.625,"pitch":128.25,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":69.1875,"pitch":-137.5625,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:20.326"} +{"sensors":[{"euler":{"heading":257.5625,"pitch":153.875,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":104.125,"pitch":117.625,"roll":50.9375},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":-21.75,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":2.375,"pitch":-134.75,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":145.1875,"pitch":126.375,"roll":56.5},"location":"Right Knee"},{"euler":{"heading":74.0,"pitch":-143.0625,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:20.427"} +{"sensors":[{"euler":{"heading":265.25,"pitch":148.25,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":118.0625,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":107.75,"pitch":9.625,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":7.625,"pitch":-131.75,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":147.5,"pitch":117.6875,"roll":43.6875},"location":"Right Knee"},{"euler":{"heading":78.0,"pitch":-147.125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:20.527"} +{"sensors":[{"euler":{"heading":272.375,"pitch":143.0,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":113.25,"pitch":121.25,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":125.5,"pitch":38.5625,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":5.625,"pitch":-135.625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":128.875,"pitch":114.0,"roll":26.875},"location":"Right Knee"},{"euler":{"heading":80.6875,"pitch":-152.5625,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:20.628"} +{"sensors":[{"euler":{"heading":278.625,"pitch":139.1875,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":118.6875,"pitch":128.125,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":138.0,"pitch":49.625,"roll":47.5625},"location":"Right Ankle"},{"euler":{"heading":356.375,"pitch":-140.0,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":115.75,"pitch":112.5,"roll":15.875},"location":"Right Knee"},{"euler":{"heading":80.625,"pitch":-156.25,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:20.728"} +{"sensors":[{"euler":{"heading":284.9375,"pitch":136.125,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":125.0625,"pitch":141.9375,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":131.4375,"pitch":50.375,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":345.375,"pitch":-143.0,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":114.9375,"pitch":105.5625,"roll":17.25},"location":"Right Knee"},{"euler":{"heading":81.6875,"pitch":-160.1875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:20.829"} +{"sensors":[{"euler":{"heading":295.125,"pitch":134.6875,"roll":21.5},"location":"Left Knee"},{"euler":{"heading":136.125,"pitch":178.875,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":121.625,"pitch":42.75,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":345.0625,"pitch":-143.5625,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":116.625,"pitch":102.9375,"roll":22.125},"location":"Right Knee"},{"euler":{"heading":77.6875,"pitch":-153.4375,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:20.930"} +{"sensors":[{"euler":{"heading":311.0625,"pitch":133.0,"roll":15.25},"location":"Left Knee"},{"euler":{"heading":148.8125,"pitch":-159.625,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":116.6875,"pitch":37.625,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":339.25,"pitch":-145.125,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":116.1875,"pitch":101.5,"roll":25.25},"location":"Right Knee"},{"euler":{"heading":65.25,"pitch":-133.375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:21.30"} +{"sensors":[{"euler":{"heading":179.9375,"pitch":142.75,"roll":21.6875},"location":"Left Knee"},{"euler":{"heading":131.5625,"pitch":170.3125,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":113.25,"pitch":33.0,"roll":54.4375},"location":"Right Ankle"},{"euler":{"heading":340.125,"pitch":-144.875,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":117.5,"pitch":102.625,"roll":28.9375},"location":"Right Knee"},{"euler":{"heading":57.375,"pitch":-128.5,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:21.131"} +{"sensors":[{"euler":{"heading":194.0625,"pitch":158.4375,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":119.75,"roll":49.375},"location":"Left Ankle"},{"euler":{"heading":110.625,"pitch":29.4375,"roll":55.1875},"location":"Right Ankle"},{"euler":{"heading":340.5625,"pitch":-147.0625,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":121.5625,"pitch":104.4375,"roll":33.125},"location":"Right Knee"},{"euler":{"heading":56.375,"pitch":-127.5625,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:21.231"} +{"sensors":[{"euler":{"heading":207.5,"pitch":171.75,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":68.5625,"pitch":106.3125,"roll":30.5625},"location":"Left Ankle"},{"euler":{"heading":105.75,"pitch":23.0,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":341.75,"pitch":-149.5625,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":125.75,"pitch":107.1875,"roll":37.625},"location":"Right Knee"},{"euler":{"heading":62.0625,"pitch":-131.75,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:21.332"} +{"sensors":[{"euler":{"heading":212.3125,"pitch":171.25,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":72.5,"pitch":107.6875,"roll":30.9375},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":9.3125,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":343.125,"pitch":-156.25,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":135.3125,"pitch":113.875,"roll":44.4375},"location":"Right Knee"},{"euler":{"heading":70.375,"pitch":-137.0625,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:21.433"} +{"sensors":[{"euler":{"heading":208.9375,"pitch":161.875,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":86.875,"pitch":112.125,"roll":40.5},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":-14.3125,"roll":56.75},"location":"Right Ankle"},{"euler":{"heading":349.6875,"pitch":-150.5625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":151.125,"pitch":126.0625,"roll":53.6875},"location":"Right Knee"},{"euler":{"heading":70.6875,"pitch":-138.0,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:21.533"} +{"sensors":[{"euler":{"heading":255.4375,"pitch":155.625,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":114.6875,"roll":45.1875},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":-22.0,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":359.3125,"pitch":-136.6875,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":128.375,"roll":57.0},"location":"Right Knee"},{"euler":{"heading":73.5625,"pitch":-142.0625,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:21.634"} +{"sensors":[{"euler":{"heading":262.1875,"pitch":150.3125,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":99.0625,"pitch":115.0625,"roll":48.5},"location":"Left Ankle"},{"euler":{"heading":104.5625,"pitch":4.625,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":6.375,"pitch":-131.1875,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":147.6875,"pitch":119.0625,"roll":45.3125},"location":"Right Knee"},{"euler":{"heading":77.125,"pitch":-146.3125,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:21.735"} +{"sensors":[{"euler":{"heading":270.75,"pitch":144.6875,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":105.0,"pitch":116.6875,"roll":51.6875},"location":"Left Ankle"},{"euler":{"heading":122.1875,"pitch":35.25,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":5.1875,"pitch":-133.6875,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":128.6875,"pitch":113.3125,"roll":27.5},"location":"Right Knee"},{"euler":{"heading":82.1875,"pitch":-153.3125,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:21.836"} +{"sensors":[{"euler":{"heading":277.6875,"pitch":140.1875,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":111.75,"pitch":122.125,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":140.3125,"pitch":50.4375,"roll":46.0625},"location":"Right Ankle"},{"euler":{"heading":356.9375,"pitch":-139.9375,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":114.6875,"pitch":113.1875,"roll":15.0625},"location":"Right Knee"},{"euler":{"heading":83.4375,"pitch":-157.875,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:21.937"} +{"sensors":[{"euler":{"heading":286.375,"pitch":135.5625,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":118.6875,"pitch":134.9375,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":134.25,"pitch":49.625,"roll":48.5625},"location":"Right Ankle"},{"euler":{"heading":350.0625,"pitch":-142.3125,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":115.9375,"pitch":107.4375,"roll":18.0625},"location":"Right Knee"},{"euler":{"heading":83.0625,"pitch":-160.125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:22.37"} +{"sensors":[{"euler":{"heading":296.8125,"pitch":132.1875,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":132.4375,"pitch":171.0625,"roll":65.375},"location":"Left Ankle"},{"euler":{"heading":123.125,"pitch":41.9375,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":350.0,"pitch":-142.5625,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":117.0625,"pitch":105.5625,"roll":22.5625},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-151.875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:22.138"} +{"sensors":[{"euler":{"heading":312.5,"pitch":131.4375,"roll":15.5625},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":-165.375,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":118.5,"pitch":37.5,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":344.625,"pitch":-143.3125,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":117.5,"pitch":104.0,"roll":26.1875},"location":"Right Knee"},{"euler":{"heading":64.9375,"pitch":-130.0,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:22.238"} +{"sensors":[{"euler":{"heading":180.0,"pitch":140.6875,"roll":20.0},"location":"Left Knee"},{"euler":{"heading":133.5,"pitch":174.8125,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":115.5,"pitch":34.3125,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":345.25,"pitch":-143.25,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":118.875,"pitch":104.1875,"roll":29.8125},"location":"Right Knee"},{"euler":{"heading":57.5625,"pitch":-125.6875,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:22.339"} +{"sensors":[{"euler":{"heading":194.3125,"pitch":158.0,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":93.125,"pitch":120.9375,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":31.0625,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":344.25,"pitch":-144.375,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":122.125,"pitch":104.9375,"roll":33.6875},"location":"Right Knee"},{"euler":{"heading":55.0,"pitch":-125.9375,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:22.439"} +{"sensors":[{"euler":{"heading":207.875,"pitch":173.5625,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":65.9375,"pitch":105.0,"roll":29.125},"location":"Left Ankle"},{"euler":{"heading":107.6875,"pitch":25.3125,"roll":55.375},"location":"Right Ankle"},{"euler":{"heading":343.875,"pitch":-146.875,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":126.25,"pitch":107.625,"roll":38.5},"location":"Right Knee"},{"euler":{"heading":59.8125,"pitch":-131.1875,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:22.540"} +{"sensors":[{"euler":{"heading":212.375,"pitch":174.0625,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":68.875,"pitch":107.125,"roll":28.6875},"location":"Left Ankle"},{"euler":{"heading":101.5,"pitch":14.0625,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-153.75,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":134.8125,"pitch":114.5625,"roll":44.625},"location":"Right Knee"},{"euler":{"heading":67.25,"pitch":-135.4375,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:22.640"} +{"sensors":[{"euler":{"heading":210.625,"pitch":164.0625,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":111.25,"roll":38.875},"location":"Left Ankle"},{"euler":{"heading":94.0,"pitch":-4.1875,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":348.25,"pitch":-151.8125,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":149.4375,"pitch":124.6875,"roll":53.6875},"location":"Right Knee"},{"euler":{"heading":69.125,"pitch":-136.5,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:22.742"} +{"sensors":[{"euler":{"heading":254.9375,"pitch":157.3125,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":93.0,"pitch":113.25,"roll":44.25},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":-26.4375,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-138.375,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":131.1875,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":72.375,"pitch":-140.0625,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:22.842"} +{"sensors":[{"euler":{"heading":261.375,"pitch":151.625,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":99.375,"pitch":114.5,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":96.5,"pitch":-7.875,"roll":59.625},"location":"Right Ankle"},{"euler":{"heading":7.375,"pitch":-133.375,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":153.0625,"pitch":122.0,"roll":50.75},"location":"Right Knee"},{"euler":{"heading":75.75,"pitch":-143.375,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:22.943"} +{"sensors":[{"euler":{"heading":265.125,"pitch":147.75,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":101.4375,"pitch":115.125,"roll":50.5625},"location":"Left Ankle"},{"euler":{"heading":112.6875,"pitch":20.625,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":10.625,"pitch":-133.0,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":139.875,"pitch":118.25,"roll":35.1875},"location":"Right Knee"},{"euler":{"heading":77.125,"pitch":-148.8125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:23.44"} +{"sensors":[{"euler":{"heading":272.125,"pitch":143.4375,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":105.6875,"pitch":117.875,"roll":53.6875},"location":"Left Ankle"},{"euler":{"heading":131.625,"pitch":42.9375,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":5.875,"pitch":-136.4375,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":120.8125,"pitch":115.8125,"roll":20.1875},"location":"Right Knee"},{"euler":{"heading":79.375,"pitch":-154.0625,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:23.144"} +{"sensors":[{"euler":{"heading":277.8125,"pitch":139.375,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":112.25,"pitch":125.0,"roll":58.6875},"location":"Left Ankle"},{"euler":{"heading":135.25,"pitch":48.625,"roll":48.0},"location":"Right Ankle"},{"euler":{"heading":353.8125,"pitch":-140.8125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":114.5,"pitch":111.375,"roll":15.5625},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-157.875,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:23.245"} +{"sensors":[{"euler":{"heading":286.5625,"pitch":135.75,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":118.5625,"pitch":142.5625,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":123.8125,"pitch":42.625,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":348.125,"pitch":-142.9375,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":116.0,"pitch":106.625,"roll":20.4375},"location":"Right Knee"},{"euler":{"heading":81.375,"pitch":-158.6875,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:23.346"} +{"sensors":[{"euler":{"heading":319.5,"pitch":133.75,"roll":17.6875},"location":"Left Knee"},{"euler":{"heading":142.875,"pitch":-170.875,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":117.4375,"pitch":39.125,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":344.6875,"pitch":-143.625,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":116.0,"pitch":104.3125,"roll":23.8125},"location":"Right Knee"},{"euler":{"heading":68.75,"pitch":-140.6875,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:23.447"} +{"sensors":[{"euler":{"heading":174.6875,"pitch":138.375,"roll":17.0625},"location":"Left Knee"},{"euler":{"heading":141.5625,"pitch":-168.8125,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":112.5625,"pitch":34.0,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":342.0,"pitch":-143.9375,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":116.375,"pitch":102.4375,"roll":27.4375},"location":"Right Knee"},{"euler":{"heading":59.25,"pitch":-129.4375,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:23.548"} +{"sensors":[{"euler":{"heading":187.5,"pitch":150.5625,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":111.5625,"pitch":136.1875,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":109.0625,"pitch":30.25,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":342.25,"pitch":-143.1875,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":118.4375,"pitch":102.8125,"roll":31.0625},"location":"Right Knee"},{"euler":{"heading":55.75,"pitch":-127.75,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:23.652"} +{"sensors":[{"euler":{"heading":202.1875,"pitch":167.3125,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":76.8125,"pitch":110.75,"roll":38.4375},"location":"Left Ankle"},{"euler":{"heading":105.875,"pitch":23.8125,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":342.8125,"pitch":-146.6875,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":123.375,"pitch":105.875,"roll":36.0},"location":"Right Knee"},{"euler":{"heading":58.4375,"pitch":-130.0,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:23.752"} +{"sensors":[{"euler":{"heading":212.6875,"pitch":176.0,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":64.3125,"pitch":104.9375,"roll":26.0625},"location":"Left Ankle"},{"euler":{"heading":101.8125,"pitch":15.3125,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":344.0,"pitch":-151.5,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":130.0625,"pitch":112.3125,"roll":41.3125},"location":"Right Knee"},{"euler":{"heading":67.375,"pitch":-135.875,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:23.853"} +{"sensors":[{"euler":{"heading":214.4375,"pitch":167.9375,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":80.75,"pitch":112.375,"roll":33.6875},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":-1.25,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":345.0,"pitch":-157.9375,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":142.9375,"pitch":122.6875,"roll":48.8125},"location":"Right Knee"},{"euler":{"heading":72.875,"pitch":-138.5,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:23.954"} +{"sensors":[{"euler":{"heading":254.0625,"pitch":159.4375,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":90.5,"pitch":114.8125,"roll":41.25},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-25.5625,"roll":53.5625},"location":"Right Ankle"},{"euler":{"heading":356.0625,"pitch":-145.3125,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":156.5,"pitch":128.9375,"roll":58.6875},"location":"Right Knee"},{"euler":{"heading":73.0625,"pitch":-139.0625,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:24.55"} +{"sensors":[{"euler":{"heading":260.6875,"pitch":153.5625,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":96.75,"pitch":114.3125,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":-22.125,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":5.4375,"pitch":-135.1875,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":159.4375,"pitch":128.75,"roll":56.3125},"location":"Right Knee"},{"euler":{"heading":77.9375,"pitch":-145.6875,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:24.155"} +{"sensors":[{"euler":{"heading":265.375,"pitch":148.4375,"roll":42.125},"location":"Left Knee"},{"euler":{"heading":100.5625,"pitch":114.75,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":108.625,"pitch":8.875,"roll":60.4375},"location":"Right Ankle"},{"euler":{"heading":10.75,"pitch":-131.75,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":146.0,"pitch":120.0625,"roll":41.8125},"location":"Right Knee"},{"euler":{"heading":80.3125,"pitch":-149.625,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:24.255"} +{"sensors":[{"euler":{"heading":272.875,"pitch":143.5625,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":105.375,"pitch":117.4375,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":124.8125,"pitch":35.125,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":6.6875,"pitch":-135.375,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":125.625,"pitch":115.0625,"roll":24.5625},"location":"Right Knee"},{"euler":{"heading":82.125,"pitch":-153.5,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:24.356"} +{"sensors":[{"euler":{"heading":279.25,"pitch":139.8125,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":110.6875,"pitch":122.5,"roll":55.375},"location":"Left Ankle"},{"euler":{"heading":138.5,"pitch":45.875,"roll":47.1875},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-139.625,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":113.625,"pitch":114.25,"roll":14.6875},"location":"Right Knee"},{"euler":{"heading":82.5625,"pitch":-157.25,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:24.457"} +{"sensors":[{"euler":{"heading":284.875,"pitch":136.5625,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":116.375,"pitch":132.5,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":130.6875,"pitch":45.0625,"roll":49.6875},"location":"Right Ankle"},{"euler":{"heading":349.5,"pitch":-141.875,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":113.5,"pitch":108.5625,"roll":17.125},"location":"Right Knee"},{"euler":{"heading":83.9375,"pitch":-161.0,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:24.558"} +{"sensors":[{"euler":{"heading":296.1875,"pitch":135.5,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":141.875,"pitch":166.4375,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":120.6875,"pitch":37.875,"roll":53.125},"location":"Right Ankle"},{"euler":{"heading":348.8125,"pitch":-142.5625,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":115.3125,"pitch":105.1875,"roll":21.75},"location":"Right Knee"},{"euler":{"heading":77.4375,"pitch":-152.0,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:24.658"} +{"sensors":[{"euler":{"heading":313.6875,"pitch":132.9375,"roll":14.875},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":-169.3125,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":116.5625,"pitch":32.625,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":343.375,"pitch":-144.5,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":116.5,"pitch":105.25,"roll":25.6875},"location":"Right Knee"},{"euler":{"heading":66.125,"pitch":-132.0,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:24.759"} +{"sensors":[{"euler":{"heading":181.0625,"pitch":143.75,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":127.75,"pitch":165.4375,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":113.5,"pitch":28.6875,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":343.1875,"pitch":-144.1875,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":118.25,"pitch":105.9375,"roll":29.0625},"location":"Right Knee"},{"euler":{"heading":56.875,"pitch":-127.375,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:24.859"} +{"sensors":[{"euler":{"heading":195.125,"pitch":160.375,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":88.4375,"pitch":116.75,"roll":47.3125},"location":"Left Ankle"},{"euler":{"heading":110.0625,"pitch":25.3125,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":343.375,"pitch":-145.1875,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":121.25,"pitch":106.875,"roll":32.5625},"location":"Right Knee"},{"euler":{"heading":54.1875,"pitch":-125.75,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:24.960"} +{"sensors":[{"euler":{"heading":208.375,"pitch":173.875,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":65.625,"pitch":105.4375,"roll":28.625},"location":"Left Ankle"},{"euler":{"heading":104.8125,"pitch":18.5625,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":342.9375,"pitch":-147.4375,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":124.3125,"pitch":108.5625,"roll":37.125},"location":"Right Knee"},{"euler":{"heading":59.0625,"pitch":-129.25,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:25.61"} +{"sensors":[{"euler":{"heading":213.0625,"pitch":171.5625,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":71.0625,"pitch":108.75,"roll":29.8125},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":8.0625,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":344.625,"pitch":-152.6875,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":132.0,"pitch":115.3125,"roll":42.5625},"location":"Right Knee"},{"euler":{"heading":69.0625,"pitch":-135.5,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:25.161"} +{"sensors":[{"euler":{"heading":210.5,"pitch":163.4375,"roll":40.875},"location":"Left Knee"},{"euler":{"heading":84.6875,"pitch":112.1875,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":-9.625,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":348.875,"pitch":-149.625,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":148.125,"pitch":126.625,"roll":52.125},"location":"Right Knee"},{"euler":{"heading":69.4375,"pitch":-136.625,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:25.262"} +{"sensors":[{"euler":{"heading":256.3125,"pitch":157.0625,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":92.9375,"pitch":113.25,"roll":43.3125},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":-20.4375,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":357.0,"pitch":-137.6875,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":154.3125,"pitch":126.375,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":72.0625,"pitch":-140.8125,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:25.363"} +{"sensors":[{"euler":{"heading":263.5,"pitch":151.375,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":98.75,"pitch":114.375,"roll":46.75},"location":"Left Ankle"},{"euler":{"heading":100.75,"pitch":4.75,"roll":59.875},"location":"Right Ankle"},{"euler":{"heading":6.4375,"pitch":-132.6875,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":144.5,"pitch":119.9375,"roll":43.5},"location":"Right Knee"},{"euler":{"heading":77.625,"pitch":-145.9375,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:25.464"} +{"sensors":[{"euler":{"heading":270.5,"pitch":146.3125,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":102.9375,"pitch":115.375,"roll":49.5625},"location":"Left Ankle"},{"euler":{"heading":119.4375,"pitch":29.6875,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":8.4375,"pitch":-135.4375,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":128.1875,"pitch":117.6875,"roll":27.25},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-151.0625,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:25.564"} +{"sensors":[{"euler":{"heading":276.375,"pitch":141.8125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":107.125,"pitch":118.875,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":135.75,"pitch":44.8125,"roll":49.0625},"location":"Right Ankle"},{"euler":{"heading":0.625,"pitch":-139.25,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":114.6875,"pitch":115.875,"roll":15.4375},"location":"Right Knee"},{"euler":{"heading":79.8125,"pitch":-154.375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:25.665"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":139.0,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":111.5625,"pitch":125.6875,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":137.375,"pitch":48.4375,"roll":46.9375},"location":"Right Ankle"},{"euler":{"heading":350.625,"pitch":-142.125,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":111.6875,"pitch":110.625,"roll":13.875},"location":"Right Knee"},{"euler":{"heading":79.875,"pitch":-158.6875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:25.766"} +{"sensors":[{"euler":{"heading":288.375,"pitch":136.1875,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":118.3125,"pitch":144.125,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":125.125,"pitch":41.25,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":347.375,"pitch":-143.5625,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":113.1875,"pitch":105.625,"roll":18.625},"location":"Right Knee"},{"euler":{"heading":80.5625,"pitch":-156.875,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:25.867"} +{"sensors":[{"euler":{"heading":308.75,"pitch":133.0,"roll":16.6875},"location":"Left Knee"},{"euler":{"heading":143.625,"pitch":-171.4375,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":118.875,"pitch":36.25,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":343.0625,"pitch":-144.0,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":113.5,"pitch":104.5,"roll":22.4375},"location":"Right Knee"},{"euler":{"heading":66.0,"pitch":-137.125,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:25.968"} +{"sensors":[{"euler":{"heading":175.9375,"pitch":141.4375,"roll":17.875},"location":"Left Knee"},{"euler":{"heading":132.4375,"pitch":178.0,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":116.125,"pitch":31.4375,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":343.8125,"pitch":-144.0625,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":114.875,"pitch":105.6875,"roll":26.125},"location":"Right Knee"},{"euler":{"heading":57.875,"pitch":-129.5625,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:26.69"} +{"sensors":[{"euler":{"heading":190.1875,"pitch":154.0625,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":101.4375,"pitch":122.375,"roll":54.3125},"location":"Left Ankle"},{"euler":{"heading":114.0625,"pitch":27.75,"roll":53.9375},"location":"Right Ankle"},{"euler":{"heading":344.0,"pitch":-145.1875,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":117.875,"pitch":107.625,"roll":29.6875},"location":"Right Knee"},{"euler":{"heading":55.875,"pitch":-127.375,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:26.170"} +{"sensors":[{"euler":{"heading":204.25,"pitch":170.0625,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":70.625,"pitch":106.875,"roll":33.6875},"location":"Left Ankle"},{"euler":{"heading":110.5,"pitch":23.0,"roll":54.375},"location":"Right Ankle"},{"euler":{"heading":343.3125,"pitch":-147.75,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":121.8125,"pitch":108.9375,"roll":34.25},"location":"Right Knee"},{"euler":{"heading":58.5625,"pitch":-129.25,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:26.271"} +{"sensors":[{"euler":{"heading":211.8125,"pitch":176.0,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":66.1875,"pitch":104.125,"roll":27.4375},"location":"Left Ankle"},{"euler":{"heading":103.625,"pitch":13.75,"roll":54.5},"location":"Right Ankle"},{"euler":{"heading":342.9375,"pitch":-152.875,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":127.6875,"pitch":113.6875,"roll":39.625},"location":"Right Knee"},{"euler":{"heading":66.5,"pitch":-135.3125,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:26.372"} +{"sensors":[{"euler":{"heading":212.3125,"pitch":165.6875,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":81.25,"pitch":109.6875,"roll":36.5625},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":-1.9375,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":344.125,"pitch":-155.8125,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":138.9375,"pitch":122.0625,"roll":46.9375},"location":"Right Knee"},{"euler":{"heading":70.375,"pitch":-138.25,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:26.473"} +{"sensors":[{"euler":{"heading":255.6875,"pitch":157.9375,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":91.5625,"pitch":112.3125,"roll":42.5},"location":"Left Ankle"},{"euler":{"heading":87.4375,"pitch":-21.375,"roll":56.375},"location":"Right Ankle"},{"euler":{"heading":354.375,"pitch":-144.25,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":153.75,"pitch":127.3125,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":75.125,"pitch":-141.875,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:26.573"} +{"sensors":[{"euler":{"heading":261.5,"pitch":152.4375,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":113.75,"roll":47.5},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":-5.4375,"roll":58.625},"location":"Right Ankle"},{"euler":{"heading":3.875,"pitch":-136.0625,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":150.3125,"pitch":123.6875,"roll":49.125},"location":"Right Knee"},{"euler":{"heading":77.5,"pitch":-146.125,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:26.674"} +{"sensors":[{"euler":{"heading":268.0,"pitch":147.625,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":101.5,"pitch":115.25,"roll":50.0625},"location":"Left Ankle"},{"euler":{"heading":118.0,"pitch":23.8125,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":7.0625,"pitch":-133.3125,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":137.9375,"pitch":118.8125,"roll":35.3125},"location":"Right Knee"},{"euler":{"heading":78.875,"pitch":-149.875,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:26.776"} +{"sensors":[{"euler":{"heading":274.8125,"pitch":142.875,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":106.5625,"pitch":118.625,"roll":53.375},"location":"Left Ankle"},{"euler":{"heading":133.125,"pitch":40.125,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":1.25,"pitch":-137.875,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":118.3125,"pitch":117.3125,"roll":17.875},"location":"Right Knee"},{"euler":{"heading":79.8125,"pitch":-154.375,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:26.877"} +{"sensors":[{"euler":{"heading":280.0625,"pitch":139.4375,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":112.0,"pitch":124.4375,"roll":57.75},"location":"Left Ankle"},{"euler":{"heading":138.9375,"pitch":46.5,"roll":46.1875},"location":"Right Ankle"},{"euler":{"heading":350.4375,"pitch":-141.875,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":110.25,"pitch":113.6875,"roll":12.8125},"location":"Right Knee"},{"euler":{"heading":79.9375,"pitch":-157.875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:26.978"} +{"sensors":[{"euler":{"heading":287.5,"pitch":136.1875,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":118.0625,"pitch":141.375,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":126.625,"pitch":41.5,"roll":51.25},"location":"Right Ankle"},{"euler":{"heading":345.5,"pitch":-144.0,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":112.4375,"pitch":108.375,"roll":17.4375},"location":"Right Knee"},{"euler":{"heading":83.125,"pitch":-159.6875,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:27.80"} +{"sensors":[{"euler":{"heading":303.0,"pitch":134.3125,"roll":18.4375},"location":"Left Knee"},{"euler":{"heading":138.8125,"pitch":-177.0,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":121.0,"pitch":36.5625,"roll":52.5},"location":"Right Ankle"},{"euler":{"heading":342.0,"pitch":-145.25,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":112.3125,"pitch":106.5,"roll":21.0},"location":"Right Knee"},{"euler":{"heading":67.3125,"pitch":-141.1875,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:27.181"} +{"sensors":[{"euler":{"heading":174.0625,"pitch":138.3125,"roll":17.125},"location":"Left Knee"},{"euler":{"heading":134.5,"pitch":-179.25,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":116.625,"pitch":32.4375,"roll":52.25},"location":"Right Ankle"},{"euler":{"heading":340.5625,"pitch":-145.625,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":113.375,"pitch":105.1875,"roll":24.5},"location":"Right Knee"},{"euler":{"heading":59.25,"pitch":-130.6875,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:27.282"} +{"sensors":[{"euler":{"heading":186.9375,"pitch":149.75,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":105.5625,"pitch":130.5,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":112.625,"pitch":29.8125,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":341.5,"pitch":-144.5625,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":114.5,"pitch":105.3125,"roll":27.9375},"location":"Right Knee"},{"euler":{"heading":55.3125,"pitch":-127.625,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:27.382"} +{"sensors":[{"euler":{"heading":202.125,"pitch":165.5625,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":74.0,"pitch":109.9375,"roll":36.0},"location":"Left Ankle"},{"euler":{"heading":109.125,"pitch":25.25,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":341.4375,"pitch":-147.625,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":118.9375,"pitch":107.4375,"roll":32.625},"location":"Right Knee"},{"euler":{"heading":57.0,"pitch":-128.8125,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:27.483"} +{"sensors":[{"euler":{"heading":211.5625,"pitch":174.1875,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":62.0,"pitch":103.125,"roll":24.4375},"location":"Left Ankle"},{"euler":{"heading":103.6875,"pitch":16.25,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":341.5,"pitch":-153.875,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":125.8125,"pitch":112.5625,"roll":38.125},"location":"Right Knee"},{"euler":{"heading":65.8125,"pitch":-134.9375,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:27.587"} +{"sensors":[{"euler":{"heading":212.625,"pitch":164.75,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":79.5625,"pitch":110.75,"roll":33.3125},"location":"Left Ankle"},{"euler":{"heading":96.3125,"pitch":-0.9375,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":343.125,"pitch":-159.4375,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":137.8125,"pitch":122.5625,"roll":45.5},"location":"Right Knee"},{"euler":{"heading":71.0,"pitch":-138.0,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:27.688"} +{"sensors":[{"euler":{"heading":255.875,"pitch":157.3125,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":88.9375,"pitch":113.0625,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":83.5625,"pitch":-21.875,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":350.9375,"pitch":-150.625,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":151.5,"pitch":126.5625,"roll":55.5625},"location":"Right Knee"},{"euler":{"heading":70.875,"pitch":-139.0,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:27.789"} +{"sensors":[{"euler":{"heading":259.875,"pitch":152.625,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":93.4375,"pitch":114.4375,"roll":45.3125},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":-20.5,"roll":55.875},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":-137.875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":127.375,"roll":55.0},"location":"Right Knee"},{"euler":{"heading":73.1875,"pitch":-143.75,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:27.890"} +{"sensors":[{"euler":{"heading":265.5625,"pitch":148.1875,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":97.0625,"pitch":115.3125,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":3.1875,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":6.75,"pitch":-134.0625,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":145.875,"pitch":122.3125,"roll":42.125},"location":"Right Knee"},{"euler":{"heading":75.9375,"pitch":-147.375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:27.991"} +{"sensors":[{"euler":{"heading":272.4375,"pitch":143.6875,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":101.5625,"pitch":117.125,"roll":51.4375},"location":"Left Ankle"},{"euler":{"heading":124.125,"pitch":31.5,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":5.5,"pitch":-136.8125,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":127.3125,"pitch":118.3125,"roll":25.25},"location":"Right Knee"},{"euler":{"heading":79.25,"pitch":-153.0625,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:28.92"} +{"sensors":[{"euler":{"heading":278.75,"pitch":140.125,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":107.5,"pitch":120.9375,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":138.125,"pitch":43.6875,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":354.0,"pitch":-141.1875,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":111.9375,"pitch":116.8125,"roll":13.4375},"location":"Right Knee"},{"euler":{"heading":80.6875,"pitch":-158.0625,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:28.193"} +{"sensors":[{"euler":{"heading":285.5,"pitch":137.0625,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":114.3125,"pitch":132.375,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":131.125,"pitch":44.375,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":345.5,"pitch":-144.3125,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":110.625,"pitch":109.375,"roll":14.875},"location":"Right Knee"},{"euler":{"heading":83.0,"pitch":-161.625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:28.294"} +{"sensors":[{"euler":{"heading":300.8125,"pitch":134.375,"roll":18.8125},"location":"Left Knee"},{"euler":{"heading":131.0625,"pitch":170.6875,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":122.25,"pitch":37.625,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-145.0625,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":112.125,"pitch":106.875,"roll":19.3125},"location":"Right Knee"},{"euler":{"heading":74.3125,"pitch":-149.375,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:28.395"} +{"sensors":[{"euler":{"heading":311.875,"pitch":135.5,"roll":14.5625},"location":"Left Knee"},{"euler":{"heading":136.0625,"pitch":-176.125,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":118.1875,"pitch":34.625,"roll":50.9375},"location":"Right Ankle"},{"euler":{"heading":339.6875,"pitch":-146.1875,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":111.5625,"pitch":104.4375,"roll":22.0625},"location":"Right Knee"},{"euler":{"heading":62.6875,"pitch":-130.4375,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:28.496"} +{"sensors":[{"euler":{"heading":183.0625,"pitch":145.6875,"roll":23.5625},"location":"Left Knee"},{"euler":{"heading":118.625,"pitch":149.3125,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":114.375,"pitch":31.8125,"roll":50.1875},"location":"Right Ankle"},{"euler":{"heading":340.75,"pitch":-144.875,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":112.875,"pitch":104.0625,"roll":25.9375},"location":"Right Knee"},{"euler":{"heading":54.5625,"pitch":-127.6875,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:28.600"} +{"sensors":[{"euler":{"heading":196.9375,"pitch":161.8125,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":83.3125,"pitch":113.0625,"roll":44.1875},"location":"Left Ankle"},{"euler":{"heading":110.375,"pitch":28.5625,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":341.25,"pitch":-145.3125,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":116.25,"pitch":104.6875,"roll":30.125},"location":"Right Knee"},{"euler":{"heading":53.9375,"pitch":-127.125,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:28.700"} +{"sensors":[{"euler":{"heading":208.375,"pitch":172.75,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":62.75,"pitch":102.9375,"roll":26.9375},"location":"Left Ankle"},{"euler":{"heading":104.25,"pitch":20.625,"roll":52.9375},"location":"Right Ankle"},{"euler":{"heading":342.0625,"pitch":-148.125,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":120.9375,"pitch":108.875,"roll":35.1875},"location":"Right Knee"},{"euler":{"heading":64.0625,"pitch":-134.625,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:28.800"} +{"sensors":[{"euler":{"heading":210.5,"pitch":166.75,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":70.75,"pitch":108.875,"roll":30.0625},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":8.6875,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":341.8125,"pitch":-155.5625,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":130.5625,"pitch":115.9375,"roll":42.25},"location":"Right Knee"},{"euler":{"heading":70.375,"pitch":-137.8125,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:28.901"} +{"sensors":[{"euler":{"heading":207.5,"pitch":158.75,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":88.0625,"pitch":113.4375,"roll":40.9375},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":-17.0,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":349.1875,"pitch":-148.5,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":148.1875,"pitch":127.625,"roll":52.375},"location":"Right Knee"},{"euler":{"heading":67.5,"pitch":-137.8125,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:29.2"} +{"sensors":[{"euler":{"heading":267.6875,"pitch":150.9375,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":101.5625,"pitch":117.25,"roll":47.9375},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":-23.5625,"roll":52.25},"location":"Right Ankle"},{"euler":{"heading":0.875,"pitch":-136.6875,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":153.625,"pitch":130.5625,"roll":52.4375},"location":"Right Knee"},{"euler":{"heading":73.4375,"pitch":-142.875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:29.103"} +{"sensors":[{"euler":{"heading":275.625,"pitch":145.25,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":119.3125,"roll":50.75},"location":"Left Ankle"},{"euler":{"heading":104.375,"pitch":5.1875,"roll":56.8125},"location":"Right Ankle"},{"euler":{"heading":9.5625,"pitch":-132.5,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":141.25,"pitch":122.5,"roll":39.6875},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-148.0625,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:29.203"} +{"sensors":[{"euler":{"heading":282.5,"pitch":140.75,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":110.125,"pitch":122.1875,"roll":53.625},"location":"Left Ankle"},{"euler":{"heading":124.75,"pitch":32.3125,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":5.875,"pitch":-136.3125,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":123.3125,"pitch":117.3125,"roll":22.4375},"location":"Right Knee"},{"euler":{"heading":80.4375,"pitch":-153.25,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:29.304"} +{"sensors":[{"euler":{"heading":288.3125,"pitch":137.25,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":115.625,"pitch":127.5625,"roll":57.375},"location":"Left Ankle"},{"euler":{"heading":138.0625,"pitch":46.4375,"roll":46.8125},"location":"Right Ankle"},{"euler":{"heading":352.8125,"pitch":-142.6875,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":110.75,"pitch":114.0,"roll":11.4375},"location":"Right Knee"},{"euler":{"heading":81.625,"pitch":-157.5,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:29.405"} +{"sensors":[{"euler":{"heading":294.0625,"pitch":133.6875,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":120.5625,"pitch":139.25,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":130.75,"pitch":42.375,"roll":49.875},"location":"Right Ankle"},{"euler":{"heading":347.125,"pitch":-145.0625,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":111.25,"pitch":109.4375,"roll":14.5},"location":"Right Knee"},{"euler":{"heading":85.6875,"pitch":-160.875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:29.505"} +{"sensors":[{"euler":{"heading":305.4375,"pitch":133.625,"roll":17.1875},"location":"Left Knee"},{"euler":{"heading":129.375,"pitch":169.5,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":122.8125,"pitch":35.3125,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":346.5625,"pitch":-146.125,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":112.875,"pitch":108.4375,"roll":19.5},"location":"Right Knee"},{"euler":{"heading":75.1875,"pitch":-146.3125,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:29.606"} +{"sensors":[{"euler":{"heading":310.625,"pitch":136.125,"roll":14.625},"location":"Left Knee"},{"euler":{"heading":130.375,"pitch":177.6875,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":119.5625,"pitch":31.25,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":342.5,"pitch":-147.625,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":114.0,"pitch":107.8125,"roll":23.0625},"location":"Right Knee"},{"euler":{"heading":62.6875,"pitch":-130.4375,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:29.707"} +{"sensors":[{"euler":{"heading":184.1875,"pitch":146.0,"roll":24.9375},"location":"Left Knee"},{"euler":{"heading":112.875,"pitch":139.8125,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":116.1875,"pitch":28.0625,"roll":50.8125},"location":"Right Ankle"},{"euler":{"heading":343.4375,"pitch":-146.6875,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":115.25,"pitch":107.75,"roll":26.5},"location":"Right Knee"},{"euler":{"heading":57.0,"pitch":-127.875,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:29.808"} +{"sensors":[{"euler":{"heading":199.375,"pitch":161.9375,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":79.25,"pitch":111.875,"roll":41.5625},"location":"Left Ankle"},{"euler":{"heading":113.75,"pitch":26.3125,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":343.3125,"pitch":-148.625,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":118.375,"pitch":109.125,"roll":30.5},"location":"Right Knee"},{"euler":{"heading":56.9375,"pitch":-128.0,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:29.909"} +{"sensors":[{"euler":{"heading":211.0625,"pitch":172.5,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":63.0625,"pitch":104.3125,"roll":26.1875},"location":"Left Ankle"},{"euler":{"heading":106.4375,"pitch":18.0625,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":343.6875,"pitch":-152.0625,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":124.0625,"pitch":111.6875,"roll":35.8125},"location":"Right Knee"},{"euler":{"heading":65.375,"pitch":-134.875,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:30.10"} +{"sensors":[{"euler":{"heading":212.5,"pitch":167.375,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":70.1875,"pitch":108.6875,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":99.8125,"pitch":5.625,"roll":55.375},"location":"Right Ankle"},{"euler":{"heading":343.125,"pitch":-160.0625,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":133.8125,"pitch":118.125,"roll":42.625},"location":"Right Knee"},{"euler":{"heading":71.625,"pitch":-138.1875,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:30.110"} +{"sensors":[{"euler":{"heading":209.375,"pitch":159.1875,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":86.0,"pitch":112.625,"roll":39.125},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":-21.625,"roll":55.1875},"location":"Right Ankle"},{"euler":{"heading":354.9375,"pitch":-150.625,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":150.9375,"pitch":128.125,"roll":52.0625},"location":"Right Knee"},{"euler":{"heading":70.5,"pitch":-139.0,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:30.211"} +{"sensors":[{"euler":{"heading":263.8125,"pitch":152.5,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":98.625,"pitch":115.75,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":-22.0,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":4.0,"pitch":-135.6875,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":157.0,"pitch":127.5,"roll":54.3125},"location":"Right Knee"},{"euler":{"heading":73.3125,"pitch":-142.6875,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:30.312"} +{"sensors":[{"euler":{"heading":269.9375,"pitch":147.5625,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":103.25,"pitch":115.875,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":102.375,"pitch":0.9375,"roll":59.5625},"location":"Right Ankle"},{"euler":{"heading":9.5,"pitch":-132.0,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":143.4375,"pitch":120.9375,"roll":41.125},"location":"Right Knee"},{"euler":{"heading":75.5625,"pitch":-145.9375,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:30.413"} +{"sensors":[{"euler":{"heading":276.125,"pitch":143.125,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":107.1875,"pitch":118.0,"roll":52.125},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":30.0,"roll":57.75},"location":"Right Ankle"},{"euler":{"heading":9.3125,"pitch":-134.5,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":124.125,"pitch":116.0,"roll":23.625},"location":"Right Knee"},{"euler":{"heading":77.6875,"pitch":-150.375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:30.514"} +{"sensors":[{"euler":{"heading":280.75,"pitch":139.9375,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":110.875,"pitch":121.5,"roll":55.5625},"location":"Left Ankle"},{"euler":{"heading":138.0,"pitch":46.0,"roll":46.625},"location":"Right Ankle"},{"euler":{"heading":359.625,"pitch":-138.25,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":110.1875,"pitch":114.6875,"roll":11.875},"location":"Right Knee"},{"euler":{"heading":77.875,"pitch":-154.0,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:30.615"} +{"sensors":[{"euler":{"heading":286.9375,"pitch":136.3125,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":116.5625,"pitch":129.0,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":134.3125,"pitch":46.5625,"roll":47.125},"location":"Right Ankle"},{"euler":{"heading":350.5,"pitch":-141.375,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":111.1875,"pitch":109.0625,"roll":14.625},"location":"Right Knee"},{"euler":{"heading":80.25,"pitch":-158.6875,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:30.717"} +{"sensors":[{"euler":{"heading":296.75,"pitch":133.375,"roll":22.8125},"location":"Left Knee"},{"euler":{"heading":124.625,"pitch":153.125,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":124.625,"pitch":40.75,"roll":50.375},"location":"Right Ankle"},{"euler":{"heading":348.25,"pitch":-142.8125,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":111.6875,"pitch":105.75,"roll":18.4375},"location":"Right Knee"},{"euler":{"heading":79.1875,"pitch":-153.6875,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:30.817"} +{"sensors":[{"euler":{"heading":311.625,"pitch":132.375,"roll":14.875},"location":"Left Knee"},{"euler":{"heading":138.75,"pitch":-173.9375,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":120.375,"pitch":35.3125,"roll":51.1875},"location":"Right Ankle"},{"euler":{"heading":343.4375,"pitch":-145.5,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":112.0,"pitch":106.625,"roll":21.875},"location":"Right Knee"},{"euler":{"heading":65.0,"pitch":-135.0,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:30.918"} +{"sensors":[{"euler":{"heading":176.4375,"pitch":140.0,"roll":17.25},"location":"Left Knee"},{"euler":{"heading":129.6875,"pitch":172.375,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":117.8125,"pitch":31.375,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":344.625,"pitch":-145.1875,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":113.625,"pitch":107.5625,"roll":25.5},"location":"Right Knee"},{"euler":{"heading":58.375,"pitch":-129.0625,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:31.19"} +{"sensors":[{"euler":{"heading":191.3125,"pitch":153.125,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":94.5625,"pitch":121.4375,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":113.9375,"pitch":28.6875,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-145.4375,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":115.875,"pitch":107.1875,"roll":29.125},"location":"Right Knee"},{"euler":{"heading":56.5625,"pitch":-127.375,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:31.120"} +{"sensors":[{"euler":{"heading":206.3125,"pitch":167.25,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":70.8125,"pitch":107.8125,"roll":31.9375},"location":"Left Ankle"},{"euler":{"heading":108.625,"pitch":24.125,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":343.75,"pitch":-148.4375,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":119.75,"pitch":108.5625,"roll":33.6875},"location":"Right Knee"},{"euler":{"heading":59.9375,"pitch":-130.4375,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:31.223"} +{"sensors":[{"euler":{"heading":212.0,"pitch":171.1875,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":67.0625,"pitch":107.3125,"roll":26.3125},"location":"Left Ankle"},{"euler":{"heading":102.9375,"pitch":14.625,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":344.125,"pitch":-154.625,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":127.75,"pitch":114.375,"roll":39.6875},"location":"Right Knee"},{"euler":{"heading":68.9375,"pitch":-136.5625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:31.324"} +{"sensors":[{"euler":{"heading":211.5625,"pitch":161.6875,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":81.0,"pitch":110.9375,"roll":36.25},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":-2.6875,"roll":54.75},"location":"Right Ankle"},{"euler":{"heading":347.75,"pitch":-155.375,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":142.625,"pitch":125.625,"roll":48.0625},"location":"Right Knee"},{"euler":{"heading":72.0,"pitch":-138.875,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:31.425"} +{"sensors":[{"euler":{"heading":261.4375,"pitch":154.75,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":90.75,"pitch":113.75,"roll":42.0625},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":-21.625,"roll":54.625},"location":"Right Ankle"},{"euler":{"heading":0.0625,"pitch":-142.1875,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":155.4375,"pitch":131.5625,"roll":54.25},"location":"Right Knee"},{"euler":{"heading":75.4375,"pitch":-142.5,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:31.525"} +{"sensors":[{"euler":{"heading":265.25,"pitch":150.375,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":100.6875,"pitch":117.5,"roll":49.125},"location":"Left Ankle"},{"euler":{"heading":99.4375,"pitch":-6.8125,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":8.5625,"pitch":-135.375,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":150.625,"pitch":125.4375,"roll":47.4375},"location":"Right Knee"},{"euler":{"heading":76.1875,"pitch":-146.0,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:31.625"} +{"sensors":[{"euler":{"heading":271.9375,"pitch":145.9375,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":102.625,"pitch":117.625,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":120.75,"pitch":24.6875,"roll":56.375},"location":"Right Ankle"},{"euler":{"heading":8.5,"pitch":-135.5,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":135.75,"pitch":120.1875,"roll":31.875},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-150.5,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:31.727"} +{"sensors":[{"euler":{"heading":278.0625,"pitch":142.125,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":106.875,"pitch":120.25,"roll":54.4375},"location":"Left Ankle"},{"euler":{"heading":135.5625,"pitch":40.8125,"roll":48.9375},"location":"Right Ankle"},{"euler":{"heading":3.25,"pitch":-139.1875,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":116.125,"pitch":117.5625,"roll":16.3125},"location":"Right Knee"},{"euler":{"heading":78.875,"pitch":-154.75,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:31.827"} +{"sensors":[{"euler":{"heading":285.1875,"pitch":138.5,"roll":31.375},"location":"Left Knee"},{"euler":{"heading":114.0625,"pitch":127.8125,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":138.625,"pitch":41.875,"roll":46.75},"location":"Right Ankle"},{"euler":{"heading":353.8125,"pitch":-142.4375,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":109.0625,"pitch":117.0625,"roll":11.8125},"location":"Right Knee"},{"euler":{"heading":80.5,"pitch":-158.0,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:31.928"} +{"sensors":[{"euler":{"heading":294.1875,"pitch":135.25,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":120.625,"pitch":144.625,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":126.625,"pitch":34.0,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":348.875,"pitch":-145.0,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":111.8125,"pitch":111.5625,"roll":16.875},"location":"Right Knee"},{"euler":{"heading":81.8125,"pitch":-158.5,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:32.30"} +{"sensors":[{"euler":{"heading":308.0,"pitch":133.875,"roll":16.375},"location":"Left Knee"},{"euler":{"heading":135.8125,"pitch":178.75,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":124.4375,"pitch":32.4375,"roll":51.125},"location":"Right Ankle"},{"euler":{"heading":345.4375,"pitch":-146.5625,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":111.75,"pitch":110.875,"roll":20.5},"location":"Right Knee"},{"euler":{"heading":64.5,"pitch":-139.4375,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:32.130"} +{"sensors":[{"euler":{"heading":175.8125,"pitch":140.4375,"roll":17.1875},"location":"Left Knee"},{"euler":{"heading":129.75,"pitch":168.6875,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":121.4375,"pitch":29.1875,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":344.625,"pitch":-147.3125,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":114.0625,"pitch":110.5625,"roll":24.25},"location":"Right Knee"},{"euler":{"heading":57.5625,"pitch":-130.1875,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:32.231"} +{"sensors":[{"euler":{"heading":190.25,"pitch":152.875,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":122.3125,"roll":55.375},"location":"Left Ankle"},{"euler":{"heading":117.0625,"pitch":25.4375,"roll":51.125},"location":"Right Ankle"},{"euler":{"heading":345.8125,"pitch":-146.875,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":117.0,"pitch":111.625,"roll":27.9375},"location":"Right Knee"},{"euler":{"heading":56.0,"pitch":-128.3125,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:32.331"} +{"sensors":[{"euler":{"heading":206.625,"pitch":168.3125,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":72.125,"pitch":108.125,"roll":32.625},"location":"Left Ankle"},{"euler":{"heading":111.8125,"pitch":20.5625,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":345.8125,"pitch":-149.4375,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":121.3125,"pitch":112.6875,"roll":32.375},"location":"Right Knee"},{"euler":{"heading":58.3125,"pitch":-130.0625,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:32.432"} +{"sensors":[{"euler":{"heading":211.9375,"pitch":174.875,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":62.1875,"pitch":101.6875,"roll":24.1875},"location":"Left Ankle"},{"euler":{"heading":104.875,"pitch":11.4375,"roll":52.125},"location":"Right Ankle"},{"euler":{"heading":345.5625,"pitch":-155.3125,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":127.8125,"pitch":117.125,"roll":37.75},"location":"Right Knee"},{"euler":{"heading":64.125,"pitch":-134.375,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:32.533"} +{"sensors":[{"euler":{"heading":212.1875,"pitch":165.6875,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":76.375,"pitch":107.75,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":95.625,"pitch":-5.875,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":346.5,"pitch":-158.5625,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":139.875,"pitch":125.0625,"roll":45.375},"location":"Right Knee"},{"euler":{"heading":68.75,"pitch":-137.625,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:32.634"} +{"sensors":[{"euler":{"heading":255.75,"pitch":157.75,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":89.0625,"pitch":112.75,"roll":41.0625},"location":"Left Ankle"},{"euler":{"heading":86.4375,"pitch":-24.4375,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":-146.25,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":153.75,"pitch":129.9375,"roll":54.3125},"location":"Right Knee"},{"euler":{"heading":67.9375,"pitch":-137.125,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:32.735"} +{"sensors":[{"euler":{"heading":262.3125,"pitch":152.25,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":116.5,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":94.9375,"pitch":-11.0625,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":4.1875,"pitch":-136.625,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":151.125,"pitch":124.5625,"roll":49.375},"location":"Right Knee"},{"euler":{"heading":69.5625,"pitch":-141.0625,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:32.836"} +{"sensors":[{"euler":{"heading":268.0625,"pitch":148.0,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":116.25,"roll":50.1875},"location":"Left Ankle"},{"euler":{"heading":117.6875,"pitch":21.1875,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":7.375,"pitch":-135.375,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":135.125,"pitch":120.25,"roll":32.8125},"location":"Right Knee"},{"euler":{"heading":71.8125,"pitch":-145.5625,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:32.937"} +{"sensors":[{"euler":{"heading":274.0,"pitch":144.0625,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":103.6875,"pitch":118.0,"roll":53.25},"location":"Left Ankle"},{"euler":{"heading":132.25,"pitch":39.4375,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":3.0,"pitch":-138.9375,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":114.75,"pitch":116.875,"roll":16.1875},"location":"Right Knee"},{"euler":{"heading":73.5,"pitch":-150.5,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:33.38"} +{"sensors":[{"euler":{"heading":279.5,"pitch":140.8125,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":109.5,"pitch":123.5,"roll":58.0},"location":"Left Ankle"},{"euler":{"heading":49.75,"pitch":45.0,"roll":44.5625},"location":"Right Ankle"},{"euler":{"heading":353.125,"pitch":-142.125,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":105.75,"pitch":114.875,"roll":9.6875},"location":"Right Knee"},{"euler":{"heading":73.4375,"pitch":-153.8125,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:33.138"} +{"sensors":[{"euler":{"heading":285.625,"pitch":138.25,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":114.0,"pitch":137.5625,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":128.6875,"pitch":40.8125,"roll":49.25},"location":"Right Ankle"},{"euler":{"heading":347.625,"pitch":-144.6875,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":108.0,"pitch":110.0625,"roll":13.75},"location":"Right Knee"},{"euler":{"heading":74.8125,"pitch":-155.9375,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:33.238"} +{"sensors":[{"euler":{"heading":303.9375,"pitch":135.0625,"roll":17.25},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":167.5,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":122.625,"pitch":33.5625,"roll":51.125},"location":"Right Ankle"},{"euler":{"heading":346.5,"pitch":-145.0,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":109.1875,"pitch":108.5625,"roll":18.5625},"location":"Right Knee"},{"euler":{"heading":65.0,"pitch":-143.6875,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:33.339"} +{"sensors":[{"euler":{"heading":171.875,"pitch":139.375,"roll":15.625},"location":"Left Knee"},{"euler":{"heading":126.6875,"pitch":171.5,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":119.8125,"pitch":30.0,"roll":51.1875},"location":"Right Ankle"},{"euler":{"heading":343.0625,"pitch":-146.5,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":111.3125,"pitch":108.5,"roll":22.3125},"location":"Right Knee"},{"euler":{"heading":56.1875,"pitch":-130.5625,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:33.440"} +{"sensors":[{"euler":{"heading":184.5,"pitch":148.5,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":124.125,"roll":58.75},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":27.25,"roll":51.0},"location":"Right Ankle"},{"euler":{"heading":343.8125,"pitch":-146.5,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":113.8125,"pitch":109.75,"roll":25.875},"location":"Right Knee"},{"euler":{"heading":33.5,"pitch":-130.5,"roll":44.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:33.541"} +{"sensors":[{"euler":{"heading":200.125,"pitch":163.375,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":71.9375,"pitch":108.1875,"roll":35.375},"location":"Left Ankle"},{"euler":{"heading":113.8125,"pitch":23.0,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-149.125,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":118.0,"pitch":111.75,"roll":30.125},"location":"Right Knee"},{"euler":{"heading":53.8125,"pitch":-127.5625,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:33.641"} +{"sensors":[{"euler":{"heading":210.75,"pitch":173.375,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":58.5,"pitch":101.625,"roll":22.125},"location":"Left Ankle"},{"euler":{"heading":107.9375,"pitch":15.3125,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":344.875,"pitch":-153.0,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":123.3125,"pitch":115.125,"roll":35.125},"location":"Right Knee"},{"euler":{"heading":61.4375,"pitch":-133.5625,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:33.742"} +{"sensors":[{"euler":{"heading":212.5625,"pitch":167.0625,"roll":41.5},"location":"Left Knee"},{"euler":{"heading":69.0625,"pitch":108.6875,"roll":27.375},"location":"Left Ankle"},{"euler":{"heading":101.5,"pitch":4.25,"roll":53.75},"location":"Right Ankle"},{"euler":{"heading":345.1875,"pitch":-160.25,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":134.625,"pitch":122.3125,"roll":42.3125},"location":"Right Knee"},{"euler":{"heading":70.25,"pitch":-136.9375,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:33.843"} +{"sensors":[{"euler":{"heading":257.0625,"pitch":157.375,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":83.4375,"pitch":112.5625,"roll":37.125},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":-20.5625,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":356.125,"pitch":-150.5,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":149.9375,"pitch":129.125,"roll":51.875},"location":"Right Knee"},{"euler":{"heading":70.75,"pitch":-138.125,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:33.945"} +{"sensors":[{"euler":{"heading":262.5,"pitch":152.4375,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":91.3125,"pitch":114.0,"roll":43.0625},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":-23.6875,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":5.75,"pitch":-138.5625,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":158.8125,"pitch":134.0,"roll":52.625},"location":"Right Knee"},{"euler":{"heading":73.4375,"pitch":-143.1875,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:34.45"} +{"sensors":[{"euler":{"heading":267.75,"pitch":148.1875,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":95.25,"pitch":114.5,"roll":45.5625},"location":"Left Ankle"},{"euler":{"heading":104.9375,"pitch":-1.75,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":10.0625,"pitch":-134.8125,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":146.125,"pitch":126.0,"roll":41.6875},"location":"Right Knee"},{"euler":{"heading":76.25,"pitch":-146.875,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:34.146"} +{"sensors":[{"euler":{"heading":272.1875,"pitch":145.0,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":96.875,"pitch":115.5625,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":125.5,"pitch":29.5625,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":5.9375,"pitch":-136.875,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":124.5,"pitch":118.6875,"roll":23.4375},"location":"Right Knee"},{"euler":{"heading":75.25,"pitch":-150.1875,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:34.247"} +{"sensors":[{"euler":{"heading":277.625,"pitch":141.8125,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":102.625,"pitch":118.3125,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":138.375,"pitch":41.8125,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":357.25,"pitch":-140.75,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":107.5625,"pitch":117.375,"roll":11.6875},"location":"Right Knee"},{"euler":{"heading":75.75,"pitch":-152.5625,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:34.347"} +{"sensors":[{"euler":{"heading":283.25,"pitch":138.75,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":124.4375,"roll":57.625},"location":"Left Ankle"},{"euler":{"heading":132.875,"pitch":39.625,"roll":47.75},"location":"Right Ankle"},{"euler":{"heading":351.5,"pitch":-141.875,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":109.0625,"pitch":113.1875,"roll":14.6875},"location":"Right Knee"},{"euler":{"heading":78.0,"pitch":-157.1875,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:34.448"} +{"sensors":[{"euler":{"heading":293.25,"pitch":136.8125,"roll":21.5},"location":"Left Knee"},{"euler":{"heading":118.4375,"pitch":152.0,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":123.6875,"pitch":34.625,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":348.9375,"pitch":-142.75,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":111.3125,"pitch":109.0625,"roll":19.125},"location":"Right Knee"},{"euler":{"heading":73.4375,"pitch":-148.9375,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:34.550"} +{"sensors":[{"euler":{"heading":307.9375,"pitch":135.5,"roll":15.375},"location":"Left Knee"},{"euler":{"heading":122.5625,"pitch":164.875,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":119.75,"pitch":30.6875,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":344.125,"pitch":-144.6875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":111.25,"pitch":108.25,"roll":22.6875},"location":"Right Knee"},{"euler":{"heading":62.5625,"pitch":-132.125,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:34.650"} +{"sensors":[{"euler":{"heading":180.3125,"pitch":144.3125,"roll":21.125},"location":"Left Knee"},{"euler":{"heading":111.25,"pitch":137.875,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":117.0,"pitch":28.0625,"roll":50.9375},"location":"Right Ankle"},{"euler":{"heading":344.6875,"pitch":-144.0,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":113.0625,"pitch":108.75,"roll":26.375},"location":"Right Knee"},{"euler":{"heading":55.6875,"pitch":-128.625,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:34.752"} +{"sensors":[{"euler":{"heading":194.375,"pitch":157.4375,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":81.0625,"pitch":111.75,"roll":42.1875},"location":"Left Ankle"},{"euler":{"heading":115.3125,"pitch":25.6875,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":344.125,"pitch":-146.6875,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":116.25,"pitch":110.3125,"roll":29.6875},"location":"Right Knee"},{"euler":{"heading":54.75,"pitch":-127.625,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:34.853"} +{"sensors":[{"euler":{"heading":206.625,"pitch":172.5,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":58.375,"pitch":100.1875,"roll":23.9375},"location":"Left Ankle"},{"euler":{"heading":109.9375,"pitch":18.8125,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":344.8125,"pitch":-150.4375,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":121.1875,"pitch":113.5625,"roll":34.5},"location":"Right Knee"},{"euler":{"heading":60.1875,"pitch":-131.4375,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:34.954"} +{"sensors":[{"euler":{"heading":211.75,"pitch":170.5625,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":63.1875,"pitch":104.125,"roll":24.875},"location":"Left Ankle"},{"euler":{"heading":104.0,"pitch":7.9375,"roll":53.125},"location":"Right Ankle"},{"euler":{"heading":344.8125,"pitch":-158.4375,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":130.75,"pitch":120.25,"roll":40.8125},"location":"Right Knee"},{"euler":{"heading":68.5,"pitch":-136.0,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:35.55"} +{"sensors":[{"euler":{"heading":209.8125,"pitch":160.875,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":78.8125,"pitch":109.625,"roll":34.5625},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":-10.8125,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":349.1875,"pitch":-155.4375,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":145.6875,"pitch":132.0,"roll":48.4375},"location":"Right Knee"},{"euler":{"heading":68.5625,"pitch":-136.5,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:35.156"} +{"sensors":[{"euler":{"heading":259.5,"pitch":155.3125,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":85.5625,"pitch":110.875,"roll":39.6875},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":-23.8125,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-141.0,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":157.625,"pitch":135.4375,"roll":53.625},"location":"Right Knee"},{"euler":{"heading":71.0,"pitch":-140.4375,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:35.257"} +{"sensors":[{"euler":{"heading":265.5,"pitch":150.25,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":93.3125,"pitch":112.125,"roll":44.9375},"location":"Left Ankle"},{"euler":{"heading":101.75,"pitch":-3.625,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":4.75,"pitch":-135.1875,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":146.75,"pitch":124.3125,"roll":45.4375},"location":"Right Knee"},{"euler":{"heading":73.0,"pitch":-145.125,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:35.358"} +{"sensors":[{"euler":{"heading":271.5625,"pitch":146.125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":113.875,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":122.0,"pitch":25.5,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":6.3125,"pitch":-135.6875,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":132.1875,"pitch":119.125,"roll":29.625},"location":"Right Knee"},{"euler":{"heading":74.5625,"pitch":-149.0625,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:35.458"} +{"sensors":[{"euler":{"heading":278.5,"pitch":142.1875,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":101.8125,"pitch":117.625,"roll":51.625},"location":"Left Ankle"},{"euler":{"heading":136.5625,"pitch":40.75,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":0.4375,"pitch":-140.5625,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":112.625,"pitch":117.9375,"roll":14.4375},"location":"Right Knee"},{"euler":{"heading":75.9375,"pitch":-152.3125,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:35.559"} +{"sensors":[{"euler":{"heading":282.875,"pitch":139.75,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":122.625,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":139.25,"pitch":42.5625,"roll":45.875},"location":"Right Ankle"},{"euler":{"heading":352.4375,"pitch":-143.4375,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":109.375,"pitch":116.5625,"roll":12.25},"location":"Right Knee"},{"euler":{"heading":78.0,"pitch":-157.625,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:35.659"} +{"sensors":[{"euler":{"heading":292.375,"pitch":136.5,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":115.0,"pitch":145.5625,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":128.3125,"pitch":33.8125,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":349.0625,"pitch":-146.5,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":113.0,"pitch":113.3125,"roll":18.125},"location":"Right Knee"},{"euler":{"heading":78.9375,"pitch":-155.375,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:35.759"} +{"sensors":[{"euler":{"heading":310.375,"pitch":133.0625,"roll":15.4375},"location":"Left Knee"},{"euler":{"heading":120.375,"pitch":165.625,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":124.0625,"pitch":30.0,"roll":51.625},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-148.6875,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":113.0,"pitch":112.75,"roll":21.4375},"location":"Right Knee"},{"euler":{"heading":66.6875,"pitch":-136.25,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:35.861"} +{"sensors":[{"euler":{"heading":177.9375,"pitch":140.625,"roll":18.375},"location":"Left Knee"},{"euler":{"heading":113.6875,"pitch":142.8125,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":119.625,"pitch":27.75,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":345.5,"pitch":-148.1875,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":115.0625,"pitch":111.6875,"roll":25.0625},"location":"Right Knee"},{"euler":{"heading":59.1875,"pitch":-129.125,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:35.961"} +{"sensors":[{"euler":{"heading":192.5,"pitch":154.5625,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":81.8125,"pitch":112.4375,"roll":43.4375},"location":"Left Ankle"},{"euler":{"heading":115.0,"pitch":23.5625,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":344.375,"pitch":-148.6875,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":117.9375,"pitch":111.5625,"roll":28.75},"location":"Right Knee"},{"euler":{"heading":57.0625,"pitch":-127.6875,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:36.62"} +{"sensors":[{"euler":{"heading":208.1875,"pitch":169.4375,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":61.375,"pitch":103.25,"roll":24.9375},"location":"Left Ankle"},{"euler":{"heading":111.75,"pitch":17.6875,"roll":54.1875},"location":"Right Ankle"},{"euler":{"heading":345.3125,"pitch":-154.6875,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":123.875,"pitch":116.75,"roll":33.625},"location":"Right Knee"},{"euler":{"heading":63.625,"pitch":-132.5625,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:36.163"} +{"sensors":[{"euler":{"heading":214.5625,"pitch":167.25,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":66.1875,"pitch":108.125,"roll":26.0},"location":"Left Ankle"},{"euler":{"heading":105.6875,"pitch":4.8125,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":347.1875,"pitch":-161.0,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":134.5,"pitch":125.4375,"roll":39.4375},"location":"Right Knee"},{"euler":{"heading":71.3125,"pitch":-136.75,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:36.264"} +{"sensors":[{"euler":{"heading":212.5,"pitch":158.4375,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":81.6875,"pitch":112.0,"roll":35.5},"location":"Left Ankle"},{"euler":{"heading":95.8125,"pitch":-16.4375,"roll":56.6875},"location":"Right Ankle"},{"euler":{"heading":353.9375,"pitch":-155.1875,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":153.625,"pitch":134.0625,"roll":50.25},"location":"Right Knee"},{"euler":{"heading":72.0,"pitch":-137.5625,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:36.365"} +{"sensors":[{"euler":{"heading":266.9375,"pitch":152.1875,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":91.625,"pitch":113.625,"roll":41.625},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":-26.625,"roll":56.375},"location":"Right Ankle"},{"euler":{"heading":4.6875,"pitch":-140.9375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":158.6875,"pitch":135.625,"roll":51.125},"location":"Right Knee"},{"euler":{"heading":76.0,"pitch":-141.4375,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:36.467"} +{"sensors":[{"euler":{"heading":270.8125,"pitch":147.9375,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":95.8125,"pitch":113.9375,"roll":44.6875},"location":"Left Ankle"},{"euler":{"heading":104.5,"pitch":-1.9375,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":10.9375,"pitch":-136.0,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":146.375,"pitch":127.1875,"roll":40.875},"location":"Right Knee"},{"euler":{"heading":77.3125,"pitch":-145.125,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:36.567"} +{"sensors":[{"euler":{"heading":275.375,"pitch":144.3125,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":98.6875,"pitch":114.9375,"roll":47.375},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":27.625,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":7.25,"pitch":-136.625,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":129.5625,"pitch":119.375,"roll":27.0},"location":"Right Knee"},{"euler":{"heading":78.1875,"pitch":-150.125,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:36.668"} +{"sensors":[{"euler":{"heading":278.6875,"pitch":141.5625,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":102.0625,"pitch":117.6875,"roll":50.875},"location":"Left Ankle"},{"euler":{"heading":136.25,"pitch":44.5,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":358.1875,"pitch":-141.1875,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":111.125,"pitch":116.9375,"roll":13.125},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-153.5,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:36.769"} +{"sensors":[{"euler":{"heading":282.4375,"pitch":139.0,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":104.6875,"pitch":122.5,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":137.75,"pitch":46.375,"roll":46.1875},"location":"Right Ankle"},{"euler":{"heading":348.5,"pitch":-143.9375,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":109.125,"pitch":112.5,"roll":12.25},"location":"Right Knee"},{"euler":{"heading":78.1875,"pitch":-158.1875,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:36.870"} +{"sensors":[{"euler":{"heading":293.75,"pitch":135.5,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":111.9375,"pitch":141.25,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":125.3125,"pitch":40.5625,"roll":51.1875},"location":"Right Ankle"},{"euler":{"heading":345.125,"pitch":-146.3125,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":111.0,"pitch":107.3125,"roll":16.8125},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-156.9375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:36.970"} +{"sensors":[{"euler":{"heading":307.0625,"pitch":134.6875,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":134.1875,"pitch":177.625,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":120.125,"pitch":36.625,"roll":52.5},"location":"Right Ankle"},{"euler":{"heading":341.5625,"pitch":-148.0,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":111.3125,"pitch":106.625,"roll":20.5},"location":"Right Knee"},{"euler":{"heading":67.0,"pitch":-140.4375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:37.70"} +{"sensors":[{"euler":{"heading":175.25,"pitch":138.9375,"roll":17.3125},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":165.625,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":115.3125,"pitch":33.375,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":341.6875,"pitch":-147.5,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":113.0625,"pitch":105.0625,"roll":24.25},"location":"Right Knee"},{"euler":{"heading":60.0625,"pitch":-130.5625,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:37.171"} +{"sensors":[{"euler":{"heading":190.0625,"pitch":152.1875,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":88.6875,"pitch":117.125,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":110.875,"pitch":30.25,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":341.625,"pitch":-147.875,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":114.1875,"pitch":105.125,"roll":27.3125},"location":"Right Knee"},{"euler":{"heading":56.25,"pitch":-128.5625,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:37.272"} +{"sensors":[{"euler":{"heading":204.9375,"pitch":167.25,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":64.1875,"pitch":104.4375,"roll":28.8125},"location":"Left Ankle"},{"euler":{"heading":108.3125,"pitch":25.0,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":342.375,"pitch":-151.8125,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":118.0,"pitch":108.75,"roll":31.4375},"location":"Right Knee"},{"euler":{"heading":58.4375,"pitch":-130.5,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:37.373"} +{"sensors":[{"euler":{"heading":211.5,"pitch":172.0625,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":61.25,"pitch":103.125,"roll":23.75},"location":"Left Ankle"},{"euler":{"heading":103.3125,"pitch":12.375,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":343.8125,"pitch":-157.875,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":125.375,"pitch":116.5,"roll":36.9375},"location":"Right Knee"},{"euler":{"heading":65.625,"pitch":-135.5,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:37.473"} +{"sensors":[{"euler":{"heading":209.375,"pitch":162.5,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":75.25,"pitch":107.1875,"roll":33.5625},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":-9.0625,"roll":55.9375},"location":"Right Ankle"},{"euler":{"heading":348.5625,"pitch":-156.5,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":142.4375,"pitch":127.5,"roll":46.5},"location":"Right Knee"},{"euler":{"heading":68.625,"pitch":-138.3125,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:37.574"} +{"sensors":[{"euler":{"heading":260.4375,"pitch":154.5625,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":84.125,"pitch":110.1875,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":89.875,"pitch":-23.25,"roll":55.1875},"location":"Right Ankle"},{"euler":{"heading":0.75,"pitch":-141.8125,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":152.5625,"pitch":131.75,"roll":51.75},"location":"Right Knee"},{"euler":{"heading":73.6875,"pitch":-142.375,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:37.675"} +{"sensors":[{"euler":{"heading":267.5625,"pitch":149.5625,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":91.25,"pitch":111.8125,"roll":44.3125},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":-4.1875,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":8.0,"pitch":-134.1875,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":144.3125,"pitch":124.0,"roll":43.5},"location":"Right Knee"},{"euler":{"heading":76.0625,"pitch":-145.9375,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:37.777"} +{"sensors":[{"euler":{"heading":272.5,"pitch":146.0,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":95.6875,"pitch":113.3125,"roll":47.6875},"location":"Left Ankle"},{"euler":{"heading":119.0625,"pitch":21.5625,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":6.5625,"pitch":-135.0,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":128.4375,"pitch":118.4375,"roll":28.25},"location":"Right Knee"},{"euler":{"heading":76.75,"pitch":-149.875,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:37.878"} +{"sensors":[{"euler":{"heading":278.4375,"pitch":142.5625,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":100.6875,"pitch":116.8125,"roll":51.375},"location":"Left Ankle"},{"euler":{"heading":134.75,"pitch":41.4375,"roll":49.0625},"location":"Right Ankle"},{"euler":{"heading":1.6875,"pitch":-138.5,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":109.5,"pitch":116.125,"roll":13.5625},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-153.9375,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:37.979"} +{"sensors":[{"euler":{"heading":283.5625,"pitch":139.4375,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":105.0625,"pitch":122.1875,"roll":55.9375},"location":"Left Ankle"},{"euler":{"heading":138.5625,"pitch":47.0,"roll":45.375},"location":"Right Ankle"},{"euler":{"heading":353.0,"pitch":-142.3125,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":106.4375,"pitch":113.125,"roll":10.5625},"location":"Right Knee"},{"euler":{"heading":79.1875,"pitch":-158.0,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:38.79"} +{"sensors":[{"euler":{"heading":297.125,"pitch":134.8125,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":112.375,"pitch":143.125,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":126.375,"pitch":38.8125,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":350.875,"pitch":-143.625,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":108.4375,"pitch":108.4375,"roll":15.3125},"location":"Right Knee"},{"euler":{"heading":81.75,"pitch":-157.1875,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:38.180"} +{"sensors":[{"euler":{"heading":311.3125,"pitch":133.8125,"roll":14.6875},"location":"Left Knee"},{"euler":{"heading":124.3125,"pitch":170.4375,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":121.6875,"pitch":33.875,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":345.5,"pitch":-146.125,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":109.0625,"pitch":108.625,"roll":19.125},"location":"Right Knee"},{"euler":{"heading":66.375,"pitch":-138.8125,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:38.281"} +{"sensors":[{"euler":{"heading":175.3125,"pitch":140.5625,"roll":16.8125},"location":"Left Knee"},{"euler":{"heading":121.5625,"pitch":156.125,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":118.6875,"pitch":28.9375,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":344.5,"pitch":-147.5,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":111.0,"pitch":109.8125,"roll":22.8125},"location":"Right Knee"},{"euler":{"heading":58.0625,"pitch":-129.5625,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:38.381"} +{"sensors":[{"euler":{"heading":188.6875,"pitch":152.875,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":88.8125,"pitch":117.0,"roll":48.625},"location":"Left Ankle"},{"euler":{"heading":115.875,"pitch":25.25,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":344.75,"pitch":-148.9375,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":113.3125,"pitch":111.5,"roll":26.375},"location":"Right Knee"},{"euler":{"heading":54.5625,"pitch":-127.25,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:38.482"} +{"sensors":[{"euler":{"heading":204.875,"pitch":167.125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":63.4375,"pitch":105.375,"roll":27.5625},"location":"Left Ankle"},{"euler":{"heading":112.5625,"pitch":20.5625,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":346.375,"pitch":-152.0625,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":118.25,"pitch":113.9375,"roll":30.3125},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-130.625,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:38.583"} +{"sensors":[{"euler":{"heading":212.5625,"pitch":173.0625,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":60.125,"pitch":103.75,"roll":22.5},"location":"Left Ankle"},{"euler":{"heading":107.125,"pitch":10.3125,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":347.6875,"pitch":-157.375,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":125.25,"pitch":119.1875,"roll":35.4375},"location":"Right Knee"},{"euler":{"heading":67.5,"pitch":-135.3125,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:38.684"} +{"sensors":[{"euler":{"heading":211.0625,"pitch":162.8125,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":75.4375,"pitch":108.375,"roll":32.875},"location":"Left Ankle"},{"euler":{"heading":97.125,"pitch":-5.875,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":349.9375,"pitch":-159.5625,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":138.4375,"pitch":129.0,"roll":43.25},"location":"Right Knee"},{"euler":{"heading":71.125,"pitch":-137.75,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:38.787"} +{"sensors":[{"euler":{"heading":262.3125,"pitch":154.6875,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":111.1875,"roll":38.25},"location":"Left Ankle"},{"euler":{"heading":88.0625,"pitch":-23.25,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":359.9375,"pitch":-145.125,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":151.9375,"pitch":131.0625,"roll":52.5},"location":"Right Knee"},{"euler":{"heading":74.6875,"pitch":-140.6875,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:38.888"} +{"sensors":[{"euler":{"heading":264.6875,"pitch":150.3125,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":89.1875,"pitch":111.8125,"roll":42.125},"location":"Left Ankle"},{"euler":{"heading":96.3125,"pitch":-13.125,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":7.0,"pitch":-136.875,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":147.625,"pitch":126.3125,"roll":46.25},"location":"Right Knee"},{"euler":{"heading":75.875,"pitch":-144.75,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:38.990"} +{"sensors":[{"euler":{"heading":268.0,"pitch":146.5625,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":112.625,"roll":44.75},"location":"Left Ankle"},{"euler":{"heading":111.5,"pitch":8.5625,"roll":60.375},"location":"Right Ankle"},{"euler":{"heading":8.3125,"pitch":-136.3125,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":132.625,"pitch":120.8125,"roll":31.9375},"location":"Right Knee"},{"euler":{"heading":76.5625,"pitch":-148.6875,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:39.91"} +{"sensors":[{"euler":{"heading":273.25,"pitch":143.3125,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":95.625,"pitch":114.875,"roll":48.3125},"location":"Left Ankle"},{"euler":{"heading":131.25,"pitch":37.75,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":4.9375,"pitch":-139.125,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":114.4375,"pitch":117.5,"roll":16.875},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-152.6875,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:39.192"} +{"sensors":[{"euler":{"heading":279.4375,"pitch":139.25,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":101.0,"pitch":119.0,"roll":53.0},"location":"Left Ankle"},{"euler":{"heading":52.5,"pitch":42.5625,"roll":44.625},"location":"Right Ankle"},{"euler":{"heading":355.875,"pitch":-142.75,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":103.0,"pitch":118.375,"roll":8.625},"location":"Right Knee"},{"euler":{"heading":81.375,"pitch":-157.75,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:39.293"} +{"sensors":[{"euler":{"heading":288.25,"pitch":136.375,"roll":26.1875},"location":"Left Knee"},{"euler":{"heading":106.6875,"pitch":131.75,"roll":59.0},"location":"Left Ankle"},{"euler":{"heading":130.5625,"pitch":39.9375,"roll":49.1875},"location":"Right Ankle"},{"euler":{"heading":351.75,"pitch":-144.375,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":106.375,"pitch":111.25,"roll":13.125},"location":"Right Knee"},{"euler":{"heading":83.25,"pitch":-159.1875,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:39.394"} +{"sensors":[{"euler":{"heading":307.8125,"pitch":132.125,"roll":17.4375},"location":"Left Knee"},{"euler":{"heading":125.75,"pitch":162.6875,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":123.75,"pitch":34.625,"roll":51.1875},"location":"Right Ankle"},{"euler":{"heading":348.125,"pitch":-145.375,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":107.75,"pitch":109.5,"roll":17.3125},"location":"Right Knee"},{"euler":{"heading":71.625,"pitch":-144.8125,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:39.495"} +{"sensors":[{"euler":{"heading":306.75,"pitch":137.5,"roll":16.9375},"location":"Left Knee"},{"euler":{"heading":121.625,"pitch":157.3125,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":119.625,"pitch":30.625,"roll":51.625},"location":"Right Ankle"},{"euler":{"heading":345.8125,"pitch":-146.4375,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":110.25,"pitch":108.8125,"roll":21.25},"location":"Right Knee"},{"euler":{"heading":63.6875,"pitch":-130.875,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:39.596"} +{"sensors":[{"euler":{"heading":187.1875,"pitch":149.8125,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":96.875,"pitch":122.6875,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":116.125,"pitch":27.5,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":345.25,"pitch":-147.3125,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":111.5,"pitch":109.375,"roll":24.1875},"location":"Right Knee"},{"euler":{"heading":56.625,"pitch":-127.5625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:39.699"} +{"sensors":[{"euler":{"heading":202.6875,"pitch":165.875,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":65.6875,"pitch":104.9375,"roll":30.625},"location":"Left Ankle"},{"euler":{"heading":112.4375,"pitch":23.4375,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":345.4375,"pitch":-150.3125,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":115.3125,"pitch":110.875,"roll":28.4375},"location":"Right Knee"},{"euler":{"heading":59.25,"pitch":-130.4375,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:39.800"} +{"sensors":[{"euler":{"heading":211.125,"pitch":174.3125,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":57.0625,"pitch":102.4375,"roll":21.25},"location":"Left Ankle"},{"euler":{"heading":106.25,"pitch":14.5625,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":346.5,"pitch":-154.375,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":121.5625,"pitch":115.375,"roll":34.0625},"location":"Right Knee"},{"euler":{"heading":64.6875,"pitch":-135.3125,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:39.901"} +{"sensors":[{"euler":{"heading":211.875,"pitch":166.0625,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":73.75,"pitch":107.8125,"roll":30.5},"location":"Left Ankle"},{"euler":{"heading":99.125,"pitch":3.0,"roll":54.375},"location":"Right Ankle"},{"euler":{"heading":348.3125,"pitch":-155.5,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":131.5,"pitch":122.625,"roll":41.875},"location":"Right Knee"},{"euler":{"heading":67.375,"pitch":-137.6875,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:40.2"} +{"sensors":[{"euler":{"heading":254.625,"pitch":157.9375,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":80.3125,"pitch":110.4375,"roll":36.8125},"location":"Left Ankle"},{"euler":{"heading":86.6875,"pitch":-23.0625,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":-144.375,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":146.0,"pitch":129.1875,"roll":49.9375},"location":"Right Knee"},{"euler":{"heading":69.0,"pitch":-139.0,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:40.102"} +{"sensors":[{"euler":{"heading":260.5625,"pitch":152.75,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":86.625,"pitch":111.9375,"roll":41.0625},"location":"Left Ankle"},{"euler":{"heading":96.125,"pitch":-11.25,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":7.125,"pitch":-136.5,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":144.875,"pitch":123.875,"roll":45.25},"location":"Right Knee"},{"euler":{"heading":70.9375,"pitch":-142.625,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:40.203"} +{"sensors":[{"euler":{"heading":267.3125,"pitch":147.75,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":90.625,"pitch":112.3125,"roll":43.4375},"location":"Left Ankle"},{"euler":{"heading":116.5625,"pitch":19.1875,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":7.75,"pitch":-135.3125,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":130.5,"pitch":119.0625,"roll":30.8125},"location":"Right Knee"},{"euler":{"heading":73.5,"pitch":-146.875,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:40.304"} +{"sensors":[{"euler":{"heading":275.5,"pitch":143.5,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":96.125,"pitch":115.3125,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":131.1875,"pitch":36.4375,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":2.5,"pitch":-139.5625,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":111.875,"pitch":117.125,"roll":14.5},"location":"Right Knee"},{"euler":{"heading":75.4375,"pitch":-151.4375,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:40.405"} +{"sensors":[{"euler":{"heading":281.6875,"pitch":139.625,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":120.1875,"roll":51.625},"location":"Left Ankle"},{"euler":{"heading":134.875,"pitch":42.125,"roll":48.1875},"location":"Right Ankle"},{"euler":{"heading":353.1875,"pitch":-143.6875,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":106.0,"pitch":114.8125,"roll":10.75},"location":"Right Knee"},{"euler":{"heading":77.375,"pitch":-155.4375,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:40.506"} +{"sensors":[{"euler":{"heading":290.3125,"pitch":136.5,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":133.0625,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":124.125,"pitch":34.875,"roll":51.25},"location":"Right Ankle"},{"euler":{"heading":348.8125,"pitch":-146.125,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":108.0625,"pitch":110.125,"roll":15.125},"location":"Right Knee"},{"euler":{"heading":80.25,"pitch":-155.6875,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:40.607"} +{"sensors":[{"euler":{"heading":306.4375,"pitch":134.5,"roll":17.875},"location":"Left Knee"},{"euler":{"heading":120.0625,"pitch":158.75,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":29.0,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":346.3125,"pitch":-147.4375,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":109.9375,"pitch":110.125,"roll":19.5},"location":"Right Knee"},{"euler":{"heading":65.9375,"pitch":-137.25,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:40.707"} +{"sensors":[{"euler":{"heading":179.875,"pitch":140.8125,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":113.625,"pitch":144.375,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":115.875,"pitch":25.75,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":344.875,"pitch":-147.5625,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":111.1875,"pitch":109.25,"roll":22.625},"location":"Right Knee"},{"euler":{"heading":58.0625,"pitch":-130.0625,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:40.808"} +{"sensors":[{"euler":{"heading":192.25,"pitch":155.1875,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":85.0625,"pitch":114.125,"roll":46.1875},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":21.6875,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":344.9375,"pitch":-148.5,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":113.125,"pitch":110.0,"roll":26.0625},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-126.4375,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:40.909"} +{"sensors":[{"euler":{"heading":206.9375,"pitch":170.75,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":59.375,"pitch":103.4375,"roll":25.125},"location":"Left Ankle"},{"euler":{"heading":107.375,"pitch":16.1875,"roll":53.75},"location":"Right Ankle"},{"euler":{"heading":345.375,"pitch":-151.5625,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":119.25,"pitch":112.3125,"roll":47.8125},"location":"Right Knee"},{"euler":{"heading":57.9375,"pitch":-130.5625,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:41.10"} +{"sensors":[{"euler":{"heading":212.3125,"pitch":170.4375,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":60.375,"pitch":107.25,"roll":23.5625},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":4.0,"roll":52.125},"location":"Right Ankle"},{"euler":{"heading":347.0,"pitch":-158.3125,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":127.75,"pitch":118.9375,"roll":38.0},"location":"Right Knee"},{"euler":{"heading":67.8125,"pitch":-136.125,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:41.113"} +{"sensors":[{"euler":{"heading":211.75,"pitch":159.0625,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":77.25,"pitch":111.5,"roll":33.125},"location":"Left Ankle"},{"euler":{"heading":92.875,"pitch":-13.6875,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":352.125,"pitch":-154.875,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":143.625,"pitch":129.0625,"roll":46.9375},"location":"Right Knee"},{"euler":{"heading":69.4375,"pitch":-137.375,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:41.213"} +{"sensors":[{"euler":{"heading":265.125,"pitch":152.1875,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":86.25,"pitch":113.4375,"roll":38.6875},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":-24.5,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":2.1875,"pitch":-142.0,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":151.9375,"pitch":130.9375,"roll":50.25},"location":"Right Knee"},{"euler":{"heading":72.1875,"pitch":-140.0,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:41.314"} +{"sensors":[{"euler":{"heading":268.4375,"pitch":148.25,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":89.6875,"pitch":114.375,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":-3.5,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":9.6875,"pitch":-136.0,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":141.0,"pitch":122.625,"roll":40.4375},"location":"Right Knee"},{"euler":{"heading":73.1875,"pitch":-143.0625,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:41.417"} +{"sensors":[{"euler":{"heading":273.1875,"pitch":144.75,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":115.0625,"roll":44.4375},"location":"Left Ankle"},{"euler":{"heading":118.25,"pitch":22.625,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":8.0625,"pitch":-136.9375,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":125.8125,"pitch":118.0,"roll":24.6875},"location":"Right Knee"},{"euler":{"heading":74.9375,"pitch":-147.875,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:41.517"} +{"sensors":[{"euler":{"heading":279.9375,"pitch":140.8125,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":97.375,"pitch":117.75,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":137.0625,"pitch":39.9375,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":0.5,"pitch":-141.125,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":107.125,"pitch":118.3125,"roll":10.75},"location":"Right Knee"},{"euler":{"heading":76.9375,"pitch":-151.875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:41.617"} +{"sensors":[{"euler":{"heading":286.625,"pitch":137.375,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":103.0,"pitch":123.5,"roll":53.25},"location":"Left Ankle"},{"euler":{"heading":135.1875,"pitch":40.3125,"roll":48.5},"location":"Right Ankle"},{"euler":{"heading":353.875,"pitch":-143.125,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":107.0,"pitch":114.4375,"roll":11.4375},"location":"Right Knee"},{"euler":{"heading":80.1875,"pitch":-157.0625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:41.717"} +{"sensors":[{"euler":{"heading":298.0625,"pitch":133.5,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":112.75,"pitch":141.5625,"roll":60.3125},"location":"Left Ankle"},{"euler":{"heading":124.5625,"pitch":33.5,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":350.25,"pitch":-145.0625,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":109.125,"pitch":109.875,"roll":15.875},"location":"Right Knee"},{"euler":{"heading":81.375,"pitch":-154.6875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:41.818"} +{"sensors":[{"euler":{"heading":312.375,"pitch":132.3125,"roll":16.0},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":164.1875,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":119.0625,"pitch":29.25,"roll":51.9375},"location":"Right Ankle"},{"euler":{"heading":344.875,"pitch":-147.3125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":109.125,"pitch":108.3125,"roll":19.125},"location":"Right Knee"},{"euler":{"heading":67.8125,"pitch":-135.125,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:41.918"} +{"sensors":[{"euler":{"heading":182.125,"pitch":141.5,"roll":21.5625},"location":"Left Knee"},{"euler":{"heading":112.4375,"pitch":140.0625,"roll":62.5},"location":"Left Ankle"},{"euler":{"heading":114.0625,"pitch":26.8125,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":344.6875,"pitch":-145.8125,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":110.4375,"pitch":106.5,"roll":22.5625},"location":"Right Knee"},{"euler":{"heading":58.5625,"pitch":-128.5,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:42.19"} +{"sensors":[{"euler":{"heading":195.6875,"pitch":157.4375,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":78.4375,"pitch":111.9375,"roll":40.8125},"location":"Left Ankle"},{"euler":{"heading":109.625,"pitch":23.5625,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":344.5,"pitch":-146.5625,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":112.125,"pitch":106.4375,"roll":26.125},"location":"Right Knee"},{"euler":{"heading":54.25,"pitch":-126.0,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:42.119"} +{"sensors":[{"euler":{"heading":209.875,"pitch":171.4375,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":56.8125,"pitch":102.9375,"roll":22.5},"location":"Left Ankle"},{"euler":{"heading":104.4375,"pitch":17.1875,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":344.875,"pitch":-149.1875,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":116.375,"pitch":108.75,"roll":30.75},"location":"Right Knee"},{"euler":{"heading":60.1875,"pitch":-131.8125,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:42.220"} +{"sensors":[{"euler":{"heading":213.5,"pitch":167.625,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":62.5,"pitch":108.375,"roll":24.0625},"location":"Left Ankle"},{"euler":{"heading":99.8125,"pitch":6.9375,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":345.6875,"pitch":-155.3125,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":124.5,"pitch":114.9375,"roll":36.875},"location":"Right Knee"},{"euler":{"heading":67.125,"pitch":-136.0,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:42.320"} +{"sensors":[{"euler":{"heading":210.5625,"pitch":160.5625,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":75.0,"pitch":110.125,"roll":32.875},"location":"Left Ankle"},{"euler":{"heading":91.625,"pitch":-12.3125,"roll":54.6875},"location":"Right Ankle"},{"euler":{"heading":351.0,"pitch":-151.8125,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":141.4375,"pitch":124.75,"roll":47.1875},"location":"Right Knee"},{"euler":{"heading":66.3125,"pitch":-138.3125,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:42.421"} +{"sensors":[{"euler":{"heading":260.6875,"pitch":154.625,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":81.4375,"pitch":111.1875,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":-26.5,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":1.3125,"pitch":-139.3125,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":149.125,"pitch":127.3125,"roll":51.3125},"location":"Right Knee"},{"euler":{"heading":69.25,"pitch":-142.0625,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:42.522"} +{"sensors":[{"euler":{"heading":267.9375,"pitch":149.3125,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":86.875,"pitch":112.375,"roll":40.1875},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":-9.875,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":9.5625,"pitch":-134.5,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":143.125,"pitch":121.6875,"roll":43.4375},"location":"Right Knee"},{"euler":{"heading":72.8125,"pitch":-144.5625,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:42.623"} +{"sensors":[{"euler":{"heading":275.4375,"pitch":144.375,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":91.375,"pitch":114.1875,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":115.5625,"pitch":20.125,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":10.25,"pitch":-135.375,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":128.625,"pitch":118.3125,"roll":27.5},"location":"Right Knee"},{"euler":{"heading":75.1875,"pitch":-148.9375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:42.723"} +{"sensors":[{"euler":{"heading":282.625,"pitch":140.0625,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":98.9375,"pitch":118.0,"roll":47.875},"location":"Left Ankle"},{"euler":{"heading":133.4375,"pitch":39.8125,"roll":50.5625},"location":"Right Ankle"},{"euler":{"heading":2.6875,"pitch":-139.125,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":109.625,"pitch":116.875,"roll":12.5},"location":"Right Knee"},{"euler":{"heading":77.5,"pitch":-153.0625,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:42.824"} +{"sensors":[{"euler":{"heading":289.1875,"pitch":136.0,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":104.625,"pitch":123.9375,"roll":52.625},"location":"Left Ankle"},{"euler":{"heading":137.75,"pitch":44.0625,"roll":46.125},"location":"Right Ankle"},{"euler":{"heading":352.625,"pitch":-143.8125,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":103.75,"pitch":114.8125,"roll":8.75},"location":"Right Knee"},{"euler":{"heading":79.875,"pitch":-157.25,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:42.924"} +{"sensors":[{"euler":{"heading":299.9375,"pitch":133.0,"roll":23.1875},"location":"Left Knee"},{"euler":{"heading":111.4375,"pitch":141.5625,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":127.1875,"pitch":36.25,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":350.25,"pitch":-145.8125,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":106.3125,"pitch":109.75,"roll":14.0},"location":"Right Knee"},{"euler":{"heading":79.9375,"pitch":-154.5,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:43.26"} +{"sensors":[{"euler":{"heading":316.25,"pitch":130.4375,"roll":15.25},"location":"Left Knee"},{"euler":{"heading":129.3125,"pitch":171.3125,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":121.375,"pitch":31.375,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":345.375,"pitch":-147.25,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":107.875,"pitch":108.625,"roll":17.75},"location":"Right Knee"},{"euler":{"heading":65.4375,"pitch":-132.75,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:43.127"} +{"sensors":[{"euler":{"heading":179.875,"pitch":138.875,"roll":18.25},"location":"Left Knee"},{"euler":{"heading":121.5,"pitch":150.1875,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":116.6875,"pitch":28.375,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":345.5,"pitch":-146.4375,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":108.75,"pitch":107.25,"roll":20.5},"location":"Right Knee"},{"euler":{"heading":56.8125,"pitch":-127.875,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:43.227"} +{"sensors":[{"euler":{"heading":192.625,"pitch":153.3125,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":89.1875,"pitch":115.3125,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":112.6875,"pitch":25.75,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":346.75,"pitch":-146.0625,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":110.375,"pitch":107.375,"roll":24.0625},"location":"Right Knee"},{"euler":{"heading":53.6875,"pitch":-126.0,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:43.328"} +{"sensors":[{"euler":{"heading":207.375,"pitch":167.6875,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":61.875,"pitch":105.125,"roll":26.25},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":20.625,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":346.9375,"pitch":-148.25,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":114.0,"pitch":108.75,"roll":28.5625},"location":"Right Knee"},{"euler":{"heading":58.75,"pitch":-129.8125,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:43.428"} +{"sensors":[{"euler":{"heading":215.375,"pitch":168.6875,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":63.75,"pitch":108.5,"roll":23.5625},"location":"Left Ankle"},{"euler":{"heading":101.6875,"pitch":9.625,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":347.9375,"pitch":-154.25,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":121.6875,"pitch":115.125,"roll":34.5625},"location":"Right Knee"},{"euler":{"heading":69.0,"pitch":-137.125,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:43.529"} +{"sensors":[{"euler":{"heading":213.25,"pitch":159.6875,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":77.25,"pitch":111.4375,"roll":32.25},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":-12.625,"roll":54.1875},"location":"Right Ankle"},{"euler":{"heading":354.3125,"pitch":-151.3125,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":138.25,"pitch":128.9375,"roll":43.0},"location":"Right Knee"},{"euler":{"heading":68.4375,"pitch":-137.4375,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:43.630"} +{"sensors":[{"euler":{"heading":267.25,"pitch":152.875,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":87.3125,"pitch":114.625,"roll":38.5625},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":-23.75,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":4.125,"pitch":-139.375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":148.3125,"pitch":129.4375,"roll":49.4375},"location":"Right Knee"},{"euler":{"heading":71.3125,"pitch":-140.6875,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:43.730"} +{"sensors":[{"euler":{"heading":270.625,"pitch":148.5625,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":91.875,"pitch":114.5625,"roll":41.625},"location":"Left Ankle"},{"euler":{"heading":100.25,"pitch":-2.875,"roll":56.8125},"location":"Right Ankle"},{"euler":{"heading":11.0625,"pitch":-134.25,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":139.9375,"pitch":122.375,"roll":41.0},"location":"Right Knee"},{"euler":{"heading":73.5,"pitch":-143.8125,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:43.831"} +{"sensors":[{"euler":{"heading":276.0,"pitch":144.25,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":115.8125,"roll":44.0},"location":"Left Ankle"},{"euler":{"heading":120.375,"pitch":27.0625,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":9.5,"pitch":-135.9375,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":126.25,"pitch":118.625,"roll":26.0625},"location":"Right Knee"},{"euler":{"heading":74.4375,"pitch":-147.6875,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:43.932"} +{"sensors":[{"euler":{"heading":282.8125,"pitch":140.3125,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":99.875,"pitch":119.3125,"roll":48.25},"location":"Left Ankle"},{"euler":{"heading":134.125,"pitch":42.5,"roll":48.1875},"location":"Right Ankle"},{"euler":{"heading":1.8125,"pitch":-138.5625,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":105.875,"pitch":115.4375,"roll":10.0625},"location":"Right Knee"},{"euler":{"heading":74.6875,"pitch":-151.0625,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:44.32"} +{"sensors":[{"euler":{"heading":287.625,"pitch":136.8125,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":105.5,"pitch":124.3125,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":46.5625,"pitch":44.6875,"roll":44.875},"location":"Right Ankle"},{"euler":{"heading":351.0,"pitch":-143.125,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":101.9375,"pitch":111.875,"roll":8.125},"location":"Right Knee"},{"euler":{"heading":76.8125,"pitch":-155.1875,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:44.133"} +{"sensors":[{"euler":{"heading":297.6875,"pitch":133.25,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":140.3125,"roll":60.5625},"location":"Left Ankle"},{"euler":{"heading":126.0625,"pitch":36.125,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":348.125,"pitch":-145.5625,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":104.4375,"pitch":108.4375,"roll":12.9375},"location":"Right Knee"},{"euler":{"heading":76.6875,"pitch":-151.6875,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:44.234"} +{"sensors":[{"euler":{"heading":313.3125,"pitch":131.6875,"roll":16.0},"location":"Left Knee"},{"euler":{"heading":127.5625,"pitch":167.125,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":121.6875,"pitch":31.0,"roll":50.0625},"location":"Right Ankle"},{"euler":{"heading":342.875,"pitch":-148.375,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":105.8125,"pitch":108.1875,"roll":16.9375},"location":"Right Knee"},{"euler":{"heading":62.375,"pitch":-132.625,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:44.334"} +{"sensors":[{"euler":{"heading":179.5625,"pitch":140.8125,"roll":18.8125},"location":"Left Knee"},{"euler":{"heading":114.625,"pitch":146.25,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":28.0,"roll":50.375},"location":"Right Ankle"},{"euler":{"heading":343.5,"pitch":-147.625,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":106.5,"pitch":107.6875,"roll":20.3125},"location":"Right Knee"},{"euler":{"heading":54.6875,"pitch":-127.4375,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:44.435"} +{"sensors":[{"euler":{"heading":193.6875,"pitch":154.625,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":86.625,"pitch":115.5,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":114.4375,"pitch":26.8125,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":344.4375,"pitch":-148.0,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":109.375,"pitch":107.875,"roll":24.0625},"location":"Right Knee"},{"euler":{"heading":53.1875,"pitch":-125.9375,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:44.536"} +{"sensors":[{"euler":{"heading":208.75,"pitch":169.5625,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":59.3125,"pitch":104.5625,"roll":24.1875},"location":"Left Ankle"},{"euler":{"heading":108.375,"pitch":21.5625,"roll":52.25},"location":"Right Ankle"},{"euler":{"heading":344.6875,"pitch":-150.25,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":113.125,"pitch":108.9375,"roll":28.875},"location":"Right Knee"},{"euler":{"heading":59.1875,"pitch":-131.0,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:44.637"} +{"sensors":[{"euler":{"heading":214.75,"pitch":171.6875,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":58.9375,"pitch":104.4375,"roll":20.875},"location":"Left Ankle"},{"euler":{"heading":101.1875,"pitch":10.5,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":346.5625,"pitch":-155.0625,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":120.5625,"pitch":114.5,"roll":34.9375},"location":"Right Knee"},{"euler":{"heading":65.1875,"pitch":-135.0,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:44.737"} +{"sensors":[{"euler":{"heading":213.375,"pitch":161.625,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":74.4375,"pitch":109.3125,"roll":31.1875},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":-10.0,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":352.1875,"pitch":-154.0,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":135.8125,"pitch":126.625,"roll":42.9375},"location":"Right Knee"},{"euler":{"heading":67.4375,"pitch":-136.4375,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:44.838"} +{"sensors":[{"euler":{"heading":264.4375,"pitch":153.75,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":84.375,"pitch":112.0,"roll":38.0},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":-22.75,"roll":51.375},"location":"Right Ankle"},{"euler":{"heading":4.0,"pitch":-138.8125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":145.8125,"pitch":127.5,"roll":47.5625},"location":"Right Knee"},{"euler":{"heading":71.3125,"pitch":-140.6875,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:44.947"} +{"sensors":[{"euler":{"heading":268.1875,"pitch":149.4375,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":88.75,"pitch":112.125,"roll":40.75},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":-3.375,"roll":55.625},"location":"Right Ankle"},{"euler":{"heading":10.125,"pitch":-135.5625,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":133.5625,"pitch":120.3125,"roll":36.25},"location":"Right Knee"},{"euler":{"heading":73.875,"pitch":-144.875,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:45.47"} +{"sensors":[{"euler":{"heading":274.5,"pitch":144.875,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":91.5625,"pitch":112.3125,"roll":43.1875},"location":"Left Ankle"},{"euler":{"heading":119.8125,"pitch":22.5625,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":8.9375,"pitch":-136.125,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":119.3125,"pitch":118.1875,"roll":20.75},"location":"Right Knee"},{"euler":{"heading":76.5625,"pitch":-150.1875,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:45.147"} +{"sensors":[{"euler":{"heading":282.625,"pitch":140.0625,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":97.75,"pitch":116.6875,"roll":47.5},"location":"Left Ankle"},{"euler":{"heading":135.9375,"pitch":40.625,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":2.75,"pitch":-139.0,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":103.625,"pitch":117.3125,"roll":8.5},"location":"Right Knee"},{"euler":{"heading":77.9375,"pitch":-153.25,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:45.248"} +{"sensors":[{"euler":{"heading":289.75,"pitch":135.9375,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":125.125,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":134.25,"pitch":44.125,"roll":46.875},"location":"Right Ankle"},{"euler":{"heading":352.6875,"pitch":-143.8125,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":101.5,"pitch":110.8125,"roll":6.875},"location":"Right Knee"},{"euler":{"heading":79.125,"pitch":-154.25,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:45.349"} +{"sensors":[{"euler":{"heading":300.75,"pitch":132.5,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":114.5,"pitch":144.75,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":123.6875,"pitch":35.5625,"roll":50.1875},"location":"Right Ankle"},{"euler":{"heading":350.5,"pitch":-145.25,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":104.25,"pitch":107.3125,"roll":12.3125},"location":"Right Knee"},{"euler":{"heading":77.375,"pitch":-149.375,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:45.449"} +{"sensors":[{"euler":{"heading":310.25,"pitch":133.25,"roll":16.75},"location":"Left Knee"},{"euler":{"heading":122.875,"pitch":164.6875,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":120.9375,"pitch":31.75,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":343.75,"pitch":-148.3125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":104.3125,"pitch":106.625,"roll":16.125},"location":"Right Knee"},{"euler":{"heading":61.9375,"pitch":-130.125,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:45.550"} +{"sensors":[{"euler":{"heading":182.8125,"pitch":142.5,"roll":21.75},"location":"Left Knee"},{"euler":{"heading":109.5625,"pitch":134.9375,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":29.75,"roll":50.375},"location":"Right Ankle"},{"euler":{"heading":344.4375,"pitch":-147.4375,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":106.125,"pitch":105.9375,"roll":19.75},"location":"Right Knee"},{"euler":{"heading":55.4375,"pitch":-127.4375,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:45.650"} +{"sensors":[{"euler":{"heading":197.875,"pitch":158.4375,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":75.25,"pitch":111.8125,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":112.75,"pitch":26.0,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":345.875,"pitch":-147.9375,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":108.8125,"pitch":106.8125,"roll":23.5625},"location":"Right Knee"},{"euler":{"heading":54.3125,"pitch":-126.6875,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:45.751"} +{"sensors":[{"euler":{"heading":212.0,"pitch":171.3125,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":56.25,"pitch":103.6875,"roll":21.4375},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":19.8125,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":347.875,"pitch":-150.3125,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":113.25,"pitch":109.75,"roll":28.4375},"location":"Right Knee"},{"euler":{"heading":62.0625,"pitch":-133.9375,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:45.852"} +{"sensors":[{"euler":{"heading":214.3125,"pitch":166.3125,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":62.5625,"pitch":109.5,"roll":24.0},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":8.1875,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":348.5625,"pitch":-156.375,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":121.625,"pitch":115.1875,"roll":35.125},"location":"Right Knee"},{"euler":{"heading":68.875,"pitch":-137.0,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:45.953"} +{"sensors":[{"euler":{"heading":212.1875,"pitch":158.25,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":77.4375,"pitch":112.5625,"roll":33.5},"location":"Left Ankle"},{"euler":{"heading":89.625,"pitch":-13.5625,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":353.375,"pitch":-153.375,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":136.1875,"pitch":124.125,"roll":44.4375},"location":"Right Knee"},{"euler":{"heading":68.6875,"pitch":-137.6875,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:46.55"} +{"sensors":[{"euler":{"heading":267.375,"pitch":152.4375,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":86.8125,"pitch":113.6875,"roll":38.6875},"location":"Left Ankle"},{"euler":{"heading":89.75,"pitch":-21.4375,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":2.1875,"pitch":-141.4375,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":145.0,"pitch":128.0625,"roll":47.125},"location":"Right Knee"},{"euler":{"heading":71.5,"pitch":-142.0,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:46.155"} +{"sensors":[{"euler":{"heading":273.8125,"pitch":147.5625,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":91.6875,"pitch":114.5,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":103.375,"pitch":-3.75,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":8.9375,"pitch":-136.875,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":136.125,"pitch":123.5625,"roll":38.0625},"location":"Right Knee"},{"euler":{"heading":75.3125,"pitch":-146.125,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:46.256"} +{"sensors":[{"euler":{"heading":279.625,"pitch":143.5,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":95.25,"pitch":115.3125,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":123.75,"pitch":25.125,"roll":52.125},"location":"Right Ankle"},{"euler":{"heading":8.875,"pitch":-137.5625,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":121.9375,"pitch":120.0,"roll":23.25},"location":"Right Knee"},{"euler":{"heading":77.125,"pitch":-151.25,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:46.357"} +{"sensors":[{"euler":{"heading":285.0625,"pitch":139.8125,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":99.125,"pitch":118.0625,"roll":47.875},"location":"Left Ankle"},{"euler":{"heading":135.75,"pitch":39.5,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":352.25,"pitch":-142.375,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":103.3125,"pitch":117.375,"roll":9.0},"location":"Right Knee"},{"euler":{"heading":78.4375,"pitch":-154.5,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:46.458"} +{"sensors":[{"euler":{"heading":290.3125,"pitch":136.9375,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":103.875,"pitch":123.5,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":135.75,"pitch":43.125,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":350.1875,"pitch":-145.4375,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":100.0625,"pitch":113.6875,"roll":6.25},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-158.8125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:46.561"} +{"sensors":[{"euler":{"heading":299.625,"pitch":133.8125,"roll":22.9375},"location":"Left Knee"},{"euler":{"heading":111.0625,"pitch":139.75,"roll":60.8125},"location":"Left Ankle"},{"euler":{"heading":124.9375,"pitch":37.0,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":347.4375,"pitch":-146.5,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":103.4375,"pitch":108.3125,"roll":11.4375},"location":"Right Knee"},{"euler":{"heading":79.0625,"pitch":-155.1875,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:46.662"} +{"sensors":[{"euler":{"heading":311.9375,"pitch":132.6875,"roll":15.25},"location":"Left Knee"},{"euler":{"heading":123.6875,"pitch":169.1875,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":120.6875,"pitch":32.375,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":342.375,"pitch":-149.3125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":104.5625,"pitch":107.9375,"roll":15.25},"location":"Right Knee"},{"euler":{"heading":63.0,"pitch":-131.75,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:46.762"} +{"sensors":[{"euler":{"heading":177.1875,"pitch":140.125,"roll":18.75},"location":"Left Knee"},{"euler":{"heading":115.125,"pitch":146.625,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":116.8125,"pitch":28.5,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":344.3125,"pitch":-148.75,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":106.1875,"pitch":108.0625,"roll":18.8125},"location":"Right Knee"},{"euler":{"heading":55.8125,"pitch":-126.6875,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:46.864"} +{"sensors":[{"euler":{"heading":193.375,"pitch":154.6875,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":84.6875,"pitch":113.75,"roll":47.9375},"location":"Left Ankle"},{"euler":{"heading":111.375,"pitch":25.5625,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":345.875,"pitch":-147.375,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":108.25,"pitch":107.5625,"roll":22.25},"location":"Right Knee"},{"euler":{"heading":53.5625,"pitch":-125.375,"roll":46.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:46.965"} +{"sensors":[{"euler":{"heading":209.0,"pitch":169.8125,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":59.125,"pitch":103.625,"roll":25.0625},"location":"Left Ankle"},{"euler":{"heading":106.25,"pitch":19.5,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":345.9375,"pitch":-150.6875,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":112.0625,"pitch":109.0,"roll":26.9375},"location":"Right Knee"},{"euler":{"heading":58.1875,"pitch":-128.875,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:47.65"} +{"sensors":[{"euler":{"heading":214.0,"pitch":172.9375,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":55.9375,"pitch":104.3125,"roll":20.6875},"location":"Left Ankle"},{"euler":{"heading":101.125,"pitch":9.6875,"roll":50.8125},"location":"Right Ankle"},{"euler":{"heading":346.375,"pitch":-158.0625,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":119.625,"pitch":115.4375,"roll":33.25},"location":"Right Knee"},{"euler":{"heading":67.5625,"pitch":-135.0625,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:47.166"} +{"sensors":[{"euler":{"heading":214.4375,"pitch":162.5,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":71.375,"pitch":108.4375,"roll":30.25},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":-7.8125,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":348.6875,"pitch":-162.25,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":131.9375,"pitch":124.875,"roll":40.5},"location":"Right Knee"},{"euler":{"heading":72.4375,"pitch":-138.6875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:47.267"} +{"sensors":[{"euler":{"heading":261.0,"pitch":155.5625,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":78.375,"pitch":109.625,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":83.5625,"pitch":-23.625,"roll":49.5625},"location":"Right Ankle"},{"euler":{"heading":1.3125,"pitch":-147.625,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":146.6875,"pitch":128.625,"roll":49.0},"location":"Right Knee"},{"euler":{"heading":74.625,"pitch":-140.25,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:47.368"} +{"sensors":[{"euler":{"heading":262.0,"pitch":152.25,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":81.5,"pitch":110.0,"roll":38.1875},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":-19.0625,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":10.5,"pitch":-138.25,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":144.25,"pitch":127.875,"roll":44.5625},"location":"Right Knee"},{"euler":{"heading":75.8125,"pitch":-144.625,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:47.468"} +{"sensors":[{"euler":{"heading":265.25,"pitch":148.9375,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":85.5625,"pitch":111.25,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":109.0625,"pitch":9.625,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":13.75,"pitch":-134.9375,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":129.5,"pitch":121.6875,"roll":30.1875},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-148.0625,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:47.569"} +{"sensors":[{"euler":{"heading":271.5,"pitch":145.1875,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":88.5625,"pitch":112.0,"roll":44.9375},"location":"Left Ankle"},{"euler":{"heading":124.8125,"pitch":29.1875,"roll":54.4375},"location":"Right Ankle"},{"euler":{"heading":10.3125,"pitch":-138.5625,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":108.4375,"pitch":119.875,"roll":12.6875},"location":"Right Knee"},{"euler":{"heading":78.875,"pitch":-152.5625,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:47.670"} +{"sensors":[{"euler":{"heading":275.75,"pitch":142.6875,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":113.0625,"roll":49.125},"location":"Left Ankle"},{"euler":{"heading":51.0625,"pitch":42.8125,"roll":44.0},"location":"Right Ankle"},{"euler":{"heading":1.4375,"pitch":-140.625,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":96.9375,"pitch":118.75,"roll":3.875},"location":"Right Knee"},{"euler":{"heading":77.875,"pitch":-156.0625,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:47.771"} +{"sensors":[{"euler":{"heading":282.4375,"pitch":139.6875,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":97.875,"pitch":119.625,"roll":55.1875},"location":"Left Ankle"},{"euler":{"heading":48.3125,"pitch":43.875,"roll":43.75},"location":"Right Ankle"},{"euler":{"heading":351.5625,"pitch":-142.8125,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":96.375,"pitch":113.3125,"roll":4.0},"location":"Right Knee"},{"euler":{"heading":79.5,"pitch":-161.0625,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:47.872"} +{"sensors":[{"euler":{"heading":294.6875,"pitch":136.8125,"roll":20.875},"location":"Left Knee"},{"euler":{"heading":110.0625,"pitch":142.9375,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":128.125,"pitch":35.6875,"roll":47.9375},"location":"Right Ankle"},{"euler":{"heading":349.5,"pitch":-145.25,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":99.5625,"pitch":110.75,"roll":8.75},"location":"Right Knee"},{"euler":{"heading":76.75,"pitch":-156.25,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:47.972"} +{"sensors":[{"euler":{"heading":319.125,"pitch":130.75,"roll":12.875},"location":"Left Knee"},{"euler":{"heading":128.3125,"pitch":174.8125,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":123.875,"pitch":30.4375,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":344.0625,"pitch":-148.5625,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":101.25,"pitch":110.5625,"roll":12.8125},"location":"Right Knee"},{"euler":{"heading":65.375,"pitch":-133.125,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:48.74"} +{"sensors":[{"euler":{"heading":178.5625,"pitch":140.1875,"roll":16.5},"location":"Left Knee"},{"euler":{"heading":121.5625,"pitch":160.8125,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":121.25,"pitch":26.875,"roll":49.4375},"location":"Right Ankle"},{"euler":{"heading":346.1875,"pitch":-148.25,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":103.0,"pitch":111.75,"roll":16.1875},"location":"Right Knee"},{"euler":{"heading":57.6875,"pitch":-127.0625,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:48.174"} +{"sensors":[{"euler":{"heading":193.125,"pitch":154.1875,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":85.375,"pitch":115.9375,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":117.0625,"pitch":24.6875,"roll":50.8125},"location":"Right Ankle"},{"euler":{"heading":348.5625,"pitch":-146.25,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":105.4375,"pitch":110.75,"roll":19.4375},"location":"Right Knee"},{"euler":{"heading":55.1875,"pitch":-126.3125,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:48.275"} +{"sensors":[{"euler":{"heading":208.1875,"pitch":169.0,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":59.625,"pitch":103.9375,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":111.875,"pitch":19.5,"roll":51.5625},"location":"Right Ankle"},{"euler":{"heading":348.9375,"pitch":-148.1875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":109.0625,"pitch":111.5625,"roll":23.875},"location":"Right Knee"},{"euler":{"heading":57.5,"pitch":-128.4375,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:48.375"} +{"sensors":[{"euler":{"heading":215.3125,"pitch":172.75,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":55.6875,"pitch":103.9375,"roll":19.8125},"location":"Left Ankle"},{"euler":{"heading":105.9375,"pitch":10.9375,"roll":52.25},"location":"Right Ankle"},{"euler":{"heading":349.75,"pitch":-152.8125,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":115.125,"pitch":115.625,"roll":29.4375},"location":"Right Knee"},{"euler":{"heading":65.3125,"pitch":-133.875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:48.475"} +{"sensors":[{"euler":{"heading":216.5,"pitch":162.5,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":73.75,"pitch":112.375,"roll":30.0},"location":"Left Ankle"},{"euler":{"heading":97.4375,"pitch":-4.0625,"roll":50.8125},"location":"Right Ankle"},{"euler":{"heading":351.8125,"pitch":-156.625,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":126.0625,"pitch":124.0,"roll":36.8125},"location":"Right Knee"},{"euler":{"heading":70.875,"pitch":-137.4375,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:48.576"} +{"sensors":[{"euler":{"heading":265.3125,"pitch":155.3125,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":81.3125,"pitch":113.5,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":87.8125,"pitch":-23.625,"roll":49.3125},"location":"Right Ankle"},{"euler":{"heading":2.25,"pitch":-145.125,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":141.375,"pitch":129.4375,"roll":45.1875},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-138.9375,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:48.677"} +{"sensors":[{"euler":{"heading":268.3125,"pitch":151.1875,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":86.0625,"pitch":114.25,"roll":38.8125},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":-15.625,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":9.6875,"pitch":-137.1875,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":137.875,"pitch":125.875,"roll":39.75},"location":"Right Knee"},{"euler":{"heading":73.3125,"pitch":-143.375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:48.783"} +{"sensors":[{"euler":{"heading":278.6875,"pitch":145.125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":116.5,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":115.9375,"pitch":13.8125,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":10.5,"pitch":-135.9375,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":124.1875,"pitch":120.8125,"roll":25.1875},"location":"Right Knee"},{"euler":{"heading":76.3125,"pitch":-147.25,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:48.885"} +{"sensors":[{"euler":{"heading":286.1875,"pitch":140.6875,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":119.0625,"roll":46.125},"location":"Left Ankle"},{"euler":{"heading":132.5,"pitch":37.375,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":4.5,"pitch":-140.3125,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":106.4375,"pitch":117.25,"roll":9.6875},"location":"Right Knee"},{"euler":{"heading":77.25,"pitch":-150.6875,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:48.985"} +{"sensors":[{"euler":{"heading":292.8125,"pitch":136.625,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":105.125,"pitch":124.1875,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":137.75,"pitch":41.6875,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":355.6875,"pitch":-144.9375,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":98.875,"pitch":116.75,"roll":4.4375},"location":"Right Knee"},{"euler":{"heading":79.375,"pitch":-153.6875,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:49.86"} +{"sensors":[{"euler":{"heading":298.75,"pitch":134.0625,"roll":25.875},"location":"Left Knee"},{"euler":{"heading":109.8125,"pitch":134.0,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":126.5,"pitch":37.5625,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":350.0,"pitch":-147.25,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":100.0,"pitch":110.75,"roll":7.375},"location":"Right Knee"},{"euler":{"heading":79.6875,"pitch":-153.3125,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:49.187"} +{"sensors":[{"euler":{"heading":314.625,"pitch":132.75,"roll":15.9375},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":167.375,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":121.5,"pitch":34.6875,"roll":50.8125},"location":"Right Ankle"},{"euler":{"heading":349.875,"pitch":-146.3125,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":101.6875,"pitch":107.9375,"roll":12.0625},"location":"Right Knee"},{"euler":{"heading":67.75,"pitch":-137.6875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:49.288"} +{"sensors":[{"euler":{"heading":179.25,"pitch":137.4375,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":117.3125,"pitch":152.9375,"roll":63.0625},"location":"Left Ankle"},{"euler":{"heading":116.6875,"pitch":29.625,"roll":51.1875},"location":"Right Ankle"},{"euler":{"heading":345.75,"pitch":-147.1875,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":103.1875,"pitch":106.5,"roll":15.375},"location":"Right Knee"},{"euler":{"heading":58.0625,"pitch":-127.5625,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:49.389"} +{"sensors":[{"euler":{"heading":191.375,"pitch":150.6875,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":91.375,"pitch":120.4375,"roll":49.6875},"location":"Left Ankle"},{"euler":{"heading":113.25,"pitch":25.625,"roll":50.5625},"location":"Right Ankle"},{"euler":{"heading":346.5625,"pitch":-146.75,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":104.8125,"pitch":107.25,"roll":18.9375},"location":"Right Knee"},{"euler":{"heading":54.1875,"pitch":-126.6875,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:49.489"} +{"sensors":[{"euler":{"heading":206.8125,"pitch":164.5,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":64.4375,"pitch":108.5,"roll":28.3125},"location":"Left Ankle"},{"euler":{"heading":110.0,"pitch":20.5625,"roll":51.9375},"location":"Right Ankle"},{"euler":{"heading":347.9375,"pitch":-149.4375,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":109.1875,"pitch":109.75,"roll":23.375},"location":"Right Knee"},{"euler":{"heading":57.875,"pitch":-129.0,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:49.590"} +{"sensors":[{"euler":{"heading":213.25,"pitch":170.0,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":56.5,"pitch":104.6875,"roll":20.875},"location":"Left Ankle"},{"euler":{"heading":104.625,"pitch":11.4375,"roll":51.625},"location":"Right Ankle"},{"euler":{"heading":349.25,"pitch":-154.6875,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":114.75,"pitch":114.25,"roll":28.5625},"location":"Right Knee"},{"euler":{"heading":66.625,"pitch":-135.1875,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:49.690"} +{"sensors":[{"euler":{"heading":214.125,"pitch":161.5,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":73.75,"pitch":110.5,"roll":29.75},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":-2.125,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":350.6875,"pitch":-157.625,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":125.3125,"pitch":121.4375,"roll":36.0625},"location":"Right Knee"},{"euler":{"heading":70.4375,"pitch":-137.875,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:49.791"} +{"sensors":[{"euler":{"heading":208.9375,"pitch":154.0,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":78.4375,"pitch":112.25,"roll":34.9375},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":-24.1875,"roll":50.0},"location":"Right Ankle"},{"euler":{"heading":1.9375,"pitch":-145.8125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":139.0,"pitch":126.0,"roll":44.9375},"location":"Right Knee"},{"euler":{"heading":70.25,"pitch":-138.6875,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:49.892"} +{"sensors":[{"euler":{"heading":271.0625,"pitch":149.1875,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":84.75,"pitch":112.75,"roll":38.75},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":-18.625,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":10.4375,"pitch":-137.0,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":139.4375,"pitch":125.6875,"roll":41.0625},"location":"Right Knee"},{"euler":{"heading":75.375,"pitch":-144.375,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:49.992"} +{"sensors":[{"euler":{"heading":275.625,"pitch":145.125,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":86.9375,"pitch":112.6875,"roll":41.0},"location":"Left Ankle"},{"euler":{"heading":112.5,"pitch":6.5625,"roll":55.625},"location":"Right Ankle"},{"euler":{"heading":12.4375,"pitch":-135.625,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":126.6875,"pitch":122.3125,"roll":28.125},"location":"Right Knee"},{"euler":{"heading":77.5625,"pitch":-148.75,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:50.93"} +{"sensors":[{"euler":{"heading":282.0625,"pitch":141.6875,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":114.75,"roll":44.9375},"location":"Left Ankle"},{"euler":{"heading":132.1875,"pitch":35.25,"roll":46.5625},"location":"Right Ankle"},{"euler":{"heading":6.5625,"pitch":-138.75,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":109.125,"pitch":117.75,"roll":12.4375},"location":"Right Knee"},{"euler":{"heading":76.5,"pitch":-151.6875,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:50.194"} +{"sensors":[{"euler":{"heading":287.375,"pitch":138.4375,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":98.25,"pitch":118.875,"roll":49.875},"location":"Left Ankle"},{"euler":{"heading":49.25,"pitch":40.9375,"roll":44.875},"location":"Right Ankle"},{"euler":{"heading":354.9375,"pitch":-143.3125,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":95.5,"pitch":116.125,"roll":3.25},"location":"Right Knee"},{"euler":{"heading":77.25,"pitch":-154.3125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:50.294"} +{"sensors":[{"euler":{"heading":294.4375,"pitch":135.3125,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":103.8125,"pitch":128.625,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":131.0,"pitch":37.5,"roll":47.625},"location":"Right Ankle"},{"euler":{"heading":346.0,"pitch":-148.0,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":97.25,"pitch":112.3125,"roll":6.3125},"location":"Right Knee"},{"euler":{"heading":79.9375,"pitch":-155.875,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:50.395"} +{"sensors":[{"euler":{"heading":314.4375,"pitch":132.6875,"roll":14.625},"location":"Left Knee"},{"euler":{"heading":125.625,"pitch":164.1875,"roll":64.625},"location":"Left Ankle"},{"euler":{"heading":123.875,"pitch":32.25,"roll":49.625},"location":"Right Ankle"},{"euler":{"heading":345.375,"pitch":-148.3125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":99.8125,"pitch":109.4375,"roll":11.25},"location":"Right Knee"},{"euler":{"heading":64.8125,"pitch":-136.125,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:50.496"} +{"sensors":[{"euler":{"heading":175.625,"pitch":138.375,"roll":14.9375},"location":"Left Knee"},{"euler":{"heading":118.1875,"pitch":155.1875,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":119.875,"pitch":28.25,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":344.4375,"pitch":-148.5,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":102.8125,"pitch":109.625,"roll":15.4375},"location":"Right Knee"},{"euler":{"heading":57.1875,"pitch":-126.375,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:50.597"} +{"sensors":[{"euler":{"heading":187.875,"pitch":150.0625,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":93.625,"pitch":120.75,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":116.3125,"pitch":23.1875,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":345.9375,"pitch":-147.6875,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":104.375,"pitch":110.25,"roll":18.8125},"location":"Right Knee"},{"euler":{"heading":53.4375,"pitch":-125.4375,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:50.697"} +{"sensors":[{"euler":{"heading":203.3125,"pitch":163.375,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":65.5,"pitch":107.5625,"roll":31.625},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":19.6875,"roll":51.5625},"location":"Right Ankle"},{"euler":{"heading":347.0625,"pitch":-148.625,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":108.0,"pitch":110.25,"roll":23.0},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-127.1875,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:50.798"} +{"sensors":[{"euler":{"heading":212.3125,"pitch":171.5,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":52.8125,"pitch":102.5625,"roll":19.4375},"location":"Left Ankle"},{"euler":{"heading":105.9375,"pitch":12.8125,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":347.625,"pitch":-151.4375,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":113.125,"pitch":112.9375,"roll":28.125},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-133.25,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:50.899"} +{"sensors":[{"euler":{"heading":214.0625,"pitch":164.8125,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":63.25,"pitch":107.625,"roll":24.375},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":1.0625,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":349.0,"pitch":-157.25,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":122.8125,"pitch":119.4375,"roll":35.0625},"location":"Right Knee"},{"euler":{"heading":69.8125,"pitch":-137.5,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:51.0"} +{"sensors":[{"euler":{"heading":209.875,"pitch":156.8125,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":70.5625,"pitch":110.125,"roll":32.125},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":-17.8125,"roll":51.125},"location":"Right Ankle"},{"euler":{"heading":357.5625,"pitch":-148.25,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":137.5,"pitch":124.0625,"roll":44.6875},"location":"Right Knee"},{"euler":{"heading":68.875,"pitch":-137.5,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:51.100"} +{"sensors":[{"euler":{"heading":267.875,"pitch":151.125,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":77.3125,"pitch":111.5625,"roll":36.3125},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":-20.25,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":5.3125,"pitch":-138.75,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":142.0,"pitch":126.4375,"roll":43.0},"location":"Right Knee"},{"euler":{"heading":71.8125,"pitch":-141.5,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:51.201"} +{"sensors":[{"euler":{"heading":271.875,"pitch":147.4375,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":80.5,"pitch":112.5625,"roll":39.3125},"location":"Left Ankle"},{"euler":{"heading":108.6875,"pitch":2.9375,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":9.0625,"pitch":-136.6875,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":130.0625,"pitch":123.0,"roll":31.125},"location":"Right Knee"},{"euler":{"heading":72.875,"pitch":-144.25,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:51.302"} +{"sensors":[{"euler":{"heading":279.0625,"pitch":143.5625,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":84.375,"pitch":114.0625,"roll":42.4375},"location":"Left Ankle"},{"euler":{"heading":128.75,"pitch":30.0,"roll":49.9375},"location":"Right Ankle"},{"euler":{"heading":6.4375,"pitch":-138.4375,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":113.9375,"pitch":119.9375,"roll":15.75},"location":"Right Knee"},{"euler":{"heading":74.25,"pitch":-148.25,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:51.402"} +{"sensors":[{"euler":{"heading":284.9375,"pitch":140.0625,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":89.9375,"pitch":116.5625,"roll":46.9375},"location":"Left Ankle"},{"euler":{"heading":140.0,"pitch":38.5625,"roll":46.3125},"location":"Right Ankle"},{"euler":{"heading":358.8125,"pitch":-142.9375,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":95.9375,"pitch":120.4375,"roll":3.5625},"location":"Right Knee"},{"euler":{"heading":76.5,"pitch":-153.6875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:51.505"} +{"sensors":[{"euler":{"heading":292.6875,"pitch":137.1875,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":95.1875,"pitch":122.75,"roll":52.3125},"location":"Left Ankle"},{"euler":{"heading":136.5,"pitch":40.375,"roll":45.9375},"location":"Right Ankle"},{"euler":{"heading":352.875,"pitch":-143.625,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":97.3125,"pitch":115.375,"roll":4.875},"location":"Right Knee"},{"euler":{"heading":79.375,"pitch":-158.5625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:51.606"} +{"sensors":[{"euler":{"heading":305.25,"pitch":134.6875,"roll":18.25},"location":"Left Knee"},{"euler":{"heading":106.875,"pitch":144.625,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":126.625,"pitch":32.0625,"roll":48.9375},"location":"Right Ankle"},{"euler":{"heading":351.625,"pitch":-145.5,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":100.875,"pitch":111.9375,"roll":10.1875},"location":"Right Knee"},{"euler":{"heading":74.6875,"pitch":-151.5625,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:51.708"} +{"sensors":[{"euler":{"heading":318.9375,"pitch":133.625,"roll":12.3125},"location":"Left Knee"},{"euler":{"heading":113.875,"pitch":156.875,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":122.0,"pitch":28.4375,"roll":49.1875},"location":"Right Ankle"},{"euler":{"heading":344.875,"pitch":-147.8125,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":101.5,"pitch":109.8125,"roll":13.6875},"location":"Right Knee"},{"euler":{"heading":63.0625,"pitch":-131.1875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:51.808"} +{"sensors":[{"euler":{"heading":182.4375,"pitch":141.375,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":102.5,"pitch":132.9375,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":117.0625,"pitch":25.75,"roll":49.4375},"location":"Right Ankle"},{"euler":{"heading":346.5625,"pitch":-146.3125,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":103.5625,"pitch":108.625,"roll":17.1875},"location":"Right Knee"},{"euler":{"heading":56.0625,"pitch":-127.5625,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:51.909"} +{"sensors":[{"euler":{"heading":196.75,"pitch":156.375,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":69.4375,"pitch":110.3125,"roll":36.625},"location":"Left Ankle"},{"euler":{"heading":112.6875,"pitch":22.5,"roll":50.8125},"location":"Right Ankle"},{"euler":{"heading":347.0625,"pitch":-146.375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":105.25,"pitch":108.75,"roll":20.9375},"location":"Right Knee"},{"euler":{"heading":54.1875,"pitch":-125.8125,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:52.10"} +{"sensors":[{"euler":{"heading":209.875,"pitch":169.875,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":50.875,"pitch":101.8125,"roll":19.625},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":16.4375,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":347.75,"pitch":-149.4375,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":109.6875,"pitch":111.0625,"roll":25.8125},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-130.75,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:52.111"} +{"sensors":[{"euler":{"heading":214.125,"pitch":165.9375,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":55.25,"pitch":105.3125,"roll":21.5},"location":"Left Ankle"},{"euler":{"heading":100.25,"pitch":4.0625,"roll":50.0},"location":"Right Ankle"},{"euler":{"heading":348.8125,"pitch":-155.8125,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":117.4375,"pitch":117.8125,"roll":32.25},"location":"Right Knee"},{"euler":{"heading":68.75,"pitch":-135.6875,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:52.211"} +{"sensors":[{"euler":{"heading":212.0625,"pitch":158.25,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":69.0625,"pitch":108.875,"roll":30.375},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":-15.1875,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":355.0,"pitch":-150.5,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":134.5625,"pitch":124.5625,"roll":43.0625},"location":"Right Knee"},{"euler":{"heading":66.6875,"pitch":-136.0,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:52.312"} +{"sensors":[{"euler":{"heading":266.375,"pitch":152.875,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":77.25,"pitch":110.25,"roll":35.5},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":-21.5,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":4.875,"pitch":-138.9375,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":140.75,"pitch":126.5625,"roll":43.4375},"location":"Right Knee"},{"euler":{"heading":75.1875,"pitch":-128.4375,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:52.412"} +{"sensors":[{"euler":{"heading":270.5,"pitch":148.75,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":80.5,"pitch":111.3125,"roll":39.1875},"location":"Left Ankle"},{"euler":{"heading":105.6875,"pitch":0.8125,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":11.4375,"pitch":-134.4375,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":128.625,"pitch":121.8125,"roll":31.25},"location":"Right Knee"},{"euler":{"heading":72.625,"pitch":-142.5625,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:52.513"} +{"sensors":[{"euler":{"heading":276.625,"pitch":144.6875,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":83.4375,"pitch":111.875,"roll":42.0},"location":"Left Ankle"},{"euler":{"heading":125.375,"pitch":26.1875,"roll":50.5625},"location":"Right Ankle"},{"euler":{"heading":11.5625,"pitch":-135.6875,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":115.625,"pitch":120.4375,"roll":17.9375},"location":"Right Knee"},{"euler":{"heading":74.4375,"pitch":-147.8125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:52.614"} +{"sensors":[{"euler":{"heading":282.875,"pitch":140.875,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":90.0,"pitch":114.6875,"roll":46.375},"location":"Left Ankle"},{"euler":{"heading":138.1875,"pitch":39.25,"roll":46.75},"location":"Right Ankle"},{"euler":{"heading":4.0625,"pitch":-139.75,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":96.8125,"pitch":118.75,"roll":3.875},"location":"Right Knee"},{"euler":{"heading":75.375,"pitch":-151.8125,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:52.714"} +{"sensors":[{"euler":{"heading":289.25,"pitch":137.5625,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":119.75,"roll":51.5625},"location":"Left Ankle"},{"euler":{"heading":136.875,"pitch":41.625,"roll":45.5},"location":"Right Ankle"},{"euler":{"heading":353.9375,"pitch":-143.5,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":96.6875,"pitch":114.5625,"roll":3.25},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-156.3125,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:52.815"} +{"sensors":[{"euler":{"heading":299.875,"pitch":134.6875,"roll":22.125},"location":"Left Knee"},{"euler":{"heading":102.5,"pitch":134.5,"roll":59.3125},"location":"Left Ankle"},{"euler":{"heading":126.125,"pitch":34.1875,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":351.75,"pitch":-145.1875,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":99.6875,"pitch":110.25,"roll":7.9375},"location":"Right Knee"},{"euler":{"heading":77.3125,"pitch":-152.4375,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:52.915"} +{"sensors":[{"euler":{"heading":319.3125,"pitch":132.1875,"roll":13.5625},"location":"Left Knee"},{"euler":{"heading":119.125,"pitch":161.4375,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":121.125,"pitch":30.375,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":345.625,"pitch":-147.0,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":100.125,"pitch":107.9375,"roll":11.9375},"location":"Right Knee"},{"euler":{"heading":62.75,"pitch":-133.0,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:53.15"} +{"sensors":[{"euler":{"heading":180.9375,"pitch":139.0,"roll":16.5625},"location":"Left Knee"},{"euler":{"heading":111.6875,"pitch":141.8125,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":117.25,"pitch":26.5625,"roll":49.8125},"location":"Right Ankle"},{"euler":{"heading":346.75,"pitch":-147.25,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":102.125,"pitch":108.3125,"roll":15.875},"location":"Right Knee"},{"euler":{"heading":56.25,"pitch":-127.875,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:53.117"} +{"sensors":[{"euler":{"heading":194.0625,"pitch":152.5,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":75.6875,"pitch":114.0,"roll":40.8125},"location":"Left Ankle"},{"euler":{"heading":112.875,"pitch":22.9375,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":347.0,"pitch":-146.9375,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":104.625,"pitch":108.625,"roll":19.625},"location":"Right Knee"},{"euler":{"heading":54.5625,"pitch":-126.4375,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:53.218"} +{"sensors":[{"euler":{"heading":208.25,"pitch":167.0,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":51.9375,"pitch":103.5625,"roll":20.5},"location":"Left Ankle"},{"euler":{"heading":108.3125,"pitch":17.9375,"roll":51.1875},"location":"Right Ankle"},{"euler":{"heading":346.625,"pitch":-150.6875,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":107.5625,"pitch":109.625,"roll":24.0625},"location":"Right Knee"},{"euler":{"heading":58.9375,"pitch":-129.625,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:53.319"} +{"sensors":[{"euler":{"heading":214.75,"pitch":171.1875,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":52.75,"pitch":103.8125,"roll":18.625},"location":"Left Ankle"},{"euler":{"heading":104.0,"pitch":9.375,"roll":50.5625},"location":"Right Ankle"},{"euler":{"heading":347.75,"pitch":-156.9375,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":113.875,"pitch":115.375,"roll":29.6875},"location":"Right Knee"},{"euler":{"heading":66.0625,"pitch":-134.0625,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:53.420"} +{"sensors":[{"euler":{"heading":214.75,"pitch":160.875,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":66.6875,"pitch":108.8125,"roll":28.25},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":-7.5625,"roll":50.0625},"location":"Right Ankle"},{"euler":{"heading":350.0625,"pitch":-159.125,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":126.4375,"pitch":124.5,"roll":37.4375},"location":"Right Knee"},{"euler":{"heading":69.625,"pitch":-136.125,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:53.521"} +{"sensors":[{"euler":{"heading":266.5625,"pitch":153.8125,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":75.5,"pitch":110.625,"roll":34.875},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-25.0,"roll":46.3125},"location":"Right Ankle"},{"euler":{"heading":1.0,"pitch":-144.6875,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":141.0,"pitch":127.1875,"roll":46.9375},"location":"Right Knee"},{"euler":{"heading":72.9375,"pitch":-139.3125,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:53.621"} +{"sensors":[{"euler":{"heading":269.875,"pitch":149.3125,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":82.25,"pitch":111.1875,"roll":38.375},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":-18.125,"roll":49.8125},"location":"Right Ankle"},{"euler":{"heading":10.8125,"pitch":-135.75,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":140.125,"pitch":124.5,"roll":43.125},"location":"Right Knee"},{"euler":{"heading":74.4375,"pitch":-144.25,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:53.721"} +{"sensors":[{"euler":{"heading":277.5,"pitch":144.375,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":90.375,"pitch":112.4375,"roll":43.75},"location":"Left Ankle"},{"euler":{"heading":107.8125,"pitch":7.5625,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":13.5,"pitch":-133.75,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":126.8125,"pitch":121.25,"roll":27.875},"location":"Right Knee"},{"euler":{"heading":75.8125,"pitch":-147.3125,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:53.822"} +{"sensors":[{"euler":{"heading":283.875,"pitch":140.375,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":94.3125,"pitch":114.4375,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":126.9375,"pitch":30.8125,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":10.5625,"pitch":-138.125,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":105.5625,"pitch":119.125,"roll":11.0},"location":"Right Knee"},{"euler":{"heading":76.5625,"pitch":-152.0,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:53.922"} +{"sensors":[{"euler":{"heading":289.125,"pitch":137.0,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":99.0625,"pitch":118.8125,"roll":51.375},"location":"Left Ankle"},{"euler":{"heading":49.5,"pitch":42.3125,"roll":43.875},"location":"Right Ankle"},{"euler":{"heading":356.25,"pitch":-143.0625,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":94.75,"pitch":116.8125,"roll":2.25},"location":"Right Knee"},{"euler":{"heading":77.25,"pitch":-155.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:54.23"} +{"sensors":[{"euler":{"heading":297.0625,"pitch":134.4375,"roll":25.75},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":128.9375,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":131.5,"pitch":40.875,"roll":46.4375},"location":"Right Ankle"},{"euler":{"heading":350.25,"pitch":-145.5625,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":96.625,"pitch":110.375,"roll":5.375},"location":"Right Knee"},{"euler":{"heading":79.0,"pitch":-157.3125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:54.123"} +{"sensors":[{"euler":{"heading":313.9375,"pitch":131.9375,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":121.8125,"pitch":163.4375,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":122.75,"pitch":34.9375,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":349.25,"pitch":-145.5625,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":98.375,"pitch":107.4375,"roll":10.1875},"location":"Right Knee"},{"euler":{"heading":67.1875,"pitch":-142.8125,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:54.224"} +{"sensors":[{"euler":{"heading":319.1875,"pitch":135.375,"roll":13.0},"location":"Left Knee"},{"euler":{"heading":123.6875,"pitch":169.625,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":118.875,"pitch":30.8125,"roll":48.3125},"location":"Right Ankle"},{"euler":{"heading":346.0,"pitch":-146.4375,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":100.5625,"pitch":105.9375,"roll":14.0},"location":"Right Knee"},{"euler":{"heading":58.625,"pitch":-127.5625,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:54.325"} +{"sensors":[{"euler":{"heading":186.75,"pitch":145.75,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":100.4375,"pitch":130.25,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":115.5,"pitch":26.8125,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":346.4375,"pitch":-146.1875,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":102.4375,"pitch":106.875,"roll":17.375},"location":"Right Knee"},{"euler":{"heading":51.8125,"pitch":-125.5625,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:54.426"} +{"sensors":[{"euler":{"heading":201.375,"pitch":160.8125,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":68.25,"pitch":109.1875,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":111.625,"pitch":22.9375,"roll":49.8125},"location":"Right Ankle"},{"euler":{"heading":347.1875,"pitch":-147.875,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":106.125,"pitch":107.9375,"roll":21.4375},"location":"Right Knee"},{"euler":{"heading":52.0,"pitch":-125.5,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:54.526"} +{"sensors":[{"euler":{"heading":212.8125,"pitch":170.875,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":50.4375,"pitch":102.1875,"roll":19.8125},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":15.9375,"roll":49.4375},"location":"Right Ankle"},{"euler":{"heading":347.625,"pitch":-151.875,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":111.5625,"pitch":111.25,"roll":27.9375},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-131.3125,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:54.627"} +{"sensors":[{"euler":{"heading":215.6875,"pitch":165.3125,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":57.5,"pitch":108.25,"roll":23.0},"location":"Left Ankle"},{"euler":{"heading":99.875,"pitch":4.5625,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":348.5625,"pitch":-159.0,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":120.1875,"pitch":117.8125,"roll":34.0},"location":"Right Knee"},{"euler":{"heading":69.75,"pitch":-136.75,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:54.727"} +{"sensors":[{"euler":{"heading":214.5625,"pitch":156.6875,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":112.4375,"roll":33.875},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":-15.5625,"roll":51.4375},"location":"Right Ankle"},{"euler":{"heading":353.625,"pitch":-156.625,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":136.6875,"pitch":128.1875,"roll":42.8125},"location":"Right Knee"},{"euler":{"heading":71.0,"pitch":-138.875,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:54.827"} +{"sensors":[{"euler":{"heading":274.1875,"pitch":150.5625,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":83.1875,"pitch":113.375,"roll":38.1875},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-26.0625,"roll":47.625},"location":"Right Ankle"},{"euler":{"heading":6.3125,"pitch":-139.25,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":147.625,"pitch":133.0,"roll":47.9375},"location":"Right Knee"},{"euler":{"heading":74.5625,"pitch":-143.25,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:54.928"} +{"sensors":[{"euler":{"heading":280.375,"pitch":145.25,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":90.0,"pitch":114.375,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":-11.5625,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":13.3125,"pitch":-133.4375,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":139.3125,"pitch":126.0625,"roll":40.1875},"location":"Right Knee"},{"euler":{"heading":77.9375,"pitch":-147.125,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:55.29"} +{"sensors":[{"euler":{"heading":286.5625,"pitch":141.125,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":94.875,"pitch":116.4375,"roll":44.875},"location":"Left Ankle"},{"euler":{"heading":116.6875,"pitch":16.125,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-134.4375,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":122.6875,"pitch":121.6875,"roll":23.4375},"location":"Right Knee"},{"euler":{"heading":77.75,"pitch":-151.25,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:55.129"} +{"sensors":[{"euler":{"heading":291.0,"pitch":137.875,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":99.0625,"pitch":119.6875,"roll":48.5},"location":"Left Ankle"},{"euler":{"heading":135.0625,"pitch":36.625,"roll":48.4375},"location":"Right Ankle"},{"euler":{"heading":5.6875,"pitch":-140.75,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":103.125,"pitch":119.6875,"roll":8.375},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-154.625,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:55.231"} +{"sensors":[{"euler":{"heading":296.3125,"pitch":134.9375,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":105.625,"pitch":127.0625,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":135.625,"pitch":42.5625,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":354.375,"pitch":-144.4375,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":101.5,"pitch":113.875,"roll":6.6875},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-155.8125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:55.331"} +{"sensors":[{"euler":{"heading":308.5,"pitch":131.8125,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":115.0625,"pitch":148.5,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":125.375,"pitch":37.375,"roll":48.9375},"location":"Right Ankle"},{"euler":{"heading":352.8125,"pitch":-145.25,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":102.5625,"pitch":108.5625,"roll":10.75},"location":"Right Knee"},{"euler":{"heading":78.1875,"pitch":-151.25,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:55.431"} +{"sensors":[{"euler":{"heading":324.0625,"pitch":130.125,"roll":12.4375},"location":"Left Knee"},{"euler":{"heading":129.75,"pitch":178.9375,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":119.125,"pitch":33.125,"roll":49.9375},"location":"Right Ankle"},{"euler":{"heading":349.75,"pitch":-145.4375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":102.9375,"pitch":107.1875,"roll":14.1875},"location":"Right Knee"},{"euler":{"heading":67.1875,"pitch":-134.8125,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:55.532"} +{"sensors":[{"euler":{"heading":180.1875,"pitch":138.5,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":119.8125,"pitch":158.8125,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":114.6875,"pitch":30.375,"roll":49.9375},"location":"Right Ankle"},{"euler":{"heading":348.375,"pitch":-144.75,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":104.125,"pitch":105.5,"roll":17.3125},"location":"Right Knee"},{"euler":{"heading":56.9375,"pitch":-127.4375,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:55.633"} +{"sensors":[{"euler":{"heading":192.875,"pitch":153.0,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":82.5625,"pitch":114.75,"roll":49.0},"location":"Left Ankle"},{"euler":{"heading":111.0625,"pitch":25.5625,"roll":50.4375},"location":"Right Ankle"},{"euler":{"heading":348.75,"pitch":-145.5,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":106.8125,"pitch":106.5,"roll":21.125},"location":"Right Knee"},{"euler":{"heading":52.125,"pitch":-125.75,"roll":45.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:55.734"} +{"sensors":[{"euler":{"heading":208.1875,"pitch":166.9375,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":55.875,"pitch":103.5,"roll":26.0625},"location":"Left Ankle"},{"euler":{"heading":107.5625,"pitch":19.5625,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":348.125,"pitch":-150.4375,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":112.1875,"pitch":109.5625,"roll":27.3125},"location":"Right Knee"},{"euler":{"heading":58.5625,"pitch":-129.625,"roll":46.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:55.835"} +{"sensors":[{"euler":{"heading":215.4375,"pitch":171.1875,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":52.0625,"pitch":102.625,"roll":19.5625},"location":"Left Ankle"},{"euler":{"heading":101.4375,"pitch":9.125,"roll":51.25},"location":"Right Ankle"},{"euler":{"heading":348.5625,"pitch":-157.4375,"roll":69.5625},"location":"Right Hip"},{"euler":{"heading":119.25,"pitch":114.8125,"roll":33.25},"location":"Right Knee"},{"euler":{"heading":68.0,"pitch":-136.0,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:55.935"} +{"sensors":[{"euler":{"heading":217.875,"pitch":160.6875,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":71.125,"pitch":111.5625,"roll":30.3125},"location":"Left Ankle"},{"euler":{"heading":94.25,"pitch":-7.8125,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":351.4375,"pitch":-162.0,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":133.0,"pitch":125.8125,"roll":41.0625},"location":"Right Knee"},{"euler":{"heading":73.875,"pitch":-140.0,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:56.36"} +{"sensors":[{"euler":{"heading":271.9375,"pitch":152.9375,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":79.875,"pitch":112.5625,"roll":35.625},"location":"Left Ankle"},{"euler":{"heading":351.875,"pitch":-24.5,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":5.5625,"pitch":-146.0,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":146.6875,"pitch":130.6875,"roll":50.375},"location":"Right Knee"},{"euler":{"heading":74.25,"pitch":-139.9375,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:56.137"} +{"sensors":[{"euler":{"heading":277.5625,"pitch":147.875,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":86.5,"pitch":113.5625,"roll":39.8125},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":-23.0625,"roll":47.9375},"location":"Right Ankle"},{"euler":{"heading":13.5625,"pitch":-136.375,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":148.5,"pitch":130.125,"roll":48.0625},"location":"Right Knee"},{"euler":{"heading":76.125,"pitch":-144.1875,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:56.237"} +{"sensors":[{"euler":{"heading":282.625,"pitch":143.5625,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":91.1875,"pitch":114.875,"roll":42.625},"location":"Left Ankle"},{"euler":{"heading":105.75,"pitch":0.0,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":18.8125,"pitch":-134.0625,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":135.25,"pitch":124.6875,"roll":33.875},"location":"Right Knee"},{"euler":{"heading":78.0625,"pitch":-148.4375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:56.339"} +{"sensors":[{"euler":{"heading":289.4375,"pitch":139.375,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":95.25,"pitch":116.6875,"roll":45.3125},"location":"Left Ankle"},{"euler":{"heading":125.9375,"pitch":27.25,"roll":49.5625},"location":"Right Ankle"},{"euler":{"heading":15.125,"pitch":-137.875,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":114.5625,"pitch":120.1875,"roll":17.0},"location":"Right Knee"},{"euler":{"heading":79.625,"pitch":-153.4375,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:56.439"} +{"sensors":[{"euler":{"heading":294.4375,"pitch":135.75,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":100.25,"pitch":120.4375,"roll":49.4375},"location":"Left Ankle"},{"euler":{"heading":139.375,"pitch":39.125,"roll":45.75},"location":"Right Ankle"},{"euler":{"heading":3.375,"pitch":-142.0625,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":101.5,"pitch":119.3125,"roll":6.5625},"location":"Right Knee"},{"euler":{"heading":80.375,"pitch":-157.75,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:56.542"} +{"sensors":[{"euler":{"heading":300.5625,"pitch":132.9375,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":104.5625,"pitch":127.625,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":134.9375,"pitch":39.125,"roll":46.375},"location":"Right Ankle"},{"euler":{"heading":351.5625,"pitch":-145.6875,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":100.8125,"pitch":113.5625,"roll":8.0},"location":"Right Knee"},{"euler":{"heading":83.875,"pitch":-162.1875,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:56.642"} +{"sensors":[{"euler":{"heading":312.5625,"pitch":131.625,"roll":17.0},"location":"Left Knee"},{"euler":{"heading":114.25,"pitch":152.9375,"roll":63.0625},"location":"Left Ankle"},{"euler":{"heading":126.8125,"pitch":32.25,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":352.8125,"pitch":-146.6875,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":103.1875,"pitch":111.9375,"roll":12.1875},"location":"Right Knee"},{"euler":{"heading":78.25,"pitch":-150.875,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:56.743"} +{"sensors":[{"euler":{"heading":327.125,"pitch":129.0625,"roll":10.8125},"location":"Left Knee"},{"euler":{"heading":127.6875,"pitch":-179.25,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":122.4375,"pitch":29.25,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":348.3125,"pitch":-148.4375,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":103.875,"pitch":109.625,"roll":15.5625},"location":"Right Knee"},{"euler":{"heading":62.625,"pitch":-129.125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:56.845"} +{"sensors":[{"euler":{"heading":181.0,"pitch":138.6875,"roll":15.5625},"location":"Left Knee"},{"euler":{"heading":114.9375,"pitch":149.625,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":117.6875,"pitch":25.1875,"roll":49.5625},"location":"Right Ankle"},{"euler":{"heading":351.1875,"pitch":-147.0625,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":106.25,"pitch":110.25,"roll":19.0625},"location":"Right Knee"},{"euler":{"heading":55.3125,"pitch":-126.3125,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:56.946"} +{"sensors":[{"euler":{"heading":195.5625,"pitch":153.0625,"roll":29.9375},"location":"Left Knee"},{"euler":{"heading":80.125,"pitch":113.6875,"roll":46.9375},"location":"Left Ankle"},{"euler":{"heading":113.3125,"pitch":22.0,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":351.375,"pitch":-147.625,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":109.4375,"pitch":110.75,"roll":22.5625},"location":"Right Knee"},{"euler":{"heading":55.6875,"pitch":-127.4375,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:57.46"} +{"sensors":[{"euler":{"heading":210.0,"pitch":166.25,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":55.8125,"pitch":104.75,"roll":25.8125},"location":"Left Ankle"},{"euler":{"heading":107.9375,"pitch":18.125,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":350.25,"pitch":-150.375,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":111.4375,"pitch":110.9375,"roll":26.625},"location":"Right Knee"},{"euler":{"heading":61.0,"pitch":-132.1875,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:57.147"} +{"sensors":[{"euler":{"heading":216.375,"pitch":169.75,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":52.875,"pitch":106.375,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":103.5,"pitch":9.6875,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":349.5625,"pitch":-157.875,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":118.4375,"pitch":115.875,"roll":32.375},"location":"Right Knee"},{"euler":{"heading":69.25,"pitch":-139.0625,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:57.247"} +{"sensors":[{"euler":{"heading":216.4375,"pitch":160.75,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":68.8125,"pitch":110.9375,"roll":29.875},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":-6.5,"roll":50.8125},"location":"Right Ankle"},{"euler":{"heading":350.0625,"pitch":-158.375,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":131.75,"pitch":123.1875,"roll":41.25},"location":"Right Knee"},{"euler":{"heading":70.875,"pitch":-141.1875,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:57.348"} +{"sensors":[{"euler":{"heading":272.375,"pitch":153.25,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":79.8125,"pitch":113.0,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":81.4375,"pitch":-26.0,"roll":45.125},"location":"Right Ankle"},{"euler":{"heading":3.0,"pitch":-129.5,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":145.125,"pitch":128.375,"roll":49.75},"location":"Right Knee"},{"euler":{"heading":73.75,"pitch":-144.0,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:57.448"} +{"sensors":[{"euler":{"heading":280.8125,"pitch":146.8125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":87.5,"pitch":114.1875,"roll":40.6875},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":-23.6875,"roll":48.0},"location":"Right Ankle"},{"euler":{"heading":11.5625,"pitch":-134.6875,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":144.9375,"pitch":128.375,"roll":45.3125},"location":"Right Knee"},{"euler":{"heading":77.8125,"pitch":-148.375,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:57.549"} +{"sensors":[{"euler":{"heading":287.625,"pitch":141.9375,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":92.875,"pitch":116.3125,"roll":43.875},"location":"Left Ankle"},{"euler":{"heading":107.8125,"pitch":3.0,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":16.6875,"pitch":-132.9375,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":129.125,"pitch":123.25,"roll":29.625},"location":"Right Knee"},{"euler":{"heading":79.375,"pitch":-152.6875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:57.650"} +{"sensors":[{"euler":{"heading":293.75,"pitch":137.3125,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":96.9375,"pitch":118.0,"roll":46.875},"location":"Left Ankle"},{"euler":{"heading":127.9375,"pitch":28.6875,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":13.5,"pitch":-136.6875,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":112.1875,"pitch":119.5,"roll":13.75},"location":"Right Knee"},{"euler":{"heading":82.625,"pitch":-159.3125,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:57.751"} +{"sensors":[{"euler":{"heading":299.25,"pitch":133.75,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":121.125,"roll":51.0},"location":"Left Ankle"},{"euler":{"heading":51.875,"pitch":42.0625,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":0.625,"pitch":-143.6875,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":97.875,"pitch":117.625,"roll":3.0},"location":"Right Knee"},{"euler":{"heading":85.9375,"pitch":-165.5,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:57.852"} +{"sensors":[{"euler":{"heading":304.9375,"pitch":130.8125,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":105.9375,"pitch":131.1875,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":133.375,"pitch":35.4375,"roll":46.625},"location":"Right Ankle"},{"euler":{"heading":353.9375,"pitch":-146.8125,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":99.5625,"pitch":115.3125,"roll":7.0},"location":"Right Knee"},{"euler":{"heading":89.8125,"pitch":-168.5,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:57.952"} +{"sensors":[{"euler":{"heading":317.3125,"pitch":130.875,"roll":14.375},"location":"Left Knee"},{"euler":{"heading":118.625,"pitch":162.9375,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":126.8125,"pitch":28.4375,"roll":48.5625},"location":"Right Ankle"},{"euler":{"heading":356.75,"pitch":-146.1875,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":102.8125,"pitch":114.5625,"roll":12.125},"location":"Right Knee"},{"euler":{"heading":78.625,"pitch":-154.0625,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:58.53"} +{"sensors":[{"euler":{"heading":328.6875,"pitch":130.8125,"roll":9.3125},"location":"Left Knee"},{"euler":{"heading":126.25,"pitch":-178.125,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":122.5625,"pitch":25.875,"roll":48.375},"location":"Right Ankle"},{"euler":{"heading":352.125,"pitch":-147.25,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":104.0625,"pitch":112.0625,"roll":15.3125},"location":"Right Knee"},{"euler":{"heading":65.5625,"pitch":-130.9375,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:58.154"} +{"sensors":[{"euler":{"heading":182.5,"pitch":139.75,"roll":16.375},"location":"Left Knee"},{"euler":{"heading":114.5,"pitch":155.0625,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":117.9375,"pitch":21.375,"roll":48.3125},"location":"Right Ankle"},{"euler":{"heading":352.125,"pitch":-147.5625,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":106.4375,"pitch":111.875,"roll":18.875},"location":"Right Knee"},{"euler":{"heading":55.4375,"pitch":-126.125,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:58.256"} +{"sensors":[{"euler":{"heading":197.125,"pitch":155.3125,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":76.0625,"pitch":111.25,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":114.125,"pitch":19.375,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":350.125,"pitch":-149.6875,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":108.3125,"pitch":111.75,"roll":21.625},"location":"Right Knee"},{"euler":{"heading":54.9375,"pitch":-126.8125,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:58.357"} +{"sensors":[{"euler":{"heading":210.4375,"pitch":167.0625,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":52.5,"pitch":102.8125,"roll":22.5},"location":"Left Ankle"},{"euler":{"heading":110.1875,"pitch":14.5,"roll":49.1875},"location":"Right Ankle"},{"euler":{"heading":348.875,"pitch":-154.875,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":110.9375,"pitch":114.3125,"roll":25.75},"location":"Right Knee"},{"euler":{"heading":60.875,"pitch":-132.125,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:58.458"} +{"sensors":[{"euler":{"heading":215.0625,"pitch":166.1875,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":57.0,"pitch":107.375,"roll":22.5},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":5.1875,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":350.5,"pitch":-159.75,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":120.0,"pitch":119.625,"roll":32.0},"location":"Right Knee"},{"euler":{"heading":70.0625,"pitch":-138.625,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:58.559"} +{"sensors":[{"euler":{"heading":214.125,"pitch":156.5,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":72.0625,"pitch":110.8125,"roll":31.3125},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":-29.375,"roll":50.375},"location":"Right Ankle"},{"euler":{"heading":356.4375,"pitch":-155.625,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":135.5,"pitch":128.8125,"roll":41.125},"location":"Right Knee"},{"euler":{"heading":71.0,"pitch":-140.3125,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:58.659"} +{"sensors":[{"euler":{"heading":278.3125,"pitch":148.875,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":81.0625,"pitch":111.5625,"roll":36.1875},"location":"Left Ankle"},{"euler":{"heading":351.6875,"pitch":-28.375,"roll":44.875},"location":"Right Ankle"},{"euler":{"heading":11.1875,"pitch":-139.625,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":146.6875,"pitch":129.375,"roll":49.8125},"location":"Right Knee"},{"euler":{"heading":75.875,"pitch":-143.9375,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:58.760"} +{"sensors":[{"euler":{"heading":284.375,"pitch":143.25,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":87.375,"pitch":112.625,"roll":39.8125},"location":"Left Ankle"},{"euler":{"heading":88.375,"pitch":-22.5625,"roll":49.0},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-133.9375,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":144.9375,"pitch":128.3125,"roll":44.5},"location":"Right Knee"},{"euler":{"heading":79.0625,"pitch":-149.4375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:58.861"} +{"sensors":[{"euler":{"heading":289.1875,"pitch":139.75,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":89.4375,"pitch":112.3125,"roll":41.875},"location":"Left Ankle"},{"euler":{"heading":108.9375,"pitch":6.375,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":21.5625,"pitch":-134.6875,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":129.9375,"pitch":123.5625,"roll":29.875},"location":"Right Knee"},{"euler":{"heading":80.1875,"pitch":-155.0625,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:58.963"} +{"sensors":[{"euler":{"heading":293.5625,"pitch":136.5625,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":92.625,"pitch":113.6875,"roll":44.875},"location":"Left Ankle"},{"euler":{"heading":129.625,"pitch":32.6875,"roll":46.625},"location":"Right Ankle"},{"euler":{"heading":14.3125,"pitch":-138.875,"roll":41.75},"location":"Right Hip"},{"euler":{"heading":111.125,"pitch":118.0625,"roll":14.125},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-159.25,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:59.64"} +{"sensors":[{"euler":{"heading":297.625,"pitch":134.1875,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":96.75,"pitch":118.0,"roll":49.6875},"location":"Left Ankle"},{"euler":{"heading":51.4375,"pitch":43.0625,"roll":41.5625},"location":"Right Ankle"},{"euler":{"heading":0.4375,"pitch":-142.4375,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":97.6875,"pitch":115.4375,"roll":4.375},"location":"Right Knee"},{"euler":{"heading":81.5625,"pitch":-161.0,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:59.165"} +{"sensors":[{"euler":{"heading":306.0,"pitch":131.6875,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":102.125,"pitch":127.6875,"roll":55.75},"location":"Left Ankle"},{"euler":{"heading":43.9375,"pitch":41.625,"roll":44.375},"location":"Right Ankle"},{"euler":{"heading":351.0625,"pitch":-145.5,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":97.75,"pitch":110.0,"roll":6.8125},"location":"Right Knee"},{"euler":{"heading":85.6875,"pitch":-164.25,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:59.266"} +{"sensors":[{"euler":{"heading":318.5625,"pitch":132.125,"roll":12.8125},"location":"Left Knee"},{"euler":{"heading":117.875,"pitch":157.9375,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":123.625,"pitch":35.875,"roll":46.625},"location":"Right Ankle"},{"euler":{"heading":353.125,"pitch":-145.0,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":100.5,"pitch":107.0,"roll":11.9375},"location":"Right Knee"},{"euler":{"heading":72.125,"pitch":-150.375,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:59.367"} +{"sensors":[{"euler":{"heading":333.625,"pitch":130.5,"roll":7.0},"location":"Left Knee"},{"euler":{"heading":130.125,"pitch":179.4375,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":118.875,"pitch":32.1875,"roll":46.5},"location":"Right Ankle"},{"euler":{"heading":348.75,"pitch":-145.6875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":102.1875,"pitch":105.4375,"roll":15.8125},"location":"Right Knee"},{"euler":{"heading":62.25,"pitch":-129.4375,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:59.467"} +{"sensors":[{"euler":{"heading":179.6875,"pitch":138.9375,"roll":13.5625},"location":"Left Knee"},{"euler":{"heading":117.25,"pitch":153.1875,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":116.125,"pitch":29.75,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":350.0625,"pitch":-144.9375,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":102.75,"pitch":106.0,"roll":18.75},"location":"Right Knee"},{"euler":{"heading":53.375,"pitch":-124.875,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:59.568"} +{"sensors":[{"euler":{"heading":194.1875,"pitch":153.25,"roll":28.25},"location":"Left Knee"},{"euler":{"heading":80.9375,"pitch":115.25,"roll":46.0625},"location":"Left Ankle"},{"euler":{"heading":112.875,"pitch":27.875,"roll":47.0625},"location":"Right Ankle"},{"euler":{"heading":350.3125,"pitch":-145.6875,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":105.4375,"pitch":106.3125,"roll":22.125},"location":"Right Knee"},{"euler":{"heading":52.8125,"pitch":-125.375,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:59.669"} +{"sensors":[{"euler":{"heading":209.25,"pitch":164.9375,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":53.875,"pitch":105.0625,"roll":23.25},"location":"Left Ankle"},{"euler":{"heading":107.5625,"pitch":22.75,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":350.625,"pitch":-148.5,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":109.125,"pitch":108.0625,"roll":26.875},"location":"Right Knee"},{"euler":{"heading":60.9375,"pitch":-130.9375,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:59.771"} +{"sensors":[{"euler":{"heading":215.125,"pitch":166.6875,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":54.8125,"pitch":107.6875,"roll":21.0},"location":"Left Ankle"},{"euler":{"heading":102.4375,"pitch":14.1875,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":351.8125,"pitch":-153.125,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":115.6875,"pitch":112.4375,"roll":32.3125},"location":"Right Knee"},{"euler":{"heading":69.5625,"pitch":-136.8125,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:59.872"} +{"sensors":[{"euler":{"heading":215.5625,"pitch":156.4375,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":69.375,"pitch":113.0625,"roll":29.875},"location":"Left Ankle"},{"euler":{"heading":95.4375,"pitch":-1.625,"roll":49.0625},"location":"Right Ankle"},{"euler":{"heading":353.8125,"pitch":-155.3125,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":127.5,"pitch":122.9375,"roll":40.25},"location":"Right Knee"},{"euler":{"heading":72.75,"pitch":-139.0,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:13:59.973"} +{"sensors":[{"euler":{"heading":282.25,"pitch":148.1875,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":80.875,"pitch":114.875,"roll":35.5},"location":"Left Ankle"},{"euler":{"heading":351.875,"pitch":-21.0,"roll":43.4375},"location":"Right Ankle"},{"euler":{"heading":6.5,"pitch":-143.4375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":142.75,"pitch":127.0,"roll":49.8125},"location":"Right Knee"},{"euler":{"heading":75.3125,"pitch":-141.375,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:00.73"} +{"sensors":[{"euler":{"heading":288.4375,"pitch":142.875,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":90.0625,"pitch":116.875,"roll":40.375},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":-20.9375,"roll":47.125},"location":"Right Ankle"},{"euler":{"heading":14.0,"pitch":-136.25,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":146.8125,"pitch":129.8125,"roll":47.1875},"location":"Right Knee"},{"euler":{"heading":77.25,"pitch":-145.375,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:00.174"} +{"sensors":[{"euler":{"heading":293.5,"pitch":138.6875,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":94.0625,"pitch":117.6875,"roll":43.0},"location":"Left Ankle"},{"euler":{"heading":108.125,"pitch":0.6875,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":19.4375,"pitch":-135.3125,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":132.75,"pitch":125.5625,"roll":32.875},"location":"Right Knee"},{"euler":{"heading":79.8125,"pitch":-150.875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:00.274"} +{"sensors":[{"euler":{"heading":299.0625,"pitch":134.9375,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":97.8125,"pitch":119.25,"roll":46.0625},"location":"Left Ankle"},{"euler":{"heading":130.1875,"pitch":29.1875,"roll":47.1875},"location":"Right Ankle"},{"euler":{"heading":13.625,"pitch":-138.3125,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":113.1875,"pitch":119.8125,"roll":15.1875},"location":"Right Knee"},{"euler":{"heading":82.125,"pitch":-157.75,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:00.377"} +{"sensors":[{"euler":{"heading":303.9375,"pitch":132.5,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":123.5,"roll":50.8125},"location":"Left Ankle"},{"euler":{"heading":49.1875,"pitch":38.0,"roll":43.6875},"location":"Right Ankle"},{"euler":{"heading":0.75,"pitch":-143.4375,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":97.4375,"pitch":118.8125,"roll":3.8125},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-161.1875,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:00.478"} +{"sensors":[{"euler":{"heading":311.9375,"pitch":129.5,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":108.375,"pitch":135.3125,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":129.0,"pitch":35.0,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":356.1875,"pitch":-144.5625,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":98.75,"pitch":110.4375,"roll":6.75},"location":"Right Knee"},{"euler":{"heading":87.625,"pitch":-163.375,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:00.579"} +{"sensors":[{"euler":{"heading":326.375,"pitch":129.9375,"roll":11.125},"location":"Left Knee"},{"euler":{"heading":128.1875,"pitch":169.8125,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":121.1875,"pitch":29.375,"roll":47.9375},"location":"Right Ankle"},{"euler":{"heading":355.125,"pitch":-145.0,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":100.5625,"pitch":110.1875,"roll":11.875},"location":"Right Knee"},{"euler":{"heading":73.625,"pitch":-145.875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:00.680"} +{"sensors":[{"euler":{"heading":333.875,"pitch":132.3125,"roll":7.5},"location":"Left Knee"},{"euler":{"heading":127.25,"pitch":177.8125,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":116.75,"pitch":26.0625,"roll":47.5625},"location":"Right Ankle"},{"euler":{"heading":352.4375,"pitch":-144.75,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":102.375,"pitch":108.625,"roll":15.5625},"location":"Right Knee"},{"euler":{"heading":64.0625,"pitch":-129.75,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:00.781"} +{"sensors":[{"euler":{"heading":185.375,"pitch":141.3125,"roll":17.0},"location":"Left Knee"},{"euler":{"heading":104.6875,"pitch":138.4375,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":113.125,"pitch":22.125,"roll":47.75},"location":"Right Ankle"},{"euler":{"heading":352.5,"pitch":-144.25,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":103.625,"pitch":109.0,"roll":18.75},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-129.875,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:00.881"} +{"sensors":[{"euler":{"heading":198.8125,"pitch":156.8125,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":70.1875,"pitch":110.5,"roll":37.875},"location":"Left Ankle"},{"euler":{"heading":110.25,"pitch":18.4375,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":351.375,"pitch":-147.125,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":106.3125,"pitch":110.3125,"roll":22.5},"location":"Right Knee"},{"euler":{"heading":53.0,"pitch":-127.0,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:00.982"} +{"sensors":[{"euler":{"heading":212.0,"pitch":167.9375,"roll":36.8125},"location":"Left Knee"},{"euler":{"heading":49.625,"pitch":103.0,"roll":19.3125},"location":"Left Ankle"},{"euler":{"heading":106.4375,"pitch":11.625,"roll":50.5},"location":"Right Ankle"},{"euler":{"heading":350.375,"pitch":-152.6875,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":110.375,"pitch":114.9375,"roll":27.0625},"location":"Right Knee"},{"euler":{"heading":60.75,"pitch":-132.3125,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:01.82"} +{"sensors":[{"euler":{"heading":217.6875,"pitch":165.3125,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":54.1875,"pitch":107.6875,"roll":19.5},"location":"Left Ankle"},{"euler":{"heading":100.125,"pitch":-0.3125,"roll":50.6875},"location":"Right Ankle"},{"euler":{"heading":350.8125,"pitch":-160.5625,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":119.9375,"pitch":121.6875,"roll":33.1875},"location":"Right Knee"},{"euler":{"heading":70.25,"pitch":-137.75,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:01.183"} +{"sensors":[{"euler":{"heading":215.875,"pitch":155.4375,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":72.0625,"pitch":110.8125,"roll":31.1875},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":-19.875,"roll":51.125},"location":"Right Ankle"},{"euler":{"heading":356.875,"pitch":-157.3125,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":135.5625,"pitch":133.5625,"roll":40.875},"location":"Right Knee"},{"euler":{"heading":70.4375,"pitch":-138.8125,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:01.285"} +{"sensors":[{"euler":{"heading":280.625,"pitch":148.3125,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":80.375,"pitch":111.75,"roll":35.4375},"location":"Left Ankle"},{"euler":{"heading":347.9375,"pitch":-31.5625,"roll":43.8125},"location":"Right Ankle"},{"euler":{"heading":9.75,"pitch":-138.375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":147.75,"pitch":131.9375,"roll":50.0625},"location":"Right Knee"},{"euler":{"heading":74.875,"pitch":-142.625,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:01.386"} +{"sensors":[{"euler":{"heading":287.25,"pitch":142.6875,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":86.875,"pitch":112.9375,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":85.8125,"pitch":-25.8125,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":19.6875,"pitch":-132.9375,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":144.0625,"pitch":129.125,"roll":44.125},"location":"Right Knee"},{"euler":{"heading":79.25,"pitch":-147.9375,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:01.487"} +{"sensors":[{"euler":{"heading":292.4375,"pitch":138.625,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":90.9375,"pitch":113.4375,"roll":42.0},"location":"Left Ankle"},{"euler":{"heading":108.4375,"pitch":1.5,"roll":55.1875},"location":"Right Ankle"},{"euler":{"heading":22.5625,"pitch":-134.0625,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":129.375,"pitch":125.0,"roll":28.625},"location":"Right Knee"},{"euler":{"heading":81.375,"pitch":-154.875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:01.587"} +{"sensors":[{"euler":{"heading":297.125,"pitch":135.125,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":94.4375,"pitch":115.375,"roll":45.1875},"location":"Left Ankle"},{"euler":{"heading":128.5625,"pitch":29.375,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":14.375,"pitch":-138.375,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":110.1875,"pitch":120.75,"roll":12.75},"location":"Right Knee"},{"euler":{"heading":82.0625,"pitch":-159.6875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:01.688"} +{"sensors":[{"euler":{"heading":302.3125,"pitch":132.3125,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":100.0,"pitch":121.0,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":137.5625,"pitch":40.0625,"roll":46.4375},"location":"Right Ankle"},{"euler":{"heading":359.0,"pitch":-143.4375,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":97.8125,"pitch":117.25,"roll":4.25},"location":"Right Knee"},{"euler":{"heading":82.5625,"pitch":-162.3125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:01.790"} +{"sensors":[{"euler":{"heading":309.75,"pitch":130.0,"roll":22.6875},"location":"Left Knee"},{"euler":{"heading":103.1875,"pitch":131.5625,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":127.625,"pitch":35.0625,"roll":48.9375},"location":"Right Ankle"},{"euler":{"heading":355.375,"pitch":-145.0625,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":98.5625,"pitch":112.5,"roll":7.1875},"location":"Right Knee"},{"euler":{"heading":86.3125,"pitch":-162.25,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:01.890"} +{"sensors":[{"euler":{"heading":323.375,"pitch":130.125,"roll":11.0625},"location":"Left Knee"},{"euler":{"heading":121.9375,"pitch":163.8125,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":121.875,"pitch":29.0,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":353.4375,"pitch":-145.6875,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":100.0,"pitch":110.8125,"roll":11.4375},"location":"Right Knee"},{"euler":{"heading":68.0625,"pitch":-142.6875,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:01.991"} +{"sensors":[{"euler":{"heading":332.125,"pitch":134.3125,"roll":7.875},"location":"Left Knee"},{"euler":{"heading":120.9375,"pitch":168.0625,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":117.9375,"pitch":25.625,"roll":49.5625},"location":"Right Ankle"},{"euler":{"heading":351.1875,"pitch":-145.625,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":100.75,"pitch":109.6875,"roll":15.1875},"location":"Right Knee"},{"euler":{"heading":57.375,"pitch":-128.5,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:02.93"} +{"sensors":[{"euler":{"heading":186.6875,"pitch":142.9375,"roll":18.8125},"location":"Left Knee"},{"euler":{"heading":100.9375,"pitch":126.3125,"roll":60.3125},"location":"Left Ankle"},{"euler":{"heading":115.25,"pitch":23.375,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":350.5,"pitch":-145.375,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":101.8125,"pitch":109.375,"roll":17.625},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-124.8125,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:02.193"} +{"sensors":[{"euler":{"heading":199.625,"pitch":159.4375,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":67.125,"pitch":105.9375,"roll":35.3125},"location":"Left Ankle"},{"euler":{"heading":112.8125,"pitch":19.125,"roll":49.6875},"location":"Right Ankle"},{"euler":{"heading":348.3125,"pitch":-149.6875,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":104.4375,"pitch":111.375,"roll":21.0},"location":"Right Knee"},{"euler":{"heading":51.5625,"pitch":-126.4375,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:02.294"} +{"sensors":[{"euler":{"heading":212.1875,"pitch":168.0,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":49.375,"pitch":102.625,"roll":19.5625},"location":"Left Ankle"},{"euler":{"heading":109.5625,"pitch":11.125,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":348.625,"pitch":-155.375,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":108.4375,"pitch":116.5625,"roll":25.25},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-131.875,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:02.394"} +{"sensors":[{"euler":{"heading":217.4375,"pitch":164.625,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":57.8125,"pitch":112.25,"roll":22.5},"location":"Left Ankle"},{"euler":{"heading":102.875,"pitch":-0.0625,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":350.125,"pitch":-162.125,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":117.25,"pitch":122.875,"roll":30.9375},"location":"Right Knee"},{"euler":{"heading":68.625,"pitch":-136.3125,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:02.494"} +{"sensors":[{"euler":{"heading":216.375,"pitch":153.5625,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":77.1875,"pitch":117.8125,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":-18.75,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":354.6875,"pitch":-162.5625,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":132.25,"pitch":134.3125,"roll":37.9375},"location":"Right Knee"},{"euler":{"heading":72.125,"pitch":-136.625,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:02.595"} +{"sensors":[{"euler":{"heading":289.75,"pitch":145.5,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":87.5,"pitch":119.4375,"roll":37.0625},"location":"Left Ankle"},{"euler":{"heading":349.875,"pitch":-29.625,"roll":42.75},"location":"Right Ankle"},{"euler":{"heading":9.625,"pitch":-141.75,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":144.125,"pitch":133.625,"roll":47.875},"location":"Right Knee"},{"euler":{"heading":78.0,"pitch":-140.8125,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:02.695"} +{"sensors":[{"euler":{"heading":291.0625,"pitch":142.125,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":93.875,"pitch":120.75,"roll":41.25},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":-26.25,"roll":48.3125},"location":"Right Ankle"},{"euler":{"heading":18.6875,"pitch":-135.375,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":145.25,"pitch":131.0,"roll":44.0},"location":"Right Knee"},{"euler":{"heading":78.6875,"pitch":-145.875,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:02.796"} +{"sensors":[{"euler":{"heading":295.9375,"pitch":138.1875,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":96.875,"pitch":121.0,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":107.0625,"pitch":1.4375,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-135.25,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":128.3125,"pitch":124.9375,"roll":28.5625},"location":"Right Knee"},{"euler":{"heading":80.125,"pitch":-151.3125,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:02.897"} +{"sensors":[{"euler":{"heading":299.375,"pitch":135.5625,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":97.125,"pitch":120.5,"roll":45.5625},"location":"Left Ankle"},{"euler":{"heading":125.0,"pitch":25.875,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":15.8125,"pitch":-139.6875,"roll":41.375},"location":"Right Hip"},{"euler":{"heading":106.75,"pitch":121.9375,"roll":11.3125},"location":"Right Knee"},{"euler":{"heading":81.75,"pitch":-159.8125,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:02.997"} +{"sensors":[{"euler":{"heading":303.6875,"pitch":132.75,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":103.25,"pitch":123.9375,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":138.8125,"pitch":38.625,"roll":45.8125},"location":"Right Ankle"},{"euler":{"heading":2.3125,"pitch":-141.6875,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":93.1875,"pitch":119.4375,"roll":0.9375},"location":"Right Knee"},{"euler":{"heading":81.625,"pitch":-162.625,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:03.97"} +{"sensors":[{"euler":{"heading":309.3125,"pitch":131.375,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":106.625,"pitch":133.125,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":131.125,"pitch":39.9375,"roll":47.25},"location":"Right Ankle"},{"euler":{"heading":352.75,"pitch":-145.3125,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":95.5,"pitch":111.5,"roll":4.125},"location":"Right Knee"},{"euler":{"heading":84.375,"pitch":-165.25,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:03.198"} +{"sensors":[{"euler":{"heading":324.9375,"pitch":129.3125,"roll":11.4375},"location":"Left Knee"},{"euler":{"heading":126.9375,"pitch":168.25,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":120.5625,"pitch":32.6875,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":352.8125,"pitch":-145.0,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":97.75,"pitch":108.125,"roll":8.875},"location":"Right Knee"},{"euler":{"heading":70.1875,"pitch":-146.75,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:03.299"} +{"sensors":[{"euler":{"heading":331.75,"pitch":132.5,"roll":7.1875},"location":"Left Knee"},{"euler":{"heading":132.125,"pitch":-168.25,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":117.1875,"pitch":29.3125,"roll":49.625},"location":"Right Ankle"},{"euler":{"heading":348.0,"pitch":-147.0625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":99.0625,"pitch":107.375,"roll":12.375},"location":"Right Knee"},{"euler":{"heading":56.375,"pitch":-129.375,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:03.399"} +{"sensors":[{"euler":{"heading":181.375,"pitch":141.5,"roll":15.5625},"location":"Left Knee"},{"euler":{"heading":109.9375,"pitch":148.4375,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":114.6875,"pitch":25.5625,"roll":49.875},"location":"Right Ankle"},{"euler":{"heading":348.625,"pitch":-146.75,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":101.0625,"pitch":108.5625,"roll":15.5},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-125.1875,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:03.500"} +{"sensors":[{"euler":{"heading":195.8125,"pitch":158.125,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":73.8125,"pitch":109.375,"roll":42.9375},"location":"Left Ankle"},{"euler":{"heading":112.0,"pitch":21.9375,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":348.1875,"pitch":-149.5,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":104.125,"pitch":109.9375,"roll":19.0},"location":"Right Knee"},{"euler":{"heading":37.125,"pitch":-124.5,"roll":44.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:03.601"} +{"sensors":[{"euler":{"heading":209.5625,"pitch":168.5625,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":50.0,"pitch":102.375,"roll":21.5},"location":"Left Ankle"},{"euler":{"heading":108.1875,"pitch":14.6875,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":347.0625,"pitch":-154.3125,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":106.5625,"pitch":112.4375,"roll":23.125},"location":"Right Knee"},{"euler":{"heading":54.6875,"pitch":-128.125,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:03.701"} +{"sensors":[{"euler":{"heading":215.25,"pitch":169.6875,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":50.0,"pitch":103.0625,"roll":18.625},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":2.9375,"roll":54.4375},"location":"Right Ankle"},{"euler":{"heading":348.75,"pitch":-160.5625,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":114.5,"pitch":118.25,"roll":29.0},"location":"Right Knee"},{"euler":{"heading":64.75,"pitch":-134.9375,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:03.802"} +{"sensors":[{"euler":{"heading":215.25,"pitch":158.625,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":71.6875,"pitch":111.8125,"roll":31.375},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":-12.9375,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":351.3125,"pitch":-162.1875,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":124.75,"pitch":123.75,"roll":36.375},"location":"Right Knee"},{"euler":{"heading":68.5625,"pitch":-137.1875,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:03.903"} +{"sensors":[{"euler":{"heading":281.4375,"pitch":149.25,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":80.5,"pitch":113.9375,"roll":35.625},"location":"Left Ankle"},{"euler":{"heading":79.3125,"pitch":-33.4375,"roll":45.0},"location":"Right Ankle"},{"euler":{"heading":5.625,"pitch":-145.5,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":139.4375,"pitch":127.5625,"roll":47.5},"location":"Right Knee"},{"euler":{"heading":73.0625,"pitch":-138.1875,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:04.4"} +{"sensors":[{"euler":{"heading":284.625,"pitch":144.875,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":86.1875,"pitch":115.0625,"roll":39.125},"location":"Left Ankle"},{"euler":{"heading":86.6875,"pitch":-29.0625,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":14.6875,"pitch":-138.3125,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":144.625,"pitch":131.1875,"roll":44.25},"location":"Right Knee"},{"euler":{"heading":74.5,"pitch":-142.625,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:04.105"} +{"sensors":[{"euler":{"heading":288.5625,"pitch":141.125,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":92.0,"pitch":116.875,"roll":43.3125},"location":"Left Ankle"},{"euler":{"heading":108.5625,"pitch":-2.125,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":18.25,"pitch":-137.0,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":130.375,"pitch":126.6875,"roll":29.875},"location":"Right Knee"},{"euler":{"heading":76.625,"pitch":-147.6875,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:04.206"} +{"sensors":[{"euler":{"heading":294.1875,"pitch":137.75,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":94.9375,"pitch":118.0625,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":126.625,"pitch":27.4375,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":11.6875,"pitch":-141.0,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":109.6875,"pitch":123.0,"roll":13.0625},"location":"Right Knee"},{"euler":{"heading":77.8125,"pitch":-152.1875,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:04.306"} +{"sensors":[{"euler":{"heading":297.1875,"pitch":136.375,"roll":29.125},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":119.5625,"roll":49.5},"location":"Left Ankle"},{"euler":{"heading":141.3125,"pitch":41.5,"roll":48.5625},"location":"Right Ankle"},{"euler":{"heading":359.1875,"pitch":-144.5,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":80.75,"pitch":122.125,"roll":3.0},"location":"Right Knee"},{"euler":{"heading":78.375,"pitch":-157.25,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:04.407"} +{"sensors":[{"euler":{"heading":302.6875,"pitch":134.1875,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":125.0625,"roll":54.6875},"location":"Left Ankle"},{"euler":{"heading":135.0,"pitch":39.4375,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":350.125,"pitch":-146.625,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":95.4375,"pitch":116.5,"roll":4.5625},"location":"Right Knee"},{"euler":{"heading":81.75,"pitch":-163.25,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:04.508"} +{"sensors":[{"euler":{"heading":316.625,"pitch":131.4375,"roll":14.9375},"location":"Left Knee"},{"euler":{"heading":113.375,"pitch":151.3125,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":124.125,"pitch":34.875,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":351.3125,"pitch":-147.1875,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":100.0,"pitch":111.75,"roll":10.125},"location":"Right Knee"},{"euler":{"heading":77.5,"pitch":-152.375,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:04.609"} +{"sensors":[{"euler":{"heading":332.5,"pitch":129.875,"roll":7.9375},"location":"Left Knee"},{"euler":{"heading":124.125,"pitch":173.5625,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":116.0,"pitch":30.75,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":346.1875,"pitch":-147.6875,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":99.75,"pitch":107.5625,"roll":13.0625},"location":"Right Knee"},{"euler":{"heading":63.875,"pitch":-130.0625,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:04.709"} +{"sensors":[{"euler":{"heading":179.0,"pitch":139.375,"roll":13.1875},"location":"Left Knee"},{"euler":{"heading":112.3125,"pitch":148.0,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":111.1875,"pitch":27.125,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":345.5,"pitch":-147.3125,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":101.875,"pitch":106.1875,"roll":16.5625},"location":"Right Knee"},{"euler":{"heading":52.5,"pitch":-126.0,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:04.810"} +{"sensors":[{"euler":{"heading":192.375,"pitch":154.8125,"roll":27.5},"location":"Left Knee"},{"euler":{"heading":76.5625,"pitch":110.4375,"roll":45.375},"location":"Left Ankle"},{"euler":{"heading":107.5,"pitch":22.5,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":346.0,"pitch":-149.4375,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":105.5,"pitch":107.375,"roll":20.5625},"location":"Right Knee"},{"euler":{"heading":51.0625,"pitch":-125.0625,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:04.911"} +{"sensors":[{"euler":{"heading":207.375,"pitch":166.3125,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":50.5,"pitch":101.8125,"roll":22.5},"location":"Left Ankle"},{"euler":{"heading":102.9375,"pitch":15.25,"roll":54.625},"location":"Right Ankle"},{"euler":{"heading":347.25,"pitch":-151.375,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":109.0,"pitch":109.8125,"roll":25.4375},"location":"Right Knee"},{"euler":{"heading":57.5,"pitch":-130.125,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:05.11"} +{"sensors":[{"euler":{"heading":214.0625,"pitch":167.0625,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":51.3125,"pitch":104.8125,"roll":19.25},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":0.0,"roll":55.375},"location":"Right Ankle"},{"euler":{"heading":347.25,"pitch":-159.5625,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":117.5625,"pitch":116.75,"roll":32.1875},"location":"Right Knee"},{"euler":{"heading":64.6875,"pitch":-135.75,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:05.111"} +{"sensors":[{"euler":{"heading":211.875,"pitch":157.625,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":68.0625,"pitch":109.3125,"roll":31.0625},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":-19.375,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":353.5,"pitch":-154.8125,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":133.8125,"pitch":127.0,"roll":41.75},"location":"Right Knee"},{"euler":{"heading":65.5625,"pitch":-136.125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:05.212"} +{"sensors":[{"euler":{"heading":208.125,"pitch":151.75,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":73.1875,"pitch":111.0,"roll":34.125},"location":"Left Ankle"},{"euler":{"heading":82.1875,"pitch":-34.875,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":5.8125,"pitch":-140.625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":144.4375,"pitch":132.125,"roll":47.1875},"location":"Right Knee"},{"euler":{"heading":69.5,"pitch":-139.75,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:05.313"} +{"sensors":[{"euler":{"heading":277.0625,"pitch":148.3125,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":77.125,"pitch":111.1875,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":91.375,"pitch":-23.9375,"roll":54.4375},"location":"Right Ankle"},{"euler":{"heading":10.6875,"pitch":-137.3125,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":137.125,"pitch":126.0,"roll":40.1875},"location":"Right Knee"},{"euler":{"heading":71.125,"pitch":-143.9375,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:05.413"} +{"sensors":[{"euler":{"heading":283.5,"pitch":144.5,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":82.875,"pitch":113.1875,"roll":41.625},"location":"Left Ankle"},{"euler":{"heading":111.5625,"pitch":5.0,"roll":60.8125},"location":"Right Ankle"},{"euler":{"heading":12.1875,"pitch":-137.8125,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":123.9375,"pitch":122.5625,"roll":25.4375},"location":"Right Knee"},{"euler":{"heading":73.3125,"pitch":-148.625,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:05.514"} +{"sensors":[{"euler":{"heading":289.0625,"pitch":141.75,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":85.8125,"pitch":114.25,"roll":45.0},"location":"Left Ankle"},{"euler":{"heading":129.9375,"pitch":34.125,"roll":54.75},"location":"Right Ankle"},{"euler":{"heading":6.3125,"pitch":-141.3125,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":105.0625,"pitch":120.125,"roll":10.1875},"location":"Right Knee"},{"euler":{"heading":75.25,"pitch":-153.6875,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:05.615"} +{"sensors":[{"euler":{"heading":293.625,"pitch":139.125,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":90.375,"pitch":116.5,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":141.6875,"pitch":41.6875,"roll":46.5},"location":"Right Ankle"},{"euler":{"heading":357.25,"pitch":-144.4375,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":91.3125,"pitch":120.1875,"roll":1.3125},"location":"Right Knee"},{"euler":{"heading":77.9375,"pitch":-159.1875,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:05.716"} +{"sensors":[{"euler":{"heading":304.3125,"pitch":135.875,"roll":21.0625},"location":"Left Knee"},{"euler":{"heading":96.6875,"pitch":127.0625,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":131.25,"pitch":36.6875,"roll":50.5625},"location":"Right Ankle"},{"euler":{"heading":353.6875,"pitch":-145.25,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":93.625,"pitch":114.9375,"roll":4.375},"location":"Right Knee"},{"euler":{"heading":82.25,"pitch":-164.0625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:05.816"} +{"sensors":[{"euler":{"heading":322.5625,"pitch":132.8125,"roll":11.375},"location":"Left Knee"},{"euler":{"heading":114.25,"pitch":161.75,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":122.875,"pitch":29.875,"roll":52.5},"location":"Right Ankle"},{"euler":{"heading":354.0625,"pitch":-144.625,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":96.625,"pitch":112.5,"roll":8.875},"location":"Right Knee"},{"euler":{"heading":74.125,"pitch":-151.3125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:05.918"} +{"sensors":[{"euler":{"heading":336.875,"pitch":131.4375,"roll":6.25},"location":"Left Knee"},{"euler":{"heading":124.625,"pitch":175.375,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":118.25,"pitch":25.6875,"roll":51.9375},"location":"Right Ankle"},{"euler":{"heading":350.75,"pitch":-145.1875,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":97.5625,"pitch":110.875,"roll":12.5},"location":"Right Knee"},{"euler":{"heading":65.375,"pitch":-130.4375,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:06.20"} +{"sensors":[{"euler":{"heading":181.8125,"pitch":139.5,"roll":12.8125},"location":"Left Knee"},{"euler":{"heading":107.8125,"pitch":146.375,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":114.375,"pitch":21.0,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":352.375,"pitch":-144.3125,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":99.875,"pitch":111.6875,"roll":15.6875},"location":"Right Knee"},{"euler":{"heading":57.75,"pitch":-127.75,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:06.120"} +{"sensors":[{"euler":{"heading":197.625,"pitch":153.6875,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":75.0625,"pitch":112.1875,"roll":42.25},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":15.5625,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":352.5625,"pitch":-147.0,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":102.4375,"pitch":113.9375,"roll":19.25},"location":"Right Knee"},{"euler":{"heading":55.6875,"pitch":-127.1875,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:06.223"} +{"sensors":[{"euler":{"heading":211.1875,"pitch":165.375,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":50.9375,"pitch":103.125,"roll":21.125},"location":"Left Ankle"},{"euler":{"heading":108.6875,"pitch":8.125,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":352.9375,"pitch":-151.125,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":106.0,"pitch":117.9375,"roll":23.3125},"location":"Right Knee"},{"euler":{"heading":61.75,"pitch":-131.0,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:06.325"} +{"sensors":[{"euler":{"heading":216.625,"pitch":167.0625,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":51.4375,"pitch":105.0,"roll":18.5625},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":-3.4375,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":353.875,"pitch":-156.9375,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":114.5,"pitch":123.3125,"roll":29.4375},"location":"Right Knee"},{"euler":{"heading":70.0625,"pitch":-136.25,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:06.426"} +{"sensors":[{"euler":{"heading":216.5625,"pitch":156.625,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":67.375,"pitch":111.5,"roll":29.1875},"location":"Left Ankle"},{"euler":{"heading":94.9375,"pitch":-16.8125,"roll":50.6875},"location":"Right Ankle"},{"euler":{"heading":356.6875,"pitch":-158.0,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":128.0625,"pitch":131.8125,"roll":36.9375},"location":"Right Knee"},{"euler":{"heading":72.75,"pitch":-138.5,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:06.527"} +{"sensors":[{"euler":{"heading":284.125,"pitch":149.25,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":73.4375,"pitch":112.875,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":-33.125,"roll":46.25},"location":"Right Ankle"},{"euler":{"heading":8.3125,"pitch":-142.3125,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":138.9375,"pitch":134.25,"roll":43.875},"location":"Right Knee"},{"euler":{"heading":76.5,"pitch":-141.375,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:06.628"} +{"sensors":[{"euler":{"heading":287.6875,"pitch":145.1875,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":77.8125,"pitch":112.5625,"roll":35.6875},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":-21.375,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":15.875,"pitch":-135.5625,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":138.25,"pitch":130.1875,"roll":39.625},"location":"Right Knee"},{"euler":{"heading":78.625,"pitch":-146.625,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:06.729"} +{"sensors":[{"euler":{"heading":291.625,"pitch":141.4375,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":83.5,"pitch":112.75,"roll":39.8125},"location":"Left Ankle"},{"euler":{"heading":115.375,"pitch":10.1875,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":18.1875,"pitch":-136.625,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":124.625,"pitch":125.625,"roll":25.3125},"location":"Right Knee"},{"euler":{"heading":81.1875,"pitch":-153.3125,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:06.829"} +{"sensors":[{"euler":{"heading":296.75,"pitch":138.125,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":85.8125,"pitch":112.875,"roll":42.3125},"location":"Left Ankle"},{"euler":{"heading":133.1875,"pitch":35.875,"roll":49.25},"location":"Right Ankle"},{"euler":{"heading":12.25,"pitch":-142.4375,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":107.3125,"pitch":122.625,"roll":11.0},"location":"Right Knee"},{"euler":{"heading":82.5625,"pitch":-159.9375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:06.930"} +{"sensors":[{"euler":{"heading":299.3125,"pitch":136.75,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":90.4375,"pitch":117.4375,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":140.0625,"pitch":42.4375,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":0.5625,"pitch":-144.625,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":96.8125,"pitch":121.5625,"roll":3.25},"location":"Right Knee"},{"euler":{"heading":81.0625,"pitch":-162.0625,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:07.30"} +{"sensors":[{"euler":{"heading":306.6875,"pitch":134.4375,"roll":22.1875},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":126.6875,"roll":54.875},"location":"Left Ankle"},{"euler":{"heading":133.9375,"pitch":42.6875,"roll":50.0},"location":"Right Ankle"},{"euler":{"heading":351.0625,"pitch":-147.1875,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":96.4375,"pitch":114.0625,"roll":5.3125},"location":"Right Knee"},{"euler":{"heading":82.3125,"pitch":-165.0625,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:07.131"} +{"sensors":[{"euler":{"heading":320.25,"pitch":133.0,"roll":12.5625},"location":"Left Knee"},{"euler":{"heading":112.3125,"pitch":155.25,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":126.125,"pitch":34.8125,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":352.625,"pitch":-148.75,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":99.625,"pitch":112.125,"roll":9.9375},"location":"Right Knee"},{"euler":{"heading":78.3125,"pitch":-154.5625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:07.231"} +{"sensors":[{"euler":{"heading":334.375,"pitch":131.5625,"roll":7.0625},"location":"Left Knee"},{"euler":{"heading":123.0625,"pitch":175.875,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":121.5,"pitch":31.0625,"roll":53.125},"location":"Right Ankle"},{"euler":{"heading":348.3125,"pitch":-150.625,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":101.375,"pitch":110.375,"roll":13.4375},"location":"Right Knee"},{"euler":{"heading":63.75,"pitch":-129.6875,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:07.332"} +{"sensors":[{"euler":{"heading":183.625,"pitch":140.8125,"roll":15.625},"location":"Left Knee"},{"euler":{"heading":106.875,"pitch":139.125,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":117.0,"pitch":27.375,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":349.625,"pitch":-149.375,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":103.3125,"pitch":109.375,"roll":16.625},"location":"Right Knee"},{"euler":{"heading":56.5,"pitch":-127.25,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:07.433"} +{"sensors":[{"euler":{"heading":198.375,"pitch":155.0625,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":75.6875,"pitch":110.1875,"roll":43.75},"location":"Left Ankle"},{"euler":{"heading":112.5625,"pitch":23.5,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":350.5,"pitch":-150.1875,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":106.125,"pitch":110.0625,"roll":20.1875},"location":"Right Knee"},{"euler":{"heading":54.5625,"pitch":-126.875,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:07.533"} +{"sensors":[{"euler":{"heading":211.0,"pitch":165.6875,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":51.4375,"pitch":102.5,"roll":22.9375},"location":"Left Ankle"},{"euler":{"heading":107.6875,"pitch":15.5,"roll":55.1875},"location":"Right Ankle"},{"euler":{"heading":350.75,"pitch":-153.375,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":108.5,"pitch":112.3125,"roll":24.4375},"location":"Right Knee"},{"euler":{"heading":61.375,"pitch":-131.875,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:07.634"} +{"sensors":[{"euler":{"heading":218.125,"pitch":164.75,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":53.625,"pitch":107.375,"roll":20.5},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":4.875,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":351.4375,"pitch":-159.375,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":115.375,"pitch":117.5625,"roll":30.0},"location":"Right Knee"},{"euler":{"heading":71.125,"pitch":-139.3125,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:07.734"} +{"sensors":[{"euler":{"heading":215.6875,"pitch":156.0625,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":67.0625,"pitch":112.125,"roll":29.0},"location":"Left Ankle"},{"euler":{"heading":93.375,"pitch":-15.75,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":356.8125,"pitch":-156.25,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":129.25,"pitch":127.375,"roll":38.1875},"location":"Right Knee"},{"euler":{"heading":72.8125,"pitch":-141.875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:07.835"} +{"sensors":[{"euler":{"heading":283.5625,"pitch":149.8125,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":71.5625,"pitch":112.6875,"roll":31.75},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":-33.6875,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":10.9375,"pitch":-141.8125,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":140.1875,"pitch":132.125,"roll":43.6875},"location":"Right Knee"},{"euler":{"heading":77.8125,"pitch":-146.8125,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:07.936"} +{"sensors":[{"euler":{"heading":287.0,"pitch":146.0,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":76.8125,"pitch":112.9375,"roll":35.3125},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":-22.75,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":17.25,"pitch":-136.25,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":134.1875,"pitch":128.4375,"roll":36.125},"location":"Right Knee"},{"euler":{"heading":80.1875,"pitch":-152.0625,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:08.36"} +{"sensors":[{"euler":{"heading":292.375,"pitch":142.25,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":86.3125,"pitch":113.25,"roll":42.875},"location":"Left Ankle"},{"euler":{"heading":118.0,"pitch":8.5,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":16.6875,"pitch":-137.0625,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":119.1875,"pitch":125.8125,"roll":21.125},"location":"Right Knee"},{"euler":{"heading":81.3125,"pitch":-157.1875,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:08.136"} +{"sensors":[{"euler":{"heading":297.0625,"pitch":139.375,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":93.0625,"pitch":115.875,"roll":48.6875},"location":"Left Ankle"},{"euler":{"heading":132.25,"pitch":30.125,"roll":54.625},"location":"Right Ankle"},{"euler":{"heading":11.25,"pitch":-141.1875,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":99.25,"pitch":124.0625,"roll":6.5},"location":"Right Knee"},{"euler":{"heading":82.9375,"pitch":-162.0,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:08.237"} +{"sensors":[{"euler":{"heading":300.625,"pitch":137.625,"roll":26.25},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":119.875,"roll":53.4375},"location":"Left Ankle"},{"euler":{"heading":143.1875,"pitch":41.4375,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":0.4375,"pitch":-144.5625,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":90.1875,"pitch":121.75,"roll":0.3125},"location":"Right Knee"},{"euler":{"heading":83.875,"pitch":-166.0,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:08.337"} +{"sensors":[{"euler":{"heading":308.125,"pitch":134.8125,"roll":20.875},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":131.5,"roll":59.3125},"location":"Left Ankle"},{"euler":{"heading":134.25,"pitch":36.5625,"roll":50.0625},"location":"Right Ankle"},{"euler":{"heading":355.4375,"pitch":-147.0,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":93.0625,"pitch":116.0,"roll":3.5625},"location":"Right Knee"},{"euler":{"heading":86.75,"pitch":-167.1875,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:08.438"} +{"sensors":[{"euler":{"heading":324.875,"pitch":132.9375,"roll":10.9375},"location":"Left Knee"},{"euler":{"heading":122.875,"pitch":170.0,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":126.75,"pitch":30.9375,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":354.1875,"pitch":-148.1875,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":95.5,"pitch":114.875,"roll":7.75},"location":"Right Knee"},{"euler":{"heading":72.1875,"pitch":-148.625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:08.538"} +{"sensors":[{"euler":{"heading":331.0,"pitch":135.4375,"roll":8.5},"location":"Left Knee"},{"euler":{"heading":129.875,"pitch":-173.6875,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":122.9375,"pitch":26.5,"roll":52.9375},"location":"Right Ankle"},{"euler":{"heading":352.125,"pitch":-148.9375,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":97.875,"pitch":113.5625,"roll":11.4375},"location":"Right Knee"},{"euler":{"heading":60.75,"pitch":-131.0,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:08.639"} +{"sensors":[{"euler":{"heading":187.6875,"pitch":144.375,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":100.8125,"pitch":128.875,"roll":62.0},"location":"Left Ankle"},{"euler":{"heading":119.75,"pitch":21.4375,"roll":53.75},"location":"Right Ankle"},{"euler":{"heading":353.6875,"pitch":-148.875,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":100.375,"pitch":115.0,"roll":15.0},"location":"Right Knee"},{"euler":{"heading":56.3125,"pitch":-128.8125,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:08.741"} +{"sensors":[{"euler":{"heading":201.625,"pitch":158.25,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":70.0625,"pitch":108.125,"roll":39.25},"location":"Left Ankle"},{"euler":{"heading":114.875,"pitch":18.0625,"roll":54.625},"location":"Right Ankle"},{"euler":{"heading":355.5625,"pitch":-148.9375,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":103.5625,"pitch":114.75,"roll":18.5625},"location":"Right Knee"},{"euler":{"heading":57.3125,"pitch":-128.8125,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:08.841"} +{"sensors":[{"euler":{"heading":214.5,"pitch":169.0625,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":55.3125,"pitch":100.9375,"roll":25.0625},"location":"Left Ankle"},{"euler":{"heading":110.3125,"pitch":10.9375,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":355.25,"pitch":-152.75,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":107.0,"pitch":117.0625,"roll":22.8125},"location":"Right Knee"},{"euler":{"heading":63.5625,"pitch":-134.3125,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:08.942"} +{"sensors":[{"euler":{"heading":217.125,"pitch":165.25,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":62.625,"pitch":106.5,"roll":27.75},"location":"Left Ankle"},{"euler":{"heading":104.4375,"pitch":0.0,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":355.5,"pitch":-157.5,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":116.0625,"pitch":121.3125,"roll":29.3125},"location":"Right Knee"},{"euler":{"heading":67.5625,"pitch":-137.1875,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:09.43"} +{"sensors":[{"euler":{"heading":214.625,"pitch":157.0,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":76.4375,"pitch":109.9375,"roll":37.3125},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":-20.0,"roll":52.25},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":-153.8125,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":131.0625,"pitch":129.9375,"roll":38.1875},"location":"Right Knee"},{"euler":{"heading":69.25,"pitch":-139.3125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:09.143"} +{"sensors":[{"euler":{"heading":210.9375,"pitch":151.8125,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":79.375,"pitch":109.5625,"roll":39.8125},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":-33.5625,"roll":49.25},"location":"Right Ankle"},{"euler":{"heading":7.9375,"pitch":-138.3125,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":139.75,"pitch":132.4375,"roll":43.0},"location":"Right Knee"},{"euler":{"heading":74.0625,"pitch":-145.5625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:09.245"} +{"sensors":[{"euler":{"heading":278.875,"pitch":148.375,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":84.6875,"pitch":109.3125,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":99.5,"pitch":-18.3125,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":12.5,"pitch":-134.25,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":133.5,"pitch":127.9375,"roll":34.6875},"location":"Right Knee"},{"euler":{"heading":75.8125,"pitch":-149.0,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:09.345"} +{"sensors":[{"euler":{"heading":284.75,"pitch":144.625,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":89.0625,"pitch":109.875,"roll":46.875},"location":"Left Ankle"},{"euler":{"heading":121.1875,"pitch":14.3125,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":10.75,"pitch":-137.5,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":117.6875,"pitch":125.1875,"roll":20.0625},"location":"Right Knee"},{"euler":{"heading":77.75,"pitch":-153.6875,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:09.446"} +{"sensors":[{"euler":{"heading":290.375,"pitch":141.0625,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":93.25,"pitch":112.625,"roll":50.6875},"location":"Left Ankle"},{"euler":{"heading":137.75,"pitch":36.375,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":6.0,"pitch":-140.5625,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":99.0,"pitch":123.3125,"roll":6.375},"location":"Right Knee"},{"euler":{"heading":79.9375,"pitch":-157.875,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:09.546"} +{"sensors":[{"euler":{"heading":294.5,"pitch":139.0625,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":97.125,"pitch":117.3125,"roll":55.4375},"location":"Left Ankle"},{"euler":{"heading":54.8125,"pitch":38.0625,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":358.1875,"pitch":-144.6875,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":88.4375,"pitch":124.4375,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":80.875,"pitch":-161.5625,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:09.647"} +{"sensors":[{"euler":{"heading":302.6875,"pitch":135.6875,"roll":22.6875},"location":"Left Knee"},{"euler":{"heading":104.4375,"pitch":131.5,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":133.375,"pitch":33.5625,"roll":49.25},"location":"Right Ankle"},{"euler":{"heading":353.0,"pitch":-145.9375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":92.1875,"pitch":118.0625,"roll":3.625},"location":"Right Knee"},{"euler":{"heading":84.0,"pitch":-162.6875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:09.747"} +{"sensors":[{"euler":{"heading":321.4375,"pitch":133.3125,"roll":12.125},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":178.125,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":126.75,"pitch":28.375,"roll":51.0625},"location":"Right Ankle"},{"euler":{"heading":352.0625,"pitch":-147.75,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":96.4375,"pitch":115.9375,"roll":9.0625},"location":"Right Knee"},{"euler":{"heading":71.3125,"pitch":-144.5625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:09.847"} +{"sensors":[{"euler":{"heading":329.25,"pitch":135.125,"roll":9.125},"location":"Left Knee"},{"euler":{"heading":126.0625,"pitch":175.0,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":122.0,"pitch":23.1875,"roll":51.5625},"location":"Right Ankle"},{"euler":{"heading":349.5625,"pitch":-149.1875,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":99.0,"pitch":114.375,"roll":12.75},"location":"Right Knee"},{"euler":{"heading":62.3125,"pitch":-130.6875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:09.948"} +{"sensors":[{"euler":{"heading":188.0,"pitch":144.125,"roll":19.6875},"location":"Left Knee"},{"euler":{"heading":101.25,"pitch":123.625,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":117.75,"pitch":19.6875,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":350.5625,"pitch":-146.5,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":101.0,"pitch":114.4375,"roll":16.1875},"location":"Right Knee"},{"euler":{"heading":58.375,"pitch":-130.25,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:10.50"} +{"sensors":[{"euler":{"heading":201.125,"pitch":158.4375,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":70.75,"pitch":105.9375,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":112.9375,"pitch":14.5625,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":349.3125,"pitch":-147.5625,"roll":70.25},"location":"Right Hip"},{"euler":{"heading":104.6875,"pitch":115.625,"roll":20.25},"location":"Right Knee"},{"euler":{"heading":56.5625,"pitch":-128.625,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:10.150"} +{"sensors":[{"euler":{"heading":212.875,"pitch":168.5625,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":55.4375,"pitch":102.5,"roll":26.1875},"location":"Left Ankle"},{"euler":{"heading":106.8125,"pitch":6.375,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":351.0625,"pitch":-150.625,"roll":70.8125},"location":"Right Hip"},{"euler":{"heading":108.8125,"pitch":119.0,"roll":25.0},"location":"Right Knee"},{"euler":{"heading":62.9375,"pitch":-134.1875,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:10.251"} +{"sensors":[{"euler":{"heading":216.6875,"pitch":161.75,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":65.625,"pitch":111.25,"roll":29.375},"location":"Left Ankle"},{"euler":{"heading":99.3125,"pitch":-5.9375,"roll":52.25},"location":"Right Ankle"},{"euler":{"heading":352.1875,"pitch":-157.875,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":118.5,"pitch":123.6875,"roll":32.25},"location":"Right Knee"},{"euler":{"heading":68.125,"pitch":-136.8125,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:10.351"} +{"sensors":[{"euler":{"heading":213.875,"pitch":154.625,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":80.625,"pitch":114.0625,"roll":39.4375},"location":"Left Ankle"},{"euler":{"heading":88.0,"pitch":-27.9375,"roll":49.875},"location":"Right Ankle"},{"euler":{"heading":356.0625,"pitch":-151.1875,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":135.875,"pitch":132.1875,"roll":41.25},"location":"Right Knee"},{"euler":{"heading":68.5625,"pitch":-138.9375,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:10.452"} +{"sensors":[{"euler":{"heading":211.1875,"pitch":150.125,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":86.9375,"pitch":113.875,"roll":43.1875},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":-32.1875,"roll":48.5625},"location":"Right Ankle"},{"euler":{"heading":8.5625,"pitch":-143.5625,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":140.375,"pitch":133.1875,"roll":42.0},"location":"Right Knee"},{"euler":{"heading":72.9375,"pitch":-144.25,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:10.553"} +{"sensors":[{"euler":{"heading":285.8125,"pitch":146.3125,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":89.625,"pitch":113.0625,"roll":45.5625},"location":"Left Ankle"},{"euler":{"heading":103.5625,"pitch":-10.625,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":14.25,"pitch":-143.4375,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":130.5625,"pitch":128.9375,"roll":31.1875},"location":"Right Knee"},{"euler":{"heading":77.0625,"pitch":-149.9375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:10.654"} +{"sensors":[{"euler":{"heading":290.8125,"pitch":143.0,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":94.75,"pitch":114.875,"roll":49.0625},"location":"Left Ankle"},{"euler":{"heading":123.5,"pitch":19.1875,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":13.4375,"pitch":-144.0625,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":112.8125,"pitch":126.1875,"roll":14.6875},"location":"Right Knee"},{"euler":{"heading":78.1875,"pitch":-154.625,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:10.754"} +{"sensors":[{"euler":{"heading":297.1875,"pitch":139.4375,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":99.625,"pitch":119.625,"roll":53.0},"location":"Left Ankle"},{"euler":{"heading":142.6875,"pitch":38.6875,"roll":47.5},"location":"Right Ankle"},{"euler":{"heading":3.0,"pitch":-146.25,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":92.5625,"pitch":125.125,"roll":1.4375},"location":"Right Knee"},{"euler":{"heading":79.75,"pitch":-157.25,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:10.856"} +{"sensors":[{"euler":{"heading":302.875,"pitch":137.25,"roll":25.4375},"location":"Left Knee"},{"euler":{"heading":102.75,"pitch":126.0,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":140.75,"pitch":37.8125,"roll":47.3125},"location":"Right Ankle"},{"euler":{"heading":355.25,"pitch":-149.25,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":92.3125,"pitch":122.375,"roll":2.25},"location":"Right Knee"},{"euler":{"heading":83.9375,"pitch":-163.0,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:10.957"} +{"sensors":[{"euler":{"heading":314.875,"pitch":134.0625,"roll":17.375},"location":"Left Knee"},{"euler":{"heading":110.125,"pitch":148.0625,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":130.4375,"pitch":31.6875,"roll":49.0625},"location":"Right Ankle"},{"euler":{"heading":350.625,"pitch":-150.0,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":95.5,"pitch":115.75,"roll":6.125},"location":"Right Knee"},{"euler":{"heading":82.6875,"pitch":-157.875,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:11.58"} +{"sensors":[{"euler":{"heading":333.0625,"pitch":132.0,"roll":9.375},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":175.3125,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":126.875,"pitch":26.75,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":354.125,"pitch":-149.9375,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":97.375,"pitch":116.1875,"roll":10.125},"location":"Right Knee"},{"euler":{"heading":68.5,"pitch":-135.6875,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:11.158"} +{"sensors":[{"euler":{"heading":185.0,"pitch":138.125,"roll":14.4375},"location":"Left Knee"},{"euler":{"heading":115.875,"pitch":148.9375,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":121.9375,"pitch":23.4375,"roll":51.4375},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":-128.5625,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":99.8125,"pitch":115.5,"roll":13.5625},"location":"Right Knee"},{"euler":{"heading":62.3125,"pitch":-130.5,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:11.259"} +{"sensors":[{"euler":{"heading":195.75,"pitch":153.0,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":84.8125,"pitch":115.375,"roll":50.25},"location":"Left Ankle"},{"euler":{"heading":117.25,"pitch":19.0,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":357.9375,"pitch":-137.4375,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":102.625,"pitch":115.625,"roll":17.25},"location":"Right Knee"},{"euler":{"heading":58.25,"pitch":-129.0,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:11.360"} +{"sensors":[{"euler":{"heading":208.9375,"pitch":165.8125,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":60.8125,"pitch":102.9375,"roll":31.8125},"location":"Left Ankle"},{"euler":{"heading":111.625,"pitch":12.9375,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":356.0625,"pitch":-138.0625,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":106.125,"pitch":117.25,"roll":21.625},"location":"Right Knee"},{"euler":{"heading":61.375,"pitch":-132.1875,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:11.461"} +{"sensors":[{"euler":{"heading":215.4375,"pitch":169.75,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":55.625,"pitch":101.1875,"roll":25.25},"location":"Left Ankle"},{"euler":{"heading":105.5625,"pitch":2.9375,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":356.5,"pitch":-141.4375,"roll":69.9375},"location":"Right Hip"},{"euler":{"heading":114.3125,"pitch":121.5,"roll":27.8125},"location":"Right Knee"},{"euler":{"heading":66.3125,"pitch":-136.6875,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:11.562"} +{"sensors":[{"euler":{"heading":214.0,"pitch":159.9375,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":70.75,"pitch":106.625,"roll":34.625},"location":"Left Ankle"},{"euler":{"heading":93.6875,"pitch":-16.8125,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":359.625,"pitch":-140.625,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":131.4375,"pitch":129.625,"roll":37.625},"location":"Right Knee"},{"euler":{"heading":67.125,"pitch":-137.9375,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:11.663"} +{"sensors":[{"euler":{"heading":210.1875,"pitch":153.625,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":78.4375,"pitch":109.8125,"roll":40.9375},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-32.1875,"roll":47.5},"location":"Right Ankle"},{"euler":{"heading":7.6875,"pitch":-138.9375,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":141.0625,"pitch":131.3125,"roll":43.6875},"location":"Right Knee"},{"euler":{"heading":70.8125,"pitch":-141.125,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:11.764"} +{"sensors":[{"euler":{"heading":276.875,"pitch":149.875,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":84.0625,"pitch":110.0625,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":-20.875,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":12.5,"pitch":-139.875,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":133.75,"pitch":127.9375,"roll":35.1875},"location":"Right Knee"},{"euler":{"heading":73.0,"pitch":-145.0,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:11.865"} +{"sensors":[{"euler":{"heading":281.6875,"pitch":146.8125,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":92.1875,"pitch":111.5,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":113.1875,"pitch":3.0,"roll":61.125},"location":"Right Ankle"},{"euler":{"heading":10.1875,"pitch":-142.8125,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":114.125,"pitch":123.875,"roll":18.0625},"location":"Right Knee"},{"euler":{"heading":72.875,"pitch":-149.0625,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:11.968"} +{"sensors":[{"euler":{"heading":288.4375,"pitch":143.3125,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":96.125,"pitch":114.9375,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":133.0,"pitch":33.125,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":10.1875,"pitch":-142.5,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":94.625,"pitch":122.6875,"roll":4.5625},"location":"Right Knee"},{"euler":{"heading":75.9375,"pitch":-154.125,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:12.69"} +{"sensors":[{"euler":{"heading":294.25,"pitch":140.375,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":99.8125,"pitch":120.875,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":142.5625,"pitch":37.625,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":9.125,"pitch":-140.75,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":86.8125,"pitch":123.3125,"roll":-0.8125},"location":"Right Knee"},{"euler":{"heading":78.0,"pitch":-158.125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:12.170"} +{"sensors":[{"euler":{"heading":308.5625,"pitch":135.6875,"roll":19.5625},"location":"Left Knee"},{"euler":{"heading":107.75,"pitch":143.5625,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":130.5,"pitch":33.875,"roll":49.1875},"location":"Right Ankle"},{"euler":{"heading":4.3125,"pitch":-142.875,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":91.6875,"pitch":115.25,"roll":3.25},"location":"Right Knee"},{"euler":{"heading":77.625,"pitch":-150.875,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:12.271"} +{"sensors":[{"euler":{"heading":327.4375,"pitch":134.75,"roll":10.625},"location":"Left Knee"},{"euler":{"heading":125.375,"pitch":177.625,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":125.375,"pitch":28.75,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":5.4375,"pitch":-139.25,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":92.1875,"pitch":114.625,"roll":6.6875},"location":"Right Knee"},{"euler":{"heading":62.9375,"pitch":-135.1875,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:12.372"} +{"sensors":[{"euler":{"heading":182.125,"pitch":139.9375,"roll":14.0},"location":"Left Knee"},{"euler":{"heading":119.9375,"pitch":156.1875,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":121.125,"pitch":25.8125,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":7.4375,"pitch":-136.8125,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":94.4375,"pitch":113.8125,"roll":10.5},"location":"Right Knee"},{"euler":{"heading":55.625,"pitch":-130.25,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:12.473"} +{"sensors":[{"euler":{"heading":192.125,"pitch":151.0625,"roll":25.9375},"location":"Left Knee"},{"euler":{"heading":94.375,"pitch":119.9375,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":22.375,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":11.0,"pitch":-131.125,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":97.25,"pitch":113.125,"roll":13.9375},"location":"Right Knee"},{"euler":{"heading":52.5625,"pitch":-129.25,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:12.573"} +{"sensors":[{"euler":{"heading":204.3125,"pitch":163.3125,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":66.25,"pitch":105.375,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":112.875,"pitch":16.875,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":8.75,"pitch":-134.3125,"roll":69.9375},"location":"Right Hip"},{"euler":{"heading":101.5,"pitch":114.5625,"roll":18.3125},"location":"Right Knee"},{"euler":{"heading":55.4375,"pitch":-130.9375,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:12.673"} +{"sensors":[{"euler":{"heading":213.75,"pitch":170.625,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":55.1875,"pitch":100.0,"roll":27.25},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":7.6875,"roll":53.75},"location":"Right Ankle"},{"euler":{"heading":6.8125,"pitch":-139.875,"roll":72.5},"location":"Right Hip"},{"euler":{"heading":107.5625,"pitch":118.5,"roll":23.6875},"location":"Right Knee"},{"euler":{"heading":63.75,"pitch":-136.0625,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:12.774"} +{"sensors":[{"euler":{"heading":216.1875,"pitch":161.8125,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":68.375,"pitch":107.75,"roll":33.1875},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":-7.3125,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":9.5,"pitch":-145.0,"roll":71.1875},"location":"Right Hip"},{"euler":{"heading":119.125,"pitch":125.375,"roll":31.25},"location":"Right Knee"},{"euler":{"heading":68.5625,"pitch":-138.6875,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:12.875"} +{"sensors":[{"euler":{"heading":211.3125,"pitch":155.1875,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":79.625,"pitch":109.625,"roll":41.375},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":-25.5625,"roll":48.9375},"location":"Right Ankle"},{"euler":{"heading":34.25,"pitch":-121.4375,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":133.875,"pitch":129.25,"roll":40.4375},"location":"Right Knee"},{"euler":{"heading":68.6875,"pitch":-140.3125,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:12.975"} +{"sensors":[{"euler":{"heading":275.0625,"pitch":150.8125,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":85.3125,"pitch":109.5,"roll":45.125},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":-19.75,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":43.1875,"pitch":-110.0625,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":137.0625,"pitch":129.6875,"roll":37.6875},"location":"Right Knee"},{"euler":{"heading":71.375,"pitch":-144.25,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:13.78"} +{"sensors":[{"euler":{"heading":279.0,"pitch":147.3125,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":89.875,"pitch":109.8125,"roll":48.3125},"location":"Left Ankle"},{"euler":{"heading":109.0625,"pitch":0.25,"roll":58.0},"location":"Right Ankle"},{"euler":{"heading":43.625,"pitch":-118.375,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":119.375,"pitch":125.625,"roll":23.0625},"location":"Right Knee"},{"euler":{"heading":71.125,"pitch":-146.9375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:13.179"} +{"sensors":[{"euler":{"heading":285.3125,"pitch":143.625,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":93.625,"pitch":112.0,"roll":51.8125},"location":"Left Ankle"},{"euler":{"heading":128.0,"pitch":32.75,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":41.875,"pitch":-118.0625,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":101.1875,"pitch":121.625,"roll":7.75},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-151.375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:13.281"} +{"sensors":[{"euler":{"heading":291.375,"pitch":141.125,"roll":29.0625},"location":"Left Knee"},{"euler":{"heading":96.1875,"pitch":115.75,"roll":55.5},"location":"Left Ankle"},{"euler":{"heading":142.375,"pitch":40.5625,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":35.5,"pitch":-122.4375,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":87.75,"pitch":123.125,"roll":-0.9375},"location":"Right Knee"},{"euler":{"heading":74.5625,"pitch":-155.1875,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:13.382"} +{"sensors":[{"euler":{"heading":298.1875,"pitch":138.4375,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":123.75,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":138.1875,"pitch":37.375,"roll":47.6875},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-125.4375,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":89.75,"pitch":120.0625,"roll":1.5},"location":"Right Knee"},{"euler":{"heading":79.125,"pitch":-161.6875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:13.482"} +{"sensors":[{"euler":{"heading":313.3125,"pitch":135.4375,"roll":15.5625},"location":"Left Knee"},{"euler":{"heading":112.6875,"pitch":155.0625,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":127.8125,"pitch":31.5,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":29.5625,"pitch":-127.25,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":93.875,"pitch":115.125,"roll":5.75},"location":"Right Knee"},{"euler":{"heading":72.3125,"pitch":-151.4375,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:13.583"} +{"sensors":[{"euler":{"heading":328.3125,"pitch":134.3125,"roll":10.3125},"location":"Left Knee"},{"euler":{"heading":126.3125,"pitch":176.5,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":124.5625,"pitch":28.25,"roll":49.9375},"location":"Right Ankle"},{"euler":{"heading":23.4375,"pitch":-130.75,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":95.4375,"pitch":113.75,"roll":9.8125},"location":"Right Knee"},{"euler":{"heading":59.1875,"pitch":-134.4375,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:13.684"} +{"sensors":[{"euler":{"heading":186.0625,"pitch":142.4375,"roll":17.875},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":150.8125,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":120.0625,"pitch":24.5,"roll":51.125},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-129.5625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":98.0625,"pitch":113.6875,"roll":13.4375},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-131.0,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:13.785"} +{"sensors":[{"euler":{"heading":198.0625,"pitch":155.6875,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":87.0625,"pitch":114.6875,"roll":52.1875},"location":"Left Ankle"},{"euler":{"heading":116.25,"pitch":20.0,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":20.5625,"pitch":-132.125,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":101.3125,"pitch":114.5625,"roll":17.125},"location":"Right Knee"},{"euler":{"heading":36.125,"pitch":-128.8125,"roll":44.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:13.886"} +{"sensors":[{"euler":{"heading":210.5625,"pitch":167.4375,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":56.9375,"pitch":101.8125,"roll":28.3125},"location":"Left Ankle"},{"euler":{"heading":111.6875,"pitch":13.625,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":18.375,"pitch":-139.5625,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":103.4375,"pitch":117.1875,"roll":20.75},"location":"Right Knee"},{"euler":{"heading":57.125,"pitch":-132.8125,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:13.988"} +{"sensors":[{"euler":{"heading":216.8125,"pitch":168.5625,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":58.625,"pitch":104.125,"roll":27.0625},"location":"Left Ankle"},{"euler":{"heading":105.5,"pitch":3.0,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":17.0625,"pitch":-147.625,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":110.1875,"pitch":121.75,"roll":25.875},"location":"Right Knee"},{"euler":{"heading":63.9375,"pitch":-136.6875,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:14.89"} +{"sensors":[{"euler":{"heading":215.625,"pitch":159.375,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":74.0,"pitch":109.375,"roll":36.625},"location":"Left Ankle"},{"euler":{"heading":96.8125,"pitch":-10.3125,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":17.75,"pitch":-148.625,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":120.1875,"pitch":128.75,"roll":31.875},"location":"Right Knee"},{"euler":{"heading":66.6875,"pitch":-138.5,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:14.190"} +{"sensors":[{"euler":{"heading":211.375,"pitch":152.375,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":79.6875,"pitch":110.6875,"roll":41.1875},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":-25.625,"roll":49.625},"location":"Right Ankle"},{"euler":{"heading":29.75,"pitch":-129.5,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":134.875,"pitch":130.0625,"roll":41.0},"location":"Right Knee"},{"euler":{"heading":69.6875,"pitch":-141.125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:14.290"} +{"sensors":[{"euler":{"heading":280.125,"pitch":148.625,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":83.25,"pitch":111.1875,"roll":44.1875},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":-15.4375,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":39.0625,"pitch":-119.5625,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":133.625,"pitch":129.125,"roll":36.0625},"location":"Right Knee"},{"euler":{"heading":70.625,"pitch":-145.1875,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:14.391"} +{"sensors":[{"euler":{"heading":283.5625,"pitch":145.3125,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":87.125,"pitch":111.0,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":115.4375,"pitch":9.0,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":43.625,"pitch":-115.3125,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":119.625,"pitch":126.3125,"roll":22.375},"location":"Right Knee"},{"euler":{"heading":72.0625,"pitch":-150.4375,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:14.492"} +{"sensors":[{"euler":{"heading":289.875,"pitch":142.0625,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":112.25,"roll":50.0},"location":"Left Ankle"},{"euler":{"heading":132.3125,"pitch":36.6875,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":41.5625,"pitch":-115.5,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":102.0625,"pitch":121.9375,"roll":7.9375},"location":"Right Knee"},{"euler":{"heading":74.0625,"pitch":-156.0625,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:14.592"} +{"sensors":[{"euler":{"heading":295.25,"pitch":139.625,"roll":28.25},"location":"Left Knee"},{"euler":{"heading":95.125,"pitch":117.25,"roll":54.75},"location":"Left Ankle"},{"euler":{"heading":53.875,"pitch":46.125,"roll":43.1875},"location":"Right Ankle"},{"euler":{"heading":33.1875,"pitch":-121.0625,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":90.875,"pitch":119.6875,"roll":-1.125},"location":"Right Knee"},{"euler":{"heading":75.25,"pitch":-158.375,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:14.693"} +{"sensors":[{"euler":{"heading":300.25,"pitch":137.9375,"roll":23.625},"location":"Left Knee"},{"euler":{"heading":101.9375,"pitch":127.75,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":137.6875,"pitch":44.375,"roll":45.875},"location":"Right Ankle"},{"euler":{"heading":27.375,"pitch":-123.6875,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":94.25,"pitch":114.125,"roll":1.5},"location":"Right Knee"},{"euler":{"heading":76.375,"pitch":-161.4375,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:14.794"} +{"sensors":[{"euler":{"heading":315.625,"pitch":135.0625,"roll":14.4375},"location":"Left Knee"},{"euler":{"heading":116.3125,"pitch":162.25,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":127.5625,"pitch":38.6875,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":26.3125,"pitch":-125.875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":97.125,"pitch":109.3125,"roll":6.1875},"location":"Right Knee"},{"euler":{"heading":72.125,"pitch":-152.875,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:14.894"} +{"sensors":[{"euler":{"heading":328.25,"pitch":135.125,"roll":8.875},"location":"Left Knee"},{"euler":{"heading":125.75,"pitch":-176.5,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":123.125,"pitch":34.8125,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-129.75,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":97.25,"pitch":108.9375,"roll":9.4375},"location":"Right Knee"},{"euler":{"heading":57.8125,"pitch":-132.75,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:14.996"} +{"sensors":[{"euler":{"heading":183.4375,"pitch":141.4375,"roll":16.0625},"location":"Left Knee"},{"euler":{"heading":116.375,"pitch":155.0625,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":119.5,"pitch":31.5625,"roll":50.1875},"location":"Right Ankle"},{"euler":{"heading":18.625,"pitch":-131.125,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":98.625,"pitch":108.75,"roll":12.5625},"location":"Right Knee"},{"euler":{"heading":51.375,"pitch":-129.125,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:15.97"} +{"sensors":[{"euler":{"heading":195.8125,"pitch":155.5625,"roll":28.9375},"location":"Left Knee"},{"euler":{"heading":79.25,"pitch":112.375,"roll":49.25},"location":"Left Ankle"},{"euler":{"heading":116.8125,"pitch":27.5625,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":16.4375,"pitch":-136.0625,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":100.5625,"pitch":109.75,"roll":15.875},"location":"Right Knee"},{"euler":{"heading":48.6875,"pitch":-126.9375,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:15.197"} +{"sensors":[{"euler":{"heading":209.375,"pitch":166.125,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":57.125,"pitch":104.5625,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":113.25,"pitch":20.75,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":16.0,"pitch":-141.125,"roll":70.6875},"location":"Right Hip"},{"euler":{"heading":103.375,"pitch":112.875,"roll":20.0},"location":"Right Knee"},{"euler":{"heading":56.8125,"pitch":-131.8125,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:15.298"} +{"sensors":[{"euler":{"heading":215.875,"pitch":167.5,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":58.6875,"pitch":106.8125,"roll":26.75},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":10.0,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":16.375,"pitch":-148.0,"roll":71.6875},"location":"Right Hip"},{"euler":{"heading":109.8125,"pitch":117.9375,"roll":25.5},"location":"Right Knee"},{"euler":{"heading":65.875,"pitch":-136.8125,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:15.398"} +{"sensors":[{"euler":{"heading":217.375,"pitch":155.875,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":76.3125,"pitch":115.75,"roll":36.0625},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":-6.5,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":15.125,"pitch":-151.3125,"roll":72.0625},"location":"Right Hip"},{"euler":{"heading":121.1875,"pitch":125.3125,"roll":33.75},"location":"Right Knee"},{"euler":{"heading":70.6875,"pitch":-139.5,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:15.500"} +{"sensors":[{"euler":{"heading":213.0,"pitch":149.375,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":117.0,"roll":40.25},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":-24.6875,"roll":47.1875},"location":"Right Ankle"},{"euler":{"heading":27.5625,"pitch":-127.9375,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":133.6875,"pitch":127.875,"roll":41.875},"location":"Right Knee"},{"euler":{"heading":74.125,"pitch":-142.5,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:15.601"} +{"sensors":[{"euler":{"heading":293.3125,"pitch":145.625,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":87.0625,"pitch":117.3125,"roll":43.6875},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":-25.5,"roll":50.6875},"location":"Right Ankle"},{"euler":{"heading":37.875,"pitch":-115.3125,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":138.375,"pitch":131.8125,"roll":40.3125},"location":"Right Knee"},{"euler":{"heading":76.0625,"pitch":-147.875,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:15.701"} +{"sensors":[{"euler":{"heading":295.5625,"pitch":142.375,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":91.5,"pitch":118.0,"roll":47.125},"location":"Left Ankle"},{"euler":{"heading":107.375,"pitch":-1.5,"roll":55.75},"location":"Right Ankle"},{"euler":{"heading":44.3125,"pitch":-112.0,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":123.5625,"pitch":127.3125,"roll":27.4375},"location":"Right Knee"},{"euler":{"heading":78.125,"pitch":-154.5,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:15.802"} +{"sensors":[{"euler":{"heading":302.8125,"pitch":138.8125,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":95.8125,"pitch":120.875,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":124.875,"pitch":25.1875,"roll":56.0},"location":"Right Ankle"},{"euler":{"heading":43.625,"pitch":-113.0625,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":103.5625,"pitch":125.125,"roll":10.125},"location":"Right Knee"},{"euler":{"heading":79.1875,"pitch":-158.0625,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:15.903"} +{"sensors":[{"euler":{"heading":307.375,"pitch":136.875,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":100.9375,"pitch":125.875,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":143.0625,"pitch":40.5,"roll":45.0625},"location":"Right Ankle"},{"euler":{"heading":33.5625,"pitch":-117.3125,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":89.9375,"pitch":123.0625,"roll":-0.625},"location":"Right Knee"},{"euler":{"heading":80.875,"pitch":-163.4375,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:16.4"} +{"sensors":[{"euler":{"heading":313.6875,"pitch":135.6875,"roll":19.8125},"location":"Left Knee"},{"euler":{"heading":106.1875,"pitch":135.0,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":137.6875,"pitch":42.5625,"roll":45.3125},"location":"Right Ankle"},{"euler":{"heading":28.0,"pitch":-120.5,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":92.75,"pitch":114.8125,"roll":1.8125},"location":"Right Knee"},{"euler":{"heading":82.3125,"pitch":-166.5,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:16.104"} +{"sensors":[{"euler":{"heading":326.3125,"pitch":134.625,"roll":10.9375},"location":"Left Knee"},{"euler":{"heading":120.6875,"pitch":166.5,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":129.0,"pitch":36.5625,"roll":47.0625},"location":"Right Ankle"},{"euler":{"heading":28.0,"pitch":-122.25,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":93.75,"pitch":111.625,"roll":5.0625},"location":"Right Knee"},{"euler":{"heading":73.25,"pitch":-155.6875,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:16.205"} +{"sensors":[{"euler":{"heading":340.25,"pitch":134.0,"roll":4.8125},"location":"Left Knee"},{"euler":{"heading":135.5625,"pitch":-165.75,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":124.8125,"pitch":32.625,"roll":47.75},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-124.75,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":94.6875,"pitch":110.6875,"roll":8.375},"location":"Right Knee"},{"euler":{"heading":56.9375,"pitch":-134.125,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:16.305"} +{"sensors":[{"euler":{"heading":180.6875,"pitch":140.0625,"roll":10.5},"location":"Left Knee"},{"euler":{"heading":125.0625,"pitch":168.875,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":120.5,"pitch":30.5,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":20.1875,"pitch":-126.375,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":96.1875,"pitch":111.5,"roll":11.75},"location":"Right Knee"},{"euler":{"heading":49.75,"pitch":-130.1875,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:16.407"} +{"sensors":[{"euler":{"heading":192.4375,"pitch":151.9375,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":119.75,"roll":53.5625},"location":"Left Ankle"},{"euler":{"heading":116.625,"pitch":26.3125,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":18.4375,"pitch":-128.375,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":99.0,"pitch":112.5,"roll":15.25},"location":"Right Knee"},{"euler":{"heading":46.9375,"pitch":-127.375,"roll":45.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:16.508"} +{"sensors":[{"euler":{"heading":205.5625,"pitch":162.625,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":61.125,"pitch":107.0625,"roll":33.75},"location":"Left Ankle"},{"euler":{"heading":111.5625,"pitch":19.375,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-131.875,"roll":71.625},"location":"Right Hip"},{"euler":{"heading":102.625,"pitch":114.5,"roll":19.3125},"location":"Right Knee"},{"euler":{"heading":50.875,"pitch":-129.5,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:16.608"} +{"sensors":[{"euler":{"heading":214.375,"pitch":168.6875,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":53.625,"pitch":103.5,"roll":25.5},"location":"Left Ankle"},{"euler":{"heading":106.1875,"pitch":6.8125,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":17.5625,"pitch":-140.125,"roll":72.875},"location":"Right Hip"},{"euler":{"heading":107.3125,"pitch":119.75,"roll":24.0},"location":"Right Knee"},{"euler":{"heading":61.3125,"pitch":-136.9375,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:16.709"} +{"sensors":[{"euler":{"heading":215.375,"pitch":161.125,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":69.1875,"pitch":111.4375,"roll":33.5625},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":-7.8125,"roll":54.4375},"location":"Right Ankle"},{"euler":{"heading":15.5625,"pitch":-147.4375,"roll":72.9375},"location":"Right Hip"},{"euler":{"heading":117.25,"pitch":124.375,"roll":31.1875},"location":"Right Knee"},{"euler":{"heading":67.375,"pitch":-139.625,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:16.809"} +{"sensors":[{"euler":{"heading":212.0,"pitch":152.5,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":76.125,"pitch":113.125,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":-25.375,"roll":49.0625},"location":"Right Ankle"},{"euler":{"heading":24.8125,"pitch":-129.875,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":130.3125,"pitch":128.125,"roll":39.4375},"location":"Right Knee"},{"euler":{"heading":69.8125,"pitch":-142.5625,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:16.910"} +{"sensors":[{"euler":{"heading":192.25,"pitch":148.3125,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":79.9375,"pitch":113.9375,"roll":42.375},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":-27.0,"roll":51.625},"location":"Right Ankle"},{"euler":{"heading":35.3125,"pitch":-113.875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":133.6875,"pitch":131.625,"roll":37.5625},"location":"Right Knee"},{"euler":{"heading":74.0,"pitch":-147.125,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:17.11"} +{"sensors":[{"euler":{"heading":293.1875,"pitch":144.375,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":85.125,"pitch":115.5625,"roll":45.9375},"location":"Left Ankle"},{"euler":{"heading":108.5,"pitch":-4.5625,"roll":57.8125},"location":"Right Ankle"},{"euler":{"heading":41.4375,"pitch":-109.9375,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":119.5625,"pitch":128.25,"roll":25.0},"location":"Right Knee"},{"euler":{"heading":77.125,"pitch":-151.625,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:17.112"} +{"sensors":[{"euler":{"heading":298.875,"pitch":141.375,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":88.125,"pitch":118.125,"roll":49.0},"location":"Left Ankle"},{"euler":{"heading":126.25,"pitch":22.1875,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":43.625,"pitch":-110.9375,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":101.0625,"pitch":126.1875,"roll":10.375},"location":"Right Knee"},{"euler":{"heading":77.625,"pitch":-156.0,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:17.212"} +{"sensors":[{"euler":{"heading":303.125,"pitch":139.6875,"roll":24.75},"location":"Left Knee"},{"euler":{"heading":93.875,"pitch":122.0625,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":140.3125,"pitch":40.5625,"roll":48.9375},"location":"Right Ankle"},{"euler":{"heading":37.3125,"pitch":-116.1875,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":87.125,"pitch":123.8125,"roll":-0.4375},"location":"Right Knee"},{"euler":{"heading":77.6875,"pitch":-160.0,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:17.314"} +{"sensors":[{"euler":{"heading":309.0,"pitch":138.1875,"roll":20.5},"location":"Left Knee"},{"euler":{"heading":100.75,"pitch":130.8125,"roll":58.8125},"location":"Left Ankle"},{"euler":{"heading":140.3125,"pitch":45.875,"roll":45.75},"location":"Right Ankle"},{"euler":{"heading":30.25,"pitch":-119.8125,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":87.0,"pitch":117.8125,"roll":-1.8125},"location":"Right Knee"},{"euler":{"heading":79.0,"pitch":-164.0625,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:17.415"} +{"sensors":[{"euler":{"heading":320.9375,"pitch":136.375,"roll":12.875},"location":"Left Knee"},{"euler":{"heading":112.8125,"pitch":155.875,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":128.1875,"pitch":38.375,"roll":50.5625},"location":"Right Ankle"},{"euler":{"heading":29.5,"pitch":-122.25,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":91.0,"pitch":113.4375,"roll":3.125},"location":"Right Knee"},{"euler":{"heading":77.0,"pitch":-161.5,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:17.516"} +{"sensors":[{"euler":{"heading":339.5,"pitch":133.125,"roll":5.125},"location":"Left Knee"},{"euler":{"heading":135.0,"pitch":-168.125,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":123.0,"pitch":33.5,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":25.8125,"pitch":-123.125,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":91.25,"pitch":112.5625,"roll":6.1875},"location":"Right Knee"},{"euler":{"heading":62.0625,"pitch":-141.75,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:17.616"} +{"sensors":[{"euler":{"heading":179.8125,"pitch":136.6875,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":128.375,"pitch":178.75,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":119.9375,"pitch":29.375,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":25.75,"pitch":-125.9375,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":92.5625,"pitch":113.875,"roll":9.125},"location":"Right Knee"},{"euler":{"heading":55.75,"pitch":-132.4375,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:17.717"} +{"sensors":[{"euler":{"heading":193.1875,"pitch":147.4375,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":94.75,"pitch":127.0625,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":116.375,"pitch":25.75,"roll":52.9375},"location":"Right Ankle"},{"euler":{"heading":24.875,"pitch":-127.0,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":94.8125,"pitch":114.0625,"roll":12.3125},"location":"Right Knee"},{"euler":{"heading":52.3125,"pitch":-129.375,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:17.818"} +{"sensors":[{"euler":{"heading":205.9375,"pitch":160.625,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":67.375,"pitch":108.0625,"roll":37.125},"location":"Left Ankle"},{"euler":{"heading":111.4375,"pitch":20.25,"roll":54.25},"location":"Right Ankle"},{"euler":{"heading":22.1875,"pitch":-130.75,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":98.75,"pitch":114.625,"roll":16.5},"location":"Right Knee"},{"euler":{"heading":52.9375,"pitch":-129.5625,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:17.919"} +{"sensors":[{"euler":{"heading":214.9375,"pitch":170.0625,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":53.125,"pitch":100.8125,"roll":25.0625},"location":"Left Ankle"},{"euler":{"heading":106.8125,"pitch":9.25,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":19.25,"pitch":-137.6875,"roll":71.6875},"location":"Right Hip"},{"euler":{"heading":104.0,"pitch":118.1875,"roll":21.75},"location":"Right Knee"},{"euler":{"heading":59.6875,"pitch":-134.5625,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:18.20"} +{"sensors":[{"euler":{"heading":216.3125,"pitch":163.125,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":65.1875,"pitch":109.6875,"roll":30.1875},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":-8.8125,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":15.5625,"pitch":-144.6875,"roll":72.3125},"location":"Right Hip"},{"euler":{"heading":114.4375,"pitch":122.6875,"roll":29.4375},"location":"Right Knee"},{"euler":{"heading":64.375,"pitch":-136.1875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:18.121"} +{"sensors":[{"euler":{"heading":212.25,"pitch":154.1875,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":77.4375,"pitch":112.25,"roll":40.1875},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":-27.5625,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":22.625,"pitch":-133.75,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":126.9375,"pitch":129.875,"roll":37.25},"location":"Right Knee"},{"euler":{"heading":63.8125,"pitch":-137.0625,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:18.222"} +{"sensors":[{"euler":{"heading":208.9375,"pitch":149.25,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":83.375,"pitch":113.625,"roll":43.625},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":-30.8125,"roll":51.25},"location":"Right Ankle"},{"euler":{"heading":32.0,"pitch":-116.875,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":132.6875,"pitch":130.8125,"roll":39.75},"location":"Right Knee"},{"euler":{"heading":67.4375,"pitch":-140.6875,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:18.322"} +{"sensors":[{"euler":{"heading":287.0625,"pitch":146.0625,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":87.25,"pitch":114.5,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":105.5,"pitch":-6.375,"roll":58.625},"location":"Right Ankle"},{"euler":{"heading":38.4375,"pitch":-113.25,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":121.1875,"pitch":125.375,"roll":27.75},"location":"Right Knee"},{"euler":{"heading":67.75,"pitch":-144.875,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:18.427"} +{"sensors":[{"euler":{"heading":294.625,"pitch":142.0625,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":92.5625,"pitch":116.9375,"roll":50.25},"location":"Left Ankle"},{"euler":{"heading":121.9375,"pitch":22.0625,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":41.1875,"pitch":-113.3125,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":103.625,"pitch":123.375,"roll":11.875},"location":"Right Knee"},{"euler":{"heading":71.375,"pitch":-149.75,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:18.528"} +{"sensors":[{"euler":{"heading":301.3125,"pitch":138.9375,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":96.8125,"pitch":120.5,"roll":53.75},"location":"Left Ankle"},{"euler":{"heading":139.5,"pitch":42.25,"roll":49.1875},"location":"Right Ankle"},{"euler":{"heading":35.5625,"pitch":-116.9375,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":89.25,"pitch":122.8125,"roll":-0.125},"location":"Right Knee"},{"euler":{"heading":74.25,"pitch":-154.625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:18.629"} +{"sensors":[{"euler":{"heading":307.0,"pitch":136.4375,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":104.25,"pitch":128.4375,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":140.5625,"pitch":46.375,"roll":45.6875},"location":"Right Ankle"},{"euler":{"heading":29.0625,"pitch":-120.375,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":89.0,"pitch":118.0625,"roll":-1.0},"location":"Right Knee"},{"euler":{"heading":76.25,"pitch":-158.125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:18.730"} +{"sensors":[{"euler":{"heading":319.0,"pitch":133.5,"roll":16.0},"location":"Left Knee"},{"euler":{"heading":113.5625,"pitch":150.0,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":130.125,"pitch":40.375,"roll":50.0},"location":"Right Ankle"},{"euler":{"heading":28.8125,"pitch":-122.1875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":92.3125,"pitch":113.25,"roll":3.4375},"location":"Right Knee"},{"euler":{"heading":78.8125,"pitch":-157.9375,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:18.830"} +{"sensors":[{"euler":{"heading":335.875,"pitch":132.5,"roll":7.3125},"location":"Left Knee"},{"euler":{"heading":137.5625,"pitch":-167.375,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":125.3125,"pitch":35.25,"roll":50.9375},"location":"Right Ankle"},{"euler":{"heading":23.3125,"pitch":-124.75,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":92.625,"pitch":112.125,"roll":6.6875},"location":"Right Knee"},{"euler":{"heading":66.8125,"pitch":-139.875,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:18.931"} +{"sensors":[{"euler":{"heading":178.3125,"pitch":136.0,"roll":8.4375},"location":"Left Knee"},{"euler":{"heading":129.8125,"pitch":176.8125,"roll":70.6875},"location":"Left Ankle"},{"euler":{"heading":120.875,"pitch":30.8125,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":22.8125,"pitch":-124.8125,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":93.375,"pitch":112.125,"roll":9.5},"location":"Right Knee"},{"euler":{"heading":56.9375,"pitch":-130.8125,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:19.31"} +{"sensors":[{"euler":{"heading":191.125,"pitch":148.875,"roll":22.875},"location":"Left Knee"},{"euler":{"heading":94.625,"pitch":121.625,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":116.875,"pitch":27.75,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":21.375,"pitch":-123.8125,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":95.5,"pitch":112.125,"roll":12.5},"location":"Right Knee"},{"euler":{"heading":51.1875,"pitch":-128.375,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:19.132"} +{"sensors":[{"euler":{"heading":204.125,"pitch":161.5,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":67.125,"pitch":106.0,"roll":37.1875},"location":"Left Ankle"},{"euler":{"heading":112.75,"pitch":22.0,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-126.0625,"roll":69.5625},"location":"Right Hip"},{"euler":{"heading":98.0,"pitch":113.0,"roll":16.375},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-126.5,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:19.233"} +{"sensors":[{"euler":{"heading":213.75,"pitch":168.4375,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":54.8125,"pitch":101.9375,"roll":26.75},"location":"Left Ankle"},{"euler":{"heading":108.125,"pitch":11.5625,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-131.5625,"roll":71.1875},"location":"Right Hip"},{"euler":{"heading":102.9375,"pitch":117.375,"roll":21.25},"location":"Right Knee"},{"euler":{"heading":53.9375,"pitch":-128.6875,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:19.334"} +{"sensors":[{"euler":{"heading":215.625,"pitch":161.5625,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":66.5,"pitch":107.75,"roll":32.1875},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":-1.0625,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-138.25,"roll":71.6875},"location":"Right Hip"},{"euler":{"heading":111.875,"pitch":123.3125,"roll":27.75},"location":"Right Knee"},{"euler":{"heading":61.9375,"pitch":-133.3125,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:19.435"} +{"sensors":[{"euler":{"heading":213.375,"pitch":152.6875,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":76.6875,"pitch":110.9375,"roll":39.125},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":-23.0,"roll":50.375},"location":"Right Ankle"},{"euler":{"heading":26.375,"pitch":-129.625,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":126.9375,"pitch":129.0625,"roll":36.6875},"location":"Right Knee"},{"euler":{"heading":63.75,"pitch":-137.625,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:19.535"} +{"sensors":[{"euler":{"heading":288.8125,"pitch":146.75,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":83.25,"pitch":112.1875,"roll":43.4375},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":-25.25,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":36.5625,"pitch":-114.5625,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":133.1875,"pitch":132.375,"roll":37.25},"location":"Right Knee"},{"euler":{"heading":70.625,"pitch":-137.4375,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:19.636"} +{"sensors":[{"euler":{"heading":295.5625,"pitch":141.6875,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":89.0625,"pitch":112.75,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":110.625,"pitch":0.25,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":41.5625,"pitch":-111.1875,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":120.5625,"pitch":127.8125,"roll":25.5625},"location":"Right Knee"},{"euler":{"heading":73.4375,"pitch":-138.25,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:19.736"} +{"sensors":[{"euler":{"heading":298.0625,"pitch":138.375,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":95.0625,"pitch":116.0625,"roll":52.0625},"location":"Left Ankle"},{"euler":{"heading":131.0625,"pitch":27.3125,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":44.625,"pitch":-112.25,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":101.5,"pitch":127.0625,"roll":10.5},"location":"Right Knee"},{"euler":{"heading":75.6875,"pitch":-132.125,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:19.838"} +{"sensors":[{"euler":{"heading":302.375,"pitch":136.4375,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":100.125,"pitch":121.8125,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":144.5625,"pitch":41.0,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":38.6875,"pitch":-116.125,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":86.8125,"pitch":126.25,"roll":-0.75},"location":"Right Knee"},{"euler":{"heading":76.25,"pitch":-116.375,"roll":71.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:19.939"} +{"sensors":[{"euler":{"heading":309.5625,"pitch":134.375,"roll":22.375},"location":"Left Knee"},{"euler":{"heading":108.0,"pitch":135.3125,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":141.875,"pitch":44.0625,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":33.5,"pitch":-119.4375,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":88.1875,"pitch":120.5625,"roll":-1.0625},"location":"Right Knee"},{"euler":{"heading":75.5,"pitch":-138.1875,"roll":71.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:20.39"} +{"sensors":[{"euler":{"heading":321.625,"pitch":133.6875,"roll":13.3125},"location":"Left Knee"},{"euler":{"heading":119.625,"pitch":167.6875,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":131.0,"pitch":36.0,"roll":49.8125},"location":"Right Ankle"},{"euler":{"heading":33.3125,"pitch":-121.3125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":92.1875,"pitch":116.125,"roll":3.75},"location":"Right Knee"},{"euler":{"heading":71.375,"pitch":-137.375,"roll":70.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:20.140"} +{"sensors":[{"euler":{"heading":337.4375,"pitch":133.125,"roll":6.8125},"location":"Left Knee"},{"euler":{"heading":136.5625,"pitch":-164.8125,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":126.6875,"pitch":31.5,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":27.0625,"pitch":-124.0625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":92.0625,"pitch":115.5625,"roll":6.5625},"location":"Right Knee"},{"euler":{"heading":62.125,"pitch":-115.0625,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:20.240"} +{"sensors":[{"euler":{"heading":183.5,"pitch":139.8125,"roll":14.625},"location":"Left Knee"},{"euler":{"heading":126.5,"pitch":178.6875,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":124.0,"pitch":27.0,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":26.0625,"pitch":-125.375,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":93.0,"pitch":116.9375,"roll":9.375},"location":"Right Knee"},{"euler":{"heading":57.4375,"pitch":-106.6875,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:20.341"} +{"sensors":[{"euler":{"heading":196.4375,"pitch":152.875,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":92.0,"pitch":118.9375,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":120.5625,"pitch":22.5625,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-126.9375,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":96.0,"pitch":117.8125,"roll":12.75},"location":"Right Knee"},{"euler":{"heading":57.125,"pitch":-101.4375,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:20.443"} +{"sensors":[{"euler":{"heading":210.0625,"pitch":165.4375,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":65.0,"pitch":105.375,"roll":35.875},"location":"Left Ankle"},{"euler":{"heading":115.875,"pitch":18.0625,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":22.25,"pitch":-129.25,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":97.6875,"pitch":118.5625,"roll":15.8125},"location":"Right Knee"},{"euler":{"heading":57.9375,"pitch":-107.875,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:20.544"} +{"sensors":[{"euler":{"heading":216.5625,"pitch":169.875,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":58.3125,"pitch":102.8125,"roll":27.9375},"location":"Left Ankle"},{"euler":{"heading":110.375,"pitch":9.125,"roll":54.1875},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-134.5,"roll":70.5},"location":"Right Hip"},{"euler":{"heading":103.375,"pitch":121.1875,"roll":20.8125},"location":"Right Knee"},{"euler":{"heading":60.8125,"pitch":-113.9375,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:20.645"} +{"sensors":[{"euler":{"heading":216.5,"pitch":161.8125,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":72.375,"pitch":107.8125,"roll":35.9375},"location":"Left Ankle"},{"euler":{"heading":103.1875,"pitch":-3.3125,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":21.0625,"pitch":-139.125,"roll":70.3125},"location":"Right Hip"},{"euler":{"heading":112.8125,"pitch":126.9375,"roll":28.4375},"location":"Right Knee"},{"euler":{"heading":65.25,"pitch":-116.0625,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:20.745"} +{"sensors":[{"euler":{"heading":212.625,"pitch":154.1875,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":78.9375,"pitch":110.3125,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":-21.1875,"roll":50.4375},"location":"Right Ankle"},{"euler":{"heading":28.8125,"pitch":-125.875,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":124.3125,"pitch":128.0,"roll":35.75},"location":"Right Knee"},{"euler":{"heading":69.9375,"pitch":-107.625,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:20.846"} +{"sensors":[{"euler":{"heading":283.375,"pitch":148.4375,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":84.625,"pitch":112.8125,"roll":44.8125},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":-16.8125,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":37.75,"pitch":-114.4375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":125.6875,"pitch":129.8125,"roll":33.0625},"location":"Right Knee"},{"euler":{"heading":73.3125,"pitch":-104.625,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:20.947"} +{"sensors":[{"euler":{"heading":289.0,"pitch":144.25,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":91.0625,"pitch":114.1875,"roll":48.5},"location":"Left Ankle"},{"euler":{"heading":118.5625,"pitch":7.4375,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":44.25,"pitch":-111.5,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":111.6875,"pitch":129.3125,"roll":19.8125},"location":"Right Knee"},{"euler":{"heading":75.0625,"pitch":-98.0625,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:21.48"} +{"sensors":[{"euler":{"heading":295.0,"pitch":140.3125,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":94.5,"pitch":115.25,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":135.1875,"pitch":31.375,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":44.5,"pitch":-112.3125,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":92.6875,"pitch":126.4375,"roll":5.625},"location":"Right Knee"},{"euler":{"heading":80.0625,"pitch":-98.5625,"roll":67.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:21.149"} +{"sensors":[{"euler":{"heading":299.5,"pitch":138.125,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":97.4375,"pitch":118.75,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":55.4375,"pitch":44.25,"roll":44.0},"location":"Right Ankle"},{"euler":{"heading":37.6875,"pitch":-116.625,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":83.0,"pitch":122.9375,"roll":-2.75},"location":"Right Knee"},{"euler":{"heading":79.375,"pitch":-101.0625,"roll":70.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:21.250"} +{"sensors":[{"euler":{"heading":302.5625,"pitch":137.625,"roll":24.1875},"location":"Left Knee"},{"euler":{"heading":99.1875,"pitch":126.5,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":137.25,"pitch":45.125,"roll":45.5},"location":"Right Ankle"},{"euler":{"heading":29.4375,"pitch":-120.375,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":86.5,"pitch":114.875,"roll":-1.25},"location":"Right Knee"},{"euler":{"heading":76.6875,"pitch":-110.9375,"roll":73.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:21.351"} +{"sensors":[{"euler":{"heading":318.125,"pitch":134.4375,"roll":15.25},"location":"Left Knee"},{"euler":{"heading":114.125,"pitch":156.4375,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":128.3125,"pitch":40.25,"roll":48.5},"location":"Right Ankle"},{"euler":{"heading":29.6875,"pitch":-120.0,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":89.625,"pitch":110.6875,"roll":2.625},"location":"Right Knee"},{"euler":{"heading":69.5,"pitch":-117.375,"roll":70.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:21.452"} +{"sensors":[{"euler":{"heading":327.4375,"pitch":135.375,"roll":10.75},"location":"Left Knee"},{"euler":{"heading":124.9375,"pitch":178.1875,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":125.25,"pitch":37.5625,"roll":49.3125},"location":"Right Ankle"},{"euler":{"heading":22.625,"pitch":-124.0,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":90.625,"pitch":109.375,"roll":5.875},"location":"Right Knee"},{"euler":{"heading":58.875,"pitch":-97.875,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:21.553"} +{"sensors":[{"euler":{"heading":186.8125,"pitch":143.0,"roll":18.75},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":146.0,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":122.5625,"pitch":34.0,"roll":49.9375},"location":"Right Ankle"},{"euler":{"heading":21.375,"pitch":-124.8125,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":91.1875,"pitch":110.0625,"roll":8.9375},"location":"Right Knee"},{"euler":{"heading":55.5,"pitch":-103.75,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:21.653"} +{"sensors":[{"euler":{"heading":199.375,"pitch":156.4375,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":82.25,"pitch":113.375,"roll":49.875},"location":"Left Ankle"},{"euler":{"heading":118.8125,"pitch":30.0,"roll":51.6875},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-125.75,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":93.9375,"pitch":111.1875,"roll":12.4375},"location":"Right Knee"},{"euler":{"heading":50.9375,"pitch":-110.75,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:21.754"} +{"sensors":[{"euler":{"heading":213.1875,"pitch":167.0,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":60.125,"pitch":105.125,"roll":30.8125},"location":"Left Ankle"},{"euler":{"heading":113.875,"pitch":22.5,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":21.0625,"pitch":-127.4375,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":97.6875,"pitch":113.0625,"roll":16.875},"location":"Right Knee"},{"euler":{"heading":54.0,"pitch":-116.625,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:21.856"} +{"sensors":[{"euler":{"heading":218.75,"pitch":169.0,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":57.4375,"pitch":105.3125,"roll":27.125},"location":"Left Ankle"},{"euler":{"heading":108.3125,"pitch":13.9375,"roll":54.8125},"location":"Right Ankle"},{"euler":{"heading":20.75,"pitch":-134.5625,"roll":70.25},"location":"Right Hip"},{"euler":{"heading":103.4375,"pitch":116.9375,"roll":22.0625},"location":"Right Knee"},{"euler":{"heading":58.875,"pitch":-122.75,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:21.956"} +{"sensors":[{"euler":{"heading":218.25,"pitch":159.9375,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":73.8125,"pitch":111.875,"roll":36.0},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":-3.125,"roll":53.9375},"location":"Right Ankle"},{"euler":{"heading":20.6875,"pitch":-136.5625,"roll":70.0},"location":"Right Hip"},{"euler":{"heading":113.4375,"pitch":122.375,"roll":29.5625},"location":"Right Knee"},{"euler":{"heading":61.9375,"pitch":-125.375,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:22.56"} +{"sensors":[{"euler":{"heading":213.0,"pitch":152.75,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":82.0625,"pitch":114.1875,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":-20.875,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":30.125,"pitch":-123.9375,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":126.5625,"pitch":126.5625,"roll":37.3125},"location":"Right Knee"},{"euler":{"heading":64.4375,"pitch":-127.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:22.156"} +{"sensors":[{"euler":{"heading":283.6875,"pitch":148.125,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":87.5,"pitch":115.0625,"roll":45.9375},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":-10.8125,"roll":54.375},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-114.9375,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":125.5625,"pitch":126.75,"roll":32.9375},"location":"Right Knee"},{"euler":{"heading":66.4375,"pitch":-133.6875,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:22.258"} +{"sensors":[{"euler":{"heading":289.25,"pitch":143.5625,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":92.0625,"pitch":116.0625,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":119.625,"pitch":13.9375,"roll":56.75},"location":"Right Ankle"},{"euler":{"heading":42.1875,"pitch":-112.5625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":110.5625,"pitch":125.875,"roll":18.125},"location":"Right Knee"},{"euler":{"heading":67.75,"pitch":-139.125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:22.360"} +{"sensors":[{"euler":{"heading":293.0625,"pitch":140.5,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":118.1875,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":134.9375,"pitch":37.9375,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":41.0,"pitch":-114.3125,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":90.875,"pitch":122.8125,"roll":3.5},"location":"Right Knee"},{"euler":{"heading":69.1875,"pitch":-145.8125,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:22.463"} +{"sensors":[{"euler":{"heading":298.25,"pitch":137.75,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":122.6875,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":56.0,"pitch":45.6875,"roll":43.4375},"location":"Right Ankle"},{"euler":{"heading":34.0,"pitch":-119.375,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":82.1875,"pitch":121.6875,"roll":-3.625},"location":"Right Knee"},{"euler":{"heading":70.375,"pitch":-149.9375,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:22.564"} +{"sensors":[{"euler":{"heading":305.9375,"pitch":135.4375,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":106.6875,"pitch":133.75,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":137.1875,"pitch":43.75,"roll":46.75},"location":"Right Ankle"},{"euler":{"heading":30.3125,"pitch":-121.75,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":86.1875,"pitch":115.625,"roll":-0.5625},"location":"Right Knee"},{"euler":{"heading":73.5625,"pitch":-155.375,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:22.665"} +{"sensors":[{"euler":{"heading":322.1875,"pitch":133.1875,"roll":13.625},"location":"Left Knee"},{"euler":{"heading":123.875,"pitch":175.375,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":128.0,"pitch":36.9375,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":29.625,"pitch":-122.0625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":89.4375,"pitch":113.8125,"roll":4.125},"location":"Right Knee"},{"euler":{"heading":66.5,"pitch":-142.25,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:22.766"} +{"sensors":[{"euler":{"heading":328.5,"pitch":135.1875,"roll":11.1875},"location":"Left Knee"},{"euler":{"heading":125.4375,"pitch":174.5,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":124.3125,"pitch":33.5,"roll":50.0625},"location":"Right Ankle"},{"euler":{"heading":25.0,"pitch":-124.0625,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":88.625,"pitch":111.5625,"roll":6.625},"location":"Right Knee"},{"euler":{"heading":57.25,"pitch":-119.75,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:22.869"} +{"sensors":[{"euler":{"heading":191.125,"pitch":144.8125,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":104.375,"pitch":131.8125,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":120.9375,"pitch":29.5625,"roll":51.0},"location":"Right Ankle"},{"euler":{"heading":23.4375,"pitch":-123.75,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":90.6875,"pitch":111.9375,"roll":9.8125},"location":"Right Knee"},{"euler":{"heading":52.0625,"pitch":-117.1875,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:22.969"} +{"sensors":[{"euler":{"heading":205.375,"pitch":159.4375,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":70.625,"pitch":110.5625,"roll":40.375},"location":"Left Ankle"},{"euler":{"heading":117.375,"pitch":24.5,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":22.3125,"pitch":-125.375,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":93.6875,"pitch":113.5,"roll":13.4375},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-116.125,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:23.70"} +{"sensors":[{"euler":{"heading":216.8125,"pitch":170.375,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":55.375,"pitch":102.9375,"roll":26.6875},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":15.6875,"roll":52.9375},"location":"Right Ankle"},{"euler":{"heading":22.625,"pitch":-128.1875,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":98.9375,"pitch":116.4375,"roll":18.625},"location":"Right Knee"},{"euler":{"heading":54.125,"pitch":-120.875,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:23.171"} +{"sensors":[{"euler":{"heading":218.9375,"pitch":165.4375,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":62.6875,"pitch":107.125,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":104.0625,"pitch":3.625,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-135.75,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":107.6875,"pitch":120.3125,"roll":25.0},"location":"Right Knee"},{"euler":{"heading":60.0,"pitch":-123.75,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:23.273"} +{"sensors":[{"euler":{"heading":217.0625,"pitch":156.75,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":78.25,"pitch":110.5,"roll":39.75},"location":"Left Ankle"},{"euler":{"heading":96.6875,"pitch":-14.5,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":25.875,"pitch":-132.5,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":121.0,"pitch":128.5625,"roll":33.4375},"location":"Right Knee"},{"euler":{"heading":60.6875,"pitch":-125.625,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:23.373"} +{"sensors":[{"euler":{"heading":278.6875,"pitch":151.25,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":85.625,"pitch":111.5,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":-26.4375,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":33.0,"pitch":-118.6875,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":127.8125,"pitch":131.3125,"roll":36.25},"location":"Right Knee"},{"euler":{"heading":63.5,"pitch":-128.6875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:23.474"} +{"sensors":[{"euler":{"heading":281.875,"pitch":147.6875,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":89.9375,"pitch":112.3125,"roll":47.5625},"location":"Left Ankle"},{"euler":{"heading":107.8125,"pitch":-4.8125,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":39.25,"pitch":-113.1875,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":113.75,"pitch":124.5,"roll":24.8125},"location":"Right Knee"},{"euler":{"heading":64.3125,"pitch":-133.75,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:23.579"} +{"sensors":[{"euler":{"heading":287.5625,"pitch":143.9375,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":113.875,"roll":50.5625},"location":"Left Ankle"},{"euler":{"heading":124.5625,"pitch":21.375,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":39.9375,"pitch":-113.5,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":99.125,"pitch":123.125,"roll":10.625},"location":"Right Knee"},{"euler":{"heading":65.3125,"pitch":-140.375,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:23.680"} +{"sensors":[{"euler":{"heading":293.6875,"pitch":140.0,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":97.5625,"pitch":117.8125,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":140.375,"pitch":40.4375,"roll":47.9375},"location":"Right Ankle"},{"euler":{"heading":35.9375,"pitch":-118.75,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":82.0625,"pitch":123.3125,"roll":-2.3125},"location":"Right Knee"},{"euler":{"heading":66.8125,"pitch":-145.1875,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:23.781"} +{"sensors":[{"euler":{"heading":300.4375,"pitch":136.75,"roll":27.5},"location":"Left Knee"},{"euler":{"heading":101.9375,"pitch":124.8125,"roll":58.5625},"location":"Left Ankle"},{"euler":{"heading":139.25,"pitch":41.6875,"roll":47.1875},"location":"Right Ankle"},{"euler":{"heading":31.0,"pitch":-121.875,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":84.5,"pitch":119.5,"roll":-2.1875},"location":"Right Knee"},{"euler":{"heading":68.1875,"pitch":-150.25,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:23.882"} +{"sensors":[{"euler":{"heading":313.8125,"pitch":132.875,"roll":19.5},"location":"Left Knee"},{"euler":{"heading":112.25,"pitch":148.875,"roll":64.625},"location":"Left Ankle"},{"euler":{"heading":127.5625,"pitch":34.8125,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-121.5625,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":86.875,"pitch":114.9375,"roll":1.6875},"location":"Right Knee"},{"euler":{"heading":70.0625,"pitch":-146.25,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:23.984"} +{"sensors":[{"euler":{"heading":325.0625,"pitch":133.75,"roll":12.3125},"location":"Left Knee"},{"euler":{"heading":121.4375,"pitch":174.4375,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":124.0625,"pitch":31.4375,"roll":51.0},"location":"Right Ankle"},{"euler":{"heading":24.1875,"pitch":-125.6875,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":87.1875,"pitch":113.5625,"roll":4.4375},"location":"Right Knee"},{"euler":{"heading":56.375,"pitch":-126.25,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:24.85"} +{"sensors":[{"euler":{"heading":187.0,"pitch":140.6875,"roll":17.8125},"location":"Left Knee"},{"euler":{"heading":109.75,"pitch":141.3125,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":120.0625,"pitch":28.1875,"roll":51.0625},"location":"Right Ankle"},{"euler":{"heading":23.0625,"pitch":-124.5,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":88.8125,"pitch":112.6875,"roll":7.5625},"location":"Right Knee"},{"euler":{"heading":51.75,"pitch":-120.5,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:24.186"} +{"sensors":[{"euler":{"heading":200.25,"pitch":154.6875,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":78.0,"pitch":114.9375,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":116.1875,"pitch":24.5,"roll":52.25},"location":"Right Ankle"},{"euler":{"heading":22.125,"pitch":-123.1875,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":90.375,"pitch":112.5,"roll":10.625},"location":"Right Knee"},{"euler":{"heading":48.75,"pitch":-117.3125,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:24.286"} +{"sensors":[{"euler":{"heading":213.6875,"pitch":166.0,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":60.625,"pitch":105.4375,"roll":31.9375},"location":"Left Ankle"},{"euler":{"heading":112.0,"pitch":17.875,"roll":53.125},"location":"Right Ankle"},{"euler":{"heading":22.9375,"pitch":-125.8125,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":95.1875,"pitch":115.1875,"roll":15.3125},"location":"Right Knee"},{"euler":{"heading":52.625,"pitch":-120.25,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:24.386"} +{"sensors":[{"euler":{"heading":219.5,"pitch":169.625,"roll":36.8125},"location":"Left Knee"},{"euler":{"heading":57.4375,"pitch":104.8125,"roll":26.6875},"location":"Left Ankle"},{"euler":{"heading":105.75,"pitch":7.3125,"roll":54.75},"location":"Right Ankle"},{"euler":{"heading":23.375,"pitch":-132.5,"roll":70.8125},"location":"Right Hip"},{"euler":{"heading":102.0,"pitch":119.625,"roll":20.8125},"location":"Right Knee"},{"euler":{"heading":59.0,"pitch":-123.9375,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:24.487"} +{"sensors":[{"euler":{"heading":220.6875,"pitch":161.125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":72.375,"pitch":110.375,"roll":35.625},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":-7.4375,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":22.4375,"pitch":-138.0625,"roll":70.5625},"location":"Right Hip"},{"euler":{"heading":113.1875,"pitch":125.75,"roll":28.6875},"location":"Right Knee"},{"euler":{"heading":62.75,"pitch":-127.125,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:24.587"} +{"sensors":[{"euler":{"heading":278.375,"pitch":152.75,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":84.25,"pitch":111.375,"roll":42.3125},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":-26.5625,"roll":50.1875},"location":"Right Ankle"},{"euler":{"heading":29.4375,"pitch":-121.0,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":124.625,"pitch":128.625,"roll":37.25},"location":"Right Knee"},{"euler":{"heading":64.3125,"pitch":-127.875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:24.688"} +{"sensors":[{"euler":{"heading":283.5625,"pitch":147.5625,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":89.0625,"pitch":111.4375,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":96.8125,"pitch":-18.75,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":36.25,"pitch":-111.5625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":120.75,"pitch":128.8125,"roll":32.0625},"location":"Right Knee"},{"euler":{"heading":67.125,"pitch":-132.5,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:24.791"} +{"sensors":[{"euler":{"heading":288.0625,"pitch":143.75,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":92.375,"pitch":112.9375,"roll":48.875},"location":"Left Ankle"},{"euler":{"heading":117.25,"pitch":10.6875,"roll":56.9375},"location":"Right Ankle"},{"euler":{"heading":40.4375,"pitch":-110.6875,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":106.25,"pitch":125.875,"roll":18.375},"location":"Right Knee"},{"euler":{"heading":68.25,"pitch":-136.8125,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:24.892"} +{"sensors":[{"euler":{"heading":293.875,"pitch":140.5,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":98.0625,"pitch":115.5,"roll":52.0625},"location":"Left Ankle"},{"euler":{"heading":131.5625,"pitch":32.25,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":37.625,"pitch":-114.0625,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":89.5,"pitch":123.4375,"roll":3.625},"location":"Right Knee"},{"euler":{"heading":68.5625,"pitch":-140.6875,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:24.992"} +{"sensors":[{"euler":{"heading":298.625,"pitch":137.9375,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":101.75,"pitch":120.0,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":144.1875,"pitch":42.3125,"roll":45.0625},"location":"Right Ankle"},{"euler":{"heading":32.4375,"pitch":-118.5625,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":77.3125,"pitch":123.75,"roll":-5.6875},"location":"Right Knee"},{"euler":{"heading":69.875,"pitch":-145.6875,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:25.93"} +{"sensors":[{"euler":{"heading":305.875,"pitch":135.5,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":107.25,"pitch":130.1875,"roll":60.625},"location":"Left Ankle"},{"euler":{"heading":136.375,"pitch":39.4375,"roll":48.4375},"location":"Right Ankle"},{"euler":{"heading":28.75,"pitch":-120.75,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":83.375,"pitch":119.1875,"roll":-1.8125},"location":"Right Knee"},{"euler":{"heading":72.1875,"pitch":-152.25,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:25.193"} +{"sensors":[{"euler":{"heading":320.3125,"pitch":133.75,"roll":14.875},"location":"Left Knee"},{"euler":{"heading":123.5,"pitch":165.5,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":126.8125,"pitch":33.9375,"roll":51.1875},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-120.5,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":87.1875,"pitch":114.6875,"roll":2.25},"location":"Right Knee"},{"euler":{"heading":67.375,"pitch":-142.125,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:25.294"} +{"sensors":[{"euler":{"heading":180.3125,"pitch":136.5,"roll":11.75},"location":"Left Knee"},{"euler":{"heading":121.0625,"pitch":165.25,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":122.625,"pitch":30.1875,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-122.4375,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":87.8125,"pitch":112.8125,"roll":5.25},"location":"Right Knee"},{"euler":{"heading":57.8125,"pitch":-120.5625,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:25.394"} +{"sensors":[{"euler":{"heading":190.375,"pitch":146.25,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":102.375,"pitch":130.4375,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":117.625,"pitch":26.9375,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":19.375,"pitch":-120.1875,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":88.6875,"pitch":110.625,"roll":8.25},"location":"Right Knee"},{"euler":{"heading":52.125,"pitch":-118.125,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:25.495"} +{"sensors":[{"euler":{"heading":204.0625,"pitch":159.4375,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":71.1875,"pitch":110.875,"roll":40.0},"location":"Left Ankle"},{"euler":{"heading":113.25,"pitch":23.3125,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":17.25,"pitch":-120.4375,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":91.1875,"pitch":110.5625,"roll":11.5625},"location":"Right Knee"},{"euler":{"heading":44.9375,"pitch":-121.5,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:25.596"} +{"sensors":[{"euler":{"heading":215.6875,"pitch":168.3125,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":56.5,"pitch":103.0625,"roll":27.25},"location":"Left Ankle"},{"euler":{"heading":108.5625,"pitch":17.625,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":16.5625,"pitch":-122.375,"roll":71.9375},"location":"Right Hip"},{"euler":{"heading":96.0,"pitch":112.6875,"roll":16.375},"location":"Right Knee"},{"euler":{"heading":53.6875,"pitch":-121.5625,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:25.696"} +{"sensors":[{"euler":{"heading":218.6875,"pitch":163.3125,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":65.5,"pitch":109.75,"roll":29.8125},"location":"Left Ankle"},{"euler":{"heading":101.0625,"pitch":2.625,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":16.875,"pitch":-128.875,"roll":73.3125},"location":"Right Hip"},{"euler":{"heading":104.0,"pitch":117.625,"roll":22.8125},"location":"Right Knee"},{"euler":{"heading":59.5625,"pitch":-124.3125,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:25.797"} +{"sensors":[{"euler":{"heading":216.875,"pitch":155.9375,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":80.25,"pitch":113.125,"roll":39.75},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":-16.4375,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":20.875,"pitch":-126.4375,"roll":70.25},"location":"Right Hip"},{"euler":{"heading":116.0625,"pitch":125.6875,"roll":31.1875},"location":"Right Knee"},{"euler":{"heading":59.5,"pitch":-127.5,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:25.898"} +{"sensors":[{"euler":{"heading":286.5,"pitch":148.5625,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":114.3125,"roll":44.6875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":-21.9375,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":29.3125,"pitch":-113.8125,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":121.6875,"pitch":126.625,"roll":34.0},"location":"Right Knee"},{"euler":{"heading":65.75,"pitch":-131.8125,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:25.999"} +{"sensors":[{"euler":{"heading":292.625,"pitch":143.6875,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":96.0625,"pitch":116.5,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":106.5,"pitch":-4.125,"roll":56.25},"location":"Right Ankle"},{"euler":{"heading":36.4375,"pitch":-112.25,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":109.9375,"pitch":125.0625,"roll":22.75},"location":"Right Knee"},{"euler":{"heading":69.25,"pitch":-138.0625,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:26.100"} +{"sensors":[{"euler":{"heading":298.3125,"pitch":140.0,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":119.9375,"roll":52.25},"location":"Left Ankle"},{"euler":{"heading":122.9375,"pitch":18.9375,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":37.1875,"pitch":-112.8125,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":95.4375,"pitch":124.1875,"roll":8.8125},"location":"Right Knee"},{"euler":{"heading":70.0,"pitch":-144.3125,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:26.200"} +{"sensors":[{"euler":{"heading":305.25,"pitch":137.125,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":125.5,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":140.5,"pitch":40.25,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":31.375,"pitch":-118.0625,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":78.875,"pitch":123.25,"roll":-4.25},"location":"Right Knee"},{"euler":{"heading":71.25,"pitch":-148.3125,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:26.302"} +{"sensors":[{"euler":{"heading":312.4375,"pitch":134.0,"roll":24.0625},"location":"Left Knee"},{"euler":{"heading":112.375,"pitch":135.0,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":140.375,"pitch":40.8125,"roll":46.375},"location":"Right Ankle"},{"euler":{"heading":26.75,"pitch":-121.5625,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":78.875,"pitch":121.0625,"roll":-5.0},"location":"Right Knee"},{"euler":{"heading":73.5625,"pitch":-155.3125,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:26.403"} +{"sensors":[{"euler":{"heading":324.0625,"pitch":133.0,"roll":14.8125},"location":"Left Knee"},{"euler":{"heading":123.6875,"pitch":163.5,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":129.8125,"pitch":30.5,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":28.6875,"pitch":-122.3125,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":83.0625,"pitch":118.125,"roll":-0.125},"location":"Right Knee"},{"euler":{"heading":72.5625,"pitch":-146.6875,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:26.504"} +{"sensors":[{"euler":{"heading":333.375,"pitch":133.3125,"roll":10.3125},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":169.25,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":125.625,"pitch":27.375,"roll":51.5625},"location":"Right Ankle"},{"euler":{"heading":24.5,"pitch":-123.3125,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":83.9375,"pitch":116.75,"roll":3.1875},"location":"Right Knee"},{"euler":{"heading":63.3125,"pitch":-123.0,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:26.605"} +{"sensors":[{"euler":{"heading":190.375,"pitch":142.375,"roll":19.6875},"location":"Left Knee"},{"euler":{"heading":104.75,"pitch":133.8125,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":122.6875,"pitch":23.5625,"roll":51.6875},"location":"Right Ankle"},{"euler":{"heading":22.625,"pitch":-123.75,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":85.625,"pitch":116.0,"roll":6.0625},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-118.0,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:26.705"} +{"sensors":[{"euler":{"heading":204.375,"pitch":155.5625,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":75.375,"pitch":112.6875,"roll":41.8125},"location":"Left Ankle"},{"euler":{"heading":119.75,"pitch":19.0,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-125.25,"roll":69.5625},"location":"Right Hip"},{"euler":{"heading":88.0,"pitch":117.875,"roll":9.25},"location":"Right Knee"},{"euler":{"heading":52.5625,"pitch":-116.25,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:26.806"} +{"sensors":[{"euler":{"heading":216.1875,"pitch":166.8125,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":58.25,"pitch":103.5625,"roll":27.5625},"location":"Left Ankle"},{"euler":{"heading":114.125,"pitch":12.125,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-126.1875,"roll":71.25},"location":"Right Hip"},{"euler":{"heading":96.4375,"pitch":119.5625,"roll":15.75},"location":"Right Knee"},{"euler":{"heading":56.3125,"pitch":-119.1875,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:26.906"} +{"sensors":[{"euler":{"heading":219.9375,"pitch":165.5,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":65.25,"pitch":106.8125,"roll":29.9375},"location":"Left Ankle"},{"euler":{"heading":105.6875,"pitch":-1.125,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-133.75,"roll":73.6875},"location":"Right Hip"},{"euler":{"heading":105.75,"pitch":123.125,"roll":22.625},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-122.3125,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:27.8"} +{"sensors":[{"euler":{"heading":217.625,"pitch":157.8125,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":76.0,"pitch":109.6875,"roll":37.875},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":-18.6875,"roll":52.5},"location":"Right Ankle"},{"euler":{"heading":21.5625,"pitch":-125.5625,"roll":71.1875},"location":"Right Hip"},{"euler":{"heading":117.9375,"pitch":128.75,"roll":31.3125},"location":"Right Knee"},{"euler":{"heading":60.5625,"pitch":-123.1875,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:27.108"} +{"sensors":[{"euler":{"heading":213.75,"pitch":151.75,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":81.5,"pitch":110.4375,"roll":42.375},"location":"Left Ankle"},{"euler":{"heading":94.1875,"pitch":-22.0625,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":29.0625,"pitch":-113.8125,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":123.0625,"pitch":129.6875,"roll":33.625},"location":"Right Knee"},{"euler":{"heading":63.4375,"pitch":-129.0625,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:27.209"} +{"sensors":[{"euler":{"heading":283.6875,"pitch":147.9375,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":87.0625,"pitch":111.6875,"roll":46.3125},"location":"Left Ankle"},{"euler":{"heading":110.5625,"pitch":2.6875,"roll":58.6875},"location":"Right Ankle"},{"euler":{"heading":34.625,"pitch":-111.3125,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":111.0,"pitch":124.625,"roll":22.8125},"location":"Right Knee"},{"euler":{"heading":66.1875,"pitch":-134.6875,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:27.310"} +{"sensors":[{"euler":{"heading":289.6875,"pitch":144.4375,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":91.8125,"pitch":113.5,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":125.375,"pitch":24.8125,"roll":57.75},"location":"Right Ankle"},{"euler":{"heading":36.3125,"pitch":-112.8125,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":96.125,"pitch":123.5,"roll":9.3125},"location":"Right Knee"},{"euler":{"heading":67.0,"pitch":-140.0,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:27.411"} +{"sensors":[{"euler":{"heading":295.5625,"pitch":141.0625,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":96.5,"pitch":116.9375,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":142.9375,"pitch":39.25,"roll":48.75},"location":"Right Ankle"},{"euler":{"heading":34.3125,"pitch":-116.125,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":81.375,"pitch":125.5,"roll":-2.4375},"location":"Right Knee"},{"euler":{"heading":69.0625,"pitch":-144.375,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:27.512"} +{"sensors":[{"euler":{"heading":301.25,"pitch":138.25,"roll":26.125},"location":"Left Knee"},{"euler":{"heading":102.4375,"pitch":123.625,"roll":59.1875},"location":"Left Ankle"},{"euler":{"heading":143.0625,"pitch":43.5625,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":29.25,"pitch":-118.625,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":79.9375,"pitch":120.8125,"roll":-3.8125},"location":"Right Knee"},{"euler":{"heading":70.0625,"pitch":-151.0,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:27.613"} +{"sensors":[{"euler":{"heading":309.75,"pitch":135.9375,"roll":18.875},"location":"Left Knee"},{"euler":{"heading":110.375,"pitch":144.75,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":131.0,"pitch":36.5,"roll":50.6875},"location":"Right Ankle"},{"euler":{"heading":27.6875,"pitch":-121.5,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":84.625,"pitch":116.25,"roll":0.9375},"location":"Right Knee"},{"euler":{"heading":69.125,"pitch":-152.0,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:27.714"} +{"sensors":[{"euler":{"heading":331.3125,"pitch":132.6875,"roll":9.9375},"location":"Left Knee"},{"euler":{"heading":128.8125,"pitch":175.9375,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":124.75,"pitch":32.6875,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":23.25,"pitch":-121.1875,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":86.5625,"pitch":112.5625,"roll":4.5},"location":"Right Knee"},{"euler":{"heading":61.5,"pitch":-130.375,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:27.815"} +{"sensors":[{"euler":{"heading":183.125,"pitch":137.8125,"roll":12.1875},"location":"Left Knee"},{"euler":{"heading":115.4375,"pitch":150.625,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":120.625,"pitch":29.1875,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-120.5,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":88.375,"pitch":111.75,"roll":7.75},"location":"Right Knee"},{"euler":{"heading":55.5,"pitch":-118.625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:27.916"} +{"sensors":[{"euler":{"heading":195.75,"pitch":149.75,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":118.5,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":116.875,"pitch":25.5625,"roll":52.9375},"location":"Right Ankle"},{"euler":{"heading":20.0625,"pitch":-117.9375,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":90.875,"pitch":111.5625,"roll":11.0},"location":"Right Knee"},{"euler":{"heading":50.0625,"pitch":-114.3125,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:28.17"} +{"sensors":[{"euler":{"heading":208.875,"pitch":162.9375,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":62.625,"pitch":104.0625,"roll":33.5},"location":"Left Ankle"},{"euler":{"heading":112.6875,"pitch":20.875,"roll":53.5625},"location":"Right Ankle"},{"euler":{"heading":19.0625,"pitch":-119.625,"roll":71.625},"location":"Right Hip"},{"euler":{"heading":94.8125,"pitch":112.625,"roll":15.0},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-117.125,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:28.117"} +{"sensors":[{"euler":{"heading":216.4375,"pitch":165.375,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":60.625,"pitch":105.5625,"roll":28.8125},"location":"Left Ankle"},{"euler":{"heading":106.5,"pitch":8.625,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":18.375,"pitch":-125.125,"roll":73.8125},"location":"Right Hip"},{"euler":{"heading":101.4375,"pitch":117.0625,"roll":20.8125},"location":"Right Knee"},{"euler":{"heading":58.0625,"pitch":-122.75,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:28.220"} +{"sensors":[{"euler":{"heading":215.75,"pitch":155.375,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":77.0625,"pitch":110.25,"roll":38.375},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":-8.3125,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":18.5,"pitch":-125.4375,"roll":72.625},"location":"Right Hip"},{"euler":{"heading":114.5625,"pitch":124.6875,"roll":29.9375},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-124.8125,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:28.323"} +{"sensors":[{"euler":{"heading":283.6875,"pitch":149.4375,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":111.625,"roll":42.8125},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":-23.0625,"roll":54.4375},"location":"Right Ankle"},{"euler":{"heading":25.9375,"pitch":-116.0625,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":124.6875,"pitch":129.4375,"roll":35.3125},"location":"Right Knee"},{"euler":{"heading":63.125,"pitch":-129.3125,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:28.424"} +{"sensors":[{"euler":{"heading":289.9375,"pitch":144.9375,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":113.1875,"roll":46.625},"location":"Left Ankle"},{"euler":{"heading":103.125,"pitch":-10.5,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":33.75,"pitch":-111.75,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":117.875,"pitch":126.375,"roll":27.6875},"location":"Right Knee"},{"euler":{"heading":66.375,"pitch":-133.6875,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:28.524"} +{"sensors":[{"euler":{"heading":291.5,"pitch":143.0,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":92.75,"pitch":114.8125,"roll":50.25},"location":"Left Ankle"},{"euler":{"heading":121.25,"pitch":17.8125,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":38.1875,"pitch":-112.75,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":103.3125,"pitch":124.0625,"roll":15.5625},"location":"Right Knee"},{"euler":{"heading":65.75,"pitch":-140.375,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:28.625"} +{"sensors":[{"euler":{"heading":298.5,"pitch":139.625,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":98.1875,"pitch":118.125,"roll":53.75},"location":"Left Ankle"},{"euler":{"heading":133.8125,"pitch":38.375,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-114.875,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":89.5625,"pitch":120.875,"roll":2.9375},"location":"Right Knee"},{"euler":{"heading":67.5625,"pitch":-145.6875,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:28.725"} +{"sensors":[{"euler":{"heading":304.3125,"pitch":137.1875,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":104.125,"pitch":124.625,"roll":58.75},"location":"Left Ankle"},{"euler":{"heading":142.9375,"pitch":44.875,"roll":45.0},"location":"Right Ankle"},{"euler":{"heading":26.4375,"pitch":-120.5,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":79.625,"pitch":119.4375,"roll":-4.9375},"location":"Right Knee"},{"euler":{"heading":68.3125,"pitch":-150.9375,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:28.826"} +{"sensors":[{"euler":{"heading":314.75,"pitch":135.375,"roll":17.75},"location":"Left Knee"},{"euler":{"heading":109.875,"pitch":141.75,"roll":64.0625},"location":"Left Ankle"},{"euler":{"heading":133.8125,"pitch":39.0625,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":23.625,"pitch":-123.5,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":81.5625,"pitch":115.875,"roll":-2.25},"location":"Right Knee"},{"euler":{"heading":71.8125,"pitch":-155.6875,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:28.926"} +{"sensors":[{"euler":{"heading":334.8125,"pitch":131.375,"roll":9.0},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":-179.625,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":127.5625,"pitch":34.0625,"roll":50.0},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-123.6875,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":83.625,"pitch":113.25,"roll":1.8125},"location":"Right Knee"},{"euler":{"heading":63.125,"pitch":-135.0625,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:29.27"} +{"sensors":[{"euler":{"heading":180.9375,"pitch":137.75,"roll":10.3125},"location":"Left Knee"},{"euler":{"heading":119.75,"pitch":157.5625,"roll":68.375},"location":"Left Ankle"},{"euler":{"heading":124.1875,"pitch":28.875,"roll":51.0625},"location":"Right Ankle"},{"euler":{"heading":20.4375,"pitch":-123.25,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":86.4375,"pitch":113.625,"roll":5.8125},"location":"Right Knee"},{"euler":{"heading":54.5625,"pitch":-118.8125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:29.128"} +{"sensors":[{"euler":{"heading":192.3125,"pitch":149.3125,"roll":23.5625},"location":"Left Knee"},{"euler":{"heading":89.5625,"pitch":119.875,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":121.0,"pitch":25.1875,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":19.3125,"pitch":-120.625,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":88.9375,"pitch":114.1875,"roll":9.375},"location":"Right Knee"},{"euler":{"heading":50.5,"pitch":-116.1875,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:29.229"} +{"sensors":[{"euler":{"heading":207.3125,"pitch":160.875,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":65.1875,"pitch":106.625,"roll":35.3125},"location":"Left Ankle"},{"euler":{"heading":116.3125,"pitch":19.9375,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":18.625,"pitch":-120.6875,"roll":71.0},"location":"Right Hip"},{"euler":{"heading":93.375,"pitch":114.3125,"roll":13.625},"location":"Right Knee"},{"euler":{"heading":50.625,"pitch":-115.6875,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:29.330"} +{"sensors":[{"euler":{"heading":216.125,"pitch":168.1875,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":56.0625,"pitch":102.0625,"roll":25.5625},"location":"Left Ankle"},{"euler":{"heading":110.4375,"pitch":10.875,"roll":54.1875},"location":"Right Ankle"},{"euler":{"heading":18.4375,"pitch":-125.375,"roll":73.0},"location":"Right Hip"},{"euler":{"heading":99.3125,"pitch":117.6875,"roll":18.8125},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-120.5,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:29.431"} +{"sensors":[{"euler":{"heading":218.4375,"pitch":160.625,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":67.625,"pitch":106.875,"roll":32.125},"location":"Left Ankle"},{"euler":{"heading":103.5,"pitch":-4.625,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":18.1875,"pitch":-132.3125,"roll":74.5},"location":"Right Hip"},{"euler":{"heading":109.0,"pitch":123.75,"roll":25.625},"location":"Right Knee"},{"euler":{"heading":62.0,"pitch":-124.25,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:29.531"} +{"sensors":[{"euler":{"heading":214.1875,"pitch":153.0,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":76.375,"pitch":109.1875,"roll":38.8125},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":-18.375,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":22.1875,"pitch":-122.5625,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":119.8125,"pitch":124.9375,"roll":34.8125},"location":"Right Knee"},{"euler":{"heading":62.5,"pitch":-128.0625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:29.632"} +{"sensors":[{"euler":{"heading":285.625,"pitch":148.375,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":81.875,"pitch":110.625,"roll":42.375},"location":"Left Ankle"},{"euler":{"heading":96.5625,"pitch":-16.125,"roll":54.8125},"location":"Right Ankle"},{"euler":{"heading":29.5625,"pitch":-114.5625,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":119.625,"pitch":127.125,"roll":31.875},"location":"Right Knee"},{"euler":{"heading":65.75,"pitch":-132.5625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:29.733"} +{"sensors":[{"euler":{"heading":290.6875,"pitch":144.6875,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":87.1875,"pitch":112.75,"roll":46.5625},"location":"Left Ankle"},{"euler":{"heading":114.6875,"pitch":6.625,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":37.0625,"pitch":-113.5,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":106.625,"pitch":126.5625,"roll":19.125},"location":"Right Knee"},{"euler":{"heading":68.1875,"pitch":-137.625,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:29.833"} +{"sensors":[{"euler":{"heading":295.375,"pitch":141.8125,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":92.75,"pitch":114.5,"roll":51.25},"location":"Left Ankle"},{"euler":{"heading":129.5625,"pitch":30.125,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":37.3125,"pitch":-113.8125,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":90.75,"pitch":123.625,"roll":5.5},"location":"Right Knee"},{"euler":{"heading":68.875,"pitch":-143.375,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:29.934"} +{"sensors":[{"euler":{"heading":300.25,"pitch":138.875,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":118.125,"roll":55.625},"location":"Left Ankle"},{"euler":{"heading":142.875,"pitch":42.0,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":31.5625,"pitch":-119.0625,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":78.3125,"pitch":122.6875,"roll":-4.5},"location":"Right Knee"},{"euler":{"heading":68.9375,"pitch":-147.4375,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:30.34"} +{"sensors":[{"euler":{"heading":309.9375,"pitch":135.75,"roll":22.0625},"location":"Left Knee"},{"euler":{"heading":105.0625,"pitch":128.5,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":139.0,"pitch":41.3125,"roll":47.25},"location":"Right Ankle"},{"euler":{"heading":25.4375,"pitch":-123.5625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":80.25,"pitch":117.75,"roll":-3.5625},"location":"Right Knee"},{"euler":{"heading":71.9375,"pitch":-155.125,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:30.136"} +{"sensors":[{"euler":{"heading":325.625,"pitch":133.5,"roll":12.5},"location":"Left Knee"},{"euler":{"heading":119.6875,"pitch":160.875,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":129.1875,"pitch":34.125,"roll":49.5625},"location":"Right Ankle"},{"euler":{"heading":25.3125,"pitch":-124.1875,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":83.8125,"pitch":114.3125,"roll":1.125},"location":"Right Knee"},{"euler":{"heading":65.8125,"pitch":-142.25,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:30.237"} +{"sensors":[{"euler":{"heading":336.5625,"pitch":132.9375,"roll":8.875},"location":"Left Knee"},{"euler":{"heading":120.5625,"pitch":164.625,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":123.8125,"pitch":31.5,"roll":50.5},"location":"Right Ankle"},{"euler":{"heading":21.0,"pitch":-123.8125,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":85.75,"pitch":111.9375,"roll":4.5},"location":"Right Knee"},{"euler":{"heading":59.8125,"pitch":-123.0,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:30.338"} +{"sensors":[{"euler":{"heading":190.125,"pitch":159.0625,"roll":18.9375},"location":"Left Knee"},{"euler":{"heading":98.3125,"pitch":124.4375,"roll":59.5},"location":"Left Ankle"},{"euler":{"heading":119.125,"pitch":28.0625,"roll":51.0},"location":"Right Ankle"},{"euler":{"heading":20.1875,"pitch":-120.625,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":87.8125,"pitch":111.0625,"roll":7.625},"location":"Right Knee"},{"euler":{"heading":52.5,"pitch":-118.6875,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:30.439"} +{"sensors":[{"euler":{"heading":204.0,"pitch":158.625,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":69.1875,"pitch":107.0,"roll":39.1875},"location":"Left Ankle"},{"euler":{"heading":115.375,"pitch":23.75,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":19.4375,"pitch":-122.0,"roll":70.3125},"location":"Right Hip"},{"euler":{"heading":91.8125,"pitch":112.3125,"roll":11.875},"location":"Right Knee"},{"euler":{"heading":50.0625,"pitch":-117.3125,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:30.539"} +{"sensors":[{"euler":{"heading":215.625,"pitch":167.3125,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":55.5,"pitch":100.4375,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":110.125,"pitch":15.625,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":19.5,"pitch":-125.1875,"roll":72.4375},"location":"Right Hip"},{"euler":{"heading":97.0625,"pitch":115.5,"roll":17.0},"location":"Right Knee"},{"euler":{"heading":55.375,"pitch":-122.25,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:30.640"} +{"sensors":[{"euler":{"heading":218.125,"pitch":161.3125,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":63.875,"pitch":105.375,"roll":29.6875},"location":"Left Ankle"},{"euler":{"heading":104.0,"pitch":2.1875,"roll":55.0625},"location":"Right Ankle"},{"euler":{"heading":19.0625,"pitch":-129.25,"roll":73.25},"location":"Right Hip"},{"euler":{"heading":106.1875,"pitch":121.3125,"roll":24.3125},"location":"Right Knee"},{"euler":{"heading":59.125,"pitch":-125.5625,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:30.741"} +{"sensors":[{"euler":{"heading":213.5,"pitch":154.9375,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":76.9375,"pitch":107.8125,"roll":39.6875},"location":"Left Ankle"},{"euler":{"heading":92.125,"pitch":-17.5,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-123.375,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":120.25,"pitch":124.0,"roll":34.4375},"location":"Right Knee"},{"euler":{"heading":57.125,"pitch":-125.75,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:30.842"} +{"sensors":[{"euler":{"heading":208.25,"pitch":150.75,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":80.0,"pitch":108.6875,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":-12.3125,"roll":57.75},"location":"Right Ankle"},{"euler":{"heading":31.4375,"pitch":-113.75,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":119.8125,"pitch":124.9375,"roll":30.125},"location":"Right Knee"},{"euler":{"heading":59.4375,"pitch":-129.375,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:30.943"} +{"sensors":[{"euler":{"heading":281.875,"pitch":147.6875,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":81.8125,"pitch":109.5,"roll":44.8125},"location":"Left Ankle"},{"euler":{"heading":116.8125,"pitch":10.9375,"roll":59.8125},"location":"Right Ankle"},{"euler":{"heading":36.0,"pitch":-113.5625,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":105.625,"pitch":123.9375,"roll":16.5625},"location":"Right Knee"},{"euler":{"heading":62.3125,"pitch":-135.25,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:31.43"} +{"sensors":[{"euler":{"heading":289.4375,"pitch":144.0,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":87.0,"pitch":112.4375,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":130.8125,"pitch":33.4375,"roll":54.5},"location":"Right Ankle"},{"euler":{"heading":36.5,"pitch":-114.25,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":89.0625,"pitch":122.375,"roll":2.875},"location":"Right Knee"},{"euler":{"heading":64.9375,"pitch":-141.3125,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:31.144"} +{"sensors":[{"euler":{"heading":297.625,"pitch":140.3125,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":92.5625,"pitch":116.1875,"roll":53.5},"location":"Left Ankle"},{"euler":{"heading":145.3125,"pitch":39.875,"roll":45.6875},"location":"Right Ankle"},{"euler":{"heading":33.1875,"pitch":-119.0625,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":75.625,"pitch":124.9375,"roll":-5.5625},"location":"Right Knee"},{"euler":{"heading":67.75,"pitch":-145.9375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:31.245"} +{"sensors":[{"euler":{"heading":306.25,"pitch":136.5625,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":125.0,"roll":58.6875},"location":"Left Ankle"},{"euler":{"heading":139.8125,"pitch":37.8125,"roll":47.6875},"location":"Right Ankle"},{"euler":{"heading":29.375,"pitch":-121.8125,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":81.5,"pitch":119.4375,"roll":-1.9375},"location":"Right Knee"},{"euler":{"heading":73.1875,"pitch":-153.5625,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:31.345"} +{"sensors":[{"euler":{"heading":322.75,"pitch":132.5625,"roll":15.0},"location":"Left Knee"},{"euler":{"heading":117.6875,"pitch":157.4375,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":130.1875,"pitch":30.1875,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":31.375,"pitch":-122.0625,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":84.125,"pitch":118.375,"roll":2.25},"location":"Right Knee"},{"euler":{"heading":73.125,"pitch":-146.875,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:31.446"} +{"sensors":[{"euler":{"heading":335.3125,"pitch":133.25,"roll":9.875},"location":"Left Knee"},{"euler":{"heading":117.6875,"pitch":162.0625,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":125.8125,"pitch":26.625,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":26.5,"pitch":-122.875,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":86.75,"pitch":116.9375,"roll":5.875},"location":"Right Knee"},{"euler":{"heading":63.9375,"pitch":-127.375,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:31.547"} +{"sensors":[{"euler":{"heading":191.75,"pitch":143.0625,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":99.4375,"pitch":125.625,"roll":58.875},"location":"Left Ankle"},{"euler":{"heading":122.5,"pitch":23.8125,"roll":51.0625},"location":"Right Ankle"},{"euler":{"heading":24.125,"pitch":-121.0625,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":88.75,"pitch":115.9375,"roll":8.875},"location":"Right Knee"},{"euler":{"heading":55.3125,"pitch":-121.6875,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:31.648"} +{"sensors":[{"euler":{"heading":204.6875,"pitch":157.5625,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":69.125,"pitch":107.5625,"roll":38.8125},"location":"Left Ankle"},{"euler":{"heading":119.25,"pitch":20.5,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-122.0,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":92.0625,"pitch":116.25,"roll":12.5625},"location":"Right Knee"},{"euler":{"heading":50.625,"pitch":-119.0625,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:31.749"} +{"sensors":[{"euler":{"heading":216.125,"pitch":166.1875,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":56.4375,"pitch":102.1875,"roll":26.0625},"location":"Left Ankle"},{"euler":{"heading":113.9375,"pitch":13.125,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":20.4375,"pitch":-125.1875,"roll":71.9375},"location":"Right Hip"},{"euler":{"heading":97.125,"pitch":119.0,"roll":17.1875},"location":"Right Knee"},{"euler":{"heading":54.6875,"pitch":-121.8125,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:31.850"} +{"sensors":[{"euler":{"heading":218.8125,"pitch":161.6875,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":64.375,"pitch":107.25,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":106.9375,"pitch":0.75,"roll":54.625},"location":"Right Ankle"},{"euler":{"heading":18.9375,"pitch":-134.8125,"roll":74.0},"location":"Right Hip"},{"euler":{"heading":105.0625,"pitch":123.8125,"roll":23.5},"location":"Right Knee"},{"euler":{"heading":61.6875,"pitch":-125.625,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:31.950"} +{"sensors":[{"euler":{"heading":216.375,"pitch":154.0625,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":77.9375,"pitch":110.5,"roll":38.75},"location":"Left Ankle"},{"euler":{"heading":96.4375,"pitch":-14.8125,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":22.5625,"pitch":-128.6875,"roll":70.9375},"location":"Right Hip"},{"euler":{"heading":118.0625,"pitch":128.125,"roll":47.75},"location":"Right Knee"},{"euler":{"heading":61.375,"pitch":-128.125,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:32.51"} +{"sensors":[{"euler":{"heading":287.8125,"pitch":148.0625,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":85.0625,"pitch":111.75,"roll":42.8125},"location":"Left Ankle"},{"euler":{"heading":97.0,"pitch":-17.0,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":29.9375,"pitch":-113.5625,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":122.25,"pitch":129.625,"roll":33.0625},"location":"Right Knee"},{"euler":{"heading":65.3125,"pitch":-132.0,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:32.151"} +{"sensors":[{"euler":{"heading":292.5625,"pitch":143.5625,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":91.125,"pitch":112.875,"roll":46.625},"location":"Left Ankle"},{"euler":{"heading":113.25,"pitch":2.375,"roll":57.875},"location":"Right Ankle"},{"euler":{"heading":37.625,"pitch":-111.0625,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":111.9375,"pitch":127.75,"roll":22.5625},"location":"Right Knee"},{"euler":{"heading":68.4375,"pitch":-137.25,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:32.252"} +{"sensors":[{"euler":{"heading":297.4375,"pitch":140.3125,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":95.5,"pitch":115.1875,"roll":50.25},"location":"Left Ankle"},{"euler":{"heading":127.875,"pitch":24.875,"roll":55.9375},"location":"Right Ankle"},{"euler":{"heading":38.0,"pitch":-113.0,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":80.4375,"pitch":125.0625,"roll":7.5},"location":"Right Knee"},{"euler":{"heading":68.625,"pitch":-143.1875,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:32.353"} +{"sensors":[{"euler":{"heading":304.4375,"pitch":137.1875,"roll":28.25},"location":"Left Knee"},{"euler":{"heading":99.8125,"pitch":119.4375,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":143.375,"pitch":38.75,"roll":47.25},"location":"Right Ankle"},{"euler":{"heading":32.1875,"pitch":-120.1875,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":80.0,"pitch":125.5,"roll":-3.5625},"location":"Right Knee"},{"euler":{"heading":69.8125,"pitch":-147.375,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:32.454"} +{"sensors":[{"euler":{"heading":312.3125,"pitch":134.0625,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":106.625,"pitch":128.25,"roll":59.5625},"location":"Left Ankle"},{"euler":{"heading":138.9375,"pitch":36.25,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":27.8125,"pitch":-123.625,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":82.9375,"pitch":122.25,"roll":-1.75},"location":"Right Knee"},{"euler":{"heading":73.4375,"pitch":-153.125,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:32.555"} +{"sensors":[{"euler":{"heading":326.9375,"pitch":131.125,"roll":14.1875},"location":"Left Knee"},{"euler":{"heading":121.9375,"pitch":161.5625,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":129.1875,"pitch":29.8125,"roll":51.0625},"location":"Right Ankle"},{"euler":{"heading":28.5,"pitch":-124.25,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":86.625,"pitch":118.5,"roll":2.3125},"location":"Right Knee"},{"euler":{"heading":71.375,"pitch":-144.1875,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:32.656"} +{"sensors":[{"euler":{"heading":337.125,"pitch":131.5625,"roll":9.9375},"location":"Left Knee"},{"euler":{"heading":126.125,"pitch":168.3125,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":124.3125,"pitch":28.625,"roll":51.1875},"location":"Right Ankle"},{"euler":{"heading":23.125,"pitch":-125.4375,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":87.25,"pitch":115.5,"roll":5.0},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-123.6875,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:32.756"} +{"sensors":[{"euler":{"heading":193.5625,"pitch":141.875,"roll":20.4375},"location":"Left Knee"},{"euler":{"heading":104.375,"pitch":127.5,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":119.0625,"pitch":25.5,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":19.9375,"pitch":-123.6875,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":89.1875,"pitch":112.75,"roll":8.3125},"location":"Right Knee"},{"euler":{"heading":53.6875,"pitch":-119.125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:32.857"} +{"sensors":[{"euler":{"heading":205.375,"pitch":159.3125,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":67.0,"pitch":105.375,"roll":37.375},"location":"Left Ankle"},{"euler":{"heading":115.0625,"pitch":21.625,"roll":52.9375},"location":"Right Ankle"},{"euler":{"heading":17.375,"pitch":-123.5,"roll":71.3125},"location":"Right Hip"},{"euler":{"heading":92.4375,"pitch":113.1875,"roll":12.0625},"location":"Right Knee"},{"euler":{"heading":49.125,"pitch":-118.0625,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:32.957"} +{"sensors":[{"euler":{"heading":217.5625,"pitch":168.25,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":53.4375,"pitch":101.6875,"roll":24.0625},"location":"Left Ankle"},{"euler":{"heading":109.1875,"pitch":14.3125,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":15.625,"pitch":-128.0625,"roll":73.9375},"location":"Right Hip"},{"euler":{"heading":98.1875,"pitch":115.4375,"roll":17.4375},"location":"Right Knee"},{"euler":{"heading":54.1875,"pitch":-123.3125,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:33.58"} +{"sensors":[{"euler":{"heading":218.875,"pitch":160.125,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":70.625,"pitch":110.5625,"roll":32.6875},"location":"Left Ankle"},{"euler":{"heading":102.0625,"pitch":-1.875,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":15.25,"pitch":-130.375,"roll":74.6875},"location":"Right Hip"},{"euler":{"heading":107.75,"pitch":120.4375,"roll":25.3125},"location":"Right Knee"},{"euler":{"heading":56.375,"pitch":-124.0625,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:33.159"} +{"sensors":[{"euler":{"heading":214.5625,"pitch":153.4375,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":79.5625,"pitch":113.0,"roll":40.0},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":-23.5,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":22.4375,"pitch":-123.125,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":121.25,"pitch":125.25,"roll":34.9375},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-123.6875,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:33.260"} +{"sensors":[{"euler":{"heading":212.25,"pitch":148.5625,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":86.125,"pitch":114.25,"roll":43.625},"location":"Left Ankle"},{"euler":{"heading":93.0625,"pitch":-22.5,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":30.375,"pitch":-113.0625,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":119.8125,"pitch":125.75,"roll":31.375},"location":"Right Knee"},{"euler":{"heading":60.0,"pitch":-127.8125,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:33.360"} +{"sensors":[{"euler":{"heading":292.6875,"pitch":144.5625,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":90.5,"pitch":114.5625,"roll":46.4375},"location":"Left Ankle"},{"euler":{"heading":126.4375,"pitch":7.6875,"roll":59.375},"location":"Right Ankle"},{"euler":{"heading":36.8125,"pitch":-112.1875,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":105.8125,"pitch":123.375,"roll":18.375},"location":"Right Knee"},{"euler":{"heading":63.0625,"pitch":-135.0625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:33.461"} +{"sensors":[{"euler":{"heading":300.875,"pitch":140.0,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":96.375,"pitch":117.125,"roll":50.0625},"location":"Left Ankle"},{"euler":{"heading":125.5,"pitch":29.5,"roll":57.75},"location":"Right Ankle"},{"euler":{"heading":35.6875,"pitch":-114.6875,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":92.625,"pitch":121.8125,"roll":5.0},"location":"Right Knee"},{"euler":{"heading":66.375,"pitch":-141.9375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:33.562"} +{"sensors":[{"euler":{"heading":308.3125,"pitch":136.125,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":102.9375,"pitch":122.75,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":141.625,"pitch":45.8125,"roll":47.3125},"location":"Right Ankle"},{"euler":{"heading":27.4375,"pitch":-120.875,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":80.1875,"pitch":122.0,"roll":-5.125},"location":"Right Knee"},{"euler":{"heading":67.25,"pitch":-144.875,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:33.663"} +{"sensors":[{"euler":{"heading":316.3125,"pitch":132.9375,"roll":22.125},"location":"Left Knee"},{"euler":{"heading":109.9375,"pitch":132.875,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":138.3125,"pitch":42.25,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":23.6875,"pitch":-124.1875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":81.25,"pitch":118.6875,"roll":-3.75},"location":"Right Knee"},{"euler":{"heading":69.9375,"pitch":-150.625,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:33.763"} +{"sensors":[{"euler":{"heading":331.25,"pitch":130.9375,"roll":12.1875},"location":"Left Knee"},{"euler":{"heading":122.4375,"pitch":163.6875,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":128.5625,"pitch":34.5625,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":25.3125,"pitch":-124.4375,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":84.0,"pitch":116.25,"roll":0.1875},"location":"Right Knee"},{"euler":{"heading":67.1875,"pitch":-142.5,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:33.866"} +{"sensors":[{"euler":{"heading":342.625,"pitch":130.625,"roll":7.375},"location":"Left Knee"},{"euler":{"heading":132.9375,"pitch":-178.5625,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":126.8125,"pitch":31.0625,"roll":51.0625},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-126.8125,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":84.4375,"pitch":116.0,"roll":3.1875},"location":"Right Knee"},{"euler":{"heading":58.5625,"pitch":-124.6875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:33.966"} +{"sensors":[{"euler":{"heading":190.75,"pitch":139.3125,"roll":15.625},"location":"Left Knee"},{"euler":{"heading":115.3125,"pitch":143.875,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":122.875,"pitch":27.6875,"roll":51.625},"location":"Right Ankle"},{"euler":{"heading":19.9375,"pitch":-125.0,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":85.6875,"pitch":114.5,"roll":6.25},"location":"Right Knee"},{"euler":{"heading":51.5,"pitch":-120.375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:34.67"} +{"sensors":[{"euler":{"heading":203.9375,"pitch":153.0,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":79.0,"pitch":114.625,"roll":43.75},"location":"Left Ankle"},{"euler":{"heading":118.3125,"pitch":24.0625,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":19.375,"pitch":-123.5,"roll":70.8125},"location":"Right Hip"},{"euler":{"heading":89.0625,"pitch":114.0,"roll":10.3125},"location":"Right Knee"},{"euler":{"heading":48.375,"pitch":-118.125,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:34.168"} +{"sensors":[{"euler":{"heading":217.1875,"pitch":165.1875,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":58.0625,"pitch":103.5625,"roll":25.5},"location":"Left Ankle"},{"euler":{"heading":113.0,"pitch":17.8125,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":19.3125,"pitch":-126.625,"roll":72.75},"location":"Right Hip"},{"euler":{"heading":93.75,"pitch":115.5,"roll":14.5625},"location":"Right Knee"},{"euler":{"heading":53.25,"pitch":-121.875,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:34.269"} +{"sensors":[{"euler":{"heading":220.625,"pitch":168.0,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":57.125,"pitch":105.0,"roll":24.375},"location":"Left Ankle"},{"euler":{"heading":106.0625,"pitch":8.25,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":16.8125,"pitch":-135.5,"roll":74.9375},"location":"Right Hip"},{"euler":{"heading":100.625,"pitch":117.6875,"roll":20.5625},"location":"Right Knee"},{"euler":{"heading":57.125,"pitch":-124.8125,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:34.369"} +{"sensors":[{"euler":{"heading":219.125,"pitch":157.6875,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":76.1875,"pitch":110.125,"roll":37.125},"location":"Left Ankle"},{"euler":{"heading":97.5625,"pitch":-8.8125,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":16.8125,"pitch":-137.5,"roll":74.25},"location":"Right Hip"},{"euler":{"heading":112.6875,"pitch":124.8125,"roll":29.0},"location":"Right Knee"},{"euler":{"heading":57.6875,"pitch":-124.6875,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:34.470"} +{"sensors":[{"euler":{"heading":216.1875,"pitch":150.625,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":82.5,"pitch":111.5625,"roll":40.6875},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":-26.625,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":26.0,"pitch":-118.375,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":122.875,"pitch":129.4375,"roll":34.9375},"location":"Right Knee"},{"euler":{"heading":62.125,"pitch":-128.625,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:34.571"} +{"sensors":[{"euler":{"heading":287.5625,"pitch":147.3125,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":85.375,"pitch":112.5625,"roll":44.0},"location":"Left Ankle"},{"euler":{"heading":102.0,"pitch":-15.0625,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-114.125,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":116.4375,"pitch":128.5,"roll":26.6875},"location":"Right Knee"},{"euler":{"heading":63.4375,"pitch":-132.5,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:34.672"} +{"sensors":[{"euler":{"heading":292.4375,"pitch":143.9375,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":90.5625,"pitch":114.5625,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":119.0625,"pitch":13.125,"roll":58.625},"location":"Right Ankle"},{"euler":{"heading":36.875,"pitch":-114.1875,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":102.0625,"pitch":125.625,"roll":13.375},"location":"Right Knee"},{"euler":{"heading":64.625,"pitch":-137.8125,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:34.772"} +{"sensors":[{"euler":{"heading":297.8125,"pitch":141.25,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":95.9375,"pitch":116.75,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":135.5,"pitch":37.0625,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":33.375,"pitch":-118.5,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":83.5625,"pitch":124.625,"roll":-0.3125},"location":"Right Knee"},{"euler":{"heading":65.0625,"pitch":-143.4375,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:34.873"} +{"sensors":[{"euler":{"heading":303.75,"pitch":138.0,"roll":26.0625},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":120.75,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":144.9375,"pitch":42.4375,"roll":45.75},"location":"Right Ankle"},{"euler":{"heading":27.9375,"pitch":-122.125,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":76.125,"pitch":124.8125,"roll":-5.8125},"location":"Right Knee"},{"euler":{"heading":67.1875,"pitch":-149.625,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:34.975"} +{"sensors":[{"euler":{"heading":312.75,"pitch":135.4375,"roll":20.1875},"location":"Left Knee"},{"euler":{"heading":107.5,"pitch":133.8125,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":135.0625,"pitch":38.75,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-124.625,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":81.0625,"pitch":118.875,"roll":-2.3125},"location":"Right Knee"},{"euler":{"heading":69.9375,"pitch":-153.3125,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:35.75"} +{"sensors":[{"euler":{"heading":331.6875,"pitch":132.25,"roll":11.0},"location":"Left Knee"},{"euler":{"heading":126.25,"pitch":171.25,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":127.8125,"pitch":32.3125,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":24.875,"pitch":-124.375,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":83.25,"pitch":117.0625,"roll":1.875},"location":"Right Knee"},{"euler":{"heading":62.8125,"pitch":-139.5625,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:35.175"} +{"sensors":[{"euler":{"heading":333.6875,"pitch":135.125,"roll":9.75},"location":"Left Knee"},{"euler":{"heading":121.5625,"pitch":166.0625,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":124.5,"pitch":28.5,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-125.5,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":84.9375,"pitch":115.8125,"roll":5.1875},"location":"Right Knee"},{"euler":{"heading":54.9375,"pitch":-125.4375,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:35.277"} +{"sensors":[{"euler":{"heading":191.3125,"pitch":145.125,"roll":21.0},"location":"Left Knee"},{"euler":{"heading":101.0,"pitch":125.5,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":120.875,"pitch":25.125,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-122.8125,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":86.8125,"pitch":115.625,"roll":8.0625},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-121.25,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:35.377"} +{"sensors":[{"euler":{"heading":205.75,"pitch":157.25,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":70.375,"pitch":109.0,"roll":39.125},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":20.5,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":19.75,"pitch":-123.125,"roll":70.9375},"location":"Right Hip"},{"euler":{"heading":90.0625,"pitch":117.0,"roll":11.5625},"location":"Right Knee"},{"euler":{"heading":47.0625,"pitch":-119.375,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:35.478"} +{"sensors":[{"euler":{"heading":218.625,"pitch":166.1875,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":56.1875,"pitch":103.6875,"roll":25.0},"location":"Left Ankle"},{"euler":{"heading":113.125,"pitch":12.75,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-128.875,"roll":72.4375},"location":"Right Hip"},{"euler":{"heading":95.0,"pitch":120.1875,"roll":15.8125},"location":"Right Knee"},{"euler":{"heading":52.8125,"pitch":-121.3125,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:35.579"} +{"sensors":[{"euler":{"heading":222.75,"pitch":167.0625,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":57.75,"pitch":106.0625,"roll":23.0},"location":"Left Ankle"},{"euler":{"heading":106.5625,"pitch":1.4375,"roll":55.0},"location":"Right Ankle"},{"euler":{"heading":20.0,"pitch":-138.25,"roll":74.625},"location":"Right Hip"},{"euler":{"heading":101.75,"pitch":123.625,"roll":21.1875},"location":"Right Knee"},{"euler":{"heading":58.25,"pitch":-123.625,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:35.679"} +{"sensors":[{"euler":{"heading":220.8125,"pitch":157.125,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":74.5625,"pitch":110.4375,"roll":35.4375},"location":"Left Ankle"},{"euler":{"heading":97.8125,"pitch":-14.8125,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-139.0625,"roll":74.3125},"location":"Right Hip"},{"euler":{"heading":114.375,"pitch":128.625,"roll":29.8125},"location":"Right Knee"},{"euler":{"heading":60.6875,"pitch":-124.9375,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:35.781"} +{"sensors":[{"euler":{"heading":217.1875,"pitch":150.375,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":81.9375,"pitch":112.0,"roll":39.5625},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":-29.375,"roll":50.0625},"location":"Right Ankle"},{"euler":{"heading":26.375,"pitch":-118.0625,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":123.125,"pitch":131.9375,"roll":35.625},"location":"Right Knee"},{"euler":{"heading":62.4375,"pitch":-128.1875,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:35.882"} +{"sensors":[{"euler":{"heading":292.25,"pitch":145.5625,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":88.125,"pitch":112.75,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":101.625,"pitch":-13.0,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":35.4375,"pitch":-112.125,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":114.75,"pitch":127.75,"roll":27.0625},"location":"Right Knee"},{"euler":{"heading":66.0625,"pitch":-133.6875,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:35.985"} +{"sensors":[{"euler":{"heading":298.5625,"pitch":140.9375,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":95.3125,"pitch":114.75,"roll":47.4375},"location":"Left Ankle"},{"euler":{"heading":120.25,"pitch":13.625,"roll":58.0},"location":"Right Ankle"},{"euler":{"heading":39.5,"pitch":-114.0,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":100.875,"pitch":126.125,"roll":13.8125},"location":"Right Knee"},{"euler":{"heading":68.1875,"pitch":-139.25,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:36.86"} +{"sensors":[{"euler":{"heading":304.375,"pitch":137.0625,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":117.9375,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":136.9375,"pitch":36.9375,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":35.4375,"pitch":-118.125,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":84.5625,"pitch":125.875,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":69.0625,"pitch":-144.25,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:36.187"} +{"sensors":[{"euler":{"heading":308.4375,"pitch":135.3125,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":102.9375,"pitch":122.125,"roll":55.0625},"location":"Left Ankle"},{"euler":{"heading":145.5,"pitch":43.25,"roll":45.9375},"location":"Right Ankle"},{"euler":{"heading":27.875,"pitch":-123.625,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":77.375,"pitch":125.5,"roll":-5.5625},"location":"Right Knee"},{"euler":{"heading":67.875,"pitch":-148.375,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:36.288"} +{"sensors":[{"euler":{"heading":314.625,"pitch":133.1875,"roll":21.375},"location":"Left Knee"},{"euler":{"heading":109.0625,"pitch":133.5,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":136.0625,"pitch":40.5,"roll":49.5625},"location":"Right Ankle"},{"euler":{"heading":22.5625,"pitch":-126.625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":80.3125,"pitch":118.875,"roll":-3.5},"location":"Right Knee"},{"euler":{"heading":69.875,"pitch":-152.1875,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:36.389"} +{"sensors":[{"euler":{"heading":328.6875,"pitch":131.4375,"roll":11.625},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":171.75,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":126.25,"pitch":35.375,"roll":51.6875},"location":"Right Ankle"},{"euler":{"heading":23.3125,"pitch":-125.0,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":83.375,"pitch":115.1875,"roll":0.4375},"location":"Right Knee"},{"euler":{"heading":60.0,"pitch":-137.9375,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:36.490"} +{"sensors":[{"euler":{"heading":341.125,"pitch":131.4375,"roll":7.5},"location":"Left Knee"},{"euler":{"heading":130.5,"pitch":178.5625,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":121.4375,"pitch":31.8125,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":20.1875,"pitch":-124.875,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":84.75,"pitch":113.6875,"roll":3.5},"location":"Right Knee"},{"euler":{"heading":52.9375,"pitch":-122.875,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:36.590"} +{"sensors":[{"euler":{"heading":194.0625,"pitch":140.0625,"roll":16.875},"location":"Left Knee"},{"euler":{"heading":110.875,"pitch":133.875,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":28.25,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-122.0625,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":87.3125,"pitch":112.6875,"roll":6.875},"location":"Right Knee"},{"euler":{"heading":49.9375,"pitch":-120.375,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:36.691"} +{"sensors":[{"euler":{"heading":208.125,"pitch":155.3125,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":73.0,"pitch":110.9375,"roll":39.375},"location":"Left Ankle"},{"euler":{"heading":113.3125,"pitch":23.875,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":19.25,"pitch":-121.75,"roll":71.9375},"location":"Right Hip"},{"euler":{"heading":90.5,"pitch":113.3125,"roll":11.0625},"location":"Right Knee"},{"euler":{"heading":48.5,"pitch":-119.0625,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:36.792"} +{"sensors":[{"euler":{"heading":218.6875,"pitch":164.75,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":55.125,"pitch":101.9375,"roll":24.3125},"location":"Left Ankle"},{"euler":{"heading":108.125,"pitch":15.8125,"roll":54.625},"location":"Right Ankle"},{"euler":{"heading":17.8125,"pitch":-126.5625,"roll":73.875},"location":"Right Hip"},{"euler":{"heading":95.125,"pitch":115.0,"roll":15.875},"location":"Right Knee"},{"euler":{"heading":54.125,"pitch":-123.25,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:36.893"} +{"sensors":[{"euler":{"heading":220.75,"pitch":158.6875,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":65.0,"pitch":108.625,"roll":29.375},"location":"Left Ankle"},{"euler":{"heading":102.1875,"pitch":0.9375,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":16.6875,"pitch":-133.3125,"roll":75.1875},"location":"Right Hip"},{"euler":{"heading":103.6875,"pitch":120.375,"roll":22.875},"location":"Right Knee"},{"euler":{"heading":59.0625,"pitch":-125.6875,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:36.994"} +{"sensors":[{"euler":{"heading":215.5625,"pitch":151.8125,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":78.3125,"pitch":110.625,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":-20.75,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":24.1875,"pitch":-125.5,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":119.75,"pitch":128.9375,"roll":32.625},"location":"Right Knee"},{"euler":{"heading":58.8125,"pitch":-128.0,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:37.95"} +{"sensors":[{"euler":{"heading":210.125,"pitch":147.75,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":81.25,"pitch":110.75,"roll":41.4375},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":-27.0,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":32.375,"pitch":-113.1875,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":121.75,"pitch":132.25,"roll":32.1875},"location":"Right Knee"},{"euler":{"heading":60.875,"pitch":-132.1875,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:37.198"} +{"sensors":[{"euler":{"heading":292.9375,"pitch":143.1875,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":85.6875,"pitch":111.9375,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":105.375,"pitch":-4.1875,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":35.75,"pitch":-110.8125,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":109.8125,"pitch":125.5625,"roll":22.5},"location":"Right Knee"},{"euler":{"heading":63.9375,"pitch":-137.0,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:37.299"} +{"sensors":[{"euler":{"heading":303.3125,"pitch":138.0625,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":94.625,"pitch":115.375,"roll":48.9375},"location":"Left Ankle"},{"euler":{"heading":121.125,"pitch":23.5,"roll":57.8125},"location":"Right Ankle"},{"euler":{"heading":36.75,"pitch":-112.625,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":97.4375,"pitch":123.0,"roll":9.4375},"location":"Right Knee"},{"euler":{"heading":65.5625,"pitch":-142.9375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:37.400"} +{"sensors":[{"euler":{"heading":311.25,"pitch":134.0,"roll":27.5},"location":"Left Knee"},{"euler":{"heading":102.875,"pitch":120.375,"roll":53.75},"location":"Left Ankle"},{"euler":{"heading":138.0625,"pitch":41.875,"roll":49.9375},"location":"Right Ankle"},{"euler":{"heading":31.0,"pitch":-118.875,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":82.1875,"pitch":124.0,"roll":-2.75},"location":"Right Knee"},{"euler":{"heading":68.1875,"pitch":-147.8125,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:37.500"} +{"sensors":[{"euler":{"heading":317.0,"pitch":132.375,"roll":22.125},"location":"Left Knee"},{"euler":{"heading":105.875,"pitch":127.0,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":140.6875,"pitch":44.75,"roll":46.625},"location":"Right Ankle"},{"euler":{"heading":23.1875,"pitch":-124.0,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":80.8125,"pitch":121.25,"roll":-4.8125},"location":"Right Knee"},{"euler":{"heading":69.8125,"pitch":-153.4375,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:37.601"} +{"sensors":[{"euler":{"heading":329.3125,"pitch":130.8125,"roll":12.625},"location":"Left Knee"},{"euler":{"heading":116.0,"pitch":153.75,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":131.5,"pitch":35.0625,"roll":50.8125},"location":"Right Ankle"},{"euler":{"heading":25.25,"pitch":-125.0625,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":83.4375,"pitch":118.6875,"roll":-0.5625},"location":"Right Knee"},{"euler":{"heading":69.625,"pitch":-148.3125,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:37.703"} +{"sensors":[{"euler":{"heading":344.75,"pitch":128.1875,"roll":5.9375},"location":"Left Knee"},{"euler":{"heading":128.1875,"pitch":178.0625,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":128.0625,"pitch":30.1875,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-126.375,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":84.3125,"pitch":119.0,"roll":2.5625},"location":"Right Knee"},{"euler":{"heading":59.1875,"pitch":-128.625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:37.804"} +{"sensors":[{"euler":{"heading":187.9375,"pitch":136.25,"roll":11.75},"location":"Left Knee"},{"euler":{"heading":116.3125,"pitch":145.9375,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":124.75,"pitch":27.6875,"roll":51.625},"location":"Right Ankle"},{"euler":{"heading":21.125,"pitch":-123.75,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":84.375,"pitch":116.9375,"roll":4.875},"location":"Right Knee"},{"euler":{"heading":51.9375,"pitch":-122.75,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:37.905"} +{"sensors":[{"euler":{"heading":201.5,"pitch":149.5625,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":83.0625,"pitch":116.625,"roll":46.75},"location":"Left Ankle"},{"euler":{"heading":120.6875,"pitch":24.0625,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":20.75,"pitch":-122.625,"roll":70.8125},"location":"Right Hip"},{"euler":{"heading":87.25,"pitch":116.8125,"roll":8.25},"location":"Right Knee"},{"euler":{"heading":48.1875,"pitch":-119.375,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:38.5"} +{"sensors":[{"euler":{"heading":214.8125,"pitch":161.5,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":59.0625,"pitch":106.0,"roll":27.9375},"location":"Left Ankle"},{"euler":{"heading":115.75,"pitch":18.5,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-123.5,"roll":73.0625},"location":"Right Hip"},{"euler":{"heading":91.1875,"pitch":116.5625,"roll":12.625},"location":"Right Knee"},{"euler":{"heading":50.3125,"pitch":-121.5,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:38.107"} +{"sensors":[{"euler":{"heading":220.0625,"pitch":165.0625,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":58.0,"pitch":106.625,"roll":24.125},"location":"Left Ankle"},{"euler":{"heading":108.75,"pitch":9.0625,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":17.875,"pitch":-134.5625,"roll":74.75},"location":"Right Hip"},{"euler":{"heading":97.9375,"pitch":118.8125,"roll":18.4375},"location":"Right Knee"},{"euler":{"heading":56.6875,"pitch":-124.375,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:38.207"} +{"sensors":[{"euler":{"heading":220.75,"pitch":156.3125,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":74.0625,"pitch":111.8125,"roll":35.0625},"location":"Left Ankle"},{"euler":{"heading":101.0625,"pitch":-8.625,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-140.125,"roll":75.0625},"location":"Right Hip"},{"euler":{"heading":108.4375,"pitch":125.4375,"roll":26.0},"location":"Right Knee"},{"euler":{"heading":60.5,"pitch":-126.9375,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:38.308"} +{"sensors":[{"euler":{"heading":289.1875,"pitch":148.3125,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":84.625,"pitch":114.3125,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":-28.875,"roll":49.875},"location":"Right Ankle"},{"euler":{"heading":27.625,"pitch":-115.625,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":121.0625,"pitch":129.5625,"roll":34.625},"location":"Right Knee"},{"euler":{"heading":61.75,"pitch":-128.6875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:38.408"} +{"sensors":[{"euler":{"heading":296.3125,"pitch":142.75,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":92.5625,"pitch":115.0625,"roll":45.5},"location":"Left Ankle"},{"euler":{"heading":94.8125,"pitch":-20.875,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":34.25,"pitch":-110.9375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":116.8125,"pitch":127.8125,"roll":29.375},"location":"Right Knee"},{"euler":{"heading":65.4375,"pitch":-133.5,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:38.509"} +{"sensors":[{"euler":{"heading":301.125,"pitch":139.25,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":116.75,"roll":48.6875},"location":"Left Ankle"},{"euler":{"heading":115.6875,"pitch":6.75,"roll":57.375},"location":"Right Ankle"},{"euler":{"heading":39.0,"pitch":-112.3125,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":102.3125,"pitch":126.5,"roll":15.25},"location":"Right Knee"},{"euler":{"heading":65.875,"pitch":-138.9375,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:38.610"} +{"sensors":[{"euler":{"heading":307.5625,"pitch":135.875,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":100.4375,"pitch":118.875,"roll":51.375},"location":"Left Ankle"},{"euler":{"heading":130.5,"pitch":47.5,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":36.6875,"pitch":-114.625,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":88.0,"pitch":125.4375,"roll":1.8125},"location":"Right Knee"},{"euler":{"heading":66.9375,"pitch":-143.875,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:38.710"} +{"sensors":[{"euler":{"heading":312.4375,"pitch":133.8125,"roll":26.1875},"location":"Left Knee"},{"euler":{"heading":104.75,"pitch":124.25,"roll":55.5},"location":"Left Ankle"},{"euler":{"heading":144.3125,"pitch":46.8125,"roll":45.3125},"location":"Right Ankle"},{"euler":{"heading":27.0,"pitch":-120.9375,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":77.6875,"pitch":123.1875,"roll":-7.375},"location":"Right Knee"},{"euler":{"heading":66.8125,"pitch":-147.625,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:38.812"} +{"sensors":[{"euler":{"heading":315.6875,"pitch":131.5625,"roll":22.8125},"location":"Left Knee"},{"euler":{"heading":111.125,"pitch":132.875,"roll":60.8125},"location":"Left Ankle"},{"euler":{"heading":139.6875,"pitch":45.75,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-124.875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":80.0625,"pitch":118.25,"roll":-5.9375},"location":"Right Knee"},{"euler":{"heading":69.8125,"pitch":-154.75,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:38.913"} +{"sensors":[{"euler":{"heading":327.0,"pitch":131.125,"roll":13.1875},"location":"Left Knee"},{"euler":{"heading":120.125,"pitch":161.1875,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":129.5625,"pitch":37.625,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-125.4375,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":82.875,"pitch":115.0625,"roll":-1.875},"location":"Right Knee"},{"euler":{"heading":68.625,"pitch":-149.5,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:39.13"} +{"sensors":[{"euler":{"heading":343.625,"pitch":127.0625,"roll":6.75},"location":"Left Knee"},{"euler":{"heading":133.625,"pitch":-175.125,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":124.4375,"pitch":33.1875,"roll":51.625},"location":"Right Ankle"},{"euler":{"heading":18.625,"pitch":-126.0625,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":83.9375,"pitch":114.3125,"roll":1.625},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-127.3125,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:39.114"} +{"sensors":[{"euler":{"heading":333.625,"pitch":135.0625,"roll":12.0},"location":"Left Knee"},{"euler":{"heading":120.5625,"pitch":157.375,"roll":68.0},"location":"Left Ankle"},{"euler":{"heading":119.125,"pitch":29.9375,"roll":52.25},"location":"Right Ankle"},{"euler":{"heading":17.4375,"pitch":-122.9375,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":85.6875,"pitch":111.75,"roll":4.6875},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-121.0,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:39.214"} +{"sensors":[{"euler":{"heading":201.25,"pitch":148.1875,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":88.5,"pitch":119.8125,"roll":50.25},"location":"Left Ankle"},{"euler":{"heading":114.1875,"pitch":25.875,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":17.125,"pitch":-121.3125,"roll":72.1875},"location":"Right Hip"},{"euler":{"heading":88.1875,"pitch":111.625,"roll":8.1875},"location":"Right Knee"},{"euler":{"heading":48.375,"pitch":-117.5,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:39.315"} +{"sensors":[{"euler":{"heading":216.125,"pitch":161.5,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":60.5625,"pitch":107.3125,"roll":28.75},"location":"Left Ankle"},{"euler":{"heading":108.875,"pitch":19.5,"roll":54.375},"location":"Right Ankle"},{"euler":{"heading":16.625,"pitch":-124.5,"roll":74.25},"location":"Right Hip"},{"euler":{"heading":91.4375,"pitch":112.375,"roll":12.6875},"location":"Right Knee"},{"euler":{"heading":51.9375,"pitch":-119.8125,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:39.415"} +{"sensors":[{"euler":{"heading":222.4375,"pitch":164.25,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":60.625,"pitch":108.8125,"roll":26.375},"location":"Left Ankle"},{"euler":{"heading":102.125,"pitch":6.0,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":16.8125,"pitch":-132.5,"roll":75.3125},"location":"Right Hip"},{"euler":{"heading":98.875,"pitch":115.9375,"roll":19.3125},"location":"Right Knee"},{"euler":{"heading":58.125,"pitch":-124.25,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:39.516"} +{"sensors":[{"euler":{"heading":220.6875,"pitch":154.875,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":78.8125,"pitch":113.375,"roll":38.0625},"location":"Left Ankle"},{"euler":{"heading":96.75,"pitch":-13.6875,"roll":55.375},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-136.5625,"roll":72.4375},"location":"Right Hip"},{"euler":{"heading":113.125,"pitch":127.25,"roll":28.4375},"location":"Right Knee"},{"euler":{"heading":58.25,"pitch":-123.5,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:39.616"} +{"sensors":[{"euler":{"heading":288.625,"pitch":148.9375,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":84.5625,"pitch":114.6875,"roll":41.6875},"location":"Left Ankle"},{"euler":{"heading":88.0625,"pitch":-26.625,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":26.6875,"pitch":-116.625,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":121.6875,"pitch":127.5,"roll":34.875},"location":"Right Knee"},{"euler":{"heading":59.6875,"pitch":-125.0,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:39.717"} +{"sensors":[{"euler":{"heading":287.1875,"pitch":146.75,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":86.5,"pitch":114.4375,"roll":44.0},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":-13.75,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":34.5625,"pitch":-112.9375,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":113.8125,"pitch":125.75,"roll":27.1875},"location":"Right Knee"},{"euler":{"heading":59.8125,"pitch":-129.5625,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:39.819"} +{"sensors":[{"euler":{"heading":293.1875,"pitch":142.5,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":91.0,"pitch":115.0,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":117.6875,"pitch":12.5,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":38.0625,"pitch":-114.0625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":99.0625,"pitch":125.125,"roll":11.5},"location":"Right Knee"},{"euler":{"heading":62.5,"pitch":-135.8125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:39.920"} +{"sensors":[{"euler":{"heading":301.1875,"pitch":137.5625,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":98.375,"pitch":118.5,"roll":51.5625},"location":"Left Ankle"},{"euler":{"heading":134.1875,"pitch":35.8125,"roll":53.125},"location":"Right Ankle"},{"euler":{"heading":35.75,"pitch":-117.875,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":82.6875,"pitch":125.125,"roll":-0.5625},"location":"Right Knee"},{"euler":{"heading":65.125,"pitch":-141.0625,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:40.20"} +{"sensors":[{"euler":{"heading":308.875,"pitch":133.375,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":104.875,"pitch":123.375,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":55.5,"pitch":46.5,"roll":44.9375},"location":"Right Ankle"},{"euler":{"heading":26.125,"pitch":-123.1875,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":73.5625,"pitch":123.25,"roll":-8.375},"location":"Right Knee"},{"euler":{"heading":66.625,"pitch":-146.125,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:40.122"} +{"sensors":[{"euler":{"heading":317.5625,"pitch":130.625,"roll":22.125},"location":"Left Knee"},{"euler":{"heading":110.75,"pitch":133.9375,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":137.5625,"pitch":43.9375,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-128.4375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":77.875,"pitch":117.9375,"roll":-5.75},"location":"Right Knee"},{"euler":{"heading":68.8125,"pitch":-152.6875,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:40.223"} +{"sensors":[{"euler":{"heading":329.5625,"pitch":129.8125,"roll":12.75},"location":"Left Knee"},{"euler":{"heading":124.4375,"pitch":167.5625,"roll":65.375},"location":"Left Ankle"},{"euler":{"heading":128.5,"pitch":36.8125,"roll":50.5625},"location":"Right Ankle"},{"euler":{"heading":20.5625,"pitch":-127.6875,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":80.75,"pitch":114.9375,"roll":-1.3125},"location":"Right Knee"},{"euler":{"heading":65.0,"pitch":-145.5,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:40.324"} +{"sensors":[{"euler":{"heading":339.8125,"pitch":129.625,"roll":8.0},"location":"Left Knee"},{"euler":{"heading":129.9375,"pitch":-179.5,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":123.0625,"pitch":33.25,"roll":50.4375},"location":"Right Ankle"},{"euler":{"heading":16.4375,"pitch":-126.5625,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":82.0625,"pitch":111.75,"roll":1.6875},"location":"Right Knee"},{"euler":{"heading":55.0,"pitch":-125.125,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:40.425"} +{"sensors":[{"euler":{"heading":190.1875,"pitch":138.3125,"roll":15.5625},"location":"Left Knee"},{"euler":{"heading":111.125,"pitch":141.25,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":119.0625,"pitch":30.375,"roll":51.0},"location":"Right Ankle"},{"euler":{"heading":15.75,"pitch":-124.375,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":82.4375,"pitch":110.125,"roll":4.75},"location":"Right Knee"},{"euler":{"heading":47.0625,"pitch":-119.8125,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:40.526"} +{"sensors":[{"euler":{"heading":205.0625,"pitch":152.5625,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":79.3125,"pitch":113.4375,"roll":41.75},"location":"Left Ankle"},{"euler":{"heading":115.4375,"pitch":25.6875,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":16.625,"pitch":-124.375,"roll":71.875},"location":"Right Hip"},{"euler":{"heading":85.0,"pitch":111.5625,"roll":8.25},"location":"Right Knee"},{"euler":{"heading":46.1875,"pitch":-118.5,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:40.626"} +{"sensors":[{"euler":{"heading":218.6875,"pitch":164.1875,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":55.3125,"pitch":104.1875,"roll":24.25},"location":"Left Ankle"},{"euler":{"heading":110.3125,"pitch":19.3125,"roll":53.5625},"location":"Right Ankle"},{"euler":{"heading":16.3125,"pitch":-126.3125,"roll":74.0625},"location":"Right Hip"},{"euler":{"heading":89.9375,"pitch":112.6875,"roll":13.0625},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-120.625,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:40.727"} +{"sensors":[{"euler":{"heading":222.75,"pitch":166.1875,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":59.3125,"pitch":106.0625,"roll":24.5},"location":"Left Ankle"},{"euler":{"heading":104.625,"pitch":8.0,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":16.5625,"pitch":-135.875,"roll":75.4375},"location":"Right Hip"},{"euler":{"heading":98.0,"pitch":117.4375,"roll":20.0},"location":"Right Knee"},{"euler":{"heading":57.5625,"pitch":-124.1875,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:40.828"} +{"sensors":[{"euler":{"heading":222.375,"pitch":157.5625,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":74.6875,"pitch":110.4375,"roll":35.9375},"location":"Left Ankle"},{"euler":{"heading":96.5625,"pitch":-13.375,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-137.625,"roll":73.75},"location":"Right Hip"},{"euler":{"heading":110.6875,"pitch":127.4375,"roll":28.1875},"location":"Right Knee"},{"euler":{"heading":59.8125,"pitch":-126.1875,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:40.929"} +{"sensors":[{"euler":{"heading":282.6875,"pitch":151.0625,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":79.8125,"pitch":110.75,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":-28.75,"roll":49.3125},"location":"Right Ankle"},{"euler":{"heading":27.5,"pitch":-117.3125,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":119.875,"pitch":130.3125,"roll":34.625},"location":"Right Knee"},{"euler":{"heading":61.625,"pitch":-130.9375,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:41.30"} +{"sensors":[{"euler":{"heading":286.125,"pitch":147.0,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":85.0,"pitch":111.75,"roll":43.0625},"location":"Left Ankle"},{"euler":{"heading":96.9375,"pitch":-16.8125,"roll":54.25},"location":"Right Ankle"},{"euler":{"heading":35.375,"pitch":-111.9375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":116.125,"pitch":127.0625,"roll":29.5625},"location":"Right Knee"},{"euler":{"heading":63.5,"pitch":-135.9375,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:41.131"} +{"sensors":[{"euler":{"heading":295.3125,"pitch":141.75,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":92.1875,"pitch":113.5625,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":118.0625,"pitch":14.875,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":37.875,"pitch":-114.1875,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":101.25,"pitch":123.9375,"roll":15.3125},"location":"Right Knee"},{"euler":{"heading":66.3125,"pitch":-140.4375,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:41.231"} +{"sensors":[{"euler":{"heading":302.6875,"pitch":137.3125,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":98.0625,"pitch":116.1875,"roll":50.3125},"location":"Left Ankle"},{"euler":{"heading":131.25,"pitch":34.9375,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":35.9375,"pitch":-117.625,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":88.0625,"pitch":124.0625,"roll":2.625},"location":"Right Knee"},{"euler":{"heading":68.5625,"pitch":-146.75,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:41.332"} +{"sensors":[{"euler":{"heading":308.25,"pitch":133.875,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":102.875,"pitch":121.375,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":55.75,"pitch":47.25,"roll":44.5625},"location":"Right Ankle"},{"euler":{"heading":26.125,"pitch":-122.5,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":77.125,"pitch":124.25,"roll":-6.5},"location":"Right Knee"},{"euler":{"heading":68.8125,"pitch":-150.6875,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:41.433"} +{"sensors":[{"euler":{"heading":315.6875,"pitch":130.5,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":110.0625,"pitch":131.375,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":141.0,"pitch":46.0,"roll":45.875},"location":"Right Ankle"},{"euler":{"heading":18.5625,"pitch":-126.75,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":79.8125,"pitch":119.25,"roll":-5.0625},"location":"Right Knee"},{"euler":{"heading":70.0625,"pitch":-155.25,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:41.533"} +{"sensors":[{"euler":{"heading":327.1875,"pitch":128.75,"roll":15.125},"location":"Left Knee"},{"euler":{"heading":119.75,"pitch":159.0625,"roll":65.375},"location":"Left Ankle"},{"euler":{"heading":132.25,"pitch":38.375,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":20.4375,"pitch":-127.3125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":82.125,"pitch":117.125,"roll":-1.3125},"location":"Right Knee"},{"euler":{"heading":68.375,"pitch":-150.0,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:41.634"} +{"sensors":[{"euler":{"heading":341.25,"pitch":127.9375,"roll":7.9375},"location":"Left Knee"},{"euler":{"heading":132.3125,"pitch":-174.3125,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":126.6875,"pitch":36.25,"roll":49.8125},"location":"Right Ankle"},{"euler":{"heading":16.1875,"pitch":-127.6875,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":83.8125,"pitch":114.125,"roll":1.8125},"location":"Right Knee"},{"euler":{"heading":58.375,"pitch":-128.75,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:41.735"} +{"sensors":[{"euler":{"heading":186.6875,"pitch":137.0,"roll":12.75},"location":"Left Knee"},{"euler":{"heading":115.5,"pitch":148.25,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":123.0625,"pitch":32.75,"roll":50.1875},"location":"Right Ankle"},{"euler":{"heading":14.875,"pitch":-125.375,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":85.0,"pitch":112.625,"roll":4.8125},"location":"Right Knee"},{"euler":{"heading":46.75,"pitch":-122.625,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:41.836"} +{"sensors":[{"euler":{"heading":201.1875,"pitch":150.125,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":87.5625,"pitch":115.8125,"roll":52.1875},"location":"Left Ankle"},{"euler":{"heading":119.6875,"pitch":28.125,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":15.5,"pitch":-123.4375,"roll":71.75},"location":"Right Hip"},{"euler":{"heading":86.0625,"pitch":112.9375,"roll":8.0},"location":"Right Knee"},{"euler":{"heading":44.1875,"pitch":-119.5625,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:41.937"} +{"sensors":[{"euler":{"heading":215.8125,"pitch":164.3125,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":58.75,"pitch":106.0625,"roll":28.6875},"location":"Left Ankle"},{"euler":{"heading":114.5625,"pitch":21.8125,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":16.4375,"pitch":-125.625,"roll":73.5625},"location":"Right Hip"},{"euler":{"heading":90.0625,"pitch":114.3125,"roll":12.4375},"location":"Right Knee"},{"euler":{"heading":47.5,"pitch":-121.3125,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:42.38"} +{"sensors":[{"euler":{"heading":223.0625,"pitch":168.8125,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":55.0625,"pitch":104.25,"roll":23.0625},"location":"Left Ankle"},{"euler":{"heading":107.625,"pitch":11.875,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":16.1875,"pitch":-135.8125,"roll":75.1875},"location":"Right Hip"},{"euler":{"heading":96.875,"pitch":117.4375,"roll":18.375},"location":"Right Knee"},{"euler":{"heading":54.75,"pitch":-125.5,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:42.139"} +{"sensors":[{"euler":{"heading":224.0,"pitch":158.25,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":73.3125,"pitch":112.75,"roll":33.5},"location":"Left Ankle"},{"euler":{"heading":100.0,"pitch":-4.8125,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":14.25,"pitch":-144.875,"roll":76.0},"location":"Right Hip"},{"euler":{"heading":106.9375,"pitch":123.25,"roll":26.125},"location":"Right Knee"},{"euler":{"heading":58.625,"pitch":-127.6875,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:42.240"} +{"sensors":[{"euler":{"heading":219.25,"pitch":151.0,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":83.125,"pitch":114.5,"roll":40.0},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":-25.9375,"roll":48.875},"location":"Right Ankle"},{"euler":{"heading":22.8125,"pitch":-124.625,"roll":70.375},"location":"Right Hip"},{"euler":{"heading":119.8125,"pitch":128.0625,"roll":35.125},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-128.9375,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:42.341"} +{"sensors":[{"euler":{"heading":293.1875,"pitch":145.0625,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":91.4375,"pitch":114.9375,"roll":44.0625},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":-20.9375,"roll":50.875},"location":"Right Ankle"},{"euler":{"heading":31.3125,"pitch":-112.8125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":119.375,"pitch":128.9375,"roll":32.0},"location":"Right Knee"},{"euler":{"heading":64.75,"pitch":-135.375,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:42.441"} +{"sensors":[{"euler":{"heading":299.875,"pitch":140.125,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":96.9375,"pitch":117.25,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":112.625,"pitch":5.25,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":38.3125,"pitch":-112.875,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":103.5625,"pitch":125.75,"roll":18.1875},"location":"Right Knee"},{"euler":{"heading":67.375,"pitch":-140.375,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:42.542"} +{"sensors":[{"euler":{"heading":306.5,"pitch":136.0625,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":101.9375,"pitch":119.875,"roll":50.25},"location":"Left Ankle"},{"euler":{"heading":130.3125,"pitch":30.4375,"roll":54.625},"location":"Right Ankle"},{"euler":{"heading":35.5,"pitch":-115.9375,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":87.25,"pitch":125.6875,"roll":3.0},"location":"Right Knee"},{"euler":{"heading":67.0,"pitch":-145.125,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:42.643"} +{"sensors":[{"euler":{"heading":310.875,"pitch":133.0,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":110.25,"pitch":124.375,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":56.4375,"pitch":45.8125,"roll":43.9375},"location":"Right Ankle"},{"euler":{"heading":24.5625,"pitch":-121.9375,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":75.875,"pitch":125.25,"roll":-7.375},"location":"Right Knee"},{"euler":{"heading":67.875,"pitch":-150.0,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:42.744"} +{"sensors":[{"euler":{"heading":316.375,"pitch":130.4375,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":115.0,"pitch":133.375,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":141.5625,"pitch":43.625,"roll":45.75},"location":"Right Ankle"},{"euler":{"heading":18.25,"pitch":-127.0625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":77.6875,"pitch":120.0,"roll":-5.9375},"location":"Right Knee"},{"euler":{"heading":70.625,"pitch":-154.6875,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:42.845"} +{"sensors":[{"euler":{"heading":328.25,"pitch":129.625,"roll":14.75},"location":"Left Knee"},{"euler":{"heading":124.5,"pitch":170.9375,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":132.4375,"pitch":39.0,"roll":48.25},"location":"Right Ankle"},{"euler":{"heading":18.8125,"pitch":-127.25,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":81.25,"pitch":116.0625,"roll":-1.875},"location":"Right Knee"},{"euler":{"heading":63.5,"pitch":-143.1875,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:42.945"} +{"sensors":[{"euler":{"heading":340.9375,"pitch":129.6875,"roll":7.875},"location":"Left Knee"},{"euler":{"heading":135.1875,"pitch":-168.0625,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":128.125,"pitch":35.375,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":14.625,"pitch":-127.5,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":82.3125,"pitch":113.375,"roll":1.0},"location":"Right Knee"},{"euler":{"heading":51.25,"pitch":-121.8125,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:43.46"} +{"sensors":[{"euler":{"heading":189.4375,"pitch":137.4375,"roll":13.9375},"location":"Left Knee"},{"euler":{"heading":121.0625,"pitch":150.5,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":124.75,"pitch":31.875,"roll":49.125},"location":"Right Ankle"},{"euler":{"heading":15.125,"pitch":-125.875,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":83.875,"pitch":113.375,"roll":4.0625},"location":"Right Knee"},{"euler":{"heading":45.1875,"pitch":-119.125,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:43.146"} +{"sensors":[{"euler":{"heading":203.8125,"pitch":151.4375,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":86.75,"pitch":115.0,"roll":48.4375},"location":"Left Ankle"},{"euler":{"heading":121.4375,"pitch":28.0,"roll":50.5625},"location":"Right Ankle"},{"euler":{"heading":16.3125,"pitch":-126.1875,"roll":71.6875},"location":"Right Hip"},{"euler":{"heading":86.6875,"pitch":114.625,"roll":7.625},"location":"Right Knee"},{"euler":{"heading":44.75,"pitch":-117.625,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:43.247"} +{"sensors":[{"euler":{"heading":217.6875,"pitch":165.5,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":59.3125,"pitch":103.875,"roll":28.875},"location":"Left Ankle"},{"euler":{"heading":115.875,"pitch":22.6875,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":16.25,"pitch":-129.0625,"roll":73.5625},"location":"Right Hip"},{"euler":{"heading":89.5,"pitch":115.125,"roll":11.9375},"location":"Right Knee"},{"euler":{"heading":49.625,"pitch":-121.75,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:43.349"} +{"sensors":[{"euler":{"heading":222.125,"pitch":164.75,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":64.3125,"pitch":106.9375,"roll":29.9375},"location":"Left Ankle"},{"euler":{"heading":108.8125,"pitch":12.0625,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":15.3125,"pitch":-137.4375,"roll":75.1875},"location":"Right Hip"},{"euler":{"heading":96.6875,"pitch":117.9375,"roll":18.375},"location":"Right Knee"},{"euler":{"heading":55.5,"pitch":-125.5,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:43.450"} +{"sensors":[{"euler":{"heading":219.625,"pitch":155.8125,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":77.1875,"pitch":111.0625,"roll":40.125},"location":"Left Ankle"},{"euler":{"heading":101.6875,"pitch":-6.6875,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":17.8125,"pitch":-136.4375,"roll":72.875},"location":"Right Hip"},{"euler":{"heading":109.0625,"pitch":126.4375,"roll":26.8125},"location":"Right Knee"},{"euler":{"heading":56.3125,"pitch":-125.75,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:43.550"} +{"sensors":[{"euler":{"heading":287.5,"pitch":149.4375,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":85.3125,"pitch":112.6875,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":-23.0625,"roll":51.8125},"location":"Right Ankle"},{"euler":{"heading":26.75,"pitch":-117.75,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":118.75,"pitch":130.8125,"roll":31.875},"location":"Right Knee"},{"euler":{"heading":59.625,"pitch":-129.75,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:43.651"} +{"sensors":[{"euler":{"heading":290.0625,"pitch":145.9375,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":113.9375,"roll":47.375},"location":"Left Ankle"},{"euler":{"heading":102.1875,"pitch":-8.875,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":34.125,"pitch":-114.1875,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":109.25,"pitch":127.25,"roll":23.6875},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-133.625,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:43.752"} +{"sensors":[{"euler":{"heading":295.5,"pitch":141.875,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":93.4375,"pitch":115.8125,"roll":50.1875},"location":"Left Ankle"},{"euler":{"heading":125.3125,"pitch":21.375,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":35.875,"pitch":-115.3125,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":93.75,"pitch":127.0,"roll":8.375},"location":"Right Knee"},{"euler":{"heading":63.6875,"pitch":-140.1875,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:43.853"} +{"sensors":[{"euler":{"heading":301.125,"pitch":138.75,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":99.0625,"pitch":118.625,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":141.375,"pitch":40.4375,"roll":47.6875},"location":"Right Ankle"},{"euler":{"heading":29.9375,"pitch":-118.375,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":77.6875,"pitch":126.6875,"roll":-4.5},"location":"Right Knee"},{"euler":{"heading":63.5,"pitch":-145.0,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:43.953"} +{"sensors":[{"euler":{"heading":306.75,"pitch":135.6875,"roll":27.75},"location":"Left Knee"},{"euler":{"heading":106.5625,"pitch":126.5,"roll":59.0},"location":"Left Ankle"},{"euler":{"heading":55.6875,"pitch":46.625,"roll":42.75},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-124.3125,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":73.5625,"pitch":123.25,"roll":-8.9375},"location":"Right Knee"},{"euler":{"heading":62.9375,"pitch":-148.0625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:44.54"} +{"sensors":[{"euler":{"heading":317.0,"pitch":132.5625,"roll":20.875},"location":"Left Knee"},{"euler":{"heading":115.5,"pitch":145.1875,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":135.0,"pitch":41.1875,"roll":47.1875},"location":"Right Ankle"},{"euler":{"heading":17.6875,"pitch":-127.0625,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":77.875,"pitch":117.625,"roll":-5.1875},"location":"Right Knee"},{"euler":{"heading":65.0625,"pitch":-148.8125,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:44.154"} +{"sensors":[{"euler":{"heading":333.5,"pitch":131.25,"roll":10.9375},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":-172.1875,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":129.8125,"pitch":36.0,"roll":48.1875},"location":"Right Ankle"},{"euler":{"heading":15.3125,"pitch":-127.8125,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":78.25,"pitch":115.75,"roll":-2.5},"location":"Right Knee"},{"euler":{"heading":52.25,"pitch":-133.0625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:44.254"} +{"sensors":[{"euler":{"heading":336.5625,"pitch":134.6875,"roll":9.625},"location":"Left Knee"},{"euler":{"heading":126.9375,"pitch":176.4375,"roll":71.75},"location":"Left Ankle"},{"euler":{"heading":127.8125,"pitch":32.75,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":15.25,"pitch":-127.6875,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":78.8125,"pitch":115.0,"roll":0.4375},"location":"Right Knee"},{"euler":{"heading":44.875,"pitch":-120.25,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:44.355"} +{"sensors":[{"euler":{"heading":196.8125,"pitch":144.9375,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":97.0625,"pitch":122.875,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":124.625,"pitch":29.9375,"roll":49.125},"location":"Right Ankle"},{"euler":{"heading":16.875,"pitch":-124.625,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":80.125,"pitch":115.0625,"roll":3.8125},"location":"Right Knee"},{"euler":{"heading":42.875,"pitch":-118.4375,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:44.456"} +{"sensors":[{"euler":{"heading":212.0,"pitch":159.5,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":68.4375,"pitch":107.5,"roll":37.625},"location":"Left Ankle"},{"euler":{"heading":121.75,"pitch":26.8125,"roll":49.6875},"location":"Right Ankle"},{"euler":{"heading":18.5625,"pitch":-124.625,"roll":71.1875},"location":"Right Hip"},{"euler":{"heading":84.3125,"pitch":116.0,"roll":8.5},"location":"Right Knee"},{"euler":{"heading":45.25,"pitch":-119.0,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:44.556"} +{"sensors":[{"euler":{"heading":221.9375,"pitch":167.5625,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":57.3125,"pitch":102.75,"roll":26.3125},"location":"Left Ankle"},{"euler":{"heading":115.5,"pitch":17.8125,"roll":51.6875},"location":"Right Ankle"},{"euler":{"heading":18.5625,"pitch":-130.0625,"roll":73.3125},"location":"Right Hip"},{"euler":{"heading":89.5625,"pitch":118.9375,"roll":13.3125},"location":"Right Knee"},{"euler":{"heading":52.5,"pitch":-123.6875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:44.657"} +{"sensors":[{"euler":{"heading":223.75,"pitch":159.3125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":71.625,"pitch":109.875,"roll":33.8125},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":5.375,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-134.75,"roll":74.3125},"location":"Right Hip"},{"euler":{"heading":98.625,"pitch":124.0,"roll":20.4375},"location":"Right Knee"},{"euler":{"heading":56.25,"pitch":-126.3125,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:44.759"} +{"sensors":[{"euler":{"heading":219.6875,"pitch":151.75,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":84.0625,"pitch":113.0,"roll":42.0625},"location":"Left Ankle"},{"euler":{"heading":94.6875,"pitch":-18.0,"roll":51.6875},"location":"Right Ankle"},{"euler":{"heading":26.3125,"pitch":-120.375,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":114.1875,"pitch":126.75,"roll":29.9375},"location":"Right Knee"},{"euler":{"heading":58.375,"pitch":-127.625,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:44.859"} +{"sensors":[{"euler":{"heading":291.0,"pitch":146.125,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":92.875,"pitch":114.375,"roll":47.125},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":-12.5,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":34.1875,"pitch":-111.4375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":114.1875,"pitch":128.5,"roll":26.9375},"location":"Right Knee"},{"euler":{"heading":61.125,"pitch":-132.0,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:44.960"} +{"sensors":[{"euler":{"heading":296.5,"pitch":141.8125,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":115.875,"roll":49.875},"location":"Left Ankle"},{"euler":{"heading":119.4375,"pitch":12.6875,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":37.0,"pitch":-112.1875,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":98.875,"pitch":127.4375,"roll":12.125},"location":"Right Knee"},{"euler":{"heading":63.1875,"pitch":-137.125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:45.61"} +{"sensors":[{"euler":{"heading":302.3125,"pitch":138.1875,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":101.25,"pitch":118.75,"roll":52.9375},"location":"Left Ankle"},{"euler":{"heading":135.375,"pitch":34.6875,"roll":52.125},"location":"Right Ankle"},{"euler":{"heading":33.3125,"pitch":-113.625,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":84.0,"pitch":127.125,"roll":-0.125},"location":"Right Knee"},{"euler":{"heading":63.4375,"pitch":-142.1875,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:45.161"} +{"sensors":[{"euler":{"heading":308.0,"pitch":135.1875,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":124.75,"roll":57.1875},"location":"Left Ankle"},{"euler":{"heading":60.0,"pitch":46.4375,"roll":41.25},"location":"Right Ankle"},{"euler":{"heading":23.8125,"pitch":-121.5,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":70.5,"pitch":126.6875,"roll":-10.1875},"location":"Right Knee"},{"euler":{"heading":63.5,"pitch":-145.0625,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:45.262"} +{"sensors":[{"euler":{"heading":313.25,"pitch":134.125,"roll":23.625},"location":"Left Knee"},{"euler":{"heading":111.375,"pitch":134.9375,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":53.0625,"pitch":42.125,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-125.375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":74.75,"pitch":123.0,"roll":-7.25},"location":"Right Knee"},{"euler":{"heading":64.1875,"pitch":-149.9375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:45.363"} +{"sensors":[{"euler":{"heading":325.8125,"pitch":134.0,"roll":13.5},"location":"Left Knee"},{"euler":{"heading":122.875,"pitch":169.875,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":134.0,"pitch":35.1875,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":19.6875,"pitch":-125.9375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":77.75,"pitch":119.75,"roll":-3.75},"location":"Right Knee"},{"euler":{"heading":57.6875,"pitch":-138.4375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:45.463"} +{"sensors":[{"euler":{"heading":335.0,"pitch":134.625,"roll":9.875},"location":"Left Knee"},{"euler":{"heading":126.5,"pitch":178.5,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":130.1875,"pitch":31.625,"roll":48.3125},"location":"Right Ankle"},{"euler":{"heading":16.6875,"pitch":-127.3125,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":75.75,"pitch":117.5625,"roll":-1.875},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-121.25,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:45.564"} +{"sensors":[{"euler":{"heading":195.625,"pitch":140.6875,"roll":18.875},"location":"Left Knee"},{"euler":{"heading":112.4375,"pitch":137.5,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":125.9375,"pitch":28.5625,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":18.0625,"pitch":-123.9375,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":78.1875,"pitch":116.3125,"roll":1.4375},"location":"Right Knee"},{"euler":{"heading":45.375,"pitch":-119.25,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:45.665"} +{"sensors":[{"euler":{"heading":208.75,"pitch":155.5625,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":78.1875,"pitch":112.8125,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":121.5,"pitch":25.0625,"roll":50.9375},"location":"Right Ankle"},{"euler":{"heading":18.375,"pitch":-124.75,"roll":71.0},"location":"Right Hip"},{"euler":{"heading":81.75,"pitch":116.8125,"roll":5.1875},"location":"Right Knee"},{"euler":{"heading":45.1875,"pitch":-117.625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:45.766"} +{"sensors":[{"euler":{"heading":220.875,"pitch":166.4375,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":58.625,"pitch":103.0625,"roll":27.4375},"location":"Left Ankle"},{"euler":{"heading":115.4375,"pitch":18.5,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":18.75,"pitch":-127.0625,"roll":72.8125},"location":"Right Hip"},{"euler":{"heading":86.125,"pitch":118.25,"roll":9.9375},"location":"Right Knee"},{"euler":{"heading":51.25,"pitch":-122.0,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:45.866"} +{"sensors":[{"euler":{"heading":223.0,"pitch":162.1875,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":65.375,"pitch":107.1875,"roll":30.8125},"location":"Left Ankle"},{"euler":{"heading":108.25,"pitch":6.875,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":17.5,"pitch":-135.0,"roll":74.5},"location":"Right Hip"},{"euler":{"heading":93.25,"pitch":121.3125,"roll":16.125},"location":"Right Knee"},{"euler":{"heading":56.375,"pitch":-124.5625,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:45.967"} +{"sensors":[{"euler":{"heading":219.75,"pitch":154.6875,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":79.8125,"pitch":110.75,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":99.5,"pitch":-11.375,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":20.75,"pitch":-133.0,"roll":71.1875},"location":"Right Hip"},{"euler":{"heading":105.8125,"pitch":127.0,"roll":24.875},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-125.1875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:46.67"} +{"sensors":[{"euler":{"heading":283.5,"pitch":149.75,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":85.4375,"pitch":111.875,"roll":44.4375},"location":"Left Ankle"},{"euler":{"heading":96.5,"pitch":-20.9375,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":29.1875,"pitch":-117.5625,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":117.1875,"pitch":131.4375,"roll":28.0625},"location":"Right Knee"},{"euler":{"heading":58.1875,"pitch":-130.25,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:46.169"} +{"sensors":[{"euler":{"heading":283.8125,"pitch":147.375,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":87.25,"pitch":111.9375,"roll":47.375},"location":"Left Ankle"},{"euler":{"heading":109.0,"pitch":-1.5625,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":33.3125,"pitch":-114.9375,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":107.1875,"pitch":128.25,"roll":19.5},"location":"Right Knee"},{"euler":{"heading":58.5,"pitch":-135.0625,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:46.269"} +{"sensors":[{"euler":{"heading":288.75,"pitch":144.1875,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":90.0,"pitch":113.125,"roll":50.0625},"location":"Left Ankle"},{"euler":{"heading":121.6875,"pitch":24.0,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":32.625,"pitch":-118.5,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":89.8125,"pitch":124.9375,"roll":4.1875},"location":"Right Knee"},{"euler":{"heading":59.9375,"pitch":-141.625,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:46.370"} +{"sensors":[{"euler":{"heading":295.625,"pitch":140.9375,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":94.75,"pitch":115.5,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":142.25,"pitch":43.25,"roll":46.4375},"location":"Right Ankle"},{"euler":{"heading":27.0,"pitch":-121.625,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":73.0,"pitch":126.875,"roll":-7.375},"location":"Right Knee"},{"euler":{"heading":61.3125,"pitch":-145.1875,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:46.471"} +{"sensors":[{"euler":{"heading":301.4375,"pitch":136.875,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":102.4375,"pitch":122.8125,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":58.8125,"pitch":47.3125,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-126.75,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":66.4375,"pitch":124.5625,"roll":-12.5},"location":"Right Knee"},{"euler":{"heading":64.4375,"pitch":-150.3125,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:46.572"} +{"sensors":[{"euler":{"heading":313.125,"pitch":134.0,"roll":19.9375},"location":"Left Knee"},{"euler":{"heading":110.875,"pitch":141.5625,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":138.125,"pitch":40.125,"roll":45.375},"location":"Right Ankle"},{"euler":{"heading":17.25,"pitch":-130.9375,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":70.0625,"pitch":120.0625,"roll":-9.1875},"location":"Right Knee"},{"euler":{"heading":67.0625,"pitch":-152.125,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:46.673"} +{"sensors":[{"euler":{"heading":334.9375,"pitch":128.8125,"roll":11.375},"location":"Left Knee"},{"euler":{"heading":135.75,"pitch":-173.25,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":131.5,"pitch":37.0625,"roll":46.875},"location":"Right Ankle"},{"euler":{"heading":15.3125,"pitch":-130.1875,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":73.0625,"pitch":116.125,"roll":-5.125},"location":"Right Knee"},{"euler":{"heading":57.25,"pitch":-129.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:46.774"} +{"sensors":[{"euler":{"heading":331.0625,"pitch":135.5625,"roll":13.0},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":175.875,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":126.125,"pitch":33.5,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":16.25,"pitch":-127.0625,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":75.125,"pitch":114.0,"roll":-2.125},"location":"Right Knee"},{"euler":{"heading":49.0625,"pitch":-120.0625,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:46.876"} +{"sensors":[{"euler":{"heading":200.6875,"pitch":148.5625,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":96.1875,"pitch":124.5625,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":122.4375,"pitch":30.125,"roll":49.25},"location":"Right Ankle"},{"euler":{"heading":16.875,"pitch":-125.375,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":78.3125,"pitch":113.625,"roll":1.5},"location":"Right Knee"},{"euler":{"heading":45.3125,"pitch":-116.4375,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:46.977"} +{"sensors":[{"euler":{"heading":215.3125,"pitch":163.1875,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":64.875,"pitch":106.4375,"roll":33.9375},"location":"Left Ankle"},{"euler":{"heading":118.0,"pitch":26.0,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":16.625,"pitch":-125.875,"roll":72.1875},"location":"Right Hip"},{"euler":{"heading":80.25,"pitch":113.3125,"roll":5.25},"location":"Right Knee"},{"euler":{"heading":47.3125,"pitch":-118.75,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:47.78"} +{"sensors":[{"euler":{"heading":222.625,"pitch":170.4375,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":57.3125,"pitch":102.5,"roll":26.125},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":17.1875,"roll":51.9375},"location":"Right Ankle"},{"euler":{"heading":16.875,"pitch":-130.375,"roll":74.25},"location":"Right Hip"},{"euler":{"heading":86.0,"pitch":116.0625,"roll":11.0},"location":"Right Knee"},{"euler":{"heading":53.3125,"pitch":-123.3125,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:47.179"} +{"sensors":[{"euler":{"heading":223.5625,"pitch":161.625,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":78.1875,"pitch":109.75,"roll":36.375},"location":"Left Ankle"},{"euler":{"heading":103.8125,"pitch":0.9375,"roll":51.125},"location":"Right Ankle"},{"euler":{"heading":17.8125,"pitch":-135.625,"roll":73.9375},"location":"Right Hip"},{"euler":{"heading":93.5,"pitch":122.5625,"roll":18.0},"location":"Right Knee"},{"euler":{"heading":55.875,"pitch":-124.8125,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:47.279"} +{"sensors":[{"euler":{"heading":280.375,"pitch":152.625,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":83.5,"pitch":112.375,"roll":42.25},"location":"Left Ankle"},{"euler":{"heading":93.0625,"pitch":-21.375,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":24.875,"pitch":-127.625,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":108.25,"pitch":127.1875,"roll":26.5},"location":"Right Knee"},{"euler":{"heading":56.375,"pitch":-124.6875,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:47.380"} +{"sensors":[{"euler":{"heading":285.625,"pitch":147.625,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":89.5625,"pitch":114.0,"roll":46.0},"location":"Left Ankle"},{"euler":{"heading":101.125,"pitch":-14.3125,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":34.0625,"pitch":-119.625,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":108.5625,"pitch":128.9375,"roll":23.0625},"location":"Right Knee"},{"euler":{"heading":58.6875,"pitch":-129.1875,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:47.481"} +{"sensors":[{"euler":{"heading":288.875,"pitch":144.1875,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":92.625,"pitch":115.0625,"roll":49.0},"location":"Left Ankle"},{"euler":{"heading":115.4375,"pitch":2.375,"roll":57.375},"location":"Right Ankle"},{"euler":{"heading":37.375,"pitch":-118.75,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":81.25,"pitch":129.0625,"roll":10.5625},"location":"Right Knee"},{"euler":{"heading":59.875,"pitch":-136.8125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:47.581"} +{"sensors":[{"euler":{"heading":295.8125,"pitch":140.4375,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":118.125,"roll":52.5625},"location":"Left Ankle"},{"euler":{"heading":135.6875,"pitch":32.8125,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":34.5,"pitch":-121.1875,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":78.5625,"pitch":128.625,"roll":-3.0},"location":"Right Knee"},{"euler":{"heading":61.0625,"pitch":-142.4375,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:47.682"} +{"sensors":[{"euler":{"heading":302.375,"pitch":137.0625,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":102.125,"pitch":122.625,"roll":56.4375},"location":"Left Ankle"},{"euler":{"heading":60.875,"pitch":42.75,"roll":42.25},"location":"Right Ankle"},{"euler":{"heading":26.5,"pitch":-128.9375,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":60.8125,"pitch":130.375,"roll":-13.4375},"location":"Right Knee"},{"euler":{"heading":63.25,"pitch":-147.625,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:47.782"} +{"sensors":[{"euler":{"heading":311.0,"pitch":133.3125,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":109.8125,"pitch":132.25,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":55.875,"pitch":39.375,"roll":44.625},"location":"Right Ankle"},{"euler":{"heading":21.375,"pitch":-131.6875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":65.5625,"pitch":125.875,"roll":-11.0},"location":"Right Knee"},{"euler":{"heading":66.6875,"pitch":-153.75,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:47.884"} +{"sensors":[{"euler":{"heading":324.625,"pitch":131.1875,"roll":15.5625},"location":"Left Knee"},{"euler":{"heading":118.625,"pitch":161.0,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":136.25,"pitch":33.5625,"roll":47.375},"location":"Right Ankle"},{"euler":{"heading":22.4375,"pitch":-132.4375,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":70.125,"pitch":122.0625,"roll":-7.125},"location":"Right Knee"},{"euler":{"heading":63.8125,"pitch":-144.875,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:47.985"} +{"sensors":[{"euler":{"heading":335.5,"pitch":130.875,"roll":10.625},"location":"Left Knee"},{"euler":{"heading":125.4375,"pitch":-177.3125,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":132.375,"pitch":29.9375,"roll":47.75},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-133.4375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":70.0,"pitch":119.8125,"roll":-4.5625},"location":"Right Knee"},{"euler":{"heading":51.0625,"pitch":-123.625,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:48.87"} +{"sensors":[{"euler":{"heading":322.25,"pitch":137.6875,"roll":17.75},"location":"Left Knee"},{"euler":{"heading":116.0,"pitch":155.125,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":129.0625,"pitch":26.8125,"roll":48.0},"location":"Right Ankle"},{"euler":{"heading":19.1875,"pitch":-132.5625,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":71.75,"pitch":118.75,"roll":-1.875},"location":"Right Knee"},{"euler":{"heading":46.5625,"pitch":-121.4375,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:48.187"} +{"sensors":[{"euler":{"heading":205.6875,"pitch":153.0625,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":83.5625,"pitch":112.4375,"roll":49.5625},"location":"Left Ankle"},{"euler":{"heading":125.9375,"pitch":23.1875,"roll":49.0},"location":"Right Ankle"},{"euler":{"heading":19.4375,"pitch":-134.25,"roll":70.6875},"location":"Right Hip"},{"euler":{"heading":73.8125,"pitch":119.6875,"roll":1.3125},"location":"Right Knee"},{"euler":{"heading":44.5,"pitch":-119.8125,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:48.288"} +{"sensors":[{"euler":{"heading":218.9375,"pitch":165.3125,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":62.0,"pitch":103.0625,"roll":31.25},"location":"Left Ankle"},{"euler":{"heading":120.75,"pitch":18.625,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":18.5,"pitch":-135.75,"roll":72.9375},"location":"Right Hip"},{"euler":{"heading":77.125,"pitch":119.9375,"roll":5.3125},"location":"Right Knee"},{"euler":{"heading":47.875,"pitch":-122.6875,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:48.389"} +{"sensors":[{"euler":{"heading":225.5,"pitch":166.3125,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":61.75,"pitch":104.75,"roll":27.6875},"location":"Left Ankle"},{"euler":{"heading":114.75,"pitch":11.1875,"roll":51.25},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-145.625,"roll":73.5625},"location":"Right Hip"},{"euler":{"heading":83.125,"pitch":122.4375,"roll":10.9375},"location":"Right Knee"},{"euler":{"heading":54.5625,"pitch":-126.375,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:48.490"} +{"sensors":[{"euler":{"heading":223.25,"pitch":156.25,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":109.375,"roll":37.875},"location":"Left Ankle"},{"euler":{"heading":104.0625,"pitch":-6.3125,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":21.0625,"pitch":-140.6875,"roll":71.5625},"location":"Right Hip"},{"euler":{"heading":96.4375,"pitch":128.875,"roll":20.875},"location":"Right Knee"},{"euler":{"heading":56.375,"pitch":-126.1875,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:48.592"} +{"sensors":[{"euler":{"heading":285.125,"pitch":148.9375,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":88.3125,"pitch":111.75,"roll":44.75},"location":"Left Ankle"},{"euler":{"heading":93.125,"pitch":-22.5,"roll":49.8125},"location":"Right Ankle"},{"euler":{"heading":31.6875,"pitch":-120.5,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":112.125,"pitch":129.375,"roll":28.4375},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-130.4375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:48.692"} +{"sensors":[{"euler":{"heading":289.0,"pitch":144.25,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":95.125,"pitch":113.6875,"roll":49.5},"location":"Left Ankle"},{"euler":{"heading":103.625,"pitch":-7.625,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":38.0,"pitch":-117.0625,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":109.375,"pitch":128.0625,"roll":21.0},"location":"Right Knee"},{"euler":{"heading":60.9375,"pitch":-135.125,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:48.793"} +{"sensors":[{"euler":{"heading":291.6875,"pitch":141.625,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":95.4375,"pitch":114.875,"roll":51.5625},"location":"Left Ankle"},{"euler":{"heading":122.25,"pitch":13.375,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":38.625,"pitch":-118.3125,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":90.1875,"pitch":128.9375,"roll":5.25},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-140.0625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:48.894"} +{"sensors":[{"euler":{"heading":297.6875,"pitch":138.1875,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":118.25,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":142.3125,"pitch":37.625,"roll":47.1875},"location":"Right Ankle"},{"euler":{"heading":31.6875,"pitch":-121.8125,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":69.5,"pitch":128.8125,"roll":-8.125},"location":"Right Knee"},{"euler":{"heading":61.75,"pitch":-144.4375,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:48.995"} +{"sensors":[{"euler":{"heading":303.5625,"pitch":135.5625,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":105.4375,"pitch":123.8125,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":60.4375,"pitch":42.625,"roll":40.5625},"location":"Right Ankle"},{"euler":{"heading":23.375,"pitch":-128.1875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":61.625,"pitch":127.5,"roll":-13.0625},"location":"Right Knee"},{"euler":{"heading":63.75,"pitch":-149.875,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:49.96"} +{"sensors":[{"euler":{"heading":312.1875,"pitch":132.3125,"roll":23.125},"location":"Left Knee"},{"euler":{"heading":112.1875,"pitch":141.625,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":139.3125,"pitch":38.0625,"roll":45.0625},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-132.0,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":68.75,"pitch":120.875,"roll":-9.0},"location":"Right Knee"},{"euler":{"heading":66.25,"pitch":-150.0,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:49.197"} +{"sensors":[{"euler":{"heading":328.875,"pitch":130.75,"roll":12.5625},"location":"Left Knee"},{"euler":{"heading":136.0,"pitch":-171.1875,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":132.4375,"pitch":34.875,"roll":46.8125},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-131.9375,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":70.75,"pitch":117.9375,"roll":-5.75},"location":"Right Knee"},{"euler":{"heading":53.0,"pitch":-130.1875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:49.298"} +{"sensors":[{"euler":{"heading":333.25,"pitch":134.625,"roll":12.5},"location":"Left Knee"},{"euler":{"heading":129.3125,"pitch":179.0625,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":128.8125,"pitch":31.25,"roll":47.5},"location":"Right Ankle"},{"euler":{"heading":18.1875,"pitch":-130.875,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":72.4375,"pitch":117.3125,"roll":-2.5625},"location":"Right Knee"},{"euler":{"heading":46.625,"pitch":-121.625,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:49.399"} +{"sensors":[{"euler":{"heading":200.4375,"pitch":145.875,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":99.625,"pitch":127.125,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":125.375,"pitch":27.8125,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":19.1875,"pitch":-129.9375,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":74.5,"pitch":117.0,"roll":0.375},"location":"Right Knee"},{"euler":{"heading":46.0,"pitch":-119.8125,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:49.499"} +{"sensors":[{"euler":{"heading":216.25,"pitch":160.1875,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":68.4375,"pitch":109.375,"roll":36.0},"location":"Left Ankle"},{"euler":{"heading":120.625,"pitch":24.875,"roll":49.125},"location":"Right Ankle"},{"euler":{"heading":19.0,"pitch":-131.9375,"roll":71.625},"location":"Right Hip"},{"euler":{"heading":78.375,"pitch":116.5625,"roll":4.5625},"location":"Right Knee"},{"euler":{"heading":47.4375,"pitch":-120.8125,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:49.600"} +{"sensors":[{"euler":{"heading":222.5625,"pitch":167.0625,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":56.5,"pitch":102.875,"roll":25.4375},"location":"Left Ankle"},{"euler":{"heading":115.125,"pitch":18.4375,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":17.875,"pitch":-137.3125,"roll":73.875},"location":"Right Hip"},{"euler":{"heading":83.375,"pitch":118.125,"roll":9.6875},"location":"Right Knee"},{"euler":{"heading":52.3125,"pitch":-124.875,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:49.701"} +{"sensors":[{"euler":{"heading":222.4375,"pitch":158.5625,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":70.625,"pitch":108.0,"roll":33.875},"location":"Left Ankle"},{"euler":{"heading":107.0625,"pitch":4.25,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":17.9375,"pitch":-143.0,"roll":74.0},"location":"Right Hip"},{"euler":{"heading":91.5,"pitch":123.0,"roll":17.0625},"location":"Right Knee"},{"euler":{"heading":57.0625,"pitch":-127.9375,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:49.802"} +{"sensors":[{"euler":{"heading":280.125,"pitch":151.6875,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":79.875,"pitch":110.1875,"roll":41.375},"location":"Left Ankle"},{"euler":{"heading":97.5625,"pitch":-14.875,"roll":51.5},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-131.625,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":106.6875,"pitch":126.75,"roll":26.0625},"location":"Right Knee"},{"euler":{"heading":57.3125,"pitch":-129.25,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:49.902"} +{"sensors":[{"euler":{"heading":283.4375,"pitch":147.6875,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":85.3125,"pitch":111.8125,"roll":45.3125},"location":"Left Ankle"},{"euler":{"heading":101.5,"pitch":-10.0,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":34.75,"pitch":-121.4375,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":109.625,"pitch":128.5625,"roll":23.75},"location":"Right Knee"},{"euler":{"heading":58.4375,"pitch":-134.4375,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:50.3"} +{"sensors":[{"euler":{"heading":290.25,"pitch":142.75,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":93.4375,"pitch":114.125,"roll":49.75},"location":"Left Ankle"},{"euler":{"heading":122.3125,"pitch":18.6875,"roll":53.5625},"location":"Right Ankle"},{"euler":{"heading":37.375,"pitch":-119.75,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":94.4375,"pitch":126.9375,"roll":10.5},"location":"Right Knee"},{"euler":{"heading":60.5,"pitch":-136.5,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:50.103"} +{"sensors":[{"euler":{"heading":297.25,"pitch":138.75,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":97.8125,"pitch":117.1875,"roll":53.25},"location":"Left Ankle"},{"euler":{"heading":136.4375,"pitch":35.375,"roll":49.4375},"location":"Right Ankle"},{"euler":{"heading":36.375,"pitch":-122.0625,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":76.0625,"pitch":127.5625,"roll":-3.1875},"location":"Right Knee"},{"euler":{"heading":61.5625,"pitch":-142.0,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:50.204"} +{"sensors":[{"euler":{"heading":303.375,"pitch":135.4375,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":121.25,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":43.4375,"roll":42.0},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-127.125,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":61.5625,"pitch":129.0625,"roll":-12.6875},"location":"Right Knee"},{"euler":{"heading":63.25,"pitch":-147.6875,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:50.305"} +{"sensors":[{"euler":{"heading":307.0625,"pitch":133.75,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":107.1875,"pitch":131.125,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":54.5,"pitch":44.0625,"roll":42.4375},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-131.1875,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":66.8125,"pitch":122.875,"roll":-11.75},"location":"Right Knee"},{"euler":{"heading":64.0,"pitch":-154.3125,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:50.406"} +{"sensors":[{"euler":{"heading":321.875,"pitch":132.375,"roll":14.6875},"location":"Left Knee"},{"euler":{"heading":120.875,"pitch":168.1875,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":134.25,"pitch":36.9375,"roll":45.75},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-131.3125,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":71.4375,"pitch":118.9375,"roll":-7.3125},"location":"Right Knee"},{"euler":{"heading":60.5,"pitch":-146.8125,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:50.507"} +{"sensors":[{"euler":{"heading":337.1875,"pitch":130.3125,"roll":9.8125},"location":"Left Knee"},{"euler":{"heading":128.6875,"pitch":-179.6875,"roll":68.375},"location":"Left Ankle"},{"euler":{"heading":128.375,"pitch":35.9375,"roll":46.3125},"location":"Right Ankle"},{"euler":{"heading":17.3125,"pitch":-130.1875,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":71.375,"pitch":114.5625,"roll":-4.6875},"location":"Right Knee"},{"euler":{"heading":52.75,"pitch":-126.0,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:50.608"} +{"sensors":[{"euler":{"heading":207.8125,"pitch":141.1875,"roll":19.9375},"location":"Left Knee"},{"euler":{"heading":106.875,"pitch":132.3125,"roll":66.1875},"location":"Left Ankle"},{"euler":{"heading":124.8125,"pitch":34.25,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":17.3125,"pitch":-128.3125,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":73.0625,"pitch":112.5625,"roll":-2.0625},"location":"Right Knee"},{"euler":{"heading":43.5,"pitch":-121.6875,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:50.709"} +{"sensors":[{"euler":{"heading":207.5,"pitch":155.4375,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":76.5,"pitch":109.8125,"roll":43.25},"location":"Left Ankle"},{"euler":{"heading":122.0,"pitch":31.8125,"roll":47.3125},"location":"Right Ankle"},{"euler":{"heading":17.8125,"pitch":-128.875,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":75.625,"pitch":112.625,"roll":1.1875},"location":"Right Knee"},{"euler":{"heading":42.0,"pitch":-118.25,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:50.809"} +{"sensors":[{"euler":{"heading":221.25,"pitch":165.8125,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":57.6875,"pitch":103.3125,"roll":25.75},"location":"Left Ankle"},{"euler":{"heading":117.3125,"pitch":27.0625,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":18.75,"pitch":-132.5625,"roll":72.125},"location":"Right Hip"},{"euler":{"heading":80.1875,"pitch":114.0,"roll":6.375},"location":"Right Knee"},{"euler":{"heading":50.1875,"pitch":-122.625,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:50.913"} +{"sensors":[{"euler":{"heading":224.75,"pitch":161.1875,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":65.5,"pitch":108.0625,"roll":29.75},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":16.8125,"roll":50.5},"location":"Right Ankle"},{"euler":{"heading":18.125,"pitch":-140.25,"roll":73.6875},"location":"Right Hip"},{"euler":{"heading":84.125,"pitch":118.5,"roll":12.375},"location":"Right Knee"},{"euler":{"heading":57.625,"pitch":-126.6875,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:51.13"} +{"sensors":[{"euler":{"heading":221.0,"pitch":154.9375,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":80.125,"pitch":110.625,"roll":39.4375},"location":"Left Ankle"},{"euler":{"heading":103.25,"pitch":-2.4375,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-136.25,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":98.125,"pitch":125.3125,"roll":22.5625},"location":"Right Knee"},{"euler":{"heading":62.1875,"pitch":-114.3125,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:51.114"} +{"sensors":[{"euler":{"heading":284.5625,"pitch":149.125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":86.0,"pitch":112.4375,"roll":43.8125},"location":"Left Ankle"},{"euler":{"heading":96.25,"pitch":-18.75,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":32.25,"pitch":-122.0,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":107.625,"pitch":128.4375,"roll":25.4375},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-131.6875,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:51.215"} +{"sensors":[{"euler":{"heading":291.875,"pitch":143.5625,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":92.625,"pitch":114.4375,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":109.0,"pitch":-0.75,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":38.0,"pitch":-119.1875,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":102.25,"pitch":126.75,"roll":16.75},"location":"Right Knee"},{"euler":{"heading":64.0625,"pitch":-137.9375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:51.316"} +{"sensors":[{"euler":{"heading":298.125,"pitch":139.5625,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":96.9375,"pitch":117.0,"roll":51.0},"location":"Left Ankle"},{"euler":{"heading":130.6875,"pitch":26.875,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":39.375,"pitch":-120.125,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":83.5,"pitch":127.9375,"roll":2.125},"location":"Right Knee"},{"euler":{"heading":65.0,"pitch":-143.125,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:51.417"} +{"sensors":[{"euler":{"heading":304.0,"pitch":136.625,"roll":31.375},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":121.0,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":56.5625,"pitch":41.5625,"roll":44.375},"location":"Right Ankle"},{"euler":{"heading":32.1875,"pitch":-126.25,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":65.3125,"pitch":128.625,"roll":-10.5625},"location":"Right Knee"},{"euler":{"heading":65.1875,"pitch":-147.5,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:51.517"} +{"sensors":[{"euler":{"heading":309.5,"pitch":133.875,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":106.625,"pitch":127.125,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":61.0,"pitch":45.5,"roll":39.5625},"location":"Right Ankle"},{"euler":{"heading":23.25,"pitch":-130.875,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":62.125,"pitch":126.6875,"roll":-13.9375},"location":"Right Knee"},{"euler":{"heading":66.3125,"pitch":-152.6875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:51.618"} +{"sensors":[{"euler":{"heading":319.3125,"pitch":131.625,"roll":20.125},"location":"Left Knee"},{"euler":{"heading":114.125,"pitch":149.3125,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":139.0625,"pitch":39.0625,"roll":45.0625},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-133.25,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":67.6875,"pitch":121.25,"roll":-9.875},"location":"Right Knee"},{"euler":{"heading":68.4375,"pitch":-154.5625,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:51.719"} +{"sensors":[{"euler":{"heading":339.0625,"pitch":128.4375,"roll":9.8125},"location":"Left Knee"},{"euler":{"heading":133.4375,"pitch":-174.625,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":131.875,"pitch":35.25,"roll":46.5},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-132.75,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":69.0625,"pitch":117.75,"roll":-6.75},"location":"Right Knee"},{"euler":{"heading":55.125,"pitch":-134.25,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:51.819"} +{"sensors":[{"euler":{"heading":337.1875,"pitch":134.0,"roll":10.6875},"location":"Left Knee"},{"euler":{"heading":129.875,"pitch":177.4375,"roll":68.375},"location":"Left Ankle"},{"euler":{"heading":128.9375,"pitch":30.625,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-131.6875,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":70.6875,"pitch":117.9375,"roll":-3.375},"location":"Right Knee"},{"euler":{"heading":48.5,"pitch":-122.75,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:51.920"} +{"sensors":[{"euler":{"heading":199.5625,"pitch":144.875,"roll":23.9375},"location":"Left Knee"},{"euler":{"heading":93.125,"pitch":123.5625,"roll":55.875},"location":"Left Ankle"},{"euler":{"heading":126.0,"pitch":25.75,"roll":47.75},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-130.625,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":72.4375,"pitch":119.3125,"roll":-0.375},"location":"Right Knee"},{"euler":{"heading":46.125,"pitch":-120.0625,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:52.21"} +{"sensors":[{"euler":{"heading":214.8125,"pitch":158.6875,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":66.6875,"pitch":107.375,"roll":34.6875},"location":"Left Ankle"},{"euler":{"heading":122.25,"pitch":21.875,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":20.875,"pitch":-132.1875,"roll":70.5625},"location":"Right Hip"},{"euler":{"heading":76.125,"pitch":119.375,"roll":3.25},"location":"Right Knee"},{"euler":{"heading":46.6875,"pitch":-119.9375,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:52.122"} +{"sensors":[{"euler":{"heading":224.1875,"pitch":168.125,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":55.6875,"pitch":102.125,"roll":24.0625},"location":"Left Ankle"},{"euler":{"heading":116.375,"pitch":15.125,"roll":49.8125},"location":"Right Ankle"},{"euler":{"heading":21.1875,"pitch":-137.3125,"roll":71.5625},"location":"Right Hip"},{"euler":{"heading":80.3125,"pitch":120.625,"roll":8.25},"location":"Right Knee"},{"euler":{"heading":52.4375,"pitch":-122.6875,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:52.222"} +{"sensors":[{"euler":{"heading":225.25,"pitch":160.375,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":68.5625,"pitch":108.8125,"roll":30.9375},"location":"Left Ankle"},{"euler":{"heading":109.3125,"pitch":4.3125,"roll":48.875},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-148.0625,"roll":71.9375},"location":"Right Hip"},{"euler":{"heading":86.4375,"pitch":124.75,"roll":13.9375},"location":"Right Knee"},{"euler":{"heading":58.6875,"pitch":-125.5625,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:52.323"} +{"sensors":[{"euler":{"heading":283.3125,"pitch":152.75,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":81.625,"pitch":111.9375,"roll":40.5},"location":"Left Ankle"},{"euler":{"heading":96.875,"pitch":-14.1875,"roll":50.375},"location":"Right Ankle"},{"euler":{"heading":25.625,"pitch":-139.4375,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":102.3125,"pitch":128.75,"roll":23.25},"location":"Right Knee"},{"euler":{"heading":58.875,"pitch":-127.8125,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:52.427"} +{"sensors":[{"euler":{"heading":290.625,"pitch":146.1875,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":90.6875,"pitch":113.25,"roll":45.3125},"location":"Left Ankle"},{"euler":{"heading":93.6875,"pitch":-19.6875,"roll":50.0625},"location":"Right Ankle"},{"euler":{"heading":34.25,"pitch":-121.3125,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":110.625,"pitch":130.4375,"roll":26.6875},"location":"Right Knee"},{"euler":{"heading":63.6875,"pitch":-132.5,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:52.528"} +{"sensors":[{"euler":{"heading":296.5625,"pitch":141.1875,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":96.3125,"pitch":114.875,"roll":48.8125},"location":"Left Ankle"},{"euler":{"heading":109.0625,"pitch":-1.6875,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":40.5,"pitch":-119.25,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":99.5625,"pitch":128.0625,"roll":17.1875},"location":"Right Knee"},{"euler":{"heading":65.0625,"pitch":-137.4375,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:52.629"} +{"sensors":[{"euler":{"heading":302.4375,"pitch":137.375,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":100.75,"pitch":117.1875,"roll":51.75},"location":"Left Ankle"},{"euler":{"heading":126.375,"pitch":21.0625,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":40.125,"pitch":-119.25,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":83.375,"pitch":127.9375,"roll":2.5},"location":"Right Knee"},{"euler":{"heading":66.0,"pitch":-143.375,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:52.730"} +{"sensors":[{"euler":{"heading":307.0625,"pitch":134.6875,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":103.875,"pitch":120.25,"roll":55.0625},"location":"Left Ankle"},{"euler":{"heading":54.0,"pitch":42.1875,"roll":44.25},"location":"Right Ankle"},{"euler":{"heading":31.125,"pitch":-126.0625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":66.875,"pitch":126.625,"roll":-10.1875},"location":"Right Knee"},{"euler":{"heading":65.0,"pitch":-146.9375,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:52.831"} +{"sensors":[{"euler":{"heading":311.75,"pitch":132.6875,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":108.4375,"pitch":127.875,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":52.5,"pitch":43.75,"roll":43.1875},"location":"Right Ankle"},{"euler":{"heading":22.4375,"pitch":-132.25,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":67.5625,"pitch":122.1875,"roll":-10.6875},"location":"Right Knee"},{"euler":{"heading":65.5,"pitch":-151.3125,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:52.932"} +{"sensors":[{"euler":{"heading":322.3125,"pitch":129.4375,"roll":19.1875},"location":"Left Knee"},{"euler":{"heading":118.625,"pitch":152.875,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":132.9375,"pitch":38.75,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-133.5625,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":71.5,"pitch":117.1875,"roll":-6.9375},"location":"Right Knee"},{"euler":{"heading":66.3125,"pitch":-145.8125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:53.33"} +{"sensors":[{"euler":{"heading":335.3125,"pitch":129.5,"roll":11.1875},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":178.125,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":126.3125,"pitch":36.5,"roll":46.75},"location":"Right Ankle"},{"euler":{"heading":18.25,"pitch":-132.8125,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":71.875,"pitch":113.75,"roll":-4.375},"location":"Right Knee"},{"euler":{"heading":53.1875,"pitch":-127.625,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:53.133"} +{"sensors":[{"euler":{"heading":189.0,"pitch":137.3125,"roll":15.3125},"location":"Left Knee"},{"euler":{"heading":109.3125,"pitch":145.1875,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":121.1875,"pitch":32.25,"roll":47.5},"location":"Right Ankle"},{"euler":{"heading":17.875,"pitch":-129.5,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":74.5,"pitch":111.8125,"roll":-0.625},"location":"Right Knee"},{"euler":{"heading":44.0625,"pitch":-121.875,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:53.234"} +{"sensors":[{"euler":{"heading":202.3125,"pitch":150.5625,"roll":28.75},"location":"Left Knee"},{"euler":{"heading":81.6875,"pitch":112.1875,"roll":49.25},"location":"Left Ankle"},{"euler":{"heading":118.1875,"pitch":28.5625,"roll":48.3125},"location":"Right Ankle"},{"euler":{"heading":17.1875,"pitch":-128.8125,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":75.5,"pitch":111.5625,"roll":2.1875},"location":"Right Knee"},{"euler":{"heading":41.1875,"pitch":-118.5625,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:53.335"} +{"sensors":[{"euler":{"heading":217.8125,"pitch":162.5625,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":59.25,"pitch":105.375,"roll":28.9375},"location":"Left Ankle"},{"euler":{"heading":115.6875,"pitch":22.3125,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":18.125,"pitch":-135.125,"roll":71.125},"location":"Right Hip"},{"euler":{"heading":79.5625,"pitch":115.0,"roll":6.8125},"location":"Right Knee"},{"euler":{"heading":46.625,"pitch":-121.875,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:53.435"} +{"sensors":[{"euler":{"heading":225.8125,"pitch":165.5,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":60.25,"pitch":107.0625,"roll":25.5625},"location":"Left Ankle"},{"euler":{"heading":110.0,"pitch":11.6875,"roll":50.375},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-144.5625,"roll":71.9375},"location":"Right Hip"},{"euler":{"heading":84.375,"pitch":119.9375,"roll":12.4375},"location":"Right Knee"},{"euler":{"heading":56.25,"pitch":-126.9375,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:53.536"} +{"sensors":[{"euler":{"heading":226.25,"pitch":155.75,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":76.5,"pitch":113.375,"roll":35.375},"location":"Left Ankle"},{"euler":{"heading":102.375,"pitch":-2.125,"roll":51.0625},"location":"Right Ankle"},{"euler":{"heading":19.8125,"pitch":-150.5625,"roll":70.625},"location":"Right Hip"},{"euler":{"heading":93.6875,"pitch":126.4375,"roll":19.625},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-127.8125,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:53.637"} +{"sensors":[{"euler":{"heading":290.75,"pitch":148.1875,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":86.8125,"pitch":115.6875,"roll":41.8125},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":-17.75,"roll":48.125},"location":"Right Ankle"},{"euler":{"heading":29.875,"pitch":-129.9375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":111.375,"pitch":127.0,"roll":29.25},"location":"Right Knee"},{"euler":{"heading":62.375,"pitch":-129.9375,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:53.738"} +{"sensors":[{"euler":{"heading":296.0,"pitch":143.1875,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":93.8125,"pitch":116.875,"roll":45.9375},"location":"Left Ankle"},{"euler":{"heading":93.1875,"pitch":-18.75,"roll":50.75},"location":"Right Ankle"},{"euler":{"heading":38.3125,"pitch":-121.875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":112.4375,"pitch":129.0625,"roll":26.6875},"location":"Right Knee"},{"euler":{"heading":64.0,"pitch":-136.0,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:53.839"} +{"sensors":[{"euler":{"heading":300.75,"pitch":139.0625,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":98.25,"pitch":117.75,"roll":48.875},"location":"Left Ankle"},{"euler":{"heading":112.4375,"pitch":3.1875,"roll":55.625},"location":"Right Ankle"},{"euler":{"heading":42.1875,"pitch":-119.75,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":97.6875,"pitch":128.3125,"roll":13.5625},"location":"Right Knee"},{"euler":{"heading":66.5,"pitch":-142.5,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:53.939"} +{"sensors":[{"euler":{"heading":306.5625,"pitch":135.5,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":102.6875,"pitch":119.9375,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":133.125,"pitch":29.875,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":37.4375,"pitch":-122.625,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":78.75,"pitch":128.375,"roll":-1.625},"location":"Right Knee"},{"euler":{"heading":67.0,"pitch":-147.375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:54.41"} +{"sensors":[{"euler":{"heading":310.8125,"pitch":133.375,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":106.375,"pitch":123.6875,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":57.875,"pitch":44.5625,"roll":41.0},"location":"Right Ankle"},{"euler":{"heading":26.0,"pitch":-130.0,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":62.125,"pitch":127.8125,"roll":-13.625},"location":"Right Knee"},{"euler":{"heading":66.4375,"pitch":-151.9375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:54.142"} +{"sensors":[{"euler":{"heading":317.0,"pitch":130.8125,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":112.1875,"pitch":133.4375,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":52.3125,"pitch":44.4375,"roll":43.3125},"location":"Right Ankle"},{"euler":{"heading":18.8125,"pitch":-134.6875,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":65.9375,"pitch":121.5,"roll":-12.125},"location":"Right Knee"},{"euler":{"heading":69.125,"pitch":-156.8125,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:54.242"} +{"sensors":[{"euler":{"heading":329.4375,"pitch":130.125,"roll":13.3125},"location":"Left Knee"},{"euler":{"heading":128.1875,"pitch":174.1875,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":131.4375,"pitch":38.625,"roll":46.625},"location":"Right Ankle"},{"euler":{"heading":21.375,"pitch":-134.5,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":70.5625,"pitch":118.0,"roll":-7.5625},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-145.875,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:54.343"} +{"sensors":[{"euler":{"heading":340.125,"pitch":130.625,"roll":8.375},"location":"Left Knee"},{"euler":{"heading":132.9375,"pitch":-168.25,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":125.3125,"pitch":36.5,"roll":47.0625},"location":"Right Ankle"},{"euler":{"heading":15.875,"pitch":-133.0,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":73.0,"pitch":112.375,"roll":-3.875},"location":"Right Knee"},{"euler":{"heading":49.375,"pitch":-123.6875,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:54.444"} +{"sensors":[{"euler":{"heading":191.5625,"pitch":138.6875,"roll":16.3125},"location":"Left Knee"},{"euler":{"heading":116.125,"pitch":154.625,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":121.125,"pitch":33.375,"roll":47.8125},"location":"Right Ankle"},{"euler":{"heading":16.875,"pitch":-130.625,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":74.625,"pitch":112.0625,"roll":-1.125},"location":"Right Knee"},{"euler":{"heading":42.375,"pitch":-119.6875,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:54.545"} +{"sensors":[{"euler":{"heading":206.5625,"pitch":153.3125,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":80.9375,"pitch":111.9375,"roll":46.9375},"location":"Left Ankle"},{"euler":{"heading":118.1875,"pitch":28.5625,"roll":48.375},"location":"Right Ankle"},{"euler":{"heading":18.0625,"pitch":-131.3125,"roll":69.9375},"location":"Right Hip"},{"euler":{"heading":77.375,"pitch":113.75,"roll":2.5},"location":"Right Knee"},{"euler":{"heading":42.75,"pitch":-118.875,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:54.646"} +{"sensors":[{"euler":{"heading":221.0,"pitch":164.25,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":58.625,"pitch":104.625,"roll":27.375},"location":"Left Ankle"},{"euler":{"heading":114.0625,"pitch":22.625,"roll":49.8125},"location":"Right Ankle"},{"euler":{"heading":18.9375,"pitch":-135.9375,"roll":71.3125},"location":"Right Hip"},{"euler":{"heading":79.75,"pitch":115.6875,"roll":6.75},"location":"Right Knee"},{"euler":{"heading":49.6875,"pitch":-122.625,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:54.746"} +{"sensors":[{"euler":{"heading":226.4375,"pitch":161.875,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":64.3125,"pitch":107.8125,"roll":28.4375},"location":"Left Ankle"},{"euler":{"heading":109.25,"pitch":12.25,"roll":50.9375},"location":"Right Ankle"},{"euler":{"heading":19.6875,"pitch":-145.375,"roll":72.125},"location":"Right Hip"},{"euler":{"heading":84.625,"pitch":120.375,"roll":12.25},"location":"Right Knee"},{"euler":{"heading":57.0625,"pitch":-127.25,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:54.847"} +{"sensors":[{"euler":{"heading":222.3125,"pitch":154.4375,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":76.75,"pitch":110.75,"roll":36.9375},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":-3.375,"roll":50.9375},"location":"Right Ankle"},{"euler":{"heading":23.125,"pitch":-141.375,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":97.875,"pitch":126.5625,"roll":21.375},"location":"Right Knee"},{"euler":{"heading":57.25,"pitch":-127.0625,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:54.949"} +{"sensors":[{"euler":{"heading":286.0,"pitch":149.3125,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":82.8125,"pitch":111.75,"roll":42.0},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":-22.25,"roll":48.5},"location":"Right Ankle"},{"euler":{"heading":33.625,"pitch":-123.875,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":108.625,"pitch":130.125,"roll":26.8125},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-131.4375,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:55.49"} +{"sensors":[{"euler":{"heading":287.4375,"pitch":145.875,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":112.875,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":102.125,"pitch":-10.8125,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":40.25,"pitch":-122.1875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":104.0,"pitch":128.6875,"roll":20.0},"location":"Right Knee"},{"euler":{"heading":61.875,"pitch":-136.0,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:55.150"} +{"sensors":[{"euler":{"heading":291.3125,"pitch":143.1875,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":90.3125,"pitch":114.375,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":121.4375,"pitch":13.25,"roll":55.9375},"location":"Right Ankle"},{"euler":{"heading":40.0625,"pitch":-123.0625,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":87.375,"pitch":128.8125,"roll":5.4375},"location":"Right Knee"},{"euler":{"heading":60.625,"pitch":-139.25,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:55.251"} +{"sensors":[{"euler":{"heading":298.1875,"pitch":139.4375,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":95.0625,"pitch":116.625,"roll":52.125},"location":"Left Ankle"},{"euler":{"heading":138.25,"pitch":33.0,"roll":49.3125},"location":"Right Ankle"},{"euler":{"heading":33.625,"pitch":-125.125,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":69.0625,"pitch":129.3125,"roll":-7.6875},"location":"Right Knee"},{"euler":{"heading":63.5625,"pitch":-144.0625,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:55.352"} +{"sensors":[{"euler":{"heading":304.5,"pitch":136.5,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":120.625,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":59.0,"pitch":39.6875,"roll":40.875},"location":"Right Ankle"},{"euler":{"heading":25.75,"pitch":-130.1875,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":55.8125,"pitch":129.8125,"roll":-15.0},"location":"Right Knee"},{"euler":{"heading":66.0,"pitch":-149.9375,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:55.453"} +{"sensors":[{"euler":{"heading":313.9375,"pitch":133.6875,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":109.8125,"pitch":138.0625,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":48.0625,"pitch":36.875,"roll":44.125},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-133.8125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":64.0,"pitch":121.625,"roll":-11.4375},"location":"Right Knee"},{"euler":{"heading":67.25,"pitch":-149.875,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:55.554"} +{"sensors":[{"euler":{"heading":332.8125,"pitch":131.0625,"roll":11.25},"location":"Left Knee"},{"euler":{"heading":133.25,"pitch":-176.4375,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":132.0625,"pitch":33.625,"roll":45.3125},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-132.8125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":66.6875,"pitch":118.3125,"roll":-7.75},"location":"Right Knee"},{"euler":{"heading":55.5625,"pitch":-130.375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:55.654"} +{"sensors":[{"euler":{"heading":338.6875,"pitch":133.9375,"roll":9.6875},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":171.4375,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":127.9375,"pitch":30.75,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":17.9375,"pitch":-131.75,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":68.125,"pitch":115.5625,"roll":-4.75},"location":"Right Knee"},{"euler":{"heading":47.3125,"pitch":-119.4375,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:55.755"} +{"sensors":[{"euler":{"heading":199.1875,"pitch":144.0625,"roll":21.5},"location":"Left Knee"},{"euler":{"heading":96.5625,"pitch":125.625,"roll":57.75},"location":"Left Ankle"},{"euler":{"heading":124.125,"pitch":27.3125,"roll":46.75},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-128.5,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":70.75,"pitch":115.0,"roll":-1.4375},"location":"Right Knee"},{"euler":{"heading":44.1875,"pitch":-117.3125,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:55.855"} +{"sensors":[{"euler":{"heading":215.0625,"pitch":159.1875,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":68.6875,"pitch":109.625,"roll":35.5625},"location":"Left Ankle"},{"euler":{"heading":120.375,"pitch":23.5,"roll":47.6875},"location":"Right Ankle"},{"euler":{"heading":19.9375,"pitch":-130.3125,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":74.4375,"pitch":115.875,"roll":2.8125},"location":"Right Knee"},{"euler":{"heading":46.5,"pitch":-117.875,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:55.957"} +{"sensors":[{"euler":{"heading":224.3125,"pitch":167.125,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":56.3125,"pitch":102.9375,"roll":24.375},"location":"Left Ankle"},{"euler":{"heading":114.875,"pitch":15.4375,"roll":49.0625},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-134.5,"roll":71.8125},"location":"Right Hip"},{"euler":{"heading":78.125,"pitch":118.9375,"roll":7.3125},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-122.75,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:56.58"} +{"sensors":[{"euler":{"heading":226.5,"pitch":158.9375,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":69.875,"pitch":110.5625,"roll":30.8125},"location":"Left Ankle"},{"euler":{"heading":108.25,"pitch":3.75,"roll":48.5625},"location":"Right Ankle"},{"euler":{"heading":21.125,"pitch":-142.5,"roll":72.625},"location":"Right Hip"},{"euler":{"heading":87.0,"pitch":124.1875,"roll":14.5},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-125.75,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:56.160"} +{"sensors":[{"euler":{"heading":284.875,"pitch":151.25,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":113.1875,"roll":39.75},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":-12.5625,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":27.5,"pitch":-135.3125,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":101.125,"pitch":128.0,"roll":22.75},"location":"Right Knee"},{"euler":{"heading":58.8125,"pitch":-126.0625,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:56.261"} +{"sensors":[{"euler":{"heading":289.8125,"pitch":146.4375,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":86.4375,"pitch":114.375,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":-17.3125,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":35.4375,"pitch":-123.3125,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":107.75,"pitch":130.25,"roll":23.9375},"location":"Right Knee"},{"euler":{"heading":61.5,"pitch":-131.1875,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:56.361"} +{"sensors":[{"euler":{"heading":292.75,"pitch":143.3125,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":89.9375,"pitch":115.0625,"roll":46.625},"location":"Left Ankle"},{"euler":{"heading":114.4375,"pitch":1.5,"roll":56.875},"location":"Right Ankle"},{"euler":{"heading":38.75,"pitch":-122.375,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":93.25,"pitch":128.6875,"roll":11.25},"location":"Right Knee"},{"euler":{"heading":62.125,"pitch":-136.5,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:56.462"} +{"sensors":[{"euler":{"heading":298.625,"pitch":139.8125,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":93.75,"pitch":116.8125,"roll":49.4375},"location":"Left Ankle"},{"euler":{"heading":132.875,"pitch":30.0625,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":35.5625,"pitch":-123.5,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":75.4375,"pitch":127.125,"roll":-3.4375},"location":"Right Knee"},{"euler":{"heading":62.9375,"pitch":-142.125,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:56.563"} +{"sensors":[{"euler":{"heading":303.875,"pitch":137.25,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":99.0625,"pitch":119.4375,"roll":54.3125},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":43.125,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":25.9375,"pitch":-130.625,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":57.5,"pitch":128.5625,"roll":-14.8125},"location":"Right Knee"},{"euler":{"heading":63.0625,"pitch":-147.125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:56.663"} +{"sensors":[{"euler":{"heading":310.9375,"pitch":134.125,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":105.6875,"pitch":127.0,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":57.3125,"pitch":39.8125,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-131.875,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":58.9375,"pitch":125.3125,"roll":-13.375},"location":"Right Knee"},{"euler":{"heading":66.0,"pitch":-152.25,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:56.764"} +{"sensors":[{"euler":{"heading":323.875,"pitch":130.75,"roll":16.625},"location":"Left Knee"},{"euler":{"heading":117.625,"pitch":154.5,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":47.3125,"pitch":32.125,"roll":44.875},"location":"Right Ankle"},{"euler":{"heading":22.625,"pitch":-133.4375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":64.0625,"pitch":122.625,"roll":-8.9375},"location":"Right Knee"},{"euler":{"heading":65.5,"pitch":-146.6875,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:56.865"} +{"sensors":[{"euler":{"heading":341.3125,"pitch":129.0625,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":132.4375,"pitch":-174.3125,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":133.125,"pitch":28.9375,"roll":45.6875},"location":"Right Ankle"},{"euler":{"heading":17.5,"pitch":-135.25,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":65.8125,"pitch":120.375,"roll":-5.875},"location":"Right Knee"},{"euler":{"heading":53.625,"pitch":-126.9375,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:56.965"} +{"sensors":[{"euler":{"heading":333.1875,"pitch":135.4375,"roll":12.875},"location":"Left Knee"},{"euler":{"heading":124.9375,"pitch":166.6875,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":129.375,"pitch":25.625,"roll":46.625},"location":"Right Ankle"},{"euler":{"heading":18.25,"pitch":-133.75,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":68.5625,"pitch":119.8125,"roll":-2.6875},"location":"Right Knee"},{"euler":{"heading":46.0,"pitch":-121.8125,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:57.66"} +{"sensors":[{"euler":{"heading":202.875,"pitch":147.25,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":91.375,"pitch":119.625,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":125.125,"pitch":22.5625,"roll":47.625},"location":"Right Ankle"},{"euler":{"heading":18.4375,"pitch":-133.25,"roll":70.25},"location":"Right Hip"},{"euler":{"heading":72.125,"pitch":119.6875,"roll":0.6875},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-119.625,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:57.167"} +{"sensors":[{"euler":{"heading":217.0625,"pitch":159.875,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":66.0,"pitch":106.875,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":120.5625,"pitch":18.3125,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":17.75,"pitch":-135.9375,"roll":72.375},"location":"Right Hip"},{"euler":{"heading":74.375,"pitch":119.4375,"roll":4.25},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-121.0,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:57.268"} +{"sensors":[{"euler":{"heading":224.6875,"pitch":167.25,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":57.625,"pitch":102.5,"roll":25.25},"location":"Left Ankle"},{"euler":{"heading":114.125,"pitch":9.6875,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":17.9375,"pitch":-144.875,"roll":72.9375},"location":"Right Hip"},{"euler":{"heading":79.8125,"pitch":122.0,"roll":9.5},"location":"Right Knee"},{"euler":{"heading":52.0625,"pitch":-124.75,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:57.369"} +{"sensors":[{"euler":{"heading":224.875,"pitch":158.5,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":74.9375,"pitch":108.875,"roll":35.125},"location":"Left Ankle"},{"euler":{"heading":106.125,"pitch":-3.75,"roll":48.875},"location":"Right Ankle"},{"euler":{"heading":18.8125,"pitch":-151.25,"roll":71.3125},"location":"Right Hip"},{"euler":{"heading":89.5625,"pitch":127.125,"roll":16.9375},"location":"Right Knee"},{"euler":{"heading":56.625,"pitch":-126.875,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:57.469"} +{"sensors":[{"euler":{"heading":284.625,"pitch":150.9375,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":81.375,"pitch":111.6875,"roll":40.9375},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":-16.4375,"roll":45.125},"location":"Right Ankle"},{"euler":{"heading":27.9375,"pitch":-134.125,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":104.6875,"pitch":126.0,"roll":26.0},"location":"Right Knee"},{"euler":{"heading":58.25,"pitch":-128.3125,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:57.570"} +{"sensors":[{"euler":{"heading":289.625,"pitch":146.1875,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":86.4375,"pitch":113.3125,"roll":44.5625},"location":"Left Ankle"},{"euler":{"heading":96.0625,"pitch":-15.3125,"roll":49.9375},"location":"Right Ankle"},{"euler":{"heading":34.9375,"pitch":-125.25,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":107.3125,"pitch":128.0625,"roll":24.4375},"location":"Right Knee"},{"euler":{"heading":59.4375,"pitch":-133.5,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:57.671"} +{"sensors":[{"euler":{"heading":294.0,"pitch":142.4375,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":90.75,"pitch":114.375,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":112.5625,"pitch":-0.75,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":39.125,"pitch":-123.9375,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":92.125,"pitch":128.625,"roll":11.0625},"location":"Right Knee"},{"euler":{"heading":61.125,"pitch":-138.6875,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:57.772"} +{"sensors":[{"euler":{"heading":300.375,"pitch":138.875,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":96.5,"pitch":116.0,"roll":51.75},"location":"Left Ankle"},{"euler":{"heading":134.25,"pitch":27.0,"roll":51.9375},"location":"Right Ankle"},{"euler":{"heading":37.125,"pitch":-125.3125,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":74.5,"pitch":130.4375,"roll":-4.5625},"location":"Right Knee"},{"euler":{"heading":63.4375,"pitch":-144.6875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:57.873"} +{"sensors":[{"euler":{"heading":306.375,"pitch":135.625,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":102.125,"pitch":120.3125,"roll":56.4375},"location":"Left Ankle"},{"euler":{"heading":61.125,"pitch":40.375,"roll":41.375},"location":"Right Ankle"},{"euler":{"heading":28.0,"pitch":-133.1875,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":56.5,"pitch":131.75,"roll":-14.5625},"location":"Right Knee"},{"euler":{"heading":64.6875,"pitch":-148.6875,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:57.973"} +{"sensors":[{"euler":{"heading":313.875,"pitch":133.0,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":108.375,"pitch":131.4375,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":55.5625,"pitch":41.9375,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":21.5,"pitch":-136.125,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":63.25,"pitch":125.0,"roll":-12.5625},"location":"Right Knee"},{"euler":{"heading":66.5625,"pitch":-152.25,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:58.74"} +{"sensors":[{"euler":{"heading":331.0,"pitch":130.375,"roll":13.3125},"location":"Left Knee"},{"euler":{"heading":123.8125,"pitch":170.125,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":134.4375,"pitch":37.5625,"roll":46.0625},"location":"Right Ankle"},{"euler":{"heading":21.25,"pitch":-136.9375,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":67.5,"pitch":119.75,"roll":-8.75},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-139.0,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:58.174"} +{"sensors":[{"euler":{"heading":340.25,"pitch":131.125,"roll":10.125},"location":"Left Knee"},{"euler":{"heading":131.875,"pitch":-178.9375,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":129.375,"pitch":34.6875,"roll":46.5},"location":"Right Ankle"},{"euler":{"heading":17.1875,"pitch":-136.4375,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":69.4375,"pitch":116.25,"roll":-6.0},"location":"Right Knee"},{"euler":{"heading":50.6875,"pitch":-122.6875,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:58.275"} +{"sensors":[{"euler":{"heading":196.9375,"pitch":141.4375,"roll":20.625},"location":"Left Knee"},{"euler":{"heading":109.1875,"pitch":139.375,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":125.1875,"pitch":31.5,"roll":47.1875},"location":"Right Ankle"},{"euler":{"heading":18.0,"pitch":-134.25,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":71.25,"pitch":115.75,"roll":-3.0},"location":"Right Knee"},{"euler":{"heading":43.75,"pitch":-119.75,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:58.375"} +{"sensors":[{"euler":{"heading":209.9375,"pitch":156.4375,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":74.5,"pitch":109.5,"roll":42.625},"location":"Left Ankle"},{"euler":{"heading":121.5,"pitch":26.5,"roll":48.1875},"location":"Right Ankle"},{"euler":{"heading":18.75,"pitch":-136.3125,"roll":70.1875},"location":"Right Hip"},{"euler":{"heading":74.5,"pitch":117.0,"roll":0.8125},"location":"Right Knee"},{"euler":{"heading":42.5,"pitch":-118.5625,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:58.477"} +{"sensors":[{"euler":{"heading":222.5,"pitch":167.125,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":55.875,"pitch":102.0625,"roll":26.125},"location":"Left Ankle"},{"euler":{"heading":116.75,"pitch":18.625,"roll":49.4375},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-140.3125,"roll":71.5625},"location":"Right Hip"},{"euler":{"heading":76.0625,"pitch":119.1875,"roll":4.875},"location":"Right Knee"},{"euler":{"heading":49.9375,"pitch":-122.3125,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:58.578"} +{"sensors":[{"euler":{"heading":224.375,"pitch":161.4375,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":61.875,"pitch":107.1875,"roll":28.4375},"location":"Left Ankle"},{"euler":{"heading":109.875,"pitch":6.0625,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-146.0625,"roll":72.375},"location":"Right Hip"},{"euler":{"heading":83.3125,"pitch":122.75,"roll":11.3125},"location":"Right Knee"},{"euler":{"heading":54.9375,"pitch":-125.1875,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:58.679"} +{"sensors":[{"euler":{"heading":221.625,"pitch":154.1875,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":76.5,"pitch":111.4375,"roll":38.9375},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":-12.375,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-140.5,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":96.4375,"pitch":127.875,"roll":21.0625},"location":"Right Knee"},{"euler":{"heading":55.25,"pitch":-125.6875,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:58.780"} +{"sensors":[{"euler":{"heading":286.875,"pitch":149.3125,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":83.75,"pitch":112.5625,"roll":43.125},"location":"Left Ankle"},{"euler":{"heading":97.8125,"pitch":-13.3125,"roll":49.5625},"location":"Right Ankle"},{"euler":{"heading":33.8125,"pitch":-126.875,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":106.25,"pitch":129.875,"roll":23.3125},"location":"Right Knee"},{"euler":{"heading":57.25,"pitch":-129.0,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:58.881"} +{"sensors":[{"euler":{"heading":291.6875,"pitch":145.25,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":87.625,"pitch":113.0,"roll":46.3125},"location":"Left Ankle"},{"euler":{"heading":127.4375,"pitch":1.0625,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":38.375,"pitch":-124.0625,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":93.875,"pitch":129.0625,"roll":13.0625},"location":"Right Knee"},{"euler":{"heading":58.9375,"pitch":-133.0625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:58.981"} +{"sensors":[{"euler":{"heading":296.625,"pitch":141.3125,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":114.0,"roll":49.3125},"location":"Left Ankle"},{"euler":{"heading":128.625,"pitch":25.8125,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":37.9375,"pitch":-124.375,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":77.375,"pitch":129.125,"roll":-0.9375},"location":"Right Knee"},{"euler":{"heading":62.3125,"pitch":-141.5625,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:59.82"} +{"sensors":[{"euler":{"heading":303.9375,"pitch":137.375,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":97.4375,"pitch":117.4375,"roll":53.0625},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":40.4375,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-131.375,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":56.4375,"pitch":131.5625,"roll":-14.3125},"location":"Right Knee"},{"euler":{"heading":64.3125,"pitch":-146.125,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:59.183"} +{"sensors":[{"euler":{"heading":310.4375,"pitch":134.625,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":103.0,"pitch":124.3125,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":58.125,"pitch":42.0625,"roll":41.1875},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-134.9375,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":56.5625,"pitch":127.9375,"roll":-15.5},"location":"Right Knee"},{"euler":{"heading":65.3125,"pitch":-149.375,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:59.284"} +{"sensors":[{"euler":{"heading":321.375,"pitch":131.0625,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":112.25,"pitch":145.0,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":47.25,"pitch":36.625,"roll":44.5},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-137.6875,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":63.4375,"pitch":120.875,"roll":-11.875},"location":"Right Knee"},{"euler":{"heading":64.25,"pitch":-145.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:59.384"} +{"sensors":[{"euler":{"heading":335.9375,"pitch":129.625,"roll":11.5625},"location":"Left Knee"},{"euler":{"heading":123.4375,"pitch":174.125,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":130.875,"pitch":33.5625,"roll":45.375},"location":"Right Ankle"},{"euler":{"heading":15.625,"pitch":-138.875,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":65.5625,"pitch":117.25,"roll":-8.5},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-126.1875,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:59.485"} +{"sensors":[{"euler":{"heading":329.4375,"pitch":135.0625,"roll":16.25},"location":"Left Knee"},{"euler":{"heading":117.0625,"pitch":148.1875,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":126.125,"pitch":31.125,"roll":46.3125},"location":"Right Ankle"},{"euler":{"heading":17.0625,"pitch":-136.5625,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":67.625,"pitch":115.75,"roll":-4.9375},"location":"Right Knee"},{"euler":{"heading":47.875,"pitch":-122.8125,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:59.585"} +{"sensors":[{"euler":{"heading":206.375,"pitch":148.5625,"roll":28.9375},"location":"Left Knee"},{"euler":{"heading":88.125,"pitch":118.4375,"roll":50.0},"location":"Left Ankle"},{"euler":{"heading":122.125,"pitch":29.0625,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":16.8125,"pitch":-136.1875,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":70.9375,"pitch":114.8125,"roll":-1.8125},"location":"Right Knee"},{"euler":{"heading":44.625,"pitch":-118.875,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:59.686"} +{"sensors":[{"euler":{"heading":218.6875,"pitch":162.8125,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":63.875,"pitch":106.5625,"roll":32.625},"location":"Left Ankle"},{"euler":{"heading":117.375,"pitch":25.5625,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":16.75,"pitch":-138.4375,"roll":71.9375},"location":"Right Hip"},{"euler":{"heading":72.875,"pitch":114.0625,"roll":1.8125},"location":"Right Knee"},{"euler":{"heading":46.5,"pitch":-121.25,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:59.787"} +{"sensors":[{"euler":{"heading":226.3125,"pitch":166.125,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":57.875,"pitch":104.875,"roll":25.5},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":17.125,"roll":49.3125},"location":"Right Ankle"},{"euler":{"heading":17.25,"pitch":-146.0,"roll":73.1875},"location":"Right Hip"},{"euler":{"heading":77.1875,"pitch":117.1875,"roll":7.125},"location":"Right Knee"},{"euler":{"heading":53.4375,"pitch":-126.6875,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:59.887"} +{"sensors":[{"euler":{"heading":225.5625,"pitch":156.5,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":74.375,"pitch":110.375,"roll":34.5625},"location":"Left Ankle"},{"euler":{"heading":103.8125,"pitch":2.0625,"roll":49.0625},"location":"Right Ankle"},{"euler":{"heading":17.0,"pitch":-148.9375,"roll":72.5},"location":"Right Hip"},{"euler":{"heading":85.9375,"pitch":122.5,"roll":14.75},"location":"Right Knee"},{"euler":{"heading":57.0,"pitch":-128.4375,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:14:59.989"} +{"sensors":[{"euler":{"heading":288.8125,"pitch":149.4375,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":82.875,"pitch":112.0,"roll":41.375},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":-16.75,"roll":47.5625},"location":"Right Ankle"},{"euler":{"heading":26.75,"pitch":-132.9375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":101.875,"pitch":124.75,"roll":24.6875},"location":"Right Knee"},{"euler":{"heading":58.25,"pitch":-129.75,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:00.90"} +{"sensors":[{"euler":{"heading":294.1875,"pitch":144.5625,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":91.0,"pitch":113.1875,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":-14.375,"roll":51.125},"location":"Right Ankle"},{"euler":{"heading":33.4375,"pitch":-128.0625,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":100.25,"pitch":126.625,"roll":20.0625},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-134.1875,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:00.191"} +{"sensors":[{"euler":{"heading":297.9375,"pitch":141.0,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":94.4375,"pitch":114.25,"roll":48.8125},"location":"Left Ankle"},{"euler":{"heading":113.875,"pitch":4.0,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":36.625,"pitch":-125.875,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":83.8125,"pitch":128.0,"roll":5.5625},"location":"Right Knee"},{"euler":{"heading":62.0625,"pitch":-141.0,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:00.292"} +{"sensors":[{"euler":{"heading":302.9375,"pitch":137.6875,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":99.3125,"pitch":116.8125,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":135.8125,"pitch":31.8125,"roll":49.0625},"location":"Right Ankle"},{"euler":{"heading":32.6875,"pitch":-128.125,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":66.75,"pitch":128.9375,"roll":-8.25},"location":"Right Knee"},{"euler":{"heading":63.9375,"pitch":-145.5625,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:00.393"} +{"sensors":[{"euler":{"heading":308.0,"pitch":134.75,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":104.0,"pitch":121.25,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":42.4375,"roll":40.4375},"location":"Right Ankle"},{"euler":{"heading":23.625,"pitch":-135.6875,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":54.8125,"pitch":128.625,"roll":-16.875},"location":"Right Knee"},{"euler":{"heading":65.0,"pitch":-149.25,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:00.494"} +{"sensors":[{"euler":{"heading":315.0,"pitch":131.9375,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":109.5625,"pitch":132.3125,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":52.125,"pitch":40.1875,"roll":43.0625},"location":"Right Ankle"},{"euler":{"heading":17.8125,"pitch":-138.875,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":59.8125,"pitch":122.9375,"roll":-14.3125},"location":"Right Knee"},{"euler":{"heading":68.0,"pitch":-152.0625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:00.594"} +{"sensors":[{"euler":{"heading":330.5625,"pitch":129.1875,"roll":14.4375},"location":"Left Knee"},{"euler":{"heading":124.25,"pitch":169.6875,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":134.375,"pitch":34.9375,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":18.6875,"pitch":-138.125,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":64.125,"pitch":119.0,"roll":-9.75},"location":"Right Knee"},{"euler":{"heading":57.8125,"pitch":-134.75,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:00.696"} +{"sensors":[{"euler":{"heading":339.6875,"pitch":131.375,"roll":10.1875},"location":"Left Knee"},{"euler":{"heading":127.4375,"pitch":-179.5,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":129.375,"pitch":32.0,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":16.1875,"pitch":-138.25,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":66.75,"pitch":116.375,"roll":-6.9375},"location":"Right Knee"},{"euler":{"heading":48.1875,"pitch":-121.8125,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:00.797"} +{"sensors":[{"euler":{"heading":197.375,"pitch":141.25,"roll":20.3125},"location":"Left Knee"},{"euler":{"heading":104.0,"pitch":131.75,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":124.4375,"pitch":29.6875,"roll":46.9375},"location":"Right Ankle"},{"euler":{"heading":16.8125,"pitch":-135.3125,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":69.0625,"pitch":114.75,"roll":-3.875},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-119.3125,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:00.898"} +{"sensors":[{"euler":{"heading":213.8125,"pitch":156.625,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":71.125,"pitch":109.6875,"roll":40.4375},"location":"Left Ankle"},{"euler":{"heading":119.6875,"pitch":26.6875,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":17.1875,"pitch":-136.9375,"roll":71.25},"location":"Right Hip"},{"euler":{"heading":72.125,"pitch":114.4375,"roll":-0.0625},"location":"Right Knee"},{"euler":{"heading":44.1875,"pitch":-118.875,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:00.998"} +{"sensors":[{"euler":{"heading":225.8125,"pitch":166.625,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":56.25,"pitch":104.4375,"roll":25.375},"location":"Left Ankle"},{"euler":{"heading":113.4375,"pitch":21.125,"roll":49.3125},"location":"Right Ankle"},{"euler":{"heading":17.5,"pitch":-139.625,"roll":73.0625},"location":"Right Hip"},{"euler":{"heading":75.3125,"pitch":114.6875,"roll":4.625},"location":"Right Knee"},{"euler":{"heading":51.1875,"pitch":-125.0,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:01.99"} +{"sensors":[{"euler":{"heading":226.3125,"pitch":161.125,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":67.5625,"pitch":109.625,"roll":31.875},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":9.625,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":17.4375,"pitch":-143.4375,"roll":73.5625},"location":"Right Hip"},{"euler":{"heading":82.5,"pitch":117.3125,"roll":11.75},"location":"Right Knee"},{"euler":{"heading":54.875,"pitch":-127.25,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:01.201"} +{"sensors":[{"euler":{"heading":222.25,"pitch":153.875,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":112.625,"roll":40.75},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":-11.8125,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":24.375,"pitch":-138.125,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":96.3125,"pitch":125.4375,"roll":21.125},"location":"Right Knee"},{"euler":{"heading":54.1875,"pitch":-128.375,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:01.301"} +{"sensors":[{"euler":{"heading":291.3125,"pitch":147.375,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":95.25,"pitch":114.0,"roll":45.375},"location":"Left Ankle"},{"euler":{"heading":92.8125,"pitch":-22.0625,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":33.4375,"pitch":-126.3125,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":102.6875,"pitch":128.8125,"roll":23.75},"location":"Right Knee"},{"euler":{"heading":58.5625,"pitch":-132.5,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:01.402"} +{"sensors":[{"euler":{"heading":297.4375,"pitch":142.5625,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":115.4375,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":110.4375,"pitch":-1.9375,"roll":51.625},"location":"Right Ankle"},{"euler":{"heading":39.5625,"pitch":-123.75,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":90.125,"pitch":127.875,"roll":12.625},"location":"Right Knee"},{"euler":{"heading":62.125,"pitch":-138.3125,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:01.502"} +{"sensors":[{"euler":{"heading":304.125,"pitch":138.3125,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":118.9375,"roll":52.125},"location":"Left Ankle"},{"euler":{"heading":128.0,"pitch":19.75,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":38.6875,"pitch":-124.6875,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":73.75,"pitch":129.0,"roll":-1.8125},"location":"Right Knee"},{"euler":{"heading":63.6875,"pitch":-142.5625,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:01.604"} +{"sensors":[{"euler":{"heading":309.25,"pitch":134.75,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":113.6875,"pitch":124.3125,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":57.4375,"pitch":41.0,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":29.25,"pitch":-131.375,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":58.25,"pitch":129.25,"roll":-14.3125},"location":"Right Knee"},{"euler":{"heading":65.1875,"pitch":-146.0625,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:01.705"} +{"sensors":[{"euler":{"heading":315.875,"pitch":131.5625,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":119.625,"pitch":135.5,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":54.125,"pitch":41.8125,"roll":41.8125},"location":"Right Ankle"},{"euler":{"heading":18.6875,"pitch":-138.125,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":60.8125,"pitch":123.6875,"roll":-13.6875},"location":"Right Knee"},{"euler":{"heading":68.4375,"pitch":-151.4375,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:01.805"} +{"sensors":[{"euler":{"heading":325.375,"pitch":130.5,"roll":17.75},"location":"Left Knee"},{"euler":{"heading":127.375,"pitch":163.125,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":44.9375,"pitch":36.25,"roll":44.4375},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-138.4375,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":63.8125,"pitch":119.25,"roll":-10.9375},"location":"Right Knee"},{"euler":{"heading":62.0625,"pitch":-142.375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:01.906"} +{"sensors":[{"euler":{"heading":340.375,"pitch":129.5625,"roll":10.25},"location":"Left Knee"},{"euler":{"heading":138.5,"pitch":-173.0625,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":40.125,"pitch":33.0,"roll":44.875},"location":"Right Ankle"},{"euler":{"heading":15.375,"pitch":-139.0625,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":65.25,"pitch":116.875,"roll":-8.0},"location":"Right Knee"},{"euler":{"heading":48.25,"pitch":-121.5625,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:02.7"} +{"sensors":[{"euler":{"heading":201.75,"pitch":137.875,"roll":16.4375},"location":"Left Knee"},{"euler":{"heading":121.6875,"pitch":147.6875,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":125.4375,"pitch":31.4375,"roll":45.125},"location":"Right Ankle"},{"euler":{"heading":15.5625,"pitch":-136.125,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":67.3125,"pitch":113.9375,"roll":-5.375},"location":"Right Knee"},{"euler":{"heading":41.9375,"pitch":-118.3125,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:02.107"} +{"sensors":[{"euler":{"heading":208.375,"pitch":153.25,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":86.875,"pitch":113.5,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":121.4375,"pitch":28.125,"roll":45.9375},"location":"Right Ankle"},{"euler":{"heading":17.375,"pitch":-136.0625,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":70.375,"pitch":114.0,"roll":-1.4375},"location":"Right Knee"},{"euler":{"heading":40.875,"pitch":-116.9375,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:02.208"} +{"sensors":[{"euler":{"heading":225.5,"pitch":166.1875,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":66.375,"pitch":106.6875,"roll":26.6875},"location":"Left Ankle"},{"euler":{"heading":117.0,"pitch":22.9375,"roll":47.1875},"location":"Right Ankle"},{"euler":{"heading":17.75,"pitch":-139.125,"roll":71.375},"location":"Right Hip"},{"euler":{"heading":72.5625,"pitch":114.9375,"roll":2.375},"location":"Right Knee"},{"euler":{"heading":47.4375,"pitch":-121.8125,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:02.309"} +{"sensors":[{"euler":{"heading":227.875,"pitch":166.6875,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":68.5625,"pitch":106.875,"roll":27.4375},"location":"Left Ankle"},{"euler":{"heading":110.4375,"pitch":13.375,"roll":48.4375},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-146.1875,"roll":71.5625},"location":"Right Hip"},{"euler":{"heading":76.9375,"pitch":118.5,"roll":7.9375},"location":"Right Knee"},{"euler":{"heading":53.3125,"pitch":-125.0,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:02.409"} +{"sensors":[{"euler":{"heading":225.5,"pitch":157.1875,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":83.0625,"pitch":110.75,"roll":37.0625},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":-3.25,"roll":48.1875},"location":"Right Ankle"},{"euler":{"heading":22.625,"pitch":-143.6875,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":90.4375,"pitch":125.625,"roll":17.875},"location":"Right Knee"},{"euler":{"heading":54.75,"pitch":-125.75,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:02.510"} +{"sensors":[{"euler":{"heading":282.4375,"pitch":151.25,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":111.5,"roll":42.625},"location":"Left Ankle"},{"euler":{"heading":91.625,"pitch":-20.375,"roll":45.3125},"location":"Right Ankle"},{"euler":{"heading":34.0,"pitch":-126.6875,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":101.375,"pitch":127.75,"roll":24.1875},"location":"Right Knee"},{"euler":{"heading":57.5,"pitch":-129.9375,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:02.610"} +{"sensors":[{"euler":{"heading":285.75,"pitch":147.125,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":93.0625,"pitch":112.3125,"roll":45.5625},"location":"Left Ankle"},{"euler":{"heading":103.0,"pitch":-11.5,"roll":50.6875},"location":"Right Ankle"},{"euler":{"heading":40.1875,"pitch":-124.375,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":96.6875,"pitch":129.1875,"roll":0.5625},"location":"Right Knee"},{"euler":{"heading":59.9375,"pitch":-136.8125,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:02.712"} +{"sensors":[{"euler":{"heading":290.25,"pitch":143.375,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":96.4375,"pitch":113.25,"roll":48.875},"location":"Left Ankle"},{"euler":{"heading":123.6875,"pitch":12.9375,"roll":54.375},"location":"Right Ankle"},{"euler":{"heading":40.125,"pitch":-125.25,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":79.25,"pitch":129.75,"roll":1.9375},"location":"Right Knee"},{"euler":{"heading":61.1875,"pitch":-142.4375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:02.812"} +{"sensors":[{"euler":{"heading":298.6875,"pitch":139.125,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":116.625,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":142.8125,"pitch":35.5625,"roll":45.3125},"location":"Right Ankle"},{"euler":{"heading":33.4375,"pitch":-128.0,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":61.6875,"pitch":130.6875,"roll":-11.375},"location":"Right Knee"},{"euler":{"heading":62.9375,"pitch":-145.75,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:02.914"} +{"sensors":[{"euler":{"heading":304.4375,"pitch":136.1875,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":122.875,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":61.5625,"pitch":39.75,"roll":38.1875},"location":"Right Ankle"},{"euler":{"heading":23.5,"pitch":-134.625,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":51.125,"pitch":130.4375,"roll":-17.25},"location":"Right Knee"},{"euler":{"heading":64.3125,"pitch":-149.875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:03.16"} +{"sensors":[{"euler":{"heading":313.0625,"pitch":133.4375,"roll":22.8125},"location":"Left Knee"},{"euler":{"heading":115.9375,"pitch":139.8125,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":50.375,"pitch":37.8125,"roll":42.0},"location":"Right Ankle"},{"euler":{"heading":17.5,"pitch":-138.75,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":59.4375,"pitch":122.0,"roll":-13.8125},"location":"Right Knee"},{"euler":{"heading":66.25,"pitch":-150.75,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:03.117"} +{"sensors":[{"euler":{"heading":330.3125,"pitch":131.75,"roll":12.9375},"location":"Left Knee"},{"euler":{"heading":133.875,"pitch":174.6875,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":43.8125,"pitch":33.8125,"roll":43.3125},"location":"Right Ankle"},{"euler":{"heading":16.9375,"pitch":-138.625,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":61.4375,"pitch":118.6875,"roll":-10.4375},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-134.625,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:03.218"} +{"sensors":[{"euler":{"heading":191.6875,"pitch":137.5625,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":123.75,"pitch":150.3125,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":40.125,"pitch":29.625,"roll":44.125},"location":"Right Ankle"},{"euler":{"heading":15.75,"pitch":-138.9375,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":64.25,"pitch":118.0,"roll":-6.4375},"location":"Right Knee"},{"euler":{"heading":45.125,"pitch":-124.625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:03.320"} +{"sensors":[{"euler":{"heading":204.0,"pitch":150.375,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":92.375,"pitch":118.0,"roll":51.3125},"location":"Left Ankle"},{"euler":{"heading":36.8125,"pitch":26.5,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":17.1875,"pitch":-138.25,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":65.1875,"pitch":117.5625,"roll":-3.875},"location":"Right Knee"},{"euler":{"heading":41.5625,"pitch":-120.75,"roll":32.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:03.421"} +{"sensors":[{"euler":{"heading":219.375,"pitch":163.5,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":70.375,"pitch":106.875,"roll":33.375},"location":"Left Ankle"},{"euler":{"heading":121.625,"pitch":22.8125,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":17.875,"pitch":-139.25,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":70.0625,"pitch":117.0625,"roll":0.5},"location":"Right Knee"},{"euler":{"heading":42.75,"pitch":-120.875,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:03.521"} +{"sensors":[{"euler":{"heading":225.8125,"pitch":168.875,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":63.5,"pitch":103.3125,"roll":25.625},"location":"Left Ankle"},{"euler":{"heading":114.9375,"pitch":16.3125,"roll":47.0625},"location":"Right Ankle"},{"euler":{"heading":18.125,"pitch":-144.1875,"roll":71.25},"location":"Right Hip"},{"euler":{"heading":74.5,"pitch":118.8125,"roll":5.6875},"location":"Right Knee"},{"euler":{"heading":47.5,"pitch":-123.375,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:03.622"} +{"sensors":[{"euler":{"heading":225.75,"pitch":160.25,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":78.875,"pitch":110.0,"roll":34.625},"location":"Left Ankle"},{"euler":{"heading":105.125,"pitch":3.5625,"roll":47.0625},"location":"Right Ankle"},{"euler":{"heading":18.25,"pitch":-147.625,"roll":71.4375},"location":"Right Hip"},{"euler":{"heading":83.5625,"pitch":121.8125,"roll":13.5625},"location":"Right Knee"},{"euler":{"heading":50.5625,"pitch":-124.625,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:03.722"} +{"sensors":[{"euler":{"heading":279.8125,"pitch":153.125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":86.75,"pitch":112.5625,"roll":40.875},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":-15.4375,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":25.625,"pitch":-134.125,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":97.0625,"pitch":124.5,"roll":22.5},"location":"Right Knee"},{"euler":{"heading":51.875,"pitch":-126.875,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:03.823"} +{"sensors":[{"euler":{"heading":286.5625,"pitch":147.9375,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":94.3125,"pitch":113.75,"roll":45.4375},"location":"Left Ankle"},{"euler":{"heading":96.8125,"pitch":-15.0625,"roll":48.3125},"location":"Right Ankle"},{"euler":{"heading":34.25,"pitch":-126.8125,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":99.4375,"pitch":112.125,"roll":20.0},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-133.1875,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:03.925"} +{"sensors":[{"euler":{"heading":294.25,"pitch":142.875,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":100.9375,"pitch":115.5,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":119.4375,"pitch":9.0,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":37.5,"pitch":-126.0625,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":82.6875,"pitch":128.4375,"roll":5.3125},"location":"Right Knee"},{"euler":{"heading":59.3125,"pitch":-137.25,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:04.25"} +{"sensors":[{"euler":{"heading":302.0625,"pitch":138.375,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":105.9375,"pitch":119.125,"roll":52.25},"location":"Left Ankle"},{"euler":{"heading":137.375,"pitch":28.0,"roll":48.5},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-130.6875,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":61.375,"pitch":131.3125,"roll":-9.5},"location":"Right Knee"},{"euler":{"heading":63.5625,"pitch":-144.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:04.125"} +{"sensors":[{"euler":{"heading":307.9375,"pitch":135.5,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":109.9375,"pitch":124.25,"roll":56.6875},"location":"Left Ankle"},{"euler":{"heading":61.3125,"pitch":39.6875,"roll":39.1875},"location":"Right Ankle"},{"euler":{"heading":24.125,"pitch":-136.1875,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":49.6875,"pitch":131.5,"roll":-17.8125},"location":"Right Knee"},{"euler":{"heading":64.5,"pitch":-149.0,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:04.226"} +{"sensors":[{"euler":{"heading":315.9375,"pitch":132.5,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":116.25,"pitch":137.0,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":53.4375,"pitch":41.0625,"roll":40.9375},"location":"Right Ankle"},{"euler":{"heading":17.0,"pitch":-139.375,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":56.5625,"pitch":123.9375,"roll":-15.6875},"location":"Right Knee"},{"euler":{"heading":67.5,"pitch":-152.375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:04.327"} +{"sensors":[{"euler":{"heading":329.625,"pitch":132.8125,"roll":13.6875},"location":"Left Knee"},{"euler":{"heading":133.25,"pitch":174.0625,"roll":65.375},"location":"Left Ankle"},{"euler":{"heading":44.625,"pitch":33.5625,"roll":43.625},"location":"Right Ankle"},{"euler":{"heading":16.8125,"pitch":-139.875,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":61.3125,"pitch":120.25,"roll":-11.125},"location":"Right Knee"},{"euler":{"heading":54.0,"pitch":-139.8125,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:04.428"} +{"sensors":[{"euler":{"heading":338.0625,"pitch":133.6875,"roll":10.0},"location":"Left Knee"},{"euler":{"heading":132.5,"pitch":177.6875,"roll":66.75},"location":"Left Ankle"},{"euler":{"heading":39.6875,"pitch":30.8125,"roll":44.4375},"location":"Right Ankle"},{"euler":{"heading":14.5,"pitch":-138.6875,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":64.0625,"pitch":117.25,"roll":-7.625},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-124.375,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:04.529"} +{"sensors":[{"euler":{"heading":196.875,"pitch":140.75,"roll":20.5625},"location":"Left Knee"},{"euler":{"heading":112.6875,"pitch":136.875,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":35.5,"pitch":27.4375,"roll":44.625},"location":"Right Ankle"},{"euler":{"heading":15.875,"pitch":-137.5625,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":65.3125,"pitch":117.0,"roll":-4.875},"location":"Right Knee"},{"euler":{"heading":42.75,"pitch":-122.25,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:04.630"} +{"sensors":[{"euler":{"heading":211.3125,"pitch":154.875,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":81.6875,"pitch":111.25,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":122.25,"pitch":23.75,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":17.0,"pitch":-139.5625,"roll":70.4375},"location":"Right Hip"},{"euler":{"heading":66.5625,"pitch":117.375,"roll":-1.3125},"location":"Right Knee"},{"euler":{"heading":41.25,"pitch":-118.9375,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:04.732"} +{"sensors":[{"euler":{"heading":224.25,"pitch":166.8125,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":63.75,"pitch":102.375,"roll":26.9375},"location":"Left Ankle"},{"euler":{"heading":117.0625,"pitch":17.25,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":17.8125,"pitch":-145.5,"roll":71.4375},"location":"Right Hip"},{"euler":{"heading":70.375,"pitch":119.0625,"roll":3.1875},"location":"Right Knee"},{"euler":{"heading":48.5625,"pitch":-121.875,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:04.833"} +{"sensors":[{"euler":{"heading":226.6875,"pitch":163.0625,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":70.8125,"pitch":106.125,"roll":30.6875},"location":"Left Ankle"},{"euler":{"heading":111.125,"pitch":8.4375,"roll":48.1875},"location":"Right Ankle"},{"euler":{"heading":18.625,"pitch":-153.9375,"roll":71.4375},"location":"Right Hip"},{"euler":{"heading":76.25,"pitch":122.4375,"roll":8.875},"location":"Right Knee"},{"euler":{"heading":54.625,"pitch":-124.3125,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:04.934"} +{"sensors":[{"euler":{"heading":222.5,"pitch":155.3125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":85.9375,"pitch":110.375,"roll":40.75},"location":"Left Ankle"},{"euler":{"heading":99.4375,"pitch":-7.625,"roll":48.125},"location":"Right Ankle"},{"euler":{"heading":24.875,"pitch":-146.8125,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":92.4375,"pitch":126.625,"roll":19.125},"location":"Right Knee"},{"euler":{"heading":53.1875,"pitch":-124.5,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:05.35"} +{"sensors":[{"euler":{"heading":284.4375,"pitch":149.1875,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":111.25,"roll":44.875},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":-15.6875,"roll":48.0},"location":"Right Ankle"},{"euler":{"heading":33.625,"pitch":-129.6875,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":98.8125,"pitch":130.5625,"roll":21.25},"location":"Right Knee"},{"euler":{"heading":56.125,"pitch":-129.0,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:05.136"} +{"sensors":[{"euler":{"heading":289.875,"pitch":144.8125,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":112.125,"roll":48.3125},"location":"Left Ankle"},{"euler":{"heading":111.0625,"pitch":-0.3125,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":39.5625,"pitch":-126.3125,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":90.625,"pitch":129.3125,"roll":12.8125},"location":"Right Knee"},{"euler":{"heading":58.375,"pitch":-133.125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:05.237"} +{"sensors":[{"euler":{"heading":294.5625,"pitch":141.6875,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":98.1875,"pitch":113.75,"roll":50.625},"location":"Left Ankle"},{"euler":{"heading":127.5625,"pitch":21.4375,"roll":52.625},"location":"Right Ankle"},{"euler":{"heading":40.0,"pitch":-126.75,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":74.3125,"pitch":129.5,"roll":-1.25},"location":"Right Knee"},{"euler":{"heading":59.3125,"pitch":-138.8125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:05.338"} +{"sensors":[{"euler":{"heading":300.0625,"pitch":138.5625,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":116.6875,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":55.875,"pitch":37.0,"roll":42.9375},"location":"Right Ankle"},{"euler":{"heading":30.0625,"pitch":-133.25,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":54.125,"pitch":131.75,"roll":-14.3125},"location":"Right Knee"},{"euler":{"heading":61.3125,"pitch":-144.8125,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:05.439"} +{"sensors":[{"euler":{"heading":306.625,"pitch":135.5625,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":107.4375,"pitch":123.375,"roll":58.6875},"location":"Left Ankle"},{"euler":{"heading":60.0625,"pitch":39.375,"roll":39.1875},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-137.8125,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":52.5,"pitch":129.25,"roll":-16.5},"location":"Right Knee"},{"euler":{"heading":64.1875,"pitch":-150.875,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:05.540"} +{"sensors":[{"euler":{"heading":318.375,"pitch":132.0,"roll":19.9375},"location":"Left Knee"},{"euler":{"heading":118.1875,"pitch":148.0,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":49.5625,"pitch":34.1875,"roll":42.3125},"location":"Right Ankle"},{"euler":{"heading":20.3125,"pitch":-140.4375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":58.75,"pitch":123.75,"roll":-11.9375},"location":"Right Knee"},{"euler":{"heading":64.9375,"pitch":-148.875,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:05.640"} +{"sensors":[{"euler":{"heading":335.0,"pitch":128.8125,"roll":12.0625},"location":"Left Knee"},{"euler":{"heading":129.9375,"pitch":179.6875,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":45.375,"pitch":31.1875,"roll":43.125},"location":"Right Ankle"},{"euler":{"heading":16.0,"pitch":-142.3125,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":59.4375,"pitch":121.25,"roll":-9.5625},"location":"Right Knee"},{"euler":{"heading":50.4375,"pitch":-125.4375,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:05.742"} +{"sensors":[{"euler":{"heading":330.875,"pitch":135.6875,"roll":14.1875},"location":"Left Knee"},{"euler":{"heading":122.4375,"pitch":157.0625,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":41.0625,"pitch":27.625,"roll":43.625},"location":"Right Ankle"},{"euler":{"heading":18.5,"pitch":-140.0,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":62.625,"pitch":119.875,"roll":-6.125},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-120.4375,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:05.842"} +{"sensors":[{"euler":{"heading":203.875,"pitch":148.875,"roll":27.75},"location":"Left Knee"},{"euler":{"heading":92.5,"pitch":116.0,"roll":53.5625},"location":"Left Ankle"},{"euler":{"heading":126.625,"pitch":24.8125,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":18.375,"pitch":-139.3125,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":65.75,"pitch":119.0625,"roll":-2.875},"location":"Right Knee"},{"euler":{"heading":41.875,"pitch":-118.25,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:05.943"} +{"sensors":[{"euler":{"heading":219.5,"pitch":162.9375,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":67.9375,"pitch":105.1875,"roll":31.8125},"location":"Left Ankle"},{"euler":{"heading":121.8125,"pitch":21.4375,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":17.6875,"pitch":-141.75,"roll":70.5625},"location":"Right Hip"},{"euler":{"heading":68.625,"pitch":117.875,"roll":0.75},"location":"Right Knee"},{"euler":{"heading":45.75,"pitch":-122.25,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:06.44"} +{"sensors":[{"euler":{"heading":226.6875,"pitch":166.5625,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":66.375,"pitch":106.4375,"roll":27.375},"location":"Left Ankle"},{"euler":{"heading":114.875,"pitch":14.1875,"roll":46.875},"location":"Right Ankle"},{"euler":{"heading":17.5625,"pitch":-147.625,"roll":71.375},"location":"Right Hip"},{"euler":{"heading":74.4375,"pitch":119.6875,"roll":6.375},"location":"Right Knee"},{"euler":{"heading":52.0,"pitch":-126.5625,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:06.144"} +{"sensors":[{"euler":{"heading":225.1875,"pitch":156.1875,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":82.25,"pitch":111.4375,"roll":37.0},"location":"Left Ankle"},{"euler":{"heading":105.375,"pitch":1.125,"roll":48.4375},"location":"Right Ankle"},{"euler":{"heading":18.1875,"pitch":-150.25,"roll":70.375},"location":"Right Hip"},{"euler":{"heading":84.6875,"pitch":123.25,"roll":14.5625},"location":"Right Knee"},{"euler":{"heading":54.75,"pitch":-127.75,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:06.245"} +{"sensors":[{"euler":{"heading":287.9375,"pitch":149.0625,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":91.875,"pitch":113.125,"roll":43.4375},"location":"Left Ankle"},{"euler":{"heading":94.5,"pitch":-16.375,"roll":48.0},"location":"Right Ankle"},{"euler":{"heading":28.625,"pitch":-133.5,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":99.1875,"pitch":126.4375,"roll":22.8125},"location":"Right Knee"},{"euler":{"heading":60.375,"pitch":-133.1875,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:06.346"} +{"sensors":[{"euler":{"heading":293.125,"pitch":144.3125,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":98.125,"pitch":114.25,"roll":47.4375},"location":"Left Ankle"},{"euler":{"heading":101.5625,"pitch":-10.9375,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":36.75,"pitch":-126.9375,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":98.375,"pitch":129.1875,"roll":19.0},"location":"Right Knee"},{"euler":{"heading":62.5625,"pitch":-139.3125,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:06.447"} +{"sensors":[{"euler":{"heading":299.375,"pitch":140.125,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":103.4375,"pitch":116.6875,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":123.25,"pitch":12.0,"roll":51.5625},"location":"Right Ankle"},{"euler":{"heading":38.625,"pitch":-127.0,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":81.3125,"pitch":130.9375,"roll":5.0625},"location":"Right Knee"},{"euler":{"heading":64.4375,"pitch":-144.5625,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:06.547"} +{"sensors":[{"euler":{"heading":306.3125,"pitch":136.5625,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":107.625,"pitch":120.1875,"roll":53.625},"location":"Left Ankle"},{"euler":{"heading":141.0,"pitch":32.25,"roll":46.375},"location":"Right Ankle"},{"euler":{"heading":32.125,"pitch":-131.375,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":60.875,"pitch":131.25,"roll":-9.875},"location":"Right Knee"},{"euler":{"heading":66.125,"pitch":-150.0625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:06.648"} +{"sensors":[{"euler":{"heading":312.25,"pitch":133.8125,"roll":28.375},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":125.625,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":40.875,"roll":38.125},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-137.75,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":50.0625,"pitch":130.875,"roll":-18.25},"location":"Right Knee"},{"euler":{"heading":67.0625,"pitch":-154.625,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:06.748"} +{"sensors":[{"euler":{"heading":320.5,"pitch":130.5625,"roll":22.125},"location":"Left Knee"},{"euler":{"heading":119.625,"pitch":140.9375,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":51.875,"pitch":37.5625,"roll":42.125},"location":"Right Ankle"},{"euler":{"heading":16.25,"pitch":-141.5,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":56.0,"pitch":124.8125,"roll":-15.375},"location":"Right Knee"},{"euler":{"heading":69.875,"pitch":-155.125,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:06.849"} +{"sensors":[{"euler":{"heading":334.5,"pitch":131.6875,"roll":11.75},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":-177.375,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":45.0625,"pitch":34.0,"roll":43.4375},"location":"Right Ankle"},{"euler":{"heading":16.125,"pitch":-141.5,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":60.9375,"pitch":120.125,"roll":-10.875},"location":"Right Knee"},{"euler":{"heading":54.3125,"pitch":-134.6875,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:06.950"} +{"sensors":[{"euler":{"heading":333.375,"pitch":135.0625,"roll":11.5625},"location":"Left Knee"},{"euler":{"heading":133.0625,"pitch":-170.5,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":130.3125,"pitch":32.6875,"roll":45.625},"location":"Right Ankle"},{"euler":{"heading":12.5625,"pitch":-141.9375,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":63.1875,"pitch":117.125,"roll":-8.125},"location":"Right Knee"},{"euler":{"heading":42.0,"pitch":-120.1875,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:07.50"} +{"sensors":[{"euler":{"heading":199.625,"pitch":144.0,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":111.5625,"pitch":135.5,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":126.1875,"pitch":28.8125,"roll":46.375},"location":"Right Ankle"},{"euler":{"heading":14.5625,"pitch":-139.0625,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":64.8125,"pitch":116.625,"roll":-5.25},"location":"Right Knee"},{"euler":{"heading":39.375,"pitch":-118.6875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:07.151"} +{"sensors":[{"euler":{"heading":214.5,"pitch":158.375,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":79.1875,"pitch":109.5,"roll":42.9375},"location":"Left Ankle"},{"euler":{"heading":122.3125,"pitch":25.375,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":16.1875,"pitch":-140.3125,"roll":70.1875},"location":"Right Hip"},{"euler":{"heading":68.4375,"pitch":117.0,"roll":-1.375},"location":"Right Knee"},{"euler":{"heading":40.375,"pitch":-118.4375,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:07.251"} +{"sensors":[{"euler":{"heading":227.375,"pitch":167.4375,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":61.6875,"pitch":104.5625,"roll":25.1875},"location":"Left Ankle"},{"euler":{"heading":116.625,"pitch":19.8125,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":17.875,"pitch":-143.875,"roll":70.875},"location":"Right Hip"},{"euler":{"heading":71.4375,"pitch":117.875,"roll":3.0},"location":"Right Knee"},{"euler":{"heading":48.8125,"pitch":-123.875,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:07.352"} +{"sensors":[{"euler":{"heading":228.6875,"pitch":161.5625,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":70.625,"pitch":109.9375,"roll":30.4375},"location":"Left Ankle"},{"euler":{"heading":107.6875,"pitch":7.5,"roll":48.875},"location":"Right Ankle"},{"euler":{"heading":18.9375,"pitch":-149.625,"roll":71.625},"location":"Right Hip"},{"euler":{"heading":79.5625,"pitch":121.0,"roll":10.4375},"location":"Right Knee"},{"euler":{"heading":54.875,"pitch":-126.75,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:07.456"} +{"sensors":[{"euler":{"heading":225.3125,"pitch":153.25,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":85.125,"pitch":113.6875,"roll":39.25},"location":"Left Ankle"},{"euler":{"heading":97.1875,"pitch":-9.75,"roll":49.625},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-142.8125,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":89.375,"pitch":125.3125,"roll":17.8125},"location":"Right Knee"},{"euler":{"heading":56.25,"pitch":-128.25,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:07.556"} +{"sensors":[{"euler":{"heading":291.5,"pitch":147.4375,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":93.1875,"pitch":115.0,"roll":43.875},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":-16.9375,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":34.3125,"pitch":-129.4375,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":97.9375,"pitch":130.3125,"roll":20.8125},"location":"Right Knee"},{"euler":{"heading":59.3125,"pitch":-132.25,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:07.657"} +{"sensors":[{"euler":{"heading":297.875,"pitch":142.5,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":116.5,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":114.5,"pitch":1.5,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":38.3125,"pitch":-127.5625,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":86.5,"pitch":129.1875,"roll":11.0625},"location":"Right Knee"},{"euler":{"heading":62.75,"pitch":-137.0,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:07.757"} +{"sensors":[{"euler":{"heading":304.6875,"pitch":138.0625,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":104.75,"pitch":118.8125,"roll":50.75},"location":"Left Ankle"},{"euler":{"heading":130.75,"pitch":22.125,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":37.625,"pitch":-128.625,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":71.3125,"pitch":130.9375,"roll":-2.125},"location":"Right Knee"},{"euler":{"heading":65.875,"pitch":-143.6875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:07.858"} +{"sensors":[{"euler":{"heading":310.5625,"pitch":135.0,"roll":31.0},"location":"Left Knee"},{"euler":{"heading":108.5,"pitch":122.6875,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":59.4375,"pitch":42.5625,"roll":42.5},"location":"Right Ankle"},{"euler":{"heading":27.0625,"pitch":-134.625,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":54.1875,"pitch":131.4375,"roll":-15.1875},"location":"Right Knee"},{"euler":{"heading":66.1875,"pitch":-148.5,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:07.959"} +{"sensors":[{"euler":{"heading":316.25,"pitch":132.5625,"roll":26.25},"location":"Left Knee"},{"euler":{"heading":115.125,"pitch":131.6875,"roll":59.5625},"location":"Left Ankle"},{"euler":{"heading":59.3125,"pitch":43.3125,"roll":41.5},"location":"Right Ankle"},{"euler":{"heading":17.625,"pitch":-140.75,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":55.125,"pitch":126.6875,"roll":-16.0625},"location":"Right Knee"},{"euler":{"heading":68.0625,"pitch":-154.375,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:08.61"} +{"sensors":[{"euler":{"heading":328.0,"pitch":129.8125,"roll":17.0},"location":"Left Knee"},{"euler":{"heading":125.875,"pitch":160.75,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":48.5625,"pitch":38.6875,"roll":44.625},"location":"Right Ankle"},{"euler":{"heading":18.125,"pitch":-141.875,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":60.75,"pitch":121.9375,"roll":-12.8125},"location":"Right Knee"},{"euler":{"heading":64.0,"pitch":-145.3125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:08.162"} +{"sensors":[{"euler":{"heading":341.875,"pitch":130.3125,"roll":9.25},"location":"Left Knee"},{"euler":{"heading":142.0,"pitch":-165.5625,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":131.6875,"pitch":35.5625,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-141.9375,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":61.625,"pitch":117.9375,"roll":-10.3125},"location":"Right Knee"},{"euler":{"heading":49.9375,"pitch":-125.25,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:08.262"} +{"sensors":[{"euler":{"heading":332.1875,"pitch":135.75,"roll":14.25},"location":"Left Knee"},{"euler":{"heading":131.125,"pitch":170.9375,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":126.125,"pitch":33.3125,"roll":46.3125},"location":"Right Ankle"},{"euler":{"heading":14.9375,"pitch":-139.625,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":63.6875,"pitch":114.3125,"roll":-7.5},"location":"Right Knee"},{"euler":{"heading":42.8125,"pitch":-120.4375,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:08.363"} +{"sensors":[{"euler":{"heading":203.8125,"pitch":149.5,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":94.0,"pitch":116.1875,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":122.75,"pitch":31.4375,"roll":47.25},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-140.1875,"roll":70.25},"location":"Right Hip"},{"euler":{"heading":66.0625,"pitch":113.375,"roll":-4.3125},"location":"Right Knee"},{"euler":{"heading":40.1875,"pitch":-117.8125,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:08.464"} +{"sensors":[{"euler":{"heading":219.25,"pitch":164.125,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":67.0625,"pitch":104.0625,"roll":31.875},"location":"Left Ankle"},{"euler":{"heading":118.875,"pitch":27.5625,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":14.1875,"pitch":-144.125,"roll":71.75},"location":"Right Hip"},{"euler":{"heading":68.625,"pitch":113.8125,"roll":-0.5625},"location":"Right Knee"},{"euler":{"heading":42.375,"pitch":-119.75,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:08.565"} +{"sensors":[{"euler":{"heading":226.6875,"pitch":167.25,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":65.8125,"pitch":105.0625,"roll":27.875},"location":"Left Ankle"},{"euler":{"heading":112.875,"pitch":18.5,"roll":50.0625},"location":"Right Ankle"},{"euler":{"heading":14.75,"pitch":-149.75,"roll":73.125},"location":"Right Hip"},{"euler":{"heading":73.375,"pitch":116.375,"roll":5.0625},"location":"Right Knee"},{"euler":{"heading":50.4375,"pitch":-125.8125,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:08.666"} +{"sensors":[{"euler":{"heading":224.1875,"pitch":157.3125,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":79.4375,"pitch":109.6875,"roll":36.375},"location":"Left Ankle"},{"euler":{"heading":105.0625,"pitch":2.125,"roll":51.25},"location":"Right Ankle"},{"euler":{"heading":16.75,"pitch":-148.125,"roll":70.9375},"location":"Right Hip"},{"euler":{"heading":83.4375,"pitch":122.6875,"roll":14.0625},"location":"Right Knee"},{"euler":{"heading":50.9375,"pitch":-125.75,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:08.767"} +{"sensors":[{"euler":{"heading":284.25,"pitch":151.5625,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":85.5,"pitch":111.25,"roll":41.3125},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":-14.5,"roll":52.5},"location":"Right Ankle"},{"euler":{"heading":27.8125,"pitch":-134.0,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":94.25,"pitch":126.5625,"roll":19.625},"location":"Right Knee"},{"euler":{"heading":54.125,"pitch":-130.5625,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:08.867"} +{"sensors":[{"euler":{"heading":287.25,"pitch":147.6875,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":112.125,"roll":44.5625},"location":"Left Ankle"},{"euler":{"heading":108.6875,"pitch":-2.5,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":34.3125,"pitch":-129.375,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":89.75,"pitch":127.4375,"roll":12.9375},"location":"Right Knee"},{"euler":{"heading":56.0625,"pitch":-136.5625,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:08.968"} +{"sensors":[{"euler":{"heading":294.0625,"pitch":143.5625,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":114.0,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":127.5,"pitch":20.875,"roll":54.5},"location":"Right Ankle"},{"euler":{"heading":35.5,"pitch":-129.25,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":73.0,"pitch":128.875,"roll":-1.0625},"location":"Right Knee"},{"euler":{"heading":58.25,"pitch":-141.5,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:09.68"} +{"sensors":[{"euler":{"heading":301.375,"pitch":139.8125,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":99.6875,"pitch":117.875,"roll":52.25},"location":"Left Ankle"},{"euler":{"heading":57.125,"pitch":38.6875,"roll":44.1875},"location":"Right Ankle"},{"euler":{"heading":29.125,"pitch":-133.125,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":54.0625,"pitch":131.1875,"roll":-13.8125},"location":"Right Knee"},{"euler":{"heading":59.875,"pitch":-146.375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:09.169"} +{"sensors":[{"euler":{"heading":307.8125,"pitch":136.875,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":105.3125,"pitch":123.75,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":61.6875,"pitch":42.6875,"roll":39.4375},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-139.0,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":51.1875,"pitch":128.9375,"roll":-17.125},"location":"Right Knee"},{"euler":{"heading":62.8125,"pitch":-152.4375,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:09.270"} +{"sensors":[{"euler":{"heading":318.375,"pitch":133.6875,"roll":20.5625},"location":"Left Knee"},{"euler":{"heading":111.8125,"pitch":139.5625,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":51.875,"pitch":35.0625,"roll":43.3125},"location":"Right Ankle"},{"euler":{"heading":18.1875,"pitch":-142.875,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":53.9375,"pitch":125.75,"roll":-14.1875},"location":"Right Knee"},{"euler":{"heading":65.1875,"pitch":-152.875,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:09.370"} +{"sensors":[{"euler":{"heading":333.8125,"pitch":131.9375,"roll":12.1875},"location":"Left Knee"},{"euler":{"heading":122.75,"pitch":169.1875,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":47.875,"pitch":30.625,"roll":44.3125},"location":"Right Ankle"},{"euler":{"heading":18.5625,"pitch":-143.4375,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":55.125,"pitch":124.0625,"roll":-11.125},"location":"Right Knee"},{"euler":{"heading":51.1875,"pitch":-132.6875,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:09.471"} +{"sensors":[{"euler":{"heading":190.9375,"pitch":137.5625,"roll":15.3125},"location":"Left Knee"},{"euler":{"heading":121.0,"pitch":153.0625,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":45.625,"pitch":26.625,"roll":44.6875},"location":"Right Ankle"},{"euler":{"heading":19.0,"pitch":-144.0625,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":56.125,"pitch":123.8125,"roll":-8.25},"location":"Right Knee"},{"euler":{"heading":43.0625,"pitch":-123.125,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:09.573"} +{"sensors":[{"euler":{"heading":203.125,"pitch":148.9375,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":114.625,"roll":55.625},"location":"Left Ankle"},{"euler":{"heading":133.0625,"pitch":24.0625,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-144.0,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":57.5,"pitch":124.1875,"roll":-5.6875},"location":"Right Knee"},{"euler":{"heading":42.0625,"pitch":-122.1875,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:09.673"} +{"sensors":[{"euler":{"heading":218.5,"pitch":160.5625,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":72.375,"pitch":107.375,"roll":35.375},"location":"Left Ankle"},{"euler":{"heading":128.0625,"pitch":21.75,"roll":46.625},"location":"Right Ankle"},{"euler":{"heading":20.9375,"pitch":-145.8125,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":62.5625,"pitch":122.9375,"roll":-1.8125},"location":"Right Knee"},{"euler":{"heading":43.0,"pitch":-120.9375,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:09.774"} +{"sensors":[{"euler":{"heading":227.9375,"pitch":169.9375,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":60.6875,"pitch":101.875,"roll":24.0},"location":"Left Ankle"},{"euler":{"heading":121.5,"pitch":15.4375,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":20.625,"pitch":-152.25,"roll":70.4375},"location":"Right Hip"},{"euler":{"heading":66.9375,"pitch":123.875,"roll":2.75},"location":"Right Knee"},{"euler":{"heading":47.625,"pitch":-123.375,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:09.874"} +{"sensors":[{"euler":{"heading":229.125,"pitch":164.0625,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":67.9375,"pitch":105.125,"roll":27.5625},"location":"Left Ankle"},{"euler":{"heading":113.8125,"pitch":5.5,"roll":48.125},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-161.1875,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":74.25,"pitch":126.8125,"roll":8.8125},"location":"Right Knee"},{"euler":{"heading":53.5,"pitch":-124.9375,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:09.978"} +{"sensors":[{"euler":{"heading":278.25,"pitch":155.5,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":82.1875,"pitch":108.9375,"roll":38.0},"location":"Left Ankle"},{"euler":{"heading":100.9375,"pitch":-12.0625,"roll":48.4375},"location":"Right Ankle"},{"euler":{"heading":26.0625,"pitch":-151.4375,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":87.9375,"pitch":129.9375,"roll":17.4375},"location":"Right Knee"},{"euler":{"heading":52.3125,"pitch":-125.375,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:10.78"} +{"sensors":[{"euler":{"heading":282.6875,"pitch":150.4375,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":85.9375,"pitch":109.8125,"roll":41.375},"location":"Left Ankle"},{"euler":{"heading":97.5625,"pitch":-19.6875,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":36.4375,"pitch":-130.5,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":102.3125,"pitch":132.625,"roll":22.75},"location":"Right Knee"},{"euler":{"heading":55.1875,"pitch":-131.6875,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:10.179"} +{"sensors":[{"euler":{"heading":286.4375,"pitch":146.4375,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":90.0625,"pitch":110.5,"roll":44.75},"location":"Left Ankle"},{"euler":{"heading":112.6875,"pitch":1.75,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":41.375,"pitch":-126.0,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":86.6875,"pitch":129.5625,"roll":10.25},"location":"Right Knee"},{"euler":{"heading":56.5625,"pitch":-135.75,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:10.280"} +{"sensors":[{"euler":{"heading":292.6875,"pitch":142.4375,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":111.3125,"roll":47.9375},"location":"Left Ankle"},{"euler":{"heading":133.8125,"pitch":25.875,"roll":52.125},"location":"Right Ankle"},{"euler":{"heading":38.3125,"pitch":-127.375,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":65.75,"pitch":131.25,"roll":-5.6875},"location":"Right Knee"},{"euler":{"heading":58.3125,"pitch":-141.375,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:10.381"} +{"sensors":[{"euler":{"heading":300.5,"pitch":138.3125,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":99.3125,"pitch":114.625,"roll":52.1875},"location":"Left Ankle"},{"euler":{"heading":61.6875,"pitch":40.125,"roll":41.1875},"location":"Right Ankle"},{"euler":{"heading":31.5,"pitch":-132.1875,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":49.75,"pitch":133.375,"roll":-16.4375},"location":"Right Knee"},{"euler":{"heading":61.3125,"pitch":-145.5,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:10.482"} +{"sensors":[{"euler":{"heading":306.6875,"pitch":135.5625,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":105.4375,"pitch":121.3125,"roll":57.4375},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":41.5,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":24.8125,"pitch":-138.0,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":50.25,"pitch":130.1875,"roll":-17.5625},"location":"Right Knee"},{"euler":{"heading":62.4375,"pitch":-149.3125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:10.583"} +{"sensors":[{"euler":{"heading":317.875,"pitch":132.1875,"roll":21.0625},"location":"Left Knee"},{"euler":{"heading":114.125,"pitch":142.5625,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":46.6875,"pitch":36.1875,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-140.125,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":57.0625,"pitch":122.8125,"roll":-14.375},"location":"Right Knee"},{"euler":{"heading":62.6875,"pitch":-147.625,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:10.684"} +{"sensors":[{"euler":{"heading":334.0,"pitch":130.6875,"roll":12.5625},"location":"Left Knee"},{"euler":{"heading":128.5625,"pitch":175.3125,"roll":66.75},"location":"Left Ankle"},{"euler":{"heading":131.625,"pitch":32.0,"roll":46.0625},"location":"Right Ankle"},{"euler":{"heading":15.75,"pitch":-142.0625,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":59.6875,"pitch":119.5625,"roll":-11.0625},"location":"Right Knee"},{"euler":{"heading":49.125,"pitch":-129.0625,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:10.785"} +{"sensors":[{"euler":{"heading":329.875,"pitch":136.5625,"roll":15.4375},"location":"Left Knee"},{"euler":{"heading":122.9375,"pitch":157.6875,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":128.0,"pitch":28.4375,"roll":46.0625},"location":"Right Ankle"},{"euler":{"heading":16.6875,"pitch":-141.8125,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":61.75,"pitch":118.9375,"roll":-7.5625},"location":"Right Knee"},{"euler":{"heading":41.875,"pitch":-122.6875,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:10.886"} +{"sensors":[{"euler":{"heading":203.875,"pitch":148.625,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":91.9375,"pitch":114.9375,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":124.125,"pitch":25.4375,"roll":47.25},"location":"Right Ankle"},{"euler":{"heading":17.8125,"pitch":-141.625,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":63.6875,"pitch":118.0625,"roll":-4.4375},"location":"Right Knee"},{"euler":{"heading":40.25,"pitch":-119.4375,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:10.987"} +{"sensors":[{"euler":{"heading":219.1875,"pitch":161.9375,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":70.25,"pitch":105.4375,"roll":34.0625},"location":"Left Ankle"},{"euler":{"heading":118.5,"pitch":21.25,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":18.125,"pitch":-143.6875,"roll":70.9375},"location":"Right Hip"},{"euler":{"heading":66.625,"pitch":117.25,"roll":-0.125},"location":"Right Knee"},{"euler":{"heading":43.0625,"pitch":-120.3125,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:11.89"} +{"sensors":[{"euler":{"heading":228.5625,"pitch":169.0625,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":60.75,"pitch":102.875,"roll":23.75},"location":"Left Ankle"},{"euler":{"heading":113.5,"pitch":13.375,"roll":48.125},"location":"Right Ankle"},{"euler":{"heading":19.0,"pitch":-149.5625,"roll":71.3125},"location":"Right Hip"},{"euler":{"heading":69.5,"pitch":119.9375,"roll":4.1875},"location":"Right Knee"},{"euler":{"heading":49.125,"pitch":-125.0625,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:11.189"} +{"sensors":[{"euler":{"heading":228.25,"pitch":161.0625,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":78.875,"pitch":109.5,"roll":33.25},"location":"Left Ankle"},{"euler":{"heading":104.375,"pitch":-2.1875,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":18.75,"pitch":-154.5,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":79.4375,"pitch":124.625,"roll":12.4375},"location":"Right Knee"},{"euler":{"heading":50.75,"pitch":-125.3125,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:11.290"} +{"sensors":[{"euler":{"heading":282.8125,"pitch":153.4375,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":83.9375,"pitch":112.125,"roll":38.8125},"location":"Left Ankle"},{"euler":{"heading":91.75,"pitch":-17.6875,"roll":45.75},"location":"Right Ankle"},{"euler":{"heading":29.625,"pitch":-133.5,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":94.0,"pitch":124.625,"roll":21.375},"location":"Right Knee"},{"euler":{"heading":53.6875,"pitch":-127.625,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:11.391"} +{"sensors":[{"euler":{"heading":287.6875,"pitch":148.75,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":87.0625,"pitch":111.5625,"roll":41.1875},"location":"Left Ankle"},{"euler":{"heading":97.5625,"pitch":-12.625,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":38.75,"pitch":-127.4375,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":94.625,"pitch":127.3125,"roll":17.5625},"location":"Right Knee"},{"euler":{"heading":57.4375,"pitch":-135.25,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:11.492"} +{"sensors":[{"euler":{"heading":292.125,"pitch":144.5625,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":111.625,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":121.625,"pitch":11.4375,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":41.0,"pitch":-126.9375,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":78.375,"pitch":130.0625,"roll":1.9375},"location":"Right Knee"},{"euler":{"heading":59.875,"pitch":-140.25,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:11.593"} +{"sensors":[{"euler":{"heading":298.9375,"pitch":140.5625,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":96.0625,"pitch":113.375,"roll":48.6875},"location":"Left Ankle"},{"euler":{"heading":138.5,"pitch":32.125,"roll":49.1875},"location":"Right Ankle"},{"euler":{"heading":35.6875,"pitch":-130.75,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":58.5,"pitch":131.6875,"roll":-11.5},"location":"Right Knee"},{"euler":{"heading":61.875,"pitch":-146.4375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:11.694"} +{"sensors":[{"euler":{"heading":305.0625,"pitch":137.25,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":102.0625,"pitch":118.9375,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":60.1875,"pitch":40.1875,"roll":41.375},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-138.4375,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":45.75,"pitch":132.25,"roll":-19.4375},"location":"Right Knee"},{"euler":{"heading":62.125,"pitch":-148.75,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:11.795"} +{"sensors":[{"euler":{"heading":312.125,"pitch":134.375,"roll":24.9375},"location":"Left Knee"},{"euler":{"heading":109.5625,"pitch":132.0625,"roll":60.5625},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":38.8125,"roll":44.5625},"location":"Right Ankle"},{"euler":{"heading":17.625,"pitch":-143.25,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":54.375,"pitch":123.875,"roll":-16.4375},"location":"Right Knee"},{"euler":{"heading":63.4375,"pitch":-150.0,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:11.896"} +{"sensors":[{"euler":{"heading":332.0625,"pitch":131.375,"roll":14.0},"location":"Left Knee"},{"euler":{"heading":124.875,"pitch":164.5625,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":133.1875,"pitch":33.625,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":16.4375,"pitch":-143.875,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":57.0,"pitch":120.375,"roll":-13.0625},"location":"Right Knee"},{"euler":{"heading":49.6875,"pitch":-131.125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:11.998"} +{"sensors":[{"euler":{"heading":327.1875,"pitch":136.5625,"roll":15.6875},"location":"Left Knee"},{"euler":{"heading":118.75,"pitch":147.125,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":129.375,"pitch":30.375,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":15.25,"pitch":-143.625,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":59.25,"pitch":118.375,"roll":-10.375},"location":"Right Knee"},{"euler":{"heading":42.3125,"pitch":-120.1875,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:12.99"} +{"sensors":[{"euler":{"heading":204.1875,"pitch":148.0625,"roll":28.0625},"location":"Left Knee"},{"euler":{"heading":92.8125,"pitch":114.5625,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":125.3125,"pitch":27.875,"roll":46.625},"location":"Right Ankle"},{"euler":{"heading":16.25,"pitch":-142.25,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":61.9375,"pitch":117.375,"roll":-6.9375},"location":"Right Knee"},{"euler":{"heading":40.6875,"pitch":-119.0,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:12.200"} +{"sensors":[{"euler":{"heading":220.0625,"pitch":162.25,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":66.5,"pitch":104.75,"roll":31.1875},"location":"Left Ankle"},{"euler":{"heading":120.5,"pitch":24.3125,"roll":47.75},"location":"Right Ankle"},{"euler":{"heading":18.25,"pitch":-141.6875,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":65.375,"pitch":117.1875,"roll":-3.0625},"location":"Right Knee"},{"euler":{"heading":42.4375,"pitch":-120.375,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:12.301"} +{"sensors":[{"euler":{"heading":228.875,"pitch":169.0625,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":59.375,"pitch":102.875,"roll":22.75},"location":"Left Ankle"},{"euler":{"heading":114.5,"pitch":17.5,"roll":48.75},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-145.375,"roll":71.0625},"location":"Right Hip"},{"euler":{"heading":68.3125,"pitch":117.8125,"roll":1.5625},"location":"Right Knee"},{"euler":{"heading":48.8125,"pitch":-125.3125,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:12.402"} +{"sensors":[{"euler":{"heading":229.1875,"pitch":160.5,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":80.1875,"pitch":110.5625,"roll":32.6875},"location":"Left Ankle"},{"euler":{"heading":107.5625,"pitch":4.8125,"roll":49.3125},"location":"Right Ankle"},{"euler":{"heading":19.5,"pitch":-150.5,"roll":70.5},"location":"Right Hip"},{"euler":{"heading":74.375,"pitch":121.0625,"roll":8.1875},"location":"Right Knee"},{"euler":{"heading":53.9375,"pitch":-127.625,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:12.503"} +{"sensors":[{"euler":{"heading":285.625,"pitch":152.5,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":84.125,"pitch":112.3125,"roll":38.0},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":-12.25,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":27.5,"pitch":-141.375,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":86.875,"pitch":124.375,"roll":16.5},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-130.0,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:12.603"} +{"sensors":[{"euler":{"heading":293.75,"pitch":146.25,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":113.3125,"roll":42.375},"location":"Left Ankle"},{"euler":{"heading":103.75,"pitch":-11.75,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":36.5,"pitch":-132.25,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":85.125,"pitch":129.875,"roll":12.8125},"location":"Right Knee"},{"euler":{"heading":61.125,"pitch":-136.0625,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:12.704"} +{"sensors":[{"euler":{"heading":299.1875,"pitch":141.625,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":96.1875,"pitch":115.0625,"roll":45.5},"location":"Left Ankle"},{"euler":{"heading":119.6875,"pitch":4.875,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":40.1875,"pitch":-130.125,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":71.4375,"pitch":132.625,"roll":1.0},"location":"Right Knee"},{"euler":{"heading":63.0,"pitch":-139.5,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:12.805"} +{"sensors":[{"euler":{"heading":302.8125,"pitch":139.125,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":116.3125,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":135.5,"pitch":31.375,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":34.3125,"pitch":-133.125,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":56.0625,"pitch":131.0,"roll":-12.25},"location":"Right Knee"},{"euler":{"heading":62.6875,"pitch":-144.9375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:12.905"} +{"sensors":[{"euler":{"heading":306.8125,"pitch":136.8125,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":118.875,"roll":51.75},"location":"Left Ankle"},{"euler":{"heading":59.25,"pitch":40.75,"roll":41.125},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-138.6875,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":44.25,"pitch":131.9375,"roll":-20.1875},"location":"Right Knee"},{"euler":{"heading":62.5,"pitch":-149.25,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:13.6"} +{"sensors":[{"euler":{"heading":313.8125,"pitch":134.375,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":107.6875,"pitch":127.6875,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":52.375,"pitch":39.125,"roll":43.75},"location":"Right Ankle"},{"euler":{"heading":18.4375,"pitch":-141.3125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":51.75,"pitch":125.125,"roll":-17.875},"location":"Right Knee"},{"euler":{"heading":65.1875,"pitch":-153.875,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:13.107"} +{"sensors":[{"euler":{"heading":331.125,"pitch":131.875,"roll":14.875},"location":"Left Knee"},{"euler":{"heading":122.5625,"pitch":156.9375,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":132.5,"pitch":33.375,"roll":46.1875},"location":"Right Ankle"},{"euler":{"heading":19.125,"pitch":-141.1875,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":54.9375,"pitch":121.375,"roll":-14.25},"location":"Right Knee"},{"euler":{"heading":57.125,"pitch":-144.625,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:13.208"} +{"sensors":[{"euler":{"heading":339.375,"pitch":132.1875,"roll":11.0625},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":167.875,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":129.1875,"pitch":29.1875,"roll":46.0625},"location":"Right Ankle"},{"euler":{"heading":31.9375,"pitch":-143.0,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":56.6875,"pitch":119.3125,"roll":-11.1875},"location":"Right Knee"},{"euler":{"heading":50.1875,"pitch":-128.0,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:13.308"} +{"sensors":[{"euler":{"heading":197.25,"pitch":140.375,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":110.6875,"pitch":134.25,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":126.125,"pitch":25.5625,"roll":45.1875},"location":"Right Ankle"},{"euler":{"heading":16.3125,"pitch":-143.0,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":58.6875,"pitch":118.8125,"roll":-8.1875},"location":"Right Knee"},{"euler":{"heading":42.125,"pitch":-123.0,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:13.409"} +{"sensors":[{"euler":{"heading":210.375,"pitch":154.4375,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":81.75,"pitch":109.875,"roll":44.1875},"location":"Left Ankle"},{"euler":{"heading":122.6875,"pitch":22.125,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":16.6875,"pitch":-145.125,"roll":70.1875},"location":"Right Hip"},{"euler":{"heading":60.125,"pitch":118.3125,"roll":-5.1875},"location":"Right Knee"},{"euler":{"heading":40.0625,"pitch":-120.5,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:13.510"} +{"sensors":[{"euler":{"heading":224.1875,"pitch":166.5,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":59.25,"pitch":101.9375,"roll":24.3125},"location":"Left Ankle"},{"euler":{"heading":117.75,"pitch":16.0,"roll":47.75},"location":"Right Ankle"},{"euler":{"heading":17.5,"pitch":-149.3125,"roll":71.375},"location":"Right Hip"},{"euler":{"heading":64.0,"pitch":119.3125,"roll":-0.625},"location":"Right Knee"},{"euler":{"heading":46.5,"pitch":-123.875,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:13.611"} +{"sensors":[{"euler":{"heading":228.5625,"pitch":165.625,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":65.5,"pitch":106.0,"roll":26.3125},"location":"Left Ankle"},{"euler":{"heading":111.1875,"pitch":7.875,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":16.25,"pitch":-159.375,"roll":71.4375},"location":"Right Hip"},{"euler":{"heading":73.125,"pitch":121.625,"roll":7.25},"location":"Right Knee"},{"euler":{"heading":51.9375,"pitch":-126.8125,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:13.712"} +{"sensors":[{"euler":{"heading":225.5625,"pitch":155.75,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":81.5625,"pitch":111.0625,"roll":36.5625},"location":"Left Ankle"},{"euler":{"heading":100.3125,"pitch":-9.5625,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":22.5,"pitch":-151.3125,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":82.6875,"pitch":127.625,"roll":14.8125},"location":"Right Knee"},{"euler":{"heading":53.0625,"pitch":-126.3125,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:13.812"} +{"sensors":[{"euler":{"heading":290.9375,"pitch":148.9375,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":113.9375,"roll":41.625},"location":"Left Ankle"},{"euler":{"heading":94.625,"pitch":-18.875,"roll":47.125},"location":"Right Ankle"},{"euler":{"heading":33.5,"pitch":-133.375,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":98.25,"pitch":129.25,"roll":21.875},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-129.1875,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:13.913"} +{"sensors":[{"euler":{"heading":293.125,"pitch":145.5,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":114.375,"roll":44.8125},"location":"Left Ankle"},{"euler":{"heading":107.8125,"pitch":-6.6875,"roll":51.0},"location":"Right Ankle"},{"euler":{"heading":40.875,"pitch":-129.3125,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":88.6875,"pitch":130.0625,"roll":13.1875},"location":"Right Knee"},{"euler":{"heading":57.9375,"pitch":-134.375,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:14.13"} +{"sensors":[{"euler":{"heading":298.4375,"pitch":141.875,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":96.8125,"pitch":115.4375,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":124.3125,"pitch":11.75,"roll":54.75},"location":"Right Ankle"},{"euler":{"heading":41.5625,"pitch":-129.5,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":71.9375,"pitch":131.6875,"roll":-0.6875},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-141.25,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:14.114"} +{"sensors":[{"euler":{"heading":306.875,"pitch":136.9375,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":103.375,"pitch":119.25,"roll":50.875},"location":"Left Ankle"},{"euler":{"heading":145.0,"pitch":37.75,"roll":45.25},"location":"Right Ankle"},{"euler":{"heading":33.0,"pitch":-134.0625,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":53.375,"pitch":132.25,"roll":-14.6875},"location":"Right Knee"},{"euler":{"heading":61.5,"pitch":-145.375,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:14.216"} +{"sensors":[{"euler":{"heading":313.25,"pitch":134.3125,"roll":28.375},"location":"Left Knee"},{"euler":{"heading":109.75,"pitch":125.0625,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":59.4375,"pitch":42.6875,"roll":40.8125},"location":"Right Ankle"},{"euler":{"heading":22.4375,"pitch":-139.6875,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":48.8125,"pitch":130.5,"roll":-19.0},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-149.8125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:14.317"} +{"sensors":[{"euler":{"heading":322.5,"pitch":131.875,"roll":20.25},"location":"Left Knee"},{"euler":{"heading":113.625,"pitch":139.375,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":48.625,"pitch":37.125,"roll":44.6875},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-142.0,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":55.125,"pitch":124.0,"roll":-15.5},"location":"Right Knee"},{"euler":{"heading":63.9375,"pitch":-150.0625,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:14.417"} +{"sensors":[{"euler":{"heading":337.6875,"pitch":130.875,"roll":11.625},"location":"Left Knee"},{"euler":{"heading":130.8125,"pitch":173.5,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":132.8125,"pitch":33.875,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":17.3125,"pitch":-142.125,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":55.75,"pitch":120.75,"roll":-13.25},"location":"Right Knee"},{"euler":{"heading":47.8125,"pitch":-130.75,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:14.518"} +{"sensors":[{"euler":{"heading":192.5625,"pitch":136.875,"roll":14.125},"location":"Left Knee"},{"euler":{"heading":120.25,"pitch":147.875,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":129.5,"pitch":30.5625,"roll":45.0625},"location":"Right Ankle"},{"euler":{"heading":16.5,"pitch":-141.5625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":58.4375,"pitch":118.5625,"roll":-10.125},"location":"Right Knee"},{"euler":{"heading":39.0,"pitch":-121.625,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:14.624"} +{"sensors":[{"euler":{"heading":206.0,"pitch":149.5,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":88.875,"pitch":113.1875,"roll":49.625},"location":"Left Ankle"},{"euler":{"heading":126.5625,"pitch":27.875,"roll":45.6875},"location":"Right Ankle"},{"euler":{"heading":18.875,"pitch":-139.75,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":59.3125,"pitch":117.125,"roll":-7.5},"location":"Right Knee"},{"euler":{"heading":37.25,"pitch":-118.875,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:14.725"} +{"sensors":[{"euler":{"heading":221.5625,"pitch":164.625,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":63.625,"pitch":104.4375,"roll":28.0625},"location":"Left Ankle"},{"euler":{"heading":122.1875,"pitch":23.1875,"roll":46.75},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-140.5625,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":62.3125,"pitch":117.375,"roll":-3.5},"location":"Right Knee"},{"euler":{"heading":41.0,"pitch":-120.4375,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:14.826"} +{"sensors":[{"euler":{"heading":229.6875,"pitch":168.4375,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":58.375,"pitch":103.3125,"roll":21.875},"location":"Left Ankle"},{"euler":{"heading":116.0625,"pitch":15.875,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":22.25,"pitch":-144.5625,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":66.3125,"pitch":119.75,"roll":1.4375},"location":"Right Knee"},{"euler":{"heading":49.125,"pitch":-125.3125,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:14.927"} +{"sensors":[{"euler":{"heading":229.0,"pitch":160.125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":75.8125,"pitch":106.9375,"roll":31.5},"location":"Left Ankle"},{"euler":{"heading":109.6875,"pitch":4.1875,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-152.5625,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":70.5,"pitch":123.6875,"roll":7.5625},"location":"Right Knee"},{"euler":{"heading":53.0625,"pitch":-127.375,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:15.28"} +{"sensors":[{"euler":{"heading":285.5,"pitch":152.6875,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":82.9375,"pitch":110.5,"roll":38.6875},"location":"Left Ankle"},{"euler":{"heading":95.8125,"pitch":-14.4375,"roll":48.0},"location":"Right Ankle"},{"euler":{"heading":32.25,"pitch":-139.875,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":90.4375,"pitch":125.125,"roll":17.9375},"location":"Right Knee"},{"euler":{"heading":57.25,"pitch":-130.8125,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:15.129"} +{"sensors":[{"euler":{"heading":290.9375,"pitch":147.5625,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":88.3125,"pitch":111.3125,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":100.625,"pitch":-14.1875,"roll":50.4375},"location":"Right Ankle"},{"euler":{"heading":42.0,"pitch":-129.125,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":94.375,"pitch":130.875,"roll":16.9375},"location":"Right Knee"},{"euler":{"heading":59.6875,"pitch":-136.0625,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:15.230"} +{"sensors":[{"euler":{"heading":295.375,"pitch":143.875,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":91.3125,"pitch":112.375,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":120.25,"pitch":8.375,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":43.8125,"pitch":-128.375,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":77.3125,"pitch":131.125,"roll":4.4375},"location":"Right Knee"},{"euler":{"heading":60.9375,"pitch":-139.75,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:15.330"} +{"sensors":[{"euler":{"heading":298.0,"pitch":140.8125,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":98.6875,"pitch":115.1875,"roll":51.3125},"location":"Left Ankle"},{"euler":{"heading":137.75,"pitch":29.1875,"roll":49.125},"location":"Right Ankle"},{"euler":{"heading":38.4375,"pitch":-130.5,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":60.75,"pitch":132.875,"roll":-8.75},"location":"Right Knee"},{"euler":{"heading":61.0,"pitch":-145.5,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:15.430"} +{"sensors":[{"euler":{"heading":304.25,"pitch":137.375,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":104.25,"pitch":119.8125,"roll":55.625},"location":"Left Ankle"},{"euler":{"heading":61.0625,"pitch":39.25,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":26.3125,"pitch":-136.9375,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":41.625,"pitch":134.875,"roll":-20.0625},"location":"Right Knee"},{"euler":{"heading":62.4375,"pitch":-149.4375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:15.531"} +{"sensors":[{"euler":{"heading":312.0,"pitch":134.4375,"roll":26.3125},"location":"Left Knee"},{"euler":{"heading":127.25,"pitch":131.8125,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":56.75,"pitch":36.4375,"roll":42.375},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-141.75,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":45.4375,"pitch":129.625,"roll":-18.8125},"location":"Right Knee"},{"euler":{"heading":65.0,"pitch":-153.5,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:15.632"} +{"sensors":[{"euler":{"heading":326.0625,"pitch":131.8125,"roll":15.625},"location":"Left Knee"},{"euler":{"heading":127.5,"pitch":168.375,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":47.6875,"pitch":30.5,"roll":44.625},"location":"Right Ankle"},{"euler":{"heading":20.75,"pitch":-142.5,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":51.0625,"pitch":125.375,"roll":-15.0625},"location":"Right Knee"},{"euler":{"heading":56.625,"pitch":-141.625,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:15.736"} +{"sensors":[{"euler":{"heading":330.9375,"pitch":136.0625,"roll":13.875},"location":"Left Knee"},{"euler":{"heading":125.625,"pitch":165.8125,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":44.1875,"pitch":27.75,"roll":43.75},"location":"Right Ankle"},{"euler":{"heading":17.8125,"pitch":-143.4375,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":53.875,"pitch":122.9375,"roll":-11.8125},"location":"Right Knee"},{"euler":{"heading":45.75,"pitch":-125.25,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:15.838"} +{"sensors":[{"euler":{"heading":203.1875,"pitch":145.75,"roll":25.8125},"location":"Left Knee"},{"euler":{"heading":105.5625,"pitch":123.0,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":131.5,"pitch":24.5625,"roll":45.25},"location":"Right Ankle"},{"euler":{"heading":19.5625,"pitch":-142.6875,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":54.3125,"pitch":121.875,"roll":-9.25},"location":"Right Knee"},{"euler":{"heading":40.875,"pitch":-122.4375,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:15.939"} +{"sensors":[{"euler":{"heading":217.9375,"pitch":161.6875,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":74.0,"pitch":106.8125,"roll":38.4375},"location":"Left Ankle"},{"euler":{"heading":127.125,"pitch":21.9375,"roll":46.5},"location":"Right Ankle"},{"euler":{"heading":20.0625,"pitch":-143.0625,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":57.875,"pitch":121.0,"roll":-5.875},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-121.0625,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:16.39"} +{"sensors":[{"euler":{"heading":228.625,"pitch":172.5625,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":58.4375,"pitch":100.0625,"roll":23.1875},"location":"Left Ankle"},{"euler":{"heading":121.375,"pitch":17.0,"roll":46.9375},"location":"Right Ankle"},{"euler":{"heading":20.9375,"pitch":-147.8125,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":61.3125,"pitch":121.6875,"roll":-1.5},"location":"Right Knee"},{"euler":{"heading":47.8125,"pitch":-125.0625,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:16.141"} +{"sensors":[{"euler":{"heading":228.4375,"pitch":166.0,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":67.5,"pitch":106.375,"roll":28.8125},"location":"Left Ankle"},{"euler":{"heading":114.0625,"pitch":7.3125,"roll":47.9375},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-155.5625,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":67.8125,"pitch":124.5625,"roll":4.625},"location":"Right Knee"},{"euler":{"heading":52.875,"pitch":-126.5625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:16.242"} +{"sensors":[{"euler":{"heading":227.1875,"pitch":157.25,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":82.0625,"pitch":110.0,"roll":38.5},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":-12.625,"roll":48.5625},"location":"Right Ankle"},{"euler":{"heading":25.625,"pitch":-151.5625,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":78.375,"pitch":129.3125,"roll":12.375},"location":"Right Knee"},{"euler":{"heading":54.8125,"pitch":-129.875,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:16.343"} +{"sensors":[{"euler":{"heading":285.8125,"pitch":150.4375,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":90.75,"pitch":110.8125,"roll":43.0},"location":"Left Ankle"},{"euler":{"heading":98.5625,"pitch":-16.8125,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":37.3125,"pitch":-131.875,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":93.375,"pitch":131.8125,"roll":17.6875},"location":"Right Knee"},{"euler":{"heading":59.1875,"pitch":-134.8125,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:16.445"} +{"sensors":[{"euler":{"heading":291.25,"pitch":145.875,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":94.9375,"pitch":112.3125,"roll":46.375},"location":"Left Ankle"},{"euler":{"heading":114.5,"pitch":1.6875,"roll":51.4375},"location":"Right Ankle"},{"euler":{"heading":42.6875,"pitch":-128.75,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":79.25,"pitch":130.5,"roll":7.0},"location":"Right Knee"},{"euler":{"heading":60.5625,"pitch":-138.25,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:16.546"} +{"sensors":[{"euler":{"heading":298.3125,"pitch":141.3125,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":98.8125,"pitch":115.125,"roll":49.9375},"location":"Left Ankle"},{"euler":{"heading":130.125,"pitch":21.3125,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":43.5625,"pitch":-128.375,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":62.125,"pitch":133.5625,"roll":-6.625},"location":"Right Knee"},{"euler":{"heading":62.8125,"pitch":-142.625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:16.647"} +{"sensors":[{"euler":{"heading":304.5,"pitch":137.375,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":103.75,"pitch":118.3125,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":58.4375,"pitch":37.5,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":34.5,"pitch":-134.3125,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":42.1875,"pitch":135.125,"roll":-18.75},"location":"Right Knee"},{"euler":{"heading":65.125,"pitch":-148.4375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:16.747"} +{"sensors":[{"euler":{"heading":309.25,"pitch":135.6875,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":108.0625,"pitch":125.1875,"roll":59.0},"location":"Left Ankle"},{"euler":{"heading":57.4375,"pitch":40.25,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":22.9375,"pitch":-139.3125,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":44.0,"pitch":130.3125,"roll":-20.0625},"location":"Right Knee"},{"euler":{"heading":64.5625,"pitch":-152.9375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:16.848"} +{"sensors":[{"euler":{"heading":321.625,"pitch":133.5,"roll":18.6875},"location":"Left Knee"},{"euler":{"heading":119.4375,"pitch":151.9375,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":46.25,"pitch":35.125,"roll":44.4375},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-140.0625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":53.4375,"pitch":122.9375,"roll":-16.125},"location":"Right Knee"},{"euler":{"heading":61.3125,"pitch":-146.6875,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:16.949"} +{"sensors":[{"euler":{"heading":338.125,"pitch":131.4375,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":178.3125,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":41.4375,"pitch":31.375,"roll":44.5625},"location":"Right Ankle"},{"euler":{"heading":17.3125,"pitch":-140.8125,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":52.8125,"pitch":120.125,"roll":-14.1875},"location":"Right Knee"},{"euler":{"heading":48.9375,"pitch":-127.8125,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:17.49"} +{"sensors":[{"euler":{"heading":195.625,"pitch":138.25,"roll":16.5},"location":"Left Knee"},{"euler":{"heading":123.5,"pitch":158.375,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":40.1875,"pitch":28.875,"roll":43.375},"location":"Right Ankle"},{"euler":{"heading":18.1875,"pitch":-141.375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":54.4375,"pitch":119.625,"roll":-11.1875},"location":"Right Knee"},{"euler":{"heading":40.625,"pitch":-122.75,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:17.150"} +{"sensors":[{"euler":{"heading":208.25,"pitch":150.125,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":94.5625,"pitch":119.1875,"roll":52.75},"location":"Left Ankle"},{"euler":{"heading":127.875,"pitch":27.1875,"roll":45.0625},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-141.875,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":55.0625,"pitch":119.125,"roll":-8.875},"location":"Right Knee"},{"euler":{"heading":39.375,"pitch":-119.5625,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:17.251"} +{"sensors":[{"euler":{"heading":221.875,"pitch":165.3125,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":65.875,"pitch":105.375,"roll":30.1875},"location":"Left Ankle"},{"euler":{"heading":122.5625,"pitch":24.6875,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-143.0,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":59.9375,"pitch":117.4375,"roll":-4.375},"location":"Right Knee"},{"euler":{"heading":18.75,"pitch":-131.125,"roll":39.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:17.353"} +{"sensors":[{"euler":{"heading":230.4375,"pitch":171.1875,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":60.1875,"pitch":102.875,"roll":23.375},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":19.5,"roll":46.75},"location":"Right Ankle"},{"euler":{"heading":19.75,"pitch":-151.125,"roll":70.6875},"location":"Right Hip"},{"euler":{"heading":62.875,"pitch":118.75,"roll":-0.1875},"location":"Right Knee"},{"euler":{"heading":47.6875,"pitch":-127.75,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:17.454"} +{"sensors":[{"euler":{"heading":230.5,"pitch":162.0625,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":76.4375,"pitch":108.75,"roll":32.4375},"location":"Left Ankle"},{"euler":{"heading":109.3125,"pitch":6.375,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-159.25,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":67.0625,"pitch":122.9375,"roll":5.625},"location":"Right Knee"},{"euler":{"heading":52.5625,"pitch":-131.0,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:17.555"} +{"sensors":[{"euler":{"heading":281.0625,"pitch":154.375,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":87.1875,"pitch":111.8125,"roll":41.5625},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":-13.25,"roll":46.375},"location":"Right Ankle"},{"euler":{"heading":29.125,"pitch":-145.25,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":87.6875,"pitch":126.6875,"roll":17.375},"location":"Right Knee"},{"euler":{"heading":53.3125,"pitch":-132.625,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:17.656"} +{"sensors":[{"euler":{"heading":287.3125,"pitch":148.875,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":93.375,"pitch":113.125,"roll":45.75},"location":"Left Ankle"},{"euler":{"heading":97.5625,"pitch":-16.5625,"roll":47.5625},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-131.5625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":91.3125,"pitch":130.0625,"roll":17.0},"location":"Right Knee"},{"euler":{"heading":57.6875,"pitch":-138.5625,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:17.760"} +{"sensors":[{"euler":{"heading":292.625,"pitch":144.75,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":114.3125,"roll":48.875},"location":"Left Ankle"},{"euler":{"heading":117.75,"pitch":4.9375,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":40.8125,"pitch":-129.125,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":75.3125,"pitch":130.1875,"roll":4.1875},"location":"Right Knee"},{"euler":{"heading":59.0625,"pitch":-142.6875,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:17.860"} +{"sensors":[{"euler":{"heading":299.4375,"pitch":141.125,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":117.125,"roll":52.1875},"location":"Left Ankle"},{"euler":{"heading":133.5625,"pitch":25.75,"roll":51.0},"location":"Right Ankle"},{"euler":{"heading":37.125,"pitch":-131.3125,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":60.5625,"pitch":131.875,"roll":-8.125},"location":"Right Knee"},{"euler":{"heading":59.5625,"pitch":-148.375,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:17.961"} +{"sensors":[{"euler":{"heading":305.8125,"pitch":137.3125,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":108.25,"pitch":121.8125,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":59.9375,"pitch":40.25,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":25.6875,"pitch":-136.3125,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":45.6875,"pitch":133.625,"roll":-18.8125},"location":"Right Knee"},{"euler":{"heading":62.5,"pitch":-153.9375,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:18.62"} +{"sensors":[{"euler":{"heading":313.25,"pitch":134.375,"roll":26.25},"location":"Left Knee"},{"euler":{"heading":112.9375,"pitch":130.875,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":56.125,"pitch":38.1875,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-139.8125,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":49.375,"pitch":128.625,"roll":-18.0625},"location":"Right Knee"},{"euler":{"heading":66.6875,"pitch":-158.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:18.163"} +{"sensors":[{"euler":{"heading":329.0625,"pitch":131.875,"roll":15.875},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":165.5625,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":47.1875,"pitch":32.5,"roll":43.875},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-139.375,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":52.25,"pitch":124.875,"roll":-14.6875},"location":"Right Knee"},{"euler":{"heading":56.1875,"pitch":-144.1875,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:18.263"} +{"sensors":[{"euler":{"heading":344.0625,"pitch":130.125,"roll":9.75},"location":"Left Knee"},{"euler":{"heading":137.8125,"pitch":-171.1875,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":43.75,"pitch":30.375,"roll":43.6875},"location":"Right Ankle"},{"euler":{"heading":18.125,"pitch":-141.5625,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":52.375,"pitch":120.4375,"roll":-12.375},"location":"Right Knee"},{"euler":{"heading":44.0,"pitch":-125.4375,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:18.365"} +{"sensors":[{"euler":{"heading":198.4375,"pitch":139.5625,"roll":16.75},"location":"Left Knee"},{"euler":{"heading":121.0,"pitch":142.125,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":40.75,"pitch":27.9375,"roll":44.1875},"location":"Right Ankle"},{"euler":{"heading":19.0625,"pitch":-140.25,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":54.625,"pitch":118.6875,"roll":-9.375},"location":"Right Knee"},{"euler":{"heading":38.9375,"pitch":-123.125,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:18.465"} +{"sensors":[{"euler":{"heading":212.5,"pitch":155.3125,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":83.6875,"pitch":108.25,"roll":46.4375},"location":"Left Ankle"},{"euler":{"heading":126.5625,"pitch":24.0,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":20.1875,"pitch":-141.5625,"roll":70.0},"location":"Right Hip"},{"euler":{"heading":57.625,"pitch":118.6875,"roll":-5.75},"location":"Right Knee"},{"euler":{"heading":38.625,"pitch":-122.0625,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:18.567"} +{"sensors":[{"euler":{"heading":225.875,"pitch":168.75,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":61.0,"pitch":100.625,"roll":26.375},"location":"Left Ankle"},{"euler":{"heading":121.1875,"pitch":19.0625,"roll":46.1875},"location":"Right Ankle"},{"euler":{"heading":20.125,"pitch":-146.9375,"roll":71.375},"location":"Right Hip"},{"euler":{"heading":60.0,"pitch":119.1875,"roll":-1.75},"location":"Right Knee"},{"euler":{"heading":44.0,"pitch":-125.0625,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:18.668"} +{"sensors":[{"euler":{"heading":230.625,"pitch":169.9375,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":64.0,"pitch":103.875,"roll":25.3125},"location":"Left Ankle"},{"euler":{"heading":114.75,"pitch":9.875,"roll":47.0625},"location":"Right Ankle"},{"euler":{"heading":20.875,"pitch":-155.5625,"roll":71.375},"location":"Right Hip"},{"euler":{"heading":64.125,"pitch":122.375,"roll":3.5},"location":"Right Knee"},{"euler":{"heading":50.3125,"pitch":-128.5625,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:18.770"} +{"sensors":[{"euler":{"heading":228.4375,"pitch":159.875,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":81.125,"pitch":109.1875,"roll":36.5625},"location":"Left Ankle"},{"euler":{"heading":105.125,"pitch":-6.8125,"roll":47.8125},"location":"Right Ankle"},{"euler":{"heading":23.5,"pitch":-154.9375,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":75.625,"pitch":127.75,"roll":12.1875},"location":"Right Knee"},{"euler":{"heading":53.4375,"pitch":-129.9375,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:18.870"} +{"sensors":[{"euler":{"heading":288.125,"pitch":151.0625,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":93.375,"pitch":112.125,"roll":43.625},"location":"Left Ankle"},{"euler":{"heading":92.625,"pitch":-18.8125,"roll":45.1875},"location":"Right Ankle"},{"euler":{"heading":32.375,"pitch":-136.3125,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":92.0,"pitch":128.375,"roll":21.125},"location":"Right Knee"},{"euler":{"heading":57.8125,"pitch":-132.375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:18.971"} +{"sensors":[{"euler":{"heading":293.5,"pitch":146.1875,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":98.625,"pitch":113.875,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":104.8125,"pitch":-9.9375,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":40.9375,"pitch":-129.625,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":87.875,"pitch":130.4375,"roll":14.6875},"location":"Right Knee"},{"euler":{"heading":60.9375,"pitch":-138.5625,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:19.71"} +{"sensors":[{"euler":{"heading":297.875,"pitch":142.4375,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":114.4375,"roll":49.125},"location":"Left Ankle"},{"euler":{"heading":125.125,"pitch":13.25,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":43.375,"pitch":-129.6875,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":70.125,"pitch":132.375,"roll":0.375},"location":"Right Knee"},{"euler":{"heading":61.875,"pitch":-144.625,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:19.172"} +{"sensors":[{"euler":{"heading":304.1875,"pitch":138.4375,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":105.0,"pitch":116.5625,"roll":51.9375},"location":"Left Ankle"},{"euler":{"heading":142.0,"pitch":34.3125,"roll":45.9375},"location":"Right Ankle"},{"euler":{"heading":35.875,"pitch":-132.625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":54.375,"pitch":133.25,"roll":-12.5},"location":"Right Knee"},{"euler":{"heading":64.5625,"pitch":-150.625,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:19.273"} +{"sensors":[{"euler":{"heading":310.0625,"pitch":135.25,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":110.0625,"pitch":121.9375,"roll":56.3125},"location":"Left Ankle"},{"euler":{"heading":59.8125,"pitch":40.625,"roll":39.875},"location":"Right Ankle"},{"euler":{"heading":25.625,"pitch":-139.0,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":41.8125,"pitch":133.1875,"roll":-20.25},"location":"Right Knee"},{"euler":{"heading":65.625,"pitch":-155.25,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:19.374"} +{"sensors":[{"euler":{"heading":318.875,"pitch":131.3125,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":116.6875,"pitch":138.375,"roll":62.625},"location":"Left Ankle"},{"euler":{"heading":49.0,"pitch":33.8125,"roll":43.75},"location":"Right Ankle"},{"euler":{"heading":21.8125,"pitch":-142.25,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":49.4375,"pitch":126.0,"roll":-17.125},"location":"Right Knee"},{"euler":{"heading":69.0625,"pitch":-155.625,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:19.474"} +{"sensors":[{"euler":{"heading":334.125,"pitch":130.125,"roll":14.625},"location":"Left Knee"},{"euler":{"heading":132.6875,"pitch":174.5,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":44.9375,"pitch":29.875,"roll":44.5},"location":"Right Ankle"},{"euler":{"heading":20.0625,"pitch":-143.4375,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":51.1875,"pitch":123.6875,"roll":-14.3125},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-139.25,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:19.575"} +{"sensors":[{"euler":{"heading":338.625,"pitch":132.9375,"roll":12.125},"location":"Left Knee"},{"euler":{"heading":135.9375,"pitch":-177.5625,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":42.625,"pitch":27.1875,"roll":44.0625},"location":"Right Ankle"},{"euler":{"heading":19.75,"pitch":-143.875,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":53.375,"pitch":121.9375,"roll":-11.375},"location":"Right Knee"},{"euler":{"heading":43.125,"pitch":-126.0,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:19.676"} +{"sensors":[{"euler":{"heading":201.9375,"pitch":144.4375,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":111.4375,"pitch":126.125,"roll":62.4375},"location":"Left Ankle"},{"euler":{"heading":39.8125,"pitch":24.25,"roll":43.8125},"location":"Right Ankle"},{"euler":{"heading":21.875,"pitch":-143.4375,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":53.25,"pitch":122.0,"roll":-8.5625},"location":"Right Knee"},{"euler":{"heading":27.875,"pitch":-122.9375,"roll":44.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:19.776"} +{"sensors":[{"euler":{"heading":218.25,"pitch":158.75,"roll":36.8125},"location":"Left Knee"},{"euler":{"heading":81.625,"pitch":109.625,"roll":41.0},"location":"Left Ankle"},{"euler":{"heading":126.6875,"pitch":21.5,"roll":45.3125},"location":"Right Ankle"},{"euler":{"heading":22.6875,"pitch":-146.5625,"roll":69.5625},"location":"Right Hip"},{"euler":{"heading":56.125,"pitch":122.3125,"roll":-5.25},"location":"Right Knee"},{"euler":{"heading":39.5625,"pitch":-122.125,"roll":45.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:19.877"} +{"sensors":[{"euler":{"heading":230.25,"pitch":169.4375,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":61.4375,"pitch":102.625,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":29.625,"pitch":15.9375,"roll":44.9375},"location":"Right Ankle"},{"euler":{"heading":23.625,"pitch":-149.0625,"roll":70.75},"location":"Right Hip"},{"euler":{"heading":62.0,"pitch":122.4375,"roll":-0.0625},"location":"Right Knee"},{"euler":{"heading":47.875,"pitch":-126.5,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:19.978"} +{"sensors":[{"euler":{"heading":230.6875,"pitch":162.875,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":70.1875,"pitch":107.8125,"roll":29.8125},"location":"Left Ankle"},{"euler":{"heading":111.9375,"pitch":5.25,"roll":46.9375},"location":"Right Ankle"},{"euler":{"heading":23.125,"pitch":-156.125,"roll":69.9375},"location":"Right Hip"},{"euler":{"heading":69.6875,"pitch":124.9375,"roll":6.875},"location":"Right Knee"},{"euler":{"heading":52.0,"pitch":-127.375,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:20.78"} +{"sensors":[{"euler":{"heading":281.8125,"pitch":154.3125,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":85.1875,"pitch":111.1875,"roll":38.25},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":-16.875,"roll":44.9375},"location":"Right Ankle"},{"euler":{"heading":33.9375,"pitch":-140.1875,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":87.625,"pitch":128.9375,"roll":17.125},"location":"Right Knee"},{"euler":{"heading":54.3125,"pitch":-129.4375,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:20.179"} +{"sensors":[{"euler":{"heading":288.25,"pitch":148.875,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":94.125,"pitch":113.125,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":91.625,"pitch":-20.875,"roll":45.5},"location":"Right Ankle"},{"euler":{"heading":43.6875,"pitch":-128.6875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":97.4375,"pitch":132.3125,"roll":20.125},"location":"Right Knee"},{"euler":{"heading":56.5,"pitch":-135.0,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:20.280"} +{"sensors":[{"euler":{"heading":292.375,"pitch":144.8125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":98.6875,"pitch":113.0625,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":106.4375,"pitch":-1.1875,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":46.3125,"pitch":-126.6875,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":81.4375,"pitch":129.375,"roll":8.25},"location":"Right Knee"},{"euler":{"heading":58.9375,"pitch":-140.0,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:20.381"} +{"sensors":[{"euler":{"heading":300.125,"pitch":139.25,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":115.0,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":126.875,"pitch":25.125,"roll":52.125},"location":"Right Ankle"},{"euler":{"heading":44.9375,"pitch":-128.3125,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":62.0625,"pitch":131.5,"roll":-7.8125},"location":"Right Knee"},{"euler":{"heading":61.5,"pitch":-146.0,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:20.484"} +{"sensors":[{"euler":{"heading":308.25,"pitch":135.4375,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":118.75,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":57.4375,"pitch":38.6875,"roll":43.0},"location":"Right Ankle"},{"euler":{"heading":35.8125,"pitch":-133.8125,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":41.75,"pitch":134.6875,"roll":-19.875},"location":"Right Knee"},{"euler":{"heading":63.0625,"pitch":-150.3125,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:20.584"} +{"sensors":[{"euler":{"heading":313.4375,"pitch":133.125,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":111.5625,"pitch":125.5,"roll":59.0},"location":"Left Ankle"},{"euler":{"heading":59.0,"pitch":39.75,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":25.875,"pitch":-138.6875,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":42.875,"pitch":131.1875,"roll":-20.1875},"location":"Right Knee"},{"euler":{"heading":65.6875,"pitch":-156.375,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:20.684"} +{"sensors":[{"euler":{"heading":322.5625,"pitch":131.625,"roll":18.4375},"location":"Left Knee"},{"euler":{"heading":118.4375,"pitch":147.8125,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":48.0,"pitch":34.8125,"roll":43.5},"location":"Right Ankle"},{"euler":{"heading":24.25,"pitch":-141.0,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":51.4375,"pitch":124.6875,"roll":-16.25},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-147.5625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:20.785"} +{"sensors":[{"euler":{"heading":340.9375,"pitch":128.375,"roll":11.4375},"location":"Left Knee"},{"euler":{"heading":134.25,"pitch":-179.75,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":41.9375,"pitch":31.6875,"roll":44.3125},"location":"Right Ankle"},{"euler":{"heading":20.75,"pitch":-141.4375,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":52.4375,"pitch":120.625,"roll":-13.875},"location":"Right Knee"},{"euler":{"heading":32.0,"pitch":-127.3125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:20.886"} +{"sensors":[{"euler":{"heading":330.625,"pitch":136.625,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":129.0,"pitch":166.1875,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":38.1875,"pitch":28.625,"roll":44.25},"location":"Right Ankle"},{"euler":{"heading":21.9375,"pitch":-140.125,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":55.25,"pitch":118.1875,"roll":-11.0625},"location":"Right Knee"},{"euler":{"heading":39.6875,"pitch":-122.4375,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:20.987"} +{"sensors":[{"euler":{"heading":209.6875,"pitch":150.5,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":96.5,"pitch":119.5625,"roll":53.625},"location":"Left Ankle"},{"euler":{"heading":124.75,"pitch":26.4375,"roll":45.375},"location":"Right Ankle"},{"euler":{"heading":22.0,"pitch":-140.25,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":57.25,"pitch":117.6875,"roll":-8.0},"location":"Right Knee"},{"euler":{"heading":37.875,"pitch":-119.875,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:21.87"} +{"sensors":[{"euler":{"heading":224.5,"pitch":164.8125,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":68.1875,"pitch":106.375,"roll":31.4375},"location":"Left Ankle"},{"euler":{"heading":120.3125,"pitch":21.875,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":22.9375,"pitch":-142.75,"roll":70.25},"location":"Right Hip"},{"euler":{"heading":59.5625,"pitch":117.75,"roll":-4.375},"location":"Right Knee"},{"euler":{"heading":41.5,"pitch":-122.8125,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:21.187"} +{"sensors":[{"euler":{"heading":232.5625,"pitch":168.4375,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":60.4375,"pitch":105.0625,"roll":22.6875},"location":"Left Ankle"},{"euler":{"heading":114.6875,"pitch":13.5625,"roll":47.8125},"location":"Right Ankle"},{"euler":{"heading":24.3125,"pitch":-151.0,"roll":70.6875},"location":"Right Hip"},{"euler":{"heading":62.375,"pitch":121.1875,"roll":0.4375},"location":"Right Knee"},{"euler":{"heading":51.25,"pitch":-127.9375,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:21.288"} +{"sensors":[{"euler":{"heading":231.875,"pitch":158.75,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":76.75,"pitch":111.4375,"roll":33.125},"location":"Left Ankle"},{"euler":{"heading":107.25,"pitch":0.0625,"roll":48.125},"location":"Right Ankle"},{"euler":{"heading":25.625,"pitch":-155.5625,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":74.5,"pitch":126.0625,"roll":10.0625},"location":"Right Knee"},{"euler":{"heading":55.0625,"pitch":-128.875,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:21.389"} +{"sensors":[{"euler":{"heading":289.5,"pitch":150.875,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":89.4375,"pitch":114.875,"roll":40.5625},"location":"Left Ankle"},{"euler":{"heading":2.875,"pitch":-17.875,"roll":44.75},"location":"Right Ankle"},{"euler":{"heading":37.375,"pitch":-138.1875,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":92.5625,"pitch":127.9375,"roll":19.8125},"location":"Right Knee"},{"euler":{"heading":58.3125,"pitch":-130.9375,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:21.490"} +{"sensors":[{"euler":{"heading":294.625,"pitch":145.6875,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":116.4375,"roll":45.8125},"location":"Left Ankle"},{"euler":{"heading":95.625,"pitch":-21.0625,"roll":47.8125},"location":"Right Ankle"},{"euler":{"heading":44.5,"pitch":-129.8125,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":93.4375,"pitch":132.3125,"roll":17.375},"location":"Right Knee"},{"euler":{"heading":60.75,"pitch":-136.375,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:21.591"} +{"sensors":[{"euler":{"heading":300.1875,"pitch":141.4375,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":102.3125,"pitch":117.4375,"roll":49.0},"location":"Left Ankle"},{"euler":{"heading":114.0,"pitch":0.0,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":47.0,"pitch":-128.0,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":78.1875,"pitch":132.125,"roll":5.1875},"location":"Right Knee"},{"euler":{"heading":63.3125,"pitch":-141.5625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:21.691"} +{"sensors":[{"euler":{"heading":306.625,"pitch":137.5,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":107.25,"pitch":120.3125,"roll":52.1875},"location":"Left Ankle"},{"euler":{"heading":132.125,"pitch":25.375,"roll":51.5625},"location":"Right Ankle"},{"euler":{"heading":42.75,"pitch":-130.6875,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":60.6875,"pitch":132.6875,"roll":-8.1875},"location":"Right Knee"},{"euler":{"heading":63.8125,"pitch":-147.3125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:21.792"} +{"sensors":[{"euler":{"heading":312.375,"pitch":134.625,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":111.5,"pitch":124.0625,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":58.125,"pitch":39.0625,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":32.125,"pitch":-135.6875,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":43.9375,"pitch":133.0625,"roll":-19.4375},"location":"Right Knee"},{"euler":{"heading":65.0,"pitch":-152.375,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:21.892"} +{"sensors":[{"euler":{"heading":316.3125,"pitch":132.25,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":116.1875,"pitch":133.0,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":52.125,"pitch":36.375,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":23.75,"pitch":-140.375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":46.5,"pitch":127.875,"roll":-19.0},"location":"Right Knee"},{"euler":{"heading":68.1875,"pitch":-157.75,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:21.994"} +{"sensors":[{"euler":{"heading":329.0625,"pitch":130.5,"roll":16.5625},"location":"Left Knee"},{"euler":{"heading":128.0625,"pitch":165.375,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":43.4375,"pitch":32.0,"roll":44.6875},"location":"Right Ankle"},{"euler":{"heading":25.75,"pitch":-140.1875,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":52.0,"pitch":122.6875,"roll":-15.4375},"location":"Right Knee"},{"euler":{"heading":58.75,"pitch":-143.375,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:22.94"} +{"sensors":[{"euler":{"heading":342.5,"pitch":130.8125,"roll":10.6875},"location":"Left Knee"},{"euler":{"heading":141.1875,"pitch":-171.1875,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":38.625,"pitch":29.0,"roll":44.5625},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-140.8125,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":55.3125,"pitch":118.4375,"roll":-12.3125},"location":"Right Knee"},{"euler":{"heading":46.0625,"pitch":-124.4375,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:22.195"} +{"sensors":[{"euler":{"heading":197.625,"pitch":139.375,"roll":18.9375},"location":"Left Knee"},{"euler":{"heading":126.4375,"pitch":155.375,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":124.875,"pitch":24.9375,"roll":45.1875},"location":"Right Ankle"},{"euler":{"heading":21.3125,"pitch":-140.8125,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":56.9375,"pitch":117.6875,"roll":-9.3125},"location":"Right Knee"},{"euler":{"heading":40.5,"pitch":-121.125,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:22.295"} +{"sensors":[{"euler":{"heading":212.375,"pitch":154.0,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":113.75,"roll":48.5625},"location":"Left Ankle"},{"euler":{"heading":121.625,"pitch":21.5,"roll":45.9375},"location":"Right Ankle"},{"euler":{"heading":23.125,"pitch":-141.75,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":58.0625,"pitch":118.375,"roll":-6.0},"location":"Right Knee"},{"euler":{"heading":40.25,"pitch":-120.4375,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:22.397"} +{"sensors":[{"euler":{"heading":226.3125,"pitch":166.875,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":64.25,"pitch":104.5625,"roll":28.375},"location":"Left Ankle"},{"euler":{"heading":116.5,"pitch":16.875,"roll":46.375},"location":"Right Ankle"},{"euler":{"heading":23.375,"pitch":-143.625,"roll":70.125},"location":"Right Hip"},{"euler":{"heading":61.75,"pitch":118.5,"roll":-1.8125},"location":"Right Knee"},{"euler":{"heading":46.9375,"pitch":-123.4375,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:22.497"} +{"sensors":[{"euler":{"heading":231.4375,"pitch":166.625,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":65.1875,"pitch":105.25,"roll":26.0625},"location":"Left Ankle"},{"euler":{"heading":111.5,"pitch":7.6875,"roll":48.125},"location":"Right Ankle"},{"euler":{"heading":23.875,"pitch":-151.8125,"roll":70.875},"location":"Right Hip"},{"euler":{"heading":65.625,"pitch":122.0,"roll":3.4375},"location":"Right Knee"},{"euler":{"heading":54.0,"pitch":-128.5,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:22.598"} +{"sensors":[{"euler":{"heading":228.25,"pitch":157.75,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":79.4375,"pitch":110.0625,"roll":35.125},"location":"Left Ankle"},{"euler":{"heading":100.25,"pitch":-12.25,"roll":47.25},"location":"Right Ankle"},{"euler":{"heading":29.8125,"pitch":-146.125,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":79.625,"pitch":128.75,"roll":12.75},"location":"Right Knee"},{"euler":{"heading":53.9375,"pitch":-129.8125,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:22.698"} +{"sensors":[{"euler":{"heading":285.6875,"pitch":151.4375,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":112.125,"roll":40.8125},"location":"Left Ankle"},{"euler":{"heading":2.25,"pitch":-22.0,"roll":44.625},"location":"Right Ankle"},{"euler":{"heading":42.0,"pitch":-131.9375,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":92.5625,"pitch":131.25,"roll":18.25},"location":"Right Knee"},{"euler":{"heading":59.375,"pitch":-136.6875,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:22.800"} +{"sensors":[{"euler":{"heading":292.375,"pitch":145.6875,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":113.125,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":103.5625,"pitch":-12.375,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":47.875,"pitch":-127.6875,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":84.1875,"pitch":131.8125,"roll":9.8125},"location":"Right Knee"},{"euler":{"heading":62.5,"pitch":-140.375,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:22.900"} +{"sensors":[{"euler":{"heading":299.0625,"pitch":141.25,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":116.0625,"roll":47.875},"location":"Left Ankle"},{"euler":{"heading":121.5625,"pitch":8.1875,"roll":55.0625},"location":"Right Ankle"},{"euler":{"heading":48.4375,"pitch":-127.9375,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":64.75,"pitch":133.5625,"roll":-3.5625},"location":"Right Knee"},{"euler":{"heading":61.8125,"pitch":-144.25,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:23.1"} +{"sensors":[{"euler":{"heading":305.75,"pitch":137.3125,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":104.1875,"pitch":119.5,"roll":52.125},"location":"Left Ankle"},{"euler":{"heading":140.625,"pitch":33.3125,"roll":46.4375},"location":"Right Ankle"},{"euler":{"heading":41.1875,"pitch":-131.8125,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":51.8125,"pitch":133.3125,"roll":-15.25},"location":"Right Knee"},{"euler":{"heading":63.125,"pitch":-148.875,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:23.101"} +{"sensors":[{"euler":{"heading":311.3125,"pitch":134.375,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":110.4375,"pitch":125.25,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":57.8125,"pitch":39.875,"roll":40.625},"location":"Right Ankle"},{"euler":{"heading":27.5625,"pitch":-138.5,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":46.0,"pitch":130.8125,"roll":-19.25},"location":"Right Knee"},{"euler":{"heading":64.125,"pitch":-153.25,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:23.202"} +{"sensors":[{"euler":{"heading":319.6875,"pitch":132.3125,"roll":22.625},"location":"Left Knee"},{"euler":{"heading":114.9375,"pitch":140.4375,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":48.5,"pitch":32.625,"roll":43.625},"location":"Right Ankle"},{"euler":{"heading":24.5,"pitch":-142.0,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":50.5,"pitch":125.9375,"roll":-15.9375},"location":"Right Knee"},{"euler":{"heading":64.9375,"pitch":-153.375,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:23.303"} +{"sensors":[{"euler":{"heading":337.1875,"pitch":129.375,"roll":13.625},"location":"Left Knee"},{"euler":{"heading":132.25,"pitch":174.5,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":42.4375,"pitch":28.875,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":23.875,"pitch":-141.75,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":52.6875,"pitch":122.3125,"roll":-13.0625},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-134.5,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:23.403"} +{"sensors":[{"euler":{"heading":331.6875,"pitch":136.5625,"roll":15.5},"location":"Left Knee"},{"euler":{"heading":125.5625,"pitch":159.6875,"roll":70.0625},"location":"Left Ankle"},{"euler":{"heading":127.6875,"pitch":25.625,"roll":45.6875},"location":"Right Ankle"},{"euler":{"heading":23.0,"pitch":-141.0,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":56.375,"pitch":120.4375,"roll":-9.5625},"location":"Right Knee"},{"euler":{"heading":42.9375,"pitch":-124.5,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:23.504"} +{"sensors":[{"euler":{"heading":206.5625,"pitch":149.5,"roll":27.5},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":116.4375,"roll":52.875},"location":"Left Ankle"},{"euler":{"heading":124.625,"pitch":22.9375,"roll":46.25},"location":"Right Ankle"},{"euler":{"heading":23.4375,"pitch":-140.875,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":58.125,"pitch":120.0625,"roll":-6.75},"location":"Right Knee"},{"euler":{"heading":39.1875,"pitch":-120.0,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:23.605"} +{"sensors":[{"euler":{"heading":221.75,"pitch":163.875,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":68.875,"pitch":105.75,"roll":32.0},"location":"Left Ankle"},{"euler":{"heading":120.75,"pitch":19.75,"roll":46.75},"location":"Right Ankle"},{"euler":{"heading":23.75,"pitch":-144.0,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":62.0625,"pitch":120.0625,"roll":-2.875},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-121.4375,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:23.705"} +{"sensors":[{"euler":{"heading":232.6875,"pitch":170.5625,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":61.0,"pitch":104.0625,"roll":22.875},"location":"Left Ankle"},{"euler":{"heading":114.5625,"pitch":12.25,"roll":47.625},"location":"Right Ankle"},{"euler":{"heading":25.25,"pitch":-148.125,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":79.75,"pitch":121.875,"roll":1.5625},"location":"Right Knee"},{"euler":{"heading":50.125,"pitch":-126.4375,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:23.807"} +{"sensors":[{"euler":{"heading":233.5,"pitch":162.25,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":77.0,"pitch":110.625,"roll":31.8125},"location":"Left Ankle"},{"euler":{"heading":104.875,"pitch":-1.75,"roll":47.0625},"location":"Right Ankle"},{"euler":{"heading":27.3125,"pitch":-153.0,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":75.5625,"pitch":128.0625,"roll":10.875},"location":"Right Knee"},{"euler":{"heading":54.4375,"pitch":-127.875,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:23.908"} +{"sensors":[{"euler":{"heading":283.75,"pitch":153.875,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":87.0,"pitch":112.875,"roll":39.125},"location":"Left Ankle"},{"euler":{"heading":3.125,"pitch":-19.25,"roll":44.1875},"location":"Right Ankle"},{"euler":{"heading":39.8125,"pitch":-136.875,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":92.125,"pitch":129.375,"roll":19.375},"location":"Right Knee"},{"euler":{"heading":56.5625,"pitch":-129.1875,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:24.8"} +{"sensors":[{"euler":{"heading":289.875,"pitch":148.625,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":91.125,"pitch":113.5,"roll":42.3125},"location":"Left Ankle"},{"euler":{"heading":97.25,"pitch":-18.375,"roll":46.125},"location":"Right Ankle"},{"euler":{"heading":49.0,"pitch":-127.9375,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":90.4375,"pitch":132.8125,"roll":15.9375},"location":"Right Knee"},{"euler":{"heading":61.125,"pitch":-136.9375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:24.109"} +{"sensors":[{"euler":{"heading":294.6875,"pitch":144.125,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":96.0625,"pitch":113.75,"roll":45.3125},"location":"Left Ankle"},{"euler":{"heading":115.75,"pitch":0.0,"roll":51.5625},"location":"Right Ankle"},{"euler":{"heading":51.8125,"pitch":-126.6875,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":74.0625,"pitch":133.5,"roll":3.5625},"location":"Right Knee"},{"euler":{"heading":64.25,"pitch":-142.3125,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:24.210"} +{"sensors":[{"euler":{"heading":301.625,"pitch":139.5,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":100.375,"pitch":115.25,"roll":48.75},"location":"Left Ankle"},{"euler":{"heading":133.125,"pitch":24.25,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":47.375,"pitch":-128.8125,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":58.25,"pitch":134.25,"roll":-9.1875},"location":"Right Knee"},{"euler":{"heading":65.6875,"pitch":-146.875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:24.311"} +{"sensors":[{"euler":{"heading":308.9375,"pitch":135.5,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":106.4375,"pitch":119.6875,"roll":53.0},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":40.375,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":34.625,"pitch":-134.5625,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":43.125,"pitch":133.9375,"roll":-20.125},"location":"Right Knee"},{"euler":{"heading":67.4375,"pitch":-151.25,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:24.412"} +{"sensors":[{"euler":{"heading":314.0,"pitch":133.0625,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":112.4375,"pitch":126.9375,"roll":59.0},"location":"Left Ankle"},{"euler":{"heading":57.3125,"pitch":39.5625,"roll":40.5},"location":"Right Ankle"},{"euler":{"heading":24.5,"pitch":-140.375,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":45.0,"pitch":130.0,"roll":-20.3125},"location":"Right Knee"},{"euler":{"heading":69.375,"pitch":-157.25,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:24.513"} +{"sensors":[{"euler":{"heading":324.4375,"pitch":130.875,"roll":19.8125},"location":"Left Knee"},{"euler":{"heading":121.75,"pitch":154.625,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":46.875,"pitch":34.25,"roll":43.3125},"location":"Right Ankle"},{"euler":{"heading":24.375,"pitch":-141.1875,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":52.375,"pitch":123.625,"roll":-16.3125},"location":"Right Knee"},{"euler":{"heading":68.125,"pitch":-151.6875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:24.613"} +{"sensors":[{"euler":{"heading":341.1875,"pitch":128.375,"roll":12.125},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":-178.0625,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":40.9375,"pitch":31.75,"roll":43.75},"location":"Right Ankle"},{"euler":{"heading":19.6875,"pitch":-142.625,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":53.5625,"pitch":119.6875,"roll":-13.9375},"location":"Right Knee"},{"euler":{"heading":51.875,"pitch":-126.8125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:24.714"} +{"sensors":[{"euler":{"heading":201.625,"pitch":138.75,"roll":17.6875},"location":"Left Knee"},{"euler":{"heading":121.625,"pitch":147.0625,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":35.4375,"pitch":29.0625,"roll":44.1875},"location":"Right Ankle"},{"euler":{"heading":20.5,"pitch":-140.25,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":56.6875,"pitch":116.75,"roll":-10.75},"location":"Right Knee"},{"euler":{"heading":41.625,"pitch":-120.1875,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:24.816"} +{"sensors":[{"euler":{"heading":211.8125,"pitch":154.5,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":87.75,"pitch":111.375,"roll":48.5},"location":"Left Ankle"},{"euler":{"heading":120.6875,"pitch":25.9375,"roll":45.625},"location":"Right Ankle"},{"euler":{"heading":21.6875,"pitch":-138.5,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":59.875,"pitch":116.125,"roll":-7.1875},"location":"Right Knee"},{"euler":{"heading":38.625,"pitch":-117.5,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:24.916"} +{"sensors":[{"euler":{"heading":226.4375,"pitch":168.3125,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":61.9375,"pitch":102.6875,"roll":26.8125},"location":"Left Ankle"},{"euler":{"heading":115.75,"pitch":20.5,"roll":47.0625},"location":"Right Ankle"},{"euler":{"heading":23.8125,"pitch":-139.3125,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":61.8125,"pitch":116.6875,"roll":-3.0},"location":"Right Knee"},{"euler":{"heading":42.9375,"pitch":-121.625,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:25.17"} +{"sensors":[{"euler":{"heading":231.6875,"pitch":167.6875,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":65.4375,"pitch":106.625,"roll":26.0625},"location":"Left Ankle"},{"euler":{"heading":109.5,"pitch":8.9375,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":25.375,"pitch":-146.8125,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":66.3125,"pitch":120.875,"roll":2.75},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-127.1875,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:25.120"} +{"sensors":[{"euler":{"heading":229.25,"pitch":158.4375,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":79.9375,"pitch":110.6875,"roll":35.9375},"location":"Left Ankle"},{"euler":{"heading":101.5625,"pitch":-7.6875,"roll":46.9375},"location":"Right Ankle"},{"euler":{"heading":26.875,"pitch":-149.5,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":74.5625,"pitch":126.9375,"roll":10.4375},"location":"Right Knee"},{"euler":{"heading":53.125,"pitch":-127.0625,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:25.221"} +{"sensors":[{"euler":{"heading":287.75,"pitch":151.5625,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":87.0,"pitch":112.5625,"roll":40.5},"location":"Left Ankle"},{"euler":{"heading":2.25,"pitch":-19.9375,"roll":44.9375},"location":"Right Ankle"},{"euler":{"heading":38.75,"pitch":-134.6875,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":89.1875,"pitch":129.5625,"roll":18.0625},"location":"Right Knee"},{"euler":{"heading":58.625,"pitch":-132.875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:25.322"} +{"sensors":[{"euler":{"heading":292.8125,"pitch":146.6875,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":91.6875,"pitch":112.625,"roll":43.9375},"location":"Left Ankle"},{"euler":{"heading":101.5,"pitch":-11.0,"roll":49.25},"location":"Right Ankle"},{"euler":{"heading":47.5625,"pitch":-127.4375,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":86.25,"pitch":130.5,"roll":11.6875},"location":"Right Knee"},{"euler":{"heading":62.0625,"pitch":-138.1875,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:25.423"} +{"sensors":[{"euler":{"heading":299.0625,"pitch":141.8125,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":98.125,"pitch":114.1875,"roll":47.4375},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":8.3125,"roll":53.9375},"location":"Right Ankle"},{"euler":{"heading":49.0625,"pitch":-126.9375,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":69.4375,"pitch":132.9375,"roll":-0.625},"location":"Right Knee"},{"euler":{"heading":64.625,"pitch":-144.8125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:25.523"} +{"sensors":[{"euler":{"heading":307.8125,"pitch":137.25,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":118.0,"roll":51.75},"location":"Left Ankle"},{"euler":{"heading":141.75,"pitch":34.5625,"roll":46.5},"location":"Right Ankle"},{"euler":{"heading":43.0625,"pitch":-131.5,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":48.75,"pitch":134.1875,"roll":-31.25},"location":"Right Knee"},{"euler":{"heading":66.5,"pitch":-149.6875,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:25.624"} +{"sensors":[{"euler":{"heading":313.5625,"pitch":133.875,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":111.3125,"pitch":123.9375,"roll":56.6875},"location":"Left Ankle"},{"euler":{"heading":61.5625,"pitch":41.0625,"roll":39.4375},"location":"Right Ankle"},{"euler":{"heading":29.8125,"pitch":-139.5,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":41.375,"pitch":133.5625,"roll":-21.125},"location":"Right Knee"},{"euler":{"heading":67.5625,"pitch":-154.9375,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:25.725"} +{"sensors":[{"euler":{"heading":320.0625,"pitch":131.8125,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":115.75,"pitch":138.3125,"roll":62.6875},"location":"Left Ankle"},{"euler":{"heading":51.1875,"pitch":35.0625,"roll":43.0625},"location":"Right Ankle"},{"euler":{"heading":25.9375,"pitch":-142.4375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":45.875,"pitch":127.3125,"roll":-18.75},"location":"Right Knee"},{"euler":{"heading":71.1875,"pitch":-157.25,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:25.826"} +{"sensors":[{"euler":{"heading":337.375,"pitch":130.3125,"roll":13.25},"location":"Left Knee"},{"euler":{"heading":134.125,"pitch":177.1875,"roll":67.3125},"location":"Left Ankle"},{"euler":{"heading":45.6875,"pitch":30.875,"roll":43.375},"location":"Right Ankle"},{"euler":{"heading":25.5625,"pitch":-142.6875,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":48.0625,"pitch":124.125,"roll":-16.1875},"location":"Right Knee"},{"euler":{"heading":57.625,"pitch":-135.8125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:25.931"} +{"sensors":[{"euler":{"heading":337.4375,"pitch":134.75,"roll":12.875},"location":"Left Knee"},{"euler":{"heading":129.75,"pitch":171.8125,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":41.9375,"pitch":27.8125,"roll":43.6875},"location":"Right Ankle"},{"euler":{"heading":22.6875,"pitch":-143.6875,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":52.3125,"pitch":121.6875,"roll":-12.8125},"location":"Right Knee"},{"euler":{"heading":45.3125,"pitch":-121.75,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:26.32"} +{"sensors":[{"euler":{"heading":205.4375,"pitch":145.875,"roll":25.4375},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":120.4375,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":38.5625,"pitch":24.25,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":22.75,"pitch":-143.75,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":52.625,"pitch":120.6875,"roll":-10.1875},"location":"Right Knee"},{"euler":{"heading":40.3125,"pitch":-119.25,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:26.132"} +{"sensors":[{"euler":{"heading":218.875,"pitch":160.6875,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":70.75,"pitch":105.375,"roll":35.5625},"location":"Left Ankle"},{"euler":{"heading":123.9375,"pitch":21.0,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":23.0,"pitch":-146.0625,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":55.6875,"pitch":120.5,"roll":-6.6875},"location":"Right Knee"},{"euler":{"heading":40.1875,"pitch":-119.5,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:26.232"} +{"sensors":[{"euler":{"heading":230.0625,"pitch":169.75,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":59.25,"pitch":101.0,"roll":24.375},"location":"Left Ankle"},{"euler":{"heading":118.125,"pitch":14.6875,"roll":46.5},"location":"Right Ankle"},{"euler":{"heading":24.4375,"pitch":-148.4375,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":59.8125,"pitch":121.1875,"roll":-2.0625},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-125.1875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:26.333"} +{"sensors":[{"euler":{"heading":232.1875,"pitch":163.0625,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":71.0,"pitch":108.6875,"roll":31.4375},"location":"Left Ankle"},{"euler":{"heading":110.125,"pitch":4.625,"roll":47.6875},"location":"Right Ankle"},{"euler":{"heading":24.6875,"pitch":-154.8125,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":65.5,"pitch":124.0625,"roll":4.125},"location":"Right Knee"},{"euler":{"heading":53.5,"pitch":-127.4375,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:26.434"} +{"sensors":[{"euler":{"heading":284.5625,"pitch":154.1875,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":86.1875,"pitch":112.1875,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":94.3125,"pitch":-16.0,"roll":45.8125},"location":"Right Ankle"},{"euler":{"heading":32.25,"pitch":-145.1875,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":80.625,"pitch":128.9375,"roll":13.625},"location":"Right Knee"},{"euler":{"heading":54.25,"pitch":-128.5,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:26.535"} +{"sensors":[{"euler":{"heading":291.8125,"pitch":148.4375,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":93.1875,"pitch":113.3125,"roll":44.375},"location":"Left Ankle"},{"euler":{"heading":96.9375,"pitch":-21.9375,"roll":46.375},"location":"Right Ankle"},{"euler":{"heading":42.625,"pitch":-132.125,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":90.375,"pitch":134.25,"roll":16.3125},"location":"Right Knee"},{"euler":{"heading":57.5625,"pitch":-132.4375,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:26.636"} +{"sensors":[{"euler":{"heading":295.1875,"pitch":144.5,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":96.875,"pitch":113.75,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":-6.4375,"roll":51.0},"location":"Right Ankle"},{"euler":{"heading":46.9375,"pitch":-130.5625,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":74.375,"pitch":133.6875,"roll":4.8125},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-138.5625,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:26.737"} +{"sensors":[{"euler":{"heading":302.6875,"pitch":140.0,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":102.5625,"pitch":115.875,"roll":50.375},"location":"Left Ankle"},{"euler":{"heading":129.25,"pitch":18.25,"roll":53.125},"location":"Right Ankle"},{"euler":{"heading":44.375,"pitch":-133.4375,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":55.4375,"pitch":134.25,"roll":-9.1875},"location":"Right Knee"},{"euler":{"heading":62.25,"pitch":-145.125,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:26.837"} +{"sensors":[{"euler":{"heading":309.5,"pitch":136.375,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":119.625,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":58.75,"pitch":39.0,"roll":42.5},"location":"Right Ankle"},{"euler":{"heading":33.6875,"pitch":-137.5625,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":39.8125,"pitch":135.5625,"roll":-20.375},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-149.0,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:26.938"} +{"sensors":[{"euler":{"heading":315.375,"pitch":133.375,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":113.0,"pitch":127.4375,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":56.75,"pitch":41.125,"roll":41.5},"location":"Right Ankle"},{"euler":{"heading":24.0625,"pitch":-141.75,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":43.875,"pitch":130.6875,"roll":-20.5},"location":"Right Knee"},{"euler":{"heading":65.3125,"pitch":-154.5,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:27.39"} +{"sensors":[{"euler":{"heading":326.625,"pitch":131.0,"roll":18.75},"location":"Left Knee"},{"euler":{"heading":122.875,"pitch":155.0625,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":45.875,"pitch":36.1875,"roll":44.5},"location":"Right Ankle"},{"euler":{"heading":22.125,"pitch":-143.0625,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":50.75,"pitch":123.5625,"roll":-17.3125},"location":"Right Knee"},{"euler":{"heading":64.4375,"pitch":-149.9375,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:27.139"} +{"sensors":[{"euler":{"heading":344.0,"pitch":129.125,"roll":10.375},"location":"Left Knee"},{"euler":{"heading":136.0,"pitch":-173.375,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":39.5,"pitch":33.0,"roll":44.9375},"location":"Right Ankle"},{"euler":{"heading":17.4375,"pitch":-144.9375,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":52.5,"pitch":119.375,"roll":-14.5},"location":"Right Knee"},{"euler":{"heading":49.875,"pitch":-127.25,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:27.240"} +{"sensors":[{"euler":{"heading":194.25,"pitch":137.0,"roll":13.5},"location":"Left Knee"},{"euler":{"heading":126.8125,"pitch":167.9375,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":124.8125,"pitch":30.4375,"roll":45.125},"location":"Right Ankle"},{"euler":{"heading":18.375,"pitch":-143.125,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":55.1875,"pitch":116.625,"roll":-11.5},"location":"Right Knee"},{"euler":{"heading":41.1875,"pitch":-120.0625,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:27.341"} +{"sensors":[{"euler":{"heading":207.6875,"pitch":149.625,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":115.75,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":120.4375,"pitch":27.8125,"roll":45.9375},"location":"Right Ankle"},{"euler":{"heading":19.625,"pitch":-142.5,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":57.875,"pitch":116.0,"roll":-8.1875},"location":"Right Knee"},{"euler":{"heading":38.9375,"pitch":-118.0625,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:27.442"} +{"sensors":[{"euler":{"heading":222.0,"pitch":163.875,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":65.5625,"pitch":103.3125,"roll":31.8125},"location":"Left Ankle"},{"euler":{"heading":115.9375,"pitch":24.1875,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":19.5,"pitch":-145.125,"roll":71.25},"location":"Right Hip"},{"euler":{"heading":67.125,"pitch":115.75,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":41.75,"pitch":-120.0,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:27.542"} +{"sensors":[{"euler":{"heading":230.625,"pitch":169.8125,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":61.375,"pitch":104.0625,"roll":24.8125},"location":"Left Ankle"},{"euler":{"heading":110.0625,"pitch":14.375,"roll":47.5625},"location":"Right Ankle"},{"euler":{"heading":20.375,"pitch":-151.125,"roll":72.3125},"location":"Right Hip"},{"euler":{"heading":71.3125,"pitch":118.75,"roll":5.25},"location":"Right Knee"},{"euler":{"heading":48.6875,"pitch":-125.6875,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:27.643"} +{"sensors":[{"euler":{"heading":231.125,"pitch":160.125,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":79.0625,"pitch":110.1875,"roll":35.8125},"location":"Left Ankle"},{"euler":{"heading":102.8125,"pitch":-3.625,"roll":47.375},"location":"Right Ankle"},{"euler":{"heading":22.1875,"pitch":-156.1875,"roll":70.6875},"location":"Right Hip"},{"euler":{"heading":78.4375,"pitch":125.625,"roll":12.5},"location":"Right Knee"},{"euler":{"heading":52.3125,"pitch":-128.375,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:27.745"} +{"sensors":[{"euler":{"heading":288.125,"pitch":152.375,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":112.625,"roll":41.5},"location":"Left Ankle"},{"euler":{"heading":359.625,"pitch":-18.875,"roll":43.8125},"location":"Right Ankle"},{"euler":{"heading":33.8125,"pitch":-140.5625,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":96.125,"pitch":128.1875,"roll":22.4375},"location":"Right Knee"},{"euler":{"heading":55.625,"pitch":-130.125,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:27.846"} +{"sensors":[{"euler":{"heading":295.125,"pitch":146.625,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":94.5625,"pitch":114.0625,"roll":45.4375},"location":"Left Ankle"},{"euler":{"heading":99.0625,"pitch":-14.8125,"roll":48.875},"location":"Right Ankle"},{"euler":{"heading":43.375,"pitch":-131.875,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":97.6875,"pitch":133.0,"roll":19.3125},"location":"Right Knee"},{"euler":{"heading":60.3125,"pitch":-135.625,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:27.947"} +{"sensors":[{"euler":{"heading":300.5625,"pitch":142.0,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":114.8125,"roll":48.8125},"location":"Left Ankle"},{"euler":{"heading":115.75,"pitch":-0.25,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":47.4375,"pitch":-129.625,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":80.875,"pitch":134.0625,"roll":6.0625},"location":"Right Knee"},{"euler":{"heading":63.0,"pitch":-142.4375,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:28.48"} +{"sensors":[{"euler":{"heading":307.1875,"pitch":138.125,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":105.125,"pitch":117.75,"roll":52.25},"location":"Left Ankle"},{"euler":{"heading":139.3125,"pitch":28.6875,"roll":48.375},"location":"Right Ankle"},{"euler":{"heading":42.5,"pitch":-132.625,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":63.125,"pitch":135.0,"roll":-7.0625},"location":"Right Knee"},{"euler":{"heading":63.4375,"pitch":-148.4375,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:28.148"} +{"sensors":[{"euler":{"heading":313.4375,"pitch":134.875,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":109.75,"pitch":123.0,"roll":56.4375},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":41.3125,"roll":39.125},"location":"Right Ankle"},{"euler":{"heading":28.625,"pitch":-140.3125,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":49.3125,"pitch":134.5,"roll":-17.375},"location":"Right Knee"},{"euler":{"heading":64.4375,"pitch":-152.125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:28.249"} +{"sensors":[{"euler":{"heading":320.0625,"pitch":132.0625,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":116.1875,"pitch":134.3125,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":54.75,"pitch":37.6875,"roll":42.375},"location":"Right Ankle"},{"euler":{"heading":22.875,"pitch":-144.375,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":52.0625,"pitch":130.125,"roll":-15.4375},"location":"Right Knee"},{"euler":{"heading":67.5625,"pitch":-157.5,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:28.350"} +{"sensors":[{"euler":{"heading":334.75,"pitch":131.375,"roll":14.375},"location":"Left Knee"},{"euler":{"heading":129.375,"pitch":170.875,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":46.1875,"pitch":30.875,"roll":44.875},"location":"Right Ankle"},{"euler":{"heading":24.3125,"pitch":-144.4375,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":56.8125,"pitch":126.125,"roll":-12.0},"location":"Right Knee"},{"euler":{"heading":59.125,"pitch":-146.0,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:28.450"} +{"sensors":[{"euler":{"heading":345.375,"pitch":131.1875,"roll":10.1875},"location":"Left Knee"},{"euler":{"heading":135.1875,"pitch":-179.4375,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":131.0625,"pitch":27.8125,"roll":45.0},"location":"Right Ankle"},{"euler":{"heading":19.6875,"pitch":-145.6875,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":59.9375,"pitch":121.9375,"roll":-8.9375},"location":"Right Knee"},{"euler":{"heading":45.875,"pitch":-123.9375,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:28.551"} +{"sensors":[{"euler":{"heading":202.875,"pitch":140.375,"roll":19.3125},"location":"Left Knee"},{"euler":{"heading":117.1875,"pitch":143.4375,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":126.6875,"pitch":26.1875,"roll":45.25},"location":"Right Ankle"},{"euler":{"heading":20.5625,"pitch":-143.375,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":61.9375,"pitch":119.5625,"roll":-6.625},"location":"Right Knee"},{"euler":{"heading":40.0625,"pitch":-120.125,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:28.652"} +{"sensors":[{"euler":{"heading":216.6875,"pitch":156.4375,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":82.3125,"pitch":110.4375,"roll":43.9375},"location":"Left Ankle"},{"euler":{"heading":121.6875,"pitch":24.3125,"roll":45.9375},"location":"Right Ankle"},{"euler":{"heading":21.625,"pitch":-143.4375,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":65.1875,"pitch":118.8125,"roll":-3.3125},"location":"Right Knee"},{"euler":{"heading":38.8125,"pitch":-120.1875,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:28.752"} +{"sensors":[{"euler":{"heading":229.5,"pitch":168.8125,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":60.6875,"pitch":103.1875,"roll":25.1875},"location":"Left Ankle"},{"euler":{"heading":115.75,"pitch":18.9375,"roll":46.375},"location":"Right Ankle"},{"euler":{"heading":22.3125,"pitch":-147.0625,"roll":70.9375},"location":"Right Hip"},{"euler":{"heading":66.3125,"pitch":118.9375,"roll":0.375},"location":"Right Knee"},{"euler":{"heading":45.625,"pitch":-123.6875,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:28.853"} +{"sensors":[{"euler":{"heading":234.1875,"pitch":166.625,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":64.0625,"pitch":106.5,"roll":24.6875},"location":"Left Ankle"},{"euler":{"heading":109.4375,"pitch":8.75,"roll":46.125},"location":"Right Ankle"},{"euler":{"heading":23.25,"pitch":-154.5,"roll":71.125},"location":"Right Hip"},{"euler":{"heading":71.8125,"pitch":122.3125,"roll":6.25},"location":"Right Knee"},{"euler":{"heading":53.5625,"pitch":-128.875,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:28.954"} +{"sensors":[{"euler":{"heading":232.0625,"pitch":156.875,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":80.75,"pitch":112.1875,"roll":35.375},"location":"Left Ankle"},{"euler":{"heading":101.5625,"pitch":-7.0,"roll":46.25},"location":"Right Ankle"},{"euler":{"heading":26.1875,"pitch":-154.25,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":79.375,"pitch":129.125,"roll":13.0625},"location":"Right Knee"},{"euler":{"heading":54.8125,"pitch":-129.625,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:29.55"} +{"sensors":[{"euler":{"heading":295.1875,"pitch":148.9375,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":94.0,"pitch":114.9375,"roll":43.125},"location":"Left Ankle"},{"euler":{"heading":1.5625,"pitch":-21.625,"roll":43.5},"location":"Right Ankle"},{"euler":{"heading":36.8125,"pitch":-136.0,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":94.625,"pitch":130.0,"roll":21.3125},"location":"Right Knee"},{"euler":{"heading":59.8125,"pitch":-133.625,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:29.157"} +{"sensors":[{"euler":{"heading":298.9375,"pitch":144.625,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":115.4375,"roll":45.9375},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":-11.5625,"roll":63.5625},"location":"Right Ankle"},{"euler":{"heading":44.375,"pitch":-131.75,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":88.6875,"pitch":132.4375,"roll":13.75},"location":"Right Knee"},{"euler":{"heading":62.0625,"pitch":-140.0,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:29.257"} +{"sensors":[{"euler":{"heading":302.375,"pitch":141.1875,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":100.625,"pitch":116.625,"roll":49.0},"location":"Left Ankle"},{"euler":{"heading":121.75,"pitch":6.5,"roll":54.75},"location":"Right Ankle"},{"euler":{"heading":45.25,"pitch":-131.1875,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":73.1875,"pitch":134.6875,"roll":0.3125},"location":"Right Knee"},{"euler":{"heading":63.5,"pitch":-147.125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:29.358"} +{"sensors":[{"euler":{"heading":308.0,"pitch":137.875,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":105.25,"pitch":119.1875,"roll":52.875},"location":"Left Ankle"},{"euler":{"heading":142.0625,"pitch":34.875,"roll":44.9375},"location":"Right Ankle"},{"euler":{"heading":37.0625,"pitch":-136.25,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":52.8125,"pitch":134.75,"roll":-13.6875},"location":"Right Knee"},{"euler":{"heading":62.8125,"pitch":-151.375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:29.459"} +{"sensors":[{"euler":{"heading":313.1875,"pitch":134.875,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":110.75,"pitch":124.625,"roll":58.0},"location":"Left Ankle"},{"euler":{"heading":62.0625,"pitch":41.4375,"roll":38.6875},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-142.375,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":48.0625,"pitch":133.6875,"roll":-18.6875},"location":"Right Knee"},{"euler":{"heading":63.6875,"pitch":-156.5625,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:29.559"} +{"sensors":[{"euler":{"heading":322.25,"pitch":131.9375,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":118.1875,"pitch":141.4375,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":51.9375,"pitch":36.5625,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":23.0,"pitch":-144.375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":53.375,"pitch":127.375,"roll":-16.0625},"location":"Right Knee"},{"euler":{"heading":68.1875,"pitch":-158.75,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:29.660"} +{"sensors":[{"euler":{"heading":339.5625,"pitch":129.75,"roll":12.5},"location":"Left Knee"},{"euler":{"heading":137.5,"pitch":-176.625,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":44.9375,"pitch":31.0625,"roll":43.9375},"location":"Right Ankle"},{"euler":{"heading":21.1875,"pitch":-145.75,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":55.8125,"pitch":124.0,"roll":-12.375},"location":"Right Knee"},{"euler":{"heading":55.25,"pitch":-139.125,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:29.760"} +{"sensors":[{"euler":{"heading":340.8125,"pitch":134.25,"roll":11.375},"location":"Left Knee"},{"euler":{"heading":135.3125,"pitch":-174.9375,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":39.8125,"pitch":29.75,"roll":43.75},"location":"Right Ankle"},{"euler":{"heading":19.4375,"pitch":-144.9375,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":59.125,"pitch":120.0,"roll":-9.75},"location":"Right Knee"},{"euler":{"heading":46.125,"pitch":-123.875,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:29.861"} +{"sensors":[{"euler":{"heading":204.4375,"pitch":144.1875,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":105.625,"pitch":127.8125,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":34.0625,"pitch":27.375,"roll":44.6875},"location":"Right Ankle"},{"euler":{"heading":20.9375,"pitch":-142.5625,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":61.625,"pitch":118.4375,"roll":-6.8125},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-120.875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:29.962"} +{"sensors":[{"euler":{"heading":217.5,"pitch":159.4375,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":73.9375,"pitch":105.375,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":119.875,"pitch":24.1875,"roll":45.5},"location":"Right Ankle"},{"euler":{"heading":20.8125,"pitch":-144.8125,"roll":70.4375},"location":"Right Hip"},{"euler":{"heading":63.625,"pitch":117.625,"roll":-3.5625},"location":"Right Knee"},{"euler":{"heading":38.6875,"pitch":-120.1875,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:30.63"} +{"sensors":[{"euler":{"heading":230.3125,"pitch":169.4375,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":57.5,"pitch":100.4375,"roll":23.4375},"location":"Left Ankle"},{"euler":{"heading":114.8125,"pitch":17.8125,"roll":46.1875},"location":"Right Ankle"},{"euler":{"heading":22.5625,"pitch":-148.875,"roll":71.5},"location":"Right Hip"},{"euler":{"heading":66.875,"pitch":119.375,"roll":1.0},"location":"Right Knee"},{"euler":{"heading":46.3125,"pitch":-126.0625,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:30.163"} +{"sensors":[{"euler":{"heading":232.5625,"pitch":164.0,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":66.875,"pitch":107.0,"roll":27.5},"location":"Left Ankle"},{"euler":{"heading":108.625,"pitch":5.5,"roll":46.625},"location":"Right Ankle"},{"euler":{"heading":24.75,"pitch":-155.3125,"roll":70.125},"location":"Right Hip"},{"euler":{"heading":72.625,"pitch":124.3125,"roll":7.5},"location":"Right Knee"},{"euler":{"heading":54.5625,"pitch":-128.5625,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:30.264"} +{"sensors":[{"euler":{"heading":230.0,"pitch":156.0625,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":83.625,"pitch":111.875,"roll":38.5625},"location":"Left Ankle"},{"euler":{"heading":7.625,"pitch":-11.5,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":32.6875,"pitch":-144.6875,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":88.875,"pitch":130.0625,"roll":17.1875},"location":"Right Knee"},{"euler":{"heading":51.5625,"pitch":-128.9375,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:30.365"} +{"sensors":[{"euler":{"heading":292.25,"pitch":149.3125,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":92.9375,"pitch":112.3125,"roll":43.0625},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":-16.375,"roll":46.125},"location":"Right Ankle"},{"euler":{"heading":42.6875,"pitch":-131.0625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":93.5,"pitch":131.5,"roll":18.4375},"location":"Right Knee"},{"euler":{"heading":57.5625,"pitch":-134.4375,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:30.466"} +{"sensors":[{"euler":{"heading":298.625,"pitch":144.625,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":96.6875,"pitch":112.9375,"roll":45.4375},"location":"Left Ankle"},{"euler":{"heading":112.4375,"pitch":-3.0,"roll":49.4375},"location":"Right Ankle"},{"euler":{"heading":47.9375,"pitch":-128.75,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":80.75,"pitch":132.1875,"roll":7.5},"location":"Right Knee"},{"euler":{"heading":61.6875,"pitch":-140.625,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:30.566"} +{"sensors":[{"euler":{"heading":305.8125,"pitch":139.8125,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":100.9375,"pitch":115.0625,"roll":48.6875},"location":"Left Ankle"},{"euler":{"heading":132.6875,"pitch":19.5625,"roll":51.4375},"location":"Right Ankle"},{"euler":{"heading":46.625,"pitch":-131.375,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":65.4375,"pitch":135.1875,"roll":-5.1875},"location":"Right Knee"},{"euler":{"heading":63.5,"pitch":-147.0,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:30.667"} +{"sensors":[{"euler":{"heading":310.5,"pitch":136.625,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":105.625,"pitch":119.4375,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":62.3125,"pitch":38.875,"roll":39.6875},"location":"Right Ankle"},{"euler":{"heading":36.5625,"pitch":-137.375,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":45.875,"pitch":136.4375,"roll":-17.5625},"location":"Right Knee"},{"euler":{"heading":64.5,"pitch":-150.9375,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:30.768"} +{"sensors":[{"euler":{"heading":315.8125,"pitch":133.75,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":110.875,"pitch":125.9375,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":61.3125,"pitch":41.9375,"roll":38.6875},"location":"Right Ankle"},{"euler":{"heading":25.3125,"pitch":-142.9375,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":50.8125,"pitch":131.5625,"roll":-17.6875},"location":"Right Knee"},{"euler":{"heading":65.8125,"pitch":-155.9375,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:30.868"} +{"sensors":[{"euler":{"heading":327.5625,"pitch":130.5,"roll":19.9375},"location":"Left Knee"},{"euler":{"heading":118.4375,"pitch":146.625,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":50.875,"pitch":35.9375,"roll":41.375},"location":"Right Ankle"},{"euler":{"heading":23.5,"pitch":-144.0625,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":55.75,"pitch":125.5625,"roll":-14.375},"location":"Right Knee"},{"euler":{"heading":65.9375,"pitch":-152.25,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:30.969"} +{"sensors":[{"euler":{"heading":343.0,"pitch":129.6875,"roll":11.25},"location":"Left Knee"},{"euler":{"heading":135.0,"pitch":-176.5,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":46.3125,"pitch":31.6875,"roll":42.1875},"location":"Right Ankle"},{"euler":{"heading":18.4375,"pitch":-146.875,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":56.8125,"pitch":122.6875,"roll":-11.8125},"location":"Right Knee"},{"euler":{"heading":48.6875,"pitch":-129.5625,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:31.70"} +{"sensors":[{"euler":{"heading":336.625,"pitch":135.875,"roll":13.8125},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":166.3125,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":42.1875,"pitch":29.75,"roll":42.125},"location":"Right Ankle"},{"euler":{"heading":19.875,"pitch":-145.75,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":58.25,"pitch":120.6875,"roll":-9.4375},"location":"Right Knee"},{"euler":{"heading":41.75,"pitch":-122.0625,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:31.170"} +{"sensors":[{"euler":{"heading":209.5625,"pitch":148.25,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":97.125,"pitch":117.3125,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":38.0625,"pitch":27.75,"roll":43.5},"location":"Right Ankle"},{"euler":{"heading":21.75,"pitch":-144.625,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":61.4375,"pitch":120.0,"roll":-6.25},"location":"Right Knee"},{"euler":{"heading":39.875,"pitch":-119.8125,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:31.271"} +{"sensors":[{"euler":{"heading":225.125,"pitch":162.6875,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":69.625,"pitch":106.625,"roll":31.125},"location":"Left Ankle"},{"euler":{"heading":32.8125,"pitch":24.5625,"roll":44.6875},"location":"Right Ankle"},{"euler":{"heading":23.25,"pitch":-145.4375,"roll":70.25},"location":"Right Hip"},{"euler":{"heading":62.6875,"pitch":119.4375,"roll":-3.125},"location":"Right Knee"},{"euler":{"heading":42.3125,"pitch":-121.5,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:31.371"} +{"sensors":[{"euler":{"heading":233.125,"pitch":169.375,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":60.25,"pitch":103.875,"roll":23.3125},"location":"Left Ankle"},{"euler":{"heading":26.125,"pitch":17.5,"roll":44.75},"location":"Right Ankle"},{"euler":{"heading":25.125,"pitch":-149.1875,"roll":70.625},"location":"Right Hip"},{"euler":{"heading":67.8125,"pitch":121.25,"roll":2.1875},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-125.875,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:31.473"} +{"sensors":[{"euler":{"heading":233.25,"pitch":161.3125,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":78.8125,"pitch":109.4375,"roll":33.0},"location":"Left Ankle"},{"euler":{"heading":108.0,"pitch":4.0,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":25.875,"pitch":-153.875,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":75.1875,"pitch":125.25,"roll":9.5},"location":"Right Knee"},{"euler":{"heading":51.9375,"pitch":-127.1875,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:31.574"} +{"sensors":[{"euler":{"heading":285.3125,"pitch":153.5,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":86.125,"pitch":112.9375,"roll":40.0625},"location":"Left Ankle"},{"euler":{"heading":4.875,"pitch":-13.6875,"roll":43.375},"location":"Right Ankle"},{"euler":{"heading":35.625,"pitch":-141.9375,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":89.5625,"pitch":127.8125,"roll":18.8125},"location":"Right Knee"},{"euler":{"heading":54.4375,"pitch":-129.375,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:31.674"} +{"sensors":[{"euler":{"heading":292.5625,"pitch":147.875,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":93.625,"pitch":114.75,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":-18.5,"roll":46.375},"location":"Right Ankle"},{"euler":{"heading":46.0625,"pitch":-132.875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":94.1875,"pitch":133.375,"roll":18.0625},"location":"Right Knee"},{"euler":{"heading":59.3125,"pitch":-135.6875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:31.775"} +{"sensors":[{"euler":{"heading":295.3125,"pitch":144.25,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":95.4375,"pitch":114.3125,"roll":47.6875},"location":"Left Ankle"},{"euler":{"heading":118.8125,"pitch":4.5,"roll":49.9375},"location":"Right Ankle"},{"euler":{"heading":51.1875,"pitch":-130.0625,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":77.5,"pitch":134.4375,"roll":5.375},"location":"Right Knee"},{"euler":{"heading":61.5625,"pitch":-141.625,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:31.876"} +{"sensors":[{"euler":{"heading":299.8125,"pitch":140.75,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":99.5,"pitch":115.25,"roll":51.25},"location":"Left Ankle"},{"euler":{"heading":136.875,"pitch":26.9375,"roll":47.4375},"location":"Right Ankle"},{"euler":{"heading":45.3125,"pitch":-133.0,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":55.4375,"pitch":134.5625,"roll":-9.375},"location":"Right Knee"},{"euler":{"heading":62.625,"pitch":-147.4375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:31.976"} +{"sensors":[{"euler":{"heading":305.75,"pitch":137.875,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":104.8125,"pitch":118.375,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":65.0,"pitch":39.1875,"roll":36.8125},"location":"Right Ankle"},{"euler":{"heading":33.625,"pitch":-137.0625,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":40.875,"pitch":135.5,"roll":-19.25},"location":"Right Knee"},{"euler":{"heading":63.375,"pitch":-152.875,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:32.77"} +{"sensors":[{"euler":{"heading":313.1875,"pitch":135.0625,"roll":26.3125},"location":"Left Knee"},{"euler":{"heading":110.0,"pitch":126.875,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":60.0,"pitch":38.0,"roll":37.75},"location":"Right Ankle"},{"euler":{"heading":25.6875,"pitch":-139.75,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":43.625,"pitch":130.3125,"roll":-18.375},"location":"Right Knee"},{"euler":{"heading":67.125,"pitch":-159.6875,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:32.178"} +{"sensors":[{"euler":{"heading":327.3125,"pitch":132.625,"roll":16.9375},"location":"Left Knee"},{"euler":{"heading":123.0,"pitch":158.25,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":50.1875,"pitch":33.875,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":25.875,"pitch":-141.25,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":51.8125,"pitch":124.4375,"roll":-14.4375},"location":"Right Knee"},{"euler":{"heading":49.0625,"pitch":-149.0,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:32.280"} +{"sensors":[{"euler":{"heading":344.0,"pitch":130.8125,"roll":10.5625},"location":"Left Knee"},{"euler":{"heading":135.5625,"pitch":-176.3125,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":45.75,"pitch":30.0,"roll":41.125},"location":"Right Ankle"},{"euler":{"heading":22.125,"pitch":-143.125,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":52.875,"pitch":122.0,"roll":-11.4375},"location":"Right Knee"},{"euler":{"heading":52.0625,"pitch":-124.5625,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:32.381"} +{"sensors":[{"euler":{"heading":200.1875,"pitch":139.1875,"roll":17.9375},"location":"Left Knee"},{"euler":{"heading":122.375,"pitch":160.25,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":42.375,"pitch":26.8125,"roll":40.9375},"location":"Right Ankle"},{"euler":{"heading":23.0625,"pitch":-142.0625,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":53.0625,"pitch":120.875,"roll":-9.125},"location":"Right Knee"},{"euler":{"heading":44.4375,"pitch":-119.75,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:32.482"} +{"sensors":[{"euler":{"heading":214.125,"pitch":153.25,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":85.4375,"pitch":113.125,"roll":46.5625},"location":"Left Ankle"},{"euler":{"heading":39.5,"pitch":24.5625,"roll":42.625},"location":"Right Ankle"},{"euler":{"heading":24.25,"pitch":-143.25,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":55.375,"pitch":121.375,"roll":-6.1875},"location":"Right Knee"},{"euler":{"heading":41.625,"pitch":-117.8125,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:32.583"} +{"sensors":[{"euler":{"heading":227.25,"pitch":166.3125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":62.25,"pitch":103.25,"roll":27.8125},"location":"Left Ankle"},{"euler":{"heading":35.1875,"pitch":20.1875,"roll":43.125},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-147.125,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":58.9375,"pitch":122.4375,"roll":-2.1875},"location":"Right Knee"},{"euler":{"heading":44.625,"pitch":-119.3125,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:32.684"} +{"sensors":[{"euler":{"heading":233.3125,"pitch":168.375,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":61.3125,"pitch":103.75,"roll":24.25},"location":"Left Ankle"},{"euler":{"heading":29.0625,"pitch":12.375,"roll":43.4375},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-152.1875,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":63.125,"pitch":125.6875,"roll":2.5625},"location":"Right Knee"},{"euler":{"heading":51.25,"pitch":-124.6875,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:32.785"} +{"sensors":[{"euler":{"heading":232.8125,"pitch":158.3125,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":78.4375,"pitch":110.5625,"roll":34.4375},"location":"Left Ankle"},{"euler":{"heading":20.1875,"pitch":1.8125,"roll":44.1875},"location":"Right Ankle"},{"euler":{"heading":28.25,"pitch":-153.625,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":71.3125,"pitch":129.6875,"roll":9.4375},"location":"Right Knee"},{"euler":{"heading":53.875,"pitch":-126.3125,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:32.885"} +{"sensors":[{"euler":{"heading":288.875,"pitch":151.3125,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":85.1875,"pitch":111.1875,"roll":38.8125},"location":"Left Ankle"},{"euler":{"heading":10.0625,"pitch":-12.25,"roll":44.0},"location":"Right Ankle"},{"euler":{"heading":39.0,"pitch":-139.0625,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":89.3125,"pitch":130.8125,"roll":18.625},"location":"Right Knee"},{"euler":{"heading":58.5,"pitch":-131.0,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:32.986"} +{"sensors":[{"euler":{"heading":292.375,"pitch":147.0,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":88.375,"pitch":111.375,"roll":41.8125},"location":"Left Ankle"},{"euler":{"heading":105.0,"pitch":-11.75,"roll":47.25},"location":"Right Ankle"},{"euler":{"heading":46.0625,"pitch":-131.875,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":87.6875,"pitch":133.5,"roll":14.5},"location":"Right Knee"},{"euler":{"heading":61.5,"pitch":-137.4375,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:33.86"} +{"sensors":[{"euler":{"heading":298.5625,"pitch":142.5625,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":113.5,"roll":46.4375},"location":"Left Ankle"},{"euler":{"heading":119.5,"pitch":2.9375,"roll":50.9375},"location":"Right Ankle"},{"euler":{"heading":47.875,"pitch":-129.875,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":74.875,"pitch":134.0,"roll":2.75},"location":"Right Knee"},{"euler":{"heading":63.5625,"pitch":-144.0,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:33.187"} +{"sensors":[{"euler":{"heading":306.8125,"pitch":137.8125,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":116.8125,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":139.9375,"pitch":27.625,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":42.8125,"pitch":-131.875,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":56.6875,"pitch":135.8125,"roll":-10.0},"location":"Right Knee"},{"euler":{"heading":65.3125,"pitch":-149.25,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:33.292"} +{"sensors":[{"euler":{"heading":312.375,"pitch":134.625,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":107.25,"pitch":121.125,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":62.5,"pitch":38.375,"roll":38.4375},"location":"Right Ankle"},{"euler":{"heading":31.75,"pitch":-138.625,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":41.9375,"pitch":135.875,"roll":-19.25},"location":"Right Knee"},{"euler":{"heading":66.5625,"pitch":-154.0,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:33.393"} +{"sensors":[{"euler":{"heading":319.0,"pitch":132.3125,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":112.1875,"pitch":130.5,"roll":60.8125},"location":"Left Ankle"},{"euler":{"heading":53.125,"pitch":38.625,"roll":41.0},"location":"Right Ankle"},{"euler":{"heading":23.8125,"pitch":-141.875,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":50.9375,"pitch":128.0,"roll":-17.0625},"location":"Right Knee"},{"euler":{"heading":69.875,"pitch":-160.3125,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:33.494"} +{"sensors":[{"euler":{"heading":333.25,"pitch":131.25,"roll":14.9375},"location":"Left Knee"},{"euler":{"heading":129.25,"pitch":166.625,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":43.25,"pitch":33.3125,"roll":43.5625},"location":"Right Ankle"},{"euler":{"heading":24.375,"pitch":-141.1875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":55.5,"pitch":122.9375,"roll":-12.8125},"location":"Right Knee"},{"euler":{"heading":61.25,"pitch":-150.1875,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:33.594"} +{"sensors":[{"euler":{"heading":345.25,"pitch":130.5625,"roll":10.375},"location":"Left Knee"},{"euler":{"heading":132.5625,"pitch":175.0,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":38.875,"pitch":30.3125,"roll":43.25},"location":"Right Ankle"},{"euler":{"heading":21.4375,"pitch":-142.1875,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":57.5625,"pitch":119.8125,"roll":-10.0625},"location":"Right Knee"},{"euler":{"heading":53.0,"pitch":-129.3125,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:33.695"} +{"sensors":[{"euler":{"heading":200.8125,"pitch":139.625,"roll":19.3125},"location":"Left Knee"},{"euler":{"heading":117.75,"pitch":144.625,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":35.25,"pitch":28.375,"roll":43.25},"location":"Right Ankle"},{"euler":{"heading":22.375,"pitch":-140.5625,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":59.125,"pitch":118.375,"roll":-7.8125},"location":"Right Knee"},{"euler":{"heading":43.5625,"pitch":-122.3125,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:33.795"} +{"sensors":[{"euler":{"heading":216.125,"pitch":154.9375,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":84.875,"pitch":111.3125,"roll":45.1875},"location":"Left Ankle"},{"euler":{"heading":31.0625,"pitch":25.75,"roll":43.625},"location":"Right Ankle"},{"euler":{"heading":23.125,"pitch":-141.5,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":60.875,"pitch":117.0,"roll":-5.125},"location":"Right Knee"},{"euler":{"heading":40.1875,"pitch":-119.6875,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:33.898"} +{"sensors":[{"euler":{"heading":230.0,"pitch":166.6875,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":61.4375,"pitch":103.75,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":26.3125,"pitch":21.25,"roll":44.625},"location":"Right Ankle"},{"euler":{"heading":23.0,"pitch":-144.6875,"roll":70.5625},"location":"Right Hip"},{"euler":{"heading":64.1875,"pitch":117.3125,"roll":-0.5625},"location":"Right Knee"},{"euler":{"heading":45.125,"pitch":-122.3125,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:33.999"} +{"sensors":[{"euler":{"heading":233.125,"pitch":166.9375,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":62.1875,"pitch":104.25,"roll":24.4375},"location":"Left Ankle"},{"euler":{"heading":110.125,"pitch":10.625,"roll":45.6875},"location":"Right Ankle"},{"euler":{"heading":23.875,"pitch":-151.5625,"roll":71.5625},"location":"Right Hip"},{"euler":{"heading":68.5625,"pitch":121.3125,"roll":4.9375},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-127.5625,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:34.100"} +{"sensors":[{"euler":{"heading":231.9375,"pitch":156.125,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":81.0625,"pitch":110.375,"roll":36.25},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":-7.1875,"roll":45.0625},"location":"Right Ankle"},{"euler":{"heading":28.1875,"pitch":-147.25,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":80.1875,"pitch":128.125,"roll":14.1875},"location":"Right Knee"},{"euler":{"heading":53.125,"pitch":-128.4375,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:34.201"} +{"sensors":[{"euler":{"heading":291.5625,"pitch":149.5625,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":88.0,"pitch":111.6875,"roll":40.875},"location":"Left Ankle"},{"euler":{"heading":1.875,"pitch":-21.4375,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":41.375,"pitch":-131.5625,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":94.125,"pitch":131.125,"roll":20.4375},"location":"Right Knee"},{"euler":{"heading":57.125,"pitch":-133.125,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:34.302"} +{"sensors":[{"euler":{"heading":294.0625,"pitch":145.5,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":91.625,"pitch":112.75,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":-9.75,"roll":46.9375},"location":"Right Ankle"},{"euler":{"heading":48.625,"pitch":-129.4375,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":86.1875,"pitch":131.125,"roll":12.25},"location":"Right Knee"},{"euler":{"heading":59.8125,"pitch":-138.9375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:34.403"} +{"sensors":[{"euler":{"heading":298.375,"pitch":141.875,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":95.5625,"pitch":113.25,"roll":47.5625},"location":"Left Ankle"},{"euler":{"heading":123.625,"pitch":9.75,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":50.25,"pitch":-130.25,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":68.1875,"pitch":134.375,"roll":-1.75},"location":"Right Knee"},{"euler":{"heading":61.5625,"pitch":-144.5625,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:34.504"} +{"sensors":[{"euler":{"heading":305.1875,"pitch":138.25,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":100.4375,"pitch":115.4375,"roll":51.0},"location":"Left Ankle"},{"euler":{"heading":140.875,"pitch":30.3125,"roll":45.625},"location":"Right Ankle"},{"euler":{"heading":43.625,"pitch":-133.4375,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":53.3125,"pitch":135.625,"roll":-13.1875},"location":"Right Knee"},{"euler":{"heading":63.25,"pitch":-150.6875,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:34.604"} +{"sensors":[{"euler":{"heading":311.125,"pitch":135.25,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":119.875,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":62.375,"pitch":37.9375,"roll":37.8125},"location":"Right Ankle"},{"euler":{"heading":29.9375,"pitch":-139.75,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":42.25,"pitch":135.6875,"roll":-19.9375},"location":"Right Knee"},{"euler":{"heading":64.4375,"pitch":-154.875,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:34.704"} +{"sensors":[{"euler":{"heading":319.25,"pitch":132.125,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":112.125,"pitch":133.3125,"roll":62.6875},"location":"Left Ankle"},{"euler":{"heading":52.75,"pitch":34.5,"roll":41.0625},"location":"Right Ankle"},{"euler":{"heading":25.3125,"pitch":-143.1875,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":48.4375,"pitch":129.25,"roll":-17.625},"location":"Right Knee"},{"euler":{"heading":67.9375,"pitch":-158.3125,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:34.805"} +{"sensors":[{"euler":{"heading":338.625,"pitch":130.3125,"roll":13.0},"location":"Left Knee"},{"euler":{"heading":134.25,"pitch":177.375,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":45.5,"pitch":30.0625,"roll":42.5},"location":"Right Ankle"},{"euler":{"heading":24.875,"pitch":-142.8125,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":52.1875,"pitch":124.75,"roll":-13.9375},"location":"Right Knee"},{"euler":{"heading":55.5,"pitch":-141.8125,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:34.906"} +{"sensors":[{"euler":{"heading":344.1875,"pitch":132.875,"roll":10.8125},"location":"Left Knee"},{"euler":{"heading":133.625,"pitch":-178.0625,"roll":71.1875},"location":"Left Ankle"},{"euler":{"heading":41.5,"pitch":26.9375,"roll":42.5},"location":"Right Ankle"},{"euler":{"heading":23.75,"pitch":-142.3125,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":55.0,"pitch":122.125,"roll":-11.0},"location":"Right Knee"},{"euler":{"heading":45.25,"pitch":-124.75,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:35.7"} +{"sensors":[{"euler":{"heading":205.8125,"pitch":142.6875,"roll":22.1875},"location":"Left Knee"},{"euler":{"heading":110.3125,"pitch":133.1875,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":38.625,"pitch":24.0,"roll":42.5},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-141.875,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":55.125,"pitch":121.0625,"roll":-8.9375},"location":"Right Knee"},{"euler":{"heading":40.4375,"pitch":-122.0625,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:35.107"} +{"sensors":[{"euler":{"heading":219.0625,"pitch":158.125,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":77.375,"pitch":108.125,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":35.1875,"pitch":21.125,"roll":43.1875},"location":"Right Ankle"},{"euler":{"heading":24.25,"pitch":-144.125,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":57.9375,"pitch":120.8125,"roll":-5.5},"location":"Right Knee"},{"euler":{"heading":39.5625,"pitch":-120.625,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:35.208"} +{"sensors":[{"euler":{"heading":230.125,"pitch":169.25,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":57.1875,"pitch":100.4375,"roll":23.375},"location":"Left Ankle"},{"euler":{"heading":29.25,"pitch":16.375,"roll":44.4375},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-145.5625,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":62.5,"pitch":121.4375,"roll":-0.375},"location":"Right Knee"},{"euler":{"heading":46.3125,"pitch":-125.875,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:35.308"} +{"sensors":[{"euler":{"heading":233.8125,"pitch":164.875,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":65.0,"pitch":107.4375,"roll":25.6875},"location":"Left Ankle"},{"euler":{"heading":112.875,"pitch":7.625,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":25.6875,"pitch":-153.875,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":66.5625,"pitch":124.4375,"roll":4.5},"location":"Right Knee"},{"euler":{"heading":53.9375,"pitch":-128.3125,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:35.409"} +{"sensors":[{"euler":{"heading":231.1875,"pitch":155.75,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":81.5,"pitch":112.0,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":13.875,"pitch":-5.5625,"roll":44.125},"location":"Right Ankle"},{"euler":{"heading":30.875,"pitch":-149.4375,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":80.1875,"pitch":129.0,"roll":13.8125},"location":"Right Knee"},{"euler":{"heading":54.5,"pitch":-130.0625,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:35.510"} +{"sensors":[{"euler":{"heading":294.5625,"pitch":148.75,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":90.4375,"pitch":113.5,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":4.0,"pitch":-20.125,"roll":41.9375},"location":"Right Ankle"},{"euler":{"heading":41.625,"pitch":-133.4375,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":90.375,"pitch":133.25,"roll":18.0},"location":"Right Knee"},{"euler":{"heading":60.5625,"pitch":-137.125,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:35.611"} +{"sensors":[{"euler":{"heading":298.875,"pitch":144.125,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":95.0,"pitch":113.9375,"roll":44.25},"location":"Left Ankle"},{"euler":{"heading":106.0,"pitch":-8.6875,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":47.6875,"pitch":-130.0,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":80.75,"pitch":131.9375,"roll":10.125},"location":"Right Knee"},{"euler":{"heading":63.5625,"pitch":-143.5,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:35.712"} +{"sensors":[{"euler":{"heading":305.375,"pitch":139.75,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":100.9375,"pitch":116.125,"roll":47.6875},"location":"Left Ankle"},{"euler":{"heading":124.8125,"pitch":10.75,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":47.25,"pitch":-130.1875,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":64.5625,"pitch":134.4375,"roll":-4.1875},"location":"Right Knee"},{"euler":{"heading":65.125,"pitch":-149.6875,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:35.813"} +{"sensors":[{"euler":{"heading":312.0625,"pitch":135.9375,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":105.625,"pitch":119.5625,"roll":51.375},"location":"Left Ankle"},{"euler":{"heading":53.875,"pitch":31.5625,"roll":43.5},"location":"Right Ankle"},{"euler":{"heading":39.5,"pitch":-136.3125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":44.125,"pitch":136.1875,"roll":-17.125},"location":"Right Knee"},{"euler":{"heading":66.125,"pitch":-154.75,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:35.915"} +{"sensors":[{"euler":{"heading":317.5,"pitch":132.6875,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":110.8125,"pitch":125.4375,"roll":56.4375},"location":"Left Ankle"},{"euler":{"heading":61.0,"pitch":37.25,"roll":38.1875},"location":"Right Ankle"},{"euler":{"heading":28.875,"pitch":-140.8125,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":40.4375,"pitch":134.25,"roll":-20.4375},"location":"Right Knee"},{"euler":{"heading":68.25,"pitch":-160.3125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:36.16"} +{"sensors":[{"euler":{"heading":328.1875,"pitch":129.5625,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":116.4375,"pitch":144.4375,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":50.4375,"pitch":31.1875,"roll":41.25},"location":"Right Ankle"},{"euler":{"heading":26.5,"pitch":-143.4375,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":48.8125,"pitch":127.8125,"roll":-17.125},"location":"Right Knee"},{"euler":{"heading":70.375,"pitch":-157.1875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:36.117"} +{"sensors":[{"euler":{"heading":342.875,"pitch":129.125,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":-177.5625,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":45.6875,"pitch":27.0,"roll":42.0625},"location":"Right Ankle"},{"euler":{"heading":25.5625,"pitch":-143.6875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":49.6875,"pitch":124.75,"roll":-14.25},"location":"Right Knee"},{"euler":{"heading":54.6875,"pitch":-134.625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:36.217"} +{"sensors":[{"euler":{"heading":339.5625,"pitch":134.5,"roll":12.75},"location":"Left Knee"},{"euler":{"heading":112.6875,"pitch":166.25,"roll":72.0},"location":"Left Ankle"},{"euler":{"heading":42.1875,"pitch":24.3125,"roll":41.875},"location":"Right Ankle"},{"euler":{"heading":24.8125,"pitch":-143.625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":52.1875,"pitch":123.0625,"roll":-11.3125},"location":"Right Knee"},{"euler":{"heading":45.1875,"pitch":-124.625,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:36.318"} +{"sensors":[{"euler":{"heading":207.8125,"pitch":146.125,"roll":26.0625},"location":"Left Knee"},{"euler":{"heading":90.8125,"pitch":114.6875,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":38.4375,"pitch":21.8125,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":25.6875,"pitch":-143.1875,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":54.5625,"pitch":122.3125,"roll":-8.6875},"location":"Right Knee"},{"euler":{"heading":41.5,"pitch":-121.4375,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:36.419"} +{"sensors":[{"euler":{"heading":222.625,"pitch":160.8125,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":66.0625,"pitch":103.5625,"roll":31.75},"location":"Left Ankle"},{"euler":{"heading":33.625,"pitch":18.125,"roll":43.5},"location":"Right Ankle"},{"euler":{"heading":26.0,"pitch":-145.9375,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":56.5,"pitch":121.75,"roll":-5.375},"location":"Right Knee"},{"euler":{"heading":41.8125,"pitch":-121.625,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:36.519"} +{"sensors":[{"euler":{"heading":232.1875,"pitch":168.625,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":56.125,"pitch":100.25,"roll":21.0},"location":"Left Ankle"},{"euler":{"heading":27.5,"pitch":11.875,"roll":44.125},"location":"Right Ankle"},{"euler":{"heading":27.8125,"pitch":-149.0,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":59.8125,"pitch":123.625,"roll":-0.8125},"location":"Right Knee"},{"euler":{"heading":49.25,"pitch":-126.875,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:36.619"} +{"sensors":[{"euler":{"heading":232.0625,"pitch":160.75,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":72.75,"pitch":105.75,"roll":30.125},"location":"Left Ankle"},{"euler":{"heading":18.3125,"pitch":-0.5625,"roll":43.6875},"location":"Right Ankle"},{"euler":{"heading":29.0625,"pitch":-153.9375,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":68.6875,"pitch":127.3125,"roll":7.0625},"location":"Right Knee"},{"euler":{"heading":54.125,"pitch":-129.5,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:36.720"} +{"sensors":[{"euler":{"heading":283.3125,"pitch":153.125,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":81.375,"pitch":108.8125,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":7.5625,"pitch":-18.75,"roll":42.3125},"location":"Right Ankle"},{"euler":{"heading":40.9375,"pitch":-141.9375,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":85.125,"pitch":131.625,"roll":16.3125},"location":"Right Knee"},{"euler":{"heading":54.625,"pitch":-130.0625,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:36.821"} +{"sensors":[{"euler":{"heading":289.75,"pitch":148.125,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":85.4375,"pitch":109.5,"roll":41.5625},"location":"Left Ankle"},{"euler":{"heading":11.5625,"pitch":-13.3125,"roll":44.1875},"location":"Right Ankle"},{"euler":{"heading":50.375,"pitch":-130.0625,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":85.4375,"pitch":132.3125,"roll":13.3125},"location":"Right Knee"},{"euler":{"heading":59.375,"pitch":-136.5625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:36.921"} +{"sensors":[{"euler":{"heading":293.0,"pitch":144.6875,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":86.9375,"pitch":109.1875,"roll":43.25},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":5.1875,"roll":49.4375},"location":"Right Ankle"},{"euler":{"heading":51.0,"pitch":-129.5625,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":70.375,"pitch":133.0,"roll":1.0625},"location":"Right Knee"},{"euler":{"heading":60.75,"pitch":-142.5,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:37.22"} +{"sensors":[{"euler":{"heading":298.75,"pitch":141.1875,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":91.3125,"pitch":110.6875,"roll":46.9375},"location":"Left Ankle"},{"euler":{"heading":137.375,"pitch":28.875,"roll":48.25},"location":"Right Ankle"},{"euler":{"heading":47.4375,"pitch":-130.0625,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":57.3125,"pitch":133.875,"roll":-10.4375},"location":"Right Knee"},{"euler":{"heading":61.9375,"pitch":-147.625,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:37.124"} +{"sensors":[{"euler":{"heading":306.625,"pitch":137.1875,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":98.0625,"pitch":113.9375,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":62.0625,"pitch":37.9375,"roll":38.4375},"location":"Right Ankle"},{"euler":{"heading":36.1875,"pitch":-136.75,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":38.9375,"pitch":136.125,"roll":-21.0},"location":"Right Knee"},{"euler":{"heading":64.5625,"pitch":-152.0625,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:37.225"} +{"sensors":[{"euler":{"heading":314.125,"pitch":133.9375,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":103.875,"pitch":120.9375,"roll":57.4375},"location":"Left Ankle"},{"euler":{"heading":58.0625,"pitch":33.9375,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":29.875,"pitch":-140.9375,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":40.5,"pitch":133.3125,"roll":-20.0625},"location":"Right Knee"},{"euler":{"heading":67.625,"pitch":-157.875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:37.326"} +{"sensors":[{"euler":{"heading":327.3125,"pitch":130.9375,"roll":18.3125},"location":"Left Knee"},{"euler":{"heading":115.75,"pitch":146.5,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":49.3125,"pitch":29.125,"roll":41.9375},"location":"Right Ankle"},{"euler":{"heading":29.25,"pitch":-142.125,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":48.1875,"pitch":127.4375,"roll":-16.1875},"location":"Right Knee"},{"euler":{"heading":64.1875,"pitch":-150.5,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:37.426"} +{"sensors":[{"euler":{"heading":345.4375,"pitch":128.9375,"roll":10.6875},"location":"Left Knee"},{"euler":{"heading":128.8125,"pitch":172.25,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":44.4375,"pitch":26.75,"roll":41.75},"location":"Right Ankle"},{"euler":{"heading":24.1875,"pitch":-143.875,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":49.5625,"pitch":123.9375,"roll":-14.1875},"location":"Right Knee"},{"euler":{"heading":50.1875,"pitch":-127.5,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:37.527"} +{"sensors":[{"euler":{"heading":332.3125,"pitch":136.5625,"roll":17.4375},"location":"Left Knee"},{"euler":{"heading":118.5625,"pitch":137.375,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":40.0625,"pitch":24.625,"roll":41.875},"location":"Right Ankle"},{"euler":{"heading":24.5625,"pitch":-142.3125,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":52.25,"pitch":121.25,"roll":-11.5},"location":"Right Knee"},{"euler":{"heading":42.6875,"pitch":-122.3125,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:37.628"} +{"sensors":[{"euler":{"heading":213.8125,"pitch":151.25,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":86.5,"pitch":109.9375,"roll":47.6875},"location":"Left Ankle"},{"euler":{"heading":36.125,"pitch":22.625,"roll":42.625},"location":"Right Ankle"},{"euler":{"heading":24.125,"pitch":-142.5,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":53.1875,"pitch":119.625,"roll":-8.9375},"location":"Right Knee"},{"euler":{"heading":39.5,"pitch":-119.3125,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:37.728"} +{"sensors":[{"euler":{"heading":225.6875,"pitch":163.6875,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":61.75,"pitch":101.25,"roll":27.6875},"location":"Left Ankle"},{"euler":{"heading":30.8125,"pitch":19.1875,"roll":43.625},"location":"Right Ankle"},{"euler":{"heading":24.9375,"pitch":-143.5625,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":57.25,"pitch":119.3125,"roll":-4.6875},"location":"Right Knee"},{"euler":{"heading":44.3125,"pitch":-123.1875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:37.829"} +{"sensors":[{"euler":{"heading":229.875,"pitch":165.3125,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":59.5,"pitch":103.125,"roll":25.0625},"location":"Left Ankle"},{"euler":{"heading":114.8125,"pitch":12.0625,"roll":45.3125},"location":"Right Ankle"},{"euler":{"heading":25.0,"pitch":-150.25,"roll":70.1875},"location":"Right Hip"},{"euler":{"heading":61.125,"pitch":121.4375,"roll":0.5625},"location":"Right Knee"},{"euler":{"heading":50.25,"pitch":-127.0625,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:37.930"} +{"sensors":[{"euler":{"heading":283.5625,"pitch":155.75,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":76.375,"pitch":108.4375,"roll":34.125},"location":"Left Ankle"},{"euler":{"heading":16.0625,"pitch":-3.875,"roll":44.1875},"location":"Right Ankle"},{"euler":{"heading":29.9375,"pitch":-149.75,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":69.8125,"pitch":128.75,"roll":8.8125},"location":"Right Knee"},{"euler":{"heading":53.9375,"pitch":-128.375,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:38.31"} +{"sensors":[{"euler":{"heading":294.9375,"pitch":147.875,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":90.0,"pitch":112.75,"roll":42.5},"location":"Left Ankle"},{"euler":{"heading":5.6875,"pitch":-16.875,"roll":42.75},"location":"Right Ankle"},{"euler":{"heading":43.0,"pitch":-133.5625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":87.0625,"pitch":130.8125,"roll":17.0625},"location":"Right Knee"},{"euler":{"heading":58.5625,"pitch":-132.125,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:38.132"} +{"sensors":[{"euler":{"heading":301.1875,"pitch":142.625,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":99.5,"pitch":114.625,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":104.375,"pitch":-10.4375,"roll":46.5},"location":"Right Ankle"},{"euler":{"heading":48.75,"pitch":-129.75,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":81.1875,"pitch":132.375,"roll":10.625},"location":"Right Knee"},{"euler":{"heading":62.25,"pitch":-139.3125,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:38.233"} +{"sensors":[{"euler":{"heading":305.1875,"pitch":138.9375,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":102.4375,"pitch":115.5625,"roll":50.875},"location":"Left Ankle"},{"euler":{"heading":123.4375,"pitch":6.5625,"roll":50.125},"location":"Right Ankle"},{"euler":{"heading":49.125,"pitch":-129.8125,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":250.625,"pitch":135.6875,"roll":-2.5625},"location":"Right Knee"},{"euler":{"heading":64.125,"pitch":-147.25,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:38.334"} +{"sensors":[{"euler":{"heading":311.25,"pitch":135.1875,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":107.0,"pitch":118.625,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":52.75,"pitch":30.25,"roll":44.5},"location":"Right Ankle"},{"euler":{"heading":41.625,"pitch":-132.875,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":269.75,"pitch":136.75,"roll":-13.9375},"location":"Right Knee"},{"euler":{"heading":64.8125,"pitch":-152.375,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:38.435"} +{"sensors":[{"euler":{"heading":316.9375,"pitch":132.4375,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":112.1875,"pitch":124.25,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":36.8125,"roll":37.625},"location":"Right Ankle"},{"euler":{"heading":29.375,"pitch":-140.5,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":36.4375,"pitch":137.375,"roll":-21.5625},"location":"Right Knee"},{"euler":{"heading":66.1875,"pitch":-156.875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:38.535"} +{"sensors":[{"euler":{"heading":327.75,"pitch":129.25,"roll":21.0},"location":"Left Knee"},{"euler":{"heading":118.4375,"pitch":142.125,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":53.4375,"pitch":32.375,"roll":41.125},"location":"Right Ankle"},{"euler":{"heading":26.5625,"pitch":-142.8125,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":44.0625,"pitch":130.0625,"roll":-18.5625},"location":"Right Knee"},{"euler":{"heading":69.6875,"pitch":-157.875,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:38.636"} +{"sensors":[{"euler":{"heading":341.25,"pitch":129.6875,"roll":11.125},"location":"Left Knee"},{"euler":{"heading":128.6875,"pitch":176.125,"roll":68.5625},"location":"Left Ankle"},{"euler":{"heading":46.8125,"pitch":27.125,"roll":42.375},"location":"Right Ankle"},{"euler":{"heading":25.625,"pitch":-143.5625,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":46.125,"pitch":126.9375,"roll":-15.6875},"location":"Right Knee"},{"euler":{"heading":53.5625,"pitch":-139.1875,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:38.737"} +{"sensors":[{"euler":{"heading":341.375,"pitch":133.75,"roll":11.625},"location":"Left Knee"},{"euler":{"heading":129.625,"pitch":164.9375,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":42.3125,"pitch":25.1875,"roll":41.9375},"location":"Right Ankle"},{"euler":{"heading":23.8125,"pitch":-143.1875,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":49.9375,"pitch":123.1875,"roll":-12.8125},"location":"Right Knee"},{"euler":{"heading":43.8125,"pitch":-123.5,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:38.840"} +{"sensors":[{"euler":{"heading":206.1875,"pitch":144.75,"roll":24.25},"location":"Left Knee"},{"euler":{"heading":92.625,"pitch":117.5625,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":38.125,"pitch":22.5625,"roll":42.625},"location":"Right Ankle"},{"euler":{"heading":25.1875,"pitch":-141.5625,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":50.5625,"pitch":121.5,"roll":-10.4375},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-121.4375,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:38.942"} +{"sensors":[{"euler":{"heading":221.4375,"pitch":157.3125,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":68.375,"pitch":107.0625,"roll":32.8125},"location":"Left Ankle"},{"euler":{"heading":33.9375,"pitch":19.25,"roll":43.4375},"location":"Right Ankle"},{"euler":{"heading":26.25,"pitch":-143.375,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":53.0625,"pitch":121.5,"roll":-7.0625},"location":"Right Knee"},{"euler":{"heading":41.75,"pitch":-121.125,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:39.42"} +{"sensors":[{"euler":{"heading":232.9375,"pitch":165.4375,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":56.875,"pitch":104.25,"roll":20.9375},"location":"Left Ankle"},{"euler":{"heading":28.0,"pitch":13.625,"roll":44.4375},"location":"Right Ankle"},{"euler":{"heading":27.6875,"pitch":-148.0625,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":56.625,"pitch":122.625,"roll":-2.5625},"location":"Right Knee"},{"euler":{"heading":49.0625,"pitch":-125.625,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:39.144"} +{"sensors":[{"euler":{"heading":235.0,"pitch":160.0,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":66.5625,"pitch":109.6875,"roll":25.9375},"location":"Left Ankle"},{"euler":{"heading":111.9375,"pitch":5.375,"roll":45.0625},"location":"Right Ankle"},{"euler":{"heading":26.9375,"pitch":-156.9375,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":62.1875,"pitch":125.125,"roll":3.1875},"location":"Right Knee"},{"euler":{"heading":56.5,"pitch":-127.9375,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:39.244"} +{"sensors":[{"euler":{"heading":294.375,"pitch":151.5,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":82.0,"pitch":114.125,"roll":36.3125},"location":"Left Ankle"},{"euler":{"heading":10.0,"pitch":-11.5,"roll":44.9375},"location":"Right Ankle"},{"euler":{"heading":32.8125,"pitch":-153.4375,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":74.4375,"pitch":130.625,"roll":12.5},"location":"Right Knee"},{"euler":{"heading":56.3125,"pitch":-128.25,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:39.345"} +{"sensors":[{"euler":{"heading":301.75,"pitch":145.4375,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":91.125,"pitch":115.125,"roll":41.1875},"location":"Left Ankle"},{"euler":{"heading":6.25,"pitch":-17.9375,"roll":43.6875},"location":"Right Ankle"},{"euler":{"heading":44.25,"pitch":-134.0,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":88.1875,"pitch":133.75,"roll":16.1875},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-133.1875,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:39.447"} +{"sensors":[{"euler":{"heading":304.375,"pitch":141.4375,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":95.5625,"pitch":115.3125,"roll":44.1875},"location":"Left Ankle"},{"euler":{"heading":110.3125,"pitch":-3.875,"roll":47.5625},"location":"Right Ankle"},{"euler":{"heading":49.3125,"pitch":-129.75,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":75.125,"pitch":132.625,"roll":6.3125},"location":"Right Knee"},{"euler":{"heading":62.0,"pitch":-139.4375,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:39.548"} +{"sensors":[{"euler":{"heading":309.3125,"pitch":137.5625,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":99.4375,"pitch":116.125,"roll":46.6875},"location":"Left Ankle"},{"euler":{"heading":128.625,"pitch":12.8125,"roll":50.5},"location":"Right Ankle"},{"euler":{"heading":49.1875,"pitch":-130.5,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":257.8125,"pitch":137.25,"roll":-7.4375},"location":"Right Knee"},{"euler":{"heading":64.125,"pitch":-147.875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:39.649"} +{"sensors":[{"euler":{"heading":316.0625,"pitch":133.75,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":104.375,"pitch":119.25,"roll":50.4375},"location":"Left Ankle"},{"euler":{"heading":60.0625,"pitch":32.9375,"roll":40.875},"location":"Right Ankle"},{"euler":{"heading":38.875,"pitch":-136.3125,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":273.9375,"pitch":139.1875,"roll":-19.375},"location":"Right Knee"},{"euler":{"heading":64.3125,"pitch":-151.9375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:39.749"} +{"sensors":[{"euler":{"heading":321.0625,"pitch":131.0,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":110.0625,"pitch":125.0625,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":61.25,"pitch":35.75,"roll":38.25},"location":"Right Ankle"},{"euler":{"heading":28.125,"pitch":-141.5,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":37.6875,"pitch":135.5625,"roll":-21.4375},"location":"Right Knee"},{"euler":{"heading":67.25,"pitch":-158.625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:39.852"} +{"sensors":[{"euler":{"heading":329.0,"pitch":129.4375,"roll":20.25},"location":"Left Knee"},{"euler":{"heading":115.625,"pitch":142.875,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":51.625,"pitch":31.125,"roll":40.75},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-143.625,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":44.75,"pitch":128.875,"roll":-18.5625},"location":"Right Knee"},{"euler":{"heading":67.125,"pitch":-154.5625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:39.952"} +{"sensors":[{"euler":{"heading":346.4375,"pitch":128.375,"roll":10.25},"location":"Left Knee"},{"euler":{"heading":138.875,"pitch":-175.0625,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":46.5,"pitch":28.0625,"roll":41.5},"location":"Right Ankle"},{"euler":{"heading":24.0,"pitch":-145.0625,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":45.5625,"pitch":125.5,"roll":-16.375},"location":"Right Knee"},{"euler":{"heading":50.9375,"pitch":-131.25,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:40.53"} +{"sensors":[{"euler":{"heading":346.5625,"pitch":131.3125,"roll":11.25},"location":"Left Knee"},{"euler":{"heading":133.3125,"pitch":166.75,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":41.3125,"pitch":25.9375,"roll":41.0625},"location":"Right Ankle"},{"euler":{"heading":24.3125,"pitch":-143.5,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":49.125,"pitch":121.875,"roll":-13.5625},"location":"Right Knee"},{"euler":{"heading":42.6875,"pitch":-121.5625,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:40.154"} +{"sensors":[{"euler":{"heading":209.1875,"pitch":145.75,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":93.0625,"pitch":118.4375,"roll":52.875},"location":"Left Ankle"},{"euler":{"heading":37.375,"pitch":23.9375,"roll":42.125},"location":"Right Ankle"},{"euler":{"heading":25.8125,"pitch":-142.6875,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":51.5625,"pitch":121.0625,"roll":-10.625},"location":"Right Knee"},{"euler":{"heading":40.125,"pitch":-119.5625,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:40.254"} +{"sensors":[{"euler":{"heading":238.8125,"pitch":159.6875,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":66.3125,"pitch":106.375,"roll":31.0},"location":"Left Ankle"},{"euler":{"heading":33.0,"pitch":20.4375,"roll":42.8125},"location":"Right Ankle"},{"euler":{"heading":26.0625,"pitch":-145.5625,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":53.125,"pitch":120.0625,"roll":-7.375},"location":"Right Knee"},{"euler":{"heading":42.375,"pitch":-120.875,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:40.355"} +{"sensors":[{"euler":{"heading":234.4375,"pitch":166.0,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":56.6875,"pitch":104.1875,"roll":20.0},"location":"Left Ankle"},{"euler":{"heading":27.625,"pitch":13.125,"roll":43.5625},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-152.5,"roll":71.375},"location":"Right Hip"},{"euler":{"heading":59.9375,"pitch":122.875,"roll":-0.5},"location":"Right Knee"},{"euler":{"heading":51.0625,"pitch":-127.375,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:40.456"} +{"sensors":[{"euler":{"heading":236.5625,"pitch":158.0625,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":71.6875,"pitch":110.8125,"roll":28.1875},"location":"Left Ankle"},{"euler":{"heading":20.6875,"pitch":2.125,"roll":44.625},"location":"Right Ankle"},{"euler":{"heading":28.5,"pitch":-157.5625,"roll":70.0},"location":"Right Hip"},{"euler":{"heading":66.0,"pitch":126.75,"roll":5.625},"location":"Right Knee"},{"euler":{"heading":56.8125,"pitch":-130.0,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:40.557"} +{"sensors":[{"euler":{"heading":294.625,"pitch":150.0,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":83.9375,"pitch":113.75,"roll":36.625},"location":"Left Ankle"},{"euler":{"heading":6.0,"pitch":-13.25,"roll":43.1875},"location":"Right Ankle"},{"euler":{"heading":40.0,"pitch":-145.0,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":85.5,"pitch":131.5625,"roll":15.5625},"location":"Right Knee"},{"euler":{"heading":57.625,"pitch":-131.25,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:40.658"} +{"sensors":[{"euler":{"heading":301.625,"pitch":144.1875,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":90.875,"pitch":115.1875,"roll":41.4375},"location":"Left Ankle"},{"euler":{"heading":100.6875,"pitch":-10.5625,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":48.3125,"pitch":-131.6875,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":88.3125,"pitch":132.5625,"roll":14.375},"location":"Right Knee"},{"euler":{"heading":61.3125,"pitch":-136.1875,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:40.758"} +{"sensors":[{"euler":{"heading":304.8125,"pitch":140.5,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":95.25,"pitch":115.375,"roll":44.1875},"location":"Left Ankle"},{"euler":{"heading":120.8125,"pitch":5.6875,"roll":49.625},"location":"Right Ankle"},{"euler":{"heading":50.625,"pitch":-129.9375,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":246.6875,"pitch":135.1875,"roll":1.0625},"location":"Right Knee"},{"euler":{"heading":62.625,"pitch":-141.0625,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:40.859"} +{"sensors":[{"euler":{"heading":309.6875,"pitch":137.25,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":97.9375,"pitch":117.0,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":140.75,"pitch":24.5,"roll":46.9375},"location":"Right Ankle"},{"euler":{"heading":46.5,"pitch":-132.1875,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":263.625,"pitch":138.3125,"roll":-11.8125},"location":"Right Knee"},{"euler":{"heading":62.5625,"pitch":-146.25,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:40.959"} +{"sensors":[{"euler":{"heading":316.75,"pitch":133.5,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":104.9375,"pitch":121.1875,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":66.0625,"pitch":35.375,"roll":37.1875},"location":"Right Ankle"},{"euler":{"heading":37.25,"pitch":-138.3125,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":273.125,"pitch":138.875,"roll":-20.0625},"location":"Right Knee"},{"euler":{"heading":64.1875,"pitch":-150.0,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:41.60"} +{"sensors":[{"euler":{"heading":322.9375,"pitch":131.1875,"roll":25.0625},"location":"Left Knee"},{"euler":{"heading":111.375,"pitch":129.3125,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":59.875,"pitch":33.8125,"roll":39.1875},"location":"Right Ankle"},{"euler":{"heading":29.75,"pitch":-142.5,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":41.375,"pitch":131.875,"roll":-18.6875},"location":"Right Knee"},{"euler":{"heading":67.0625,"pitch":-155.25,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:41.161"} +{"sensors":[{"euler":{"heading":336.1875,"pitch":130.4375,"roll":14.8125},"location":"Left Knee"},{"euler":{"heading":122.6875,"pitch":173.1875,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":49.8125,"pitch":29.0,"roll":41.375},"location":"Right Ankle"},{"euler":{"heading":29.3125,"pitch":-142.75,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":47.75,"pitch":126.625,"roll":-15.0625},"location":"Right Knee"},{"euler":{"heading":57.9375,"pitch":-144.5625,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:41.262"} +{"sensors":[{"euler":{"heading":347.1875,"pitch":130.125,"roll":10.0625},"location":"Left Knee"},{"euler":{"heading":133.5,"pitch":173.9375,"roll":69.4375},"location":"Left Ankle"},{"euler":{"heading":44.0,"pitch":26.375,"roll":41.75},"location":"Right Ankle"},{"euler":{"heading":26.1875,"pitch":-142.4375,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":51.125,"pitch":122.75,"roll":-12.125},"location":"Right Knee"},{"euler":{"heading":47.3125,"pitch":-124.0625,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:41.363"} +{"sensors":[{"euler":{"heading":201.875,"pitch":140.25,"roll":19.1875},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":132.75,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":39.75,"pitch":23.875,"roll":42.1875},"location":"Right Ankle"},{"euler":{"heading":26.125,"pitch":-142.1875,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":54.5,"pitch":121.25,"roll":-9.0625},"location":"Right Knee"},{"euler":{"heading":39.25,"pitch":-121.3125,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:41.464"} +{"sensors":[{"euler":{"heading":216.3125,"pitch":155.0625,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":78.6875,"pitch":107.125,"roll":39.25},"location":"Left Ankle"},{"euler":{"heading":35.9375,"pitch":20.75,"roll":43.125},"location":"Right Ankle"},{"euler":{"heading":27.5625,"pitch":-143.9375,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":56.6875,"pitch":121.8125,"roll":-5.9375},"location":"Right Knee"},{"euler":{"heading":39.25,"pitch":-119.5,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:41.564"} +{"sensors":[{"euler":{"heading":231.125,"pitch":167.5625,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":55.875,"pitch":101.1875,"roll":20.5},"location":"Left Ankle"},{"euler":{"heading":30.8125,"pitch":15.75,"roll":43.6875},"location":"Right Ankle"},{"euler":{"heading":29.1875,"pitch":-146.125,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":59.0,"pitch":122.25,"roll":-2.25},"location":"Right Knee"},{"euler":{"heading":46.875,"pitch":-123.875,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:41.664"} +{"sensors":[{"euler":{"heading":232.875,"pitch":164.75,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":59.3125,"pitch":103.5625,"roll":23.0625},"location":"Left Ankle"},{"euler":{"heading":113.875,"pitch":6.375,"roll":45.3125},"location":"Right Ankle"},{"euler":{"heading":28.875,"pitch":-153.8125,"roll":70.5625},"location":"Right Hip"},{"euler":{"heading":64.75,"pitch":124.9375,"roll":3.75},"location":"Right Knee"},{"euler":{"heading":52.125,"pitch":-126.8125,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:41.766"} +{"sensors":[{"euler":{"heading":230.875,"pitch":156.0625,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":74.875,"pitch":107.8125,"roll":33.3125},"location":"Left Ankle"},{"euler":{"heading":15.4375,"pitch":-7.875,"roll":43.375},"location":"Right Ankle"},{"euler":{"heading":31.5,"pitch":-152.5,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":73.9375,"pitch":130.625,"roll":10.9375},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-128.625,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:41.867"} +{"sensors":[{"euler":{"heading":294.3125,"pitch":148.9375,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":110.5,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":10.375,"pitch":-16.1875,"roll":42.625},"location":"Right Ankle"},{"euler":{"heading":44.75,"pitch":-135.0625,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":88.8125,"pitch":134.8125,"roll":16.125},"location":"Right Knee"},{"euler":{"heading":58.5,"pitch":-134.8125,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:41.969"} +{"sensors":[{"euler":{"heading":300.125,"pitch":143.8125,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":112.875,"roll":42.8125},"location":"Left Ankle"},{"euler":{"heading":115.125,"pitch":-4.625,"roll":46.5625},"location":"Right Ankle"},{"euler":{"heading":51.5,"pitch":-130.5625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":76.125,"pitch":135.0,"roll":7.25},"location":"Right Knee"},{"euler":{"heading":60.9375,"pitch":-138.625,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:42.70"} +{"sensors":[{"euler":{"heading":305.625,"pitch":139.75,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":96.375,"pitch":113.875,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":132.25,"pitch":10.0625,"roll":49.875},"location":"Right Ankle"},{"euler":{"heading":50.8125,"pitch":-130.5625,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":253.875,"pitch":138.375,"roll":-5.25},"location":"Right Knee"},{"euler":{"heading":63.75,"pitch":-144.625,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:42.171"} +{"sensors":[{"euler":{"heading":310.25,"pitch":136.625,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":100.4375,"pitch":115.8125,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":60.25,"pitch":27.625,"roll":42.25},"location":"Right Ankle"},{"euler":{"heading":45.3125,"pitch":-136.1875,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":267.75,"pitch":140.8125,"roll":-16.9375},"location":"Right Knee"},{"euler":{"heading":65.3125,"pitch":-149.75,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:42.271"} +{"sensors":[{"euler":{"heading":314.6875,"pitch":134.875,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":104.125,"pitch":120.25,"roll":56.1875},"location":"Left Ankle"},{"euler":{"heading":67.5,"pitch":33.5625,"roll":37.25},"location":"Right Ankle"},{"euler":{"heading":35.375,"pitch":-140.9375,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":273.8125,"pitch":140.4375,"roll":-21.0625},"location":"Right Knee"},{"euler":{"heading":64.625,"pitch":-153.375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:42.372"} +{"sensors":[{"euler":{"heading":324.5625,"pitch":132.125,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":111.4375,"pitch":135.125,"roll":63.0625},"location":"Left Ankle"},{"euler":{"heading":56.625,"pitch":33.0,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":28.8125,"pitch":-144.5,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":41.75,"pitch":131.875,"roll":-18.875},"location":"Right Knee"},{"euler":{"heading":66.8125,"pitch":-155.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:42.473"} +{"sensors":[{"euler":{"heading":344.75,"pitch":128.625,"roll":11.25},"location":"Left Knee"},{"euler":{"heading":133.875,"pitch":177.875,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":49.6875,"pitch":27.625,"roll":41.25},"location":"Right Ankle"},{"euler":{"heading":28.9375,"pitch":-144.875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":45.625,"pitch":128.0,"roll":-15.5},"location":"Right Knee"},{"euler":{"heading":56.0,"pitch":-137.9375,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:42.574"} +{"sensors":[{"euler":{"heading":346.6875,"pitch":132.5625,"roll":10.625},"location":"Left Knee"},{"euler":{"heading":133.0625,"pitch":174.125,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":46.3125,"pitch":24.4375,"roll":40.9375},"location":"Right Ankle"},{"euler":{"heading":27.5625,"pitch":-145.125,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":48.6875,"pitch":125.8125,"roll":-12.6875},"location":"Right Knee"},{"euler":{"heading":48.5,"pitch":-124.5,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:42.674"} +{"sensors":[{"euler":{"heading":206.875,"pitch":142.5625,"roll":22.625},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":123.4375,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":42.3125,"pitch":22.25,"roll":41.625},"location":"Right Ankle"},{"euler":{"heading":28.125,"pitch":-144.75,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":50.75,"pitch":124.875,"roll":-10.0625},"location":"Right Knee"},{"euler":{"heading":44.25,"pitch":-123.3125,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:42.775"} +{"sensors":[{"euler":{"heading":220.625,"pitch":156.1875,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":72.75,"pitch":107.125,"roll":33.875},"location":"Left Ankle"},{"euler":{"heading":37.5,"pitch":20.375,"roll":42.4375},"location":"Right Ankle"},{"euler":{"heading":26.625,"pitch":-146.5625,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":54.9375,"pitch":122.6875,"roll":-6.6875},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-120.6875,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:42.875"} +{"sensors":[{"euler":{"heading":232.125,"pitch":166.9375,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":55.4375,"pitch":102.5625,"roll":20.625},"location":"Left Ankle"},{"euler":{"heading":32.125,"pitch":15.4375,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-151.4375,"roll":70.5625},"location":"Right Hip"},{"euler":{"heading":56.8125,"pitch":123.0625,"roll":-2.75},"location":"Right Knee"},{"euler":{"heading":46.9375,"pitch":-125.25,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:42.976"} +{"sensors":[{"euler":{"heading":233.25,"pitch":162.0625,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":62.0625,"pitch":105.6875,"roll":24.5},"location":"Left Ankle"},{"euler":{"heading":115.125,"pitch":5.1875,"roll":45.0},"location":"Right Ankle"},{"euler":{"heading":27.0625,"pitch":-159.6875,"roll":71.0},"location":"Right Hip"},{"euler":{"heading":62.4375,"pitch":125.9375,"roll":3.0},"location":"Right Knee"},{"euler":{"heading":51.9375,"pitch":-128.75,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:43.77"} +{"sensors":[{"euler":{"heading":290.6875,"pitch":153.4375,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":76.875,"pitch":109.9375,"roll":34.3125},"location":"Left Ankle"},{"euler":{"heading":15.25,"pitch":-9.0625,"roll":43.375},"location":"Right Ankle"},{"euler":{"heading":35.8125,"pitch":-150.1875,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":75.25,"pitch":131.625,"roll":11.375},"location":"Right Knee"},{"euler":{"heading":55.5625,"pitch":-131.5,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:43.178"} +{"sensors":[{"euler":{"heading":297.875,"pitch":147.625,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":82.0625,"pitch":110.8125,"roll":38.1875},"location":"Left Ankle"},{"euler":{"heading":11.0,"pitch":-17.75,"roll":43.875},"location":"Right Ankle"},{"euler":{"heading":48.0625,"pitch":-134.375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":84.5625,"pitch":135.5625,"roll":14.125},"location":"Right Knee"},{"euler":{"heading":59.25,"pitch":-136.625,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:43.278"} +{"sensors":[{"euler":{"heading":301.1875,"pitch":143.8125,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":87.6875,"pitch":111.3125,"roll":41.875},"location":"Left Ankle"},{"euler":{"heading":115.5625,"pitch":-2.25,"roll":48.0},"location":"Right Ankle"},{"euler":{"heading":50.6875,"pitch":-130.875,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":73.3125,"pitch":134.625,"roll":4.9375},"location":"Right Knee"},{"euler":{"heading":60.8125,"pitch":-141.0,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:43.379"} +{"sensors":[{"euler":{"heading":304.25,"pitch":140.4375,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":111.1875,"roll":45.3125},"location":"Left Ankle"},{"euler":{"heading":131.625,"pitch":14.0625,"roll":49.8125},"location":"Right Ankle"},{"euler":{"heading":49.0625,"pitch":-131.4375,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":257.75,"pitch":137.375,"roll":-6.625},"location":"Right Knee"},{"euler":{"heading":63.0,"pitch":-148.6875,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:43.480"} +{"sensors":[{"euler":{"heading":310.3125,"pitch":136.875,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":113.5,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":59.25,"pitch":30.9375,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":43.0625,"pitch":-136.0625,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":271.1875,"pitch":139.5625,"roll":-17.8125},"location":"Right Knee"},{"euler":{"heading":64.875,"pitch":-152.5625,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:43.580"} +{"sensors":[{"euler":{"heading":316.25,"pitch":134.8125,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":101.375,"pitch":119.625,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":64.4375,"pitch":35.625,"roll":37.3125},"location":"Right Ankle"},{"euler":{"heading":32.9375,"pitch":-140.5,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":37.9375,"pitch":137.25,"roll":-20.5625},"location":"Right Knee"},{"euler":{"heading":65.0625,"pitch":-156.0,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:43.682"} +{"sensors":[{"euler":{"heading":327.125,"pitch":132.0,"roll":19.6875},"location":"Left Knee"},{"euler":{"heading":109.5,"pitch":135.6875,"roll":62.4375},"location":"Left Ankle"},{"euler":{"heading":53.5,"pitch":31.8125,"roll":40.625},"location":"Right Ankle"},{"euler":{"heading":29.9375,"pitch":-143.5,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":46.4375,"pitch":129.625,"roll":-17.5625},"location":"Right Knee"},{"euler":{"heading":67.0,"pitch":-155.875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:43.783"} +{"sensors":[{"euler":{"heading":345.875,"pitch":128.375,"roll":10.75},"location":"Left Knee"},{"euler":{"heading":129.25,"pitch":172.6875,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":47.375,"pitch":27.375,"roll":41.5},"location":"Right Ankle"},{"euler":{"heading":28.9375,"pitch":-144.1875,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":47.375,"pitch":126.6875,"roll":-14.5625},"location":"Right Knee"},{"euler":{"heading":53.1875,"pitch":-134.8125,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:43.883"} +{"sensors":[{"euler":{"heading":343.3125,"pitch":133.5,"roll":12.25},"location":"Left Knee"},{"euler":{"heading":126.3125,"pitch":157.8125,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":43.5625,"pitch":23.75,"roll":41.375},"location":"Right Ankle"},{"euler":{"heading":28.875,"pitch":-144.6875,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":50.375,"pitch":125.3125,"roll":-11.375},"location":"Right Knee"},{"euler":{"heading":46.0625,"pitch":-125.5,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:43.984"} +{"sensors":[{"euler":{"heading":223.5625,"pitch":146.1875,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":94.4375,"pitch":114.1875,"roll":56.4375},"location":"Left Ankle"},{"euler":{"heading":39.625,"pitch":21.25,"roll":42.5625},"location":"Right Ankle"},{"euler":{"heading":29.75,"pitch":-145.125,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":52.0,"pitch":125.25,"roll":-9.0},"location":"Right Knee"},{"euler":{"heading":42.1875,"pitch":-122.0625,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:44.85"} +{"sensors":[{"euler":{"heading":223.8125,"pitch":159.1875,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":68.4375,"pitch":103.0625,"roll":32.75},"location":"Left Ankle"},{"euler":{"heading":35.0,"pitch":18.125,"roll":42.6875},"location":"Right Ankle"},{"euler":{"heading":30.0625,"pitch":-147.625,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":54.375,"pitch":123.625,"roll":-5.75},"location":"Right Knee"},{"euler":{"heading":42.1875,"pitch":-121.875,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:44.186"} +{"sensors":[{"euler":{"heading":233.0625,"pitch":165.5625,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":56.125,"pitch":102.1875,"roll":21.5},"location":"Left Ankle"},{"euler":{"heading":29.9375,"pitch":11.75,"roll":42.75},"location":"Right Ankle"},{"euler":{"heading":31.125,"pitch":-151.375,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":54.5625,"pitch":125.4375,"roll":-2.5},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-125.5625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:44.287"} +{"sensors":[{"euler":{"heading":233.4375,"pitch":158.4375,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":65.375,"pitch":106.8125,"roll":28.5},"location":"Left Ankle"},{"euler":{"heading":23.25,"pitch":2.6875,"roll":43.875},"location":"Right Ankle"},{"euler":{"heading":31.5,"pitch":-153.8125,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":62.8125,"pitch":127.25,"roll":4.0},"location":"Right Knee"},{"euler":{"heading":52.3125,"pitch":-128.9375,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:44.388"} +{"sensors":[{"euler":{"heading":291.625,"pitch":151.125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":78.4375,"pitch":108.875,"roll":35.8125},"location":"Left Ankle"},{"euler":{"heading":10.0625,"pitch":-12.4375,"roll":42.5625},"location":"Right Ankle"},{"euler":{"heading":42.1875,"pitch":-143.625,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":78.625,"pitch":130.25,"roll":12.9375},"location":"Right Knee"},{"euler":{"heading":54.125,"pitch":-132.5,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:44.489"} +{"sensors":[{"euler":{"heading":296.8125,"pitch":146.25,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":86.375,"pitch":109.75,"roll":40.875},"location":"Left Ankle"},{"euler":{"heading":103.6875,"pitch":-13.5,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":48.8125,"pitch":-132.5,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":81.8125,"pitch":133.1875,"roll":12.3125},"location":"Right Knee"},{"euler":{"heading":57.0,"pitch":-137.375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:44.590"} +{"sensors":[{"euler":{"heading":301.25,"pitch":142.75,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":89.25,"pitch":109.0625,"roll":43.25},"location":"Left Ankle"},{"euler":{"heading":122.875,"pitch":7.1875,"roll":32.0},"location":"Right Ankle"},{"euler":{"heading":50.6875,"pitch":-129.9375,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":68.0,"pitch":133.75,"roll":1.1875},"location":"Right Knee"},{"euler":{"heading":59.25,"pitch":-142.25,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:44.690"} +{"sensors":[{"euler":{"heading":305.375,"pitch":139.3125,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":91.875,"pitch":109.75,"roll":46.0},"location":"Left Ankle"},{"euler":{"heading":53.3125,"pitch":24.75,"roll":43.3125},"location":"Right Ankle"},{"euler":{"heading":48.0,"pitch":-132.5,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":263.5,"pitch":137.625,"roll":-12.875},"location":"Right Knee"},{"euler":{"heading":61.875,"pitch":-149.3125,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:44.792"} +{"sensors":[{"euler":{"heading":307.5,"pitch":137.375,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":113.5625,"roll":50.375},"location":"Left Ankle"},{"euler":{"heading":66.8125,"pitch":34.0625,"roll":36.875},"location":"Right Ankle"},{"euler":{"heading":38.625,"pitch":-137.4375,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":274.5625,"pitch":140.5625,"roll":-20.9375},"location":"Right Knee"},{"euler":{"heading":61.125,"pitch":-151.1875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:44.893"} +{"sensors":[{"euler":{"heading":314.5,"pitch":134.5625,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":101.4375,"pitch":121.25,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":61.4375,"pitch":33.5625,"roll":37.9375},"location":"Right Ankle"},{"euler":{"heading":32.75,"pitch":-139.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":40.375,"pitch":134.3125,"roll":-19.25},"location":"Right Knee"},{"euler":{"heading":61.625,"pitch":-153.25,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:44.995"} +{"sensors":[{"euler":{"heading":331.375,"pitch":131.8125,"roll":16.875},"location":"Left Knee"},{"euler":{"heading":111.75,"pitch":143.9375,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":52.0625,"pitch":29.1875,"roll":37.6875},"location":"Right Ankle"},{"euler":{"heading":32.0,"pitch":-140.8125,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":43.4375,"pitch":129.0625,"roll":-17.3125},"location":"Right Knee"},{"euler":{"heading":59.6875,"pitch":-146.25,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:45.96"} +{"sensors":[{"euler":{"heading":342.3125,"pitch":132.6875,"roll":11.6875},"location":"Left Knee"},{"euler":{"heading":122.1875,"pitch":163.375,"roll":68.4375},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":26.75,"roll":38.0625},"location":"Right Ankle"},{"euler":{"heading":27.8125,"pitch":-143.0,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":45.875,"pitch":125.75,"roll":-14.1875},"location":"Right Knee"},{"euler":{"heading":44.875,"pitch":-127.6875,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:45.197"} +{"sensors":[{"euler":{"heading":203.6875,"pitch":140.25,"roll":20.1875},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":130.125,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":45.875,"pitch":24.375,"roll":40.0625},"location":"Right Ankle"},{"euler":{"heading":29.625,"pitch":-143.4375,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":45.9375,"pitch":124.6875,"roll":-12.0625},"location":"Right Knee"},{"euler":{"heading":38.4375,"pitch":-124.625,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:45.298"} +{"sensors":[{"euler":{"heading":217.3125,"pitch":155.125,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":78.75,"pitch":107.25,"roll":41.4375},"location":"Left Ankle"},{"euler":{"heading":40.5,"pitch":21.375,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-143.4375,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":48.6875,"pitch":123.875,"roll":-9.0},"location":"Right Knee"},{"euler":{"heading":37.25,"pitch":-121.1875,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:45.399"} +{"sensors":[{"euler":{"heading":230.1875,"pitch":168.875,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":55.75,"pitch":100.3125,"roll":22.9375},"location":"Left Ankle"},{"euler":{"heading":34.125,"pitch":16.6875,"roll":40.625},"location":"Right Ankle"},{"euler":{"heading":31.5625,"pitch":-145.3125,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":54.25,"pitch":123.3125,"roll":-3.9375},"location":"Right Knee"},{"euler":{"heading":40.625,"pitch":-123.3125,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:45.503"} +{"sensors":[{"euler":{"heading":233.3125,"pitch":167.5625,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":56.1875,"pitch":101.3125,"roll":21.8125},"location":"Left Ankle"},{"euler":{"heading":26.75,"pitch":9.8125,"roll":41.25},"location":"Right Ankle"},{"euler":{"heading":31.5,"pitch":-152.25,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":58.3125,"pitch":124.4375,"roll":0.4375},"location":"Right Knee"},{"euler":{"heading":47.625,"pitch":-126.0,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:45.604"} +{"sensors":[{"euler":{"heading":281.1875,"pitch":156.6875,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":71.25,"pitch":107.0625,"roll":31.0},"location":"Left Ankle"},{"euler":{"heading":18.75,"pitch":-3.625,"roll":42.6875},"location":"Right Ankle"},{"euler":{"heading":35.125,"pitch":-151.1875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":66.9375,"pitch":128.8125,"roll":7.6875},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-127.8125,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:45.705"} +{"sensors":[{"euler":{"heading":291.9375,"pitch":149.9375,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":80.5625,"pitch":109.125,"roll":37.3125},"location":"Left Ankle"},{"euler":{"heading":9.5625,"pitch":-18.8125,"roll":41.875},"location":"Right Ankle"},{"euler":{"heading":47.4375,"pitch":-137.0,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":82.3125,"pitch":133.75,"roll":14.6875},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-132.6875,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:45.805"} +{"sensors":[{"euler":{"heading":295.5625,"pitch":146.0625,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":90.6875,"pitch":111.125,"roll":45.25},"location":"Left Ankle"},{"euler":{"heading":110.5625,"pitch":-6.75,"roll":45.125},"location":"Right Ankle"},{"euler":{"heading":52.1875,"pitch":-131.3125,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":76.625,"pitch":134.5,"roll":8.5},"location":"Right Knee"},{"euler":{"heading":56.125,"pitch":-136.8125,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:45.906"} +{"sensors":[{"euler":{"heading":300.0625,"pitch":142.1875,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":92.375,"pitch":110.6875,"roll":45.75},"location":"Left Ankle"},{"euler":{"heading":130.125,"pitch":11.9375,"roll":48.25},"location":"Right Ankle"},{"euler":{"heading":50.0625,"pitch":-131.125,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":251.625,"pitch":136.1875,"roll":-4.625},"location":"Right Knee"},{"euler":{"heading":59.5625,"pitch":-144.5625,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:46.7"} +{"sensors":[{"euler":{"heading":307.125,"pitch":138.0,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":113.4375,"roll":49.4375},"location":"Left Ankle"},{"euler":{"heading":59.0,"pitch":30.0625,"roll":41.0},"location":"Right Ankle"},{"euler":{"heading":43.6875,"pitch":-134.6875,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":269.8125,"pitch":140.0625,"roll":-17.0},"location":"Right Knee"},{"euler":{"heading":62.1875,"pitch":-150.0,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:46.109"} +{"sensors":[{"euler":{"heading":314.9375,"pitch":134.125,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":103.25,"pitch":119.5625,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":34.0,"roll":37.0625},"location":"Right Ankle"},{"euler":{"heading":35.6875,"pitch":-138.9375,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":36.8125,"pitch":138.3125,"roll":-19.375},"location":"Right Knee"},{"euler":{"heading":64.875,"pitch":-154.125,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:46.211"} +{"sensors":[{"euler":{"heading":323.8125,"pitch":131.375,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":108.75,"pitch":131.4375,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":53.375,"pitch":31.625,"roll":39.375},"location":"Right Ankle"},{"euler":{"heading":31.0,"pitch":-141.75,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":45.5,"pitch":129.0625,"roll":-17.375},"location":"Right Knee"},{"euler":{"heading":65.625,"pitch":-153.375,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:46.311"} +{"sensors":[{"euler":{"heading":338.6875,"pitch":129.8125,"roll":14.875},"location":"Left Knee"},{"euler":{"heading":120.5625,"pitch":158.75,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":49.1875,"pitch":28.5,"roll":39.0},"location":"Right Ankle"},{"euler":{"heading":28.5,"pitch":-143.125,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":46.5625,"pitch":125.25,"roll":-15.0625},"location":"Right Knee"},{"euler":{"heading":47.5625,"pitch":-132.4375,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:46.413"} +{"sensors":[{"euler":{"heading":334.4375,"pitch":135.9375,"roll":16.5},"location":"Left Knee"},{"euler":{"heading":112.5,"pitch":135.25,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":45.9375,"pitch":25.9375,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":26.9375,"pitch":-144.875,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":46.5,"pitch":123.4375,"roll":-12.8125},"location":"Right Knee"},{"euler":{"heading":40.75,"pitch":-124.8125,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:46.514"} +{"sensors":[{"euler":{"heading":213.125,"pitch":147.875,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":86.375,"pitch":110.8125,"roll":48.6875},"location":"Left Ankle"},{"euler":{"heading":42.8125,"pitch":23.0,"roll":40.5},"location":"Right Ankle"},{"euler":{"heading":28.9375,"pitch":-146.625,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":47.5625,"pitch":123.75,"roll":-9.8125},"location":"Right Knee"},{"euler":{"heading":39.75,"pitch":-122.0,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:46.614"} +{"sensors":[{"euler":{"heading":228.25,"pitch":162.4375,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":61.375,"pitch":103.5,"roll":27.125},"location":"Left Ankle"},{"euler":{"heading":38.3125,"pitch":20.75,"roll":41.25},"location":"Right Ankle"},{"euler":{"heading":29.8125,"pitch":-147.5,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":50.5,"pitch":122.8125,"roll":-6.625},"location":"Right Knee"},{"euler":{"heading":41.5,"pitch":-122.6875,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:46.715"} +{"sensors":[{"euler":{"heading":235.125,"pitch":169.3125,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":53.8125,"pitch":100.0625,"roll":19.0},"location":"Left Ankle"},{"euler":{"heading":30.9375,"pitch":14.5,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":30.0625,"pitch":-152.4375,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":54.5625,"pitch":123.6875,"roll":-1.875},"location":"Right Knee"},{"euler":{"heading":46.75,"pitch":-125.9375,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:46.816"} +{"sensors":[{"euler":{"heading":233.375,"pitch":160.875,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":66.1875,"pitch":104.5625,"roll":28.25},"location":"Left Ankle"},{"euler":{"heading":21.9375,"pitch":2.3125,"roll":42.625},"location":"Right Ankle"},{"euler":{"heading":31.4375,"pitch":-154.4375,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":62.3125,"pitch":127.5625,"roll":5.5},"location":"Right Knee"},{"euler":{"heading":49.8125,"pitch":-128.1875,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:46.917"} +{"sensors":[{"euler":{"heading":284.3125,"pitch":153.4375,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":75.0,"pitch":106.1875,"roll":34.875},"location":"Left Ankle"},{"euler":{"heading":8.6875,"pitch":-14.25,"roll":41.9375},"location":"Right Ankle"},{"euler":{"heading":41.125,"pitch":-140.625,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":79.1875,"pitch":129.125,"roll":14.4375},"location":"Right Knee"},{"euler":{"heading":52.125,"pitch":-131.1875,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:47.18"} +{"sensors":[{"euler":{"heading":289.25,"pitch":148.8125,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":107.0625,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":105.8125,"pitch":-10.4375,"roll":45.1875},"location":"Right Ankle"},{"euler":{"heading":47.3125,"pitch":-133.0625,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":80.4375,"pitch":132.75,"roll":11.6875},"location":"Right Knee"},{"euler":{"heading":54.1875,"pitch":-138.125,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:47.119"} +{"sensors":[{"euler":{"heading":296.4375,"pitch":144.0,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":108.125,"roll":43.125},"location":"Left Ankle"},{"euler":{"heading":125.5,"pitch":9.1875,"roll":47.5},"location":"Right Ankle"},{"euler":{"heading":47.5,"pitch":-132.0625,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":62.0,"pitch":133.3125,"roll":-1.25},"location":"Right Knee"},{"euler":{"heading":57.5,"pitch":-143.875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:47.220"} +{"sensors":[{"euler":{"heading":304.6875,"pitch":139.25,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":92.75,"pitch":110.5,"roll":46.5},"location":"Left Ankle"},{"euler":{"heading":53.0625,"pitch":26.5625,"roll":42.9375},"location":"Right Ankle"},{"euler":{"heading":46.25,"pitch":-132.8125,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":263.75,"pitch":136.8125,"roll":-12.9375},"location":"Right Knee"},{"euler":{"heading":61.125,"pitch":-149.875,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:47.320"} +{"sensors":[{"euler":{"heading":311.5625,"pitch":135.6875,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":98.125,"pitch":114.5,"roll":51.5},"location":"Left Ankle"},{"euler":{"heading":64.375,"pitch":35.0625,"roll":36.375},"location":"Right Ankle"},{"euler":{"heading":36.25,"pitch":-137.8125,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":274.0625,"pitch":139.0,"roll":-19.8125},"location":"Right Knee"},{"euler":{"heading":62.6875,"pitch":-154.1875,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:47.421"} +{"sensors":[{"euler":{"heading":319.9375,"pitch":132.5625,"roll":25.6875},"location":"Left Knee"},{"euler":{"heading":104.5625,"pitch":123.5625,"roll":57.6875},"location":"Left Ankle"},{"euler":{"heading":55.9375,"pitch":33.5,"roll":38.875},"location":"Right Ankle"},{"euler":{"heading":28.375,"pitch":-142.0625,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":42.6875,"pitch":132.75,"roll":-18.6875},"location":"Right Knee"},{"euler":{"heading":66.125,"pitch":-156.8125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:47.528"} +{"sensors":[{"euler":{"heading":336.125,"pitch":131.125,"roll":14.875},"location":"Left Knee"},{"euler":{"heading":118.875,"pitch":157.0,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":49.0,"pitch":28.625,"roll":39.6875},"location":"Right Ankle"},{"euler":{"heading":29.5,"pitch":-141.75,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":46.9375,"pitch":127.875,"roll":-15.8125},"location":"Right Knee"},{"euler":{"heading":51.875,"pitch":-140.125,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:47.628"} +{"sensors":[{"euler":{"heading":348.5625,"pitch":130.9375,"roll":10.125},"location":"Left Knee"},{"euler":{"heading":131.125,"pitch":178.375,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":45.4375,"pitch":27.0,"roll":38.75},"location":"Right Ankle"},{"euler":{"heading":25.9375,"pitch":-143.125,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":47.5,"pitch":123.125,"roll":-14.5},"location":"Right Knee"},{"euler":{"heading":42.5,"pitch":-121.625,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:47.729"} +{"sensors":[{"euler":{"heading":207.1875,"pitch":139.1875,"roll":19.375},"location":"Left Knee"},{"euler":{"heading":108.5625,"pitch":130.375,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":42.5,"pitch":25.875,"roll":38.5625},"location":"Right Ankle"},{"euler":{"heading":27.625,"pitch":-143.0,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":47.125,"pitch":121.4375,"roll":-12.5},"location":"Right Knee"},{"euler":{"heading":38.625,"pitch":-119.5625,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:47.829"} +{"sensors":[{"euler":{"heading":220.75,"pitch":155.6875,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":73.25,"pitch":107.4375,"roll":37.9375},"location":"Left Ankle"},{"euler":{"heading":38.625,"pitch":23.4375,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":29.0,"pitch":-143.9375,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":49.0,"pitch":121.4375,"roll":-9.0},"location":"Right Knee"},{"euler":{"heading":38.9375,"pitch":-119.375,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:47.930"} +{"sensors":[{"euler":{"heading":234.625,"pitch":167.625,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":54.5625,"pitch":102.125,"roll":19.9375},"location":"Left Ankle"},{"euler":{"heading":32.75,"pitch":18.9375,"roll":40.0},"location":"Right Ankle"},{"euler":{"heading":29.6875,"pitch":-146.625,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":52.0,"pitch":121.75,"roll":-5.25},"location":"Right Knee"},{"euler":{"heading":46.0625,"pitch":-123.8125,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:48.31"} +{"sensors":[{"euler":{"heading":235.0,"pitch":166.1875,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":59.1875,"pitch":104.25,"roll":23.75},"location":"Left Ankle"},{"euler":{"heading":26.125,"pitch":11.25,"roll":40.8125},"location":"Right Ankle"},{"euler":{"heading":28.8125,"pitch":-155.625,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":56.0,"pitch":123.6875,"roll":0.125},"location":"Right Knee"},{"euler":{"heading":53.3125,"pitch":-127.5,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:48.132"} +{"sensors":[{"euler":{"heading":281.9375,"pitch":157.3125,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":75.125,"pitch":107.4375,"roll":33.75},"location":"Left Ankle"},{"euler":{"heading":16.875,"pitch":-2.875,"roll":43.375},"location":"Right Ankle"},{"euler":{"heading":33.3125,"pitch":-153.0625,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":66.125,"pitch":129.1875,"roll":8.375},"location":"Right Knee"},{"euler":{"heading":53.0,"pitch":-130.25,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:48.233"} +{"sensors":[{"euler":{"heading":291.875,"pitch":150.3125,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":82.375,"pitch":109.25,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":9.0625,"pitch":-16.3125,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":44.6875,"pitch":-136.25,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":80.4375,"pitch":132.375,"roll":14.0625},"location":"Right Knee"},{"euler":{"heading":57.25,"pitch":-135.125,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:48.334"} +{"sensors":[{"euler":{"heading":296.5,"pitch":145.0625,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":88.25,"pitch":110.625,"roll":42.25},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":-4.375,"roll":45.625},"location":"Right Ankle"},{"euler":{"heading":50.8125,"pitch":-131.1875,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":70.875,"pitch":132.6875,"roll":5.75},"location":"Right Knee"},{"euler":{"heading":59.0,"pitch":-139.4375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:48.434"} +{"sensors":[{"euler":{"heading":302.6875,"pitch":140.875,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":91.8125,"pitch":112.375,"roll":45.25},"location":"Left Ankle"},{"euler":{"heading":128.875,"pitch":11.75,"roll":48.125},"location":"Right Ankle"},{"euler":{"heading":50.625,"pitch":-131.25,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":253.875,"pitch":136.25,"roll":-6.875},"location":"Right Knee"},{"euler":{"heading":61.625,"pitch":-145.6875,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:48.535"} +{"sensors":[{"euler":{"heading":309.375,"pitch":137.3125,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":114.1875,"roll":48.75},"location":"Left Ankle"},{"euler":{"heading":56.75,"pitch":30.9375,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":45.3125,"pitch":-134.5625,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":270.25,"pitch":138.8125,"roll":-17.4375},"location":"Right Knee"},{"euler":{"heading":63.8125,"pitch":-151.875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:48.636"} +{"sensors":[{"euler":{"heading":314.5625,"pitch":134.9375,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":119.0625,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":35.8125,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":33.8125,"pitch":-140.3125,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":29.5,"pitch":138.6875,"roll":-23.125},"location":"Right Knee"},{"euler":{"heading":64.1875,"pitch":-156.0625,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:48.737"} +{"sensors":[{"euler":{"heading":321.25,"pitch":132.625,"roll":24.0},"location":"Left Knee"},{"euler":{"heading":109.25,"pitch":132.875,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":55.0625,"pitch":33.5,"roll":38.8125},"location":"Right Ankle"},{"euler":{"heading":28.4375,"pitch":-142.4375,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":39.125,"pitch":130.9375,"roll":-20.625},"location":"Right Knee"},{"euler":{"heading":66.25,"pitch":-157.5,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:48.838"} +{"sensors":[{"euler":{"heading":337.9375,"pitch":131.0625,"roll":13.5},"location":"Left Knee"},{"euler":{"heading":129.375,"pitch":174.4375,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":45.9375,"pitch":31.0625,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":28.625,"pitch":-141.4375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":43.0,"pitch":125.75,"roll":-17.875},"location":"Right Knee"},{"euler":{"heading":52.4375,"pitch":-138.9375,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:48.939"} +{"sensors":[{"euler":{"heading":343.875,"pitch":132.25,"roll":10.875},"location":"Left Knee"},{"euler":{"heading":126.875,"pitch":178.5,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":43.0625,"pitch":27.0625,"roll":39.8125},"location":"Right Ankle"},{"euler":{"heading":27.0,"pitch":-141.9375,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":44.8125,"pitch":123.4375,"roll":-15.125},"location":"Right Knee"},{"euler":{"heading":40.75,"pitch":-122.1875,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:49.40"} +{"sensors":[{"euler":{"heading":206.875,"pitch":142.9375,"roll":22.25},"location":"Left Knee"},{"euler":{"heading":100.25,"pitch":123.125,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":40.875,"pitch":25.3125,"roll":39.5},"location":"Right Ankle"},{"euler":{"heading":27.1875,"pitch":-141.375,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":45.125,"pitch":121.5625,"roll":-13.3125},"location":"Right Knee"},{"euler":{"heading":37.5625,"pitch":-120.1875,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:49.140"} +{"sensors":[{"euler":{"heading":221.9375,"pitch":158.625,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":69.5,"pitch":105.3125,"roll":36.0},"location":"Left Ankle"},{"euler":{"heading":36.75,"pitch":22.6875,"roll":41.8125},"location":"Right Ankle"},{"euler":{"heading":28.5,"pitch":-143.3125,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":50.625,"pitch":121.3125,"roll":-8.375},"location":"Right Knee"},{"euler":{"heading":38.9375,"pitch":-119.8125,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:49.241"} +{"sensors":[{"euler":{"heading":234.1875,"pitch":169.5625,"roll":41.5625},"location":"Left Knee"},{"euler":{"heading":51.4375,"pitch":100.0,"roll":18.75},"location":"Left Ankle"},{"euler":{"heading":31.0625,"pitch":17.125,"roll":42.75},"location":"Right Ankle"},{"euler":{"heading":29.5625,"pitch":-147.0625,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":53.5625,"pitch":122.5,"roll":-3.6875},"location":"Right Knee"},{"euler":{"heading":45.375,"pitch":-124.3125,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:49.342"} +{"sensors":[{"euler":{"heading":236.1875,"pitch":164.375,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":59.5625,"pitch":105.25,"roll":22.375},"location":"Left Ankle"},{"euler":{"heading":24.5,"pitch":8.5625,"roll":41.5},"location":"Right Ankle"},{"euler":{"heading":29.1875,"pitch":-155.9375,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":57.0,"pitch":125.375,"roll":1.0},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-127.8125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:49.443"} +{"sensors":[{"euler":{"heading":285.0625,"pitch":155.75,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":76.6875,"pitch":108.9375,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":15.5625,"pitch":-4.875,"roll":44.375},"location":"Right Ankle"},{"euler":{"heading":34.125,"pitch":-153.0,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":66.0,"pitch":130.375,"roll":8.5625},"location":"Right Knee"},{"euler":{"heading":53.125,"pitch":-131.0625,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:49.544"} +{"sensors":[{"euler":{"heading":294.8125,"pitch":148.125,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":84.6875,"pitch":110.875,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":5.75,"pitch":-14.3125,"roll":43.3125},"location":"Right Ankle"},{"euler":{"heading":43.75,"pitch":-133.6875,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":87.8125,"pitch":129.6875,"roll":17.9375},"location":"Right Knee"},{"euler":{"heading":58.5,"pitch":-136.25,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:49.645"} +{"sensors":[{"euler":{"heading":299.6875,"pitch":143.5625,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":90.75,"pitch":112.125,"roll":42.9375},"location":"Left Ankle"},{"euler":{"heading":107.75,"pitch":-6.4375,"roll":46.5},"location":"Right Ankle"},{"euler":{"heading":49.9375,"pitch":-130.375,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":77.1875,"pitch":131.375,"roll":9.0},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-140.8125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:49.746"} +{"sensors":[{"euler":{"heading":305.75,"pitch":139.4375,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":94.8125,"pitch":113.9375,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":128.0625,"pitch":11.8125,"roll":50.5},"location":"Right Ankle"},{"euler":{"heading":49.625,"pitch":-131.4375,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":255.25,"pitch":135.875,"roll":-6.75},"location":"Right Knee"},{"euler":{"heading":62.0,"pitch":-147.5,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:49.848"} +{"sensors":[{"euler":{"heading":312.75,"pitch":135.6875,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":117.3125,"roll":49.375},"location":"Left Ankle"},{"euler":{"heading":56.25,"pitch":33.375,"roll":42.0625},"location":"Right Ankle"},{"euler":{"heading":39.625,"pitch":-135.6875,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":44.5,"pitch":136.5625,"roll":-16.6875},"location":"Right Knee"},{"euler":{"heading":63.0625,"pitch":-151.5625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:49.948"} +{"sensors":[{"euler":{"heading":319.5625,"pitch":132.25,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":123.5,"roll":54.625},"location":"Left Ankle"},{"euler":{"heading":60.375,"pitch":36.5,"roll":39.0625},"location":"Right Ankle"},{"euler":{"heading":29.375,"pitch":-142.4375,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":37.625,"pitch":136.4375,"roll":-20.875},"location":"Right Knee"},{"euler":{"heading":65.0625,"pitch":-156.125,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:50.48"} +{"sensors":[{"euler":{"heading":329.5,"pitch":129.4375,"roll":21.6875},"location":"Left Knee"},{"euler":{"heading":111.25,"pitch":138.125,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":50.8125,"pitch":30.25,"roll":41.5625},"location":"Right Ankle"},{"euler":{"heading":26.5,"pitch":-145.0,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":42.6875,"pitch":129.5625,"roll":-18.5},"location":"Right Knee"},{"euler":{"heading":67.75,"pitch":-156.0,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:50.149"} +{"sensors":[{"euler":{"heading":342.6875,"pitch":127.9375,"roll":13.0625},"location":"Left Knee"},{"euler":{"heading":120.25,"pitch":165.1875,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":45.1875,"pitch":26.5,"roll":41.75},"location":"Right Ankle"},{"euler":{"heading":24.3125,"pitch":-145.875,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":46.4375,"pitch":125.4375,"roll":-15.0625},"location":"Right Knee"},{"euler":{"heading":50.25,"pitch":-133.9375,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:50.252"} +{"sensors":[{"euler":{"heading":335.6875,"pitch":135.75,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":109.0,"pitch":137.5625,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":41.0,"pitch":24.25,"roll":41.625},"location":"Right Ankle"},{"euler":{"heading":23.6875,"pitch":-146.1875,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":48.0625,"pitch":123.125,"roll":-12.6875},"location":"Right Knee"},{"euler":{"heading":41.9375,"pitch":-124.875,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:50.353"} +{"sensors":[{"euler":{"heading":212.125,"pitch":148.5625,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":86.0625,"pitch":109.25,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":36.75,"pitch":21.375,"roll":42.3125},"location":"Right Ankle"},{"euler":{"heading":24.75,"pitch":-145.0,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":49.0,"pitch":121.5,"roll":-10.375},"location":"Right Knee"},{"euler":{"heading":40.125,"pitch":-121.625,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:50.454"} +{"sensors":[{"euler":{"heading":228.8125,"pitch":162.25,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":59.3125,"pitch":105.375,"roll":25.375},"location":"Left Ankle"},{"euler":{"heading":31.8125,"pitch":17.375,"roll":43.1875},"location":"Right Ankle"},{"euler":{"heading":27.0625,"pitch":-147.6875,"roll":70.125},"location":"Right Hip"},{"euler":{"heading":52.125,"pitch":121.75,"roll":-6.125},"location":"Right Knee"},{"euler":{"heading":42.4375,"pitch":-122.875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:50.555"} +{"sensors":[{"euler":{"heading":238.125,"pitch":167.875,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":54.1875,"pitch":104.25,"roll":18.5625},"location":"Left Ankle"},{"euler":{"heading":25.4375,"pitch":10.875,"roll":44.0},"location":"Right Ankle"},{"euler":{"heading":29.625,"pitch":-152.1875,"roll":70.3125},"location":"Right Hip"},{"euler":{"heading":55.375,"pitch":123.375,"roll":-1.9375},"location":"Right Knee"},{"euler":{"heading":50.125,"pitch":-127.1875,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:50.656"} +{"sensors":[{"euler":{"heading":237.25,"pitch":159.5625,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":68.125,"pitch":110.3125,"roll":26.5625},"location":"Left Ankle"},{"euler":{"heading":17.0625,"pitch":-0.6875,"roll":42.75},"location":"Right Ankle"},{"euler":{"heading":29.8125,"pitch":-158.0625,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":61.125,"pitch":126.375,"roll":4.5},"location":"Right Knee"},{"euler":{"heading":53.5,"pitch":-128.0,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:50.756"} +{"sensors":[{"euler":{"heading":290.125,"pitch":152.4375,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":77.5625,"pitch":111.5625,"roll":34.5},"location":"Left Ankle"},{"euler":{"heading":3.875,"pitch":-16.3125,"roll":40.625},"location":"Right Ankle"},{"euler":{"heading":39.5625,"pitch":-146.0,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":80.625,"pitch":127.8125,"roll":15.25},"location":"Right Knee"},{"euler":{"heading":52.4375,"pitch":-129.5625,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:50.857"} +{"sensors":[{"euler":{"heading":293.25,"pitch":148.3125,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":81.375,"pitch":112.125,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":7.3125,"pitch":-16.0,"roll":43.6875},"location":"Right Ankle"},{"euler":{"heading":47.4375,"pitch":-134.0,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":85.5625,"pitch":131.9375,"roll":14.9375},"location":"Right Knee"},{"euler":{"heading":53.8125,"pitch":-135.375,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:50.958"} +{"sensors":[{"euler":{"heading":298.4375,"pitch":144.125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":86.3125,"pitch":112.6875,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":117.625,"pitch":3.6875,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":48.25,"pitch":-131.25,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":70.5625,"pitch":131.75,"roll":2.75},"location":"Right Knee"},{"euler":{"heading":55.5,"pitch":-140.3125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:51.59"} +{"sensors":[{"euler":{"heading":307.6875,"pitch":139.0625,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":115.5625,"roll":45.1875},"location":"Left Ankle"},{"euler":{"heading":137.125,"pitch":24.375,"roll":47.125},"location":"Right Ankle"},{"euler":{"heading":44.4375,"pitch":-134.0,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":51.9375,"pitch":135.3125,"roll":-12.125},"location":"Right Knee"},{"euler":{"heading":58.4375,"pitch":-144.6875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:51.164"} +{"sensors":[{"euler":{"heading":315.3125,"pitch":134.8125,"roll":31.375},"location":"Left Knee"},{"euler":{"heading":98.75,"pitch":119.5625,"roll":49.9375},"location":"Left Ankle"},{"euler":{"heading":63.0625,"pitch":35.5625,"roll":37.625},"location":"Right Ankle"},{"euler":{"heading":34.1875,"pitch":-138.4375,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":35.875,"pitch":138.1875,"roll":-20.5},"location":"Right Knee"},{"euler":{"heading":61.6875,"pitch":-149.625,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:51.264"} +{"sensors":[{"euler":{"heading":322.75,"pitch":131.75,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":104.375,"pitch":126.25,"roll":55.5},"location":"Left Ankle"},{"euler":{"heading":58.1875,"pitch":34.0625,"roll":38.5625},"location":"Right Ankle"},{"euler":{"heading":25.0,"pitch":-144.25,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":36.5,"pitch":132.875,"roll":-21.5625},"location":"Right Knee"},{"euler":{"heading":65.75,"pitch":-156.75,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:51.365"} +{"sensors":[{"euler":{"heading":333.25,"pitch":130.5625,"roll":15.875},"location":"Left Knee"},{"euler":{"heading":114.8125,"pitch":149.625,"roll":63.625},"location":"Left Ankle"},{"euler":{"heading":48.875,"pitch":29.8125,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":25.6875,"pitch":-145.3125,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":43.375,"pitch":126.6875,"roll":-18.1875},"location":"Right Knee"},{"euler":{"heading":59.3125,"pitch":-148.0,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:51.466"} +{"sensors":[{"euler":{"heading":345.375,"pitch":130.6875,"roll":11.0},"location":"Left Knee"},{"euler":{"heading":121.6875,"pitch":169.375,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":43.4375,"pitch":26.625,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":22.5625,"pitch":-146.125,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":46.6875,"pitch":122.9375,"roll":-15.125},"location":"Right Knee"},{"euler":{"heading":47.1875,"pitch":-125.625,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:51.567"} +{"sensors":[{"euler":{"heading":205.125,"pitch":138.75,"roll":18.875},"location":"Left Knee"},{"euler":{"heading":106.625,"pitch":129.8125,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":38.4375,"pitch":25.1875,"roll":40.4375},"location":"Right Ankle"},{"euler":{"heading":23.125,"pitch":-142.875,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":49.6875,"pitch":119.75,"roll":-12.8125},"location":"Right Knee"},{"euler":{"heading":39.875,"pitch":-121.375,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:51.667"} +{"sensors":[{"euler":{"heading":219.0625,"pitch":153.6875,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":72.4375,"pitch":106.9375,"roll":39.4375},"location":"Left Ankle"},{"euler":{"heading":34.4375,"pitch":22.8125,"roll":41.5625},"location":"Right Ankle"},{"euler":{"heading":24.0625,"pitch":-143.9375,"roll":70.4375},"location":"Right Hip"},{"euler":{"heading":52.125,"pitch":119.0625,"roll":-9.5625},"location":"Right Knee"},{"euler":{"heading":38.875,"pitch":-120.0,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:51.768"} +{"sensors":[{"euler":{"heading":231.0,"pitch":166.25,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":52.625,"pitch":99.0,"roll":21.375},"location":"Left Ankle"},{"euler":{"heading":29.9375,"pitch":19.125,"roll":42.3125},"location":"Right Ankle"},{"euler":{"heading":24.3125,"pitch":-148.0625,"roll":72.1875},"location":"Right Hip"},{"euler":{"heading":54.375,"pitch":119.0,"roll":-5.75},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-124.375,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:51.869"} +{"sensors":[{"euler":{"heading":238.1875,"pitch":164.3125,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":59.625,"pitch":106.9375,"roll":21.6875},"location":"Left Ankle"},{"euler":{"heading":24.8125,"pitch":11.125,"roll":41.5},"location":"Right Ankle"},{"euler":{"heading":26.75,"pitch":-156.5625,"roll":72.3125},"location":"Right Hip"},{"euler":{"heading":56.3125,"pitch":123.0,"roll":-1.3125},"location":"Right Knee"},{"euler":{"heading":52.8125,"pitch":-128.125,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:51.970"} +{"sensors":[{"euler":{"heading":288.75,"pitch":155.375,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":74.5,"pitch":111.0,"roll":32.1875},"location":"Left Ankle"},{"euler":{"heading":18.0,"pitch":-3.5625,"roll":41.9375},"location":"Right Ankle"},{"euler":{"heading":30.5625,"pitch":-158.0,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":65.0,"pitch":130.125,"roll":7.1875},"location":"Right Knee"},{"euler":{"heading":53.5,"pitch":-129.5625,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:52.71"} +{"sensors":[{"euler":{"heading":296.5,"pitch":148.625,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":83.6875,"pitch":112.6875,"roll":37.9375},"location":"Left Ankle"},{"euler":{"heading":6.625,"pitch":-15.25,"roll":40.5625},"location":"Right Ankle"},{"euler":{"heading":40.875,"pitch":-140.1875,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":77.75,"pitch":129.0625,"roll":14.0},"location":"Right Knee"},{"euler":{"heading":57.5625,"pitch":-135.0,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:52.171"} +{"sensors":[{"euler":{"heading":302.875,"pitch":143.1875,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":91.25,"pitch":113.6875,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":15.125,"pitch":-10.6875,"roll":44.6875},"location":"Right Ankle"},{"euler":{"heading":48.625,"pitch":-132.5625,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":73.6875,"pitch":132.5625,"roll":7.9375},"location":"Right Knee"},{"euler":{"heading":61.4375,"pitch":-142.375,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:52.272"} +{"sensors":[{"euler":{"heading":308.75,"pitch":138.6875,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":96.0625,"pitch":115.625,"roll":45.125},"location":"Left Ankle"},{"euler":{"heading":125.75,"pitch":6.875,"roll":47.5625},"location":"Right Ankle"},{"euler":{"heading":51.125,"pitch":-132.0,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":249.3125,"pitch":136.8125,"roll":-5.3125},"location":"Right Knee"},{"euler":{"heading":62.5625,"pitch":-147.4375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:52.372"} +{"sensors":[{"euler":{"heading":315.75,"pitch":134.75,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":119.5625,"roll":48.875},"location":"Left Ankle"},{"euler":{"heading":56.1875,"pitch":29.875,"roll":42.25},"location":"Right Ankle"},{"euler":{"heading":42.1875,"pitch":-135.1875,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":272.3125,"pitch":139.5,"roll":-17.5},"location":"Right Knee"},{"euler":{"heading":63.1875,"pitch":-151.5625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:52.474"} +{"sensors":[{"euler":{"heading":320.9375,"pitch":131.5625,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":107.0,"pitch":124.4375,"roll":53.6875},"location":"Left Ankle"},{"euler":{"heading":63.8125,"pitch":35.875,"roll":36.875},"location":"Right Ankle"},{"euler":{"heading":31.75,"pitch":-141.875,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":34.3125,"pitch":138.6875,"roll":-22.125},"location":"Right Knee"},{"euler":{"heading":64.8125,"pitch":-155.9375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:52.575"} +{"sensors":[{"euler":{"heading":329.1875,"pitch":128.5625,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":113.375,"pitch":136.75,"roll":60.8125},"location":"Left Ankle"},{"euler":{"heading":53.8125,"pitch":31.625,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":28.75,"pitch":-144.75,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":40.1875,"pitch":131.3125,"roll":-19.75},"location":"Right Knee"},{"euler":{"heading":67.1875,"pitch":-155.875,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:52.676"} +{"sensors":[{"euler":{"heading":343.625,"pitch":128.4375,"roll":12.625},"location":"Left Knee"},{"euler":{"heading":127.25,"pitch":171.5625,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":47.625,"pitch":27.0625,"roll":41.0},"location":"Right Ankle"},{"euler":{"heading":26.875,"pitch":-145.75,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":43.0625,"pitch":127.4375,"roll":-17.125},"location":"Right Knee"},{"euler":{"heading":48.375,"pitch":-135.6875,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:52.777"} +{"sensors":[{"euler":{"heading":344.375,"pitch":133.25,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":122.0,"pitch":156.4375,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":43.9375,"pitch":24.6875,"roll":40.4375},"location":"Right Ankle"},{"euler":{"heading":26.3125,"pitch":-145.375,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":45.875,"pitch":124.75,"roll":-14.5625},"location":"Right Knee"},{"euler":{"heading":39.5625,"pitch":-121.9375,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:52.878"} +{"sensors":[{"euler":{"heading":210.6875,"pitch":143.3125,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":117.375,"roll":57.5},"location":"Left Ankle"},{"euler":{"heading":39.6875,"pitch":22.8125,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":27.0,"pitch":-143.375,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":46.625,"pitch":121.6875,"roll":-12.6875},"location":"Right Knee"},{"euler":{"heading":37.1875,"pitch":-119.25,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:52.978"} +{"sensors":[{"euler":{"heading":224.75,"pitch":158.8125,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":49.4375,"pitch":105.375,"roll":30.4375},"location":"Left Ankle"},{"euler":{"heading":35.0625,"pitch":20.5,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":28.375,"pitch":-144.1875,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":50.125,"pitch":120.5,"roll":-9.25},"location":"Right Knee"},{"euler":{"heading":38.1875,"pitch":-119.6875,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:53.79"} +{"sensors":[{"euler":{"heading":235.125,"pitch":167.8125,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":50.9375,"pitch":101.5625,"roll":17.875},"location":"Left Ankle"},{"euler":{"heading":28.0625,"pitch":14.4375,"roll":42.5625},"location":"Right Ankle"},{"euler":{"heading":30.5625,"pitch":-146.0,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":58.0,"pitch":121.75,"roll":-2.25},"location":"Right Knee"},{"euler":{"heading":45.3125,"pitch":-124.4375,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:53.180"} +{"sensors":[{"euler":{"heading":235.125,"pitch":160.75,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":60.9375,"pitch":107.6875,"roll":23.4375},"location":"Left Ankle"},{"euler":{"heading":20.625,"pitch":5.0625,"roll":42.3125},"location":"Right Ankle"},{"euler":{"heading":29.9375,"pitch":-155.6875,"roll":70.25},"location":"Right Hip"},{"euler":{"heading":63.0,"pitch":124.5,"roll":3.375},"location":"Right Knee"},{"euler":{"heading":52.25,"pitch":-127.25,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:53.281"} +{"sensors":[{"euler":{"heading":295.5625,"pitch":151.5,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":78.375,"pitch":112.9375,"roll":34.5625},"location":"Left Ankle"},{"euler":{"heading":8.9375,"pitch":-11.75,"roll":41.375},"location":"Right Ankle"},{"euler":{"heading":37.0625,"pitch":-150.625,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":79.3125,"pitch":131.25,"roll":13.1875},"location":"Right Knee"},{"euler":{"heading":53.4375,"pitch":-128.625,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:53.381"} +{"sensors":[{"euler":{"heading":301.125,"pitch":145.8125,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":86.75,"pitch":113.3125,"roll":39.3125},"location":"Left Ankle"},{"euler":{"heading":2.8125,"pitch":-25.3125,"roll":39.9375},"location":"Right Ankle"},{"euler":{"heading":50.0,"pitch":-133.1875,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":84.125,"pitch":134.25,"roll":16.0},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-134.625,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:53.483"} +{"sensors":[{"euler":{"heading":306.5,"pitch":140.6875,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":91.6875,"pitch":114.625,"roll":42.4375},"location":"Left Ankle"},{"euler":{"heading":16.875,"pitch":-7.875,"roll":44.125},"location":"Right Ankle"},{"euler":{"heading":53.6875,"pitch":-130.0625,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":72.5625,"pitch":133.75,"roll":6.1875},"location":"Right Knee"},{"euler":{"heading":60.375,"pitch":-140.9375,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:53.584"} +{"sensors":[{"euler":{"heading":313.75,"pitch":135.375,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":97.125,"pitch":117.0625,"roll":45.8125},"location":"Left Ankle"},{"euler":{"heading":126.5,"pitch":9.9375,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":51.6875,"pitch":-131.6875,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":256.375,"pitch":138.0625,"roll":-8.0625},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-146.625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:53.685"} +{"sensors":[{"euler":{"heading":320.8125,"pitch":131.75,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":120.0625,"roll":49.4375},"location":"Left Ankle"},{"euler":{"heading":58.5,"pitch":30.625,"roll":41.375},"location":"Right Ankle"},{"euler":{"heading":43.125,"pitch":-136.875,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":272.5625,"pitch":139.8125,"roll":-20.25},"location":"Right Knee"},{"euler":{"heading":64.625,"pitch":-151.875,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:53.785"} +{"sensors":[{"euler":{"heading":325.75,"pitch":129.6875,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":107.1875,"pitch":125.0625,"roll":54.75},"location":"Left Ankle"},{"euler":{"heading":61.6875,"pitch":35.5,"roll":37.6875},"location":"Right Ankle"},{"euler":{"heading":29.6875,"pitch":-143.0,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":33.375,"pitch":136.8125,"roll":-22.25},"location":"Right Knee"},{"euler":{"heading":66.25,"pitch":-158.8125,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:53.886"} +{"sensors":[{"euler":{"heading":335.25,"pitch":127.4375,"roll":18.375},"location":"Left Knee"},{"euler":{"heading":112.1875,"pitch":137.9375,"roll":61.3125},"location":"Left Ankle"},{"euler":{"heading":51.0,"pitch":31.5625,"roll":40.5625},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-144.25,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":42.6875,"pitch":129.4375,"roll":-19.0},"location":"Right Knee"},{"euler":{"heading":67.0625,"pitch":-156.375,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:53.987"} +{"sensors":[{"euler":{"heading":350.5,"pitch":127.0,"roll":8.75},"location":"Left Knee"},{"euler":{"heading":131.75,"pitch":177.125,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":45.4375,"pitch":28.25,"roll":41.1875},"location":"Right Ankle"},{"euler":{"heading":24.3125,"pitch":-145.25,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":45.0,"pitch":125.4375,"roll":-16.5625},"location":"Right Knee"},{"euler":{"heading":50.25,"pitch":-132.125,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:54.88"} +{"sensors":[{"euler":{"heading":351.375,"pitch":132.0,"roll":8.5625},"location":"Left Knee"},{"euler":{"heading":125.4375,"pitch":168.75,"roll":70.6875},"location":"Left Ankle"},{"euler":{"heading":41.6875,"pitch":26.125,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":25.0625,"pitch":-145.6875,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":45.6875,"pitch":123.0625,"roll":-14.5625},"location":"Right Knee"},{"euler":{"heading":41.9375,"pitch":-121.5625,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:54.191"} +{"sensors":[{"euler":{"heading":208.875,"pitch":142.0,"roll":21.0625},"location":"Left Knee"},{"euler":{"heading":97.5625,"pitch":122.5,"roll":57.1875},"location":"Left Ankle"},{"euler":{"heading":38.25,"pitch":23.9375,"roll":42.125},"location":"Right Ankle"},{"euler":{"heading":26.5625,"pitch":-145.3125,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":47.8125,"pitch":122.1875,"roll":-11.875},"location":"Right Knee"},{"euler":{"heading":39.125,"pitch":-117.9375,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:54.292"} +{"sensors":[{"euler":{"heading":223.0,"pitch":156.9375,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":65.25,"pitch":107.3125,"roll":33.1875},"location":"Left Ankle"},{"euler":{"heading":33.625,"pitch":20.375,"roll":42.5625},"location":"Right Ankle"},{"euler":{"heading":26.8125,"pitch":-148.3125,"roll":70.125},"location":"Right Hip"},{"euler":{"heading":51.75,"pitch":121.125,"roll":-7.875},"location":"Right Knee"},{"euler":{"heading":39.0625,"pitch":-119.5625,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:54.393"} +{"sensors":[{"euler":{"heading":233.1875,"pitch":166.125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":50.625,"pitch":102.375,"roll":18.5},"location":"Left Ankle"},{"euler":{"heading":27.5625,"pitch":15.5625,"roll":43.4375},"location":"Right Ankle"},{"euler":{"heading":27.0,"pitch":-153.0625,"roll":71.375},"location":"Right Hip"},{"euler":{"heading":55.5625,"pitch":121.625,"roll":-3.5},"location":"Right Knee"},{"euler":{"heading":44.5625,"pitch":-124.6875,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:54.494"} +{"sensors":[{"euler":{"heading":235.75,"pitch":159.5,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":61.5,"pitch":108.875,"roll":23.25},"location":"Left Ankle"},{"euler":{"heading":20.1875,"pitch":5.4375,"roll":43.25},"location":"Right Ankle"},{"euler":{"heading":28.0625,"pitch":-160.625,"roll":70.5625},"location":"Right Hip"},{"euler":{"heading":61.25,"pitch":124.8125,"roll":2.875},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-127.3125,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:54.594"} +{"sensors":[{"euler":{"heading":295.0,"pitch":151.25,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":76.9375,"pitch":112.875,"roll":34.5625},"location":"Left Ankle"},{"euler":{"heading":8.75,"pitch":-11.1875,"roll":40.75},"location":"Right Ankle"},{"euler":{"heading":37.1875,"pitch":-149.25,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":76.1875,"pitch":129.375,"roll":12.9375},"location":"Right Knee"},{"euler":{"heading":52.5,"pitch":-129.4375,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:54.696"} +{"sensors":[{"euler":{"heading":299.4375,"pitch":146.4375,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":82.6875,"pitch":113.625,"roll":38.375},"location":"Left Ankle"},{"euler":{"heading":4.25,"pitch":-22.4375,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":48.5,"pitch":-136.1875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":83.75,"pitch":134.875,"roll":15.5625},"location":"Right Knee"},{"euler":{"heading":55.75,"pitch":-135.125,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:54.796"} +{"sensors":[{"euler":{"heading":300.3125,"pitch":143.5,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":85.5625,"pitch":113.875,"roll":41.375},"location":"Left Ankle"},{"euler":{"heading":107.875,"pitch":-10.625,"roll":45.625},"location":"Right Ankle"},{"euler":{"heading":53.3125,"pitch":-133.5625,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":73.1875,"pitch":134.25,"roll":6.8125},"location":"Right Knee"},{"euler":{"heading":57.6875,"pitch":-142.0625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:54.897"} +{"sensors":[{"euler":{"heading":306.8125,"pitch":140.0625,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":89.0,"pitch":114.5625,"roll":44.4375},"location":"Left Ankle"},{"euler":{"heading":125.3125,"pitch":8.125,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":52.375,"pitch":-133.6875,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":254.5625,"pitch":136.6875,"roll":-6.5625},"location":"Right Knee"},{"euler":{"heading":60.6875,"pitch":-148.8125,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:54.998"} +{"sensors":[{"euler":{"heading":317.0,"pitch":135.0,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":95.8125,"pitch":117.5625,"roll":48.8125},"location":"Left Ankle"},{"euler":{"heading":58.75,"pitch":32.6875,"roll":41.1875},"location":"Right Ankle"},{"euler":{"heading":42.375,"pitch":-137.625,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":271.5,"pitch":139.3125,"roll":-19.5},"location":"Right Knee"},{"euler":{"heading":63.9375,"pitch":-153.1875,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:55.99"} +{"sensors":[{"euler":{"heading":325.0625,"pitch":132.0,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":102.4375,"pitch":124.5,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":64.1875,"pitch":36.3125,"roll":37.3125},"location":"Right Ankle"},{"euler":{"heading":32.75,"pitch":-141.5,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":34.875,"pitch":136.625,"roll":-21.3125},"location":"Right Knee"},{"euler":{"heading":66.375,"pitch":-159.25,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:55.200"} +{"sensors":[{"euler":{"heading":335.4375,"pitch":129.3125,"roll":17.3125},"location":"Left Knee"},{"euler":{"heading":111.5,"pitch":141.8125,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":51.3125,"pitch":30.5,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":29.5,"pitch":-144.4375,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":43.25,"pitch":128.9375,"roll":-17.8125},"location":"Right Knee"},{"euler":{"heading":67.375,"pitch":-158.0625,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:55.302"} +{"sensors":[{"euler":{"heading":352.8125,"pitch":126.4375,"roll":8.375},"location":"Left Knee"},{"euler":{"heading":132.625,"pitch":178.625,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":44.875,"pitch":26.9375,"roll":40.625},"location":"Right Ankle"},{"euler":{"heading":26.125,"pitch":-145.1875,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":43.875,"pitch":125.0,"roll":-16.125},"location":"Right Knee"},{"euler":{"heading":51.5625,"pitch":-135.4375,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:55.403"} +{"sensors":[{"euler":{"heading":351.5,"pitch":132.625,"roll":8.625},"location":"Left Knee"},{"euler":{"heading":124.625,"pitch":170.375,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":41.375,"pitch":24.0,"roll":40.75},"location":"Right Ankle"},{"euler":{"heading":27.6875,"pitch":-144.75,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":45.6875,"pitch":122.9375,"roll":-13.0},"location":"Right Knee"},{"euler":{"heading":43.0625,"pitch":-123.375,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:55.504"} +{"sensors":[{"euler":{"heading":209.5,"pitch":145.0,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":90.6875,"pitch":119.3125,"roll":53.125},"location":"Left Ankle"},{"euler":{"heading":37.8125,"pitch":21.6875,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":28.6875,"pitch":-144.5,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":47.3125,"pitch":122.375,"roll":-10.8125},"location":"Right Knee"},{"euler":{"heading":38.6875,"pitch":-121.0,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:55.605"} +{"sensors":[{"euler":{"heading":225.875,"pitch":159.6875,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":61.5,"pitch":105.625,"roll":29.4375},"location":"Left Ankle"},{"euler":{"heading":33.3125,"pitch":18.4375,"roll":42.25},"location":"Right Ankle"},{"euler":{"heading":29.375,"pitch":-146.5625,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":50.5,"pitch":121.8125,"roll":-7.0625},"location":"Right Knee"},{"euler":{"heading":14.5,"pitch":-134.125,"roll":39.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:55.706"} +{"sensors":[{"euler":{"heading":233.5,"pitch":166.8125,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":50.625,"pitch":101.375,"roll":18.375},"location":"Left Ankle"},{"euler":{"heading":27.0625,"pitch":10.875,"roll":43.125},"location":"Right Ankle"},{"euler":{"heading":29.9375,"pitch":-151.375,"roll":70.3125},"location":"Right Hip"},{"euler":{"heading":56.125,"pitch":122.6875,"roll":-1.125},"location":"Right Knee"},{"euler":{"heading":45.1875,"pitch":-127.125,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:55.810"} +{"sensors":[{"euler":{"heading":233.9375,"pitch":159.1875,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":61.125,"pitch":106.25,"roll":23.875},"location":"Left Ankle"},{"euler":{"heading":19.875,"pitch":1.1875,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":30.6875,"pitch":-158.875,"roll":69.5625},"location":"Right Hip"},{"euler":{"heading":60.375,"pitch":126.6875,"roll":4.125},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-131.375,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:55.911"} +{"sensors":[{"euler":{"heading":294.0,"pitch":151.0625,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":77.0,"pitch":111.0,"roll":35.1875},"location":"Left Ankle"},{"euler":{"heading":6.375,"pitch":-12.3125,"roll":38.5625},"location":"Right Ankle"},{"euler":{"heading":40.5,"pitch":-143.875,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":78.375,"pitch":128.875,"roll":14.375},"location":"Right Knee"},{"euler":{"heading":52.25,"pitch":-133.625,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:56.11"} +{"sensors":[{"euler":{"heading":302.9375,"pitch":144.75,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":86.375,"pitch":112.6875,"roll":40.25},"location":"Left Ankle"},{"euler":{"heading":6.1875,"pitch":-17.6875,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":50.3125,"pitch":-132.8125,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":84.5,"pitch":133.125,"roll":15.4375},"location":"Right Knee"},{"euler":{"heading":56.4375,"pitch":-139.4375,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:56.112"} +{"sensors":[{"euler":{"heading":308.8125,"pitch":139.875,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":92.0,"pitch":114.5,"roll":43.25},"location":"Left Ankle"},{"euler":{"heading":115.75,"pitch":-3.75,"roll":45.3125},"location":"Right Ankle"},{"euler":{"heading":53.875,"pitch":-130.5625,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":67.6875,"pitch":134.25,"roll":3.4375},"location":"Right Knee"},{"euler":{"heading":60.3125,"pitch":-145.375,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:56.213"} +{"sensors":[{"euler":{"heading":315.8125,"pitch":135.8125,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":98.0625,"pitch":118.5,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":136.625,"pitch":19.875,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":50.5625,"pitch":-132.75,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":258.4375,"pitch":137.4375,"roll":-9.3125},"location":"Right Knee"},{"euler":{"heading":61.3125,"pitch":-149.25,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:56.314"} +{"sensors":[{"euler":{"heading":323.125,"pitch":132.1875,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":104.875,"pitch":123.75,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":62.5625,"pitch":33.75,"roll":38.3125},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-138.6875,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":273.875,"pitch":138.9375,"roll":-18.6875},"location":"Right Knee"},{"euler":{"heading":62.6875,"pitch":-152.5625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:56.415"} +{"sensors":[{"euler":{"heading":328.9375,"pitch":129.5,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":109.0,"pitch":130.3125,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":57.9375,"pitch":31.25,"roll":39.75},"location":"Right Ankle"},{"euler":{"heading":31.5,"pitch":-143.3125,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":43.8125,"pitch":134.5,"roll":-17.375},"location":"Right Knee"},{"euler":{"heading":66.75,"pitch":-157.75,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:56.516"} +{"sensors":[{"euler":{"heading":340.9375,"pitch":130.0,"roll":14.25},"location":"Left Knee"},{"euler":{"heading":114.9375,"pitch":151.5,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":49.625,"pitch":25.9375,"roll":40.5},"location":"Right Ankle"},{"euler":{"heading":31.75,"pitch":-144.75,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":43.1875,"pitch":130.4375,"roll":-16.1875},"location":"Right Knee"},{"euler":{"heading":56.375,"pitch":-146.25,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:56.617"} +{"sensors":[{"euler":{"heading":348.875,"pitch":132.0625,"roll":9.875},"location":"Left Knee"},{"euler":{"heading":116.625,"pitch":155.6875,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":47.0625,"pitch":22.6875,"roll":40.25},"location":"Right Ankle"},{"euler":{"heading":28.75,"pitch":-146.4375,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":45.0625,"pitch":128.375,"roll":-13.5625},"location":"Right Knee"},{"euler":{"heading":47.1875,"pitch":-127.25,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:56.718"} +{"sensors":[{"euler":{"heading":206.0625,"pitch":138.75,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":102.3125,"pitch":126.25,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":44.75,"pitch":21.0625,"roll":39.875},"location":"Right Ankle"},{"euler":{"heading":29.375,"pitch":-146.5625,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":45.5625,"pitch":126.125,"roll":-11.9375},"location":"Right Knee"},{"euler":{"heading":40.375,"pitch":-124.1875,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:56.818"} +{"sensors":[{"euler":{"heading":218.9375,"pitch":152.6875,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":74.375,"pitch":108.8125,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":40.5625,"pitch":19.25,"roll":40.875},"location":"Right Ankle"},{"euler":{"heading":29.6875,"pitch":-146.6875,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":49.75,"pitch":124.5625,"roll":-8.6875},"location":"Right Knee"},{"euler":{"heading":37.875,"pitch":-121.625,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:56.919"} +{"sensors":[{"euler":{"heading":231.5625,"pitch":165.8125,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":51.3125,"pitch":101.0,"roll":19.4375},"location":"Left Ankle"},{"euler":{"heading":34.0625,"pitch":15.125,"roll":41.875},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-147.875,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":53.8125,"pitch":124.0625,"roll":-4.5},"location":"Right Knee"},{"euler":{"heading":41.6875,"pitch":-124.75,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:57.20"} +{"sensors":[{"euler":{"heading":234.5,"pitch":167.3125,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":52.0625,"pitch":101.8125,"roll":17.9375},"location":"Left Ankle"},{"euler":{"heading":26.9375,"pitch":10.0,"roll":42.125},"location":"Right Ankle"},{"euler":{"heading":30.1875,"pitch":-154.75,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":59.25,"pitch":124.625,"roll":0.625},"location":"Right Knee"},{"euler":{"heading":45.625,"pitch":-126.5625,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:57.121"} +{"sensors":[{"euler":{"heading":233.75,"pitch":157.25,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":67.25,"pitch":106.5625,"roll":28.6875},"location":"Left Ankle"},{"euler":{"heading":16.6875,"pitch":-2.9375,"roll":41.8125},"location":"Right Ankle"},{"euler":{"heading":34.4375,"pitch":-153.25,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":68.5,"pitch":129.375,"roll":8.5},"location":"Right Knee"},{"euler":{"heading":49.875,"pitch":-128.3125,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:57.222"} +{"sensors":[{"euler":{"heading":293.6875,"pitch":150.125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":76.625,"pitch":109.3125,"roll":34.8125},"location":"Left Ankle"},{"euler":{"heading":5.25,"pitch":-16.125,"roll":39.5},"location":"Right Ankle"},{"euler":{"heading":46.0625,"pitch":-137.3125,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":83.9375,"pitch":129.625,"roll":16.625},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-130.875,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:57.323"} +{"sensors":[{"euler":{"heading":298.5,"pitch":145.25,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":111.0,"roll":41.1875},"location":"Left Ankle"},{"euler":{"heading":13.8125,"pitch":-9.75,"roll":43.0625},"location":"Right Ankle"},{"euler":{"heading":53.9375,"pitch":-131.9375,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":79.0,"pitch":132.9375,"roll":9.5},"location":"Right Knee"},{"euler":{"heading":55.1875,"pitch":-136.875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:57.424"} +{"sensors":[{"euler":{"heading":305.125,"pitch":140.375,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":90.25,"pitch":111.5,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":125.1875,"pitch":5.75,"roll":48.0625},"location":"Right Ankle"},{"euler":{"heading":54.875,"pitch":-132.1875,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":250.1875,"pitch":136.875,"roll":-3.625},"location":"Right Knee"},{"euler":{"heading":59.625,"pitch":-142.875,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:57.525"} +{"sensors":[{"euler":{"heading":312.125,"pitch":136.25,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":114.25,"roll":48.0625},"location":"Left Ankle"},{"euler":{"heading":54.3125,"pitch":25.0625,"roll":43.4375},"location":"Right Ankle"},{"euler":{"heading":49.6875,"pitch":-134.5,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":269.3125,"pitch":141.1875,"roll":-16.3125},"location":"Right Knee"},{"euler":{"heading":60.0,"pitch":-147.1875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:57.627"} +{"sensors":[{"euler":{"heading":318.0,"pitch":133.3125,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":101.875,"pitch":119.875,"roll":53.375},"location":"Left Ankle"},{"euler":{"heading":66.25,"pitch":34.125,"roll":36.3125},"location":"Right Ankle"},{"euler":{"heading":37.5,"pitch":-139.9375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":29.125,"pitch":139.875,"roll":-23.125},"location":"Right Knee"},{"euler":{"heading":59.375,"pitch":-149.875,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:57.727"} +{"sensors":[{"euler":{"heading":325.3125,"pitch":131.25,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":107.9375,"pitch":129.25,"roll":59.5625},"location":"Left Ankle"},{"euler":{"heading":57.4375,"pitch":33.6875,"roll":38.25},"location":"Right Ankle"},{"euler":{"heading":29.75,"pitch":-144.0625,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":39.125,"pitch":132.0,"roll":-20.875},"location":"Right Knee"},{"euler":{"heading":62.6875,"pitch":-155.5,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:57.828"} +{"sensors":[{"euler":{"heading":342.125,"pitch":129.0625,"roll":12.875},"location":"Left Knee"},{"euler":{"heading":123.1875,"pitch":161.875,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":47.875,"pitch":29.125,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":29.8125,"pitch":-144.0625,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":44.375,"pitch":127.1875,"roll":-17.3125},"location":"Right Knee"},{"euler":{"heading":50.75,"pitch":-140.625,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:57.930"} +{"sensors":[{"euler":{"heading":351.6875,"pitch":129.6875,"roll":8.875},"location":"Left Knee"},{"euler":{"heading":124.8125,"pitch":169.75,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":44.625,"pitch":26.0,"roll":39.4375},"location":"Right Ankle"},{"euler":{"heading":27.6875,"pitch":-145.0625,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":45.1875,"pitch":123.6875,"roll":-15.1875},"location":"Right Knee"},{"euler":{"heading":44.0625,"pitch":-123.25,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:58.31"} +{"sensors":[{"euler":{"heading":205.5625,"pitch":138.5625,"roll":17.625},"location":"Left Knee"},{"euler":{"heading":107.5,"pitch":132.0,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":41.75,"pitch":24.875,"roll":39.4375},"location":"Right Ankle"},{"euler":{"heading":28.3125,"pitch":-143.9375,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":46.875,"pitch":121.6875,"roll":-12.9375},"location":"Right Knee"},{"euler":{"heading":39.25,"pitch":-119.625,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:58.132"} +{"sensors":[{"euler":{"heading":220.0625,"pitch":153.8125,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":77.9375,"pitch":107.8125,"roll":41.5},"location":"Left Ankle"},{"euler":{"heading":36.875,"pitch":22.75,"roll":40.5},"location":"Right Ankle"},{"euler":{"heading":28.8125,"pitch":-145.5625,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":49.6875,"pitch":120.875,"roll":-9.75},"location":"Right Knee"},{"euler":{"heading":39.5625,"pitch":-119.6875,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:58.233"} +{"sensors":[{"euler":{"heading":232.3125,"pitch":164.8125,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":54.3125,"pitch":102.375,"roll":21.0625},"location":"Left Ankle"},{"euler":{"heading":30.625,"pitch":18.875,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":29.75,"pitch":-147.5,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":53.8125,"pitch":120.4375,"roll":-5.3125},"location":"Right Knee"},{"euler":{"heading":44.125,"pitch":-124.5625,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:58.334"} +{"sensors":[{"euler":{"heading":234.8125,"pitch":158.625,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":63.875,"pitch":108.0,"roll":26.625},"location":"Left Ankle"},{"euler":{"heading":24.1875,"pitch":10.125,"roll":42.1875},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-153.625,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":57.1875,"pitch":123.0625,"roll":0.0625},"location":"Right Knee"},{"euler":{"heading":51.4375,"pitch":-128.625,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:58.435"} +{"sensors":[{"euler":{"heading":295.25,"pitch":150.5,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":78.875,"pitch":112.125,"roll":35.5625},"location":"Left Ankle"},{"euler":{"heading":13.375,"pitch":-8.1875,"roll":40.8125},"location":"Right Ankle"},{"euler":{"heading":39.625,"pitch":-147.8125,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":69.0,"pitch":128.75,"roll":9.25},"location":"Right Knee"},{"euler":{"heading":53.0,"pitch":-131.25,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:58.535"} +{"sensors":[{"euler":{"heading":304.375,"pitch":144.125,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":93.0,"pitch":115.0,"roll":44.625},"location":"Left Ankle"},{"euler":{"heading":10.6875,"pitch":-15.75,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":49.625,"pitch":-136.4375,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":76.5625,"pitch":134.875,"roll":11.3125},"location":"Right Knee"},{"euler":{"heading":57.8125,"pitch":-137.1875,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:58.637"} +{"sensors":[{"euler":{"heading":309.875,"pitch":139.25,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":116.0625,"roll":47.125},"location":"Left Ankle"},{"euler":{"heading":25.875,"pitch":-4.0625,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":53.875,"pitch":-132.375,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":238.4375,"pitch":135.5,"roll":1.75},"location":"Right Knee"},{"euler":{"heading":62.375,"pitch":-143.375,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:58.738"} +{"sensors":[{"euler":{"heading":315.1875,"pitch":136.125,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":99.9375,"pitch":118.5,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":47.875,"pitch":20.125,"roll":43.0625},"location":"Right Ankle"},{"euler":{"heading":50.3125,"pitch":-134.1875,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":260.625,"pitch":137.75,"roll":-11.0},"location":"Right Knee"},{"euler":{"heading":62.5625,"pitch":-149.3125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:58.838"} +{"sensors":[{"euler":{"heading":320.0625,"pitch":133.75,"roll":29.9375},"location":"Left Knee"},{"euler":{"heading":104.875,"pitch":121.9375,"roll":53.75},"location":"Left Ankle"},{"euler":{"heading":61.8125,"pitch":32.5625,"roll":38.25},"location":"Right Ankle"},{"euler":{"heading":39.5,"pitch":-137.4375,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":274.8125,"pitch":140.25,"roll":-20.4375},"location":"Right Knee"},{"euler":{"heading":63.5625,"pitch":-154.6875,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:58.939"} +{"sensors":[{"euler":{"heading":324.9375,"pitch":131.8125,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":110.0,"pitch":128.4375,"roll":59.0625},"location":"Left Ankle"},{"euler":{"heading":62.375,"pitch":34.5625,"roll":36.125},"location":"Right Ankle"},{"euler":{"heading":29.6875,"pitch":-141.1875,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":36.25,"pitch":137.0625,"roll":-21.75},"location":"Right Knee"},{"euler":{"heading":65.4375,"pitch":-160.6875,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:59.40"} +{"sensors":[{"euler":{"heading":335.25,"pitch":131.375,"roll":15.5625},"location":"Left Knee"},{"euler":{"heading":117.125,"pitch":152.125,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":52.25,"pitch":28.8125,"roll":38.6875},"location":"Right Ankle"},{"euler":{"heading":30.5,"pitch":-142.125,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":43.625,"pitch":131.0625,"roll":-18.4375},"location":"Right Knee"},{"euler":{"heading":63.0625,"pitch":-154.75,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:59.141"} +{"sensors":[{"euler":{"heading":353.5,"pitch":128.5,"roll":7.5},"location":"Left Knee"},{"euler":{"heading":131.9375,"pitch":-178.5,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":47.0625,"pitch":25.8125,"roll":39.1875},"location":"Right Ankle"},{"euler":{"heading":25.6875,"pitch":-144.0,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":42.3125,"pitch":126.0625,"roll":-17.125},"location":"Right Knee"},{"euler":{"heading":48.5,"pitch":-113.4375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:59.241"} +{"sensors":[{"euler":{"heading":197.6875,"pitch":136.4375,"roll":11.9375},"location":"Left Knee"},{"euler":{"heading":116.625,"pitch":145.1875,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":42.8125,"pitch":23.0,"roll":39.0625},"location":"Right Ankle"},{"euler":{"heading":27.4375,"pitch":-143.9375,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":41.875,"pitch":123.3125,"roll":-15.25},"location":"Right Knee"},{"euler":{"heading":39.125,"pitch":-120.5625,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:59.342"} +{"sensors":[{"euler":{"heading":212.0625,"pitch":148.625,"roll":26.75},"location":"Left Knee"},{"euler":{"heading":82.6875,"pitch":109.75,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":39.9375,"pitch":21.5,"roll":39.5},"location":"Right Ankle"},{"euler":{"heading":29.25,"pitch":-142.6875,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":44.4375,"pitch":122.4375,"roll":-12.4375},"location":"Right Knee"},{"euler":{"heading":37.4375,"pitch":-118.75,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:59.443"} +{"sensors":[{"euler":{"heading":228.0,"pitch":162.375,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":55.4375,"pitch":102.125,"roll":23.4375},"location":"Left Ankle"},{"euler":{"heading":35.375,"pitch":18.3125,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":30.375,"pitch":-146.3125,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":47.0,"pitch":122.25,"roll":-8.8125},"location":"Right Knee"},{"euler":{"heading":40.0,"pitch":-119.625,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:59.548"} +{"sensors":[{"euler":{"heading":235.4375,"pitch":166.9375,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":54.375,"pitch":102.25,"roll":19.0},"location":"Left Ankle"},{"euler":{"heading":30.125,"pitch":12.9375,"roll":41.6875},"location":"Right Ankle"},{"euler":{"heading":30.75,"pitch":-152.4375,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":49.6875,"pitch":123.75,"roll":-4.25},"location":"Right Knee"},{"euler":{"heading":46.75,"pitch":-126.3125,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:59.648"} +{"sensors":[{"euler":{"heading":235.4375,"pitch":158.125,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":71.8125,"pitch":108.0,"roll":29.625},"location":"Left Ankle"},{"euler":{"heading":20.5,"pitch":0.5625,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":32.625,"pitch":-156.125,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":56.1875,"pitch":126.8125,"roll":3.0625},"location":"Right Knee"},{"euler":{"heading":50.3125,"pitch":-130.0625,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:59.749"} +{"sensors":[{"euler":{"heading":295.25,"pitch":150.375,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":80.5625,"pitch":110.6875,"roll":36.125},"location":"Left Ankle"},{"euler":{"heading":7.875,"pitch":-15.75,"roll":39.5625},"location":"Right Ankle"},{"euler":{"heading":43.5,"pitch":-144.5625,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":70.625,"pitch":129.125,"roll":11.625},"location":"Right Knee"},{"euler":{"heading":53.75,"pitch":-130.875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:59.850"} +{"sensors":[{"euler":{"heading":303.125,"pitch":144.1875,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":112.5625,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":14.5625,"pitch":-13.9375,"roll":42.5625},"location":"Right Ankle"},{"euler":{"heading":51.75,"pitch":-133.8125,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":71.375,"pitch":134.3125,"roll":7.5625},"location":"Right Knee"},{"euler":{"heading":58.8125,"pitch":-135.5,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:15:59.951"} +{"sensors":[{"euler":{"heading":309.4375,"pitch":139.25,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":94.25,"pitch":114.5625,"roll":44.0},"location":"Left Ankle"},{"euler":{"heading":125.4375,"pitch":4.3125,"roll":47.125},"location":"Right Ankle"},{"euler":{"heading":52.1875,"pitch":-133.1875,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":244.8125,"pitch":136.375,"roll":-4.3125},"location":"Right Knee"},{"euler":{"heading":60.5,"pitch":-140.75,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:00.52"} +{"sensors":[{"euler":{"heading":313.9375,"pitch":136.0625,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":117.625,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":141.625,"pitch":24.0625,"roll":45.3125},"location":"Right Ankle"},{"euler":{"heading":47.375,"pitch":-135.0,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":264.3125,"pitch":139.8125,"roll":-14.875},"location":"Right Knee"},{"euler":{"heading":59.5625,"pitch":-144.9375,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:00.153"} +{"sensors":[{"euler":{"heading":319.25,"pitch":133.1875,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":102.6875,"pitch":121.4375,"roll":51.9375},"location":"Left Ankle"},{"euler":{"heading":64.375,"pitch":35.25,"roll":37.5625},"location":"Right Ankle"},{"euler":{"heading":34.5,"pitch":-139.6875,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":275.3125,"pitch":140.75,"roll":-21.8125},"location":"Right Knee"},{"euler":{"heading":60.6875,"pitch":-151.3125,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:00.254"} +{"sensors":[{"euler":{"heading":324.625,"pitch":131.4375,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":106.75,"pitch":129.5,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":57.6875,"pitch":33.6875,"roll":39.5},"location":"Right Ankle"},{"euler":{"heading":28.0625,"pitch":-142.8125,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":36.1875,"pitch":135.5625,"roll":-20.6875},"location":"Right Knee"},{"euler":{"heading":63.5,"pitch":-157.5625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:00.355"} +{"sensors":[{"euler":{"heading":337.125,"pitch":131.4375,"roll":13.3125},"location":"Left Knee"},{"euler":{"heading":118.9375,"pitch":161.75,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":48.8125,"pitch":30.0625,"roll":41.0},"location":"Right Ankle"},{"euler":{"heading":29.5625,"pitch":-141.9375,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":41.9375,"pitch":130.125,"roll":-17.8125},"location":"Right Knee"},{"euler":{"heading":53.25,"pitch":-145.625,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:00.456"} +{"sensors":[{"euler":{"heading":351.4375,"pitch":129.5625,"roll":9.375},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":165.125,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":43.625,"pitch":28.5625,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":25.875,"pitch":-143.8125,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":42.9375,"pitch":123.6875,"roll":-17.0},"location":"Right Knee"},{"euler":{"heading":45.4375,"pitch":-124.5625,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:00.557"} +{"sensors":[{"euler":{"heading":207.125,"pitch":138.5,"roll":18.875},"location":"Left Knee"},{"euler":{"heading":107.5625,"pitch":113.875,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":39.75,"pitch":26.875,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":25.6875,"pitch":-142.875,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":45.0,"pitch":121.4375,"roll":-14.8125},"location":"Right Knee"},{"euler":{"heading":37.75,"pitch":-120.375,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:00.657"} +{"sensors":[{"euler":{"heading":219.875,"pitch":154.4375,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":73.0625,"pitch":108.375,"roll":37.8125},"location":"Left Ankle"},{"euler":{"heading":36.25,"pitch":24.8125,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":25.9375,"pitch":-144.75,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":45.875,"pitch":119.75,"roll":-12.375},"location":"Right Knee"},{"euler":{"heading":36.1875,"pitch":-118.9375,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:00.757"} +{"sensors":[{"euler":{"heading":231.25,"pitch":166.4375,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":52.0,"pitch":100.0,"roll":19.375},"location":"Left Ankle"},{"euler":{"heading":31.0625,"pitch":21.4375,"roll":41.5625},"location":"Right Ankle"},{"euler":{"heading":26.5625,"pitch":-147.5625,"roll":71.875},"location":"Right Hip"},{"euler":{"heading":50.4375,"pitch":119.1875,"roll":-7.8125},"location":"Right Knee"},{"euler":{"heading":41.5,"pitch":-122.6875,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:00.858"} +{"sensors":[{"euler":{"heading":236.5625,"pitch":163.375,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":59.1875,"pitch":105.8125,"roll":22.125},"location":"Left Ankle"},{"euler":{"heading":24.8125,"pitch":12.625,"roll":42.0},"location":"Right Ankle"},{"euler":{"heading":28.125,"pitch":-154.875,"roll":71.9375},"location":"Right Hip"},{"euler":{"heading":54.3125,"pitch":121.625,"roll":-2.0},"location":"Right Knee"},{"euler":{"heading":50.25,"pitch":-127.5625,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:00.958"} +{"sensors":[{"euler":{"heading":287.3125,"pitch":155.375,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":75.6875,"pitch":108.6875,"roll":33.875},"location":"Left Ankle"},{"euler":{"heading":16.875,"pitch":-2.4375,"roll":42.6875},"location":"Right Ankle"},{"euler":{"heading":33.3125,"pitch":-150.875,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":66.3125,"pitch":129.375,"roll":8.3125},"location":"Right Knee"},{"euler":{"heading":48.375,"pitch":-128.9375,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:01.59"} +{"sensors":[{"euler":{"heading":295.1875,"pitch":149.0625,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":81.3125,"pitch":109.8125,"roll":38.0},"location":"Left Ankle"},{"euler":{"heading":9.8125,"pitch":-16.5625,"roll":42.3125},"location":"Right Ankle"},{"euler":{"heading":48.5,"pitch":-135.625,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":75.875,"pitch":133.625,"roll":11.9375},"location":"Right Knee"},{"euler":{"heading":53.3125,"pitch":-135.5625,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:01.160"} +{"sensors":[{"euler":{"heading":298.6875,"pitch":144.875,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":84.25,"pitch":109.5625,"roll":40.75},"location":"Left Ankle"},{"euler":{"heading":110.8125,"pitch":-5.3125,"roll":45.1875},"location":"Right Ankle"},{"euler":{"heading":52.3125,"pitch":-132.5625,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":68.125,"pitch":133.375,"roll":5.25},"location":"Right Knee"},{"euler":{"heading":56.4375,"pitch":-141.625,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:01.261"} +{"sensors":[{"euler":{"heading":303.25,"pitch":141.5,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":87.5,"pitch":110.75,"roll":43.6875},"location":"Left Ankle"},{"euler":{"heading":132.1875,"pitch":14.8125,"roll":46.5},"location":"Right Ankle"},{"euler":{"heading":50.5,"pitch":-134.125,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":254.8125,"pitch":138.4375,"roll":-9.3125},"location":"Right Knee"},{"euler":{"heading":57.25,"pitch":-147.375,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:01.362"} +{"sensors":[{"euler":{"heading":311.8125,"pitch":137.1875,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":94.25,"pitch":114.8125,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":30.375,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":42.3125,"pitch":-138.875,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":269.6875,"pitch":141.3125,"roll":-20.25},"location":"Right Knee"},{"euler":{"heading":58.6875,"pitch":-150.5625,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:01.462"} +{"sensors":[{"euler":{"heading":318.4375,"pitch":134.4375,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":121.1875,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":66.75,"pitch":35.5625,"roll":35.9375},"location":"Right Ankle"},{"euler":{"heading":31.4375,"pitch":-143.4375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":275.25,"pitch":140.625,"roll":-24.875},"location":"Right Knee"},{"euler":{"heading":60.0,"pitch":-154.25,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:01.563"} +{"sensors":[{"euler":{"heading":330.5,"pitch":131.0625,"roll":20.0625},"location":"Left Knee"},{"euler":{"heading":109.5625,"pitch":136.9375,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":55.0,"pitch":32.3125,"roll":38.6875},"location":"Right Ankle"},{"euler":{"heading":27.75,"pitch":-145.9375,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":36.0,"pitch":131.5,"roll":-21.4375},"location":"Right Knee"},{"euler":{"heading":63.3125,"pitch":-156.1875,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:01.664"} +{"sensors":[{"euler":{"heading":349.0,"pitch":128.0625,"roll":10.5625},"location":"Left Knee"},{"euler":{"heading":130.25,"pitch":173.0,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":49.25,"pitch":28.6875,"roll":39.6875},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-146.5,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":36.25,"pitch":128.25,"roll":-19.5625},"location":"Right Knee"},{"euler":{"heading":51.75,"pitch":-137.375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:01.765"} +{"sensors":[{"euler":{"heading":352.125,"pitch":131.625,"roll":9.5625},"location":"Left Knee"},{"euler":{"heading":123.4375,"pitch":160.5,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":45.75,"pitch":27.0625,"roll":39.0625},"location":"Right Ankle"},{"euler":{"heading":26.4375,"pitch":-146.8125,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":38.875,"pitch":124.375,"roll":-17.5625},"location":"Right Knee"},{"euler":{"heading":42.4375,"pitch":-123.9375,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:01.866"} +{"sensors":[{"euler":{"heading":212.0,"pitch":145.0,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":118.5625,"roll":54.3125},"location":"Left Ankle"},{"euler":{"heading":41.3125,"pitch":25.0625,"roll":40.25},"location":"Right Ankle"},{"euler":{"heading":29.8125,"pitch":-143.6875,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":41.5,"pitch":122.6875,"roll":-14.375},"location":"Right Knee"},{"euler":{"heading":38.6875,"pitch":-120.0,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:01.966"} +{"sensors":[{"euler":{"heading":228.6875,"pitch":160.4375,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":62.25,"pitch":106.0625,"roll":28.3125},"location":"Left Ankle"},{"euler":{"heading":36.3125,"pitch":22.9375,"roll":40.5},"location":"Right Ankle"},{"euler":{"heading":30.5625,"pitch":-144.75,"roll":70.1875},"location":"Right Hip"},{"euler":{"heading":45.0,"pitch":121.0625,"roll":-11.3125},"location":"Right Knee"},{"euler":{"heading":40.1875,"pitch":-120.375,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:02.67"} +{"sensors":[{"euler":{"heading":236.4375,"pitch":168.3125,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":50.3125,"pitch":100.9375,"roll":16.8125},"location":"Left Ankle"},{"euler":{"heading":29.125,"pitch":17.5,"roll":40.75},"location":"Right Ankle"},{"euler":{"heading":31.1875,"pitch":-148.5625,"roll":71.3125},"location":"Right Hip"},{"euler":{"heading":48.0,"pitch":121.5,"roll":-6.875},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-126.875,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:02.168"} +{"sensors":[{"euler":{"heading":236.875,"pitch":161.0,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":62.9375,"pitch":105.625,"roll":23.6875},"location":"Left Ankle"},{"euler":{"heading":22.0,"pitch":6.25,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":32.375,"pitch":-156.3125,"roll":70.6875},"location":"Right Hip"},{"euler":{"heading":51.125,"pitch":124.6875,"roll":-1.25},"location":"Right Knee"},{"euler":{"heading":52.8125,"pitch":-131.75,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:02.269"} +{"sensors":[{"euler":{"heading":289.875,"pitch":153.0,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":73.9375,"pitch":108.25,"roll":32.9375},"location":"Left Ankle"},{"euler":{"heading":8.9375,"pitch":-9.5,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":40.625,"pitch":-147.875,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":66.125,"pitch":129.4375,"roll":8.5625},"location":"Right Knee"},{"euler":{"heading":52.5,"pitch":-134.1875,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:02.370"} +{"sensors":[{"euler":{"heading":298.1875,"pitch":146.75,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":82.8125,"pitch":110.6875,"roll":37.8125},"location":"Left Ankle"},{"euler":{"heading":10.75,"pitch":-15.4375,"roll":42.625},"location":"Right Ankle"},{"euler":{"heading":50.125,"pitch":-134.8125,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":71.9375,"pitch":133.875,"roll":9.0},"location":"Right Knee"},{"euler":{"heading":56.8125,"pitch":-139.375,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:02.472"} +{"sensors":[{"euler":{"heading":305.4375,"pitch":141.6875,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":88.4375,"pitch":112.0,"roll":41.25},"location":"Left Ankle"},{"euler":{"heading":120.875,"pitch":2.3125,"roll":46.375},"location":"Right Ankle"},{"euler":{"heading":52.75,"pitch":-132.375,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":57.5625,"pitch":135.25,"roll":-3.0},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-143.5625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:02.572"} +{"sensors":[{"euler":{"heading":312.25,"pitch":137.4375,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":93.4375,"pitch":114.125,"roll":44.6875},"location":"Left Ankle"},{"euler":{"heading":137.75,"pitch":19.1875,"roll":46.125},"location":"Right Ankle"},{"euler":{"heading":51.0625,"pitch":-133.75,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":261.125,"pitch":139.9375,"roll":-14.75},"location":"Right Knee"},{"euler":{"heading":63.5625,"pitch":-149.5625,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:02.673"} +{"sensors":[{"euler":{"heading":317.9375,"pitch":134.0625,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":99.0625,"pitch":118.4375,"roll":49.0},"location":"Left Ankle"},{"euler":{"heading":64.625,"pitch":31.625,"roll":38.5},"location":"Right Ankle"},{"euler":{"heading":42.875,"pitch":-138.875,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":273.125,"pitch":143.6875,"roll":-24.25},"location":"Right Knee"},{"euler":{"heading":63.375,"pitch":-153.4375,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:02.774"} +{"sensors":[{"euler":{"heading":324.625,"pitch":131.5625,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":104.75,"pitch":124.875,"roll":54.625},"location":"Left Ankle"},{"euler":{"heading":61.3125,"pitch":35.3125,"roll":37.6875},"location":"Right Ankle"},{"euler":{"heading":32.3125,"pitch":-143.5625,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":31.8125,"pitch":136.25,"roll":-22.6875},"location":"Right Knee"},{"euler":{"heading":64.0,"pitch":-157.875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:02.874"} +{"sensors":[{"euler":{"heading":334.0,"pitch":132.125,"roll":16.8125},"location":"Left Knee"},{"euler":{"heading":109.9375,"pitch":144.0625,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":51.75,"pitch":30.4375,"roll":39.8125},"location":"Right Ankle"},{"euler":{"heading":31.1875,"pitch":-143.875,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":37.1875,"pitch":130.5625,"roll":-20.375},"location":"Right Knee"},{"euler":{"heading":58.875,"pitch":-152.875,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:02.975"} +{"sensors":[{"euler":{"heading":353.25,"pitch":128.3125,"roll":9.4375},"location":"Left Knee"},{"euler":{"heading":124.5,"pitch":169.1875,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":46.4375,"pitch":28.4375,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":26.125,"pitch":-145.375,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":38.75,"pitch":126.25,"roll":-18.875},"location":"Right Knee"},{"euler":{"heading":47.4375,"pitch":-126.25,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:03.75"} +{"sensors":[{"euler":{"heading":203.375,"pitch":137.0,"roll":14.3125},"location":"Left Knee"},{"euler":{"heading":111.6875,"pitch":139.9375,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":42.8125,"pitch":25.5625,"roll":40.4375},"location":"Right Ankle"},{"euler":{"heading":28.1875,"pitch":-143.625,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":40.875,"pitch":124.5,"roll":-16.3125},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-121.375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:03.176"} +{"sensors":[{"euler":{"heading":217.9375,"pitch":152.5,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":111.3125,"roll":42.1875},"location":"Left Ankle"},{"euler":{"heading":40.0625,"pitch":22.5625,"roll":41.0625},"location":"Right Ankle"},{"euler":{"heading":28.5,"pitch":-145.625,"roll":70.1875},"location":"Right Hip"},{"euler":{"heading":41.0,"pitch":123.3125,"roll":-14.0625},"location":"Right Knee"},{"euler":{"heading":38.125,"pitch":-119.5625,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:03.277"} +{"sensors":[{"euler":{"heading":230.75,"pitch":165.3125,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":53.375,"pitch":101.875,"roll":21.6875},"location":"Left Ankle"},{"euler":{"heading":35.5,"pitch":18.75,"roll":41.8125},"location":"Right Ankle"},{"euler":{"heading":28.875,"pitch":-148.875,"roll":71.3125},"location":"Right Hip"},{"euler":{"heading":44.4375,"pitch":122.875,"roll":-9.9375},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-122.5625,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:03.378"} +{"sensors":[{"euler":{"heading":236.0,"pitch":167.8125,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":51.6875,"pitch":102.125,"roll":17.9375},"location":"Left Ankle"},{"euler":{"heading":28.375,"pitch":11.25,"roll":43.25},"location":"Right Ankle"},{"euler":{"heading":30.1875,"pitch":-156.375,"roll":71.5},"location":"Right Hip"},{"euler":{"heading":47.6875,"pitch":125.1875,"roll":-4.875},"location":"Right Knee"},{"euler":{"heading":48.375,"pitch":-127.875,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:03.478"} +{"sensors":[{"euler":{"heading":235.5625,"pitch":157.6875,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":68.8125,"pitch":107.375,"roll":29.625},"location":"Left Ankle"},{"euler":{"heading":20.3125,"pitch":-2.5625,"roll":42.125},"location":"Right Ankle"},{"euler":{"heading":34.125,"pitch":-156.8125,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":51.25,"pitch":130.625,"roll":1.3125},"location":"Right Knee"},{"euler":{"heading":50.625,"pitch":-130.875,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:03.578"} +{"sensors":[{"euler":{"heading":297.9375,"pitch":149.875,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":78.8125,"pitch":109.5625,"roll":35.0},"location":"Left Ankle"},{"euler":{"heading":8.25,"pitch":-14.4375,"roll":39.25},"location":"Right Ankle"},{"euler":{"heading":45.8125,"pitch":-140.5,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":70.875,"pitch":129.4375,"roll":10.8125},"location":"Right Knee"},{"euler":{"heading":55.6875,"pitch":-135.0625,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:03.679"} +{"sensors":[{"euler":{"heading":299.5625,"pitch":145.9375,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":82.5,"pitch":109.4375,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":19.4375,"pitch":-6.6875,"roll":44.375},"location":"Right Ankle"},{"euler":{"heading":53.0625,"pitch":-134.125,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":64.5,"pitch":133.6875,"roll":4.25},"location":"Right Knee"},{"euler":{"heading":57.625,"pitch":-140.875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:03.782"} +{"sensors":[{"euler":{"heading":303.875,"pitch":142.4375,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":85.6875,"pitch":110.4375,"roll":41.5},"location":"Left Ankle"},{"euler":{"heading":123.3125,"pitch":5.5,"roll":50.5625},"location":"Right Ankle"},{"euler":{"heading":51.5,"pitch":-133.0625,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":249.875,"pitch":136.75,"roll":-7.25},"location":"Right Knee"},{"euler":{"heading":58.4375,"pitch":-146.25,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:03.882"} +{"sensors":[{"euler":{"heading":310.125,"pitch":138.9375,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":89.6875,"pitch":112.4375,"roll":44.75},"location":"Left Ankle"},{"euler":{"heading":55.1875,"pitch":28.0625,"roll":42.625},"location":"Right Ankle"},{"euler":{"heading":43.875,"pitch":-136.5,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":267.125,"pitch":139.4375,"roll":-19.25},"location":"Right Knee"},{"euler":{"heading":59.5,"pitch":-151.25,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:03.983"} +{"sensors":[{"euler":{"heading":317.75,"pitch":135.375,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":117.0,"roll":50.625},"location":"Left Ankle"},{"euler":{"heading":63.6875,"pitch":33.4375,"roll":36.5625},"location":"Right Ankle"},{"euler":{"heading":32.625,"pitch":-141.6875,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":21.125,"pitch":139.5,"roll":-25.125},"location":"Right Knee"},{"euler":{"heading":61.6875,"pitch":-155.8125,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:04.84"} +{"sensors":[{"euler":{"heading":324.75,"pitch":132.375,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":103.125,"pitch":126.375,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":53.1875,"pitch":29.8125,"roll":39.375},"location":"Right Ankle"},{"euler":{"heading":27.875,"pitch":-144.375,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":29.5625,"pitch":132.9375,"roll":-22.625},"location":"Right Knee"},{"euler":{"heading":65.5,"pitch":-159.1875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:04.185"} +{"sensors":[{"euler":{"heading":339.25,"pitch":132.0,"roll":12.875},"location":"Left Knee"},{"euler":{"heading":118.4375,"pitch":156.375,"roll":65.375},"location":"Left Ankle"},{"euler":{"heading":48.25,"pitch":24.75,"roll":39.625},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-145.25,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":31.5,"pitch":129.625,"roll":-20.1875},"location":"Right Knee"},{"euler":{"heading":50.5625,"pitch":-141.3125,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:04.286"} +{"sensors":[{"euler":{"heading":347.0,"pitch":133.5,"roll":10.25},"location":"Left Knee"},{"euler":{"heading":118.8125,"pitch":157.3125,"roll":68.8125},"location":"Left Ankle"},{"euler":{"heading":45.0,"pitch":21.375,"roll":39.4375},"location":"Right Ankle"},{"euler":{"heading":27.0625,"pitch":-146.75,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":34.3125,"pitch":128.375,"roll":-17.0},"location":"Right Knee"},{"euler":{"heading":42.1875,"pitch":-124.6875,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:04.387"} +{"sensors":[{"euler":{"heading":207.1875,"pitch":141.5,"roll":19.875},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":123.8125,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":41.4375,"pitch":19.125,"roll":40.0},"location":"Right Ankle"},{"euler":{"heading":29.0625,"pitch":-145.25,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":34.875,"pitch":127.0,"roll":-15.0625},"location":"Right Knee"},{"euler":{"heading":38.3125,"pitch":-121.875,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:04.488"} +{"sensors":[{"euler":{"heading":221.8125,"pitch":155.6875,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":70.9375,"pitch":108.8125,"roll":36.3125},"location":"Left Ankle"},{"euler":{"heading":37.25,"pitch":17.0,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":30.0625,"pitch":-148.125,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":38.25,"pitch":125.625,"roll":-11.875},"location":"Right Knee"},{"euler":{"heading":38.8125,"pitch":-120.6875,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:04.589"} +{"sensors":[{"euler":{"heading":234.4375,"pitch":167.0,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":51.25,"pitch":101.0,"roll":17.8125},"location":"Left Ankle"},{"euler":{"heading":30.875,"pitch":11.625,"roll":40.625},"location":"Right Ankle"},{"euler":{"heading":30.875,"pitch":-152.4375,"roll":70.625},"location":"Right Hip"},{"euler":{"heading":42.125,"pitch":125.75,"roll":-7.625},"location":"Right Knee"},{"euler":{"heading":44.125,"pitch":-124.75,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:04.692"} +{"sensors":[{"euler":{"heading":237.0625,"pitch":163.75,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":57.5,"pitch":104.25,"roll":21.3125},"location":"Left Ankle"},{"euler":{"heading":24.0,"pitch":3.5625,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":30.5625,"pitch":-162.0625,"roll":70.8125},"location":"Right Hip"},{"euler":{"heading":46.25,"pitch":127.9375,"roll":-2.625},"location":"Right Knee"},{"euler":{"heading":51.1875,"pitch":-128.5,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:04.792"} +{"sensors":[{"euler":{"heading":291.125,"pitch":154.0625,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":76.125,"pitch":109.75,"roll":33.375},"location":"Left Ankle"},{"euler":{"heading":14.625,"pitch":-8.4375,"roll":39.75},"location":"Right Ankle"},{"euler":{"heading":36.5625,"pitch":-155.3125,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":54.3125,"pitch":131.5625,"roll":4.1875},"location":"Right Knee"},{"euler":{"heading":52.0625,"pitch":-131.0,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:04.894"} +{"sensors":[{"euler":{"heading":300.875,"pitch":147.0625,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":110.3125,"roll":37.25},"location":"Left Ankle"},{"euler":{"heading":8.3125,"pitch":-16.25,"roll":38.375},"location":"Right Ankle"},{"euler":{"heading":46.0625,"pitch":-139.0625,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":67.75,"pitch":133.0,"roll":10.375},"location":"Right Knee"},{"euler":{"heading":57.1875,"pitch":-136.9375,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:04.995"} +{"sensors":[{"euler":{"heading":303.0625,"pitch":143.6875,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":86.8125,"pitch":110.6875,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":22.75,"pitch":-5.125,"roll":42.5},"location":"Right Ankle"},{"euler":{"heading":51.875,"pitch":-133.5,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":59.5,"pitch":134.4375,"roll":2.0},"location":"Right Knee"},{"euler":{"heading":59.0,"pitch":-143.0,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:05.95"} +{"sensors":[{"euler":{"heading":309.25,"pitch":139.625,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":91.1875,"pitch":112.4375,"roll":43.125},"location":"Left Ankle"},{"euler":{"heading":44.0625,"pitch":16.1875,"roll":43.0625},"location":"Right Ankle"},{"euler":{"heading":49.8125,"pitch":-134.125,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":253.6875,"pitch":137.4375,"roll":-10.5625},"location":"Right Knee"},{"euler":{"heading":59.8125,"pitch":-147.625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:05.197"} +{"sensors":[{"euler":{"heading":316.75,"pitch":135.4375,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":96.5,"pitch":115.375,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":29.8125,"roll":40.25},"location":"Right Ankle"},{"euler":{"heading":42.9375,"pitch":-136.6875,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":269.8125,"pitch":141.125,"roll":-20.6875},"location":"Right Knee"},{"euler":{"heading":61.5,"pitch":-152.3125,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:05.297"} +{"sensors":[{"euler":{"heading":322.875,"pitch":132.1875,"roll":28.9375},"location":"Left Knee"},{"euler":{"heading":102.5625,"pitch":120.625,"roll":51.6875},"location":"Left Ankle"},{"euler":{"heading":62.0,"pitch":34.3125,"roll":36.9375},"location":"Right Ankle"},{"euler":{"heading":32.4375,"pitch":-141.375,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":26.875,"pitch":139.25,"roll":-23.5},"location":"Right Knee"},{"euler":{"heading":62.5625,"pitch":-157.25,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:05.398"} +{"sensors":[{"euler":{"heading":331.25,"pitch":130.75,"roll":20.8125},"location":"Left Knee"},{"euler":{"heading":106.0625,"pitch":131.6875,"roll":58.75},"location":"Left Ankle"},{"euler":{"heading":51.25,"pitch":29.6875,"roll":39.75},"location":"Right Ankle"},{"euler":{"heading":27.625,"pitch":-144.3125,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":34.5,"pitch":131.4375,"roll":-21.3125},"location":"Right Knee"},{"euler":{"heading":62.5625,"pitch":-156.3125,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:05.499"} +{"sensors":[{"euler":{"heading":348.1875,"pitch":128.6875,"roll":11.875},"location":"Left Knee"},{"euler":{"heading":128.4375,"pitch":168.0,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":45.9375,"pitch":25.875,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":24.9375,"pitch":-145.75,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":36.8125,"pitch":127.375,"roll":-19.0625},"location":"Right Knee"},{"euler":{"heading":46.5625,"pitch":-134.4375,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:05.599"} +{"sensors":[{"euler":{"heading":343.9375,"pitch":135.5625,"roll":13.375},"location":"Left Knee"},{"euler":{"heading":115.8125,"pitch":148.25,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":42.5,"pitch":23.5,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":26.0,"pitch":-145.1875,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":38.625,"pitch":125.3125,"roll":-16.5625},"location":"Right Knee"},{"euler":{"heading":40.3125,"pitch":-124.0,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:05.700"} +{"sensors":[{"euler":{"heading":214.1875,"pitch":147.875,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":87.4375,"pitch":114.8125,"roll":51.0},"location":"Left Ankle"},{"euler":{"heading":38.4375,"pitch":21.875,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":27.0625,"pitch":-144.4375,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":41.125,"pitch":123.375,"roll":-14.1875},"location":"Right Knee"},{"euler":{"heading":37.5625,"pitch":-120.3125,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:05.801"} +{"sensors":[{"euler":{"heading":228.3125,"pitch":162.625,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":59.125,"pitch":103.1875,"roll":26.9375},"location":"Left Ankle"},{"euler":{"heading":33.3125,"pitch":18.8125,"roll":41.0625},"location":"Right Ankle"},{"euler":{"heading":28.375,"pitch":-145.8125,"roll":71.125},"location":"Right Hip"},{"euler":{"heading":43.5625,"pitch":121.5,"roll":-10.8125},"location":"Right Knee"},{"euler":{"heading":39.4375,"pitch":-121.5,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:05.902"} +{"sensors":[{"euler":{"heading":237.375,"pitch":169.0,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":51.9375,"pitch":102.25,"roll":17.5},"location":"Left Ankle"},{"euler":{"heading":26.0625,"pitch":12.4375,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":29.3125,"pitch":-152.125,"roll":72.0},"location":"Right Hip"},{"euler":{"heading":51.0,"pitch":122.8125,"roll":-3.5},"location":"Right Knee"},{"euler":{"heading":45.375,"pitch":-126.75,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:06.4"} +{"sensors":[{"euler":{"heading":237.5625,"pitch":159.8125,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":71.3125,"pitch":107.1875,"roll":28.375},"location":"Left Ankle"},{"euler":{"heading":18.3125,"pitch":-1.125,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":31.0625,"pitch":-156.75,"roll":70.6875},"location":"Right Hip"},{"euler":{"heading":55.5,"pitch":127.0,"roll":2.5},"location":"Right Knee"},{"euler":{"heading":47.8125,"pitch":-128.75,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:06.104"} +{"sensors":[{"euler":{"heading":291.625,"pitch":152.3125,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":77.0625,"pitch":109.75,"roll":35.4375},"location":"Left Ankle"},{"euler":{"heading":7.1875,"pitch":-16.0625,"roll":37.5625},"location":"Right Ankle"},{"euler":{"heading":41.9375,"pitch":-129.625,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":68.6875,"pitch":130.25,"roll":11.0},"location":"Right Knee"},{"euler":{"heading":50.75,"pitch":-130.375,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:06.205"} +{"sensors":[{"euler":{"heading":296.6875,"pitch":147.75,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":80.5625,"pitch":110.3125,"roll":38.5625},"location":"Left Ankle"},{"euler":{"heading":11.6875,"pitch":-15.6875,"roll":41.1875},"location":"Right Ankle"},{"euler":{"heading":51.0625,"pitch":-135.75,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":70.0625,"pitch":135.0,"roll":8.0625},"location":"Right Knee"},{"euler":{"heading":53.5625,"pitch":-137.0,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:06.307"} +{"sensors":[{"euler":{"heading":301.8125,"pitch":143.4375,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":85.875,"pitch":111.1875,"roll":42.0},"location":"Left Ankle"},{"euler":{"heading":121.25,"pitch":1.5,"roll":46.0625},"location":"Right Ankle"},{"euler":{"heading":51.5,"pitch":-134.375,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":242.875,"pitch":136.875,"roll":-2.8125},"location":"Right Knee"},{"euler":{"heading":56.375,"pitch":-143.125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:06.408"} +{"sensors":[{"euler":{"heading":310.5625,"pitch":138.75,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":114.0,"roll":45.6875},"location":"Left Ankle"},{"euler":{"heading":139.75,"pitch":19.5,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":47.75,"pitch":-135.875,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":260.6875,"pitch":140.8125,"roll":-13.9375},"location":"Right Knee"},{"euler":{"heading":58.0,"pitch":-147.25,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:06.509"} +{"sensors":[{"euler":{"heading":315.5625,"pitch":136.0,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":96.75,"pitch":116.8125,"roll":50.0625},"location":"Left Ankle"},{"euler":{"heading":64.125,"pitch":32.6875,"roll":37.0},"location":"Right Ankle"},{"euler":{"heading":37.75,"pitch":-139.375,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":273.75,"pitch":142.0,"roll":-23.625},"location":"Right Knee"},{"euler":{"heading":58.25,"pitch":-151.0625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:06.610"} +{"sensors":[{"euler":{"heading":320.9375,"pitch":134.375,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":100.875,"pitch":121.5625,"roll":55.375},"location":"Left Ankle"},{"euler":{"heading":60.5625,"pitch":33.125,"roll":37.125},"location":"Right Ankle"},{"euler":{"heading":29.25,"pitch":-142.5625,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":29.25,"pitch":137.375,"roll":-22.75},"location":"Right Knee"},{"euler":{"heading":60.6875,"pitch":-158.1875,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:06.710"} +{"sensors":[{"euler":{"heading":332.5625,"pitch":132.75,"roll":16.75},"location":"Left Knee"},{"euler":{"heading":109.5,"pitch":141.9375,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":51.0625,"pitch":28.5,"roll":39.0625},"location":"Right Ankle"},{"euler":{"heading":28.5625,"pitch":-144.0625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":37.1875,"pitch":130.1875,"roll":-19.875},"location":"Right Knee"},{"euler":{"heading":56.125,"pitch":-152.25,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:06.811"} +{"sensors":[{"euler":{"heading":351.75,"pitch":129.125,"roll":9.5625},"location":"Left Knee"},{"euler":{"heading":123.375,"pitch":167.4375,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":46.25,"pitch":24.75,"roll":39.375},"location":"Right Ankle"},{"euler":{"heading":24.8125,"pitch":-146.0,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":37.9375,"pitch":127.25,"roll":-17.75},"location":"Right Knee"},{"euler":{"heading":44.875,"pitch":-129.5625,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:06.912"} +{"sensors":[{"euler":{"heading":202.0625,"pitch":137.375,"roll":14.25},"location":"Left Knee"},{"euler":{"heading":112.625,"pitch":140.1875,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":43.375,"pitch":21.75,"roll":39.625},"location":"Right Ankle"},{"euler":{"heading":26.875,"pitch":-145.875,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":38.875,"pitch":126.1875,"roll":-15.375},"location":"Right Knee"},{"euler":{"heading":37.25,"pitch":-123.0,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:07.12"} +{"sensors":[{"euler":{"heading":215.875,"pitch":150.1875,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":81.625,"pitch":111.375,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":38.75,"pitch":19.125,"roll":39.875},"location":"Right Ankle"},{"euler":{"heading":29.0625,"pitch":-146.625,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":40.6875,"pitch":125.6875,"roll":-12.8125},"location":"Right Knee"},{"euler":{"heading":36.75,"pitch":-120.25,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:07.114"} +{"sensors":[{"euler":{"heading":231.0625,"pitch":163.3125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":56.25,"pitch":104.6875,"roll":23.375},"location":"Left Ankle"},{"euler":{"heading":33.4375,"pitch":16.0,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":30.9375,"pitch":-144.9375,"roll":70.875},"location":"Right Hip"},{"euler":{"heading":45.1875,"pitch":124.25,"roll":-8.9375},"location":"Right Knee"},{"euler":{"heading":40.0625,"pitch":-121.75,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:07.215"} +{"sensors":[{"euler":{"heading":237.0,"pitch":169.8125,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":50.5,"pitch":101.25,"roll":16.5},"location":"Left Ankle"},{"euler":{"heading":26.8125,"pitch":9.25,"roll":41.5},"location":"Right Ankle"},{"euler":{"heading":29.75,"pitch":-153.5,"roll":72.25},"location":"Right Hip"},{"euler":{"heading":48.625,"pitch":124.3125,"roll":-4.25},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-126.75,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:07.315"} +{"sensors":[{"euler":{"heading":238.5,"pitch":160.5,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":70.5,"pitch":108.1875,"roll":29.1875},"location":"Left Ankle"},{"euler":{"heading":18.8125,"pitch":-5.0625,"roll":39.5625},"location":"Right Ankle"},{"euler":{"heading":31.375,"pitch":-160.5625,"roll":70.6875},"location":"Right Hip"},{"euler":{"heading":52.5625,"pitch":129.1875,"roll":1.875},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-130.75,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:07.415"} +{"sensors":[{"euler":{"heading":293.125,"pitch":151.75,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":77.5625,"pitch":109.75,"roll":34.75},"location":"Left Ankle"},{"euler":{"heading":6.0625,"pitch":-15.125,"roll":36.625},"location":"Right Ankle"},{"euler":{"heading":42.25,"pitch":-143.6875,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":70.625,"pitch":128.375,"roll":12.25},"location":"Right Knee"},{"euler":{"heading":51.75,"pitch":-132.8125,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:07.516"} +{"sensors":[{"euler":{"heading":300.25,"pitch":146.25,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":83.8125,"pitch":110.375,"roll":38.5625},"location":"Left Ankle"},{"euler":{"heading":10.625,"pitch":-15.5,"roll":41.0},"location":"Right Ankle"},{"euler":{"heading":51.0,"pitch":-135.0,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":73.125,"pitch":132.9375,"roll":9.875},"location":"Right Knee"},{"euler":{"heading":56.625,"pitch":-138.875,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:07.617"} +{"sensors":[{"euler":{"heading":306.5,"pitch":141.4375,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":112.5,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":121.0625,"pitch":-1.8125,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":53.3125,"pitch":-133.3125,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":243.625,"pitch":137.3125,"roll":-3.3125},"location":"Right Knee"},{"euler":{"heading":59.0,"pitch":-144.125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:07.718"} +{"sensors":[{"euler":{"heading":313.625,"pitch":137.5,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":94.5625,"pitch":115.25,"roll":46.0},"location":"Left Ankle"},{"euler":{"heading":139.25,"pitch":18.4375,"roll":45.6875},"location":"Right Ankle"},{"euler":{"heading":48.9375,"pitch":-134.4375,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":262.4375,"pitch":140.625,"roll":-14.9375},"location":"Right Knee"},{"euler":{"heading":59.25,"pitch":-148.1875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:07.818"} +{"sensors":[{"euler":{"heading":318.6875,"pitch":134.4375,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":100.1875,"pitch":118.8125,"roll":50.125},"location":"Left Ankle"},{"euler":{"heading":63.0625,"pitch":33.3125,"roll":37.125},"location":"Right Ankle"},{"euler":{"heading":39.5,"pitch":-138.5625,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":24.6875,"pitch":140.25,"roll":-23.875},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-152.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:07.918"} +{"sensors":[{"euler":{"heading":324.875,"pitch":131.125,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":106.5625,"pitch":125.8125,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":58.5,"pitch":31.3125,"roll":38.375},"location":"Right Ankle"},{"euler":{"heading":28.4375,"pitch":-145.8125,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":30.4375,"pitch":134.25,"roll":-23.625},"location":"Right Knee"},{"euler":{"heading":62.3125,"pitch":-156.4375,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:08.19"} +{"sensors":[{"euler":{"heading":338.75,"pitch":129.375,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":150.9375,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":50.1875,"pitch":28.125,"roll":39.6875},"location":"Right Ankle"},{"euler":{"heading":29.5625,"pitch":-145.375,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":35.3125,"pitch":128.9375,"roll":-20.5},"location":"Right Knee"},{"euler":{"heading":55.0,"pitch":-144.9375,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:08.120"} +{"sensors":[{"euler":{"heading":349.125,"pitch":129.8125,"roll":10.75},"location":"Left Knee"},{"euler":{"heading":121.3125,"pitch":163.4375,"roll":66.75},"location":"Left Ankle"},{"euler":{"heading":44.8125,"pitch":26.1875,"roll":39.125},"location":"Right Ankle"},{"euler":{"heading":26.25,"pitch":-146.5625,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":38.4375,"pitch":124.5625,"roll":-18.3125},"location":"Right Knee"},{"euler":{"heading":43.625,"pitch":-124.1875,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:08.221"} +{"sensors":[{"euler":{"heading":207.1875,"pitch":139.0625,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":102.6875,"pitch":122.75,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":41.0625,"pitch":23.0625,"roll":39.0},"location":"Right Ankle"},{"euler":{"heading":27.25,"pitch":-145.125,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":39.75,"pitch":122.375,"roll":-15.8125},"location":"Right Knee"},{"euler":{"heading":37.75,"pitch":-120.875,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:08.321"} +{"sensors":[{"euler":{"heading":221.8125,"pitch":154.5,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":70.375,"pitch":106.75,"roll":37.125},"location":"Left Ankle"},{"euler":{"heading":37.8125,"pitch":19.875,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":29.4375,"pitch":-146.4375,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":42.3125,"pitch":122.125,"roll":-12.0625},"location":"Right Knee"},{"euler":{"heading":37.3125,"pitch":-119.875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:08.422"} +{"sensors":[{"euler":{"heading":235.625,"pitch":166.375,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":51.625,"pitch":102.25,"roll":18.375},"location":"Left Ankle"},{"euler":{"heading":32.125,"pitch":15.625,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":30.0,"pitch":-151.0625,"roll":70.5},"location":"Right Hip"},{"euler":{"heading":45.125,"pitch":122.3125,"roll":-8.25},"location":"Right Knee"},{"euler":{"heading":42.5625,"pitch":-124.0625,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:08.523"} +{"sensors":[{"euler":{"heading":239.6875,"pitch":165.875,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":55.375,"pitch":105.625,"roll":18.6875},"location":"Left Ankle"},{"euler":{"heading":25.625,"pitch":7.625,"roll":41.5625},"location":"Right Ankle"},{"euler":{"heading":30.375,"pitch":-159.4375,"roll":70.75},"location":"Right Hip"},{"euler":{"heading":48.5625,"pitch":124.6875,"roll":-2.9375},"location":"Right Knee"},{"euler":{"heading":48.75,"pitch":-129.0,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:08.624"} +{"sensors":[{"euler":{"heading":236.9375,"pitch":156.625,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":71.5625,"pitch":108.875,"roll":30.875},"location":"Left Ankle"},{"euler":{"heading":15.9375,"pitch":-7.0625,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":37.375,"pitch":-151.9375,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":57.8125,"pitch":129.4375,"roll":5.5},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-132.375,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:08.725"} +{"sensors":[{"euler":{"heading":299.6875,"pitch":149.5,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":79.8125,"pitch":111.375,"roll":35.875},"location":"Left Ankle"},{"euler":{"heading":4.8125,"pitch":-20.5625,"roll":37.5},"location":"Right Ankle"},{"euler":{"heading":48.3125,"pitch":-136.5625,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":70.6875,"pitch":130.875,"roll":12.0625},"location":"Right Knee"},{"euler":{"heading":54.375,"pitch":-136.3125,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:08.826"} +{"sensors":[{"euler":{"heading":305.875,"pitch":143.6875,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":87.3125,"pitch":113.125,"roll":40.1875},"location":"Left Ankle"},{"euler":{"heading":16.6875,"pitch":-12.8125,"roll":42.9375},"location":"Right Ankle"},{"euler":{"heading":53.9375,"pitch":-131.8125,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":65.0625,"pitch":133.3125,"roll":4.0},"location":"Right Knee"},{"euler":{"heading":58.1875,"pitch":-140.25,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:08.927"} +{"sensors":[{"euler":{"heading":313.125,"pitch":139.25,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":92.9375,"pitch":115.375,"roll":43.625},"location":"Left Ankle"},{"euler":{"heading":125.8125,"pitch":4.9375,"roll":48.5},"location":"Right Ankle"},{"euler":{"heading":52.125,"pitch":-133.0,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":250.375,"pitch":137.0,"roll":-9.375},"location":"Right Knee"},{"euler":{"heading":59.25,"pitch":-145.5,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:09.28"} +{"sensors":[{"euler":{"heading":319.125,"pitch":135.875,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":96.5,"pitch":117.9375,"roll":46.6875},"location":"Left Ankle"},{"euler":{"heading":55.9375,"pitch":28.5,"roll":41.5625},"location":"Right Ankle"},{"euler":{"heading":44.0,"pitch":-136.125,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":28.8125,"pitch":138.9375,"roll":-20.5},"location":"Right Knee"},{"euler":{"heading":59.6875,"pitch":-149.6875,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:09.129"} +{"sensors":[{"euler":{"heading":324.1875,"pitch":133.0,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":103.5625,"pitch":123.375,"roll":51.625},"location":"Left Ankle"},{"euler":{"heading":64.3125,"pitch":36.3125,"roll":35.5},"location":"Right Ankle"},{"euler":{"heading":31.375,"pitch":-142.3125,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":26.9375,"pitch":137.1875,"roll":-24.625},"location":"Right Knee"},{"euler":{"heading":60.6875,"pitch":-153.875,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:09.230"} +{"sensors":[{"euler":{"heading":332.125,"pitch":131.1875,"roll":21.0},"location":"Left Knee"},{"euler":{"heading":106.5625,"pitch":133.875,"roll":58.875},"location":"Left Ankle"},{"euler":{"heading":54.375,"pitch":30.5625,"roll":38.75},"location":"Right Ankle"},{"euler":{"heading":28.25,"pitch":-145.4375,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":32.0,"pitch":131.625,"roll":-22.0625},"location":"Right Knee"},{"euler":{"heading":61.5625,"pitch":-154.9375,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:09.331"} +{"sensors":[{"euler":{"heading":349.4375,"pitch":129.75,"roll":11.375},"location":"Left Knee"},{"euler":{"heading":127.0625,"pitch":166.875,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":48.25,"pitch":27.8125,"roll":38.9375},"location":"Right Ankle"},{"euler":{"heading":24.75,"pitch":-145.875,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":35.875,"pitch":126.6875,"roll":-20.1875},"location":"Right Knee"},{"euler":{"heading":44.75,"pitch":-135.1875,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:09.431"} +{"sensors":[{"euler":{"heading":349.75,"pitch":134.0625,"roll":11.25},"location":"Left Knee"},{"euler":{"heading":119.625,"pitch":149.5625,"roll":68.0},"location":"Left Ankle"},{"euler":{"heading":44.5625,"pitch":25.125,"roll":39.125},"location":"Right Ankle"},{"euler":{"heading":26.3125,"pitch":-145.5625,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":37.875,"pitch":124.5625,"roll":-17.625},"location":"Right Knee"},{"euler":{"heading":38.0,"pitch":-124.6875,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:09.532"} +{"sensors":[{"euler":{"heading":212.75,"pitch":144.9375,"roll":23.9375},"location":"Left Knee"},{"euler":{"heading":90.625,"pitch":116.875,"roll":51.9375},"location":"Left Ankle"},{"euler":{"heading":41.125,"pitch":22.625,"roll":39.4375},"location":"Right Ankle"},{"euler":{"heading":27.6875,"pitch":-144.4375,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":38.4375,"pitch":123.0,"roll":-15.75},"location":"Right Knee"},{"euler":{"heading":35.75,"pitch":-121.4375,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:09.632"} +{"sensors":[{"euler":{"heading":226.25,"pitch":160.6875,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":61.5625,"pitch":104.6875,"roll":29.1875},"location":"Left Ankle"},{"euler":{"heading":35.6875,"pitch":19.5,"roll":39.9375},"location":"Right Ankle"},{"euler":{"heading":29.9375,"pitch":-145.3125,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":42.0,"pitch":122.375,"roll":-11.6875},"location":"Right Knee"},{"euler":{"heading":36.3125,"pitch":-121.75,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:09.735"} +{"sensors":[{"euler":{"heading":236.0625,"pitch":167.9375,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":49.5625,"pitch":100.4375,"roll":17.0},"location":"Left Ankle"},{"euler":{"heading":28.4375,"pitch":13.375,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":32.3125,"pitch":-149.0625,"roll":69.5625},"location":"Right Hip"},{"euler":{"heading":45.3125,"pitch":123.3125,"roll":-6.8125},"location":"Right Knee"},{"euler":{"heading":45.25,"pitch":-127.75,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:09.836"} +{"sensors":[{"euler":{"heading":235.4375,"pitch":159.4375,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":63.125,"pitch":105.5,"roll":25.25},"location":"Left Ankle"},{"euler":{"heading":20.9375,"pitch":2.0625,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":32.8125,"pitch":-155.9375,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":48.75,"pitch":126.4375,"roll":-0.875},"location":"Right Knee"},{"euler":{"heading":47.875,"pitch":-129.5625,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:09.937"} +{"sensors":[{"euler":{"heading":296.375,"pitch":150.5625,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":77.6875,"pitch":109.8125,"roll":34.125},"location":"Left Ankle"},{"euler":{"heading":8.1875,"pitch":-12.9375,"roll":36.5},"location":"Right Ankle"},{"euler":{"heading":42.125,"pitch":-145.0,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":61.875,"pitch":129.25,"roll":8.125},"location":"Right Knee"},{"euler":{"heading":49.875,"pitch":-131.25,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:10.38"} +{"sensors":[{"euler":{"heading":302.75,"pitch":145.0,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":85.4375,"pitch":110.6875,"roll":38.5},"location":"Left Ankle"},{"euler":{"heading":11.125,"pitch":-17.375,"roll":39.5},"location":"Right Ankle"},{"euler":{"heading":51.1875,"pitch":-136.8125,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":65.8125,"pitch":134.8125,"roll":7.4375},"location":"Right Knee"},{"euler":{"heading":54.25,"pitch":-138.0625,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:10.139"} +{"sensors":[{"euler":{"heading":309.25,"pitch":140.375,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":112.3125,"roll":41.4375},"location":"Left Ankle"},{"euler":{"heading":33.4375,"pitch":6.1875,"roll":44.6875},"location":"Right Ankle"},{"euler":{"heading":51.0625,"pitch":-134.5,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":51.0,"pitch":134.25,"roll":-5.0},"location":"Right Knee"},{"euler":{"heading":57.5,"pitch":-144.0,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:10.241"} +{"sensors":[{"euler":{"heading":315.625,"pitch":137.25,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":114.3125,"roll":44.625},"location":"Left Ankle"},{"euler":{"heading":51.375,"pitch":25.3125,"roll":43.5},"location":"Right Ankle"},{"euler":{"heading":43.8125,"pitch":-137.25,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":265.375,"pitch":139.875,"roll":-17.5625},"location":"Right Knee"},{"euler":{"heading":58.125,"pitch":-148.8125,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:10.342"} +{"sensors":[{"euler":{"heading":321.125,"pitch":134.25,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":96.125,"pitch":117.5625,"roll":48.6875},"location":"Left Ankle"},{"euler":{"heading":66.875,"pitch":33.8125,"roll":35.125},"location":"Right Ankle"},{"euler":{"heading":33.6875,"pitch":-142.0625,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":275.75,"pitch":142.625,"roll":-24.375},"location":"Right Knee"},{"euler":{"heading":60.375,"pitch":-153.5625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:10.442"} +{"sensors":[{"euler":{"heading":328.25,"pitch":131.9375,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":125.25,"roll":55.4375},"location":"Left Ankle"},{"euler":{"heading":56.6875,"pitch":30.3125,"roll":38.75},"location":"Right Ankle"},{"euler":{"heading":31.1875,"pitch":-143.4375,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":28.0,"pitch":137.0625,"roll":-23.25},"location":"Right Knee"},{"euler":{"heading":63.75,"pitch":-156.875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:10.543"} +{"sensors":[{"euler":{"heading":343.5625,"pitch":131.875,"roll":12.25},"location":"Left Knee"},{"euler":{"heading":117.1875,"pitch":153.25,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":50.0625,"pitch":26.25,"roll":39.375},"location":"Right Ankle"},{"euler":{"heading":30.4375,"pitch":-146.0,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":31.125,"pitch":131.4375,"roll":-21.25},"location":"Right Knee"},{"euler":{"heading":46.0625,"pitch":-140.875,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:10.647"} +{"sensors":[{"euler":{"heading":349.0625,"pitch":133.6875,"roll":10.5},"location":"Left Knee"},{"euler":{"heading":119.9375,"pitch":151.75,"roll":68.0},"location":"Left Ankle"},{"euler":{"heading":48.25,"pitch":23.875,"roll":38.4375},"location":"Right Ankle"},{"euler":{"heading":27.9375,"pitch":-147.1875,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":33.75,"pitch":129.0,"roll":-18.9375},"location":"Right Knee"},{"euler":{"heading":40.0,"pitch":-126.0,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:10.748"} +{"sensors":[{"euler":{"heading":209.4375,"pitch":142.125,"roll":20.875},"location":"Left Knee"},{"euler":{"heading":98.25,"pitch":119.0,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":43.6875,"pitch":21.75,"roll":38.8125},"location":"Right Ankle"},{"euler":{"heading":30.5,"pitch":-145.6875,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":35.125,"pitch":126.125,"roll":-16.8125},"location":"Right Knee"},{"euler":{"heading":35.6875,"pitch":-122.5,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:10.849"} +{"sensors":[{"euler":{"heading":222.9375,"pitch":156.1875,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":64.9375,"pitch":105.25,"roll":30.8125},"location":"Left Ankle"},{"euler":{"heading":39.375,"pitch":18.8125,"roll":39.5},"location":"Right Ankle"},{"euler":{"heading":31.5,"pitch":-147.3125,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":38.5625,"pitch":125.0625,"roll":-13.125},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-120.375,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:10.950"} +{"sensors":[{"euler":{"heading":236.0625,"pitch":167.3125,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":49.75,"pitch":101.5,"roll":15.625},"location":"Left Ankle"},{"euler":{"heading":33.0,"pitch":13.9375,"roll":39.375},"location":"Right Ankle"},{"euler":{"heading":32.75,"pitch":-149.4375,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":41.75,"pitch":125.125,"roll":-9.25},"location":"Right Knee"},{"euler":{"heading":41.9375,"pitch":-124.8125,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:11.51"} +{"sensors":[{"euler":{"heading":237.5,"pitch":162.5,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":56.125,"pitch":106.125,"roll":20.4375},"location":"Left Ankle"},{"euler":{"heading":25.75,"pitch":6.5,"roll":38.8125},"location":"Right Ankle"},{"euler":{"heading":33.0,"pitch":-157.375,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":45.75,"pitch":126.8125,"roll":-3.9375},"location":"Right Knee"},{"euler":{"heading":47.625,"pitch":-127.125,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:11.151"} +{"sensors":[{"euler":{"heading":293.5,"pitch":153.8125,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":110.875,"roll":32.75},"location":"Left Ankle"},{"euler":{"heading":16.125,"pitch":-7.25,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":37.125,"pitch":-153.3125,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":60.3125,"pitch":130.125,"roll":6.4375},"location":"Right Knee"},{"euler":{"heading":47.6875,"pitch":-128.125,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:11.252"} +{"sensors":[{"euler":{"heading":300.9375,"pitch":147.8125,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":83.1875,"pitch":112.375,"roll":37.5},"location":"Left Ankle"},{"euler":{"heading":9.6875,"pitch":-17.5,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":47.875,"pitch":-139.4375,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":65.5,"pitch":133.875,"roll":8.8125},"location":"Right Knee"},{"euler":{"heading":50.6875,"pitch":-133.4375,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:11.352"} +{"sensors":[{"euler":{"heading":305.5,"pitch":143.3125,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":87.125,"pitch":113.375,"roll":40.6875},"location":"Left Ankle"},{"euler":{"heading":25.4375,"pitch":-5.0,"roll":44.3125},"location":"Right Ankle"},{"euler":{"heading":52.9375,"pitch":-134.0625,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":239.625,"pitch":135.6875,"roll":-2.4375},"location":"Right Knee"},{"euler":{"heading":52.3125,"pitch":-138.25,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:11.460"} +{"sensors":[{"euler":{"heading":311.0,"pitch":139.625,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":90.625,"pitch":114.875,"roll":43.125},"location":"Left Ankle"},{"euler":{"heading":133.1875,"pitch":12.1875,"roll":45.1875},"location":"Right Ankle"},{"euler":{"heading":51.0625,"pitch":-134.6875,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":258.25,"pitch":140.1875,"roll":-14.0625},"location":"Right Knee"},{"euler":{"heading":54.0625,"pitch":-143.3125,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:11.560"} +{"sensors":[{"euler":{"heading":316.9375,"pitch":136.25,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":95.6875,"pitch":117.1875,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":63.0,"pitch":29.0,"roll":37.4375},"location":"Right Ankle"},{"euler":{"heading":42.8125,"pitch":-138.0625,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":273.125,"pitch":145.375,"roll":-24.0},"location":"Right Knee"},{"euler":{"heading":54.875,"pitch":-147.5625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:11.661"} +{"sensors":[{"euler":{"heading":321.4375,"pitch":133.75,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":100.625,"pitch":121.0,"roll":52.5625},"location":"Left Ankle"},{"euler":{"heading":61.9375,"pitch":32.6875,"roll":35.875},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-141.4375,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":28.5625,"pitch":139.625,"roll":-23.3125},"location":"Right Knee"},{"euler":{"heading":55.8125,"pitch":-152.0625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:11.762"} +{"sensors":[{"euler":{"heading":329.9375,"pitch":133.8125,"roll":18.125},"location":"Left Knee"},{"euler":{"heading":105.4375,"pitch":137.9375,"roll":62.0},"location":"Left Ankle"},{"euler":{"heading":53.9375,"pitch":25.0,"roll":37.375},"location":"Right Ankle"},{"euler":{"heading":32.375,"pitch":-145.6875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":27.8125,"pitch":134.75,"roll":-22.4375},"location":"Right Knee"},{"euler":{"heading":50.4375,"pitch":-145.9375,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:11.863"} +{"sensors":[{"euler":{"heading":349.75,"pitch":130.25,"roll":11.0625},"location":"Left Knee"},{"euler":{"heading":116.8125,"pitch":152.0,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":51.0,"pitch":22.75,"roll":37.25},"location":"Right Ankle"},{"euler":{"heading":28.125,"pitch":-147.75,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":29.375,"pitch":131.25,"roll":-20.5625},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-113.3125,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:11.964"} +{"sensors":[{"euler":{"heading":340.625,"pitch":136.75,"roll":15.75},"location":"Left Knee"},{"euler":{"heading":106.25,"pitch":128.1875,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":48.25,"pitch":20.4375,"roll":37.625},"location":"Right Ankle"},{"euler":{"heading":30.5,"pitch":-147.5625,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":28.5,"pitch":129.25,"roll":-19.0},"location":"Right Knee"},{"euler":{"heading":37.6875,"pitch":-124.1875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:12.64"} +{"sensors":[{"euler":{"heading":216.875,"pitch":149.75,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":78.0,"pitch":109.625,"roll":40.375},"location":"Left Ankle"},{"euler":{"heading":44.0625,"pitch":18.875,"roll":41.0625},"location":"Right Ankle"},{"euler":{"heading":31.625,"pitch":-147.875,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":31.75,"pitch":127.6875,"roll":-16.125},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-120.125,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:12.165"} +{"sensors":[{"euler":{"heading":231.125,"pitch":162.8125,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":53.625,"pitch":102.1875,"roll":20.3125},"location":"Left Ankle"},{"euler":{"heading":38.625,"pitch":14.8125,"roll":41.625},"location":"Right Ankle"},{"euler":{"heading":32.875,"pitch":-150.8125,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":35.6875,"pitch":126.75,"roll":-12.1875},"location":"Right Knee"},{"euler":{"heading":38.5625,"pitch":-122.0,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:12.265"} +{"sensors":[{"euler":{"heading":238.3125,"pitch":168.3125,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":50.625,"pitch":101.3125,"roll":15.5},"location":"Left Ankle"},{"euler":{"heading":31.125,"pitch":8.875,"roll":41.125},"location":"Right Ankle"},{"euler":{"heading":33.3125,"pitch":-158.0625,"roll":70.4375},"location":"Right Hip"},{"euler":{"heading":39.6875,"pitch":127.5625,"roll":-7.375},"location":"Right Knee"},{"euler":{"heading":45.625,"pitch":-126.75,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:12.366"} +{"sensors":[{"euler":{"heading":237.875,"pitch":157.9375,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":65.625,"pitch":105.75,"roll":26.125},"location":"Left Ankle"},{"euler":{"heading":20.875,"pitch":-3.125,"roll":41.25},"location":"Right Ankle"},{"euler":{"heading":35.875,"pitch":-159.8125,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":47.5625,"pitch":130.625,"roll":0.125},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-128.8125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:12.467"} +{"sensors":[{"euler":{"heading":297.6875,"pitch":150.3125,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":75.625,"pitch":108.3125,"roll":33.0625},"location":"Left Ankle"},{"euler":{"heading":8.375,"pitch":-18.0625,"roll":39.0625},"location":"Right Ankle"},{"euler":{"heading":48.1875,"pitch":-141.4375,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":66.6875,"pitch":131.75,"roll":9.5625},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-132.125,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:12.568"} +{"sensors":[{"euler":{"heading":299.375,"pitch":146.3125,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":80.25,"pitch":108.6875,"roll":37.25},"location":"Left Ankle"},{"euler":{"heading":15.6875,"pitch":-12.0,"roll":42.25},"location":"Right Ankle"},{"euler":{"heading":55.8125,"pitch":-134.1875,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":63.0,"pitch":134.9375,"roll":5.25},"location":"Right Knee"},{"euler":{"heading":54.125,"pitch":-137.5625,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:12.669"} +{"sensors":[{"euler":{"heading":303.0,"pitch":142.875,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":83.1875,"pitch":108.8125,"roll":40.0},"location":"Left Ankle"},{"euler":{"heading":125.9375,"pitch":6.75,"roll":48.25},"location":"Right Ankle"},{"euler":{"heading":54.125,"pitch":-134.1875,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":246.5625,"pitch":137.9375,"roll":-7.75},"location":"Right Knee"},{"euler":{"heading":54.6875,"pitch":-141.5625,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:12.769"} +{"sensors":[{"euler":{"heading":310.75,"pitch":138.875,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":111.375,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":55.125,"pitch":30.625,"roll":44.125},"location":"Right Ankle"},{"euler":{"heading":32.0625,"pitch":-136.875,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":265.6875,"pitch":140.25,"roll":-21.0625},"location":"Right Knee"},{"euler":{"heading":55.8125,"pitch":-145.4375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:12.870"} +{"sensors":[{"euler":{"heading":317.8125,"pitch":135.3125,"roll":29.9375},"location":"Left Knee"},{"euler":{"heading":94.375,"pitch":115.1875,"roll":48.5625},"location":"Left Ankle"},{"euler":{"heading":66.25,"pitch":33.875,"roll":37.4375},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-142.0625,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":271.625,"pitch":143.0,"roll":-26.3125},"location":"Right Knee"},{"euler":{"heading":57.5,"pitch":-149.5625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:12.971"} +{"sensors":[{"euler":{"heading":324.8125,"pitch":132.75,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":123.4375,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":56.125,"pitch":31.5,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":31.4375,"pitch":-145.75,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":24.0625,"pitch":135.125,"roll":-24.125},"location":"Right Knee"},{"euler":{"heading":62.6875,"pitch":-155.1875,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:13.72"} +{"sensors":[{"euler":{"heading":341.125,"pitch":131.9375,"roll":13.25},"location":"Left Knee"},{"euler":{"heading":113.0625,"pitch":148.625,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":49.0625,"pitch":28.4375,"roll":40.75},"location":"Right Ankle"},{"euler":{"heading":30.625,"pitch":-145.5625,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":29.25,"pitch":129.5625,"roll":-21.6875},"location":"Right Knee"},{"euler":{"heading":51.5625,"pitch":-137.5625,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:13.173"} +{"sensors":[{"euler":{"heading":349.875,"pitch":132.0625,"roll":10.0},"location":"Left Knee"},{"euler":{"heading":114.375,"pitch":148.125,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":45.1875,"pitch":25.0625,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":29.0,"pitch":-146.75,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":31.5,"pitch":125.9375,"roll":-19.1875},"location":"Right Knee"},{"euler":{"heading":44.25,"pitch":-116.1875,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:13.274"} +{"sensors":[{"euler":{"heading":209.3125,"pitch":141.0,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":121.1875,"roll":51.9375},"location":"Left Ankle"},{"euler":{"heading":41.0,"pitch":23.4375,"roll":41.375},"location":"Right Ankle"},{"euler":{"heading":30.5,"pitch":-144.875,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":33.5625,"pitch":124.25,"roll":-16.8125},"location":"Right Knee"},{"euler":{"heading":40.5625,"pitch":-114.75,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:13.375"} +{"sensors":[{"euler":{"heading":224.0,"pitch":154.9375,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":49.25,"pitch":108.375,"roll":28.9375},"location":"Left Ankle"},{"euler":{"heading":36.8125,"pitch":20.25,"roll":42.5},"location":"Right Ankle"},{"euler":{"heading":31.8125,"pitch":-146.9375,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":37.125,"pitch":123.625,"roll":-13.125},"location":"Right Knee"},{"euler":{"heading":40.25,"pitch":-115.6875,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:13.475"} +{"sensors":[{"euler":{"heading":235.6875,"pitch":166.125,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":49.0625,"pitch":101.5,"roll":16.5},"location":"Left Ankle"},{"euler":{"heading":31.125,"pitch":15.3125,"roll":42.75},"location":"Right Ankle"},{"euler":{"heading":32.8125,"pitch":-151.25,"roll":70.0},"location":"Right Hip"},{"euler":{"heading":40.1875,"pitch":123.625,"roll":-9.0},"location":"Right Knee"},{"euler":{"heading":45.375,"pitch":-122.5625,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:13.577"} +{"sensors":[{"euler":{"heading":237.3125,"pitch":160.375,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":60.6875,"pitch":107.3125,"roll":22.4375},"location":"Left Ankle"},{"euler":{"heading":25.375,"pitch":6.375,"roll":43.375},"location":"Right Ankle"},{"euler":{"heading":33.8125,"pitch":-157.25,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":44.875,"pitch":126.25,"roll":-3.125},"location":"Right Knee"},{"euler":{"heading":50.9375,"pitch":-126.5625,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:13.677"} +{"sensors":[{"euler":{"heading":233.3125,"pitch":152.8125,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":71.6875,"pitch":109.0,"roll":31.25},"location":"Left Ankle"},{"euler":{"heading":13.3125,"pitch":-12.1875,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":38.0625,"pitch":-151.6875,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":54.375,"pitch":130.25,"roll":5.125},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-129.0625,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:13.779"} +{"sensors":[{"euler":{"heading":299.4375,"pitch":148.125,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":75.375,"pitch":108.6875,"roll":33.75},"location":"Left Ankle"},{"euler":{"heading":12.8125,"pitch":-17.8125,"roll":41.875},"location":"Right Ankle"},{"euler":{"heading":47.8125,"pitch":-140.75,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":58.1875,"pitch":135.25,"roll":6.3125},"location":"Right Knee"},{"euler":{"heading":54.0,"pitch":-136.6875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:13.880"} +{"sensors":[{"euler":{"heading":304.8125,"pitch":143.6875,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":80.5,"pitch":110.125,"roll":37.5},"location":"Left Ankle"},{"euler":{"heading":118.1875,"pitch":-2.1875,"roll":46.8125},"location":"Right Ankle"},{"euler":{"heading":51.375,"pitch":-135.5,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":236.9375,"pitch":136.3125,"roll":-2.875},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-142.5,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:13.981"} +{"sensors":[{"euler":{"heading":311.5,"pitch":140.0625,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":85.125,"pitch":111.875,"roll":41.4375},"location":"Left Ankle"},{"euler":{"heading":137.0,"pitch":17.1875,"roll":46.3125},"location":"Right Ankle"},{"euler":{"heading":48.5625,"pitch":-136.6875,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":256.6875,"pitch":140.125,"roll":-15.3125},"location":"Right Knee"},{"euler":{"heading":58.0625,"pitch":-147.375,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:14.82"} +{"sensors":[{"euler":{"heading":318.5625,"pitch":136.375,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":91.4375,"pitch":114.75,"roll":46.0625},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":33.0,"roll":38.125},"location":"Right Ankle"},{"euler":{"heading":40.625,"pitch":-140.375,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":270.6875,"pitch":143.5625,"roll":-25.4375},"location":"Right Knee"},{"euler":{"heading":60.5,"pitch":-152.875,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:14.182"} +{"sensors":[{"euler":{"heading":326.625,"pitch":133.375,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":97.875,"pitch":120.375,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":63.125,"pitch":33.0,"roll":37.6875},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-143.25,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":16.625,"pitch":141.0625,"roll":-25.9375},"location":"Right Knee"},{"euler":{"heading":62.375,"pitch":-158.0625,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:14.283"} +{"sensors":[{"euler":{"heading":339.875,"pitch":131.4375,"roll":14.5},"location":"Left Knee"},{"euler":{"heading":107.375,"pitch":138.0625,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":53.125,"pitch":26.6875,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":33.4375,"pitch":-145.1875,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":25.4375,"pitch":134.5,"roll":-22.8125},"location":"Right Knee"},{"euler":{"heading":58.1875,"pitch":-149.875,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:14.387"} +{"sensors":[{"euler":{"heading":355.75,"pitch":129.375,"roll":7.9375},"location":"Left Knee"},{"euler":{"heading":120.5625,"pitch":163.5625,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":48.25,"pitch":24.0625,"roll":40.5625},"location":"Right Ankle"},{"euler":{"heading":29.125,"pitch":-147.375,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":26.375,"pitch":130.375,"roll":-21.125},"location":"Right Knee"},{"euler":{"heading":47.6875,"pitch":-124.125,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:14.488"} +{"sensors":[{"euler":{"heading":203.1875,"pitch":137.4375,"roll":14.1875},"location":"Left Knee"},{"euler":{"heading":108.125,"pitch":134.375,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":45.125,"pitch":20.5,"roll":41.0},"location":"Right Ankle"},{"euler":{"heading":30.875,"pitch":-147.0,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":26.875,"pitch":128.375,"roll":-19.0625},"location":"Right Knee"},{"euler":{"heading":41.375,"pitch":-119.25,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:14.588"} +{"sensors":[{"euler":{"heading":217.875,"pitch":150.375,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":77.25,"pitch":110.125,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":41.8125,"pitch":17.0625,"roll":41.125},"location":"Right Ankle"},{"euler":{"heading":32.125,"pitch":-147.8125,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":28.75,"pitch":127.6875,"roll":-16.6875},"location":"Right Knee"},{"euler":{"heading":39.4375,"pitch":-118.125,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:14.689"} +{"sensors":[{"euler":{"heading":231.4375,"pitch":162.5,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":53.875,"pitch":102.5625,"roll":22.0625},"location":"Left Ankle"},{"euler":{"heading":36.9375,"pitch":13.6875,"roll":41.75},"location":"Right Ankle"},{"euler":{"heading":33.1875,"pitch":-149.75,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":33.3125,"pitch":126.6875,"roll":-12.75},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-119.3125,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:14.790"} +{"sensors":[{"euler":{"heading":236.8125,"pitch":166.9375,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":50.6875,"pitch":102.125,"roll":17.0625},"location":"Left Ankle"},{"euler":{"heading":29.625,"pitch":6.375,"roll":42.375},"location":"Right Ankle"},{"euler":{"heading":33.5,"pitch":-156.75,"roll":69.9375},"location":"Right Hip"},{"euler":{"heading":37.0,"pitch":128.125,"roll":-8.125},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-124.75,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:14.891"} +{"sensors":[{"euler":{"heading":239.75,"pitch":155.625,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":68.1875,"pitch":110.3125,"roll":27.375},"location":"Left Ankle"},{"euler":{"heading":21.0,"pitch":-4.0625,"roll":40.875},"location":"Right Ankle"},{"euler":{"heading":34.4375,"pitch":-161.4375,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":44.4375,"pitch":130.875,"roll":-0.875},"location":"Right Knee"},{"euler":{"heading":52.25,"pitch":-128.1875,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:14.992"} +{"sensors":[{"euler":{"heading":307.4375,"pitch":147.625,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":77.875,"pitch":111.1875,"roll":33.0},"location":"Left Ankle"},{"euler":{"heading":9.9375,"pitch":-18.375,"roll":38.875},"location":"Right Ankle"},{"euler":{"heading":44.1875,"pitch":-147.8125,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":55.3125,"pitch":131.625,"roll":6.4375},"location":"Right Knee"},{"euler":{"heading":55.25,"pitch":-132.25,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:15.92"} +{"sensors":[{"euler":{"heading":310.1875,"pitch":142.5,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":83.9375,"pitch":111.8125,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":14.875,"pitch":-17.3125,"roll":41.5625},"location":"Right Ankle"},{"euler":{"heading":52.4375,"pitch":-137.5625,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":54.1875,"pitch":134.5625,"roll":3.25},"location":"Right Knee"},{"euler":{"heading":58.8125,"pitch":-138.8125,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:15.194"} +{"sensors":[{"euler":{"heading":316.0,"pitch":138.375,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":90.875,"pitch":114.4375,"roll":40.6875},"location":"Left Ankle"},{"euler":{"heading":123.3125,"pitch":-0.3125,"roll":47.6875},"location":"Right Ankle"},{"euler":{"heading":52.875,"pitch":-135.3125,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":240.75,"pitch":137.6875,"roll":-6.5625},"location":"Right Knee"},{"euler":{"heading":59.375,"pitch":-144.8125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:15.294"} +{"sensors":[{"euler":{"heading":321.8125,"pitch":135.0,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":116.125,"roll":43.3125},"location":"Left Ankle"},{"euler":{"heading":140.9375,"pitch":21.6875,"roll":45.8125},"location":"Right Ankle"},{"euler":{"heading":46.6875,"pitch":-138.0625,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":263.3125,"pitch":142.3125,"roll":-18.0625},"location":"Right Knee"},{"euler":{"heading":59.9375,"pitch":-149.6875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:15.395"} +{"sensors":[{"euler":{"heading":327.0,"pitch":132.0625,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":119.75,"roll":48.25},"location":"Left Ankle"},{"euler":{"heading":64.4375,"pitch":32.0,"roll":38.125},"location":"Right Ankle"},{"euler":{"heading":35.625,"pitch":-143.5,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":271.875,"pitch":144.6875,"roll":-25.1875},"location":"Right Knee"},{"euler":{"heading":60.5,"pitch":-153.5625,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:15.495"} +{"sensors":[{"euler":{"heading":334.5,"pitch":130.0625,"roll":21.4375},"location":"Left Knee"},{"euler":{"heading":103.8125,"pitch":127.25,"roll":54.9375},"location":"Left Ankle"},{"euler":{"heading":56.5,"pitch":29.375,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":30.6875,"pitch":-147.125,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":21.5,"pitch":137.625,"roll":-24.5},"location":"Right Knee"},{"euler":{"heading":63.1875,"pitch":-156.1875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:15.596"} +{"sensors":[{"euler":{"heading":348.625,"pitch":130.0625,"roll":11.375},"location":"Left Knee"},{"euler":{"heading":122.625,"pitch":159.4375,"roll":65.375},"location":"Left Ankle"},{"euler":{"heading":50.625,"pitch":25.3125,"roll":40.8125},"location":"Right Ankle"},{"euler":{"heading":30.4375,"pitch":-148.125,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":26.0625,"pitch":133.0625,"roll":-21.875},"location":"Right Knee"},{"euler":{"heading":48.5,"pitch":-137.8125,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:15.696"} +{"sensors":[{"euler":{"heading":354.0625,"pitch":132.625,"roll":9.6875},"location":"Left Knee"},{"euler":{"heading":119.125,"pitch":154.75,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":46.1875,"pitch":23.8125,"roll":40.875},"location":"Right Ankle"},{"euler":{"heading":29.125,"pitch":-148.0,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":30.375,"pitch":128.3125,"roll":-19.6875},"location":"Right Knee"},{"euler":{"heading":40.4375,"pitch":-122.375,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:15.796"} +{"sensors":[{"euler":{"heading":213.5625,"pitch":143.0625,"roll":21.4375},"location":"Left Knee"},{"euler":{"heading":93.9375,"pitch":115.8125,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":43.5625,"pitch":21.875,"roll":41.0625},"location":"Right Ankle"},{"euler":{"heading":31.125,"pitch":-147.25,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":31.0,"pitch":126.4375,"roll":-17.375},"location":"Right Knee"},{"euler":{"heading":37.0625,"pitch":-120.3125,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:15.897"} +{"sensors":[{"euler":{"heading":227.125,"pitch":157.875,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":63.3125,"pitch":105.875,"roll":30.875},"location":"Left Ankle"},{"euler":{"heading":39.125,"pitch":19.3125,"roll":41.625},"location":"Right Ankle"},{"euler":{"heading":32.5,"pitch":-148.625,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":35.125,"pitch":125.8125,"roll":-14.0},"location":"Right Knee"},{"euler":{"heading":38.125,"pitch":-121.375,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:15.998"} +{"sensors":[{"euler":{"heading":236.5625,"pitch":166.125,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":48.75,"pitch":101.25,"roll":16.125},"location":"Left Ankle"},{"euler":{"heading":32.4375,"pitch":14.0625,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":32.625,"pitch":-154.125,"roll":70.0},"location":"Right Hip"},{"euler":{"heading":39.0625,"pitch":125.5,"roll":-9.8125},"location":"Right Knee"},{"euler":{"heading":43.0,"pitch":-126.6875,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:16.98"} +{"sensors":[{"euler":{"heading":237.25,"pitch":159.0,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":59.8125,"pitch":106.5625,"roll":23.625},"location":"Left Ankle"},{"euler":{"heading":23.4375,"pitch":3.9375,"roll":42.125},"location":"Right Ankle"},{"euler":{"heading":33.125,"pitch":-156.75,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":45.0,"pitch":126.4375,"roll":-3.5625},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-130.25,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:16.199"} +{"sensors":[{"euler":{"heading":297.3125,"pitch":151.6875,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":73.4375,"pitch":108.8125,"roll":32.75},"location":"Left Ankle"},{"euler":{"heading":12.0,"pitch":-14.3125,"roll":41.875},"location":"Right Ankle"},{"euler":{"heading":43.625,"pitch":-145.1875,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":58.0625,"pitch":130.125,"roll":5.9375},"location":"Right Knee"},{"euler":{"heading":47.4375,"pitch":-132.4375,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:16.299"} +{"sensors":[{"euler":{"heading":306.75,"pitch":145.125,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":85.3125,"pitch":111.3125,"roll":39.3125},"location":"Left Ankle"},{"euler":{"heading":17.3125,"pitch":-9.8125,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":51.5625,"pitch":-135.8125,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":60.75,"pitch":133.5,"roll":4.8125},"location":"Right Knee"},{"euler":{"heading":53.75,"pitch":-138.1875,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:16.400"} +{"sensors":[{"euler":{"heading":312.375,"pitch":140.9375,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":88.3125,"pitch":112.3125,"roll":41.875},"location":"Left Ankle"},{"euler":{"heading":128.3125,"pitch":7.5,"roll":46.1875},"location":"Right Ankle"},{"euler":{"heading":52.5,"pitch":-134.9375,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":244.875,"pitch":139.1875,"roll":-9.125},"location":"Right Knee"},{"euler":{"heading":56.4375,"pitch":-144.375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:16.501"} +{"sensors":[{"euler":{"heading":318.375,"pitch":137.75,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":90.4375,"pitch":114.9375,"roll":44.9375},"location":"Left Ankle"},{"euler":{"heading":56.0,"pitch":26.0,"roll":43.0},"location":"Right Ankle"},{"euler":{"heading":47.125,"pitch":-138.625,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":263.4375,"pitch":141.8125,"roll":-21.0},"location":"Right Knee"},{"euler":{"heading":56.1875,"pitch":-147.9375,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:16.601"} +{"sensors":[{"euler":{"heading":323.6875,"pitch":135.0625,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":119.1875,"roll":50.25},"location":"Left Ankle"},{"euler":{"heading":67.4375,"pitch":32.6875,"roll":36.5625},"location":"Right Ankle"},{"euler":{"heading":36.25,"pitch":-143.0625,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":271.8125,"pitch":144.9375,"roll":-27.6875},"location":"Right Knee"},{"euler":{"heading":57.3125,"pitch":-151.6875,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:16.702"} +{"sensors":[{"euler":{"heading":331.25,"pitch":132.5,"roll":21.9375},"location":"Left Knee"},{"euler":{"heading":103.875,"pitch":128.6875,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":58.5625,"pitch":29.125,"roll":38.8125},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-146.5625,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":16.25,"pitch":138.5625,"roll":-25.875},"location":"Right Knee"},{"euler":{"heading":58.5,"pitch":-153.0625,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:16.803"} +{"sensors":[{"euler":{"heading":349.0,"pitch":130.375,"roll":10.8125},"location":"Left Knee"},{"euler":{"heading":117.0625,"pitch":155.9375,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":50.6875,"pitch":25.0625,"roll":40.125},"location":"Right Ankle"},{"euler":{"heading":31.5,"pitch":-146.875,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":23.75,"pitch":132.75,"roll":-22.6875},"location":"Right Knee"},{"euler":{"heading":46.0,"pitch":-133.6875,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:16.904"} +{"sensors":[{"euler":{"heading":355.4375,"pitch":132.625,"roll":8.1875},"location":"Left Knee"},{"euler":{"heading":119.0625,"pitch":158.9375,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":47.4375,"pitch":22.625,"roll":39.6875},"location":"Right Ankle"},{"euler":{"heading":29.5,"pitch":-146.375,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":26.0625,"pitch":128.5,"roll":-20.875},"location":"Right Knee"},{"euler":{"heading":39.3125,"pitch":-122.3125,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:17.4"} +{"sensors":[{"euler":{"heading":207.375,"pitch":140.3125,"roll":18.6875},"location":"Left Knee"},{"euler":{"heading":98.1875,"pitch":119.9375,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":44.1875,"pitch":19.8125,"roll":39.875},"location":"Right Ankle"},{"euler":{"heading":31.6875,"pitch":-146.0625,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":26.8125,"pitch":127.5625,"roll":-18.6875},"location":"Right Knee"},{"euler":{"heading":36.5625,"pitch":-120.8125,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:17.105"} +{"sensors":[{"euler":{"heading":223.375,"pitch":154.1875,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":69.25,"pitch":106.75,"roll":35.875},"location":"Left Ankle"},{"euler":{"heading":40.375,"pitch":17.25,"roll":40.5625},"location":"Right Ankle"},{"euler":{"heading":32.5,"pitch":-147.9375,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":30.0,"pitch":126.5625,"roll":-15.5625},"location":"Right Knee"},{"euler":{"heading":36.5625,"pitch":-119.75,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:17.206"} +{"sensors":[{"euler":{"heading":236.375,"pitch":164.125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":51.5625,"pitch":102.375,"roll":18.4375},"location":"Left Ankle"},{"euler":{"heading":34.5,"pitch":12.75,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":33.625,"pitch":-150.0,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":33.875,"pitch":126.3125,"roll":-11.4375},"location":"Right Knee"},{"euler":{"heading":42.8125,"pitch":-124.875,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:17.306"} +{"sensors":[{"euler":{"heading":239.375,"pitch":160.1875,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":56.8125,"pitch":106.0,"roll":20.0625},"location":"Left Ankle"},{"euler":{"heading":28.3125,"pitch":4.875,"roll":41.625},"location":"Right Ankle"},{"euler":{"heading":34.875,"pitch":-157.5625,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":38.25,"pitch":128.8125,"roll":-5.9375},"location":"Right Knee"},{"euler":{"heading":49.1875,"pitch":-128.4375,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:17.407"} +{"sensors":[{"euler":{"heading":300.5625,"pitch":151.75,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":74.3125,"pitch":110.8125,"roll":31.3125},"location":"Left Ankle"},{"euler":{"heading":15.1875,"pitch":-9.25,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":42.3125,"pitch":-148.3125,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":49.1875,"pitch":130.75,"roll":2.25},"location":"Right Knee"},{"euler":{"heading":49.5625,"pitch":-130.6875,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:17.509"} +{"sensors":[{"euler":{"heading":309.25,"pitch":144.875,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":83.25,"pitch":112.4375,"roll":35.625},"location":"Left Ankle"},{"euler":{"heading":12.0,"pitch":-16.5,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":52.25,"pitch":-137.6875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":55.5,"pitch":133.875,"roll":5.125},"location":"Right Knee"},{"euler":{"heading":54.75,"pitch":-135.5,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:17.610"} +{"sensors":[{"euler":{"heading":313.125,"pitch":140.4375,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":87.125,"pitch":112.5,"roll":38.375},"location":"Left Ankle"},{"euler":{"heading":28.125,"pitch":-4.5625,"roll":44.3125},"location":"Right Ankle"},{"euler":{"heading":54.875,"pitch":-134.5,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":234.8125,"pitch":135.125,"roll":-4.1875},"location":"Right Knee"},{"euler":{"heading":58.1875,"pitch":-142.8125,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:17.711"} +{"sensors":[{"euler":{"heading":319.0,"pitch":136.6875,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":114.5625,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":138.0,"pitch":13.75,"roll":45.125},"location":"Right Ankle"},{"euler":{"heading":51.6875,"pitch":-136.4375,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":253.75,"pitch":141.25,"roll":-14.8125},"location":"Right Knee"},{"euler":{"heading":58.125,"pitch":-146.625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:17.811"} +{"sensors":[{"euler":{"heading":325.5,"pitch":133.1875,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":100.5625,"pitch":118.0,"roll":46.125},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":29.375,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":42.9375,"pitch":-140.125,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":269.1875,"pitch":146.0625,"roll":-24.4375},"location":"Right Knee"},{"euler":{"heading":59.3125,"pitch":-150.3125,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:17.912"} +{"sensors":[{"euler":{"heading":328.875,"pitch":130.8125,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":106.4375,"pitch":123.0625,"roll":51.625},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":32.75,"roll":37.1875},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-143.8125,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":272.5,"pitch":143.5625,"roll":-25.5625},"location":"Right Knee"},{"euler":{"heading":61.25,"pitch":-155.25,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:18.12"} +{"sensors":[{"euler":{"heading":340.3125,"pitch":127.625,"roll":18.3125},"location":"Left Knee"},{"euler":{"heading":113.875,"pitch":139.6875,"roll":60.25},"location":"Left Ankle"},{"euler":{"heading":54.125,"pitch":28.0625,"roll":38.5625},"location":"Right Ankle"},{"euler":{"heading":32.0,"pitch":-145.4375,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":24.5625,"pitch":135.4375,"roll":-23.5625},"location":"Right Knee"},{"euler":{"heading":60.5625,"pitch":-149.5625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:18.115"} +{"sensors":[{"euler":{"heading":356.625,"pitch":126.5,"roll":9.875},"location":"Left Knee"},{"euler":{"heading":133.3125,"pitch":170.6875,"roll":65.375},"location":"Left Ankle"},{"euler":{"heading":49.5625,"pitch":27.9375,"roll":39.1875},"location":"Right Ankle"},{"euler":{"heading":31.125,"pitch":-145.4375,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":27.125,"pitch":129.875,"roll":-22.5625},"location":"Right Knee"},{"euler":{"heading":49.5,"pitch":-129.25,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:18.216"} +{"sensors":[{"euler":{"heading":348.375,"pitch":133.8125,"roll":13.875},"location":"Left Knee"},{"euler":{"heading":120.5,"pitch":141.0,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":45.0625,"pitch":26.875,"roll":39.0},"location":"Right Ankle"},{"euler":{"heading":31.0625,"pitch":-143.6875,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":30.125,"pitch":125.8125,"roll":-20.5625},"location":"Right Knee"},{"euler":{"heading":40.125,"pitch":-122.6875,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:18.317"} +{"sensors":[{"euler":{"heading":219.1875,"pitch":148.25,"roll":28.375},"location":"Left Knee"},{"euler":{"heading":87.125,"pitch":110.0,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":42.0,"pitch":24.4375,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":31.8125,"pitch":-143.75,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":32.75,"pitch":124.375,"roll":-17.75},"location":"Right Knee"},{"euler":{"heading":37.0625,"pitch":-119.875,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:18.418"} +{"sensors":[{"euler":{"heading":233.0,"pitch":160.8125,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":59.625,"pitch":103.875,"roll":21.875},"location":"Left Ankle"},{"euler":{"heading":36.8125,"pitch":20.6875,"roll":40.4375},"location":"Right Ankle"},{"euler":{"heading":33.0,"pitch":-145.8125,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":35.875,"pitch":123.75,"roll":-13.9375},"location":"Right Knee"},{"euler":{"heading":40.0625,"pitch":-122.5,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:18.519"} +{"sensors":[{"euler":{"heading":238.8125,"pitch":163.0,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":55.3125,"pitch":103.4375,"roll":16.4375},"location":"Left Ankle"},{"euler":{"heading":29.0625,"pitch":12.3125,"roll":41.5625},"location":"Right Ankle"},{"euler":{"heading":34.5625,"pitch":-149.5,"roll":70.0},"location":"Right Hip"},{"euler":{"heading":40.6875,"pitch":125.0625,"roll":-8.375},"location":"Right Knee"},{"euler":{"heading":47.125,"pitch":-127.8125,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:18.619"} +{"sensors":[{"euler":{"heading":236.125,"pitch":154.5,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":70.4375,"pitch":107.125,"roll":25.8125},"location":"Left Ankle"},{"euler":{"heading":20.375,"pitch":-3.3125,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":37.25,"pitch":-151.1875,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":45.875,"pitch":129.25,"roll":-1.0625},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-129.0625,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:18.720"} +{"sensors":[{"euler":{"heading":301.9375,"pitch":148.375,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":76.5,"pitch":108.5625,"roll":31.75},"location":"Left Ankle"},{"euler":{"heading":9.9375,"pitch":-17.8125,"roll":39.5},"location":"Right Ankle"},{"euler":{"heading":46.5625,"pitch":-139.25,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":54.4375,"pitch":129.5625,"roll":5.3125},"location":"Right Knee"},{"euler":{"heading":49.9375,"pitch":-133.375,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:18.821"} +{"sensors":[{"euler":{"heading":308.0,"pitch":143.125,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":82.875,"pitch":110.3125,"roll":35.8125},"location":"Left Ankle"},{"euler":{"heading":20.0,"pitch":-9.8125,"roll":43.5625},"location":"Right Ankle"},{"euler":{"heading":53.0,"pitch":-134.3125,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":51.375,"pitch":133.1875,"roll":0.75},"location":"Right Knee"},{"euler":{"heading":54.1875,"pitch":-138.0,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:18.921"} +{"sensors":[{"euler":{"heading":312.875,"pitch":139.5625,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":85.875,"pitch":110.75,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":132.125,"pitch":8.6875,"roll":46.0},"location":"Right Ankle"},{"euler":{"heading":51.6875,"pitch":-135.3125,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":247.125,"pitch":139.1875,"roll":-12.6875},"location":"Right Knee"},{"euler":{"heading":57.1875,"pitch":-144.625,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:19.22"} +{"sensors":[{"euler":{"heading":318.4375,"pitch":136.6875,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":89.5625,"pitch":112.25,"roll":42.0625},"location":"Left Ankle"},{"euler":{"heading":58.3125,"pitch":25.625,"roll":42.25},"location":"Right Ankle"},{"euler":{"heading":45.4375,"pitch":-139.25,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":264.1875,"pitch":143.4375,"roll":-21.8125},"location":"Right Knee"},{"euler":{"heading":59.0625,"pitch":-150.25,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:19.122"} +{"sensors":[{"euler":{"heading":324.1875,"pitch":134.25,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":96.25,"pitch":115.625,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":69.9375,"pitch":31.8125,"roll":35.1875},"location":"Right Ankle"},{"euler":{"heading":34.625,"pitch":-142.8125,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":273.6875,"pitch":146.9375,"roll":-29.375},"location":"Right Knee"},{"euler":{"heading":59.75,"pitch":-154.8125,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:19.224"} +{"sensors":[{"euler":{"heading":333.125,"pitch":132.0625,"roll":19.8125},"location":"Left Knee"},{"euler":{"heading":103.625,"pitch":124.5,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":59.5625,"pitch":29.4375,"roll":38.125},"location":"Right Ankle"},{"euler":{"heading":31.625,"pitch":-146.1875,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":13.5625,"pitch":140.0,"roll":-27.25},"location":"Right Knee"},{"euler":{"heading":60.9375,"pitch":-157.6875,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:19.325"} +{"sensors":[{"euler":{"heading":350.8125,"pitch":128.25,"roll":10.0},"location":"Left Knee"},{"euler":{"heading":124.25,"pitch":156.0625,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":52.375,"pitch":25.1875,"roll":39.5625},"location":"Right Ankle"},{"euler":{"heading":31.9375,"pitch":-146.625,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":18.5625,"pitch":134.875,"roll":-24.625},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-142.625,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:19.425"} +{"sensors":[{"euler":{"heading":0.375,"pitch":131.0625,"roll":6.625},"location":"Left Knee"},{"euler":{"heading":124.4375,"pitch":157.375,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":48.0625,"pitch":23.25,"roll":39.6875},"location":"Right Ankle"},{"euler":{"heading":30.25,"pitch":-146.625,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":22.5,"pitch":130.0,"roll":-22.8125},"location":"Right Knee"},{"euler":{"heading":45.3125,"pitch":-124.4375,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:19.525"} +{"sensors":[{"euler":{"heading":210.4375,"pitch":140.1875,"roll":18.1875},"location":"Left Knee"},{"euler":{"heading":100.8125,"pitch":122.1875,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":44.1875,"pitch":21.0,"roll":39.625},"location":"Right Ankle"},{"euler":{"heading":32.0,"pitch":-145.5,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":24.75,"pitch":127.8125,"roll":-20.5625},"location":"Right Knee"},{"euler":{"heading":39.1875,"pitch":-120.25,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:19.627"} +{"sensors":[{"euler":{"heading":225.8125,"pitch":153.75,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":69.9375,"pitch":108.3125,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":39.6875,"pitch":18.3125,"roll":40.25},"location":"Right Ankle"},{"euler":{"heading":33.75,"pitch":-146.4375,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":27.875,"pitch":126.8125,"roll":-17.5},"location":"Right Knee"},{"euler":{"heading":38.625,"pitch":-119.9375,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:19.727"} +{"sensors":[{"euler":{"heading":235.125,"pitch":163.5,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":53.375,"pitch":101.0,"roll":17.0625},"location":"Left Ankle"},{"euler":{"heading":33.8125,"pitch":12.5,"roll":41.25},"location":"Right Ankle"},{"euler":{"heading":35.5625,"pitch":-149.0625,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":31.875,"pitch":126.875,"roll":-12.8125},"location":"Right Knee"},{"euler":{"heading":35.4375,"pitch":-129.625,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:19.828"} +{"sensors":[{"euler":{"heading":239.125,"pitch":157.8125,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":58.875,"pitch":106.5,"roll":18.375},"location":"Left Ankle"},{"euler":{"heading":26.4375,"pitch":3.5625,"roll":39.8125},"location":"Right Ankle"},{"euler":{"heading":36.375,"pitch":-156.0625,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":36.3125,"pitch":128.9375,"roll":-7.25},"location":"Right Knee"},{"euler":{"heading":49.5,"pitch":-130.3125,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:19.930"} +{"sensors":[{"euler":{"heading":301.8125,"pitch":150.625,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":74.125,"pitch":109.875,"roll":29.3125},"location":"Left Ankle"},{"euler":{"heading":18.0625,"pitch":-9.0,"roll":40.5},"location":"Right Ankle"},{"euler":{"heading":39.125,"pitch":-154.25,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":42.625,"pitch":131.625,"roll":-0.5},"location":"Right Knee"},{"euler":{"heading":48.1875,"pitch":-132.1875,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:20.30"} +{"sensors":[{"euler":{"heading":308.625,"pitch":144.9375,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":80.125,"pitch":111.4375,"roll":33.1875},"location":"Left Ankle"},{"euler":{"heading":10.75,"pitch":-19.6875,"roll":38.5},"location":"Right Ankle"},{"euler":{"heading":47.375,"pitch":-141.375,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":49.5,"pitch":132.5625,"roll":3.1875},"location":"Right Knee"},{"euler":{"heading":53.0625,"pitch":-137.6875,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:20.131"} +{"sensors":[{"euler":{"heading":313.6875,"pitch":140.625,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":85.1875,"pitch":112.5,"roll":36.8125},"location":"Left Ankle"},{"euler":{"heading":26.375,"pitch":-7.625,"roll":43.8125},"location":"Right Ankle"},{"euler":{"heading":53.0,"pitch":-135.3125,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":39.1875,"pitch":134.6875,"roll":-5.25},"location":"Right Knee"},{"euler":{"heading":55.4375,"pitch":-142.75,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:20.231"} +{"sensors":[{"euler":{"heading":320.75,"pitch":136.5625,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":92.1875,"pitch":115.0,"roll":40.5},"location":"Left Ankle"},{"euler":{"heading":134.0625,"pitch":9.5,"roll":47.5},"location":"Right Ankle"},{"euler":{"heading":51.375,"pitch":-135.75,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":253.25,"pitch":140.8125,"roll":-15.75},"location":"Right Knee"},{"euler":{"heading":57.25,"pitch":-146.8125,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:20.332"} +{"sensors":[{"euler":{"heading":326.75,"pitch":133.125,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":98.1875,"pitch":117.8125,"roll":44.75},"location":"Left Ankle"},{"euler":{"heading":62.25,"pitch":28.8125,"roll":40.0},"location":"Right Ankle"},{"euler":{"heading":43.3125,"pitch":-140.4375,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":270.0625,"pitch":145.875,"roll":-24.9375},"location":"Right Knee"},{"euler":{"heading":58.875,"pitch":-152.125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:20.433"} +{"sensors":[{"euler":{"heading":332.25,"pitch":130.5,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":102.6875,"pitch":122.0,"roll":49.75},"location":"Left Ankle"},{"euler":{"heading":65.1875,"pitch":31.1875,"roll":37.0},"location":"Right Ankle"},{"euler":{"heading":34.5625,"pitch":-145.1875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":272.75,"pitch":144.875,"roll":-27.625},"location":"Right Knee"},{"euler":{"heading":62.0,"pitch":-157.8125,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:20.534"} +{"sensors":[{"euler":{"heading":344.375,"pitch":128.4375,"roll":14.0625},"location":"Left Knee"},{"euler":{"heading":108.6875,"pitch":136.5625,"roll":58.5625},"location":"Left Ankle"},{"euler":{"heading":55.625,"pitch":26.0,"roll":38.4375},"location":"Right Ankle"},{"euler":{"heading":34.0625,"pitch":-147.0625,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":18.125,"pitch":137.3125,"roll":-25.25},"location":"Right Knee"},{"euler":{"heading":56.875,"pitch":-149.0,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:20.635"} +{"sensors":[{"euler":{"heading":1.125,"pitch":126.4375,"roll":7.25},"location":"Left Knee"},{"euler":{"heading":126.6875,"pitch":165.1875,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":51.5,"pitch":22.75,"roll":39.25},"location":"Right Ankle"},{"euler":{"heading":31.6875,"pitch":-148.125,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":18.9375,"pitch":133.8125,"roll":-23.8125},"location":"Right Knee"},{"euler":{"heading":43.5625,"pitch":-129.4375,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:20.736"} +{"sensors":[{"euler":{"heading":349.5,"pitch":135.1875,"roll":12.4375},"location":"Left Knee"},{"euler":{"heading":115.0,"pitch":136.0,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":48.5625,"pitch":19.875,"roll":39.25},"location":"Right Ankle"},{"euler":{"heading":34.4375,"pitch":-147.5,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":18.9375,"pitch":131.6875,"roll":-22.25},"location":"Right Knee"},{"euler":{"heading":36.5,"pitch":-124.5625,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:20.836"} +{"sensors":[{"euler":{"heading":218.6875,"pitch":148.125,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":82.375,"pitch":112.0625,"roll":43.0625},"location":"Left Ankle"},{"euler":{"heading":44.75,"pitch":19.0,"roll":39.75},"location":"Right Ankle"},{"euler":{"heading":35.5,"pitch":-145.1875,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":23.0,"pitch":128.8125,"roll":-19.9375},"location":"Right Knee"},{"euler":{"heading":35.125,"pitch":-122.1875,"roll":46.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:20.936"} +{"sensors":[{"euler":{"heading":232.875,"pitch":161.25,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":57.5625,"pitch":103.5,"roll":20.9375},"location":"Left Ankle"},{"euler":{"heading":39.1875,"pitch":16.0625,"roll":40.4375},"location":"Right Ankle"},{"euler":{"heading":36.625,"pitch":-145.9375,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":26.9375,"pitch":126.875,"roll":-16.3125},"location":"Right Knee"},{"euler":{"heading":36.625,"pitch":-123.3125,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:21.38"} +{"sensors":[{"euler":{"heading":239.1875,"pitch":164.75,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":51.875,"pitch":102.25,"roll":14.625},"location":"Left Ankle"},{"euler":{"heading":31.625,"pitch":10.3125,"roll":40.9375},"location":"Right Ankle"},{"euler":{"heading":36.625,"pitch":-151.0625,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":31.8125,"pitch":126.9375,"roll":-11.25},"location":"Right Knee"},{"euler":{"heading":42.625,"pitch":-127.875,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:21.138"} +{"sensors":[{"euler":{"heading":237.25,"pitch":155.8125,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":67.6875,"pitch":106.5,"roll":24.5},"location":"Left Ankle"},{"euler":{"heading":22.5625,"pitch":-0.75,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":37.875,"pitch":-153.0625,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":37.8125,"pitch":129.0,"roll":-4.4375},"location":"Right Knee"},{"euler":{"heading":45.875,"pitch":-130.25,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:21.239"} +{"sensors":[{"euler":{"heading":304.625,"pitch":148.0625,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":81.125,"pitch":109.875,"roll":33.1875},"location":"Left Ankle"},{"euler":{"heading":11.75,"pitch":-15.1875,"roll":39.1875},"location":"Right Ankle"},{"euler":{"heading":48.1875,"pitch":-141.0625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":49.75,"pitch":131.0,"roll":3.1875},"location":"Right Knee"},{"euler":{"heading":50.0,"pitch":-133.375,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:21.340"} +{"sensors":[{"euler":{"heading":311.0,"pitch":142.5625,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":88.4375,"pitch":111.1875,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":21.375,"pitch":-6.5625,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":55.0625,"pitch":-134.875,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":45.0,"pitch":133.4375,"roll":-1.25},"location":"Right Knee"},{"euler":{"heading":54.0625,"pitch":-139.75,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:21.441"} +{"sensors":[{"euler":{"heading":316.6875,"pitch":138.4375,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":112.75,"roll":40.125},"location":"Left Ankle"},{"euler":{"heading":132.5,"pitch":9.0625,"roll":45.75},"location":"Right Ankle"},{"euler":{"heading":54.125,"pitch":-134.4375,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":246.5625,"pitch":140.4375,"roll":-14.9375},"location":"Right Knee"},{"euler":{"heading":56.125,"pitch":-145.25,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:21.541"} +{"sensors":[{"euler":{"heading":323.1875,"pitch":134.5625,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":97.25,"pitch":115.375,"roll":43.9375},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":30.3125,"roll":38.3125},"location":"Right Ankle"},{"euler":{"heading":46.9375,"pitch":-137.1875,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":266.8125,"pitch":145.375,"roll":-24.5625},"location":"Right Knee"},{"euler":{"heading":57.9375,"pitch":-150.9375,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:21.642"} +{"sensors":[{"euler":{"heading":327.0625,"pitch":132.1875,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":102.4375,"pitch":120.125,"roll":48.3125},"location":"Left Ankle"},{"euler":{"heading":68.5,"pitch":34.875,"roll":34.4375},"location":"Right Ankle"},{"euler":{"heading":35.1875,"pitch":-143.25,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":273.3125,"pitch":144.8125,"roll":-27.375},"location":"Right Knee"},{"euler":{"heading":59.25,"pitch":-154.375,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:21.743"} +{"sensors":[{"euler":{"heading":334.9375,"pitch":130.0625,"roll":21.5625},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":128.5625,"roll":55.1875},"location":"Left Ankle"},{"euler":{"heading":57.375,"pitch":28.8125,"roll":38.125},"location":"Right Ankle"},{"euler":{"heading":34.3125,"pitch":-146.125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":14.125,"pitch":138.25,"roll":-25.9375},"location":"Right Knee"},{"euler":{"heading":60.5,"pitch":-154.0625,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:21.843"} +{"sensors":[{"euler":{"heading":351.0,"pitch":128.5625,"roll":10.75},"location":"Left Knee"},{"euler":{"heading":122.9375,"pitch":156.0,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":52.75,"pitch":25.125,"roll":38.5625},"location":"Right Ankle"},{"euler":{"heading":32.5,"pitch":-146.8125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":18.25,"pitch":134.125,"roll":-23.8125},"location":"Right Knee"},{"euler":{"heading":46.5625,"pitch":-136.1875,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:21.945"} +{"sensors":[{"euler":{"heading":352.0625,"pitch":132.875,"roll":10.1875},"location":"Left Knee"},{"euler":{"heading":120.0,"pitch":144.6875,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":50.5,"pitch":21.5625,"roll":37.9375},"location":"Right Ankle"},{"euler":{"heading":33.125,"pitch":-147.6875,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":17.75,"pitch":132.4375,"roll":-22.1875},"location":"Right Knee"},{"euler":{"heading":38.1875,"pitch":-125.5,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:22.45"} +{"sensors":[{"euler":{"heading":212.0625,"pitch":142.5,"roll":22.125},"location":"Left Knee"},{"euler":{"heading":94.3125,"pitch":114.5,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":47.375,"pitch":19.5,"roll":38.8125},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-147.25,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":19.125,"pitch":131.3125,"roll":-19.9375},"location":"Right Knee"},{"euler":{"heading":36.25,"pitch":-123.6875,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:22.146"} +{"sensors":[{"euler":{"heading":226.625,"pitch":155.3125,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":64.875,"pitch":106.25,"roll":26.6875},"location":"Left Ankle"},{"euler":{"heading":42.875,"pitch":17.5,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":35.1875,"pitch":-149.4375,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":24.25,"pitch":129.0,"roll":-16.5625},"location":"Right Knee"},{"euler":{"heading":37.125,"pitch":-122.375,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:22.248"} +{"sensors":[{"euler":{"heading":237.125,"pitch":165.8125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":51.875,"pitch":100.1875,"roll":13.8125},"location":"Left Ankle"},{"euler":{"heading":36.25,"pitch":13.0,"roll":39.875},"location":"Right Ankle"},{"euler":{"heading":35.375,"pitch":-154.25,"roll":70.1875},"location":"Right Hip"},{"euler":{"heading":27.625,"pitch":129.0,"roll":-13.0},"location":"Right Knee"},{"euler":{"heading":42.5,"pitch":-127.1875,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:22.348"} +{"sensors":[{"euler":{"heading":238.375,"pitch":159.9375,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":62.1875,"pitch":105.375,"roll":20.0625},"location":"Left Ankle"},{"euler":{"heading":28.8125,"pitch":5.4375,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":35.125,"pitch":-161.625,"roll":70.9375},"location":"Right Hip"},{"euler":{"heading":33.0,"pitch":130.0,"roll":-7.5625},"location":"Right Knee"},{"euler":{"heading":48.0625,"pitch":-129.4375,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:22.449"} +{"sensors":[{"euler":{"heading":297.625,"pitch":151.4375,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":75.4375,"pitch":109.125,"roll":29.6875},"location":"Left Ankle"},{"euler":{"heading":15.4375,"pitch":-7.75,"roll":42.125},"location":"Right Ankle"},{"euler":{"heading":42.25,"pitch":-151.875,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":46.25,"pitch":130.75,"roll":1.5},"location":"Right Knee"},{"euler":{"heading":47.125,"pitch":-131.125,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:22.550"} +{"sensors":[{"euler":{"heading":304.375,"pitch":145.4375,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":81.875,"pitch":110.3125,"roll":33.8125},"location":"Left Ankle"},{"euler":{"heading":16.625,"pitch":-10.9375,"roll":42.1875},"location":"Right Ankle"},{"euler":{"heading":50.4375,"pitch":-139.25,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":50.8125,"pitch":134.125,"roll":3.25},"location":"Right Knee"},{"euler":{"heading":52.8125,"pitch":-137.0,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:22.650"} +{"sensors":[{"euler":{"heading":307.1875,"pitch":141.875,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":85.5625,"pitch":110.5,"roll":37.25},"location":"Left Ankle"},{"euler":{"heading":35.625,"pitch":4.5,"roll":44.5625},"location":"Right Ankle"},{"euler":{"heading":54.6875,"pitch":-134.25,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":239.125,"pitch":137.4375,"roll":-8.875},"location":"Right Knee"},{"euler":{"heading":53.875,"pitch":-142.75,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:22.751"} +{"sensors":[{"euler":{"heading":314.5625,"pitch":138.0,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":90.1875,"pitch":112.0625,"roll":41.0},"location":"Left Ankle"},{"euler":{"heading":53.625,"pitch":18.875,"roll":43.25},"location":"Right Ankle"},{"euler":{"heading":50.0625,"pitch":-136.9375,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":256.875,"pitch":143.4375,"roll":-19.9375},"location":"Right Knee"},{"euler":{"heading":55.5625,"pitch":-147.3125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:22.852"} +{"sensors":[{"euler":{"heading":320.125,"pitch":134.9375,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":96.25,"pitch":114.1875,"roll":45.8125},"location":"Left Ankle"},{"euler":{"heading":69.0,"pitch":30.25,"roll":35.8125},"location":"Right Ankle"},{"euler":{"heading":42.8125,"pitch":-139.75,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":270.1875,"pitch":148.6875,"roll":-27.6875},"location":"Right Knee"},{"euler":{"heading":57.0,"pitch":-151.5,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:22.952"} +{"sensors":[{"euler":{"heading":326.75,"pitch":132.25,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":102.375,"pitch":120.125,"roll":52.25},"location":"Left Ankle"},{"euler":{"heading":64.25,"pitch":31.5625,"roll":35.9375},"location":"Right Ankle"},{"euler":{"heading":35.5,"pitch":-143.0625,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":7.5,"pitch":142.6875,"roll":-28.0},"location":"Right Knee"},{"euler":{"heading":60.1875,"pitch":-156.125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:23.53"} +{"sensors":[{"euler":{"heading":342.25,"pitch":129.875,"roll":14.1875},"location":"Left Knee"},{"euler":{"heading":115.1875,"pitch":143.125,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":54.375,"pitch":29.875,"roll":37.9375},"location":"Right Ankle"},{"euler":{"heading":34.125,"pitch":-144.5625,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":19.0,"pitch":134.375,"roll":-25.375},"location":"Right Knee"},{"euler":{"heading":54.375,"pitch":-145.125,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:23.154"} +{"sensors":[{"euler":{"heading":0.6875,"pitch":126.4375,"roll":7.625},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":165.5,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":50.3125,"pitch":25.75,"roll":38.125},"location":"Right Ankle"},{"euler":{"heading":30.25,"pitch":-147.25,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":19.5,"pitch":130.6875,"roll":-23.9375},"location":"Right Knee"},{"euler":{"heading":44.6875,"pitch":-124.5,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:23.260"} +{"sensors":[{"euler":{"heading":346.9375,"pitch":136.0625,"roll":14.0},"location":"Left Knee"},{"euler":{"heading":111.9375,"pitch":132.875,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":46.9375,"pitch":23.25,"roll":38.3125},"location":"Right Ankle"},{"euler":{"heading":32.375,"pitch":-146.1875,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":19.875,"pitch":128.9375,"roll":-22.0},"location":"Right Knee"},{"euler":{"heading":39.375,"pitch":-121.5625,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:23.361"} +{"sensors":[{"euler":{"heading":219.875,"pitch":148.6875,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":81.125,"pitch":111.5,"roll":39.375},"location":"Left Ankle"},{"euler":{"heading":42.3125,"pitch":20.75,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":33.0625,"pitch":-147.0625,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":22.25,"pitch":127.5,"roll":-19.5625},"location":"Right Knee"},{"euler":{"heading":38.3125,"pitch":-120.1875,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:23.462"} +{"sensors":[{"euler":{"heading":232.625,"pitch":160.5625,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":56.9375,"pitch":102.6875,"roll":19.125},"location":"Left Ankle"},{"euler":{"heading":36.625,"pitch":16.625,"roll":40.0},"location":"Right Ankle"},{"euler":{"heading":33.6875,"pitch":-149.625,"roll":70.375},"location":"Right Hip"},{"euler":{"heading":26.625,"pitch":126.25,"roll":-15.375},"location":"Right Knee"},{"euler":{"heading":40.5,"pitch":-122.0625,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:23.562"} +{"sensors":[{"euler":{"heading":238.3125,"pitch":165.5,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":54.3125,"pitch":101.9375,"roll":14.75},"location":"Left Ankle"},{"euler":{"heading":30.0625,"pitch":9.375,"roll":40.75},"location":"Right Ankle"},{"euler":{"heading":34.375,"pitch":-156.4375,"roll":71.0625},"location":"Right Hip"},{"euler":{"heading":29.875,"pitch":127.375,"roll":-10.0625},"location":"Right Knee"},{"euler":{"heading":47.25,"pitch":-127.625,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:23.664"} +{"sensors":[{"euler":{"heading":238.875,"pitch":155.0625,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":72.125,"pitch":108.0625,"roll":27.3125},"location":"Left Ankle"},{"euler":{"heading":22.125,"pitch":-1.5625,"roll":39.4375},"location":"Right Ankle"},{"euler":{"heading":35.3125,"pitch":-160.5625,"roll":70.5625},"location":"Right Hip"},{"euler":{"heading":37.25,"pitch":130.5625,"roll":-2.625},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-130.3125,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:23.764"} +{"sensors":[{"euler":{"heading":303.0625,"pitch":148.1875,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":76.0,"pitch":108.0,"roll":30.0625},"location":"Left Ankle"},{"euler":{"heading":9.0,"pitch":-12.625,"roll":37.0625},"location":"Right Ankle"},{"euler":{"heading":44.3125,"pitch":-145.8125,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":49.4375,"pitch":128.75,"roll":4.625},"location":"Right Knee"},{"euler":{"heading":53.375,"pitch":-134.375,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:23.865"} +{"sensors":[{"euler":{"heading":305.3125,"pitch":144.375,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":79.25,"pitch":108.1875,"roll":33.1875},"location":"Left Ankle"},{"euler":{"heading":14.5,"pitch":-12.9375,"roll":40.875},"location":"Right Ankle"},{"euler":{"heading":51.25,"pitch":-139.125,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":45.25,"pitch":133.3125,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":55.8125,"pitch":-140.3125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:23.965"} +{"sensors":[{"euler":{"heading":310.25,"pitch":140.4375,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":84.0625,"pitch":108.5,"roll":37.4375},"location":"Left Ankle"},{"euler":{"heading":125.0,"pitch":2.3125,"roll":47.5},"location":"Right Ankle"},{"euler":{"heading":52.5625,"pitch":-136.75,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":244.0625,"pitch":139.5,"roll":-12.875},"location":"Right Knee"},{"euler":{"heading":58.0625,"pitch":-146.5,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:24.68"} +{"sensors":[{"euler":{"heading":316.875,"pitch":136.875,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":88.375,"pitch":109.75,"roll":40.9375},"location":"Left Ankle"},{"euler":{"heading":54.375,"pitch":24.25,"roll":42.75},"location":"Right Ankle"},{"euler":{"heading":46.75,"pitch":-139.375,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":263.25,"pitch":144.4375,"roll":-23.0},"location":"Right Knee"},{"euler":{"heading":60.5625,"pitch":-151.8125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:24.169"} +{"sensors":[{"euler":{"heading":320.875,"pitch":134.75,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":94.375,"pitch":113.0,"roll":46.25},"location":"Left Ankle"},{"euler":{"heading":67.5,"pitch":31.75,"roll":34.6875},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-143.0625,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":272.875,"pitch":147.5625,"roll":-30.375},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-154.0,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:24.270"} +{"sensors":[{"euler":{"heading":328.125,"pitch":132.75,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":119.875,"roll":53.5},"location":"Left Ankle"},{"euler":{"heading":60.0625,"pitch":31.25,"roll":36.375},"location":"Right Ankle"},{"euler":{"heading":30.125,"pitch":-146.75,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":9.25,"pitch":139.625,"roll":-29.0625},"location":"Right Knee"},{"euler":{"heading":61.875,"pitch":-158.375,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:24.371"} +{"sensors":[{"euler":{"heading":345.4375,"pitch":130.9375,"roll":11.75},"location":"Left Knee"},{"euler":{"heading":117.5,"pitch":149.375,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":51.9375,"pitch":27.75,"roll":38.0625},"location":"Right Ankle"},{"euler":{"heading":31.4375,"pitch":-147.0,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":18.875,"pitch":133.875,"roll":-25.75},"location":"Right Knee"},{"euler":{"heading":54.0,"pitch":-146.6875,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:24.472"} +{"sensors":[{"euler":{"heading":359.5,"pitch":128.0,"roll":7.0},"location":"Left Knee"},{"euler":{"heading":126.5625,"pitch":161.9375,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":48.25,"pitch":25.5625,"roll":37.875},"location":"Right Ankle"},{"euler":{"heading":27.375,"pitch":-148.6875,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":19.8125,"pitch":129.4375,"roll":-24.5},"location":"Right Knee"},{"euler":{"heading":43.6875,"pitch":-123.625,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:24.572"} +{"sensors":[{"euler":{"heading":342.25,"pitch":137.0625,"roll":15.4375},"location":"Left Knee"},{"euler":{"heading":106.375,"pitch":123.8125,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":44.9375,"pitch":22.0625,"roll":37.6875},"location":"Right Ankle"},{"euler":{"heading":30.8125,"pitch":-147.5625,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":19.5625,"pitch":127.9375,"roll":-22.8125},"location":"Right Knee"},{"euler":{"heading":38.6875,"pitch":-120.625,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:24.673"} +{"sensors":[{"euler":{"heading":222.9375,"pitch":152.0,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":70.3125,"pitch":107.8125,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":40.4375,"pitch":19.8125,"roll":38.9375},"location":"Right Ankle"},{"euler":{"heading":33.0625,"pitch":-147.375,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":22.3125,"pitch":126.625,"roll":-19.9375},"location":"Right Knee"},{"euler":{"heading":37.5,"pitch":-119.125,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:24.779"} +{"sensors":[{"euler":{"heading":236.4375,"pitch":162.0625,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":53.9375,"pitch":103.5625,"roll":15.875},"location":"Left Ankle"},{"euler":{"heading":34.125,"pitch":15.5625,"roll":39.8125},"location":"Right Ankle"},{"euler":{"heading":34.8125,"pitch":-148.3125,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":26.75,"pitch":125.8125,"roll":-15.6875},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-122.9375,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:24.880"} +{"sensors":[{"euler":{"heading":238.8125,"pitch":162.25,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":57.875,"pitch":105.0,"roll":17.3125},"location":"Left Ankle"},{"euler":{"heading":28.375,"pitch":8.4375,"roll":40.0625},"location":"Right Ankle"},{"euler":{"heading":35.875,"pitch":-154.0,"roll":70.6875},"location":"Right Hip"},{"euler":{"heading":28.8125,"pitch":127.375,"roll":-11.1875},"location":"Right Knee"},{"euler":{"heading":46.75,"pitch":-127.75,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:24.981"} +{"sensors":[{"euler":{"heading":237.5,"pitch":152.1875,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":108.9375,"roll":27.125},"location":"Left Ankle"},{"euler":{"heading":17.8125,"pitch":-6.3125,"roll":38.75},"location":"Right Ankle"},{"euler":{"heading":39.625,"pitch":-152.625,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":35.5,"pitch":130.375,"roll":-3.625},"location":"Right Knee"},{"euler":{"heading":49.5,"pitch":-129.9375,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:25.82"} +{"sensors":[{"euler":{"heading":309.375,"pitch":146.0,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":77.5625,"pitch":110.25,"roll":30.9375},"location":"Left Ankle"},{"euler":{"heading":7.9375,"pitch":-18.0,"roll":35.5},"location":"Right Ankle"},{"euler":{"heading":49.1875,"pitch":-141.125,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":44.375,"pitch":132.25,"roll":2.5625},"location":"Right Knee"},{"euler":{"heading":54.125,"pitch":-135.625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:25.182"} +{"sensors":[{"euler":{"heading":311.6875,"pitch":141.8125,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":83.6875,"pitch":110.625,"roll":35.1875},"location":"Left Ankle"},{"euler":{"heading":21.375,"pitch":-8.5,"roll":41.0},"location":"Right Ankle"},{"euler":{"heading":55.125,"pitch":-135.5,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":35.4375,"pitch":134.3125,"roll":-4.9375},"location":"Right Knee"},{"euler":{"heading":57.5,"pitch":-141.25,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:25.283"} +{"sensors":[{"euler":{"heading":315.6875,"pitch":138.125,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":89.125,"pitch":111.1875,"roll":38.875},"location":"Left Ankle"},{"euler":{"heading":132.875,"pitch":7.3125,"roll":47.5},"location":"Right Ankle"},{"euler":{"heading":51.875,"pitch":-136.125,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":248.875,"pitch":141.1875,"roll":-17.0},"location":"Right Knee"},{"euler":{"heading":58.875,"pitch":-146.875,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:25.384"} +{"sensors":[{"euler":{"heading":321.6875,"pitch":135.25,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":93.75,"pitch":113.25,"roll":42.875},"location":"Left Ankle"},{"euler":{"heading":62.6875,"pitch":27.375,"roll":38.75},"location":"Right Ankle"},{"euler":{"heading":44.9375,"pitch":-140.3125,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":266.3125,"pitch":146.8125,"roll":-27.0625},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-151.1875,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:25.485"} +{"sensors":[{"euler":{"heading":326.0,"pitch":133.5625,"roll":25.9375},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":116.625,"roll":48.3125},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":30.25,"roll":34.25},"location":"Right Ankle"},{"euler":{"heading":36.0625,"pitch":-145.4375,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":270.6875,"pitch":148.6875,"roll":-30.4375},"location":"Right Knee"},{"euler":{"heading":60.0,"pitch":-155.3125,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:25.587"} +{"sensors":[{"euler":{"heading":337.625,"pitch":130.125,"roll":18.6875},"location":"Left Knee"},{"euler":{"heading":104.875,"pitch":127.1875,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":57.875,"pitch":26.125,"roll":37.9375},"location":"Right Ankle"},{"euler":{"heading":33.375,"pitch":-147.4375,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":6.125,"pitch":141.0625,"roll":-27.75},"location":"Right Knee"},{"euler":{"heading":63.25,"pitch":-157.1875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:25.687"} +{"sensors":[{"euler":{"heading":356.25,"pitch":127.125,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":126.8125,"pitch":160.5625,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":51.1875,"pitch":22.0,"roll":38.6875},"location":"Right Ankle"},{"euler":{"heading":34.375,"pitch":-147.1875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":11.25,"pitch":136.0625,"roll":-25.5},"location":"Right Knee"},{"euler":{"heading":51.4375,"pitch":-139.5,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:25.788"} +{"sensors":[{"euler":{"heading":359.1875,"pitch":130.4375,"roll":7.5625},"location":"Left Knee"},{"euler":{"heading":128.0,"pitch":155.8125,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":48.875,"pitch":20.1875,"roll":38.3125},"location":"Right Ankle"},{"euler":{"heading":32.8125,"pitch":-148.4375,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":13.0,"pitch":132.75,"roll":-24.125},"location":"Right Knee"},{"euler":{"heading":42.25,"pitch":-124.9375,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:25.889"} +{"sensors":[{"euler":{"heading":210.5625,"pitch":140.25,"roll":19.875},"location":"Left Knee"},{"euler":{"heading":98.875,"pitch":115.0625,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":45.3125,"pitch":19.4375,"roll":38.0625},"location":"Right Ankle"},{"euler":{"heading":33.0625,"pitch":-147.8125,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":15.875,"pitch":130.25,"roll":-22.3125},"location":"Right Knee"},{"euler":{"heading":37.4375,"pitch":-121.8125,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:25.989"} +{"sensors":[{"euler":{"heading":224.5625,"pitch":154.25,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":67.4375,"pitch":103.25,"roll":30.6875},"location":"Left Ankle"},{"euler":{"heading":39.75,"pitch":18.25,"roll":38.5},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-147.25,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":20.6875,"pitch":128.0,"roll":-19.25},"location":"Right Knee"},{"euler":{"heading":35.6875,"pitch":-120.8125,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:26.90"} +{"sensors":[{"euler":{"heading":235.8125,"pitch":165.125,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":51.75,"pitch":98.5625,"roll":14.3125},"location":"Left Ankle"},{"euler":{"heading":34.125,"pitch":13.5,"roll":39.375},"location":"Right Ankle"},{"euler":{"heading":35.375,"pitch":-149.6875,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":24.8125,"pitch":127.4375,"roll":-14.875},"location":"Right Knee"},{"euler":{"heading":40.0,"pitch":-124.6875,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:26.190"} +{"sensors":[{"euler":{"heading":238.0625,"pitch":161.4375,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":57.1875,"pitch":102.5625,"roll":17.875},"location":"Left Ankle"},{"euler":{"heading":26.9375,"pitch":5.5625,"roll":38.875},"location":"Right Ankle"},{"euler":{"heading":35.6875,"pitch":-154.3125,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":30.5625,"pitch":128.25,"roll":-8.875},"location":"Right Knee"},{"euler":{"heading":44.9375,"pitch":-127.5625,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:26.291"} +{"sensors":[{"euler":{"heading":234.6875,"pitch":153.75,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":71.4375,"pitch":106.0625,"roll":28.4375},"location":"Left Ankle"},{"euler":{"heading":16.0625,"pitch":-9.375,"roll":39.0625},"location":"Right Ankle"},{"euler":{"heading":40.6875,"pitch":-148.625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":40.6875,"pitch":131.375,"roll":-0.1875},"location":"Right Knee"},{"euler":{"heading":44.0,"pitch":-130.125,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:26.391"} +{"sensors":[{"euler":{"heading":303.8125,"pitch":146.5625,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":80.75,"pitch":108.125,"roll":32.9375},"location":"Left Ankle"},{"euler":{"heading":10.75,"pitch":-17.4375,"roll":38.375},"location":"Right Ankle"},{"euler":{"heading":49.6875,"pitch":-137.9375,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":44.6875,"pitch":132.5625,"roll":1.8125},"location":"Right Knee"},{"euler":{"heading":50.125,"pitch":-135.4375,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:26.495"} +{"sensors":[{"euler":{"heading":310.1875,"pitch":141.8125,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":86.25,"pitch":109.0,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":27.125,"pitch":-4.0,"roll":42.3125},"location":"Right Ankle"},{"euler":{"heading":53.375,"pitch":-134.625,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":32.0625,"pitch":134.375,"roll":-8.25},"location":"Right Knee"},{"euler":{"heading":53.8125,"pitch":-140.3125,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:26.596"} +{"sensors":[{"euler":{"heading":316.9375,"pitch":138.0,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":90.75,"pitch":111.125,"roll":40.125},"location":"Left Ankle"},{"euler":{"heading":50.125,"pitch":16.4375,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":50.5625,"pitch":-136.9375,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":253.875,"pitch":140.8125,"roll":-19.9375},"location":"Right Knee"},{"euler":{"heading":55.25,"pitch":-144.5625,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:26.697"} +{"sensors":[{"euler":{"heading":322.875,"pitch":134.6875,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":95.25,"pitch":114.0625,"roll":43.75},"location":"Left Ankle"},{"euler":{"heading":64.6875,"pitch":29.9375,"roll":36.3125},"location":"Right Ankle"},{"euler":{"heading":41.8125,"pitch":-141.0,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":269.0625,"pitch":145.75,"roll":-28.5},"location":"Right Knee"},{"euler":{"heading":57.3125,"pitch":-148.625,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:26.797"} +{"sensors":[{"euler":{"heading":328.9375,"pitch":132.1875,"roll":25.9375},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":118.25,"roll":48.5625},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":30.6875,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":35.6875,"pitch":-143.9375,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":271.0625,"pitch":144.6875,"roll":-29.0},"location":"Right Knee"},{"euler":{"heading":58.0625,"pitch":-153.3125,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:26.898"} +{"sensors":[{"euler":{"heading":340.0625,"pitch":129.75,"roll":17.625},"location":"Left Knee"},{"euler":{"heading":105.4375,"pitch":129.25,"roll":56.625},"location":"Left Ankle"},{"euler":{"heading":54.875,"pitch":26.875,"roll":36.6875},"location":"Right Ankle"},{"euler":{"heading":34.1875,"pitch":-145.8125,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":12.3125,"pitch":137.6875,"roll":-26.8125},"location":"Right Knee"},{"euler":{"heading":59.1875,"pitch":-150.0,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:26.999"} +{"sensors":[{"euler":{"heading":351.6875,"pitch":130.375,"roll":10.375},"location":"Left Knee"},{"euler":{"heading":113.125,"pitch":147.6875,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":51.75,"pitch":23.9375,"roll":37.25},"location":"Right Ankle"},{"euler":{"heading":31.4375,"pitch":-147.125,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":13.6875,"pitch":133.5625,"roll":-25.25},"location":"Right Knee"},{"euler":{"heading":44.5625,"pitch":-131.125,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:27.100"} +{"sensors":[{"euler":{"heading":343.25,"pitch":136.0625,"roll":15.0},"location":"Left Knee"},{"euler":{"heading":106.1875,"pitch":125.8125,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":21.375,"roll":37.375},"location":"Right Ankle"},{"euler":{"heading":33.125,"pitch":-148.0,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":14.4375,"pitch":132.125,"roll":-23.25},"location":"Right Knee"},{"euler":{"heading":38.4375,"pitch":-124.4375,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:27.201"} +{"sensors":[{"euler":{"heading":219.1875,"pitch":148.875,"roll":28.75},"location":"Left Knee"},{"euler":{"heading":79.75,"pitch":108.9375,"roll":39.4375},"location":"Left Ankle"},{"euler":{"heading":45.6875,"pitch":19.8125,"roll":38.25},"location":"Right Ankle"},{"euler":{"heading":34.5,"pitch":-146.3125,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":18.625,"pitch":130.3125,"roll":-20.5},"location":"Right Knee"},{"euler":{"heading":36.25,"pitch":-121.4375,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:27.301"} +{"sensors":[{"euler":{"heading":231.9375,"pitch":159.9375,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":58.9375,"pitch":101.875,"roll":21.3125},"location":"Left Ankle"},{"euler":{"heading":39.6875,"pitch":17.8125,"roll":38.5625},"location":"Right Ankle"},{"euler":{"heading":35.8125,"pitch":-146.5,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":23.75,"pitch":128.0625,"roll":-16.9375},"location":"Right Knee"},{"euler":{"heading":36.1875,"pitch":-121.0625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:27.402"} +{"sensors":[{"euler":{"heading":238.625,"pitch":165.0,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":53.4375,"pitch":101.0625,"roll":14.875},"location":"Left Ankle"},{"euler":{"heading":32.3125,"pitch":12.8125,"roll":38.9375},"location":"Right Ankle"},{"euler":{"heading":36.75,"pitch":-149.9375,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":28.1875,"pitch":127.75,"roll":-12.3125},"location":"Right Knee"},{"euler":{"heading":41.5625,"pitch":-125.3125,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:27.503"} +{"sensors":[{"euler":{"heading":237.9375,"pitch":156.0,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":67.0,"pitch":105.5625,"roll":24.0},"location":"Left Ankle"},{"euler":{"heading":21.5,"pitch":-1.0,"roll":38.875},"location":"Right Ankle"},{"euler":{"heading":38.5625,"pitch":-150.5625,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":35.3125,"pitch":129.5,"roll":-4.8125},"location":"Right Knee"},{"euler":{"heading":43.5625,"pitch":-127.4375,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:27.604"} +{"sensors":[{"euler":{"heading":300.6875,"pitch":149.0,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":75.1875,"pitch":108.125,"roll":30.0625},"location":"Left Ankle"},{"euler":{"heading":13.8125,"pitch":-12.875,"roll":38.875},"location":"Right Ankle"},{"euler":{"heading":46.375,"pitch":-140.875,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":44.125,"pitch":131.0,"roll":1.375},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-131.1875,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:27.704"} +{"sensors":[{"euler":{"heading":306.0,"pitch":144.375,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":82.0625,"pitch":109.0,"roll":35.0},"location":"Left Ankle"},{"euler":{"heading":22.8125,"pitch":-5.875,"roll":41.5625},"location":"Right Ankle"},{"euler":{"heading":51.4375,"pitch":-136.4375,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":36.6875,"pitch":132.75,"roll":-5.0},"location":"Right Knee"},{"euler":{"heading":51.1875,"pitch":-137.1875,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:27.805"} +{"sensors":[{"euler":{"heading":310.75,"pitch":140.5625,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":85.0,"pitch":109.0625,"roll":37.8125},"location":"Left Ankle"},{"euler":{"heading":43.8125,"pitch":9.875,"roll":42.625},"location":"Right Ankle"},{"euler":{"heading":51.1875,"pitch":-135.9375,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":247.0625,"pitch":139.4375,"roll":-16.75},"location":"Right Knee"},{"euler":{"heading":54.5,"pitch":-143.9375,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:27.905"} +{"sensors":[{"euler":{"heading":318.8125,"pitch":136.625,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":90.0,"pitch":111.0625,"roll":41.6875},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":25.875,"roll":39.875},"location":"Right Ankle"},{"euler":{"heading":46.5625,"pitch":-139.0,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":263.8125,"pitch":144.6875,"roll":-25.8125},"location":"Right Knee"},{"euler":{"heading":57.9375,"pitch":-149.9375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:28.6"} +{"sensors":[{"euler":{"heading":325.75,"pitch":133.1875,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":96.5625,"pitch":114.5,"roll":47.1875},"location":"Left Ankle"},{"euler":{"heading":69.3125,"pitch":31.1875,"roll":33.6875},"location":"Right Ankle"},{"euler":{"heading":36.5625,"pitch":-143.8125,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":272.3125,"pitch":148.0,"roll":-31.875},"location":"Right Knee"},{"euler":{"heading":59.875,"pitch":-155.5,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:28.106"} +{"sensors":[{"euler":{"heading":334.6875,"pitch":131.0625,"roll":20.5},"location":"Left Knee"},{"euler":{"heading":101.875,"pitch":122.3125,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":58.1875,"pitch":29.5,"roll":36.6875},"location":"Right Ankle"},{"euler":{"heading":32.6875,"pitch":-146.25,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":6.625,"pitch":140.625,"roll":-29.3125},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-160.0,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:28.207"} +{"sensors":[{"euler":{"heading":352.625,"pitch":128.9375,"roll":10.25},"location":"Left Knee"},{"euler":{"heading":122.875,"pitch":154.625,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":51.3125,"pitch":26.9375,"roll":37.875},"location":"Right Ankle"},{"euler":{"heading":33.5625,"pitch":-145.1875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":11.1875,"pitch":135.0,"roll":-27.375},"location":"Right Knee"},{"euler":{"heading":51.5,"pitch":-144.5,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:28.308"} +{"sensors":[{"euler":{"heading":3.4375,"pitch":129.75,"roll":6.6875},"location":"Left Knee"},{"euler":{"heading":123.75,"pitch":157.0625,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":48.3125,"pitch":24.0,"roll":37.4375},"location":"Right Ankle"},{"euler":{"heading":32.5625,"pitch":-145.8125,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":13.5,"pitch":131.8125,"roll":-25.375},"location":"Right Knee"},{"euler":{"heading":46.75,"pitch":-126.25,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:28.408"} +{"sensors":[{"euler":{"heading":211.25,"pitch":139.375,"roll":16.3125},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":131.1875,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":45.4375,"pitch":20.8125,"roll":37.4375},"location":"Right Ankle"},{"euler":{"heading":33.4375,"pitch":-145.875,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":15.125,"pitch":130.25,"roll":-23.375},"location":"Right Knee"},{"euler":{"heading":39.9375,"pitch":-121.4375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:28.509"} +{"sensors":[{"euler":{"heading":223.9375,"pitch":152.875,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":71.8125,"pitch":108.3125,"roll":33.1875},"location":"Left Ankle"},{"euler":{"heading":41.5625,"pitch":18.6875,"roll":38.3125},"location":"Right Ankle"},{"euler":{"heading":33.5625,"pitch":-147.4375,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":18.875,"pitch":128.625,"roll":-20.3125},"location":"Right Knee"},{"euler":{"heading":36.75,"pitch":-119.375,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:28.609"} +{"sensors":[{"euler":{"heading":234.3125,"pitch":164.4375,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":51.875,"pitch":98.75,"roll":16.75},"location":"Left Ankle"},{"euler":{"heading":35.5,"pitch":15.0,"roll":39.0},"location":"Right Ankle"},{"euler":{"heading":34.3125,"pitch":-148.0,"roll":70.125},"location":"Right Hip"},{"euler":{"heading":24.5,"pitch":127.0625,"roll":-15.875},"location":"Right Knee"},{"euler":{"heading":38.0625,"pitch":-120.8125,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:28.710"} +{"sensors":[{"euler":{"heading":238.9375,"pitch":161.875,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":56.0625,"pitch":102.8125,"roll":16.6875},"location":"Left Ankle"},{"euler":{"heading":28.25,"pitch":7.25,"roll":40.5625},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-154.1875,"roll":71.4375},"location":"Right Hip"},{"euler":{"heading":29.0,"pitch":127.8125,"roll":-10.4375},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-125.5,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:28.811"} +{"sensors":[{"euler":{"heading":236.875,"pitch":153.0,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":71.5625,"pitch":106.6875,"roll":27.875},"location":"Left Ankle"},{"euler":{"heading":18.5625,"pitch":-4.9375,"roll":39.625},"location":"Right Ankle"},{"euler":{"heading":38.0,"pitch":-154.1875,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":35.3125,"pitch":130.5625,"roll":-3.25},"location":"Right Knee"},{"euler":{"heading":45.4375,"pitch":-127.6875,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:28.912"} +{"sensors":[{"euler":{"heading":306.8125,"pitch":146.5625,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":78.5,"pitch":107.9375,"roll":31.3125},"location":"Left Ankle"},{"euler":{"heading":13.125,"pitch":-12.875,"roll":39.5625},"location":"Right Ankle"},{"euler":{"heading":46.0,"pitch":-141.875,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":41.4375,"pitch":132.375,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":50.625,"pitch":-133.5625,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:29.12"} +{"sensors":[{"euler":{"heading":312.0625,"pitch":141.625,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":84.625,"pitch":108.875,"roll":35.0},"location":"Left Ankle"},{"euler":{"heading":26.625,"pitch":-3.875,"roll":43.125},"location":"Right Ankle"},{"euler":{"heading":52.9375,"pitch":-135.6875,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":29.4375,"pitch":134.8125,"roll":-8.875},"location":"Right Knee"},{"euler":{"heading":54.8125,"pitch":-138.5625,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:29.113"} +{"sensors":[{"euler":{"heading":318.6875,"pitch":137.625,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":110.75,"roll":39.1875},"location":"Left Ankle"},{"euler":{"heading":134.3125,"pitch":10.1875,"roll":45.75},"location":"Right Ankle"},{"euler":{"heading":51.9375,"pitch":-136.0625,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":252.625,"pitch":141.9375,"roll":-19.75},"location":"Right Knee"},{"euler":{"heading":56.5625,"pitch":-144.9375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:29.214"} +{"sensors":[{"euler":{"heading":324.0,"pitch":134.4375,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":93.75,"pitch":113.3125,"roll":42.9375},"location":"Left Ankle"},{"euler":{"heading":62.9375,"pitch":28.75,"roll":37.125},"location":"Right Ankle"},{"euler":{"heading":43.8125,"pitch":-140.875,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":269.3125,"pitch":147.75,"roll":-29.875},"location":"Right Knee"},{"euler":{"heading":57.5,"pitch":-150.25,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:29.316"} +{"sensors":[{"euler":{"heading":331.5,"pitch":131.0,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":100.875,"pitch":118.8125,"roll":49.0625},"location":"Left Ankle"},{"euler":{"heading":64.0625,"pitch":31.875,"roll":35.0625},"location":"Right Ankle"},{"euler":{"heading":34.875,"pitch":-144.625,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":3.3125,"pitch":144.0,"roll":-29.75},"location":"Right Knee"},{"euler":{"heading":59.125,"pitch":-153.6875,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:29.416"} +{"sensors":[{"euler":{"heading":342.0,"pitch":129.9375,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":132.5,"roll":57.75},"location":"Left Ankle"},{"euler":{"heading":54.4375,"pitch":27.5,"roll":37.0},"location":"Right Ankle"},{"euler":{"heading":34.25,"pitch":-145.625,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":11.125,"pitch":137.0625,"roll":-28.0},"location":"Right Knee"},{"euler":{"heading":53.875,"pitch":-146.125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:29.518"} +{"sensors":[{"euler":{"heading":355.5,"pitch":130.0625,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":116.4375,"pitch":149.3125,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":50.4375,"pitch":24.75,"roll":36.75},"location":"Right Ankle"},{"euler":{"heading":29.125,"pitch":-148.375,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":12.625,"pitch":132.375,"roll":-27.0625},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-123.25,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:29.619"} +{"sensors":[{"euler":{"heading":345.25,"pitch":136.375,"roll":14.6875},"location":"Left Knee"},{"euler":{"heading":105.6875,"pitch":124.125,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":47.375,"pitch":22.3125,"roll":36.375},"location":"Right Ankle"},{"euler":{"heading":31.125,"pitch":-147.1875,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":13.8125,"pitch":129.5,"roll":-25.375},"location":"Right Knee"},{"euler":{"heading":35.75,"pitch":-119.5625,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:29.720"} +{"sensors":[{"euler":{"heading":222.0625,"pitch":149.1875,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":76.3125,"pitch":111.375,"roll":36.125},"location":"Left Ankle"},{"euler":{"heading":44.125,"pitch":20.375,"roll":37.375},"location":"Right Ankle"},{"euler":{"heading":33.75,"pitch":-145.875,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":16.75,"pitch":128.5,"roll":-22.375},"location":"Right Knee"},{"euler":{"heading":34.1875,"pitch":-118.125,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:29.820"} +{"sensors":[{"euler":{"heading":234.8125,"pitch":161.625,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":54.1875,"pitch":104.1875,"roll":16.3125},"location":"Left Ankle"},{"euler":{"heading":36.8125,"pitch":16.9375,"roll":38.375},"location":"Right Ankle"},{"euler":{"heading":37.125,"pitch":-145.3125,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":21.5,"pitch":127.4375,"roll":-18.25},"location":"Right Knee"},{"euler":{"heading":37.6875,"pitch":-121.1875,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:29.921"} +{"sensors":[{"euler":{"heading":239.9375,"pitch":162.75,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":55.125,"pitch":105.625,"roll":15.125},"location":"Left Ankle"},{"euler":{"heading":29.25,"pitch":10.9375,"roll":38.1875},"location":"Right Ankle"},{"euler":{"heading":38.8125,"pitch":-149.125,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":26.3125,"pitch":127.8125,"roll":-12.6875},"location":"Right Knee"},{"euler":{"heading":43.1875,"pitch":-125.125,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:30.28"} +{"sensors":[{"euler":{"heading":237.9375,"pitch":153.875,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":69.25,"pitch":109.375,"roll":25.25},"location":"Left Ankle"},{"euler":{"heading":20.8125,"pitch":-1.1875,"roll":38.375},"location":"Right Ankle"},{"euler":{"heading":40.0,"pitch":-151.0625,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":31.875,"pitch":129.75,"roll":-5.6875},"location":"Right Knee"},{"euler":{"heading":45.0,"pitch":-126.25,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:30.128"} +{"sensors":[{"euler":{"heading":306.8125,"pitch":147.625,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":110.5625,"roll":30.5},"location":"Left Ankle"},{"euler":{"heading":12.6875,"pitch":-14.625,"roll":37.4375},"location":"Right Ankle"},{"euler":{"heading":47.6875,"pitch":-141.875,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":39.375,"pitch":131.0625,"roll":0.3125},"location":"Right Knee"},{"euler":{"heading":48.75,"pitch":-131.5625,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:30.229"} +{"sensors":[{"euler":{"heading":313.5625,"pitch":142.25,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":85.25,"pitch":112.5625,"roll":34.625},"location":"Left Ankle"},{"euler":{"heading":24.0,"pitch":-4.6875,"roll":40.1875},"location":"Right Ankle"},{"euler":{"heading":53.6875,"pitch":-135.5625,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":32.3125,"pitch":133.625,"roll":-6.25},"location":"Right Knee"},{"euler":{"heading":52.875,"pitch":-136.0625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:30.329"} +{"sensors":[{"euler":{"heading":319.75,"pitch":138.125,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":113.5625,"roll":38.9375},"location":"Left Ankle"},{"euler":{"heading":42.4375,"pitch":8.625,"roll":44.0625},"location":"Right Ankle"},{"euler":{"heading":53.625,"pitch":-135.4375,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":247.375,"pitch":140.375,"roll":-18.375},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-143.875,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:30.430"} +{"sensors":[{"euler":{"heading":326.1875,"pitch":134.5625,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":100.6875,"pitch":115.5625,"roll":42.125},"location":"Left Ankle"},{"euler":{"heading":60.75,"pitch":27.4375,"roll":38.125},"location":"Right Ankle"},{"euler":{"heading":47.0,"pitch":-139.375,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":265.125,"pitch":146.6875,"roll":-28.0625},"location":"Right Knee"},{"euler":{"heading":58.1875,"pitch":-149.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:30.531"} +{"sensors":[{"euler":{"heading":331.0625,"pitch":131.6875,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":106.3125,"pitch":119.25,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":67.8125,"pitch":32.8125,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":36.3125,"pitch":-143.8125,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":273.125,"pitch":147.875,"roll":-31.8125},"location":"Right Knee"},{"euler":{"heading":58.3125,"pitch":-153.0625,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:30.632"} +{"sensors":[{"euler":{"heading":339.8125,"pitch":129.1875,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":111.9375,"pitch":128.9375,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":57.0,"pitch":26.5,"roll":37.0625},"location":"Right Ankle"},{"euler":{"heading":35.0,"pitch":-145.8125,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":2.8125,"pitch":141.625,"roll":-29.4375},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-154.125,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:30.733"} +{"sensors":[{"euler":{"heading":356.25,"pitch":127.625,"roll":10.0625},"location":"Left Knee"},{"euler":{"heading":134.125,"pitch":162.625,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":52.0625,"pitch":22.375,"roll":37.25},"location":"Right Ankle"},{"euler":{"heading":33.6875,"pitch":-146.5,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":6.875,"pitch":137.25,"roll":-27.25},"location":"Right Knee"},{"euler":{"heading":47.875,"pitch":-136.9375,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:30.834"} +{"sensors":[{"euler":{"heading":2.5,"pitch":131.125,"roll":8.0625},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":156.4375,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":49.1875,"pitch":19.375,"roll":37.375},"location":"Right Ankle"},{"euler":{"heading":35.125,"pitch":-146.5625,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":7.5,"pitch":134.625,"roll":-25.8125},"location":"Right Knee"},{"euler":{"heading":41.4375,"pitch":-122.75,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:30.935"} +{"sensors":[{"euler":{"heading":214.5,"pitch":141.5625,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":107.1875,"pitch":121.0625,"roll":53.125},"location":"Left Ankle"},{"euler":{"heading":45.1875,"pitch":18.0625,"roll":37.625},"location":"Right Ankle"},{"euler":{"heading":36.6875,"pitch":-145.4375,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":9.9375,"pitch":132.1875,"roll":-24.0},"location":"Right Knee"},{"euler":{"heading":36.3125,"pitch":-119.6875,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:31.35"} +{"sensors":[{"euler":{"heading":230.875,"pitch":157.5625,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":72.25,"pitch":105.625,"roll":27.375},"location":"Left Ankle"},{"euler":{"heading":40.625,"pitch":17.0625,"roll":37.6875},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-145.5,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":15.25,"pitch":129.625,"roll":-20.8125},"location":"Right Knee"},{"euler":{"heading":35.3125,"pitch":-119.25,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:31.136"} +{"sensors":[{"euler":{"heading":240.3125,"pitch":166.25,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":55.6875,"pitch":101.375,"roll":13.4375},"location":"Left Ankle"},{"euler":{"heading":33.6875,"pitch":12.875,"roll":38.625},"location":"Right Ankle"},{"euler":{"heading":39.5,"pitch":-146.8125,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":20.375,"pitch":128.4375,"roll":-16.0625},"location":"Right Knee"},{"euler":{"heading":39.5,"pitch":-123.125,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:31.237"} +{"sensors":[{"euler":{"heading":240.25,"pitch":159.625,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":64.5,"pitch":104.5,"roll":19.375},"location":"Left Ankle"},{"euler":{"heading":25.375,"pitch":5.125,"roll":37.75},"location":"Right Ankle"},{"euler":{"heading":39.75,"pitch":-152.1875,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":25.8125,"pitch":129.4375,"roll":-10.25},"location":"Right Knee"},{"euler":{"heading":45.875,"pitch":-125.875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:31.338"} +{"sensors":[{"euler":{"heading":301.1875,"pitch":151.5,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":79.5,"pitch":109.375,"roll":29.4375},"location":"Left Ankle"},{"euler":{"heading":13.8125,"pitch":-8.625,"roll":37.5625},"location":"Right Ankle"},{"euler":{"heading":46.4375,"pitch":-146.9375,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":35.125,"pitch":131.0,"roll":-2.375},"location":"Right Knee"},{"euler":{"heading":45.125,"pitch":-128.125,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:31.438"} +{"sensors":[{"euler":{"heading":310.125,"pitch":144.75,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":89.9375,"pitch":110.8125,"roll":34.25},"location":"Left Ankle"},{"euler":{"heading":12.875,"pitch":-13.4375,"roll":38.375},"location":"Right Ankle"},{"euler":{"heading":54.0,"pitch":-137.5,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":37.875,"pitch":133.3125,"roll":-0.9375},"location":"Right Knee"},{"euler":{"heading":50.875,"pitch":-132.75,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:31.539"} +{"sensors":[{"euler":{"heading":313.9375,"pitch":140.25,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":94.1875,"pitch":111.125,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":31.375,"pitch":0.875,"roll":41.375},"location":"Right Ankle"},{"euler":{"heading":57.0625,"pitch":-134.4375,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":236.625,"pitch":136.375,"roll":-11.8125},"location":"Right Knee"},{"euler":{"heading":54.8125,"pitch":-140.9375,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:31.639"} +{"sensors":[{"euler":{"heading":320.25,"pitch":136.25,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":98.875,"pitch":112.25,"roll":39.625},"location":"Left Ankle"},{"euler":{"heading":51.125,"pitch":17.0625,"roll":43.25},"location":"Right Ankle"},{"euler":{"heading":53.3125,"pitch":-137.5625,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":256.0625,"pitch":145.0625,"roll":-22.4375},"location":"Right Knee"},{"euler":{"heading":56.5,"pitch":-146.0,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:31.740"} +{"sensors":[{"euler":{"heading":324.8125,"pitch":133.9375,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":101.9375,"pitch":114.625,"roll":43.3125},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":30.125,"roll":34.8125},"location":"Right Ankle"},{"euler":{"heading":43.1875,"pitch":-141.8125,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":270.8125,"pitch":152.0,"roll":-30.8125},"location":"Right Knee"},{"euler":{"heading":55.375,"pitch":-149.8125,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:31.841"} +{"sensors":[{"euler":{"heading":330.8125,"pitch":132.0,"roll":25.3125},"location":"Left Knee"},{"euler":{"heading":107.6875,"pitch":119.25,"roll":49.625},"location":"Left Ankle"},{"euler":{"heading":67.0,"pitch":34.3125,"roll":33.375},"location":"Right Ankle"},{"euler":{"heading":36.875,"pitch":-144.1875,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":273.75,"pitch":145.3125,"roll":-30.625},"location":"Right Knee"},{"euler":{"heading":56.0,"pitch":-154.1875,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:31.942"} +{"sensors":[{"euler":{"heading":341.125,"pitch":130.875,"roll":16.1875},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":135.6875,"roll":59.5},"location":"Left Ankle"},{"euler":{"heading":55.6875,"pitch":29.9375,"roll":36.5},"location":"Right Ankle"},{"euler":{"heading":34.5625,"pitch":-145.875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":9.5625,"pitch":138.0625,"roll":-28.375},"location":"Right Knee"},{"euler":{"heading":52.5,"pitch":-148.75,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:32.43"} +{"sensors":[{"euler":{"heading":0.875,"pitch":126.5,"roll":7.5625},"location":"Left Knee"},{"euler":{"heading":140.875,"pitch":169.6875,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":50.125,"pitch":27.625,"roll":36.875},"location":"Right Ankle"},{"euler":{"heading":31.0625,"pitch":-146.3125,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":12.625,"pitch":133.125,"roll":-27.1875},"location":"Right Knee"},{"euler":{"heading":42.4375,"pitch":-127.9375,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:32.145"} +{"sensors":[{"euler":{"heading":354.125,"pitch":134.875,"roll":10.8125},"location":"Left Knee"},{"euler":{"heading":127.0,"pitch":145.0625,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":46.8125,"pitch":25.5625,"roll":36.625},"location":"Right Ankle"},{"euler":{"heading":32.25,"pitch":-145.1875,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":15.625,"pitch":130.25,"roll":-25.125},"location":"Right Knee"},{"euler":{"heading":34.0,"pitch":-120.875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:32.246"} +{"sensors":[{"euler":{"heading":218.5625,"pitch":146.875,"roll":25.75},"location":"Left Knee"},{"euler":{"heading":93.625,"pitch":112.6875,"roll":45.75},"location":"Left Ankle"},{"euler":{"heading":41.875,"pitch":25.125,"roll":37.0},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-142.3125,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":19.9375,"pitch":127.1875,"roll":-22.9375},"location":"Right Knee"},{"euler":{"heading":31.3125,"pitch":-118.25,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:32.347"} +{"sensors":[{"euler":{"heading":233.4375,"pitch":160.25,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":66.3125,"pitch":104.125,"roll":22.5},"location":"Left Ankle"},{"euler":{"heading":36.4375,"pitch":22.375,"roll":37.875},"location":"Right Ankle"},{"euler":{"heading":36.625,"pitch":-141.3125,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":23.8125,"pitch":125.5,"roll":-19.3125},"location":"Right Knee"},{"euler":{"heading":33.3125,"pitch":-119.0625,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:32.448"} +{"sensors":[{"euler":{"heading":240.0,"pitch":166.0625,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":59.25,"pitch":100.6875,"roll":15.0},"location":"Left Ankle"},{"euler":{"heading":29.0,"pitch":16.0625,"roll":38.1875},"location":"Right Ankle"},{"euler":{"heading":37.375,"pitch":-145.375,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":26.625,"pitch":124.8125,"roll":-14.9375},"location":"Right Knee"},{"euler":{"heading":39.1875,"pitch":-124.0,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:32.549"} +{"sensors":[{"euler":{"heading":240.0625,"pitch":157.875,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":76.9375,"pitch":107.1875,"roll":23.5625},"location":"Left Ankle"},{"euler":{"heading":20.125,"pitch":3.125,"roll":37.8125},"location":"Right Ankle"},{"euler":{"heading":39.375,"pitch":-150.0625,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":28.0,"pitch":127.3125,"roll":-9.6875},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-128.0,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:32.650"} +{"sensors":[{"euler":{"heading":303.875,"pitch":149.3125,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":84.8125,"pitch":110.1875,"roll":30.75},"location":"Left Ankle"},{"euler":{"heading":8.6875,"pitch":-12.5,"roll":34.125},"location":"Right Ankle"},{"euler":{"heading":47.625,"pitch":-144.25,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":35.0,"pitch":131.8125,"roll":-1.875},"location":"Right Knee"},{"euler":{"heading":47.75,"pitch":-130.3125,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:32.750"} +{"sensors":[{"euler":{"heading":309.4375,"pitch":144.0,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":90.5625,"pitch":110.1875,"roll":34.5},"location":"Left Ankle"},{"euler":{"heading":14.4375,"pitch":-13.6875,"roll":36.375},"location":"Right Ankle"},{"euler":{"heading":56.0625,"pitch":-137.375,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":31.5,"pitch":134.375,"roll":-4.1875},"location":"Right Knee"},{"euler":{"heading":51.75,"pitch":-136.8125,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:32.851"} +{"sensors":[{"euler":{"heading":314.5,"pitch":139.6875,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":94.9375,"pitch":110.6875,"roll":37.1875},"location":"Left Ankle"},{"euler":{"heading":35.75,"pitch":2.8125,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":58.3125,"pitch":-135.5,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":241.1875,"pitch":140.875,"roll":-15.0625},"location":"Right Knee"},{"euler":{"heading":55.0625,"pitch":-142.625,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:32.952"} +{"sensors":[{"euler":{"heading":321.375,"pitch":135.8125,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":99.125,"pitch":112.8125,"roll":40.625},"location":"Left Ankle"},{"euler":{"heading":55.4375,"pitch":21.125,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":52.25,"pitch":-138.3125,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":260.4375,"pitch":147.1875,"roll":-24.75},"location":"Right Knee"},{"euler":{"heading":56.0625,"pitch":-148.375,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:33.53"} +{"sensors":[{"euler":{"heading":326.375,"pitch":133.4375,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":102.9375,"pitch":115.25,"roll":44.8125},"location":"Left Ankle"},{"euler":{"heading":69.625,"pitch":31.8125,"roll":33.625},"location":"Right Ankle"},{"euler":{"heading":40.125,"pitch":-143.625,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":272.4375,"pitch":151.75,"roll":-32.3125},"location":"Right Knee"},{"euler":{"heading":55.75,"pitch":-152.375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:33.154"} +{"sensors":[{"euler":{"heading":333.9375,"pitch":131.25,"roll":22.125},"location":"Left Knee"},{"euler":{"heading":108.5625,"pitch":121.8125,"roll":51.375},"location":"Left Ankle"},{"euler":{"heading":62.8125,"pitch":32.25,"roll":34.75},"location":"Right Ankle"},{"euler":{"heading":34.375,"pitch":-146.25,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":359.8125,"pitch":144.1875,"roll":-31.125},"location":"Right Knee"},{"euler":{"heading":57.5,"pitch":-155.6875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:33.255"} +{"sensors":[{"euler":{"heading":351.5,"pitch":130.25,"roll":11.3125},"location":"Left Knee"},{"euler":{"heading":122.625,"pitch":144.6875,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":53.5,"pitch":28.875,"roll":36.625},"location":"Right Ankle"},{"euler":{"heading":35.875,"pitch":-145.0,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":7.1875,"pitch":137.8125,"roll":-28.9375},"location":"Right Knee"},{"euler":{"heading":50.3125,"pitch":-145.8125,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:33.356"} +{"sensors":[{"euler":{"heading":4.75,"pitch":128.25,"roll":6.4375},"location":"Left Knee"},{"euler":{"heading":134.75,"pitch":164.5,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":48.9375,"pitch":26.9375,"roll":36.1875},"location":"Right Ankle"},{"euler":{"heading":31.5625,"pitch":-145.875,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":11.625,"pitch":132.4375,"roll":-27.5},"location":"Right Knee"},{"euler":{"heading":39.3125,"pitch":-123.5,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:33.458"} +{"sensors":[{"euler":{"heading":209.5,"pitch":139.6875,"roll":15.375},"location":"Left Knee"},{"euler":{"heading":116.625,"pitch":130.625,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":45.9375,"pitch":24.875,"roll":36.0},"location":"Right Ankle"},{"euler":{"heading":34.0,"pitch":-144.0,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":12.9375,"pitch":129.125,"roll":-25.9375},"location":"Right Knee"},{"euler":{"heading":32.0,"pitch":-119.4375,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:33.559"} +{"sensors":[{"euler":{"heading":225.0625,"pitch":154.1875,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":80.4375,"pitch":106.8125,"roll":33.875},"location":"Left Ankle"},{"euler":{"heading":42.625,"pitch":22.125,"roll":36.5625},"location":"Right Ankle"},{"euler":{"heading":36.3125,"pitch":-143.9375,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":14.3125,"pitch":128.25,"roll":-23.0625},"location":"Right Knee"},{"euler":{"heading":31.5,"pitch":-118.0625,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:33.660"} +{"sensors":[{"euler":{"heading":237.5,"pitch":165.875,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":57.875,"pitch":99.75,"roll":14.5625},"location":"Left Ankle"},{"euler":{"heading":36.6875,"pitch":18.6875,"roll":37.125},"location":"Right Ankle"},{"euler":{"heading":37.875,"pitch":-145.1875,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":17.6875,"pitch":126.9375,"roll":-19.375},"location":"Right Knee"},{"euler":{"heading":37.5625,"pitch":-122.3125,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:33.760"} +{"sensors":[{"euler":{"heading":240.1875,"pitch":163.625,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":62.5625,"pitch":103.5,"roll":16.8125},"location":"Left Ankle"},{"euler":{"heading":30.25,"pitch":12.6875,"roll":37.4375},"location":"Right Ankle"},{"euler":{"heading":38.0,"pitch":-151.125,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":21.0,"pitch":127.0,"roll":-14.5625},"location":"Right Knee"},{"euler":{"heading":43.5,"pitch":-125.8125,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:33.862"} +{"sensors":[{"euler":{"heading":239.25,"pitch":154.5625,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":77.875,"pitch":108.3125,"roll":27.0},"location":"Left Ankle"},{"euler":{"heading":21.4375,"pitch":-2.0,"roll":37.3125},"location":"Right Ankle"},{"euler":{"heading":42.0625,"pitch":-152.1875,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":23.9375,"pitch":130.75,"roll":-7.875},"location":"Right Knee"},{"euler":{"heading":46.0,"pitch":-128.6875,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:33.963"} +{"sensors":[{"euler":{"heading":309.4375,"pitch":146.875,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":87.125,"pitch":109.875,"roll":31.875},"location":"Left Ankle"},{"euler":{"heading":14.8125,"pitch":-14.0625,"roll":37.375},"location":"Right Ankle"},{"euler":{"heading":51.1875,"pitch":-141.125,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":29.625,"pitch":133.625,"roll":-3.1875},"location":"Right Knee"},{"euler":{"heading":52.75,"pitch":-136.3125,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:34.63"} +{"sensors":[{"euler":{"heading":315.625,"pitch":141.0625,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":93.9375,"pitch":111.125,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":26.4375,"pitch":-2.1875,"roll":40.5},"location":"Right Ankle"},{"euler":{"heading":55.9375,"pitch":-134.375,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":24.8125,"pitch":134.5,"roll":-8.75},"location":"Right Knee"},{"euler":{"heading":58.5,"pitch":-142.8125,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:34.164"} +{"sensors":[{"euler":{"heading":321.9375,"pitch":136.75,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":98.375,"pitch":113.125,"roll":37.9375},"location":"Left Ankle"},{"euler":{"heading":44.8125,"pitch":11.125,"roll":42.0625},"location":"Right Ankle"},{"euler":{"heading":55.1875,"pitch":-136.125,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":246.9375,"pitch":142.25,"roll":-19.375},"location":"Right Knee"},{"euler":{"heading":60.0,"pitch":-148.125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:34.265"} +{"sensors":[{"euler":{"heading":328.1875,"pitch":133.125,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":102.6875,"pitch":115.875,"roll":41.5625},"location":"Left Ankle"},{"euler":{"heading":64.0625,"pitch":25.8125,"roll":37.25},"location":"Right Ankle"},{"euler":{"heading":49.3125,"pitch":-139.9375,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":263.1875,"pitch":150.875,"roll":-28.6875},"location":"Right Knee"},{"euler":{"heading":60.9375,"pitch":-152.0625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:34.365"} +{"sensors":[{"euler":{"heading":334.625,"pitch":129.1875,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":109.9375,"pitch":122.25,"roll":46.9375},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":32.125,"roll":34.375},"location":"Right Ankle"},{"euler":{"heading":38.9375,"pitch":-145.5625,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":269.625,"pitch":149.5,"roll":-29.6875},"location":"Right Knee"},{"euler":{"heading":61.375,"pitch":-153.8125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:34.466"} +{"sensors":[{"euler":{"heading":345.0,"pitch":126.9375,"roll":19.5625},"location":"Left Knee"},{"euler":{"heading":117.625,"pitch":131.875,"roll":54.9375},"location":"Left Ankle"},{"euler":{"heading":57.5625,"pitch":28.8125,"roll":37.125},"location":"Right Ankle"},{"euler":{"heading":36.0625,"pitch":-147.125,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":1.375,"pitch":141.75,"roll":-28.9375},"location":"Right Knee"},{"euler":{"heading":63.1875,"pitch":-153.25,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:34.566"} +{"sensors":[{"euler":{"heading":356.6875,"pitch":129.1875,"roll":9.8125},"location":"Left Knee"},{"euler":{"heading":133.125,"pitch":159.8125,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":52.0,"pitch":28.0,"roll":36.9375},"location":"Right Ankle"},{"euler":{"heading":32.75,"pitch":-146.8125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":10.4375,"pitch":134.375,"roll":-27.1875},"location":"Right Knee"},{"euler":{"heading":46.5625,"pitch":-133.5,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:34.667"} +{"sensors":[{"euler":{"heading":357.125,"pitch":131.0625,"roll":10.875},"location":"Left Knee"},{"euler":{"heading":128.125,"pitch":147.1875,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":48.0,"pitch":25.625,"roll":36.25},"location":"Right Ankle"},{"euler":{"heading":31.0,"pitch":-147.9375,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":11.9375,"pitch":129.6875,"roll":-26.125},"location":"Right Knee"},{"euler":{"heading":36.375,"pitch":-122.0625,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:34.768"} +{"sensors":[{"euler":{"heading":218.125,"pitch":143.9375,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":97.875,"pitch":114.0,"roll":49.9375},"location":"Left Ankle"},{"euler":{"heading":44.9375,"pitch":24.375,"roll":36.625},"location":"Right Ankle"},{"euler":{"heading":33.625,"pitch":-146.0,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":14.125,"pitch":127.75,"roll":-23.625},"location":"Right Knee"},{"euler":{"heading":34.125,"pitch":-119.6875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:34.868"} +{"sensors":[{"euler":{"heading":232.625,"pitch":157.8125,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":68.4375,"pitch":105.375,"roll":24.5},"location":"Left Ankle"},{"euler":{"heading":39.1875,"pitch":22.375,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":35.5,"pitch":-146.3125,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":17.875,"pitch":126.5625,"roll":-20.1875},"location":"Right Knee"},{"euler":{"heading":35.5625,"pitch":-120.875,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:34.969"} +{"sensors":[{"euler":{"heading":240.5,"pitch":164.125,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":56.9375,"pitch":101.75,"roll":12.4375},"location":"Left Ankle"},{"euler":{"heading":31.6875,"pitch":16.0625,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":37.5,"pitch":-148.875,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":22.625,"pitch":126.25,"roll":-14.875},"location":"Right Knee"},{"euler":{"heading":42.3125,"pitch":-126.125,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:35.71"} +{"sensors":[{"euler":{"heading":240.3125,"pitch":156.75,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":70.4375,"pitch":106.3125,"roll":20.6875},"location":"Left Ankle"},{"euler":{"heading":22.75,"pitch":4.625,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":39.6875,"pitch":-152.375,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":27.0625,"pitch":128.1875,"roll":-8.5},"location":"Right Knee"},{"euler":{"heading":46.25,"pitch":-127.5,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:35.172"} +{"sensors":[{"euler":{"heading":304.6875,"pitch":149.375,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":79.375,"pitch":108.3125,"roll":28.4375},"location":"Left Ankle"},{"euler":{"heading":11.25,"pitch":-12.75,"roll":38.625},"location":"Right Ankle"},{"euler":{"heading":48.875,"pitch":-143.3125,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":32.5625,"pitch":130.4375,"roll":-1.8125},"location":"Right Knee"},{"euler":{"heading":45.25,"pitch":-129.0625,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:35.273"} +{"sensors":[{"euler":{"heading":309.125,"pitch":144.75,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":84.625,"pitch":109.4375,"roll":32.0},"location":"Left Ankle"},{"euler":{"heading":15.6875,"pitch":-12.9375,"roll":41.1875},"location":"Right Ankle"},{"euler":{"heading":58.125,"pitch":-136.375,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":31.1875,"pitch":134.375,"roll":-3.8125},"location":"Right Knee"},{"euler":{"heading":49.5625,"pitch":-134.6875,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:35.373"} +{"sensors":[{"euler":{"heading":315.8125,"pitch":140.0625,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":89.125,"pitch":110.75,"roll":35.1875},"location":"Left Ankle"},{"euler":{"heading":143.0625,"pitch":5.6875,"roll":45.375},"location":"Right Ankle"},{"euler":{"heading":58.3125,"pitch":-135.6875,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":240.3125,"pitch":140.4375,"roll":-15.3125},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-138.8125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:35.474"} +{"sensors":[{"euler":{"heading":323.1875,"pitch":135.75,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":94.1875,"pitch":112.1875,"roll":38.5},"location":"Left Ankle"},{"euler":{"heading":53.625,"pitch":22.5,"roll":43.8125},"location":"Right Ankle"},{"euler":{"heading":55.1875,"pitch":-138.0625,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":258.6875,"pitch":148.1875,"roll":-24.75},"location":"Right Knee"},{"euler":{"heading":56.0,"pitch":-144.4375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:35.574"} +{"sensors":[{"euler":{"heading":328.3125,"pitch":132.6875,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":114.5,"roll":42.6875},"location":"Left Ankle"},{"euler":{"heading":68.875,"pitch":31.6875,"roll":36.8125},"location":"Right Ankle"},{"euler":{"heading":46.75,"pitch":-141.125,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":268.5625,"pitch":153.0,"roll":-32.125},"location":"Right Knee"},{"euler":{"heading":57.1875,"pitch":-148.9375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:35.675"} +{"sensors":[{"euler":{"heading":336.0,"pitch":129.625,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":105.625,"pitch":119.0,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":65.625,"pitch":32.3125,"roll":36.9375},"location":"Right Ankle"},{"euler":{"heading":39.0625,"pitch":-144.3125,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":269.125,"pitch":146.9375,"roll":-30.9375},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-155.3125,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:35.775"} +{"sensors":[{"euler":{"heading":345.5625,"pitch":130.0,"roll":13.0},"location":"Left Knee"},{"euler":{"heading":112.3125,"pitch":130.875,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":55.6875,"pitch":28.75,"roll":38.625},"location":"Right Ankle"},{"euler":{"heading":38.75,"pitch":-144.8125,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":4.0,"pitch":139.625,"roll":-28.5},"location":"Right Knee"},{"euler":{"heading":54.5,"pitch":-146.0625,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:35.876"} +{"sensors":[{"euler":{"heading":3.5625,"pitch":126.75,"roll":6.9375},"location":"Left Knee"},{"euler":{"heading":129.3125,"pitch":157.6875,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":51.3125,"pitch":27.1875,"roll":38.5},"location":"Right Ankle"},{"euler":{"heading":31.0625,"pitch":-147.5625,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":8.25,"pitch":134.125,"roll":-27.8125},"location":"Right Knee"},{"euler":{"heading":43.0625,"pitch":-120.8125,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:35.978"} +{"sensors":[{"euler":{"heading":207.375,"pitch":137.1875,"roll":13.0},"location":"Left Knee"},{"euler":{"heading":116.75,"pitch":129.875,"roll":62.6875},"location":"Left Ankle"},{"euler":{"heading":48.4375,"pitch":24.1875,"roll":38.4375},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-146.5,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":8.625,"pitch":132.5,"roll":-26.0},"location":"Right Knee"},{"euler":{"heading":34.625,"pitch":-118.0,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:36.78"} +{"sensors":[{"euler":{"heading":221.75,"pitch":150.5,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":84.0625,"pitch":107.75,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":43.8125,"pitch":21.4375,"roll":39.625},"location":"Right Ankle"},{"euler":{"heading":35.9375,"pitch":-144.8125,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":10.9375,"pitch":129.8125,"roll":-23.625},"location":"Right Knee"},{"euler":{"heading":34.0,"pitch":-117.75,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:36.179"} +{"sensors":[{"euler":{"heading":234.6875,"pitch":161.625,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":61.3125,"pitch":101.4375,"roll":18.6875},"location":"Left Ankle"},{"euler":{"heading":37.875,"pitch":17.375,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":37.5,"pitch":-146.5625,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":14.5,"pitch":128.625,"roll":-19.6875},"location":"Right Knee"},{"euler":{"heading":36.5,"pitch":-120.25,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:36.279"} +{"sensors":[{"euler":{"heading":241.3125,"pitch":162.5625,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":58.5625,"pitch":103.875,"roll":13.25},"location":"Left Ankle"},{"euler":{"heading":31.0625,"pitch":11.1875,"roll":40.4375},"location":"Right Ankle"},{"euler":{"heading":39.6875,"pitch":-149.5625,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":17.4375,"pitch":128.75,"roll":-15.0625},"location":"Right Knee"},{"euler":{"heading":44.0,"pitch":-125.6875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:36.380"} +{"sensors":[{"euler":{"heading":241.4375,"pitch":153.5,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":72.4375,"pitch":108.625,"roll":22.5},"location":"Left Ankle"},{"euler":{"heading":21.875,"pitch":-1.4375,"roll":39.625},"location":"Right Ankle"},{"euler":{"heading":41.6875,"pitch":-154.375,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":19.8125,"pitch":130.75,"roll":-9.625},"location":"Right Knee"},{"euler":{"heading":32.0625,"pitch":-129.5,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:36.480"} +{"sensors":[{"euler":{"heading":310.625,"pitch":146.375,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":81.3125,"pitch":110.75,"roll":29.5},"location":"Left Ankle"},{"euler":{"heading":9.75,"pitch":-15.0,"roll":36.9375},"location":"Right Ankle"},{"euler":{"heading":51.6875,"pitch":-143.5,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":38.0625,"pitch":133.0,"roll":-0.0625},"location":"Right Knee"},{"euler":{"heading":49.0625,"pitch":-130.1875,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:36.581"} +{"sensors":[{"euler":{"heading":316.625,"pitch":140.9375,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":111.875,"roll":34.0},"location":"Left Ankle"},{"euler":{"heading":15.875,"pitch":-13.875,"roll":40.875},"location":"Right Ankle"},{"euler":{"heading":57.5625,"pitch":-137.125,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":226.5625,"pitch":137.4375,"roll":-5.4375},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-134.8125,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:36.683"} +{"sensors":[{"euler":{"heading":322.0,"pitch":136.3125,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":96.9375,"pitch":114.125,"roll":38.125},"location":"Left Ankle"},{"euler":{"heading":124.875,"pitch":15.9375,"roll":48.375},"location":"Right Ankle"},{"euler":{"heading":57.0,"pitch":-137.0,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":245.0,"pitch":143.6875,"roll":-17.125},"location":"Right Knee"},{"euler":{"heading":54.3125,"pitch":-140.25,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:36.784"} +{"sensors":[{"euler":{"heading":329.5,"pitch":133.0,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":102.4375,"pitch":116.3125,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":59.4375,"pitch":25.1875,"roll":42.3125},"location":"Right Ankle"},{"euler":{"heading":52.375,"pitch":-141.875,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":262.75,"pitch":149.9375,"roll":-28.5625},"location":"Right Knee"},{"euler":{"heading":55.5,"pitch":-145.0625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:36.886"} +{"sensors":[{"euler":{"heading":335.25,"pitch":130.3125,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":107.625,"pitch":119.375,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":32.5,"roll":36.25},"location":"Right Ankle"},{"euler":{"heading":40.875,"pitch":-146.3125,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":270.6875,"pitch":153.125,"roll":-33.0625},"location":"Right Knee"},{"euler":{"heading":56.8125,"pitch":-149.75,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:36.987"} +{"sensors":[{"euler":{"heading":342.125,"pitch":129.0625,"roll":19.8125},"location":"Left Knee"},{"euler":{"heading":110.875,"pitch":125.5625,"roll":53.5},"location":"Left Ankle"},{"euler":{"heading":62.0625,"pitch":30.875,"roll":38.25},"location":"Right Ankle"},{"euler":{"heading":34.5,"pitch":-149.625,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":353.3125,"pitch":144.5625,"roll":-31.5625},"location":"Right Knee"},{"euler":{"heading":59.5625,"pitch":-154.6875,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:37.87"} +{"sensors":[{"euler":{"heading":358.8125,"pitch":129.4375,"roll":8.4375},"location":"Left Knee"},{"euler":{"heading":129.25,"pitch":153.1875,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":53.1875,"pitch":27.625,"roll":39.375},"location":"Right Ankle"},{"euler":{"heading":35.25,"pitch":-147.8125,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":2.625,"pitch":137.875,"roll":-29.1875},"location":"Right Knee"},{"euler":{"heading":48.0625,"pitch":-137.625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:37.187"} +{"sensors":[{"euler":{"heading":5.5,"pitch":129.3125,"roll":6.3125},"location":"Left Knee"},{"euler":{"heading":128.25,"pitch":152.0,"roll":65.5},"location":"Left Ankle"},{"euler":{"heading":48.75,"pitch":25.5625,"roll":38.9375},"location":"Right Ankle"},{"euler":{"heading":32.5,"pitch":-149.125,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":6.25,"pitch":132.75,"roll":-27.875},"location":"Right Knee"},{"euler":{"heading":39.0,"pitch":-123.125,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:37.288"} +{"sensors":[{"euler":{"heading":212.625,"pitch":141.0625,"roll":17.8125},"location":"Left Knee"},{"euler":{"heading":103.125,"pitch":116.875,"roll":53.6875},"location":"Left Ankle"},{"euler":{"heading":44.8125,"pitch":23.125,"roll":38.75},"location":"Right Ankle"},{"euler":{"heading":33.875,"pitch":-147.875,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":8.8125,"pitch":130.375,"roll":-25.75},"location":"Right Knee"},{"euler":{"heading":32.875,"pitch":-119.4375,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:37.390"} +{"sensors":[{"euler":{"heading":226.25,"pitch":154.75,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":69.75,"pitch":102.375,"roll":28.75},"location":"Left Ankle"},{"euler":{"heading":40.5,"pitch":20.875,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":35.5,"pitch":-148.1875,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":12.0,"pitch":128.375,"roll":-22.75},"location":"Right Knee"},{"euler":{"heading":32.625,"pitch":-119.3125,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:37.490"} +{"sensors":[{"euler":{"heading":234.5625,"pitch":163.75,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":56.5,"pitch":96.75,"roll":16.125},"location":"Left Ankle"},{"euler":{"heading":34.0,"pitch":15.625,"roll":39.9375},"location":"Right Ankle"},{"euler":{"heading":37.3125,"pitch":-150.0625,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":15.6875,"pitch":127.5625,"roll":-18.375},"location":"Right Knee"},{"euler":{"heading":37.4375,"pitch":-123.4375,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:37.591"} +{"sensors":[{"euler":{"heading":237.3125,"pitch":156.125,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":69.3125,"pitch":103.5,"roll":23.0},"location":"Left Ankle"},{"euler":{"heading":25.25,"pitch":5.1875,"roll":39.8125},"location":"Right Ankle"},{"euler":{"heading":38.3125,"pitch":-153.6875,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":21.3125,"pitch":127.25,"roll":-12.25},"location":"Right Knee"},{"euler":{"heading":41.5625,"pitch":-126.6875,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:37.695"} +{"sensors":[{"euler":{"heading":305.9375,"pitch":148.5,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":80.0,"pitch":106.6875,"roll":30.3125},"location":"Left Ankle"},{"euler":{"heading":14.75,"pitch":-10.75,"roll":38.75},"location":"Right Ankle"},{"euler":{"heading":47.125,"pitch":-146.8125,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":25.125,"pitch":132.625,"roll":-5.25},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-130.0625,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:37.796"} +{"sensors":[{"euler":{"heading":312.5625,"pitch":143.0625,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":89.6875,"pitch":107.6875,"roll":36.25},"location":"Left Ankle"},{"euler":{"heading":16.75,"pitch":-11.1875,"roll":40.0625},"location":"Right Ankle"},{"euler":{"heading":54.1875,"pitch":-139.25,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":222.0625,"pitch":135.3125,"roll":-4.875},"location":"Right Knee"},{"euler":{"heading":48.9375,"pitch":-137.4375,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:37.898"} +{"sensors":[{"euler":{"heading":319.5625,"pitch":138.375,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":108.9375,"roll":38.75},"location":"Left Ankle"},{"euler":{"heading":39.75,"pitch":6.75,"roll":43.625},"location":"Right Ankle"},{"euler":{"heading":54.9375,"pitch":-137.375,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":240.0625,"pitch":141.0,"roll":-15.9375},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-143.375,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:37.999"} +{"sensors":[{"euler":{"heading":326.5625,"pitch":134.625,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":98.125,"pitch":111.75,"roll":42.375},"location":"Left Ankle"},{"euler":{"heading":56.75,"pitch":23.0,"roll":41.8125},"location":"Right Ankle"},{"euler":{"heading":48.375,"pitch":-142.25,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":259.1875,"pitch":147.6875,"roll":-27.1875},"location":"Right Knee"},{"euler":{"heading":54.4375,"pitch":-148.0625,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:38.100"} +{"sensors":[{"euler":{"heading":332.8125,"pitch":131.875,"roll":26.75},"location":"Left Knee"},{"euler":{"heading":103.4375,"pitch":115.625,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":66.625,"pitch":30.1875,"roll":36.5625},"location":"Right Ankle"},{"euler":{"heading":37.4375,"pitch":-147.6875,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":266.875,"pitch":150.9375,"roll":-32.25},"location":"Right Knee"},{"euler":{"heading":56.4375,"pitch":-153.375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:38.201"} +{"sensors":[{"euler":{"heading":341.4375,"pitch":129.6875,"roll":19.6875},"location":"Left Knee"},{"euler":{"heading":107.875,"pitch":125.125,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":56.0,"pitch":27.75,"roll":38.4375},"location":"Right Ankle"},{"euler":{"heading":33.9375,"pitch":-150.0625,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":356.25,"pitch":142.0,"roll":-30.1875},"location":"Right Knee"},{"euler":{"heading":59.0625,"pitch":-153.5,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:38.303"} +{"sensors":[{"euler":{"heading":358.6875,"pitch":128.3125,"roll":8.6875},"location":"Left Knee"},{"euler":{"heading":124.0625,"pitch":150.875,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":51.125,"pitch":23.8125,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":33.1875,"pitch":-150.3125,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":1.5,"pitch":137.0625,"roll":-28.3125},"location":"Right Knee"},{"euler":{"heading":42.125,"pitch":-129.75,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:38.404"} +{"sensors":[{"euler":{"heading":0.4375,"pitch":134.375,"roll":8.3125},"location":"Left Knee"},{"euler":{"heading":120.875,"pitch":135.625,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":48.0,"pitch":22.1875,"roll":38.3125},"location":"Right Ankle"},{"euler":{"heading":32.25,"pitch":-150.8125,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":5.25,"pitch":132.8125,"roll":-26.625},"location":"Right Knee"},{"euler":{"heading":35.875,"pitch":-119.5,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:38.505"} +{"sensors":[{"euler":{"heading":215.1875,"pitch":144.375,"roll":22.0625},"location":"Left Knee"},{"euler":{"heading":91.6875,"pitch":110.0,"roll":45.5625},"location":"Left Ankle"},{"euler":{"heading":44.3125,"pitch":21.75,"roll":38.375},"location":"Right Ankle"},{"euler":{"heading":33.75,"pitch":-149.625,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":9.8125,"pitch":129.3125,"roll":-24.25},"location":"Right Knee"},{"euler":{"heading":33.4375,"pitch":-117.875,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:38.606"} +{"sensors":[{"euler":{"heading":232.0,"pitch":155.8125,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":67.125,"pitch":104.4375,"roll":23.6875},"location":"Left Ankle"},{"euler":{"heading":39.4375,"pitch":20.125,"roll":39.5},"location":"Right Ankle"},{"euler":{"heading":35.3125,"pitch":-150.0625,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":14.25,"pitch":127.75,"roll":-21.0},"location":"Right Knee"},{"euler":{"heading":34.4375,"pitch":-119.5,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:38.707"} +{"sensors":[{"euler":{"heading":236.75,"pitch":162.375,"roll":36.8125},"location":"Left Knee"},{"euler":{"heading":59.0625,"pitch":99.625,"roll":16.8125},"location":"Left Ankle"},{"euler":{"heading":30.5625,"pitch":13.625,"roll":38.0625},"location":"Right Ankle"},{"euler":{"heading":37.375,"pitch":-151.5,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":18.5,"pitch":126.9375,"roll":-16.1875},"location":"Right Knee"},{"euler":{"heading":37.8125,"pitch":-124.25,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:38.808"} +{"sensors":[{"euler":{"heading":237.1875,"pitch":153.9375,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":74.4375,"pitch":104.125,"roll":25.0625},"location":"Left Ankle"},{"euler":{"heading":22.25,"pitch":-0.375,"roll":39.0},"location":"Right Ankle"},{"euler":{"heading":39.625,"pitch":-155.5625,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":20.875,"pitch":130.4375,"roll":-10.0},"location":"Right Knee"},{"euler":{"heading":41.6875,"pitch":-127.875,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:38.909"} +{"sensors":[{"euler":{"heading":306.875,"pitch":147.0,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":81.6875,"pitch":107.0,"roll":32.0},"location":"Left Ankle"},{"euler":{"heading":12.3125,"pitch":-15.5625,"roll":38.0625},"location":"Right Ankle"},{"euler":{"heading":49.8125,"pitch":-146.25,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":30.75,"pitch":132.4375,"roll":-2.5625},"location":"Right Knee"},{"euler":{"heading":45.3125,"pitch":-130.9375,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:39.10"} +{"sensors":[{"euler":{"heading":310.625,"pitch":143.25,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":90.8125,"pitch":107.8125,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":20.125,"pitch":-10.5,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":54.625,"pitch":-139.875,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":226.25,"pitch":135.8125,"roll":-7.1875},"location":"Right Knee"},{"euler":{"heading":47.5,"pitch":-137.3125,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:39.110"} +{"sensors":[{"euler":{"heading":314.8125,"pitch":140.375,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":91.5,"pitch":107.75,"roll":41.4375},"location":"Left Ankle"},{"euler":{"heading":42.0,"pitch":8.1875,"roll":43.1875},"location":"Right Ankle"},{"euler":{"heading":55.4375,"pitch":-138.75,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":244.375,"pitch":142.9375,"roll":-18.75},"location":"Right Knee"},{"euler":{"heading":50.9375,"pitch":-143.625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:39.211"} +{"sensors":[{"euler":{"heading":324.25,"pitch":135.6875,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":98.8125,"pitch":111.25,"roll":45.5},"location":"Left Ankle"},{"euler":{"heading":59.3125,"pitch":24.75,"roll":40.4375},"location":"Right Ankle"},{"euler":{"heading":49.875,"pitch":-141.875,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":262.375,"pitch":148.9375,"roll":-29.75},"location":"Right Knee"},{"euler":{"heading":54.3125,"pitch":-148.625,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:39.312"} +{"sensors":[{"euler":{"heading":331.5625,"pitch":133.0625,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":104.75,"pitch":115.3125,"roll":50.6875},"location":"Left Ankle"},{"euler":{"heading":70.6875,"pitch":30.8125,"roll":33.9375},"location":"Right Ankle"},{"euler":{"heading":39.875,"pitch":-146.5,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":269.6875,"pitch":153.5625,"roll":-34.75},"location":"Right Knee"},{"euler":{"heading":55.8125,"pitch":-153.4375,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:39.413"} +{"sensors":[{"euler":{"heading":339.875,"pitch":131.4375,"roll":18.3125},"location":"Left Knee"},{"euler":{"heading":110.4375,"pitch":124.0625,"roll":58.0},"location":"Left Ankle"},{"euler":{"heading":60.6875,"pitch":27.8125,"roll":37.125},"location":"Right Ankle"},{"euler":{"heading":35.8125,"pitch":-148.3125,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":350.5625,"pitch":144.875,"roll":-32.5625},"location":"Right Knee"},{"euler":{"heading":57.625,"pitch":-156.6875,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:39.514"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":129.5625,"roll":8.0},"location":"Left Knee"},{"euler":{"heading":125.9375,"pitch":153.6875,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":52.5625,"pitch":23.5625,"roll":38.125},"location":"Right Ankle"},{"euler":{"heading":36.25,"pitch":-148.375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":357.4375,"pitch":138.0,"roll":-30.5},"location":"Right Knee"},{"euler":{"heading":45.0625,"pitch":-140.4375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:39.615"} +{"sensors":[{"euler":{"heading":3.6875,"pitch":131.75,"roll":5.6875},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":152.875,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":49.6875,"pitch":22.625,"roll":35.25},"location":"Right Ankle"},{"euler":{"heading":33.4375,"pitch":-148.375,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":2.875,"pitch":133.0,"roll":-28.5625},"location":"Right Knee"},{"euler":{"heading":37.125,"pitch":-125.1875,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:39.715"} +{"sensors":[{"euler":{"heading":210.5,"pitch":140.375,"roll":17.0},"location":"Left Knee"},{"euler":{"heading":101.8125,"pitch":113.4375,"roll":56.1875},"location":"Left Ankle"},{"euler":{"heading":48.625,"pitch":22.1875,"roll":34.0},"location":"Right Ankle"},{"euler":{"heading":34.8125,"pitch":-147.125,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":4.125,"pitch":130.5625,"roll":-27.125},"location":"Right Knee"},{"euler":{"heading":31.9375,"pitch":-122.625,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:39.816"} +{"sensors":[{"euler":{"heading":225.0,"pitch":153.5,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":103.25,"roll":16.375},"location":"Left Ankle"},{"euler":{"heading":45.625,"pitch":19.5,"roll":36.0625},"location":"Right Ankle"},{"euler":{"heading":36.4375,"pitch":-147.6875,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":8.0,"pitch":129.125,"roll":-23.625},"location":"Right Knee"},{"euler":{"heading":30.5,"pitch":-120.875,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:39.916"} +{"sensors":[{"euler":{"heading":238.25,"pitch":163.5,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":56.0625,"pitch":98.875,"roll":14.8125},"location":"Left Ankle"},{"euler":{"heading":39.5625,"pitch":15.125,"roll":37.0625},"location":"Right Ankle"},{"euler":{"heading":38.3125,"pitch":-149.8125,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":10.8125,"pitch":128.25,"roll":-19.8125},"location":"Right Knee"},{"euler":{"heading":36.8125,"pitch":-124.5625,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:40.17"} +{"sensors":[{"euler":{"heading":239.0,"pitch":161.625,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":59.8125,"pitch":101.5625,"roll":16.1875},"location":"Left Ankle"},{"euler":{"heading":32.375,"pitch":8.8125,"roll":36.75},"location":"Right Ankle"},{"euler":{"heading":37.8125,"pitch":-158.0,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":13.9375,"pitch":129.0,"roll":-15.125},"location":"Right Knee"},{"euler":{"heading":42.625,"pitch":-127.6875,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:40.117"} +{"sensors":[{"euler":{"heading":238.0,"pitch":151.4375,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":77.1875,"pitch":108.125,"roll":27.125},"location":"Left Ankle"},{"euler":{"heading":23.625,"pitch":-3.125,"roll":37.5625},"location":"Right Ankle"},{"euler":{"heading":41.25,"pitch":-160.0,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":19.6875,"pitch":132.375,"roll":-8.0},"location":"Right Knee"},{"euler":{"heading":45.625,"pitch":-129.6875,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:40.217"} +{"sensors":[{"euler":{"heading":316.4375,"pitch":143.75,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":87.9375,"pitch":110.5625,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":10.0625,"pitch":-15.8125,"roll":34.5},"location":"Right Ankle"},{"euler":{"heading":50.6875,"pitch":-143.5625,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":32.0,"pitch":131.5625,"roll":-1.375},"location":"Right Knee"},{"euler":{"heading":49.375,"pitch":-133.875,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:40.318"} +{"sensors":[{"euler":{"heading":320.1875,"pitch":139.25,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":112.4375,"roll":36.0},"location":"Left Ankle"},{"euler":{"heading":20.5625,"pitch":-9.125,"roll":38.375},"location":"Right Ankle"},{"euler":{"heading":56.625,"pitch":-137.4375,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":226.6875,"pitch":135.8125,"roll":-8.5625},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-140.75,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:40.419"} +{"sensors":[{"euler":{"heading":325.6875,"pitch":135.1875,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":96.8125,"pitch":113.5,"roll":38.1875},"location":"Left Ankle"},{"euler":{"heading":44.75,"pitch":11.0,"roll":40.8125},"location":"Right Ankle"},{"euler":{"heading":55.5,"pitch":-138.5625,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":247.4375,"pitch":143.125,"roll":-21.3125},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-147.6875,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:40.520"} +{"sensors":[{"euler":{"heading":331.75,"pitch":131.875,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":100.625,"pitch":115.0625,"roll":41.625},"location":"Left Ankle"},{"euler":{"heading":63.625,"pitch":28.0625,"roll":37.3125},"location":"Right Ankle"},{"euler":{"heading":48.25,"pitch":-142.25,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":265.8125,"pitch":151.0625,"roll":-30.125},"location":"Right Knee"},{"euler":{"heading":57.0,"pitch":-152.8125,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:40.621"} +{"sensors":[{"euler":{"heading":338.875,"pitch":128.375,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":106.75,"pitch":119.5625,"roll":47.1875},"location":"Left Ankle"},{"euler":{"heading":67.5,"pitch":32.125,"roll":34.625},"location":"Right Ankle"},{"euler":{"heading":38.375,"pitch":-146.25,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":270.3125,"pitch":150.125,"roll":-31.1875},"location":"Right Knee"},{"euler":{"heading":60.4375,"pitch":-157.125,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:40.722"} +{"sensors":[{"euler":{"heading":347.5625,"pitch":127.375,"roll":16.75},"location":"Left Knee"},{"euler":{"heading":112.5625,"pitch":129.9375,"roll":56.4375},"location":"Left Ankle"},{"euler":{"heading":58.0625,"pitch":28.8125,"roll":35.125},"location":"Right Ankle"},{"euler":{"heading":35.8125,"pitch":-148.875,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":357.8125,"pitch":141.5625,"roll":-30.875},"location":"Right Knee"},{"euler":{"heading":60.5,"pitch":-154.8125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:40.824"} +{"sensors":[{"euler":{"heading":2.875,"pitch":127.0625,"roll":7.125},"location":"Left Knee"},{"euler":{"heading":128.125,"pitch":156.9375,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":55.0,"pitch":26.0,"roll":36.3125},"location":"Right Ankle"},{"euler":{"heading":31.75,"pitch":-151.5,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":136.25,"roll":-30.0},"location":"Right Knee"},{"euler":{"heading":42.75,"pitch":-132.875,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:40.924"} +{"sensors":[{"euler":{"heading":359.0,"pitch":134.3125,"roll":9.1875},"location":"Left Knee"},{"euler":{"heading":117.6875,"pitch":129.375,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":52.25,"pitch":23.8125,"roll":36.5},"location":"Right Ankle"},{"euler":{"heading":33.5,"pitch":-151.9375,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":1.875,"pitch":134.0625,"roll":-27.9375},"location":"Right Knee"},{"euler":{"heading":35.0625,"pitch":-124.25,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:41.25"} +{"sensors":[{"euler":{"heading":219.875,"pitch":147.75,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":82.6875,"pitch":109.3125,"roll":38.75},"location":"Left Ankle"},{"euler":{"heading":49.0,"pitch":23.75,"roll":36.1875},"location":"Right Ankle"},{"euler":{"heading":34.6875,"pitch":-150.3125,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":7.75,"pitch":130.6875,"roll":-24.8125},"location":"Right Knee"},{"euler":{"heading":33.0625,"pitch":-121.75,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:41.126"} +{"sensors":[{"euler":{"heading":236.0625,"pitch":161.5,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":57.9375,"pitch":100.875,"roll":16.6875},"location":"Left Ankle"},{"euler":{"heading":43.0625,"pitch":21.1875,"roll":37.25},"location":"Right Ankle"},{"euler":{"heading":35.6875,"pitch":-151.3125,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":12.75,"pitch":128.0625,"roll":-21.625},"location":"Right Knee"},{"euler":{"heading":33.5625,"pitch":-124.875,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:41.228"} +{"sensors":[{"euler":{"heading":238.6875,"pitch":163.3125,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":100.875,"roll":15.75},"location":"Left Ankle"},{"euler":{"heading":35.6875,"pitch":15.3125,"roll":37.375},"location":"Right Ankle"},{"euler":{"heading":37.0,"pitch":-155.625,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":16.1875,"pitch":127.75,"roll":-17.0},"location":"Right Knee"},{"euler":{"heading":37.625,"pitch":-127.5,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:41.329"} +{"sensors":[{"euler":{"heading":237.375,"pitch":153.8125,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":70.625,"pitch":104.3125,"roll":24.375},"location":"Left Ankle"},{"euler":{"heading":24.9375,"pitch":-1.25,"roll":38.625},"location":"Right Ankle"},{"euler":{"heading":42.5625,"pitch":-153.375,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":20.5,"pitch":131.0,"roll":-9.25},"location":"Right Knee"},{"euler":{"heading":40.5,"pitch":-129.5,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:41.430"} +{"sensors":[{"euler":{"heading":310.0625,"pitch":147.0,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":84.875,"pitch":108.0,"roll":34.25},"location":"Left Ankle"},{"euler":{"heading":14.5625,"pitch":-12.75,"roll":39.4375},"location":"Right Ankle"},{"euler":{"heading":52.0,"pitch":-142.4375,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":32.0,"pitch":131.25,"roll":-2.9375},"location":"Right Knee"},{"euler":{"heading":45.75,"pitch":-134.0625,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:41.532"} +{"sensors":[{"euler":{"heading":314.125,"pitch":143.0,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":109.5,"roll":41.0},"location":"Left Ankle"},{"euler":{"heading":26.0,"pitch":-3.1875,"roll":42.375},"location":"Right Ankle"},{"euler":{"heading":57.75,"pitch":-136.5625,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":231.125,"pitch":136.0,"roll":-9.4375},"location":"Right Knee"},{"euler":{"heading":47.75,"pitch":-141.4375,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:41.632"} +{"sensors":[{"euler":{"heading":322.0,"pitch":138.125,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":97.0625,"pitch":111.125,"roll":42.5},"location":"Left Ankle"},{"euler":{"heading":44.5625,"pitch":14.1875,"roll":45.0625},"location":"Right Ankle"},{"euler":{"heading":55.0,"pitch":-137.9375,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":250.6875,"pitch":143.625,"roll":-22.0625},"location":"Right Knee"},{"euler":{"heading":52.0,"pitch":-146.5625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:41.733"} +{"sensors":[{"euler":{"heading":329.375,"pitch":134.625,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":102.8125,"pitch":115.8125,"roll":46.5625},"location":"Left Ankle"},{"euler":{"heading":64.125,"pitch":31.8125,"roll":36.625},"location":"Right Ankle"},{"euler":{"heading":45.3125,"pitch":-143.75,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":266.8125,"pitch":148.6875,"roll":-30.1875},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-149.1875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:41.833"} +{"sensors":[{"euler":{"heading":338.0,"pitch":130.75,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":111.75,"pitch":123.0,"roll":53.0625},"location":"Left Ankle"},{"euler":{"heading":62.25,"pitch":31.625,"roll":37.1875},"location":"Right Ankle"},{"euler":{"heading":39.75,"pitch":-146.8125,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":355.75,"pitch":145.0,"roll":-30.75},"location":"Right Knee"},{"euler":{"heading":56.0,"pitch":-153.0,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:41.934"} +{"sensors":[{"euler":{"heading":349.8125,"pitch":127.125,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":118.9375,"pitch":140.4375,"roll":60.9375},"location":"Left Ankle"},{"euler":{"heading":54.0,"pitch":27.5,"roll":37.5625},"location":"Right Ankle"},{"euler":{"heading":38.25,"pitch":-148.125,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":2.3125,"pitch":136.9375,"roll":-29.3125},"location":"Right Knee"},{"euler":{"heading":53.5625,"pitch":-143.4375,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:42.35"} +{"sensors":[{"euler":{"heading":4.3125,"pitch":127.75,"roll":7.0625},"location":"Left Knee"},{"euler":{"heading":123.0,"pitch":152.25,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":51.8125,"pitch":25.3125,"roll":37.375},"location":"Right Ankle"},{"euler":{"heading":33.5,"pitch":-150.375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":3.875,"pitch":133.25,"roll":-28.5},"location":"Right Knee"},{"euler":{"heading":39.6875,"pitch":-126.25,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:42.136"} +{"sensors":[{"euler":{"heading":355.0,"pitch":134.625,"roll":11.875},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":121.625,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":52.0,"pitch":25.125,"roll":35.875},"location":"Right Ankle"},{"euler":{"heading":34.0,"pitch":-150.5,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":6.0625,"pitch":131.0,"roll":-26.5},"location":"Right Knee"},{"euler":{"heading":33.25,"pitch":-122.875,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:42.237"} +{"sensors":[{"euler":{"heading":222.5,"pitch":147.1875,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":87.25,"pitch":105.5,"roll":37.875},"location":"Left Ankle"},{"euler":{"heading":48.6875,"pitch":23.0625,"roll":36.625},"location":"Right Ankle"},{"euler":{"heading":35.75,"pitch":-150.1875,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":9.875,"pitch":129.5,"roll":-23.375},"location":"Right Knee"},{"euler":{"heading":32.25,"pitch":-120.0625,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:42.338"} +{"sensors":[{"euler":{"heading":237.8125,"pitch":160.8125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":100.5,"roll":15.5},"location":"Left Ankle"},{"euler":{"heading":42.875,"pitch":19.75,"roll":37.5},"location":"Right Ankle"},{"euler":{"heading":36.8125,"pitch":-152.4375,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":13.6875,"pitch":127.625,"roll":-19.8125},"location":"Right Knee"},{"euler":{"heading":36.625,"pitch":-124.8125,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:42.438"} +{"sensors":[{"euler":{"heading":242.0,"pitch":163.5625,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":57.75,"pitch":100.625,"roll":13.875},"location":"Left Ankle"},{"euler":{"heading":34.3125,"pitch":12.9375,"roll":36.9375},"location":"Right Ankle"},{"euler":{"heading":36.9375,"pitch":-160.0625,"roll":69.9375},"location":"Right Hip"},{"euler":{"heading":17.875,"pitch":128.25,"roll":-14.625},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-127.6875,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:42.539"} +{"sensors":[{"euler":{"heading":298.375,"pitch":153.5,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":71.5625,"pitch":104.3125,"roll":23.375},"location":"Left Ankle"},{"euler":{"heading":23.375,"pitch":-1.5625,"roll":38.625},"location":"Right Ankle"},{"euler":{"heading":43.5,"pitch":-154.8125,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":24.6875,"pitch":130.5625,"roll":-7.0},"location":"Right Knee"},{"euler":{"heading":43.5625,"pitch":-129.5,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:42.639"} +{"sensors":[{"euler":{"heading":308.6875,"pitch":146.0,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":87.375,"pitch":108.0,"roll":33.8125},"location":"Left Ankle"},{"euler":{"heading":10.4375,"pitch":-13.375,"roll":38.25},"location":"Right Ankle"},{"euler":{"heading":52.6875,"pitch":-140.9375,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":39.0,"pitch":131.3125,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":49.3125,"pitch":-135.1875,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:42.740"} +{"sensors":[{"euler":{"heading":310.5625,"pitch":142.6875,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":94.0625,"pitch":108.75,"roll":39.375},"location":"Left Ankle"},{"euler":{"heading":23.9375,"pitch":-5.0,"roll":42.0},"location":"Right Ankle"},{"euler":{"heading":59.75,"pitch":-137.4375,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":229.5,"pitch":136.75,"roll":-7.375},"location":"Right Knee"},{"euler":{"heading":50.75,"pitch":-141.0625,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:42.841"} +{"sensors":[{"euler":{"heading":313.75,"pitch":140.125,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":88.25,"pitch":106.625,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":45.5625,"pitch":14.375,"roll":44.0},"location":"Right Ankle"},{"euler":{"heading":57.5,"pitch":-138.3125,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":251.0625,"pitch":143.6875,"roll":-21.375},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-146.375,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:42.943"} +{"sensors":[{"euler":{"heading":322.0,"pitch":136.3125,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":108.9375,"roll":41.0625},"location":"Left Ankle"},{"euler":{"heading":62.8125,"pitch":30.0625,"roll":37.0625},"location":"Right Ankle"},{"euler":{"heading":46.9375,"pitch":-142.875,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":265.875,"pitch":148.9375,"roll":-30.125},"location":"Right Knee"},{"euler":{"heading":52.8125,"pitch":-149.375,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:43.44"} +{"sensors":[{"euler":{"heading":329.625,"pitch":133.1875,"roll":26.375},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":114.0625,"roll":48.875},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":33.5,"roll":32.8125},"location":"Right Ankle"},{"euler":{"heading":39.5625,"pitch":-145.875,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":271.8125,"pitch":149.1875,"roll":-34.125},"location":"Right Knee"},{"euler":{"heading":55.875,"pitch":-153.8125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:43.145"} +{"sensors":[{"euler":{"heading":340.375,"pitch":129.75,"roll":19.4375},"location":"Left Knee"},{"euler":{"heading":111.0,"pitch":122.1875,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":58.75,"pitch":27.0,"roll":35.8125},"location":"Right Ankle"},{"euler":{"heading":36.5,"pitch":-149.4375,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":353.0,"pitch":142.25,"roll":-31.8125},"location":"Right Knee"},{"euler":{"heading":60.5,"pitch":-154.4375,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:43.249"} +{"sensors":[{"euler":{"heading":356.5625,"pitch":129.375,"roll":9.3125},"location":"Left Knee"},{"euler":{"heading":126.8125,"pitch":148.5,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":55.3125,"pitch":25.0,"roll":35.9375},"location":"Right Ankle"},{"euler":{"heading":33.4375,"pitch":-151.125,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":358.4375,"pitch":138.3125,"roll":-30.3125},"location":"Right Knee"},{"euler":{"heading":44.8125,"pitch":-135.5625,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:43.350"} +{"sensors":[{"euler":{"heading":1.5,"pitch":131.6875,"roll":8.3125},"location":"Left Knee"},{"euler":{"heading":120.8125,"pitch":139.1875,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":52.1875,"pitch":23.0625,"roll":35.5},"location":"Right Ankle"},{"euler":{"heading":32.9375,"pitch":-152.3125,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":2.0625,"pitch":133.25,"roll":-28.625},"location":"Right Knee"},{"euler":{"heading":34.4375,"pitch":-121.875,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:43.451"} +{"sensors":[{"euler":{"heading":217.9375,"pitch":141.6875,"roll":20.5},"location":"Left Knee"},{"euler":{"heading":99.125,"pitch":110.75,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":48.0,"pitch":20.0,"roll":35.25},"location":"Right Ankle"},{"euler":{"heading":36.375,"pitch":-151.25,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":4.5,"pitch":131.8125,"roll":-25.875},"location":"Right Knee"},{"euler":{"heading":31.1875,"pitch":-119.375,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:43.551"} +{"sensors":[{"euler":{"heading":233.75,"pitch":156.4375,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":68.875,"pitch":103.375,"roll":24.875},"location":"Left Ankle"},{"euler":{"heading":43.125,"pitch":17.5625,"roll":37.0625},"location":"Right Ankle"},{"euler":{"heading":38.9375,"pitch":-152.0,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":9.0625,"pitch":130.5,"roll":-22.3125},"location":"Right Knee"},{"euler":{"heading":33.6875,"pitch":-120.6875,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:43.651"} +{"sensors":[{"euler":{"heading":241.1875,"pitch":164.625,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":57.25,"pitch":98.0625,"roll":13.25},"location":"Left Ankle"},{"euler":{"heading":35.1875,"pitch":12.625,"roll":36.75},"location":"Right Ankle"},{"euler":{"heading":39.0625,"pitch":-155.8125,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":14.8125,"pitch":129.0625,"roll":-17.125},"location":"Right Knee"},{"euler":{"heading":40.5,"pitch":-124.625,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:43.753"} +{"sensors":[{"euler":{"heading":240.6875,"pitch":156.1875,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":68.5625,"pitch":103.0,"roll":22.0},"location":"Left Ankle"},{"euler":{"heading":23.6875,"pitch":1.125,"roll":37.4375},"location":"Right Ankle"},{"euler":{"heading":42.875,"pitch":-156.5625,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":21.3125,"pitch":130.375,"roll":-9.75},"location":"Right Knee"},{"euler":{"heading":41.8125,"pitch":-126.6875,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:43.854"} +{"sensors":[{"euler":{"heading":305.9375,"pitch":148.125,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":79.9375,"pitch":106.375,"roll":28.9375},"location":"Left Ankle"},{"euler":{"heading":11.625,"pitch":-13.5625,"roll":35.1875},"location":"Right Ankle"},{"euler":{"heading":55.3125,"pitch":-142.6875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":32.9375,"pitch":132.0,"roll":-2.5},"location":"Right Knee"},{"euler":{"heading":46.125,"pitch":-129.5625,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:43.955"} +{"sensors":[{"euler":{"heading":312.25,"pitch":142.9375,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":91.0,"pitch":108.625,"roll":37.25},"location":"Left Ankle"},{"euler":{"heading":20.75,"pitch":-9.3125,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":61.3125,"pitch":-137.1875,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":227.0625,"pitch":137.5,"roll":-7.5625},"location":"Right Knee"},{"euler":{"heading":50.875,"pitch":-137.5625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:44.55"} +{"sensors":[{"euler":{"heading":319.75,"pitch":138.375,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":94.625,"pitch":108.875,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":43.4375,"pitch":9.0625,"roll":43.0625},"location":"Right Ankle"},{"euler":{"heading":60.4375,"pitch":-137.375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":245.0,"pitch":144.5,"roll":-19.375},"location":"Right Knee"},{"euler":{"heading":54.375,"pitch":-143.1875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:44.156"} +{"sensors":[{"euler":{"heading":325.625,"pitch":135.125,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":97.5,"pitch":111.0625,"roll":41.875},"location":"Left Ankle"},{"euler":{"heading":58.8125,"pitch":24.3125,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":53.4375,"pitch":-142.375,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":262.375,"pitch":149.6875,"roll":-29.5625},"location":"Right Knee"},{"euler":{"heading":54.625,"pitch":-147.3125,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:44.257"} +{"sensors":[{"euler":{"heading":331.75,"pitch":132.875,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":103.625,"pitch":114.125,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":31.0625,"roll":33.6875},"location":"Right Ankle"},{"euler":{"heading":43.1875,"pitch":-145.6875,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":270.0,"pitch":152.3125,"roll":-34.9375},"location":"Right Knee"},{"euler":{"heading":55.125,"pitch":-151.625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:44.358"} +{"sensors":[{"euler":{"heading":338.5,"pitch":131.5625,"roll":20.4375},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":119.5625,"roll":53.375},"location":"Left Ankle"},{"euler":{"heading":60.3125,"pitch":28.9375,"roll":35.6875},"location":"Right Ankle"},{"euler":{"heading":36.5625,"pitch":-149.6875,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":350.125,"pitch":144.5,"roll":-33.6875},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-154.6875,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:44.458"} +{"sensors":[{"euler":{"heading":357.875,"pitch":129.4375,"roll":9.4375},"location":"Left Knee"},{"euler":{"heading":125.25,"pitch":148.6875,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":53.0625,"pitch":24.1875,"roll":36.875},"location":"Right Ankle"},{"euler":{"heading":36.8125,"pitch":-149.0625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":356.3125,"pitch":138.6875,"roll":-31.3125},"location":"Right Knee"},{"euler":{"heading":43.0625,"pitch":-134.5625,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:44.563"} +{"sensors":[{"euler":{"heading":8.6875,"pitch":131.0,"roll":6.0625},"location":"Left Knee"},{"euler":{"heading":126.9375,"pitch":147.0,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":49.875,"pitch":21.25,"roll":36.25},"location":"Right Ankle"},{"euler":{"heading":34.8125,"pitch":-150.0625,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":359.4375,"pitch":133.875,"roll":-29.8125},"location":"Right Knee"},{"euler":{"heading":34.375,"pitch":-121.0625,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:44.664"} +{"sensors":[{"euler":{"heading":217.25,"pitch":140.0625,"roll":17.125},"location":"Left Knee"},{"euler":{"heading":101.8125,"pitch":115.75,"roll":51.4375},"location":"Left Ankle"},{"euler":{"heading":48.6875,"pitch":20.5,"roll":34.9375},"location":"Right Ankle"},{"euler":{"heading":37.5,"pitch":-149.4375,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":132.4375,"roll":-27.625},"location":"Right Knee"},{"euler":{"heading":30.5625,"pitch":-119.5625,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:44.765"} +{"sensors":[{"euler":{"heading":231.125,"pitch":154.625,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":70.125,"pitch":104.6875,"roll":26.1875},"location":"Left Ankle"},{"euler":{"heading":44.6875,"pitch":18.0,"roll":36.75},"location":"Right Ankle"},{"euler":{"heading":38.0625,"pitch":-150.6875,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":5.5,"pitch":130.6875,"roll":-24.0625},"location":"Right Knee"},{"euler":{"heading":30.1875,"pitch":-119.0625,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:44.866"} +{"sensors":[{"euler":{"heading":240.375,"pitch":165.1875,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":56.0,"pitch":97.25,"roll":12.0625},"location":"Left Ankle"},{"euler":{"heading":37.5625,"pitch":13.0,"roll":36.375},"location":"Right Ankle"},{"euler":{"heading":38.6875,"pitch":-153.4375,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":9.5,"pitch":129.4375,"roll":-19.8125},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-122.4375,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:44.967"} +{"sensors":[{"euler":{"heading":240.5625,"pitch":158.375,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":62.5,"pitch":100.125,"roll":17.3125},"location":"Left Ankle"},{"euler":{"heading":29.1875,"pitch":5.0625,"roll":36.5625},"location":"Right Ankle"},{"euler":{"heading":39.0625,"pitch":-161.625,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":12.625,"pitch":130.5,"roll":-15.0},"location":"Right Knee"},{"euler":{"heading":43.0625,"pitch":-125.1875,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:45.68"} +{"sensors":[{"euler":{"heading":306.3125,"pitch":149.125,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":79.875,"pitch":105.625,"roll":28.0},"location":"Left Ankle"},{"euler":{"heading":16.625,"pitch":-6.0,"roll":37.5},"location":"Right Ankle"},{"euler":{"heading":45.5625,"pitch":-155.125,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":24.3125,"pitch":132.125,"roll":-6.5},"location":"Right Knee"},{"euler":{"heading":44.3125,"pitch":-127.3125,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:45.169"} +{"sensors":[{"euler":{"heading":314.875,"pitch":143.0,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":94.375,"pitch":108.1875,"roll":37.3125},"location":"Left Ankle"},{"euler":{"heading":9.75,"pitch":-15.125,"roll":37.0},"location":"Right Ankle"},{"euler":{"heading":52.8125,"pitch":-143.875,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":33.25,"pitch":133.0,"roll":-1.3125},"location":"Right Knee"},{"euler":{"heading":48.25,"pitch":-132.5625,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:45.269"} +{"sensors":[{"euler":{"heading":316.5,"pitch":140.0625,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":97.0625,"pitch":108.3125,"roll":40.875},"location":"Left Ankle"},{"euler":{"heading":26.4375,"pitch":-1.3125,"roll":40.625},"location":"Right Ankle"},{"euler":{"heading":57.625,"pitch":-139.0,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":234.0,"pitch":136.9375,"roll":-12.4375},"location":"Right Knee"},{"euler":{"heading":50.375,"pitch":-139.875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:45.370"} +{"sensors":[{"euler":{"heading":322.5,"pitch":136.4375,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":100.0,"pitch":109.625,"roll":43.3125},"location":"Left Ankle"},{"euler":{"heading":44.875,"pitch":14.25,"roll":44.6875},"location":"Right Ankle"},{"euler":{"heading":54.125,"pitch":-139.3125,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":253.4375,"pitch":144.0,"roll":-23.625},"location":"Right Knee"},{"euler":{"heading":52.625,"pitch":-145.1875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:45.471"} +{"sensors":[{"euler":{"heading":329.625,"pitch":133.125,"roll":28.9375},"location":"Left Knee"},{"euler":{"heading":105.0,"pitch":112.6875,"roll":47.125},"location":"Left Ankle"},{"euler":{"heading":66.25,"pitch":28.9375,"roll":35.0},"location":"Right Ankle"},{"euler":{"heading":46.3125,"pitch":-145.0,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":267.1875,"pitch":151.5625,"roll":-34.625},"location":"Right Knee"},{"euler":{"heading":55.25,"pitch":-149.625,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:45.571"} +{"sensors":[{"euler":{"heading":336.5625,"pitch":130.8125,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":109.6875,"pitch":117.25,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":66.8125,"pitch":30.5625,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":38.4375,"pitch":-147.875,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":342.625,"pitch":148.5,"roll":-34.8125},"location":"Right Knee"},{"euler":{"heading":58.4375,"pitch":-155.5,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:45.672"} +{"sensors":[{"euler":{"heading":347.9375,"pitch":129.75,"roll":14.375},"location":"Left Knee"},{"euler":{"heading":114.4375,"pitch":130.375,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":56.8125,"pitch":26.6875,"roll":35.0625},"location":"Right Ankle"},{"euler":{"heading":36.9375,"pitch":-149.6875,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":354.0,"pitch":140.375,"roll":-32.6875},"location":"Right Knee"},{"euler":{"heading":52.75,"pitch":-146.625,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:45.772"} +{"sensors":[{"euler":{"heading":7.0625,"pitch":127.625,"roll":5.75},"location":"Left Knee"},{"euler":{"heading":130.625,"pitch":157.5625,"roll":66.75},"location":"Left Ankle"},{"euler":{"heading":52.25,"pitch":24.5625,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":32.0625,"pitch":-151.6875,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":358.4375,"pitch":133.5,"roll":-31.5625},"location":"Right Knee"},{"euler":{"heading":38.5,"pitch":-123.3125,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:45.873"} +{"sensors":[{"euler":{"heading":205.5,"pitch":135.875,"roll":9.125},"location":"Left Knee"},{"euler":{"heading":119.375,"pitch":131.6875,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":50.375,"pitch":21.8125,"roll":34.5625},"location":"Right Ankle"},{"euler":{"heading":35.0,"pitch":-151.5625,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":357.75,"pitch":131.875,"roll":-30.0},"location":"Right Knee"},{"euler":{"heading":30.4375,"pitch":-119.375,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:45.973"} +{"sensors":[{"euler":{"heading":219.125,"pitch":147.625,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":86.9375,"pitch":105.125,"roll":42.0625},"location":"Left Ankle"},{"euler":{"heading":50.625,"pitch":21.0625,"roll":34.75},"location":"Right Ankle"},{"euler":{"heading":36.75,"pitch":-152.8125,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":359.1875,"pitch":131.75,"roll":-27.3125},"location":"Right Knee"},{"euler":{"heading":29.5625,"pitch":-117.375,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:46.74"} +{"sensors":[{"euler":{"heading":235.375,"pitch":158.9375,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":64.3125,"pitch":101.8125,"roll":20.1875},"location":"Left Ankle"},{"euler":{"heading":45.1875,"pitch":18.25,"roll":35.5},"location":"Right Ankle"},{"euler":{"heading":38.5625,"pitch":-153.875,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":3.9375,"pitch":129.875,"roll":-23.625},"location":"Right Knee"},{"euler":{"heading":32.375,"pitch":-120.0625,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:46.175"} +{"sensors":[{"euler":{"heading":242.8125,"pitch":162.5625,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":57.875,"pitch":99.875,"roll":12.6875},"location":"Left Ankle"},{"euler":{"heading":37.4375,"pitch":12.625,"roll":36.25},"location":"Right Ankle"},{"euler":{"heading":40.75,"pitch":-157.5625,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":9.375,"pitch":129.5625,"roll":-18.1875},"location":"Right Knee"},{"euler":{"heading":40.75,"pitch":-125.4375,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:46.278"} +{"sensors":[{"euler":{"heading":304.9375,"pitch":152.3125,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":74.9375,"pitch":105.6875,"roll":22.125},"location":"Left Ankle"},{"euler":{"heading":27.125,"pitch":1.4375,"roll":37.125},"location":"Right Ankle"},{"euler":{"heading":42.5625,"pitch":-160.875,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":14.8125,"pitch":131.0,"roll":-11.4375},"location":"Right Knee"},{"euler":{"heading":46.0,"pitch":-129.4375,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:46.378"} +{"sensors":[{"euler":{"heading":314.875,"pitch":144.75,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":88.625,"pitch":109.9375,"roll":33.3125},"location":"Left Ankle"},{"euler":{"heading":11.5625,"pitch":-10.5625,"roll":34.75},"location":"Right Ankle"},{"euler":{"heading":51.875,"pitch":-146.625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":33.125,"pitch":129.5625,"roll":-2.0},"location":"Right Knee"},{"euler":{"heading":48.75,"pitch":-131.5,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:46.479"} +{"sensors":[{"euler":{"heading":322.75,"pitch":139.0,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":101.75,"pitch":113.4375,"roll":40.625},"location":"Left Ankle"},{"euler":{"heading":15.875,"pitch":-10.875,"roll":38.375},"location":"Right Ankle"},{"euler":{"heading":58.8125,"pitch":-138.9375,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":28.6875,"pitch":134.6875,"roll":-5.0},"location":"Right Knee"},{"euler":{"heading":52.375,"pitch":-136.5,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:46.579"} +{"sensors":[{"euler":{"heading":327.875,"pitch":134.6875,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":103.9375,"pitch":114.4375,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":39.0625,"pitch":4.8125,"roll":40.875},"location":"Right Ankle"},{"euler":{"heading":60.125,"pitch":-138.4375,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":240.125,"pitch":141.3125,"roll":-18.4375},"location":"Right Knee"},{"euler":{"heading":56.25,"pitch":-143.0625,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:46.680"} +{"sensors":[{"euler":{"heading":333.6875,"pitch":131.625,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":107.75,"pitch":116.625,"roll":45.6875},"location":"Left Ankle"},{"euler":{"heading":61.6875,"pitch":24.0,"roll":34.4375},"location":"Right Ankle"},{"euler":{"heading":52.375,"pitch":-142.0625,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":260.125,"pitch":150.0,"roll":-29.6875},"location":"Right Knee"},{"euler":{"heading":57.0,"pitch":-147.4375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:46.781"} +{"sensors":[{"euler":{"heading":338.625,"pitch":129.3125,"roll":26.0625},"location":"Left Knee"},{"euler":{"heading":114.0625,"pitch":121.0,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":67.0625,"pitch":29.125,"roll":33.8125},"location":"Right Ankle"},{"euler":{"heading":40.125,"pitch":-147.0,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":269.75,"pitch":153.0,"roll":-33.8125},"location":"Right Knee"},{"euler":{"heading":57.125,"pitch":-150.75,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:46.882"} +{"sensors":[{"euler":{"heading":347.25,"pitch":127.8125,"roll":18.3125},"location":"Left Knee"},{"euler":{"heading":119.1875,"pitch":130.25,"roll":58.9375},"location":"Left Ankle"},{"euler":{"heading":56.75,"pitch":26.5,"roll":35.625},"location":"Right Ankle"},{"euler":{"heading":37.0,"pitch":-149.5625,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":352.625,"pitch":144.0625,"roll":-32.1875},"location":"Right Knee"},{"euler":{"heading":58.875,"pitch":-150.3125,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:46.982"} +{"sensors":[{"euler":{"heading":3.9375,"pitch":127.4375,"roll":7.375},"location":"Left Knee"},{"euler":{"heading":132.3125,"pitch":157.0,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":52.0625,"pitch":24.125,"roll":36.3125},"location":"Right Ankle"},{"euler":{"heading":36.5,"pitch":-150.25,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":358.375,"pitch":136.6875,"roll":-30.6875},"location":"Right Knee"},{"euler":{"heading":44.5,"pitch":-129.875,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:47.83"} +{"sensors":[{"euler":{"heading":4.375,"pitch":131.3125,"roll":8.5},"location":"Left Knee"},{"euler":{"heading":124.875,"pitch":137.9375,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":22.125,"roll":35.9375},"location":"Right Ankle"},{"euler":{"heading":37.1875,"pitch":-150.75,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":0.375,"pitch":133.375,"roll":-29.25},"location":"Right Knee"},{"euler":{"heading":36.375,"pitch":-119.8125,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:47.184"} +{"sensors":[{"euler":{"heading":220.375,"pitch":144.3125,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":93.75,"pitch":109.5,"roll":47.1875},"location":"Left Ankle"},{"euler":{"heading":46.625,"pitch":21.0,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":39.0,"pitch":-149.5625,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":3.4375,"pitch":131.25,"roll":-26.5},"location":"Right Knee"},{"euler":{"heading":33.9375,"pitch":-118.3125,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:47.285"} +{"sensors":[{"euler":{"heading":235.9375,"pitch":158.25,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":65.8125,"pitch":103.125,"roll":22.0},"location":"Left Ankle"},{"euler":{"heading":41.6875,"pitch":18.1875,"roll":36.8125},"location":"Right Ankle"},{"euler":{"heading":39.0,"pitch":-152.4375,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":8.375,"pitch":128.9375,"roll":-22.8125},"location":"Right Knee"},{"euler":{"heading":33.5,"pitch":-118.75,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:47.386"} +{"sensors":[{"euler":{"heading":242.125,"pitch":163.6875,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":57.0,"pitch":100.125,"roll":12.875},"location":"Left Ankle"},{"euler":{"heading":34.3125,"pitch":13.1875,"roll":36.3125},"location":"Right Ankle"},{"euler":{"heading":39.6875,"pitch":-156.4375,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":12.5625,"pitch":128.125,"roll":-18.1875},"location":"Right Knee"},{"euler":{"heading":38.5625,"pitch":-123.875,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:47.487"} +{"sensors":[{"euler":{"heading":242.0625,"pitch":153.5,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":71.0,"pitch":105.5,"roll":22.0625},"location":"Left Ankle"},{"euler":{"heading":24.5,"pitch":2.5,"roll":36.5},"location":"Right Ankle"},{"euler":{"heading":43.1875,"pitch":-157.9375,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":18.1875,"pitch":129.625,"roll":-11.0},"location":"Right Knee"},{"euler":{"heading":43.5,"pitch":-126.625,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:47.588"} +{"sensors":[{"euler":{"heading":313.5,"pitch":146.625,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":86.375,"pitch":109.6875,"roll":33.0},"location":"Left Ankle"},{"euler":{"heading":11.1875,"pitch":-13.4375,"roll":36.125},"location":"Right Ankle"},{"euler":{"heading":54.9375,"pitch":-145.3125,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":30.0625,"pitch":131.3125,"roll":-3.5},"location":"Right Knee"},{"euler":{"heading":46.5,"pitch":-128.8125,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:47.688"} +{"sensors":[{"euler":{"heading":318.9375,"pitch":141.8125,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":112.3125,"roll":39.3125},"location":"Left Ankle"},{"euler":{"heading":18.375,"pitch":-8.75,"roll":38.4375},"location":"Right Ankle"},{"euler":{"heading":60.625,"pitch":-138.3125,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":227.375,"pitch":136.375,"roll":-8.25},"location":"Right Knee"},{"euler":{"heading":50.125,"pitch":-133.6875,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:47.789"} +{"sensors":[{"euler":{"heading":321.9375,"pitch":138.8125,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":96.5625,"pitch":111.5625,"roll":40.875},"location":"Left Ankle"},{"euler":{"heading":39.5,"pitch":4.1875,"roll":43.375},"location":"Right Ankle"},{"euler":{"heading":61.1875,"pitch":-138.625,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":244.875,"pitch":145.4375,"roll":-22.0},"location":"Right Knee"},{"euler":{"heading":52.125,"pitch":-140.9375,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:47.890"} +{"sensors":[{"euler":{"heading":328.5,"pitch":135.4375,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":100.9375,"pitch":113.6875,"roll":44.4375},"location":"Left Ankle"},{"euler":{"heading":59.5625,"pitch":23.375,"roll":39.3125},"location":"Right Ankle"},{"euler":{"heading":53.75,"pitch":-142.625,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":264.1875,"pitch":151.8125,"roll":-32.625},"location":"Right Knee"},{"euler":{"heading":53.0625,"pitch":-144.75,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:47.991"} +{"sensors":[{"euler":{"heading":334.9375,"pitch":132.5,"roll":25.875},"location":"Left Knee"},{"euler":{"heading":109.6875,"pitch":118.8125,"roll":51.1875},"location":"Left Ankle"},{"euler":{"heading":69.1875,"pitch":28.4375,"roll":33.25},"location":"Right Ankle"},{"euler":{"heading":45.1875,"pitch":-146.625,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":271.1875,"pitch":154.0625,"roll":-36.75},"location":"Right Knee"},{"euler":{"heading":54.6875,"pitch":-148.8125,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:48.93"} +{"sensors":[{"euler":{"heading":343.375,"pitch":130.625,"roll":19.0},"location":"Left Knee"},{"euler":{"heading":116.25,"pitch":129.125,"roll":58.8125},"location":"Left Ankle"},{"euler":{"heading":58.4375,"pitch":26.25,"roll":35.75},"location":"Right Ankle"},{"euler":{"heading":38.3125,"pitch":-150.3125,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":346.0,"pitch":145.375,"roll":-34.8125},"location":"Right Knee"},{"euler":{"heading":56.0,"pitch":-149.375,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:48.194"} +{"sensors":[{"euler":{"heading":0.125,"pitch":129.25,"roll":8.8125},"location":"Left Knee"},{"euler":{"heading":128.375,"pitch":150.625,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":52.375,"pitch":21.6875,"roll":36.25},"location":"Right Ankle"},{"euler":{"heading":36.375,"pitch":-151.875,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":351.8125,"pitch":138.875,"roll":-33.1875},"location":"Right Knee"},{"euler":{"heading":42.375,"pitch":-130.375,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:48.294"} +{"sensors":[{"euler":{"heading":7.1875,"pitch":131.875,"roll":6.4375},"location":"Left Knee"},{"euler":{"heading":127.5,"pitch":144.1875,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":49.375,"pitch":18.5625,"roll":35.3125},"location":"Right Ankle"},{"euler":{"heading":36.5625,"pitch":-152.0,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":354.5625,"pitch":135.375,"roll":-31.25},"location":"Right Knee"},{"euler":{"heading":34.75,"pitch":-116.9375,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:48.395"} +{"sensors":[{"euler":{"heading":217.3125,"pitch":141.1875,"roll":18.125},"location":"Left Knee"},{"euler":{"heading":100.1875,"pitch":111.875,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":48.0625,"pitch":18.9375,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":39.8125,"pitch":-150.4375,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":356.5,"pitch":132.9375,"roll":-29.5},"location":"Right Knee"},{"euler":{"heading":32.25,"pitch":-116.1875,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:48.495"} +{"sensors":[{"euler":{"heading":233.125,"pitch":155.4375,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":71.3125,"pitch":103.9375,"roll":26.9375},"location":"Left Ankle"},{"euler":{"heading":43.0625,"pitch":17.6875,"roll":35.9375},"location":"Right Ankle"},{"euler":{"heading":41.25,"pitch":-151.625,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":2.0625,"pitch":130.4375,"roll":-26.125},"location":"Right Knee"},{"euler":{"heading":32.5,"pitch":-117.0,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:48.596"} +{"sensors":[{"euler":{"heading":243.3125,"pitch":163.0625,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":56.8125,"pitch":99.25,"roll":12.75},"location":"Left Ankle"},{"euler":{"heading":36.6875,"pitch":13.875,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":43.125,"pitch":-154.25,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":5.75,"pitch":128.9375,"roll":-21.9375},"location":"Right Knee"},{"euler":{"heading":37.875,"pitch":-122.375,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:48.697"} +{"sensors":[{"euler":{"heading":244.125,"pitch":155.6875,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":66.375,"pitch":104.4375,"roll":18.9375},"location":"Left Ankle"},{"euler":{"heading":29.125,"pitch":6.125,"roll":35.8125},"location":"Right Ankle"},{"euler":{"heading":43.5,"pitch":-159.375,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":9.5,"pitch":129.375,"roll":-16.3125},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-126.0625,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:48.798"} +{"sensors":[{"euler":{"heading":310.375,"pitch":147.9375,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":82.1875,"pitch":109.125,"roll":29.125},"location":"Left Ankle"},{"euler":{"heading":15.25,"pitch":-8.8125,"roll":36.875},"location":"Right Ankle"},{"euler":{"heading":48.8125,"pitch":-151.875,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":22.75,"pitch":131.125,"roll":-6.625},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-126.625,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:48.898"} +{"sensors":[{"euler":{"heading":319.125,"pitch":141.4375,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":96.8125,"pitch":111.375,"roll":37.5},"location":"Left Ankle"},{"euler":{"heading":12.3125,"pitch":-13.75,"roll":36.9375},"location":"Right Ankle"},{"euler":{"heading":57.125,"pitch":-140.8125,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":23.6875,"pitch":134.8125,"roll":-6.5625},"location":"Right Knee"},{"euler":{"heading":50.75,"pitch":-135.0,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:49.0"} +{"sensors":[{"euler":{"heading":325.0,"pitch":136.8125,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":100.0625,"pitch":112.5,"roll":40.125},"location":"Left Ankle"},{"euler":{"heading":32.875,"pitch":0.0625,"roll":40.5},"location":"Right Ankle"},{"euler":{"heading":60.375,"pitch":-138.4375,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":238.1875,"pitch":140.8125,"roll":-17.875},"location":"Right Knee"},{"euler":{"heading":54.25,"pitch":-140.5625,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:49.101"} +{"sensors":[{"euler":{"heading":329.875,"pitch":134.0,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":114.1875,"roll":43.1875},"location":"Left Ankle"},{"euler":{"heading":54.0625,"pitch":17.5625,"roll":41.0},"location":"Right Ankle"},{"euler":{"heading":55.125,"pitch":-141.6875,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":259.3125,"pitch":150.5625,"roll":-28.9375},"location":"Right Knee"},{"euler":{"heading":55.0,"pitch":-144.625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:49.201"} +{"sensors":[{"euler":{"heading":335.125,"pitch":131.6875,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":108.25,"pitch":117.3125,"roll":48.0625},"location":"Left Ankle"},{"euler":{"heading":67.8125,"pitch":27.4375,"roll":34.0},"location":"Right Ankle"},{"euler":{"heading":42.9375,"pitch":-147.75,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":270.125,"pitch":155.25,"roll":-36.5},"location":"Right Knee"},{"euler":{"heading":55.375,"pitch":-150.4375,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:49.302"} +{"sensors":[{"euler":{"heading":343.25,"pitch":129.0,"roll":21.1875},"location":"Left Knee"},{"euler":{"heading":113.0,"pitch":124.5625,"roll":54.75},"location":"Left Ankle"},{"euler":{"heading":58.5625,"pitch":26.875,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":39.4375,"pitch":-150.6875,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":345.0625,"pitch":146.125,"roll":-34.6875},"location":"Right Knee"},{"euler":{"heading":59.125,"pitch":-152.75,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:49.402"} +{"sensors":[{"euler":{"heading":6.625,"pitch":129.0,"roll":9.0},"location":"Left Knee"},{"euler":{"heading":126.25,"pitch":148.75,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":51.3125,"pitch":23.3125,"roll":36.625},"location":"Right Ankle"},{"euler":{"heading":39.9375,"pitch":-149.9375,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":351.6875,"pitch":139.125,"roll":-33.3125},"location":"Right Knee"},{"euler":{"heading":47.875,"pitch":-135.1875,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:49.506"} +{"sensors":[{"euler":{"heading":7.3125,"pitch":130.5,"roll":6.9375},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":146.1875,"roll":67.25},"location":"Left Ankle"},{"euler":{"heading":47.9375,"pitch":21.4375,"roll":36.0625},"location":"Right Ankle"},{"euler":{"heading":38.625,"pitch":-150.6875,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":356.25,"pitch":134.875,"roll":-31.1875},"location":"Right Knee"},{"euler":{"heading":39.3125,"pitch":-120.3125,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:49.607"} +{"sensors":[{"euler":{"heading":218.625,"pitch":139.8125,"roll":18.5},"location":"Left Knee"},{"euler":{"heading":102.0625,"pitch":115.3125,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":44.625,"pitch":19.375,"roll":35.25},"location":"Right Ankle"},{"euler":{"heading":40.0,"pitch":-150.5,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":357.3125,"pitch":132.375,"roll":-29.625},"location":"Right Knee"},{"euler":{"heading":35.25,"pitch":-117.625,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:49.708"} +{"sensors":[{"euler":{"heading":233.8125,"pitch":154.5,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":69.5,"pitch":104.8125,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":40.8125,"pitch":16.9375,"roll":36.4375},"location":"Right Ankle"},{"euler":{"heading":42.0625,"pitch":-151.8125,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":1.6875,"pitch":131.375,"roll":-25.75},"location":"Right Knee"},{"euler":{"heading":36.0,"pitch":-118.5625,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:49.809"} +{"sensors":[{"euler":{"heading":241.6875,"pitch":163.8125,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":55.3125,"pitch":97.6875,"roll":12.4375},"location":"Left Ankle"},{"euler":{"heading":33.125,"pitch":11.9375,"roll":36.625},"location":"Right Ankle"},{"euler":{"heading":44.125,"pitch":-153.375,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":6.0625,"pitch":130.1875,"roll":-21.375},"location":"Right Knee"},{"euler":{"heading":40.5,"pitch":-123.6875,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:49.910"} +{"sensors":[{"euler":{"heading":242.6875,"pitch":156.5625,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":65.0,"pitch":102.5,"roll":18.8125},"location":"Left Ankle"},{"euler":{"heading":22.6875,"pitch":0.3125,"roll":36.375},"location":"Right Ankle"},{"euler":{"heading":46.0,"pitch":-157.75,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":10.5,"pitch":131.125,"roll":-14.9375},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-126.75,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:50.11"} +{"sensors":[{"euler":{"heading":306.875,"pitch":149.375,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":76.3125,"pitch":105.5625,"roll":26.9375},"location":"Left Ankle"},{"euler":{"heading":9.6875,"pitch":-13.6875,"roll":33.875},"location":"Right Ankle"},{"euler":{"heading":55.875,"pitch":-147.125,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":21.5,"pitch":132.4375,"roll":-5.8125},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-130.5,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:50.112"} +{"sensors":[{"euler":{"heading":312.5625,"pitch":144.8125,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":85.4375,"pitch":107.4375,"roll":33.5625},"location":"Left Ankle"},{"euler":{"heading":13.0,"pitch":-13.75,"roll":36.4375},"location":"Right Ankle"},{"euler":{"heading":63.875,"pitch":-138.5625,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":220.75,"pitch":136.125,"roll":-6.4375},"location":"Right Knee"},{"euler":{"heading":50.4375,"pitch":-136.125,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:50.212"} +{"sensors":[{"euler":{"heading":318.5625,"pitch":140.25,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":88.6875,"pitch":107.875,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":35.125,"pitch":1.4375,"roll":42.0},"location":"Right Ankle"},{"euler":{"heading":64.125,"pitch":-138.375,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":236.8125,"pitch":142.25,"roll":-17.5},"location":"Right Knee"},{"euler":{"heading":53.125,"pitch":-140.5625,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:50.313"} +{"sensors":[{"euler":{"heading":326.1875,"pitch":135.75,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":95.9375,"pitch":111.1875,"roll":40.5625},"location":"Left Ankle"},{"euler":{"heading":54.125,"pitch":20.0,"roll":42.0},"location":"Right Ankle"},{"euler":{"heading":58.3125,"pitch":-141.5625,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":256.4375,"pitch":149.375,"roll":-27.75},"location":"Right Knee"},{"euler":{"heading":55.6875,"pitch":-145.5625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:50.413"} +{"sensors":[{"euler":{"heading":332.4375,"pitch":133.4375,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":100.6875,"pitch":113.8125,"roll":45.0},"location":"Left Ankle"},{"euler":{"heading":68.3125,"pitch":29.375,"roll":34.5625},"location":"Right Ankle"},{"euler":{"heading":46.25,"pitch":-146.75,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":268.125,"pitch":155.75,"roll":-36.5},"location":"Right Knee"},{"euler":{"heading":56.1875,"pitch":-150.5625,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:50.515"} +{"sensors":[{"euler":{"heading":339.0625,"pitch":131.4375,"roll":22.875},"location":"Left Knee"},{"euler":{"heading":105.25,"pitch":118.5,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":61.625,"pitch":29.1875,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":37.5,"pitch":-149.875,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":336.375,"pitch":149.6875,"roll":-36.5625},"location":"Right Knee"},{"euler":{"heading":58.75,"pitch":-157.3125,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:50.616"} +{"sensors":[{"euler":{"heading":350.75,"pitch":131.8125,"roll":12.5},"location":"Left Knee"},{"euler":{"heading":112.0,"pitch":136.0625,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":52.5625,"pitch":25.5,"roll":36.8125},"location":"Right Ankle"},{"euler":{"heading":38.375,"pitch":-150.375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":348.1875,"pitch":141.9375,"roll":-33.8125},"location":"Right Knee"},{"euler":{"heading":53.0,"pitch":-148.875,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:50.717"} +{"sensors":[{"euler":{"heading":7.0,"pitch":129.25,"roll":5.8125},"location":"Left Knee"},{"euler":{"heading":123.25,"pitch":148.5625,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":47.9375,"pitch":24.3125,"roll":35.9375},"location":"Right Ankle"},{"euler":{"heading":32.75,"pitch":-151.625,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":354.5,"pitch":134.3125,"roll":-33.1875},"location":"Right Knee"},{"euler":{"heading":41.6875,"pitch":-122.75,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:50.818"} +{"sensors":[{"euler":{"heading":209.25,"pitch":136.3125,"roll":11.9375},"location":"Left Knee"},{"euler":{"heading":109.8125,"pitch":118.9375,"roll":59.1875},"location":"Left Ankle"},{"euler":{"heading":43.625,"pitch":23.125,"roll":35.4375},"location":"Right Ankle"},{"euler":{"heading":36.5,"pitch":-148.8125,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":358.125,"pitch":130.9375,"roll":-31.25},"location":"Right Knee"},{"euler":{"heading":33.5625,"pitch":-118.5625,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:50.919"} +{"sensors":[{"euler":{"heading":224.625,"pitch":149.4375,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":78.4375,"pitch":105.75,"roll":32.1875},"location":"Left Ankle"},{"euler":{"heading":41.1875,"pitch":21.4375,"roll":35.9375},"location":"Right Ankle"},{"euler":{"heading":38.75,"pitch":-148.875,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":0.0625,"pitch":129.6875,"roll":-28.5},"location":"Right Knee"},{"euler":{"heading":32.625,"pitch":-117.9375,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:51.19"} +{"sensors":[{"euler":{"heading":238.3125,"pitch":160.5,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":56.4375,"pitch":98.625,"roll":13.4375},"location":"Left Ankle"},{"euler":{"heading":35.5625,"pitch":17.3125,"roll":36.6875},"location":"Right Ankle"},{"euler":{"heading":40.8125,"pitch":-150.5,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":3.75,"pitch":128.25,"roll":-24.3125},"location":"Right Knee"},{"euler":{"heading":38.4375,"pitch":-122.375,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:51.120"} +{"sensors":[{"euler":{"heading":241.75,"pitch":156.1875,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":63.4375,"pitch":103.875,"roll":17.0},"location":"Left Ankle"},{"euler":{"heading":28.0,"pitch":9.1875,"roll":35.25},"location":"Right Ankle"},{"euler":{"heading":43.3125,"pitch":-156.0625,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":5.5625,"pitch":129.125,"roll":-19.0625},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-125.375,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:51.222"} +{"sensors":[{"euler":{"heading":310.9375,"pitch":148.0,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":76.375,"pitch":106.4375,"roll":24.75},"location":"Left Ankle"},{"euler":{"heading":17.9375,"pitch":-7.5,"roll":35.1875},"location":"Right Ankle"},{"euler":{"heading":53.25,"pitch":-149.1875,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":7.875,"pitch":133.0625,"roll":-12.4375},"location":"Right Knee"},{"euler":{"heading":46.125,"pitch":-128.875,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:51.322"} +{"sensors":[{"euler":{"heading":320.3125,"pitch":141.0,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":95.0625,"pitch":110.125,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":7.4375,"pitch":-18.0,"roll":31.375},"location":"Right Ankle"},{"euler":{"heading":62.25,"pitch":-140.625,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":16.0625,"pitch":133.6875,"roll":-7.9375},"location":"Right Knee"},{"euler":{"heading":52.25,"pitch":-135.3125,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:51.424"} +{"sensors":[{"euler":{"heading":323.1875,"pitch":137.4375,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":94.5625,"pitch":109.4375,"roll":38.125},"location":"Left Ankle"},{"euler":{"heading":22.125,"pitch":-7.25,"roll":38.0625},"location":"Right Ankle"},{"euler":{"heading":66.6875,"pitch":-137.625,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":231.0,"pitch":139.8125,"roll":-15.6875},"location":"Right Knee"},{"euler":{"heading":55.625,"pitch":-142.25,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:51.525"} +{"sensors":[{"euler":{"heading":327.0625,"pitch":135.0625,"roll":31.375},"location":"Left Knee"},{"euler":{"heading":95.5625,"pitch":109.6875,"roll":40.625},"location":"Left Ankle"},{"euler":{"heading":45.5,"pitch":13.9375,"roll":41.25},"location":"Right Ankle"},{"euler":{"heading":61.25,"pitch":-139.25,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":251.625,"pitch":148.75,"roll":-26.125},"location":"Right Knee"},{"euler":{"heading":55.75,"pitch":-148.25,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:51.626"} +{"sensors":[{"euler":{"heading":331.5,"pitch":132.5625,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":112.25,"roll":45.5625},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":27.8125,"roll":35.875},"location":"Right Ankle"},{"euler":{"heading":51.0,"pitch":-143.0,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":268.5,"pitch":157.0,"roll":-33.625},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-154.1875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:51.727"} +{"sensors":[{"euler":{"heading":334.125,"pitch":131.0,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":106.875,"pitch":116.5,"roll":51.3125},"location":"Left Ankle"},{"euler":{"heading":66.5625,"pitch":29.375,"roll":33.625},"location":"Right Ankle"},{"euler":{"heading":40.5,"pitch":-148.4375,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":270.8125,"pitch":155.0625,"roll":-37.0625},"location":"Right Knee"},{"euler":{"heading":58.3125,"pitch":-158.125,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:51.828"} +{"sensors":[{"euler":{"heading":345.625,"pitch":129.75,"roll":15.25},"location":"Left Knee"},{"euler":{"heading":114.375,"pitch":129.6875,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":55.375,"pitch":24.25,"roll":35.9375},"location":"Right Ankle"},{"euler":{"heading":42.3125,"pitch":-149.125,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":341.625,"pitch":146.5,"roll":-35.0},"location":"Right Knee"},{"euler":{"heading":57.625,"pitch":-153.75,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:51.929"} +{"sensors":[{"euler":{"heading":6.4375,"pitch":125.4375,"roll":6.5625},"location":"Left Knee"},{"euler":{"heading":133.0,"pitch":158.6875,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":50.0625,"pitch":23.9375,"roll":35.625},"location":"Right Ankle"},{"euler":{"heading":36.3125,"pitch":-150.0,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":348.75,"pitch":139.375,"roll":-34.375},"location":"Right Knee"},{"euler":{"heading":41.375,"pitch":-128.125,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:52.29"} +{"sensors":[{"euler":{"heading":359.6875,"pitch":132.875,"roll":10.0},"location":"Left Knee"},{"euler":{"heading":126.0625,"pitch":139.4375,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":47.4375,"pitch":21.25,"roll":34.9375},"location":"Right Ankle"},{"euler":{"heading":37.375,"pitch":-149.9375,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":351.0,"pitch":135.0625,"roll":-33.0},"location":"Right Knee"},{"euler":{"heading":31.6875,"pitch":-119.8125,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:52.131"} +{"sensors":[{"euler":{"heading":221.625,"pitch":144.5625,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":109.1875,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":47.8125,"pitch":19.9375,"roll":34.9375},"location":"Right Ankle"},{"euler":{"heading":40.9375,"pitch":-150.25,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":351.4375,"pitch":134.5625,"roll":-31.0625},"location":"Right Knee"},{"euler":{"heading":31.625,"pitch":-117.75,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:52.232"} +{"sensors":[{"euler":{"heading":236.9375,"pitch":157.4375,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":64.125,"pitch":103.0,"roll":19.875},"location":"Left Ankle"},{"euler":{"heading":43.1875,"pitch":17.5,"roll":35.75},"location":"Right Ankle"},{"euler":{"heading":42.875,"pitch":-151.3125,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":356.0,"pitch":132.375,"roll":-27.6875},"location":"Right Knee"},{"euler":{"heading":30.875,"pitch":-122.5625,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:52.333"} +{"sensors":[{"euler":{"heading":244.375,"pitch":163.375,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":55.8125,"pitch":101.25,"roll":11.1875},"location":"Left Ankle"},{"euler":{"heading":37.1875,"pitch":12.3125,"roll":36.75},"location":"Right Ankle"},{"euler":{"heading":44.3125,"pitch":-154.875,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":357.75,"pitch":131.4375,"roll":-23.75},"location":"Right Knee"},{"euler":{"heading":41.625,"pitch":-125.75,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:52.433"} +{"sensors":[{"euler":{"heading":299.0625,"pitch":154.8125,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":71.875,"pitch":106.1875,"roll":20.0},"location":"Left Ankle"},{"euler":{"heading":27.0,"pitch":1.125,"roll":35.25},"location":"Right Ankle"},{"euler":{"heading":47.8125,"pitch":-156.25,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":1.3125,"pitch":132.6875,"roll":-16.375},"location":"Right Knee"},{"euler":{"heading":45.8125,"pitch":-129.1875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:52.535"} +{"sensors":[{"euler":{"heading":308.875,"pitch":146.8125,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":81.4375,"pitch":109.4375,"roll":28.875},"location":"Left Ankle"},{"euler":{"heading":13.3125,"pitch":-15.8125,"roll":33.8125},"location":"Right Ankle"},{"euler":{"heading":58.4375,"pitch":-144.0625,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":13.1875,"pitch":133.5,"roll":-8.9375},"location":"Right Knee"},{"euler":{"heading":47.875,"pitch":-130.8125,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:52.635"} +{"sensors":[{"euler":{"heading":314.6875,"pitch":141.9375,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":91.0625,"pitch":111.6875,"roll":35.875},"location":"Left Ankle"},{"euler":{"heading":19.75,"pitch":-14.6875,"roll":37.5},"location":"Right Ankle"},{"euler":{"heading":64.875,"pitch":-139.1875,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":223.3125,"pitch":140.0625,"roll":-12.125},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-137.6875,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:52.736"} +{"sensors":[{"euler":{"heading":320.625,"pitch":138.125,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":112.0,"roll":37.75},"location":"Left Ankle"},{"euler":{"heading":39.8125,"pitch":2.375,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":63.9375,"pitch":-139.625,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":240.625,"pitch":146.375,"roll":-22.8125},"location":"Right Knee"},{"euler":{"heading":52.8125,"pitch":-141.25,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:52.837"} +{"sensors":[{"euler":{"heading":327.125,"pitch":134.6875,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":114.0625,"roll":41.25},"location":"Left Ankle"},{"euler":{"heading":60.25,"pitch":26.125,"roll":34.8125},"location":"Right Ankle"},{"euler":{"heading":56.625,"pitch":-142.5,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":261.625,"pitch":152.9375,"roll":-31.875},"location":"Right Knee"},{"euler":{"heading":54.0,"pitch":-146.3125,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:52.938"} +{"sensors":[{"euler":{"heading":332.75,"pitch":132.3125,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":104.5625,"pitch":117.6875,"roll":47.125},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":31.0,"roll":32.25},"location":"Right Ankle"},{"euler":{"heading":43.5,"pitch":-147.25,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":271.25,"pitch":157.9375,"roll":-38.875},"location":"Right Knee"},{"euler":{"heading":53.75,"pitch":-150.4375,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:53.39"} +{"sensors":[{"euler":{"heading":339.6875,"pitch":129.875,"roll":21.9375},"location":"Left Knee"},{"euler":{"heading":109.75,"pitch":122.4375,"roll":53.0},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":29.875,"roll":33.75},"location":"Right Ankle"},{"euler":{"heading":38.375,"pitch":-149.8125,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":331.875,"pitch":151.25,"roll":-38.375},"location":"Right Knee"},{"euler":{"heading":57.9375,"pitch":-157.6875,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:53.140"} +{"sensors":[{"euler":{"heading":353.6875,"pitch":129.5625,"roll":11.6875},"location":"Left Knee"},{"euler":{"heading":124.8125,"pitch":148.375,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":53.25,"pitch":25.9375,"roll":35.875},"location":"Right Ankle"},{"euler":{"heading":39.1875,"pitch":-149.0,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":342.6875,"pitch":143.6875,"roll":-35.6875},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-149.6875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:53.241"} +{"sensors":[{"euler":{"heading":9.25,"pitch":126.5625,"roll":5.5625},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":152.875,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":50.6875,"pitch":24.25,"roll":33.875},"location":"Right Ankle"},{"euler":{"heading":35.9375,"pitch":-150.875,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":347.125,"pitch":137.0,"roll":-35.1875},"location":"Right Knee"},{"euler":{"heading":40.8125,"pitch":-127.375,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:53.341"} +{"sensors":[{"euler":{"heading":356.6875,"pitch":135.25,"roll":12.3125},"location":"Left Knee"},{"euler":{"heading":113.0625,"pitch":125.0625,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":50.25,"pitch":22.5625,"roll":32.3125},"location":"Right Ankle"},{"euler":{"heading":38.3125,"pitch":-150.5625,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":347.6875,"pitch":135.0625,"roll":-33.5},"location":"Right Knee"},{"euler":{"heading":32.5625,"pitch":-121.5625,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:53.442"} +{"sensors":[{"euler":{"heading":225.5625,"pitch":149.0625,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":81.5,"pitch":106.0625,"roll":35.125},"location":"Left Ankle"},{"euler":{"heading":47.5625,"pitch":19.375,"roll":34.4375},"location":"Right Ankle"},{"euler":{"heading":40.1875,"pitch":-151.6875,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":349.6875,"pitch":133.875,"roll":-30.25},"location":"Right Knee"},{"euler":{"heading":31.25,"pitch":-120.1875,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:53.543"} +{"sensors":[{"euler":{"heading":240.5,"pitch":160.9375,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":56.625,"pitch":101.375,"roll":13.1875},"location":"Left Ankle"},{"euler":{"heading":41.8125,"pitch":16.0625,"roll":34.5625},"location":"Right Ankle"},{"euler":{"heading":41.375,"pitch":-153.0625,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":354.375,"pitch":131.3125,"roll":-26.4375},"location":"Right Knee"},{"euler":{"heading":36.375,"pitch":-122.8125,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:53.644"} +{"sensors":[{"euler":{"heading":245.3125,"pitch":163.875,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":59.125,"pitch":102.9375,"roll":12.875},"location":"Left Ankle"},{"euler":{"heading":34.625,"pitch":10.875,"roll":34.3125},"location":"Right Ankle"},{"euler":{"heading":41.0625,"pitch":-159.75,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":358.625,"pitch":130.3125,"roll":-21.6875},"location":"Right Knee"},{"euler":{"heading":41.875,"pitch":-126.375,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:53.745"} +{"sensors":[{"euler":{"heading":301.5625,"pitch":153.25,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":74.625,"pitch":109.3125,"roll":22.6875},"location":"Left Ankle"},{"euler":{"heading":23.375,"pitch":-0.5,"roll":35.3125},"location":"Right Ankle"},{"euler":{"heading":45.5,"pitch":-158.9375,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":4.6875,"pitch":131.0,"roll":-14.4375},"location":"Right Knee"},{"euler":{"heading":44.0,"pitch":-127.375,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:53.845"} +{"sensors":[{"euler":{"heading":335.125,"pitch":142.375,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":89.625,"pitch":114.4375,"roll":30.6875},"location":"Left Ankle"},{"euler":{"heading":7.375,"pitch":-17.0625,"roll":32.0},"location":"Right Ankle"},{"euler":{"heading":56.4375,"pitch":-144.8125,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":15.875,"pitch":131.625,"roll":-6.75},"location":"Right Knee"},{"euler":{"heading":50.0625,"pitch":-131.0,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:53.946"} +{"sensors":[{"euler":{"heading":322.3125,"pitch":138.125,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":102.6875,"pitch":116.3125,"roll":39.4375},"location":"Left Ankle"},{"euler":{"heading":16.3125,"pitch":-14.125,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":64.4375,"pitch":-139.0625,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":220.5625,"pitch":138.125,"roll":-11.6875},"location":"Right Knee"},{"euler":{"heading":53.625,"pitch":-138.9375,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:54.47"} +{"sensors":[{"euler":{"heading":326.75,"pitch":134.4375,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":102.4375,"pitch":116.3125,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":38.9375,"pitch":4.1875,"roll":39.5625},"location":"Right Ankle"},{"euler":{"heading":62.75,"pitch":-139.375,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":239.9375,"pitch":145.8125,"roll":-23.375},"location":"Right Knee"},{"euler":{"heading":56.1875,"pitch":-145.8125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:54.148"} +{"sensors":[{"euler":{"heading":332.625,"pitch":130.875,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":106.1875,"pitch":117.75,"roll":43.4375},"location":"Left Ankle"},{"euler":{"heading":58.5,"pitch":22.25,"roll":37.0},"location":"Right Ankle"},{"euler":{"heading":55.625,"pitch":-142.3125,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":259.5,"pitch":153.9375,"roll":-33.5625},"location":"Right Knee"},{"euler":{"heading":57.75,"pitch":-151.3125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:54.249"} +{"sensors":[{"euler":{"heading":337.5,"pitch":128.375,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":111.75,"pitch":120.4375,"roll":48.3125},"location":"Left Ankle"},{"euler":{"heading":69.3125,"pitch":29.8125,"roll":32.5625},"location":"Right Ankle"},{"euler":{"heading":42.8125,"pitch":-146.9375,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":267.75,"pitch":156.5625,"roll":-38.125},"location":"Right Knee"},{"euler":{"heading":58.75,"pitch":-157.0625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:54.350"} +{"sensors":[{"euler":{"heading":341.9375,"pitch":127.1875,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":114.25,"pitch":125.625,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":60.3125,"pitch":29.0625,"roll":34.375},"location":"Right Ankle"},{"euler":{"heading":38.0625,"pitch":-149.6875,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":336.6875,"pitch":147.5625,"roll":-36.4375},"location":"Right Knee"},{"euler":{"heading":61.125,"pitch":-160.1875,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:54.450"} +{"sensors":[{"euler":{"heading":356.5,"pitch":127.625,"roll":11.0},"location":"Left Knee"},{"euler":{"heading":123.9375,"pitch":146.5625,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":53.1875,"pitch":25.4375,"roll":35.1875},"location":"Right Ankle"},{"euler":{"heading":36.875,"pitch":-150.5625,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":343.25,"pitch":140.8125,"roll":-35.125},"location":"Right Knee"},{"euler":{"heading":45.625,"pitch":-140.5625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:54.551"} +{"sensors":[{"euler":{"heading":6.875,"pitch":128.5,"roll":6.25},"location":"Left Knee"},{"euler":{"heading":125.8125,"pitch":145.6875,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":50.1875,"pitch":22.5625,"roll":34.375},"location":"Right Ankle"},{"euler":{"heading":34.3125,"pitch":-153.25,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":345.875,"pitch":136.0625,"roll":-33.5625},"location":"Right Knee"},{"euler":{"heading":35.375,"pitch":-124.375,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:54.652"} +{"sensors":[{"euler":{"heading":213.3125,"pitch":137.9375,"roll":14.75},"location":"Left Knee"},{"euler":{"heading":109.25,"pitch":119.875,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":48.625,"pitch":20.5,"roll":34.25},"location":"Right Ankle"},{"euler":{"heading":35.8125,"pitch":-153.5,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":345.5,"pitch":134.875,"roll":-31.6875},"location":"Right Knee"},{"euler":{"heading":29.0625,"pitch":-120.125,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:54.753"} +{"sensors":[{"euler":{"heading":229.6875,"pitch":151.375,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":73.0,"pitch":107.25,"roll":28.1875},"location":"Left Ankle"},{"euler":{"heading":46.25,"pitch":17.375,"roll":34.6875},"location":"Right Ankle"},{"euler":{"heading":38.9375,"pitch":-154.9375,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":347.625,"pitch":134.1875,"roll":-28.625},"location":"Right Knee"},{"euler":{"heading":30.25,"pitch":-120.25,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:54.853"} +{"sensors":[{"euler":{"heading":241.9375,"pitch":161.5625,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":53.875,"pitch":100.6875,"roll":10.4375},"location":"Left Ankle"},{"euler":{"heading":40.4375,"pitch":13.625,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":39.9375,"pitch":-158.3125,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":353.0,"pitch":132.0625,"roll":-24.375},"location":"Right Knee"},{"euler":{"heading":35.75,"pitch":-123.0625,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:54.954"} +{"sensors":[{"euler":{"heading":243.625,"pitch":159.625,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":60.0625,"pitch":103.4375,"roll":14.1875},"location":"Left Ankle"},{"euler":{"heading":33.625,"pitch":7.5,"roll":34.3125},"location":"Right Ankle"},{"euler":{"heading":40.8125,"pitch":-166.3125,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":355.4375,"pitch":132.375,"roll":-20.3125},"location":"Right Knee"},{"euler":{"heading":42.9375,"pitch":-126.5,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:55.54"} +{"sensors":[{"euler":{"heading":311.75,"pitch":148.5625,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":77.375,"pitch":110.125,"roll":24.0},"location":"Left Ankle"},{"euler":{"heading":21.375,"pitch":-5.6875,"roll":35.0},"location":"Right Ankle"},{"euler":{"heading":47.25,"pitch":-159.25,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":5.375,"pitch":133.125,"roll":-11.875},"location":"Right Knee"},{"euler":{"heading":45.3125,"pitch":-127.25,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:55.155"} +{"sensors":[{"euler":{"heading":320.0625,"pitch":140.75,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":91.4375,"pitch":113.4375,"roll":31.375},"location":"Left Ankle"},{"euler":{"heading":10.1875,"pitch":-18.6875,"roll":32.75},"location":"Right Ankle"},{"euler":{"heading":56.9375,"pitch":-145.375,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":11.8125,"pitch":134.0,"roll":-7.25},"location":"Right Knee"},{"euler":{"heading":50.5625,"pitch":-133.875,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:55.256"} +{"sensors":[{"euler":{"heading":323.625,"pitch":136.5,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":98.75,"pitch":114.625,"roll":37.4375},"location":"Left Ankle"},{"euler":{"heading":24.1875,"pitch":-9.0625,"roll":37.625},"location":"Right Ankle"},{"euler":{"heading":61.375,"pitch":-140.4375,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":225.125,"pitch":138.625,"roll":-14.6875},"location":"Right Knee"},{"euler":{"heading":52.75,"pitch":-140.3125,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:55.357"} +{"sensors":[{"euler":{"heading":328.75,"pitch":133.25,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":100.125,"pitch":114.3125,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":46.6875,"pitch":12.8125,"roll":38.875},"location":"Right Ankle"},{"euler":{"heading":58.75,"pitch":-141.25,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":246.0625,"pitch":146.875,"roll":-26.3125},"location":"Right Knee"},{"euler":{"heading":53.6875,"pitch":-145.6875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:55.458"} +{"sensors":[{"euler":{"heading":335.25,"pitch":129.8125,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":104.1875,"pitch":116.1875,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":65.4375,"pitch":27.625,"roll":34.1875},"location":"Right Ankle"},{"euler":{"heading":50.0,"pitch":-144.0625,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":264.0625,"pitch":157.25,"roll":-34.5},"location":"Right Knee"},{"euler":{"heading":55.875,"pitch":-150.75,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:55.559"} +{"sensors":[{"euler":{"heading":341.25,"pitch":127.4375,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":109.75,"pitch":119.5625,"roll":48.8125},"location":"Left Ankle"},{"euler":{"heading":67.625,"pitch":30.75,"roll":32.0625},"location":"Right Ankle"},{"euler":{"heading":41.125,"pitch":-147.625,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":269.25,"pitch":156.875,"roll":-35.6875},"location":"Right Knee"},{"euler":{"heading":58.1875,"pitch":-156.8125,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:55.660"} +{"sensors":[{"euler":{"heading":348.75,"pitch":127.9375,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":112.0,"pitch":127.625,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":55.125,"pitch":24.75,"roll":35.3125},"location":"Right Ankle"},{"euler":{"heading":38.8125,"pitch":-149.75,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":338.625,"pitch":148.375,"roll":-34.375},"location":"Right Knee"},{"euler":{"heading":57.875,"pitch":-154.875,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:55.764"} +{"sensors":[{"euler":{"heading":7.1875,"pitch":125.3125,"roll":5.8125},"location":"Left Knee"},{"euler":{"heading":128.125,"pitch":153.5625,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":50.875,"pitch":22.125,"roll":35.6875},"location":"Right Ankle"},{"euler":{"heading":35.75,"pitch":-151.5,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":342.0,"pitch":141.0,"roll":-34.75},"location":"Right Knee"},{"euler":{"heading":40.125,"pitch":-133.625,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:55.864"} +{"sensors":[{"euler":{"heading":10.625,"pitch":131.75,"roll":4.875},"location":"Left Knee"},{"euler":{"heading":122.3125,"pitch":137.0,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":48.375,"pitch":19.625,"roll":34.875},"location":"Right Ankle"},{"euler":{"heading":37.875,"pitch":-152.75,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":343.5625,"pitch":137.875,"roll":-33.125},"location":"Right Knee"},{"euler":{"heading":32.25,"pitch":-122.3125,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:55.965"} +{"sensors":[{"euler":{"heading":219.0625,"pitch":140.875,"roll":18.6875},"location":"Left Knee"},{"euler":{"heading":96.0625,"pitch":115.25,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":46.6875,"pitch":18.8125,"roll":35.0},"location":"Right Ankle"},{"euler":{"heading":39.5625,"pitch":-152.375,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":347.0,"pitch":136.0625,"roll":-30.4375},"location":"Right Knee"},{"euler":{"heading":30.0625,"pitch":-118.875,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:56.66"} +{"sensors":[{"euler":{"heading":232.8125,"pitch":155.625,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":63.0625,"pitch":102.0625,"roll":20.1875},"location":"Left Ankle"},{"euler":{"heading":41.375,"pitch":16.8125,"roll":35.6875},"location":"Right Ankle"},{"euler":{"heading":40.875,"pitch":-153.4375,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":367.75,"pitch":133.125,"roll":-27.8125},"location":"Right Knee"},{"euler":{"heading":31.5625,"pitch":-119.9375,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:56.167"} +{"sensors":[{"euler":{"heading":240.5625,"pitch":164.125,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":51.5,"pitch":96.375,"roll":9.1875},"location":"Left Ankle"},{"euler":{"heading":34.625,"pitch":12.8125,"roll":36.5625},"location":"Right Ankle"},{"euler":{"heading":41.3125,"pitch":-156.75,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":357.25,"pitch":130.9375,"roll":-23.6875},"location":"Right Knee"},{"euler":{"heading":35.6875,"pitch":-123.125,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:56.267"} +{"sensors":[{"euler":{"heading":240.3125,"pitch":155.875,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":62.375,"pitch":103.0,"roll":16.8125},"location":"Left Ankle"},{"euler":{"heading":26.25,"pitch":5.3125,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":41.1875,"pitch":-163.0625,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":2.0,"pitch":130.375,"roll":-17.875},"location":"Right Knee"},{"euler":{"heading":41.4375,"pitch":-125.25,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:56.368"} +{"sensors":[{"euler":{"heading":307.9375,"pitch":148.0,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":77.0625,"pitch":106.625,"roll":27.25},"location":"Left Ankle"},{"euler":{"heading":12.0625,"pitch":-9.8125,"roll":33.9375},"location":"Right Ankle"},{"euler":{"heading":50.375,"pitch":-153.625,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":13.375,"pitch":131.875,"roll":-9.25},"location":"Right Knee"},{"euler":{"heading":41.5625,"pitch":-128.6875,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:56.469"} +{"sensors":[{"euler":{"heading":319.0,"pitch":140.375,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":97.375,"pitch":110.875,"roll":37.875},"location":"Left Ankle"},{"euler":{"heading":12.125,"pitch":-13.75,"roll":35.5625},"location":"Right Ankle"},{"euler":{"heading":57.0625,"pitch":-142.875,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":14.5,"pitch":135.1875,"roll":-8.5625},"location":"Right Knee"},{"euler":{"heading":48.5625,"pitch":-134.375,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:56.570"} +{"sensors":[{"euler":{"heading":321.625,"pitch":137.75,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":94.8125,"pitch":110.5,"roll":38.8125},"location":"Left Ankle"},{"euler":{"heading":32.25,"pitch":-1.6875,"roll":39.9375},"location":"Right Ankle"},{"euler":{"heading":61.0625,"pitch":-140.375,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":234.9375,"pitch":142.8125,"roll":-19.375},"location":"Right Knee"},{"euler":{"heading":50.6875,"pitch":-140.625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:56.670"} +{"sensors":[{"euler":{"heading":325.375,"pitch":135.6875,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":95.3125,"pitch":110.4375,"roll":40.9375},"location":"Left Ankle"},{"euler":{"heading":54.5,"pitch":19.5,"roll":36.375},"location":"Right Ankle"},{"euler":{"heading":57.0,"pitch":-143.4375,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":254.9375,"pitch":151.9375,"roll":-31.5},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-146.875,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:56.771"} +{"sensors":[{"euler":{"heading":332.25,"pitch":132.3125,"roll":27.75},"location":"Left Knee"},{"euler":{"heading":101.375,"pitch":112.75,"roll":45.4375},"location":"Left Ankle"},{"euler":{"heading":66.6875,"pitch":27.9375,"roll":34.0625},"location":"Right Ankle"},{"euler":{"heading":46.375,"pitch":-146.5625,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":267.5,"pitch":158.0,"roll":-37.4375},"location":"Right Knee"},{"euler":{"heading":53.0625,"pitch":-150.9375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:56.872"} +{"sensors":[{"euler":{"heading":339.875,"pitch":129.75,"roll":22.4375},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":117.0,"roll":51.3125},"location":"Left Ankle"},{"euler":{"heading":65.125,"pitch":29.6875,"roll":32.625},"location":"Right Ankle"},{"euler":{"heading":41.125,"pitch":-148.125,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":268.5625,"pitch":153.5625,"roll":-37.6875},"location":"Right Knee"},{"euler":{"heading":56.875,"pitch":-157.3125,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:56.972"} +{"sensors":[{"euler":{"heading":350.625,"pitch":129.75,"roll":12.875},"location":"Left Knee"},{"euler":{"heading":112.25,"pitch":128.8125,"roll":60.3125},"location":"Left Ankle"},{"euler":{"heading":56.1875,"pitch":23.8125,"roll":34.375},"location":"Right Ankle"},{"euler":{"heading":41.8125,"pitch":-149.125,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":339.375,"pitch":145.625,"roll":-35.5625},"location":"Right Knee"},{"euler":{"heading":55.25,"pitch":-153.625,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:57.73"} +{"sensors":[{"euler":{"heading":10.9375,"pitch":124.1875,"roll":5.0625},"location":"Left Knee"},{"euler":{"heading":128.5625,"pitch":152.5,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":52.3125,"pitch":21.375,"roll":34.3125},"location":"Right Ankle"},{"euler":{"heading":36.6875,"pitch":-152.1875,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":342.1875,"pitch":139.9375,"roll":-35.0625},"location":"Right Knee"},{"euler":{"heading":41.1875,"pitch":-130.375,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:57.174"} +{"sensors":[{"euler":{"heading":3.9375,"pitch":133.1875,"roll":9.125},"location":"Left Knee"},{"euler":{"heading":117.5,"pitch":126.625,"roll":61.3125},"location":"Left Ankle"},{"euler":{"heading":49.875,"pitch":23.4375,"roll":31.375},"location":"Right Ankle"},{"euler":{"heading":39.5,"pitch":-150.5,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":347.75,"pitch":135.25,"roll":-33.75},"location":"Right Knee"},{"euler":{"heading":34.0,"pitch":-121.9375,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:57.275"} +{"sensors":[{"euler":{"heading":223.875,"pitch":144.9375,"roll":25.5},"location":"Left Knee"},{"euler":{"heading":88.0625,"pitch":105.8125,"roll":39.8125},"location":"Left Ankle"},{"euler":{"heading":46.3125,"pitch":23.9375,"roll":32.0625},"location":"Right Ankle"},{"euler":{"heading":41.4375,"pitch":-148.875,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":353.375,"pitch":132.3125,"roll":-31.125},"location":"Right Knee"},{"euler":{"heading":32.125,"pitch":-119.125,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:57.376"} +{"sensors":[{"euler":{"heading":238.3125,"pitch":159.6875,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":57.4375,"pitch":99.625,"roll":14.0625},"location":"Left Ankle"},{"euler":{"heading":40.5,"pitch":20.9375,"roll":33.25},"location":"Right Ankle"},{"euler":{"heading":44.3125,"pitch":-148.5625,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":357.0,"pitch":129.625,"roll":-27.8125},"location":"Right Knee"},{"euler":{"heading":34.6875,"pitch":-122.1875,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:57.479"} +{"sensors":[{"euler":{"heading":242.5,"pitch":161.6875,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":54.75,"pitch":100.0625,"roll":10.375},"location":"Left Ankle"},{"euler":{"heading":33.5,"pitch":14.6875,"roll":33.875},"location":"Right Ankle"},{"euler":{"heading":45.375,"pitch":-152.3125,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":0.1875,"pitch":129.0,"roll":-23.0},"location":"Right Knee"},{"euler":{"heading":41.0,"pitch":-125.5,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:57.580"} +{"sensors":[{"euler":{"heading":301.625,"pitch":152.8125,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":71.5,"pitch":104.25,"roll":19.25},"location":"Left Ankle"},{"euler":{"heading":25.125,"pitch":0.625,"roll":34.25},"location":"Right Ankle"},{"euler":{"heading":47.875,"pitch":-157.25,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":132.0,"roll":-16.375},"location":"Right Knee"},{"euler":{"heading":43.75,"pitch":-128.5625,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:57.681"} +{"sensors":[{"euler":{"heading":309.125,"pitch":146.625,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":80.9375,"pitch":106.625,"roll":29.3125},"location":"Left Ankle"},{"euler":{"heading":10.6875,"pitch":-10.3125,"roll":33.8125},"location":"Right Ankle"},{"euler":{"heading":57.3125,"pitch":-147.0625,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":14.625,"pitch":130.5625,"roll":-8.9375},"location":"Right Knee"},{"euler":{"heading":46.0625,"pitch":-132.5625,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:57.781"} +{"sensors":[{"euler":{"heading":315.875,"pitch":141.75,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":89.3125,"pitch":108.75,"roll":34.4375},"location":"Left Ankle"},{"euler":{"heading":15.9375,"pitch":-9.375,"roll":37.75},"location":"Right Ankle"},{"euler":{"heading":62.6875,"pitch":-138.75,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":13.0625,"pitch":136.625,"roll":-10.9375},"location":"Right Knee"},{"euler":{"heading":49.4375,"pitch":-138.5625,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:57.883"} +{"sensors":[{"euler":{"heading":320.75,"pitch":138.125,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":88.875,"pitch":108.3125,"roll":36.125},"location":"Left Ankle"},{"euler":{"heading":36.6875,"pitch":5.0,"roll":40.5625},"location":"Right Ankle"},{"euler":{"heading":63.0,"pitch":-139.0625,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":242.1875,"pitch":145.0625,"roll":-22.8125},"location":"Right Knee"},{"euler":{"heading":51.375,"pitch":-143.625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:57.985"} +{"sensors":[{"euler":{"heading":327.625,"pitch":134.1875,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":94.25,"pitch":110.375,"roll":40.125},"location":"Left Ankle"},{"euler":{"heading":59.1875,"pitch":25.3125,"roll":33.125},"location":"Right Ankle"},{"euler":{"heading":58.75,"pitch":-142.4375,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":260.5,"pitch":154.5625,"roll":-33.0625},"location":"Right Knee"},{"euler":{"heading":54.875,"pitch":-149.3125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:58.86"} +{"sensors":[{"euler":{"heading":333.6875,"pitch":131.3125,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":101.1875,"pitch":113.625,"roll":45.5},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":29.125,"roll":31.625},"location":"Right Ankle"},{"euler":{"heading":47.625,"pitch":-147.0625,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":269.5625,"pitch":160.625,"roll":-39.0625},"location":"Right Knee"},{"euler":{"heading":54.625,"pitch":-152.375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:58.186"} +{"sensors":[{"euler":{"heading":341.3125,"pitch":129.9375,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":108.625,"pitch":120.625,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":63.9375,"pitch":28.4375,"roll":33.5},"location":"Right Ankle"},{"euler":{"heading":41.3125,"pitch":-149.875,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":329.5625,"pitch":152.25,"roll":-37.9375},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-155.0,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:58.287"} +{"sensors":[{"euler":{"heading":356.4375,"pitch":127.8125,"roll":9.5625},"location":"Left Knee"},{"euler":{"heading":114.875,"pitch":140.3125,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":55.1875,"pitch":25.0625,"roll":35.0},"location":"Right Ankle"},{"euler":{"heading":42.125,"pitch":-149.375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":340.5,"pitch":144.125,"roll":-36.1875},"location":"Right Knee"},{"euler":{"heading":46.6875,"pitch":-140.625,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:58.388"} +{"sensors":[{"euler":{"heading":11.0625,"pitch":126.875,"roll":4.5625},"location":"Left Knee"},{"euler":{"heading":122.375,"pitch":150.0,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":51.4375,"pitch":23.125,"roll":34.875},"location":"Right Ankle"},{"euler":{"heading":38.8125,"pitch":-150.9375,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":345.0,"pitch":137.75,"roll":-35.375},"location":"Right Knee"},{"euler":{"heading":33.5625,"pitch":-121.125,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:58.489"} +{"sensors":[{"euler":{"heading":212.5,"pitch":137.0625,"roll":13.125},"location":"Left Knee"},{"euler":{"heading":105.9375,"pitch":117.125,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":47.0625,"pitch":21.3125,"roll":34.1875},"location":"Right Ankle"},{"euler":{"heading":42.3125,"pitch":-148.6875,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":347.75,"pitch":134.75,"roll":-33.75},"location":"Right Knee"},{"euler":{"heading":30.0,"pitch":-119.375,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:58.590"} +{"sensors":[{"euler":{"heading":228.75,"pitch":149.875,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":76.6875,"pitch":101.875,"roll":31.375},"location":"Left Ankle"},{"euler":{"heading":43.0,"pitch":19.0625,"roll":34.8125},"location":"Right Ankle"},{"euler":{"heading":45.375,"pitch":-148.125,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":350.5,"pitch":133.4375,"roll":-30.9375},"location":"Right Knee"},{"euler":{"heading":30.1875,"pitch":-120.125,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:58.690"} +{"sensors":[{"euler":{"heading":242.25,"pitch":158.375,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":55.25,"pitch":100.375,"roll":11.625},"location":"Left Ankle"},{"euler":{"heading":36.625,"pitch":15.4375,"roll":35.125},"location":"Right Ankle"},{"euler":{"heading":47.8125,"pitch":-148.625,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":354.625,"pitch":131.0625,"roll":-27.3125},"location":"Right Knee"},{"euler":{"heading":36.3125,"pitch":-123.6875,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:58.791"} +{"sensors":[{"euler":{"heading":243.75,"pitch":154.125,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":59.9375,"pitch":104.875,"roll":13.8125},"location":"Left Ankle"},{"euler":{"heading":28.75,"pitch":7.9375,"roll":34.5},"location":"Right Ankle"},{"euler":{"heading":48.0625,"pitch":-154.125,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":357.3125,"pitch":130.5625,"roll":-22.6875},"location":"Right Knee"},{"euler":{"heading":42.6875,"pitch":-127.0,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:58.892"} +{"sensors":[{"euler":{"heading":317.375,"pitch":146.125,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":72.375,"pitch":107.6875,"roll":21.75},"location":"Left Ankle"},{"euler":{"heading":20.5,"pitch":-6.8125,"roll":35.0},"location":"Right Ankle"},{"euler":{"heading":52.125,"pitch":-153.75,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":359.8125,"pitch":133.0,"roll":-15.6875},"location":"Right Knee"},{"euler":{"heading":44.6875,"pitch":-128.5625,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:58.993"} +{"sensors":[{"euler":{"heading":324.375,"pitch":139.875,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":86.8125,"pitch":111.0,"roll":31.125},"location":"Left Ankle"},{"euler":{"heading":10.0,"pitch":-18.5625,"roll":32.125},"location":"Right Ankle"},{"euler":{"heading":62.0,"pitch":-143.1875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":9.125,"pitch":132.8125,"roll":-9.8125},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-134.25,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:59.93"} +{"sensors":[{"euler":{"heading":328.125,"pitch":135.1875,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":98.125,"pitch":112.75,"roll":37.625},"location":"Left Ankle"},{"euler":{"heading":23.5625,"pitch":-9.625,"roll":36.9375},"location":"Right Ankle"},{"euler":{"heading":66.8125,"pitch":-137.375,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":227.0625,"pitch":139.875,"roll":-16.375},"location":"Right Knee"},{"euler":{"heading":53.1875,"pitch":-142.125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:59.194"} +{"sensors":[{"euler":{"heading":333.125,"pitch":131.125,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":98.75,"pitch":114.0,"roll":39.5},"location":"Left Ankle"},{"euler":{"heading":46.25,"pitch":10.75,"roll":38.3125},"location":"Right Ankle"},{"euler":{"heading":63.0,"pitch":-139.5625,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":246.0625,"pitch":147.75,"roll":-28.375},"location":"Right Knee"},{"euler":{"heading":54.1875,"pitch":-147.0,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:59.296"} +{"sensors":[{"euler":{"heading":338.9375,"pitch":128.75,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":102.625,"pitch":116.4375,"roll":43.0},"location":"Left Ankle"},{"euler":{"heading":65.625,"pitch":28.0625,"roll":31.3125},"location":"Right Ankle"},{"euler":{"heading":56.0,"pitch":-143.125,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":263.1875,"pitch":156.1875,"roll":-34.875},"location":"Right Knee"},{"euler":{"heading":53.8125,"pitch":-151.0625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:59.397"} +{"sensors":[{"euler":{"heading":344.875,"pitch":126.8125,"roll":22.1875},"location":"Left Knee"},{"euler":{"heading":110.625,"pitch":121.375,"roll":49.6875},"location":"Left Ankle"},{"euler":{"heading":67.9375,"pitch":30.875,"roll":32.75},"location":"Right Ankle"},{"euler":{"heading":44.5,"pitch":-148.25,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":268.1875,"pitch":156.4375,"roll":-37.125},"location":"Right Knee"},{"euler":{"heading":54.8125,"pitch":-154.1875,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:59.498"} +{"sensors":[{"euler":{"heading":354.3125,"pitch":129.0,"roll":12.125},"location":"Left Knee"},{"euler":{"heading":110.3125,"pitch":127.5,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":56.5625,"pitch":26.625,"roll":34.9375},"location":"Right Ankle"},{"euler":{"heading":42.1875,"pitch":-149.0,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":334.875,"pitch":148.0625,"roll":-36.1875},"location":"Right Knee"},{"euler":{"heading":52.75,"pitch":-153.375,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:59.598"} +{"sensors":[{"euler":{"heading":15.3125,"pitch":123.875,"roll":3.375},"location":"Left Knee"},{"euler":{"heading":127.3125,"pitch":153.1875,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":51.1875,"pitch":23.625,"roll":35.6875},"location":"Right Ankle"},{"euler":{"heading":40.0,"pitch":-150.25,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":339.875,"pitch":141.75,"roll":-35.5},"location":"Right Knee"},{"euler":{"heading":41.1875,"pitch":-132.75,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:59.699"} +{"sensors":[{"euler":{"heading":12.625,"pitch":131.0,"roll":5.75},"location":"Left Knee"},{"euler":{"heading":118.75,"pitch":132.25,"roll":62.0},"location":"Left Ankle"},{"euler":{"heading":50.3125,"pitch":21.0625,"roll":33.125},"location":"Right Ankle"},{"euler":{"heading":41.5,"pitch":-151.5625,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":339.75,"pitch":138.25,"roll":-35.0},"location":"Right Knee"},{"euler":{"heading":32.875,"pitch":-124.1875,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:59.800"} +{"sensors":[{"euler":{"heading":220.875,"pitch":141.3125,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":94.6875,"pitch":115.3125,"roll":44.0},"location":"Left Ankle"},{"euler":{"heading":49.9375,"pitch":19.625,"roll":31.5},"location":"Right Ankle"},{"euler":{"heading":44.6875,"pitch":-151.9375,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":341.0625,"pitch":137.4375,"roll":-32.375},"location":"Right Knee"},{"euler":{"heading":30.0,"pitch":-120.6875,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:16:59.901"} +{"sensors":[{"euler":{"heading":234.875,"pitch":153.875,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":63.75,"pitch":104.25,"roll":19.5625},"location":"Left Ankle"},{"euler":{"heading":45.0,"pitch":17.0,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":47.625,"pitch":-150.5625,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":345.8125,"pitch":135.0625,"roll":-29.3125},"location":"Right Knee"},{"euler":{"heading":31.75,"pitch":-121.0625,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:00.2"} +{"sensors":[{"euler":{"heading":244.125,"pitch":161.375,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":51.5625,"pitch":99.4375,"roll":6.75},"location":"Left Ankle"},{"euler":{"heading":37.875,"pitch":12.625,"roll":33.625},"location":"Right Ankle"},{"euler":{"heading":49.0,"pitch":-153.1875,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":350.875,"pitch":133.3125,"roll":-25.125},"location":"Right Knee"},{"euler":{"heading":38.3125,"pitch":-124.875,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:00.102"} +{"sensors":[{"euler":{"heading":301.6875,"pitch":153.375,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":60.4375,"pitch":103.5625,"roll":14.0},"location":"Left Ankle"},{"euler":{"heading":28.5,"pitch":4.3125,"roll":33.5},"location":"Right Ankle"},{"euler":{"heading":50.1875,"pitch":-159.625,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":353.5,"pitch":133.375,"roll":-20.125},"location":"Right Knee"},{"euler":{"heading":45.4375,"pitch":-127.5,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:00.203"} +{"sensors":[{"euler":{"heading":314.25,"pitch":145.5,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":73.6875,"pitch":106.125,"roll":22.625},"location":"Left Ankle"},{"euler":{"heading":14.8125,"pitch":-9.0,"roll":32.1875},"location":"Right Ankle"},{"euler":{"heading":60.25,"pitch":-148.4375,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":6.25,"pitch":133.9375,"roll":-11.125},"location":"Right Knee"},{"euler":{"heading":46.5,"pitch":-130.125,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:00.304"} +{"sensors":[{"euler":{"heading":319.0,"pitch":140.6875,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":87.3125,"pitch":108.125,"roll":32.9375},"location":"Left Ankle"},{"euler":{"heading":12.1875,"pitch":-14.8125,"roll":34.0625},"location":"Right Ankle"},{"euler":{"heading":69.25,"pitch":-139.25,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":217.5,"pitch":137.0,"roll":-9.375},"location":"Right Knee"},{"euler":{"heading":49.3125,"pitch":-136.6875,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:00.405"} +{"sensors":[{"euler":{"heading":321.6875,"pitch":137.75,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":89.5,"pitch":107.0,"roll":34.4375},"location":"Left Ankle"},{"euler":{"heading":30.875,"pitch":-2.25,"roll":38.8125},"location":"Right Ankle"},{"euler":{"heading":70.125,"pitch":-136.5,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":233.8125,"pitch":143.1875,"roll":-19.6875},"location":"Right Knee"},{"euler":{"heading":51.1875,"pitch":-141.75,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:00.506"} +{"sensors":[{"euler":{"heading":326.5625,"pitch":134.375,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":85.625,"pitch":107.1875,"roll":34.0},"location":"Left Ankle"},{"euler":{"heading":52.9375,"pitch":15.625,"roll":36.6875},"location":"Right Ankle"},{"euler":{"heading":66.0625,"pitch":-139.25,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":251.75,"pitch":152.5625,"roll":-30.9375},"location":"Right Knee"},{"euler":{"heading":52.5,"pitch":-146.625,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:00.607"} +{"sensors":[{"euler":{"heading":333.625,"pitch":130.8125,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":93.125,"pitch":110.375,"roll":38.8125},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":26.6875,"roll":30.0625},"location":"Right Ankle"},{"euler":{"heading":57.875,"pitch":-141.4375,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":264.6875,"pitch":159.875,"roll":-35.75},"location":"Right Knee"},{"euler":{"heading":53.1875,"pitch":-149.375,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:00.708"} +{"sensors":[{"euler":{"heading":340.6875,"pitch":127.875,"roll":22.9375},"location":"Left Knee"},{"euler":{"heading":104.9375,"pitch":115.375,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":67.9375,"pitch":29.125,"roll":32.4375},"location":"Right Ankle"},{"euler":{"heading":47.5,"pitch":-145.875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":268.9375,"pitch":157.125,"roll":-37.25},"location":"Right Knee"},{"euler":{"heading":53.8125,"pitch":-152.25,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:00.809"} +{"sensors":[{"euler":{"heading":351.75,"pitch":128.1875,"roll":12.875},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":121.875,"roll":53.6875},"location":"Left Ankle"},{"euler":{"heading":57.1875,"pitch":24.8125,"roll":34.75},"location":"Right Ankle"},{"euler":{"heading":45.0625,"pitch":-148.0625,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":334.6875,"pitch":148.5,"roll":-35.9375},"location":"Right Knee"},{"euler":{"heading":52.0625,"pitch":-149.75,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:00.910"} +{"sensors":[{"euler":{"heading":11.25,"pitch":124.4375,"roll":4.3125},"location":"Left Knee"},{"euler":{"heading":127.1875,"pitch":150.6875,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":52.6875,"pitch":23.0625,"roll":34.875},"location":"Right Ankle"},{"euler":{"heading":39.25,"pitch":-150.0625,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":341.5,"pitch":141.125,"roll":-35.3125},"location":"Right Knee"},{"euler":{"heading":38.875,"pitch":-129.375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:01.10"} +{"sensors":[{"euler":{"heading":8.0,"pitch":130.9375,"roll":6.6875},"location":"Left Knee"},{"euler":{"heading":115.9375,"pitch":125.0,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":49.125,"pitch":21.3125,"roll":33.6875},"location":"Right Ankle"},{"euler":{"heading":42.1875,"pitch":-149.5625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":344.6875,"pitch":136.5,"roll":-34.0},"location":"Right Knee"},{"euler":{"heading":31.25,"pitch":-121.0,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:01.112"} +{"sensors":[{"euler":{"heading":221.0,"pitch":141.875,"roll":22.25},"location":"Left Knee"},{"euler":{"heading":88.875,"pitch":107.875,"roll":42.1875},"location":"Left Ankle"},{"euler":{"heading":45.375,"pitch":20.625,"roll":33.375},"location":"Right Ankle"},{"euler":{"heading":44.4375,"pitch":-147.0625,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":349.125,"pitch":133.5,"roll":-31.4375},"location":"Right Knee"},{"euler":{"heading":29.875,"pitch":-119.375,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:01.212"} +{"sensors":[{"euler":{"heading":236.3125,"pitch":154.25,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":61.5625,"pitch":102.1875,"roll":18.5},"location":"Left Ankle"},{"euler":{"heading":39.75,"pitch":18.1875,"roll":34.0},"location":"Right Ankle"},{"euler":{"heading":47.1875,"pitch":-147.25,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":352.5625,"pitch":131.25,"roll":-28.625},"location":"Right Knee"},{"euler":{"heading":32.9375,"pitch":-121.3125,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:01.313"} +{"sensors":[{"euler":{"heading":243.125,"pitch":159.5,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":52.5625,"pitch":99.8125,"roll":9.1875},"location":"Left Ankle"},{"euler":{"heading":31.4375,"pitch":12.3125,"roll":32.4375},"location":"Right Ankle"},{"euler":{"heading":50.3125,"pitch":-149.3125,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":355.375,"pitch":130.3125,"roll":-24.125},"location":"Right Knee"},{"euler":{"heading":39.75,"pitch":-125.875,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:01.414"} +{"sensors":[{"euler":{"heading":308.625,"pitch":150.875,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":63.5625,"pitch":105.1875,"roll":16.5625},"location":"Left Ankle"},{"euler":{"heading":21.375,"pitch":-0.375,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":53.1875,"pitch":-152.125,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":358.6875,"pitch":131.5,"roll":-17.5},"location":"Right Knee"},{"euler":{"heading":44.125,"pitch":-129.375,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:01.515"} +{"sensors":[{"euler":{"heading":319.0,"pitch":143.125,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":78.6875,"pitch":109.4375,"roll":26.5},"location":"Left Ankle"},{"euler":{"heading":9.5,"pitch":-10.9375,"roll":31.625},"location":"Right Ankle"},{"euler":{"heading":62.875,"pitch":-144.375,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":11.5625,"pitch":133.625,"roll":-9.1875},"location":"Right Knee"},{"euler":{"heading":46.0,"pitch":-131.6875,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:01.616"} +{"sensors":[{"euler":{"heading":328.75,"pitch":136.25,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":99.0,"pitch":114.1875,"roll":37.4375},"location":"Left Ankle"},{"euler":{"heading":31.875,"pitch":-9.25,"roll":36.0},"location":"Right Ankle"},{"euler":{"heading":68.375,"pitch":-136.5625,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":223.4375,"pitch":138.1875,"roll":-12.6875},"location":"Right Knee"},{"euler":{"heading":51.875,"pitch":-138.75,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:01.717"} +{"sensors":[{"euler":{"heading":333.5625,"pitch":131.9375,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":114.5,"roll":37.375},"location":"Left Ankle"},{"euler":{"heading":38.5625,"pitch":5.0,"roll":38.125},"location":"Right Ankle"},{"euler":{"heading":68.9375,"pitch":-135.1875,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":238.9375,"pitch":145.5,"roll":-23.0625},"location":"Right Knee"},{"euler":{"heading":54.75,"pitch":-144.6875,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:01.818"} +{"sensors":[{"euler":{"heading":338.4375,"pitch":128.9375,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":99.25,"pitch":115.5625,"roll":40.125},"location":"Left Ankle"},{"euler":{"heading":58.8125,"pitch":20.875,"roll":37.75},"location":"Right Ankle"},{"euler":{"heading":62.8125,"pitch":-141.3125,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":257.8125,"pitch":155.1875,"roll":-33.6875},"location":"Right Knee"},{"euler":{"heading":55.75,"pitch":-149.3125,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:01.918"} +{"sensors":[{"euler":{"heading":344.9375,"pitch":125.875,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":105.375,"pitch":120.1875,"roll":44.75},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":26.625,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":50.4375,"pitch":-147.1875,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":266.9375,"pitch":162.0625,"roll":-37.5},"location":"Right Knee"},{"euler":{"heading":56.3125,"pitch":-152.25,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:02.19"} +{"sensors":[{"euler":{"heading":352.75,"pitch":124.3125,"roll":18.5625},"location":"Left Knee"},{"euler":{"heading":117.3125,"pitch":125.5,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":61.1875,"pitch":26.125,"roll":34.5625},"location":"Right Ankle"},{"euler":{"heading":45.5,"pitch":-149.75,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":265.125,"pitch":153.8125,"roll":-36.3125},"location":"Right Knee"},{"euler":{"heading":59.375,"pitch":-155.625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:02.120"} +{"sensors":[{"euler":{"heading":8.4375,"pitch":126.0,"roll":6.5625},"location":"Left Knee"},{"euler":{"heading":114.625,"pitch":138.125,"roll":57.9375},"location":"Left Ankle"},{"euler":{"heading":53.3125,"pitch":21.8125,"roll":35.4375},"location":"Right Ankle"},{"euler":{"heading":44.4375,"pitch":-150.3125,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":336.1875,"pitch":146.375,"roll":-35.1875},"location":"Right Knee"},{"euler":{"heading":43.0625,"pitch":-140.875,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:02.220"} +{"sensors":[{"euler":{"heading":16.25,"pitch":126.5,"roll":3.0625},"location":"Left Knee"},{"euler":{"heading":118.4375,"pitch":144.75,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":50.875,"pitch":21.4375,"roll":34.0625},"location":"Right Ankle"},{"euler":{"heading":42.125,"pitch":-150.875,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":341.9375,"pitch":140.375,"roll":-34.125},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-123.875,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:02.321"} +{"sensors":[{"euler":{"heading":358.125,"pitch":134.75,"roll":13.25},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":113.625,"roll":52.1875},"location":"Left Ankle"},{"euler":{"heading":46.9375,"pitch":20.5625,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":42.6875,"pitch":-150.375,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":345.5,"pitch":135.625,"roll":-33.1875},"location":"Right Knee"},{"euler":{"heading":28.5,"pitch":-120.375,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:02.423"} +{"sensors":[{"euler":{"heading":229.25,"pitch":148.9375,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":70.3125,"pitch":103.5,"roll":26.1875},"location":"Left Ankle"},{"euler":{"heading":43.4375,"pitch":20.6875,"roll":34.125},"location":"Right Ankle"},{"euler":{"heading":44.1875,"pitch":-150.25,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":350.6875,"pitch":132.5,"roll":-30.5625},"location":"Right Knee"},{"euler":{"heading":28.3125,"pitch":-120.0625,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:02.524"} +{"sensors":[{"euler":{"heading":240.4375,"pitch":158.375,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":53.5625,"pitch":99.5625,"roll":9.9375},"location":"Left Ankle"},{"euler":{"heading":37.25,"pitch":16.875,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":46.125,"pitch":-151.9375,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":355.375,"pitch":130.3125,"roll":-26.5625},"location":"Right Knee"},{"euler":{"heading":33.6875,"pitch":-122.875,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:02.626"} +{"sensors":[{"euler":{"heading":243.5,"pitch":153.375,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":58.8125,"pitch":103.875,"roll":12.6875},"location":"Left Ankle"},{"euler":{"heading":29.0,"pitch":7.875,"roll":33.5},"location":"Right Ankle"},{"euler":{"heading":47.25,"pitch":-158.3125,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":358.0,"pitch":130.3125,"roll":-21.4375},"location":"Right Knee"},{"euler":{"heading":41.625,"pitch":-127.8125,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:02.727"} +{"sensors":[{"euler":{"heading":314.625,"pitch":145.75,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":72.875,"pitch":107.125,"roll":21.9375},"location":"Left Ankle"},{"euler":{"heading":17.4375,"pitch":-9.0,"roll":34.4375},"location":"Right Ankle"},{"euler":{"heading":55.5,"pitch":-151.5,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":0.5,"pitch":133.75,"roll":-14.1875},"location":"Right Knee"},{"euler":{"heading":41.375,"pitch":-129.25,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:02.828"} +{"sensors":[{"euler":{"heading":323.375,"pitch":139.0,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":85.25,"pitch":110.25,"roll":31.375},"location":"Left Ankle"},{"euler":{"heading":11.3125,"pitch":-16.9375,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":66.875,"pitch":-139.9375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":214.125,"pitch":137.0,"roll":-9.0625},"location":"Right Knee"},{"euler":{"heading":47.4375,"pitch":-135.3125,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:02.929"} +{"sensors":[{"euler":{"heading":327.25,"pitch":135.4375,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":92.375,"pitch":110.9375,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":26.0,"pitch":-5.75,"roll":37.1875},"location":"Right Ankle"},{"euler":{"heading":71.75,"pitch":-136.5,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":227.6875,"pitch":142.0,"roll":-17.375},"location":"Right Knee"},{"euler":{"heading":50.4375,"pitch":-141.3125,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:03.30"} +{"sensors":[{"euler":{"heading":333.0,"pitch":131.5625,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":95.625,"pitch":111.6875,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":48.5625,"pitch":13.25,"roll":37.375},"location":"Right Ankle"},{"euler":{"heading":68.875,"pitch":-139.3125,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":246.875,"pitch":150.75,"roll":-28.125},"location":"Right Knee"},{"euler":{"heading":53.4375,"pitch":-146.3125,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:03.131"} +{"sensors":[{"euler":{"heading":338.8125,"pitch":128.5,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":100.6875,"pitch":113.6875,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":68.5625,"pitch":26.0,"roll":30.375},"location":"Right Ankle"},{"euler":{"heading":62.0625,"pitch":-142.625,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":261.0625,"pitch":160.5625,"roll":-35.375},"location":"Right Knee"},{"euler":{"heading":54.75,"pitch":-151.125,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:03.232"} +{"sensors":[{"euler":{"heading":344.25,"pitch":126.25,"roll":22.8125},"location":"Left Knee"},{"euler":{"heading":109.4375,"pitch":118.3125,"roll":49.6875},"location":"Left Ankle"},{"euler":{"heading":68.875,"pitch":27.6875,"roll":32.9375},"location":"Right Ankle"},{"euler":{"heading":50.4375,"pitch":-147.0625,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":266.5,"pitch":160.25,"roll":-37.0625},"location":"Right Knee"},{"euler":{"heading":54.8125,"pitch":-154.125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:03.333"} +{"sensors":[{"euler":{"heading":352.5625,"pitch":124.375,"roll":15.75},"location":"Left Knee"},{"euler":{"heading":114.625,"pitch":126.375,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":59.4375,"pitch":26.5,"roll":35.125},"location":"Right Ankle"},{"euler":{"heading":45.125,"pitch":-149.5,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":331.3125,"pitch":150.6875,"roll":-35.9375},"location":"Right Knee"},{"euler":{"heading":57.625,"pitch":-155.125,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:03.434"} +{"sensors":[{"euler":{"heading":9.125,"pitch":124.75,"roll":4.4375},"location":"Left Knee"},{"euler":{"heading":129.1875,"pitch":150.6875,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":52.125,"pitch":25.625,"roll":35.375},"location":"Right Ankle"},{"euler":{"heading":41.75,"pitch":-150.5,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":341.5625,"pitch":142.625,"roll":-34.9375},"location":"Right Knee"},{"euler":{"heading":40.8125,"pitch":-135.875,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:03.535"} +{"sensors":[{"euler":{"heading":16.5,"pitch":126.25,"roll":1.5625},"location":"Left Knee"},{"euler":{"heading":125.3125,"pitch":142.75,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":46.1875,"pitch":24.1875,"roll":34.625},"location":"Right Ankle"},{"euler":{"heading":39.0,"pitch":-151.4375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":348.25,"pitch":136.375,"roll":-33.625},"location":"Right Knee"},{"euler":{"heading":31.0625,"pitch":-120.5,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:03.636"} +{"sensors":[{"euler":{"heading":356.875,"pitch":135.4375,"roll":12.625},"location":"Left Knee"},{"euler":{"heading":104.5,"pitch":113.125,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":43.0625,"pitch":23.8125,"roll":34.5625},"location":"Right Ankle"},{"euler":{"heading":40.75,"pitch":-150.375,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":351.3125,"pitch":132.5625,"roll":-32.0625},"location":"Right Knee"},{"euler":{"heading":26.6875,"pitch":-116.0,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:03.736"} +{"sensors":[{"euler":{"heading":227.9375,"pitch":150.1875,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":70.6875,"pitch":101.625,"roll":25.5},"location":"Left Ankle"},{"euler":{"heading":39.5,"pitch":22.0625,"roll":34.625},"location":"Right Ankle"},{"euler":{"heading":42.3125,"pitch":-151.75,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":354.25,"pitch":130.5,"roll":-29.375},"location":"Right Knee"},{"euler":{"heading":28.875,"pitch":-117.6875,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:03.837"} +{"sensors":[{"euler":{"heading":239.8125,"pitch":158.3125,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":53.3125,"pitch":98.75,"roll":10.1875},"location":"Left Ankle"},{"euler":{"heading":34.0,"pitch":16.4375,"roll":32.75},"location":"Right Ankle"},{"euler":{"heading":43.5,"pitch":-155.6875,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":355.6875,"pitch":129.8125,"roll":-25.6875},"location":"Right Knee"},{"euler":{"heading":36.6875,"pitch":-123.875,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:03.938"} +{"sensors":[{"euler":{"heading":240.375,"pitch":150.8125,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":63.5625,"pitch":103.25,"roll":18.0625},"location":"Left Ankle"},{"euler":{"heading":26.375,"pitch":2.25,"roll":34.25},"location":"Right Ankle"},{"euler":{"heading":46.75,"pitch":-156.375,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":356.9375,"pitch":131.3125,"roll":-19.1875},"location":"Right Knee"},{"euler":{"heading":39.3125,"pitch":-126.6875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:04.38"} +{"sensors":[{"euler":{"heading":314.1875,"pitch":145.4375,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":75.625,"pitch":105.25,"roll":26.1875},"location":"Left Ankle"},{"euler":{"heading":13.0625,"pitch":-10.625,"roll":34.1875},"location":"Right Ankle"},{"euler":{"heading":59.5625,"pitch":-142.3125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":10.5,"pitch":132.625,"roll":-10.3125},"location":"Right Knee"},{"euler":{"heading":40.5625,"pitch":-129.0,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:04.139"} +{"sensors":[{"euler":{"heading":318.875,"pitch":142.0,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":83.3125,"pitch":106.875,"roll":33.375},"location":"Left Ankle"},{"euler":{"heading":16.1875,"pitch":-9.3125,"roll":35.6875},"location":"Right Ankle"},{"euler":{"heading":66.0,"pitch":-137.5,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":221.75,"pitch":137.0625,"roll":-12.0625},"location":"Right Knee"},{"euler":{"heading":45.0625,"pitch":-136.8125,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:04.240"} +{"sensors":[{"euler":{"heading":324.4375,"pitch":138.375,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":85.5625,"pitch":106.375,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":34.625,"pitch":2.0625,"roll":37.9375},"location":"Right Ankle"},{"euler":{"heading":68.4375,"pitch":-138.5625,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":235.5,"pitch":144.375,"roll":-22.6875},"location":"Right Knee"},{"euler":{"heading":50.5625,"pitch":-144.25,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:04.340"} +{"sensors":[{"euler":{"heading":334.0,"pitch":132.375,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":91.5625,"pitch":108.0625,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":56.75,"pitch":18.1875,"roll":35.0},"location":"Right Ankle"},{"euler":{"heading":66.3125,"pitch":-141.25,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":252.75,"pitch":155.9375,"roll":-32.0},"location":"Right Knee"},{"euler":{"heading":56.25,"pitch":-151.0625,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:04.440"} +{"sensors":[{"euler":{"heading":341.0,"pitch":128.9375,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":113.25,"roll":45.5},"location":"Left Ankle"},{"euler":{"heading":69.375,"pitch":24.25,"roll":33.3125},"location":"Right Ankle"},{"euler":{"heading":55.5625,"pitch":-145.125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":264.0,"pitch":163.1875,"roll":-39.0},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-153.625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:04.541"} +{"sensors":[{"euler":{"heading":349.3125,"pitch":127.375,"roll":18.0},"location":"Left Knee"},{"euler":{"heading":106.3125,"pitch":118.5625,"roll":51.75},"location":"Left Ankle"},{"euler":{"heading":66.4375,"pitch":29.6875,"roll":32.25},"location":"Right Ankle"},{"euler":{"heading":46.8125,"pitch":-147.75,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":267.5625,"pitch":157.8125,"roll":-38.6875},"location":"Right Knee"},{"euler":{"heading":57.3125,"pitch":-156.625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:04.642"} +{"sensors":[{"euler":{"heading":1.4375,"pitch":127.8125,"roll":7.875},"location":"Left Knee"},{"euler":{"heading":113.5625,"pitch":134.6875,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":56.125,"pitch":25.875,"roll":33.9375},"location":"Right Ankle"},{"euler":{"heading":44.125,"pitch":-150.0625,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":332.3125,"pitch":148.375,"roll":-37.3125},"location":"Right Knee"},{"euler":{"heading":54.25,"pitch":-152.25,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:04.743"} +{"sensors":[{"euler":{"heading":21.25,"pitch":122.4375,"roll":-0.625},"location":"Left Knee"},{"euler":{"heading":129.875,"pitch":159.125,"roll":65.6875},"location":"Left Ankle"},{"euler":{"heading":49.875,"pitch":25.5625,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":38.75,"pitch":-151.3125,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":340.1875,"pitch":140.875,"roll":-37.0},"location":"Right Knee"},{"euler":{"heading":40.6875,"pitch":-124.5,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:04.844"} +{"sensors":[{"euler":{"heading":15.0,"pitch":131.125,"roll":3.8125},"location":"Left Knee"},{"euler":{"heading":118.0,"pitch":131.625,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":46.1875,"pitch":23.625,"roll":33.0625},"location":"Right Ankle"},{"euler":{"heading":41.6875,"pitch":-149.9375,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":343.3125,"pitch":135.875,"roll":-35.875},"location":"Right Knee"},{"euler":{"heading":30.5625,"pitch":-118.1875,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:04.944"} +{"sensors":[{"euler":{"heading":219.3125,"pitch":143.4375,"roll":20.1875},"location":"Left Knee"},{"euler":{"heading":84.875,"pitch":105.375,"roll":41.0},"location":"Left Ankle"},{"euler":{"heading":43.125,"pitch":22.4375,"roll":33.5625},"location":"Right Ankle"},{"euler":{"heading":42.625,"pitch":-149.9375,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":345.875,"pitch":133.0,"roll":-33.9375},"location":"Right Knee"},{"euler":{"heading":21.875,"pitch":-117.0,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:05.44"} +{"sensors":[{"euler":{"heading":235.125,"pitch":154.875,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":56.8125,"pitch":99.5625,"roll":15.4375},"location":"Left Ankle"},{"euler":{"heading":40.6875,"pitch":19.0,"roll":32.75},"location":"Right Ankle"},{"euler":{"heading":43.625,"pitch":-153.75,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":347.125,"pitch":132.25,"roll":-30.8125},"location":"Right Knee"},{"euler":{"heading":11.9375,"pitch":-124.75,"roll":44.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:05.145"} +{"sensors":[{"euler":{"heading":241.25,"pitch":158.375,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":56.0,"pitch":100.0,"roll":12.0625},"location":"Left Ankle"},{"euler":{"heading":34.875,"pitch":12.8125,"roll":31.8125},"location":"Right Ankle"},{"euler":{"heading":46.0,"pitch":-158.8125,"roll":70.375},"location":"Right Hip"},{"euler":{"heading":347.625,"pitch":131.875,"roll":-26.9375},"location":"Right Knee"},{"euler":{"heading":37.125,"pitch":-127.75,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:05.245"} +{"sensors":[{"euler":{"heading":312.5625,"pitch":149.625,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":70.375,"pitch":106.1875,"roll":20.0625},"location":"Left Ankle"},{"euler":{"heading":25.0,"pitch":0.9375,"roll":32.8125},"location":"Right Ankle"},{"euler":{"heading":48.8125,"pitch":-160.375,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":349.875,"pitch":131.75,"roll":-21.1875},"location":"Right Knee"},{"euler":{"heading":40.875,"pitch":-129.6875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:05.346"} +{"sensors":[{"euler":{"heading":323.8125,"pitch":141.8125,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":79.5625,"pitch":109.3125,"roll":27.1875},"location":"Left Ankle"},{"euler":{"heading":10.5,"pitch":-13.0,"roll":29.4375},"location":"Right Ankle"},{"euler":{"heading":59.6875,"pitch":-147.125,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":2.9375,"pitch":134.5,"roll":-11.8125},"location":"Right Knee"},{"euler":{"heading":46.5,"pitch":-132.625,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:05.447"} +{"sensors":[{"euler":{"heading":331.5625,"pitch":134.5625,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":88.1875,"pitch":110.875,"roll":31.5},"location":"Left Ankle"},{"euler":{"heading":12.75,"pitch":-15.8125,"roll":31.9375},"location":"Right Ankle"},{"euler":{"heading":67.3125,"pitch":-140.125,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":217.75,"pitch":138.875,"roll":-13.0},"location":"Right Knee"},{"euler":{"heading":52.0625,"pitch":-140.125,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:05.548"} +{"sensors":[{"euler":{"heading":336.0,"pitch":130.75,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":93.0625,"pitch":112.4375,"roll":34.5},"location":"Left Ankle"},{"euler":{"heading":34.5625,"pitch":-3.0,"roll":39.125},"location":"Right Ankle"},{"euler":{"heading":66.3125,"pitch":-138.875,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":236.6875,"pitch":146.1875,"roll":-25.4375},"location":"Right Knee"},{"euler":{"heading":53.875,"pitch":-145.125,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:05.648"} +{"sensors":[{"euler":{"heading":342.1875,"pitch":127.75,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":96.875,"pitch":114.0,"roll":37.75},"location":"Left Ankle"},{"euler":{"heading":53.875,"pitch":16.75,"roll":38.0625},"location":"Right Ankle"},{"euler":{"heading":58.125,"pitch":-142.1875,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":254.75,"pitch":154.75,"roll":-31.6875},"location":"Right Knee"},{"euler":{"heading":55.5625,"pitch":-149.8125,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:05.749"} +{"sensors":[{"euler":{"heading":347.875,"pitch":125.4375,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":101.875,"pitch":116.25,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":67.3125,"pitch":26.375,"roll":33.1875},"location":"Right Ankle"},{"euler":{"heading":48.6875,"pitch":-146.8125,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":266.1875,"pitch":162.375,"roll":-36.0},"location":"Right Knee"},{"euler":{"heading":57.6875,"pitch":-154.875,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:05.850"} +{"sensors":[{"euler":{"heading":354.0625,"pitch":124.3125,"roll":17.75},"location":"Left Knee"},{"euler":{"heading":106.6875,"pitch":120.875,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":63.3125,"pitch":27.25,"roll":33.0625},"location":"Right Ankle"},{"euler":{"heading":41.75,"pitch":-151.1875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":265.625,"pitch":155.1875,"roll":-37.6875},"location":"Right Knee"},{"euler":{"heading":61.3125,"pitch":-159.6875,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:05.951"} +{"sensors":[{"euler":{"heading":6.375,"pitch":126.9375,"roll":5.75},"location":"Left Knee"},{"euler":{"heading":113.0,"pitch":135.375,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":55.1875,"pitch":22.875,"roll":34.1875},"location":"Right Ankle"},{"euler":{"heading":42.9375,"pitch":-151.8125,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":331.1875,"pitch":148.0625,"roll":-36.8125},"location":"Right Knee"},{"euler":{"heading":48.0625,"pitch":-143.9375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:06.52"} +{"sensors":[{"euler":{"heading":20.8125,"pitch":123.625,"roll":-0.75},"location":"Left Knee"},{"euler":{"heading":124.125,"pitch":154.375,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":50.4375,"pitch":21.1875,"roll":33.6875},"location":"Right Ankle"},{"euler":{"heading":38.6875,"pitch":-153.625,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":338.6875,"pitch":141.125,"roll":-35.9375},"location":"Right Knee"},{"euler":{"heading":34.5,"pitch":-120.0625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:06.153"} +{"sensors":[{"euler":{"heading":11.5,"pitch":132.4375,"roll":5.8125},"location":"Left Knee"},{"euler":{"heading":111.875,"pitch":122.8125,"roll":61.1875},"location":"Left Ankle"},{"euler":{"heading":46.4375,"pitch":19.8125,"roll":33.5},"location":"Right Ankle"},{"euler":{"heading":40.625,"pitch":-152.875,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":341.3125,"pitch":136.3125,"roll":-34.9375},"location":"Right Knee"},{"euler":{"heading":29.1875,"pitch":-116.3125,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:06.254"} +{"sensors":[{"euler":{"heading":222.9375,"pitch":144.5,"roll":22.625},"location":"Left Knee"},{"euler":{"heading":80.625,"pitch":104.9375,"roll":35.4375},"location":"Left Ankle"},{"euler":{"heading":44.1875,"pitch":18.375,"roll":33.5},"location":"Right Ankle"},{"euler":{"heading":43.0,"pitch":-153.8125,"roll":69.5625},"location":"Right Hip"},{"euler":{"heading":343.375,"pitch":134.5625,"roll":-32.5},"location":"Right Knee"},{"euler":{"heading":29.3125,"pitch":-115.625,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:06.355"} +{"sensors":[{"euler":{"heading":238.125,"pitch":155.875,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":52.4375,"pitch":100.0,"roll":10.625},"location":"Left Ankle"},{"euler":{"heading":39.5,"pitch":14.5625,"roll":33.8125},"location":"Right Ankle"},{"euler":{"heading":44.5,"pitch":-157.0,"roll":70.375},"location":"Right Hip"},{"euler":{"heading":346.0,"pitch":132.875,"roll":-29.125},"location":"Right Knee"},{"euler":{"heading":34.4375,"pitch":-120.25,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:06.455"} +{"sensors":[{"euler":{"heading":241.75,"pitch":155.0,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":56.125,"pitch":103.0625,"roll":11.4375},"location":"Left Ankle"},{"euler":{"heading":31.75,"pitch":8.5625,"roll":34.5625},"location":"Right Ankle"},{"euler":{"heading":45.375,"pitch":-164.0625,"roll":70.6875},"location":"Right Hip"},{"euler":{"heading":348.5,"pitch":132.5,"roll":-23.8125},"location":"Right Knee"},{"euler":{"heading":39.5625,"pitch":-124.4375,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:06.556"} +{"sensors":[{"euler":{"heading":318.0625,"pitch":146.5625,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":70.875,"pitch":106.6875,"roll":21.875},"location":"Left Ankle"},{"euler":{"heading":20.125,"pitch":-6.0625,"roll":34.125},"location":"Right Ankle"},{"euler":{"heading":52.125,"pitch":-158.125,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":354.8125,"pitch":133.25,"roll":-0.5},"location":"Right Knee"},{"euler":{"heading":41.0,"pitch":-125.875,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:06.657"} +{"sensors":[{"euler":{"heading":324.9375,"pitch":140.75,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":108.3125,"roll":26.875},"location":"Left Ankle"},{"euler":{"heading":7.125,"pitch":-16.0625,"roll":31.375},"location":"Right Ankle"},{"euler":{"heading":63.25,"pitch":-141.75,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":7.6875,"pitch":133.5625,"roll":-9.6875},"location":"Right Knee"},{"euler":{"heading":44.9375,"pitch":-130.375,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:06.757"} +{"sensors":[{"euler":{"heading":330.3125,"pitch":135.625,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":84.4375,"pitch":110.0,"roll":30.375},"location":"Left Ankle"},{"euler":{"heading":19.125,"pitch":-8.1875,"roll":36.25},"location":"Right Ankle"},{"euler":{"heading":67.6875,"pitch":-137.6875,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":225.625,"pitch":139.0,"roll":-18.25},"location":"Right Knee"},{"euler":{"heading":48.9375,"pitch":-134.375,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:06.857"} +{"sensors":[{"euler":{"heading":335.6875,"pitch":131.5,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":88.9375,"pitch":110.8125,"roll":33.5},"location":"Left Ankle"},{"euler":{"heading":39.6875,"pitch":3.1875,"roll":42.0},"location":"Right Ankle"},{"euler":{"heading":66.8125,"pitch":-139.0,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":245.875,"pitch":151.0625,"roll":-29.625},"location":"Right Knee"},{"euler":{"heading":52.125,"pitch":-141.3125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:06.958"} +{"sensors":[{"euler":{"heading":342.25,"pitch":128.0625,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":112.6875,"roll":38.25},"location":"Left Ankle"},{"euler":{"heading":61.5625,"pitch":20.25,"roll":36.0},"location":"Right Ankle"},{"euler":{"heading":61.9375,"pitch":-141.875,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":261.625,"pitch":162.25,"roll":-36.5},"location":"Right Knee"},{"euler":{"heading":55.6875,"pitch":-148.5,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:07.64"} +{"sensors":[{"euler":{"heading":348.1875,"pitch":125.875,"roll":22.375},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":116.6875,"roll":43.125},"location":"Left Ankle"},{"euler":{"heading":67.875,"pitch":26.0625,"roll":33.125},"location":"Right Ankle"},{"euler":{"heading":48.3125,"pitch":-147.6875,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":267.25,"pitch":162.0625,"roll":-37.625},"location":"Right Knee"},{"euler":{"heading":55.0,"pitch":-151.125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:07.165"} +{"sensors":[{"euler":{"heading":356.75,"pitch":124.8125,"roll":14.9375},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":123.1875,"roll":50.375},"location":"Left Ankle"},{"euler":{"heading":57.375,"pitch":22.0,"roll":34.8125},"location":"Right Ankle"},{"euler":{"heading":44.375,"pitch":-151.1875,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":320.0,"pitch":153.5625,"roll":-38.9375},"location":"Right Knee"},{"euler":{"heading":56.0625,"pitch":-152.375,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:07.266"} +{"sensors":[{"euler":{"heading":13.8125,"pitch":126.0,"roll":3.3125},"location":"Left Knee"},{"euler":{"heading":123.5625,"pitch":148.9375,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":52.4375,"pitch":21.125,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":40.5625,"pitch":-152.5,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":331.5,"pitch":145.8125,"roll":-37.4375},"location":"Right Knee"},{"euler":{"heading":39.0,"pitch":-131.9375,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:07.367"} +{"sensors":[{"euler":{"heading":19.4375,"pitch":127.9375,"roll":1.0},"location":"Left Knee"},{"euler":{"heading":123.625,"pitch":137.5625,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":47.625,"pitch":18.6875,"roll":32.8125},"location":"Right Ankle"},{"euler":{"heading":41.5,"pitch":-151.75,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":336.875,"pitch":139.375,"roll":-36.5},"location":"Right Knee"},{"euler":{"heading":30.3125,"pitch":-119.875,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:07.468"} +{"sensors":[{"euler":{"heading":359.0625,"pitch":136.0,"roll":12.8125},"location":"Left Knee"},{"euler":{"heading":99.375,"pitch":112.375,"roll":48.25},"location":"Left Ankle"},{"euler":{"heading":45.6875,"pitch":16.4375,"roll":33.5},"location":"Right Ankle"},{"euler":{"heading":43.375,"pitch":-151.4375,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":338.25,"pitch":136.4375,"roll":-35.0},"location":"Right Knee"},{"euler":{"heading":27.75,"pitch":-118.0,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:07.569"} +{"sensors":[{"euler":{"heading":231.1875,"pitch":149.3125,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":66.125,"pitch":105.875,"roll":21.9375},"location":"Left Ankle"},{"euler":{"heading":43.5,"pitch":13.375,"roll":33.8125},"location":"Right Ankle"},{"euler":{"heading":45.875,"pitch":-155.9375,"roll":69.125},"location":"Right Hip"},{"euler":{"heading":337.875,"pitch":136.25,"roll":-32.25},"location":"Right Knee"},{"euler":{"heading":30.9375,"pitch":-119.0,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:07.670"} +{"sensors":[{"euler":{"heading":240.6875,"pitch":156.625,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":53.3125,"pitch":98.875,"roll":10.0625},"location":"Left Ankle"},{"euler":{"heading":37.125,"pitch":9.3125,"roll":32.875},"location":"Right Ankle"},{"euler":{"heading":47.375,"pitch":-160.0625,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":340.4375,"pitch":134.625,"roll":-28.8125},"location":"Right Knee"},{"euler":{"heading":37.8125,"pitch":-123.3125,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:07.771"} +{"sensors":[{"euler":{"heading":312.625,"pitch":149.25,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":65.0625,"pitch":103.9375,"roll":18.5625},"location":"Left Ankle"},{"euler":{"heading":29.6875,"pitch":1.9375,"roll":33.1875},"location":"Right Ankle"},{"euler":{"heading":49.375,"pitch":-164.0,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":343.125,"pitch":133.75,"roll":-23.6875},"location":"Right Knee"},{"euler":{"heading":41.8125,"pitch":-126.4375,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:07.871"} +{"sensors":[{"euler":{"heading":320.5625,"pitch":142.8125,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":75.4375,"pitch":105.6875,"roll":25.9375},"location":"Left Ankle"},{"euler":{"heading":12.3125,"pitch":-12.125,"roll":31.1875},"location":"Right Ankle"},{"euler":{"heading":59.9375,"pitch":-150.6875,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":358.75,"pitch":135.0625,"roll":-13.3125},"location":"Right Knee"},{"euler":{"heading":42.6875,"pitch":-129.125,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:07.972"} +{"sensors":[{"euler":{"heading":327.5625,"pitch":137.3125,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":91.375,"pitch":108.8125,"roll":36.625},"location":"Left Ankle"},{"euler":{"heading":13.8125,"pitch":-13.9375,"roll":33.625},"location":"Right Ankle"},{"euler":{"heading":68.25,"pitch":-140.375,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":216.4375,"pitch":139.5,"roll":-12.375},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-135.3125,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:08.72"} +{"sensors":[{"euler":{"heading":332.5625,"pitch":132.6875,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":96.25,"pitch":110.125,"roll":38.6875},"location":"Left Ankle"},{"euler":{"heading":33.0625,"pitch":0.0,"roll":38.0625},"location":"Right Ankle"},{"euler":{"heading":68.625,"pitch":-138.125,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":232.125,"pitch":144.0,"roll":-22.4375},"location":"Right Knee"},{"euler":{"heading":51.1875,"pitch":-142.125,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:08.173"} +{"sensors":[{"euler":{"heading":338.375,"pitch":129.375,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":99.25,"pitch":111.5,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":55.25,"pitch":18.375,"roll":34.6875},"location":"Right Ankle"},{"euler":{"heading":65.0,"pitch":-140.375,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":251.1875,"pitch":155.125,"roll":-31.625},"location":"Right Knee"},{"euler":{"heading":53.0,"pitch":-148.0625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:08.274"} +{"sensors":[{"euler":{"heading":344.3125,"pitch":127.125,"roll":24.75},"location":"Left Knee"},{"euler":{"heading":105.375,"pitch":114.4375,"roll":45.5},"location":"Left Ankle"},{"euler":{"heading":65.125,"pitch":24.25,"roll":33.75},"location":"Right Ankle"},{"euler":{"heading":54.375,"pitch":-145.0625,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":263.3125,"pitch":162.9375,"roll":-38.75},"location":"Right Knee"},{"euler":{"heading":53.125,"pitch":-151.0,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:08.375"} +{"sensors":[{"euler":{"heading":350.0625,"pitch":126.75,"roll":18.8125},"location":"Left Knee"},{"euler":{"heading":109.3125,"pitch":118.8125,"roll":51.25},"location":"Left Ankle"},{"euler":{"heading":62.5625,"pitch":23.4375,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":44.1875,"pitch":-150.75,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":261.3125,"pitch":155.1875,"roll":-38.8125},"location":"Right Knee"},{"euler":{"heading":55.0625,"pitch":-155.0,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:08.475"} +{"sensors":[{"euler":{"heading":1.625,"pitch":127.125,"roll":8.8125},"location":"Left Knee"},{"euler":{"heading":112.3125,"pitch":129.1875,"roll":58.8125},"location":"Left Ankle"},{"euler":{"heading":55.625,"pitch":21.0,"roll":33.0625},"location":"Right Ankle"},{"euler":{"heading":43.875,"pitch":-151.4375,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":328.1875,"pitch":147.25,"roll":-37.0625},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-144.8125,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:08.576"} +{"sensors":[{"euler":{"heading":17.0625,"pitch":126.875,"roll":0.9375},"location":"Left Knee"},{"euler":{"heading":124.8125,"pitch":146.625,"roll":67.625},"location":"Left Ankle"},{"euler":{"heading":51.1875,"pitch":18.625,"roll":32.5},"location":"Right Ankle"},{"euler":{"heading":40.125,"pitch":-154.0625,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":332.0625,"pitch":140.875,"roll":-36.8125},"location":"Right Knee"},{"euler":{"heading":32.8125,"pitch":-121.9375,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:08.676"} +{"sensors":[{"euler":{"heading":9.375,"pitch":132.875,"roll":6.1875},"location":"Left Knee"},{"euler":{"heading":114.0,"pitch":116.4375,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":50.5625,"pitch":18.75,"roll":30.0625},"location":"Right Ankle"},{"euler":{"heading":43.25,"pitch":-152.9375,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":334.9375,"pitch":137.375,"roll":-35.4375},"location":"Right Knee"},{"euler":{"heading":26.6875,"pitch":-117.9375,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:08.778"} +{"sensors":[{"euler":{"heading":221.625,"pitch":144.4375,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":84.3125,"pitch":101.0,"roll":38.375},"location":"Left Ankle"},{"euler":{"heading":47.125,"pitch":16.4375,"roll":31.5625},"location":"Right Ankle"},{"euler":{"heading":45.8125,"pitch":-153.75,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":337.6875,"pitch":136.0,"roll":-32.4375},"location":"Right Knee"},{"euler":{"heading":27.6875,"pitch":-117.3125,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:08.879"} +{"sensors":[{"euler":{"heading":238.3125,"pitch":154.9375,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":58.625,"pitch":102.25,"roll":11.875},"location":"Left Ankle"},{"euler":{"heading":41.1875,"pitch":13.375,"roll":32.4375},"location":"Right Ankle"},{"euler":{"heading":47.0625,"pitch":-156.25,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":341.375,"pitch":133.875,"roll":-28.9375},"location":"Right Knee"},{"euler":{"heading":33.25,"pitch":-121.1875,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:08.980"} +{"sensors":[{"euler":{"heading":240.5,"pitch":155.125,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":58.875,"pitch":100.6875,"roll":13.0},"location":"Left Ankle"},{"euler":{"heading":32.75,"pitch":6.5,"roll":32.125},"location":"Right Ankle"},{"euler":{"heading":47.8125,"pitch":-162.8125,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":344.875,"pitch":133.3125,"roll":-24.0625},"location":"Right Knee"},{"euler":{"heading":37.8125,"pitch":-124.875,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:09.81"} +{"sensors":[{"euler":{"heading":315.75,"pitch":146.4375,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":71.25,"pitch":103.375,"roll":21.8125},"location":"Left Ankle"},{"euler":{"heading":19.75,"pitch":-9.6875,"roll":32.9375},"location":"Right Ankle"},{"euler":{"heading":54.3125,"pitch":-157.375,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":349.0625,"pitch":135.625,"roll":-15.6875},"location":"Right Knee"},{"euler":{"heading":43.125,"pitch":-119.125,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:09.181"} +{"sensors":[{"euler":{"heading":322.875,"pitch":141.3125,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":83.3125,"pitch":106.0,"roll":31.5625},"location":"Left Ankle"},{"euler":{"heading":9.125,"pitch":-20.75,"roll":31.0625},"location":"Right Ankle"},{"euler":{"heading":65.875,"pitch":-143.8125,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":210.9375,"pitch":137.8125,"roll":-10.0},"location":"Right Knee"},{"euler":{"heading":44.25,"pitch":-130.3125,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:09.282"} +{"sensors":[{"euler":{"heading":327.0,"pitch":137.375,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":90.0,"pitch":107.1875,"roll":36.3125},"location":"Left Ankle"},{"euler":{"heading":22.0625,"pitch":-10.1875,"roll":35.375},"location":"Right Ankle"},{"euler":{"heading":69.625,"pitch":-138.8125,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":222.4375,"pitch":142.3125,"roll":-17.5},"location":"Right Knee"},{"euler":{"heading":47.25,"pitch":-137.75,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:09.382"} +{"sensors":[{"euler":{"heading":332.875,"pitch":134.1875,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":87.1875,"pitch":106.4375,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":47.875,"pitch":7.0,"roll":37.6875},"location":"Right Ankle"},{"euler":{"heading":65.5625,"pitch":-140.5,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":243.1875,"pitch":152.3125,"roll":-29.75},"location":"Right Knee"},{"euler":{"heading":49.5,"pitch":-141.875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:09.483"} +{"sensors":[{"euler":{"heading":339.25,"pitch":131.375,"roll":24.9375},"location":"Left Knee"},{"euler":{"heading":91.4375,"pitch":108.0,"roll":39.125},"location":"Left Ankle"},{"euler":{"heading":69.125,"pitch":21.6875,"roll":29.9375},"location":"Right Ankle"},{"euler":{"heading":59.6875,"pitch":-144.1875,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":257.3125,"pitch":163.375,"roll":-37.25},"location":"Right Knee"},{"euler":{"heading":52.4375,"pitch":-146.125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:09.584"} +{"sensors":[{"euler":{"heading":345.75,"pitch":129.25,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":112.125,"roll":47.1875},"location":"Left Ankle"},{"euler":{"heading":66.8125,"pitch":21.4375,"roll":32.6875},"location":"Right Ankle"},{"euler":{"heading":48.4375,"pitch":-149.625,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":261.625,"pitch":162.5625,"roll":-39.0625},"location":"Right Knee"},{"euler":{"heading":55.25,"pitch":-151.1875,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:09.684"} +{"sensors":[{"euler":{"heading":356.3125,"pitch":126.875,"roll":12.5},"location":"Left Knee"},{"euler":{"heading":103.5625,"pitch":118.9375,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":57.4375,"pitch":18.1875,"roll":32.25},"location":"Right Ankle"},{"euler":{"heading":45.75,"pitch":-152.375,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":258.125,"pitch":153.4375,"roll":-37.375},"location":"Right Knee"},{"euler":{"heading":55.875,"pitch":-145.5,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:09.785"} +{"sensors":[{"euler":{"heading":10.5625,"pitch":124.75,"roll":4.625},"location":"Left Knee"},{"euler":{"heading":109.625,"pitch":134.375,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":54.375,"pitch":17.5625,"roll":32.9375},"location":"Right Ankle"},{"euler":{"heading":42.1875,"pitch":-153.9375,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":326.0625,"pitch":146.125,"roll":-37.4375},"location":"Right Knee"},{"euler":{"heading":39.625,"pitch":-123.375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:09.885"} +{"sensors":[{"euler":{"heading":4.6875,"pitch":132.6875,"roll":9.0625},"location":"Left Knee"},{"euler":{"heading":100.375,"pitch":112.0625,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":50.8125,"pitch":16.125,"roll":32.625},"location":"Right Ankle"},{"euler":{"heading":43.6875,"pitch":-154.4375,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":330.5,"pitch":142.125,"roll":-35.875},"location":"Right Knee"},{"euler":{"heading":30.0625,"pitch":-117.6875,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:09.986"} +{"sensors":[{"euler":{"heading":223.5625,"pitch":144.0,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":79.8125,"pitch":101.5,"roll":33.625},"location":"Left Ankle"},{"euler":{"heading":47.3125,"pitch":14.3125,"roll":32.375},"location":"Right Ankle"},{"euler":{"heading":44.5625,"pitch":-155.8125,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":334.5625,"pitch":138.8125,"roll":-33.75},"location":"Right Knee"},{"euler":{"heading":29.5,"pitch":-116.25,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:10.86"} +{"sensors":[{"euler":{"heading":238.0625,"pitch":155.1875,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":56.625,"pitch":99.0,"roll":11.1875},"location":"Left Ankle"},{"euler":{"heading":42.6875,"pitch":11.0625,"roll":32.9375},"location":"Right Ankle"},{"euler":{"heading":45.125,"pitch":-160.375,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":337.875,"pitch":136.5,"roll":-30.4375},"location":"Right Knee"},{"euler":{"heading":34.3125,"pitch":-120.8125,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:10.188"} +{"sensors":[{"euler":{"heading":241.8125,"pitch":155.1875,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":55.6875,"pitch":101.1875,"roll":11.9375},"location":"Left Ankle"},{"euler":{"heading":34.75,"pitch":4.25,"roll":32.625},"location":"Right Ankle"},{"euler":{"heading":47.5625,"pitch":-164.8125,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":338.6875,"pitch":135.25,"roll":-26.875},"location":"Right Knee"},{"euler":{"heading":38.1875,"pitch":-124.0,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:10.289"} +{"sensors":[{"euler":{"heading":315.1875,"pitch":146.6875,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":68.0625,"pitch":104.25,"roll":20.4375},"location":"Left Ankle"},{"euler":{"heading":22.75,"pitch":-9.0625,"roll":32.875},"location":"Right Ankle"},{"euler":{"heading":52.75,"pitch":-156.5,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":348.6875,"pitch":135.0,"roll":-17.9375},"location":"Right Knee"},{"euler":{"heading":38.25,"pitch":-123.5,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:10.390"} +{"sensors":[{"euler":{"heading":325.375,"pitch":140.0,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":80.25,"pitch":106.375,"roll":27.6875},"location":"Left Ankle"},{"euler":{"heading":8.3125,"pitch":-21.0625,"roll":29.0625},"location":"Right Ankle"},{"euler":{"heading":66.375,"pitch":-143.375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":213.0,"pitch":137.375,"roll":-11.0625},"location":"Right Knee"},{"euler":{"heading":42.875,"pitch":-143.75,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:10.490"} +{"sensors":[{"euler":{"heading":328.5,"pitch":136.25,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":90.9375,"pitch":107.75,"roll":36.0625},"location":"Left Ankle"},{"euler":{"heading":19.5,"pitch":-14.4375,"roll":35.75},"location":"Right Ankle"},{"euler":{"heading":67.6875,"pitch":-140.9375,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":223.0,"pitch":143.9375,"roll":-17.25},"location":"Right Knee"},{"euler":{"heading":46.625,"pitch":-135.9375,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:10.591"} +{"sensors":[{"euler":{"heading":331.0,"pitch":134.8125,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":90.9375,"pitch":106.9375,"roll":38.5},"location":"Left Ankle"},{"euler":{"heading":43.6875,"pitch":5.25,"roll":38.6875},"location":"Right Ankle"},{"euler":{"heading":67.0,"pitch":-141.0625,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":241.5,"pitch":152.375,"roll":-29.375},"location":"Right Knee"},{"euler":{"heading":47.6875,"pitch":-141.4375,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:10.692"} +{"sensors":[{"euler":{"heading":337.0625,"pitch":132.6875,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":94.9375,"pitch":108.375,"roll":42.625},"location":"Left Ankle"},{"euler":{"heading":60.625,"pitch":22.1875,"roll":35.1875},"location":"Right Ankle"},{"euler":{"heading":58.875,"pitch":-143.875,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":259.6875,"pitch":161.3125,"roll":-35.8125},"location":"Right Knee"},{"euler":{"heading":49.625,"pitch":-144.9375,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:10.792"} +{"sensors":[{"euler":{"heading":344.125,"pitch":130.625,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":100.5625,"pitch":111.8125,"roll":48.5},"location":"Left Ankle"},{"euler":{"heading":67.3125,"pitch":24.5625,"roll":31.9375},"location":"Right Ankle"},{"euler":{"heading":32.375,"pitch":-148.9375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":264.5625,"pitch":162.0,"roll":-40.5625},"location":"Right Knee"},{"euler":{"heading":52.0,"pitch":-150.0625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:10.895"} +{"sensors":[{"euler":{"heading":356.25,"pitch":128.875,"roll":11.0},"location":"Left Knee"},{"euler":{"heading":106.3125,"pitch":120.0625,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":55.3125,"pitch":21.1875,"roll":32.125},"location":"Right Ankle"},{"euler":{"heading":44.625,"pitch":-151.8125,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":321.3125,"pitch":151.5625,"roll":-38.875},"location":"Right Knee"},{"euler":{"heading":52.3125,"pitch":-148.5,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:10.996"} +{"sensors":[{"euler":{"heading":15.0,"pitch":123.625,"roll":2.5},"location":"Left Knee"},{"euler":{"heading":123.9375,"pitch":147.625,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":50.875,"pitch":20.0625,"roll":33.0625},"location":"Right Ankle"},{"euler":{"heading":41.6875,"pitch":-152.625,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":331.0,"pitch":144.0,"roll":-37.75},"location":"Right Knee"},{"euler":{"heading":35.6875,"pitch":-125.125,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:11.97"} +{"sensors":[{"euler":{"heading":17.1875,"pitch":130.375,"roll":2.875},"location":"Left Knee"},{"euler":{"heading":119.5,"pitch":129.5625,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":48.9375,"pitch":19.0625,"roll":32.1875},"location":"Right Ankle"},{"euler":{"heading":42.4375,"pitch":-152.9375,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":333.25,"pitch":139.125,"roll":-37.375},"location":"Right Knee"},{"euler":{"heading":29.4375,"pitch":-116.875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:11.198"} +{"sensors":[{"euler":{"heading":219.5625,"pitch":140.5625,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":92.9375,"pitch":108.0625,"roll":45.25},"location":"Left Ankle"},{"euler":{"heading":45.4375,"pitch":18.375,"roll":32.1875},"location":"Right Ankle"},{"euler":{"heading":43.9375,"pitch":-153.3125,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":336.875,"pitch":135.875,"roll":-35.3125},"location":"Right Knee"},{"euler":{"heading":30.3125,"pitch":-114.75,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:11.299"} +{"sensors":[{"euler":{"heading":235.75,"pitch":153.0,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":62.75,"pitch":100.4375,"roll":18.1875},"location":"Left Ankle"},{"euler":{"heading":41.3125,"pitch":16.0625,"roll":32.5},"location":"Right Ankle"},{"euler":{"heading":45.0,"pitch":-156.25,"roll":69.5625},"location":"Right Hip"},{"euler":{"heading":340.9375,"pitch":134.25,"roll":-31.3125},"location":"Right Knee"},{"euler":{"heading":34.1875,"pitch":-119.375,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:11.401"} +{"sensors":[{"euler":{"heading":239.8125,"pitch":154.3125,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":56.5625,"pitch":99.75,"roll":11.5},"location":"Left Ankle"},{"euler":{"heading":35.8125,"pitch":9.375,"roll":31.0},"location":"Right Ankle"},{"euler":{"heading":48.125,"pitch":-160.4375,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":339.375,"pitch":134.0,"roll":-27.875},"location":"Right Knee"},{"euler":{"heading":38.875,"pitch":-123.125,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:11.502"} +{"sensors":[{"euler":{"heading":315.75,"pitch":145.8125,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":68.25,"pitch":103.125,"roll":20.0625},"location":"Left Ankle"},{"euler":{"heading":25.8125,"pitch":-3.0,"roll":31.4375},"location":"Right Ankle"},{"euler":{"heading":54.125,"pitch":-153.6875,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":342.8125,"pitch":135.5625,"roll":-20.125},"location":"Right Knee"},{"euler":{"heading":41.375,"pitch":-125.0625,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:11.602"} +{"sensors":[{"euler":{"heading":323.875,"pitch":139.6875,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":85.25,"pitch":107.5,"roll":31.8125},"location":"Left Ankle"},{"euler":{"heading":14.625,"pitch":-14.75,"roll":30.9375},"location":"Right Ankle"},{"euler":{"heading":67.0,"pitch":-142.9375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":214.0,"pitch":136.9375,"roll":-13.6875},"location":"Right Knee"},{"euler":{"heading":45.5625,"pitch":-131.375,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:11.703"} +{"sensors":[{"euler":{"heading":325.625,"pitch":137.4375,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":91.8125,"pitch":107.5625,"roll":36.375},"location":"Left Ankle"},{"euler":{"heading":24.875,"pitch":-8.8125,"roll":35.375},"location":"Right Ankle"},{"euler":{"heading":70.75,"pitch":-139.5625,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":225.0,"pitch":144.9375,"roll":-19.125},"location":"Right Knee"},{"euler":{"heading":47.0625,"pitch":-138.25,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:11.803"} +{"sensors":[{"euler":{"heading":326.1875,"pitch":137.1875,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":82.625,"pitch":104.625,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":48.0,"pitch":8.9375,"roll":35.6875},"location":"Right Ankle"},{"euler":{"heading":68.625,"pitch":-142.9375,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":242.5625,"pitch":154.375,"roll":-29.1875},"location":"Right Knee"},{"euler":{"heading":48.75,"pitch":-145.4375,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:11.905"} +{"sensors":[{"euler":{"heading":333.5625,"pitch":134.125,"roll":25.4375},"location":"Left Knee"},{"euler":{"heading":86.6875,"pitch":105.25,"roll":36.8125},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":19.5625,"roll":31.6875},"location":"Right Ankle"},{"euler":{"heading":60.5625,"pitch":-144.25,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":257.0625,"pitch":163.8125,"roll":-36.375},"location":"Right Knee"},{"euler":{"heading":52.25,"pitch":-150.5,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:12.6"} +{"sensors":[{"euler":{"heading":343.1875,"pitch":130.875,"roll":20.5},"location":"Left Knee"},{"euler":{"heading":94.9375,"pitch":109.625,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":65.5,"pitch":24.0625,"roll":31.0},"location":"Right Ankle"},{"euler":{"heading":49.4375,"pitch":-147.5,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":262.0625,"pitch":159.125,"roll":-36.9375},"location":"Right Knee"},{"euler":{"heading":54.4375,"pitch":-153.3125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:12.107"} +{"sensors":[{"euler":{"heading":355.9375,"pitch":128.3125,"roll":11.75},"location":"Left Knee"},{"euler":{"heading":107.1875,"pitch":116.625,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":55.6875,"pitch":19.375,"roll":30.8125},"location":"Right Ankle"},{"euler":{"heading":50.375,"pitch":-148.4375,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":323.6875,"pitch":150.25,"roll":-36.6875},"location":"Right Knee"},{"euler":{"heading":54.0,"pitch":-148.5,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:12.208"} +{"sensors":[{"euler":{"heading":13.25,"pitch":127.3125,"roll":2.6875},"location":"Left Knee"},{"euler":{"heading":120.0,"pitch":142.375,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":54.5625,"pitch":15.875,"roll":31.875},"location":"Right Ankle"},{"euler":{"heading":44.1875,"pitch":-153.1875,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":321.5625,"pitch":145.3125,"roll":-38.0},"location":"Right Knee"},{"euler":{"heading":35.3125,"pitch":-130.0,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:12.308"} +{"sensors":[{"euler":{"heading":13.0625,"pitch":132.3125,"roll":4.4375},"location":"Left Knee"},{"euler":{"heading":114.375,"pitch":120.75,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":54.875,"pitch":15.8125,"roll":30.5625},"location":"Right Ankle"},{"euler":{"heading":46.8125,"pitch":-153.0625,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":324.5,"pitch":142.875,"roll":-36.0},"location":"Right Knee"},{"euler":{"heading":27.9375,"pitch":-120.875,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:12.409"} +{"sensors":[{"euler":{"heading":221.0625,"pitch":142.5625,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":87.5625,"pitch":104.25,"roll":41.5},"location":"Left Ankle"},{"euler":{"heading":50.0,"pitch":14.75,"roll":30.375},"location":"Right Ankle"},{"euler":{"heading":49.0625,"pitch":-151.75,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":330.0,"pitch":138.9375,"roll":-33.9375},"location":"Right Knee"},{"euler":{"heading":22.0625,"pitch":-119.6875,"roll":44.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:12.512"} +{"sensors":[{"euler":{"heading":236.625,"pitch":152.75,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":63.0,"pitch":102.0,"roll":17.1875},"location":"Left Ankle"},{"euler":{"heading":46.375,"pitch":12.375,"roll":31.4375},"location":"Right Ankle"},{"euler":{"heading":49.0625,"pitch":-156.375,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":333.25,"pitch":136.625,"roll":-31.1875},"location":"Right Knee"},{"euler":{"heading":30.75,"pitch":-119.4375,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:12.612"} +{"sensors":[{"euler":{"heading":240.6875,"pitch":157.0625,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":54.375,"pitch":97.9375,"roll":9.5625},"location":"Left Ankle"},{"euler":{"heading":40.625,"pitch":8.4375,"roll":29.3125},"location":"Right Ankle"},{"euler":{"heading":49.125,"pitch":-162.8125,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":335.75,"pitch":135.3125,"roll":-27.4375},"location":"Right Knee"},{"euler":{"heading":38.5,"pitch":-123.375,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:12.713"} +{"sensors":[{"euler":{"heading":315.75,"pitch":147.125,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":68.75,"pitch":104.875,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":30.8125,"pitch":-0.1875,"roll":31.625},"location":"Right Ankle"},{"euler":{"heading":49.5625,"pitch":-169.1875,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":341.4375,"pitch":134.9375,"roll":-21.25},"location":"Right Knee"},{"euler":{"heading":45.375,"pitch":-127.5625,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:12.814"} +{"sensors":[{"euler":{"heading":327.875,"pitch":138.1875,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":85.0,"pitch":109.8125,"roll":28.125},"location":"Left Ankle"},{"euler":{"heading":14.375,"pitch":-10.6875,"roll":29.125},"location":"Right Ankle"},{"euler":{"heading":60.5,"pitch":-151.75,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":1.375,"pitch":133.4375,"roll":-10.875},"location":"Right Knee"},{"euler":{"heading":47.6875,"pitch":-128.9375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:12.915"} +{"sensors":[{"euler":{"heading":334.4375,"pitch":132.5625,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":104.625,"pitch":114.5,"roll":40.0625},"location":"Left Ankle"},{"euler":{"heading":17.0625,"pitch":-11.1875,"roll":32.375},"location":"Right Ankle"},{"euler":{"heading":67.0625,"pitch":-141.625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":215.0625,"pitch":140.6875,"roll":-12.75},"location":"Right Knee"},{"euler":{"heading":50.5625,"pitch":-136.0,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:13.17"} +{"sensors":[{"euler":{"heading":339.6875,"pitch":128.8125,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":114.5625,"roll":38.6875},"location":"Left Ankle"},{"euler":{"heading":37.9375,"pitch":2.3125,"roll":36.5625},"location":"Right Ankle"},{"euler":{"heading":68.75,"pitch":-139.3125,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":230.8125,"pitch":148.25,"roll":-23.5625},"location":"Right Knee"},{"euler":{"heading":52.875,"pitch":-141.5,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:13.117"} +{"sensors":[{"euler":{"heading":344.1875,"pitch":127.25,"roll":26.75},"location":"Left Knee"},{"euler":{"heading":97.5,"pitch":114.5625,"roll":39.3125},"location":"Left Ankle"},{"euler":{"heading":61.5625,"pitch":19.75,"roll":31.0},"location":"Right Ankle"},{"euler":{"heading":62.125,"pitch":-143.4375,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":251.5625,"pitch":157.4375,"roll":-33.6875},"location":"Right Knee"},{"euler":{"heading":53.8125,"pitch":-145.6875,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:13.218"} +{"sensors":[{"euler":{"heading":348.875,"pitch":125.6875,"roll":22.3125},"location":"Left Knee"},{"euler":{"heading":103.625,"pitch":116.8125,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":67.625,"pitch":22.875,"roll":30.9375},"location":"Right Ankle"},{"euler":{"heading":49.375,"pitch":-148.75,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":261.25,"pitch":162.75,"roll":-38.5},"location":"Right Knee"},{"euler":{"heading":55.3125,"pitch":-149.75,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:13.319"} +{"sensors":[{"euler":{"heading":356.25,"pitch":125.375,"roll":15.0625},"location":"Left Knee"},{"euler":{"heading":115.75,"pitch":122.0,"roll":55.9375},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":20.625,"roll":32.1875},"location":"Right Ankle"},{"euler":{"heading":45.3125,"pitch":-152.125,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":258.0625,"pitch":152.9375,"roll":-37.0625},"location":"Right Knee"},{"euler":{"heading":55.9375,"pitch":-148.9375,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:13.420"} +{"sensors":[{"euler":{"heading":11.0,"pitch":125.375,"roll":4.5625},"location":"Left Knee"},{"euler":{"heading":120.25,"pitch":138.5,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":55.8125,"pitch":18.875,"roll":31.8125},"location":"Right Ankle"},{"euler":{"heading":45.6875,"pitch":-153.125,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":324.75,"pitch":147.3125,"roll":-36.5625},"location":"Right Knee"},{"euler":{"heading":39.5625,"pitch":-133.25,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:13.521"} +{"sensors":[{"euler":{"heading":13.4375,"pitch":130.4375,"roll":4.625},"location":"Left Knee"},{"euler":{"heading":110.5,"pitch":112.25,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":52.0625,"pitch":17.8125,"roll":31.4375},"location":"Right Ankle"},{"euler":{"heading":43.75,"pitch":-154.0625,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":332.0,"pitch":141.875,"roll":-34.875},"location":"Right Knee"},{"euler":{"heading":31.9375,"pitch":-121.8125,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:13.622"} +{"sensors":[{"euler":{"heading":219.5,"pitch":139.75,"roll":18.5},"location":"Left Knee"},{"euler":{"heading":90.625,"pitch":106.875,"roll":43.25},"location":"Left Ankle"},{"euler":{"heading":48.5625,"pitch":15.5,"roll":31.0625},"location":"Right Ankle"},{"euler":{"heading":46.125,"pitch":-154.625,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":334.6875,"pitch":138.9375,"roll":-32.9375},"location":"Right Knee"},{"euler":{"heading":28.0625,"pitch":-118.1875,"roll":45.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:13.722"} +{"sensors":[{"euler":{"heading":235.1875,"pitch":151.3125,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":62.8125,"pitch":101.4375,"roll":17.125},"location":"Left Ankle"},{"euler":{"heading":43.1875,"pitch":12.9375,"roll":31.75},"location":"Right Ankle"},{"euler":{"heading":47.8125,"pitch":-156.75,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":339.4375,"pitch":137.0,"roll":-29.5},"location":"Right Knee"},{"euler":{"heading":32.125,"pitch":-119.75,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:13.823"} +{"sensors":[{"euler":{"heading":244.3125,"pitch":155.375,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":56.75,"pitch":101.8125,"roll":10.5625},"location":"Left Ankle"},{"euler":{"heading":35.25,"pitch":7.3125,"roll":31.75},"location":"Right Ankle"},{"euler":{"heading":49.4375,"pitch":-160.9375,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":341.3125,"pitch":136.1875,"roll":-25.625},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-124.5,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:13.924"} +{"sensors":[{"euler":{"heading":317.6875,"pitch":146.6875,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":68.375,"pitch":105.25,"roll":19.5625},"location":"Left Ankle"},{"euler":{"heading":23.75,"pitch":-4.1875,"roll":32.0},"location":"Right Ankle"},{"euler":{"heading":53.3125,"pitch":-158.9375,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":347.5,"pitch":136.4375,"roll":-18.25},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-126.125,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:14.25"} +{"sensors":[{"euler":{"heading":324.0625,"pitch":140.5625,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":79.75,"pitch":107.5625,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":12.0625,"pitch":-13.625,"roll":30.625},"location":"Right Ankle"},{"euler":{"heading":65.875,"pitch":-144.3125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":214.625,"pitch":136.625,"roll":-11.3125},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-129.4375,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:14.126"} +{"sensors":[{"euler":{"heading":326.6875,"pitch":137.5625,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":90.625,"pitch":108.375,"roll":35.375},"location":"Left Ankle"},{"euler":{"heading":23.3125,"pitch":-8.0,"roll":34.9375},"location":"Right Ankle"},{"euler":{"heading":68.75,"pitch":-140.5625,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":224.8125,"pitch":143.5,"roll":-17.8125},"location":"Right Knee"},{"euler":{"heading":43.5625,"pitch":-134.25,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:14.229"} +{"sensors":[{"euler":{"heading":330.3125,"pitch":135.375,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":91.8125,"pitch":107.4375,"roll":36.4375},"location":"Left Ankle"},{"euler":{"heading":43.875,"pitch":6.75,"roll":36.3125},"location":"Right Ankle"},{"euler":{"heading":67.625,"pitch":-140.875,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":241.25,"pitch":151.3125,"roll":-27.625},"location":"Right Knee"},{"euler":{"heading":47.0625,"pitch":-139.75,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:14.329"} +{"sensors":[{"euler":{"heading":334.9375,"pitch":133.25,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":93.9375,"pitch":107.5625,"roll":39.25},"location":"Left Ankle"},{"euler":{"heading":68.0,"pitch":23.75,"roll":28.6875},"location":"Right Ankle"},{"euler":{"heading":59.0625,"pitch":-144.4375,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":258.5625,"pitch":162.0625,"roll":-34.5},"location":"Right Knee"},{"euler":{"heading":49.3125,"pitch":-144.875,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:14.430"} +{"sensors":[{"euler":{"heading":341.5625,"pitch":131.25,"roll":22.0625},"location":"Left Knee"},{"euler":{"heading":100.0625,"pitch":110.0625,"roll":44.875},"location":"Left Ankle"},{"euler":{"heading":71.5625,"pitch":25.9375,"roll":29.125},"location":"Right Ankle"},{"euler":{"heading":49.125,"pitch":-147.6875,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":265.9375,"pitch":164.1875,"roll":-38.6875},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-148.0625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:14.530"} +{"sensors":[{"euler":{"heading":351.9375,"pitch":129.25,"roll":14.625},"location":"Left Knee"},{"euler":{"heading":108.8125,"pitch":114.8125,"roll":53.25},"location":"Left Ankle"},{"euler":{"heading":61.0,"pitch":24.9375,"roll":30.5625},"location":"Right Ankle"},{"euler":{"heading":43.4375,"pitch":-151.5625,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":263.5625,"pitch":154.25,"roll":-37.9375},"location":"Right Knee"},{"euler":{"heading":55.0625,"pitch":-151.9375,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:14.631"} +{"sensors":[{"euler":{"heading":10.75,"pitch":127.3125,"roll":4.6875},"location":"Left Knee"},{"euler":{"heading":118.9375,"pitch":136.8125,"roll":60.3125},"location":"Left Ankle"},{"euler":{"heading":57.0,"pitch":23.375,"roll":30.5625},"location":"Right Ankle"},{"euler":{"heading":43.25,"pitch":-151.8125,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":328.75,"pitch":147.125,"roll":-37.4375},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-138.25,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:14.732"} +{"sensors":[{"euler":{"heading":19.5625,"pitch":125.5625,"roll":2.5},"location":"Left Knee"},{"euler":{"heading":122.8125,"pitch":140.3125,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":53.8125,"pitch":22.1875,"roll":29.0625},"location":"Right Ankle"},{"euler":{"heading":41.625,"pitch":-153.9375,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":334.0625,"pitch":140.625,"roll":-36.9375},"location":"Right Knee"},{"euler":{"heading":34.3125,"pitch":-122.25,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:14.835"} +{"sensors":[{"euler":{"heading":217.0625,"pitch":137.0,"roll":13.75},"location":"Left Knee"},{"euler":{"heading":97.5,"pitch":110.3125,"roll":48.1875},"location":"Left Ankle"},{"euler":{"heading":51.0625,"pitch":20.625,"roll":28.75},"location":"Right Ankle"},{"euler":{"heading":45.3125,"pitch":-153.125,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":336.375,"pitch":137.75,"roll":-34.875},"location":"Right Knee"},{"euler":{"heading":28.3125,"pitch":-118.25,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:14.937"} +{"sensors":[{"euler":{"heading":233.0625,"pitch":149.0625,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":69.5625,"pitch":102.8125,"roll":21.875},"location":"Left Ankle"},{"euler":{"heading":46.9375,"pitch":17.25,"roll":30.625},"location":"Right Ankle"},{"euler":{"heading":47.75,"pitch":-155.4375,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":337.4375,"pitch":136.5,"roll":-31.75},"location":"Right Knee"},{"euler":{"heading":30.5,"pitch":-118.6875,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:15.38"} +{"sensors":[{"euler":{"heading":241.75,"pitch":156.9375,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":56.375,"pitch":97.8125,"roll":9.125},"location":"Left Ankle"},{"euler":{"heading":39.625,"pitch":12.375,"roll":30.125},"location":"Right Ankle"},{"euler":{"heading":49.4375,"pitch":-159.5625,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":340.75,"pitch":134.75,"roll":-27.75},"location":"Right Knee"},{"euler":{"heading":37.5625,"pitch":-122.375,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:15.139"} +{"sensors":[{"euler":{"heading":316.1875,"pitch":147.8125,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":68.0625,"pitch":103.5625,"roll":17.625},"location":"Left Ankle"},{"euler":{"heading":29.875,"pitch":3.75,"roll":31.0625},"location":"Right Ankle"},{"euler":{"heading":50.875,"pitch":-162.25,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":345.3125,"pitch":133.6875,"roll":-21.875},"location":"Right Knee"},{"euler":{"heading":40.75,"pitch":-124.0,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:15.240"} +{"sensors":[{"euler":{"heading":320.3125,"pitch":142.3125,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":76.4375,"pitch":104.625,"roll":23.625},"location":"Left Ankle"},{"euler":{"heading":18.9375,"pitch":-11.3125,"roll":31.75},"location":"Right Ankle"},{"euler":{"heading":62.375,"pitch":-148.875,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":354.9375,"pitch":135.75,"roll":-13.75},"location":"Right Knee"},{"euler":{"heading":43.25,"pitch":-127.875,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:15.344"} +{"sensors":[{"euler":{"heading":325.0625,"pitch":138.375,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":91.875,"pitch":107.125,"roll":34.6875},"location":"Left Ankle"},{"euler":{"heading":26.4375,"pitch":-5.1875,"roll":33.9375},"location":"Right Ankle"},{"euler":{"heading":68.0,"pitch":-140.375,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":220.9375,"pitch":141.5625,"roll":-17.125},"location":"Right Knee"},{"euler":{"heading":45.875,"pitch":-134.75,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:15.445"} +{"sensors":[{"euler":{"heading":331.25,"pitch":134.375,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":90.875,"pitch":106.875,"roll":35.0625},"location":"Left Ankle"},{"euler":{"heading":46.25,"pitch":8.1875,"roll":35.125},"location":"Right Ankle"},{"euler":{"heading":65.125,"pitch":-140.75,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":238.5,"pitch":150.9375,"roll":-27.4375},"location":"Right Knee"},{"euler":{"heading":49.0625,"pitch":-140.3125,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:15.546"} +{"sensors":[{"euler":{"heading":337.125,"pitch":131.4375,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":108.8125,"roll":38.0625},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":22.5625,"roll":32.75},"location":"Right Ankle"},{"euler":{"heading":57.75,"pitch":-145.1875,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":257.0625,"pitch":161.375,"roll":-35.6875},"location":"Right Knee"},{"euler":{"heading":49.75,"pitch":-143.8125,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:15.646"} +{"sensors":[{"euler":{"heading":344.125,"pitch":129.4375,"roll":22.625},"location":"Left Knee"},{"euler":{"heading":100.6875,"pitch":112.625,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":22.5625,"roll":30.5},"location":"Right Ankle"},{"euler":{"heading":49.0625,"pitch":-150.875,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":261.5625,"pitch":165.75,"roll":-38.5625},"location":"Right Knee"},{"euler":{"heading":50.0625,"pitch":-146.125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:15.747"} +{"sensors":[{"euler":{"heading":353.375,"pitch":127.875,"roll":15.0},"location":"Left Knee"},{"euler":{"heading":114.6875,"pitch":118.375,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":60.5,"pitch":18.625,"roll":32.5},"location":"Right Ankle"},{"euler":{"heading":47.3125,"pitch":-152.9375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":257.1875,"pitch":156.9375,"roll":-37.0625},"location":"Right Knee"},{"euler":{"heading":51.8125,"pitch":-144.375,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:15.848"} +{"sensors":[{"euler":{"heading":9.9375,"pitch":125.5,"roll":5.4375},"location":"Left Knee"},{"euler":{"heading":120.125,"pitch":137.8125,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":54.875,"pitch":17.4375,"roll":32.8125},"location":"Right Ankle"},{"euler":{"heading":45.6875,"pitch":-153.75,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":320.3125,"pitch":150.1875,"roll":-36.625},"location":"Right Knee"},{"euler":{"heading":39.375,"pitch":-127.375,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:15.948"} +{"sensors":[{"euler":{"heading":11.5,"pitch":130.6875,"roll":6.625},"location":"Left Knee"},{"euler":{"heading":111.1875,"pitch":124.8125,"roll":57.9375},"location":"Left Ankle"},{"euler":{"heading":51.875,"pitch":16.0,"roll":31.1875},"location":"Right Ankle"},{"euler":{"heading":45.3125,"pitch":-154.125,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":327.1875,"pitch":143.625,"roll":-35.6875},"location":"Right Knee"},{"euler":{"heading":31.6875,"pitch":-118.5625,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:16.52"} +{"sensors":[{"euler":{"heading":221.375,"pitch":141.4375,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":88.9375,"pitch":107.25,"roll":40.4375},"location":"Left Ankle"},{"euler":{"heading":49.9375,"pitch":13.6875,"roll":31.9375},"location":"Right Ankle"},{"euler":{"heading":45.0625,"pitch":-156.3125,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":329.0,"pitch":140.625,"roll":-34.6875},"location":"Right Knee"},{"euler":{"heading":27.75,"pitch":-116.0,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:16.152"} +{"sensors":[{"euler":{"heading":235.9375,"pitch":152.0625,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":63.5,"pitch":101.625,"roll":17.8125},"location":"Left Ankle"},{"euler":{"heading":47.875,"pitch":11.125,"roll":32.0625},"location":"Right Ankle"},{"euler":{"heading":46.8125,"pitch":-160.375,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":330.1875,"pitch":139.875,"roll":-31.8125},"location":"Right Knee"},{"euler":{"heading":30.9375,"pitch":-117.8125,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:16.253"} +{"sensors":[{"euler":{"heading":242.9375,"pitch":156.9375,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":55.75,"pitch":98.875,"roll":9.0625},"location":"Left Ankle"},{"euler":{"heading":41.0,"pitch":7.0,"roll":30.6875},"location":"Right Ankle"},{"euler":{"heading":48.625,"pitch":-165.375,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":331.75,"pitch":138.75,"roll":-28.75},"location":"Right Knee"},{"euler":{"heading":39.6875,"pitch":-122.6875,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:16.354"} +{"sensors":[{"euler":{"heading":315.625,"pitch":148.6875,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":66.5,"pitch":104.1875,"roll":17.25},"location":"Left Ankle"},{"euler":{"heading":34.375,"pitch":0.9375,"roll":34.0},"location":"Right Ankle"},{"euler":{"heading":48.1875,"pitch":-171.4375,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":334.1875,"pitch":138.75,"roll":-23.375},"location":"Right Knee"},{"euler":{"heading":42.1875,"pitch":-123.5,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:16.454"} +{"sensors":[{"euler":{"heading":320.3125,"pitch":143.8125,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":75.1875,"pitch":104.8125,"roll":23.9375},"location":"Left Ankle"},{"euler":{"heading":19.25,"pitch":-10.3125,"roll":32.9375},"location":"Right Ankle"},{"euler":{"heading":58.375,"pitch":-155.6875,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":213.1875,"pitch":136.625,"roll":-12.75},"location":"Right Knee"},{"euler":{"heading":40.125,"pitch":-125.25,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:16.555"} +{"sensors":[{"euler":{"heading":324.8125,"pitch":139.6875,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":84.75,"pitch":106.25,"roll":31.3125},"location":"Left Ankle"},{"euler":{"heading":24.125,"pitch":-8.25,"roll":35.6875},"location":"Right Ankle"},{"euler":{"heading":64.625,"pitch":-143.75,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":217.0,"pitch":141.1875,"roll":-14.8125},"location":"Right Knee"},{"euler":{"heading":44.0,"pitch":-132.5625,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:16.656"} +{"sensors":[{"euler":{"heading":329.75,"pitch":136.25,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":88.5625,"pitch":106.4375,"roll":34.3125},"location":"Left Ankle"},{"euler":{"heading":41.875,"pitch":5.25,"roll":36.375},"location":"Right Ankle"},{"euler":{"heading":65.75,"pitch":-141.1875,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":234.0625,"pitch":147.8125,"roll":-24.875},"location":"Right Knee"},{"euler":{"heading":46.4375,"pitch":-138.375,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:16.756"} +{"sensors":[{"euler":{"heading":336.125,"pitch":132.9375,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":92.3125,"pitch":108.0625,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":63.9375,"pitch":20.4375,"roll":30.4375},"location":"Right Ankle"},{"euler":{"heading":60.0625,"pitch":-144.6875,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":250.75,"pitch":158.0,"roll":-33.0},"location":"Right Knee"},{"euler":{"heading":48.3125,"pitch":-143.375,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:16.857"} +{"sensors":[{"euler":{"heading":341.8125,"pitch":131.0,"roll":23.0},"location":"Left Knee"},{"euler":{"heading":98.3125,"pitch":110.625,"roll":42.875},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":21.375,"roll":30.4375},"location":"Right Ankle"},{"euler":{"heading":49.0625,"pitch":-150.1875,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":261.6875,"pitch":166.1875,"roll":-37.875},"location":"Right Knee"},{"euler":{"heading":48.9375,"pitch":-147.5625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:16.958"} +{"sensors":[{"euler":{"heading":350.625,"pitch":128.5,"roll":16.4375},"location":"Left Knee"},{"euler":{"heading":103.75,"pitch":115.6875,"roll":50.4375},"location":"Left Ankle"},{"euler":{"heading":61.25,"pitch":21.3125,"roll":31.6875},"location":"Right Ankle"},{"euler":{"heading":44.625,"pitch":-153.375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":259.6875,"pitch":157.25,"roll":-38.5625},"location":"Right Knee"},{"euler":{"heading":51.75,"pitch":-147.8125,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:17.58"} +{"sensors":[{"euler":{"heading":10.6875,"pitch":127.8125,"roll":4.25},"location":"Left Knee"},{"euler":{"heading":118.625,"pitch":138.6875,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":54.625,"pitch":18.3125,"roll":31.6875},"location":"Right Ankle"},{"euler":{"heading":44.8125,"pitch":-154.3125,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":321.25,"pitch":150.0625,"roll":-37.375},"location":"Right Knee"},{"euler":{"heading":37.4375,"pitch":-126.875,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:17.159"} +{"sensors":[{"euler":{"heading":16.0,"pitch":130.3125,"roll":3.375},"location":"Left Knee"},{"euler":{"heading":114.8125,"pitch":130.6875,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":53.4375,"pitch":17.125,"roll":30.5},"location":"Right Ankle"},{"euler":{"heading":42.625,"pitch":-156.125,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":325.125,"pitch":144.75,"roll":-37.25},"location":"Right Knee"},{"euler":{"heading":31.25,"pitch":-117.1875,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:17.259"} +{"sensors":[{"euler":{"heading":354.5625,"pitch":138.125,"roll":16.875},"location":"Left Knee"},{"euler":{"heading":95.0625,"pitch":109.25,"roll":45.3125},"location":"Left Ankle"},{"euler":{"heading":52.375,"pitch":15.625,"roll":30.4375},"location":"Right Ankle"},{"euler":{"heading":46.25,"pitch":-156.3125,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":325.9375,"pitch":142.75,"roll":-35.6875},"location":"Right Knee"},{"euler":{"heading":28.8125,"pitch":-115.5,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:17.359"} +{"sensors":[{"euler":{"heading":232.125,"pitch":148.9375,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":67.9375,"pitch":102.1875,"roll":22.4375},"location":"Left Ankle"},{"euler":{"heading":48.25,"pitch":13.75,"roll":31.0},"location":"Right Ankle"},{"euler":{"heading":47.5,"pitch":-158.75,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":330.0,"pitch":140.3125,"roll":-33.0},"location":"Right Knee"},{"euler":{"heading":30.75,"pitch":-116.8125,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:17.460"} +{"sensors":[{"euler":{"heading":241.0,"pitch":156.4375,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":56.4375,"pitch":98.0,"roll":10.125},"location":"Left Ankle"},{"euler":{"heading":42.0625,"pitch":9.9375,"roll":30.4375},"location":"Right Ankle"},{"euler":{"heading":47.6875,"pitch":-162.4375,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":333.25,"pitch":137.75,"roll":-29.375},"location":"Right Knee"},{"euler":{"heading":36.25,"pitch":-121.5625,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:17.561"} +{"sensors":[{"euler":{"heading":312.125,"pitch":149.0,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":64.25,"pitch":101.75,"roll":16.0},"location":"Left Ankle"},{"euler":{"heading":33.75,"pitch":2.75,"roll":31.0625},"location":"Right Ankle"},{"euler":{"heading":48.5,"pitch":-167.8125,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":336.875,"pitch":136.9375,"roll":-24.4375},"location":"Right Knee"},{"euler":{"heading":40.125,"pitch":-123.3125,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:17.662"} +{"sensors":[{"euler":{"heading":319.6875,"pitch":143.1875,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":74.9375,"pitch":103.8125,"roll":23.75},"location":"Left Ankle"},{"euler":{"heading":15.9375,"pitch":-7.0625,"roll":32.1875},"location":"Right Ankle"},{"euler":{"heading":58.5,"pitch":-152.1875,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":0.5,"pitch":135.25,"roll":-13.125},"location":"Right Knee"},{"euler":{"heading":39.3125,"pitch":-124.75,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:17.763"} +{"sensors":[{"euler":{"heading":325.125,"pitch":138.8125,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":106.875,"roll":34.5},"location":"Left Ankle"},{"euler":{"heading":21.8125,"pitch":-6.25,"roll":34.375},"location":"Right Ankle"},{"euler":{"heading":66.0,"pitch":-142.9375,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":220.6875,"pitch":142.5,"roll":-15.6875},"location":"Right Knee"},{"euler":{"heading":42.8125,"pitch":-132.25,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:17.863"} +{"sensors":[{"euler":{"heading":329.4375,"pitch":135.875,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":91.5625,"pitch":106.3125,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":42.125,"pitch":6.875,"roll":35.9375},"location":"Right Ankle"},{"euler":{"heading":65.5,"pitch":-140.8125,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":238.75,"pitch":150.25,"roll":-27.0},"location":"Right Knee"},{"euler":{"heading":45.0625,"pitch":-138.4375,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:17.964"} +{"sensors":[{"euler":{"heading":336.1875,"pitch":132.375,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":95.0625,"pitch":108.25,"roll":39.25},"location":"Left Ankle"},{"euler":{"heading":60.25,"pitch":20.75,"roll":33.5},"location":"Right Ankle"},{"euler":{"heading":55.6875,"pitch":-146.625,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":256.5,"pitch":160.5625,"roll":-33.875},"location":"Right Knee"},{"euler":{"heading":47.25,"pitch":-143.6875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:18.66"} +{"sensors":[{"euler":{"heading":343.5625,"pitch":130.125,"roll":22.9375},"location":"Left Knee"},{"euler":{"heading":99.875,"pitch":111.125,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":69.25,"pitch":22.0625,"roll":30.875},"location":"Right Ankle"},{"euler":{"heading":48.5,"pitch":-152.0625,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":261.625,"pitch":164.875,"roll":-38.3125},"location":"Right Knee"},{"euler":{"heading":49.625,"pitch":-147.625,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:18.168"} +{"sensors":[{"euler":{"heading":352.9375,"pitch":128.5625,"roll":15.25},"location":"Left Knee"},{"euler":{"heading":107.8125,"pitch":115.4375,"roll":52.8125},"location":"Left Ankle"},{"euler":{"heading":59.875,"pitch":20.3125,"roll":31.375},"location":"Right Ankle"},{"euler":{"heading":44.5,"pitch":-154.375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":258.25,"pitch":154.75,"roll":-37.5},"location":"Right Knee"},{"euler":{"heading":50.875,"pitch":-145.625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:18.269"} +{"sensors":[{"euler":{"heading":11.5625,"pitch":127.4375,"roll":4.5},"location":"Left Knee"},{"euler":{"heading":114.875,"pitch":134.375,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":56.0625,"pitch":17.9375,"roll":31.1875},"location":"Right Ankle"},{"euler":{"heading":42.9375,"pitch":-156.5,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":322.0,"pitch":148.8125,"roll":-37.0},"location":"Right Knee"},{"euler":{"heading":34.4375,"pitch":-126.0,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:18.369"} +{"sensors":[{"euler":{"heading":10.75,"pitch":132.375,"roll":5.875},"location":"Left Knee"},{"euler":{"heading":109.3125,"pitch":116.0,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":52.5625,"pitch":16.875,"roll":29.75},"location":"Right Ankle"},{"euler":{"heading":43.6875,"pitch":-156.3125,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":326.125,"pitch":143.3125,"roll":-36.6875},"location":"Right Knee"},{"euler":{"heading":28.25,"pitch":-118.25,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:18.470"} +{"sensors":[{"euler":{"heading":220.375,"pitch":141.375,"roll":19.8125},"location":"Left Knee"},{"euler":{"heading":83.4375,"pitch":103.0,"roll":35.375},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":15.3125,"roll":30.875},"location":"Right Ankle"},{"euler":{"heading":45.375,"pitch":-156.9375,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":330.4375,"pitch":140.4375,"roll":-34.3125},"location":"Right Knee"},{"euler":{"heading":27.75,"pitch":-117.5,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:18.570"} +{"sensors":[{"euler":{"heading":236.5625,"pitch":152.875,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":59.625,"pitch":99.8125,"roll":13.625},"location":"Left Ankle"},{"euler":{"heading":44.375,"pitch":11.9375,"roll":31.5},"location":"Right Ankle"},{"euler":{"heading":46.4375,"pitch":-160.9375,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":333.6875,"pitch":138.0,"roll":-31.0},"location":"Right Knee"},{"euler":{"heading":29.0,"pitch":-119.4375,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:18.673"} +{"sensors":[{"euler":{"heading":241.8125,"pitch":153.5625,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":57.75,"pitch":101.875,"roll":9.8125},"location":"Left Ankle"},{"euler":{"heading":36.3125,"pitch":7.25,"roll":29.75},"location":"Right Ankle"},{"euler":{"heading":47.8125,"pitch":-165.3125,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":335.9375,"pitch":136.6875,"roll":-27.1875},"location":"Right Knee"},{"euler":{"heading":35.1875,"pitch":-123.1875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:18.774"} +{"sensors":[{"euler":{"heading":324.625,"pitch":143.8125,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":72.25,"pitch":107.0,"roll":20.5},"location":"Left Ankle"},{"euler":{"heading":25.375,"pitch":-5.5,"roll":31.5},"location":"Right Ankle"},{"euler":{"heading":54.25,"pitch":-160.625,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":341.1875,"pitch":137.75,"roll":-19.1875},"location":"Right Knee"},{"euler":{"heading":39.375,"pitch":-124.9375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:18.875"} +{"sensors":[{"euler":{"heading":333.6875,"pitch":136.875,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":84.6875,"pitch":110.75,"roll":27.375},"location":"Left Ankle"},{"euler":{"heading":11.75,"pitch":-15.3125,"roll":29.3125},"location":"Right Ankle"},{"euler":{"heading":67.0,"pitch":-143.625,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":211.3125,"pitch":137.9375,"roll":-12.8125},"location":"Right Knee"},{"euler":{"heading":43.25,"pitch":-127.75,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:18.976"} +{"sensors":[{"euler":{"heading":342.0,"pitch":131.0,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":99.9375,"pitch":115.6875,"roll":36.8125},"location":"Left Ankle"},{"euler":{"heading":25.6875,"pitch":-8.3125,"roll":34.1875},"location":"Right Ankle"},{"euler":{"heading":68.9375,"pitch":-140.4375,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":222.25,"pitch":143.9375,"roll":-19.9375},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-132.9375,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:19.77"} +{"sensors":[{"euler":{"heading":346.625,"pitch":127.75,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":103.9375,"pitch":117.625,"roll":39.375},"location":"Left Ankle"},{"euler":{"heading":50.8125,"pitch":10.3125,"roll":34.75},"location":"Right Ankle"},{"euler":{"heading":67.375,"pitch":-141.75,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":240.375,"pitch":155.3125,"roll":-30.0},"location":"Right Knee"},{"euler":{"heading":48.0625,"pitch":-139.0,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:19.179"} +{"sensors":[{"euler":{"heading":352.0625,"pitch":124.875,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":109.9375,"pitch":120.25,"roll":43.8125},"location":"Left Ankle"},{"euler":{"heading":67.5,"pitch":22.5625,"roll":32.75},"location":"Right Ankle"},{"euler":{"heading":56.3125,"pitch":-146.9375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":259.1875,"pitch":164.6875,"roll":-35.4375},"location":"Right Knee"},{"euler":{"heading":51.25,"pitch":-143.0625,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:19.280"} +{"sensors":[{"euler":{"heading":357.9375,"pitch":123.5625,"roll":17.625},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":122.9375,"roll":50.125},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":21.0625,"roll":33.0625},"location":"Right Ankle"},{"euler":{"heading":48.375,"pitch":-153.5625,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":259.4375,"pitch":159.8125,"roll":-37.4375},"location":"Right Knee"},{"euler":{"heading":55.125,"pitch":-146.625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:19.381"} +{"sensors":[{"euler":{"heading":13.3125,"pitch":124.25,"roll":4.625},"location":"Left Knee"},{"euler":{"heading":118.3125,"pitch":136.9375,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":57.75,"pitch":18.125,"roll":32.375},"location":"Right Ankle"},{"euler":{"heading":46.5,"pitch":-156.125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":318.3125,"pitch":152.0,"roll":-36.875},"location":"Right Knee"},{"euler":{"heading":44.25,"pitch":-128.3125,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:19.482"} +{"sensors":[{"euler":{"heading":21.75,"pitch":125.4375,"roll":0.875},"location":"Left Knee"},{"euler":{"heading":122.625,"pitch":140.4375,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":54.0,"pitch":17.0,"roll":32.4375},"location":"Right Ankle"},{"euler":{"heading":44.0,"pitch":-157.5,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":324.5,"pitch":146.8125,"roll":-35.9375},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-114.3125,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:19.582"} +{"sensors":[{"euler":{"heading":5.625,"pitch":133.375,"roll":11.0625},"location":"Left Knee"},{"euler":{"heading":103.3125,"pitch":112.625,"roll":49.9375},"location":"Left Ankle"},{"euler":{"heading":50.1875,"pitch":16.5625,"roll":32.375},"location":"Right Ankle"},{"euler":{"heading":43.875,"pitch":-157.6875,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":329.9375,"pitch":141.4375,"roll":-35.1875},"location":"Right Knee"},{"euler":{"heading":29.125,"pitch":-113.75,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:19.684"} +{"sensors":[{"euler":{"heading":230.625,"pitch":147.75,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":67.875,"pitch":100.625,"roll":21.75},"location":"Left Ankle"},{"euler":{"heading":46.1875,"pitch":15.75,"roll":32.6875},"location":"Right Ankle"},{"euler":{"heading":44.625,"pitch":-160.3125,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":335.375,"pitch":138.625,"roll":-32.0},"location":"Right Knee"},{"euler":{"heading":30.3125,"pitch":-116.625,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:19.784"} +{"sensors":[{"euler":{"heading":240.0,"pitch":154.3125,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":58.0625,"pitch":99.5625,"roll":10.5625},"location":"Left Ankle"},{"euler":{"heading":39.6875,"pitch":12.1875,"roll":32.0625},"location":"Right Ankle"},{"euler":{"heading":46.0,"pitch":-162.5,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":339.125,"pitch":136.5625,"roll":-28.0625},"location":"Right Knee"},{"euler":{"heading":33.9375,"pitch":-121.5,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:19.885"} +{"sensors":[{"euler":{"heading":321.375,"pitch":145.625,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":69.25,"pitch":102.8125,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":28.0625,"pitch":-0.375,"roll":32.4375},"location":"Right Ankle"},{"euler":{"heading":54.125,"pitch":-155.5625,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":344.0625,"pitch":136.625,"roll":-20.375},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-121.8125,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:19.986"} +{"sensors":[{"euler":{"heading":326.375,"pitch":140.9375,"roll":31.375},"location":"Left Knee"},{"euler":{"heading":83.8125,"pitch":104.125,"roll":27.5},"location":"Left Ankle"},{"euler":{"heading":19.5,"pitch":-11.5625,"roll":34.25},"location":"Right Ankle"},{"euler":{"heading":69.75,"pitch":-142.5625,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":216.3125,"pitch":139.1875,"roll":-15.875},"location":"Right Knee"},{"euler":{"heading":39.75,"pitch":-127.4375,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:20.87"} +{"sensors":[{"euler":{"heading":328.0625,"pitch":138.25,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":91.0,"pitch":105.3125,"roll":34.4375},"location":"Left Ankle"},{"euler":{"heading":30.75,"pitch":-4.0,"roll":35.25},"location":"Right Ankle"},{"euler":{"heading":70.4375,"pitch":-141.0,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":227.3125,"pitch":145.375,"roll":-21.75},"location":"Right Knee"},{"euler":{"heading":41.625,"pitch":-133.8125,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:20.188"} +{"sensors":[{"euler":{"heading":331.5,"pitch":136.3125,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":89.1875,"pitch":104.1875,"roll":35.1875},"location":"Left Ankle"},{"euler":{"heading":51.75,"pitch":13.1875,"roll":33.5625},"location":"Right Ankle"},{"euler":{"heading":66.125,"pitch":-143.4375,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":246.125,"pitch":155.125,"roll":-31.5625},"location":"Right Knee"},{"euler":{"heading":43.8125,"pitch":-138.75,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:20.289"} +{"sensors":[{"euler":{"heading":336.6875,"pitch":133.8125,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":93.25,"pitch":105.0,"roll":39.1875},"location":"Left Ankle"},{"euler":{"heading":66.0,"pitch":20.9375,"roll":30.1875},"location":"Right Ankle"},{"euler":{"heading":59.8125,"pitch":-145.5,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":257.875,"pitch":164.3125,"roll":-36.5},"location":"Right Knee"},{"euler":{"heading":47.0625,"pitch":-144.5625,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:20.390"} +{"sensors":[{"euler":{"heading":345.0,"pitch":132.3125,"roll":18.4375},"location":"Left Knee"},{"euler":{"heading":100.5625,"pitch":107.1875,"roll":46.4375},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":23.0,"roll":28.4375},"location":"Right Ankle"},{"euler":{"heading":49.5,"pitch":-149.0625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":263.5,"pitch":166.625,"roll":-40.875},"location":"Right Knee"},{"euler":{"heading":48.6875,"pitch":-148.875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:20.491"} +{"sensors":[{"euler":{"heading":355.0,"pitch":131.3125,"roll":10.875},"location":"Left Knee"},{"euler":{"heading":111.25,"pitch":111.375,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":61.0,"pitch":21.0,"roll":30.25},"location":"Right Ankle"},{"euler":{"heading":45.0,"pitch":-152.75,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":260.3125,"pitch":156.5625,"roll":-39.5},"location":"Right Knee"},{"euler":{"heading":49.8125,"pitch":-149.0,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:20.592"} +{"sensors":[{"euler":{"heading":17.125,"pitch":125.1875,"roll":1.5},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":144.1875,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":57.0,"pitch":19.0,"roll":29.9375},"location":"Right Ankle"},{"euler":{"heading":40.3125,"pitch":-156.3125,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":319.75,"pitch":149.25,"roll":-39.25},"location":"Right Knee"},{"euler":{"heading":37.0,"pitch":-129.625,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:20.692"} +{"sensors":[{"euler":{"heading":24.375,"pitch":127.9375,"roll":0.4375},"location":"Left Knee"},{"euler":{"heading":119.625,"pitch":128.8125,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":54.8125,"pitch":16.6875,"roll":29.5},"location":"Right Ankle"},{"euler":{"heading":43.375,"pitch":-158.0,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":320.4375,"pitch":144.9375,"roll":-38.9375},"location":"Right Knee"},{"euler":{"heading":31.25,"pitch":-118.25,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:20.793"} +{"sensors":[{"euler":{"heading":220.0,"pitch":137.8125,"roll":15.3125},"location":"Left Knee"},{"euler":{"heading":91.5625,"pitch":106.8125,"roll":40.625},"location":"Left Ankle"},{"euler":{"heading":51.75,"pitch":15.5,"roll":30.1875},"location":"Right Ankle"},{"euler":{"heading":46.875,"pitch":-157.5625,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":324.0,"pitch":142.125,"roll":-36.4375},"location":"Right Knee"},{"euler":{"heading":29.875,"pitch":-116.0,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:20.894"} +{"sensors":[{"euler":{"heading":236.3125,"pitch":149.5625,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":63.8125,"pitch":100.625,"roll":14.8125},"location":"Left Ankle"},{"euler":{"heading":46.0,"pitch":13.75,"roll":30.5},"location":"Right Ankle"},{"euler":{"heading":49.1875,"pitch":-158.0,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":329.1875,"pitch":138.6875,"roll":-33.5625},"location":"Right Knee"},{"euler":{"heading":25.9375,"pitch":-123.3125,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:20.994"} +{"sensors":[{"euler":{"heading":239.75,"pitch":153.125,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":60.6875,"pitch":100.125,"roll":11.125},"location":"Left Ankle"},{"euler":{"heading":37.1875,"pitch":8.75,"roll":29.625},"location":"Right Ankle"},{"euler":{"heading":51.625,"pitch":-159.625,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":333.5625,"pitch":136.0,"roll":-28.875},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-123.125,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:21.95"} +{"sensors":[{"euler":{"heading":324.0625,"pitch":143.875,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":73.8125,"pitch":104.1875,"roll":20.4375},"location":"Left Ankle"},{"euler":{"heading":27.6875,"pitch":-1.125,"roll":28.8125},"location":"Right Ankle"},{"euler":{"heading":55.4375,"pitch":-159.3125,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":336.3125,"pitch":136.0625,"roll":-22.625},"location":"Right Knee"},{"euler":{"heading":39.8125,"pitch":-126.625,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:21.195"} +{"sensors":[{"euler":{"heading":332.9375,"pitch":136.4375,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":88.375,"pitch":107.875,"roll":28.6875},"location":"Left Ankle"},{"euler":{"heading":14.9375,"pitch":-12.9375,"roll":27.5625},"location":"Right Ankle"},{"euler":{"heading":66.4375,"pitch":-146.0625,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":346.875,"pitch":136.625,"roll":-16.0625},"location":"Right Knee"},{"euler":{"heading":45.875,"pitch":-131.5,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:21.296"} +{"sensors":[{"euler":{"heading":340.25,"pitch":130.9375,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":101.5,"pitch":112.0,"roll":37.375},"location":"Left Ankle"},{"euler":{"heading":24.6875,"pitch":-10.0,"roll":31.0},"location":"Right Ankle"},{"euler":{"heading":71.8125,"pitch":-140.875,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":222.0,"pitch":145.375,"roll":-21.5},"location":"Right Knee"},{"euler":{"heading":49.5625,"pitch":-136.875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:21.397"} +{"sensors":[{"euler":{"heading":344.125,"pitch":128.4375,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":102.4375,"pitch":112.5625,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":48.0625,"pitch":3.125,"roll":34.6875},"location":"Right Ankle"},{"euler":{"heading":70.3125,"pitch":-142.875,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":240.75,"pitch":157.625,"roll":-32.0625},"location":"Right Knee"},{"euler":{"heading":50.75,"pitch":-142.1875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:21.497"} +{"sensors":[{"euler":{"heading":349.5,"pitch":126.625,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":105.9375,"pitch":114.6875,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":65.75,"pitch":19.375,"roll":32.375},"location":"Right Ankle"},{"euler":{"heading":58.875,"pitch":-147.9375,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":258.75,"pitch":166.5625,"roll":-36.5},"location":"Right Knee"},{"euler":{"heading":51.5625,"pitch":-146.375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:21.598"} +{"sensors":[{"euler":{"heading":355.4375,"pitch":125.3125,"roll":18.625},"location":"Left Knee"},{"euler":{"heading":111.75,"pitch":119.1875,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":70.0,"pitch":22.0625,"roll":30.25},"location":"Right Ankle"},{"euler":{"heading":49.3125,"pitch":-152.625,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":261.0,"pitch":164.4375,"roll":-38.625},"location":"Right Knee"},{"euler":{"heading":53.4375,"pitch":-151.4375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:21.699"} +{"sensors":[{"euler":{"heading":5.9375,"pitch":124.75,"roll":8.1875},"location":"Left Knee"},{"euler":{"heading":112.5,"pitch":128.0625,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":61.1875,"pitch":18.125,"roll":29.6875},"location":"Right Ankle"},{"euler":{"heading":49.5625,"pitch":-154.0,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":255.8125,"pitch":156.5,"roll":-38.1875},"location":"Right Knee"},{"euler":{"heading":50.6875,"pitch":-143.375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:21.800"} +{"sensors":[{"euler":{"heading":26.3125,"pitch":120.9375,"roll":-0.625},"location":"Left Knee"},{"euler":{"heading":124.5625,"pitch":146.4375,"roll":58.625},"location":"Left Ankle"},{"euler":{"heading":57.6875,"pitch":16.75,"roll":30.25},"location":"Right Ankle"},{"euler":{"heading":46.3125,"pitch":-156.375,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":316.625,"pitch":149.5625,"roll":-38.0625},"location":"Right Knee"},{"euler":{"heading":35.375,"pitch":-121.875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:21.901"} +{"sensors":[{"euler":{"heading":23.4375,"pitch":129.3125,"roll":2.625},"location":"Left Knee"},{"euler":{"heading":115.625,"pitch":123.4375,"roll":56.6875},"location":"Left Ankle"},{"euler":{"heading":55.25,"pitch":15.5,"roll":29.625},"location":"Right Ankle"},{"euler":{"heading":49.125,"pitch":-156.5625,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":319.1875,"pitch":146.125,"roll":-37.1875},"location":"Right Knee"},{"euler":{"heading":29.3125,"pitch":-117.75,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:22.2"} +{"sensors":[{"euler":{"heading":225.4375,"pitch":139.0625,"roll":19.9375},"location":"Left Knee"},{"euler":{"heading":88.8125,"pitch":108.4375,"roll":33.9375},"location":"Left Ankle"},{"euler":{"heading":54.4375,"pitch":15.5,"roll":29.5},"location":"Right Ankle"},{"euler":{"heading":50.0,"pitch":-158.25,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":322.5625,"pitch":143.875,"roll":-35.0625},"location":"Right Knee"},{"euler":{"heading":28.4375,"pitch":-116.375,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:22.103"} +{"sensors":[{"euler":{"heading":318.375,"pitch":148.4375,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":63.875,"pitch":104.9375,"roll":11.5625},"location":"Left Ankle"},{"euler":{"heading":48.1875,"pitch":14.875,"roll":30.125},"location":"Right Ankle"},{"euler":{"heading":51.0625,"pitch":-157.5,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":330.8125,"pitch":139.125,"roll":-31.75},"location":"Right Knee"},{"euler":{"heading":32.375,"pitch":-119.375,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:22.203"} +{"sensors":[{"euler":{"heading":245.9375,"pitch":150.9375,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":63.0625,"pitch":103.125,"roll":11.3125},"location":"Left Ankle"},{"euler":{"heading":38.6875,"pitch":9.875,"roll":29.1875},"location":"Right Ankle"},{"euler":{"heading":53.3125,"pitch":-159.75,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":335.375,"pitch":137.1875,"roll":-26.875},"location":"Right Knee"},{"euler":{"heading":34.375,"pitch":-121.9375,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:22.304"} +{"sensors":[{"euler":{"heading":326.375,"pitch":143.0,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":75.8125,"pitch":104.3125,"roll":20.625},"location":"Left Ankle"},{"euler":{"heading":22.125,"pitch":-7.875,"roll":30.0},"location":"Right Ankle"},{"euler":{"heading":60.875,"pitch":-150.25,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":341.5,"pitch":137.4375,"roll":-18.8125},"location":"Right Knee"},{"euler":{"heading":35.625,"pitch":-122.5625,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:22.406"} +{"sensors":[{"euler":{"heading":331.875,"pitch":136.9375,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":86.0625,"pitch":106.75,"roll":27.9375},"location":"Left Ankle"},{"euler":{"heading":15.1875,"pitch":-13.8125,"roll":30.8125},"location":"Right Ankle"},{"euler":{"heading":72.875,"pitch":-139.3125,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":213.0,"pitch":139.3125,"roll":-15.3125},"location":"Right Knee"},{"euler":{"heading":39.875,"pitch":-126.1875,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:22.506"} +{"sensors":[{"euler":{"heading":336.875,"pitch":132.25,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":99.1875,"pitch":109.875,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":33.625,"pitch":-3.25,"roll":34.1875},"location":"Right Ankle"},{"euler":{"heading":73.5625,"pitch":-138.5,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":226.625,"pitch":146.625,"roll":-23.9375},"location":"Right Knee"},{"euler":{"heading":43.0,"pitch":-132.375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:22.607"} +{"sensors":[{"euler":{"heading":341.375,"pitch":129.5625,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":100.25,"pitch":109.25,"roll":38.1875},"location":"Left Ankle"},{"euler":{"heading":57.6875,"pitch":14.0625,"roll":31.75},"location":"Right Ankle"},{"euler":{"heading":72.25,"pitch":-140.75,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":245.5,"pitch":158.6875,"roll":-32.5},"location":"Right Knee"},{"euler":{"heading":46.125,"pitch":-138.0,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:22.708"} +{"sensors":[{"euler":{"heading":346.25,"pitch":128.125,"roll":24.0},"location":"Left Knee"},{"euler":{"heading":102.5625,"pitch":109.625,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":69.625,"pitch":20.6875,"roll":31.3125},"location":"Right Ankle"},{"euler":{"heading":61.0625,"pitch":-146.75,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":257.4375,"pitch":167.625,"roll":-38.5},"location":"Right Knee"},{"euler":{"heading":48.0,"pitch":-143.6875,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:22.808"} +{"sensors":[{"euler":{"heading":352.125,"pitch":127.1875,"roll":18.3125},"location":"Left Knee"},{"euler":{"heading":107.9375,"pitch":112.125,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":69.3125,"pitch":24.0,"roll":29.8125},"location":"Right Ankle"},{"euler":{"heading":50.6875,"pitch":-150.6875,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":260.3125,"pitch":161.75,"roll":-38.75},"location":"Right Knee"},{"euler":{"heading":50.9375,"pitch":-149.0625,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:22.909"} +{"sensors":[{"euler":{"heading":3.375,"pitch":127.625,"roll":8.25},"location":"Left Knee"},{"euler":{"heading":108.4375,"pitch":118.875,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":59.3125,"pitch":19.75,"roll":29.1875},"location":"Right Ankle"},{"euler":{"heading":51.25,"pitch":-152.375,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":254.6875,"pitch":155.0,"roll":-38.625},"location":"Right Knee"},{"euler":{"heading":48.125,"pitch":-140.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:23.10"} +{"sensors":[{"euler":{"heading":19.125,"pitch":126.0,"roll":1.1875},"location":"Left Knee"},{"euler":{"heading":117.0,"pitch":135.125,"roll":61.1875},"location":"Left Ankle"},{"euler":{"heading":56.8125,"pitch":19.1875,"roll":29.625},"location":"Right Ankle"},{"euler":{"heading":49.3125,"pitch":-153.25,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":319.1875,"pitch":148.5,"roll":-37.6875},"location":"Right Knee"},{"euler":{"heading":35.9375,"pitch":-121.5,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:23.111"} +{"sensors":[{"euler":{"heading":7.75,"pitch":133.1875,"roll":9.4375},"location":"Left Knee"},{"euler":{"heading":108.125,"pitch":111.3125,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":53.625,"pitch":18.3125,"roll":29.625},"location":"Right Ankle"},{"euler":{"heading":48.6875,"pitch":-153.9375,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":324.8125,"pitch":142.8125,"roll":-36.8125},"location":"Right Knee"},{"euler":{"heading":28.25,"pitch":-116.6875,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:23.212"} +{"sensors":[{"euler":{"heading":227.5,"pitch":146.6875,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":79.5625,"pitch":100.1875,"roll":29.6875},"location":"Left Ankle"},{"euler":{"heading":49.5625,"pitch":17.9375,"roll":30.1875},"location":"Right Ankle"},{"euler":{"heading":48.75,"pitch":-153.3125,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":330.625,"pitch":138.9375,"roll":-34.625},"location":"Right Knee"},{"euler":{"heading":26.6875,"pitch":-114.625,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:23.312"} +{"sensors":[{"euler":{"heading":240.625,"pitch":156.125,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":60.0,"pitch":96.8125,"roll":9.875},"location":"Left Ankle"},{"euler":{"heading":44.4375,"pitch":14.1875,"roll":30.625},"location":"Right Ankle"},{"euler":{"heading":51.5,"pitch":-156.25,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":332.5625,"pitch":137.1875,"roll":-31.3125},"location":"Right Knee"},{"euler":{"heading":31.3125,"pitch":-118.1875,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:23.414"} +{"sensors":[{"euler":{"heading":245.0,"pitch":150.4375,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":63.8125,"pitch":102.1875,"roll":11.0},"location":"Left Ankle"},{"euler":{"heading":37.375,"pitch":8.6875,"roll":28.375},"location":"Right Ankle"},{"euler":{"heading":53.25,"pitch":-160.1875,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":332.75,"pitch":136.1875,"roll":-27.9375},"location":"Right Knee"},{"euler":{"heading":38.9375,"pitch":-122.25,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:23.515"} +{"sensors":[{"euler":{"heading":322.0625,"pitch":145.5,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":74.1875,"pitch":102.6875,"roll":19.9375},"location":"Left Ankle"},{"euler":{"heading":25.875,"pitch":-3.75,"roll":29.875},"location":"Right Ankle"},{"euler":{"heading":59.3125,"pitch":-153.125,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":339.6875,"pitch":136.625,"roll":-20.0},"location":"Right Knee"},{"euler":{"heading":38.3125,"pitch":-125.25,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:23.615"} +{"sensors":[{"euler":{"heading":326.125,"pitch":141.0,"roll":31.375},"location":"Left Knee"},{"euler":{"heading":80.875,"pitch":103.125,"roll":25.0},"location":"Left Ankle"},{"euler":{"heading":18.9375,"pitch":-12.1875,"roll":31.6875},"location":"Right Ankle"},{"euler":{"heading":70.1875,"pitch":-141.5625,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":213.5625,"pitch":139.875,"roll":-17.6875},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-132.4375,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:23.719"} +{"sensors":[{"euler":{"heading":333.5625,"pitch":135.75,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":90.0625,"pitch":106.1875,"roll":29.6875},"location":"Left Ankle"},{"euler":{"heading":33.6875,"pitch":-2.4375,"roll":34.0},"location":"Right Ankle"},{"euler":{"heading":70.8125,"pitch":-140.625,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":226.125,"pitch":145.8125,"roll":-25.125},"location":"Right Knee"},{"euler":{"heading":45.5,"pitch":-134.5625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:23.820"} +{"sensors":[{"euler":{"heading":340.8125,"pitch":130.5,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":94.875,"pitch":107.375,"roll":33.0},"location":"Left Ankle"},{"euler":{"heading":53.0625,"pitch":10.75,"roll":36.0},"location":"Right Ankle"},{"euler":{"heading":67.375,"pitch":-143.5625,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":244.125,"pitch":158.4375,"roll":-33.5625},"location":"Right Knee"},{"euler":{"heading":50.4375,"pitch":-141.6875,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:23.921"} +{"sensors":[{"euler":{"heading":347.25,"pitch":128.5,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":97.75,"pitch":108.75,"roll":36.9375},"location":"Left Ankle"},{"euler":{"heading":71.5,"pitch":20.25,"roll":30.9375},"location":"Right Ankle"},{"euler":{"heading":59.875,"pitch":-147.375,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":257.5625,"pitch":169.9375,"roll":-38.5},"location":"Right Knee"},{"euler":{"heading":52.0,"pitch":-147.0625,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:24.22"} +{"sensors":[{"euler":{"heading":353.625,"pitch":127.0,"roll":18.5},"location":"Left Knee"},{"euler":{"heading":101.5,"pitch":111.3125,"roll":42.0},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":23.9375,"roll":29.375},"location":"Right Ankle"},{"euler":{"heading":50.3125,"pitch":-151.5,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":261.625,"pitch":164.4375,"roll":-39.125},"location":"Right Knee"},{"euler":{"heading":54.5,"pitch":-150.8125,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:24.122"} +{"sensors":[{"euler":{"heading":2.0625,"pitch":129.0625,"roll":9.0625},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":117.4375,"roll":53.3125},"location":"Left Ankle"},{"euler":{"heading":61.125,"pitch":20.125,"roll":29.375},"location":"Right Ankle"},{"euler":{"heading":47.6875,"pitch":-154.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":257.25,"pitch":156.625,"roll":-39.3125},"location":"Right Knee"},{"euler":{"heading":50.375,"pitch":-145.375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:24.228"} +{"sensors":[{"euler":{"heading":18.4375,"pitch":127.5625,"roll":0.75},"location":"Left Knee"},{"euler":{"heading":116.9375,"pitch":133.4375,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":58.4375,"pitch":17.9375,"roll":29.375},"location":"Right Ankle"},{"euler":{"heading":43.8125,"pitch":-157.1875,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":315.0,"pitch":149.6875,"roll":-39.625},"location":"Right Knee"},{"euler":{"heading":36.1875,"pitch":-122.25,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:24.329"} +{"sensors":[{"euler":{"heading":14.4375,"pitch":131.6875,"roll":4.9375},"location":"Left Knee"},{"euler":{"heading":111.6875,"pitch":114.5,"roll":56.625},"location":"Left Ankle"},{"euler":{"heading":55.75,"pitch":16.3125,"roll":29.4375},"location":"Right Ankle"},{"euler":{"heading":45.9375,"pitch":-158.0,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":317.6875,"pitch":145.8125,"roll":-38.5625},"location":"Right Knee"},{"euler":{"heading":29.5625,"pitch":-116.4375,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:24.429"} +{"sensors":[{"euler":{"heading":221.4375,"pitch":141.75,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":86.375,"pitch":101.25,"roll":34.75},"location":"Left Ankle"},{"euler":{"heading":53.125,"pitch":16.1875,"roll":29.9375},"location":"Right Ankle"},{"euler":{"heading":46.3125,"pitch":-159.3125,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":322.8125,"pitch":142.0625,"roll":-36.1875},"location":"Right Knee"},{"euler":{"heading":28.5625,"pitch":-113.6875,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:24.530"} +{"sensors":[{"euler":{"heading":238.125,"pitch":152.5625,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":63.1875,"pitch":97.5,"roll":13.3125},"location":"Left Ankle"},{"euler":{"heading":47.6875,"pitch":14.375,"roll":30.5},"location":"Right Ankle"},{"euler":{"heading":48.125,"pitch":-161.625,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":326.9375,"pitch":138.8125,"roll":-33.5},"location":"Right Knee"},{"euler":{"heading":31.125,"pitch":-118.125,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:24.631"} +{"sensors":[{"euler":{"heading":242.0,"pitch":153.0,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":62.75,"pitch":99.3125,"roll":11.0625},"location":"Left Ankle"},{"euler":{"heading":41.5625,"pitch":9.6875,"roll":29.8125},"location":"Right Ankle"},{"euler":{"heading":49.875,"pitch":-166.1875,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":327.5625,"pitch":137.375,"roll":-30.0625},"location":"Right Knee"},{"euler":{"heading":36.4375,"pitch":-122.0625,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:24.732"} +{"sensors":[{"euler":{"heading":320.5625,"pitch":145.5,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":73.375,"pitch":101.5,"roll":19.375},"location":"Left Ankle"},{"euler":{"heading":29.6875,"pitch":-0.5625,"roll":31.0},"location":"Right Ankle"},{"euler":{"heading":55.875,"pitch":-157.5,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":333.0625,"pitch":137.0,"roll":-23.0},"location":"Right Knee"},{"euler":{"heading":37.375,"pitch":-122.6875,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:24.833"} +{"sensors":[{"euler":{"heading":326.3125,"pitch":140.5625,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":81.3125,"pitch":103.5,"roll":25.5625},"location":"Left Ankle"},{"euler":{"heading":19.0625,"pitch":-12.0625,"roll":31.75},"location":"Right Ankle"},{"euler":{"heading":68.0625,"pitch":-145.1875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":341.1875,"pitch":138.75,"roll":-17.8125},"location":"Right Knee"},{"euler":{"heading":40.625,"pitch":-127.9375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:24.934"} +{"sensors":[{"euler":{"heading":330.125,"pitch":137.625,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":91.5625,"pitch":105.125,"roll":33.625},"location":"Left Ankle"},{"euler":{"heading":32.125,"pitch":-4.1875,"roll":34.8125},"location":"Right Ankle"},{"euler":{"heading":72.0625,"pitch":-142.0625,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":224.5,"pitch":145.1875,"roll":-23.8125},"location":"Right Knee"},{"euler":{"heading":43.5625,"pitch":-133.9375,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:25.35"} +{"sensors":[{"euler":{"heading":335.25,"pitch":134.75,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":92.8125,"pitch":105.0,"roll":35.8125},"location":"Left Ankle"},{"euler":{"heading":47.25,"pitch":7.5625,"roll":36.4375},"location":"Right Ankle"},{"euler":{"heading":68.1875,"pitch":-144.4375,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":242.75,"pitch":155.75,"roll":-33.6875},"location":"Right Knee"},{"euler":{"heading":47.4375,"pitch":-140.875,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:25.136"} +{"sensors":[{"euler":{"heading":342.5,"pitch":131.9375,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":98.125,"pitch":107.0625,"roll":40.0625},"location":"Left Ankle"},{"euler":{"heading":65.9375,"pitch":18.625,"roll":32.25},"location":"Right Ankle"},{"euler":{"heading":59.4375,"pitch":-148.9375,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":256.5,"pitch":168.4375,"roll":-39.9375},"location":"Right Knee"},{"euler":{"heading":49.4375,"pitch":-144.375,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:25.237"} +{"sensors":[{"euler":{"heading":350.1875,"pitch":128.9375,"roll":19.125},"location":"Left Knee"},{"euler":{"heading":106.8125,"pitch":112.375,"roll":46.875},"location":"Left Ankle"},{"euler":{"heading":69.875,"pitch":20.5,"roll":29.9375},"location":"Right Ankle"},{"euler":{"heading":50.6875,"pitch":-152.375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":260.75,"pitch":167.75,"roll":-41.6875},"location":"Right Knee"},{"euler":{"heading":52.0625,"pitch":-147.125,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:25.338"} +{"sensors":[{"euler":{"heading":2.6875,"pitch":126.75,"roll":9.3125},"location":"Left Knee"},{"euler":{"heading":113.25,"pitch":121.25,"roll":55.875},"location":"Left Ankle"},{"euler":{"heading":60.1875,"pitch":18.0,"roll":30.125},"location":"Right Ankle"},{"euler":{"heading":48.375,"pitch":-155.1875,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":305.3125,"pitch":157.0,"roll":-40.875},"location":"Right Knee"},{"euler":{"heading":51.6875,"pitch":-142.875,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:25.440"} +{"sensors":[{"euler":{"heading":21.6875,"pitch":124.1875,"roll":1.0625},"location":"Left Knee"},{"euler":{"heading":124.875,"pitch":140.4375,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":56.1875,"pitch":17.3125,"roll":30.0},"location":"Right Ankle"},{"euler":{"heading":43.4375,"pitch":-157.3125,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":314.5625,"pitch":148.5625,"roll":-41.0625},"location":"Right Knee"},{"euler":{"heading":37.25,"pitch":-121.125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:25.541"} +{"sensors":[{"euler":{"heading":17.4375,"pitch":130.875,"roll":5.0},"location":"Left Knee"},{"euler":{"heading":114.4375,"pitch":120.375,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":53.0,"pitch":16.25,"roll":28.75},"location":"Right Ankle"},{"euler":{"heading":45.9375,"pitch":-156.25,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":319.5625,"pitch":143.6875,"roll":-39.3125},"location":"Right Knee"},{"euler":{"heading":30.1875,"pitch":-117.125,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:25.642"} +{"sensors":[{"euler":{"heading":223.5625,"pitch":142.1875,"roll":20.75},"location":"Left Knee"},{"euler":{"heading":85.5,"pitch":104.125,"roll":34.1875},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":14.0,"roll":29.5},"location":"Right Ankle"},{"euler":{"heading":49.3125,"pitch":-156.0625,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":321.25,"pitch":141.6875,"roll":-37.0625},"location":"Right Knee"},{"euler":{"heading":29.4375,"pitch":-115.125,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:25.743"} +{"sensors":[{"euler":{"heading":238.0625,"pitch":151.5,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":63.0,"pitch":99.25,"roll":12.625},"location":"Left Ankle"},{"euler":{"heading":43.4375,"pitch":10.8125,"roll":30.4375},"location":"Right Ankle"},{"euler":{"heading":52.5,"pitch":-156.875,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":322.8125,"pitch":139.4375,"roll":-34.4375},"location":"Right Knee"},{"euler":{"heading":33.875,"pitch":-118.375,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:25.845"} +{"sensors":[{"euler":{"heading":242.6875,"pitch":153.125,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":61.375,"pitch":99.0,"roll":8.9375},"location":"Left Ankle"},{"euler":{"heading":35.625,"pitch":6.0625,"roll":28.9375},"location":"Right Ankle"},{"euler":{"heading":54.125,"pitch":-160.875,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":325.4375,"pitch":137.875,"roll":-30.4375},"location":"Right Knee"},{"euler":{"heading":37.9375,"pitch":-121.5,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:25.945"} +{"sensors":[{"euler":{"heading":320.75,"pitch":144.625,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":73.8125,"pitch":101.3125,"roll":18.75},"location":"Left Ankle"},{"euler":{"heading":25.375,"pitch":-7.3125,"roll":29.375},"location":"Right Ankle"},{"euler":{"heading":57.5625,"pitch":-159.9375,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":325.8125,"pitch":138.5625,"roll":-24.5},"location":"Right Knee"},{"euler":{"heading":39.8125,"pitch":-124.6875,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:26.49"} +{"sensors":[{"euler":{"heading":327.375,"pitch":139.5625,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":84.125,"pitch":104.3125,"roll":27.125},"location":"Left Ankle"},{"euler":{"heading":14.125,"pitch":-14.3125,"roll":28.0},"location":"Right Ankle"},{"euler":{"heading":65.1875,"pitch":-147.8125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":339.875,"pitch":136.875,"roll":-17.625},"location":"Right Knee"},{"euler":{"heading":43.0,"pitch":-130.375,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:26.150"} +{"sensors":[{"euler":{"heading":332.875,"pitch":135.0625,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":95.4375,"pitch":106.1875,"roll":34.4375},"location":"Left Ankle"},{"euler":{"heading":25.8125,"pitch":-7.625,"roll":33.0},"location":"Right Ankle"},{"euler":{"heading":69.875,"pitch":-141.875,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":220.25,"pitch":144.75,"roll":-21.625},"location":"Right Knee"},{"euler":{"heading":47.5,"pitch":-136.5625,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:26.250"} +{"sensors":[{"euler":{"heading":338.3125,"pitch":132.3125,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":105.6875,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":6.8125,"roll":34.75},"location":"Right Ankle"},{"euler":{"heading":68.125,"pitch":-142.0,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":238.375,"pitch":156.875,"roll":-30.9375},"location":"Right Knee"},{"euler":{"heading":50.25,"pitch":-142.4375,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:26.351"} +{"sensors":[{"euler":{"heading":344.0,"pitch":130.5,"roll":23.1875},"location":"Left Knee"},{"euler":{"heading":98.625,"pitch":106.375,"roll":40.375},"location":"Left Ankle"},{"euler":{"heading":65.4375,"pitch":17.75,"roll":32.75},"location":"Right Ankle"},{"euler":{"heading":61.1875,"pitch":-146.5625,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":254.0,"pitch":167.75,"roll":-39.5},"location":"Right Knee"},{"euler":{"heading":53.125,"pitch":-148.25,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:26.452"} +{"sensors":[{"euler":{"heading":350.25,"pitch":129.4375,"roll":18.1875},"location":"Left Knee"},{"euler":{"heading":105.5,"pitch":109.5,"roll":46.75},"location":"Left Ankle"},{"euler":{"heading":71.9375,"pitch":20.75,"roll":29.3125},"location":"Right Ankle"},{"euler":{"heading":51.1875,"pitch":-151.25,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":259.875,"pitch":171.9375,"roll":-42.3125},"location":"Right Knee"},{"euler":{"heading":53.75,"pitch":-151.625,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:26.553"} +{"sensors":[{"euler":{"heading":1.625,"pitch":128.0,"roll":9.625},"location":"Left Knee"},{"euler":{"heading":112.5,"pitch":118.25,"roll":56.4375},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":19.1875,"roll":30.125},"location":"Right Ankle"},{"euler":{"heading":49.75,"pitch":-152.75,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":256.5625,"pitch":159.3125,"roll":-40.25},"location":"Right Knee"},{"euler":{"heading":54.0625,"pitch":-147.5,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:26.654"} +{"sensors":[{"euler":{"heading":21.1875,"pitch":125.5,"roll":-0.0625},"location":"Left Knee"},{"euler":{"heading":127.625,"pitch":140.8125,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":54.6875,"pitch":19.25,"roll":29.6875},"location":"Right Ankle"},{"euler":{"heading":45.9375,"pitch":-154.125,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":311.125,"pitch":150.25,"roll":-41.9375},"location":"Right Knee"},{"euler":{"heading":38.5625,"pitch":-124.875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:26.754"} +{"sensors":[{"euler":{"heading":21.0625,"pitch":129.9375,"roll":2.25},"location":"Left Knee"},{"euler":{"heading":121.6875,"pitch":124.3125,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":52.4375,"pitch":17.1875,"roll":28.25},"location":"Right Ankle"},{"euler":{"heading":47.875,"pitch":-154.3125,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":314.25,"pitch":146.1875,"roll":-40.375},"location":"Right Knee"},{"euler":{"heading":31.6875,"pitch":-117.125,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:26.855"} +{"sensors":[{"euler":{"heading":220.75,"pitch":140.0625,"roll":17.5},"location":"Left Knee"},{"euler":{"heading":94.4375,"pitch":105.5625,"roll":38.9375},"location":"Left Ankle"},{"euler":{"heading":49.875,"pitch":14.625,"roll":30.125},"location":"Right Ankle"},{"euler":{"heading":48.8125,"pitch":-155.5,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":315.125,"pitch":144.0,"roll":-38.5},"location":"Right Knee"},{"euler":{"heading":29.625,"pitch":-113.8125,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:26.957"} +{"sensors":[{"euler":{"heading":235.6875,"pitch":151.0,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":63.875,"pitch":98.5,"roll":14.625},"location":"Left Ankle"},{"euler":{"heading":44.0,"pitch":12.1875,"roll":30.3125},"location":"Right Ankle"},{"euler":{"heading":51.125,"pitch":-157.375,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":318.4375,"pitch":140.8125,"roll":-35.5625},"location":"Right Knee"},{"euler":{"heading":32.4375,"pitch":-116.9375,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:27.58"} +{"sensors":[{"euler":{"heading":241.625,"pitch":155.1875,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":59.4375,"pitch":96.9375,"roll":8.4375},"location":"Left Ankle"},{"euler":{"heading":36.4375,"pitch":6.625,"roll":29.5625},"location":"Right Ankle"},{"euler":{"heading":51.1875,"pitch":-163.3125,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":320.5,"pitch":139.125,"roll":-31.9375},"location":"Right Knee"},{"euler":{"heading":37.3125,"pitch":-122.0625,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:27.159"} +{"sensors":[{"euler":{"heading":316.875,"pitch":146.5,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":75.75,"pitch":100.0,"roll":18.9375},"location":"Left Ankle"},{"euler":{"heading":25.8125,"pitch":-7.0625,"roll":28.6875},"location":"Right Ankle"},{"euler":{"heading":54.9375,"pitch":-163.875,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":320.3125,"pitch":139.625,"roll":-25.75},"location":"Right Knee"},{"euler":{"heading":38.0,"pitch":-123.875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:27.260"} +{"sensors":[{"euler":{"heading":324.6875,"pitch":141.6875,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":81.125,"pitch":101.875,"roll":26.25},"location":"Left Ankle"},{"euler":{"heading":13.375,"pitch":-17.25,"roll":27.0625},"location":"Right Ankle"},{"euler":{"heading":65.8125,"pitch":-149.6875,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":335.75,"pitch":136.5625,"roll":-18.0625},"location":"Right Knee"},{"euler":{"heading":41.5,"pitch":-128.8125,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:27.361"} +{"sensors":[{"euler":{"heading":327.375,"pitch":139.4375,"roll":29.0625},"location":"Left Knee"},{"euler":{"heading":90.4375,"pitch":102.9375,"roll":34.0},"location":"Left Ankle"},{"euler":{"heading":21.0625,"pitch":-10.375,"roll":31.0},"location":"Right Ankle"},{"euler":{"heading":69.5625,"pitch":-144.0625,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":215.375,"pitch":142.875,"roll":-21.1875},"location":"Right Knee"},{"euler":{"heading":43.0625,"pitch":-133.375,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:27.462"} +{"sensors":[{"euler":{"heading":334.8125,"pitch":135.8125,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":103.875,"roll":36.625},"location":"Left Ankle"},{"euler":{"heading":45.125,"pitch":3.4375,"roll":35.125},"location":"Right Ankle"},{"euler":{"heading":65.0625,"pitch":-144.25,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":233.625,"pitch":154.1875,"roll":-30.1875},"location":"Right Knee"},{"euler":{"heading":45.4375,"pitch":-136.4375,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:27.563"} +{"sensors":[{"euler":{"heading":341.3125,"pitch":132.75,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":96.3125,"pitch":105.5625,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":62.5625,"pitch":17.6875,"roll":31.8125},"location":"Right Ankle"},{"euler":{"heading":59.875,"pitch":-148.1875,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":252.125,"pitch":165.9375,"roll":-39.375},"location":"Right Knee"},{"euler":{"heading":48.375,"pitch":-141.75,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:27.663"} +{"sensors":[{"euler":{"heading":347.375,"pitch":131.1875,"roll":19.375},"location":"Left Knee"},{"euler":{"heading":102.25,"pitch":107.9375,"roll":45.125},"location":"Left Ankle"},{"euler":{"heading":72.6875,"pitch":18.6875,"roll":29.0625},"location":"Right Ankle"},{"euler":{"heading":50.375,"pitch":-152.625,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":258.0,"pitch":173.0625,"roll":-43.125},"location":"Right Knee"},{"euler":{"heading":50.3125,"pitch":-147.9375,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:27.764"} +{"sensors":[{"euler":{"heading":357.5,"pitch":130.25,"roll":12.125},"location":"Left Knee"},{"euler":{"heading":106.3125,"pitch":113.25,"roll":52.3125},"location":"Left Ankle"},{"euler":{"heading":63.125,"pitch":18.125,"roll":30.25},"location":"Right Ankle"},{"euler":{"heading":45.9375,"pitch":-155.0,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":257.375,"pitch":163.0,"roll":-42.125},"location":"Right Knee"},{"euler":{"heading":53.875,"pitch":-152.0,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:27.864"} +{"sensors":[{"euler":{"heading":16.875,"pitch":128.3125,"roll":1.875},"location":"Left Knee"},{"euler":{"heading":118.9375,"pitch":132.75,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":58.5625,"pitch":14.875,"roll":30.25},"location":"Right Ankle"},{"euler":{"heading":46.3125,"pitch":-156.0,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":301.4375,"pitch":153.9375,"roll":-42.6875},"location":"Right Knee"},{"euler":{"heading":42.5,"pitch":-135.5,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:27.965"} +{"sensors":[{"euler":{"heading":21.1875,"pitch":130.5625,"roll":1.0},"location":"Left Knee"},{"euler":{"heading":116.6875,"pitch":125.75,"roll":61.125},"location":"Left Ankle"},{"euler":{"heading":55.6875,"pitch":13.75,"roll":29.625},"location":"Right Ankle"},{"euler":{"heading":45.0625,"pitch":-157.6875,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":305.4375,"pitch":149.0625,"roll":-42.0625},"location":"Right Knee"},{"euler":{"heading":34.125,"pitch":-118.25,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:28.67"} +{"sensors":[{"euler":{"heading":217.875,"pitch":138.125,"roll":14.5625},"location":"Left Knee"},{"euler":{"heading":96.25,"pitch":106.0,"roll":44.0625},"location":"Left Ankle"},{"euler":{"heading":53.8125,"pitch":13.0,"roll":27.6875},"location":"Right Ankle"},{"euler":{"heading":49.4375,"pitch":-157.0625,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":307.5,"pitch":146.4375,"roll":-40.4375},"location":"Right Knee"},{"euler":{"heading":31.3125,"pitch":-115.875,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:28.167"} +{"sensors":[{"euler":{"heading":234.375,"pitch":148.25,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":68.0,"pitch":100.75,"roll":19.0},"location":"Left Ankle"},{"euler":{"heading":50.0625,"pitch":10.375,"roll":29.75},"location":"Right Ankle"},{"euler":{"heading":51.1875,"pitch":-160.4375,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":309.1875,"pitch":144.1875,"roll":-38.375},"location":"Right Knee"},{"euler":{"heading":33.1875,"pitch":-115.3125,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:28.267"} +{"sensors":[{"euler":{"heading":242.8125,"pitch":154.4375,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":58.75,"pitch":96.375,"roll":8.8125},"location":"Left Ankle"},{"euler":{"heading":43.3125,"pitch":6.0625,"roll":29.375},"location":"Right Ankle"},{"euler":{"heading":54.1875,"pitch":-163.1875,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":310.375,"pitch":141.9375,"roll":-35.3125},"location":"Right Knee"},{"euler":{"heading":40.375,"pitch":-121.9375,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:28.368"} +{"sensors":[{"euler":{"heading":319.25,"pitch":147.125,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":69.625,"pitch":99.5625,"roll":16.375},"location":"Left Ankle"},{"euler":{"heading":31.9375,"pitch":-5.0,"roll":29.125},"location":"Right Ankle"},{"euler":{"heading":57.375,"pitch":-163.375,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":313.5625,"pitch":140.0625,"roll":-29.125},"location":"Right Knee"},{"euler":{"heading":42.6875,"pitch":-126.3125,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:28.468"} +{"sensors":[{"euler":{"heading":328.5625,"pitch":140.6875,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":79.4375,"pitch":103.0,"roll":24.0},"location":"Left Ankle"},{"euler":{"heading":18.1875,"pitch":-13.5625,"roll":27.0625},"location":"Right Ankle"},{"euler":{"heading":67.75,"pitch":-150.375,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":329.8125,"pitch":137.6875,"roll":-20.8125},"location":"Right Knee"},{"euler":{"heading":43.3125,"pitch":-128.3125,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:28.569"} +{"sensors":[{"euler":{"heading":332.9375,"pitch":136.5625,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":94.0625,"pitch":105.25,"roll":34.125},"location":"Left Ankle"},{"euler":{"heading":23.75,"pitch":-7.875,"roll":30.125},"location":"Right Ankle"},{"euler":{"heading":71.125,"pitch":-142.4375,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":216.125,"pitch":142.0625,"roll":-23.125},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-133.625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:28.669"} +{"sensors":[{"euler":{"heading":337.4375,"pitch":133.5,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":94.75,"pitch":105.625,"roll":36.0},"location":"Left Ankle"},{"euler":{"heading":44.4375,"pitch":2.75,"roll":35.1875},"location":"Right Ankle"},{"euler":{"heading":69.0625,"pitch":-142.6875,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":232.625,"pitch":154.125,"roll":-31.9375},"location":"Right Knee"},{"euler":{"heading":48.1875,"pitch":-138.3125,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:28.770"} +{"sensors":[{"euler":{"heading":343.8125,"pitch":131.125,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":98.8125,"pitch":107.1875,"roll":39.5},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":16.3125,"roll":33.9375},"location":"Right Ankle"},{"euler":{"heading":61.0625,"pitch":-147.1875,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":249.9375,"pitch":165.5625,"roll":-38.75},"location":"Right Knee"},{"euler":{"heading":49.875,"pitch":-144.25,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:28.871"} +{"sensors":[{"euler":{"heading":350.1875,"pitch":129.375,"roll":19.625},"location":"Left Knee"},{"euler":{"heading":105.0625,"pitch":110.625,"roll":44.875},"location":"Left Ankle"},{"euler":{"heading":71.5,"pitch":20.1875,"roll":29.75},"location":"Right Ankle"},{"euler":{"heading":49.3125,"pitch":-153.5,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":258.25,"pitch":172.0625,"roll":-42.0},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-148.375,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:28.972"} +{"sensors":[{"euler":{"heading":2.0,"pitch":126.5625,"roll":12.0},"location":"Left Knee"},{"euler":{"heading":110.6875,"pitch":118.5625,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":61.375,"pitch":18.625,"roll":30.4375},"location":"Right Ankle"},{"euler":{"heading":47.0,"pitch":-156.0,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":255.3125,"pitch":161.6875,"roll":-41.5625},"location":"Right Knee"},{"euler":{"heading":54.9375,"pitch":-147.5625,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:29.72"} +{"sensors":[{"euler":{"heading":20.5,"pitch":126.1875,"roll":1.5625},"location":"Left Knee"},{"euler":{"heading":123.0,"pitch":137.4375,"roll":60.8125},"location":"Left Ankle"},{"euler":{"heading":56.6875,"pitch":15.125,"roll":31.0625},"location":"Right Ankle"},{"euler":{"heading":45.875,"pitch":-157.1875,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":301.125,"pitch":153.9375,"roll":-42.3125},"location":"Right Knee"},{"euler":{"heading":36.375,"pitch":-127.1875,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:29.173"} +{"sensors":[{"euler":{"heading":21.0625,"pitch":131.3125,"roll":2.25},"location":"Left Knee"},{"euler":{"heading":114.5,"pitch":124.125,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":53.875,"pitch":13.8125,"roll":30.0625},"location":"Right Ankle"},{"euler":{"heading":47.625,"pitch":-157.875,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":304.6875,"pitch":148.875,"roll":-41.75},"location":"Right Knee"},{"euler":{"heading":30.5625,"pitch":-117.4375,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:29.275"} +{"sensors":[{"euler":{"heading":220.875,"pitch":139.0,"roll":16.5},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":104.1875,"roll":40.6875},"location":"Left Ankle"},{"euler":{"heading":51.5625,"pitch":12.25,"roll":29.5625},"location":"Right Ankle"},{"euler":{"heading":49.875,"pitch":-158.125,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":306.625,"pitch":146.0625,"roll":-40.0625},"location":"Right Knee"},{"euler":{"heading":29.4375,"pitch":-115.5625,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:29.375"} +{"sensors":[{"euler":{"heading":236.0625,"pitch":150.0,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":65.75,"pitch":98.75,"roll":16.0},"location":"Left Ankle"},{"euler":{"heading":46.9375,"pitch":9.5625,"roll":30.5625},"location":"Right Ankle"},{"euler":{"heading":51.75,"pitch":-160.8125,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":309.6875,"pitch":143.25,"roll":-37.5625},"location":"Right Knee"},{"euler":{"heading":31.0,"pitch":-116.875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:29.476"} +{"sensors":[{"euler":{"heading":243.25,"pitch":156.0,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":58.75,"pitch":95.75,"roll":7.0},"location":"Left Ankle"},{"euler":{"heading":40.4375,"pitch":5.5625,"roll":29.5625},"location":"Right Ankle"},{"euler":{"heading":53.5625,"pitch":-163.75,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":312.875,"pitch":140.0625,"roll":-34.125},"location":"Right Knee"},{"euler":{"heading":36.125,"pitch":-121.3125,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:29.577"} +{"sensors":[{"euler":{"heading":241.0625,"pitch":148.75,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":74.0625,"pitch":101.0,"roll":16.9375},"location":"Left Ankle"},{"euler":{"heading":29.75,"pitch":-4.875,"roll":28.625},"location":"Right Ankle"},{"euler":{"heading":55.375,"pitch":-163.625,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":318.5625,"pitch":137.9375,"roll":-27.625},"location":"Right Knee"},{"euler":{"heading":35.75,"pitch":-121.875,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:29.678"} +{"sensors":[{"euler":{"heading":323.9375,"pitch":142.5,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":81.8125,"pitch":103.25,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":13.125,"pitch":-14.0625,"roll":25.3125},"location":"Right Ankle"},{"euler":{"heading":63.6875,"pitch":-151.0,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":333.4375,"pitch":136.5,"roll":-19.625},"location":"Right Knee"},{"euler":{"heading":38.125,"pitch":-124.375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:29.778"} +{"sensors":[{"euler":{"heading":327.25,"pitch":139.9375,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":93.25,"pitch":103.9375,"roll":33.375},"location":"Left Ankle"},{"euler":{"heading":23.4375,"pitch":-10.6875,"roll":30.875},"location":"Right Ankle"},{"euler":{"heading":69.75,"pitch":-144.4375,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":216.125,"pitch":143.5625,"roll":-24.0},"location":"Right Knee"},{"euler":{"heading":38.9375,"pitch":-131.375,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:29.879"} +{"sensors":[{"euler":{"heading":332.4375,"pitch":137.0,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":103.5,"roll":34.9375},"location":"Left Ankle"},{"euler":{"heading":45.25,"pitch":2.5,"roll":34.6875},"location":"Right Ankle"},{"euler":{"heading":67.125,"pitch":-143.75,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":233.9375,"pitch":156.3125,"roll":-32.875},"location":"Right Knee"},{"euler":{"heading":42.3125,"pitch":-137.125,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:29.979"} +{"sensors":[{"euler":{"heading":338.125,"pitch":134.875,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":95.3125,"pitch":103.1875,"roll":38.6875},"location":"Left Ankle"},{"euler":{"heading":68.875,"pitch":17.875,"roll":28.0625},"location":"Right Ankle"},{"euler":{"heading":62.375,"pitch":-147.25,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":250.5625,"pitch":169.1875,"roll":-40.4375},"location":"Right Knee"},{"euler":{"heading":45.0,"pitch":-142.1875,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:30.80"} +{"sensors":[{"euler":{"heading":344.9375,"pitch":132.8125,"roll":20.0},"location":"Left Knee"},{"euler":{"heading":100.5625,"pitch":105.3125,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":18.375,"roll":28.6875},"location":"Right Ankle"},{"euler":{"heading":52.1875,"pitch":-151.5,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":258.6875,"pitch":175.875,"roll":-43.5625},"location":"Right Knee"},{"euler":{"heading":47.4375,"pitch":-146.5,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:30.180"} +{"sensors":[{"euler":{"heading":353.75,"pitch":131.9375,"roll":13.5625},"location":"Left Knee"},{"euler":{"heading":106.375,"pitch":109.5,"roll":52.9375},"location":"Left Ankle"},{"euler":{"heading":64.375,"pitch":18.0,"roll":30.0},"location":"Right Ankle"},{"euler":{"heading":48.375,"pitch":-153.75,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":257.0625,"pitch":165.3125,"roll":-42.9375},"location":"Right Knee"},{"euler":{"heading":49.625,"pitch":-150.0,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:30.282"} +{"sensors":[{"euler":{"heading":14.0625,"pitch":130.5625,"roll":2.1875},"location":"Left Knee"},{"euler":{"heading":117.75,"pitch":128.4375,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":13.25,"roll":30.4375},"location":"Right Ankle"},{"euler":{"heading":50.1875,"pitch":-154.0625,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":292.125,"pitch":158.5,"roll":-43.875},"location":"Right Knee"},{"euler":{"heading":39.4375,"pitch":-134.0,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:30.383"} +{"sensors":[{"euler":{"heading":20.4375,"pitch":132.25,"roll":0.75},"location":"Left Knee"},{"euler":{"heading":112.75,"pitch":124.9375,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":54.1875,"pitch":11.75,"roll":30.0625},"location":"Right Ankle"},{"euler":{"heading":46.375,"pitch":-161.125,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":298.75,"pitch":152.5,"roll":-42.875},"location":"Right Knee"},{"euler":{"heading":31.1875,"pitch":-117.1875,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:30.483"} +{"sensors":[{"euler":{"heading":215.5625,"pitch":138.125,"roll":12.8125},"location":"Left Knee"},{"euler":{"heading":98.8125,"pitch":105.125,"roll":45.375},"location":"Left Ankle"},{"euler":{"heading":52.9375,"pitch":10.875,"roll":29.625},"location":"Right Ankle"},{"euler":{"heading":50.4375,"pitch":-155.9375,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":300.5,"pitch":149.9375,"roll":-41.375},"location":"Right Knee"},{"euler":{"heading":26.625,"pitch":-115.8125,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:30.584"} +{"sensors":[{"euler":{"heading":231.6875,"pitch":147.6875,"roll":28.0625},"location":"Left Knee"},{"euler":{"heading":70.5,"pitch":101.3125,"roll":20.875},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":8.125,"roll":29.75},"location":"Right Ankle"},{"euler":{"heading":51.8125,"pitch":-159.0625,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":301.3125,"pitch":147.75,"roll":-39.75},"location":"Right Knee"},{"euler":{"heading":28.375,"pitch":-114.375,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:30.685"} +{"sensors":[{"euler":{"heading":241.875,"pitch":155.0625,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":95.375,"roll":7.625},"location":"Left Ankle"},{"euler":{"heading":43.5625,"pitch":4.6875,"roll":27.1875},"location":"Right Ankle"},{"euler":{"heading":54.5,"pitch":-162.8125,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":302.6875,"pitch":144.4375,"roll":-37.5625},"location":"Right Knee"},{"euler":{"heading":35.75,"pitch":-121.125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:30.785"} +{"sensors":[{"euler":{"heading":240.6875,"pitch":148.875,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":64.8125,"pitch":99.875,"roll":13.625},"location":"Left Ankle"},{"euler":{"heading":36.0625,"pitch":-0.8125,"roll":28.1875},"location":"Right Ankle"},{"euler":{"heading":55.1875,"pitch":-167.3125,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":306.0,"pitch":142.0,"roll":-33.8125},"location":"Right Knee"},{"euler":{"heading":39.0,"pitch":-122.6875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:30.886"} +{"sensors":[{"euler":{"heading":328.9375,"pitch":141.6875,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":77.1875,"pitch":103.5625,"roll":21.875},"location":"Left Ankle"},{"euler":{"heading":22.4375,"pitch":-10.875,"roll":28.3125},"location":"Right Ankle"},{"euler":{"heading":64.0,"pitch":-156.125,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":317.625,"pitch":139.5625,"roll":-24.8125},"location":"Right Knee"},{"euler":{"heading":41.125,"pitch":-126.625,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:30.986"} +{"sensors":[{"euler":{"heading":334.375,"pitch":136.6875,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":105.5,"roll":31.8125},"location":"Left Ankle"},{"euler":{"heading":24.125,"pitch":-13.8125,"roll":30.9375},"location":"Right Ankle"},{"euler":{"heading":72.5625,"pitch":-144.375,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":209.625,"pitch":145.1875,"roll":-23.875},"location":"Right Knee"},{"euler":{"heading":46.0625,"pitch":-133.9375,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:31.87"} +{"sensors":[{"euler":{"heading":338.875,"pitch":133.0625,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":95.6875,"pitch":106.0,"roll":34.8125},"location":"Left Ankle"},{"euler":{"heading":45.6875,"pitch":-0.8125,"roll":34.3125},"location":"Right Ankle"},{"euler":{"heading":71.6875,"pitch":-141.4375,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":227.4375,"pitch":154.875,"roll":-31.6875},"location":"Right Knee"},{"euler":{"heading":48.9375,"pitch":-139.0625,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:31.191"} +{"sensors":[{"euler":{"heading":344.0,"pitch":131.25,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":107.0,"roll":37.8125},"location":"Left Ankle"},{"euler":{"heading":64.125,"pitch":13.625,"roll":33.4375},"location":"Right Ankle"},{"euler":{"heading":66.25,"pitch":-145.875,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":246.125,"pitch":168.25,"roll":-39.3125},"location":"Right Knee"},{"euler":{"heading":50.0625,"pitch":-144.0625,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:31.292"} +{"sensors":[{"euler":{"heading":349.3125,"pitch":130.0,"roll":20.3125},"location":"Left Knee"},{"euler":{"heading":103.3125,"pitch":109.8125,"roll":43.75},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":18.9375,"roll":29.625},"location":"Right Ankle"},{"euler":{"heading":56.5,"pitch":-151.375,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":256.5,"pitch":178.5,"roll":-42.5625},"location":"Right Knee"},{"euler":{"heading":49.9375,"pitch":-147.625,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:31.393"} +{"sensors":[{"euler":{"heading":357.875,"pitch":128.875,"roll":13.375},"location":"Left Knee"},{"euler":{"heading":108.3125,"pitch":115.5625,"roll":50.5625},"location":"Left Ankle"},{"euler":{"heading":67.9375,"pitch":19.4375,"roll":30.0625},"location":"Right Ankle"},{"euler":{"heading":50.25,"pitch":-154.125,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":256.0,"pitch":169.9375,"roll":-41.8125},"location":"Right Knee"},{"euler":{"heading":49.875,"pitch":-149.8125,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:31.493"} +{"sensors":[{"euler":{"heading":17.375,"pitch":127.875,"roll":2.0625},"location":"Left Knee"},{"euler":{"heading":117.875,"pitch":133.25,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":59.8125,"pitch":15.3125,"roll":30.4375},"location":"Right Ankle"},{"euler":{"heading":50.75,"pitch":-156.0625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":287.875,"pitch":161.9375,"roll":-42.6875},"location":"Right Knee"},{"euler":{"heading":39.3125,"pitch":-133.6875,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:31.594"} +{"sensors":[{"euler":{"heading":21.9375,"pitch":128.6875,"roll":2.0},"location":"Left Knee"},{"euler":{"heading":116.0625,"pitch":129.8125,"roll":56.3125},"location":"Left Ankle"},{"euler":{"heading":57.125,"pitch":15.0,"roll":29.8125},"location":"Right Ankle"},{"euler":{"heading":46.6875,"pitch":-157.0,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":297.1875,"pitch":154.875,"roll":-42.3125},"location":"Right Knee"},{"euler":{"heading":33.0625,"pitch":-118.8125,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:31.694"} +{"sensors":[{"euler":{"heading":217.8125,"pitch":138.8125,"roll":15.75},"location":"Left Knee"},{"euler":{"heading":81.75,"pitch":106.9375,"roll":41.75},"location":"Left Ankle"},{"euler":{"heading":53.375,"pitch":16.1875,"roll":28.9375},"location":"Right Ankle"},{"euler":{"heading":49.6875,"pitch":-154.5,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":304.875,"pitch":149.0625,"roll":-41.125},"location":"Right Knee"},{"euler":{"heading":27.5,"pitch":-115.25,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:31.797"} +{"sensors":[{"euler":{"heading":232.8125,"pitch":147.75,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":70.0625,"pitch":101.0625,"roll":20.0625},"location":"Left Ankle"},{"euler":{"heading":47.375,"pitch":16.375,"roll":29.0625},"location":"Right Ankle"},{"euler":{"heading":52.9375,"pitch":-152.875,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":311.0625,"pitch":144.5,"roll":-39.0625},"location":"Right Knee"},{"euler":{"heading":28.8125,"pitch":-116.125,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:31.898"} +{"sensors":[{"euler":{"heading":242.5625,"pitch":155.1875,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":57.125,"pitch":95.9375,"roll":6.9375},"location":"Left Ankle"},{"euler":{"heading":40.875,"pitch":13.0,"roll":28.375},"location":"Right Ankle"},{"euler":{"heading":55.75,"pitch":-154.75,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":313.0625,"pitch":141.125,"roll":-36.75},"location":"Right Knee"},{"euler":{"heading":35.625,"pitch":-120.625,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:31.999"} +{"sensors":[{"euler":{"heading":243.875,"pitch":148.4375,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":62.375,"pitch":100.5,"roll":10.3125},"location":"Left Ankle"},{"euler":{"heading":32.4375,"pitch":4.8125,"roll":28.125},"location":"Right Ankle"},{"euler":{"heading":56.9375,"pitch":-161.0625,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":314.25,"pitch":139.3125,"roll":-16.1875},"location":"Right Knee"},{"euler":{"heading":41.625,"pitch":-124.0625,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:32.99"} +{"sensors":[{"euler":{"heading":326.3125,"pitch":142.9375,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":75.25,"pitch":102.5625,"roll":20.5},"location":"Left Ankle"},{"euler":{"heading":20.6875,"pitch":-8.8125,"roll":28.0625},"location":"Right Ankle"},{"euler":{"heading":64.125,"pitch":-154.25,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":315.875,"pitch":139.375,"roll":-26.3125},"location":"Right Knee"},{"euler":{"heading":40.3125,"pitch":-126.4375,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:32.200"} +{"sensors":[{"euler":{"heading":334.6875,"pitch":137.375,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":83.125,"pitch":105.125,"roll":26.125},"location":"Left Ankle"},{"euler":{"heading":14.9375,"pitch":-16.25,"roll":27.8125},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":-142.8125,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":206.1875,"pitch":142.0,"roll":-22.0},"location":"Right Knee"},{"euler":{"heading":46.1875,"pitch":-132.6875,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:32.301"} +{"sensors":[{"euler":{"heading":338.1875,"pitch":134.5,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":87.4375,"pitch":105.0625,"roll":30.0625},"location":"Left Ankle"},{"euler":{"heading":30.1875,"pitch":-6.0,"roll":32.9375},"location":"Right Ankle"},{"euler":{"heading":76.6875,"pitch":-139.3125,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":219.625,"pitch":149.8125,"roll":-28.1875},"location":"Right Knee"},{"euler":{"heading":48.6875,"pitch":-136.25,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:32.402"} +{"sensors":[{"euler":{"heading":341.4375,"pitch":132.625,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":89.6875,"pitch":104.75,"roll":32.6875},"location":"Left Ankle"},{"euler":{"heading":51.4375,"pitch":9.375,"roll":34.5625},"location":"Right Ankle"},{"euler":{"heading":73.0,"pitch":-142.5,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":238.5625,"pitch":162.4375,"roll":-36.0},"location":"Right Knee"},{"euler":{"heading":50.0,"pitch":-142.25,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:32.503"} +{"sensors":[{"euler":{"heading":347.875,"pitch":129.875,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":94.4375,"pitch":106.5,"roll":36.5625},"location":"Left Ankle"},{"euler":{"heading":69.375,"pitch":18.25,"roll":30.5625},"location":"Right Ankle"},{"euler":{"heading":64.125,"pitch":-146.125,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":252.875,"pitch":174.625,"roll":-41.4375},"location":"Right Knee"},{"euler":{"heading":51.4375,"pitch":-146.875,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:32.604"} +{"sensors":[{"euler":{"heading":356.25,"pitch":127.1875,"roll":16.25},"location":"Left Knee"},{"euler":{"heading":103.25,"pitch":111.375,"roll":45.0},"location":"Left Ankle"},{"euler":{"heading":73.8125,"pitch":20.5,"roll":28.125},"location":"Right Ankle"},{"euler":{"heading":55.125,"pitch":-150.375,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":258.25,"pitch":177.3125,"roll":-43.25},"location":"Right Knee"},{"euler":{"heading":51.875,"pitch":-147.625,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:32.704"} +{"sensors":[{"euler":{"heading":9.75,"pitch":125.5625,"roll":6.75},"location":"Left Knee"},{"euler":{"heading":112.8125,"pitch":123.25,"roll":55.75},"location":"Left Ankle"},{"euler":{"heading":64.0,"pitch":14.125,"roll":29.3125},"location":"Right Ankle"},{"euler":{"heading":54.125,"pitch":-152.875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":252.4375,"pitch":168.5,"roll":-43.5},"location":"Right Knee"},{"euler":{"heading":53.0,"pitch":-143.625,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:32.804"} +{"sensors":[{"euler":{"heading":28.1875,"pitch":121.75,"roll":-2.0},"location":"Left Knee"},{"euler":{"heading":129.125,"pitch":145.375,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":11.6875,"roll":29.1875},"location":"Right Ankle"},{"euler":{"heading":48.8125,"pitch":-156.9375,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":284.625,"pitch":160.1875,"roll":-44.875},"location":"Right Knee"},{"euler":{"heading":42.125,"pitch":-122.1875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:32.907"} +{"sensors":[{"euler":{"heading":26.9375,"pitch":128.375,"roll":1.125},"location":"Left Knee"},{"euler":{"heading":118.6875,"pitch":127.0,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":56.125,"pitch":10.0,"roll":29.125},"location":"Right Ankle"},{"euler":{"heading":51.875,"pitch":-156.1875,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":288.375,"pitch":155.1875,"roll":-44.6875},"location":"Right Knee"},{"euler":{"heading":34.9375,"pitch":-117.375,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:33.9"} +{"sensors":[{"euler":{"heading":226.4375,"pitch":139.6875,"roll":19.3125},"location":"Left Knee"},{"euler":{"heading":90.625,"pitch":109.375,"roll":37.1875},"location":"Left Ankle"},{"euler":{"heading":53.25,"pitch":8.625,"roll":29.4375},"location":"Right Ankle"},{"euler":{"heading":54.375,"pitch":-156.3125,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":290.6875,"pitch":151.75,"roll":-43.5},"location":"Right Knee"},{"euler":{"heading":33.875,"pitch":-116.125,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:33.112"} +{"sensors":[{"euler":{"heading":242.875,"pitch":148.9375,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":64.0625,"pitch":105.8125,"roll":12.25},"location":"Left Ankle"},{"euler":{"heading":47.875,"pitch":6.875,"roll":29.625},"location":"Right Ankle"},{"euler":{"heading":55.75,"pitch":-158.0,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":295.75,"pitch":147.375,"roll":-41.0625},"location":"Right Knee"},{"euler":{"heading":36.125,"pitch":-118.6875,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:33.213"} +{"sensors":[{"euler":{"heading":246.5625,"pitch":154.0625,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":57.8125,"pitch":101.6875,"roll":5.4375},"location":"Left Ankle"},{"euler":{"heading":38.9375,"pitch":3.0,"roll":29.25},"location":"Right Ankle"},{"euler":{"heading":57.0625,"pitch":-161.5,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":301.0,"pitch":143.25,"roll":-36.875},"location":"Right Knee"},{"euler":{"heading":38.6875,"pitch":-122.0,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:33.313"} +{"sensors":[{"euler":{"heading":325.9375,"pitch":146.0625,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":72.75,"pitch":104.1875,"roll":15.75},"location":"Left Ankle"},{"euler":{"heading":27.6875,"pitch":-7.0,"roll":27.3125},"location":"Right Ankle"},{"euler":{"heading":59.125,"pitch":-161.375,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":304.125,"pitch":140.3125,"roll":-31.375},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-124.6875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:33.414"} +{"sensors":[{"euler":{"heading":333.8125,"pitch":139.5,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":79.6875,"pitch":105.6875,"roll":22.25},"location":"Left Ankle"},{"euler":{"heading":13.4375,"pitch":-15.4375,"roll":24.3125},"location":"Right Ankle"},{"euler":{"heading":68.8125,"pitch":-149.6875,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":321.0,"pitch":138.125,"roll":-22.75},"location":"Right Knee"},{"euler":{"heading":45.75,"pitch":-128.8125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:33.514"} +{"sensors":[{"euler":{"heading":336.9375,"pitch":135.875,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":84.0625,"pitch":105.8125,"roll":25.9375},"location":"Left Ankle"},{"euler":{"heading":20.125,"pitch":-13.4375,"roll":29.0},"location":"Right Ankle"},{"euler":{"heading":73.375,"pitch":-143.5,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":211.5,"pitch":145.6875,"roll":-26.5625},"location":"Right Knee"},{"euler":{"heading":48.625,"pitch":-134.1875,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:33.616"} +{"sensors":[{"euler":{"heading":338.6875,"pitch":134.5625,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":105.375,"roll":28.8125},"location":"Left Ankle"},{"euler":{"heading":42.0,"pitch":-1.9375,"roll":34.9375},"location":"Right Ankle"},{"euler":{"heading":71.9375,"pitch":-143.25,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":229.0625,"pitch":156.875,"roll":-34.875},"location":"Right Knee"},{"euler":{"heading":49.6875,"pitch":-140.9375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:33.717"} +{"sensors":[{"euler":{"heading":344.1875,"pitch":132.1875,"roll":24.0625},"location":"Left Knee"},{"euler":{"heading":90.1875,"pitch":105.5,"roll":32.25},"location":"Left Ankle"},{"euler":{"heading":62.5,"pitch":11.875,"roll":33.5625},"location":"Right Ankle"},{"euler":{"heading":65.8125,"pitch":-145.8125,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":245.875,"pitch":171.1875,"roll":-39.1875},"location":"Right Knee"},{"euler":{"heading":51.3125,"pitch":-145.8125,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:33.818"} +{"sensors":[{"euler":{"heading":349.8125,"pitch":130.375,"roll":20.0625},"location":"Left Knee"},{"euler":{"heading":95.125,"pitch":106.75,"roll":37.25},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":14.875,"roll":30.0},"location":"Right Ankle"},{"euler":{"heading":56.75,"pitch":-149.75,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":254.1875,"pitch":-178.5625,"roll":-42.125},"location":"Right Knee"},{"euler":{"heading":52.6875,"pitch":-149.8125,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:33.919"} +{"sensors":[{"euler":{"heading":357.5,"pitch":128.8125,"roll":14.125},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":111.0,"roll":44.6875},"location":"Left Ankle"},{"euler":{"heading":65.375,"pitch":15.625,"roll":30.25},"location":"Right Ankle"},{"euler":{"heading":50.1875,"pitch":-154.1875,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":254.125,"pitch":171.75,"roll":-43.25},"location":"Right Knee"},{"euler":{"heading":56.875,"pitch":-154.0,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:34.21"} +{"sensors":[{"euler":{"heading":14.875,"pitch":127.3125,"roll":2.25},"location":"Left Knee"},{"euler":{"heading":115.9375,"pitch":128.8125,"roll":57.6875},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":13.75,"roll":30.0625},"location":"Right Ankle"},{"euler":{"heading":50.25,"pitch":-155.125,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":284.5,"pitch":163.375,"roll":-42.9375},"location":"Right Knee"},{"euler":{"heading":47.4375,"pitch":-138.0,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:34.122"} +{"sensors":[{"euler":{"heading":25.75,"pitch":124.9375,"roll":0.125},"location":"Left Knee"},{"euler":{"heading":120.8125,"pitch":132.125,"roll":59.3125},"location":"Left Ankle"},{"euler":{"heading":54.5,"pitch":12.8125,"roll":29.5},"location":"Right Ankle"},{"euler":{"heading":48.4375,"pitch":-157.0625,"roll":79.75},"location":"Right Hip"},{"euler":{"heading":291.8125,"pitch":156.25,"roll":-43.6875},"location":"Right Knee"},{"euler":{"heading":39.0,"pitch":-120.125,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:34.222"} +{"sensors":[{"euler":{"heading":9.8125,"pitch":133.9375,"roll":10.125},"location":"Left Knee"},{"euler":{"heading":101.75,"pitch":112.0,"roll":44.875},"location":"Left Ankle"},{"euler":{"heading":50.5,"pitch":12.0625,"roll":29.125},"location":"Right Ankle"},{"euler":{"heading":51.5,"pitch":-155.875,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":295.6875,"pitch":151.0625,"roll":-43.25},"location":"Right Knee"},{"euler":{"heading":34.375,"pitch":-118.0625,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:34.324"} +{"sensors":[{"euler":{"heading":232.5625,"pitch":146.0,"roll":26.375},"location":"Left Knee"},{"euler":{"heading":68.8125,"pitch":102.5,"roll":19.3125},"location":"Left Ankle"},{"euler":{"heading":45.875,"pitch":9.5625,"roll":29.25},"location":"Right Ankle"},{"euler":{"heading":53.1875,"pitch":-157.75,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":298.125,"pitch":148.0,"roll":-41.3125},"location":"Right Knee"},{"euler":{"heading":32.9375,"pitch":-117.3125,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:34.425"} +{"sensors":[{"euler":{"heading":243.625,"pitch":155.0625,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":54.4375,"pitch":96.4375,"roll":4.4375},"location":"Left Ankle"},{"euler":{"heading":39.875,"pitch":4.8125,"roll":28.75},"location":"Right Ankle"},{"euler":{"heading":54.9375,"pitch":-161.0,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":299.8125,"pitch":144.625,"roll":-38.75},"location":"Right Knee"},{"euler":{"heading":36.4375,"pitch":-122.0,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:34.526"} +{"sensors":[{"euler":{"heading":243.3125,"pitch":149.5625,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":65.875,"pitch":101.75,"roll":12.6875},"location":"Left Ankle"},{"euler":{"heading":29.4375,"pitch":-5.9375,"roll":27.375},"location":"Right Ankle"},{"euler":{"heading":56.0625,"pitch":-165.4375,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":301.8125,"pitch":141.375,"roll":-33.6875},"location":"Right Knee"},{"euler":{"heading":39.8125,"pitch":-124.3125,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:34.631"} +{"sensors":[{"euler":{"heading":330.125,"pitch":142.9375,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":74.9375,"pitch":103.25,"roll":21.0},"location":"Left Ankle"},{"euler":{"heading":14.875,"pitch":-15.25,"roll":25.3125},"location":"Right Ankle"},{"euler":{"heading":64.4375,"pitch":-152.4375,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":312.5,"pitch":139.3125,"roll":-26.0},"location":"Right Knee"},{"euler":{"heading":40.125,"pitch":-126.6875,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:34.732"} +{"sensors":[{"euler":{"heading":335.5,"pitch":138.1875,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":81.8125,"pitch":104.8125,"roll":25.25},"location":"Left Ankle"},{"euler":{"heading":21.5,"pitch":-11.5625,"roll":28.9375},"location":"Right Ankle"},{"euler":{"heading":72.0625,"pitch":-143.5,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":210.75,"pitch":144.4375,"roll":-25.8125},"location":"Right Knee"},{"euler":{"heading":45.75,"pitch":-132.6875,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:34.833"} +{"sensors":[{"euler":{"heading":341.1875,"pitch":134.0625,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":85.625,"pitch":104.75,"roll":28.0625},"location":"Left Ankle"},{"euler":{"heading":43.9375,"pitch":-0.375,"roll":34.9375},"location":"Right Ankle"},{"euler":{"heading":70.0625,"pitch":-143.375,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":230.0625,"pitch":158.6875,"roll":-35.9375},"location":"Right Knee"},{"euler":{"heading":49.6875,"pitch":-138.9375,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:34.935"} +{"sensors":[{"euler":{"heading":346.6875,"pitch":131.6875,"roll":24.25},"location":"Left Knee"},{"euler":{"heading":89.1875,"pitch":105.4375,"roll":31.4375},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":12.625,"roll":33.9375},"location":"Right Ankle"},{"euler":{"heading":63.25,"pitch":-147.6875,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":245.5625,"pitch":172.0625,"roll":-39.375},"location":"Right Knee"},{"euler":{"heading":50.6875,"pitch":-143.6875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:35.35"} +{"sensors":[{"euler":{"heading":352.9375,"pitch":130.125,"roll":19.4375},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":107.75,"roll":36.3125},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":15.0625,"roll":30.5},"location":"Right Ankle"},{"euler":{"heading":52.3125,"pitch":-153.75,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":251.875,"pitch":179.9375,"roll":-43.25},"location":"Right Knee"},{"euler":{"heading":52.3125,"pitch":-147.75,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:35.136"} +{"sensors":[{"euler":{"heading":1.8125,"pitch":129.5625,"roll":12.0},"location":"Left Knee"},{"euler":{"heading":98.75,"pitch":112.25,"roll":44.9375},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":16.875,"roll":30.4375},"location":"Right Ankle"},{"euler":{"heading":48.375,"pitch":-155.9375,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":251.375,"pitch":168.0625,"roll":-42.75},"location":"Right Knee"},{"euler":{"heading":54.5,"pitch":-149.75,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:35.237"} +{"sensors":[{"euler":{"heading":21.25,"pitch":126.625,"roll":2.0},"location":"Left Knee"},{"euler":{"heading":116.375,"pitch":132.9375,"roll":56.3125},"location":"Left Ankle"},{"euler":{"heading":57.0625,"pitch":14.4375,"roll":30.25},"location":"Right Ankle"},{"euler":{"heading":48.3125,"pitch":-156.75,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":285.8125,"pitch":160.25,"roll":-42.9375},"location":"Right Knee"},{"euler":{"heading":40.8125,"pitch":-133.625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:35.338"} +{"sensors":[{"euler":{"heading":23.875,"pitch":130.125,"roll":1.9375},"location":"Left Knee"},{"euler":{"heading":111.375,"pitch":121.875,"roll":53.8125},"location":"Left Ankle"},{"euler":{"heading":53.875,"pitch":13.5,"roll":29.3125},"location":"Right Ankle"},{"euler":{"heading":48.25,"pitch":-158.0,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":293.9375,"pitch":152.3125,"roll":-43.3125},"location":"Right Knee"},{"euler":{"heading":34.0,"pitch":-119.0625,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:35.439"} +{"sensors":[{"euler":{"heading":222.25,"pitch":139.5625,"roll":16.0},"location":"Left Knee"},{"euler":{"heading":89.25,"pitch":106.4375,"roll":35.8125},"location":"Left Ankle"},{"euler":{"heading":50.9375,"pitch":12.75,"roll":29.3125},"location":"Right Ankle"},{"euler":{"heading":50.1875,"pitch":-157.6875,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":297.875,"pitch":148.375,"roll":-42.0},"location":"Right Knee"},{"euler":{"heading":31.75,"pitch":-117.875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:35.540"} +{"sensors":[{"euler":{"heading":237.0,"pitch":150.5625,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":62.9375,"pitch":99.5,"roll":13.75},"location":"Left Ankle"},{"euler":{"heading":45.6875,"pitch":10.25,"roll":29.375},"location":"Right Ankle"},{"euler":{"heading":51.75,"pitch":-160.4375,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":301.25,"pitch":144.5625,"roll":-39.6875},"location":"Right Knee"},{"euler":{"heading":32.125,"pitch":-118.8125,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:35.640"} +{"sensors":[{"euler":{"heading":243.8125,"pitch":156.4375,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":54.5,"pitch":94.8125,"roll":4.8125},"location":"Left Ankle"},{"euler":{"heading":38.0,"pitch":5.0625,"roll":27.8125},"location":"Right Ankle"},{"euler":{"heading":54.0,"pitch":-163.375,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":302.6875,"pitch":141.4375,"roll":-37.1875},"location":"Right Knee"},{"euler":{"heading":37.125,"pitch":-122.6875,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:35.741"} +{"sensors":[{"euler":{"heading":244.125,"pitch":147.75,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":67.625,"pitch":101.75,"roll":13.875},"location":"Left Ankle"},{"euler":{"heading":28.25,"pitch":-3.125,"roll":27.75},"location":"Right Ankle"},{"euler":{"heading":54.9375,"pitch":-166.8125,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":308.1875,"pitch":138.75,"roll":-31.25},"location":"Right Knee"},{"euler":{"heading":39.9375,"pitch":-124.5,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:35.842"} +{"sensors":[{"euler":{"heading":331.25,"pitch":141.375,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":76.875,"pitch":103.875,"roll":21.3125},"location":"Left Ankle"},{"euler":{"heading":13.5,"pitch":-12.5625,"roll":25.3125},"location":"Right Ankle"},{"euler":{"heading":63.4375,"pitch":-153.75,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":320.5,"pitch":137.5,"roll":-23.0},"location":"Right Knee"},{"euler":{"heading":40.5,"pitch":-126.3125,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:35.942"} +{"sensors":[{"euler":{"heading":335.6875,"pitch":137.4375,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":85.0625,"pitch":105.1875,"roll":27.1875},"location":"Left Ankle"},{"euler":{"heading":17.625,"pitch":-13.4375,"roll":29.1875},"location":"Right Ankle"},{"euler":{"heading":71.125,"pitch":-143.6875,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":207.9375,"pitch":143.25,"roll":-24.125},"location":"Right Knee"},{"euler":{"heading":44.6875,"pitch":-132.875,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:36.43"} +{"sensors":[{"euler":{"heading":339.5,"pitch":134.4375,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":88.5,"pitch":105.1875,"roll":29.75},"location":"Left Ankle"},{"euler":{"heading":38.6875,"pitch":-3.0625,"roll":34.0625},"location":"Right Ankle"},{"euler":{"heading":70.75,"pitch":-143.5,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":224.0,"pitch":152.8125,"roll":-32.125},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-138.3125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:36.143"} +{"sensors":[{"euler":{"heading":345.4375,"pitch":132.0,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":91.5,"pitch":106.0,"roll":32.625},"location":"Left Ankle"},{"euler":{"heading":56.875,"pitch":10.3125,"roll":35.0},"location":"Right Ankle"},{"euler":{"heading":65.6875,"pitch":-146.4375,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":244.3125,"pitch":169.5,"roll":-37.25},"location":"Right Knee"},{"euler":{"heading":48.3125,"pitch":-144.375,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:36.245"} +{"sensors":[{"euler":{"heading":350.9375,"pitch":130.375,"roll":20.125},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":107.75,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":71.25,"pitch":17.875,"roll":30.625},"location":"Right Ankle"},{"euler":{"heading":54.8125,"pitch":-151.8125,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":254.3125,"pitch":178.25,"roll":-41.4375},"location":"Right Knee"},{"euler":{"heading":48.25,"pitch":-148.0625,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:36.345"} +{"sensors":[{"euler":{"heading":359.0,"pitch":128.875,"roll":13.75},"location":"Left Knee"},{"euler":{"heading":100.0,"pitch":112.6875,"roll":43.875},"location":"Left Ankle"},{"euler":{"heading":67.1875,"pitch":18.625,"roll":29.9375},"location":"Right Ankle"},{"euler":{"heading":49.6875,"pitch":-155.375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":254.0625,"pitch":170.6875,"roll":-42.625},"location":"Right Knee"},{"euler":{"heading":52.5625,"pitch":-152.375,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:36.447"} +{"sensors":[{"euler":{"heading":18.25,"pitch":127.25,"roll":2.1875},"location":"Left Knee"},{"euler":{"heading":114.1875,"pitch":129.875,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":13.0,"roll":29.625},"location":"Right Ankle"},{"euler":{"heading":51.3125,"pitch":-156.625,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":281.3125,"pitch":163.6875,"roll":-43.1875},"location":"Right Knee"},{"euler":{"heading":43.3125,"pitch":-136.8125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:36.547"} +{"sensors":[{"euler":{"heading":28.3125,"pitch":126.6875,"roll":-1.5},"location":"Left Knee"},{"euler":{"heading":116.6875,"pitch":131.375,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":55.875,"pitch":11.875,"roll":29.0625},"location":"Right Ankle"},{"euler":{"heading":49.375,"pitch":-158.8125,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":289.1875,"pitch":156.9375,"roll":-42.9375},"location":"Right Knee"},{"euler":{"heading":35.3125,"pitch":-119.875,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:36.649"} +{"sensors":[{"euler":{"heading":14.625,"pitch":133.75,"roll":8.625},"location":"Left Knee"},{"euler":{"heading":102.5625,"pitch":109.5625,"roll":48.9375},"location":"Left Ankle"},{"euler":{"heading":52.0625,"pitch":11.375,"roll":29.1875},"location":"Right Ankle"},{"euler":{"heading":50.375,"pitch":-158.5,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":294.3125,"pitch":151.3125,"roll":-42.9375},"location":"Right Knee"},{"euler":{"heading":30.875,"pitch":-117.4375,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:36.751"} +{"sensors":[{"euler":{"heading":228.125,"pitch":145.0625,"roll":24.125},"location":"Left Knee"},{"euler":{"heading":73.9375,"pitch":101.3125,"roll":24.8125},"location":"Left Ankle"},{"euler":{"heading":47.5,"pitch":9.5,"roll":29.1875},"location":"Right Ankle"},{"euler":{"heading":51.6875,"pitch":-160.4375,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":298.5,"pitch":147.3125,"roll":-40.875},"location":"Right Knee"},{"euler":{"heading":29.25,"pitch":-116.3125,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:36.851"} +{"sensors":[{"euler":{"heading":242.5,"pitch":152.9375,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":56.5,"pitch":97.3125,"roll":7.125},"location":"Left Ankle"},{"euler":{"heading":40.75,"pitch":7.1875,"roll":28.9375},"location":"Right Ankle"},{"euler":{"heading":53.1875,"pitch":-162.75,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":303.25,"pitch":142.9375,"roll":-38.0625},"location":"Right Knee"},{"euler":{"heading":34.1875,"pitch":-120.0625,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:36.952"} +{"sensors":[{"euler":{"heading":245.375,"pitch":149.4375,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":62.0,"pitch":101.9375,"roll":10.3125},"location":"Left Ankle"},{"euler":{"heading":32.625,"pitch":1.6875,"roll":28.375},"location":"Right Ankle"},{"euler":{"heading":55.3125,"pitch":-166.5,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":307.9375,"pitch":139.5625,"roll":-33.1875},"location":"Right Knee"},{"euler":{"heading":40.375,"pitch":-123.8125,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:37.56"} +{"sensors":[{"euler":{"heading":330.6875,"pitch":142.6875,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":74.4375,"pitch":103.625,"roll":19.375},"location":"Left Ankle"},{"euler":{"heading":17.0,"pitch":-10.0,"roll":25.5625},"location":"Right Ankle"},{"euler":{"heading":65.1875,"pitch":-155.3125,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":314.5625,"pitch":139.875,"roll":-25.25},"location":"Right Knee"},{"euler":{"heading":40.0625,"pitch":-126.125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:37.156"} +{"sensors":[{"euler":{"heading":336.375,"pitch":137.9375,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":83.875,"pitch":105.5625,"roll":25.9375},"location":"Left Ankle"},{"euler":{"heading":16.375,"pitch":-16.1875,"roll":28.25},"location":"Right Ankle"},{"euler":{"heading":75.25,"pitch":-143.5625,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":206.0625,"pitch":143.875,"roll":-24.0625},"location":"Right Knee"},{"euler":{"heading":43.0,"pitch":-132.0625,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:37.257"} +{"sensors":[{"euler":{"heading":341.3125,"pitch":133.6875,"roll":28.75},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":107.375,"roll":32.1875},"location":"Left Ankle"},{"euler":{"heading":36.125,"pitch":-6.5625,"roll":32.25},"location":"Right Ankle"},{"euler":{"heading":74.25,"pitch":-141.5625,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":223.4375,"pitch":153.9375,"roll":-33.0},"location":"Right Knee"},{"euler":{"heading":46.625,"pitch":-137.3125,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:37.357"} +{"sensors":[{"euler":{"heading":346.75,"pitch":130.25,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":96.875,"pitch":108.6875,"roll":34.75},"location":"Left Ankle"},{"euler":{"heading":59.8125,"pitch":10.4375,"roll":31.9375},"location":"Right Ankle"},{"euler":{"heading":70.8125,"pitch":-144.5,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":241.5,"pitch":170.0,"roll":-38.5},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-143.1875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:37.459"} +{"sensors":[{"euler":{"heading":352.5625,"pitch":128.125,"roll":22.3125},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":110.875,"roll":38.9375},"location":"Left Ankle"},{"euler":{"heading":73.3125,"pitch":17.625,"roll":30.5},"location":"Right Ankle"},{"euler":{"heading":61.625,"pitch":-149.6875,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":254.5625,"pitch":-178.75,"roll":-41.875},"location":"Right Knee"},{"euler":{"heading":50.25,"pitch":-146.6875,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:37.559"} +{"sensors":[{"euler":{"heading":358.875,"pitch":126.6875,"roll":16.875},"location":"Left Knee"},{"euler":{"heading":106.1875,"pitch":113.8125,"roll":45.3125},"location":"Left Ankle"},{"euler":{"heading":70.375,"pitch":16.8125,"roll":30.0625},"location":"Right Ankle"},{"euler":{"heading":53.375,"pitch":-153.5625,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":253.6875,"pitch":175.125,"roll":-42.5},"location":"Right Knee"},{"euler":{"heading":54.0625,"pitch":-151.625,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:37.659"} +{"sensors":[{"euler":{"heading":9.25,"pitch":128.0,"roll":7.375},"location":"Left Knee"},{"euler":{"heading":109.0,"pitch":120.6875,"roll":55.625},"location":"Left Ankle"},{"euler":{"heading":61.875,"pitch":13.4375,"roll":29.9375},"location":"Right Ankle"},{"euler":{"heading":55.25,"pitch":-154.6875,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":249.5625,"pitch":167.8125,"roll":-42.875},"location":"Right Knee"},{"euler":{"heading":51.4375,"pitch":-147.0625,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:37.760"} +{"sensors":[{"euler":{"heading":26.3125,"pitch":125.4375,"roll":-1.0625},"location":"Left Knee"},{"euler":{"heading":113.375,"pitch":132.1875,"roll":59.75},"location":"Left Ankle"},{"euler":{"heading":57.0625,"pitch":13.0,"roll":29.125},"location":"Right Ankle"},{"euler":{"heading":50.125,"pitch":-157.25,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":287.625,"pitch":159.0,"roll":-43.0625},"location":"Right Knee"},{"euler":{"heading":38.125,"pitch":-124.625,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:37.863"} +{"sensors":[{"euler":{"heading":22.25,"pitch":130.875,"roll":3.5},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":115.625,"roll":54.0625},"location":"Left Ankle"},{"euler":{"heading":52.875,"pitch":12.375,"roll":28.375},"location":"Right Ankle"},{"euler":{"heading":52.5625,"pitch":-157.0,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":293.0625,"pitch":152.6875,"roll":-43.5625},"location":"Right Knee"},{"euler":{"heading":33.0625,"pitch":-118.5625,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:37.964"} +{"sensors":[{"euler":{"heading":226.4375,"pitch":141.0625,"roll":19.5},"location":"Left Knee"},{"euler":{"heading":82.25,"pitch":104.4375,"roll":29.8125},"location":"Left Ankle"},{"euler":{"heading":49.25,"pitch":11.875,"roll":29.0},"location":"Right Ankle"},{"euler":{"heading":52.3125,"pitch":-158.625,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":297.9375,"pitch":148.625,"roll":-41.9375},"location":"Right Knee"},{"euler":{"heading":31.3125,"pitch":-116.25,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:38.64"} +{"sensors":[{"euler":{"heading":240.875,"pitch":151.0,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":58.5625,"pitch":98.5625,"roll":9.0},"location":"Left Ankle"},{"euler":{"heading":43.9375,"pitch":9.75,"roll":29.4375},"location":"Right Ankle"},{"euler":{"heading":52.3125,"pitch":-162.875,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":302.4375,"pitch":144.8125,"roll":-39.375},"location":"Right Knee"},{"euler":{"heading":33.1875,"pitch":-119.1875,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:38.165"} +{"sensors":[{"euler":{"heading":244.875,"pitch":150.3125,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":60.5625,"pitch":100.125,"roll":9.375},"location":"Left Ankle"},{"euler":{"heading":36.8125,"pitch":5.125,"roll":28.375},"location":"Right Ankle"},{"euler":{"heading":54.625,"pitch":-165.6875,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":307.5625,"pitch":140.9375,"roll":-34.625},"location":"Right Knee"},{"euler":{"heading":38.6875,"pitch":-122.9375,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:38.266"} +{"sensors":[{"euler":{"heading":330.0625,"pitch":143.3125,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":71.875,"pitch":101.9375,"roll":17.5625},"location":"Left Ankle"},{"euler":{"heading":22.125,"pitch":-8.625,"roll":28.375},"location":"Right Ankle"},{"euler":{"heading":62.125,"pitch":-156.8125,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":311.3125,"pitch":140.4375,"roll":-27.0},"location":"Right Knee"},{"euler":{"heading":39.0625,"pitch":-125.125,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:38.367"} +{"sensors":[{"euler":{"heading":334.8125,"pitch":138.875,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":82.75,"pitch":103.375,"roll":26.375},"location":"Left Ankle"},{"euler":{"heading":17.375,"pitch":-16.375,"roll":29.0625},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":-144.25,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":206.125,"pitch":143.125,"roll":-24.0},"location":"Right Knee"},{"euler":{"heading":44.125,"pitch":-132.4375,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:38.468"} +{"sensors":[{"euler":{"heading":338.9375,"pitch":135.6875,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":89.25,"pitch":104.5,"roll":32.0625},"location":"Left Ankle"},{"euler":{"heading":32.5,"pitch":-7.375,"roll":31.6875},"location":"Right Ankle"},{"euler":{"heading":75.1875,"pitch":-142.0625,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":219.375,"pitch":151.25,"roll":-31.75},"location":"Right Knee"},{"euler":{"heading":46.875,"pitch":-136.75,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:38.569"} +{"sensors":[{"euler":{"heading":344.625,"pitch":132.75,"roll":24.9375},"location":"Left Knee"},{"euler":{"heading":91.5,"pitch":104.9375,"roll":34.4375},"location":"Left Ankle"},{"euler":{"heading":54.25,"pitch":6.4375,"roll":32.5},"location":"Right Ankle"},{"euler":{"heading":73.3125,"pitch":-143.8125,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":237.0,"pitch":166.5,"roll":-38.5625},"location":"Right Knee"},{"euler":{"heading":48.8125,"pitch":-141.625,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:38.670"} +{"sensors":[{"euler":{"heading":350.125,"pitch":130.375,"roll":21.1875},"location":"Left Knee"},{"euler":{"heading":95.625,"pitch":106.0,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":69.875,"pitch":15.9375,"roll":30.75},"location":"Right Ankle"},{"euler":{"heading":64.9375,"pitch":-147.3125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":251.25,"pitch":178.5,"roll":-43.75},"location":"Right Knee"},{"euler":{"heading":51.375,"pitch":-149.0,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:38.775"} +{"sensors":[{"euler":{"heading":356.25,"pitch":129.5625,"roll":15.9375},"location":"Left Knee"},{"euler":{"heading":101.0,"pitch":108.3125,"roll":44.8125},"location":"Left Ankle"},{"euler":{"heading":74.4375,"pitch":20.0,"roll":28.0},"location":"Right Ankle"},{"euler":{"heading":54.125,"pitch":-151.25,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":255.875,"pitch":178.3125,"roll":-44.75},"location":"Right Knee"},{"euler":{"heading":53.0625,"pitch":-154.1875,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:38.876"} +{"sensors":[{"euler":{"heading":8.125,"pitch":129.25,"roll":7.0},"location":"Left Knee"},{"euler":{"heading":109.375,"pitch":118.6875,"roll":56.4375},"location":"Left Ankle"},{"euler":{"heading":62.375,"pitch":16.4375,"roll":28.25},"location":"Right Ankle"},{"euler":{"heading":52.5,"pitch":-153.875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":278.3125,"pitch":166.625,"roll":-44.625},"location":"Right Knee"},{"euler":{"heading":48.8125,"pitch":-145.5625,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:38.977"} +{"sensors":[{"euler":{"heading":27.875,"pitch":125.8125,"roll":-2.125},"location":"Left Knee"},{"euler":{"heading":124.4375,"pitch":140.0625,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":58.1875,"pitch":14.75,"roll":27.5},"location":"Right Ankle"},{"euler":{"heading":47.1875,"pitch":-156.5625,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":287.375,"pitch":157.8125,"roll":-46.375},"location":"Right Knee"},{"euler":{"heading":34.3125,"pitch":-120.625,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:39.78"} +{"sensors":[{"euler":{"heading":27.1875,"pitch":130.8125,"roll":0.5625},"location":"Left Knee"},{"euler":{"heading":117.875,"pitch":122.5,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":56.4375,"pitch":13.0625,"roll":27.125},"location":"Right Ankle"},{"euler":{"heading":50.5,"pitch":-156.9375,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":289.375,"pitch":153.0,"roll":-46.3125},"location":"Right Knee"},{"euler":{"heading":27.8125,"pitch":-116.25,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:39.179"} +{"sensors":[{"euler":{"heading":222.0,"pitch":141.125,"roll":15.9375},"location":"Left Knee"},{"euler":{"heading":89.625,"pitch":103.875,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":54.9375,"pitch":11.625,"roll":27.5625},"location":"Right Ankle"},{"euler":{"heading":51.4375,"pitch":-158.3125,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":291.0,"pitch":150.1875,"roll":-44.625},"location":"Right Knee"},{"euler":{"heading":26.5625,"pitch":-115.375,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:39.279"} +{"sensors":[{"euler":{"heading":235.75,"pitch":150.5,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":63.3125,"pitch":98.125,"roll":15.4375},"location":"Left Ankle"},{"euler":{"heading":49.75,"pitch":9.1875,"roll":28.0},"location":"Right Ankle"},{"euler":{"heading":53.625,"pitch":-159.375,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":295.8125,"pitch":145.5,"roll":-42.0},"location":"Right Knee"},{"euler":{"heading":27.6875,"pitch":-116.1875,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:39.381"} +{"sensors":[{"euler":{"heading":243.5625,"pitch":156.0625,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":54.0625,"pitch":94.375,"roll":4.9375},"location":"Left Ankle"},{"euler":{"heading":43.5625,"pitch":6.5625,"roll":27.0625},"location":"Right Ankle"},{"euler":{"heading":54.875,"pitch":-162.5625,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":300.0,"pitch":142.0,"roll":-38.375},"location":"Right Knee"},{"euler":{"heading":34.625,"pitch":-121.3125,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:39.482"} +{"sensors":[{"euler":{"heading":242.3125,"pitch":148.1875,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":69.0625,"pitch":99.875,"roll":14.3125},"location":"Left Ankle"},{"euler":{"heading":33.3125,"pitch":-0.9375,"roll":26.875},"location":"Right Ankle"},{"euler":{"heading":56.0,"pitch":-164.875,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":305.4375,"pitch":138.9375,"roll":-32.6875},"location":"Right Knee"},{"euler":{"heading":36.625,"pitch":-123.8125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:39.582"} +{"sensors":[{"euler":{"heading":331.9375,"pitch":140.5625,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":78.5625,"pitch":103.4375,"roll":23.3125},"location":"Left Ankle"},{"euler":{"heading":18.6875,"pitch":-10.8125,"roll":25.75},"location":"Right Ankle"},{"euler":{"heading":66.125,"pitch":-153.0625,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":316.75,"pitch":138.0,"roll":-24.8125},"location":"Right Knee"},{"euler":{"heading":40.0,"pitch":-125.625,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:39.683"} +{"sensors":[{"euler":{"heading":338.125,"pitch":135.875,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":91.3125,"pitch":105.875,"roll":30.5},"location":"Left Ankle"},{"euler":{"heading":25.125,"pitch":-9.0625,"roll":28.5625},"location":"Right Ankle"},{"euler":{"heading":72.1875,"pitch":-144.625,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":211.125,"pitch":145.625,"roll":-26.9375},"location":"Right Knee"},{"euler":{"heading":44.0625,"pitch":-130.625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:39.784"} +{"sensors":[{"euler":{"heading":340.125,"pitch":133.6875,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":91.625,"pitch":105.0,"roll":32.25},"location":"Left Ankle"},{"euler":{"heading":46.625,"pitch":0.6875,"roll":32.6875},"location":"Right Ankle"},{"euler":{"heading":71.875,"pitch":-143.5,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":229.0625,"pitch":159.4375,"roll":-37.5625},"location":"Right Knee"},{"euler":{"heading":46.5,"pitch":-139.125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:39.885"} +{"sensors":[{"euler":{"heading":345.5,"pitch":131.9375,"roll":24.1875},"location":"Left Knee"},{"euler":{"heading":91.9375,"pitch":104.75,"roll":34.8125},"location":"Left Ankle"},{"euler":{"heading":63.625,"pitch":11.0,"roll":32.1875},"location":"Right Ankle"},{"euler":{"heading":67.4375,"pitch":-146.0,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":244.5625,"pitch":173.875,"roll":-41.75},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-145.0625,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:39.986"} +{"sensors":[{"euler":{"heading":351.4375,"pitch":130.25,"roll":19.875},"location":"Left Knee"},{"euler":{"heading":97.0625,"pitch":107.0,"roll":39.75},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":14.8125,"roll":28.5},"location":"Right Ankle"},{"euler":{"heading":55.375,"pitch":-151.9375,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":253.0,"pitch":-177.6875,"roll":-44.125},"location":"Right Knee"},{"euler":{"heading":50.5,"pitch":-149.875,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:40.86"} +{"sensors":[{"euler":{"heading":0.3125,"pitch":127.6875,"roll":13.9375},"location":"Left Knee"},{"euler":{"heading":103.75,"pitch":112.625,"roll":47.5625},"location":"Left Ankle"},{"euler":{"heading":67.5,"pitch":14.75,"roll":28.75},"location":"Right Ankle"},{"euler":{"heading":52.3125,"pitch":-155.3125,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":265.0625,"pitch":173.3125,"roll":-45.375},"location":"Right Knee"},{"euler":{"heading":55.8125,"pitch":-152.1875,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:40.187"} +{"sensors":[{"euler":{"heading":18.375,"pitch":126.0625,"roll":2.9375},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":128.0,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":61.625,"pitch":9.1875,"roll":29.1875},"location":"Right Ankle"},{"euler":{"heading":53.8125,"pitch":-157.375,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":271.0,"pitch":165.6875,"roll":-47.1875},"location":"Right Knee"},{"euler":{"heading":41.0,"pitch":-134.875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:40.288"} +{"sensors":[{"euler":{"heading":23.5625,"pitch":129.875,"roll":1.375},"location":"Left Knee"},{"euler":{"heading":112.1875,"pitch":122.4375,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":60.0,"pitch":8.875,"roll":28.3125},"location":"Right Ankle"},{"euler":{"heading":53.625,"pitch":-159.625,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":273.9375,"pitch":160.9375,"roll":-46.375},"location":"Right Knee"},{"euler":{"heading":32.125,"pitch":-120.0,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:40.391"} +{"sensors":[{"euler":{"heading":0.0625,"pitch":135.875,"roll":14.8125},"location":"Left Knee"},{"euler":{"heading":98.5625,"pitch":106.5,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":9.375,"roll":27.0625},"location":"Right Ankle"},{"euler":{"heading":55.8125,"pitch":-159.5,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":280.75,"pitch":155.5,"roll":-45.0625},"location":"Right Knee"},{"euler":{"heading":30.1875,"pitch":-118.375,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:40.492"} +{"sensors":[{"euler":{"heading":236.5,"pitch":147.8125,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":66.8125,"pitch":98.375,"roll":17.1875},"location":"Left Ankle"},{"euler":{"heading":53.0,"pitch":8.125,"roll":27.75},"location":"Right Ankle"},{"euler":{"heading":57.625,"pitch":-159.75,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":288.1875,"pitch":150.375,"roll":-42.875},"location":"Right Knee"},{"euler":{"heading":30.875,"pitch":-117.0625,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:40.593"} +{"sensors":[{"euler":{"heading":245.8125,"pitch":154.4375,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":56.4375,"pitch":96.5625,"roll":5.625},"location":"Left Ankle"},{"euler":{"heading":45.5,"pitch":5.3125,"roll":25.6875},"location":"Right Ankle"},{"euler":{"heading":58.875,"pitch":-162.8125,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":292.3125,"pitch":146.1875,"roll":-40.25},"location":"Right Knee"},{"euler":{"heading":37.125,"pitch":-121.375,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:40.693"} +{"sensors":[{"euler":{"heading":324.125,"pitch":146.3125,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":66.3125,"pitch":102.125,"roll":13.375},"location":"Left Ankle"},{"euler":{"heading":33.0,"pitch":-2.3125,"roll":26.9375},"location":"Right Ankle"},{"euler":{"heading":62.625,"pitch":-159.875,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":297.5,"pitch":142.3125,"roll":-34.8125},"location":"Right Knee"},{"euler":{"heading":39.8125,"pitch":-123.75,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:40.794"} +{"sensors":[{"euler":{"heading":330.4375,"pitch":140.625,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":76.5,"pitch":103.3125,"roll":19.375},"location":"Left Ankle"},{"euler":{"heading":21.0625,"pitch":-12.6875,"roll":27.5},"location":"Right Ankle"},{"euler":{"heading":75.1875,"pitch":-147.3125,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":207.5,"pitch":143.0,"roll":-26.8125},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-129.0625,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:40.895"} +{"sensors":[{"euler":{"heading":333.625,"pitch":136.875,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":89.5,"pitch":105.25,"roll":29.4375},"location":"Left Ankle"},{"euler":{"heading":33.6875,"pitch":-7.1875,"roll":31.25},"location":"Right Ankle"},{"euler":{"heading":77.875,"pitch":-142.375,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":217.6875,"pitch":154.0,"roll":-31.75},"location":"Right Knee"},{"euler":{"heading":45.625,"pitch":-134.25,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:40.996"} +{"sensors":[{"euler":{"heading":335.9375,"pitch":136.0,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":82.75,"pitch":102.3125,"roll":26.3125},"location":"Left Ankle"},{"euler":{"heading":52.375,"pitch":1.5,"roll":32.875},"location":"Right Ankle"},{"euler":{"heading":73.8125,"pitch":-144.0,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":231.875,"pitch":164.6875,"roll":-38.125},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-138.6875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:41.97"} +{"sensors":[{"euler":{"heading":339.625,"pitch":134.8125,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":82.6875,"pitch":101.8125,"roll":28.375},"location":"Left Ankle"},{"euler":{"heading":70.5625,"pitch":14.6875,"roll":27.125},"location":"Right Ankle"},{"euler":{"heading":70.125,"pitch":-145.8125,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":246.875,"pitch":177.375,"roll":-42.3125},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-144.9375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:41.198"} +{"sensors":[{"euler":{"heading":347.25,"pitch":131.625,"roll":21.375},"location":"Left Knee"},{"euler":{"heading":89.5,"pitch":104.4375,"roll":35.0},"location":"Left Ankle"},{"euler":{"heading":74.875,"pitch":15.125,"roll":28.3125},"location":"Right Ankle"},{"euler":{"heading":59.125,"pitch":-149.5,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":253.375,"pitch":-177.75,"roll":-43.625},"location":"Right Knee"},{"euler":{"heading":50.375,"pitch":-147.75,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:41.299"} +{"sensors":[{"euler":{"heading":356.4375,"pitch":129.5,"roll":15.125},"location":"Left Knee"},{"euler":{"heading":103.875,"pitch":107.9375,"roll":45.3125},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":19.0,"roll":27.5},"location":"Right Ankle"},{"euler":{"heading":54.875,"pitch":-152.1875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":253.375,"pitch":172.0625,"roll":-42.9375},"location":"Right Knee"},{"euler":{"heading":54.0625,"pitch":-149.8125,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:41.400"} +{"sensors":[{"euler":{"heading":15.9375,"pitch":126.8125,"roll":4.125},"location":"Left Knee"},{"euler":{"heading":115.25,"pitch":143.375,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":61.6875,"pitch":16.875,"roll":27.25},"location":"Right Ankle"},{"euler":{"heading":53.1875,"pitch":-153.9375,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":282.4375,"pitch":162.9375,"roll":-44.125},"location":"Right Knee"},{"euler":{"heading":38.75,"pitch":-130.6875,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:41.500"} +{"sensors":[{"euler":{"heading":25.875,"pitch":127.75,"roll":1.875},"location":"Left Knee"},{"euler":{"heading":111.75,"pitch":124.8125,"roll":55.4375},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":16.5625,"roll":26.3125},"location":"Right Ankle"},{"euler":{"heading":51.125,"pitch":-155.4375,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":290.875,"pitch":156.0625,"roll":-44.0},"location":"Right Knee"},{"euler":{"heading":31.9375,"pitch":-118.1875,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:41.601"} +{"sensors":[{"euler":{"heading":4.6875,"pitch":136.5,"roll":13.6875},"location":"Left Knee"},{"euler":{"heading":94.3125,"pitch":108.1875,"roll":40.75},"location":"Left Ankle"},{"euler":{"heading":55.0,"pitch":16.75,"roll":24.875},"location":"Right Ankle"},{"euler":{"heading":54.625,"pitch":-154.25,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":295.4375,"pitch":150.6875,"roll":-43.625},"location":"Right Knee"},{"euler":{"heading":28.5625,"pitch":-116.5,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:41.702"} +{"sensors":[{"euler":{"heading":238.75,"pitch":148.4375,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":66.875,"pitch":101.1875,"roll":0.1875},"location":"Left Ankle"},{"euler":{"heading":50.0,"pitch":16.0625,"roll":26.6875},"location":"Right Ankle"},{"euler":{"heading":55.0,"pitch":-155.3125,"roll":68.4375},"location":"Right Hip"},{"euler":{"heading":301.0625,"pitch":145.8125,"roll":-41.625},"location":"Right Knee"},{"euler":{"heading":30.6875,"pitch":-118.1875,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:41.802"} +{"sensors":[{"euler":{"heading":245.625,"pitch":155.4375,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":54.5625,"pitch":96.8125,"roll":4.0625},"location":"Left Ankle"},{"euler":{"heading":42.4375,"pitch":12.125,"roll":25.1875},"location":"Right Ankle"},{"euler":{"heading":56.5625,"pitch":-158.4375,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":303.8125,"pitch":141.75,"roll":-38.625},"location":"Right Knee"},{"euler":{"heading":37.4375,"pitch":-122.75,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:41.903"} +{"sensors":[{"euler":{"heading":322.6875,"pitch":147.0625,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":64.375,"pitch":101.125,"roll":12.875},"location":"Left Ankle"},{"euler":{"heading":32.5625,"pitch":2.625,"roll":26.3125},"location":"Right Ankle"},{"euler":{"heading":58.75,"pitch":-163.1875,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":303.8125,"pitch":139.375,"roll":-34.1875},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-126.0,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:42.4"} +{"sensors":[{"euler":{"heading":331.25,"pitch":140.5,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":74.4375,"pitch":104.5625,"roll":19.25},"location":"Left Ankle"},{"euler":{"heading":18.875,"pitch":-8.6875,"roll":25.375},"location":"Right Ankle"},{"euler":{"heading":69.625,"pitch":-149.9375,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":316.0,"pitch":138.625,"roll":-25.625},"location":"Right Knee"},{"euler":{"heading":42.5625,"pitch":-129.0,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:42.104"} +{"sensors":[{"euler":{"heading":338.6875,"pitch":134.25,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":93.375,"pitch":108.625,"roll":31.25},"location":"Left Ankle"},{"euler":{"heading":20.125,"pitch":-12.0625,"roll":28.75},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":-141.875,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":210.25,"pitch":146.0,"roll":-26.625},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-135.3125,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:42.204"} +{"sensors":[{"euler":{"heading":344.625,"pitch":130.25,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":109.375,"roll":32.75},"location":"Left Ankle"},{"euler":{"heading":38.5625,"pitch":-3.0625,"roll":31.0625},"location":"Right Ankle"},{"euler":{"heading":76.375,"pitch":-141.375,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":225.375,"pitch":159.3125,"roll":-35.0},"location":"Right Knee"},{"euler":{"heading":49.3125,"pitch":-140.0,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:42.305"} +{"sensors":[{"euler":{"heading":350.0625,"pitch":127.875,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":98.0625,"pitch":110.0625,"roll":35.625},"location":"Left Ankle"},{"euler":{"heading":65.0,"pitch":13.375,"roll":29.0625},"location":"Right Ankle"},{"euler":{"heading":70.4375,"pitch":-146.0625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":244.375,"pitch":175.125,"roll":-41.3125},"location":"Right Knee"},{"euler":{"heading":51.625,"pitch":-145.75,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:42.407"} +{"sensors":[{"euler":{"heading":355.9375,"pitch":125.875,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":104.125,"pitch":112.8125,"roll":40.625},"location":"Left Ankle"},{"euler":{"heading":73.8125,"pitch":20.0625,"roll":28.6875},"location":"Right Ankle"},{"euler":{"heading":55.375,"pitch":-151.75,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":257.75,"pitch":-175.5,"roll":-41.0},"location":"Right Knee"},{"euler":{"heading":53.625,"pitch":-149.6875,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:42.509"} +{"sensors":[{"euler":{"heading":3.375,"pitch":124.875,"roll":14.25},"location":"Left Knee"},{"euler":{"heading":114.8125,"pitch":116.625,"roll":50.375},"location":"Left Ankle"},{"euler":{"heading":66.9375,"pitch":19.75,"roll":28.875},"location":"Right Ankle"},{"euler":{"heading":51.25,"pitch":-156.25,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":255.75,"pitch":175.6875,"roll":-41.6875},"location":"Right Knee"},{"euler":{"heading":57.4375,"pitch":-153.3125,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:42.610"} +{"sensors":[{"euler":{"heading":19.8125,"pitch":124.0625,"roll":2.625},"location":"Left Knee"},{"euler":{"heading":118.75,"pitch":132.3125,"roll":58.5625},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":18.0,"roll":28.8125},"location":"Right Ankle"},{"euler":{"heading":51.1875,"pitch":-156.75,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":280.3125,"pitch":165.3125,"roll":-43.4375},"location":"Right Knee"},{"euler":{"heading":45.6875,"pitch":-137.0625,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:42.710"} +{"sensors":[{"euler":{"heading":32.25,"pitch":124.125,"roll":-2.8125},"location":"Left Knee"},{"euler":{"heading":118.9375,"pitch":138.75,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":55.75,"pitch":17.25,"roll":28.0},"location":"Right Ankle"},{"euler":{"heading":50.125,"pitch":-157.0,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":291.6875,"pitch":156.125,"roll":-44.3125},"location":"Right Knee"},{"euler":{"heading":35.3125,"pitch":-118.75,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:42.811"} +{"sensors":[{"euler":{"heading":17.9375,"pitch":132.375,"roll":6.9375},"location":"Left Knee"},{"euler":{"heading":106.25,"pitch":111.875,"roll":51.8125},"location":"Left Ankle"},{"euler":{"heading":52.1875,"pitch":16.3125,"roll":27.8125},"location":"Right Ankle"},{"euler":{"heading":52.25,"pitch":-156.9375,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":295.5,"pitch":151.375,"roll":-43.875},"location":"Right Knee"},{"euler":{"heading":30.625,"pitch":-115.375,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:42.912"} +{"sensors":[{"euler":{"heading":232.3125,"pitch":144.0625,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":76.625,"pitch":99.9375,"roll":25.8125},"location":"Left Ankle"},{"euler":{"heading":48.5,"pitch":15.0625,"roll":28.1875},"location":"Right Ankle"},{"euler":{"heading":54.75,"pitch":-158.1875,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":298.3125,"pitch":147.6875,"roll":-42.1875},"location":"Right Knee"},{"euler":{"heading":32.625,"pitch":-116.4375,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:43.13"} +{"sensors":[{"euler":{"heading":246.6875,"pitch":150.5625,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":57.5625,"pitch":99.5,"roll":6.625},"location":"Left Ankle"},{"euler":{"heading":42.625,"pitch":12.0625,"roll":27.875},"location":"Right Ankle"},{"euler":{"heading":55.4375,"pitch":-161.875,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":301.625,"pitch":143.3125,"roll":-39.9375},"location":"Right Knee"},{"euler":{"heading":38.8125,"pitch":-120.4375,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:43.114"} +{"sensors":[{"euler":{"heading":327.8125,"pitch":146.4375,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":61.9375,"pitch":103.5,"roll":8.625},"location":"Left Ankle"},{"euler":{"heading":36.0,"pitch":4.5,"roll":26.9375},"location":"Right Ankle"},{"euler":{"heading":57.8125,"pitch":-166.9375,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":301.0,"pitch":141.25,"roll":-36.1875},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-124.75,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:43.214"} +{"sensors":[{"euler":{"heading":333.875,"pitch":140.75,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":73.9375,"pitch":104.625,"roll":17.25},"location":"Left Ankle"},{"euler":{"heading":18.6875,"pitch":-9.625,"roll":25.4375},"location":"Right Ankle"},{"euler":{"heading":68.375,"pitch":-154.3125,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":306.875,"pitch":140.1875,"roll":-28.25},"location":"Right Knee"},{"euler":{"heading":42.8125,"pitch":-127.375,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:43.315"} +{"sensors":[{"euler":{"heading":339.875,"pitch":135.5625,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":87.25,"pitch":107.4375,"roll":27.25},"location":"Left Ankle"},{"euler":{"heading":15.875,"pitch":-13.8125,"roll":26.75},"location":"Right Ankle"},{"euler":{"heading":77.9375,"pitch":-142.375,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":205.0,"pitch":142.0,"roll":-25.3125},"location":"Right Knee"},{"euler":{"heading":47.75,"pitch":-133.375,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:43.416"} +{"sensors":[{"euler":{"heading":341.9375,"pitch":133.0625,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":91.375,"pitch":106.875,"roll":30.5},"location":"Left Ankle"},{"euler":{"heading":31.3125,"pitch":-5.1875,"roll":29.8125},"location":"Right Ankle"},{"euler":{"heading":79.3125,"pitch":-140.8125,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":217.625,"pitch":150.8125,"roll":-31.5},"location":"Right Knee"},{"euler":{"heading":49.9375,"pitch":-140.1875,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:43.517"} +{"sensors":[{"euler":{"heading":346.375,"pitch":129.875,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":106.5,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":52.8125,"pitch":5.9375,"roll":31.625},"location":"Right Ankle"},{"euler":{"heading":76.375,"pitch":-143.875,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":233.3125,"pitch":166.75,"roll":-38.8125},"location":"Right Knee"},{"euler":{"heading":52.8125,"pitch":-146.9375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:43.618"} +{"sensors":[{"euler":{"heading":351.875,"pitch":127.75,"roll":22.9375},"location":"Left Knee"},{"euler":{"heading":98.5,"pitch":108.4375,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":19.125,"roll":26.125},"location":"Right Ankle"},{"euler":{"heading":68.3125,"pitch":-145.5625,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":249.625,"pitch":-179.375,"roll":-39.8125},"location":"Right Knee"},{"euler":{"heading":53.0,"pitch":-151.75,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:43.719"} +{"sensors":[{"euler":{"heading":358.25,"pitch":126.5,"roll":17.375},"location":"Left Knee"},{"euler":{"heading":105.5,"pitch":111.8125,"roll":43.75},"location":"Left Ankle"},{"euler":{"heading":73.5625,"pitch":21.75,"roll":28.0},"location":"Right Ankle"},{"euler":{"heading":52.25,"pitch":-152.3125,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":256.625,"pitch":-179.3125,"roll":-39.875},"location":"Right Knee"},{"euler":{"heading":54.3125,"pitch":-155.8125,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:43.820"} +{"sensors":[{"euler":{"heading":9.1875,"pitch":125.625,"roll":8.375},"location":"Left Knee"},{"euler":{"heading":108.6875,"pitch":117.4375,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":19.75,"roll":27.75},"location":"Right Ankle"},{"euler":{"heading":51.0,"pitch":-155.8125,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":253.0625,"pitch":170.75,"roll":-42.3125},"location":"Right Knee"},{"euler":{"heading":56.75,"pitch":-152.9375,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:43.920"} +{"sensors":[{"euler":{"heading":27.125,"pitch":121.875,"roll":-1.125},"location":"Left Knee"},{"euler":{"heading":128.0,"pitch":141.8125,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":60.0625,"pitch":20.4375,"roll":27.0625},"location":"Right Ankle"},{"euler":{"heading":48.8125,"pitch":-157.875,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":282.875,"pitch":161.625,"roll":-45.1875},"location":"Right Knee"},{"euler":{"heading":40.5625,"pitch":-127.4375,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:44.21"} +{"sensors":[{"euler":{"heading":32.1875,"pitch":127.25,"roll":-1.4375},"location":"Left Knee"},{"euler":{"heading":121.9375,"pitch":126.8125,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":55.625,"pitch":19.875,"roll":26.8125},"location":"Right Ankle"},{"euler":{"heading":50.0,"pitch":-157.875,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":291.25,"pitch":154.25,"roll":-45.1875},"location":"Right Knee"},{"euler":{"heading":30.375,"pitch":-116.75,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:44.123"} +{"sensors":[{"euler":{"heading":222.5,"pitch":136.9375,"roll":12.25},"location":"Left Knee"},{"euler":{"heading":99.3125,"pitch":107.125,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":52.3125,"pitch":19.3125,"roll":26.3125},"location":"Right Ankle"},{"euler":{"heading":51.25,"pitch":-158.75,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":296.5,"pitch":149.375,"roll":-43.75},"location":"Right Knee"},{"euler":{"heading":26.75,"pitch":-112.25,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:44.223"} +{"sensors":[{"euler":{"heading":236.6875,"pitch":149.1875,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":70.4375,"pitch":99.5,"roll":20.1875},"location":"Left Ankle"},{"euler":{"heading":47.5625,"pitch":17.5625,"roll":26.25},"location":"Right Ankle"},{"euler":{"heading":51.9375,"pitch":-161.9375,"roll":70.3125},"location":"Right Hip"},{"euler":{"heading":300.6875,"pitch":145.25,"roll":-41.625},"location":"Right Knee"},{"euler":{"heading":30.4375,"pitch":-115.5625,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:44.324"} +{"sensors":[{"euler":{"heading":245.5625,"pitch":153.875,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":55.625,"pitch":97.9375,"roll":5.125},"location":"Left Ankle"},{"euler":{"heading":41.8125,"pitch":12.5,"roll":25.4375},"location":"Right Ankle"},{"euler":{"heading":52.6875,"pitch":-170.0625,"roll":70.625},"location":"Right Hip"},{"euler":{"heading":300.875,"pitch":142.25,"roll":-39.0625},"location":"Right Knee"},{"euler":{"heading":39.4375,"pitch":-123.0,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:44.425"} +{"sensors":[{"euler":{"heading":328.625,"pitch":145.9375,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":65.3125,"pitch":102.375,"roll":12.3125},"location":"Left Ankle"},{"euler":{"heading":31.25,"pitch":1.1875,"roll":26.25},"location":"Right Ankle"},{"euler":{"heading":55.6875,"pitch":-168.5,"roll":69.75},"location":"Right Hip"},{"euler":{"heading":303.5625,"pitch":138.5,"roll":-33.6875},"location":"Right Knee"},{"euler":{"heading":42.3125,"pitch":-128.4375,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:44.526"} +{"sensors":[{"euler":{"heading":334.9375,"pitch":140.3125,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":75.3125,"pitch":104.3125,"roll":20.6875},"location":"Left Ankle"},{"euler":{"heading":15.4375,"pitch":-11.9375,"roll":24.125},"location":"Right Ankle"},{"euler":{"heading":67.9375,"pitch":-151.6875,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":311.6875,"pitch":138.4375,"roll":-25.625},"location":"Right Knee"},{"euler":{"heading":45.0625,"pitch":-132.5,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:44.627"} +{"sensors":[{"euler":{"heading":340.375,"pitch":135.0625,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":90.625,"pitch":107.9375,"roll":30.0},"location":"Left Ankle"},{"euler":{"heading":17.0,"pitch":-13.5,"roll":25.875},"location":"Right Ankle"},{"euler":{"heading":76.75,"pitch":-142.25,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":205.875,"pitch":143.8125,"roll":-26.1875},"location":"Right Knee"},{"euler":{"heading":49.5,"pitch":-138.8125,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:44.727"} +{"sensors":[{"euler":{"heading":346.4375,"pitch":130.125,"roll":28.75},"location":"Left Knee"},{"euler":{"heading":95.8125,"pitch":108.875,"roll":31.9375},"location":"Left Ankle"},{"euler":{"heading":34.625,"pitch":-4.375,"roll":29.6875},"location":"Right Ankle"},{"euler":{"heading":78.5,"pitch":-140.4375,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":220.0625,"pitch":155.25,"roll":-33.625},"location":"Right Knee"},{"euler":{"heading":54.625,"pitch":-145.8125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:44.828"} +{"sensors":[{"euler":{"heading":352.0,"pitch":126.4375,"roll":26.0625},"location":"Left Knee"},{"euler":{"heading":100.375,"pitch":110.4375,"roll":34.75},"location":"Left Ankle"},{"euler":{"heading":55.8125,"pitch":11.8125,"roll":29.375},"location":"Right Ankle"},{"euler":{"heading":73.625,"pitch":-144.375,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":239.75,"pitch":170.1875,"roll":-39.4375},"location":"Right Knee"},{"euler":{"heading":58.1875,"pitch":-152.875,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:44.929"} +{"sensors":[{"euler":{"heading":358.125,"pitch":124.5,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":106.4375,"pitch":113.5,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":18.1875,"roll":29.1875},"location":"Right Ankle"},{"euler":{"heading":62.25,"pitch":-148.75,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":252.4375,"pitch":-175.3125,"roll":-41.625},"location":"Right Knee"},{"euler":{"heading":58.5,"pitch":-156.25,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:45.33"} +{"sensors":[{"euler":{"heading":5.6875,"pitch":122.625,"roll":14.9375},"location":"Left Knee"},{"euler":{"heading":115.4375,"pitch":119.5,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":72.625,"pitch":19.5,"roll":28.3125},"location":"Right Ankle"},{"euler":{"heading":52.5625,"pitch":-155.25,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":253.0625,"pitch":178.1875,"roll":-42.6875},"location":"Right Knee"},{"euler":{"heading":62.875,"pitch":-160.4375,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:45.134"} +{"sensors":[{"euler":{"heading":18.875,"pitch":126.0625,"roll":2.8125},"location":"Left Knee"},{"euler":{"heading":111.5,"pitch":123.8125,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":64.125,"pitch":16.8125,"roll":28.25},"location":"Right Ankle"},{"euler":{"heading":55.625,"pitch":-155.75,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":248.5625,"pitch":169.0625,"roll":-43.1875},"location":"Right Knee"},{"euler":{"heading":57.0625,"pitch":-149.0,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:45.235"} +{"sensors":[{"euler":{"heading":33.1875,"pitch":120.6875,"roll":-3.8125},"location":"Left Knee"},{"euler":{"heading":129.125,"pitch":143.8125,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":17.4375,"roll":27.4375},"location":"Right Ankle"},{"euler":{"heading":52.25,"pitch":-156.75,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":283.75,"pitch":160.0625,"roll":-44.5},"location":"Right Knee"},{"euler":{"heading":41.0,"pitch":-119.6875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:45.336"} +{"sensors":[{"euler":{"heading":29.9375,"pitch":128.3125,"roll":0.0625},"location":"Left Knee"},{"euler":{"heading":121.875,"pitch":121.8125,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":52.6875,"pitch":17.75,"roll":26.375},"location":"Right Ankle"},{"euler":{"heading":55.0,"pitch":-154.5625,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":292.6875,"pitch":152.125,"roll":-44.625},"location":"Right Knee"},{"euler":{"heading":32.1875,"pitch":-115.0625,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:45.437"} +{"sensors":[{"euler":{"heading":224.75,"pitch":139.1875,"roll":15.9375},"location":"Left Knee"},{"euler":{"heading":93.375,"pitch":103.375,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":49.375,"pitch":16.8125,"roll":26.3125},"location":"Right Ankle"},{"euler":{"heading":56.5625,"pitch":-155.5,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":295.5625,"pitch":148.1875,"roll":-43.375},"location":"Right Knee"},{"euler":{"heading":30.75,"pitch":-113.375,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:45.537"} +{"sensors":[{"euler":{"heading":239.0,"pitch":150.625,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":64.4375,"pitch":97.5625,"roll":13.625},"location":"Left Ankle"},{"euler":{"heading":44.0,"pitch":14.1875,"roll":26.25},"location":"Right Ankle"},{"euler":{"heading":56.0625,"pitch":-159.4375,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":299.1875,"pitch":143.8125,"roll":-41.25},"location":"Right Knee"},{"euler":{"heading":33.625,"pitch":-116.5625,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:45.638"} +{"sensors":[{"euler":{"heading":246.75,"pitch":153.4375,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":57.1875,"pitch":99.5625,"roll":4.375},"location":"Left Ankle"},{"euler":{"heading":36.3125,"pitch":7.9375,"roll":25.125},"location":"Right Ankle"},{"euler":{"heading":56.5,"pitch":-165.4375,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":301.9375,"pitch":140.3125,"roll":-37.5},"location":"Right Knee"},{"euler":{"heading":42.3125,"pitch":-124.75,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:45.739"} +{"sensors":[{"euler":{"heading":330.8125,"pitch":143.875,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":69.6875,"pitch":103.0625,"roll":13.375},"location":"Left Ankle"},{"euler":{"heading":26.125,"pitch":-5.5625,"roll":26.625},"location":"Right Ankle"},{"euler":{"heading":59.9375,"pitch":-165.5,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":302.5625,"pitch":138.8125,"roll":-31.4375},"location":"Right Knee"},{"euler":{"heading":42.4375,"pitch":-127.3125,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:45.840"} +{"sensors":[{"euler":{"heading":338.375,"pitch":137.75,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":80.625,"pitch":106.25,"roll":21.0625},"location":"Left Ankle"},{"euler":{"heading":12.125,"pitch":-14.875,"roll":22.5625},"location":"Right Ankle"},{"euler":{"heading":71.8125,"pitch":-149.5,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":314.125,"pitch":136.9375,"roll":-24.6875},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-131.0,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:45.941"} +{"sensors":[{"euler":{"heading":343.1875,"pitch":132.4375,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":93.8125,"pitch":109.25,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":20.625,"pitch":-11.3125,"roll":26.875},"location":"Right Ankle"},{"euler":{"heading":78.0625,"pitch":-141.3125,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":208.4375,"pitch":145.5625,"roll":-28.1875},"location":"Right Knee"},{"euler":{"heading":50.8125,"pitch":-137.1875,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:46.41"} +{"sensors":[{"euler":{"heading":349.6875,"pitch":128.875,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":97.4375,"pitch":110.8125,"roll":31.25},"location":"Left Ankle"},{"euler":{"heading":44.6875,"pitch":1.8125,"roll":31.125},"location":"Right Ankle"},{"euler":{"heading":76.75,"pitch":-141.25,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":226.5,"pitch":159.625,"roll":-36.0},"location":"Right Knee"},{"euler":{"heading":52.5625,"pitch":-141.5625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:46.142"} +{"sensors":[{"euler":{"heading":355.25,"pitch":126.625,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":112.5,"roll":34.5625},"location":"Left Ankle"},{"euler":{"heading":67.3125,"pitch":17.0625,"roll":27.0625},"location":"Right Ankle"},{"euler":{"heading":70.3125,"pitch":-145.5,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":245.25,"pitch":176.0,"roll":-41.6875},"location":"Right Knee"},{"euler":{"heading":54.5,"pitch":-146.75,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:46.243"} +{"sensors":[{"euler":{"heading":359.9375,"pitch":124.75,"roll":20.0625},"location":"Left Knee"},{"euler":{"heading":107.0,"pitch":115.0625,"roll":39.5},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":21.4375,"roll":26.9375},"location":"Right Ankle"},{"euler":{"heading":57.25,"pitch":-151.1875,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":254.4375,"pitch":-176.875,"roll":-42.5},"location":"Right Knee"},{"euler":{"heading":56.1875,"pitch":-151.375,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:46.344"} +{"sensors":[{"euler":{"heading":6.625,"pitch":124.0625,"roll":13.5625},"location":"Left Knee"},{"euler":{"heading":110.25,"pitch":117.8125,"roll":46.0625},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":19.0,"roll":27.0625},"location":"Right Ankle"},{"euler":{"heading":51.0,"pitch":-156.75,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":252.125,"pitch":175.5,"roll":-44.625},"location":"Right Knee"},{"euler":{"heading":59.25,"pitch":-155.5,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:46.444"} +{"sensors":[{"euler":{"heading":20.9375,"pitch":126.0625,"roll":1.875},"location":"Left Knee"},{"euler":{"heading":117.6875,"pitch":130.3125,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":64.625,"pitch":17.75,"roll":26.625},"location":"Right Ankle"},{"euler":{"heading":51.5625,"pitch":-156.875,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":276.1875,"pitch":164.75,"roll":-46.125},"location":"Right Knee"},{"euler":{"heading":45.5,"pitch":-135.5,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:46.548"} +{"sensors":[{"euler":{"heading":30.8125,"pitch":125.0625,"roll":-2.25},"location":"Left Knee"},{"euler":{"heading":124.5,"pitch":130.75,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":60.0625,"pitch":17.375,"roll":26.1875},"location":"Right Ankle"},{"euler":{"heading":51.9375,"pitch":-156.9375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":284.4375,"pitch":157.6875,"roll":-46.1875},"location":"Right Knee"},{"euler":{"heading":36.3125,"pitch":-116.4375,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:46.649"} +{"sensors":[{"euler":{"heading":2.0625,"pitch":133.625,"roll":8.125},"location":"Left Knee"},{"euler":{"heading":103.875,"pitch":107.8125,"roll":49.0625},"location":"Left Ankle"},{"euler":{"heading":56.625,"pitch":17.5,"roll":24.0625},"location":"Right Ankle"},{"euler":{"heading":53.75,"pitch":-155.625,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":290.5,"pitch":152.125,"roll":-45.4375},"location":"Right Knee"},{"euler":{"heading":31.3125,"pitch":-116.1875,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:46.751"} +{"sensors":[{"euler":{"heading":232.625,"pitch":145.8125,"roll":25.25},"location":"Left Knee"},{"euler":{"heading":74.9375,"pitch":97.875,"roll":22.75},"location":"Left Ankle"},{"euler":{"heading":52.875,"pitch":15.4375,"roll":25.6875},"location":"Right Ankle"},{"euler":{"heading":54.5,"pitch":-158.1875,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":293.375,"pitch":148.0625,"roll":-43.875},"location":"Right Knee"},{"euler":{"heading":31.5,"pitch":-115.8125,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:46.852"} +{"sensors":[{"euler":{"heading":245.9375,"pitch":153.25,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":55.1875,"pitch":97.0,"roll":3.5},"location":"Left Ankle"},{"euler":{"heading":47.0,"pitch":13.375,"roll":25.25},"location":"Right Ankle"},{"euler":{"heading":54.3125,"pitch":-162.0625,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":297.5,"pitch":143.0625,"roll":-41.5625},"location":"Right Knee"},{"euler":{"heading":36.5625,"pitch":-120.625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:46.953"} +{"sensors":[{"euler":{"heading":249.125,"pitch":147.625,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":61.1875,"pitch":103.6875,"roll":7.3125},"location":"Left Ankle"},{"euler":{"heading":37.875,"pitch":6.6875,"roll":25.8125},"location":"Right Ankle"},{"euler":{"heading":57.3125,"pitch":-166.5,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":299.0625,"pitch":140.0,"roll":-37.4375},"location":"Right Knee"},{"euler":{"heading":43.3125,"pitch":-126.0,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:47.53"} +{"sensors":[{"euler":{"heading":337.375,"pitch":140.5625,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":74.5,"pitch":106.0625,"roll":15.625},"location":"Left Ankle"},{"euler":{"heading":21.9375,"pitch":-9.25,"roll":25.875},"location":"Right Ankle"},{"euler":{"heading":66.75,"pitch":-157.8125,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":300.25,"pitch":139.5625,"roll":-30.1875},"location":"Right Knee"},{"euler":{"heading":43.625,"pitch":-128.75,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:47.155"} +{"sensors":[{"euler":{"heading":344.5,"pitch":134.5625,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":87.25,"pitch":108.5,"roll":25.0},"location":"Left Ankle"},{"euler":{"heading":14.5,"pitch":-17.0625,"roll":23.5625},"location":"Right Ankle"},{"euler":{"heading":78.5,"pitch":-144.875,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":306.625,"pitch":138.625,"roll":-26.1875},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-134.25,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:47.255"} +{"sensors":[{"euler":{"heading":349.4375,"pitch":129.75,"roll":29.125},"location":"Left Knee"},{"euler":{"heading":98.125,"pitch":110.6875,"roll":30.6875},"location":"Left Ankle"},{"euler":{"heading":29.375,"pitch":-8.75,"roll":27.625},"location":"Right Ankle"},{"euler":{"heading":81.3125,"pitch":-139.8125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":212.125,"pitch":149.9375,"roll":-32.625},"location":"Right Knee"},{"euler":{"heading":54.375,"pitch":-140.6875,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:47.356"} +{"sensors":[{"euler":{"heading":354.0,"pitch":127.25,"roll":25.9375},"location":"Left Knee"},{"euler":{"heading":98.5625,"pitch":111.125,"roll":33.0625},"location":"Left Ankle"},{"euler":{"heading":56.9375,"pitch":8.25,"roll":29.875},"location":"Right Ankle"},{"euler":{"heading":77.0625,"pitch":-141.1875,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":234.9375,"pitch":170.0,"roll":-38.5},"location":"Right Knee"},{"euler":{"heading":55.6875,"pitch":-145.3125,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:47.460"} +{"sensors":[{"euler":{"heading":358.1875,"pitch":126.0625,"roll":21.1875},"location":"Left Knee"},{"euler":{"heading":101.5,"pitch":111.875,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":71.375,"pitch":17.875,"roll":25.8125},"location":"Right Ankle"},{"euler":{"heading":65.9375,"pitch":-145.875,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":249.75,"pitch":-178.4375,"roll":-42.5},"location":"Right Knee"},{"euler":{"heading":56.6875,"pitch":-149.75,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:47.561"} +{"sensors":[{"euler":{"heading":3.4375,"pitch":125.5625,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":108.25,"pitch":114.5625,"roll":43.3125},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":20.5625,"roll":26.25},"location":"Right Ankle"},{"euler":{"heading":56.1875,"pitch":-151.6875,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":252.0,"pitch":177.5,"roll":-43.5},"location":"Right Knee"},{"euler":{"heading":57.0625,"pitch":-154.375,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:47.662"} +{"sensors":[{"euler":{"heading":15.625,"pitch":126.9375,"roll":5.0625},"location":"Left Knee"},{"euler":{"heading":107.9375,"pitch":116.9375,"roll":50.375},"location":"Left Ankle"},{"euler":{"heading":67.375,"pitch":18.3125,"roll":25.6875},"location":"Right Ankle"},{"euler":{"heading":54.4375,"pitch":-154.6875,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":269.9375,"pitch":169.25,"roll":-44.625},"location":"Right Knee"},{"euler":{"heading":54.6875,"pitch":-147.5625,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:47.763"} +{"sensors":[{"euler":{"heading":32.3125,"pitch":122.3125,"roll":-2.125},"location":"Left Knee"},{"euler":{"heading":128.0625,"pitch":140.25,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":62.0,"pitch":17.5625,"roll":25.5},"location":"Right Ankle"},{"euler":{"heading":51.4375,"pitch":-156.3125,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":280.5625,"pitch":160.25,"roll":-46.4375},"location":"Right Knee"},{"euler":{"heading":40.75,"pitch":-122.0,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:47.864"} +{"sensors":[{"euler":{"heading":28.375,"pitch":130.1875,"roll":2.125},"location":"Left Knee"},{"euler":{"heading":114.6875,"pitch":119.125,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":57.75,"pitch":16.4375,"roll":25.4375},"location":"Right Ankle"},{"euler":{"heading":54.625,"pitch":-154.875,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":286.1875,"pitch":153.0,"roll":-46.4375},"location":"Right Knee"},{"euler":{"heading":33.0625,"pitch":-115.125,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:47.966"} +{"sensors":[{"euler":{"heading":228.1875,"pitch":141.0625,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":84.5,"pitch":101.8125,"roll":31.625},"location":"Left Ankle"},{"euler":{"heading":54.3125,"pitch":15.375,"roll":25.375},"location":"Right Ankle"},{"euler":{"heading":56.875,"pitch":-155.25,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":290.75,"pitch":148.5,"roll":-44.625},"location":"Right Knee"},{"euler":{"heading":32.0625,"pitch":-113.6875,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:48.72"} +{"sensors":[{"euler":{"heading":244.25,"pitch":151.75,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":59.375,"pitch":99.25,"roll":7.375},"location":"Left Ankle"},{"euler":{"heading":49.5625,"pitch":13.75,"roll":25.9375},"location":"Right Ankle"},{"euler":{"heading":59.4375,"pitch":-155.0,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":294.5625,"pitch":143.6875,"roll":-42.375},"location":"Right Knee"},{"euler":{"heading":34.8125,"pitch":-117.5,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:48.172"} +{"sensors":[{"euler":{"heading":250.4375,"pitch":150.6875,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":57.375,"pitch":102.9375,"roll":3.5},"location":"Left Ankle"},{"euler":{"heading":41.375,"pitch":9.375,"roll":24.5625},"location":"Right Ankle"},{"euler":{"heading":60.8125,"pitch":-158.4375,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":298.0,"pitch":139.4375,"roll":-38.875},"location":"Right Knee"},{"euler":{"heading":40.6875,"pitch":-123.5625,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:48.273"} +{"sensors":[{"euler":{"heading":335.3125,"pitch":142.9375,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":69.0,"pitch":105.3125,"roll":12.0},"location":"Left Ankle"},{"euler":{"heading":29.6875,"pitch":-2.4375,"roll":25.0},"location":"Right Ankle"},{"euler":{"heading":63.75,"pitch":-158.4375,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":298.1875,"pitch":138.0625,"roll":-33.125},"location":"Right Knee"},{"euler":{"heading":43.1875,"pitch":-127.1875,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:48.374"} +{"sensors":[{"euler":{"heading":342.9375,"pitch":136.0,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":82.0625,"pitch":108.625,"roll":21.125},"location":"Left Ankle"},{"euler":{"heading":15.4375,"pitch":-12.5,"roll":23.1875},"location":"Right Ankle"},{"euler":{"heading":73.625,"pitch":-148.4375,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":308.6875,"pitch":136.8125,"roll":-26.25},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-131.0,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:48.475"} +{"sensors":[{"euler":{"heading":349.375,"pitch":130.9375,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":93.25,"pitch":111.375,"roll":27.75},"location":"Left Ankle"},{"euler":{"heading":26.25,"pitch":-9.5625,"roll":26.9375},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":-141.6875,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":299.125,"pitch":145.125,"roll":-29.25},"location":"Right Knee"},{"euler":{"heading":50.5,"pitch":-135.6875,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:48.575"} +{"sensors":[{"euler":{"heading":354.125,"pitch":127.1875,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":96.9375,"pitch":112.6875,"roll":30.0},"location":"Left Ankle"},{"euler":{"heading":50.4375,"pitch":2.6875,"roll":29.5},"location":"Right Ankle"},{"euler":{"heading":77.9375,"pitch":-143.3125,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":226.125,"pitch":160.875,"roll":-39.5625},"location":"Right Knee"},{"euler":{"heading":54.625,"pitch":-142.125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:48.677"} +{"sensors":[{"euler":{"heading":358.375,"pitch":125.125,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":100.25,"pitch":113.375,"roll":33.1875},"location":"Left Ankle"},{"euler":{"heading":71.9375,"pitch":17.0,"roll":24.75},"location":"Right Ankle"},{"euler":{"heading":70.1875,"pitch":-146.0625,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":244.1875,"pitch":176.6875,"roll":-42.5625},"location":"Right Knee"},{"euler":{"heading":56.0,"pitch":-147.8125,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:48.777"} +{"sensors":[{"euler":{"heading":2.8125,"pitch":123.6875,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":106.1875,"pitch":115.6875,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":74.9375,"pitch":20.625,"roll":25.5625},"location":"Right Ankle"},{"euler":{"heading":57.0625,"pitch":-150.5,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":252.9375,"pitch":-178.25,"roll":-43.25},"location":"Right Knee"},{"euler":{"heading":56.125,"pitch":-151.625,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:48.878"} +{"sensors":[{"euler":{"heading":8.8125,"pitch":124.0,"roll":12.3125},"location":"Left Knee"},{"euler":{"heading":108.0625,"pitch":117.9375,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":17.875,"roll":25.8125},"location":"Right Ankle"},{"euler":{"heading":52.25,"pitch":-155.5625,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":263.625,"pitch":173.4375,"roll":-46.125},"location":"Right Knee"},{"euler":{"heading":59.0625,"pitch":-153.3125,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:48.979"} +{"sensors":[{"euler":{"heading":24.625,"pitch":123.75,"roll":1.3125},"location":"Left Knee"},{"euler":{"heading":122.5625,"pitch":133.1875,"roll":58.5},"location":"Left Ankle"},{"euler":{"heading":63.125,"pitch":15.8125,"roll":25.3125},"location":"Right Ankle"},{"euler":{"heading":54.4375,"pitch":-155.5625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":273.5,"pitch":164.625,"roll":-47.4375},"location":"Right Knee"},{"euler":{"heading":44.75,"pitch":-130.4375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:49.80"} +{"sensors":[{"euler":{"heading":34.5625,"pitch":123.5625,"roll":-2.6875},"location":"Left Knee"},{"euler":{"heading":125.0625,"pitch":131.8125,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":61.0625,"pitch":14.5625,"roll":24.9375},"location":"Right Ankle"},{"euler":{"heading":53.625,"pitch":-158.375,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":278.6875,"pitch":158.1875,"roll":-47.625},"location":"Right Knee"},{"euler":{"heading":34.125,"pitch":-114.25,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:49.181"} +{"sensors":[{"euler":{"heading":21.0,"pitch":133.3125,"roll":6.375},"location":"Left Knee"},{"euler":{"heading":102.9375,"pitch":107.5625,"roll":32.0},"location":"Left Ankle"},{"euler":{"heading":59.1875,"pitch":16.0625,"roll":23.5625},"location":"Right Ankle"},{"euler":{"heading":55.5625,"pitch":-157.0625,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":285.5,"pitch":152.625,"roll":-46.375},"location":"Right Knee"},{"euler":{"heading":31.4375,"pitch":-112.8125,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:49.282"} +{"sensors":[{"euler":{"heading":236.0625,"pitch":146.4375,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":70.75,"pitch":98.6875,"roll":16.875},"location":"Left Ankle"},{"euler":{"heading":52.8125,"pitch":15.8125,"roll":23.875},"location":"Right Ankle"},{"euler":{"heading":57.75,"pitch":-156.9375,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":292.1875,"pitch":147.3125,"roll":-44.0},"location":"Right Knee"},{"euler":{"heading":33.6875,"pitch":-114.25,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:49.383"} +{"sensors":[{"euler":{"heading":249.0625,"pitch":154.125,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":51.625,"pitch":97.5625,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":45.25,"pitch":13.25,"roll":24.3125},"location":"Right Ankle"},{"euler":{"heading":57.9375,"pitch":-160.75,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":296.25,"pitch":142.6875,"roll":-41.25},"location":"Right Knee"},{"euler":{"heading":39.875,"pitch":-121.375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:49.487"} +{"sensors":[{"euler":{"heading":250.0625,"pitch":148.0,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":62.375,"pitch":103.6875,"roll":7.4375},"location":"Left Ankle"},{"euler":{"heading":34.8125,"pitch":4.1875,"roll":24.875},"location":"Right Ankle"},{"euler":{"heading":59.5625,"pitch":-164.0,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":299.625,"pitch":138.625,"roll":-35.4375},"location":"Right Knee"},{"euler":{"heading":42.375,"pitch":-127.375,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:49.588"} +{"sensors":[{"euler":{"heading":334.75,"pitch":141.5,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":74.3125,"pitch":103.8125,"roll":16.8125},"location":"Left Ankle"},{"euler":{"heading":17.8125,"pitch":-9.0,"roll":24.3125},"location":"Right Ankle"},{"euler":{"heading":71.0,"pitch":-153.8125,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":308.3125,"pitch":138.3125,"roll":-26.8125},"location":"Right Knee"},{"euler":{"heading":43.0625,"pitch":-129.875,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:49.689"} +{"sensors":[{"euler":{"heading":340.75,"pitch":136.375,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":81.6875,"pitch":105.5,"roll":22.5},"location":"Left Ankle"},{"euler":{"heading":17.5,"pitch":-11.6875,"roll":26.6875},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":-143.0,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":205.125,"pitch":143.3125,"roll":-26.25},"location":"Right Knee"},{"euler":{"heading":47.75,"pitch":-134.1875,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:49.790"} +{"sensors":[{"euler":{"heading":346.3125,"pitch":132.375,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":85.375,"pitch":106.875,"roll":24.9375},"location":"Left Ankle"},{"euler":{"heading":35.8125,"pitch":-1.3125,"roll":30.9375},"location":"Right Ankle"},{"euler":{"heading":80.375,"pitch":-141.125,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":220.875,"pitch":154.9375,"roll":-34.0},"location":"Right Knee"},{"euler":{"heading":49.8125,"pitch":-137.25,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:49.891"} +{"sensors":[{"euler":{"heading":352.3125,"pitch":129.0625,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":89.4375,"pitch":107.625,"roll":28.4375},"location":"Left Ankle"},{"euler":{"heading":59.0,"pitch":12.0,"roll":29.6875},"location":"Right Ankle"},{"euler":{"heading":76.5625,"pitch":-144.5,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":239.0625,"pitch":171.8125,"roll":-41.25},"location":"Right Knee"},{"euler":{"heading":51.875,"pitch":-141.75,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:49.994"} +{"sensors":[{"euler":{"heading":357.375,"pitch":126.3125,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":109.875,"roll":33.125},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":20.125,"roll":23.0},"location":"Right Ankle"},{"euler":{"heading":68.5625,"pitch":-146.0,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":250.5,"pitch":-176.375,"roll":-43.1875},"location":"Right Knee"},{"euler":{"heading":54.5625,"pitch":-146.5,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:50.94"} +{"sensors":[{"euler":{"heading":2.25,"pitch":126.3125,"roll":15.875},"location":"Left Knee"},{"euler":{"heading":100.875,"pitch":111.375,"roll":39.4375},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":20.125,"roll":25.25},"location":"Right Ankle"},{"euler":{"heading":55.8125,"pitch":-152.125,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":253.0625,"pitch":179.5625,"roll":-44.9375},"location":"Right Knee"},{"euler":{"heading":55.6875,"pitch":-152.4375,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:50.195"} +{"sensors":[{"euler":{"heading":13.8125,"pitch":126.4375,"roll":6.125},"location":"Left Knee"},{"euler":{"heading":107.9375,"pitch":119.0625,"roll":51.625},"location":"Left Ankle"},{"euler":{"heading":66.875,"pitch":18.75,"roll":24.6875},"location":"Right Ankle"},{"euler":{"heading":53.625,"pitch":-153.9375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":270.5625,"pitch":169.75,"roll":-45.3125},"location":"Right Knee"},{"euler":{"heading":53.75,"pitch":-144.375,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:50.295"} +{"sensors":[{"euler":{"heading":33.0625,"pitch":121.1875,"roll":-1.5},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":139.0625,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":61.9375,"pitch":18.75,"roll":24.25},"location":"Right Ankle"},{"euler":{"heading":51.5625,"pitch":-155.75,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":277.4375,"pitch":162.125,"roll":-47.875},"location":"Right Knee"},{"euler":{"heading":40.0,"pitch":-119.5,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:50.397"} +{"sensors":[{"euler":{"heading":32.9375,"pitch":129.0625,"roll":0.9375},"location":"Left Knee"},{"euler":{"heading":113.0,"pitch":120.3125,"roll":53.6875},"location":"Left Ankle"},{"euler":{"heading":60.8125,"pitch":18.5,"roll":23.0},"location":"Right Ankle"},{"euler":{"heading":55.5,"pitch":-155.4375,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":282.25,"pitch":156.625,"roll":-47.375},"location":"Right Knee"},{"euler":{"heading":31.625,"pitch":-114.4375,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:50.498"} +{"sensors":[{"euler":{"heading":230.25,"pitch":141.5625,"roll":17.0625},"location":"Left Knee"},{"euler":{"heading":84.25,"pitch":104.4375,"roll":30.4375},"location":"Left Ankle"},{"euler":{"heading":56.5625,"pitch":18.4375,"roll":23.375},"location":"Right Ankle"},{"euler":{"heading":56.0,"pitch":-154.6875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":289.6875,"pitch":150.125,"roll":-45.375},"location":"Right Knee"},{"euler":{"heading":29.6875,"pitch":-112.875,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:50.599"} +{"sensors":[{"euler":{"heading":243.8125,"pitch":151.125,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":58.625,"pitch":101.3125,"roll":6.8125},"location":"Left Ankle"},{"euler":{"heading":51.3125,"pitch":17.125,"roll":24.125},"location":"Right Ankle"},{"euler":{"heading":55.5625,"pitch":-157.0,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":295.6875,"pitch":145.125,"roll":-42.875},"location":"Right Knee"},{"euler":{"heading":25.6875,"pitch":-125.125,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:50.700"} +{"sensors":[{"euler":{"heading":248.5,"pitch":150.9375,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":59.8125,"pitch":101.375,"roll":6.4375},"location":"Left Ankle"},{"euler":{"heading":44.125,"pitch":12.8125,"roll":23.9375},"location":"Right Ankle"},{"euler":{"heading":56.6875,"pitch":-162.875,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":297.4375,"pitch":141.4375,"roll":-39.5},"location":"Right Knee"},{"euler":{"heading":40.4375,"pitch":-126.625,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:50.803"} +{"sensors":[{"euler":{"heading":337.625,"pitch":142.1875,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":69.4375,"pitch":104.1875,"roll":12.75},"location":"Left Ankle"},{"euler":{"heading":32.9375,"pitch":0.0,"roll":25.75},"location":"Right Ankle"},{"euler":{"heading":62.5625,"pitch":-158.5625,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":296.5,"pitch":140.125,"roll":-34.25},"location":"Right Knee"},{"euler":{"heading":41.0,"pitch":-128.0,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:50.904"} +{"sensors":[{"euler":{"heading":342.6875,"pitch":137.3125,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":79.3125,"pitch":105.8125,"roll":20.75},"location":"Left Ankle"},{"euler":{"heading":18.875,"pitch":-13.4375,"roll":25.125},"location":"Right Ankle"},{"euler":{"heading":76.0,"pitch":-146.875,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":299.25,"pitch":140.25,"roll":-29.625},"location":"Right Knee"},{"euler":{"heading":45.125,"pitch":-133.625,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:51.4"} +{"sensors":[{"euler":{"heading":346.0625,"pitch":133.4375,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":90.0625,"pitch":108.25,"roll":28.5},"location":"Left Ankle"},{"euler":{"heading":27.9375,"pitch":-8.125,"roll":27.1875},"location":"Right Ankle"},{"euler":{"heading":78.625,"pitch":-142.1875,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":213.4375,"pitch":149.8125,"roll":-33.8125},"location":"Right Knee"},{"euler":{"heading":49.625,"pitch":-138.9375,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:51.105"} +{"sensors":[{"euler":{"heading":352.1875,"pitch":129.6875,"roll":25.875},"location":"Left Knee"},{"euler":{"heading":93.875,"pitch":109.3125,"roll":31.125},"location":"Left Ankle"},{"euler":{"heading":51.8125,"pitch":5.0,"roll":30.5625},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":-144.0625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":232.5625,"pitch":168.1875,"roll":-41.25},"location":"Right Knee"},{"euler":{"heading":52.4375,"pitch":-144.625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:51.205"} +{"sensors":[{"euler":{"heading":358.4375,"pitch":126.625,"roll":22.4375},"location":"Left Knee"},{"euler":{"heading":99.25,"pitch":111.625,"roll":35.0625},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":17.75,"roll":25.3125},"location":"Right Ankle"},{"euler":{"heading":65.5,"pitch":-149.25,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":248.375,"pitch":-177.25,"roll":-42.9375},"location":"Right Knee"},{"euler":{"heading":55.125,"pitch":-149.5625,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:51.306"} +{"sensors":[{"euler":{"heading":3.8125,"pitch":125.5,"roll":17.3125},"location":"Left Knee"},{"euler":{"heading":104.1875,"pitch":114.0625,"roll":40.6875},"location":"Left Ankle"},{"euler":{"heading":77.625,"pitch":19.4375,"roll":26.0},"location":"Right Ankle"},{"euler":{"heading":56.0,"pitch":-153.875,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":253.625,"pitch":-174.125,"roll":-43.9375},"location":"Right Knee"},{"euler":{"heading":57.5625,"pitch":-155.8125,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:51.407"} +{"sensors":[{"euler":{"heading":13.5,"pitch":125.1875,"roll":8.75},"location":"Left Knee"},{"euler":{"heading":108.5,"pitch":119.5,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":69.1875,"pitch":17.6875,"roll":25.6875},"location":"Right Ankle"},{"euler":{"heading":51.5625,"pitch":-157.9375,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":260.125,"pitch":175.375,"roll":-45.8125},"location":"Right Knee"},{"euler":{"heading":58.375,"pitch":-153.5625,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:51.507"} +{"sensors":[{"euler":{"heading":31.1875,"pitch":121.4375,"roll":-0.5625},"location":"Left Knee"},{"euler":{"heading":127.0625,"pitch":139.3125,"roll":59.625},"location":"Left Ankle"},{"euler":{"heading":65.25,"pitch":17.625,"roll":24.625},"location":"Right Ankle"},{"euler":{"heading":51.875,"pitch":-158.5,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":272.375,"pitch":165.9375,"roll":-47.0625},"location":"Right Knee"},{"euler":{"heading":43.5,"pitch":-123.625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:51.609"} +{"sensors":[{"euler":{"heading":36.5,"pitch":125.0625,"roll":-1.5},"location":"Left Knee"},{"euler":{"heading":120.0,"pitch":127.4375,"roll":59.5},"location":"Left Ankle"},{"euler":{"heading":59.5625,"pitch":18.3125,"roll":24.125},"location":"Right Ankle"},{"euler":{"heading":52.6875,"pitch":-158.0,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":283.0,"pitch":157.125,"roll":-47.6875},"location":"Right Knee"},{"euler":{"heading":35.125,"pitch":-115.4375,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:51.710"} +{"sensors":[{"euler":{"heading":11.125,"pitch":137.0625,"roll":12.375},"location":"Left Knee"},{"euler":{"heading":91.1875,"pitch":104.5625,"roll":38.875},"location":"Left Ankle"},{"euler":{"heading":56.3125,"pitch":18.5625,"roll":23.625},"location":"Right Ankle"},{"euler":{"heading":55.125,"pitch":-156.625,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":303.625,"pitch":151.875,"roll":-46.4375},"location":"Right Knee"},{"euler":{"heading":31.5625,"pitch":-113.6875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:51.811"} +{"sensors":[{"euler":{"heading":240.8125,"pitch":148.1875,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":62.3125,"pitch":99.6875,"roll":12.375},"location":"Left Ankle"},{"euler":{"heading":51.375,"pitch":17.25,"roll":24.5},"location":"Right Ankle"},{"euler":{"heading":56.5,"pitch":-157.8125,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":291.8125,"pitch":146.9375,"roll":-44.5625},"location":"Right Knee"},{"euler":{"heading":33.5,"pitch":-115.125,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:51.911"} +{"sensors":[{"euler":{"heading":251.0625,"pitch":152.1875,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":53.25,"pitch":100.125,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":44.5,"pitch":13.125,"roll":24.1875},"location":"Right Ankle"},{"euler":{"heading":57.8125,"pitch":-160.9375,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":294.0,"pitch":142.3125,"roll":-41.875},"location":"Right Knee"},{"euler":{"heading":40.0,"pitch":-122.375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:52.11"} +{"sensors":[{"euler":{"heading":334.1875,"pitch":144.4375,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":68.8125,"pitch":106.375,"roll":9.0625},"location":"Left Ankle"},{"euler":{"heading":32.9375,"pitch":2.0,"roll":24.875},"location":"Right Ankle"},{"euler":{"heading":60.5625,"pitch":-162.625,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":294.6875,"pitch":139.125,"roll":-36.6875},"location":"Right Knee"},{"euler":{"heading":43.625,"pitch":-127.3125,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:52.114"} +{"sensors":[{"euler":{"heading":339.75,"pitch":138.0,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":77.625,"pitch":107.25,"roll":18.5},"location":"Left Ankle"},{"euler":{"heading":16.6875,"pitch":-10.0,"roll":22.125},"location":"Right Ankle"},{"euler":{"heading":71.1875,"pitch":-152.9375,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":299.0,"pitch":138.1875,"roll":-29.875},"location":"Right Knee"},{"euler":{"heading":44.6875,"pitch":-129.1875,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:52.215"} +{"sensors":[{"euler":{"heading":345.3125,"pitch":133.875,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":84.9375,"pitch":108.125,"roll":24.0},"location":"Left Ankle"},{"euler":{"heading":20.125,"pitch":-12.0625,"roll":25.375},"location":"Right Ankle"},{"euler":{"heading":79.3125,"pitch":-143.9375,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":295.5625,"pitch":143.125,"roll":-30.5},"location":"Right Knee"},{"euler":{"heading":48.25,"pitch":-135.0,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:52.316"} +{"sensors":[{"euler":{"heading":349.9375,"pitch":130.1875,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":89.0625,"pitch":108.625,"roll":26.875},"location":"Left Ankle"},{"euler":{"heading":40.625,"pitch":-1.75,"roll":29.75},"location":"Right Ankle"},{"euler":{"heading":80.5,"pitch":-142.875,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":217.4375,"pitch":157.125,"roll":-38.0625},"location":"Right Knee"},{"euler":{"heading":51.9375,"pitch":-141.3125,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:52.417"} +{"sensors":[{"euler":{"heading":356.0625,"pitch":126.5625,"roll":24.9375},"location":"Left Knee"},{"euler":{"heading":95.4375,"pitch":110.8125,"roll":30.5625},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":13.1875,"roll":28.1875},"location":"Right Ankle"},{"euler":{"heading":77.125,"pitch":-144.625,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":236.9375,"pitch":176.0,"roll":-40.8125},"location":"Right Knee"},{"euler":{"heading":55.125,"pitch":-147.0625,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:52.517"} +{"sensors":[{"euler":{"heading":1.625,"pitch":124.5,"roll":20.5625},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":113.1875,"roll":35.625},"location":"Left Ankle"},{"euler":{"heading":77.875,"pitch":18.875,"roll":27.0625},"location":"Right Ankle"},{"euler":{"heading":63.125,"pitch":-149.9375,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":250.3125,"pitch":-172.625,"roll":-42.75},"location":"Right Knee"},{"euler":{"heading":56.8125,"pitch":-152.0,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:52.617"} +{"sensors":[{"euler":{"heading":8.25,"pitch":123.875,"roll":14.25},"location":"Left Knee"},{"euler":{"heading":105.0625,"pitch":115.8125,"roll":42.125},"location":"Left Ankle"},{"euler":{"heading":74.8125,"pitch":21.75,"roll":25.75},"location":"Right Ankle"},{"euler":{"heading":53.875,"pitch":-155.5625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":252.0,"pitch":-179.0625,"roll":-45.3125},"location":"Right Knee"},{"euler":{"heading":60.125,"pitch":-157.75,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:52.718"} +{"sensors":[{"euler":{"heading":19.6875,"pitch":127.125,"roll":3.25},"location":"Left Knee"},{"euler":{"heading":110.375,"pitch":123.5,"roll":53.4375},"location":"Left Ankle"},{"euler":{"heading":65.5625,"pitch":18.8125,"roll":25.5625},"location":"Right Ankle"},{"euler":{"heading":56.75,"pitch":-155.9375,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":262.75,"pitch":171.9375,"roll":-46.125},"location":"Right Knee"},{"euler":{"heading":53.75,"pitch":-147.25,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:52.819"} +{"sensors":[{"euler":{"heading":37.5,"pitch":120.8125,"roll":-4.3125},"location":"Left Knee"},{"euler":{"heading":127.0625,"pitch":140.75,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":60.875,"pitch":17.6875,"roll":24.5625},"location":"Right Ankle"},{"euler":{"heading":53.0625,"pitch":-156.9375,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":272.4375,"pitch":163.6875,"roll":-47.5625},"location":"Right Knee"},{"euler":{"heading":40.75,"pitch":-120.25,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:52.920"} +{"sensors":[{"euler":{"heading":34.875,"pitch":129.0,"roll":-0.375},"location":"Left Knee"},{"euler":{"heading":114.8125,"pitch":120.75,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":58.125,"pitch":17.0,"roll":24.4375},"location":"Right Ankle"},{"euler":{"heading":56.125,"pitch":-157.875,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":277.6875,"pitch":157.1875,"roll":-48.0},"location":"Right Knee"},{"euler":{"heading":32.625,"pitch":-114.6875,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:53.21"} +{"sensors":[{"euler":{"heading":229.4375,"pitch":139.1875,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":84.625,"pitch":104.25,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":54.75,"pitch":15.25,"roll":24.9375},"location":"Right Ankle"},{"euler":{"heading":57.25,"pitch":-159.875,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":280.25,"pitch":153.1875,"roll":-46.625},"location":"Right Knee"},{"euler":{"heading":32.25,"pitch":-113.9375,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:53.121"} +{"sensors":[{"euler":{"heading":245.125,"pitch":149.625,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":100.0625,"roll":7.3125},"location":"Left Ankle"},{"euler":{"heading":48.8125,"pitch":12.375,"roll":25.125},"location":"Right Ankle"},{"euler":{"heading":57.3125,"pitch":-164.3125,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":284.0,"pitch":148.0625,"roll":-44.4375},"location":"Right Knee"},{"euler":{"heading":36.875,"pitch":-117.125,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:53.222"} +{"sensors":[{"euler":{"heading":250.25,"pitch":150.6875,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":56.6875,"pitch":101.125,"roll":3.125},"location":"Left Ankle"},{"euler":{"heading":41.8125,"pitch":8.0,"roll":24.3125},"location":"Right Ankle"},{"euler":{"heading":57.8125,"pitch":-170.125,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":286.0,"pitch":144.4375,"roll":-41.625},"location":"Right Knee"},{"euler":{"heading":43.3125,"pitch":-123.1875,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:53.323"} +{"sensors":[{"euler":{"heading":336.625,"pitch":141.6875,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":69.25,"pitch":104.4375,"roll":11.75},"location":"Left Ankle"},{"euler":{"heading":31.875,"pitch":-4.1875,"roll":24.5625},"location":"Right Ankle"},{"euler":{"heading":63.375,"pitch":-166.75,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":284.125,"pitch":142.375,"roll":-36.375},"location":"Right Knee"},{"euler":{"heading":45.3125,"pitch":-125.875,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:53.424"} +{"sensors":[{"euler":{"heading":342.0625,"pitch":136.375,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":77.875,"pitch":106.0625,"roll":18.5},"location":"Left Ankle"},{"euler":{"heading":15.9375,"pitch":-13.3125,"roll":21.25},"location":"Right Ankle"},{"euler":{"heading":77.125,"pitch":-148.625,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":299.9375,"pitch":139.75,"roll":-28.1875},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-130.75,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:53.524"} +{"sensors":[{"euler":{"heading":343.875,"pitch":133.6875,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":86.3125,"pitch":106.8125,"roll":25.75},"location":"Left Ankle"},{"euler":{"heading":23.0,"pitch":-11.4375,"roll":25.75},"location":"Right Ankle"},{"euler":{"heading":82.0625,"pitch":-143.4375,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":206.625,"pitch":149.375,"roll":-31.875},"location":"Right Knee"},{"euler":{"heading":49.75,"pitch":-136.875,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:53.625"} +{"sensors":[{"euler":{"heading":347.9375,"pitch":131.1875,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":88.75,"pitch":106.625,"roll":28.25},"location":"Left Ankle"},{"euler":{"heading":46.0,"pitch":2.0,"roll":29.0},"location":"Right Ankle"},{"euler":{"heading":79.75,"pitch":-143.9375,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":225.0625,"pitch":163.4375,"roll":-39.6875},"location":"Right Knee"},{"euler":{"heading":51.125,"pitch":-142.125,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:53.726"} +{"sensors":[{"euler":{"heading":353.625,"pitch":129.0625,"roll":22.9375},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":107.3125,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":67.375,"pitch":13.5,"roll":27.75},"location":"Right Ankle"},{"euler":{"heading":73.8125,"pitch":-146.0625,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":243.125,"pitch":-178.0625,"roll":-42.1875},"location":"Right Knee"},{"euler":{"heading":53.0625,"pitch":-147.75,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:53.827"} +{"sensors":[{"euler":{"heading":359.1875,"pitch":126.8125,"roll":19.0},"location":"Left Knee"},{"euler":{"heading":99.1875,"pitch":109.6875,"roll":37.25},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":16.0625,"roll":25.0},"location":"Right Ankle"},{"euler":{"heading":62.125,"pitch":-150.5625,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":230.8125,"pitch":-169.5625,"roll":-45.3125},"location":"Right Knee"},{"euler":{"heading":55.25,"pitch":-152.25,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:53.927"} +{"sensors":[{"euler":{"heading":6.3125,"pitch":126.3125,"roll":12.3125},"location":"Left Knee"},{"euler":{"heading":104.125,"pitch":112.625,"roll":46.3125},"location":"Left Ankle"},{"euler":{"heading":70.125,"pitch":16.875,"roll":24.9375},"location":"Right Ankle"},{"euler":{"heading":57.75,"pitch":-153.8125,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":251.25,"pitch":179.875,"roll":-46.5},"location":"Right Knee"},{"euler":{"heading":58.5625,"pitch":-154.0625,"roll":64.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:54.28"} +{"sensors":[{"euler":{"heading":23.6875,"pitch":126.375,"roll":1.375},"location":"Left Knee"},{"euler":{"heading":120.9375,"pitch":130.5,"roll":57.375},"location":"Left Ankle"},{"euler":{"heading":64.75,"pitch":13.9375,"roll":24.6875},"location":"Right Ankle"},{"euler":{"heading":57.1875,"pitch":-155.875,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":259.1875,"pitch":172.0625,"roll":-48.3125},"location":"Right Knee"},{"euler":{"heading":43.375,"pitch":-134.8125,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:54.130"} +{"sensors":[{"euler":{"heading":33.875,"pitch":126.375,"roll":-2.3125},"location":"Left Knee"},{"euler":{"heading":119.125,"pitch":124.75,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":61.1875,"pitch":12.75,"roll":24.0625},"location":"Right Ankle"},{"euler":{"heading":55.6875,"pitch":-157.4375,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":267.5,"pitch":164.125,"roll":-49.5},"location":"Right Knee"},{"euler":{"heading":34.625,"pitch":-118.4375,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:54.231"} +{"sensors":[{"euler":{"heading":20.3125,"pitch":134.5625,"roll":6.6875},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":107.3125,"roll":45.375},"location":"Left Ankle"},{"euler":{"heading":59.3125,"pitch":11.875,"roll":24.1875},"location":"Right Ankle"},{"euler":{"heading":58.8125,"pitch":-157.125,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":270.25,"pitch":158.625,"roll":-49.375},"location":"Right Knee"},{"euler":{"heading":30.1875,"pitch":-115.625,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:54.331"} +{"sensors":[{"euler":{"heading":233.4375,"pitch":144.375,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":73.3125,"pitch":100.25,"roll":21.3125},"location":"Left Ankle"},{"euler":{"heading":56.5,"pitch":10.9375,"roll":24.4375},"location":"Right Ankle"},{"euler":{"heading":60.125,"pitch":-159.25,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":273.6875,"pitch":154.6875,"roll":-48.0625},"location":"Right Knee"},{"euler":{"heading":31.375,"pitch":-115.4375,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:54.432"} +{"sensors":[{"euler":{"heading":246.5,"pitch":152.3125,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":53.875,"pitch":96.375,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":50.5,"pitch":8.9375,"roll":23.375},"location":"Right Ankle"},{"euler":{"heading":60.375,"pitch":-162.375,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":277.0625,"pitch":149.3125,"roll":-46.1875},"location":"Right Knee"},{"euler":{"heading":37.3125,"pitch":-119.0,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:54.533"} +{"sensors":[{"euler":{"heading":248.1875,"pitch":147.625,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":59.125,"pitch":99.3125,"roll":6.4375},"location":"Left Ankle"},{"euler":{"heading":43.5,"pitch":4.4375,"roll":23.875},"location":"Right Ankle"},{"euler":{"heading":61.4375,"pitch":-167.75,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":279.8125,"pitch":144.3125,"roll":-43.0},"location":"Right Knee"},{"euler":{"heading":44.5,"pitch":-123.5625,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:54.633"} +{"sensors":[{"euler":{"heading":336.8125,"pitch":140.5625,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":71.875,"pitch":102.4375,"roll":14.375},"location":"Left Ankle"},{"euler":{"heading":27.9375,"pitch":-6.25,"roll":25.25},"location":"Right Ankle"},{"euler":{"heading":67.5,"pitch":-158.875,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":287.4375,"pitch":141.0,"roll":-35.0},"location":"Right Knee"},{"euler":{"heading":43.75,"pitch":-127.0625,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:54.734"} +{"sensors":[{"euler":{"heading":343.4375,"pitch":135.125,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":83.0625,"pitch":104.1875,"roll":23.5},"location":"Left Ankle"},{"euler":{"heading":20.3125,"pitch":-16.8125,"roll":24.3125},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":-147.0625,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":288.1875,"pitch":143.0625,"roll":-31.25},"location":"Right Knee"},{"euler":{"heading":47.125,"pitch":-133.625,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:54.835"} +{"sensors":[{"euler":{"heading":347.0625,"pitch":132.125,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":104.9375,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":36.75,"pitch":-5.0625,"roll":28.25},"location":"Right Ankle"},{"euler":{"heading":81.5625,"pitch":-142.5,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":213.1875,"pitch":154.5,"roll":-36.6875},"location":"Right Knee"},{"euler":{"heading":49.25,"pitch":-138.1875,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:54.936"} +{"sensors":[{"euler":{"heading":349.875,"pitch":130.875,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":85.8125,"pitch":103.4375,"roll":28.1875},"location":"Left Ankle"},{"euler":{"heading":60.375,"pitch":8.375,"roll":28.6875},"location":"Right Ankle"},{"euler":{"heading":74.1875,"pitch":-145.1875,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":231.875,"pitch":171.375,"roll":-42.25},"location":"Right Knee"},{"euler":{"heading":49.75,"pitch":-143.3125,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:55.37"} +{"sensors":[{"euler":{"heading":352.5625,"pitch":129.0625,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":94.5,"pitch":104.6875,"roll":35.8125},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":17.25,"roll":22.1875},"location":"Right Ankle"},{"euler":{"heading":67.75,"pitch":-149.25,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":246.1875,"pitch":-172.875,"roll":-42.75},"location":"Right Knee"},{"euler":{"heading":53.3125,"pitch":-149.875,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:55.137"} +{"sensors":[{"euler":{"heading":358.0625,"pitch":128.5625,"roll":17.5},"location":"Left Knee"},{"euler":{"heading":101.0,"pitch":107.625,"roll":42.8125},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":18.4375,"roll":24.4375},"location":"Right Ankle"},{"euler":{"heading":58.625,"pitch":-151.8125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":251.5625,"pitch":-173.125,"roll":-42.3125},"location":"Right Knee"},{"euler":{"heading":53.8125,"pitch":-155.375,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:55.238"} +{"sensors":[{"euler":{"heading":9.0,"pitch":127.3125,"roll":8.6875},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":115.0625,"roll":53.8125},"location":"Left Ankle"},{"euler":{"heading":68.625,"pitch":16.5,"roll":24.1875},"location":"Right Ankle"},{"euler":{"heading":53.9375,"pitch":-155.5625,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":256.5,"pitch":176.125,"roll":-45.0625},"location":"Right Knee"},{"euler":{"heading":54.5625,"pitch":-152.0,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:55.344"} +{"sensors":[{"euler":{"heading":26.75,"pitch":125.25,"roll":-0.4375},"location":"Left Knee"},{"euler":{"heading":130.125,"pitch":140.6875,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":62.8125,"pitch":13.625,"roll":24.875},"location":"Right Ankle"},{"euler":{"heading":55.875,"pitch":-157.5,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":261.625,"pitch":169.25,"roll":-47.625},"location":"Right Knee"},{"euler":{"heading":39.9375,"pitch":-127.8125,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:55.444"} +{"sensors":[{"euler":{"heading":27.8125,"pitch":128.8125,"roll":0.875},"location":"Left Knee"},{"euler":{"heading":123.5,"pitch":124.4375,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":58.625,"pitch":13.5625,"roll":23.8125},"location":"Right Ankle"},{"euler":{"heading":57.4375,"pitch":-157.625,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":268.75,"pitch":163.0,"roll":-47.6875},"location":"Right Knee"},{"euler":{"heading":34.4375,"pitch":-117.0,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:55.545"} +{"sensors":[{"euler":{"heading":225.75,"pitch":137.4375,"roll":15.5},"location":"Left Knee"},{"euler":{"heading":98.5,"pitch":104.6875,"roll":45.4375},"location":"Left Ankle"},{"euler":{"heading":55.125,"pitch":13.25,"roll":24.4375},"location":"Right Ankle"},{"euler":{"heading":60.125,"pitch":-157.875,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":272.25,"pitch":158.8125,"roll":-46.75},"location":"Right Knee"},{"euler":{"heading":33.5,"pitch":-114.6875,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:55.646"} +{"sensors":[{"euler":{"heading":241.875,"pitch":147.5,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":69.9375,"pitch":100.8125,"roll":18.8125},"location":"Left Ankle"},{"euler":{"heading":50.0,"pitch":11.1875,"roll":24.9375},"location":"Right Ankle"},{"euler":{"heading":60.625,"pitch":-160.5625,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":277.375,"pitch":153.0,"roll":-45.3125},"location":"Right Knee"},{"euler":{"heading":34.75,"pitch":-115.0,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:55.747"} +{"sensors":[{"euler":{"heading":251.75,"pitch":152.5,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":59.875,"pitch":100.625,"roll":6.6875},"location":"Left Ankle"},{"euler":{"heading":42.25,"pitch":5.875,"roll":22.8125},"location":"Right Ankle"},{"euler":{"heading":61.3125,"pitch":-165.0625,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":278.4375,"pitch":146.8125,"roll":-43.75},"location":"Right Knee"},{"euler":{"heading":40.1875,"pitch":-122.4375,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:55.848"} +{"sensors":[{"euler":{"heading":332.6875,"pitch":144.5,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":105.625,"roll":15.3125},"location":"Left Ankle"},{"euler":{"heading":29.75,"pitch":-4.9375,"roll":24.0625},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":-160.875,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":285.375,"pitch":141.8125,"roll":-37.6875},"location":"Right Knee"},{"euler":{"heading":40.4375,"pitch":-122.8125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:55.949"} +{"sensors":[{"euler":{"heading":339.5625,"pitch":138.0625,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":81.6875,"pitch":107.6875,"roll":22.3125},"location":"Left Ankle"},{"euler":{"heading":15.375,"pitch":-12.0,"roll":19.4375},"location":"Right Ankle"},{"euler":{"heading":78.4375,"pitch":-147.625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":292.0625,"pitch":142.6875,"roll":-30.25},"location":"Right Knee"},{"euler":{"heading":45.125,"pitch":-126.8125,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:56.51"} +{"sensors":[{"euler":{"heading":342.8125,"pitch":134.3125,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":91.5625,"pitch":109.1875,"roll":30.125},"location":"Left Ankle"},{"euler":{"heading":23.875,"pitch":-11.25,"roll":24.375},"location":"Right Ankle"},{"euler":{"heading":83.0625,"pitch":-142.0,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":204.8125,"pitch":149.4375,"roll":-33.125},"location":"Right Knee"},{"euler":{"heading":48.4375,"pitch":-133.9375,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:56.152"} +{"sensors":[{"euler":{"heading":346.25,"pitch":132.625,"roll":27.5},"location":"Left Knee"},{"euler":{"heading":97.9375,"pitch":108.375,"roll":35.9375},"location":"Left Ankle"},{"euler":{"heading":48.1875,"pitch":-2.0,"roll":28.875},"location":"Right Ankle"},{"euler":{"heading":81.625,"pitch":-143.75,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":222.4375,"pitch":165.0625,"roll":-41.8125},"location":"Right Knee"},{"euler":{"heading":50.0625,"pitch":-140.25,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:56.252"} +{"sensors":[{"euler":{"heading":351.125,"pitch":130.3125,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":101.4375,"pitch":108.6875,"roll":39.4375},"location":"Left Ankle"},{"euler":{"heading":72.125,"pitch":11.375,"roll":25.875},"location":"Right Ankle"},{"euler":{"heading":73.4375,"pitch":-148.375,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":232.25,"pitch":-176.125,"roll":-45.1875},"location":"Right Knee"},{"euler":{"heading":52.0625,"pitch":-147.4375,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:56.354"} +{"sensors":[{"euler":{"heading":357.3125,"pitch":128.8125,"roll":19.4375},"location":"Left Knee"},{"euler":{"heading":108.0,"pitch":111.75,"roll":45.25},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":16.75,"roll":25.5},"location":"Right Ankle"},{"euler":{"heading":63.0625,"pitch":-151.4375,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":227.625,"pitch":-169.0,"roll":-44.8125},"location":"Right Knee"},{"euler":{"heading":53.875,"pitch":-151.25,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:56.454"} +{"sensors":[{"euler":{"heading":6.0,"pitch":127.25,"roll":12.25},"location":"Left Knee"},{"euler":{"heading":114.9375,"pitch":118.8125,"roll":53.8125},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":16.75,"roll":25.625},"location":"Right Ankle"},{"euler":{"heading":57.6875,"pitch":-154.875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":246.375,"pitch":-179.125,"roll":-45.625},"location":"Right Knee"},{"euler":{"heading":57.0,"pitch":-153.0,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:56.555"} +{"sensors":[{"euler":{"heading":26.25,"pitch":126.0625,"roll":0.9375},"location":"Left Knee"},{"euler":{"heading":132.5625,"pitch":144.8125,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":66.25,"pitch":13.875,"roll":25.125},"location":"Right Ankle"},{"euler":{"heading":58.625,"pitch":-156.1875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":257.9375,"pitch":171.4375,"roll":-48.0625},"location":"Right Knee"},{"euler":{"heading":42.25,"pitch":-128.375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:56.656"} +{"sensors":[{"euler":{"heading":32.25,"pitch":127.8125,"roll":-0.375},"location":"Left Knee"},{"euler":{"heading":130.625,"pitch":137.8125,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":62.375,"pitch":13.0625,"roll":24.25},"location":"Right Ankle"},{"euler":{"heading":57.375,"pitch":-156.875,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":264.4375,"pitch":165.4375,"roll":-48.3125},"location":"Right Knee"},{"euler":{"heading":35.4375,"pitch":-115.625,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:56.757"} +{"sensors":[{"euler":{"heading":11.0625,"pitch":134.625,"roll":12.6875},"location":"Left Knee"},{"euler":{"heading":106.625,"pitch":111.75,"roll":49.25},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":11.375,"roll":24.5625},"location":"Right Ankle"},{"euler":{"heading":61.125,"pitch":-157.0,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":268.0,"pitch":159.6875,"roll":-49.0625},"location":"Right Knee"},{"euler":{"heading":34.3125,"pitch":-114.625,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:56.858"} +{"sensors":[{"euler":{"heading":240.9375,"pitch":145.8125,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":76.375,"pitch":103.625,"roll":23.9375},"location":"Left Ankle"},{"euler":{"heading":55.1875,"pitch":9.6875,"roll":24.8125},"location":"Right Ankle"},{"euler":{"heading":62.25,"pitch":-159.1875,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":271.25,"pitch":154.75,"roll":-47.75},"location":"Right Knee"},{"euler":{"heading":35.8125,"pitch":-115.5625,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:56.958"} +{"sensors":[{"euler":{"heading":250.25,"pitch":152.9375,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":63.0,"pitch":99.25,"roll":10.125},"location":"Left Ankle"},{"euler":{"heading":48.6875,"pitch":7.375,"roll":24.125},"location":"Right Ankle"},{"euler":{"heading":63.3125,"pitch":-161.25,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":274.375,"pitch":149.5,"roll":-46.375},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-121.0625,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:57.59"} +{"sensors":[{"euler":{"heading":324.75,"pitch":147.375,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":71.25,"pitch":102.6875,"roll":15.5625},"location":"Left Ankle"},{"euler":{"heading":41.0625,"pitch":1.125,"roll":24.75},"location":"Right Ankle"},{"euler":{"heading":65.375,"pitch":-164.0625,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":275.375,"pitch":144.5,"roll":-43.6875},"location":"Right Knee"},{"euler":{"heading":46.125,"pitch":-126.875,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:57.161"} +{"sensors":[{"euler":{"heading":335.3125,"pitch":140.5625,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":82.75,"pitch":105.0,"roll":24.4375},"location":"Left Ankle"},{"euler":{"heading":23.5,"pitch":-8.875,"roll":23.3125},"location":"Right Ankle"},{"euler":{"heading":74.0625,"pitch":-154.125,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":284.5625,"pitch":141.8125,"roll":-34.1875},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-131.0,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:57.262"} +{"sensors":[{"euler":{"heading":344.5625,"pitch":134.875,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":107.0625,"roll":29.0},"location":"Left Ankle"},{"euler":{"heading":26.0625,"pitch":-12.6875,"roll":23.4375},"location":"Right Ankle"},{"euler":{"heading":84.1875,"pitch":-145.375,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":279.8125,"pitch":146.9375,"roll":-33.6875},"location":"Right Knee"},{"euler":{"heading":49.4375,"pitch":-136.6875,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:57.363"} +{"sensors":[{"euler":{"heading":348.5625,"pitch":131.6875,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":107.8125,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":44.625,"pitch":-5.3125,"roll":28.5},"location":"Right Ankle"},{"euler":{"heading":82.6875,"pitch":-144.0,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":215.5625,"pitch":160.125,"roll":-40.4375},"location":"Right Knee"},{"euler":{"heading":52.4375,"pitch":-141.4375,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:57.464"} +{"sensors":[{"euler":{"heading":351.875,"pitch":129.6875,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":97.375,"pitch":108.5625,"roll":36.1875},"location":"Left Ankle"},{"euler":{"heading":64.25,"pitch":6.25,"roll":30.875},"location":"Right Ankle"},{"euler":{"heading":75.375,"pitch":-147.625,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":234.125,"pitch":179.0,"roll":-42.875},"location":"Right Knee"},{"euler":{"heading":53.5,"pitch":-146.9375,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:57.565"} +{"sensors":[{"euler":{"heading":357.5,"pitch":128.25,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":102.375,"pitch":110.0625,"roll":40.75},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":14.0625,"roll":26.0},"location":"Right Ankle"},{"euler":{"heading":64.6875,"pitch":-152.1875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":225.5,"pitch":-169.1875,"roll":-44.75},"location":"Right Knee"},{"euler":{"heading":56.5,"pitch":-154.4375,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:57.667"} +{"sensors":[{"euler":{"heading":5.1875,"pitch":126.6875,"roll":14.75},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":115.0,"roll":47.375},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":17.25,"roll":25.5},"location":"Right Ankle"},{"euler":{"heading":58.875,"pitch":-153.75,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":242.6875,"pitch":-177.375,"roll":-46.1875},"location":"Right Knee"},{"euler":{"heading":59.625,"pitch":-158.5625,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:57.768"} +{"sensors":[{"euler":{"heading":16.8125,"pitch":127.5,"roll":5.375},"location":"Left Knee"},{"euler":{"heading":118.3125,"pitch":128.6875,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":65.875,"pitch":15.5625,"roll":24.8125},"location":"Right Ankle"},{"euler":{"heading":58.6875,"pitch":-155.5,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":257.9375,"pitch":172.75,"roll":-46.625},"location":"Right Knee"},{"euler":{"heading":51.125,"pitch":-147.75,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:57.869"} +{"sensors":[{"euler":{"heading":30.6875,"pitch":126.1875,"roll":-1.25},"location":"Left Knee"},{"euler":{"heading":126.5625,"pitch":141.875,"roll":64.3125},"location":"Left Ankle"},{"euler":{"heading":61.9375,"pitch":13.9375,"roll":24.0625},"location":"Right Ankle"},{"euler":{"heading":54.375,"pitch":-159.375,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":265.6875,"pitch":165.4375,"roll":-47.6875},"location":"Right Knee"},{"euler":{"heading":40.3125,"pitch":-124.1875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:57.970"} +{"sensors":[{"euler":{"heading":21.5,"pitch":132.0625,"roll":5.25},"location":"Left Knee"},{"euler":{"heading":116.3125,"pitch":115.5625,"roll":58.9375},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":12.5625,"roll":23.9375},"location":"Right Ankle"},{"euler":{"heading":56.5,"pitch":-160.875,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":269.25,"pitch":159.5625,"roll":-48.625},"location":"Right Knee"},{"euler":{"heading":33.625,"pitch":-120.3125,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:58.71"} +{"sensors":[{"euler":{"heading":229.9375,"pitch":142.5625,"roll":20.875},"location":"Left Knee"},{"euler":{"heading":87.3125,"pitch":102.8125,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":56.375,"pitch":11.4375,"roll":24.375},"location":"Right Ankle"},{"euler":{"heading":58.1875,"pitch":-162.375,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":272.125,"pitch":155.5625,"roll":-47.25},"location":"Right Knee"},{"euler":{"heading":33.125,"pitch":-117.875,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:58.171"} +{"sensors":[{"euler":{"heading":244.4375,"pitch":151.0625,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":65.375,"pitch":98.25,"roll":14.9375},"location":"Left Ankle"},{"euler":{"heading":50.4375,"pitch":8.8125,"roll":24.75},"location":"Right Ankle"},{"euler":{"heading":58.9375,"pitch":-164.875,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":276.5,"pitch":150.0625,"roll":-45.375},"location":"Right Knee"},{"euler":{"heading":36.6875,"pitch":-119.875,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:58.272"} +{"sensors":[{"euler":{"heading":250.625,"pitch":149.375,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":67.625,"pitch":102.625,"roll":14.875},"location":"Left Ankle"},{"euler":{"heading":42.5,"pitch":3.5,"roll":25.125},"location":"Right Ankle"},{"euler":{"heading":60.0,"pitch":-169.5,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":279.1875,"pitch":145.0,"roll":-42.3125},"location":"Right Knee"},{"euler":{"heading":42.875,"pitch":-125.625,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:58.372"} +{"sensors":[{"euler":{"heading":335.9375,"pitch":141.5625,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":80.4375,"pitch":104.3125,"roll":22.0625},"location":"Left Ankle"},{"euler":{"heading":24.8125,"pitch":-6.5,"roll":24.25},"location":"Right Ankle"},{"euler":{"heading":70.0625,"pitch":-156.5625,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":288.0625,"pitch":140.625,"roll":-34.0625},"location":"Right Knee"},{"euler":{"heading":43.3125,"pitch":-129.375,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:58.476"} +{"sensors":[{"euler":{"heading":344.6875,"pitch":135.375,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":89.875,"pitch":107.0,"roll":28.75},"location":"Left Ankle"},{"euler":{"heading":20.9375,"pitch":-11.3125,"roll":23.625},"location":"Right Ankle"},{"euler":{"heading":82.125,"pitch":-143.8125,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":289.3125,"pitch":143.75,"roll":-30.5},"location":"Right Knee"},{"euler":{"heading":48.8125,"pitch":-135.5625,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:58.576"} +{"sensors":[{"euler":{"heading":349.125,"pitch":131.25,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":99.6875,"pitch":108.375,"roll":35.625},"location":"Left Ankle"},{"euler":{"heading":36.5,"pitch":-4.3125,"roll":26.5},"location":"Right Ankle"},{"euler":{"heading":81.0625,"pitch":-142.875,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":272.75,"pitch":154.9375,"roll":-37.75},"location":"Right Knee"},{"euler":{"heading":50.875,"pitch":-141.1875,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:58.677"} +{"sensors":[{"euler":{"heading":352.5625,"pitch":128.625,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":102.6875,"pitch":108.75,"roll":38.0625},"location":"Left Ankle"},{"euler":{"heading":60.1875,"pitch":7.5,"roll":27.1875},"location":"Right Ankle"},{"euler":{"heading":78.4375,"pitch":-145.0625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":233.4375,"pitch":175.8125,"roll":-43.5625},"location":"Right Knee"},{"euler":{"heading":53.4375,"pitch":-147.75,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:58.778"} +{"sensors":[{"euler":{"heading":357.4375,"pitch":127.1875,"roll":22.625},"location":"Left Knee"},{"euler":{"heading":106.75,"pitch":110.875,"roll":42.0},"location":"Left Ankle"},{"euler":{"heading":77.3125,"pitch":17.375,"roll":25.1875},"location":"Right Ankle"},{"euler":{"heading":67.8125,"pitch":-148.25,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":249.625,"pitch":-170.6875,"roll":-43.75},"location":"Right Knee"},{"euler":{"heading":53.875,"pitch":-151.75,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:58.879"} +{"sensors":[{"euler":{"heading":2.0,"pitch":126.375,"roll":17.625},"location":"Left Knee"},{"euler":{"heading":112.75,"pitch":114.3125,"roll":48.625},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":22.5,"roll":22.9375},"location":"Right Ankle"},{"euler":{"heading":57.9375,"pitch":-152.375,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":252.625,"pitch":-179.3125,"roll":-43.5625},"location":"Right Knee"},{"euler":{"heading":55.1875,"pitch":-154.8125,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:58.980"} +{"sensors":[{"euler":{"heading":12.3125,"pitch":126.25,"roll":8.4375},"location":"Left Knee"},{"euler":{"heading":117.75,"pitch":124.75,"roll":59.0},"location":"Left Ankle"},{"euler":{"heading":68.5,"pitch":18.8125,"roll":22.5625},"location":"Right Ankle"},{"euler":{"heading":56.9375,"pitch":-154.75,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":260.5625,"pitch":173.625,"roll":-46.4375},"location":"Right Knee"},{"euler":{"heading":50.5,"pitch":-145.0625,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:59.81"} +{"sensors":[{"euler":{"heading":29.0,"pitch":125.0,"roll":-0.4375},"location":"Left Knee"},{"euler":{"heading":129.875,"pitch":144.5625,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":63.875,"pitch":17.0625,"roll":22.9375},"location":"Right Ankle"},{"euler":{"heading":53.5625,"pitch":-157.875,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":267.125,"pitch":166.5,"roll":-48.0625},"location":"Right Knee"},{"euler":{"heading":35.6875,"pitch":-121.1875,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:59.182"} +{"sensors":[{"euler":{"heading":28.625,"pitch":131.1875,"roll":1.1875},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":124.4375,"roll":65.625},"location":"Left Ankle"},{"euler":{"heading":61.4375,"pitch":16.1875,"roll":22.3125},"location":"Right Ankle"},{"euler":{"heading":56.4375,"pitch":-158.25,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":271.75,"pitch":160.0625,"roll":-48.9375},"location":"Right Knee"},{"euler":{"heading":29.9375,"pitch":-117.0,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:59.282"} +{"sensors":[{"euler":{"heading":227.625,"pitch":140.5,"roll":17.8125},"location":"Left Knee"},{"euler":{"heading":98.0625,"pitch":104.1875,"roll":41.5},"location":"Left Ankle"},{"euler":{"heading":58.3125,"pitch":16.0625,"roll":22.6875},"location":"Right Ankle"},{"euler":{"heading":57.8125,"pitch":-158.0,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":275.6875,"pitch":154.8125,"roll":-32.1875},"location":"Right Knee"},{"euler":{"heading":30.1875,"pitch":-115.25,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:59.383"} +{"sensors":[{"euler":{"heading":242.5,"pitch":149.25,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":69.1875,"pitch":100.0,"roll":18.875},"location":"Left Ankle"},{"euler":{"heading":53.125,"pitch":15.25,"roll":23.0},"location":"Right Ankle"},{"euler":{"heading":58.625,"pitch":-159.1875,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":282.375,"pitch":149.3125,"roll":-46.25},"location":"Right Knee"},{"euler":{"heading":31.3125,"pitch":-115.6875,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:59.484"} +{"sensors":[{"euler":{"heading":249.6875,"pitch":152.4375,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":59.9375,"pitch":98.9375,"roll":9.0625},"location":"Left Ankle"},{"euler":{"heading":47.4375,"pitch":12.1875,"roll":21.875},"location":"Right Ankle"},{"euler":{"heading":59.0,"pitch":-163.5625,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":284.1875,"pitch":144.6875,"roll":-44.125},"location":"Right Knee"},{"euler":{"heading":37.5,"pitch":-121.0,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:59.585"} +{"sensors":[{"euler":{"heading":336.5,"pitch":143.875,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":75.4375,"pitch":105.125,"roll":16.4375},"location":"Left Ankle"},{"euler":{"heading":35.9375,"pitch":2.875,"roll":22.75},"location":"Right Ankle"},{"euler":{"heading":62.1875,"pitch":-164.8125,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":286.5,"pitch":140.625,"roll":-39.25},"location":"Right Knee"},{"euler":{"heading":42.75,"pitch":-127.6875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:59.687"} +{"sensors":[{"euler":{"heading":343.625,"pitch":137.25,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":82.0,"pitch":105.6875,"roll":22.625},"location":"Left Ankle"},{"euler":{"heading":17.875,"pitch":-7.125,"roll":19.1875},"location":"Right Ankle"},{"euler":{"heading":74.375,"pitch":-150.8125,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":294.0,"pitch":139.0,"roll":-31.6875},"location":"Right Knee"},{"euler":{"heading":44.1875,"pitch":-131.8125,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:59.788"} +{"sensors":[{"euler":{"heading":348.875,"pitch":132.375,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":89.625,"pitch":107.3125,"roll":27.75},"location":"Left Ankle"},{"euler":{"heading":22.1875,"pitch":-8.0625,"roll":23.875},"location":"Right Ankle"},{"euler":{"heading":82.0625,"pitch":-142.625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":283.0,"pitch":147.75,"roll":-34.375},"location":"Right Knee"},{"euler":{"heading":49.0625,"pitch":-139.375,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:59.889"} +{"sensors":[{"euler":{"heading":353.125,"pitch":129.1875,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":92.8125,"pitch":106.9375,"roll":30.5625},"location":"Left Ankle"},{"euler":{"heading":44.375,"pitch":1.375,"roll":26.4375},"location":"Right Ankle"},{"euler":{"heading":80.25,"pitch":-144.4375,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":224.125,"pitch":165.125,"roll":-42.1875},"location":"Right Knee"},{"euler":{"heading":51.8125,"pitch":-144.0,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:17:59.990"} +{"sensors":[{"euler":{"heading":357.0625,"pitch":126.9375,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":100.0,"pitch":107.5625,"roll":37.625},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":14.6875,"roll":23.875},"location":"Right Ankle"},{"euler":{"heading":75.0,"pitch":-147.625,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":242.0625,"pitch":-175.75,"roll":-42.375},"location":"Right Knee"},{"euler":{"heading":53.1875,"pitch":-149.0,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:00.91"} +{"sensors":[{"euler":{"heading":0.5625,"pitch":126.375,"roll":19.5625},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":110.75,"roll":43.125},"location":"Left Ankle"},{"euler":{"heading":77.875,"pitch":19.3125,"roll":24.25},"location":"Right Ankle"},{"euler":{"heading":63.9375,"pitch":-149.9375,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":252.3125,"pitch":-168.875,"roll":-43.75},"location":"Right Knee"},{"euler":{"heading":52.25,"pitch":-151.125,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:00.191"} +{"sensors":[{"euler":{"heading":7.3125,"pitch":125.75,"roll":12.5},"location":"Left Knee"},{"euler":{"heading":114.0625,"pitch":116.5,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":72.4375,"pitch":23.375,"roll":23.6875},"location":"Right Ankle"},{"euler":{"heading":55.3125,"pitch":-154.25,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":253.1875,"pitch":-179.9375,"roll":-44.9375},"location":"Right Knee"},{"euler":{"heading":53.125,"pitch":-153.3125,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:00.292"} +{"sensors":[{"euler":{"heading":22.3125,"pitch":126.125,"roll":1.1875},"location":"Left Knee"},{"euler":{"heading":124.375,"pitch":133.875,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":63.25,"pitch":19.8125,"roll":23.125},"location":"Right Ankle"},{"euler":{"heading":56.625,"pitch":-156.5,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":262.75,"pitch":172.0,"roll":-46.75},"location":"Right Knee"},{"euler":{"heading":46.125,"pitch":-141.875,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:00.392"} +{"sensors":[{"euler":{"heading":37.125,"pitch":123.75,"roll":-4.75},"location":"Left Knee"},{"euler":{"heading":139.75,"pitch":159.1875,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":59.25,"pitch":19.375,"roll":22.3125},"location":"Right Ankle"},{"euler":{"heading":52.625,"pitch":-158.625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":287.875,"pitch":163.75,"roll":-47.5625},"location":"Right Knee"},{"euler":{"heading":35.75,"pitch":-120.0,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:00.493"} +{"sensors":[{"euler":{"heading":28.4375,"pitch":130.625,"roll":2.0},"location":"Left Knee"},{"euler":{"heading":128.875,"pitch":126.0,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":55.8125,"pitch":18.75,"roll":22.0},"location":"Right Ankle"},{"euler":{"heading":55.9375,"pitch":-158.9375,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":276.5625,"pitch":157.875,"roll":-48.4375},"location":"Right Knee"},{"euler":{"heading":29.9375,"pitch":-117.0625,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:00.594"} +{"sensors":[{"euler":{"heading":228.375,"pitch":141.25,"roll":18.375},"location":"Left Knee"},{"euler":{"heading":98.75,"pitch":104.1875,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":52.0625,"pitch":17.9375,"roll":22.125},"location":"Right Ankle"},{"euler":{"heading":58.125,"pitch":-158.8125,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":279.625,"pitch":153.5,"roll":-47.5},"location":"Right Knee"},{"euler":{"heading":29.5625,"pitch":-115.875,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:00.694"} +{"sensors":[{"euler":{"heading":243.25,"pitch":149.1875,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":71.0625,"pitch":101.1875,"roll":20.4375},"location":"Left Ankle"},{"euler":{"heading":47.0,"pitch":15.125,"roll":22.0625},"location":"Right Ankle"},{"euler":{"heading":58.5,"pitch":-160.6875,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":283.8125,"pitch":148.0,"roll":-45.875},"location":"Right Knee"},{"euler":{"heading":31.4375,"pitch":-116.75,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:00.795"} +{"sensors":[{"euler":{"heading":250.375,"pitch":150.9375,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":64.5625,"pitch":101.0,"roll":12.5},"location":"Left Ankle"},{"euler":{"heading":39.875,"pitch":10.0,"roll":20.5625},"location":"Right Ankle"},{"euler":{"heading":59.25,"pitch":-166.1875,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":283.6875,"pitch":143.5,"roll":-44.0},"location":"Right Knee"},{"euler":{"heading":39.8125,"pitch":-122.5,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:00.896"} +{"sensors":[{"euler":{"heading":339.625,"pitch":142.125,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":80.0625,"pitch":106.1875,"roll":20.9375},"location":"Left Ankle"},{"euler":{"heading":28.5625,"pitch":-1.8125,"roll":21.4375},"location":"Right Ankle"},{"euler":{"heading":62.6875,"pitch":-165.9375,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":284.25,"pitch":140.6875,"roll":-38.4375},"location":"Right Knee"},{"euler":{"heading":43.0,"pitch":-128.0,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:00.996"} +{"sensors":[{"euler":{"heading":346.625,"pitch":136.0625,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":88.8125,"pitch":108.8125,"roll":28.8125},"location":"Left Ankle"},{"euler":{"heading":14.75,"pitch":-9.3125,"roll":17.8125},"location":"Right Ankle"},{"euler":{"heading":74.375,"pitch":-152.3125,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":291.8125,"pitch":139.5,"roll":-31.9375},"location":"Right Knee"},{"euler":{"heading":44.3125,"pitch":-130.6875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:01.97"} +{"sensors":[{"euler":{"heading":352.25,"pitch":131.5625,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":102.1875,"pitch":111.6875,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":20.5625,"pitch":-10.3125,"roll":23.0625},"location":"Right Ankle"},{"euler":{"heading":80.6875,"pitch":-144.0,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":282.375,"pitch":146.0,"roll":-33.4375},"location":"Right Knee"},{"euler":{"heading":47.1875,"pitch":-135.9375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:01.197"} +{"sensors":[{"euler":{"heading":354.9375,"pitch":128.9375,"roll":25.5},"location":"Left Knee"},{"euler":{"heading":105.0625,"pitch":112.25,"roll":40.0},"location":"Left Ankle"},{"euler":{"heading":45.0625,"pitch":-1.0,"roll":26.375},"location":"Right Ankle"},{"euler":{"heading":81.0,"pitch":-142.5,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":218.75,"pitch":163.75,"roll":-41.6875},"location":"Right Knee"},{"euler":{"heading":50.3125,"pitch":-143.0,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:01.297"} +{"sensors":[{"euler":{"heading":0.25,"pitch":126.5625,"roll":22.25},"location":"Left Knee"},{"euler":{"heading":111.3125,"pitch":114.375,"roll":43.9375},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":9.5625,"roll":24.8125},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":-146.25,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":231.8125,"pitch":-176.4375,"roll":-45.5},"location":"Right Knee"},{"euler":{"heading":51.75,"pitch":-147.625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:01.398"} +{"sensors":[{"euler":{"heading":4.5,"pitch":125.4375,"roll":17.9375},"location":"Left Knee"},{"euler":{"heading":116.3125,"pitch":116.4375,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":16.1875,"roll":23.5625},"location":"Right Ankle"},{"euler":{"heading":62.0,"pitch":-152.0,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":226.3125,"pitch":-168.625,"roll":-44.5625},"location":"Right Knee"},{"euler":{"heading":53.5,"pitch":-152.0625,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:01.498"} +{"sensors":[{"euler":{"heading":12.4375,"pitch":125.5,"roll":10.6875},"location":"Left Knee"},{"euler":{"heading":119.6875,"pitch":123.0,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":15.625,"roll":23.25},"location":"Right Ankle"},{"euler":{"heading":57.5,"pitch":-156.9375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":240.1875,"pitch":-191.75,"roll":-47.25},"location":"Right Knee"},{"euler":{"heading":55.5625,"pitch":-151.375,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:01.599"} +{"sensors":[{"euler":{"heading":29.1875,"pitch":125.125,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":143.0625,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":62.9375,"pitch":13.0625,"roll":23.0625},"location":"Right Ankle"},{"euler":{"heading":56.0,"pitch":-158.9375,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":250.9375,"pitch":175.5,"roll":-48.5},"location":"Right Knee"},{"euler":{"heading":38.25,"pitch":-132.125,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:01.700"} +{"sensors":[{"euler":{"heading":34.625,"pitch":129.25,"roll":-1.5625},"location":"Left Knee"},{"euler":{"heading":126.875,"pitch":127.8125,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":60.75,"pitch":11.8125,"roll":21.375},"location":"Right Ankle"},{"euler":{"heading":56.0,"pitch":-159.875,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":256.9375,"pitch":168.5625,"roll":-49.3125},"location":"Right Knee"},{"euler":{"heading":31.3125,"pitch":-119.875,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:01.800"} +{"sensors":[{"euler":{"heading":222.125,"pitch":136.1875,"roll":10.9375},"location":"Left Knee"},{"euler":{"heading":104.6875,"pitch":107.25,"roll":48.0625},"location":"Left Ankle"},{"euler":{"heading":59.375,"pitch":11.3125,"roll":20.5625},"location":"Right Ankle"},{"euler":{"heading":58.25,"pitch":-160.8125,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":259.5625,"pitch":164.375,"roll":-50.4375},"location":"Right Knee"},{"euler":{"heading":28.8125,"pitch":-118.125,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:01.901"} +{"sensors":[{"euler":{"heading":236.5625,"pitch":146.5,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":75.75,"pitch":101.0,"roll":24.0625},"location":"Left Ankle"},{"euler":{"heading":54.875,"pitch":11.3125,"roll":22.0625},"location":"Right Ankle"},{"euler":{"heading":58.3125,"pitch":-162.0625,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":267.0,"pitch":157.9375,"roll":-49.25},"location":"Right Knee"},{"euler":{"heading":29.6875,"pitch":-116.875,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:02.2"} +{"sensors":[{"euler":{"heading":247.625,"pitch":152.375,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":63.1875,"pitch":96.6875,"roll":10.75},"location":"Left Ankle"},{"euler":{"heading":48.0625,"pitch":9.625,"roll":21.0625},"location":"Right Ankle"},{"euler":{"heading":60.125,"pitch":-164.0625,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":272.125,"pitch":151.25,"roll":-47.125},"location":"Right Knee"},{"euler":{"heading":35.8125,"pitch":-120.4375,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:02.102"} +{"sensors":[{"euler":{"heading":328.375,"pitch":146.0,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":70.8125,"pitch":101.625,"roll":15.8125},"location":"Left Ankle"},{"euler":{"heading":39.5,"pitch":5.0,"roll":20.625},"location":"Right Ankle"},{"euler":{"heading":61.8125,"pitch":-168.625,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":274.25,"pitch":147.0625,"roll":-44.0},"location":"Right Knee"},{"euler":{"heading":43.75,"pitch":-124.3125,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:02.203"} +{"sensors":[{"euler":{"heading":340.25,"pitch":138.0,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":86.375,"pitch":104.4375,"roll":24.75},"location":"Left Ankle"},{"euler":{"heading":26.1875,"pitch":-5.3125,"roll":21.75},"location":"Right Ankle"},{"euler":{"heading":70.8125,"pitch":-159.6875,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":278.4375,"pitch":144.375,"roll":-36.6875},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-130.4375,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:18:02.303"} diff --git a/sensors/treadmill_imu_data/imu_data_treadmill_4min_1.9mph.json b/sensors/treadmill_imu_data/imu_data_treadmill_4min_1.9mph.json new file mode 100644 index 0000000..a1afaa5 --- /dev/null +++ b/sensors/treadmill_imu_data/imu_data_treadmill_4min_1.9mph.json @@ -0,0 +1,2507 @@ +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:38.807"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:38.908"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:39.8"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:39.109"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:39.209"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:39.310"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:39.411"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:39.511"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:39.612"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:39.713"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:39.814"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:39.915"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:40.16"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:40.117"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:40.218"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:40.319"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:40.420"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:40.522"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:40.623"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:40.724"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:40.825"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:40.926"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:41.27"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:41.128"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:41.229"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:41.330"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:41.431"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:41.532"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:41.633"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:41.735"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:41.836"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.706738251655e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:28:41.937"} +{"sensors":[{"euler":{"heading":21.0,"pitch":-10.1875,"roll":7.4375},"location":"Left Knee"},{"euler":{"heading":41.6875,"pitch":-9.5625,"roll":4.875},"location":"Left Ankle"},{"euler":{"heading":6.25,"pitch":-1.125,"roll":0.9375},"location":"Right Ankle"},{"euler":{"heading":350.875,"pitch":8.125,"roll":-8.6875},"location":"Right Hip"},{"euler":{"heading":356.9375,"pitch":4.4375,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":353.75,"pitch":-6.9375,"roll":-1.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:55.826"} +{"sensors":[{"euler":{"heading":9.625,"pitch":-6.25,"roll":6.125},"location":"Left Knee"},{"euler":{"heading":24.6875,"pitch":-7.75,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":3.75,"pitch":0.3125,"roll":-2.625},"location":"Right Ankle"},{"euler":{"heading":349.5,"pitch":4.375,"roll":-10.3125},"location":"Right Hip"},{"euler":{"heading":1.6875,"pitch":2.6875,"roll":1.1875},"location":"Right Knee"},{"euler":{"heading":346.0625,"pitch":-4.0,"roll":-1.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:55.926"} +{"sensors":[{"euler":{"heading":350.5625,"pitch":2.3125,"roll":-0.375},"location":"Left Knee"},{"euler":{"heading":358.6875,"pitch":-11.5625,"roll":5.0625},"location":"Left Ankle"},{"euler":{"heading":0.25,"pitch":1.1875,"roll":-3.125},"location":"Right Ankle"},{"euler":{"heading":347.375,"pitch":2.0625,"roll":-11.0},"location":"Right Hip"},{"euler":{"heading":5.75,"pitch":1.875,"roll":1.375},"location":"Right Knee"},{"euler":{"heading":343.9375,"pitch":-4.4375,"roll":-1.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:56.27"} +{"sensors":[{"euler":{"heading":334.75,"pitch":6.625,"roll":-2.75},"location":"Left Knee"},{"euler":{"heading":338.9375,"pitch":-10.25,"roll":9.875},"location":"Left Ankle"},{"euler":{"heading":354.75,"pitch":1.3125,"roll":-4.8125},"location":"Right Ankle"},{"euler":{"heading":344.4375,"pitch":-0.25,"roll":-11.5625},"location":"Right Hip"},{"euler":{"heading":11.875,"pitch":2.0625,"roll":2.5},"location":"Right Knee"},{"euler":{"heading":344.6875,"pitch":-1.75,"roll":-2.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:56.128"} +{"sensors":[{"euler":{"heading":329.1875,"pitch":3.5625,"roll":-0.875},"location":"Left Knee"},{"euler":{"heading":334.3125,"pitch":-6.3125,"roll":8.625},"location":"Left Ankle"},{"euler":{"heading":346.375,"pitch":0.0,"roll":-6.125},"location":"Right Ankle"},{"euler":{"heading":340.625,"pitch":-3.5625,"roll":-11.9375},"location":"Right Hip"},{"euler":{"heading":19.75,"pitch":4.375,"roll":3.875},"location":"Right Knee"},{"euler":{"heading":347.875,"pitch":2.6875,"roll":-3.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:56.228"} +{"sensors":[{"euler":{"heading":333.0625,"pitch":-3.5,"roll":-2.5},"location":"Left Knee"},{"euler":{"heading":344.875,"pitch":-3.625,"roll":5.0},"location":"Left Ankle"},{"euler":{"heading":334.0,"pitch":-5.3125,"roll":-5.5},"location":"Right Ankle"},{"euler":{"heading":337.75,"pitch":-6.5,"roll":-11.1875},"location":"Right Hip"},{"euler":{"heading":30.5625,"pitch":7.5625,"roll":6.0},"location":"Right Knee"},{"euler":{"heading":351.5625,"pitch":2.9375,"roll":-3.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:56.329"} +{"sensors":[{"euler":{"heading":337.1875,"pitch":-9.9375,"roll":-3.0},"location":"Left Knee"},{"euler":{"heading":352.5625,"pitch":1.75,"roll":1.4375},"location":"Left Ankle"},{"euler":{"heading":316.0625,"pitch":-4.375,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":344.625,"pitch":-6.0625,"roll":-6.0625},"location":"Right Hip"},{"euler":{"heading":39.125,"pitch":7.0,"roll":5.375},"location":"Right Knee"},{"euler":{"heading":355.0,"pitch":2.5625,"roll":-3.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:56.430"} +{"sensors":[{"euler":{"heading":340.1875,"pitch":-13.625,"roll":-3.4375},"location":"Left Knee"},{"euler":{"heading":2.0,"pitch":5.125,"roll":-1.3125},"location":"Left Ankle"},{"euler":{"heading":319.875,"pitch":-8.1875,"roll":-7.0625},"location":"Right Ankle"},{"euler":{"heading":355.1875,"pitch":-3.5,"roll":0.1875},"location":"Right Hip"},{"euler":{"heading":34.375,"pitch":13.0625,"roll":4.9375},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":2.9375,"roll":-1.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:56.530"} +{"sensors":[{"euler":{"heading":343.75,"pitch":-15.6875,"roll":-3.1875},"location":"Left Knee"},{"euler":{"heading":6.625,"pitch":5.625,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":342.625,"pitch":-7.9375,"roll":-1.625},"location":"Right Ankle"},{"euler":{"heading":2.5,"pitch":4.5625,"roll":3.875},"location":"Right Hip"},{"euler":{"heading":12.3125,"pitch":15.3125,"roll":-0.25},"location":"Right Knee"},{"euler":{"heading":3.0,"pitch":1.0,"roll":-0.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:56.631"} +{"sensors":[{"euler":{"heading":348.8125,"pitch":-16.25,"roll":-2.375},"location":"Left Knee"},{"euler":{"heading":10.0,"pitch":4.625,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":10.4375,"pitch":-7.9375,"roll":3.0625},"location":"Right Ankle"},{"euler":{"heading":3.5625,"pitch":11.25,"roll":2.6875},"location":"Right Hip"},{"euler":{"heading":353.8125,"pitch":17.0625,"roll":-5.0},"location":"Right Knee"},{"euler":{"heading":6.25,"pitch":-1.625,"roll":0.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:56.732"} +{"sensors":[{"euler":{"heading":356.0625,"pitch":-15.0625,"roll":-1.375},"location":"Left Knee"},{"euler":{"heading":15.9375,"pitch":2.5,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":17.6875,"pitch":-8.9375,"roll":7.6875},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":12.4375,"roll":-0.3125},"location":"Right Hip"},{"euler":{"heading":342.25,"pitch":17.3125,"roll":-6.0625},"location":"Right Knee"},{"euler":{"heading":9.9375,"pitch":-4.8125,"roll":2.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:56.833"} +{"sensors":[{"euler":{"heading":6.75,"pitch":-12.9375,"roll":1.0625},"location":"Left Knee"},{"euler":{"heading":26.4375,"pitch":-0.4375,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":14.625,"pitch":-4.5,"roll":5.75},"location":"Right Ankle"},{"euler":{"heading":356.75,"pitch":13.3125,"roll":-3.9375},"location":"Right Hip"},{"euler":{"heading":345.3125,"pitch":9.75,"roll":-5.5625},"location":"Right Knee"},{"euler":{"heading":12.75,"pitch":-5.5,"roll":3.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:56.934"} +{"sensors":[{"euler":{"heading":18.0,"pitch":-12.625,"roll":6.25},"location":"Left Knee"},{"euler":{"heading":38.8125,"pitch":-2.875,"roll":3.1875},"location":"Left Ankle"},{"euler":{"heading":6.6875,"pitch":-3.0625,"roll":0.75},"location":"Right Ankle"},{"euler":{"heading":353.0625,"pitch":9.9375,"roll":-5.75},"location":"Right Hip"},{"euler":{"heading":352.125,"pitch":6.1875,"roll":-2.75},"location":"Right Knee"},{"euler":{"heading":4.25,"pitch":-6.5,"roll":4.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:57.35"} +{"sensors":[{"euler":{"heading":19.75,"pitch":-11.9375,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":44.0625,"pitch":-12.1875,"roll":3.75},"location":"Left Ankle"},{"euler":{"heading":2.9375,"pitch":-1.625,"roll":0.4375},"location":"Right Ankle"},{"euler":{"heading":350.125,"pitch":7.0625,"roll":-8.75},"location":"Right Hip"},{"euler":{"heading":357.1875,"pitch":4.25,"roll":-0.1875},"location":"Right Knee"},{"euler":{"heading":352.1875,"pitch":-6.125,"roll":0.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:57.135"} +{"sensors":[{"euler":{"heading":5.4375,"pitch":-5.5625,"roll":5.75},"location":"Left Knee"},{"euler":{"heading":19.1875,"pitch":-9.375,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":358.4375,"pitch":-0.6875,"roll":-2.4375},"location":"Right Ankle"},{"euler":{"heading":348.0,"pitch":3.5,"roll":-10.0},"location":"Right Hip"},{"euler":{"heading":2.1875,"pitch":4.4375,"roll":1.1875},"location":"Right Knee"},{"euler":{"heading":344.5,"pitch":-4.6875,"roll":-0.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:57.236"} +{"sensors":[{"euler":{"heading":345.5625,"pitch":3.8125,"roll":-1.875},"location":"Left Knee"},{"euler":{"heading":352.4375,"pitch":-13.5625,"roll":5.3125},"location":"Left Ankle"},{"euler":{"heading":354.875,"pitch":-1.0625,"roll":-3.8125},"location":"Right Ankle"},{"euler":{"heading":345.0,"pitch":0.125,"roll":-10.5},"location":"Right Hip"},{"euler":{"heading":8.3125,"pitch":4.875,"roll":2.125},"location":"Right Knee"},{"euler":{"heading":342.9375,"pitch":-3.625,"roll":-2.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:57.337"} +{"sensors":[{"euler":{"heading":332.125,"pitch":4.625,"roll":-1.5625},"location":"Left Knee"},{"euler":{"heading":334.5625,"pitch":-11.1875,"roll":10.0625},"location":"Left Ankle"},{"euler":{"heading":348.875,"pitch":-2.125,"roll":-4.9375},"location":"Right Ankle"},{"euler":{"heading":70.6875,"pitch":138.625,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":14.8125,"pitch":6.4375,"roll":3.375},"location":"Right Knee"},{"euler":{"heading":345.0,"pitch":0.9375,"roll":-3.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:57.438"} +{"sensors":[{"euler":{"heading":331.125,"pitch":-1.375,"roll":0.6875},"location":"Left Knee"},{"euler":{"heading":336.5,"pitch":-5.9375,"roll":7.9375},"location":"Left Ankle"},{"euler":{"heading":339.3125,"pitch":-3.25,"roll":-4.375},"location":"Right Ankle"},{"euler":{"heading":70.875,"pitch":142.0625,"roll":69.625},"location":"Right Hip"},{"euler":{"heading":31.3125,"pitch":-67.9375,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":348.6875,"pitch":3.3125,"roll":-3.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:57.539"} +{"sensors":[{"euler":{"heading":336.0,"pitch":-5.8125,"roll":-2.125},"location":"Left Knee"},{"euler":{"heading":346.4375,"pitch":-3.875,"roll":2.125},"location":"Left Ankle"},{"euler":{"heading":321.5,"pitch":-5.75,"roll":-5.875},"location":"Right Ankle"},{"euler":{"heading":77.9375,"pitch":140.25,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":44.9375,"pitch":-72.25,"roll":54.6875},"location":"Right Knee"},{"euler":{"heading":351.375,"pitch":0.1875,"roll":-2.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:57.640"} +{"sensors":[{"euler":{"heading":341.75,"pitch":-6.8125,"roll":-3.0},"location":"Left Knee"},{"euler":{"heading":367.75,"pitch":-4.9375,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":316.25,"pitch":-8.8125,"roll":-5.125},"location":"Right Ankle"},{"euler":{"heading":86.6875,"pitch":134.25,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":50.0,"pitch":-69.0,"roll":51.625},"location":"Right Knee"},{"euler":{"heading":356.1875,"pitch":-0.4375,"roll":-0.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:57.741"} +{"sensors":[{"euler":{"heading":344.875,"pitch":-8.875,"roll":-3.8125},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":-2.3125,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":330.75,"pitch":-6.625,"roll":-2.8125},"location":"Right Ankle"},{"euler":{"heading":90.875,"pitch":134.625,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":36.125,"pitch":-58.9375,"roll":63.25},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":-1.8125,"roll":1.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:57.842"} +{"sensors":[{"euler":{"heading":347.5,"pitch":-12.375,"roll":-3.3125},"location":"Left Knee"},{"euler":{"heading":2.8125,"pitch":-0.5,"roll":-0.3125},"location":"Left Ankle"},{"euler":{"heading":354.5,"pitch":-5.5,"roll":2.125},"location":"Right Ankle"},{"euler":{"heading":356.625,"pitch":139.8125,"roll":42.3125},"location":"Right Hip"},{"euler":{"heading":16.3125,"pitch":-8.875,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":2.6875,"pitch":-2.8125,"roll":1.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:57.943"} +{"sensors":[{"euler":{"heading":353.0,"pitch":-14.375,"roll":-2.5},"location":"Left Knee"},{"euler":{"heading":7.8125,"pitch":0.0,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":17.25,"pitch":-4.125,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":347.3125,"pitch":143.0625,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":359.9375,"pitch":52.0,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":5.75,"pitch":-3.75,"roll":1.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:58.44"} +{"sensors":[{"euler":{"heading":0.5625,"pitch":-14.25,"roll":-0.6875},"location":"Left Knee"},{"euler":{"heading":14.6875,"pitch":-0.25,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":19.0625,"pitch":-5.25,"roll":7.1875},"location":"Right Ankle"},{"euler":{"heading":66.8125,"pitch":146.3125,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":353.875,"pitch":59.125,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":8.9375,"pitch":-5.5625,"roll":2.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:58.145"} +{"sensors":[{"euler":{"heading":10.9375,"pitch":-13.25,"roll":2.0},"location":"Left Knee"},{"euler":{"heading":23.75,"pitch":-2.6875,"roll":0.125},"location":"Left Ankle"},{"euler":{"heading":12.1875,"pitch":-2.0625,"roll":4.75},"location":"Right Ankle"},{"euler":{"heading":63.8125,"pitch":146.6875,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":354.0,"pitch":45.0,"roll":70.0},"location":"Right Knee"},{"euler":{"heading":3.9375,"pitch":109.75,"roll":66.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:58.245"} +{"sensors":[{"euler":{"heading":19.125,"pitch":-13.8125,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":41.0,"pitch":-0.5,"roll":4.0},"location":"Left Ankle"},{"euler":{"heading":7.375,"pitch":0.0625,"roll":1.8125},"location":"Right Ankle"},{"euler":{"heading":63.375,"pitch":144.3125,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":356.3125,"pitch":35.1875,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":351.4375,"pitch":103.25,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:58.346"} +{"sensors":[{"euler":{"heading":13.875,"pitch":-10.0625,"roll":9.75},"location":"Left Knee"},{"euler":{"heading":30.5625,"pitch":-4.9375,"roll":4.0},"location":"Left Ankle"},{"euler":{"heading":3.5625,"pitch":1.25,"roll":-0.875},"location":"Right Ankle"},{"euler":{"heading":62.3125,"pitch":141.625,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":358.1875,"pitch":18.375,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":343.1875,"pitch":95.5,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:58.446"} +{"sensors":[{"euler":{"heading":356.5,"pitch":-1.6875,"roll":3.75},"location":"Left Knee"},{"euler":{"heading":6.0,"pitch":-7.9375,"roll":3.6875},"location":"Left Ankle"},{"euler":{"heading":0.0625,"pitch":1.75,"roll":-2.5625},"location":"Right Ankle"},{"euler":{"heading":65.25,"pitch":138.8125,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":3.0,"pitch":-11.0625,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":340.875,"pitch":95.125,"roll":43.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:58.548"} +{"sensors":[{"euler":{"heading":338.125,"pitch":3.0,"roll":-1.5625},"location":"Left Knee"},{"euler":{"heading":341.125,"pitch":-8.0,"roll":9.1875},"location":"Left Ankle"},{"euler":{"heading":355.75,"pitch":0.875,"roll":-3.6875},"location":"Right Ankle"},{"euler":{"heading":66.75,"pitch":138.5,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":10.25,"pitch":-43.375,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":343.6875,"pitch":96.125,"roll":43.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:58.648"} +{"sensors":[{"euler":{"heading":329.0,"pitch":1.8125,"roll":-1.1875},"location":"Left Knee"},{"euler":{"heading":331.4375,"pitch":-5.875,"roll":7.6875},"location":"Left Ankle"},{"euler":{"heading":347.5625,"pitch":-0.5625,"roll":-4.6875},"location":"Right Ankle"},{"euler":{"heading":69.4375,"pitch":139.25,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":21.5625,"pitch":-64.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":350.5625,"pitch":99.875,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:58.749"} +{"sensors":[{"euler":{"heading":332.1875,"pitch":-4.9375,"roll":-1.125},"location":"Left Knee"},{"euler":{"heading":342.75,"pitch":-3.75,"roll":4.9375},"location":"Left Ankle"},{"euler":{"heading":334.6875,"pitch":-4.3125,"roll":-4.625},"location":"Right Ankle"},{"euler":{"heading":71.875,"pitch":140.6875,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":34.8125,"pitch":-72.625,"roll":62.75},"location":"Right Knee"},{"euler":{"heading":353.375,"pitch":100.1875,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:58.850"} +{"sensors":[{"euler":{"heading":338.3125,"pitch":-8.0625,"roll":-2.875},"location":"Left Knee"},{"euler":{"heading":349.3125,"pitch":-2.0,"roll":2.8125},"location":"Left Ankle"},{"euler":{"heading":318.125,"pitch":-6.4375,"roll":-5.75},"location":"Right Ankle"},{"euler":{"heading":80.5625,"pitch":136.8125,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":46.5625,"pitch":-75.0,"roll":52.6875},"location":"Right Knee"},{"euler":{"heading":355.8125,"pitch":100.125,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:58.951"} +{"sensors":[{"euler":{"heading":343.25,"pitch":-8.6875,"roll":-3.5625},"location":"Left Knee"},{"euler":{"heading":356.25,"pitch":-1.875,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":320.875,"pitch":-6.4375,"roll":-4.6875},"location":"Right Ankle"},{"euler":{"heading":87.3125,"pitch":135.4375,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":42.375,"pitch":-67.0,"roll":56.8125},"location":"Right Knee"},{"euler":{"heading":357.0,"pitch":104.9375,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:59.52"} +{"sensors":[{"euler":{"heading":348.3125,"pitch":-8.8125,"roll":-3.5625},"location":"Left Knee"},{"euler":{"heading":2.6875,"pitch":-1.25,"roll":-1.5},"location":"Left Ankle"},{"euler":{"heading":340.4375,"pitch":-5.0625,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":138.3125,"roll":43.6875},"location":"Right Hip"},{"euler":{"heading":25.625,"pitch":-39.1875,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":359.0,"pitch":106.8125,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:59.153"} +{"sensors":[{"euler":{"heading":352.5625,"pitch":-11.0,"roll":-2.5625},"location":"Left Knee"},{"euler":{"heading":3.9375,"pitch":-2.0,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":4.3125,"pitch":-3.4375,"roll":4.0625},"location":"Right Ankle"},{"euler":{"heading":350.0,"pitch":142.9375,"roll":42.5},"location":"Right Hip"},{"euler":{"heading":8.6875,"pitch":23.375,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":0.6875,"pitch":107.75,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:59.253"} +{"sensors":[{"euler":{"heading":358.6875,"pitch":-13.0,"roll":-1.0625},"location":"Left Knee"},{"euler":{"heading":10.1875,"pitch":-0.875,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":22.25,"pitch":-2.5,"roll":4.625},"location":"Right Ankle"},{"euler":{"heading":69.875,"pitch":145.375,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":355.75,"pitch":53.8125,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":3.0625,"pitch":108.875,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:59.355"} +{"sensors":[{"euler":{"heading":7.25,"pitch":-13.625,"roll":1.3125},"location":"Left Knee"},{"euler":{"heading":21.625,"pitch":-0.75,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":13.375,"pitch":-1.125,"roll":4.5625},"location":"Right Ankle"},{"euler":{"heading":64.6875,"pitch":146.25,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":353.875,"pitch":46.75,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":6.0625,"pitch":112.125,"roll":68.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:59.456"} +{"sensors":[{"euler":{"heading":18.25,"pitch":-13.375,"roll":7.0625},"location":"Left Knee"},{"euler":{"heading":37.1875,"pitch":0.5625,"roll":4.1875},"location":"Left Ankle"},{"euler":{"heading":5.4375,"pitch":2.25,"roll":3.6875},"location":"Right Ankle"},{"euler":{"heading":67.75,"pitch":142.5625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":355.5,"pitch":32.5,"roll":71.3125},"location":"Right Knee"},{"euler":{"heading":356.875,"pitch":105.6875,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:59.556"} +{"sensors":[{"euler":{"heading":18.25,"pitch":-11.75,"roll":9.25},"location":"Left Knee"},{"euler":{"heading":35.5,"pitch":-7.625,"roll":5.3125},"location":"Left Ankle"},{"euler":{"heading":0.6875,"pitch":4.625,"roll":1.375},"location":"Right Ankle"},{"euler":{"heading":64.375,"pitch":141.0,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":356.625,"pitch":18.875,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":346.875,"pitch":96.0,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:59.658"} +{"sensors":[{"euler":{"heading":2.8125,"pitch":-4.25,"roll":5.3125},"location":"Left Knee"},{"euler":{"heading":13.5,"pitch":-7.125,"roll":2.125},"location":"Left Ankle"},{"euler":{"heading":357.3125,"pitch":4.9375,"roll":-1.75},"location":"Right Ankle"},{"euler":{"heading":66.0625,"pitch":137.5625,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":0.9375,"pitch":-4.25,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":340.6875,"pitch":94.5625,"roll":43.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:59.758"} +{"sensors":[{"euler":{"heading":344.0625,"pitch":3.125,"roll":-0.0625},"location":"Left Knee"},{"euler":{"heading":348.3125,"pitch":-9.875,"roll":9.75},"location":"Left Ankle"},{"euler":{"heading":353.875,"pitch":4.75,"roll":-2.75},"location":"Right Ankle"},{"euler":{"heading":68.0625,"pitch":136.4375,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":5.375,"pitch":-30.1875,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":339.625,"pitch":94.0625,"roll":41.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:59.859"} +{"sensors":[{"euler":{"heading":330.9375,"pitch":5.5625,"roll":-0.75},"location":"Left Knee"},{"euler":{"heading":331.4375,"pitch":-10.1875,"roll":10.375},"location":"Left Ankle"},{"euler":{"heading":348.0,"pitch":5.0625,"roll":-4.4375},"location":"Right Ankle"},{"euler":{"heading":68.6875,"pitch":135.5625,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":11.9375,"pitch":-53.9375,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":345.125,"pitch":97.4375,"roll":43.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:34:59.960"} +{"sensors":[{"euler":{"heading":331.625,"pitch":1.6875,"roll":-0.1875},"location":"Left Knee"},{"euler":{"heading":336.5625,"pitch":-5.0625,"roll":8.9375},"location":"Left Ankle"},{"euler":{"heading":338.25,"pitch":2.9375,"roll":-4.9375},"location":"Right Ankle"},{"euler":{"heading":69.8125,"pitch":137.375,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":22.875,"pitch":-69.4375,"roll":68.3125},"location":"Right Knee"},{"euler":{"heading":350.6875,"pitch":98.6875,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:00.61"} +{"sensors":[{"euler":{"heading":335.6875,"pitch":-5.4375,"roll":-1.375},"location":"Left Knee"},{"euler":{"heading":347.625,"pitch":-0.625,"roll":3.375},"location":"Left Ankle"},{"euler":{"heading":323.8125,"pitch":-2.5,"roll":-5.375},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":136.625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":38.625,"pitch":-73.125,"roll":58.25},"location":"Right Knee"},{"euler":{"heading":352.375,"pitch":98.4375,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:00.161"} +{"sensors":[{"euler":{"heading":338.6875,"pitch":-12.0625,"roll":-2.0},"location":"Left Knee"},{"euler":{"heading":353.3125,"pitch":2.625,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":314.8125,"pitch":-7.5,"roll":-7.25},"location":"Right Ankle"},{"euler":{"heading":83.3125,"pitch":135.0,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":47.375,"pitch":-71.4375,"roll":53.3125},"location":"Right Knee"},{"euler":{"heading":357.1875,"pitch":102.25,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:00.263"} +{"sensors":[{"euler":{"heading":342.375,"pitch":-14.125,"roll":-2.75},"location":"Left Knee"},{"euler":{"heading":3.125,"pitch":5.6875,"roll":-2.4375},"location":"Left Ankle"},{"euler":{"heading":329.5,"pitch":-7.8125,"roll":-3.8125},"location":"Right Ankle"},{"euler":{"heading":91.875,"pitch":135.1875,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":36.6875,"pitch":-57.0625,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":0.9375,"pitch":106.8125,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:00.364"} +{"sensors":[{"euler":{"heading":346.375,"pitch":-16.125,"roll":-2.1875},"location":"Left Knee"},{"euler":{"heading":5.5625,"pitch":4.875,"roll":-0.375},"location":"Left Ankle"},{"euler":{"heading":367.5625,"pitch":-6.375,"roll":2.4375},"location":"Right Ankle"},{"euler":{"heading":357.8125,"pitch":141.1875,"roll":40.875},"location":"Right Hip"},{"euler":{"heading":17.0625,"pitch":3.875,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":2.75,"pitch":108.375,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:00.464"} +{"sensors":[{"euler":{"heading":351.75,"pitch":-17.375,"roll":-1.125},"location":"Left Knee"},{"euler":{"heading":9.875,"pitch":3.875,"roll":0.6875},"location":"Left Ankle"},{"euler":{"heading":14.125,"pitch":-4.25,"roll":6.1875},"location":"Right Ankle"},{"euler":{"heading":349.1875,"pitch":144.125,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":0.5,"pitch":52.0625,"roll":68.6875},"location":"Right Knee"},{"euler":{"heading":4.3125,"pitch":108.9375,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:00.566"} +{"sensors":[{"euler":{"heading":359.4375,"pitch":-16.75,"roll":0.5},"location":"Left Knee"},{"euler":{"heading":17.6875,"pitch":3.125,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":17.5625,"pitch":-4.75,"roll":8.8125},"location":"Right Ankle"},{"euler":{"heading":67.375,"pitch":148.4375,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":354.5625,"pitch":58.3125,"roll":65.1875},"location":"Right Knee"},{"euler":{"heading":4.875,"pitch":111.9375,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:00.666"} +{"sensors":[{"euler":{"heading":8.875,"pitch":-17.0625,"roll":3.4375},"location":"Left Knee"},{"euler":{"heading":26.375,"pitch":0.0625,"roll":2.6875},"location":"Left Ankle"},{"euler":{"heading":9.5625,"pitch":-1.375,"roll":6.0625},"location":"Right Ankle"},{"euler":{"heading":65.8125,"pitch":146.9375,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":354.9375,"pitch":41.5,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":8.25,"pitch":111.4375,"roll":68.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:00.767"} +{"sensors":[{"euler":{"heading":19.9375,"pitch":-12.75,"roll":9.625},"location":"Left Knee"},{"euler":{"heading":42.1875,"pitch":0.9375,"roll":5.25},"location":"Left Ankle"},{"euler":{"heading":5.4375,"pitch":1.1875,"roll":3.0625},"location":"Right Ankle"},{"euler":{"heading":63.875,"pitch":145.125,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":355.8125,"pitch":32.625,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":353.875,"pitch":101.75,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:00.868"} +{"sensors":[{"euler":{"heading":15.875,"pitch":-11.4375,"roll":9.5625},"location":"Left Knee"},{"euler":{"heading":31.25,"pitch":-5.125,"roll":4.6875},"location":"Left Ankle"},{"euler":{"heading":1.25,"pitch":2.3125,"roll":1.25},"location":"Right Ankle"},{"euler":{"heading":63.5,"pitch":141.5625,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":358.3125,"pitch":13.0625,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":345.375,"pitch":95.625,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:00.969"} +{"sensors":[{"euler":{"heading":359.0625,"pitch":-2.5,"roll":3.875},"location":"Left Knee"},{"euler":{"heading":6.6875,"pitch":-7.6875,"roll":2.6875},"location":"Left Ankle"},{"euler":{"heading":357.9375,"pitch":4.25,"roll":-2.125},"location":"Right Ankle"},{"euler":{"heading":65.625,"pitch":138.3125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":1.375,"pitch":-13.875,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":341.625,"pitch":93.25,"roll":43.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:01.70"} +{"sensors":[{"euler":{"heading":339.9375,"pitch":3.9375,"roll":-1.9375},"location":"Left Knee"},{"euler":{"heading":340.9375,"pitch":-8.6875,"roll":9.25},"location":"Left Ankle"},{"euler":{"heading":353.625,"pitch":5.0625,"roll":-2.3125},"location":"Right Ankle"},{"euler":{"heading":66.8125,"pitch":137.5625,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":7.5,"pitch":-43.125,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":344.4375,"pitch":94.75,"roll":44.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:01.171"} +{"sensors":[{"euler":{"heading":330.5625,"pitch":4.0625,"roll":-1.125},"location":"Left Knee"},{"euler":{"heading":332.625,"pitch":-8.0,"roll":8.9375},"location":"Left Ankle"},{"euler":{"heading":345.875,"pitch":3.9375,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":68.75,"pitch":136.9375,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":16.875,"pitch":-61.5625,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":349.625,"pitch":98.0,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:01.274"} +{"sensors":[{"euler":{"heading":334.5,"pitch":-2.375,"roll":-1.4375},"location":"Left Knee"},{"euler":{"heading":343.125,"pitch":-6.6875,"roll":6.0},"location":"Left Ankle"},{"euler":{"heading":332.0,"pitch":-4.625,"roll":-4.375},"location":"Right Ankle"},{"euler":{"heading":73.1875,"pitch":136.875,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":34.625,"pitch":-73.0,"roll":61.8125},"location":"Right Knee"},{"euler":{"heading":350.8125,"pitch":96.6875,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:01.375"} +{"sensors":[{"euler":{"heading":340.6875,"pitch":-3.875,"roll":-2.9375},"location":"Left Knee"},{"euler":{"heading":349.3125,"pitch":-5.1875,"roll":3.75},"location":"Left Ankle"},{"euler":{"heading":316.9375,"pitch":-7.9375,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":84.1875,"pitch":134.0625,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":44.4375,"pitch":-71.5625,"roll":54.1875},"location":"Right Knee"},{"euler":{"heading":354.125,"pitch":98.625,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:01.475"} +{"sensors":[{"euler":{"heading":345.4375,"pitch":-5.5,"roll":-3.25},"location":"Left Knee"},{"euler":{"heading":358.25,"pitch":-4.5625,"roll":2.5},"location":"Left Ankle"},{"euler":{"heading":323.1875,"pitch":-5.875,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":89.9375,"pitch":135.0625,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":37.125,"pitch":-61.3125,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":356.8125,"pitch":101.9375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:01.576"} +{"sensors":[{"euler":{"heading":349.4375,"pitch":-7.0625,"roll":-3.3125},"location":"Left Knee"},{"euler":{"heading":1.9375,"pitch":-4.3125,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":344.0625,"pitch":-5.5,"roll":1.0},"location":"Right Ankle"},{"euler":{"heading":359.25,"pitch":139.0625,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":23.75,"pitch":-26.1875,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":104.5,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:01.676"} +{"sensors":[{"euler":{"heading":354.6875,"pitch":-8.25,"roll":-2.6875},"location":"Left Knee"},{"euler":{"heading":6.3125,"pitch":-4.625,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":6.125,"pitch":-4.625,"roll":7.875},"location":"Right Ankle"},{"euler":{"heading":353.0625,"pitch":141.9375,"roll":43.0},"location":"Right Hip"},{"euler":{"heading":6.5625,"pitch":41.0,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":1.75,"pitch":106.375,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:01.776"} +{"sensors":[{"euler":{"heading":0.625,"pitch":-10.3125,"roll":-1.25},"location":"Left Knee"},{"euler":{"heading":12.6875,"pitch":-3.4375,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":18.5,"pitch":-6.25,"roll":8.5},"location":"Right Ankle"},{"euler":{"heading":72.375,"pitch":143.9375,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":356.3125,"pitch":60.625,"roll":66.5},"location":"Right Knee"},{"euler":{"heading":4.4375,"pitch":109.4375,"roll":67.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:01.877"} +{"sensors":[{"euler":{"heading":9.0,"pitch":-10.625,"roll":0.75},"location":"Left Knee"},{"euler":{"heading":22.5625,"pitch":-3.9375,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":13.0,"pitch":-3.5625,"roll":6.625},"location":"Right Ankle"},{"euler":{"heading":67.5,"pitch":145.6875,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":355.25,"pitch":48.25,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":6.375,"pitch":113.125,"roll":69.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:01.977"} +{"sensors":[{"euler":{"heading":20.0,"pitch":-11.0625,"roll":6.25},"location":"Left Knee"},{"euler":{"heading":36.3125,"pitch":-2.875,"roll":4.8125},"location":"Left Ankle"},{"euler":{"heading":4.25,"pitch":-2.75,"roll":3.875},"location":"Right Ankle"},{"euler":{"heading":70.0625,"pitch":142.0625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":359.9375,"pitch":31.625,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":106.6875,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:02.77"} +{"sensors":[{"euler":{"heading":21.5,"pitch":-11.625,"roll":11.0},"location":"Left Knee"},{"euler":{"heading":38.375,"pitch":-8.0625,"roll":6.75},"location":"Left Ankle"},{"euler":{"heading":0.25,"pitch":-1.5,"roll":15.5625},"location":"Right Ankle"},{"euler":{"heading":67.0,"pitch":139.125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":1.4375,"pitch":0.0625,"roll":81.125},"location":"Right Knee"},{"euler":{"heading":351.125,"pitch":95.625,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:02.178"} +{"sensors":[{"euler":{"heading":7.3125,"pitch":-6.0,"roll":8.0625},"location":"Left Knee"},{"euler":{"heading":16.75,"pitch":-7.6875,"roll":1.9375},"location":"Left Ankle"},{"euler":{"heading":357.75,"pitch":-1.0625,"roll":-1.9375},"location":"Right Ankle"},{"euler":{"heading":70.0,"pitch":136.3125,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":6.375,"pitch":-30.875,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":344.625,"pitch":95.6875,"roll":44.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:02.278"} +{"sensors":[{"euler":{"heading":346.5,"pitch":1.5,"roll":0.5},"location":"Left Knee"},{"euler":{"heading":349.75,"pitch":-9.375,"roll":8.3125},"location":"Left Ankle"},{"euler":{"heading":353.5625,"pitch":-2.3125,"roll":-1.75},"location":"Right Ankle"},{"euler":{"heading":70.625,"pitch":136.5625,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":168.375,"pitch":-46.0,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":343.4375,"pitch":94.1875,"roll":43.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:02.378"} +{"sensors":[{"euler":{"heading":331.5,"pitch":4.625,"roll":-2.25},"location":"Left Knee"},{"euler":{"heading":332.625,"pitch":-9.75,"roll":8.75},"location":"Left Ankle"},{"euler":{"heading":346.6875,"pitch":-1.5625,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":72.3125,"pitch":136.875,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-64.4375,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":348.6875,"pitch":97.1875,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:02.479"} +{"sensors":[{"euler":{"heading":331.9375,"pitch":-0.9375,"roll":-1.0625},"location":"Left Knee"},{"euler":{"heading":339.3125,"pitch":-4.25,"roll":7.125},"location":"Left Ankle"},{"euler":{"heading":336.4375,"pitch":-2.875,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":73.0625,"pitch":139.4375,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":-72.625,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":353.75,"pitch":97.1875,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:02.579"} +{"sensors":[{"euler":{"heading":336.8125,"pitch":-6.5625,"roll":-2.125},"location":"Left Knee"},{"euler":{"heading":349.125,"pitch":-1.0625,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":322.875,"pitch":-5.375,"roll":-6.3125},"location":"Right Ankle"},{"euler":{"heading":78.625,"pitch":138.0625,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":199.75,"pitch":-74.4375,"roll":55.75},"location":"Right Knee"},{"euler":{"heading":354.6875,"pitch":97.25,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:02.679"} +{"sensors":[{"euler":{"heading":340.375,"pitch":-10.625,"roll":-2.3125},"location":"Left Knee"},{"euler":{"heading":355.0,"pitch":0.0,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":316.0,"pitch":-9.125,"roll":-5.875},"location":"Right Ankle"},{"euler":{"heading":85.5625,"pitch":135.0625,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":205.125,"pitch":-70.5625,"roll":52.0},"location":"Right Knee"},{"euler":{"heading":358.5,"pitch":100.375,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:02.781"} +{"sensors":[{"euler":{"heading":344.8125,"pitch":-11.25,"roll":-2.6875},"location":"Left Knee"},{"euler":{"heading":3.25,"pitch":1.875,"roll":-1.9375},"location":"Left Ankle"},{"euler":{"heading":331.5625,"pitch":-8.625,"roll":-1.625},"location":"Right Ankle"},{"euler":{"heading":91.5625,"pitch":135.6875,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":191.5625,"pitch":-58.375,"roll":64.9375},"location":"Right Knee"},{"euler":{"heading":359.25,"pitch":105.25,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:02.881"} +{"sensors":[{"euler":{"heading":349.0,"pitch":-13.25,"roll":-2.0},"location":"Left Knee"},{"euler":{"heading":5.9375,"pitch":1.3125,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":358.5625,"pitch":-7.8125,"roll":4.75},"location":"Right Ankle"},{"euler":{"heading":353.5625,"pitch":141.0625,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":171.3125,"pitch":3.6875,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":1.25,"pitch":107.875,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:02.981"} +{"sensors":[{"euler":{"heading":354.125,"pitch":-15.25,"roll":-0.875},"location":"Left Knee"},{"euler":{"heading":11.0625,"pitch":2.375,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":14.375,"pitch":-7.0625,"roll":7.75},"location":"Right Ankle"},{"euler":{"heading":72.5625,"pitch":144.625,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":156.625,"pitch":55.5,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":3.75,"pitch":108.8125,"roll":79.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:03.82"} +{"sensors":[{"euler":{"heading":2.25,"pitch":-15.5,"roll":1.5},"location":"Left Knee"},{"euler":{"heading":19.5,"pitch":1.8125,"roll":1.4375},"location":"Left Ankle"},{"euler":{"heading":11.4375,"pitch":-6.25,"roll":8.625},"location":"Right Ankle"},{"euler":{"heading":66.4375,"pitch":146.375,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":154.125,"pitch":51.25,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":5.75,"pitch":111.3125,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:03.182"} +{"sensors":[{"euler":{"heading":16.5,"pitch":-11.0,"roll":5.75},"location":"Left Knee"},{"euler":{"heading":31.625,"pitch":-5.6875,"roll":5.0625},"location":"Left Ankle"},{"euler":{"heading":6.0625,"pitch":-2.375,"roll":1.5625},"location":"Right Ankle"},{"euler":{"heading":68.0625,"pitch":144.0625,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":154.0,"pitch":35.6875,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":105.375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:03.282"} +{"sensors":[{"euler":{"heading":18.5,"pitch":-14.1875,"roll":11.25},"location":"Left Knee"},{"euler":{"heading":41.8125,"pitch":-6.5625,"roll":5.4375},"location":"Left Ankle"},{"euler":{"heading":2.9375,"pitch":-2.375,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":65.0625,"pitch":142.3125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":157.125,"pitch":20.6875,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":346.875,"pitch":96.0625,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:03.383"} +{"sensors":[{"euler":{"heading":7.1875,"pitch":-7.3125,"roll":8.8125},"location":"Left Knee"},{"euler":{"heading":24.4375,"pitch":-5.0625,"roll":-0.9375},"location":"Left Ankle"},{"euler":{"heading":359.0625,"pitch":-2.8125,"roll":1.5625},"location":"Right Ankle"},{"euler":{"heading":67.5625,"pitch":139.625,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":-8.9375,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":341.875,"pitch":96.0,"roll":43.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:03.483"} +{"sensors":[{"euler":{"heading":347.0625,"pitch":0.625,"roll":0.75},"location":"Left Knee"},{"euler":{"heading":356.375,"pitch":-9.5625,"roll":6.125},"location":"Left Ankle"},{"euler":{"heading":354.75,"pitch":-1.8125,"roll":-0.125},"location":"Right Ankle"},{"euler":{"heading":69.125,"pitch":138.25,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":166.0625,"pitch":-36.5625,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":342.6875,"pitch":95.75,"roll":42.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:03.583"} +{"sensors":[{"euler":{"heading":332.1875,"pitch":3.875,"roll":-1.875},"location":"Left Knee"},{"euler":{"heading":335.4375,"pitch":-9.6875,"roll":8.8125},"location":"Left Ankle"},{"euler":{"heading":349.0,"pitch":-0.8125,"roll":-3.3125},"location":"Right Ankle"},{"euler":{"heading":68.9375,"pitch":137.1875,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":171.9375,"pitch":-57.4375,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":347.625,"pitch":98.9375,"roll":44.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:03.684"} +{"sensors":[{"euler":{"heading":332.9375,"pitch":-1.9375,"roll":-0.125},"location":"Left Knee"},{"euler":{"heading":339.625,"pitch":-6.5625,"roll":7.9375},"location":"Left Ankle"},{"euler":{"heading":340.125,"pitch":-2.6875,"roll":-4.4375},"location":"Right Ankle"},{"euler":{"heading":70.5,"pitch":137.5625,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":183.0625,"pitch":-69.8125,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":351.75,"pitch":100.0625,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:03.785"} +{"sensors":[{"euler":{"heading":338.1875,"pitch":-4.75,"roll":-1.9375},"location":"Left Knee"},{"euler":{"heading":347.375,"pitch":-5.625,"roll":4.5625},"location":"Left Ankle"},{"euler":{"heading":320.6875,"pitch":-7.5625,"roll":-4.125},"location":"Right Ankle"},{"euler":{"heading":77.0625,"pitch":136.8125,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":198.8125,"pitch":-73.5625,"roll":56.1875},"location":"Right Knee"},{"euler":{"heading":351.875,"pitch":99.875,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:03.885"} +{"sensors":[{"euler":{"heading":342.125,"pitch":-7.375,"roll":-2.875},"location":"Left Knee"},{"euler":{"heading":355.0,"pitch":-3.4375,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":319.4375,"pitch":-9.125,"roll":-2.5625},"location":"Right Ankle"},{"euler":{"heading":85.0625,"pitch":134.4375,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":199.125,"pitch":-66.5625,"roll":56.3125},"location":"Right Knee"},{"euler":{"heading":356.25,"pitch":105.125,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:03.985"} +{"sensors":[{"euler":{"heading":346.9375,"pitch":-8.5625,"roll":-2.625},"location":"Left Knee"},{"euler":{"heading":3.0,"pitch":-1.375,"roll":-2.1875},"location":"Left Ankle"},{"euler":{"heading":336.75,"pitch":-8.25,"roll":1.125},"location":"Right Ankle"},{"euler":{"heading":88.625,"pitch":135.5,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":183.4375,"pitch":-44.25,"roll":69.6875},"location":"Right Knee"},{"euler":{"heading":357.75,"pitch":107.9375,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:04.86"} +{"sensors":[{"euler":{"heading":352.125,"pitch":-9.5625,"roll":-1.6875},"location":"Left Knee"},{"euler":{"heading":3.0,"pitch":-4.1875,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":2.0625,"pitch":-1.8125,"roll":4.375},"location":"Right Ankle"},{"euler":{"heading":82.125,"pitch":139.9375,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":145.5,"pitch":31.25,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":359.4375,"pitch":109.6875,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:04.187"} +{"sensors":[{"euler":{"heading":358.4375,"pitch":-10.0,"roll":-0.875},"location":"Left Knee"},{"euler":{"heading":9.0,"pitch":-4.5,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":14.875,"pitch":-5.625,"roll":7.4375},"location":"Right Ankle"},{"euler":{"heading":71.5,"pitch":143.875,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":151.9375,"pitch":60.8125,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":2.25,"pitch":112.375,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:04.287"} +{"sensors":[{"euler":{"heading":7.0,"pitch":-10.5625,"roll":1.75},"location":"Left Knee"},{"euler":{"heading":19.125,"pitch":-4.3125,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":9.1875,"pitch":-5.75,"roll":6.6875},"location":"Right Ankle"},{"euler":{"heading":68.4375,"pitch":143.875,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":151.625,"pitch":50.625,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":4.6875,"pitch":115.3125,"roll":67.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:04.387"} +{"sensors":[{"euler":{"heading":19.1875,"pitch":-10.25,"roll":6.3125},"location":"Left Knee"},{"euler":{"heading":38.0625,"pitch":-5.625,"roll":2.8125},"location":"Left Ankle"},{"euler":{"heading":0.875,"pitch":-6.875,"roll":3.125},"location":"Right Ankle"},{"euler":{"heading":71.125,"pitch":142.25,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":157.125,"pitch":42.5,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":356.25,"pitch":106.5,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:04.488"} +{"sensors":[{"euler":{"heading":19.875,"pitch":-9.375,"roll":9.25},"location":"Left Knee"},{"euler":{"heading":38.0625,"pitch":-7.9375,"roll":3.5},"location":"Left Ankle"},{"euler":{"heading":0.5,"pitch":-7.5625,"roll":3.1875},"location":"Right Ankle"},{"euler":{"heading":69.0,"pitch":139.8125,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":22.9375,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":346.875,"pitch":97.6875,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:04.588"} +{"sensors":[{"euler":{"heading":5.875,"pitch":-2.875,"roll":5.3125},"location":"Left Knee"},{"euler":{"heading":19.1875,"pitch":-9.3125,"roll":-1.3125},"location":"Left Ankle"},{"euler":{"heading":357.125,"pitch":-7.5,"roll":0.25},"location":"Right Ankle"},{"euler":{"heading":71.1875,"pitch":137.4375,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":166.5625,"pitch":-8.0,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":342.0,"pitch":96.9375,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:04.689"} +{"sensors":[{"euler":{"heading":346.375,"pitch":1.6875,"roll":-0.625},"location":"Left Knee"},{"euler":{"heading":354.0625,"pitch":-9.8125,"roll":7.0625},"location":"Left Ankle"},{"euler":{"heading":353.8125,"pitch":-7.3125,"roll":-1.3125},"location":"Right Ankle"},{"euler":{"heading":71.625,"pitch":137.375,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":171.4375,"pitch":-40.9375,"roll":80.625},"location":"Right Knee"},{"euler":{"heading":342.625,"pitch":96.0625,"roll":43.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:04.789"} +{"sensors":[{"euler":{"heading":331.8125,"pitch":3.6875,"roll":-1.375},"location":"Left Knee"},{"euler":{"heading":334.3125,"pitch":-9.3125,"roll":8.25},"location":"Left Ankle"},{"euler":{"heading":348.625,"pitch":-8.0625,"roll":-2.9375},"location":"Right Ankle"},{"euler":{"heading":72.125,"pitch":139.25,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-61.0,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":348.3125,"pitch":97.75,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:04.889"} +{"sensors":[{"euler":{"heading":329.1875,"pitch":-1.375,"roll":0.25},"location":"Left Knee"},{"euler":{"heading":334.5625,"pitch":-4.8125,"roll":6.1875},"location":"Left Ankle"},{"euler":{"heading":341.8125,"pitch":-9.0,"roll":-3.5625},"location":"Right Ankle"},{"euler":{"heading":71.8125,"pitch":142.1875,"roll":70.1875},"location":"Right Hip"},{"euler":{"heading":186.75,"pitch":-68.4375,"roll":70.0},"location":"Right Knee"},{"euler":{"heading":355.0625,"pitch":100.25,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:04.990"} +{"sensors":[{"euler":{"heading":335.8125,"pitch":-5.875,"roll":-1.3125},"location":"Left Knee"},{"euler":{"heading":345.6875,"pitch":-3.9375,"roll":3.9375},"location":"Left Ankle"},{"euler":{"heading":329.625,"pitch":-11.3125,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":75.875,"pitch":140.25,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":198.6875,"pitch":-73.625,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":354.0,"pitch":98.1875,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:05.91"} +{"sensors":[{"euler":{"heading":341.4375,"pitch":-7.875,"roll":-1.8125},"location":"Left Knee"},{"euler":{"heading":351.1875,"pitch":-3.0,"roll":2.8125},"location":"Left Ankle"},{"euler":{"heading":313.875,"pitch":-9.3125,"roll":-6.5},"location":"Right Ankle"},{"euler":{"heading":83.8125,"pitch":134.4375,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":203.375,"pitch":-73.3125,"roll":50.9375},"location":"Right Knee"},{"euler":{"heading":356.625,"pitch":100.375,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:05.191"} +{"sensors":[{"euler":{"heading":344.4375,"pitch":-10.4375,"roll":-2.5625},"location":"Left Knee"},{"euler":{"heading":3.6875,"pitch":2.125,"roll":-2.0},"location":"Left Ankle"},{"euler":{"heading":322.75,"pitch":-7.8125,"roll":-3.6875},"location":"Right Ankle"},{"euler":{"heading":91.125,"pitch":133.875,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":194.0625,"pitch":-61.125,"roll":59.8125},"location":"Right Knee"},{"euler":{"heading":357.0,"pitch":103.375,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:05.292"} +{"sensors":[{"euler":{"heading":347.8125,"pitch":-12.75,"roll":-2.0625},"location":"Left Knee"},{"euler":{"heading":4.875,"pitch":1.375,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":345.5,"pitch":-8.6875,"roll":2.125},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":138.4375,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":-21.8125,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":359.125,"pitch":106.5,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:05.393"} +{"sensors":[{"euler":{"heading":353.0,"pitch":-14.125,"roll":-1.1875},"location":"Left Knee"},{"euler":{"heading":8.5625,"pitch":1.0625,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":11.5625,"pitch":-6.6875,"roll":5.375},"location":"Right Ankle"},{"euler":{"heading":78.125,"pitch":142.3125,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":157.8125,"pitch":50.0625,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":1.5625,"pitch":106.75,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:05.493"} +{"sensors":[{"euler":{"heading":0.8125,"pitch":-14.0625,"roll":0.5},"location":"Left Knee"},{"euler":{"heading":16.3125,"pitch":0.25,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":13.5625,"pitch":-6.9375,"roll":7.5625},"location":"Right Ankle"},{"euler":{"heading":67.875,"pitch":145.1875,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":151.5625,"pitch":58.125,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":2.625,"pitch":108.5625,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:05.594"} +{"sensors":[{"euler":{"heading":14.5625,"pitch":-11.5,"roll":3.9375},"location":"Left Knee"},{"euler":{"heading":28.125,"pitch":-4.4375,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":6.125,"pitch":-4.6875,"roll":3.875},"location":"Right Ankle"},{"euler":{"heading":67.375,"pitch":144.6875,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":152.875,"pitch":41.625,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":106.4375,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:05.695"} +{"sensors":[{"euler":{"heading":19.25,"pitch":-13.5,"roll":11.0625},"location":"Left Knee"},{"euler":{"heading":40.0,"pitch":-5.75,"roll":5.6875},"location":"Left Ankle"},{"euler":{"heading":3.0,"pitch":-6.0625,"roll":1.3125},"location":"Right Ankle"},{"euler":{"heading":66.25,"pitch":142.4375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":157.625,"pitch":26.6875,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":347.875,"pitch":97.125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:05.795"} +{"sensors":[{"euler":{"heading":10.5,"pitch":-8.625,"roll":9.375},"location":"Left Knee"},{"euler":{"heading":25.625,"pitch":-4.1875,"roll":-1.6875},"location":"Left Ankle"},{"euler":{"heading":0.25,"pitch":-6.75,"roll":0.375},"location":"Right Ankle"},{"euler":{"heading":69.0,"pitch":138.9375,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":-6.625,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":343.125,"pitch":96.6875,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:05.895"} +{"sensors":[{"euler":{"heading":352.6875,"pitch":0.125,"roll":1.8125},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":-10.5625,"roll":4.5},"location":"Left Ankle"},{"euler":{"heading":356.9375,"pitch":-6.5,"roll":-0.5},"location":"Right Ankle"},{"euler":{"heading":70.9375,"pitch":137.9375,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":169.0,"pitch":-40.375,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":342.8125,"pitch":95.5,"roll":43.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:05.996"} +{"sensors":[{"euler":{"heading":334.75,"pitch":3.25,"roll":-1.9375},"location":"Left Knee"},{"euler":{"heading":338.0,"pitch":-9.9375,"roll":8.25},"location":"Left Ankle"},{"euler":{"heading":351.4375,"pitch":-6.125,"roll":-2.1875},"location":"Right Ankle"},{"euler":{"heading":70.0625,"pitch":139.125,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":174.625,"pitch":-62.0,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":346.3125,"pitch":97.0625,"roll":44.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:06.97"} +{"sensors":[{"euler":{"heading":331.3125,"pitch":-0.9375,"roll":-0.0625},"location":"Left Knee"},{"euler":{"heading":337.0,"pitch":-7.0625,"roll":7.25},"location":"Left Ankle"},{"euler":{"heading":342.6875,"pitch":-7.1875,"roll":-2.8125},"location":"Right Ankle"},{"euler":{"heading":71.75,"pitch":140.375,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":184.5625,"pitch":-69.125,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":351.625,"pitch":99.1875,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:06.198"} +{"sensors":[{"euler":{"heading":337.6875,"pitch":-4.9375,"roll":-1.4375},"location":"Left Knee"},{"euler":{"heading":347.375,"pitch":-6.125,"roll":4.0},"location":"Left Ankle"},{"euler":{"heading":324.25,"pitch":-9.3125,"roll":-3.875},"location":"Right Ankle"},{"euler":{"heading":80.4375,"pitch":137.25,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":200.1875,"pitch":-73.0,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":352.1875,"pitch":97.9375,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:06.298"} +{"sensors":[{"euler":{"heading":342.6875,"pitch":-6.8125,"roll":-2.25},"location":"Left Knee"},{"euler":{"heading":352.1875,"pitch":-4.125,"roll":1.9375},"location":"Left Ankle"},{"euler":{"heading":315.5,"pitch":-10.9375,"roll":-3.5},"location":"Right Ankle"},{"euler":{"heading":88.4375,"pitch":133.1875,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":203.125,"pitch":-69.1875,"roll":52.75},"location":"Right Knee"},{"euler":{"heading":354.75,"pitch":100.125,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:06.399"} +{"sensors":[{"euler":{"heading":345.9375,"pitch":-9.5,"roll":-2.625},"location":"Left Knee"},{"euler":{"heading":4.0,"pitch":-0.3125,"roll":-2.375},"location":"Left Ankle"},{"euler":{"heading":329.75,"pitch":-10.25,"roll":0.9375},"location":"Right Ankle"},{"euler":{"heading":89.1875,"pitch":135.1875,"roll":46.0},"location":"Right Hip"},{"euler":{"heading":189.25,"pitch":-54.5625,"roll":64.1875},"location":"Right Knee"},{"euler":{"heading":357.5625,"pitch":103.75,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:06.501"} +{"sensors":[{"euler":{"heading":350.0625,"pitch":-11.125,"roll":-2.1875},"location":"Left Knee"},{"euler":{"heading":6.0,"pitch":-1.9375,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":354.4375,"pitch":-9.0625,"roll":5.9375},"location":"Right Ankle"},{"euler":{"heading":354.3125,"pitch":140.0,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":172.4375,"pitch":-11.0625,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":359.375,"pitch":105.625,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:06.601"} +{"sensors":[{"euler":{"heading":355.875,"pitch":-12.375,"roll":-1.0625},"location":"Left Knee"},{"euler":{"heading":11.3125,"pitch":-2.0,"roll":0.6875},"location":"Left Ankle"},{"euler":{"heading":13.125,"pitch":-7.4375,"roll":7.8125},"location":"Right Ankle"},{"euler":{"heading":73.75,"pitch":143.875,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":155.0625,"pitch":53.875,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":1.75,"pitch":106.5,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:06.702"} +{"sensors":[{"euler":{"heading":4.4375,"pitch":-11.8125,"roll":1.125},"location":"Left Knee"},{"euler":{"heading":20.5625,"pitch":-2.75,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":11.5,"pitch":-7.8125,"roll":8.625},"location":"Right Ankle"},{"euler":{"heading":65.625,"pitch":146.125,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":55.1875,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":2.4375,"pitch":110.25,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:06.802"} +{"sensors":[{"euler":{"heading":16.6875,"pitch":-10.5625,"roll":4.9375},"location":"Left Knee"},{"euler":{"heading":33.1875,"pitch":-5.1875,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":5.25,"pitch":-3.375,"roll":4.125},"location":"Right Ankle"},{"euler":{"heading":66.3125,"pitch":144.375,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":152.375,"pitch":34.9375,"roll":74.1875},"location":"Right Knee"},{"euler":{"heading":358.8125,"pitch":106.75,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:06.903"} +{"sensors":[{"euler":{"heading":19.625,"pitch":-11.125,"roll":9.4375},"location":"Left Knee"},{"euler":{"heading":39.4375,"pitch":-7.6875,"roll":3.9375},"location":"Left Ankle"},{"euler":{"heading":0.6875,"pitch":-3.125,"roll":2.625},"location":"Right Ankle"},{"euler":{"heading":64.5,"pitch":142.6875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":155.9375,"pitch":21.1875,"roll":80.4375},"location":"Right Knee"},{"euler":{"heading":348.75,"pitch":96.875,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:07.3"} +{"sensors":[{"euler":{"heading":7.875,"pitch":-6.6875,"roll":7.5625},"location":"Left Knee"},{"euler":{"heading":20.9375,"pitch":-8.3125,"roll":0.125},"location":"Left Ankle"},{"euler":{"heading":359.0,"pitch":-2.0,"roll":-0.75},"location":"Right Ankle"},{"euler":{"heading":67.375,"pitch":139.0625,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":-9.8125,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":344.75,"pitch":96.625,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:07.104"} +{"sensors":[{"euler":{"heading":347.875,"pitch":0.0,"roll":1.0},"location":"Left Knee"},{"euler":{"heading":353.875,"pitch":-10.9375,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":354.875,"pitch":-1.25,"roll":-1.125},"location":"Right Ankle"},{"euler":{"heading":68.6875,"pitch":138.0,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":165.125,"pitch":-41.1875,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":344.4375,"pitch":95.5625,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:07.204"} +{"sensors":[{"euler":{"heading":333.0625,"pitch":3.6875,"roll":-1.6875},"location":"Left Knee"},{"euler":{"heading":335.6875,"pitch":-11.1875,"roll":8.5625},"location":"Left Ankle"},{"euler":{"heading":348.125,"pitch":-1.8125,"roll":-2.6875},"location":"Right Ankle"},{"euler":{"heading":68.375,"pitch":138.0625,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":172.6875,"pitch":-61.875,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":349.0,"pitch":99.1875,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:07.304"} +{"sensors":[{"euler":{"heading":333.25,"pitch":-3.125,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":342.1875,"pitch":-6.0625,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":336.5625,"pitch":-5.8125,"roll":-2.875},"location":"Right Ankle"},{"euler":{"heading":71.3125,"pitch":138.4375,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":186.1875,"pitch":-72.5625,"roll":65.0625},"location":"Right Knee"},{"euler":{"heading":353.25,"pitch":99.75,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:07.406"} +{"sensors":[{"euler":{"heading":338.6875,"pitch":-6.375,"roll":-1.375},"location":"Left Knee"},{"euler":{"heading":349.4375,"pitch":-4.0,"roll":2.9375},"location":"Left Ankle"},{"euler":{"heading":317.75,"pitch":-8.5625,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":80.5625,"pitch":135.4375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":196.625,"pitch":-74.75,"roll":53.75},"location":"Right Knee"},{"euler":{"heading":353.6875,"pitch":100.0625,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:07.506"} +{"sensors":[{"euler":{"heading":344.0625,"pitch":-7.4375,"roll":-1.6875},"location":"Left Knee"},{"euler":{"heading":359.8125,"pitch":-3.5,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":321.1875,"pitch":-9.375,"roll":-3.0625},"location":"Right Ankle"},{"euler":{"heading":83.4375,"pitch":136.125,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":194.0625,"pitch":-66.1875,"roll":58.375},"location":"Right Knee"},{"euler":{"heading":355.8125,"pitch":103.0625,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:07.607"} +{"sensors":[{"euler":{"heading":90.8125,"pitch":150.875,"roll":64.0625},"location":"Left Knee"},{"euler":{"heading":4.375,"pitch":-2.0,"roll":-0.8125},"location":"Left Ankle"},{"euler":{"heading":341.875,"pitch":-9.8125,"roll":2.375},"location":"Right Ankle"},{"euler":{"heading":85.3125,"pitch":138.75,"roll":45.25},"location":"Right Hip"},{"euler":{"heading":179.4375,"pitch":-38.75,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":358.8125,"pitch":106.0,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:07.707"} +{"sensors":[{"euler":{"heading":96.25,"pitch":141.4375,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":6.8125,"pitch":-4.0,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":5.9375,"pitch":-6.9375,"roll":6.1875},"location":"Right Ankle"},{"euler":{"heading":347.75,"pitch":143.125,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":160.25,"pitch":35.0,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":0.125,"pitch":109.0625,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:07.809"} +{"sensors":[{"euler":{"heading":103.0625,"pitch":133.0,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":13.5,"pitch":-3.8125,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":15.5625,"pitch":-6.875,"roll":8.5625},"location":"Right Ankle"},{"euler":{"heading":68.125,"pitch":145.5625,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":150.3125,"pitch":59.75,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":1.8125,"pitch":111.4375,"roll":66.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:07.909"} +{"sensors":[{"euler":{"heading":115.0625,"pitch":125.4375,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":25.125,"pitch":-3.5,"roll":-0.0625},"location":"Left Ankle"},{"euler":{"heading":9.875,"pitch":-5.0,"roll":7.0625},"location":"Right Ankle"},{"euler":{"heading":65.25,"pitch":145.5,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":149.8125,"pitch":48.875,"roll":70.6875},"location":"Right Knee"},{"euler":{"heading":4.1875,"pitch":112.5625,"roll":67.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:08.9"} +{"sensors":[{"euler":{"heading":40.75,"pitch":121.5,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":40.0625,"pitch":-4.8125,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":2.375,"pitch":-3.5,"roll":1.6875},"location":"Right Ankle"},{"euler":{"heading":64.8125,"pitch":143.6875,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":152.0,"pitch":36.125,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":351.9375,"pitch":102.0625,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:08.110"} +{"sensors":[{"euler":{"heading":38.9375,"pitch":125.375,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":37.3125,"pitch":-6.875,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":0.8125,"pitch":-4.1875,"roll":2.125},"location":"Right Ankle"},{"euler":{"heading":65.0625,"pitch":140.8125,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":156.0625,"pitch":14.875,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":345.4375,"pitch":95.0,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:08.210"} +{"sensors":[{"euler":{"heading":98.5625,"pitch":143.0,"roll":51.6875},"location":"Left Knee"},{"euler":{"heading":13.4375,"pitch":-10.75,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":357.25,"pitch":-4.1875,"roll":-0.3125},"location":"Right Ankle"},{"euler":{"heading":67.875,"pitch":138.0,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":-22.125,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":343.4375,"pitch":95.5,"roll":44.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:08.310"} +{"sensors":[{"euler":{"heading":70.0625,"pitch":174.4375,"roll":63.3125},"location":"Left Knee"},{"euler":{"heading":346.5625,"pitch":-8.5,"roll":9.0625},"location":"Left Ankle"},{"euler":{"heading":353.125,"pitch":-4.3125,"roll":-1.6875},"location":"Right Ankle"},{"euler":{"heading":70.25,"pitch":136.75,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":167.5625,"pitch":-51.375,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":344.75,"pitch":96.4375,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:08.411"} +{"sensors":[{"euler":{"heading":59.6875,"pitch":-166.3125,"roll":63.25},"location":"Left Knee"},{"euler":{"heading":333.125,"pitch":-7.9375,"roll":8.3125},"location":"Left Ankle"},{"euler":{"heading":345.625,"pitch":-5.1875,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":72.3125,"pitch":137.4375,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":176.875,"pitch":-68.0625,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":350.5,"pitch":100.1875,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:08.511"} +{"sensors":[{"euler":{"heading":72.1875,"pitch":-176.375,"roll":63.625},"location":"Left Knee"},{"euler":{"heading":340.375,"pitch":-3.1875,"roll":5.75},"location":"Left Ankle"},{"euler":{"heading":335.5,"pitch":-7.0625,"roll":-3.4375},"location":"Right Ankle"},{"euler":{"heading":72.625,"pitch":140.8125,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":187.5625,"pitch":-72.875,"roll":65.375},"location":"Right Knee"},{"euler":{"heading":356.3125,"pitch":100.5625,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:08.612"} +{"sensors":[{"euler":{"heading":83.4375,"pitch":168.0,"roll":64.875},"location":"Left Knee"},{"euler":{"heading":349.1875,"pitch":-1.4375,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":319.6875,"pitch":-9.4375,"roll":-6.125},"location":"Right Ankle"},{"euler":{"heading":81.0,"pitch":138.3125,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":198.9375,"pitch":-74.625,"roll":54.25},"location":"Right Knee"},{"euler":{"heading":356.75,"pitch":100.875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:08.712"} +{"sensors":[{"euler":{"heading":91.625,"pitch":157.25,"roll":64.75},"location":"Left Knee"},{"euler":{"heading":353.5,"pitch":0.25,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":316.9375,"pitch":-9.125,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":85.3125,"pitch":134.5625,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":198.6875,"pitch":-69.8125,"roll":54.0625},"location":"Right Knee"},{"euler":{"heading":358.875,"pitch":104.3125,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:08.813"} +{"sensors":[{"euler":{"heading":97.625,"pitch":148.375,"roll":64.5625},"location":"Left Knee"},{"euler":{"heading":1.1875,"pitch":4.5625,"roll":-4.0},"location":"Left Ankle"},{"euler":{"heading":333.5,"pitch":-9.3125,"roll":0.625},"location":"Right Ankle"},{"euler":{"heading":88.6875,"pitch":135.75,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":184.9375,"pitch":-52.25,"roll":67.125},"location":"Right Knee"},{"euler":{"heading":2.125,"pitch":107.25,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:08.913"} +{"sensors":[{"euler":{"heading":103.75,"pitch":139.125,"roll":61.875},"location":"Left Knee"},{"euler":{"heading":3.5625,"pitch":2.9375,"roll":-0.6875},"location":"Left Ankle"},{"euler":{"heading":358.1875,"pitch":-7.625,"roll":5.375},"location":"Right Ankle"},{"euler":{"heading":353.375,"pitch":141.5625,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":165.6875,"pitch":15.25,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":2.75,"pitch":109.1875,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:09.14"} +{"sensors":[{"euler":{"heading":111.125,"pitch":130.375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":9.4375,"pitch":2.375,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":11.5,"pitch":-4.9375,"roll":8.8125},"location":"Right Ankle"},{"euler":{"heading":73.1875,"pitch":143.625,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":151.125,"pitch":52.9375,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":4.1875,"pitch":109.625,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:09.115"} +{"sensors":[{"euler":{"heading":120.5,"pitch":122.9375,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":19.5625,"pitch":1.75,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":10.5625,"pitch":-6.0,"roll":8.875},"location":"Right Ankle"},{"euler":{"heading":65.6875,"pitch":145.75,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":150.0625,"pitch":50.375,"roll":69.3125},"location":"Right Knee"},{"euler":{"heading":5.9375,"pitch":110.0,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:09.216"} +{"sensors":[{"euler":{"heading":43.4375,"pitch":118.25,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":37.5625,"pitch":-2.0,"roll":3.8125},"location":"Left Ankle"},{"euler":{"heading":3.75,"pitch":-3.75,"roll":3.5},"location":"Right Ankle"},{"euler":{"heading":70.1875,"pitch":142.875,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":153.0625,"pitch":39.375,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":356.8125,"pitch":104.1875,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:09.317"} +{"sensors":[{"euler":{"heading":49.9375,"pitch":119.375,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":41.8125,"pitch":-4.5,"roll":4.375},"location":"Left Ankle"},{"euler":{"heading":0.875,"pitch":-2.4375,"roll":4.125},"location":"Right Ankle"},{"euler":{"heading":67.9375,"pitch":141.4375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":155.0,"pitch":25.0625,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":349.75,"pitch":96.125,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:09.418"} +{"sensors":[{"euler":{"heading":111.0,"pitch":137.3125,"roll":48.375},"location":"Left Knee"},{"euler":{"heading":19.0625,"pitch":-5.3125,"roll":-0.9375},"location":"Left Ankle"},{"euler":{"heading":358.1875,"pitch":-0.3125,"roll":2.125},"location":"Right Ankle"},{"euler":{"heading":70.625,"pitch":138.0,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":158.3125,"pitch":-5.3125,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":345.1875,"pitch":96.125,"roll":43.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:09.519"} +{"sensors":[{"euler":{"heading":74.9375,"pitch":168.4375,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":350.6875,"pitch":-7.875,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":353.125,"pitch":1.0625,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":70.6875,"pitch":136.5,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":162.375,"pitch":-36.0,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":345.875,"pitch":97.1875,"roll":43.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:09.620"} +{"sensors":[{"euler":{"heading":62.625,"pitch":-169.625,"roll":63.0625},"location":"Left Knee"},{"euler":{"heading":334.625,"pitch":-6.5,"roll":7.8125},"location":"Left Ankle"},{"euler":{"heading":345.3125,"pitch":0.375,"roll":-3.0},"location":"Right Ankle"},{"euler":{"heading":71.0,"pitch":135.8125,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":170.5625,"pitch":-59.9375,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":352.0,"pitch":101.125,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:09.721"} +{"sensors":[{"euler":{"heading":74.8125,"pitch":179.3125,"roll":63.125},"location":"Left Knee"},{"euler":{"heading":342.625,"pitch":-3.6875,"roll":5.75},"location":"Left Ankle"},{"euler":{"heading":332.625,"pitch":-5.9375,"roll":-2.625},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":137.25,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":185.0,"pitch":-71.875,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":353.875,"pitch":101.5,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:09.821"} +{"sensors":[{"euler":{"heading":83.25,"pitch":164.4375,"roll":64.6875},"location":"Left Knee"},{"euler":{"heading":349.0,"pitch":-2.4375,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":316.25,"pitch":-8.5625,"roll":-4.6875},"location":"Right Ankle"},{"euler":{"heading":81.25,"pitch":135.625,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":198.5625,"pitch":-74.8125,"roll":54.5625},"location":"Right Knee"},{"euler":{"heading":355.25,"pitch":101.5,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:09.922"} +{"sensors":[{"euler":{"heading":89.6875,"pitch":153.75,"roll":64.1875},"location":"Left Knee"},{"euler":{"heading":358.75,"pitch":-1.625,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":321.3125,"pitch":-9.375,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":85.625,"pitch":135.4375,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":194.1875,"pitch":-65.25,"roll":58.0625},"location":"Right Knee"},{"euler":{"heading":358.3125,"pitch":105.375,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:10.22"} +{"sensors":[{"euler":{"heading":95.375,"pitch":145.0625,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":3.625,"pitch":-0.375,"roll":-1.625},"location":"Left Ankle"},{"euler":{"heading":342.1875,"pitch":-6.9375,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":355.8125,"pitch":138.5,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":177.6875,"pitch":-37.625,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":0.9375,"pitch":106.0625,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:10.124"} +{"sensors":[{"euler":{"heading":100.8125,"pitch":137.3125,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":6.75,"pitch":-2.5625,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":5.875,"pitch":-3.375,"roll":7.125},"location":"Right Ankle"},{"euler":{"heading":349.6875,"pitch":143.375,"roll":42.875},"location":"Right Hip"},{"euler":{"heading":159.625,"pitch":28.9375,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":2.875,"pitch":108.125,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:10.225"} +{"sensors":[{"euler":{"heading":107.125,"pitch":129.5,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":13.0625,"pitch":-3.0625,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":17.4375,"pitch":-4.0,"roll":9.8125},"location":"Right Ankle"},{"euler":{"heading":70.1875,"pitch":145.0625,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":148.5,"pitch":56.5625,"roll":65.25},"location":"Right Knee"},{"euler":{"heading":4.25,"pitch":111.75,"roll":68.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:10.325"} +{"sensors":[{"euler":{"heading":116.0625,"pitch":123.875,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":24.125,"pitch":-2.875,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":11.625,"pitch":-2.875,"roll":8.0625},"location":"Right Ankle"},{"euler":{"heading":65.4375,"pitch":145.4375,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":147.25,"pitch":50.0,"roll":67.6875},"location":"Right Knee"},{"euler":{"heading":6.375,"pitch":116.25,"roll":70.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:10.426"} +{"sensors":[{"euler":{"heading":43.5625,"pitch":119.6875,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":38.3125,"pitch":-3.0625,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":3.0,"pitch":-1.875,"roll":5.1875},"location":"Right Ankle"},{"euler":{"heading":69.4375,"pitch":141.9375,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":151.0,"pitch":38.625,"roll":74.375},"location":"Right Knee"},{"euler":{"heading":359.625,"pitch":108.3125,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:10.526"} +{"sensors":[{"euler":{"heading":52.875,"pitch":120.6875,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":42.875,"pitch":-6.1875,"roll":5.9375},"location":"Left Ankle"},{"euler":{"heading":359.8125,"pitch":-1.9375,"roll":4.125},"location":"Right Ankle"},{"euler":{"heading":67.5,"pitch":140.1875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":25.8125,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":349.375,"pitch":96.5,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:10.627"} +{"sensors":[{"euler":{"heading":28.0625,"pitch":134.6875,"roll":43.6875},"location":"Left Knee"},{"euler":{"heading":22.5625,"pitch":-4.0,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":357.875,"pitch":-0.9375,"roll":1.25},"location":"Right Ankle"},{"euler":{"heading":71.0625,"pitch":136.6875,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":158.25,"pitch":-2.4375,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":344.5625,"pitch":95.375,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:10.728"} +{"sensors":[{"euler":{"heading":77.9375,"pitch":162.0,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":354.4375,"pitch":-7.4375,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":353.6875,"pitch":0.1875,"roll":-0.8125},"location":"Right Ankle"},{"euler":{"heading":71.9375,"pitch":135.9375,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":161.875,"pitch":-32.5625,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":344.125,"pitch":94.625,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:10.829"} +{"sensors":[{"euler":{"heading":60.0,"pitch":-168.8125,"roll":64.125},"location":"Left Knee"},{"euler":{"heading":335.125,"pitch":-8.4375,"roll":8.0625},"location":"Left Ankle"},{"euler":{"heading":346.875,"pitch":1.25,"roll":-3.25},"location":"Right Ankle"},{"euler":{"heading":72.25,"pitch":135.3125,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":167.0625,"pitch":-57.6875,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":349.1875,"pitch":97.5,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:10.929"} +{"sensors":[{"euler":{"heading":69.75,"pitch":-175.875,"roll":62.6875},"location":"Left Knee"},{"euler":{"heading":338.875,"pitch":-4.75,"roll":6.9375},"location":"Left Ankle"},{"euler":{"heading":337.1875,"pitch":-1.4375,"roll":-3.9375},"location":"Right Ankle"},{"euler":{"heading":74.75,"pitch":136.75,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":178.125,"pitch":-71.4375,"roll":69.3125},"location":"Right Knee"},{"euler":{"heading":355.0625,"pitch":99.6875,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:11.30"} +{"sensors":[{"euler":{"heading":81.4375,"pitch":169.9375,"roll":63.8125},"location":"Left Knee"},{"euler":{"heading":348.125,"pitch":-0.5,"roll":2.0625},"location":"Left Ankle"},{"euler":{"heading":323.375,"pitch":-7.0,"roll":-4.625},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":135.6875,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":193.9375,"pitch":-77.8125,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":353.5,"pitch":98.1875,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:11.131"} +{"sensors":[{"euler":{"heading":91.375,"pitch":158.0,"roll":63.625},"location":"Left Knee"},{"euler":{"heading":355.625,"pitch":1.4375,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":313.6875,"pitch":-9.375,"roll":-7.1875},"location":"Right Ankle"},{"euler":{"heading":86.4375,"pitch":136.3125,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":198.5625,"pitch":-73.6875,"roll":54.5625},"location":"Right Knee"},{"euler":{"heading":357.3125,"pitch":101.75,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:11.231"} +{"sensors":[{"euler":{"heading":98.375,"pitch":148.875,"roll":63.6875},"location":"Left Knee"},{"euler":{"heading":4.1875,"pitch":5.6875,"roll":-3.0625},"location":"Left Ankle"},{"euler":{"heading":328.0625,"pitch":-9.5,"roll":-2.5},"location":"Right Ankle"},{"euler":{"heading":3.25,"pitch":136.4375,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":188.25,"pitch":-58.125,"roll":65.9375},"location":"Right Knee"},{"euler":{"heading":2.25,"pitch":106.5,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:11.332"} +{"sensors":[{"euler":{"heading":104.3125,"pitch":140.0625,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":6.75,"pitch":3.75,"roll":15.75},"location":"Left Ankle"},{"euler":{"heading":352.5625,"pitch":-8.25,"roll":4.5},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":142.0,"roll":40.0625},"location":"Right Hip"},{"euler":{"heading":169.25,"pitch":4.4375,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":3.25,"pitch":108.625,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:11.432"} +{"sensors":[{"euler":{"heading":110.625,"pitch":132.25,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":12.375,"pitch":3.5,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":13.1875,"pitch":-7.625,"roll":10.125},"location":"Right Ankle"},{"euler":{"heading":347.0625,"pitch":145.1875,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":154.8125,"pitch":56.25,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":4.4375,"pitch":109.5625,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:11.532"} +{"sensors":[{"euler":{"heading":117.8125,"pitch":125.4375,"roll":50.75},"location":"Left Knee"},{"euler":{"heading":21.5625,"pitch":2.5625,"roll":1.9375},"location":"Left Ankle"},{"euler":{"heading":13.625,"pitch":-5.75,"roll":10.5625},"location":"Right Ankle"},{"euler":{"heading":67.1875,"pitch":146.875,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":149.3125,"pitch":56.0,"roll":66.8125},"location":"Right Knee"},{"euler":{"heading":5.0625,"pitch":113.0625,"roll":68.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:11.633"} +{"sensors":[{"euler":{"heading":39.6875,"pitch":120.75,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":31.75,"pitch":-2.375,"roll":4.25},"location":"Left Ankle"},{"euler":{"heading":6.5625,"pitch":-2.375,"roll":3.9375},"location":"Right Ankle"},{"euler":{"heading":66.125,"pitch":146.0625,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":149.625,"pitch":41.0625,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":2.875,"pitch":111.5,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:11.734"} +{"sensors":[{"euler":{"heading":53.0,"pitch":120.75,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":43.375,"pitch":-3.1875,"roll":5.8125},"location":"Left Ankle"},{"euler":{"heading":2.4375,"pitch":-1.8125,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":63.875,"pitch":143.875,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":151.5625,"pitch":32.375,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":349.125,"pitch":98.125,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:11.835"} +{"sensors":[{"euler":{"heading":34.4375,"pitch":130.875,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":26.8125,"pitch":-3.1875,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":0.5,"pitch":-0.375,"roll":2.5625},"location":"Right Ankle"},{"euler":{"heading":67.1875,"pitch":139.8125,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":154.375,"pitch":8.9375,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":343.125,"pitch":96.9375,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:11.936"} +{"sensors":[{"euler":{"heading":84.5,"pitch":154.0625,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":-8.375,"roll":3.625},"location":"Left Ankle"},{"euler":{"heading":356.1875,"pitch":0.4375,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":69.4375,"pitch":137.5,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":159.25,"pitch":-23.1875,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":341.875,"pitch":94.9375,"roll":44.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:12.37"} +{"sensors":[{"euler":{"heading":61.5,"pitch":-172.1875,"roll":64.375},"location":"Left Knee"},{"euler":{"heading":336.8125,"pitch":-8.0,"roll":8.125},"location":"Left Ankle"},{"euler":{"heading":350.8125,"pitch":0.8125,"roll":-1.5625},"location":"Right Ankle"},{"euler":{"heading":70.625,"pitch":136.1875,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":-54.375,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":346.9375,"pitch":97.75,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:12.140"} +{"sensors":[{"euler":{"heading":63.375,"pitch":-170.0625,"roll":62.25},"location":"Left Knee"},{"euler":{"heading":335.25,"pitch":-4.75,"roll":6.9375},"location":"Left Ankle"},{"euler":{"heading":341.25,"pitch":-0.875,"roll":-2.5},"location":"Right Ankle"},{"euler":{"heading":72.5625,"pitch":137.1875,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":-67.8125,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":350.8125,"pitch":99.875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:12.241"} +{"sensors":[{"euler":{"heading":77.75,"pitch":172.75,"roll":63.75},"location":"Left Knee"},{"euler":{"heading":346.375,"pitch":-2.8125,"roll":3.1875},"location":"Left Ankle"},{"euler":{"heading":325.625,"pitch":-9.375,"roll":-3.3125},"location":"Right Ankle"},{"euler":{"heading":79.1875,"pitch":137.3125,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":194.375,"pitch":-74.0625,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":353.0,"pitch":99.5,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:12.342"} +{"sensors":[{"euler":{"heading":88.4375,"pitch":160.4375,"roll":64.0},"location":"Left Knee"},{"euler":{"heading":352.875,"pitch":-0.3125,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":315.5625,"pitch":-10.25,"roll":-4.375},"location":"Right Ankle"},{"euler":{"heading":87.0625,"pitch":134.6875,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":200.1875,"pitch":-71.3125,"roll":53.5625},"location":"Right Knee"},{"euler":{"heading":357.75,"pitch":102.8125,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:12.443"} +{"sensors":[{"euler":{"heading":111.375,"pitch":150.5625,"roll":63.625},"location":"Left Knee"},{"euler":{"heading":3.1875,"pitch":3.5625,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":327.625,"pitch":-9.6875,"roll":-1.625},"location":"Right Ankle"},{"euler":{"heading":3.125,"pitch":134.6875,"roll":44.875},"location":"Right Hip"},{"euler":{"heading":189.8125,"pitch":-60.6875,"roll":63.625},"location":"Right Knee"},{"euler":{"heading":0.75,"pitch":106.875,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:12.545"} +{"sensors":[{"euler":{"heading":102.5625,"pitch":142.0,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":4.25,"pitch":2.5625,"roll":-0.125},"location":"Left Ankle"},{"euler":{"heading":351.375,"pitch":-8.5,"roll":5.0625},"location":"Right Ankle"},{"euler":{"heading":358.6875,"pitch":140.125,"roll":41.0},"location":"Right Hip"},{"euler":{"heading":172.0625,"pitch":-10.6875,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":2.375,"pitch":108.8125,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:12.646"} +{"sensors":[{"euler":{"heading":109.3125,"pitch":133.6875,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":9.125,"pitch":2.5,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":14.75,"pitch":-6.5,"roll":8.3125},"location":"Right Ankle"},{"euler":{"heading":347.125,"pitch":143.1875,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":154.8125,"pitch":54.75,"roll":69.25},"location":"Right Knee"},{"euler":{"heading":4.3125,"pitch":110.0625,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:12.747"} +{"sensors":[{"euler":{"heading":116.5,"pitch":126.75,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":17.25,"pitch":2.4375,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":14.1875,"pitch":-5.625,"roll":10.125},"location":"Right Ankle"},{"euler":{"heading":67.0,"pitch":146.125,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":148.75,"pitch":59.125,"roll":65.9375},"location":"Right Knee"},{"euler":{"heading":5.25,"pitch":113.3125,"roll":67.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:12.848"} +{"sensors":[{"euler":{"heading":38.9375,"pitch":120.125,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":29.625,"pitch":-3.875,"roll":2.5},"location":"Left Ankle"},{"euler":{"heading":6.875,"pitch":-3.625,"roll":4.3125},"location":"Right Ankle"},{"euler":{"heading":68.625,"pitch":144.5,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":150.125,"pitch":45.9375,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":1.125,"pitch":108.0,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:12.949"} +{"sensors":[{"euler":{"heading":51.625,"pitch":120.0625,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":44.8125,"pitch":-4.8125,"roll":3.8125},"location":"Left Ankle"},{"euler":{"heading":2.5625,"pitch":-5.25,"roll":4.875},"location":"Right Ankle"},{"euler":{"heading":66.3125,"pitch":143.6875,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":154.0625,"pitch":39.9375,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":347.75,"pitch":95.875,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:13.49"} +{"sensors":[{"euler":{"heading":38.1875,"pitch":128.8125,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":30.5625,"pitch":-6.5625,"roll":-1.3125},"location":"Left Ankle"},{"euler":{"heading":1.8125,"pitch":-5.3125,"roll":1.6875},"location":"Right Ankle"},{"euler":{"heading":69.8125,"pitch":139.9375,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":159.4375,"pitch":15.625,"roll":82.4375},"location":"Right Knee"},{"euler":{"heading":342.6875,"pitch":96.0,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:13.149"} +{"sensors":[{"euler":{"heading":90.375,"pitch":150.125,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":3.4375,"pitch":-9.3125,"roll":3.3125},"location":"Left Ankle"},{"euler":{"heading":358.1875,"pitch":-5.4375,"roll":0.5},"location":"Right Ankle"},{"euler":{"heading":72.0,"pitch":138.9375,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":-24.25,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":342.8125,"pitch":94.9375,"roll":43.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:13.250"} +{"sensors":[{"euler":{"heading":64.3125,"pitch":-176.125,"roll":64.5},"location":"Left Knee"},{"euler":{"heading":338.8125,"pitch":-8.5625,"roll":7.8125},"location":"Left Ankle"},{"euler":{"heading":352.125,"pitch":-4.0625,"roll":-1.125},"location":"Right Ankle"},{"euler":{"heading":71.875,"pitch":138.0625,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":169.625,"pitch":-53.0,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":346.875,"pitch":97.25,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:13.351"} +{"sensors":[{"euler":{"heading":64.0625,"pitch":-170.875,"roll":62.125},"location":"Left Knee"},{"euler":{"heading":336.5625,"pitch":-5.75,"roll":6.6875},"location":"Left Ankle"},{"euler":{"heading":343.0,"pitch":-5.3125,"roll":-2.375},"location":"Right Ankle"},{"euler":{"heading":72.3125,"pitch":139.125,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":179.625,"pitch":-68.5,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":351.875,"pitch":99.6875,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:13.452"} +{"sensors":[{"euler":{"heading":79.125,"pitch":173.75,"roll":63.125},"location":"Left Knee"},{"euler":{"heading":345.75,"pitch":-4.0625,"roll":3.9375},"location":"Left Ankle"},{"euler":{"heading":325.4375,"pitch":-11.0625,"roll":-3.4375},"location":"Right Ankle"},{"euler":{"heading":78.4375,"pitch":137.625,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":196.4375,"pitch":-73.4375,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":353.0625,"pitch":99.875,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:13.552"} +{"sensors":[{"euler":{"heading":86.125,"pitch":162.4375,"roll":64.25},"location":"Left Knee"},{"euler":{"heading":351.8125,"pitch":-3.375,"roll":1.9375},"location":"Left Ankle"},{"euler":{"heading":314.1875,"pitch":-11.0625,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":88.5,"pitch":134.25,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":198.375,"pitch":-70.875,"roll":55.875},"location":"Right Knee"},{"euler":{"heading":357.125,"pitch":105.1875,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:13.653"} +{"sensors":[{"euler":{"heading":89.6875,"pitch":152.1875,"roll":63.6875},"location":"Left Knee"},{"euler":{"heading":1.4375,"pitch":-2.1875,"roll":-1.75},"location":"Left Ankle"},{"euler":{"heading":329.4375,"pitch":-8.1875,"roll":-1.0},"location":"Right Ankle"},{"euler":{"heading":1.375,"pitch":135.1875,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":184.3125,"pitch":-53.125,"roll":68.0625},"location":"Right Knee"},{"euler":{"heading":358.5625,"pitch":107.6875,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:13.755"} +{"sensors":[{"euler":{"heading":94.4375,"pitch":142.875,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":-4.75,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":355.4375,"pitch":-7.1875,"roll":6.0},"location":"Right Ankle"},{"euler":{"heading":354.375,"pitch":140.6875,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":165.375,"pitch":20.625,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":358.5625,"pitch":108.5,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:13.855"} +{"sensors":[{"euler":{"heading":103.5,"pitch":134.6875,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":6.0,"pitch":-3.0,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":14.375,"pitch":-8.375,"roll":10.5625},"location":"Right Ankle"},{"euler":{"heading":75.4375,"pitch":143.5,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":153.25,"pitch":62.375,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":2.9375,"pitch":110.3125,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:13.956"} +{"sensors":[{"euler":{"heading":112.4375,"pitch":127.5,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":14.9375,"pitch":-2.4375,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":13.875,"pitch":-7.3125,"roll":9.625},"location":"Right Ankle"},{"euler":{"heading":67.0,"pitch":145.4375,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":150.75,"pitch":58.0625,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":5.0,"pitch":113.5,"roll":68.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:14.57"} +{"sensors":[{"euler":{"heading":36.3125,"pitch":121.625,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":30.6875,"pitch":-6.6875,"roll":2.125},"location":"Left Ankle"},{"euler":{"heading":7.0625,"pitch":-7.4375,"roll":3.5625},"location":"Right Ankle"},{"euler":{"heading":67.25,"pitch":145.0625,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":152.375,"pitch":49.5,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":2.0625,"pitch":108.125,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:14.158"} +{"sensors":[{"euler":{"heading":46.75,"pitch":122.25,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":41.75,"pitch":-9.3125,"roll":4.9375},"location":"Left Ankle"},{"euler":{"heading":4.25,"pitch":-9.25,"roll":5.625},"location":"Right Ankle"},{"euler":{"heading":64.4375,"pitch":144.5625,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":157.5,"pitch":44.875,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":348.375,"pitch":95.375,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:14.258"} +{"sensors":[{"euler":{"heading":25.8125,"pitch":133.9375,"roll":43.6875},"location":"Left Knee"},{"euler":{"heading":23.125,"pitch":-9.1875,"roll":-1.125},"location":"Left Ankle"},{"euler":{"heading":2.0625,"pitch":-8.875,"roll":2.5625},"location":"Right Ankle"},{"euler":{"heading":69.5625,"pitch":140.1875,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":163.8125,"pitch":0.5625,"roll":83.625},"location":"Right Knee"},{"euler":{"heading":344.5,"pitch":95.5625,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:14.360"} +{"sensors":[{"euler":{"heading":77.375,"pitch":159.625,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":356.6875,"pitch":-12.75,"roll":5.0},"location":"Left Ankle"},{"euler":{"heading":357.625,"pitch":-8.125,"roll":1.4375},"location":"Right Ankle"},{"euler":{"heading":71.1875,"pitch":139.6875,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":168.0,"pitch":-32.4375,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":344.75,"pitch":94.5625,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:14.460"} +{"sensors":[{"euler":{"heading":60.25,"pitch":-169.625,"roll":64.25},"location":"Left Knee"},{"euler":{"heading":336.8125,"pitch":-9.4375,"roll":7.6875},"location":"Left Ankle"},{"euler":{"heading":351.5,"pitch":-6.0625,"roll":-0.4375},"location":"Right Ankle"},{"euler":{"heading":71.1875,"pitch":138.875,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":173.0,"pitch":-57.8125,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":348.6875,"pitch":98.0,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:14.561"} +{"sensors":[{"euler":{"heading":70.625,"pitch":-176.5625,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":340.0625,"pitch":-3.875,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":340.75,"pitch":-6.8125,"roll":-1.75},"location":"Right Ankle"},{"euler":{"heading":72.5,"pitch":138.6875,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":181.9375,"pitch":-71.0625,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":352.1875,"pitch":99.3125,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:14.661"} +{"sensors":[{"euler":{"heading":81.0625,"pitch":169.875,"roll":63.625},"location":"Left Knee"},{"euler":{"heading":349.0625,"pitch":-0.75,"roll":2.0},"location":"Left Ankle"},{"euler":{"heading":322.125,"pitch":-9.9375,"roll":-3.0},"location":"Right Ankle"},{"euler":{"heading":95.0625,"pitch":137.3125,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":196.3125,"pitch":-73.625,"roll":58.1875},"location":"Right Knee"},{"euler":{"heading":352.125,"pitch":99.375,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:14.762"} +{"sensors":[{"euler":{"heading":90.9375,"pitch":157.8125,"roll":63.1875},"location":"Left Knee"},{"euler":{"heading":354.9375,"pitch":0.5625,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":318.4375,"pitch":-10.5625,"roll":-2.8125},"location":"Right Ankle"},{"euler":{"heading":85.4375,"pitch":135.9375,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":194.4375,"pitch":-66.5,"roll":59.875},"location":"Right Knee"},{"euler":{"heading":356.625,"pitch":102.1875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:14.863"} +{"sensors":[{"euler":{"heading":96.8125,"pitch":148.6875,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":4.625,"pitch":3.5625,"roll":-2.6875},"location":"Left Ankle"},{"euler":{"heading":334.625,"pitch":-10.375,"roll":0.6875},"location":"Right Ankle"},{"euler":{"heading":0.0625,"pitch":138.1875,"roll":44.125},"location":"Right Hip"},{"euler":{"heading":183.125,"pitch":-43.0625,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":0.625,"pitch":106.4375,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:14.964"} +{"sensors":[{"euler":{"heading":102.125,"pitch":139.4375,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":7.1875,"pitch":0.6875,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":358.6875,"pitch":-8.8125,"roll":6.0},"location":"Right Ankle"},{"euler":{"heading":355.4375,"pitch":142.5,"roll":41.0625},"location":"Right Hip"},{"euler":{"heading":164.875,"pitch":39.6875,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":2.3125,"pitch":109.5,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:15.65"} +{"sensors":[{"euler":{"heading":109.25,"pitch":131.3125,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":13.25,"pitch":0.3125,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":15.25,"pitch":-7.625,"roll":10.6875},"location":"Right Ankle"},{"euler":{"heading":74.6875,"pitch":143.75,"roll":46.0},"location":"Right Hip"},{"euler":{"heading":151.0625,"pitch":65.75,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":4.6875,"pitch":110.5,"roll":67.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:15.166"} +{"sensors":[{"euler":{"heading":118.3125,"pitch":125.3125,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":23.1875,"pitch":-0.1875,"roll":1.3125},"location":"Left Ankle"},{"euler":{"heading":14.5625,"pitch":-6.6875,"roll":9.1875},"location":"Right Ankle"},{"euler":{"heading":66.875,"pitch":145.4375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":148.9375,"pitch":60.8125,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":114.6875,"roll":69.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:15.267"} +{"sensors":[{"euler":{"heading":41.125,"pitch":120.875,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":37.125,"pitch":-5.0,"roll":3.9375},"location":"Left Ankle"},{"euler":{"heading":5.8125,"pitch":-5.75,"roll":5.1875},"location":"Right Ankle"},{"euler":{"heading":70.4375,"pitch":143.0625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":150.625,"pitch":51.25,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":357.8125,"pitch":106.125,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:15.367"} +{"sensors":[{"euler":{"heading":51.625,"pitch":121.1875,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":43.8125,"pitch":-7.0625,"roll":4.375},"location":"Left Ankle"},{"euler":{"heading":3.0,"pitch":-4.25,"roll":3.1875},"location":"Right Ankle"},{"euler":{"heading":66.375,"pitch":141.6875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":151.625,"pitch":46.9375,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":346.625,"pitch":94.5625,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:15.468"} +{"sensors":[{"euler":{"heading":26.875,"pitch":135.5625,"roll":44.3125},"location":"Left Knee"},{"euler":{"heading":21.9375,"pitch":-4.6875,"roll":-0.9375},"location":"Left Ankle"},{"euler":{"heading":0.75,"pitch":-2.9375,"roll":1.4375},"location":"Right Ankle"},{"euler":{"heading":70.4375,"pitch":138.0625,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":155.8125,"pitch":23.1875,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":342.8125,"pitch":95.0,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:15.569"} +{"sensors":[{"euler":{"heading":75.4375,"pitch":165.6875,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":352.9375,"pitch":-9.4375,"roll":6.25},"location":"Left Ankle"},{"euler":{"heading":356.375,"pitch":-1.3125,"roll":-0.125},"location":"Right Ankle"},{"euler":{"heading":72.0,"pitch":135.9375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":159.875,"pitch":-13.125,"roll":82.125},"location":"Right Knee"},{"euler":{"heading":343.25,"pitch":95.3125,"roll":43.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:15.670"} +{"sensors":[{"euler":{"heading":58.3125,"pitch":-164.75,"roll":62.75},"location":"Left Knee"},{"euler":{"heading":332.25,"pitch":-7.25,"roll":7.875},"location":"Left Ankle"},{"euler":{"heading":348.8125,"pitch":-0.625,"roll":-2.1875},"location":"Right Ankle"},{"euler":{"heading":72.875,"pitch":135.3125,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":166.875,"pitch":-51.125,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":349.0,"pitch":99.125,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:15.770"} +{"sensors":[{"euler":{"heading":70.0625,"pitch":-175.3125,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":337.8125,"pitch":-2.875,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":338.375,"pitch":-3.4375,"roll":-2.625},"location":"Right Ankle"},{"euler":{"heading":74.4375,"pitch":137.0,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":178.375,"pitch":-70.3125,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":353.6875,"pitch":100.1875,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:15.872"} +{"sensors":[{"euler":{"heading":80.25,"pitch":171.0,"roll":63.1875},"location":"Left Knee"},{"euler":{"heading":347.1875,"pitch":-1.5,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":322.125,"pitch":-10.0625,"roll":-3.6875},"location":"Right Ankle"},{"euler":{"heading":95.4375,"pitch":135.875,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":195.75,"pitch":-73.5,"roll":59.875},"location":"Right Knee"},{"euler":{"heading":352.0,"pitch":99.75,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:15.972"} +{"sensors":[{"euler":{"heading":88.6875,"pitch":160.375,"roll":63.875},"location":"Left Knee"},{"euler":{"heading":353.75,"pitch":0.75,"roll":1.375},"location":"Left Ankle"},{"euler":{"heading":314.75,"pitch":-12.125,"roll":-3.4375},"location":"Right Ankle"},{"euler":{"heading":86.25,"pitch":135.0625,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":198.75,"pitch":-71.0,"roll":56.5},"location":"Right Knee"},{"euler":{"heading":356.375,"pitch":103.875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:16.72"} +{"sensors":[{"euler":{"heading":111.875,"pitch":150.6875,"roll":63.4375},"location":"Left Knee"},{"euler":{"heading":1.625,"pitch":3.9375,"roll":-2.5625},"location":"Left Ankle"},{"euler":{"heading":331.1875,"pitch":-9.875,"roll":0.125},"location":"Right Ankle"},{"euler":{"heading":2.9375,"pitch":136.25,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":185.5,"pitch":-49.0,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":0.625,"pitch":106.8125,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:16.173"} +{"sensors":[{"euler":{"heading":102.75,"pitch":141.5,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":4.8125,"pitch":2.375,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":356.8125,"pitch":-8.25,"roll":7.125},"location":"Right Ankle"},{"euler":{"heading":357.875,"pitch":141.875,"roll":40.625},"location":"Right Hip"},{"euler":{"heading":166.375,"pitch":31.1875,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":2.75,"pitch":108.0625,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:16.273"} +{"sensors":[{"euler":{"heading":110.125,"pitch":132.6875,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":9.875,"pitch":2.25,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":12.5625,"pitch":-7.75,"roll":11.4375},"location":"Right Ankle"},{"euler":{"heading":346.75,"pitch":143.875,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":152.3125,"pitch":64.1875,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":5.0,"pitch":108.25,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:16.374"} +{"sensors":[{"euler":{"heading":117.125,"pitch":126.5625,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":17.8125,"pitch":1.375,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":12.5625,"pitch":-5.625,"roll":10.25},"location":"Right Ankle"},{"euler":{"heading":67.5625,"pitch":145.75,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":147.5625,"pitch":62.1875,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":5.375,"pitch":112.625,"roll":69.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:16.475"} +{"sensors":[{"euler":{"heading":37.75,"pitch":122.0,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":28.3125,"pitch":-4.3125,"roll":3.8125},"location":"Left Ankle"},{"euler":{"heading":4.4375,"pitch":-2.5,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":64.0625,"pitch":145.5,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":147.5625,"pitch":48.9375,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":0.3125,"pitch":107.1875,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:16.575"} +{"sensors":[{"euler":{"heading":52.75,"pitch":121.4375,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":41.6875,"pitch":-2.6875,"roll":6.6875},"location":"Left Ankle"},{"euler":{"heading":0.75,"pitch":-2.3125,"roll":2.8125},"location":"Right Ankle"},{"euler":{"heading":63.25,"pitch":143.1875,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":151.125,"pitch":47.0,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":348.4375,"pitch":95.25,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:16.677"} +{"sensors":[{"euler":{"heading":36.6875,"pitch":131.75,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":24.9375,"pitch":0.125,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":359.0,"pitch":-2.5625,"roll":1.5},"location":"Right Ankle"},{"euler":{"heading":68.25,"pitch":139.6875,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":156.1875,"pitch":26.9375,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":343.5,"pitch":96.0,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:16.778"} +{"sensors":[{"euler":{"heading":87.9375,"pitch":154.8125,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":359.5625,"pitch":-3.5,"roll":5.5625},"location":"Left Ankle"},{"euler":{"heading":354.75,"pitch":-1.8125,"roll":0.3125},"location":"Right Ankle"},{"euler":{"heading":70.5,"pitch":137.6875,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":160.375,"pitch":-9.125,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":342.375,"pitch":94.25,"roll":44.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:16.879"} +{"sensors":[{"euler":{"heading":63.5625,"pitch":-173.9375,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":337.125,"pitch":-5.5,"roll":7.75},"location":"Left Ankle"},{"euler":{"heading":347.9375,"pitch":-1.375,"roll":-1.4375},"location":"Right Ankle"},{"euler":{"heading":71.375,"pitch":136.75,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":167.625,"pitch":-51.75,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":347.5,"pitch":97.625,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:16.980"} +{"sensors":[{"euler":{"heading":65.0,"pitch":-170.3125,"roll":61.5625},"location":"Left Knee"},{"euler":{"heading":336.5625,"pitch":-3.4375,"roll":6.3125},"location":"Left Ankle"},{"euler":{"heading":337.5,"pitch":-3.625,"roll":-2.875},"location":"Right Ankle"},{"euler":{"heading":74.0625,"pitch":137.75,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":179.0625,"pitch":-69.875,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":367.875,"pitch":99.625,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:17.81"} +{"sensors":[{"euler":{"heading":78.875,"pitch":174.1875,"roll":63.1875},"location":"Left Knee"},{"euler":{"heading":345.0625,"pitch":-2.4375,"roll":2.875},"location":"Left Ankle"},{"euler":{"heading":321.6875,"pitch":-9.875,"roll":-4.6875},"location":"Right Ankle"},{"euler":{"heading":80.5,"pitch":136.125,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":195.125,"pitch":-77.125,"roll":60.875},"location":"Right Knee"},{"euler":{"heading":353.0,"pitch":101.25,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:17.182"} +{"sensors":[{"euler":{"heading":88.5,"pitch":162.4375,"roll":64.375},"location":"Left Knee"},{"euler":{"heading":350.375,"pitch":-0.3125,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":313.125,"pitch":-11.8125,"roll":-4.75},"location":"Right Ankle"},{"euler":{"heading":89.375,"pitch":133.25,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":200.4375,"pitch":-74.625,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":359.125,"pitch":105.75,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:17.282"} +{"sensors":[{"euler":{"heading":95.3125,"pitch":152.1875,"roll":63.9375},"location":"Left Knee"},{"euler":{"heading":1.1875,"pitch":3.6875,"roll":-2.875},"location":"Left Ankle"},{"euler":{"heading":325.5625,"pitch":-9.75,"roll":-1.625},"location":"Right Ankle"},{"euler":{"heading":3.5,"pitch":134.5625,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-60.875,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":3.0625,"pitch":107.6875,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:17.382"} +{"sensors":[{"euler":{"heading":101.625,"pitch":143.1875,"roll":61.9375},"location":"Left Knee"},{"euler":{"heading":1.0625,"pitch":1.5,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":348.0625,"pitch":-8.625,"roll":4.5},"location":"Right Ankle"},{"euler":{"heading":0.6875,"pitch":139.8125,"roll":40.0625},"location":"Right Hip"},{"euler":{"heading":173.9375,"pitch":-12.0625,"roll":77.25},"location":"Right Knee"},{"euler":{"heading":5.8125,"pitch":110.3125,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:17.483"} +{"sensors":[{"euler":{"heading":108.8125,"pitch":134.5,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":5.6875,"pitch":1.5,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":7.4375,"pitch":-6.9375,"roll":9.5},"location":"Right Ankle"},{"euler":{"heading":350.3125,"pitch":143.75,"roll":42.3125},"location":"Right Hip"},{"euler":{"heading":157.6875,"pitch":52.6875,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":7.4375,"pitch":112.1875,"roll":67.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:17.583"} +{"sensors":[{"euler":{"heading":115.4375,"pitch":127.8125,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":13.3125,"pitch":1.5625,"roll":1.4375},"location":"Left Ankle"},{"euler":{"heading":16.0,"pitch":-4.875,"roll":10.9375},"location":"Right Ankle"},{"euler":{"heading":69.0,"pitch":146.0,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":148.0,"pitch":62.6875,"roll":62.5},"location":"Right Knee"},{"euler":{"heading":7.625,"pitch":115.6875,"roll":69.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:17.684"} +{"sensors":[{"euler":{"heading":36.375,"pitch":121.8125,"roll":42.6875},"location":"Left Knee"},{"euler":{"heading":25.75,"pitch":-0.625,"roll":1.625},"location":"Left Ankle"},{"euler":{"heading":6.125,"pitch":-2.625,"roll":5.5625},"location":"Right Ankle"},{"euler":{"heading":66.8125,"pitch":146.0,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":148.4375,"pitch":51.5625,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":9.0625,"pitch":115.4375,"roll":70.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:17.784"} +{"sensors":[{"euler":{"heading":54.0,"pitch":120.0625,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":41.3125,"pitch":4.6875,"roll":7.25},"location":"Left Ankle"},{"euler":{"heading":1.875,"pitch":-2.9375,"roll":5.5625},"location":"Right Ankle"},{"euler":{"heading":67.9375,"pitch":143.0625,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":151.6875,"pitch":47.875,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":357.4375,"pitch":104.125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:17.885"} +{"sensors":[{"euler":{"heading":48.4375,"pitch":126.0,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":34.375,"pitch":-1.625,"roll":6.3125},"location":"Left Ankle"},{"euler":{"heading":0.0625,"pitch":-4.0625,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":68.9375,"pitch":140.625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":156.625,"pitch":34.9375,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":349.3125,"pitch":98.0,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:17.985"} +{"sensors":[{"euler":{"heading":103.5,"pitch":144.75,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":10.75,"pitch":-3.9375,"roll":3.0625},"location":"Left Ankle"},{"euler":{"heading":356.6875,"pitch":-4.125,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":71.625,"pitch":138.125,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":161.1875,"pitch":6.6875,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":344.75,"pitch":96.625,"roll":44.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:18.86"} +{"sensors":[{"euler":{"heading":69.6875,"pitch":176.5,"roll":62.5625},"location":"Left Knee"},{"euler":{"heading":344.5,"pitch":-6.4375,"roll":7.375},"location":"Left Ankle"},{"euler":{"heading":351.625,"pitch":-3.375,"roll":0.25},"location":"Right Ankle"},{"euler":{"heading":72.6875,"pitch":137.3125,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":-32.8125,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":345.1875,"pitch":97.1875,"roll":44.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:18.186"} +{"sensors":[{"euler":{"heading":60.0,"pitch":-166.0,"roll":62.5},"location":"Left Knee"},{"euler":{"heading":333.375,"pitch":-5.9375,"roll":6.5625},"location":"Left Ankle"},{"euler":{"heading":342.4375,"pitch":-3.25,"roll":-2.5625},"location":"Right Ankle"},{"euler":{"heading":74.0625,"pitch":137.1875,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":174.1875,"pitch":-61.3125,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":350.375,"pitch":100.625,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:18.286"} +{"sensors":[{"euler":{"heading":74.625,"pitch":-179.5625,"roll":62.25},"location":"Left Knee"},{"euler":{"heading":343.25,"pitch":-2.875,"roll":4.4375},"location":"Left Ankle"},{"euler":{"heading":327.8125,"pitch":-8.4375,"roll":-3.25},"location":"Right Ankle"},{"euler":{"heading":76.875,"pitch":137.375,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":188.75,"pitch":-74.5,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":352.75,"pitch":100.4375,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:18.387"} +{"sensors":[{"euler":{"heading":85.3125,"pitch":166.5625,"roll":63.75},"location":"Left Knee"},{"euler":{"heading":349.8125,"pitch":0.375,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":311.125,"pitch":-10.5625,"roll":-6.5},"location":"Right Ankle"},{"euler":{"heading":85.75,"pitch":134.625,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":197.375,"pitch":-74.8125,"roll":56.8125},"location":"Right Knee"},{"euler":{"heading":355.0,"pitch":101.3125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:18.487"} +{"sensors":[{"euler":{"heading":94.1875,"pitch":156.125,"roll":63.6875},"location":"Left Knee"},{"euler":{"heading":359.6875,"pitch":4.0,"roll":-1.125},"location":"Left Ankle"},{"euler":{"heading":318.625,"pitch":-9.8125,"roll":-3.5},"location":"Right Ankle"},{"euler":{"heading":91.625,"pitch":134.8125,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":192.1875,"pitch":-63.25,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":359.375,"pitch":104.75,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:18.587"} +{"sensors":[{"euler":{"heading":100.75,"pitch":146.6875,"roll":61.875},"location":"Left Knee"},{"euler":{"heading":4.4375,"pitch":3.75,"roll":-1.3125},"location":"Left Ankle"},{"euler":{"heading":341.5,"pitch":-8.625,"roll":3.0625},"location":"Right Ankle"},{"euler":{"heading":1.6875,"pitch":139.375,"roll":40.0625},"location":"Right Hip"},{"euler":{"heading":174.8125,"pitch":-19.375,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":1.1875,"pitch":106.75,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:18.688"} +{"sensors":[{"euler":{"heading":106.625,"pitch":138.1875,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":8.9375,"pitch":3.0,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":5.9375,"pitch":-6.5625,"roll":8.0},"location":"Right Ankle"},{"euler":{"heading":352.375,"pitch":142.875,"roll":41.375},"location":"Right Hip"},{"euler":{"heading":156.8125,"pitch":53.5,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":2.5,"pitch":108.4375,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:18.788"} +{"sensors":[{"euler":{"heading":114.375,"pitch":130.125,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":15.9375,"pitch":3.875,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":12.8125,"pitch":-5.75,"roll":11.0625},"location":"Right Ankle"},{"euler":{"heading":69.9375,"pitch":145.9375,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":147.0,"pitch":64.625,"roll":62.9375},"location":"Right Knee"},{"euler":{"heading":4.6875,"pitch":110.4375,"roll":67.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:18.889"} +{"sensors":[{"euler":{"heading":124.625,"pitch":123.5,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":28.0625,"pitch":2.5625,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":7.8125,"pitch":-5.625,"roll":8.625},"location":"Right Ankle"},{"euler":{"heading":68.9375,"pitch":145.8125,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":148.3125,"pitch":59.5625,"roll":68.25},"location":"Right Knee"},{"euler":{"heading":5.9375,"pitch":110.4375,"roll":67.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:18.989"} +{"sensors":[{"euler":{"heading":47.375,"pitch":122.125,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":43.0625,"pitch":-0.4375,"roll":3.9375},"location":"Left Ankle"},{"euler":{"heading":2.25,"pitch":-5.5625,"roll":5.625},"location":"Right Ankle"},{"euler":{"heading":67.0625,"pitch":143.625,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":151.1875,"pitch":54.125,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":349.9375,"pitch":101.75,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:19.89"} +{"sensors":[{"euler":{"heading":44.0625,"pitch":125.75,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":34.875,"pitch":-4.25,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":359.5,"pitch":-6.625,"roll":3.625},"location":"Right Ankle"},{"euler":{"heading":69.5,"pitch":140.3125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":156.25,"pitch":44.5625,"roll":80.4375},"location":"Right Knee"},{"euler":{"heading":343.3125,"pitch":96.0,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:19.190"} +{"sensors":[{"euler":{"heading":101.375,"pitch":144.5,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":8.875,"pitch":-8.4375,"roll":2.5},"location":"Left Ankle"},{"euler":{"heading":94.1875,"pitch":86.25,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":72.5625,"pitch":137.875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":1.3125,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":342.1875,"pitch":95.625,"roll":42.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:19.290"} +{"sensors":[{"euler":{"heading":70.75,"pitch":179.0,"roll":62.4375},"location":"Left Knee"},{"euler":{"heading":341.375,"pitch":-5.9375,"roll":7.625},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":82.1875,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":73.25,"pitch":137.5,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":168.125,"pitch":-36.375,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":344.3125,"pitch":96.8125,"roll":44.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:19.390"} +{"sensors":[{"euler":{"heading":62.5625,"pitch":-170.8125,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":333.0,"pitch":-5.625,"roll":6.5},"location":"Left Ankle"},{"euler":{"heading":78.9375,"pitch":2.0,"roll":86.0},"location":"Right Ankle"},{"euler":{"heading":74.4375,"pitch":138.0625,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-63.0625,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":349.875,"pitch":99.25,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:19.491"} +{"sensors":[{"euler":{"heading":77.375,"pitch":173.875,"roll":62.5625},"location":"Left Knee"},{"euler":{"heading":343.875,"pitch":-2.6875,"roll":4.125},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-79.3125,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":75.0625,"pitch":139.0,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":188.0625,"pitch":-72.5,"roll":67.6875},"location":"Right Knee"},{"euler":{"heading":353.125,"pitch":98.5,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:19.591"} +{"sensors":[{"euler":{"heading":87.625,"pitch":160.0625,"roll":63.6875},"location":"Left Knee"},{"euler":{"heading":350.375,"pitch":-0.25,"roll":1.625},"location":"Left Ankle"},{"euler":{"heading":57.5625,"pitch":-89.3125,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":83.375,"pitch":135.6875,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":197.0625,"pitch":-74.0,"roll":57.125},"location":"Right Knee"},{"euler":{"heading":355.6875,"pitch":99.75,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:19.691"} +{"sensors":[{"euler":{"heading":93.8125,"pitch":149.6875,"roll":62.5},"location":"Left Knee"},{"euler":{"heading":357.625,"pitch":0.0625,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-89.375,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":88.1875,"pitch":134.5625,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":194.375,"pitch":-67.8125,"roll":60.3125},"location":"Right Knee"},{"euler":{"heading":356.9375,"pitch":103.5,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:19.792"} +{"sensors":[{"euler":{"heading":99.9375,"pitch":141.9375,"roll":60.75},"location":"Left Knee"},{"euler":{"heading":5.0,"pitch":2.25,"roll":-2.125},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":-178.75,"roll":87.9375},"location":"Right Ankle"},{"euler":{"heading":0.5,"pitch":137.1875,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":180.125,"pitch":-38.6875,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":105.3125,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:19.892"} +{"sensors":[{"euler":{"heading":105.875,"pitch":134.9375,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":8.5625,"pitch":0.875,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":106.0,"pitch":95.5625,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":354.8125,"pitch":142.125,"roll":42.0},"location":"Right Hip"},{"euler":{"heading":162.6875,"pitch":49.3125,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":106.375,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:19.992"} +{"sensors":[{"euler":{"heading":113.5625,"pitch":127.875,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":14.75,"pitch":1.0,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":114.6875,"pitch":96.5625,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":73.9375,"pitch":144.375,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":149.875,"pitch":67.0625,"roll":63.75},"location":"Right Knee"},{"euler":{"heading":1.4375,"pitch":106.8125,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:20.93"} +{"sensors":[{"euler":{"heading":33.6875,"pitch":122.375,"roll":44.5},"location":"Left Knee"},{"euler":{"heading":24.3125,"pitch":0.5625,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":99.25,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":67.5,"pitch":145.0,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":146.625,"pitch":60.3125,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":2.6875,"pitch":110.6875,"roll":67.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:20.193"} +{"sensors":[{"euler":{"heading":48.625,"pitch":120.25,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":39.8125,"pitch":-1.8125,"roll":2.25},"location":"Left Ankle"},{"euler":{"heading":97.5,"pitch":98.75,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":70.4375,"pitch":142.125,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":149.3125,"pitch":50.0625,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":356.0625,"pitch":105.0,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:20.294"} +{"sensors":[{"euler":{"heading":50.3125,"pitch":122.0625,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":40.75,"pitch":-6.5,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":94.4375,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":67.8125,"pitch":140.6875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":153.0,"pitch":46.625,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":347.5,"pitch":95.6875,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:20.394"} +{"sensors":[{"euler":{"heading":110.125,"pitch":138.25,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":16.875,"pitch":-5.125,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":90.9375,"roll":71.9375},"location":"Right Ankle"},{"euler":{"heading":71.5625,"pitch":137.6875,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":156.6875,"pitch":30.5625,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":343.6875,"pitch":94.8125,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:20.495"} +{"sensors":[{"euler":{"heading":74.5625,"pitch":168.125,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":348.125,"pitch":-7.875,"roll":7.5},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":85.75,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":73.0625,"pitch":136.1875,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":160.3125,"pitch":-7.875,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":344.125,"pitch":94.5625,"roll":44.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:20.596"} +{"sensors":[{"euler":{"heading":59.3125,"pitch":-168.25,"roll":62.8125},"location":"Left Knee"},{"euler":{"heading":331.75,"pitch":-8.625,"roll":7.6875},"location":"Left Ankle"},{"euler":{"heading":76.375,"pitch":60.75,"roll":82.875},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":135.5,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":-51.25,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":349.3125,"pitch":98.625,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:20.697"} +{"sensors":[{"euler":{"heading":72.125,"pitch":-179.4375,"roll":62.0},"location":"Left Knee"},{"euler":{"heading":340.125,"pitch":-3.8125,"roll":6.3125},"location":"Left Ankle"},{"euler":{"heading":69.0,"pitch":-4.375,"roll":84.3125},"location":"Right Ankle"},{"euler":{"heading":75.5625,"pitch":136.75,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":178.9375,"pitch":-70.375,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":352.8125,"pitch":99.5,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:20.798"} +{"sensors":[{"euler":{"heading":83.6875,"pitch":165.25,"roll":62.75},"location":"Left Knee"},{"euler":{"heading":348.0625,"pitch":-2.25,"roll":3.1875},"location":"Left Ankle"},{"euler":{"heading":60.0625,"pitch":-86.0625,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":81.125,"pitch":136.5,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":195.1875,"pitch":-76.0625,"roll":61.4375},"location":"Right Knee"},{"euler":{"heading":353.0,"pitch":99.375,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:20.899"} +{"sensors":[{"euler":{"heading":92.3125,"pitch":154.125,"roll":62.4375},"location":"Left Knee"},{"euler":{"heading":353.625,"pitch":-0.4375,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":53.75,"pitch":-87.75,"roll":64.3125},"location":"Right Ankle"},{"euler":{"heading":86.375,"pitch":135.6875,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":194.8125,"pitch":-70.1875,"roll":59.8125},"location":"Right Knee"},{"euler":{"heading":356.9375,"pitch":102.3125,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:20.999"} +{"sensors":[{"euler":{"heading":99.125,"pitch":145.0,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":2.875,"pitch":2.5,"roll":-1.625},"location":"Left Ankle"},{"euler":{"heading":69.0625,"pitch":-99.75,"roll":81.5},"location":"Right Ankle"},{"euler":{"heading":2.5,"pitch":135.9375,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":181.0625,"pitch":-44.875,"roll":72.5625},"location":"Right Knee"},{"euler":{"heading":0.6875,"pitch":106.3125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:21.100"} +{"sensors":[{"euler":{"heading":106.75,"pitch":136.375,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":7.0625,"pitch":2.6875,"roll":15.9375},"location":"Left Ankle"},{"euler":{"heading":96.75,"pitch":103.75,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":357.5,"pitch":140.625,"roll":41.3125},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":35.625,"roll":74.375},"location":"Right Knee"},{"euler":{"heading":3.0,"pitch":108.375,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:21.201"} +{"sensors":[{"euler":{"heading":114.5,"pitch":128.375,"roll":53.625},"location":"Left Knee"},{"euler":{"heading":13.5625,"pitch":3.5625,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":114.75,"pitch":98.9375,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":74.75,"pitch":144.375,"roll":45.25},"location":"Right Hip"},{"euler":{"heading":149.25,"pitch":66.8125,"roll":64.0},"location":"Right Knee"},{"euler":{"heading":4.9375,"pitch":110.125,"roll":67.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:21.302"} +{"sensors":[{"euler":{"heading":123.75,"pitch":122.625,"roll":46.4375},"location":"Left Knee"},{"euler":{"heading":23.625,"pitch":2.8125,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":99.625,"roll":56.8125},"location":"Right Ankle"},{"euler":{"heading":69.0625,"pitch":145.125,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":146.8125,"pitch":61.5,"roll":64.1875},"location":"Right Knee"},{"euler":{"heading":6.5,"pitch":112.9375,"roll":69.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:21.402"} +{"sensors":[{"euler":{"heading":46.125,"pitch":120.8125,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":35.6875,"pitch":-2.75,"roll":5.9375},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":96.625,"roll":64.125},"location":"Right Ankle"},{"euler":{"heading":69.0625,"pitch":143.25,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":148.125,"pitch":53.4375,"roll":70.6875},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":109.875,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:21.503"} +{"sensors":[{"euler":{"heading":58.0625,"pitch":119.9375,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":42.75,"pitch":-4.6875,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":95.125,"pitch":94.125,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":65.75,"pitch":141.625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":149.9375,"pitch":51.25,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":348.3125,"pitch":96.9375,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:21.603"} +{"sensors":[{"euler":{"heading":32.5625,"pitch":134.0,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":22.125,"pitch":-2.625,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":90.5,"roll":71.0625},"location":"Right Ankle"},{"euler":{"heading":70.0,"pitch":137.5,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":154.0,"pitch":37.5,"roll":80.4375},"location":"Right Knee"},{"euler":{"heading":342.375,"pitch":95.8125,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:21.703"} +{"sensors":[{"euler":{"heading":79.6875,"pitch":160.5,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":353.625,"pitch":-8.4375,"roll":5.5},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":86.0,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":72.25,"pitch":136.0,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":158.9375,"pitch":4.4375,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":342.375,"pitch":94.75,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:21.804"} +{"sensors":[{"euler":{"heading":62.1875,"pitch":-171.0,"roll":62.875},"location":"Left Knee"},{"euler":{"heading":333.3125,"pitch":-7.4375,"roll":7.5},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":69.375,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":73.4375,"pitch":135.25,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":166.4375,"pitch":-46.0625,"roll":81.4375},"location":"Right Knee"},{"euler":{"heading":347.625,"pitch":98.3125,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:21.905"} +{"sensors":[{"euler":{"heading":70.3125,"pitch":-176.8125,"roll":61.75},"location":"Left Knee"},{"euler":{"heading":336.75,"pitch":-3.5,"roll":6.25},"location":"Left Ankle"},{"euler":{"heading":72.1875,"pitch":-2.0,"roll":85.6875},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":136.4375,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":178.5625,"pitch":-69.9375,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":352.4375,"pitch":99.375,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:22.6"} +{"sensors":[{"euler":{"heading":85.0625,"pitch":168.3125,"roll":62.4375},"location":"Left Knee"},{"euler":{"heading":346.8125,"pitch":0.8125,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":64.75,"pitch":-83.375,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":81.5,"pitch":135.8125,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":195.125,"pitch":-75.6875,"roll":62.75},"location":"Right Knee"},{"euler":{"heading":354.625,"pitch":100.3125,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:22.107"} +{"sensors":[{"euler":{"heading":95.75,"pitch":156.9375,"roll":63.0},"location":"Left Knee"},{"euler":{"heading":352.75,"pitch":4.125,"roll":-0.625},"location":"Left Ankle"},{"euler":{"heading":58.5625,"pitch":-91.8125,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":88.3125,"pitch":134.375,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":201.125,"pitch":-72.875,"roll":58.75},"location":"Right Knee"},{"euler":{"heading":359.1875,"pitch":104.0,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:22.207"} +{"sensors":[{"euler":{"heading":102.5625,"pitch":147.4375,"roll":62.3125},"location":"Left Knee"},{"euler":{"heading":3.4375,"pitch":8.1875,"roll":-3.8125},"location":"Left Ankle"},{"euler":{"heading":71.6875,"pitch":-93.1875,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":5.6875,"pitch":135.625,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":188.5,"pitch":-57.125,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":2.6875,"pitch":106.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:22.310"} +{"sensors":[{"euler":{"heading":108.375,"pitch":138.375,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":6.1875,"pitch":7.0,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":94.375,"pitch":101.125,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":1.0,"pitch":140.6875,"roll":40.375},"location":"Right Hip"},{"euler":{"heading":167.3125,"pitch":33.125,"roll":77.25},"location":"Right Knee"},{"euler":{"heading":4.125,"pitch":107.5,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:22.410"} +{"sensors":[{"euler":{"heading":115.3125,"pitch":130.4375,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":10.75,"pitch":6.25,"roll":0.125},"location":"Left Ankle"},{"euler":{"heading":113.9375,"pitch":97.5625,"roll":56.6875},"location":"Right Ankle"},{"euler":{"heading":349.5,"pitch":143.0625,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":150.6875,"pitch":66.3125,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":5.3125,"pitch":108.9375,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:22.511"} +{"sensors":[{"euler":{"heading":122.625,"pitch":124.0625,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":19.1875,"pitch":5.8125,"roll":1.375},"location":"Left Ankle"},{"euler":{"heading":112.8125,"pitch":101.0,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":69.25,"pitch":145.875,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":147.5,"pitch":64.625,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":6.3125,"pitch":112.0,"roll":68.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:22.612"} +{"sensors":[{"euler":{"heading":43.6875,"pitch":119.75,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":30.4375,"pitch":-0.6875,"roll":3.8125},"location":"Left Ankle"},{"euler":{"heading":101.4375,"pitch":96.5,"roll":63.75},"location":"Right Ankle"},{"euler":{"heading":67.625,"pitch":145.375,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":147.1875,"pitch":54.3125,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":358.9375,"pitch":107.9375,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:22.713"} +{"sensors":[{"euler":{"heading":57.1875,"pitch":119.875,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":42.25,"pitch":-2.3125,"roll":6.1875},"location":"Left Ankle"},{"euler":{"heading":98.0,"pitch":95.6875,"roll":68.0},"location":"Right Ankle"},{"euler":{"heading":66.875,"pitch":143.8125,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":151.0625,"pitch":54.75,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":347.3125,"pitch":95.3125,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:22.814"} +{"sensors":[{"euler":{"heading":38.9375,"pitch":131.0625,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":25.0625,"pitch":-2.125,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":89.9375,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":70.625,"pitch":139.4375,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":38.6875,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":342.8125,"pitch":96.0,"roll":45.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:22.915"} +{"sensors":[{"euler":{"heading":87.375,"pitch":154.4375,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":358.0625,"pitch":-6.6875,"roll":4.0625},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":84.3125,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":72.4375,"pitch":137.4375,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":157.375,"pitch":9.4375,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":342.0625,"pitch":95.0625,"roll":43.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:23.16"} +{"sensors":[{"euler":{"heading":63.6875,"pitch":-174.625,"roll":63.375},"location":"Left Knee"},{"euler":{"heading":335.0,"pitch":-6.625,"roll":7.0},"location":"Left Ankle"},{"euler":{"heading":77.8125,"pitch":71.0,"roll":80.75},"location":"Right Ankle"},{"euler":{"heading":72.1875,"pitch":136.6875,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":163.625,"pitch":-36.5,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":346.5,"pitch":98.3125,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:23.117"} +{"sensors":[{"euler":{"heading":69.3125,"pitch":-175.75,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":335.625,"pitch":-4.0,"roll":6.0625},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-3.0,"roll":85.5},"location":"Right Ankle"},{"euler":{"heading":75.0625,"pitch":137.0625,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":-68.0,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":352.5,"pitch":100.625,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:23.217"} +{"sensors":[{"euler":{"heading":81.5,"pitch":169.125,"roll":62.4375},"location":"Left Knee"},{"euler":{"heading":345.375,"pitch":-0.25,"roll":2.125},"location":"Left Ankle"},{"euler":{"heading":60.9375,"pitch":-83.625,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":81.875,"pitch":135.75,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":194.5625,"pitch":-77.1875,"roll":63.1875},"location":"Right Knee"},{"euler":{"heading":350.8125,"pitch":99.6875,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:23.318"} +{"sensors":[{"euler":{"heading":92.5,"pitch":157.875,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":352.5625,"pitch":2.5,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":53.625,"pitch":-91.8125,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":89.4375,"pitch":133.75,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":197.5625,"pitch":-74.0625,"roll":58.4375},"location":"Right Knee"},{"euler":{"heading":355.625,"pitch":101.8125,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:23.419"} +{"sensors":[{"euler":{"heading":100.5,"pitch":148.25,"roll":62.125},"location":"Left Knee"},{"euler":{"heading":2.5625,"pitch":6.1875,"roll":-3.6875},"location":"Left Ankle"},{"euler":{"heading":65.1875,"pitch":-90.3125,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":5.75,"pitch":135.25,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":187.25,"pitch":-57.625,"roll":68.6875},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":106.25,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:23.520"} +{"sensors":[{"euler":{"heading":106.5,"pitch":139.625,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":2.625,"pitch":4.0625,"roll":-0.75},"location":"Left Ankle"},{"euler":{"heading":91.6875,"pitch":100.1875,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":1.5625,"pitch":141.5,"roll":38.625},"location":"Right Hip"},{"euler":{"heading":171.5,"pitch":15.5,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":2.625,"pitch":109.3125,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:23.621"} +{"sensors":[{"euler":{"heading":113.875,"pitch":131.375,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":8.0625,"pitch":4.25,"roll":0.5625},"location":"Left Ankle"},{"euler":{"heading":115.0625,"pitch":96.25,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":350.6875,"pitch":143.25,"roll":43.125},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":65.875,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":4.9375,"pitch":110.3125,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:23.722"} +{"sensors":[{"euler":{"heading":120.9375,"pitch":125.25,"roll":50.3125},"location":"Left Knee"},{"euler":{"heading":15.875,"pitch":4.4375,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":116.8125,"pitch":99.5,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":68.25,"pitch":146.5,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":147.6875,"pitch":65.8125,"roll":61.75},"location":"Right Knee"},{"euler":{"heading":6.25,"pitch":114.1875,"roll":68.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:23.823"} +{"sensors":[{"euler":{"heading":42.6875,"pitch":119.5625,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":27.75,"pitch":-0.375,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":100.8125,"pitch":94.8125,"roll":63.875},"location":"Right Ankle"},{"euler":{"heading":69.6875,"pitch":144.625,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":148.125,"pitch":55.5,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":5.125,"pitch":111.375,"roll":67.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:23.924"} +{"sensors":[{"euler":{"heading":55.1875,"pitch":120.5,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":44.4375,"pitch":-2.0,"roll":5.1875},"location":"Left Ankle"},{"euler":{"heading":99.8125,"pitch":95.8125,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":68.1875,"pitch":143.375,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":152.3125,"pitch":58.875,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":347.75,"pitch":99.6875,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:24.25"} +{"sensors":[{"euler":{"heading":45.5625,"pitch":127.75,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":30.875,"pitch":-5.1875,"roll":2.8125},"location":"Left Ankle"},{"euler":{"heading":96.125,"pitch":90.8125,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":71.9375,"pitch":138.8125,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":156.75,"pitch":44.8125,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":343.125,"pitch":96.9375,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:24.127"} +{"sensors":[{"euler":{"heading":98.5625,"pitch":147.625,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":4.5,"pitch":-7.0,"roll":3.3125},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":87.1875,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":74.0,"pitch":137.0,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":15.375,"roll":82.9375},"location":"Right Knee"},{"euler":{"heading":342.4375,"pitch":95.6875,"roll":43.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:24.227"} +{"sensors":[{"euler":{"heading":68.625,"pitch":-177.5,"roll":62.8125},"location":"Left Knee"},{"euler":{"heading":338.1875,"pitch":-6.0625,"roll":7.125},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":80.3125,"roll":78.9375},"location":"Right Ankle"},{"euler":{"heading":73.5,"pitch":136.875,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":167.0625,"pitch":-37.8125,"roll":82.625},"location":"Right Knee"},{"euler":{"heading":345.4375,"pitch":98.0625,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:24.328"} +{"sensors":[{"euler":{"heading":63.75,"pitch":-172.9375,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":333.3125,"pitch":-4.6875,"roll":5.8125},"location":"Left Ankle"},{"euler":{"heading":76.9375,"pitch":2.375,"roll":85.5},"location":"Right Ankle"},{"euler":{"heading":74.625,"pitch":138.0625,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":-66.125,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":350.4375,"pitch":101.0625,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:24.428"} +{"sensors":[{"euler":{"heading":79.0625,"pitch":171.25,"roll":62.1875},"location":"Left Knee"},{"euler":{"heading":344.5,"pitch":-3.3125,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-82.75,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":79.25,"pitch":136.625,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":194.0625,"pitch":-76.0625,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":350.4375,"pitch":98.8125,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:24.529"} +{"sensors":[{"euler":{"heading":89.8125,"pitch":158.1875,"roll":62.9375},"location":"Left Knee"},{"euler":{"heading":350.4375,"pitch":-0.3125,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":55.9375,"pitch":-91.375,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":87.75,"pitch":134.0625,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":199.9375,"pitch":-74.6875,"roll":58.0},"location":"Right Knee"},{"euler":{"heading":120.4375,"pitch":101.6875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:24.629"} +{"sensors":[{"euler":{"heading":97.9375,"pitch":148.0625,"roll":61.75},"location":"Left Knee"},{"euler":{"heading":3.125,"pitch":3.6875,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":64.3125,"pitch":-87.5,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":5.25,"pitch":134.75,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":190.3125,"pitch":-60.375,"roll":68.375},"location":"Right Knee"},{"euler":{"heading":122.375,"pitch":106.5,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:24.729"} +{"sensors":[{"euler":{"heading":104.75,"pitch":140.1875,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":3.125,"pitch":2.8125,"roll":-0.9375},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":173.5,"roll":83.1875},"location":"Right Ankle"},{"euler":{"heading":3.0,"pitch":138.6875,"roll":39.8125},"location":"Right Hip"},{"euler":{"heading":172.125,"pitch":9.75,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":125.375,"pitch":110.0625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:24.830"} +{"sensors":[{"euler":{"heading":111.875,"pitch":132.6875,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":7.375,"pitch":3.625,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":110.0,"pitch":96.875,"roll":59.5},"location":"Right Ankle"},{"euler":{"heading":352.25,"pitch":143.0625,"roll":41.4375},"location":"Right Hip"},{"euler":{"heading":154.625,"pitch":62.375,"roll":66.25},"location":"Right Knee"},{"euler":{"heading":128.0,"pitch":111.0,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:24.931"} +{"sensors":[{"euler":{"heading":118.75,"pitch":126.25,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":14.3125,"pitch":3.25,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":113.3125,"pitch":100.25,"roll":56.0},"location":"Right Ankle"},{"euler":{"heading":71.1875,"pitch":146.3125,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":147.0,"pitch":65.75,"roll":60.75},"location":"Right Knee"},{"euler":{"heading":129.5,"pitch":113.5625,"roll":68.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:25.31"} +{"sensors":[{"euler":{"heading":40.875,"pitch":120.0,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":24.5625,"pitch":-0.75,"roll":1.875},"location":"Left Ankle"},{"euler":{"heading":105.6875,"pitch":98.75,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":68.0625,"pitch":146.4375,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":148.625,"pitch":58.375,"roll":66.875},"location":"Right Knee"},{"euler":{"heading":128.3125,"pitch":111.4375,"roll":66.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:25.132"} +{"sensors":[{"euler":{"heading":54.75,"pitch":121.25,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":45.25,"pitch":-0.75,"roll":5.375},"location":"Left Ankle"},{"euler":{"heading":99.1875,"pitch":96.5625,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":66.25,"pitch":145.4375,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":152.6875,"pitch":54.5,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":110.875,"pitch":99.8125,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:25.233"} +{"sensors":[{"euler":{"heading":50.25,"pitch":126.625,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":36.875,"pitch":-3.625,"roll":3.0},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":93.25,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":70.1875,"pitch":141.3125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":158.75,"pitch":49.125,"roll":80.125},"location":"Right Knee"},{"euler":{"heading":107.5,"pitch":96.625,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:25.334"} +{"sensors":[{"euler":{"heading":107.5,"pitch":143.625,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":11.25,"pitch":-4.5,"roll":2.75},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":88.9375,"roll":72.5625},"location":"Right Ankle"},{"euler":{"heading":73.75,"pitch":138.8125,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":163.75,"pitch":2.75,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":107.5625,"pitch":97.125,"roll":43.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:25.435"} +{"sensors":[{"euler":{"heading":73.0625,"pitch":174.125,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":343.3125,"pitch":-5.6875,"roll":7.375},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":85.0625,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":73.6875,"pitch":139.125,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":169.1875,"pitch":-2.6875,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":109.3125,"pitch":97.75,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:25.535"} +{"sensors":[{"euler":{"heading":64.3125,"pitch":-171.375,"roll":61.875},"location":"Left Knee"},{"euler":{"heading":333.5,"pitch":-4.6875,"roll":5.625},"location":"Left Ankle"},{"euler":{"heading":79.5625,"pitch":3.6875,"roll":85.75},"location":"Right Ankle"},{"euler":{"heading":72.9375,"pitch":139.9375,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":-59.5625,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":115.0625,"pitch":100.625,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:25.636"} +{"sensors":[{"euler":{"heading":81.0,"pitch":170.25,"roll":62.0625},"location":"Left Knee"},{"euler":{"heading":345.4375,"pitch":-1.875,"roll":3.625},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-83.375,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":137.9375,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":189.75,"pitch":-72.875,"roll":68.25},"location":"Right Knee"},{"euler":{"heading":116.125,"pitch":99.0,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:25.737"} +{"sensors":[{"euler":{"heading":90.9375,"pitch":156.6875,"roll":62.4375},"location":"Left Knee"},{"euler":{"heading":351.375,"pitch":0.5,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-94.0625,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":85.4375,"pitch":135.9375,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":199.25,"pitch":-72.875,"roll":59.4375},"location":"Right Knee"},{"euler":{"heading":119.8125,"pitch":100.75,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:25.838"} +{"sensors":[{"euler":{"heading":95.9375,"pitch":147.5625,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":2.8125,"pitch":1.375,"roll":-0.1875},"location":"Left Ankle"},{"euler":{"heading":63.5625,"pitch":-95.25,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":91.75,"pitch":135.9375,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":190.4375,"pitch":-60.125,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":121.1875,"pitch":105.1875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:25.939"} +{"sensors":[{"euler":{"heading":101.5,"pitch":140.8125,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":4.4375,"pitch":1.8125,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":175.4375,"roll":84.3125},"location":"Right Ankle"},{"euler":{"heading":359.4375,"pitch":139.4375,"roll":42.3125},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":6.625,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":123.375,"pitch":108.0,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:26.39"} +{"sensors":[{"euler":{"heading":109.875,"pitch":133.0,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":7.5,"pitch":1.375,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":110.0625,"pitch":96.8125,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":348.0,"pitch":144.25,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":154.25,"pitch":64.1875,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":126.125,"pitch":109.625,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:26.140"} +{"sensors":[{"euler":{"heading":118.5,"pitch":125.9375,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":14.8125,"pitch":1.625,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":117.5625,"pitch":98.5625,"roll":55.5625},"location":"Right Ankle"},{"euler":{"heading":69.625,"pitch":146.0625,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":147.5,"pitch":70.5,"roll":59.875},"location":"Right Knee"},{"euler":{"heading":129.375,"pitch":113.25,"roll":68.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:26.240"} +{"sensors":[{"euler":{"heading":39.375,"pitch":120.5625,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":29.5,"pitch":0.75,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":98.3125,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":67.375,"pitch":146.1875,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":148.625,"pitch":61.0,"roll":66.1875},"location":"Right Knee"},{"euler":{"heading":129.125,"pitch":111.625,"roll":68.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:26.340"} +{"sensors":[{"euler":{"heading":52.9375,"pitch":119.75,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":43.625,"pitch":-1.5,"roll":2.75},"location":"Left Ankle"},{"euler":{"heading":96.9375,"pitch":99.5,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":66.25,"pitch":145.0625,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":151.9375,"pitch":58.875,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":115.8125,"pitch":100.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:26.440"} +{"sensors":[{"euler":{"heading":43.1875,"pitch":126.5,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":33.4375,"pitch":-5.625,"roll":1.625},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":94.625,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":66.875,"pitch":141.6875,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":156.0,"pitch":50.875,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":109.1875,"pitch":94.1875,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:26.541"} +{"sensors":[{"euler":{"heading":93.5,"pitch":148.5625,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":5.9375,"pitch":-8.75,"roll":2.375},"location":"Left Ankle"},{"euler":{"heading":85.8125,"pitch":96.125,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":70.1875,"pitch":137.9375,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":157.3125,"pitch":30.6875,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":107.25,"pitch":93.8125,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:26.642"} +{"sensors":[{"euler":{"heading":64.875,"pitch":-176.25,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":337.875,"pitch":-6.5625,"roll":7.25},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":86.375,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":71.0,"pitch":137.25,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":163.125,"pitch":-14.375,"roll":82.9375},"location":"Right Knee"},{"euler":{"heading":109.75,"pitch":97.3125,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:26.742"} +{"sensors":[{"euler":{"heading":70.4375,"pitch":-177.5,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":337.4375,"pitch":-1.5,"roll":6.0},"location":"Left Ankle"},{"euler":{"heading":69.5625,"pitch":-3.375,"roll":85.375},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":136.0,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":173.75,"pitch":-60.75,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":114.25,"pitch":99.25,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:26.843"} +{"sensors":[{"euler":{"heading":85.0625,"pitch":168.625,"roll":61.375},"location":"Left Knee"},{"euler":{"heading":346.75,"pitch":1.625,"roll":1.875},"location":"Left Ankle"},{"euler":{"heading":60.875,"pitch":-88.5625,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":79.8125,"pitch":135.5,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":193.1875,"pitch":-75.6875,"roll":66.4375},"location":"Right Knee"},{"euler":{"heading":116.5625,"pitch":99.6875,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:26.943"} +{"sensors":[{"euler":{"heading":92.0625,"pitch":156.8125,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":353.1875,"pitch":1.1875,"roll":2.125},"location":"Left Ankle"},{"euler":{"heading":52.6875,"pitch":-93.6875,"roll":59.5625},"location":"Right Ankle"},{"euler":{"heading":91.875,"pitch":132.8125,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":197.4375,"pitch":-72.0625,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":119.1875,"pitch":102.875,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:27.44"} +{"sensors":[{"euler":{"heading":98.125,"pitch":148.125,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":358.5625,"pitch":2.0625,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":61.4375,"pitch":-95.875,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":3.0625,"pitch":135.9375,"roll":43.125},"location":"Right Hip"},{"euler":{"heading":184.75,"pitch":-52.125,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":121.9375,"pitch":105.625,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:27.145"} +{"sensors":[{"euler":{"heading":105.4375,"pitch":140.0625,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":2.5625,"pitch":3.4375,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":119.625,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":357.125,"pitch":141.8125,"roll":39.875},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":30.75,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":124.4375,"pitch":107.625,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:27.246"} +{"sensors":[{"euler":{"heading":112.8125,"pitch":132.5625,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":7.8125,"pitch":4.125,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":111.0625,"pitch":101.5,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":346.8125,"pitch":144.9375,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":151.6875,"pitch":67.9375,"roll":64.5},"location":"Right Knee"},{"euler":{"heading":126.5625,"pitch":109.75,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:27.347"} +{"sensors":[{"euler":{"heading":119.625,"pitch":125.875,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":16.625,"pitch":3.75,"roll":2.0625},"location":"Left Ankle"},{"euler":{"heading":108.0,"pitch":104.75,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":67.1875,"pitch":146.9375,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":144.0625,"pitch":62.0625,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":127.9375,"pitch":112.9375,"roll":68.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:27.448"} +{"sensors":[{"euler":{"heading":41.75,"pitch":122.1875,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":32.9375,"pitch":-2.5625,"roll":6.0625},"location":"Left Ankle"},{"euler":{"heading":98.0,"pitch":98.375,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":66.0,"pitch":145.4375,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":146.625,"pitch":61.0,"roll":68.375},"location":"Right Knee"},{"euler":{"heading":122.875,"pitch":108.0,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:27.548"} +{"sensors":[{"euler":{"heading":55.3125,"pitch":121.375,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":41.0625,"pitch":-2.8125,"roll":6.6875},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":98.8125,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":64.375,"pitch":144.0625,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":150.0,"pitch":58.125,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":111.9375,"pitch":95.3125,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:27.651"} +{"sensors":[{"euler":{"heading":32.75,"pitch":134.125,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":24.1875,"pitch":-4.6875,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":95.6875,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":69.375,"pitch":139.6875,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":154.8125,"pitch":45.9375,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":105.75,"pitch":96.0625,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:27.752"} +{"sensors":[{"euler":{"heading":83.25,"pitch":158.9375,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":353.0,"pitch":-6.3125,"roll":6.0625},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":91.125,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":71.875,"pitch":137.375,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":16.4375,"roll":82.9375},"location":"Right Knee"},{"euler":{"heading":106.125,"pitch":95.875,"roll":44.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:27.854"} +{"sensors":[{"euler":{"heading":64.0625,"pitch":-173.4375,"roll":61.9375},"location":"Left Knee"},{"euler":{"heading":333.5625,"pitch":-6.625,"roll":7.375},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":67.1875,"roll":83.0},"location":"Right Ankle"},{"euler":{"heading":74.5,"pitch":136.1875,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":167.25,"pitch":-39.8125,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":112.5625,"pitch":99.875,"roll":46.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:27.955"} +{"sensors":[{"euler":{"heading":73.1875,"pitch":-179.8125,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":339.6875,"pitch":-1.4375,"roll":6.0625},"location":"Left Ankle"},{"euler":{"heading":71.5625,"pitch":-3.125,"roll":85.1875},"location":"Right Ankle"},{"euler":{"heading":75.75,"pitch":137.25,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":179.4375,"pitch":-68.8125,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":116.5625,"pitch":100.375,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:28.56"} +{"sensors":[{"euler":{"heading":87.125,"pitch":166.6875,"roll":61.875},"location":"Left Knee"},{"euler":{"heading":348.6875,"pitch":2.6875,"roll":1.375},"location":"Left Ankle"},{"euler":{"heading":61.75,"pitch":-85.4375,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":82.5625,"pitch":136.5625,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":195.5,"pitch":-75.0,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":118.0,"pitch":101.0,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:28.157"} +{"sensors":[{"euler":{"heading":97.9375,"pitch":155.125,"roll":62.0625},"location":"Left Knee"},{"euler":{"heading":355.9375,"pitch":5.875,"roll":-1.0625},"location":"Left Ankle"},{"euler":{"heading":55.3125,"pitch":-95.5625,"roll":61.3125},"location":"Right Ankle"},{"euler":{"heading":89.9375,"pitch":134.5625,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":199.875,"pitch":-74.1875,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":122.0625,"pitch":105.1875,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:28.259"} +{"sensors":[{"euler":{"heading":104.25,"pitch":146.375,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":4.25,"pitch":9.6875,"roll":-3.8125},"location":"Left Ankle"},{"euler":{"heading":66.875,"pitch":-95.8125,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":4.0625,"pitch":136.1875,"roll":43.5625},"location":"Right Hip"},{"euler":{"heading":187.5625,"pitch":-54.125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":124.9375,"pitch":106.9375,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:28.359"} +{"sensors":[{"euler":{"heading":111.1875,"pitch":137.8125,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":6.75,"pitch":8.1875,"roll":-0.6875},"location":"Left Ankle"},{"euler":{"heading":93.9375,"pitch":106.75,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":358.375,"pitch":141.625,"roll":40.6875},"location":"Right Hip"},{"euler":{"heading":168.5625,"pitch":46.4375,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":127.9375,"pitch":108.6875,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:28.460"} +{"sensors":[{"euler":{"heading":118.8125,"pitch":129.625,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":12.375,"pitch":8.25,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":117.75,"pitch":97.1875,"roll":55.1875},"location":"Right Ankle"},{"euler":{"heading":76.9375,"pitch":144.4375,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":153.1875,"pitch":71.75,"roll":62.375},"location":"Right Knee"},{"euler":{"heading":130.0,"pitch":110.25,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:28.561"} +{"sensors":[{"euler":{"heading":128.0,"pitch":123.0625,"roll":46.875},"location":"Left Knee"},{"euler":{"heading":22.0,"pitch":8.0625,"roll":1.625},"location":"Left Ankle"},{"euler":{"heading":111.875,"pitch":102.5625,"roll":58.6875},"location":"Right Ankle"},{"euler":{"heading":68.0,"pitch":146.3125,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":149.3125,"pitch":63.4375,"roll":63.0},"location":"Right Knee"},{"euler":{"heading":130.4375,"pitch":112.1875,"roll":67.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:28.661"} +{"sensors":[{"euler":{"heading":48.6875,"pitch":121.0,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":36.8125,"pitch":-0.1875,"roll":5.375},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":95.3125,"roll":69.0625},"location":"Right Ankle"},{"euler":{"heading":70.1875,"pitch":144.1875,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":151.0,"pitch":57.625,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":119.3125,"pitch":104.5625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:28.763"} +{"sensors":[{"euler":{"heading":58.5,"pitch":120.6875,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":43.4375,"pitch":-6.75,"roll":6.6875},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":97.375,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":67.9375,"pitch":142.1875,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":153.125,"pitch":51.6875,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":110.375,"pitch":93.9375,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:28.863"} +{"sensors":[{"euler":{"heading":32.8125,"pitch":135.1875,"roll":42.625},"location":"Left Knee"},{"euler":{"heading":20.125,"pitch":-4.3125,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":88.875,"pitch":97.8125,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":71.75,"pitch":139.125,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":158.5,"pitch":40.5625,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":106.75,"pitch":94.1875,"roll":44.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:28.965"} +{"sensors":[{"euler":{"heading":64.0,"pitch":164.4375,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":351.25,"pitch":-9.3125,"roll":6.375},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":92.125,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":71.75,"pitch":138.4375,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":161.375,"pitch":9.25,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":108.0625,"pitch":95.0,"roll":44.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:29.66"} +{"sensors":[{"euler":{"heading":61.0,"pitch":-170.25,"roll":62.75},"location":"Left Knee"},{"euler":{"heading":333.1875,"pitch":-8.9375,"roll":6.625},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":4.125,"roll":85.0625},"location":"Right Ankle"},{"euler":{"heading":71.375,"pitch":138.25,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":168.0,"pitch":-39.625,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":112.125,"pitch":97.75,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:29.166"} +{"sensors":[{"euler":{"heading":75.25,"pitch":178.0625,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":341.75,"pitch":-2.875,"roll":4.625},"location":"Left Ankle"},{"euler":{"heading":68.5625,"pitch":-72.625,"roll":82.4375},"location":"Right Ankle"},{"euler":{"heading":74.25,"pitch":138.1875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":180.3125,"pitch":-70.9375,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":115.875,"pitch":99.375,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:29.266"} +{"sensors":[{"euler":{"heading":85.625,"pitch":163.4375,"roll":62.5},"location":"Left Knee"},{"euler":{"heading":348.625,"pitch":-1.75,"roll":1.6875},"location":"Left Ankle"},{"euler":{"heading":56.8125,"pitch":-88.9375,"roll":65.8125},"location":"Right Ankle"},{"euler":{"heading":85.125,"pitch":136.9375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":194.25,"pitch":-72.5625,"roll":48.3125},"location":"Right Knee"},{"euler":{"heading":117.3125,"pitch":100.1875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:29.367"} +{"sensors":[{"euler":{"heading":91.5,"pitch":153.0,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":358.1875,"pitch":-0.9375,"roll":0.5625},"location":"Left Ankle"},{"euler":{"heading":56.6875,"pitch":-94.5,"roll":66.125},"location":"Right Ankle"},{"euler":{"heading":90.3125,"pitch":135.625,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":193.9375,"pitch":-64.9375,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":119.9375,"pitch":103.625,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:29.468"} +{"sensors":[{"euler":{"heading":96.3125,"pitch":145.0,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":2.1875,"pitch":-0.0625,"roll":-1.75},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-176.3125,"roll":85.1875},"location":"Right Ankle"},{"euler":{"heading":2.125,"pitch":138.25,"roll":41.75},"location":"Right Hip"},{"euler":{"heading":178.1875,"pitch":-24.25,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":122.375,"pitch":105.4375,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:29.568"} +{"sensors":[{"euler":{"heading":102.5625,"pitch":137.4375,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":5.4375,"pitch":-2.0625,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":103.1875,"pitch":99.75,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":355.375,"pitch":142.1875,"roll":41.9375},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":64.5625,"roll":69.25},"location":"Right Knee"},{"euler":{"heading":125.875,"pitch":108.0,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:29.669"} +{"sensors":[{"euler":{"heading":110.125,"pitch":130.625,"roll":52.5625},"location":"Left Knee"},{"euler":{"heading":11.375,"pitch":-1.875,"roll":0.3125},"location":"Left Ankle"},{"euler":{"heading":118.125,"pitch":96.1875,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":74.25,"pitch":143.375,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":148.125,"pitch":75.625,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":129.0625,"pitch":110.8125,"roll":68.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:29.770"} +{"sensors":[{"euler":{"heading":119.6875,"pitch":125.125,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":22.625,"pitch":-1.25,"roll":-0.125},"location":"Left Ankle"},{"euler":{"heading":108.5,"pitch":100.0625,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":69.25,"pitch":145.0,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":146.625,"pitch":67.6875,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":130.1875,"pitch":112.4375,"roll":69.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:29.871"} +{"sensors":[{"euler":{"heading":46.0,"pitch":121.75,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":38.5,"pitch":-0.6875,"roll":3.375},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":99.75,"roll":70.8125},"location":"Right Ankle"},{"euler":{"heading":69.3125,"pitch":143.125,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":148.625,"pitch":63.1875,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":118.5625,"pitch":102.75,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:29.972"} +{"sensors":[{"euler":{"heading":52.0625,"pitch":123.6875,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":37.0625,"pitch":-4.375,"roll":4.3125},"location":"Left Ankle"},{"euler":{"heading":93.1875,"pitch":89.125,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":67.4375,"pitch":141.375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":150.875,"pitch":61.4375,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":110.1875,"pitch":92.4375,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:30.72"} +{"sensors":[{"euler":{"heading":25.0,"pitch":138.25,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":13.75,"pitch":-6.6875,"roll":2.0},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":87.1875,"roll":73.125},"location":"Right Ankle"},{"euler":{"heading":72.4375,"pitch":138.25,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":155.5625,"pitch":54.8125,"roll":80.3125},"location":"Right Knee"},{"euler":{"heading":107.5625,"pitch":93.75,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:30.173"} +{"sensors":[{"euler":{"heading":78.75,"pitch":164.5625,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":346.3125,"pitch":-6.5625,"roll":7.5},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":81.6875,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":74.25,"pitch":137.375,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":2.4375,"roll":84.5625},"location":"Right Knee"},{"euler":{"heading":109.375,"pitch":94.9375,"roll":45.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:30.274"} +{"sensors":[{"euler":{"heading":63.875,"pitch":-171.75,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":333.0,"pitch":-5.625,"roll":6.5},"location":"Left Ankle"},{"euler":{"heading":77.6875,"pitch":4.625,"roll":83.875},"location":"Right Ankle"},{"euler":{"heading":74.625,"pitch":136.625,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":168.75,"pitch":-5.0625,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":115.0,"pitch":98.1875,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:30.374"} +{"sensors":[{"euler":{"heading":75.9375,"pitch":178.5625,"roll":61.4375},"location":"Left Knee"},{"euler":{"heading":341.5625,"pitch":-0.375,"roll":4.5625},"location":"Left Ankle"},{"euler":{"heading":69.5625,"pitch":-63.75,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":137.8125,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":180.875,"pitch":-76.6875,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":118.625,"pitch":99.625,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:30.476"} +{"sensors":[{"euler":{"heading":88.375,"pitch":163.625,"roll":62.875},"location":"Left Knee"},{"euler":{"heading":349.875,"pitch":2.75,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":56.9375,"pitch":-83.6875,"roll":65.8125},"location":"Right Ankle"},{"euler":{"heading":85.0,"pitch":137.8125,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":195.3125,"pitch":-79.0625,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":120.6875,"pitch":99.8125,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:30.576"} +{"sensors":[{"euler":{"heading":97.9375,"pitch":152.5625,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":355.8125,"pitch":4.6875,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":58.1875,"pitch":-89.3125,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":90.0625,"pitch":135.125,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":198.125,"pitch":-72.25,"roll":64.0},"location":"Right Knee"},{"euler":{"heading":124.3125,"pitch":103.1875,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:30.677"} +{"sensors":[{"euler":{"heading":104.75,"pitch":144.5625,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":5.4375,"pitch":9.375,"roll":-3.125},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":-106.4375,"roll":82.625},"location":"Right Ankle"},{"euler":{"heading":3.875,"pitch":136.9375,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":-32.125,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":129.125,"pitch":106.625,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:30.779"} +{"sensors":[{"euler":{"heading":111.0,"pitch":136.125,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":8.25,"pitch":8.0,"roll":-0.4375},"location":"Left Ankle"},{"euler":{"heading":100.0625,"pitch":99.75,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":357.5,"pitch":142.6875,"roll":40.375},"location":"Right Hip"},{"euler":{"heading":166.8125,"pitch":59.0,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":130.25,"pitch":109.0625,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:30.880"} +{"sensors":[{"euler":{"heading":118.5,"pitch":128.4375,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":14.375,"pitch":8.3125,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":116.375,"pitch":101.0625,"roll":55.875},"location":"Right Ankle"},{"euler":{"heading":72.5625,"pitch":145.6875,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":150.0,"pitch":72.0,"roll":60.0625},"location":"Right Knee"},{"euler":{"heading":131.5,"pitch":110.625,"roll":68.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:30.980"} +{"sensors":[{"euler":{"heading":39.3125,"pitch":121.5,"roll":44.4375},"location":"Left Knee"},{"euler":{"heading":25.6875,"pitch":5.625,"roll":2.75},"location":"Left Ankle"},{"euler":{"heading":108.5,"pitch":103.0,"roll":61.4375},"location":"Right Ankle"},{"euler":{"heading":69.5625,"pitch":146.5625,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":147.8125,"pitch":64.75,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":130.8125,"pitch":108.9375,"roll":68.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:31.81"} +{"sensors":[{"euler":{"heading":51.875,"pitch":121.375,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":41.8125,"pitch":2.4375,"roll":4.5},"location":"Left Ankle"},{"euler":{"heading":96.5,"pitch":97.1875,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":68.6875,"pitch":145.25,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":151.0,"pitch":61.75,"roll":69.75},"location":"Right Knee"},{"euler":{"heading":115.875,"pitch":100.25,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:31.182"} +{"sensors":[{"euler":{"heading":48.4375,"pitch":124.75,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":38.875,"pitch":-2.75,"roll":1.4375},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":98.1875,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":68.5,"pitch":141.25,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":151.6875,"pitch":57.3125,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":108.875,"pitch":93.9375,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:31.283"} +{"sensors":[{"euler":{"heading":103.75,"pitch":145.5625,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":13.5,"pitch":-6.9375,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":87.9375,"pitch":99.0,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":72.5,"pitch":137.9375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":155.5,"pitch":46.75,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":105.9375,"pitch":94.375,"roll":43.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:31.384"} +{"sensors":[{"euler":{"heading":66.875,"pitch":178.8125,"roll":62.1875},"location":"Left Knee"},{"euler":{"heading":340.8125,"pitch":-6.9375,"roll":7.875},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":86.375,"roll":80.4375},"location":"Right Ankle"},{"euler":{"heading":72.9375,"pitch":136.625,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":160.4375,"pitch":16.1875,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":108.3125,"pitch":96.625,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:31.485"} +{"sensors":[{"euler":{"heading":59.3125,"pitch":-168.25,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":331.5,"pitch":-5.8125,"roll":7.25},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":1.5625,"roll":86.875},"location":"Right Ankle"},{"euler":{"heading":73.75,"pitch":136.375,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":169.25,"pitch":-42.9375,"roll":82.0},"location":"Right Knee"},{"euler":{"heading":113.3125,"pitch":100.5,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:31.586"} +{"sensors":[{"euler":{"heading":75.5625,"pitch":178.625,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":341.6875,"pitch":-0.625,"roll":4.375},"location":"Left Ankle"},{"euler":{"heading":66.125,"pitch":-80.9375,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":77.1875,"pitch":138.125,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":183.5,"pitch":-70.9375,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":117.375,"pitch":101.6875,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:31.686"} +{"sensors":[{"euler":{"heading":87.1875,"pitch":163.5625,"roll":62.25},"location":"Left Knee"},{"euler":{"heading":349.8125,"pitch":0.875,"roll":2.5},"location":"Left Ankle"},{"euler":{"heading":56.1875,"pitch":-91.5,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":85.6875,"pitch":136.625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":197.75,"pitch":-73.4375,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":118.8125,"pitch":101.625,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:31.787"} +{"sensors":[{"euler":{"heading":96.0,"pitch":153.0,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":356.0,"pitch":2.75,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":56.625,"pitch":-91.5625,"roll":66.125},"location":"Right Ankle"},{"euler":{"heading":92.0,"pitch":134.375,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":195.625,"pitch":-66.8125,"roll":65.375},"location":"Right Knee"},{"euler":{"heading":122.0,"pitch":106.0,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:31.887"} +{"sensors":[{"euler":{"heading":102.25,"pitch":145.3125,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":4.875,"pitch":6.375,"roll":-2.1875},"location":"Left Ankle"},{"euler":{"heading":74.625,"pitch":-175.25,"roll":84.5},"location":"Right Ankle"},{"euler":{"heading":4.125,"pitch":136.75,"roll":42.875},"location":"Right Hip"},{"euler":{"heading":181.9375,"pitch":-25.25,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":125.6875,"pitch":108.25,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:31.987"} +{"sensors":[{"euler":{"heading":108.875,"pitch":137.1875,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":8.3125,"pitch":4.875,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":100.6875,"pitch":100.75,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":357.0625,"pitch":141.375,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":63.0,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":127.375,"pitch":110.375,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:32.88"} +{"sensors":[{"euler":{"heading":116.8125,"pitch":129.5,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":14.5625,"pitch":5.9375,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":117.375,"pitch":97.8125,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":75.0,"pitch":143.625,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":149.25,"pitch":74.3125,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":130.4375,"pitch":112.0,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:32.188"} +{"sensors":[{"euler":{"heading":126.4375,"pitch":123.1875,"roll":45.125},"location":"Left Knee"},{"euler":{"heading":24.25,"pitch":4.8125,"roll":1.625},"location":"Left Ankle"},{"euler":{"heading":111.8125,"pitch":101.0,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":71.6875,"pitch":145.375,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":149.75,"pitch":67.875,"roll":64.4375},"location":"Right Knee"},{"euler":{"heading":130.3125,"pitch":111.875,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:32.291"} +{"sensors":[{"euler":{"heading":50.0,"pitch":121.625,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":40.3125,"pitch":1.0,"roll":5.125},"location":"Left Ankle"},{"euler":{"heading":101.875,"pitch":94.8125,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":69.4375,"pitch":144.625,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":153.625,"pitch":65.9375,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":114.1875,"pitch":102.125,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:32.392"} +{"sensors":[{"euler":{"heading":47.125,"pitch":125.8125,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":36.0625,"pitch":-2.875,"roll":4.25},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":93.3125,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":70.4375,"pitch":140.6875,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":155.875,"pitch":61.875,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":109.5625,"pitch":96.875,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:32.493"} +{"sensors":[{"euler":{"heading":105.25,"pitch":144.5,"roll":48.6875},"location":"Left Knee"},{"euler":{"heading":12.25,"pitch":-6.3125,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":92.875,"roll":73.5625},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":137.75,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":48.5625,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":107.9375,"pitch":96.9375,"roll":43.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:32.595"} +{"sensors":[{"euler":{"heading":70.25,"pitch":174.9375,"roll":63.0},"location":"Left Knee"},{"euler":{"heading":344.625,"pitch":-6.1875,"roll":6.75},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":88.5,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":74.3125,"pitch":138.125,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":166.875,"pitch":1.0,"roll":84.5625},"location":"Right Knee"},{"euler":{"heading":110.125,"pitch":97.625,"roll":44.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:32.696"} +{"sensors":[{"euler":{"heading":64.75,"pitch":-172.875,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":333.75,"pitch":-5.0625,"roll":5.625},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":2.875,"roll":85.4375},"location":"Right Ankle"},{"euler":{"heading":76.375,"pitch":138.0,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":-52.75,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":116.5625,"pitch":101.9375,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:32.796"} +{"sensors":[{"euler":{"heading":78.75,"pitch":173.0625,"roll":62.1875},"location":"Left Knee"},{"euler":{"heading":344.5,"pitch":-2.6875,"roll":3.5},"location":"Left Ankle"},{"euler":{"heading":72.875,"pitch":-87.625,"roll":82.1875},"location":"Right Ankle"},{"euler":{"heading":78.375,"pitch":138.125,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":188.5625,"pitch":-72.3125,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":119.5625,"pitch":101.6875,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:32.897"} +{"sensors":[{"euler":{"heading":86.0625,"pitch":159.0625,"roll":63.25},"location":"Left Knee"},{"euler":{"heading":350.125,"pitch":-1.625,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":62.0625,"pitch":-97.5625,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":88.875,"pitch":134.5625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":198.75,"pitch":-72.5,"roll":63.625},"location":"Right Knee"},{"euler":{"heading":122.6875,"pitch":105.1875,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:32.998"} +{"sensors":[{"euler":{"heading":90.6875,"pitch":149.5625,"roll":61.5625},"location":"Left Knee"},{"euler":{"heading":1.0625,"pitch":-1.1875,"roll":-0.1875},"location":"Left Ankle"},{"euler":{"heading":64.625,"pitch":-97.75,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":93.375,"pitch":134.6875,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":191.4375,"pitch":-58.8125,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":123.625,"pitch":108.125,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:33.98"} +{"sensors":[{"euler":{"heading":95.4375,"pitch":142.375,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":2.9375,"pitch":-1.8125,"roll":-0.75},"location":"Left Ankle"},{"euler":{"heading":83.0,"pitch":175.6875,"roll":86.1875},"location":"Right Ankle"},{"euler":{"heading":1.8125,"pitch":138.25,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":174.0,"pitch":10.3125,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":125.6875,"pitch":109.0,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:33.199"} +{"sensors":[{"euler":{"heading":101.375,"pitch":135.75,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":6.75,"pitch":-3.1875,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":109.0,"pitch":100.75,"roll":60.875},"location":"Right Ankle"},{"euler":{"heading":353.8125,"pitch":141.8125,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":154.9375,"pitch":66.6875,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":126.875,"pitch":110.5,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:33.299"} +{"sensors":[{"euler":{"heading":109.8125,"pitch":129.375,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":13.5625,"pitch":-2.125,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":121.375,"pitch":95.6875,"roll":51.5625},"location":"Right Ankle"},{"euler":{"heading":73.1875,"pitch":144.0,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":146.3125,"pitch":76.1875,"roll":57.5},"location":"Right Knee"},{"euler":{"heading":129.1875,"pitch":112.875,"roll":67.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:33.400"} +{"sensors":[{"euler":{"heading":30.6875,"pitch":123.75,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":23.8125,"pitch":-1.25,"roll":-1.375},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":98.9375,"roll":62.125},"location":"Right Ankle"},{"euler":{"heading":71.8125,"pitch":144.5,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":146.9375,"pitch":69.125,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":130.625,"pitch":113.9375,"roll":68.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:33.500"} +{"sensors":[{"euler":{"heading":48.25,"pitch":120.9375,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":40.125,"pitch":0.625,"roll":4.0},"location":"Left Ankle"},{"euler":{"heading":102.125,"pitch":95.5625,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":69.6875,"pitch":143.625,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":150.125,"pitch":68.6875,"roll":69.75},"location":"Right Knee"},{"euler":{"heading":117.625,"pitch":104.6875,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:33.601"} +{"sensors":[{"euler":{"heading":44.4375,"pitch":126.1875,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":31.5625,"pitch":-1.875,"roll":4.8125},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":91.5,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":68.9375,"pitch":140.9375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":152.1875,"pitch":64.125,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":111.375,"pitch":97.1875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:33.701"} +{"sensors":[{"euler":{"heading":97.8125,"pitch":145.5625,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":7.1875,"pitch":-2.375,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":92.9375,"pitch":90.125,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":73.0,"pitch":137.625,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":157.25,"pitch":53.8125,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":107.5625,"pitch":96.625,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:33.802"} +{"sensors":[{"euler":{"heading":67.875,"pitch":176.5625,"roll":62.9375},"location":"Left Knee"},{"euler":{"heading":341.5625,"pitch":-4.4375,"roll":6.5625},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":86.5625,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":74.625,"pitch":136.625,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":162.4375,"pitch":2.9375,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":109.3125,"pitch":97.0,"roll":44.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:33.903"} +{"sensors":[{"euler":{"heading":58.9375,"pitch":-169.625,"roll":62.75},"location":"Left Knee"},{"euler":{"heading":333.125,"pitch":-7.125,"roll":5.9375},"location":"Left Ankle"},{"euler":{"heading":79.5625,"pitch":3.6875,"roll":85.25},"location":"Right Ankle"},{"euler":{"heading":75.8125,"pitch":136.625,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":171.4375,"pitch":-4.1875,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":114.4375,"pitch":99.75,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:34.4"} +{"sensors":[{"euler":{"heading":76.125,"pitch":177.0625,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":342.875,"pitch":-2.125,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-79.4375,"roll":80.75},"location":"Right Ankle"},{"euler":{"heading":78.625,"pitch":138.0,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":186.875,"pitch":-73.875,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":119.0,"pitch":100.125,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:34.107"} +{"sensors":[{"euler":{"heading":85.3125,"pitch":162.625,"roll":62.8125},"location":"Left Knee"},{"euler":{"heading":350.75,"pitch":-0.625,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":57.5,"pitch":-88.3125,"roll":64.6875},"location":"Right Ankle"},{"euler":{"heading":89.125,"pitch":134.3125,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":195.9375,"pitch":-75.9375,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":119.9375,"pitch":100.5,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:34.208"} +{"sensors":[{"euler":{"heading":92.9375,"pitch":152.375,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":1.5625,"pitch":1.4375,"roll":-0.4375},"location":"Left Ankle"},{"euler":{"heading":57.5,"pitch":-89.625,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":92.375,"pitch":134.1875,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":192.125,"pitch":-67.625,"roll":67.8125},"location":"Right Knee"},{"euler":{"heading":121.8125,"pitch":103.125,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:34.310"} +{"sensors":[{"euler":{"heading":98.8125,"pitch":143.6875,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":5.5625,"pitch":4.0,"roll":-2.375},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-178.75,"roll":87.125},"location":"Right Ankle"},{"euler":{"heading":4.1875,"pitch":138.1875,"roll":40.6875},"location":"Right Hip"},{"euler":{"heading":176.875,"pitch":-1.75,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":125.5,"pitch":106.0625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:34.411"} +{"sensors":[{"euler":{"heading":104.4375,"pitch":136.1875,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":9.25,"pitch":1.5625,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":99.1875,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":357.0,"pitch":142.875,"roll":39.8125},"location":"Right Hip"},{"euler":{"heading":158.875,"pitch":66.25,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":125.875,"pitch":107.4375,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:34.512"} +{"sensors":[{"euler":{"heading":112.6875,"pitch":129.0625,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":16.125,"pitch":2.3125,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":117.6875,"pitch":99.4375,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":74.1875,"pitch":144.625,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":146.25,"pitch":75.0,"roll":57.9375},"location":"Right Knee"},{"euler":{"heading":127.25,"pitch":110.25,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:34.612"} +{"sensors":[{"euler":{"heading":34.1875,"pitch":122.6875,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":25.5,"pitch":2.3125,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":108.8125,"pitch":101.0625,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":68.25,"pitch":146.4375,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":145.4375,"pitch":66.8125,"roll":61.0625},"location":"Right Knee"},{"euler":{"heading":126.375,"pitch":109.6875,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:34.713"} +{"sensors":[{"euler":{"heading":51.5,"pitch":121.6875,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":43.875,"pitch":0.0,"roll":3.625},"location":"Left Ankle"},{"euler":{"heading":98.0,"pitch":95.4375,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":66.9375,"pitch":144.9375,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":147.5625,"pitch":64.625,"roll":68.0625},"location":"Right Knee"},{"euler":{"heading":113.25,"pitch":99.375,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:34.813"} +{"sensors":[{"euler":{"heading":49.375,"pitch":125.4375,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":40.0,"pitch":-2.25,"roll":2.6875},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":90.75,"roll":69.1875},"location":"Right Ankle"},{"euler":{"heading":67.625,"pitch":142.6875,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":152.5625,"pitch":65.5,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":107.25,"pitch":94.6875,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:34.914"} +{"sensors":[{"euler":{"heading":106.6875,"pitch":142.125,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":15.75,"pitch":-3.8125,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":94.8125,"pitch":90.125,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":72.875,"pitch":138.0,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":157.1875,"pitch":61.375,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":106.75,"pitch":95.5625,"roll":42.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:35.14"} +{"sensors":[{"euler":{"heading":74.4375,"pitch":170.8125,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":347.125,"pitch":-4.3125,"roll":7.0625},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":86.4375,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":75.125,"pitch":136.625,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":162.4375,"pitch":3.75,"roll":83.375},"location":"Right Knee"},{"euler":{"heading":109.0,"pitch":96.625,"roll":43.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:35.116"} +{"sensors":[{"euler":{"heading":60.3125,"pitch":-167.375,"roll":61.625},"location":"Left Knee"},{"euler":{"heading":331.5,"pitch":-5.5,"roll":5.4375},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":67.125,"roll":82.3125},"location":"Right Ankle"},{"euler":{"heading":75.8125,"pitch":136.0625,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":169.3125,"pitch":-3.25,"roll":84.4375},"location":"Right Knee"},{"euler":{"heading":116.0625,"pitch":100.5625,"roll":46.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:35.217"} +{"sensors":[{"euler":{"heading":72.6875,"pitch":-178.125,"roll":62.0},"location":"Left Knee"},{"euler":{"heading":339.8125,"pitch":0.375,"roll":4.0},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":-2.9375,"roll":85.4375},"location":"Right Ankle"},{"euler":{"heading":76.875,"pitch":137.625,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":182.6875,"pitch":-72.5625,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":120.5625,"pitch":100.9375,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:35.318"} +{"sensors":[{"euler":{"heading":87.625,"pitch":166.25,"roll":62.125},"location":"Left Knee"},{"euler":{"heading":349.375,"pitch":3.75,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":-85.3125,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":84.8125,"pitch":136.4375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":196.4375,"pitch":-76.25,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":121.5,"pitch":100.375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:35.419"} +{"sensors":[{"euler":{"heading":95.9375,"pitch":153.5625,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":356.625,"pitch":6.75,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":56.8125,"pitch":-89.25,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":89.875,"pitch":134.9375,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":197.0625,"pitch":-69.375,"roll":65.875},"location":"Right Knee"},{"euler":{"heading":121.5625,"pitch":103.1875,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:35.520"} +{"sensors":[{"euler":{"heading":103.125,"pitch":144.9375,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":5.8125,"pitch":10.5625,"roll":-3.25},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":-99.625,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":3.125,"pitch":137.0625,"roll":42.75},"location":"Right Hip"},{"euler":{"heading":183.4375,"pitch":-34.0625,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":126.3125,"pitch":106.5,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:35.621"} +{"sensors":[{"euler":{"heading":109.4375,"pitch":137.1875,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":5.75,"pitch":8.9375,"roll":-0.8125},"location":"Left Ankle"},{"euler":{"heading":96.75,"pitch":104.0625,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":358.875,"pitch":142.6875,"roll":39.8125},"location":"Right Hip"},{"euler":{"heading":167.25,"pitch":55.375,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":128.375,"pitch":108.4375,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:35.721"} +{"sensors":[{"euler":{"heading":116.5,"pitch":129.5625,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":11.125,"pitch":8.3125,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":117.25,"pitch":96.0,"roll":54.5},"location":"Right Ankle"},{"euler":{"heading":346.9375,"pitch":145.0,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":152.125,"pitch":73.6875,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":130.625,"pitch":109.9375,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:35.822"} +{"sensors":[{"euler":{"heading":124.625,"pitch":123.9375,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":20.375,"pitch":7.25,"roll":2.375},"location":"Left Ankle"},{"euler":{"heading":110.375,"pitch":98.0625,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":68.5625,"pitch":146.4375,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":148.5,"pitch":68.25,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":133.0,"pitch":112.875,"roll":67.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:35.923"} +{"sensors":[{"euler":{"heading":45.625,"pitch":121.4375,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":35.6875,"pitch":0.0625,"roll":4.25},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":102.6875,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":70.375,"pitch":144.3125,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":149.5,"pitch":60.375,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":126.0,"pitch":107.875,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:36.24"} +{"sensors":[{"euler":{"heading":54.6875,"pitch":121.1875,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":43.5,"pitch":-0.8125,"roll":6.1875},"location":"Left Ankle"},{"euler":{"heading":94.125,"pitch":96.9375,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":67.8125,"pitch":143.6875,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":152.3125,"pitch":63.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":114.0625,"pitch":96.375,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:36.127"} +{"sensors":[{"euler":{"heading":29.0,"pitch":136.125,"roll":43.75},"location":"Left Knee"},{"euler":{"heading":24.5625,"pitch":1.75,"roll":0.1875},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":91.9375,"roll":74.375},"location":"Right Ankle"},{"euler":{"heading":70.125,"pitch":140.125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":156.0,"pitch":56.4375,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":111.5625,"pitch":96.6875,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:36.228"} +{"sensors":[{"euler":{"heading":79.6875,"pitch":163.625,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":353.875,"pitch":-4.125,"roll":5.75},"location":"Left Ankle"},{"euler":{"heading":81.9375,"pitch":90.3125,"roll":79.5},"location":"Right Ankle"},{"euler":{"heading":72.1875,"pitch":138.25,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":159.125,"pitch":37.8125,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":110.5625,"pitch":95.875,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:36.329"} +{"sensors":[{"euler":{"heading":58.6875,"pitch":-166.9375,"roll":62.875},"location":"Left Knee"},{"euler":{"heading":333.9375,"pitch":-6.8125,"roll":5.6875},"location":"Left Ankle"},{"euler":{"heading":75.125,"pitch":4.0625,"roll":85.625},"location":"Right Ankle"},{"euler":{"heading":70.3125,"pitch":137.875,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":164.875,"pitch":-1.125,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":114.5,"pitch":98.4375,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:36.429"} +{"sensors":[{"euler":{"heading":70.3125,"pitch":-176.1875,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":340.8125,"pitch":-3.8125,"roll":5.25},"location":"Left Ankle"},{"euler":{"heading":67.375,"pitch":-71.5625,"roll":82.375},"location":"Right Ankle"},{"euler":{"heading":73.5,"pitch":138.25,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-60.1875,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":119.8125,"pitch":101.125,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:36.530"} +{"sensors":[{"euler":{"heading":80.375,"pitch":168.0,"roll":62.8125},"location":"Left Knee"},{"euler":{"heading":348.5625,"pitch":-0.4375,"roll":0.6875},"location":"Left Ankle"},{"euler":{"heading":57.3125,"pitch":-89.5,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":81.4375,"pitch":136.4375,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":192.875,"pitch":-75.5,"roll":68.3125},"location":"Right Knee"},{"euler":{"heading":118.6875,"pitch":101.5625,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:36.631"} +{"sensors":[{"euler":{"heading":88.1875,"pitch":157.25,"roll":62.4375},"location":"Left Knee"},{"euler":{"heading":355.875,"pitch":-0.375,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":53.3125,"pitch":-94.9375,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":89.4375,"pitch":135.5625,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":195.5,"pitch":-71.625,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":122.6875,"pitch":105.3125,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:36.731"} +{"sensors":[{"euler":{"heading":92.875,"pitch":148.375,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":3.75,"pitch":1.0,"roll":-2.0625},"location":"Left Ankle"},{"euler":{"heading":67.75,"pitch":-102.1875,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":2.125,"pitch":137.875,"roll":42.5},"location":"Right Hip"},{"euler":{"heading":181.375,"pitch":-34.625,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":124.25,"pitch":107.8125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:36.832"} +{"sensors":[{"euler":{"heading":99.75,"pitch":140.75,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":7.3125,"pitch":0.6875,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":92.9375,"pitch":112.8125,"roll":76.3125},"location":"Right Ankle"},{"euler":{"heading":355.25,"pitch":142.4375,"roll":41.25},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":56.4375,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":125.8125,"pitch":108.5625,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:36.932"} +{"sensors":[{"euler":{"heading":108.4375,"pitch":133.1875,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":12.9375,"pitch":1.8125,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":102.875,"roll":59.875},"location":"Right Ankle"},{"euler":{"heading":72.625,"pitch":146.0625,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":149.125,"pitch":73.875,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":128.0,"pitch":111.3125,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:37.33"} +{"sensors":[{"euler":{"heading":117.9375,"pitch":126.625,"roll":47.8125},"location":"Left Knee"},{"euler":{"heading":21.75,"pitch":1.1875,"roll":1.875},"location":"Left Ankle"},{"euler":{"heading":111.5625,"pitch":102.0625,"roll":59.9375},"location":"Right Ankle"},{"euler":{"heading":66.375,"pitch":147.375,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":147.6875,"pitch":69.625,"roll":59.5625},"location":"Right Knee"},{"euler":{"heading":131.5,"pitch":116.6875,"roll":68.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:37.134"} +{"sensors":[{"euler":{"heading":42.8125,"pitch":122.3125,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":34.375,"pitch":-2.4375,"roll":5.1875},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":95.875,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":70.125,"pitch":144.4375,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":149.125,"pitch":66.375,"roll":65.9375},"location":"Right Knee"},{"euler":{"heading":124.0625,"pitch":108.0,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:37.235"} +{"sensors":[{"euler":{"heading":43.125,"pitch":125.125,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":37.5625,"pitch":-5.9375,"roll":3.4375},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":99.4375,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":64.75,"pitch":144.375,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":150.3125,"pitch":66.1875,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":110.0625,"pitch":96.625,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:37.335"} +{"sensors":[{"euler":{"heading":103.25,"pitch":141.375,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":15.375,"pitch":-6.5,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":91.1875,"pitch":95.5,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":68.0,"pitch":140.6875,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":153.8125,"pitch":58.8125,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":107.6875,"pitch":96.5,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:37.436"} +{"sensors":[{"euler":{"heading":73.1875,"pitch":171.6875,"roll":62.125},"location":"Left Knee"},{"euler":{"heading":348.0,"pitch":-5.25,"roll":6.25},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":90.125,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":71.9375,"pitch":139.25,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":160.3125,"pitch":44.1875,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":110.1875,"pitch":96.625,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:37.537"} +{"sensors":[{"euler":{"heading":62.8125,"pitch":-167.0625,"roll":62.3125},"location":"Left Knee"},{"euler":{"heading":333.1875,"pitch":-4.6875,"roll":4.6875},"location":"Left Ankle"},{"euler":{"heading":78.5625,"pitch":2.6875,"roll":86.5},"location":"Right Ankle"},{"euler":{"heading":73.875,"pitch":138.5625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":-1.5,"roll":84.875},"location":"Right Knee"},{"euler":{"heading":115.5625,"pitch":99.875,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:37.638"} +{"sensors":[{"euler":{"heading":75.125,"pitch":-178.75,"roll":62.4375},"location":"Left Knee"},{"euler":{"heading":341.625,"pitch":0.0,"roll":4.625},"location":"Left Ankle"},{"euler":{"heading":71.3125,"pitch":-82.875,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":76.9375,"pitch":139.1875,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":182.9375,"pitch":-72.125,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":118.125,"pitch":99.4375,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:37.738"} +{"sensors":[{"euler":{"heading":85.0625,"pitch":166.625,"roll":63.3125},"location":"Left Knee"},{"euler":{"heading":350.0625,"pitch":2.25,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":58.5,"pitch":-91.0,"roll":63.25},"location":"Right Ankle"},{"euler":{"heading":86.875,"pitch":136.8125,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":194.9375,"pitch":-74.8125,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":118.625,"pitch":99.4375,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:37.839"} +{"sensors":[{"euler":{"heading":91.6875,"pitch":156.25,"roll":62.3125},"location":"Left Knee"},{"euler":{"heading":356.875,"pitch":1.875,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":-94.0,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":91.0,"pitch":135.5625,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":192.375,"pitch":-64.3125,"roll":69.3125},"location":"Right Knee"},{"euler":{"heading":120.25,"pitch":103.75,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:37.939"} +{"sensors":[{"euler":{"heading":96.0625,"pitch":148.125,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":3.4375,"pitch":3.0,"roll":-1.625},"location":"Left Ankle"},{"euler":{"heading":79.125,"pitch":-176.25,"roll":84.25},"location":"Right Ankle"},{"euler":{"heading":1.1875,"pitch":138.5,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-7.5625,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":123.0,"pitch":106.8125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:38.41"} +{"sensors":[{"euler":{"heading":101.8125,"pitch":139.125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":7.125,"pitch":1.1875,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":103.4375,"pitch":103.9375,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":354.4375,"pitch":143.1875,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":160.625,"pitch":66.25,"roll":68.875},"location":"Right Knee"},{"euler":{"heading":125.625,"pitch":109.8125,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:38.142"} +{"sensors":[{"euler":{"heading":110.4375,"pitch":131.0,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":13.8125,"pitch":2.3125,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":114.4375,"pitch":102.125,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":72.8125,"pitch":145.4375,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":148.9375,"pitch":74.25,"roll":57.875},"location":"Right Knee"},{"euler":{"heading":128.75,"pitch":112.75,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:38.242"} +{"sensors":[{"euler":{"heading":122.875,"pitch":124.25,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":23.5,"pitch":1.75,"roll":2.1875},"location":"Left Ankle"},{"euler":{"heading":106.3125,"pitch":104.1875,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":69.1875,"pitch":146.8125,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":147.75,"pitch":67.5,"roll":60.6875},"location":"Right Knee"},{"euler":{"heading":130.875,"pitch":115.1875,"roll":67.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:38.342"} +{"sensors":[{"euler":{"heading":49.25,"pitch":121.6875,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":40.4375,"pitch":1.6875,"roll":5.0},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":100.25,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":68.3125,"pitch":145.5625,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":150.6875,"pitch":64.0,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":116.5,"pitch":103.1875,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:38.443"} +{"sensors":[{"euler":{"heading":44.5625,"pitch":126.1875,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":33.875,"pitch":-0.8125,"roll":5.25},"location":"Left Ankle"},{"euler":{"heading":92.9375,"pitch":100.875,"roll":72.4375},"location":"Right Ankle"},{"euler":{"heading":67.3125,"pitch":142.1875,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":151.4375,"pitch":59.625,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":110.5,"pitch":95.875,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:38.543"} +{"sensors":[{"euler":{"heading":96.875,"pitch":145.6875,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":9.4375,"pitch":-4.8125,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":95.125,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":70.875,"pitch":139.1875,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":156.25,"pitch":51.8125,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":107.625,"pitch":95.8125,"roll":45.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:38.644"} +{"sensors":[{"euler":{"heading":70.0,"pitch":178.9375,"roll":63.1875},"location":"Left Knee"},{"euler":{"heading":343.6875,"pitch":-0.5625,"roll":5.6875},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":87.125,"roll":81.6875},"location":"Right Ankle"},{"euler":{"heading":71.625,"pitch":138.75,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":29.8125,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":110.25,"pitch":97.9375,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:38.745"} +{"sensors":[{"euler":{"heading":63.1875,"pitch":-170.1875,"roll":62.25},"location":"Left Knee"},{"euler":{"heading":335.625,"pitch":-3.625,"roll":4.9375},"location":"Left Ankle"},{"euler":{"heading":74.9375,"pitch":-0.4375,"roll":87.9375},"location":"Right Ankle"},{"euler":{"heading":73.5,"pitch":138.25,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":-3.75,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":114.1875,"pitch":100.0,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:38.846"} +{"sensors":[{"euler":{"heading":78.5,"pitch":174.625,"roll":62.1875},"location":"Left Knee"},{"euler":{"heading":345.75,"pitch":-0.8125,"roll":3.125},"location":"Left Ankle"},{"euler":{"heading":68.3125,"pitch":-90.1875,"roll":75.4375},"location":"Right Ankle"},{"euler":{"heading":78.4375,"pitch":137.125,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":188.4375,"pitch":-72.8125,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":117.25,"pitch":100.0625,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:38.946"} +{"sensors":[{"euler":{"heading":87.9375,"pitch":161.8125,"roll":63.0},"location":"Left Knee"},{"euler":{"heading":351.625,"pitch":1.5625,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":56.6875,"pitch":-96.0625,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":87.9375,"pitch":134.25,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":195.9375,"pitch":-72.5625,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":120.6875,"pitch":102.625,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:39.47"} +{"sensors":[{"euler":{"heading":93.875,"pitch":152.375,"roll":62.0625},"location":"Left Knee"},{"euler":{"heading":2.5625,"pitch":3.5625,"roll":-1.375},"location":"Left Ankle"},{"euler":{"heading":65.5,"pitch":-98.8125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":90.875,"pitch":134.75,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":187.1875,"pitch":-53.1875,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":122.25,"pitch":107.75,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:39.148"} +{"sensors":[{"euler":{"heading":99.25,"pitch":144.9375,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":3.5625,"pitch":3.25,"roll":-1.0},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":121.5,"roll":80.4375},"location":"Right Ankle"},{"euler":{"heading":357.75,"pitch":139.5625,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":171.5,"pitch":38.9375,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":124.375,"pitch":111.125,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:39.249"} +{"sensors":[{"euler":{"heading":106.25,"pitch":137.1875,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":7.375,"pitch":2.875,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":114.125,"pitch":96.9375,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":348.0625,"pitch":144.5625,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":156.1875,"pitch":72.25,"roll":64.6875},"location":"Right Knee"},{"euler":{"heading":127.0,"pitch":113.125,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:39.350"} +{"sensors":[{"euler":{"heading":113.6875,"pitch":130.0625,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":14.875,"pitch":2.125,"roll":2.125},"location":"Left Ankle"},{"euler":{"heading":115.75,"pitch":95.4375,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":69.25,"pitch":146.1875,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":148.625,"pitch":73.6875,"roll":58.6875},"location":"Right Knee"},{"euler":{"heading":128.5,"pitch":116.4375,"roll":67.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:39.450"} +{"sensors":[{"euler":{"heading":40.125,"pitch":122.4375,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":29.875,"pitch":-2.4375,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":102.4375,"pitch":93.3125,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":68.9375,"pitch":145.9375,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":149.375,"pitch":64.8125,"roll":65.5625},"location":"Right Knee"},{"euler":{"heading":125.3125,"pitch":110.5,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:39.551"} +{"sensors":[{"euler":{"heading":51.5625,"pitch":122.375,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":43.125,"pitch":-7.4375,"roll":5.4375},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":90.625,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":68.3125,"pitch":143.75,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":152.6875,"pitch":67.4375,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":111.125,"pitch":99.6875,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:39.652"} +{"sensors":[{"euler":{"heading":33.5625,"pitch":132.5625,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":28.1875,"pitch":-3.8125,"roll":-1.5625},"location":"Left Ankle"},{"euler":{"heading":96.125,"pitch":88.5625,"roll":71.3125},"location":"Right Ankle"},{"euler":{"heading":72.1875,"pitch":140.25,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":157.9375,"pitch":63.1875,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":109.0,"pitch":97.0,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:39.753"} +{"sensors":[{"euler":{"heading":86.1875,"pitch":154.4375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":-6.4375,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":83.4375,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":75.875,"pitch":138.375,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":164.1875,"pitch":52.0625,"roll":82.125},"location":"Right Knee"},{"euler":{"heading":109.5,"pitch":96.9375,"roll":44.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:39.854"} +{"sensors":[{"euler":{"heading":65.125,"pitch":-172.6875,"roll":63.0625},"location":"Left Knee"},{"euler":{"heading":337.25,"pitch":-4.125,"roll":5.3125},"location":"Left Ankle"},{"euler":{"heading":83.5625,"pitch":71.5625,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":75.4375,"pitch":137.625,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":168.5,"pitch":0.25,"roll":85.125},"location":"Right Knee"},{"euler":{"heading":112.4375,"pitch":99.1875,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:39.954"} +{"sensors":[{"euler":{"heading":64.4375,"pitch":-170.375,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":335.1875,"pitch":-3.0,"roll":4.75},"location":"Left Ankle"},{"euler":{"heading":75.375,"pitch":-1.375,"roll":86.125},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":138.5,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":-56.9375,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":116.125,"pitch":101.0,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:40.54"} +{"sensors":[{"euler":{"heading":81.9375,"pitch":172.875,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":346.875,"pitch":1.0625,"roll":1.6875},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":-88.75,"roll":71.875},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":136.625,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":192.9375,"pitch":-75.125,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":118.375,"pitch":100.1875,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:40.155"} +{"sensors":[{"euler":{"heading":91.8125,"pitch":160.25,"roll":62.5},"location":"Left Knee"},{"euler":{"heading":353.25,"pitch":3.6875,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":55.625,"pitch":-95.5625,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":87.4375,"pitch":135.0625,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":199.375,"pitch":-74.0625,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":121.5,"pitch":103.3125,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:40.256"} +{"sensors":[{"euler":{"heading":96.5625,"pitch":150.9375,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":4.8125,"pitch":6.875,"roll":-3.0},"location":"Left Ankle"},{"euler":{"heading":63.625,"pitch":-96.75,"roll":71.25},"location":"Right Ankle"},{"euler":{"heading":91.75,"pitch":135.5,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":188.25,"pitch":-54.375,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":122.625,"pitch":107.25,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:40.357"} +{"sensors":[{"euler":{"heading":102.375,"pitch":143.25,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":4.8125,"pitch":5.6875,"roll":-0.625},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":127.625,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":357.625,"pitch":140.6875,"roll":41.9375},"location":"Right Hip"},{"euler":{"heading":169.875,"pitch":36.9375,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":124.375,"pitch":108.75,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:40.457"} +{"sensors":[{"euler":{"heading":109.9375,"pitch":135.1875,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":9.375,"pitch":5.625,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":114.0,"pitch":98.25,"roll":58.3125},"location":"Right Ankle"},{"euler":{"heading":348.4375,"pitch":144.625,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":152.3125,"pitch":72.375,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":128.125,"pitch":111.3125,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:40.558"} +{"sensors":[{"euler":{"heading":119.0625,"pitch":127.0625,"roll":51.0},"location":"Left Knee"},{"euler":{"heading":17.3125,"pitch":5.8125,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":119.375,"pitch":100.1875,"roll":53.5625},"location":"Right Ankle"},{"euler":{"heading":70.5625,"pitch":146.75,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":149.3125,"pitch":72.6875,"roll":59.25},"location":"Right Knee"},{"euler":{"heading":130.8125,"pitch":115.375,"roll":67.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:40.659"} +{"sensors":[{"euler":{"heading":41.1875,"pitch":121.125,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":29.125,"pitch":0.8125,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":104.375,"pitch":95.75,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":71.375,"pitch":146.0,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":153.6875,"pitch":66.5625,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":129.0625,"pitch":111.5625,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:40.759"} +{"sensors":[{"euler":{"heading":52.625,"pitch":121.1875,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":43.9375,"pitch":-2.6875,"roll":5.9375},"location":"Left Ankle"},{"euler":{"heading":100.5,"pitch":101.9375,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":69.0,"pitch":144.4375,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":155.25,"pitch":66.1875,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":116.375,"pitch":100.5,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:40.861"} +{"sensors":[{"euler":{"heading":36.9375,"pitch":130.0,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":30.1875,"pitch":-3.8125,"roll":-2.0},"location":"Left Ankle"},{"euler":{"heading":94.125,"pitch":96.1875,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":70.3125,"pitch":140.5625,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":157.3125,"pitch":56.875,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":111.1875,"pitch":98.625,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:40.961"} +{"sensors":[{"euler":{"heading":88.0,"pitch":152.875,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":3.6875,"pitch":-7.625,"roll":0.5625},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":90.5625,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":72.625,"pitch":138.875,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":161.6875,"pitch":39.5,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":108.9375,"pitch":96.375,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:41.62"} +{"sensors":[{"euler":{"heading":63.6875,"pitch":-173.4375,"roll":63.25},"location":"Left Knee"},{"euler":{"heading":338.6875,"pitch":-5.4375,"roll":6.0},"location":"Left Ankle"},{"euler":{"heading":80.8125,"pitch":5.4375,"roll":84.4375},"location":"Right Ankle"},{"euler":{"heading":72.4375,"pitch":138.8125,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":168.1875,"pitch":-1.8125,"roll":83.375},"location":"Right Knee"},{"euler":{"heading":113.375,"pitch":99.25,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:41.162"} +{"sensors":[{"euler":{"heading":68.375,"pitch":-174.0625,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":337.875,"pitch":-2.5,"roll":4.8125},"location":"Left Ankle"},{"euler":{"heading":71.6875,"pitch":-5.8125,"roll":84.0625},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":139.5625,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":180.5,"pitch":-62.8125,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":117.0625,"pitch":99.75,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:41.263"} +{"sensors":[{"euler":{"heading":78.875,"pitch":171.5,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":346.875,"pitch":-2.25,"roll":2.375},"location":"Left Ankle"},{"euler":{"heading":56.875,"pitch":-94.625,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":83.875,"pitch":137.75,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":195.8125,"pitch":-73.1875,"roll":65.375},"location":"Right Knee"},{"euler":{"heading":115.4375,"pitch":99.5625,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:41.363"} +{"sensors":[{"euler":{"heading":83.3125,"pitch":160.6875,"roll":62.625},"location":"Left Knee"},{"euler":{"heading":355.0,"pitch":-1.5625,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":54.1875,"pitch":-99.8125,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":91.125,"pitch":133.5,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":195.9375,"pitch":-65.375,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":117.5625,"pitch":102.875,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:41.464"} +{"sensors":[{"euler":{"heading":91.8125,"pitch":152.125,"roll":62.0625},"location":"Left Knee"},{"euler":{"heading":3.125,"pitch":1.9375,"roll":-1.5},"location":"Left Ankle"},{"euler":{"heading":70.0625,"pitch":-114.125,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":1.3125,"pitch":136.0625,"roll":42.875},"location":"Right Hip"},{"euler":{"heading":180.3125,"pitch":-29.75,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":121.25,"pitch":106.4375,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:41.566"} +{"sensors":[{"euler":{"heading":99.6875,"pitch":143.1875,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":5.375,"pitch":1.625,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":96.9375,"pitch":111.0,"roll":72.4375},"location":"Right Ankle"},{"euler":{"heading":357.625,"pitch":140.4375,"roll":41.3125},"location":"Right Hip"},{"euler":{"heading":160.5625,"pitch":56.3125,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":123.3125,"pitch":107.875,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:41.667"} +{"sensors":[{"euler":{"heading":108.5,"pitch":133.5625,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":11.0625,"pitch":3.5625,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":116.875,"pitch":99.5,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":78.625,"pitch":142.5625,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":147.4375,"pitch":75.4375,"roll":58.625},"location":"Right Knee"},{"euler":{"heading":127.8125,"pitch":110.0625,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:41.768"} +{"sensors":[{"euler":{"heading":119.625,"pitch":126.3125,"roll":48.75},"location":"Left Knee"},{"euler":{"heading":19.25,"pitch":4.625,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":113.4375,"pitch":100.875,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":72.125,"pitch":145.75,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":147.1875,"pitch":70.375,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":132.3125,"pitch":114.6875,"roll":67.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:41.868"} +{"sensors":[{"euler":{"heading":43.0625,"pitch":123.25,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":31.4375,"pitch":-1.25,"roll":5.375},"location":"Left Ankle"},{"euler":{"heading":102.875,"pitch":96.5625,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":73.125,"pitch":143.6875,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":148.4375,"pitch":66.3125,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":124.75,"pitch":109.0625,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:41.970"} +{"sensors":[{"euler":{"heading":52.1875,"pitch":123.25,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":45.3125,"pitch":-0.4375,"roll":6.25},"location":"Left Ankle"},{"euler":{"heading":101.6875,"pitch":91.625,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":70.9375,"pitch":142.5625,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":153.75,"pitch":71.5625,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":115.8125,"pitch":99.25,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:42.70"} +{"sensors":[{"euler":{"heading":36.1875,"pitch":133.1875,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":30.0,"pitch":-1.0625,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":99.9375,"pitch":91.3125,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":140.0,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":159.9375,"pitch":68.3125,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":112.0,"pitch":98.625,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:42.171"} +{"sensors":[{"euler":{"heading":88.875,"pitch":156.0625,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":4.5,"pitch":-3.0,"roll":3.0},"location":"Left Ankle"},{"euler":{"heading":95.5625,"pitch":89.375,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":77.5625,"pitch":138.75,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":5.375,"roll":83.375},"location":"Right Knee"},{"euler":{"heading":112.4375,"pitch":97.875,"roll":44.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:42.272"} +{"sensors":[{"euler":{"heading":68.375,"pitch":-173.5625,"roll":62.0},"location":"Left Knee"},{"euler":{"heading":340.125,"pitch":0.375,"roll":4.125},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":82.25,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":77.875,"pitch":138.9375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":-0.5625,"roll":85.875},"location":"Right Knee"},{"euler":{"heading":116.375,"pitch":99.0625,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:42.373"} +{"sensors":[{"euler":{"heading":67.875,"pitch":-170.75,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":333.875,"pitch":0.0,"roll":2.375},"location":"Left Ankle"},{"euler":{"heading":80.5625,"pitch":0.9375,"roll":87.25},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":139.875,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":180.1875,"pitch":-64.9375,"roll":64.75},"location":"Right Knee"},{"euler":{"heading":121.25,"pitch":101.5,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:42.474"} +{"sensors":[{"euler":{"heading":82.5,"pitch":173.6875,"roll":62.75},"location":"Left Knee"},{"euler":{"heading":346.1875,"pitch":1.9375,"roll":0.6875},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":-91.4375,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":82.6875,"pitch":139.625,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":195.3125,"pitch":-76.125,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":121.9375,"pitch":100.0,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:42.575"} +{"sensors":[{"euler":{"heading":89.25,"pitch":160.5625,"roll":63.0625},"location":"Left Knee"},{"euler":{"heading":351.5625,"pitch":3.1875,"roll":-0.875},"location":"Left Ankle"},{"euler":{"heading":56.625,"pitch":-95.3125,"roll":62.125},"location":"Right Ankle"},{"euler":{"heading":89.8125,"pitch":136.125,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":200.5,"pitch":-73.0625,"roll":61.875},"location":"Right Knee"},{"euler":{"heading":123.9375,"pitch":102.5625,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:42.675"} +{"sensors":[{"euler":{"heading":92.625,"pitch":151.1875,"roll":62.375},"location":"Left Knee"},{"euler":{"heading":2.5,"pitch":5.4375,"roll":-3.1875},"location":"Left Ankle"},{"euler":{"heading":64.125,"pitch":-97.1875,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":3.125,"pitch":137.3125,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":189.125,"pitch":-52.5625,"roll":71.1875},"location":"Right Knee"},{"euler":{"heading":124.625,"pitch":105.5,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:42.775"} +{"sensors":[{"euler":{"heading":96.3125,"pitch":143.75,"roll":60.3125},"location":"Left Knee"},{"euler":{"heading":2.75,"pitch":3.0625,"roll":-1.75},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":126.5625,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":140.9375,"roll":41.4375},"location":"Right Hip"},{"euler":{"heading":167.5,"pitch":35.6875,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":126.6875,"pitch":107.0,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:42.876"} +{"sensors":[{"euler":{"heading":102.6875,"pitch":136.25,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":6.9375,"pitch":1.3125,"roll":-0.1875},"location":"Left Ankle"},{"euler":{"heading":110.3125,"pitch":98.6875,"roll":58.3125},"location":"Right Ankle"},{"euler":{"heading":350.75,"pitch":142.5,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":150.4375,"pitch":69.5,"roll":62.25},"location":"Right Knee"},{"euler":{"heading":128.4375,"pitch":108.6875,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:42.977"} +{"sensors":[{"euler":{"heading":111.125,"pitch":129.25,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":13.9375,"pitch":1.25,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":119.125,"pitch":92.0,"roll":50.0625},"location":"Right Ankle"},{"euler":{"heading":71.1875,"pitch":143.8125,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":144.375,"pitch":76.3125,"roll":57.25},"location":"Right Knee"},{"euler":{"heading":130.9375,"pitch":111.9375,"roll":68.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:43.77"} +{"sensors":[{"euler":{"heading":47.625,"pitch":122.875,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":23.6875,"pitch":0.25,"roll":-1.8125},"location":"Left Ankle"},{"euler":{"heading":100.8125,"pitch":94.4375,"roll":62.125},"location":"Right Ankle"},{"euler":{"heading":69.6875,"pitch":144.375,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":144.1875,"pitch":61.5,"roll":62.6875},"location":"Right Knee"},{"euler":{"heading":129.75,"pitch":111.625,"roll":68.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:43.177"} +{"sensors":[{"euler":{"heading":50.0625,"pitch":121.1875,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":40.25,"pitch":3.875,"roll":4.375},"location":"Left Ankle"},{"euler":{"heading":93.1875,"pitch":99.25,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":67.5,"pitch":143.0,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":144.625,"pitch":64.6875,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":117.0625,"pitch":98.9375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:43.279"} +{"sensors":[{"euler":{"heading":33.1875,"pitch":133.25,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":26.875,"pitch":0.9375,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":87.75,"pitch":91.375,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":67.3125,"pitch":139.6875,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":147.25,"pitch":59.25,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":109.125,"pitch":95.5625,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:43.380"} +{"sensors":[{"euler":{"heading":84.4375,"pitch":156.3125,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":2.5,"pitch":-3.3125,"roll":3.25},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":86.25,"roll":75.125},"location":"Right Ankle"},{"euler":{"heading":72.9375,"pitch":136.8125,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":152.4375,"pitch":48.3125,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":106.5,"pitch":93.9375,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:43.481"} +{"sensors":[{"euler":{"heading":62.8125,"pitch":-173.75,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":339.375,"pitch":-2.6875,"roll":6.5625},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":79.3125,"roll":80.0625},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":135.625,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":158.1875,"pitch":21.25,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":110.1875,"pitch":95.25,"roll":44.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:43.581"} +{"sensors":[{"euler":{"heading":58.875,"pitch":-166.4375,"roll":60.8125},"location":"Left Knee"},{"euler":{"heading":333.5,"pitch":-4.1875,"roll":5.625},"location":"Left Ankle"},{"euler":{"heading":73.1875,"pitch":2.625,"roll":85.5625},"location":"Right Ankle"},{"euler":{"heading":76.875,"pitch":135.6875,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":167.5625,"pitch":-4.5,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":116.125,"pitch":98.25,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:43.682"} +{"sensors":[{"euler":{"heading":74.9375,"pitch":179.875,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":342.375,"pitch":0.875,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":68.6875,"pitch":-67.1875,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":77.625,"pitch":136.875,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":181.875,"pitch":-76.8125,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":120.8125,"pitch":100.75,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:43.782"} +{"sensors":[{"euler":{"heading":86.875,"pitch":166.75,"roll":61.5},"location":"Left Knee"},{"euler":{"heading":349.1875,"pitch":3.125,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":56.375,"pitch":-84.5,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":84.4375,"pitch":136.4375,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":194.5,"pitch":-78.8125,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":122.25,"pitch":102.125,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:43.882"} +{"sensors":[{"euler":{"heading":96.5,"pitch":157.3125,"roll":62.0625},"location":"Left Knee"},{"euler":{"heading":354.125,"pitch":6.6875,"roll":-1.0},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":-92.5,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":90.9375,"pitch":136.75,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":192.4375,"pitch":-68.875,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":127.3125,"pitch":107.5,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:43.983"} +{"sensors":[{"euler":{"heading":105.5,"pitch":147.875,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":358.875,"pitch":10.0625,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":76.0,"pitch":-178.8125,"roll":85.5625},"location":"Right Ankle"},{"euler":{"heading":5.25,"pitch":138.1875,"roll":41.1875},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":1.6875,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":132.375,"pitch":111.25,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:44.84"} +{"sensors":[{"euler":{"heading":114.0,"pitch":138.3125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":4.0,"pitch":10.375,"roll":-0.8125},"location":"Left Ankle"},{"euler":{"heading":103.375,"pitch":103.875,"roll":68.0},"location":"Right Ankle"},{"euler":{"heading":357.5625,"pitch":142.9375,"roll":40.9375},"location":"Right Hip"},{"euler":{"heading":160.125,"pitch":66.0625,"roll":68.125},"location":"Right Knee"},{"euler":{"heading":134.5625,"pitch":112.1875,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:44.185"} +{"sensors":[{"euler":{"heading":120.875,"pitch":130.3125,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":11.25,"pitch":11.5625,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":121.1875,"pitch":98.3125,"roll":50.5625},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":146.6875,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":148.75,"pitch":71.5625,"roll":57.625},"location":"Right Knee"},{"euler":{"heading":135.75,"pitch":113.625,"roll":67.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:44.286"} +{"sensors":[{"euler":{"heading":42.0625,"pitch":122.5625,"roll":44.0625},"location":"Left Knee"},{"euler":{"heading":23.9375,"pitch":7.6875,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":111.0625,"pitch":98.75,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":146.5,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":149.1875,"pitch":65.5625,"roll":63.5},"location":"Right Knee"},{"euler":{"heading":134.75,"pitch":111.0,"roll":66.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:44.387"} +{"sensors":[{"euler":{"heading":53.5625,"pitch":121.6875,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":43.4375,"pitch":3.8125,"roll":8.375},"location":"Left Ankle"},{"euler":{"heading":102.5,"pitch":96.5,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":70.875,"pitch":145.5625,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":151.3125,"pitch":61.75,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":119.3125,"pitch":101.3125,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:44.487"} +{"sensors":[{"euler":{"heading":43.4375,"pitch":128.875,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":32.5,"pitch":1.75,"roll":3.75},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":94.0,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":72.4375,"pitch":141.875,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":54.9375,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":113.8125,"pitch":96.0625,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:44.589"} +{"sensors":[{"euler":{"heading":91.8125,"pitch":152.1875,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":5.625,"pitch":-4.0,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":88.0,"pitch":90.1875,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":74.8125,"pitch":139.0,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":157.125,"pitch":42.4375,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":110.875,"pitch":96.375,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:44.690"} +{"sensors":[{"euler":{"heading":65.1875,"pitch":-174.25,"roll":62.0},"location":"Left Knee"},{"euler":{"heading":338.8125,"pitch":-3.25,"roll":5.6875},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":83.9375,"roll":79.75},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":137.625,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":162.9375,"pitch":9.25,"roll":82.125},"location":"Right Knee"},{"euler":{"heading":114.1875,"pitch":99.4375,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:44.791"} +{"sensors":[{"euler":{"heading":67.9375,"pitch":-172.625,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":351.3125,"pitch":0.0625,"roll":4.5},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":-1.0,"roll":88.5},"location":"Right Ankle"},{"euler":{"heading":76.5625,"pitch":137.375,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":175.0,"pitch":-52.6875,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":118.375,"pitch":101.3125,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:44.894"} +{"sensors":[{"euler":{"heading":80.8125,"pitch":173.125,"roll":61.0},"location":"Left Knee"},{"euler":{"heading":346.25,"pitch":1.125,"roll":2.125},"location":"Left Ankle"},{"euler":{"heading":62.9375,"pitch":-96.6875,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":82.375,"pitch":137.1875,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":191.25,"pitch":-71.375,"roll":68.625},"location":"Right Knee"},{"euler":{"heading":116.1875,"pitch":100.125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:44.995"} +{"sensors":[{"euler":{"heading":86.5,"pitch":162.375,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":353.5,"pitch":2.25,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":54.5,"pitch":-98.125,"roll":64.5},"location":"Right Ankle"},{"euler":{"heading":88.75,"pitch":133.5,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":193.125,"pitch":-69.125,"roll":64.75},"location":"Right Knee"},{"euler":{"heading":118.3125,"pitch":103.4375,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:45.95"} +{"sensors":[{"euler":{"heading":93.8125,"pitch":153.25,"roll":61.125},"location":"Left Knee"},{"euler":{"heading":2.5625,"pitch":5.5625,"roll":-1.9375},"location":"Left Ankle"},{"euler":{"heading":67.1875,"pitch":-115.125,"roll":77.875},"location":"Right Ankle"},{"euler":{"heading":3.1875,"pitch":135.4375,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":181.5625,"pitch":-34.125,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":122.875,"pitch":107.5,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:45.197"} +{"sensors":[{"euler":{"heading":103.625,"pitch":144.25,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":2.375,"pitch":5.5,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":111.25,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":1.8125,"pitch":140.4375,"roll":39.875},"location":"Right Hip"},{"euler":{"heading":164.9375,"pitch":54.625,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":127.3125,"pitch":109.25,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:45.298"} +{"sensors":[{"euler":{"heading":112.5625,"pitch":135.0625,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":7.875,"pitch":6.625,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":117.6875,"pitch":97.8125,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":352.1875,"pitch":143.0,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":150.25,"pitch":73.9375,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":131.0625,"pitch":111.1875,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:45.399"} +{"sensors":[{"euler":{"heading":121.375,"pitch":127.875,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":16.25,"pitch":7.3125,"roll":2.1875},"location":"Left Ankle"},{"euler":{"heading":112.9375,"pitch":97.8125,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":73.1875,"pitch":145.5,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":146.5,"pitch":67.375,"roll":58.375},"location":"Right Knee"},{"euler":{"heading":132.8125,"pitch":115.1875,"roll":68.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:45.500"} +{"sensors":[{"euler":{"heading":41.9375,"pitch":122.9375,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":30.125,"pitch":0.8125,"roll":3.3125},"location":"Left Ankle"},{"euler":{"heading":100.9375,"pitch":95.8125,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":75.25,"pitch":143.125,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":149.5625,"pitch":61.75,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":130.4375,"pitch":110.4375,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:45.601"} +{"sensors":[{"euler":{"heading":54.5,"pitch":122.9375,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":45.8125,"pitch":-2.375,"roll":6.125},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":92.1875,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":70.9375,"pitch":141.5,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":150.375,"pitch":63.4375,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":114.8125,"pitch":98.1875,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:45.703"} +{"sensors":[{"euler":{"heading":39.8125,"pitch":132.1875,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":27.9375,"pitch":0.125,"roll":0.3125},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":88.5625,"roll":74.125},"location":"Right Ankle"},{"euler":{"heading":75.3125,"pitch":137.6875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":156.0625,"pitch":59.75,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":111.1875,"pitch":97.25,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:45.804"} +{"sensors":[{"euler":{"heading":90.625,"pitch":154.1875,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":0.375,"pitch":-2.5,"roll":3.25},"location":"Left Ankle"},{"euler":{"heading":88.125,"pitch":82.5625,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":77.75,"pitch":137.1875,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":163.125,"pitch":45.9375,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":112.5,"pitch":96.875,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:45.904"} +{"sensors":[{"euler":{"heading":65.5,"pitch":-171.9375,"roll":62.125},"location":"Left Knee"},{"euler":{"heading":337.0625,"pitch":-2.375,"roll":4.25},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":5.625,"roll":83.6875},"location":"Right Ankle"},{"euler":{"heading":77.0,"pitch":137.0625,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":168.6875,"pitch":-1.1875,"roll":85.25},"location":"Right Knee"},{"euler":{"heading":117.8125,"pitch":99.4375,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:46.8"} +{"sensors":[{"euler":{"heading":72.125,"pitch":-175.75,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":339.1875,"pitch":1.1875,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":72.75,"pitch":-4.4375,"roll":84.6875},"location":"Right Ankle"},{"euler":{"heading":77.875,"pitch":138.125,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-65.875,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":121.0625,"pitch":100.4375,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:46.109"} +{"sensors":[{"euler":{"heading":86.8125,"pitch":169.0625,"roll":61.8125},"location":"Left Knee"},{"euler":{"heading":349.5625,"pitch":5.4375,"roll":-0.1875},"location":"Left Ankle"},{"euler":{"heading":60.5,"pitch":-89.125,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":84.625,"pitch":137.625,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":193.75,"pitch":-77.6875,"roll":68.0625},"location":"Right Knee"},{"euler":{"heading":120.8125,"pitch":98.6875,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:46.209"} +{"sensors":[{"euler":{"heading":97.125,"pitch":158.0,"roll":61.875},"location":"Left Knee"},{"euler":{"heading":355.375,"pitch":9.0,"roll":-1.875},"location":"Left Ankle"},{"euler":{"heading":56.3125,"pitch":-94.75,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":90.375,"pitch":136.3125,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":198.625,"pitch":-69.8125,"roll":64.75},"location":"Right Knee"},{"euler":{"heading":124.4375,"pitch":103.6875,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:46.309"} +{"sensors":[{"euler":{"heading":103.25,"pitch":149.5625,"roll":61.9375},"location":"Left Knee"},{"euler":{"heading":5.8125,"pitch":13.875,"roll":-4.125},"location":"Left Ankle"},{"euler":{"heading":67.25,"pitch":-100.375,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":6.25,"pitch":136.375,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":185.75,"pitch":-45.25,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":128.4375,"pitch":108.5625,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:46.410"} +{"sensors":[{"euler":{"heading":108.1875,"pitch":141.3125,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":4.875,"pitch":9.875,"roll":-0.875},"location":"Left Ankle"},{"euler":{"heading":92.3125,"pitch":113.6875,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":0.875,"pitch":142.5625,"roll":38.5625},"location":"Right Hip"},{"euler":{"heading":166.125,"pitch":55.5,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":129.4375,"pitch":110.5,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:46.511"} +{"sensors":[{"euler":{"heading":114.5,"pitch":132.8125,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":10.1875,"pitch":7.75,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":113.0625,"pitch":99.75,"roll":56.25},"location":"Right Ankle"},{"euler":{"heading":349.4375,"pitch":144.5625,"roll":42.5},"location":"Right Hip"},{"euler":{"heading":148.625,"pitch":71.3125,"roll":58.0},"location":"Right Knee"},{"euler":{"heading":130.875,"pitch":112.75,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:46.612"} +{"sensors":[{"euler":{"heading":122.4375,"pitch":126.1875,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":19.5,"pitch":8.0,"roll":2.4375},"location":"Left Ankle"},{"euler":{"heading":108.1875,"pitch":105.0625,"roll":59.75},"location":"Right Ankle"},{"euler":{"heading":70.5,"pitch":146.75,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":144.9375,"pitch":68.8125,"roll":57.0625},"location":"Right Knee"},{"euler":{"heading":132.25,"pitch":115.375,"roll":69.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:46.713"} +{"sensors":[{"euler":{"heading":41.875,"pitch":123.1875,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":33.875,"pitch":-0.375,"roll":5.4375},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":101.1875,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":75.75,"pitch":142.75,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":147.8125,"pitch":64.375,"roll":65.125},"location":"Right Knee"},{"euler":{"heading":127.8125,"pitch":110.8125,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:46.814"} +{"sensors":[{"euler":{"heading":57.3125,"pitch":121.375,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":46.25,"pitch":-1.875,"roll":7.5},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":106.5,"roll":72.5},"location":"Right Ankle"},{"euler":{"heading":70.4375,"pitch":142.625,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":149.4375,"pitch":66.75,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":116.6875,"pitch":96.5625,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:46.915"} +{"sensors":[{"euler":{"heading":41.5625,"pitch":131.0625,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":30.75,"pitch":-1.1875,"roll":-0.1875},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":97.75,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":72.875,"pitch":139.0625,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":153.1875,"pitch":61.875,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":110.9375,"pitch":95.9375,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:47.16"} +{"sensors":[{"euler":{"heading":89.4375,"pitch":154.9375,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":3.3125,"pitch":-3.375,"roll":3.125},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":92.25,"roll":79.4375},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":136.875,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":157.8125,"pitch":48.4375,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":108.5625,"pitch":95.0,"roll":44.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:47.117"} +{"sensors":[{"euler":{"heading":64.0625,"pitch":-173.625,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":337.125,"pitch":-2.5625,"roll":6.25},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":4.375,"roll":85.5},"location":"Right Ankle"},{"euler":{"heading":76.4375,"pitch":136.625,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":162.375,"pitch":0.875,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":127.75,"pitch":97.125,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:47.218"} +{"sensors":[{"euler":{"heading":61.1875,"pitch":-168.3125,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":334.5625,"pitch":-1.625,"roll":4.9375},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":-4.6875,"roll":84.625},"location":"Right Ankle"},{"euler":{"heading":76.125,"pitch":137.375,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":-51.4375,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":115.75,"pitch":98.6875,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:47.318"} +{"sensors":[{"euler":{"heading":79.375,"pitch":175.1875,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":345.0,"pitch":2.5,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":62.125,"pitch":-87.875,"roll":72.5625},"location":"Right Ankle"},{"euler":{"heading":78.3125,"pitch":138.4375,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":186.8125,"pitch":-75.6875,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":119.625,"pitch":99.8125,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:47.419"} +{"sensors":[{"euler":{"heading":92.1875,"pitch":162.875,"roll":60.625},"location":"Left Knee"},{"euler":{"heading":352.0,"pitch":6.4375,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":49.9375,"pitch":-89.625,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":83.25,"pitch":136.4375,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":195.5625,"pitch":-76.4375,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":123.25,"pitch":99.875,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:47.520"} +{"sensors":[{"euler":{"heading":99.3125,"pitch":153.8125,"roll":60.6875},"location":"Left Knee"},{"euler":{"heading":356.5,"pitch":8.1875,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":54.4375,"pitch":-93.9375,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":91.8125,"pitch":136.8125,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":191.6875,"pitch":-68.1875,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":126.8125,"pitch":105.4375,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:47.621"} +{"sensors":[{"euler":{"heading":107.25,"pitch":145.4375,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":2.1875,"pitch":11.3125,"roll":-2.0625},"location":"Left Ankle"},{"euler":{"heading":75.375,"pitch":-174.375,"roll":83.5625},"location":"Right Ankle"},{"euler":{"heading":4.125,"pitch":141.125,"roll":38.0625},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":-0.5625,"roll":80.625},"location":"Right Knee"},{"euler":{"heading":130.5625,"pitch":108.125,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:47.721"} +{"sensors":[{"euler":{"heading":114.25,"pitch":136.25,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":6.75,"pitch":10.8125,"roll":-0.125},"location":"Left Ankle"},{"euler":{"heading":102.125,"pitch":102.25,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":355.375,"pitch":144.5,"roll":38.9375},"location":"Right Hip"},{"euler":{"heading":157.4375,"pitch":70.1875,"roll":67.125},"location":"Right Knee"},{"euler":{"heading":131.0625,"pitch":108.625,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:47.822"} +{"sensors":[{"euler":{"heading":121.375,"pitch":128.6875,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":13.3125,"pitch":11.0,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":117.625,"pitch":103.25,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":71.9375,"pitch":146.5,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":144.4375,"pitch":74.5625,"roll":55.875},"location":"Right Knee"},{"euler":{"heading":132.625,"pitch":110.0,"roll":68.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:47.923"} +{"sensors":[{"euler":{"heading":39.75,"pitch":122.625,"roll":44.1875},"location":"Left Knee"},{"euler":{"heading":23.5,"pitch":8.625,"roll":2.9375},"location":"Left Ankle"},{"euler":{"heading":106.9375,"pitch":105.9375,"roll":59.9375},"location":"Right Ankle"},{"euler":{"heading":69.375,"pitch":145.875,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":145.3125,"pitch":67.0,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":133.75,"pitch":111.6875,"roll":69.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:48.23"} +{"sensors":[{"euler":{"heading":52.0,"pitch":122.625,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":42.0625,"pitch":3.5,"roll":6.4375},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":105.0625,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":68.875,"pitch":143.75,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":146.25,"pitch":61.875,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":121.75,"pitch":106.125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:48.124"} +{"sensors":[{"euler":{"heading":54.125,"pitch":126.0,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":41.1875,"pitch":-2.1875,"roll":5.1875},"location":"Left Ankle"},{"euler":{"heading":88.1875,"pitch":105.5,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":66.625,"pitch":141.5625,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":148.5,"pitch":59.3125,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":112.5625,"pitch":96.25,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:48.225"} +{"sensors":[{"euler":{"heading":109.8125,"pitch":143.625,"roll":45.5},"location":"Left Knee"},{"euler":{"heading":16.4375,"pitch":-2.25,"roll":1.625},"location":"Left Ankle"},{"euler":{"heading":84.125,"pitch":98.375,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":70.1875,"pitch":138.9375,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":152.625,"pitch":55.1875,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":108.5,"pitch":95.5625,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:48.325"} +{"sensors":[{"euler":{"heading":73.1875,"pitch":172.9375,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":348.4375,"pitch":-3.9375,"roll":6.8125},"location":"Left Ankle"},{"euler":{"heading":79.5,"pitch":89.25,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":72.8125,"pitch":137.875,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":158.5,"pitch":35.9375,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":110.1875,"pitch":95.625,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:48.426"} +{"sensors":[{"euler":{"heading":60.3125,"pitch":-168.1875,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":333.375,"pitch":-4.9375,"roll":5.5625},"location":"Left Ankle"},{"euler":{"heading":72.75,"pitch":1.5625,"roll":87.625},"location":"Right Ankle"},{"euler":{"heading":73.9375,"pitch":137.125,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":166.25,"pitch":-2.5625,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":115.8125,"pitch":98.375,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:48.528"} +{"sensors":[{"euler":{"heading":72.875,"pitch":-178.1875,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":341.0,"pitch":0.375,"roll":4.1875},"location":"Left Ankle"},{"euler":{"heading":65.9375,"pitch":-81.25,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":76.0625,"pitch":138.0625,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":179.375,"pitch":-73.5,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":119.25,"pitch":99.4375,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:48.629"} +{"sensors":[{"euler":{"heading":87.0625,"pitch":167.125,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":350.8125,"pitch":4.25,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":53.0,"pitch":-87.9375,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":83.5,"pitch":137.625,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":194.0,"pitch":-78.9375,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":119.0625,"pitch":98.625,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:48.730"} +{"sensors":[{"euler":{"heading":97.5625,"pitch":156.75,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":356.5,"pitch":7.9375,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":53.1875,"pitch":-93.5,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":90.4375,"pitch":136.875,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":195.375,"pitch":-72.25,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":123.4375,"pitch":102.5,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:48.831"} +{"sensors":[{"euler":{"heading":103.375,"pitch":148.6875,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":5.9375,"pitch":10.8125,"roll":-3.625},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-103.5625,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":5.375,"pitch":140.0,"roll":38.6875},"location":"Right Hip"},{"euler":{"heading":183.875,"pitch":-41.6875,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":128.625,"pitch":106.875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:48.932"} +{"sensors":[{"euler":{"heading":109.9375,"pitch":140.25,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":8.4375,"pitch":9.375,"roll":-1.0},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":109.4375,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":357.0,"pitch":145.125,"roll":38.0},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":62.5625,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":130.8125,"pitch":110.1875,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:49.33"} +{"sensors":[{"euler":{"heading":117.0625,"pitch":132.25,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":13.625,"pitch":7.9375,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":120.0625,"pitch":97.6875,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":343.875,"pitch":146.1875,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":150.25,"pitch":78.0,"roll":59.1875},"location":"Right Knee"},{"euler":{"heading":132.375,"pitch":111.875,"roll":68.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:49.135"} +{"sensors":[{"euler":{"heading":127.25,"pitch":124.5,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":23.3125,"pitch":6.9375,"roll":2.8125},"location":"Left Ankle"},{"euler":{"heading":110.9375,"pitch":100.25,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":66.9375,"pitch":146.75,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":145.4375,"pitch":72.0625,"roll":59.25},"location":"Right Knee"},{"euler":{"heading":133.375,"pitch":114.8125,"roll":69.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:49.235"} +{"sensors":[{"euler":{"heading":49.25,"pitch":123.25,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":37.5,"pitch":0.8125,"roll":5.1875},"location":"Left Ankle"},{"euler":{"heading":101.3125,"pitch":97.875,"roll":64.875},"location":"Right Ankle"},{"euler":{"heading":68.3125,"pitch":145.375,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":147.0,"pitch":68.25,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":124.1875,"pitch":106.3125,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:49.336"} +{"sensors":[{"euler":{"heading":54.3125,"pitch":123.75,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":44.4375,"pitch":-4.5,"roll":6.75},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":95.875,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":65.8125,"pitch":143.8125,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":150.0,"pitch":65.25,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":112.5,"pitch":95.0,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:49.437"} +{"sensors":[{"euler":{"heading":28.0,"pitch":138.375,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":24.9375,"pitch":-1.5,"roll":-2.0625},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":95.0625,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":70.5,"pitch":140.125,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":61.5625,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":108.8125,"pitch":95.6875,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:49.537"} +{"sensors":[{"euler":{"heading":78.375,"pitch":166.375,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":351.75,"pitch":-4.875,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":91.5625,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":73.3125,"pitch":139.0625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":161.0625,"pitch":48.875,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":110.1875,"pitch":95.0,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:49.638"} +{"sensors":[{"euler":{"heading":57.125,"pitch":-165.875,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":331.1875,"pitch":-8.8125,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":80.0625,"pitch":5.0,"roll":84.75},"location":"Right Ankle"},{"euler":{"heading":73.75,"pitch":138.625,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":167.9375,"pitch":-0.6875,"roll":85.625},"location":"Right Knee"},{"euler":{"heading":115.75,"pitch":97.1875,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:49.739"} +{"sensors":[{"euler":{"heading":69.5625,"pitch":-174.9375,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":339.0,"pitch":-2.4375,"roll":3.25},"location":"Left Ankle"},{"euler":{"heading":73.4375,"pitch":-5.1875,"roll":84.625},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":140.875,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":179.9375,"pitch":-70.0625,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":119.9375,"pitch":97.8125,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:49.840"} +{"sensors":[{"euler":{"heading":80.8125,"pitch":171.875,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":347.625,"pitch":-0.0625,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":58.75,"pitch":-90.9375,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":81.4375,"pitch":139.3125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":193.8125,"pitch":-80.125,"roll":67.6875},"location":"Right Knee"},{"euler":{"heading":118.4375,"pitch":99.625,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:49.941"} +{"sensors":[{"euler":{"heading":87.0625,"pitch":160.0625,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":352.25,"pitch":0.0625,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":54.6875,"pitch":-94.8125,"roll":62.5},"location":"Right Ankle"},{"euler":{"heading":88.9375,"pitch":136.3125,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":196.0,"pitch":-71.25,"roll":64.8125},"location":"Right Knee"},{"euler":{"heading":121.1875,"pitch":102.75,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:50.42"} +{"sensors":[{"euler":{"heading":91.125,"pitch":151.0,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":2.9375,"pitch":2.0625,"roll":-2.75},"location":"Left Ankle"},{"euler":{"heading":65.8125,"pitch":-102.125,"roll":74.0625},"location":"Right Ankle"},{"euler":{"heading":4.0625,"pitch":138.75,"roll":41.0},"location":"Right Hip"},{"euler":{"heading":182.1875,"pitch":-32.5625,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":124.125,"pitch":105.625,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:50.143"} +{"sensors":[{"euler":{"heading":95.8125,"pitch":143.9375,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":6.25,"pitch":-0.0625,"roll":-0.6875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":117.0,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":1.875,"pitch":142.625,"roll":38.3125},"location":"Right Hip"},{"euler":{"heading":163.9375,"pitch":62.0,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":126.375,"pitch":108.5625,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:50.244"} +{"sensors":[{"euler":{"heading":105.8125,"pitch":135.5625,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":11.5625,"pitch":0.25,"roll":-0.0625},"location":"Left Ankle"},{"euler":{"heading":117.0625,"pitch":97.9375,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":351.75,"pitch":143.375,"roll":42.75},"location":"Right Hip"},{"euler":{"heading":151.25,"pitch":80.0,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":129.9375,"pitch":110.3125,"roll":67.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:50.344"} +{"sensors":[{"euler":{"heading":116.375,"pitch":128.5,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":19.5625,"pitch":1.3125,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":117.8125,"pitch":95.6875,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":72.875,"pitch":144.875,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":146.6875,"pitch":76.25,"roll":57.75},"location":"Right Knee"},{"euler":{"heading":133.1875,"pitch":114.8125,"roll":70.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:50.445"} +{"sensors":[{"euler":{"heading":39.8125,"pitch":123.6875,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":29.3125,"pitch":-2.375,"roll":2.0},"location":"Left Ankle"},{"euler":{"heading":105.9375,"pitch":95.625,"roll":63.125},"location":"Right Ankle"},{"euler":{"heading":73.625,"pitch":143.4375,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":149.25,"pitch":70.875,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":131.0625,"pitch":111.0625,"roll":67.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:50.545"} +{"sensors":[{"euler":{"heading":58.1875,"pitch":121.0,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":43.1875,"pitch":-0.4375,"roll":7.0625},"location":"Left Ankle"},{"euler":{"heading":101.5,"pitch":99.125,"roll":67.6875},"location":"Right Ankle"},{"euler":{"heading":70.375,"pitch":142.875,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":151.5,"pitch":72.4375,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":119.875,"pitch":97.4375,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:50.648"} +{"sensors":[{"euler":{"heading":38.5,"pitch":133.75,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":26.9375,"pitch":0.125,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":94.25,"pitch":94.8125,"roll":72.5625},"location":"Right Ankle"},{"euler":{"heading":73.9375,"pitch":139.1875,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":67.0625,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":113.3125,"pitch":96.375,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:50.748"} +{"sensors":[{"euler":{"heading":85.5625,"pitch":158.9375,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":358.5,"pitch":-2.75,"roll":2.0},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":92.25,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":76.5625,"pitch":137.5,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":158.75,"pitch":56.0,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":112.0,"pitch":95.375,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:50.849"} +{"sensors":[{"euler":{"heading":66.375,"pitch":-172.3125,"roll":61.0625},"location":"Left Knee"},{"euler":{"heading":336.625,"pitch":-1.8125,"roll":4.1875},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":6.6875,"roll":83.25},"location":"Right Ankle"},{"euler":{"heading":77.8125,"pitch":136.1875,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":1.875,"roll":84.4375},"location":"Right Knee"},{"euler":{"heading":116.5,"pitch":97.875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:50.949"} +{"sensors":[{"euler":{"heading":76.9375,"pitch":179.875,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":342.0625,"pitch":2.1875,"roll":4.0},"location":"Left Ankle"},{"euler":{"heading":73.125,"pitch":-5.0,"roll":84.875},"location":"Right Ankle"},{"euler":{"heading":79.5625,"pitch":137.3125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":177.5,"pitch":-64.125,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":119.9375,"pitch":98.75,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:51.50"} +{"sensors":[{"euler":{"heading":86.375,"pitch":168.3125,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":349.25,"pitch":4.75,"roll":-0.4375},"location":"Left Ankle"},{"euler":{"heading":59.5625,"pitch":-93.75,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":87.5,"pitch":135.625,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":192.875,"pitch":-76.9375,"roll":69.6875},"location":"Right Knee"},{"euler":{"heading":119.375,"pitch":99.5,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:51.151"} +{"sensors":[{"euler":{"heading":91.9375,"pitch":158.375,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":358.75,"pitch":3.9375,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":-97.3125,"roll":65.8125},"location":"Right Ankle"},{"euler":{"heading":94.0625,"pitch":135.625,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":191.25,"pitch":-66.3125,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":123.375,"pitch":105.0625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:51.251"} +{"sensors":[{"euler":{"heading":96.9375,"pitch":149.4375,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":3.4375,"pitch":5.375,"roll":-1.75},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":-124.0625,"roll":80.75},"location":"Right Ankle"},{"euler":{"heading":5.5,"pitch":139.25,"roll":39.125},"location":"Right Hip"},{"euler":{"heading":179.1875,"pitch":-10.0625,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":126.375,"pitch":107.5,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:51.352"} +{"sensors":[{"euler":{"heading":103.5,"pitch":141.5,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":6.8125,"pitch":3.375,"roll":1.375},"location":"Left Ankle"},{"euler":{"heading":99.75,"pitch":112.5,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":0.3125,"pitch":143.25,"roll":38.5},"location":"Right Hip"},{"euler":{"heading":161.625,"pitch":66.0625,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":127.6875,"pitch":110.0,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:51.453"} +{"sensors":[{"euler":{"heading":113.1875,"pitch":133.625,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":12.9375,"pitch":4.9375,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":119.125,"pitch":99.5625,"roll":53.125},"location":"Right Ankle"},{"euler":{"heading":349.0,"pitch":144.25,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":148.8125,"pitch":76.875,"roll":56.75},"location":"Right Knee"},{"euler":{"heading":131.75,"pitch":113.625,"roll":67.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:51.553"} +{"sensors":[{"euler":{"heading":122.875,"pitch":127.625,"roll":45.1875},"location":"Left Knee"},{"euler":{"heading":22.25,"pitch":5.375,"roll":2.4375},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":98.4375,"roll":59.0},"location":"Right Ankle"},{"euler":{"heading":72.875,"pitch":146.0,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":148.75,"pitch":74.375,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":134.625,"pitch":118.75,"roll":69.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:51.654"} +{"sensors":[{"euler":{"heading":48.3125,"pitch":124.4375,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":35.8125,"pitch":-1.375,"roll":7.4375},"location":"Left Ankle"},{"euler":{"heading":102.5,"pitch":97.0,"roll":67.0},"location":"Right Ankle"},{"euler":{"heading":76.0,"pitch":143.25,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":151.9375,"pitch":70.9375,"roll":66.8125},"location":"Right Knee"},{"euler":{"heading":123.9375,"pitch":111.0,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:51.755"} +{"sensors":[{"euler":{"heading":56.3125,"pitch":124.4375,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":40.8125,"pitch":-1.1875,"roll":9.1875},"location":"Left Ankle"},{"euler":{"heading":98.875,"pitch":94.0625,"roll":70.6875},"location":"Right Ankle"},{"euler":{"heading":71.375,"pitch":142.875,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":154.5625,"pitch":73.0,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":114.875,"pitch":100.6875,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:51.856"} +{"sensors":[{"euler":{"heading":34.5,"pitch":136.25,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":22.6875,"pitch":0.9375,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":93.6875,"pitch":90.6875,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":75.75,"pitch":138.8125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":158.0625,"pitch":71.625,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":112.375,"pitch":100.0625,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:51.957"} +{"sensors":[{"euler":{"heading":86.6875,"pitch":160.4375,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":357.125,"pitch":-0.1875,"roll":3.6875},"location":"Left Ankle"},{"euler":{"heading":89.75,"pitch":86.375,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":76.9375,"pitch":137.875,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":63.0,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":112.25,"pitch":97.9375,"roll":46.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:52.58"} +{"sensors":[{"euler":{"heading":65.4375,"pitch":-172.1875,"roll":61.6875},"location":"Left Knee"},{"euler":{"heading":335.1875,"pitch":-2.5625,"roll":2.9375},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":2.75,"roll":86.8125},"location":"Right Ankle"},{"euler":{"heading":78.0,"pitch":138.0,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":171.25,"pitch":-0.625,"roll":86.9375},"location":"Right Knee"},{"euler":{"heading":118.1875,"pitch":100.5,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:52.159"} +{"sensors":[{"euler":{"heading":73.0625,"pitch":-176.9375,"roll":61.3125},"location":"Left Knee"},{"euler":{"heading":339.3125,"pitch":1.0,"roll":2.125},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":-83.25,"roll":81.25},"location":"Right Ankle"},{"euler":{"heading":79.75,"pitch":139.4375,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":182.125,"pitch":-75.0625,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":122.0,"pitch":100.1875,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:52.260"} +{"sensors":[{"euler":{"heading":86.3125,"pitch":168.5,"roll":61.875},"location":"Left Knee"},{"euler":{"heading":349.0,"pitch":4.0625,"roll":-0.6875},"location":"Left Ankle"},{"euler":{"heading":56.3125,"pitch":-89.5625,"roll":61.125},"location":"Right Ankle"},{"euler":{"heading":87.6875,"pitch":137.4375,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":195.875,"pitch":-81.4375,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":122.5625,"pitch":101.1875,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:52.361"} +{"sensors":[{"euler":{"heading":92.625,"pitch":155.9375,"roll":61.25},"location":"Left Knee"},{"euler":{"heading":355.0625,"pitch":4.3125,"roll":-1.0},"location":"Left Ankle"},{"euler":{"heading":52.9375,"pitch":-97.0625,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":91.6875,"pitch":135.0625,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":197.3125,"pitch":-74.6875,"roll":64.9375},"location":"Right Knee"},{"euler":{"heading":123.4375,"pitch":105.3125,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:52.462"} +{"sensors":[{"euler":{"heading":96.625,"pitch":148.625,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":4.8125,"pitch":6.625,"roll":-3.75},"location":"Left Ankle"},{"euler":{"heading":67.9375,"pitch":-107.0,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":4.6875,"pitch":136.5625,"roll":41.75},"location":"Right Hip"},{"euler":{"heading":183.5625,"pitch":-41.5625,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":126.0,"pitch":108.625,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:52.562"} +{"sensors":[{"euler":{"heading":104.0,"pitch":141.3125,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":4.0625,"pitch":5.5,"roll":-1.0625},"location":"Left Ankle"},{"euler":{"heading":93.75,"pitch":118.25,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":0.6875,"pitch":141.625,"roll":39.0625},"location":"Right Hip"},{"euler":{"heading":165.4375,"pitch":53.6875,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":127.75,"pitch":109.625,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:52.663"} +{"sensors":[{"euler":{"heading":113.0625,"pitch":133.5,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":9.0625,"pitch":5.5625,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":100.0,"roll":55.0},"location":"Right Ankle"},{"euler":{"heading":350.5,"pitch":144.3125,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":151.5,"pitch":76.875,"roll":59.375},"location":"Right Knee"},{"euler":{"heading":131.25,"pitch":112.3125,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:52.763"} +{"sensors":[{"euler":{"heading":121.875,"pitch":127.3125,"roll":47.0625},"location":"Left Knee"},{"euler":{"heading":17.3125,"pitch":5.3125,"roll":1.6875},"location":"Left Ankle"},{"euler":{"heading":111.8125,"pitch":100.0,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":72.4375,"pitch":145.625,"roll":46.0},"location":"Right Hip"},{"euler":{"heading":147.75,"pitch":73.625,"roll":57.6875},"location":"Right Knee"},{"euler":{"heading":132.9375,"pitch":117.6875,"roll":68.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:52.864"} +{"sensors":[{"euler":{"heading":45.125,"pitch":123.375,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":31.0,"pitch":1.3125,"roll":4.0},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":102.3125,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":76.1875,"pitch":142.5,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":149.125,"pitch":61.5,"roll":64.25},"location":"Right Knee"},{"euler":{"heading":129.8125,"pitch":113.9375,"roll":66.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:52.964"} +{"sensors":[{"euler":{"heading":59.75,"pitch":121.6875,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":43.0,"pitch":2.3125,"roll":9.5},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":99.3125,"roll":73.5625},"location":"Right Ankle"},{"euler":{"heading":72.25,"pitch":141.5,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":150.8125,"pitch":62.1875,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":119.625,"pitch":103.6875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:53.65"} +{"sensors":[{"euler":{"heading":42.875,"pitch":132.4375,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":32.1875,"pitch":3.375,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":93.625,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":73.875,"pitch":137.4375,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":153.625,"pitch":56.25,"roll":74.625},"location":"Right Knee"},{"euler":{"heading":113.125,"pitch":100.625,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:53.167"} +{"sensors":[{"euler":{"heading":91.9375,"pitch":153.9375,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":7.375,"pitch":-1.3125,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":86.8125,"roll":80.3125},"location":"Right Ankle"},{"euler":{"heading":75.5,"pitch":136.25,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":48.0625,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":110.875,"pitch":97.875,"roll":45.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:53.267"} +{"sensors":[{"euler":{"heading":66.875,"pitch":-176.75,"roll":61.1875},"location":"Left Knee"},{"euler":{"heading":342.3125,"pitch":-3.0625,"roll":5.0},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":4.6875,"roll":84.875},"location":"Right Ankle"},{"euler":{"heading":74.75,"pitch":136.125,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":23.3125,"roll":82.125},"location":"Right Knee"},{"euler":{"heading":112.5,"pitch":99.5,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:53.367"} +{"sensors":[{"euler":{"heading":68.25,"pitch":-173.875,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":337.1875,"pitch":0.0,"roll":3.9375},"location":"Left Ankle"},{"euler":{"heading":69.875,"pitch":-3.6875,"roll":85.6875},"location":"Right Ankle"},{"euler":{"heading":75.75,"pitch":136.625,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":172.8125,"pitch":-45.625,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":118.375,"pitch":101.8125,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:53.468"} +{"sensors":[{"euler":{"heading":84.8125,"pitch":170.875,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":347.0625,"pitch":2.75,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":61.25,"pitch":-92.875,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":80.9375,"pitch":137.0625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":190.5625,"pitch":-73.75,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":120.25,"pitch":101.5625,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:53.569"} +{"sensors":[{"euler":{"heading":94.75,"pitch":159.6875,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":354.25,"pitch":7.125,"roll":-0.625},"location":"Left Ankle"},{"euler":{"heading":51.1875,"pitch":-111.5625,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":88.375,"pitch":135.0625,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":197.125,"pitch":-74.9375,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":123.6875,"pitch":105.0,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:53.669"} +{"sensors":[{"euler":{"heading":102.6875,"pitch":150.375,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":5.8125,"pitch":12.25,"roll":-3.5},"location":"Left Ankle"},{"euler":{"heading":60.25,"pitch":-97.5625,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":4.0625,"pitch":135.75,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":187.1875,"pitch":-49.4375,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":127.625,"pitch":108.6875,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:53.769"} +{"sensors":[{"euler":{"heading":109.4375,"pitch":142.4375,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":5.3125,"pitch":10.6875,"roll":-1.0},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":136.8125,"roll":84.3125},"location":"Right Ankle"},{"euler":{"heading":2.5,"pitch":141.5625,"roll":38.8125},"location":"Right Hip"},{"euler":{"heading":170.125,"pitch":50.3125,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":129.6875,"pitch":111.3125,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:53.870"} +{"sensors":[{"euler":{"heading":116.625,"pitch":133.625,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":10.1875,"pitch":10.0625,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":127.9375,"pitch":101.6875,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":351.6875,"pitch":144.5,"roll":41.6875},"location":"Right Hip"},{"euler":{"heading":152.75,"pitch":74.6875,"roll":59.25},"location":"Right Knee"},{"euler":{"heading":132.8125,"pitch":113.3125,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:53.970"} +{"sensors":[{"euler":{"heading":125.0625,"pitch":126.75,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":18.6875,"pitch":9.875,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":114.125,"pitch":100.75,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":72.6875,"pitch":145.625,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":147.875,"pitch":69.625,"roll":56.5625},"location":"Right Knee"},{"euler":{"heading":134.75,"pitch":116.5,"roll":68.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:54.71"} +{"sensors":[{"euler":{"heading":46.875,"pitch":123.625,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":34.0625,"pitch":1.625,"roll":2.875},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":101.875,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":74.4375,"pitch":143.5,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":148.5,"pitch":65.0625,"roll":63.8125},"location":"Right Knee"},{"euler":{"heading":126.8125,"pitch":109.9375,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:54.175"} +{"sensors":[{"euler":{"heading":58.125,"pitch":122.875,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":46.125,"pitch":0.9375,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":102.5,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":70.1875,"pitch":142.6875,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":150.9375,"pitch":65.6875,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":117.0625,"pitch":98.8125,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:54.276"} +{"sensors":[{"euler":{"heading":36.9375,"pitch":134.5,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":30.1875,"pitch":0.6875,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":100.75,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":74.6875,"pitch":138.625,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":155.75,"pitch":61.1875,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":112.375,"pitch":98.6875,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:54.377"} +{"sensors":[{"euler":{"heading":87.0625,"pitch":158.5625,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":1.4375,"pitch":-3.625,"roll":3.0625},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":95.8125,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":76.25,"pitch":137.3125,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":49.8125,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":111.75,"pitch":97.3125,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:54.477"} +{"sensors":[{"euler":{"heading":65.4375,"pitch":-172.0625,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":337.0625,"pitch":-2.4375,"roll":4.0625},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":3.6875,"roll":86.25},"location":"Right Ankle"},{"euler":{"heading":76.4375,"pitch":137.5,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":165.8125,"pitch":1.625,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":116.375,"pitch":99.8125,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:54.577"} +{"sensors":[{"euler":{"heading":72.1875,"pitch":-175.1875,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":336.5625,"pitch":1.625,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":72.4375,"pitch":-5.3125,"roll":84.5},"location":"Right Ankle"},{"euler":{"heading":77.4375,"pitch":138.25,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":174.9375,"pitch":-44.75,"roll":82.0625},"location":"Right Knee"},{"euler":{"heading":121.125,"pitch":101.625,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:54.678"} +{"sensors":[{"euler":{"heading":88.75,"pitch":170.75,"roll":60.375},"location":"Left Knee"},{"euler":{"heading":346.75,"pitch":5.6875,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-93.0625,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":83.5,"pitch":137.8125,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":192.6875,"pitch":-72.5,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":124.3125,"pitch":101.9375,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:54.779"} +{"sensors":[{"euler":{"heading":95.5625,"pitch":158.75,"roll":60.875},"location":"Left Knee"},{"euler":{"heading":354.1875,"pitch":6.875,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":52.8125,"pitch":-98.125,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":90.5,"pitch":134.75,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":196.8125,"pitch":-69.3125,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":126.75,"pitch":106.125,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:54.879"} +{"sensors":[{"euler":{"heading":99.875,"pitch":149.75,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":4.1875,"pitch":8.9375,"roll":-3.3125},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-103.375,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":5.3125,"pitch":135.875,"roll":43.6875},"location":"Right Hip"},{"euler":{"heading":187.9375,"pitch":-50.375,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":128.25,"pitch":109.0625,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:54.980"} +{"sensors":[{"euler":{"heading":104.9375,"pitch":142.5,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":4.6875,"pitch":6.5,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":148.625,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":2.625,"pitch":141.1875,"roll":39.125},"location":"Right Hip"},{"euler":{"heading":170.5,"pitch":41.125,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":129.0625,"pitch":110.4375,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:55.80"} +{"sensors":[{"euler":{"heading":114.75,"pitch":133.75,"roll":54.4375},"location":"Left Knee"},{"euler":{"heading":9.8125,"pitch":7.875,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":111.375,"pitch":102.0,"roll":60.5},"location":"Right Ankle"},{"euler":{"heading":352.8125,"pitch":144.0,"roll":41.3125},"location":"Right Hip"},{"euler":{"heading":153.875,"pitch":72.875,"roll":61.3125},"location":"Right Knee"},{"euler":{"heading":131.25,"pitch":110.875,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:55.181"} +{"sensors":[{"euler":{"heading":123.25,"pitch":126.8125,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":18.625,"pitch":8.3125,"roll":1.9375},"location":"Left Ankle"},{"euler":{"heading":114.875,"pitch":105.0,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":73.125,"pitch":145.4375,"roll":45.25},"location":"Right Hip"},{"euler":{"heading":145.0,"pitch":72.8125,"roll":53.8125},"location":"Right Knee"},{"euler":{"heading":132.375,"pitch":114.4375,"roll":68.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:55.282"} +{"sensors":[{"euler":{"heading":46.9375,"pitch":121.3125,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":30.375,"pitch":5.5,"roll":2.9375},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":111.6875,"roll":70.625},"location":"Right Ankle"},{"euler":{"heading":76.0625,"pitch":143.3125,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":147.3125,"pitch":62.25,"roll":61.4375},"location":"Right Knee"},{"euler":{"heading":132.0,"pitch":113.8125,"roll":68.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:55.383"} +{"sensors":[{"euler":{"heading":63.0,"pitch":119.5,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":44.8125,"pitch":5.0,"roll":8.6875},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":111.8125,"roll":76.3125},"location":"Right Ankle"},{"euler":{"heading":73.75,"pitch":140.875,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":147.9375,"pitch":65.25,"roll":69.25},"location":"Right Knee"},{"euler":{"heading":122.75,"pitch":101.25,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:55.483"} +{"sensors":[{"euler":{"heading":45.5,"pitch":130.625,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":33.625,"pitch":0.0,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":106.6875,"roll":77.3125},"location":"Right Ankle"},{"euler":{"heading":73.875,"pitch":136.9375,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":151.25,"pitch":60.3125,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":114.5625,"pitch":98.625,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:55.584"} +{"sensors":[{"euler":{"heading":97.375,"pitch":150.25,"roll":50.75},"location":"Left Knee"},{"euler":{"heading":8.375,"pitch":-0.6875,"roll":1.3125},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":108.6875,"roll":80.0625},"location":"Right Ankle"},{"euler":{"heading":76.1875,"pitch":135.625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":155.0625,"pitch":54.1875,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":111.875,"pitch":96.4375,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:55.685"} +{"sensors":[{"euler":{"heading":68.9375,"pitch":-179.4375,"roll":60.25},"location":"Left Knee"},{"euler":{"heading":342.25,"pitch":-2.6875,"roll":5.25},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":175.75,"roll":85.6875},"location":"Right Ankle"},{"euler":{"heading":76.125,"pitch":135.8125,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":33.625,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":114.0625,"pitch":97.6875,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:55.785"} +{"sensors":[{"euler":{"heading":64.375,"pitch":-169.5625,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":334.75,"pitch":-0.375,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":70.8125,"pitch":-3.125,"roll":86.5},"location":"Right Ankle"},{"euler":{"heading":75.6875,"pitch":135.9375,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":168.125,"pitch":-3.0625,"roll":83.625},"location":"Right Knee"},{"euler":{"heading":119.25,"pitch":100.8125,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:55.885"} +{"sensors":[{"euler":{"heading":81.4375,"pitch":176.625,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":344.4375,"pitch":5.375,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":-91.9375,"roll":74.3125},"location":"Right Ankle"},{"euler":{"heading":78.0,"pitch":136.5625,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":183.375,"pitch":-73.25,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":122.4375,"pitch":101.375,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:55.985"} +{"sensors":[{"euler":{"heading":91.8125,"pitch":163.375,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":352.0,"pitch":6.9375,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":52.0625,"pitch":-93.9375,"roll":58.5},"location":"Right Ankle"},{"euler":{"heading":86.4375,"pitch":135.875,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":193.5625,"pitch":-76.625,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":124.6875,"pitch":102.0625,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:56.86"} +{"sensors":[{"euler":{"heading":97.9375,"pitch":154.5,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":359.125,"pitch":8.0625,"roll":-0.3125},"location":"Left Ankle"},{"euler":{"heading":57.4375,"pitch":-99.875,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":93.0,"pitch":136.0,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":191.75,"pitch":-66.25,"roll":69.75},"location":"Right Knee"},{"euler":{"heading":125.5,"pitch":106.1875,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:56.186"} +{"sensors":[{"euler":{"heading":105.5625,"pitch":146.75,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":4.625,"pitch":11.0,"roll":-0.8125},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":-176.9375,"roll":83.75},"location":"Right Ankle"},{"euler":{"heading":5.0625,"pitch":139.1875,"roll":39.125},"location":"Right Hip"},{"euler":{"heading":176.1875,"pitch":1.4375,"roll":80.125},"location":"Right Knee"},{"euler":{"heading":128.8125,"pitch":108.625,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:56.287"} +{"sensors":[{"euler":{"heading":115.0625,"pitch":138.125,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":9.125,"pitch":13.125,"roll":0.125},"location":"Left Ankle"},{"euler":{"heading":105.3125,"pitch":109.4375,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":357.6875,"pitch":144.125,"roll":39.0},"location":"Right Hip"},{"euler":{"heading":158.4375,"pitch":69.9375,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":131.8125,"pitch":109.625,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:56.388"} +{"sensors":[{"euler":{"heading":122.9375,"pitch":130.1875,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":14.9375,"pitch":13.5,"roll":1.375},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":100.3125,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":347.0625,"pitch":146.4375,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":148.625,"pitch":78.8125,"roll":56.625},"location":"Right Knee"},{"euler":{"heading":134.625,"pitch":113.0625,"roll":67.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:56.489"} +{"sensors":[{"euler":{"heading":40.5,"pitch":124.25,"roll":44.3125},"location":"Left Knee"},{"euler":{"heading":25.0625,"pitch":10.25,"roll":3.0625},"location":"Left Ankle"},{"euler":{"heading":108.0625,"pitch":102.0,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":74.0,"pitch":146.25,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":147.5625,"pitch":71.125,"roll":60.125},"location":"Right Knee"},{"euler":{"heading":135.9375,"pitch":116.625,"roll":69.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:56.590"} +{"sensors":[{"euler":{"heading":53.875,"pitch":122.8125,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":42.1875,"pitch":4.75,"roll":8.75},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":100.9375,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":72.25,"pitch":144.0625,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":149.125,"pitch":68.0625,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":123.375,"pitch":106.9375,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:56.691"} +{"sensors":[{"euler":{"heading":58.0625,"pitch":125.5625,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":40.125,"pitch":1.75,"roll":7.3125},"location":"Left Ankle"},{"euler":{"heading":94.9375,"pitch":98.625,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":71.9375,"pitch":142.0625,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":153.25,"pitch":64.8125,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":115.875,"pitch":97.875,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:56.791"} +{"sensors":[{"euler":{"heading":25.75,"pitch":141.75,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":16.875,"pitch":1.875,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":96.3125,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":75.5,"pitch":138.75,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":61.0625,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":112.5,"pitch":97.6875,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:56.892"} +{"sensors":[{"euler":{"heading":78.5,"pitch":170.8125,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":347.5,"pitch":0.25,"roll":5.375},"location":"Left Ankle"},{"euler":{"heading":83.8125,"pitch":92.1875,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":77.625,"pitch":137.1875,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":162.5625,"pitch":42.6875,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":114.5625,"pitch":98.0625,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:56.993"} +{"sensors":[{"euler":{"heading":65.5,"pitch":-169.6875,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":333.75,"pitch":-0.25,"roll":3.0},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":0.5625,"roll":88.9375},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":136.9375,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":-1.625,"roll":84.0625},"location":"Right Knee"},{"euler":{"heading":119.3125,"pitch":101.25,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:57.93"} +{"sensors":[{"euler":{"heading":78.5,"pitch":178.9375,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":343.5625,"pitch":2.3125,"roll":1.9375},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":-90.3125,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":79.8125,"pitch":137.875,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":182.5625,"pitch":-69.6875,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":120.875,"pitch":101.4375,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:57.194"} +{"sensors":[{"euler":{"heading":88.6875,"pitch":165.1875,"roll":60.9375},"location":"Left Knee"},{"euler":{"heading":351.0,"pitch":5.125,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":54.125,"pitch":-93.3125,"roll":61.4375},"location":"Right Ankle"},{"euler":{"heading":87.875,"pitch":135.9375,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":192.5625,"pitch":-75.1875,"roll":67.25},"location":"Right Knee"},{"euler":{"heading":122.6875,"pitch":101.6875,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:57.295"} +{"sensors":[{"euler":{"heading":95.8125,"pitch":155.75,"roll":60.5},"location":"Left Knee"},{"euler":{"heading":1.1875,"pitch":7.375,"roll":-1.125},"location":"Left Ankle"},{"euler":{"heading":55.125,"pitch":-99.375,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":91.6875,"pitch":137.1875,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":192.5,"pitch":-63.0625,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":124.4375,"pitch":106.25,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:57.396"} +{"sensors":[{"euler":{"heading":101.8125,"pitch":147.9375,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":6.25,"pitch":9.75,"roll":-3.375},"location":"Left Ankle"},{"euler":{"heading":75.0625,"pitch":-128.0625,"roll":80.0625},"location":"Right Ankle"},{"euler":{"heading":6.4375,"pitch":139.625,"roll":39.0625},"location":"Right Hip"},{"euler":{"heading":179.375,"pitch":-7.9375,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":128.625,"pitch":110.0,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:57.497"} +{"sensors":[{"euler":{"heading":110.6875,"pitch":138.875,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":8.0,"pitch":8.8125,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":114.4375,"roll":72.4375},"location":"Right Ankle"},{"euler":{"heading":2.5625,"pitch":143.1875,"roll":37.4375},"location":"Right Hip"},{"euler":{"heading":163.0,"pitch":64.25,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":131.9375,"pitch":112.8125,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:57.598"} +{"sensors":[{"euler":{"heading":118.1875,"pitch":131.3125,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":13.25,"pitch":8.8125,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":119.25,"pitch":101.375,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":352.8125,"pitch":145.25,"roll":41.1875},"location":"Right Hip"},{"euler":{"heading":149.5,"pitch":77.0,"roll":56.0},"location":"Right Knee"},{"euler":{"heading":134.6875,"pitch":116.6875,"roll":67.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:57.699"} +{"sensors":[{"euler":{"heading":125.5,"pitch":125.8125,"roll":45.75},"location":"Left Knee"},{"euler":{"heading":22.25,"pitch":8.0625,"roll":2.375},"location":"Left Ankle"},{"euler":{"heading":110.0625,"pitch":103.6875,"roll":57.75},"location":"Right Ankle"},{"euler":{"heading":344.875,"pitch":145.375,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":146.125,"pitch":69.25,"roll":56.1875},"location":"Right Knee"},{"euler":{"heading":136.375,"pitch":122.5,"roll":70.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:57.799"} +{"sensors":[{"euler":{"heading":47.625,"pitch":123.5625,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":34.5,"pitch":2.5625,"roll":8.0},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":107.875,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":142.375,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":146.5625,"pitch":60.75,"roll":61.75},"location":"Right Knee"},{"euler":{"heading":128.8125,"pitch":114.75,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:57.900"} +{"sensors":[{"euler":{"heading":60.625,"pitch":122.25,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":43.1875,"pitch":0.875,"roll":10.9375},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":106.6875,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":72.125,"pitch":141.8125,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":150.5,"pitch":65.5625,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":117.0,"pitch":101.0,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:58.3"} +{"sensors":[{"euler":{"heading":45.125,"pitch":132.8125,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":27.3125,"pitch":4.5625,"roll":2.0},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":104.75,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":74.5,"pitch":139.3125,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":154.4375,"pitch":60.8125,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":112.875,"pitch":98.9375,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:58.104"} +{"sensors":[{"euler":{"heading":91.8125,"pitch":156.375,"roll":53.0625},"location":"Left Knee"},{"euler":{"heading":0.1875,"pitch":0.5,"roll":3.0},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":101.6875,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":137.4375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":157.9375,"pitch":48.0625,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":111.5,"pitch":97.75,"roll":44.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:58.205"} +{"sensors":[{"euler":{"heading":67.375,"pitch":-175.8125,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":337.5,"pitch":-1.5,"roll":4.5625},"location":"Left Ankle"},{"euler":{"heading":76.75,"pitch":4.8125,"roll":85.125},"location":"Right Ankle"},{"euler":{"heading":77.4375,"pitch":137.125,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":162.25,"pitch":20.75,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":114.25,"pitch":97.75,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:58.306"} +{"sensors":[{"euler":{"heading":71.5,"pitch":-175.6875,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":336.1875,"pitch":1.75,"roll":3.4375},"location":"Left Ankle"},{"euler":{"heading":70.25,"pitch":-3.8125,"roll":85.8125},"location":"Right Ankle"},{"euler":{"heading":78.5625,"pitch":137.0625,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":171.4375,"pitch":-42.0625,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":120.375,"pitch":100.625,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:58.407"} +{"sensors":[{"euler":{"heading":86.625,"pitch":169.375,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":346.3125,"pitch":4.125,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-97.3125,"roll":70.625},"location":"Right Ankle"},{"euler":{"heading":83.4375,"pitch":137.125,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":190.1875,"pitch":-75.4375,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":120.6875,"pitch":100.0,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:58.507"} +{"sensors":[{"euler":{"heading":93.1875,"pitch":156.9375,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":353.8125,"pitch":4.875,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":55.3125,"pitch":-102.125,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":89.0625,"pitch":136.0625,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":195.375,"pitch":-72.3125,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":122.625,"pitch":101.6875,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:58.608"} +{"sensors":[{"euler":{"heading":94.5625,"pitch":150.125,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":2.8125,"pitch":5.875,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":65.75,"pitch":-105.25,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":8.125,"pitch":136.875,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":183.1875,"pitch":-47.0,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":123.625,"pitch":107.4375,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:58.709"} +{"sensors":[{"euler":{"heading":104.1875,"pitch":143.0625,"roll":55.875},"location":"Left Knee"},{"euler":{"heading":5.5,"pitch":4.875,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":89.3125,"pitch":130.0,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":6.8125,"pitch":140.3125,"roll":38.125},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":53.75,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":127.8125,"pitch":110.5625,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:58.810"} +{"sensors":[{"euler":{"heading":114.6875,"pitch":135.25,"roll":52.5625},"location":"Left Knee"},{"euler":{"heading":10.8125,"pitch":7.125,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":114.5,"pitch":103.4375,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":358.0625,"pitch":142.8125,"roll":40.25},"location":"Right Hip"},{"euler":{"heading":150.125,"pitch":76.375,"roll":59.125},"location":"Right Knee"},{"euler":{"heading":130.9375,"pitch":112.875,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:58.911"} +{"sensors":[{"euler":{"heading":123.5625,"pitch":127.875,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":17.625,"pitch":8.9375,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":120.25,"pitch":100.4375,"roll":50.6875},"location":"Right Ankle"},{"euler":{"heading":348.875,"pitch":144.75,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":144.125,"pitch":74.8125,"roll":53.9375},"location":"Right Knee"},{"euler":{"heading":134.6875,"pitch":116.5,"roll":67.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:59.11"} +{"sensors":[{"euler":{"heading":44.125,"pitch":123.125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":24.9375,"pitch":4.625,"roll":3.8125},"location":"Left Ankle"},{"euler":{"heading":107.125,"pitch":102.8125,"roll":62.4375},"location":"Right Ankle"},{"euler":{"heading":79.1875,"pitch":143.6875,"roll":45.25},"location":"Right Hip"},{"euler":{"heading":148.125,"pitch":69.9375,"roll":61.75},"location":"Right Knee"},{"euler":{"heading":135.1875,"pitch":118.5625,"roll":68.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:59.112"} +{"sensors":[{"euler":{"heading":61.1875,"pitch":120.6875,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":43.4375,"pitch":1.6875,"roll":8.5625},"location":"Left Ankle"},{"euler":{"heading":101.9375,"pitch":101.0,"roll":68.375},"location":"Right Ankle"},{"euler":{"heading":76.0,"pitch":142.0625,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":152.0,"pitch":72.125,"roll":69.25},"location":"Right Knee"},{"euler":{"heading":122.5625,"pitch":107.5625,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:59.213"} +{"sensors":[{"euler":{"heading":53.75,"pitch":128.125,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":35.9375,"pitch":0.3125,"roll":6.625},"location":"Left Ankle"},{"euler":{"heading":99.125,"pitch":98.6875,"roll":72.25},"location":"Right Ankle"},{"euler":{"heading":76.5625,"pitch":139.3125,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":73.625,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":115.6875,"pitch":100.0,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:59.313"} +{"sensors":[{"euler":{"heading":107.0625,"pitch":146.125,"roll":46.875},"location":"Left Knee"},{"euler":{"heading":11.1875,"pitch":-0.0625,"roll":2.3125},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":96.25,"roll":76.3125},"location":"Right Ankle"},{"euler":{"heading":80.0625,"pitch":136.5,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":163.3125,"pitch":69.0625,"roll":80.125},"location":"Right Knee"},{"euler":{"heading":113.5625,"pitch":99.1875,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:59.414"} +{"sensors":[{"euler":{"heading":73.5,"pitch":176.0,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":343.5625,"pitch":-0.375,"roll":4.75},"location":"Left Ankle"},{"euler":{"heading":86.5,"pitch":94.5625,"roll":81.9375},"location":"Right Ankle"},{"euler":{"heading":79.75,"pitch":135.125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":3.8125,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":115.0,"pitch":98.9375,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:59.515"} +{"sensors":[{"euler":{"heading":61.5625,"pitch":-167.5625,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":331.5,"pitch":-2.8125,"roll":2.4375},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":-0.75,"roll":89.3125},"location":"Right Ankle"},{"euler":{"heading":80.5,"pitch":136.25,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":171.5,"pitch":-3.5625,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":118.5625,"pitch":101.1875,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:59.615"} +{"sensors":[{"euler":{"heading":78.0625,"pitch":176.9375,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":342.0625,"pitch":2.375,"roll":2.1875},"location":"Left Ankle"},{"euler":{"heading":70.25,"pitch":-94.375,"roll":78.375},"location":"Right Ankle"},{"euler":{"heading":81.1875,"pitch":136.3125,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":185.5,"pitch":-75.5625,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":121.125,"pitch":101.5625,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:59.716"} +{"sensors":[{"euler":{"heading":91.25,"pitch":162.875,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":350.6875,"pitch":6.5625,"roll":-0.625},"location":"Left Ankle"},{"euler":{"heading":54.5,"pitch":-95.125,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":88.25,"pitch":134.5,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":195.375,"pitch":-77.1875,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":121.9375,"pitch":100.125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:59.817"} +{"sensors":[{"euler":{"heading":102.375,"pitch":153.5625,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":1.1875,"pitch":11.1875,"roll":-1.8125},"location":"Left Ankle"},{"euler":{"heading":57.5625,"pitch":-99.0625,"roll":62.5},"location":"Right Ankle"},{"euler":{"heading":5.125,"pitch":137.0625,"roll":44.25},"location":"Right Hip"},{"euler":{"heading":191.5625,"pitch":-64.375,"roll":69.9375},"location":"Right Knee"},{"euler":{"heading":125.5625,"pitch":104.3125,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:35:59.918"} +{"sensors":[{"euler":{"heading":108.4375,"pitch":146.0,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":6.125,"pitch":14.625,"roll":-4.125},"location":"Left Ankle"},{"euler":{"heading":77.875,"pitch":-130.3125,"roll":82.625},"location":"Right Ankle"},{"euler":{"heading":9.4375,"pitch":139.4375,"roll":37.4375},"location":"Right Hip"},{"euler":{"heading":178.6875,"pitch":9.5625,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":129.875,"pitch":108.1875,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:00.18"} +{"sensors":[{"euler":{"heading":116.0625,"pitch":137.4375,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":7.0625,"pitch":12.0625,"roll":-1.0},"location":"Left Ankle"},{"euler":{"heading":106.375,"pitch":108.0625,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":0.1875,"pitch":143.375,"roll":38.5},"location":"Right Hip"},{"euler":{"heading":158.125,"pitch":72.375,"roll":65.25},"location":"Right Knee"},{"euler":{"heading":132.25,"pitch":110.3125,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:00.119"} +{"sensors":[{"euler":{"heading":124.4375,"pitch":129.3125,"roll":51.0},"location":"Left Knee"},{"euler":{"heading":13.1875,"pitch":12.3125,"roll":1.4375},"location":"Left Ankle"},{"euler":{"heading":121.9375,"pitch":102.1875,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":348.5625,"pitch":145.8125,"roll":43.125},"location":"Right Hip"},{"euler":{"heading":146.625,"pitch":76.1875,"roll":54.75},"location":"Right Knee"},{"euler":{"heading":133.3125,"pitch":111.5,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:00.221"} +{"sensors":[{"euler":{"heading":43.625,"pitch":123.8125,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":21.5625,"pitch":11.3125,"roll":2.9375},"location":"Left Ankle"},{"euler":{"heading":109.5,"pitch":105.75,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":73.4375,"pitch":145.9375,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":145.3125,"pitch":67.875,"roll":58.5625},"location":"Right Knee"},{"euler":{"heading":132.75,"pitch":114.6875,"roll":67.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:00.321"} +{"sensors":[{"euler":{"heading":58.6875,"pitch":121.9375,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":42.3125,"pitch":3.6875,"roll":6.375},"location":"Left Ankle"},{"euler":{"heading":96.875,"pitch":105.5625,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":142.75,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":147.125,"pitch":61.8125,"roll":65.4375},"location":"Right Knee"},{"euler":{"heading":120.6875,"pitch":106.875,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:00.422"} +{"sensors":[{"euler":{"heading":57.375,"pitch":125.625,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":40.75,"pitch":-1.75,"roll":4.5625},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":103.25,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":73.625,"pitch":140.375,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":150.9375,"pitch":59.375,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":111.9375,"pitch":98.875,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:00.523"} +{"sensors":[{"euler":{"heading":23.0625,"pitch":143.25,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":14.375,"pitch":-1.5,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":101.25,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":77.6875,"pitch":136.875,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":155.5625,"pitch":55.9375,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":110.0,"pitch":98.8125,"roll":43.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:00.624"} +{"sensors":[{"euler":{"heading":79.0,"pitch":171.0,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":345.8125,"pitch":-0.25,"roll":5.5625},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":99.125,"roll":80.0625},"location":"Right Ankle"},{"euler":{"heading":79.375,"pitch":135.625,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":35.25,"roll":80.75},"location":"Right Knee"},{"euler":{"heading":112.4375,"pitch":99.125,"roll":44.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:00.725"} +{"sensors":[{"euler":{"heading":69.125,"pitch":-172.875,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":333.625,"pitch":1.3125,"roll":2.875},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":177.6875,"roll":87.625},"location":"Right Ankle"},{"euler":{"heading":80.75,"pitch":134.75,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":168.6875,"pitch":-1.5625,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":119.125,"pitch":103.0,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:00.825"} +{"sensors":[{"euler":{"heading":84.1875,"pitch":174.875,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":343.5,"pitch":4.8125,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-92.9375,"roll":80.0625},"location":"Right Ankle"},{"euler":{"heading":83.375,"pitch":134.3125,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":183.5625,"pitch":-68.0625,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":121.8125,"pitch":103.6875,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:00.926"} +{"sensors":[{"euler":{"heading":97.3125,"pitch":162.1875,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":350.6875,"pitch":9.75,"roll":-2.125},"location":"Left Ankle"},{"euler":{"heading":56.125,"pitch":-96.0,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":92.8125,"pitch":132.625,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":195.3125,"pitch":-75.0625,"roll":66.375},"location":"Right Knee"},{"euler":{"heading":125.5,"pitch":105.3125,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:01.27"} +{"sensors":[{"euler":{"heading":105.375,"pitch":153.0625,"roll":59.8125},"location":"Left Knee"},{"euler":{"heading":1.6875,"pitch":14.0,"roll":-3.3125},"location":"Left Ankle"},{"euler":{"heading":61.375,"pitch":-100.125,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":8.75,"pitch":134.125,"roll":43.9375},"location":"Right Hip"},{"euler":{"heading":192.6875,"pitch":-63.1875,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":128.3125,"pitch":110.125,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:01.128"} +{"sensors":[{"euler":{"heading":110.625,"pitch":144.0,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":3.5625,"pitch":14.125,"roll":-4.1875},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":-176.6875,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":9.0,"pitch":138.4375,"roll":38.0},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":22.5,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":130.0,"pitch":111.9375,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:01.228"} +{"sensors":[{"euler":{"heading":117.625,"pitch":136.25,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":101.5625,"pitch":11.25,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":106.8125,"pitch":107.4375,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":359.75,"pitch":142.5625,"roll":39.3125},"location":"Right Hip"},{"euler":{"heading":156.875,"pitch":71.875,"roll":63.375},"location":"Right Knee"},{"euler":{"heading":131.3125,"pitch":113.5,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:01.330"} +{"sensors":[{"euler":{"heading":125.0,"pitch":129.0625,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":107.8125,"pitch":11.5,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":119.4375,"pitch":102.3125,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":346.5,"pitch":145.6875,"roll":44.125},"location":"Right Hip"},{"euler":{"heading":146.25,"pitch":75.875,"roll":53.75},"location":"Right Knee"},{"euler":{"heading":133.5625,"pitch":115.0,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:01.430"} +{"sensors":[{"euler":{"heading":44.6875,"pitch":123.8125,"roll":42.0},"location":"Left Knee"},{"euler":{"heading":118.3125,"pitch":10.5625,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":105.4375,"pitch":96.625,"roll":62.6875},"location":"Right Ankle"},{"euler":{"heading":73.9375,"pitch":145.4375,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":146.0625,"pitch":67.0625,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":135.3125,"pitch":117.4375,"roll":68.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:01.531"} +{"sensors":[{"euler":{"heading":57.5625,"pitch":123.375,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":137.8125,"pitch":5.4375,"roll":6.625},"location":"Left Ankle"},{"euler":{"heading":97.0,"pitch":103.1875,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":74.8125,"pitch":142.625,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":149.625,"pitch":64.125,"roll":66.1875},"location":"Right Knee"},{"euler":{"heading":120.875,"pitch":109.3125,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:01.635"} +{"sensors":[{"euler":{"heading":61.0625,"pitch":124.75,"roll":28.0625},"location":"Left Knee"},{"euler":{"heading":137.25,"pitch":1.5625,"roll":8.9375},"location":"Left Ankle"},{"euler":{"heading":92.875,"pitch":101.75,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":72.25,"pitch":140.8125,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":151.9375,"pitch":63.0625,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":114.0625,"pitch":101.25,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:01.736"} +{"sensors":[{"euler":{"heading":33.125,"pitch":138.75,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":113.125,"pitch":1.5625,"roll":-0.75},"location":"Left Ankle"},{"euler":{"heading":88.1875,"pitch":101.125,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":75.4375,"pitch":137.9375,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":155.5625,"pitch":57.6875,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":111.25,"pitch":99.3125,"roll":44.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:01.836"} +{"sensors":[{"euler":{"heading":84.3125,"pitch":164.25,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":85.4375,"pitch":-0.3125,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":94.8125,"roll":82.6875},"location":"Right Ankle"},{"euler":{"heading":75.5,"pitch":137.4375,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":159.9375,"pitch":39.3125,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":127.9375,"pitch":98.8125,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:01.937"} +{"sensors":[{"euler":{"heading":69.0,"pitch":-175.25,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":70.4375,"pitch":-1.625,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":74.875,"pitch":0.0625,"roll":89.375},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":136.5625,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":166.9375,"pitch":-1.5625,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":118.1875,"pitch":101.6875,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:02.38"} +{"sensors":[{"euler":{"heading":84.25,"pitch":172.625,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":79.9375,"pitch":1.875,"roll":-1.0},"location":"Left Ankle"},{"euler":{"heading":67.8125,"pitch":-92.125,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":78.4375,"pitch":137.0,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":181.125,"pitch":-69.0,"roll":77.25},"location":"Right Knee"},{"euler":{"heading":120.125,"pitch":101.875,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:02.138"} +{"sensors":[{"euler":{"heading":98.375,"pitch":159.0,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":88.5,"pitch":8.1875,"roll":-4.5},"location":"Left Ankle"},{"euler":{"heading":56.4375,"pitch":-97.6875,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":85.4375,"pitch":135.4375,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":196.0,"pitch":-78.8125,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":122.0625,"pitch":100.125,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:02.239"} +{"sensors":[{"euler":{"heading":103.75,"pitch":149.875,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":101.9375,"pitch":11.375,"roll":-1.375},"location":"Left Ankle"},{"euler":{"heading":59.5625,"pitch":-99.75,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":94.75,"pitch":136.0,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":193.4375,"pitch":-72.3125,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":123.0,"pitch":107.75,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:02.340"} +{"sensors":[{"euler":{"heading":110.5625,"pitch":143.5625,"roll":56.375},"location":"Left Knee"},{"euler":{"heading":103.375,"pitch":14.0625,"roll":-3.9375},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":-129.875,"roll":79.8125},"location":"Right Ankle"},{"euler":{"heading":5.875,"pitch":137.9375,"roll":40.375},"location":"Right Hip"},{"euler":{"heading":179.6875,"pitch":10.0,"roll":81.0625},"location":"Right Knee"},{"euler":{"heading":128.5625,"pitch":112.4375,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:02.441"} +{"sensors":[{"euler":{"heading":118.3125,"pitch":136.125,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":12.375,"roll":-0.1875},"location":"Left Ankle"},{"euler":{"heading":105.875,"pitch":115.875,"roll":67.875},"location":"Right Ankle"},{"euler":{"heading":356.875,"pitch":142.3125,"roll":40.75},"location":"Right Hip"},{"euler":{"heading":159.375,"pitch":68.1875,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":131.0,"pitch":114.9375,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:02.542"} +{"sensors":[{"euler":{"heading":125.9375,"pitch":129.125,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":110.5,"pitch":11.75,"roll":1.6875},"location":"Left Ankle"},{"euler":{"heading":118.6875,"pitch":103.125,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":347.25,"pitch":146.1875,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":147.0,"pitch":74.75,"roll":53.8125},"location":"Right Knee"},{"euler":{"heading":134.875,"pitch":119.0625,"roll":67.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:02.643"} +{"sensors":[{"euler":{"heading":46.25,"pitch":123.25,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":123.125,"pitch":9.375,"roll":3.375},"location":"Left Ankle"},{"euler":{"heading":103.8125,"pitch":106.9375,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":75.3125,"pitch":144.75,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":145.0,"pitch":64.0,"roll":58.125},"location":"Right Knee"},{"euler":{"heading":136.0625,"pitch":119.3125,"roll":68.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:02.744"} +{"sensors":[{"euler":{"heading":61.875,"pitch":121.5625,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":141.8125,"pitch":5.4375,"roll":8.3125},"location":"Left Ankle"},{"euler":{"heading":96.4375,"pitch":105.0625,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":75.875,"pitch":142.3125,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":150.0625,"pitch":65.1875,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":120.0625,"pitch":106.0,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:02.845"} +{"sensors":[{"euler":{"heading":61.0625,"pitch":126.125,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":139.375,"pitch":1.6875,"roll":4.8125},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":104.9375,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":74.0625,"pitch":139.0625,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":151.625,"pitch":61.0,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":113.0,"pitch":99.0,"roll":32.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:02.947"} +{"sensors":[{"euler":{"heading":22.9375,"pitch":142.4375,"roll":44.25},"location":"Left Knee"},{"euler":{"heading":114.3125,"pitch":-1.375,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":84.6875,"pitch":103.625,"roll":78.9375},"location":"Right Ankle"},{"euler":{"heading":77.75,"pitch":136.25,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":155.1875,"pitch":54.4375,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":110.375,"pitch":97.8125,"roll":43.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:03.47"} +{"sensors":[{"euler":{"heading":79.0,"pitch":170.0,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":84.25,"pitch":-0.6875,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":78.5625,"pitch":174.3125,"roll":84.25},"location":"Right Ankle"},{"euler":{"heading":78.9375,"pitch":134.9375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":33.1875,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":112.4375,"pitch":99.3125,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:03.149"} +{"sensors":[{"euler":{"heading":69.5,"pitch":-173.8125,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":71.125,"pitch":0.625,"roll":2.5},"location":"Left Ankle"},{"euler":{"heading":71.625,"pitch":-1.75,"roll":88.125},"location":"Right Ankle"},{"euler":{"heading":79.9375,"pitch":134.4375,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":167.125,"pitch":-1.3125,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":119.625,"pitch":103.5625,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:03.250"} +{"sensors":[{"euler":{"heading":82.75,"pitch":174.5,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":80.3125,"pitch":2.25,"roll":1.375},"location":"Left Ankle"},{"euler":{"heading":65.625,"pitch":-95.3125,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":82.125,"pitch":133.9375,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":181.3125,"pitch":-66.1875,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":122.375,"pitch":102.75,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:03.351"} +{"sensors":[{"euler":{"heading":92.625,"pitch":161.25,"roll":60.0},"location":"Left Knee"},{"euler":{"heading":86.75,"pitch":4.5,"roll":-0.3125},"location":"Left Ankle"},{"euler":{"heading":55.4375,"pitch":-98.0625,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":92.125,"pitch":132.375,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":194.9375,"pitch":-69.9375,"roll":67.125},"location":"Right Knee"},{"euler":{"heading":124.9375,"pitch":104.6875,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:03.451"} +{"sensors":[{"euler":{"heading":98.9375,"pitch":151.0625,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":99.0,"pitch":6.4375,"roll":-0.625},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":-100.5625,"roll":65.75},"location":"Right Ankle"},{"euler":{"heading":97.5625,"pitch":134.375,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":189.9375,"pitch":-59.6875,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":126.625,"pitch":110.125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:03.553"} +{"sensors":[{"euler":{"heading":106.625,"pitch":143.625,"roll":57.375},"location":"Left Knee"},{"euler":{"heading":101.4375,"pitch":9.8125,"roll":-3.625},"location":"Left Ankle"},{"euler":{"heading":80.375,"pitch":-160.3125,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":9.1875,"pitch":137.6875,"roll":39.25},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":22.5625,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":130.4375,"pitch":112.25,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:03.654"} +{"sensors":[{"euler":{"heading":114.8125,"pitch":135.9375,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":103.125,"pitch":8.6875,"roll":-0.1875},"location":"Left Ankle"},{"euler":{"heading":105.4375,"pitch":110.1875,"roll":66.25},"location":"Right Ankle"},{"euler":{"heading":1.125,"pitch":142.375,"roll":39.4375},"location":"Right Hip"},{"euler":{"heading":157.6875,"pitch":71.0625,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":132.9375,"pitch":114.25,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:03.755"} +{"sensors":[{"euler":{"heading":122.5625,"pitch":129.5,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":109.125,"pitch":8.625,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":118.875,"pitch":103.5,"roll":54.4375},"location":"Right Ankle"},{"euler":{"heading":350.125,"pitch":143.875,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":147.125,"pitch":78.625,"roll":54.5625},"location":"Right Knee"},{"euler":{"heading":134.75,"pitch":117.3125,"roll":68.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:03.856"} +{"sensors":[{"euler":{"heading":42.625,"pitch":123.875,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":120.75,"pitch":8.8125,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":106.9375,"pitch":112.1875,"roll":62.0625},"location":"Right Ankle"},{"euler":{"heading":76.25,"pitch":144.25,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":145.25,"pitch":68.5,"roll":58.3125},"location":"Right Knee"},{"euler":{"heading":135.875,"pitch":117.9375,"roll":69.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:03.957"} +{"sensors":[{"euler":{"heading":58.5,"pitch":122.3125,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":139.25,"pitch":2.625,"roll":5.9375},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":108.9375,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":74.8125,"pitch":142.25,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":147.375,"pitch":65.375,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":121.375,"pitch":104.6875,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:04.58"} +{"sensors":[{"euler":{"heading":58.0,"pitch":126.0,"roll":29.0625},"location":"Left Knee"},{"euler":{"heading":139.4375,"pitch":-1.8125,"roll":7.5625},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":106.0625,"roll":75.6875},"location":"Right Ankle"},{"euler":{"heading":72.0,"pitch":140.625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":148.8125,"pitch":61.0,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":113.0625,"pitch":95.9375,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:04.159"} +{"sensors":[{"euler":{"heading":26.8125,"pitch":142.125,"roll":42.6875},"location":"Left Knee"},{"euler":{"heading":113.625,"pitch":-0.625,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":104.875,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":73.6875,"pitch":138.25,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":152.25,"pitch":57.8125,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":110.375,"pitch":96.25,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:04.260"} +{"sensors":[{"euler":{"heading":78.875,"pitch":169.0625,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":82.5,"pitch":-2.6875,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":174.0625,"roll":83.75},"location":"Right Ankle"},{"euler":{"heading":75.75,"pitch":136.9375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":158.4375,"pitch":42.1875,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":112.8125,"pitch":96.75,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:04.362"} +{"sensors":[{"euler":{"heading":67.125,"pitch":-174.75,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":69.75,"pitch":-4.375,"roll":-0.4375},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":-178.4375,"roll":88.375},"location":"Right Ankle"},{"euler":{"heading":78.9375,"pitch":135.25,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":168.0625,"pitch":-1.0625,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":118.5625,"pitch":100.3125,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:04.464"} +{"sensors":[{"euler":{"heading":83.0625,"pitch":171.625,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":79.625,"pitch":1.1875,"roll":-2.125},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-96.625,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":82.75,"pitch":135.9375,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":184.0625,"pitch":-72.5,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":123.3125,"pitch":102.3125,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:04.565"} +{"sensors":[{"euler":{"heading":94.5625,"pitch":158.8125,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":87.1875,"pitch":5.4375,"roll":-4.375},"location":"Left Ankle"},{"euler":{"heading":54.1875,"pitch":-97.4375,"roll":58.625},"location":"Right Ankle"},{"euler":{"heading":92.5,"pitch":133.8125,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":195.375,"pitch":-74.5625,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":124.1875,"pitch":103.0,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:04.665"} +{"sensors":[{"euler":{"heading":103.9375,"pitch":149.875,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":101.5625,"pitch":11.125,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":56.375,"pitch":-101.6875,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":7.3125,"pitch":134.4375,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":191.5625,"pitch":-63.25,"roll":71.5},"location":"Right Knee"},{"euler":{"heading":126.875,"pitch":107.9375,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:04.766"} +{"sensors":[{"euler":{"heading":112.0625,"pitch":142.8125,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":104.25,"pitch":15.6875,"roll":-3.875},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":-141.375,"roll":80.125},"location":"Right Ankle"},{"euler":{"heading":9.1875,"pitch":138.0625,"roll":38.1875},"location":"Right Hip"},{"euler":{"heading":179.5,"pitch":12.6875,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":131.875,"pitch":110.3125,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:04.867"} +{"sensors":[{"euler":{"heading":118.6875,"pitch":135.5,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":13.1875,"roll":-0.3125},"location":"Left Ankle"},{"euler":{"heading":104.3125,"pitch":115.5,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":2.3125,"pitch":142.375,"roll":38.125},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":69.4375,"roll":63.75},"location":"Right Knee"},{"euler":{"heading":133.0625,"pitch":112.0,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:04.967"} +{"sensors":[{"euler":{"heading":125.5625,"pitch":128.875,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":112.6875,"pitch":13.0625,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":120.5,"pitch":102.75,"roll":52.125},"location":"Right Ankle"},{"euler":{"heading":350.875,"pitch":144.875,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":147.8125,"pitch":77.9375,"roll":53.9375},"location":"Right Knee"},{"euler":{"heading":135.0,"pitch":114.375,"roll":67.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:05.68"} +{"sensors":[{"euler":{"heading":44.75,"pitch":123.875,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":122.3125,"pitch":11.375,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":104.625,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":75.875,"pitch":144.9375,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":147.0,"pitch":72.3125,"roll":57.9375},"location":"Right Knee"},{"euler":{"heading":135.9375,"pitch":117.5625,"roll":69.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:05.169"} +{"sensors":[{"euler":{"heading":58.3125,"pitch":122.0625,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":138.875,"pitch":4.625,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":101.3125,"pitch":103.625,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":76.125,"pitch":143.625,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":150.0,"pitch":67.4375,"roll":64.75},"location":"Right Knee"},{"euler":{"heading":123.4375,"pitch":108.3125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:05.270"} +{"sensors":[{"euler":{"heading":61.5,"pitch":124.5625,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":140.1875,"pitch":2.125,"roll":7.4375},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":101.5625,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":72.5,"pitch":142.0625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":150.625,"pitch":64.875,"roll":70.0},"location":"Right Knee"},{"euler":{"heading":114.875,"pitch":98.5,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:05.370"} +{"sensors":[{"euler":{"heading":31.625,"pitch":139.4375,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":115.3125,"pitch":0.875,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":100.75,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":76.9375,"pitch":138.3125,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":154.5,"pitch":61.5625,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":112.25,"pitch":98.25,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:05.471"} +{"sensors":[{"euler":{"heading":83.9375,"pitch":165.5625,"roll":56.25},"location":"Left Knee"},{"euler":{"heading":86.4375,"pitch":0.375,"roll":-0.3125},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":99.5625,"roll":79.9375},"location":"Right Ankle"},{"euler":{"heading":78.75,"pitch":136.6875,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":49.5,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":112.375,"pitch":98.4375,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:05.572"} +{"sensors":[{"euler":{"heading":68.0625,"pitch":-173.625,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":68.875,"pitch":-1.0625,"roll":-1.0625},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":177.0,"roll":86.9375},"location":"Right Ankle"},{"euler":{"heading":79.1875,"pitch":135.5,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":166.6875,"pitch":0.625,"roll":84.4375},"location":"Right Knee"},{"euler":{"heading":117.9375,"pitch":102.0,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:05.673"} +{"sensors":[{"euler":{"heading":78.5625,"pitch":178.5,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":73.5625,"pitch":1.625,"roll":-1.9375},"location":"Left Ankle"},{"euler":{"heading":70.8125,"pitch":-96.75,"roll":81.375},"location":"Right Ankle"},{"euler":{"heading":80.625,"pitch":136.75,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":179.0,"pitch":-62.25,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":123.1875,"pitch":101.875,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:05.774"} +{"sensors":[{"euler":{"heading":90.875,"pitch":166.375,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":83.0625,"pitch":4.0625,"roll":-4.625},"location":"Left Ankle"},{"euler":{"heading":53.4375,"pitch":-95.75,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":92.25,"pitch":135.6875,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":193.3125,"pitch":-72.0625,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":123.25,"pitch":103.625,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:05.875"} +{"sensors":[{"euler":{"heading":99.375,"pitch":155.3125,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":7.3125,"roll":-0.625},"location":"Left Ankle"},{"euler":{"heading":52.8125,"pitch":-101.3125,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":9.75,"pitch":133.75,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":193.1875,"pitch":-61.625,"roll":69.0},"location":"Right Knee"},{"euler":{"heading":127.4375,"pitch":110.0,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:05.977"} +{"sensors":[{"euler":{"heading":107.125,"pitch":147.3125,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":100.875,"pitch":11.75,"roll":-4.5625},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":-130.3125,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":11.3125,"pitch":136.1875,"roll":38.625},"location":"Right Hip"},{"euler":{"heading":179.9375,"pitch":-5.9375,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":130.125,"pitch":111.0,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:06.77"} +{"sensors":[{"euler":{"heading":113.625,"pitch":139.375,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":100.4375,"pitch":9.1875,"roll":-0.375},"location":"Left Ankle"},{"euler":{"heading":100.625,"pitch":116.0,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":4.8125,"pitch":141.75,"roll":37.375},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":69.4375,"roll":68.25},"location":"Right Knee"},{"euler":{"heading":131.0,"pitch":112.875,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:06.178"} +{"sensors":[{"euler":{"heading":121.3125,"pitch":132.25,"roll":51.0},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":9.8125,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":121.375,"pitch":101.3125,"roll":51.625},"location":"Right Ankle"},{"euler":{"heading":350.375,"pitch":144.0,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":147.625,"pitch":79.75,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":133.5625,"pitch":116.125,"roll":67.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:06.280"} +{"sensors":[{"euler":{"heading":39.6875,"pitch":126.5,"roll":44.0625},"location":"Left Knee"},{"euler":{"heading":116.0,"pitch":9.625,"roll":2.0},"location":"Left Ankle"},{"euler":{"heading":113.0,"pitch":104.125,"roll":57.8125},"location":"Right Ankle"},{"euler":{"heading":75.5625,"pitch":145.0,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":148.25,"pitch":73.1875,"roll":58.75},"location":"Right Knee"},{"euler":{"heading":133.875,"pitch":118.6875,"roll":68.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:06.381"} +{"sensors":[{"euler":{"heading":51.5625,"pitch":124.1875,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":132.9375,"pitch":0.6875,"roll":6.3125},"location":"Left Ankle"},{"euler":{"heading":101.5625,"pitch":102.0,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":142.375,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":150.4375,"pitch":71.6875,"roll":66.0},"location":"Right Knee"},{"euler":{"heading":125.9375,"pitch":111.875,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:06.481"} +{"sensors":[{"euler":{"heading":63.5,"pitch":123.375,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":141.6875,"pitch":-0.5,"roll":7.625},"location":"Left Ankle"},{"euler":{"heading":99.0625,"pitch":100.5625,"roll":70.625},"location":"Right Ankle"},{"euler":{"heading":74.3125,"pitch":141.6875,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":153.25,"pitch":74.1875,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":115.6875,"pitch":101.3125,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:06.582"} +{"sensors":[{"euler":{"heading":44.625,"pitch":134.3125,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":119.875,"pitch":1.625,"roll":-0.125},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":100.5,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":78.875,"pitch":138.1875,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":74.3125,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":112.625,"pitch":100.625,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:06.683"} +{"sensors":[{"euler":{"heading":92.0,"pitch":156.125,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":92.625,"pitch":-1.6875,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":100.1875,"roll":79.9375},"location":"Right Ankle"},{"euler":{"heading":81.0,"pitch":136.5,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":162.625,"pitch":67.3125,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":112.5,"pitch":99.0,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:06.784"} +{"sensors":[{"euler":{"heading":70.5625,"pitch":-177.6875,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":69.6875,"pitch":-1.3125,"roll":-0.6875},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":176.375,"roll":86.3125},"location":"Right Ankle"},{"euler":{"heading":80.625,"pitch":135.625,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":2.125,"roll":85.9375},"location":"Right Knee"},{"euler":{"heading":116.9375,"pitch":101.3125,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:06.885"} +{"sensors":[{"euler":{"heading":73.25,"pitch":-178.8125,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":70.0,"pitch":1.25,"roll":-1.375},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":-175.625,"roll":85.625},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":136.5,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-5.625,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":121.5625,"pitch":102.8125,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:06.986"} +{"sensors":[{"euler":{"heading":91.6875,"pitch":167.3125,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":80.9375,"pitch":4.9375,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":64.0,"pitch":-100.5625,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":85.0,"pitch":135.9375,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":191.625,"pitch":-81.0,"roll":72.6875},"location":"Right Knee"},{"euler":{"heading":123.375,"pitch":102.625,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:07.86"} +{"sensors":[{"euler":{"heading":102.0,"pitch":156.875,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":87.4375,"pitch":8.4375,"roll":-7.6875},"location":"Left Ankle"},{"euler":{"heading":53.75,"pitch":-98.4375,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":92.5,"pitch":135.3125,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":197.5625,"pitch":-75.9375,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":128.6875,"pitch":108.9375,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:07.187"} +{"sensors":[{"euler":{"heading":107.75,"pitch":148.0625,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":11.875,"roll":-6.5625},"location":"Left Ankle"},{"euler":{"heading":66.375,"pitch":-107.8125,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":9.0625,"pitch":135.6875,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":189.8125,"pitch":-55.375,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":131.5,"pitch":113.5,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:07.288"} +{"sensors":[{"euler":{"heading":114.0625,"pitch":140.4375,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":9.625,"roll":-3.125},"location":"Left Ankle"},{"euler":{"heading":89.5,"pitch":148.375,"roll":81.1875},"location":"Right Ankle"},{"euler":{"heading":4.25,"pitch":140.9375,"roll":38.5},"location":"Right Hip"},{"euler":{"heading":170.625,"pitch":54.25,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":131.8125,"pitch":114.375,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:07.388"} +{"sensors":[{"euler":{"heading":120.875,"pitch":133.5,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":8.9375,"roll":-1.0625},"location":"Left Ankle"},{"euler":{"heading":114.625,"pitch":104.875,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":353.25,"pitch":144.0,"roll":41.9375},"location":"Right Hip"},{"euler":{"heading":153.75,"pitch":78.1875,"roll":60.6875},"location":"Right Knee"},{"euler":{"heading":133.3125,"pitch":115.8125,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:07.489"} +{"sensors":[{"euler":{"heading":128.375,"pitch":127.6875,"roll":45.6875},"location":"Left Knee"},{"euler":{"heading":110.25,"pitch":8.875,"roll":0.5625},"location":"Left Ankle"},{"euler":{"heading":118.5625,"pitch":101.0625,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":74.0625,"pitch":145.5625,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":148.375,"pitch":76.6875,"roll":56.625},"location":"Right Knee"},{"euler":{"heading":134.5,"pitch":119.3125,"roll":68.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:07.590"} +{"sensors":[{"euler":{"heading":49.5,"pitch":123.375,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":124.9375,"pitch":0.25,"roll":2.25},"location":"Left Ankle"},{"euler":{"heading":102.875,"pitch":102.5,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":75.8125,"pitch":128.3125,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":149.4375,"pitch":68.625,"roll":63.375},"location":"Right Knee"},{"euler":{"heading":130.1875,"pitch":114.0,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:07.691"} +{"sensors":[{"euler":{"heading":64.4375,"pitch":122.5625,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":136.75,"pitch":1.0625,"roll":4.6875},"location":"Left Ankle"},{"euler":{"heading":98.25,"pitch":102.125,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":72.6875,"pitch":142.625,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":151.1875,"pitch":71.25,"roll":70.0},"location":"Right Knee"},{"euler":{"heading":118.0625,"pitch":101.3125,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:07.791"} +{"sensors":[{"euler":{"heading":49.9375,"pitch":131.875,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":117.0,"pitch":-1.0,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":101.8125,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":76.6875,"pitch":139.4375,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":156.5,"pitch":70.4375,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":113.8125,"pitch":99.5625,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:07.892"} +{"sensors":[{"euler":{"heading":99.8125,"pitch":151.5,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":-2.5625,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":102.1875,"roll":78.6875},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":137.5625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":63.625,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":114.625,"pitch":98.375,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:07.992"} +{"sensors":[{"euler":{"heading":73.1875,"pitch":-179.3125,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":66.8125,"pitch":-3.9375,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":82.1875,"pitch":174.8125,"roll":84.75},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":136.9375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":166.4375,"pitch":2.8125,"roll":85.125},"location":"Right Knee"},{"euler":{"heading":118.375,"pitch":100.875,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:08.93"} +{"sensors":[{"euler":{"heading":73.5625,"pitch":178.75,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":68.6875,"pitch":-3.0625,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":-175.875,"roll":85.75},"location":"Right Ankle"},{"euler":{"heading":80.0,"pitch":137.6875,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-5.5625,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":122.0625,"pitch":101.75,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:08.194"} +{"sensors":[{"euler":{"heading":88.3125,"pitch":166.75,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":76.875,"pitch":-0.625,"roll":-2.8125},"location":"Left Ankle"},{"euler":{"heading":49.3125,"pitch":-102.0625,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":86.625,"pitch":137.875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":195.375,"pitch":-79.375,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":121.875,"pitch":103.3125,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:08.295"} +{"sensors":[{"euler":{"heading":95.25,"pitch":156.375,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":88.3125,"pitch":1.75,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":56.625,"pitch":-106.6875,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":95.75,"pitch":134.3125,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":198.0,"pitch":-73.3125,"roll":67.8125},"location":"Right Knee"},{"euler":{"heading":125.75,"pitch":108.9375,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:08.396"} +{"sensors":[{"euler":{"heading":102.0,"pitch":148.5625,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":95.3125,"pitch":4.75,"roll":-3.125},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-122.625,"roll":74.0625},"location":"Right Ankle"},{"euler":{"heading":8.25,"pitch":136.0,"roll":41.625},"location":"Right Hip"},{"euler":{"heading":184.5625,"pitch":-40.8125,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":127.6875,"pitch":111.3125,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:08.497"} +{"sensors":[{"euler":{"heading":109.4375,"pitch":141.1875,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":3.4375,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":99.75,"pitch":125.5625,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":2.5625,"pitch":140.4375,"roll":39.9375},"location":"Right Hip"},{"euler":{"heading":166.3125,"pitch":62.9375,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":129.375,"pitch":113.8125,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:08.598"} +{"sensors":[{"euler":{"heading":116.5,"pitch":134.625,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":101.375,"pitch":4.4375,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":121.1875,"pitch":102.8125,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":350.6875,"pitch":143.75,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":149.75,"pitch":80.0,"roll":57.125},"location":"Right Knee"},{"euler":{"heading":131.0625,"pitch":116.1875,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:08.699"} +{"sensors":[{"euler":{"heading":34.8125,"pitch":128.8125,"roll":44.8125},"location":"Left Knee"},{"euler":{"heading":111.75,"pitch":4.25,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":115.5625,"pitch":103.125,"roll":56.9375},"location":"Right Ankle"},{"euler":{"heading":77.5,"pitch":144.5,"roll":45.25},"location":"Right Hip"},{"euler":{"heading":149.8125,"pitch":75.1875,"roll":57.875},"location":"Right Knee"},{"euler":{"heading":133.875,"pitch":122.125,"roll":68.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:08.800"} +{"sensors":[{"euler":{"heading":49.375,"pitch":124.0625,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":-2.0,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":104.4375,"pitch":105.3125,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":80.125,"pitch":141.75,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":151.25,"pitch":72.375,"roll":64.75},"location":"Right Knee"},{"euler":{"heading":129.0625,"pitch":112.9375,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:08.900"} +{"sensors":[{"euler":{"heading":65.125,"pitch":122.25,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":134.1875,"pitch":0.0,"roll":9.0625},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":106.0625,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":74.1875,"pitch":142.1875,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":77.5,"roll":71.3125},"location":"Right Knee"},{"euler":{"heading":117.8125,"pitch":98.5625,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:09.1"} +{"sensors":[{"euler":{"heading":44.25,"pitch":135.375,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":111.1875,"pitch":-0.375,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":105.75,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":78.9375,"pitch":139.125,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":75.8125,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":113.0625,"pitch":97.5,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:09.102"} +{"sensors":[{"euler":{"heading":93.5625,"pitch":158.25,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":83.625,"pitch":-1.4375,"roll":-0.3125},"location":"Left Ankle"},{"euler":{"heading":91.8125,"pitch":110.125,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":81.875,"pitch":137.5,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":165.8125,"pitch":69.125,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":113.1875,"pitch":96.875,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:09.203"} +{"sensors":[{"euler":{"heading":71.5,"pitch":-176.5625,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":64.375,"pitch":-3.75,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":176.5,"roll":85.6875},"location":"Right Ankle"},{"euler":{"heading":83.875,"pitch":137.375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":173.3125,"pitch":1.4375,"roll":87.25},"location":"Right Knee"},{"euler":{"heading":119.3125,"pitch":100.5,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:09.304"} +{"sensors":[{"euler":{"heading":75.375,"pitch":-179.5,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":68.4375,"pitch":-2.0,"roll":-0.9375},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":-108.375,"roll":83.625},"location":"Right Ankle"},{"euler":{"heading":83.9375,"pitch":138.75,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":181.75,"pitch":-70.75,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":122.25,"pitch":100.875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:09.405"} +{"sensors":[{"euler":{"heading":88.125,"pitch":166.6875,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":78.0,"pitch":0.5,"roll":-4.1875},"location":"Left Ankle"},{"euler":{"heading":67.0625,"pitch":-101.75,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":87.5625,"pitch":138.8125,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":197.375,"pitch":-81.875,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":124.1875,"pitch":102.0625,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:09.507"} +{"sensors":[{"euler":{"heading":93.3125,"pitch":155.5,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":85.0625,"pitch":0.375,"roll":-3.6875},"location":"Left Ankle"},{"euler":{"heading":56.875,"pitch":-104.4375,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":94.8125,"pitch":134.75,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":199.5,"pitch":-75.375,"roll":66.875},"location":"Right Knee"},{"euler":{"heading":124.75,"pitch":106.9375,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:09.607"} +{"sensors":[{"euler":{"heading":95.9375,"pitch":148.5,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":95.1875,"pitch":2.875,"roll":-3.3125},"location":"Left Ankle"},{"euler":{"heading":66.5,"pitch":-117.375,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":6.875,"pitch":136.5,"roll":41.5625},"location":"Right Hip"},{"euler":{"heading":184.3125,"pitch":-35.8125,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":126.375,"pitch":110.5,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:09.708"} +{"sensors":[{"euler":{"heading":100.1875,"pitch":142.125,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":97.5625,"pitch":-15.875,"roll":-1.625},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":132.5625,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":1.125,"pitch":140.8125,"roll":39.9375},"location":"Right Hip"},{"euler":{"heading":164.8125,"pitch":63.75,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":127.625,"pitch":112.75,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:09.810"} +{"sensors":[{"euler":{"heading":109.1875,"pitch":135.25,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":103.375,"pitch":-0.25,"roll":-0.75},"location":"Left Ankle"},{"euler":{"heading":116.5,"pitch":104.0,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":350.8125,"pitch":143.375,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":151.875,"pitch":81.375,"roll":59.0},"location":"Right Knee"},{"euler":{"heading":130.0625,"pitch":113.9375,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:09.911"} +{"sensors":[{"euler":{"heading":27.9375,"pitch":129.9375,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":111.5625,"pitch":-0.125,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":117.3125,"pitch":106.125,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":77.4375,"pitch":143.375,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":153.75,"pitch":81.875,"roll":61.5},"location":"Right Knee"},{"euler":{"heading":132.375,"pitch":120.875,"roll":69.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:10.11"} +{"sensors":[{"euler":{"heading":43.9375,"pitch":124.9375,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":124.0,"pitch":15.9375,"roll":3.125},"location":"Left Ankle"},{"euler":{"heading":99.625,"pitch":107.875,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":81.5,"pitch":140.25,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":72.375,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":128.8125,"pitch":113.875,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:10.112"} +{"sensors":[{"euler":{"heading":61.1875,"pitch":124.3125,"roll":28.375},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":2.375,"roll":7.0},"location":"Left Ankle"},{"euler":{"heading":97.0,"pitch":108.6875,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":75.5625,"pitch":140.625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":155.3125,"pitch":79.25,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":118.75,"pitch":102.125,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:10.213"} +{"sensors":[{"euler":{"heading":41.9375,"pitch":135.3125,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":116.0,"pitch":0.5625,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":106.1875,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":78.75,"pitch":138.4375,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":78.0625,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":113.8125,"pitch":100.0,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:10.314"} +{"sensors":[{"euler":{"heading":91.125,"pitch":156.9375,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":88.9375,"pitch":-2.5,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":110.75,"roll":79.375},"location":"Right Ankle"},{"euler":{"heading":79.75,"pitch":137.5625,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":6.5,"roll":82.9375},"location":"Right Knee"},{"euler":{"heading":112.1875,"pitch":97.75,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:10.415"} +{"sensors":[{"euler":{"heading":67.5625,"pitch":-177.1875,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":67.5,"pitch":-7.5,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":175.375,"roll":84.4375},"location":"Right Ankle"},{"euler":{"heading":79.3125,"pitch":136.6875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":170.25,"pitch":1.25,"roll":87.75},"location":"Right Knee"},{"euler":{"heading":115.1875,"pitch":98.8125,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:10.517"} +{"sensors":[{"euler":{"heading":75.5625,"pitch":179.4375,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":71.9375,"pitch":-2.8125,"roll":2.375},"location":"Left Ankle"},{"euler":{"heading":77.4375,"pitch":-175.5,"roll":85.0625},"location":"Right Ankle"},{"euler":{"heading":81.6875,"pitch":137.25,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":180.125,"pitch":-82.6875,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":120.5625,"pitch":100.8125,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:10.617"} +{"sensors":[{"euler":{"heading":90.0,"pitch":166.625,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":81.4375,"pitch":3.375,"roll":-2.1875},"location":"Left Ankle"},{"euler":{"heading":64.6875,"pitch":-102.3125,"roll":68.125},"location":"Right Ankle"},{"euler":{"heading":83.875,"pitch":136.9375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":195.1875,"pitch":-86.9375,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":121.25,"pitch":102.25,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:10.718"} +{"sensors":[{"euler":{"heading":98.9375,"pitch":156.125,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":88.5,"pitch":5.625,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":-105.3125,"roll":61.0},"location":"Right Ankle"},{"euler":{"heading":94.9375,"pitch":134.9375,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":198.5,"pitch":-77.0625,"roll":67.875},"location":"Right Knee"},{"euler":{"heading":126.0625,"pitch":109.125,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:10.819"} +{"sensors":[{"euler":{"heading":105.875,"pitch":148.3125,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":96.6875,"pitch":9.3125,"roll":-4.0},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-121.8125,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":7.375,"pitch":136.3125,"roll":41.5},"location":"Right Hip"},{"euler":{"heading":185.0625,"pitch":-33.5625,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":130.25,"pitch":114.25,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:10.920"} +{"sensors":[{"euler":{"heading":114.1875,"pitch":140.625,"roll":54.875},"location":"Left Knee"},{"euler":{"heading":99.6875,"pitch":8.75,"roll":-0.75},"location":"Left Ankle"},{"euler":{"heading":96.9375,"pitch":124.0625,"roll":74.8125},"location":"Right Ankle"},{"euler":{"heading":1.125,"pitch":142.1875,"roll":39.75},"location":"Right Hip"},{"euler":{"heading":167.5,"pitch":66.9375,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":132.8125,"pitch":116.75,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:11.21"} +{"sensors":[{"euler":{"heading":121.875,"pitch":133.375,"roll":50.5625},"location":"Left Knee"},{"euler":{"heading":105.5625,"pitch":8.5625,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":119.75,"pitch":107.8125,"roll":56.25},"location":"Right Ankle"},{"euler":{"heading":350.875,"pitch":144.3125,"roll":44.875},"location":"Right Hip"},{"euler":{"heading":154.375,"pitch":81.125,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":135.4375,"pitch":119.6875,"roll":68.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:11.121"} +{"sensors":[{"euler":{"heading":41.875,"pitch":127.1875,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":7.0625,"roll":3.8125},"location":"Left Ankle"},{"euler":{"heading":112.9375,"pitch":111.125,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":77.5,"pitch":143.75,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":152.0625,"pitch":75.8125,"roll":61.25},"location":"Right Knee"},{"euler":{"heading":137.4375,"pitch":121.8125,"roll":69.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:11.222"} +{"sensors":[{"euler":{"heading":54.5625,"pitch":126.8125,"roll":29.125},"location":"Left Knee"},{"euler":{"heading":131.0,"pitch":1.1875,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":100.375,"pitch":110.4375,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":141.875,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":153.125,"pitch":70.0625,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":124.0,"pitch":112.25,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:11.323"} +{"sensors":[{"euler":{"heading":59.9375,"pitch":127.3125,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":129.8125,"pitch":-0.0625,"roll":7.6875},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":111.75,"roll":71.875},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":140.6875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":153.8125,"pitch":70.125,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":114.375,"pitch":101.625,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:11.424"} +{"sensors":[{"euler":{"heading":28.25,"pitch":142.1875,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":104.5625,"pitch":-0.3125,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":92.6875,"pitch":112.125,"roll":75.625},"location":"Right Ankle"},{"euler":{"heading":79.0,"pitch":137.4375,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":159.5,"pitch":69.75,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":112.25,"pitch":101.625,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:11.524"} +{"sensors":[{"euler":{"heading":83.1875,"pitch":166.4375,"roll":56.5},"location":"Left Knee"},{"euler":{"heading":76.8125,"pitch":-1.875,"roll":2.1875},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":117.5,"roll":81.1875},"location":"Right Ankle"},{"euler":{"heading":81.9375,"pitch":135.0,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":165.0625,"pitch":4.6875,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":114.0625,"pitch":101.3125,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:11.628"} +{"sensors":[{"euler":{"heading":68.375,"pitch":-174.375,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":64.6875,"pitch":-4.3125,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":179.3125,"roll":86.9375},"location":"Right Ankle"},{"euler":{"heading":83.0625,"pitch":134.9375,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":173.3125,"pitch":-1.875,"roll":86.625},"location":"Right Knee"},{"euler":{"heading":118.8125,"pitch":103.6875,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:11.728"} +{"sensors":[{"euler":{"heading":80.5,"pitch":176.625,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":71.9375,"pitch":0.0,"roll":-0.8125},"location":"Left Ankle"},{"euler":{"heading":72.625,"pitch":-108.0,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":84.0625,"pitch":136.5625,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":-79.125,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":123.5625,"pitch":105.3125,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:11.829"} +{"sensors":[{"euler":{"heading":93.6875,"pitch":164.375,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":80.0625,"pitch":4.6875,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":58.0625,"pitch":-97.875,"roll":62.0},"location":"Right Ankle"},{"euler":{"heading":91.5,"pitch":134.25,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":197.4375,"pitch":-78.375,"roll":67.8125},"location":"Right Knee"},{"euler":{"heading":125.5,"pitch":107.1875,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:11.930"} +{"sensors":[{"euler":{"heading":104.25,"pitch":154.125,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":91.0,"pitch":9.3125,"roll":-2.4375},"location":"Left Ankle"},{"euler":{"heading":57.4375,"pitch":-101.3125,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":97.875,"pitch":133.8125,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":194.6875,"pitch":-67.4375,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":130.8125,"pitch":114.6875,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:12.31"} +{"sensors":[{"euler":{"heading":113.0625,"pitch":144.625,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":96.125,"pitch":12.75,"roll":-4.0},"location":"Left Ankle"},{"euler":{"heading":79.5625,"pitch":-139.5,"roll":79.6875},"location":"Right Ankle"},{"euler":{"heading":10.0625,"pitch":137.375,"roll":39.75},"location":"Right Hip"},{"euler":{"heading":182.8125,"pitch":-8.9375,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":132.75,"pitch":116.75,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:12.131"} +{"sensors":[{"euler":{"heading":119.3125,"pitch":137.3125,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":99.625,"pitch":11.375,"roll":-0.625},"location":"Left Ankle"},{"euler":{"heading":106.8125,"pitch":112.625,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":3.375,"pitch":141.375,"roll":39.375},"location":"Right Hip"},{"euler":{"heading":163.375,"pitch":74.125,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":135.125,"pitch":119.875,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:12.232"} +{"sensors":[{"euler":{"heading":126.25,"pitch":130.625,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":106.4375,"pitch":10.875,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":120.5,"pitch":104.875,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":79.9375,"pitch":144.125,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":151.3125,"pitch":78.5,"roll":57.75},"location":"Right Knee"},{"euler":{"heading":136.4375,"pitch":122.5625,"roll":67.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:12.333"} +{"sensors":[{"euler":{"heading":47.75,"pitch":124.875,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":116.625,"pitch":7.25,"roll":2.3125},"location":"Left Ankle"},{"euler":{"heading":107.8125,"pitch":109.5,"roll":62.3125},"location":"Right Ankle"},{"euler":{"heading":77.4375,"pitch":144.0625,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":151.1875,"pitch":72.1875,"roll":62.875},"location":"Right Knee"},{"euler":{"heading":136.375,"pitch":120.875,"roll":66.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:12.433"} +{"sensors":[{"euler":{"heading":59.0,"pitch":125.875,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":133.5,"pitch":3.5,"roll":6.625},"location":"Left Ankle"},{"euler":{"heading":98.9375,"pitch":115.4375,"roll":69.1875},"location":"Right Ankle"},{"euler":{"heading":74.625,"pitch":142.625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":154.0625,"pitch":69.5,"roll":69.4375},"location":"Right Knee"},{"euler":{"heading":116.0625,"pitch":111.75,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:12.534"} +{"sensors":[{"euler":{"heading":55.3125,"pitch":130.8125,"roll":31.375},"location":"Left Knee"},{"euler":{"heading":124.5,"pitch":0.0,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":93.125,"pitch":117.4375,"roll":74.1875},"location":"Right Ankle"},{"euler":{"heading":74.375,"pitch":138.5625,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":156.6875,"pitch":68.625,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":113.75,"pitch":104.6875,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:12.639"} +{"sensors":[{"euler":{"heading":100.5,"pitch":148.125,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":99.375,"pitch":-2.625,"roll":0.1875},"location":"Left Ankle"},{"euler":{"heading":89.625,"pitch":113.625,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":78.5625,"pitch":136.4375,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":161.375,"pitch":64.875,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":111.125,"pitch":101.875,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:12.740"} +{"sensors":[{"euler":{"heading":75.875,"pitch":173.875,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":72.6875,"pitch":-3.5,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":174.375,"roll":83.375},"location":"Right Ankle"},{"euler":{"heading":79.6875,"pitch":136.0,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":167.5625,"pitch":2.875,"roll":85.4375},"location":"Right Knee"},{"euler":{"heading":112.75,"pitch":102.4375,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:12.841"} +{"sensors":[{"euler":{"heading":69.0625,"pitch":-175.5625,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":65.125,"pitch":-3.8125,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-177.0,"roll":86.0625},"location":"Right Ankle"},{"euler":{"heading":82.3125,"pitch":136.0625,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":-4.6875,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":119.4375,"pitch":105.75,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:12.941"} +{"sensors":[{"euler":{"heading":87.125,"pitch":169.5625,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":77.0,"pitch":-0.5625,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":69.1875,"pitch":-109.0625,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":83.75,"pitch":136.4375,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":189.9375,"pitch":-79.375,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":121.3125,"pitch":104.625,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:13.42"} +{"sensors":[{"euler":{"heading":98.8125,"pitch":157.5625,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":82.875,"pitch":3.5,"roll":-5.25},"location":"Left Ankle"},{"euler":{"heading":56.5,"pitch":-105.0,"roll":58.0625},"location":"Right Ankle"},{"euler":{"heading":93.0625,"pitch":133.6875,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":200.125,"pitch":-75.6875,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":126.1875,"pitch":108.4375,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:13.143"} +{"sensors":[{"euler":{"heading":106.5625,"pitch":148.8125,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":10.125,"roll":-3.9375},"location":"Left Ankle"},{"euler":{"heading":64.4375,"pitch":-114.5625,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":8.6875,"pitch":134.375,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":193.5,"pitch":-60.0625,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":128.6875,"pitch":113.5625,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:13.244"} +{"sensors":[{"euler":{"heading":112.875,"pitch":141.9375,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":98.4375,"pitch":10.1875,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":154.4375,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":5.8125,"pitch":140.1875,"roll":39.1875},"location":"Right Hip"},{"euler":{"heading":176.0,"pitch":51.3125,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":129.1875,"pitch":115.25,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:13.345"} +{"sensors":[{"euler":{"heading":118.0625,"pitch":135.6875,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":6.4375,"roll":0.6875},"location":"Left Ankle"},{"euler":{"heading":117.9375,"pitch":106.125,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":354.0,"pitch":144.0625,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":156.625,"pitch":78.6875,"roll":62.3125},"location":"Right Knee"},{"euler":{"heading":131.3125,"pitch":119.1875,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:13.446"} +{"sensors":[{"euler":{"heading":126.4375,"pitch":129.5625,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":110.4375,"pitch":5.6875,"roll":3.0},"location":"Left Ankle"},{"euler":{"heading":115.25,"pitch":111.375,"roll":57.75},"location":"Right Ankle"},{"euler":{"heading":76.125,"pitch":144.0625,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":153.0,"pitch":73.75,"roll":61.625},"location":"Right Knee"},{"euler":{"heading":132.6875,"pitch":122.8125,"roll":67.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:13.546"} +{"sensors":[{"euler":{"heading":49.0,"pitch":125.5,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":125.0,"pitch":0.625,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":97.4375,"pitch":114.0625,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":142.25,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":153.4375,"pitch":65.3125,"roll":67.8125},"location":"Right Knee"},{"euler":{"heading":127.5625,"pitch":117.5625,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:13.647"} +{"sensors":[{"euler":{"heading":64.75,"pitch":124.0625,"roll":26.375},"location":"Left Knee"},{"euler":{"heading":136.75,"pitch":-0.9375,"roll":5.9375},"location":"Left Ankle"},{"euler":{"heading":93.6875,"pitch":116.9375,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":72.75,"pitch":141.5625,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":154.4375,"pitch":67.0625,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":114.875,"pitch":101.875,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:13.747"} +{"sensors":[{"euler":{"heading":48.5625,"pitch":134.0,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":122.25,"pitch":0.75,"roll":-1.8125},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":115.4375,"roll":75.3125},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":138.4375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":159.9375,"pitch":65.1875,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":113.6875,"pitch":101.625,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:13.848"} +{"sensors":[{"euler":{"heading":98.5625,"pitch":155.0625,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":90.875,"pitch":-2.9375,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":117.0,"roll":80.0},"location":"Right Ankle"},{"euler":{"heading":80.0625,"pitch":136.3125,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":165.4375,"pitch":4.8125,"roll":84.0},"location":"Right Knee"},{"euler":{"heading":114.5625,"pitch":100.4375,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:13.949"} +{"sensors":[{"euler":{"heading":73.9375,"pitch":-179.5,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":67.1875,"pitch":-4.375,"roll":-0.1875},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":177.5625,"roll":85.75},"location":"Right Ankle"},{"euler":{"heading":80.5,"pitch":135.6875,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":171.875,"pitch":-1.625,"roll":86.5},"location":"Right Knee"},{"euler":{"heading":118.875,"pitch":104.6875,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:14.49"} +{"sensors":[{"euler":{"heading":84.25,"pitch":173.75,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":-1.0625,"roll":-0.0625},"location":"Left Ankle"},{"euler":{"heading":71.625,"pitch":-110.25,"roll":80.8125},"location":"Right Ankle"},{"euler":{"heading":82.8125,"pitch":135.75,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":184.5,"pitch":-77.8125,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":122.125,"pitch":105.125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:14.150"} +{"sensors":[{"euler":{"heading":94.6875,"pitch":161.875,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":79.4375,"pitch":0.9375,"roll":-3.125},"location":"Left Ankle"},{"euler":{"heading":56.6875,"pitch":-99.5,"roll":62.1875},"location":"Right Ankle"},{"euler":{"heading":96.3125,"pitch":132.75,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":195.9375,"pitch":-78.0,"roll":66.875},"location":"Right Knee"},{"euler":{"heading":123.875,"pitch":109.25,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:14.251"} +{"sensors":[{"euler":{"heading":102.0625,"pitch":153.1875,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":93.375,"pitch":7.6875,"roll":-3.4375},"location":"Left Ankle"},{"euler":{"heading":55.375,"pitch":-103.125,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":11.125,"pitch":132.25,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":195.1875,"pitch":-68.0,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":128.3125,"pitch":114.4375,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:14.352"} +{"sensors":[{"euler":{"heading":110.1875,"pitch":145.1875,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":97.5625,"pitch":10.5625,"roll":-5.9375},"location":"Left Ankle"},{"euler":{"heading":73.8125,"pitch":-128.625,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":10.3125,"pitch":138.1875,"roll":37.625},"location":"Right Hip"},{"euler":{"heading":182.8125,"pitch":-22.1875,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":131.0625,"pitch":116.5625,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:14.453"} +{"sensors":[{"euler":{"heading":117.6875,"pitch":137.5,"roll":53.875},"location":"Left Knee"},{"euler":{"heading":98.9375,"pitch":8.5625,"roll":-1.125},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":119.625,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":2.9375,"pitch":143.0,"roll":37.875},"location":"Right Hip"},{"euler":{"heading":165.125,"pitch":69.75,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":133.4375,"pitch":119.6875,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:14.554"} +{"sensors":[{"euler":{"heading":124.4375,"pitch":130.5,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":105.6875,"pitch":8.1875,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":116.5,"pitch":109.4375,"roll":56.9375},"location":"Right Ankle"},{"euler":{"heading":79.1875,"pitch":143.625,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":152.0625,"pitch":78.25,"roll":59.5},"location":"Right Knee"},{"euler":{"heading":134.75,"pitch":123.6875,"roll":67.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:14.655"} +{"sensors":[{"euler":{"heading":45.0,"pitch":125.3125,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":7.625,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":105.1875,"pitch":115.125,"roll":63.75},"location":"Right Ankle"},{"euler":{"heading":75.5625,"pitch":144.3125,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":150.9375,"pitch":71.5,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":135.0625,"pitch":121.4375,"roll":67.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:14.756"} +{"sensors":[{"euler":{"heading":60.125,"pitch":124.25,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":135.3125,"pitch":5.1875,"roll":3.8125},"location":"Left Ankle"},{"euler":{"heading":94.1875,"pitch":111.6875,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":73.5625,"pitch":142.6875,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":152.75,"pitch":68.875,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":120.6875,"pitch":110.375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:14.856"} +{"sensors":[{"euler":{"heading":64.1875,"pitch":125.0,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":132.4375,"pitch":2.1875,"roll":4.625},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":113.375,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":75.0,"pitch":139.0625,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":154.6875,"pitch":65.3125,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":116.0,"pitch":102.3125,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:14.957"} +{"sensors":[{"euler":{"heading":35.3125,"pitch":141.875,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":109.125,"pitch":1.8125,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":82.9375,"pitch":116.3125,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":136.3125,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":159.5625,"pitch":62.6875,"roll":80.625},"location":"Right Knee"},{"euler":{"heading":113.625,"pitch":101.875,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:15.57"} +{"sensors":[{"euler":{"heading":88.75,"pitch":166.875,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":79.125,"pitch":-0.75,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":78.125,"pitch":177.4375,"roll":86.625},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":135.5625,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":166.125,"pitch":2.25,"roll":85.8125},"location":"Right Knee"},{"euler":{"heading":115.5,"pitch":102.6875,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:15.157"} +{"sensors":[{"euler":{"heading":73.3125,"pitch":-176.5,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":64.625,"pitch":-1.5,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":72.0625,"pitch":-174.0625,"roll":83.8125},"location":"Right Ankle"},{"euler":{"heading":80.75,"pitch":136.25,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":176.25,"pitch":-5.875,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":121.6875,"pitch":107.125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:15.258"} +{"sensors":[{"euler":{"heading":90.4375,"pitch":170.25,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":75.8125,"pitch":1.375,"roll":-2.25},"location":"Left Ankle"},{"euler":{"heading":65.5,"pitch":-103.5625,"roll":68.8125},"location":"Right Ankle"},{"euler":{"heading":87.5625,"pitch":136.4375,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":194.75,"pitch":-83.4375,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":124.5625,"pitch":107.75,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:15.359"} +{"sensors":[{"euler":{"heading":99.5,"pitch":157.5,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":81.125,"pitch":4.3125,"roll":-5.25},"location":"Left Ankle"},{"euler":{"heading":51.5,"pitch":-99.875,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":99.0625,"pitch":131.875,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":200.375,"pitch":-80.25,"roll":63.5625},"location":"Right Knee"},{"euler":{"heading":143.5,"pitch":112.1875,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:15.459"} +{"sensors":[{"euler":{"heading":108.75,"pitch":148.75,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":96.3125,"pitch":13.125,"roll":-4.0625},"location":"Left Ankle"},{"euler":{"heading":56.5625,"pitch":-104.3125,"roll":60.875},"location":"Right Ankle"},{"euler":{"heading":12.5,"pitch":133.5625,"roll":41.75},"location":"Right Hip"},{"euler":{"heading":193.625,"pitch":-65.4375,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":131.5625,"pitch":116.3125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:15.560"} +{"sensors":[{"euler":{"heading":113.9375,"pitch":140.9375,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":12.8125,"roll":-2.4375},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":-160.25,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":9.4375,"pitch":140.4375,"roll":36.125},"location":"Right Hip"},{"euler":{"heading":177.4375,"pitch":22.4375,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":133.5,"pitch":116.875,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:15.661"} +{"sensors":[{"euler":{"heading":121.1875,"pitch":134.0625,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":101.8125,"pitch":13.9375,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":108.875,"pitch":113.5,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":359.5,"pitch":143.625,"roll":38.875},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":74.0,"roll":64.8125},"location":"Right Knee"},{"euler":{"heading":136.375,"pitch":118.9375,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:15.761"} +{"sensors":[{"euler":{"heading":129.625,"pitch":128.4375,"roll":47.5},"location":"Left Knee"},{"euler":{"heading":112.9375,"pitch":15.125,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":116.25,"pitch":112.75,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":78.75,"pitch":144.625,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":152.5,"pitch":76.6875,"roll":58.4375},"location":"Right Knee"},{"euler":{"heading":137.8125,"pitch":124.0625,"roll":69.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:15.862"} +{"sensors":[{"euler":{"heading":46.625,"pitch":124.9375,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":122.625,"pitch":4.125,"roll":5.5},"location":"Left Ankle"},{"euler":{"heading":101.75,"pitch":109.375,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":77.5625,"pitch":143.6875,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":152.5,"pitch":69.875,"roll":64.25},"location":"Right Knee"},{"euler":{"heading":137.0625,"pitch":122.5625,"roll":67.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:15.963"} +{"sensors":[{"euler":{"heading":61.4375,"pitch":124.0625,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":139.1875,"pitch":4.125,"roll":4.6875},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":111.5625,"roll":71.25},"location":"Right Ankle"},{"euler":{"heading":75.125,"pitch":142.9375,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":155.0,"pitch":73.5,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":121.25,"pitch":107.9375,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:16.64"} +{"sensors":[{"euler":{"heading":56.0625,"pitch":129.4375,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":135.1875,"pitch":1.4375,"roll":1.3125},"location":"Left Ankle"},{"euler":{"heading":91.4375,"pitch":117.375,"roll":75.375},"location":"Right Ankle"},{"euler":{"heading":76.3125,"pitch":139.625,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":157.375,"pitch":67.375,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":115.3125,"pitch":101.625,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:16.164"} +{"sensors":[{"euler":{"heading":109.75,"pitch":147.9375,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":102.9375,"pitch":-2.0,"roll":0.1875},"location":"Left Ankle"},{"euler":{"heading":84.0,"pitch":122.375,"roll":80.5},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":136.0,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":57.6875,"roll":80.4375},"location":"Right Knee"},{"euler":{"heading":113.0,"pitch":100.8125,"roll":44.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:16.265"} +{"sensors":[{"euler":{"heading":76.3125,"pitch":176.5,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":73.0625,"pitch":-2.1875,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":77.4375,"pitch":177.375,"roll":85.8125},"location":"Right Ankle"},{"euler":{"heading":80.5625,"pitch":135.25,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":166.0625,"pitch":2.0,"roll":84.9375},"location":"Right Knee"},{"euler":{"heading":114.8125,"pitch":102.25,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:16.365"} +{"sensors":[{"euler":{"heading":70.375,"pitch":-173.0625,"roll":57.6875},"location":"Left Knee"},{"euler":{"heading":66.0,"pitch":-0.0625,"roll":1.375},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-174.3125,"roll":83.75},"location":"Right Ankle"},{"euler":{"heading":82.0,"pitch":135.625,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-58.1875,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":120.625,"pitch":106.3125,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:16.466"} +{"sensors":[{"euler":{"heading":85.75,"pitch":173.75,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":76.5,"pitch":1.6875,"roll":0.125},"location":"Left Ankle"},{"euler":{"heading":66.1875,"pitch":-106.9375,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":87.5,"pitch":137.625,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":194.625,"pitch":-81.0625,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":123.125,"pitch":107.5,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:16.567"} +{"sensors":[{"euler":{"heading":94.4375,"pitch":161.75,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":82.75,"pitch":5.9375,"roll":-1.75},"location":"Left Ankle"},{"euler":{"heading":51.4375,"pitch":-101.25,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":97.5625,"pitch":133.5625,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":198.5625,"pitch":-77.375,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":125.75,"pitch":110.6875,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:16.668"} +{"sensors":[{"euler":{"heading":103.375,"pitch":152.8125,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":94.125,"pitch":9.8125,"roll":-3.625},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":-105.1875,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":11.0625,"pitch":134.375,"roll":41.5625},"location":"Right Hip"},{"euler":{"heading":192.6875,"pitch":-64.75,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":128.0,"pitch":113.6875,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:16.768"} +{"sensors":[{"euler":{"heading":109.8125,"pitch":145.4375,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":93.1875,"pitch":8.25,"roll":-1.375},"location":"Left Ankle"},{"euler":{"heading":82.9375,"pitch":-167.8125,"roll":80.6875},"location":"Right Ankle"},{"euler":{"heading":11.4375,"pitch":140.375,"roll":35.625},"location":"Right Hip"},{"euler":{"heading":179.4375,"pitch":13.0625,"roll":82.625},"location":"Right Knee"},{"euler":{"heading":130.4375,"pitch":116.125,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:16.869"} +{"sensors":[{"euler":{"heading":116.9375,"pitch":137.625,"roll":54.1875},"location":"Left Knee"},{"euler":{"heading":97.375,"pitch":8.4375,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":108.5625,"pitch":112.875,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":3.25,"pitch":143.625,"roll":37.0625},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":76.125,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":133.3125,"pitch":118.875,"roll":64.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:16.971"} +{"sensors":[{"euler":{"heading":123.5625,"pitch":131.125,"roll":49.375},"location":"Left Knee"},{"euler":{"heading":105.25,"pitch":8.4375,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":121.125,"pitch":104.8125,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":351.625,"pitch":145.1875,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":152.5625,"pitch":79.9375,"roll":59.125},"location":"Right Knee"},{"euler":{"heading":133.375,"pitch":120.3125,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:17.71"} +{"sensors":[{"euler":{"heading":43.0,"pitch":126.125,"roll":40.875},"location":"Left Knee"},{"euler":{"heading":115.9375,"pitch":6.4375,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":112.25,"pitch":106.75,"roll":59.0},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":145.3125,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":152.0625,"pitch":75.4375,"roll":63.9375},"location":"Right Knee"},{"euler":{"heading":134.6875,"pitch":124.0625,"roll":67.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:17.172"} +{"sensors":[{"euler":{"heading":61.375,"pitch":122.75,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":134.625,"pitch":7.375,"roll":7.0},"location":"Left Ankle"},{"euler":{"heading":100.0625,"pitch":108.125,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":76.6875,"pitch":142.8125,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":70.3125,"roll":70.6875},"location":"Right Knee"},{"euler":{"heading":127.625,"pitch":116.6875,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:17.273"} +{"sensors":[{"euler":{"heading":67.5,"pitch":123.625,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":132.375,"pitch":4.3125,"roll":6.375},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":108.375,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":75.9375,"pitch":140.6875,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":156.4375,"pitch":67.875,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":120.5,"pitch":106.375,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:17.374"} +{"sensors":[{"euler":{"heading":36.125,"pitch":139.625,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":108.0625,"pitch":0.3125,"roll":-0.125},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":108.0625,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":78.875,"pitch":137.4375,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":59.0625,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":114.8125,"pitch":102.875,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:17.475"} +{"sensors":[{"euler":{"heading":84.9375,"pitch":166.0625,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":79.0,"pitch":-1.0,"roll":-1.0625},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":174.25,"roll":83.875},"location":"Right Ankle"},{"euler":{"heading":80.875,"pitch":136.1875,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":164.625,"pitch":1.875,"roll":85.5},"location":"Right Knee"},{"euler":{"heading":114.25,"pitch":101.8125,"roll":45.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:17.576"} +{"sensors":[{"euler":{"heading":70.0,"pitch":-173.0625,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":63.9375,"pitch":-1.9375,"roll":-1.625},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":-178.25,"roll":87.75},"location":"Right Ankle"},{"euler":{"heading":81.5625,"pitch":134.6875,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":174.25,"pitch":-65.6875,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":120.6875,"pitch":105.8125,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:17.677"} +{"sensors":[{"euler":{"heading":83.6875,"pitch":176.0625,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":73.3125,"pitch":0.3125,"roll":-2.0},"location":"Left Ankle"},{"euler":{"heading":66.625,"pitch":-101.625,"roll":74.3125},"location":"Right Ankle"},{"euler":{"heading":86.5625,"pitch":136.125,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":191.8125,"pitch":-84.8125,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":123.375,"pitch":107.75,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:17.779"} +{"sensors":[{"euler":{"heading":94.0,"pitch":163.5,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":78.75,"pitch":3.1875,"roll":-5.625},"location":"Left Ankle"},{"euler":{"heading":52.125,"pitch":-98.9375,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":97.3125,"pitch":133.75,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":200.3125,"pitch":-80.5625,"roll":62.625},"location":"Right Knee"},{"euler":{"heading":124.875,"pitch":109.3125,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:17.880"} +{"sensors":[{"euler":{"heading":101.625,"pitch":154.25,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":92.5625,"pitch":7.3125,"roll":-3.9375},"location":"Left Ankle"},{"euler":{"heading":56.1875,"pitch":-106.5625,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":12.0,"pitch":133.4375,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":196.9375,"pitch":-68.8125,"roll":67.6875},"location":"Right Knee"},{"euler":{"heading":128.125,"pitch":115.0,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:17.981"} +{"sensors":[{"euler":{"heading":106.9375,"pitch":146.8125,"roll":56.8125},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":8.125,"roll":-5.375},"location":"Left Ankle"},{"euler":{"heading":78.0625,"pitch":-158.0625,"roll":78.625},"location":"Right Ankle"},{"euler":{"heading":11.125,"pitch":139.5,"roll":36.8125},"location":"Right Hip"},{"euler":{"heading":182.375,"pitch":-12.625,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":128.625,"pitch":116.3125,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:18.82"} +{"sensors":[{"euler":{"heading":113.8125,"pitch":139.4375,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":6.0625,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":107.1875,"pitch":116.875,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":1.6875,"pitch":142.5,"roll":39.0625},"location":"Right Hip"},{"euler":{"heading":162.625,"pitch":68.8125,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":130.25,"pitch":117.9375,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:18.183"} +{"sensors":[{"euler":{"heading":122.0625,"pitch":132.75,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":102.8125,"pitch":6.5,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":120.125,"pitch":105.8125,"roll":51.0625},"location":"Right Ankle"},{"euler":{"heading":79.1875,"pitch":143.8125,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":151.0,"pitch":76.4375,"roll":59.0},"location":"Right Knee"},{"euler":{"heading":132.4375,"pitch":120.875,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:18.284"} +{"sensors":[{"euler":{"heading":42.0,"pitch":126.5625,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":117.0,"pitch":6.625,"roll":-2.4375},"location":"Left Ankle"},{"euler":{"heading":109.3125,"pitch":107.0625,"roll":60.125},"location":"Right Ankle"},{"euler":{"heading":75.75,"pitch":145.1875,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":152.625,"pitch":73.75,"roll":64.375},"location":"Right Knee"},{"euler":{"heading":133.9375,"pitch":124.5625,"roll":67.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:18.385"} +{"sensors":[{"euler":{"heading":56.4375,"pitch":125.1875,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":134.9375,"pitch":2.5625,"roll":4.3125},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":107.125,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":75.4375,"pitch":143.4375,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":156.6875,"pitch":70.4375,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":121.8125,"pitch":114.125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:18.486"} +{"sensors":[{"euler":{"heading":58.5625,"pitch":127.375,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":132.6875,"pitch":-2.625,"roll":4.625},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":107.625,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":75.1875,"pitch":141.875,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":73.1875,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":114.5625,"pitch":103.0,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:18.587"} +{"sensors":[{"euler":{"heading":28.25,"pitch":142.875,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":105.25,"pitch":-2.3125,"roll":-1.5625},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":108.9375,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":78.125,"pitch":139.5,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":68.25,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":112.5,"pitch":101.9375,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:18.687"} +{"sensors":[{"euler":{"heading":79.125,"pitch":170.75,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":-4.625,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":111.5,"roll":81.625},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":137.625,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":168.1875,"pitch":1.0625,"roll":87.1875},"location":"Right Knee"},{"euler":{"heading":113.9375,"pitch":102.3125,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:18.787"} +{"sensors":[{"euler":{"heading":66.125,"pitch":-171.625,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":62.4375,"pitch":-5.5,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":179.375,"roll":87.8125},"location":"Right Ankle"},{"euler":{"heading":79.0,"pitch":137.375,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":-5.8125,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":119.5,"pitch":104.625,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:18.888"} +{"sensors":[{"euler":{"heading":83.125,"pitch":175.875,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":72.8125,"pitch":-0.5625,"roll":-2.625},"location":"Left Ankle"},{"euler":{"heading":70.6875,"pitch":-106.875,"roll":77.75},"location":"Right Ankle"},{"euler":{"heading":81.5,"pitch":138.1875,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":190.1875,"pitch":-86.5,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":123.75,"pitch":107.4375,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:18.991"} +{"sensors":[{"euler":{"heading":92.25,"pitch":163.375,"roll":59.625},"location":"Left Knee"},{"euler":{"heading":79.8125,"pitch":2.8125,"roll":-5.9375},"location":"Left Ankle"},{"euler":{"heading":52.5,"pitch":-102.0625,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":91.5625,"pitch":134.75,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":200.6875,"pitch":-80.75,"roll":62.6875},"location":"Right Knee"},{"euler":{"heading":124.8125,"pitch":111.3125,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:19.92"} +{"sensors":[{"euler":{"heading":101.1875,"pitch":153.8125,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":7.4375,"roll":-4.125},"location":"Left Ankle"},{"euler":{"heading":54.9375,"pitch":-106.75,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":97.5,"pitch":133.8125,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":197.1875,"pitch":-71.9375,"roll":66.8125},"location":"Right Knee"},{"euler":{"heading":129.0625,"pitch":116.125,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:19.192"} +{"sensors":[{"euler":{"heading":108.5625,"pitch":145.875,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":93.125,"pitch":7.375,"roll":-2.25},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-150.9375,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":8.4375,"pitch":137.8125,"roll":39.25},"location":"Right Hip"},{"euler":{"heading":182.0625,"pitch":-22.9375,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":130.1875,"pitch":117.625,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:19.292"} +{"sensors":[{"euler":{"heading":114.4375,"pitch":139.1875,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":6.6875,"roll":-0.4375},"location":"Left Ankle"},{"euler":{"heading":104.0625,"pitch":116.375,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":142.8125,"roll":39.6875},"location":"Right Hip"},{"euler":{"heading":163.0625,"pitch":68.625,"roll":69.75},"location":"Right Knee"},{"euler":{"heading":131.25,"pitch":120.375,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:19.392"} +{"sensors":[{"euler":{"heading":121.1875,"pitch":132.9375,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":104.25,"pitch":6.4375,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":119.75,"pitch":104.625,"roll":53.125},"location":"Right Ankle"},{"euler":{"heading":77.125,"pitch":145.0625,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":152.625,"pitch":78.375,"roll":59.8125},"location":"Right Knee"},{"euler":{"heading":133.6875,"pitch":125.25,"roll":68.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:19.493"} +{"sensors":[{"euler":{"heading":40.125,"pitch":127.6875,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":117.625,"pitch":1.625,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":109.0,"pitch":105.9375,"roll":62.4375},"location":"Right Ankle"},{"euler":{"heading":78.3125,"pitch":145.1875,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":155.875,"pitch":76.75,"roll":65.625},"location":"Right Knee"},{"euler":{"heading":134.125,"pitch":125.9375,"roll":67.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:19.593"} +{"sensors":[{"euler":{"heading":56.5625,"pitch":125.5,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":134.25,"pitch":1.625,"roll":5.875},"location":"Left Ankle"},{"euler":{"heading":102.8125,"pitch":107.9375,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":81.875,"pitch":141.4375,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":75.8125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":123.4375,"pitch":114.4375,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:19.693"} +{"sensors":[{"euler":{"heading":60.0,"pitch":129.375,"roll":29.125},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":0.0,"roll":4.625},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":108.375,"roll":71.875},"location":"Right Ankle"},{"euler":{"heading":79.8125,"pitch":139.875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":163.5625,"pitch":75.375,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":118.9375,"pitch":105.75,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:19.794"} +{"sensors":[{"euler":{"heading":30.0,"pitch":144.5,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":-0.875,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":110.375,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":82.6875,"pitch":137.5625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":167.5,"pitch":6.25,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":115.375,"pitch":103.625,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:19.895"} +{"sensors":[{"euler":{"heading":81.25,"pitch":170.625,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":74.0625,"pitch":-1.5625,"roll":-0.6875},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":116.625,"roll":82.25},"location":"Right Ankle"},{"euler":{"heading":83.9375,"pitch":136.5,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":170.3125,"pitch":1.0625,"roll":87.25},"location":"Right Knee"},{"euler":{"heading":115.3125,"pitch":102.4375,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:19.996"} +{"sensors":[{"euler":{"heading":71.0,"pitch":-172.6875,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":62.375,"pitch":-1.5625,"roll":-2.4375},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":-179.4375,"roll":87.375},"location":"Right Ankle"},{"euler":{"heading":83.875,"pitch":136.5625,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":-5.6875,"roll":83.9375},"location":"Right Knee"},{"euler":{"heading":120.875,"pitch":105.9375,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:20.97"} +{"sensors":[{"euler":{"heading":83.5,"pitch":176.375,"roll":58.5625},"location":"Left Knee"},{"euler":{"heading":72.1875,"pitch":0.25,"roll":-3.625},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-109.375,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":86.1875,"pitch":138.125,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":192.3125,"pitch":-86.3125,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":124.875,"pitch":107.625,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:20.198"} +{"sensors":[{"euler":{"heading":93.0,"pitch":162.8125,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":79.0625,"pitch":2.375,"roll":-5.375},"location":"Left Ankle"},{"euler":{"heading":51.625,"pitch":-101.0,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":96.625,"pitch":134.25,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":199.0,"pitch":-79.8125,"roll":63.25},"location":"Right Knee"},{"euler":{"heading":126.8125,"pitch":110.4375,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:20.298"} +{"sensors":[{"euler":{"heading":99.8125,"pitch":153.5,"roll":58.4375},"location":"Left Knee"},{"euler":{"heading":92.875,"pitch":6.0,"roll":-2.9375},"location":"Left Ankle"},{"euler":{"heading":54.75,"pitch":-110.5625,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":12.6875,"pitch":133.5,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":199.0,"pitch":-69.5,"roll":65.375},"location":"Right Knee"},{"euler":{"heading":129.0,"pitch":116.1875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:20.399"} +{"sensors":[{"euler":{"heading":105.5,"pitch":146.4375,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":92.5625,"pitch":6.8125,"roll":-5.6875},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":-140.6875,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":13.9375,"pitch":137.25,"roll":37.6875},"location":"Right Hip"},{"euler":{"heading":185.375,"pitch":-36.25,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":130.6875,"pitch":117.8125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:20.499"} +{"sensors":[{"euler":{"heading":109.125,"pitch":140.375,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":94.4375,"pitch":3.5,"roll":-0.3125},"location":"Left Ankle"},{"euler":{"heading":100.875,"pitch":120.5625,"roll":70.75},"location":"Right Ankle"},{"euler":{"heading":7.5625,"pitch":142.125,"roll":36.625},"location":"Right Hip"},{"euler":{"heading":168.1875,"pitch":64.8125,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":132.1875,"pitch":120.5,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:20.599"} +{"sensors":[{"euler":{"heading":116.5625,"pitch":134.0,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":100.25,"pitch":3.375,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":121.125,"pitch":105.75,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":353.3125,"pitch":143.75,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":154.8125,"pitch":79.75,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":133.75,"pitch":124.875,"roll":67.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:20.700"} +{"sensors":[{"euler":{"heading":36.6875,"pitch":127.875,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":111.625,"pitch":4.1875,"roll":2.1875},"location":"Left Ankle"},{"euler":{"heading":111.9375,"pitch":115.8125,"roll":59.5},"location":"Right Ankle"},{"euler":{"heading":77.6875,"pitch":144.5,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":153.0625,"pitch":70.9375,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":134.9375,"pitch":127.4375,"roll":68.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:20.801"} +{"sensors":[{"euler":{"heading":52.625,"pitch":124.5,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":130.1875,"pitch":3.375,"roll":0.5625},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":113.375,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":80.1875,"pitch":141.25,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":156.1875,"pitch":64.1875,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":123.0625,"pitch":117.6875,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:20.902"} +{"sensors":[{"euler":{"heading":63.5,"pitch":123.8125,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":133.4375,"pitch":-3.5625,"roll":3.4375},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":112.25,"roll":72.875},"location":"Right Ankle"},{"euler":{"heading":78.125,"pitch":139.875,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":159.0625,"pitch":63.9375,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":114.6875,"pitch":104.5625,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:21.2"} +{"sensors":[{"euler":{"heading":38.625,"pitch":137.8125,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":111.875,"pitch":-0.8125,"roll":-1.75},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":118.3125,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":82.1875,"pitch":136.3125,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":56.1875,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":112.6875,"pitch":103.4375,"roll":44.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:21.102"} +{"sensors":[{"euler":{"heading":86.4375,"pitch":165.8125,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":66.125,"pitch":-2.625,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":175.0625,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":84.6875,"pitch":134.75,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":166.875,"pitch":0.0625,"roll":86.5625},"location":"Right Knee"},{"euler":{"heading":113.0625,"pitch":102.625,"roll":44.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:21.203"} +{"sensors":[{"euler":{"heading":69.25,"pitch":-172.125,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":63.5,"pitch":-2.5,"roll":-1.9375},"location":"Left Ankle"},{"euler":{"heading":72.875,"pitch":-177.1875,"roll":86.625},"location":"Right Ankle"},{"euler":{"heading":85.1875,"pitch":134.375,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":174.3125,"pitch":-69.3125,"roll":82.4375},"location":"Right Knee"},{"euler":{"heading":119.4375,"pitch":105.4375,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:21.304"} +{"sensors":[{"euler":{"heading":81.25,"pitch":179.5,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":69.4375,"pitch":1.625,"roll":-2.625},"location":"Left Ankle"},{"euler":{"heading":67.875,"pitch":-102.9375,"roll":77.5625},"location":"Right Ankle"},{"euler":{"heading":86.6875,"pitch":135.625,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":189.25,"pitch":-87.875,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":124.0625,"pitch":107.5625,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:21.405"} +{"sensors":[{"euler":{"heading":92.5625,"pitch":166.6875,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":78.1875,"pitch":5.4375,"roll":-6.375},"location":"Left Ankle"},{"euler":{"heading":54.6875,"pitch":-96.625,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":96.125,"pitch":134.75,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":201.8125,"pitch":-84.375,"roll":62.0625},"location":"Right Knee"},{"euler":{"heading":123.6875,"pitch":109.3125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:21.506"} +{"sensors":[{"euler":{"heading":102.875,"pitch":157.125,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":92.5,"pitch":11.625,"roll":-3.0},"location":"Left Ankle"},{"euler":{"heading":55.25,"pitch":-105.0625,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":10.375,"pitch":134.375,"roll":43.5625},"location":"Right Hip"},{"euler":{"heading":199.6875,"pitch":-75.5625,"roll":64.5},"location":"Right Knee"},{"euler":{"heading":128.5,"pitch":115.3125,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:21.606"} +{"sensors":[{"euler":{"heading":110.75,"pitch":148.625,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":14.8125,"roll":-6.5},"location":"Left Ankle"},{"euler":{"heading":74.625,"pitch":-141.75,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":13.0,"pitch":138.375,"roll":36.875},"location":"Right Hip"},{"euler":{"heading":186.6875,"pitch":-42.5,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":131.5,"pitch":117.25,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:21.707"} +{"sensors":[{"euler":{"heading":117.5,"pitch":140.3125,"roll":55.9375},"location":"Left Knee"},{"euler":{"heading":94.875,"pitch":11.9375,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":101.4375,"pitch":118.1875,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":3.9375,"pitch":143.0625,"roll":37.5625},"location":"Right Hip"},{"euler":{"heading":168.0,"pitch":64.8125,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":132.875,"pitch":119.25,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:21.807"} +{"sensors":[{"euler":{"heading":124.25,"pitch":133.0625,"roll":51.125},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":11.125,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":117.5625,"pitch":108.8125,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":350.25,"pitch":145.0625,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":155.5,"pitch":74.625,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":133.1875,"pitch":120.625,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:21.908"} +{"sensors":[{"euler":{"heading":43.0625,"pitch":127.125,"roll":43.0625},"location":"Left Knee"},{"euler":{"heading":113.0625,"pitch":11.25,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":110.0625,"roll":61.0625},"location":"Right Ankle"},{"euler":{"heading":74.1875,"pitch":147.0,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":153.9375,"pitch":70.1875,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":132.9375,"pitch":121.8125,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:22.10"} +{"sensors":[{"euler":{"heading":56.125,"pitch":125.875,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":130.1875,"pitch":6.3125,"roll":2.375},"location":"Left Ankle"},{"euler":{"heading":99.375,"pitch":110.125,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":74.25,"pitch":145.0625,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":156.75,"pitch":65.1875,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":122.3125,"pitch":112.6875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:22.111"} +{"sensors":[{"euler":{"heading":56.6875,"pitch":128.125,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":-0.1875,"roll":2.4375},"location":"Left Ankle"},{"euler":{"heading":94.3125,"pitch":112.125,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":74.375,"pitch":142.3125,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":159.875,"pitch":61.6875,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":115.25,"pitch":103.375,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:22.211"} +{"sensors":[{"euler":{"heading":112.1875,"pitch":145.4375,"roll":45.375},"location":"Left Knee"},{"euler":{"heading":102.4375,"pitch":-2.3125,"roll":-0.9375},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":116.0625,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":139.0625,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":3.9375,"roll":84.6875},"location":"Right Knee"},{"euler":{"heading":113.375,"pitch":103.3125,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:22.312"} +{"sensors":[{"euler":{"heading":79.375,"pitch":173.5625,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":73.875,"pitch":-1.4375,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":126.0625,"roll":82.5625},"location":"Right Ankle"},{"euler":{"heading":81.5,"pitch":137.9375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":172.0625,"pitch":-2.3125,"roll":86.5625},"location":"Right Knee"},{"euler":{"heading":116.75,"pitch":103.6875,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:22.412"} +{"sensors":[{"euler":{"heading":72.0625,"pitch":-173.125,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":64.0,"pitch":-0.75,"roll":-2.8125},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-177.375,"roll":85.625},"location":"Right Ankle"},{"euler":{"heading":82.8125,"pitch":138.3125,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":181.625,"pitch":-78.375,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":120.75,"pitch":106.1875,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:22.513"} +{"sensors":[{"euler":{"heading":86.5625,"pitch":171.5625,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":75.0625,"pitch":1.375,"roll":-3.8125},"location":"Left Ankle"},{"euler":{"heading":69.0,"pitch":-113.0625,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":88.25,"pitch":137.8125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":201.6875,"pitch":-83.875,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":122.75,"pitch":105.75,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:22.613"} +{"sensors":[{"euler":{"heading":96.125,"pitch":160.0,"roll":60.1875},"location":"Left Knee"},{"euler":{"heading":80.6875,"pitch":4.125,"roll":-6.3125},"location":"Left Ankle"},{"euler":{"heading":57.0625,"pitch":-107.625,"roll":55.625},"location":"Right Ankle"},{"euler":{"heading":102.25,"pitch":133.3125,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":205.0,"pitch":-78.375,"roll":61.75},"location":"Right Knee"},{"euler":{"heading":127.1875,"pitch":110.9375,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:22.716"} +{"sensors":[{"euler":{"heading":101.5,"pitch":151.25,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":7.75,"roll":-3.5},"location":"Left Ankle"},{"euler":{"heading":62.1875,"pitch":-112.5625,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":136.5625,"roll":39.9375},"location":"Right Hip"},{"euler":{"heading":196.25,"pitch":-59.875,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":128.25,"pitch":114.5,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:22.817"} +{"sensors":[{"euler":{"heading":105.875,"pitch":144.5,"roll":56.375},"location":"Left Knee"},{"euler":{"heading":95.9375,"pitch":4.875,"roll":-1.0},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":175.4375,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":7.4375,"pitch":142.25,"roll":36.8125},"location":"Right Hip"},{"euler":{"heading":177.25,"pitch":43.75,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":128.625,"pitch":117.25,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:22.917"} +{"sensors":[{"euler":{"heading":112.375,"pitch":137.625,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":4.25,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":113.625,"pitch":110.875,"roll":56.875},"location":"Right Ankle"},{"euler":{"heading":353.5,"pitch":143.75,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":157.25,"pitch":75.125,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":130.6875,"pitch":121.25,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:23.18"} +{"sensors":[{"euler":{"heading":122.125,"pitch":131.125,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":109.6875,"pitch":4.625,"roll":1.9375},"location":"Left Ankle"},{"euler":{"heading":114.125,"pitch":114.3125,"roll":57.875},"location":"Right Ankle"},{"euler":{"heading":76.0625,"pitch":144.375,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":154.3125,"pitch":74.125,"roll":64.0},"location":"Right Knee"},{"euler":{"heading":133.3125,"pitch":125.75,"roll":67.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:23.119"} +{"sensors":[{"euler":{"heading":44.0,"pitch":126.5625,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":121.8125,"pitch":1.0,"roll":-0.1875},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":113.8125,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":74.6875,"pitch":143.6875,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":153.6875,"pitch":65.8125,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":129.25,"pitch":119.875,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:23.220"} +{"sensors":[{"euler":{"heading":57.375,"pitch":125.3125,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":130.875,"pitch":-5.25,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":117.4375,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":69.25,"pitch":142.875,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":153.0625,"pitch":67.3125,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":113.625,"pitch":103.875,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:23.321"} +{"sensors":[{"euler":{"heading":35.5,"pitch":137.9375,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":114.9375,"pitch":-4.4375,"roll":-1.3125},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":119.125,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":73.8125,"pitch":139.1875,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":158.375,"pitch":62.3125,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":110.1875,"pitch":103.5625,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:23.422"} +{"sensors":[{"euler":{"heading":89.125,"pitch":163.0,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":85.5625,"pitch":-2.0625,"roll":-0.625},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":124.6875,"roll":79.3125},"location":"Right Ankle"},{"euler":{"heading":77.875,"pitch":138.25,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":2.5625,"roll":86.0625},"location":"Right Knee"},{"euler":{"heading":112.375,"pitch":102.0,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:23.523"} +{"sensors":[{"euler":{"heading":70.0,"pitch":-173.625,"roll":59.6875},"location":"Left Knee"},{"euler":{"heading":65.5625,"pitch":-3.75,"roll":-1.75},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":177.4375,"roll":84.1875},"location":"Right Ankle"},{"euler":{"heading":80.0625,"pitch":137.4375,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":173.375,"pitch":-4.0,"roll":86.1875},"location":"Right Knee"},{"euler":{"heading":119.5625,"pitch":105.6875,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:23.624"} +{"sensors":[{"euler":{"heading":80.0,"pitch":179.25,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":70.125,"pitch":0.0,"roll":-1.8125},"location":"Left Ankle"},{"euler":{"heading":73.625,"pitch":-120.8125,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":82.3125,"pitch":137.6875,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":184.4375,"pitch":-84.75,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":123.8125,"pitch":106.4375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:23.724"} +{"sensors":[{"euler":{"heading":90.0,"pitch":167.4375,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":78.4375,"pitch":3.0,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":60.0,"pitch":-99.8125,"roll":49.0},"location":"Right Ankle"},{"euler":{"heading":89.6875,"pitch":135.5,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":199.625,"pitch":-82.25,"roll":65.1875},"location":"Right Knee"},{"euler":{"heading":123.1875,"pitch":106.9375,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:23.825"} +{"sensors":[{"euler":{"heading":97.75,"pitch":158.3125,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":90.4375,"pitch":7.5625,"roll":-2.4375},"location":"Left Ankle"},{"euler":{"heading":52.3125,"pitch":-103.625,"roll":55.9375},"location":"Right Ankle"},{"euler":{"heading":100.0,"pitch":134.375,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":200.375,"pitch":-77.75,"roll":63.25},"location":"Right Knee"},{"euler":{"heading":125.0,"pitch":111.875,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:23.926"} +{"sensors":[{"euler":{"heading":105.25,"pitch":150.625,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":96.75,"pitch":11.4375,"roll":-4.9375},"location":"Left Ankle"},{"euler":{"heading":64.0,"pitch":-113.1875,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":13.8125,"pitch":137.5625,"roll":36.6875},"location":"Right Hip"},{"euler":{"heading":190.3125,"pitch":-58.4375,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":129.0,"pitch":116.1875,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:24.28"} +{"sensors":[{"euler":{"heading":111.625,"pitch":142.75,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":8.375,"roll":-0.5625},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":154.3125,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":9.8125,"pitch":143.625,"roll":33.4375},"location":"Right Hip"},{"euler":{"heading":173.5,"pitch":52.0,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":130.625,"pitch":119.5625,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:24.128"} +{"sensors":[{"euler":{"heading":117.375,"pitch":135.875,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":103.0,"pitch":7.875,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":110.75,"pitch":115.9375,"roll":60.875},"location":"Right Ankle"},{"euler":{"heading":356.0,"pitch":143.625,"roll":40.8125},"location":"Right Hip"},{"euler":{"heading":157.25,"pitch":76.9375,"roll":63.9375},"location":"Right Knee"},{"euler":{"heading":131.5,"pitch":123.0,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:24.229"} +{"sensors":[{"euler":{"heading":125.6875,"pitch":130.125,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":112.5625,"pitch":7.75,"roll":2.1875},"location":"Left Ankle"},{"euler":{"heading":107.875,"pitch":119.1875,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":75.1875,"pitch":145.0,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":150.625,"pitch":70.8125,"roll":61.9375},"location":"Right Knee"},{"euler":{"heading":132.8125,"pitch":126.3125,"roll":67.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:24.330"} +{"sensors":[{"euler":{"heading":47.5,"pitch":126.3125,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":126.125,"pitch":-0.0625,"roll":5.75},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":114.0,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":76.5625,"pitch":143.5,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":152.625,"pitch":69.625,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":127.0,"pitch":121.375,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:24.431"} +{"sensors":[{"euler":{"heading":64.0625,"pitch":124.0,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":-0.5,"roll":7.375},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":116.25,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":72.5,"pitch":142.9375,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":155.5,"pitch":76.25,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":115.625,"pitch":105.3125,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:24.532"} +{"sensors":[{"euler":{"heading":32.0625,"pitch":135.1875,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":118.4375,"pitch":1.0625,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":120.125,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":76.75,"pitch":139.125,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":74.25,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":111.6875,"pitch":104.125,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:24.632"} +{"sensors":[{"euler":{"heading":95.0,"pitch":156.5625,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":91.375,"pitch":-1.125,"roll":-0.625},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":127.8125,"roll":81.5},"location":"Right Ankle"},{"euler":{"heading":81.0625,"pitch":136.8125,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":167.5625,"pitch":3.625,"roll":86.0625},"location":"Right Knee"},{"euler":{"heading":112.0,"pitch":102.75,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:24.733"} +{"sensors":[{"euler":{"heading":71.5,"pitch":-176.1875,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":67.625,"pitch":-1.5,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":179.8125,"roll":85.875},"location":"Right Ankle"},{"euler":{"heading":81.9375,"pitch":135.875,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":173.875,"pitch":-2.8125,"roll":86.875},"location":"Right Knee"},{"euler":{"heading":115.1875,"pitch":104.0625,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:24.833"} +{"sensors":[{"euler":{"heading":70.4375,"pitch":-172.4375,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":64.1875,"pitch":-1.4375,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-109.125,"roll":80.4375},"location":"Right Ankle"},{"euler":{"heading":82.375,"pitch":136.125,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":182.75,"pitch":-85.25,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":120.75,"pitch":106.875,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:24.934"} +{"sensors":[{"euler":{"heading":88.625,"pitch":172.1875,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":75.625,"pitch":4.9375,"roll":-5.0625},"location":"Left Ankle"},{"euler":{"heading":63.25,"pitch":-105.25,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":87.375,"pitch":135.4375,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":199.6875,"pitch":-88.25,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":124.125,"pitch":107.5,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:25.35"} +{"sensors":[{"euler":{"heading":100.5,"pitch":161.125,"roll":59.5},"location":"Left Knee"},{"euler":{"heading":82.3125,"pitch":9.3125,"roll":-7.625},"location":"Left Ankle"},{"euler":{"heading":52.875,"pitch":-102.875,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":97.6875,"pitch":132.5,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":206.5625,"pitch":-83.875,"roll":60.0625},"location":"Right Knee"},{"euler":{"heading":127.6875,"pitch":112.125,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:25.136"} +{"sensors":[{"euler":{"heading":107.125,"pitch":152.1875,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":96.125,"pitch":15.1875,"roll":-5.3125},"location":"Left Ankle"},{"euler":{"heading":58.5,"pitch":-107.625,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":15.1875,"pitch":133.25,"roll":41.875},"location":"Right Hip"},{"euler":{"heading":199.25,"pitch":-73.0,"roll":69.0},"location":"Right Knee"},{"euler":{"heading":129.1875,"pitch":115.8125,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:25.237"} +{"sensors":[{"euler":{"heading":114.625,"pitch":143.5625,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":94.6875,"pitch":14.1875,"roll":-2.9375},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":-165.3125,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":12.1875,"pitch":140.75,"roll":35.3125},"location":"Right Hip"},{"euler":{"heading":179.5625,"pitch":28.8125,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":129.9375,"pitch":117.8125,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:25.343"} +{"sensors":[{"euler":{"heading":121.4375,"pitch":136.0625,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":12.625,"roll":-0.125},"location":"Left Ankle"},{"euler":{"heading":110.625,"pitch":115.8125,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":359.0625,"pitch":142.75,"roll":40.6875},"location":"Right Hip"},{"euler":{"heading":145.4375,"pitch":74.5,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":131.5,"pitch":120.1875,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:25.444"} +{"sensors":[{"euler":{"heading":129.1875,"pitch":129.125,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":107.6875,"pitch":11.6875,"roll":2.0},"location":"Left Ankle"},{"euler":{"heading":114.0625,"pitch":116.9375,"roll":59.625},"location":"Right Ankle"},{"euler":{"heading":76.5625,"pitch":145.5625,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":156.0,"pitch":76.5,"roll":62.6875},"location":"Right Knee"},{"euler":{"heading":133.875,"pitch":124.3125,"roll":66.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:25.545"} +{"sensors":[{"euler":{"heading":51.8125,"pitch":123.9375,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":122.3125,"pitch":5.1875,"roll":1.625},"location":"Left Ankle"},{"euler":{"heading":100.0625,"pitch":115.875,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":77.125,"pitch":144.0625,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":156.75,"pitch":71.0,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":129.0,"pitch":119.8125,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:25.646"} +{"sensors":[{"euler":{"heading":64.4375,"pitch":124.6875,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":134.125,"pitch":1.0,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":118.625,"roll":72.6875},"location":"Right Ankle"},{"euler":{"heading":74.4375,"pitch":142.8125,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":160.5,"pitch":71.0,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":114.0625,"pitch":105.3125,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:25.747"} +{"sensors":[{"euler":{"heading":44.3125,"pitch":135.625,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":119.875,"pitch":-0.375,"roll":-0.1875},"location":"Left Ankle"},{"euler":{"heading":92.125,"pitch":129.9375,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":138.5,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":164.9375,"pitch":68.9375,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":111.25,"pitch":104.25,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:25.848"} +{"sensors":[{"euler":{"heading":94.0,"pitch":174.4375,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":89.5,"pitch":-0.4375,"roll":0.75},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":139.8125,"roll":80.25},"location":"Right Ankle"},{"euler":{"heading":82.125,"pitch":137.125,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":3.125,"roll":85.75},"location":"Right Knee"},{"euler":{"heading":113.0,"pitch":102.8125,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:25.949"} +{"sensors":[{"euler":{"heading":70.625,"pitch":-175.0,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":68.4375,"pitch":-1.375,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":179.9375,"roll":83.625},"location":"Right Ankle"},{"euler":{"heading":80.875,"pitch":137.5,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":177.0,"pitch":-3.125,"roll":86.0},"location":"Right Knee"},{"euler":{"heading":119.1875,"pitch":107.5,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:26.49"} +{"sensors":[{"euler":{"heading":79.625,"pitch":178.9375,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":73.375,"pitch":1.0625,"roll":1.6875},"location":"Left Ankle"},{"euler":{"heading":72.5625,"pitch":-121.6875,"roll":77.1875},"location":"Right Ankle"},{"euler":{"heading":83.375,"pitch":137.875,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":189.125,"pitch":-80.3125,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":121.3125,"pitch":107.5625,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:26.150"} +{"sensors":[{"euler":{"heading":89.125,"pitch":167.0,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":80.4375,"pitch":2.1875,"roll":-0.375},"location":"Left Ankle"},{"euler":{"heading":56.8125,"pitch":-106.25,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":95.3125,"pitch":135.3125,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":200.25,"pitch":-79.3125,"roll":66.25},"location":"Right Knee"},{"euler":{"heading":123.0,"pitch":110.875,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:26.250"} +{"sensors":[{"euler":{"heading":97.3125,"pitch":158.4375,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":90.5,"pitch":6.625,"roll":-3.5625},"location":"Left Ankle"},{"euler":{"heading":53.8125,"pitch":-107.75,"roll":57.8125},"location":"Right Ankle"},{"euler":{"heading":14.5,"pitch":132.0,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":197.3125,"pitch":-69.8125,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":126.375,"pitch":117.0625,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:26.352"} +{"sensors":[{"euler":{"heading":105.3125,"pitch":149.75,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":9.0,"roll":-4.3125},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":-128.6875,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":14.75,"pitch":137.875,"roll":35.625},"location":"Right Hip"},{"euler":{"heading":183.8125,"pitch":-19.5,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":127.4375,"pitch":117.3125,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:26.453"} +{"sensors":[{"euler":{"heading":113.875,"pitch":141.375,"roll":55.375},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":7.8125,"roll":-0.375},"location":"Left Ankle"},{"euler":{"heading":94.0,"pitch":136.375,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":9.25,"pitch":141.4375,"roll":35.75},"location":"Right Hip"},{"euler":{"heading":164.3125,"pitch":68.8125,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":131.4375,"pitch":119.5625,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:26.553"} +{"sensors":[{"euler":{"heading":121.25,"pitch":134.3125,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":103.375,"pitch":7.875,"roll":1.9375},"location":"Left Ankle"},{"euler":{"heading":111.125,"pitch":120.25,"roll":58.5},"location":"Right Ankle"},{"euler":{"heading":354.5625,"pitch":144.625,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":153.4375,"pitch":76.875,"roll":59.5},"location":"Right Knee"},{"euler":{"heading":131.6875,"pitch":121.6875,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:26.654"} +{"sensors":[{"euler":{"heading":42.9375,"pitch":127.625,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":115.625,"pitch":9.0,"roll":2.25},"location":"Left Ankle"},{"euler":{"heading":107.375,"pitch":121.8125,"roll":62.5625},"location":"Right Ankle"},{"euler":{"heading":76.3125,"pitch":146.0625,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":152.0,"pitch":73.8125,"roll":62.75},"location":"Right Knee"},{"euler":{"heading":132.6875,"pitch":122.75,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:26.755"} +{"sensors":[{"euler":{"heading":58.25,"pitch":125.3125,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":5.4375,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":120.5625,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":77.0,"pitch":144.3125,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":155.0,"pitch":72.5625,"roll":69.75},"location":"Right Knee"},{"euler":{"heading":120.5625,"pitch":111.5,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:26.856"} +{"sensors":[{"euler":{"heading":61.625,"pitch":127.0625,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":130.875,"pitch":2.375,"roll":4.75},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":127.5,"roll":73.125},"location":"Right Ankle"},{"euler":{"heading":75.375,"pitch":141.625,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":156.1875,"pitch":69.6875,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":112.4375,"pitch":101.75,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:26.957"} +{"sensors":[{"euler":{"heading":29.5,"pitch":143.75,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":106.625,"pitch":-0.3125,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":137.3125,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":137.625,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":158.625,"pitch":63.375,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":110.5625,"pitch":101.75,"roll":43.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:27.58"} +{"sensors":[{"euler":{"heading":80.6875,"pitch":170.75,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":76.4375,"pitch":-2.25,"roll":0.1875},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":177.4375,"roll":83.4375},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":136.9375,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":164.875,"pitch":3.0625,"roll":84.875},"location":"Right Knee"},{"euler":{"heading":111.6875,"pitch":102.625,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:27.158"} +{"sensors":[{"euler":{"heading":67.8125,"pitch":-170.3125,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":62.4375,"pitch":-1.875,"roll":-2.25},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":-134.0,"roll":83.0},"location":"Right Ankle"},{"euler":{"heading":81.6875,"pitch":136.625,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":174.5,"pitch":-4.3125,"roll":84.8125},"location":"Right Knee"},{"euler":{"heading":120.3125,"pitch":107.625,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:27.259"} +{"sensors":[{"euler":{"heading":80.9375,"pitch":179.5,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":72.6875,"pitch":0.875,"roll":-3.0},"location":"Left Ankle"},{"euler":{"heading":66.125,"pitch":-111.375,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":87.875,"pitch":136.375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":191.875,"pitch":-84.125,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":122.0625,"pitch":108.75,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:27.360"} +{"sensors":[{"euler":{"heading":93.0,"pitch":166.4375,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":79.375,"pitch":4.75,"roll":-6.25},"location":"Left Ankle"},{"euler":{"heading":53.3125,"pitch":-104.9375,"roll":54.375},"location":"Right Ankle"},{"euler":{"heading":100.75,"pitch":131.75,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":200.5,"pitch":-79.4375,"roll":64.5},"location":"Right Knee"},{"euler":{"heading":125.75,"pitch":111.1875,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:27.460"} +{"sensors":[{"euler":{"heading":103.0625,"pitch":155.5,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":93.3125,"pitch":10.4375,"roll":-3.125},"location":"Left Ankle"},{"euler":{"heading":58.0625,"pitch":-111.0625,"roll":60.4375},"location":"Right Ankle"},{"euler":{"heading":16.375,"pitch":133.875,"roll":40.0},"location":"Right Hip"},{"euler":{"heading":198.75,"pitch":-68.625,"roll":69.3125},"location":"Right Knee"},{"euler":{"heading":129.5,"pitch":116.9375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:27.560"} +{"sensors":[{"euler":{"heading":110.625,"pitch":146.875,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":96.125,"pitch":10.6875,"roll":-2.625},"location":"Left Ankle"},{"euler":{"heading":82.9375,"pitch":-163.4375,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":13.0,"pitch":140.4375,"roll":35.5},"location":"Right Hip"},{"euler":{"heading":183.125,"pitch":-3.4375,"roll":82.625},"location":"Right Knee"},{"euler":{"heading":130.625,"pitch":118.125,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:27.662"} +{"sensors":[{"euler":{"heading":114.9375,"pitch":139.8125,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":7.4375,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":107.8125,"pitch":120.125,"roll":64.375},"location":"Right Ankle"},{"euler":{"heading":0.5625,"pitch":143.75,"roll":39.5},"location":"Right Hip"},{"euler":{"heading":163.75,"pitch":75.0625,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":131.3125,"pitch":120.8125,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:27.762"} +{"sensors":[{"euler":{"heading":121.3125,"pitch":133.6875,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":106.3125,"pitch":7.0,"roll":2.25},"location":"Left Ankle"},{"euler":{"heading":119.0,"pitch":115.125,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":348.0,"pitch":146.375,"roll":44.875},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":81.5,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":133.375,"pitch":126.375,"roll":66.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:27.863"} +{"sensors":[{"euler":{"heading":44.3125,"pitch":126.6875,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":119.125,"pitch":6.375,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":106.75,"pitch":119.0,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":73.1875,"pitch":147.875,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":154.125,"pitch":76.625,"roll":65.125},"location":"Right Knee"},{"euler":{"heading":133.875,"pitch":125.625,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:27.963"} +{"sensors":[{"euler":{"heading":59.5625,"pitch":124.5,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":133.3125,"pitch":2.6875,"roll":5.9375},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":119.1875,"roll":69.0625},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":146.375,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":159.5,"pitch":77.375,"roll":72.5625},"location":"Right Knee"},{"euler":{"heading":118.6875,"pitch":109.375,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:28.63"} +{"sensors":[{"euler":{"heading":48.1875,"pitch":132.6875,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":123.1875,"pitch":0.1875,"roll":2.8125},"location":"Left Ankle"},{"euler":{"heading":96.0625,"pitch":123.875,"roll":73.1875},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":142.75,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":74.8125,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":114.125,"pitch":101.125,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:28.164"} +{"sensors":[{"euler":{"heading":98.6875,"pitch":153.0625,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":94.875,"pitch":-1.5625,"roll":-1.25},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":134.8125,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":77.75,"pitch":139.8125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":164.5625,"pitch":63.6875,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":112.0625,"pitch":100.75,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:28.264"} +{"sensors":[{"euler":{"heading":68.3125,"pitch":-176.1875,"roll":60.4375},"location":"Left Knee"},{"euler":{"heading":68.875,"pitch":-4.3125,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":155.875,"roll":81.5},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":139.375,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":170.375,"pitch":0.4375,"roll":87.125},"location":"Right Knee"},{"euler":{"heading":113.875,"pitch":103.3125,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:28.365"} +{"sensors":[{"euler":{"heading":76.0625,"pitch":-178.9375,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":69.25,"pitch":-1.5625,"roll":-0.0625},"location":"Left Ankle"},{"euler":{"heading":74.9375,"pitch":-140.75,"roll":80.9375},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":139.5625,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":181.875,"pitch":-75.25,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":120.25,"pitch":107.25,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:28.466"} +{"sensors":[{"euler":{"heading":86.8125,"pitch":171.1875,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":0.5625,"roll":-3.3125},"location":"Left Ankle"},{"euler":{"heading":62.75,"pitch":-112.6875,"roll":64.875},"location":"Right Ankle"},{"euler":{"heading":86.375,"pitch":136.9375,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":196.5625,"pitch":-80.25,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":120.75,"pitch":108.375,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:28.567"} +{"sensors":[{"euler":{"heading":93.75,"pitch":162.0,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":85.75,"pitch":3.75,"roll":-0.9375},"location":"Left Ankle"},{"euler":{"heading":56.25,"pitch":-113.625,"roll":58.5},"location":"Right Ankle"},{"euler":{"heading":99.5,"pitch":132.8125,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":200.9375,"pitch":-74.5,"roll":66.25},"location":"Right Knee"},{"euler":{"heading":125.625,"pitch":115.625,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:28.667"} +{"sensors":[{"euler":{"heading":98.1875,"pitch":153.9375,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":4.3125,"roll":-0.6875},"location":"Left Ankle"},{"euler":{"heading":68.625,"pitch":-126.0,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":10.875,"pitch":138.25,"roll":38.5},"location":"Right Hip"},{"euler":{"heading":191.75,"pitch":-55.5,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":125.5625,"pitch":118.0,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:28.768"} +{"sensors":[{"euler":{"heading":103.5625,"pitch":146.9375,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":95.4375,"pitch":2.6875,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":151.5,"roll":75.25},"location":"Right Ankle"},{"euler":{"heading":4.875,"pitch":142.875,"roll":36.6875},"location":"Right Hip"},{"euler":{"heading":174.875,"pitch":63.5,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":127.4375,"pitch":122.25,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:28.868"} +{"sensors":[{"euler":{"heading":112.0,"pitch":139.75,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":2.875,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":114.0,"pitch":113.375,"roll":58.875},"location":"Right Ankle"},{"euler":{"heading":351.0625,"pitch":144.0,"roll":44.25},"location":"Right Hip"},{"euler":{"heading":157.1875,"pitch":78.375,"roll":63.25},"location":"Right Knee"},{"euler":{"heading":131.5625,"pitch":126.5,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:28.969"} +{"sensors":[{"euler":{"heading":32.4375,"pitch":133.25,"roll":44.75},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":3.625,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":108.375,"pitch":119.625,"roll":60.625},"location":"Right Ankle"},{"euler":{"heading":72.4375,"pitch":145.125,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":151.625,"pitch":72.25,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":134.3125,"pitch":130.5,"roll":67.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:29.69"} +{"sensors":[{"euler":{"heading":50.8125,"pitch":128.25,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":127.5,"pitch":0.625,"roll":8.1875},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":115.8125,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":143.375,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":154.8125,"pitch":74.75,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":122.3125,"pitch":114.3125,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:29.170"} +{"sensors":[{"euler":{"heading":53.75,"pitch":130.375,"roll":29.9375},"location":"Left Knee"},{"euler":{"heading":128.125,"pitch":-2.625,"roll":3.625},"location":"Left Ankle"},{"euler":{"heading":97.0,"pitch":117.375,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":69.0625,"pitch":131.75,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":158.9375,"pitch":76.125,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":112.25,"pitch":101.8125,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:29.271"} +{"sensors":[{"euler":{"heading":28.3125,"pitch":142.5,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":105.25,"pitch":-1.25,"roll":-1.5625},"location":"Left Ankle"},{"euler":{"heading":91.375,"pitch":125.8125,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":135.6875,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":74.1875,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":114.3125,"pitch":102.875,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:29.372"} +{"sensors":[{"euler":{"heading":82.5,"pitch":169.6875,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":76.625,"pitch":-0.6875,"roll":-0.4375},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":144.25,"roll":81.4375},"location":"Right Ankle"},{"euler":{"heading":79.3125,"pitch":134.1875,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":172.3125,"pitch":1.1875,"roll":88.1875},"location":"Right Knee"},{"euler":{"heading":117.875,"pitch":101.875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:29.473"} +{"sensors":[{"euler":{"heading":68.6875,"pitch":-170.125,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":62.5625,"pitch":-2.3125,"roll":-3.6875},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":-177.4375,"roll":83.3125},"location":"Right Ankle"},{"euler":{"heading":81.6875,"pitch":134.9375,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":180.1875,"pitch":-6.125,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":124.3125,"pitch":105.0625,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:29.573"} +{"sensors":[{"euler":{"heading":84.4375,"pitch":177.875,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":72.1875,"pitch":2.1875,"roll":-4.0625},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":-118.0,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":86.125,"pitch":135.0625,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":194.0625,"pitch":-87.5625,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":130.25,"pitch":106.25,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:29.674"} +{"sensors":[{"euler":{"heading":94.125,"pitch":165.0625,"roll":60.5625},"location":"Left Knee"},{"euler":{"heading":79.6875,"pitch":5.875,"roll":-7.0625},"location":"Left Ankle"},{"euler":{"heading":54.5,"pitch":-100.0,"roll":55.9375},"location":"Right Ankle"},{"euler":{"heading":96.5,"pitch":130.25,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":201.5625,"pitch":-81.9375,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":130.625,"pitch":107.3125,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:29.775"} +{"sensors":[{"euler":{"heading":100.875,"pitch":155.375,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":9.0625,"roll":-1.5},"location":"Left Ankle"},{"euler":{"heading":53.75,"pitch":-109.0,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":100.375,"pitch":131.4375,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":202.3125,"pitch":-71.8125,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":130.4375,"pitch":111.875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:29.875"} +{"sensors":[{"euler":{"heading":106.0625,"pitch":148.625,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":10.75,"roll":-5.625},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":-150.1875,"roll":74.875},"location":"Right Ankle"},{"euler":{"heading":8.25,"pitch":136.875,"roll":40.6875},"location":"Right Hip"},{"euler":{"heading":185.6875,"pitch":-23.75,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":134.125,"pitch":115.5625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:29.976"} +{"sensors":[{"euler":{"heading":112.3125,"pitch":140.6875,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":97.0625,"pitch":7.8125,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":107.0625,"pitch":120.5625,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":357.9375,"pitch":141.75,"roll":42.75},"location":"Right Hip"},{"euler":{"heading":166.875,"pitch":75.375,"roll":71.1875},"location":"Right Knee"},{"euler":{"heading":135.8125,"pitch":117.25,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:30.77"} +{"sensors":[{"euler":{"heading":119.0,"pitch":134.1875,"roll":49.5625},"location":"Left Knee"},{"euler":{"heading":103.375,"pitch":6.9375,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":120.125,"pitch":110.6875,"roll":54.8125},"location":"Right Ankle"},{"euler":{"heading":77.4375,"pitch":142.625,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":156.125,"pitch":81.9375,"roll":62.0},"location":"Right Knee"},{"euler":{"heading":136.625,"pitch":120.8125,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:30.178"} +{"sensors":[{"euler":{"heading":41.8125,"pitch":127.375,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":112.9375,"pitch":7.6875,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":109.75,"pitch":119.0,"roll":61.5},"location":"Right Ankle"},{"euler":{"heading":73.0625,"pitch":143.6875,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":154.9375,"pitch":75.75,"roll":66.5},"location":"Right Knee"},{"euler":{"heading":141.1875,"pitch":123.6875,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:30.280"} +{"sensors":[{"euler":{"heading":56.0,"pitch":125.5,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":128.4375,"pitch":5.4375,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":102.9375,"pitch":121.125,"roll":67.0},"location":"Right Ankle"},{"euler":{"heading":72.1875,"pitch":141.3125,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":158.75,"pitch":73.4375,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":129.0,"pitch":114.5625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:30.380"} +{"sensors":[{"euler":{"heading":53.125,"pitch":129.1875,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":123.5625,"pitch":-0.4375,"roll":2.5},"location":"Left Ankle"},{"euler":{"heading":97.375,"pitch":122.6875,"roll":71.3125},"location":"Right Ankle"},{"euler":{"heading":73.0625,"pitch":138.0,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":162.4375,"pitch":68.4375,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":122.0,"pitch":103.5,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:30.481"} +{"sensors":[{"euler":{"heading":109.5625,"pitch":146.4375,"roll":47.1875},"location":"Left Knee"},{"euler":{"heading":101.875,"pitch":-1.625,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":132.125,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":76.5,"pitch":135.3125,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":5.8125,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":121.5625,"pitch":102.8125,"roll":45.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:30.582"} +{"sensors":[{"euler":{"heading":78.1875,"pitch":175.1875,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":72.625,"pitch":-1.0625,"roll":-1.875},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":151.0,"roll":80.75},"location":"Right Ankle"},{"euler":{"heading":79.5,"pitch":133.5625,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":170.3125,"pitch":0.0,"roll":87.3125},"location":"Right Knee"},{"euler":{"heading":124.0625,"pitch":103.1875,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:30.682"} +{"sensors":[{"euler":{"heading":69.1875,"pitch":-170.875,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":63.125,"pitch":-1.0625,"roll":-3.0625},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-151.1875,"roll":83.0},"location":"Right Ankle"},{"euler":{"heading":80.375,"pitch":133.75,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":179.8125,"pitch":-78.25,"roll":82.0625},"location":"Right Knee"},{"euler":{"heading":131.0625,"pitch":107.0,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:30.782"} +{"sensors":[{"euler":{"heading":83.375,"pitch":175.5625,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":74.5,"pitch":0.125,"roll":-3.5625},"location":"Left Ankle"},{"euler":{"heading":68.5,"pitch":-120.5,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":83.25,"pitch":133.0625,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":196.375,"pitch":-83.875,"roll":70.1875},"location":"Right Knee"},{"euler":{"heading":132.125,"pitch":106.625,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:30.884"} +{"sensors":[{"euler":{"heading":91.4375,"pitch":163.3125,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":80.3125,"pitch":2.4375,"roll":-5.25},"location":"Left Ankle"},{"euler":{"heading":55.3125,"pitch":-112.0,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":95.125,"pitch":129.6875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":202.875,"pitch":-78.75,"roll":61.375},"location":"Right Knee"},{"euler":{"heading":133.875,"pitch":108.875,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:30.985"} +{"sensors":[{"euler":{"heading":97.9375,"pitch":154.875,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":94.6875,"pitch":6.375,"roll":-3.0625},"location":"Left Ankle"},{"euler":{"heading":59.25,"pitch":-115.0625,"roll":63.5},"location":"Right Ankle"},{"euler":{"heading":97.625,"pitch":131.75,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":195.75,"pitch":-67.6875,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":136.0625,"pitch":112.6875,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:31.86"} +{"sensors":[{"euler":{"heading":100.8125,"pitch":148.4375,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":95.1875,"pitch":6.8125,"roll":-4.3125},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":-173.6875,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":3.8125,"pitch":137.1875,"roll":41.375},"location":"Right Hip"},{"euler":{"heading":182.0625,"pitch":-6.3125,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":138.1875,"pitch":116.125,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:31.186"} +{"sensors":[{"euler":{"heading":109.9375,"pitch":140.5,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":99.4375,"pitch":8.0,"roll":-1.5625},"location":"Left Ankle"},{"euler":{"heading":108.1875,"pitch":119.5,"roll":63.4375},"location":"Right Ankle"},{"euler":{"heading":355.9375,"pitch":141.25,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":164.1875,"pitch":72.1875,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":140.4375,"pitch":118.25,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:31.287"} +{"sensors":[{"euler":{"heading":119.9375,"pitch":133.625,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":103.8125,"pitch":7.4375,"roll":0.5625},"location":"Left Ankle"},{"euler":{"heading":115.5625,"pitch":110.4375,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":73.75,"pitch":142.375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":152.375,"pitch":76.875,"roll":61.375},"location":"Right Knee"},{"euler":{"heading":142.125,"pitch":121.5625,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:31.388"} +{"sensors":[{"euler":{"heading":40.8125,"pitch":127.8125,"roll":41.5},"location":"Left Knee"},{"euler":{"heading":114.0,"pitch":4.375,"roll":4.3125},"location":"Left Ankle"},{"euler":{"heading":105.75,"pitch":113.125,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":71.8125,"pitch":143.5,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":153.625,"pitch":73.6875,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":144.625,"pitch":123.25,"roll":66.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:31.489"} +{"sensors":[{"euler":{"heading":55.0,"pitch":126.3125,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":133.25,"pitch":1.6875,"roll":6.5},"location":"Left Ankle"},{"euler":{"heading":99.9375,"pitch":115.3125,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":71.0625,"pitch":141.5,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":157.1875,"pitch":70.625,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":128.0625,"pitch":112.8125,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:31.589"} +{"sensors":[{"euler":{"heading":55.1875,"pitch":129.6875,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":128.5,"pitch":-0.9375,"roll":1.125},"location":"Left Ankle"},{"euler":{"heading":96.0625,"pitch":116.0,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":71.8125,"pitch":139.125,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":75.0,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":122.1875,"pitch":103.1875,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:31.690"} +{"sensors":[{"euler":{"heading":111.25,"pitch":146.5,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":102.5,"pitch":-0.375,"roll":-1.625},"location":"Left Ankle"},{"euler":{"heading":92.3125,"pitch":118.25,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":77.0,"pitch":135.6875,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":167.25,"pitch":4.6875,"roll":85.125},"location":"Right Knee"},{"euler":{"heading":122.8125,"pitch":103.375,"roll":44.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:31.790"} +{"sensors":[{"euler":{"heading":79.3125,"pitch":174.5,"roll":58.0},"location":"Left Knee"},{"euler":{"heading":74.8125,"pitch":-0.1875,"roll":-1.0625},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":130.8125,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":80.0625,"pitch":133.75,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":172.125,"pitch":-0.75,"roll":88.6875},"location":"Right Knee"},{"euler":{"heading":125.625,"pitch":102.4375,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:31.891"} +{"sensors":[{"euler":{"heading":69.375,"pitch":-170.375,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":62.4375,"pitch":-0.375,"roll":-3.6875},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-177.625,"roll":84.625},"location":"Right Ankle"},{"euler":{"heading":81.3125,"pitch":132.75,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":179.875,"pitch":-86.4375,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":131.625,"pitch":106.625,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:31.991"} +{"sensors":[{"euler":{"heading":82.625,"pitch":177.0,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":73.1875,"pitch":1.0,"roll":-4.0625},"location":"Left Ankle"},{"euler":{"heading":69.375,"pitch":-113.5625,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":84.3125,"pitch":132.875,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":197.25,"pitch":-88.375,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":132.6875,"pitch":106.875,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:32.91"} +{"sensors":[{"euler":{"heading":92.5,"pitch":165.125,"roll":59.9375},"location":"Left Knee"},{"euler":{"heading":79.5,"pitch":4.75,"roll":-6.75},"location":"Left Ankle"},{"euler":{"heading":52.6875,"pitch":-103.125,"roll":55.375},"location":"Right Ankle"},{"euler":{"heading":92.875,"pitch":130.6875,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":202.0,"pitch":-80.75,"roll":61.375},"location":"Right Knee"},{"euler":{"heading":133.875,"pitch":109.375,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:32.192"} +{"sensors":[{"euler":{"heading":101.5,"pitch":154.625,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":94.875,"pitch":10.9375,"roll":-6.4375},"location":"Left Ankle"},{"euler":{"heading":60.625,"pitch":-114.1875,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":96.375,"pitch":132.8125,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":193.9375,"pitch":-65.8125,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":136.3125,"pitch":114.25,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:32.296"} +{"sensors":[{"euler":{"heading":108.5625,"pitch":146.875,"roll":57.25},"location":"Left Knee"},{"euler":{"heading":92.1875,"pitch":11.0,"roll":-5.375},"location":"Left Ankle"},{"euler":{"heading":86.6875,"pitch":174.375,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":3.625,"pitch":138.0625,"roll":41.0},"location":"Right Hip"},{"euler":{"heading":177.8125,"pitch":27.6875,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":138.5625,"pitch":116.8125,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:32.396"} +{"sensors":[{"euler":{"heading":115.5625,"pitch":139.1875,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":96.9375,"pitch":9.875,"roll":-1.375},"location":"Left Ankle"},{"euler":{"heading":113.75,"pitch":115.9375,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":354.875,"pitch":141.5,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":162.125,"pitch":74.5625,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":140.875,"pitch":118.3125,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:32.497"} +{"sensors":[{"euler":{"heading":124.4375,"pitch":132.125,"roll":48.4375},"location":"Left Knee"},{"euler":{"heading":104.6875,"pitch":9.5625,"roll":1.4375},"location":"Left Ankle"},{"euler":{"heading":117.9375,"pitch":110.75,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":74.3125,"pitch":143.875,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":152.8125,"pitch":76.875,"roll":60.625},"location":"Right Knee"},{"euler":{"heading":143.1875,"pitch":120.3125,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:32.597"} +{"sensors":[{"euler":{"heading":47.75,"pitch":126.1875,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":118.5625,"pitch":6.9375,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":104.75,"pitch":114.125,"roll":63.125},"location":"Right Ankle"},{"euler":{"heading":71.0625,"pitch":144.125,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":154.4375,"pitch":73.5625,"roll":67.0625},"location":"Right Knee"},{"euler":{"heading":143.75,"pitch":121.625,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:32.697"} +{"sensors":[{"euler":{"heading":65.75,"pitch":123.5625,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":5.9375,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":119.1875,"roll":70.25},"location":"Right Ankle"},{"euler":{"heading":72.1875,"pitch":140.875,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":156.125,"pitch":65.5,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":129.875,"pitch":109.1875,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:32.798"} +{"sensors":[{"euler":{"heading":54.8125,"pitch":131.9375,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":123.0,"pitch":1.6875,"roll":3.3125},"location":"Left Ankle"},{"euler":{"heading":88.875,"pitch":124.0,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":75.25,"pitch":136.6875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":63.1875,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":125.4375,"pitch":101.875,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:32.898"} +{"sensors":[{"euler":{"heading":105.0625,"pitch":152.1875,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":95.3125,"pitch":2.0,"roll":-1.9375},"location":"Left Ankle"},{"euler":{"heading":82.1875,"pitch":133.875,"roll":79.875},"location":"Right Ankle"},{"euler":{"heading":80.625,"pitch":131.9375,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":163.875,"pitch":4.25,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":125.8125,"pitch":102.0625,"roll":43.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:32.998"} +{"sensors":[{"euler":{"heading":75.0,"pitch":-178.375,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":69.125,"pitch":0.0,"roll":-2.3125},"location":"Left Ankle"},{"euler":{"heading":76.375,"pitch":178.3125,"roll":84.1875},"location":"Right Ankle"},{"euler":{"heading":82.1875,"pitch":131.8125,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":169.875,"pitch":-1.625,"roll":86.3125},"location":"Right Knee"},{"euler":{"heading":127.1875,"pitch":103.3125,"roll":44.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:33.99"} +{"sensors":[{"euler":{"heading":79.6875,"pitch":-177.875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":66.9375,"pitch":2.25,"roll":-2.8125},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":-123.9375,"roll":81.1875},"location":"Right Ankle"},{"euler":{"heading":85.5625,"pitch":132.625,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":182.3125,"pitch":-83.3125,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":134.75,"pitch":106.6875,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:33.199"} +{"sensors":[{"euler":{"heading":87.75,"pitch":170.25,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":75.5,"pitch":2.25,"roll":-4.0625},"location":"Left Ankle"},{"euler":{"heading":64.8125,"pitch":-113.25,"roll":65.6875},"location":"Right Ankle"},{"euler":{"heading":88.4375,"pitch":132.9375,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":198.9375,"pitch":-88.1875,"roll":68.375},"location":"Right Knee"},{"euler":{"heading":132.4375,"pitch":105.625,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:33.300"} +{"sensors":[{"euler":{"heading":93.875,"pitch":161.1875,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":82.5,"pitch":3.875,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":57.5,"pitch":-112.25,"roll":58.1875},"location":"Right Ankle"},{"euler":{"heading":96.375,"pitch":131.625,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":203.5,"pitch":-82.5,"roll":62.5},"location":"Right Knee"},{"euler":{"heading":135.25,"pitch":111.75,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:33.401"} +{"sensors":[{"euler":{"heading":101.5,"pitch":153.375,"roll":58.25},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":8.4375,"roll":-3.75},"location":"Left Ankle"},{"euler":{"heading":65.875,"pitch":-124.0625,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":8.0,"pitch":134.8125,"roll":42.625},"location":"Right Hip"},{"euler":{"heading":193.1875,"pitch":-66.125,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":138.4375,"pitch":114.5,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:33.502"} +{"sensors":[{"euler":{"heading":108.0,"pitch":145.8125,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":93.0,"pitch":6.8125,"roll":-1.6875},"location":"Left Ankle"},{"euler":{"heading":88.375,"pitch":154.6875,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":2.5,"pitch":140.6875,"roll":39.4375},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":23.125,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":140.375,"pitch":118.0625,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:33.602"} +{"sensors":[{"euler":{"heading":116.125,"pitch":137.625,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":7.4375,"roll":-0.4375},"location":"Left Ankle"},{"euler":{"heading":113.625,"pitch":115.125,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":352.75,"pitch":142.8125,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":159.9375,"pitch":74.75,"roll":65.875},"location":"Right Knee"},{"euler":{"heading":142.9375,"pitch":120.125,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:33.703"} +{"sensors":[{"euler":{"heading":124.75,"pitch":130.625,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":105.8125,"pitch":7.875,"roll":1.3125},"location":"Left Ankle"},{"euler":{"heading":118.125,"pitch":110.625,"roll":51.375},"location":"Right Ankle"},{"euler":{"heading":72.375,"pitch":144.0,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":153.4375,"pitch":75.125,"roll":62.25},"location":"Right Knee"},{"euler":{"heading":145.0,"pitch":124.5,"roll":67.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:33.804"} +{"sensors":[{"euler":{"heading":48.1875,"pitch":125.0,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":120.75,"pitch":6.0,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":103.0,"pitch":114.5,"roll":62.75},"location":"Right Ankle"},{"euler":{"heading":72.375,"pitch":142.3125,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":67.6875,"roll":68.875},"location":"Right Knee"},{"euler":{"heading":145.625,"pitch":123.0625,"roll":66.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:33.905"} +{"sensors":[{"euler":{"heading":66.9375,"pitch":122.5625,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":137.25,"pitch":5.0625,"roll":8.125},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":115.3125,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":71.9375,"pitch":140.125,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":158.5,"pitch":71.125,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":130.8125,"pitch":110.1875,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:34.6"} +{"sensors":[{"euler":{"heading":57.25,"pitch":133.5,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":123.25,"pitch":2.1875,"roll":3.0},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":117.875,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":74.875,"pitch":136.375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":162.5,"pitch":67.625,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":125.5625,"pitch":103.6875,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:34.107"} +{"sensors":[{"euler":{"heading":101.6875,"pitch":154.125,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":94.9375,"pitch":2.375,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":123.25,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":80.0,"pitch":133.5625,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":168.8125,"pitch":1.6875,"roll":87.3125},"location":"Right Knee"},{"euler":{"heading":125.25,"pitch":102.4375,"roll":43.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:34.207"} +{"sensors":[{"euler":{"heading":73.125,"pitch":-176.5,"roll":60.0625},"location":"Left Knee"},{"euler":{"heading":67.9375,"pitch":-0.0625,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":141.6875,"roll":83.0},"location":"Right Ankle"},{"euler":{"heading":82.1875,"pitch":133.3125,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":175.1875,"pitch":-4.6875,"roll":85.0},"location":"Right Knee"},{"euler":{"heading":128.4375,"pitch":103.625,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:34.308"} +{"sensors":[{"euler":{"heading":77.875,"pitch":-176.6875,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":65.5,"pitch":1.75,"roll":-4.375},"location":"Left Ankle"},{"euler":{"heading":73.375,"pitch":-124.375,"roll":82.0625},"location":"Right Ankle"},{"euler":{"heading":84.0625,"pitch":134.3125,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":185.875,"pitch":-87.125,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":132.8125,"pitch":106.625,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:34.409"} +{"sensors":[{"euler":{"heading":90.25,"pitch":170.6875,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":75.5,"pitch":3.5,"roll":-5.8125},"location":"Left Ankle"},{"euler":{"heading":63.125,"pitch":-108.625,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":89.8125,"pitch":135.0625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":204.125,"pitch":-88.0,"roll":64.5},"location":"Right Knee"},{"euler":{"heading":133.375,"pitch":107.0,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:34.509"} +{"sensors":[{"euler":{"heading":98.4375,"pitch":161.0,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":7.125,"roll":-6.9375},"location":"Left Ankle"},{"euler":{"heading":53.5625,"pitch":-107.25,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":96.4375,"pitch":130.9375,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":203.8125,"pitch":-80.0625,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":137.25,"pitch":113.6875,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:34.611"} +{"sensors":[{"euler":{"heading":105.5625,"pitch":152.75,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":94.375,"pitch":12.5625,"roll":-5.625},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":-118.125,"roll":68.125},"location":"Right Ankle"},{"euler":{"heading":8.8125,"pitch":133.125,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":194.25,"pitch":-66.5625,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":139.625,"pitch":115.25,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:34.711"} +{"sensors":[{"euler":{"heading":112.0,"pitch":145.0,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":91.3125,"pitch":10.875,"roll":-3.75},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":157.4375,"roll":76.125},"location":"Right Ankle"},{"euler":{"heading":4.25,"pitch":139.875,"roll":39.375},"location":"Right Hip"},{"euler":{"heading":177.125,"pitch":24.1875,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":140.5,"pitch":117.9375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:34.813"} +{"sensors":[{"euler":{"heading":119.0625,"pitch":137.4375,"roll":54.0},"location":"Left Knee"},{"euler":{"heading":96.75,"pitch":11.1875,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":114.0625,"pitch":115.1875,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":354.625,"pitch":141.25,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":160.875,"pitch":74.6875,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":142.75,"pitch":119.8125,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:34.914"} +{"sensors":[{"euler":{"heading":127.75,"pitch":130.25,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":104.375,"pitch":12.125,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":111.1875,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":73.625,"pitch":143.5,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":153.5,"pitch":75.5625,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":145.1875,"pitch":123.3125,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:35.15"} +{"sensors":[{"euler":{"heading":50.0625,"pitch":124.0,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":117.25,"pitch":8.3125,"roll":-1.0},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":112.0,"roll":61.5},"location":"Right Ankle"},{"euler":{"heading":75.6875,"pitch":142.375,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":156.0,"pitch":71.4375,"roll":69.3125},"location":"Right Knee"},{"euler":{"heading":145.625,"pitch":120.1875,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:35.116"} +{"sensors":[{"euler":{"heading":69.0,"pitch":122.6875,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":133.0,"pitch":10.1875,"roll":5.75},"location":"Left Ankle"},{"euler":{"heading":101.75,"pitch":114.0,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":75.875,"pitch":140.1875,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":159.125,"pitch":75.1875,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":135.3125,"pitch":109.5625,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:35.217"} +{"sensors":[{"euler":{"heading":55.9375,"pitch":132.3125,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":119.25,"pitch":6.125,"roll":2.4375},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":116.25,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":78.1875,"pitch":137.25,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":163.9375,"pitch":73.3125,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":129.625,"pitch":105.625,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:35.318"} +{"sensors":[{"euler":{"heading":102.5,"pitch":153.875,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":1.875,"roll":-0.9375},"location":"Left Ankle"},{"euler":{"heading":92.875,"pitch":120.75,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":80.625,"pitch":134.625,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":168.4375,"pitch":2.9375,"roll":86.5625},"location":"Right Knee"},{"euler":{"heading":126.8125,"pitch":102.6875,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:35.419"} +{"sensors":[{"euler":{"heading":74.25,"pitch":-177.875,"roll":59.5625},"location":"Left Knee"},{"euler":{"heading":68.4375,"pitch":-0.875,"roll":-2.25},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":134.1875,"roll":81.0625},"location":"Right Ankle"},{"euler":{"heading":82.3125,"pitch":133.1875,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":173.375,"pitch":-3.4375,"roll":86.25},"location":"Right Knee"},{"euler":{"heading":129.4375,"pitch":104.5625,"roll":46.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:35.519"} +{"sensors":[{"euler":{"heading":75.1875,"pitch":-175.3125,"roll":57.5},"location":"Left Knee"},{"euler":{"heading":65.25,"pitch":1.4375,"roll":-3.875},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-176.75,"roll":84.1875},"location":"Right Ankle"},{"euler":{"heading":82.625,"pitch":133.5,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":183.125,"pitch":-85.0625,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":133.5625,"pitch":107.125,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:35.620"} +{"sensors":[{"euler":{"heading":87.1875,"pitch":171.9375,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":75.0625,"pitch":2.3125,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":67.5625,"pitch":-115.25,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":87.25,"pitch":134.8125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":202.25,"pitch":-87.0625,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":134.125,"pitch":108.3125,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:35.721"} +{"sensors":[{"euler":{"heading":96.0,"pitch":161.4375,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":80.6875,"pitch":5.125,"roll":-6.625},"location":"Left Ankle"},{"euler":{"heading":53.5,"pitch":-104.5625,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":96.875,"pitch":130.9375,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":202.4375,"pitch":-80.5625,"roll":61.375},"location":"Right Knee"},{"euler":{"heading":137.9375,"pitch":115.0625,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:35.822"} +{"sensors":[{"euler":{"heading":104.3125,"pitch":152.4375,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":95.5625,"pitch":11.5,"roll":-6.125},"location":"Left Ankle"},{"euler":{"heading":62.0625,"pitch":-117.75,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":7.8125,"pitch":132.625,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":192.8125,"pitch":-63.6875,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":140.1875,"pitch":117.0,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:35.922"} +{"sensors":[{"euler":{"heading":110.75,"pitch":144.75,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":92.3125,"pitch":9.5625,"roll":-3.625},"location":"Left Ankle"},{"euler":{"heading":86.4375,"pitch":167.1875,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":4.0,"pitch":138.75,"roll":40.625},"location":"Right Hip"},{"euler":{"heading":175.875,"pitch":28.9375,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":142.0,"pitch":120.25,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:36.23"} +{"sensors":[{"euler":{"heading":117.625,"pitch":136.625,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":108.125,"pitch":-179.875,"roll":86.9375},"location":"Left Ankle"},{"euler":{"heading":114.1875,"pitch":115.4375,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":354.875,"pitch":141.8125,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":160.25,"pitch":77.3125,"roll":66.8125},"location":"Right Knee"},{"euler":{"heading":144.1875,"pitch":123.4375,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:36.124"} +{"sensors":[{"euler":{"heading":126.25,"pitch":130.0625,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":116.0,"pitch":-119.0625,"roll":80.75},"location":"Left Ankle"},{"euler":{"heading":118.8125,"pitch":110.5,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":74.1875,"pitch":143.125,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":154.9375,"pitch":75.625,"roll":62.9375},"location":"Right Knee"},{"euler":{"heading":147.125,"pitch":128.125,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:36.224"} +{"sensors":[{"euler":{"heading":49.8125,"pitch":124.9375,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":124.25,"pitch":-98.125,"roll":69.0625},"location":"Left Ankle"},{"euler":{"heading":107.375,"pitch":112.4375,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":74.75,"pitch":142.1875,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":157.0,"pitch":72.875,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":147.75,"pitch":124.8125,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:36.324"} +{"sensors":[{"euler":{"heading":66.4375,"pitch":123.5,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":139.125,"pitch":-102.375,"roll":54.9375},"location":"Left Ankle"},{"euler":{"heading":103.5,"pitch":114.3125,"roll":66.6875},"location":"Right Ankle"},{"euler":{"heading":74.875,"pitch":139.875,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":160.625,"pitch":77.625,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":133.6875,"pitch":96.625,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:36.425"} +{"sensors":[{"euler":{"heading":50.625,"pitch":133.1875,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":122.625,"pitch":-100.875,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":117.9375,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":78.1875,"pitch":135.875,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":165.875,"pitch":76.8125,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":127.9375,"pitch":106.4375,"roll":32.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:36.526"} +{"sensors":[{"euler":{"heading":98.5,"pitch":155.125,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":93.25,"pitch":110.3125,"roll":82.0},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":123.5625,"roll":75.8125},"location":"Right Ankle"},{"euler":{"heading":80.125,"pitch":133.3125,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":168.4375,"pitch":3.0625,"roll":86.3125},"location":"Right Knee"},{"euler":{"heading":124.9375,"pitch":103.375,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:36.626"} +{"sensors":[{"euler":{"heading":74.3125,"pitch":-177.5,"roll":59.3125},"location":"Left Knee"},{"euler":{"heading":70.25,"pitch":94.75,"roll":59.375},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":141.6875,"roll":81.75},"location":"Right Ankle"},{"euler":{"heading":83.125,"pitch":133.1875,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":174.125,"pitch":-3.1875,"roll":86.4375},"location":"Right Knee"},{"euler":{"heading":127.1875,"pitch":104.1875,"roll":44.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:36.727"} +{"sensors":[{"euler":{"heading":74.4375,"pitch":-173.625,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":69.75,"pitch":93.5625,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":77.3125,"pitch":-145.8125,"roll":83.0625},"location":"Right Ankle"},{"euler":{"heading":84.5,"pitch":133.5,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":182.875,"pitch":-86.0,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":134.3125,"pitch":107.5625,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:36.828"} +{"sensors":[{"euler":{"heading":89.875,"pitch":171.75,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":82.125,"pitch":93.4375,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-117.5625,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":86.5625,"pitch":134.0,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":200.0,"pitch":-87.8125,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":136.5625,"pitch":108.1875,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:36.929"} +{"sensors":[{"euler":{"heading":98.5625,"pitch":160.3125,"roll":59.375},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":90.0,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":58.9375,"pitch":-111.625,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":94.25,"pitch":131.8125,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":206.3125,"pitch":-83.375,"roll":59.5},"location":"Right Knee"},{"euler":{"heading":139.875,"pitch":113.6875,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:37.30"} +{"sensors":[{"euler":{"heading":103.9375,"pitch":151.9375,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":107.6875,"pitch":3.0,"roll":86.8125},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-117.0625,"roll":64.875},"location":"Right Ankle"},{"euler":{"heading":97.5,"pitch":133.25,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":197.8125,"pitch":-72.5625,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":141.125,"pitch":118.6875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:37.130"} +{"sensors":[{"euler":{"heading":111.5625,"pitch":144.625,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":104.1875,"pitch":173.4375,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":173.4375,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":2.4375,"pitch":140.25,"roll":39.375},"location":"Right Hip"},{"euler":{"heading":181.6875,"pitch":-15.4375,"roll":81.4375},"location":"Right Knee"},{"euler":{"heading":142.875,"pitch":122.1875,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:37.231"} +{"sensors":[{"euler":{"heading":118.375,"pitch":137.3125,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":106.8125,"pitch":178.0625,"roll":86.5625},"location":"Left Ankle"},{"euler":{"heading":109.4375,"pitch":119.375,"roll":59.6875},"location":"Right Ankle"},{"euler":{"heading":354.3125,"pitch":142.9375,"roll":41.0},"location":"Right Hip"},{"euler":{"heading":163.0,"pitch":67.5625,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":145.0,"pitch":126.1875,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:37.331"} +{"sensors":[{"euler":{"heading":125.5625,"pitch":130.625,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":113.75,"pitch":-175.3125,"roll":84.3125},"location":"Left Ankle"},{"euler":{"heading":120.3125,"pitch":111.6875,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":73.5,"pitch":144.375,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":153.1875,"pitch":76.125,"roll":60.4375},"location":"Right Knee"},{"euler":{"heading":146.0625,"pitch":130.0625,"roll":67.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:37.431"} +{"sensors":[{"euler":{"heading":46.0,"pitch":124.3125,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":126.375,"pitch":-92.25,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":106.5,"pitch":117.625,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":74.1875,"pitch":142.75,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":154.25,"pitch":69.25,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":147.3125,"pitch":127.5625,"roll":68.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:37.533"} +{"sensors":[{"euler":{"heading":63.125,"pitch":122.1875,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":141.5,"pitch":-95.9375,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":99.9375,"pitch":118.625,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":74.25,"pitch":139.1875,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":158.0625,"pitch":72.3125,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":131.0625,"pitch":114.0625,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:37.633"} +{"sensors":[{"euler":{"heading":67.1875,"pitch":127.5,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":134.75,"pitch":-109.9375,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":120.625,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":77.625,"pitch":136.0,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":72.1875,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":127.0625,"pitch":105.625,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:37.734"} +{"sensors":[{"euler":{"heading":36.125,"pitch":143.375,"roll":41.5625},"location":"Left Knee"},{"euler":{"heading":112.6875,"pitch":-119.6875,"roll":80.0625},"location":"Left Ankle"},{"euler":{"heading":93.5,"pitch":123.75,"roll":73.9375},"location":"Right Ankle"},{"euler":{"heading":80.75,"pitch":133.9375,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":167.625,"pitch":4.375,"roll":85.3125},"location":"Right Knee"},{"euler":{"heading":125.625,"pitch":102.9375,"roll":43.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:37.835"} +{"sensors":[{"euler":{"heading":82.4375,"pitch":171.3125,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":80.1875,"pitch":97.25,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":132.4375,"roll":79.0625},"location":"Right Ankle"},{"euler":{"heading":81.1875,"pitch":133.5625,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":171.625,"pitch":-0.9375,"roll":88.125},"location":"Right Knee"},{"euler":{"heading":125.625,"pitch":102.5625,"roll":43.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:37.936"} +{"sensors":[{"euler":{"heading":68.875,"pitch":-170.0625,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":64.5,"pitch":92.3125,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":79.0,"pitch":179.25,"roll":83.5},"location":"Right Ankle"},{"euler":{"heading":81.375,"pitch":133.1875,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":-82.75,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":131.3125,"pitch":105.6875,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:38.36"} +{"sensors":[{"euler":{"heading":81.875,"pitch":179.8125,"roll":57.75},"location":"Left Knee"},{"euler":{"heading":76.0,"pitch":94.625,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":-125.0,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":83.375,"pitch":133.5,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":191.875,"pitch":-90.8125,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":135.0625,"pitch":107.3125,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:38.137"} +{"sensors":[{"euler":{"heading":93.0625,"pitch":167.625,"roll":59.875},"location":"Left Knee"},{"euler":{"heading":88.6875,"pitch":87.875,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":57.625,"pitch":-105.0625,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":92.5625,"pitch":131.5625,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":202.8125,"pitch":-83.8125,"roll":61.625},"location":"Right Knee"},{"euler":{"heading":135.25,"pitch":109.0625,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:38.238"} +{"sensors":[{"euler":{"heading":102.9375,"pitch":157.6875,"roll":59.4375},"location":"Left Knee"},{"euler":{"heading":105.875,"pitch":174.625,"roll":84.375},"location":"Left Ankle"},{"euler":{"heading":55.6875,"pitch":-109.625,"roll":59.0},"location":"Right Ankle"},{"euler":{"heading":98.375,"pitch":131.875,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":202.0,"pitch":-77.3125,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":139.5,"pitch":114.75,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:38.339"} +{"sensors":[{"euler":{"heading":108.3125,"pitch":149.6875,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":108.6875,"pitch":4.6875,"roll":84.875},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":-136.1875,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":9.3125,"pitch":136.625,"roll":39.75},"location":"Right Hip"},{"euler":{"heading":190.625,"pitch":-56.625,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":141.875,"pitch":117.3125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:38.440"} +{"sensors":[{"euler":{"heading":115.6875,"pitch":141.25,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":105.5,"pitch":175.6875,"roll":84.8125},"location":"Left Ankle"},{"euler":{"heading":98.6875,"pitch":138.875,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":1.4375,"pitch":141.875,"roll":39.0},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":61.5,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":144.5625,"pitch":121.1875,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:38.541"} +{"sensors":[{"euler":{"heading":122.5625,"pitch":133.9375,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":108.9375,"pitch":-179.125,"roll":85.875},"location":"Left Ankle"},{"euler":{"heading":120.25,"pitch":114.0625,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":352.5625,"pitch":142.3125,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":79.3125,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":146.3125,"pitch":126.0,"roll":66.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:38.641"} +{"sensors":[{"euler":{"heading":129.8125,"pitch":127.625,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":118.875,"pitch":-115.1875,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":113.25,"pitch":116.5,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":71.5625,"pitch":145.3125,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":154.0,"pitch":70.1875,"roll":65.4375},"location":"Right Knee"},{"euler":{"heading":148.6875,"pitch":131.875,"roll":69.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:38.742"} +{"sensors":[{"euler":{"heading":51.8125,"pitch":124.75,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":-102.0,"roll":63.625},"location":"Left Ankle"},{"euler":{"heading":101.625,"pitch":119.8125,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":73.875,"pitch":140.75,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":155.125,"pitch":66.875,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":141.875,"pitch":120.8125,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:38.843"} +{"sensors":[{"euler":{"heading":67.25,"pitch":122.75,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":142.0625,"pitch":-102.375,"roll":52.625},"location":"Left Ankle"},{"euler":{"heading":94.625,"pitch":120.375,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":71.4375,"pitch":140.375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":156.625,"pitch":69.4375,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":129.3125,"pitch":108.3125,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:38.943"} +{"sensors":[{"euler":{"heading":45.5,"pitch":136.375,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":122.125,"pitch":-97.9375,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":89.5,"pitch":124.625,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":74.25,"pitch":136.4375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":60.25,"roll":82.125},"location":"Right Knee"},{"euler":{"heading":125.0625,"pitch":104.0625,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:39.44"} +{"sensors":[{"euler":{"heading":94.875,"pitch":161.1875,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":92.0625,"pitch":116.0,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":85.5,"pitch":131.9375,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":78.9375,"pitch":134.1875,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":167.1875,"pitch":1.375,"roll":86.5625},"location":"Right Knee"},{"euler":{"heading":125.0625,"pitch":102.1875,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:39.145"} +{"sensors":[{"euler":{"heading":73.625,"pitch":-174.5625,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":69.625,"pitch":96.6875,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":78.125,"pitch":159.6875,"roll":82.75},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":132.75,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":174.0,"pitch":-5.625,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":130.5625,"pitch":106.9375,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:39.246"} +{"sensors":[{"euler":{"heading":83.9375,"pitch":177.875,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":74.9375,"pitch":99.125,"roll":60.25},"location":"Left Ankle"},{"euler":{"heading":71.1875,"pitch":-125.5625,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":82.375,"pitch":133.1875,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":186.5625,"pitch":-85.25,"roll":74.375},"location":"Right Knee"},{"euler":{"heading":132.9375,"pitch":107.75,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:39.347"} +{"sensors":[{"euler":{"heading":94.375,"pitch":166.5,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":88.1875,"pitch":96.0625,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":58.375,"pitch":-107.6875,"roll":61.125},"location":"Right Ankle"},{"euler":{"heading":89.75,"pitch":132.1875,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":200.75,"pitch":-84.0625,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":133.375,"pitch":109.125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:39.449"} +{"sensors":[{"euler":{"heading":105.0625,"pitch":157.25,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":107.9375,"pitch":174.25,"roll":83.625},"location":"Left Ankle"},{"euler":{"heading":56.0,"pitch":-112.0,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":97.0625,"pitch":131.75,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":199.125,"pitch":-75.6875,"roll":64.4375},"location":"Right Knee"},{"euler":{"heading":139.125,"pitch":113.6875,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:39.550"} +{"sensors":[{"euler":{"heading":112.25,"pitch":148.5625,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":0.9375,"roll":88.75},"location":"Left Ankle"},{"euler":{"heading":76.5625,"pitch":-147.0,"roll":74.375},"location":"Right Ankle"},{"euler":{"heading":8.5625,"pitch":137.125,"roll":39.9375},"location":"Right Hip"},{"euler":{"heading":187.3125,"pitch":-47.125,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":140.625,"pitch":116.4375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:39.652"} +{"sensors":[{"euler":{"heading":119.625,"pitch":140.0,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":113.5,"pitch":179.3125,"roll":86.625},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":129.5625,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":2.375,"pitch":141.6875,"roll":39.3125},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":65.3125,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":142.8125,"pitch":118.875,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:39.753"} +{"sensors":[{"euler":{"heading":127.1875,"pitch":132.0,"roll":50.125},"location":"Left Knee"},{"euler":{"heading":118.125,"pitch":-134.0625,"roll":82.875},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":118.5,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":79.4375,"pitch":142.5625,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":156.125,"pitch":77.875,"roll":62.0},"location":"Right Knee"},{"euler":{"heading":145.5,"pitch":122.125,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:39.853"} +{"sensors":[{"euler":{"heading":48.6875,"pitch":125.5625,"roll":42.0},"location":"Left Knee"},{"euler":{"heading":129.9375,"pitch":-104.4375,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":116.4375,"pitch":118.875,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":74.25,"pitch":143.0625,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":155.0,"pitch":75.875,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":148.25,"pitch":125.4375,"roll":68.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:39.954"} +{"sensors":[{"euler":{"heading":62.4375,"pitch":123.4375,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":139.8125,"pitch":-98.375,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":120.0625,"roll":63.875},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":139.25,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":157.125,"pitch":71.75,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":138.8125,"pitch":116.1875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:40.55"} +{"sensors":[{"euler":{"heading":69.625,"pitch":123.375,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":142.0,"pitch":-104.625,"roll":52.5},"location":"Left Ankle"},{"euler":{"heading":97.4375,"pitch":123.9375,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":76.625,"pitch":138.125,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":76.875,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":128.1875,"pitch":104.1875,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:40.155"} +{"sensors":[{"euler":{"heading":42.375,"pitch":138.6875,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":121.5,"pitch":-98.5625,"roll":73.0625},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":130.8125,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":79.25,"pitch":133.9375,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":66.8125,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":124.375,"pitch":101.5625,"roll":43.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:40.256"} +{"sensors":[{"euler":{"heading":89.0625,"pitch":165.375,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":87.75,"pitch":104.875,"roll":75.625},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":137.75,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":132.6875,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":165.75,"pitch":1.8125,"roll":86.5},"location":"Right Knee"},{"euler":{"heading":125.375,"pitch":101.3125,"roll":44.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:40.356"} +{"sensors":[{"euler":{"heading":71.8125,"pitch":-172.625,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":66.375,"pitch":92.5625,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":179.8125,"roll":82.9375},"location":"Right Ankle"},{"euler":{"heading":79.8125,"pitch":132.375,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":174.1875,"pitch":-6.0625,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":132.4375,"pitch":106.0625,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:40.457"} +{"sensors":[{"euler":{"heading":83.875,"pitch":178.0,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":76.875,"pitch":96.5625,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-124.375,"roll":75.1875},"location":"Right Ankle"},{"euler":{"heading":82.6875,"pitch":133.4375,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":190.375,"pitch":-88.4375,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":134.125,"pitch":107.3125,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:40.559"} +{"sensors":[{"euler":{"heading":95.0625,"pitch":164.8125,"roll":59.25},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":90.5625,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":57.25,"pitch":-107.6875,"roll":59.5625},"location":"Right Ankle"},{"euler":{"heading":91.6875,"pitch":131.8125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":201.75,"pitch":-83.0,"roll":62.1875},"location":"Right Knee"},{"euler":{"heading":135.9375,"pitch":109.375,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:40.660"} +{"sensors":[{"euler":{"heading":102.5,"pitch":155.5,"roll":58.6875},"location":"Left Knee"},{"euler":{"heading":105.875,"pitch":175.125,"roll":84.5625},"location":"Left Ankle"},{"euler":{"heading":58.0625,"pitch":-113.75,"roll":62.0},"location":"Right Ankle"},{"euler":{"heading":96.8125,"pitch":131.875,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":198.75,"pitch":-74.1875,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":137.875,"pitch":115.4375,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:40.761"} +{"sensors":[{"euler":{"heading":110.875,"pitch":146.25,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":110.3125,"pitch":175.75,"roll":86.25},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":-160.75,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":8.375,"pitch":136.8125,"roll":40.0625},"location":"Right Hip"},{"euler":{"heading":185.75,"pitch":-21.0625,"roll":81.0625},"location":"Right Knee"},{"euler":{"heading":142.5,"pitch":118.25,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:40.864"} +{"sensors":[{"euler":{"heading":118.8125,"pitch":138.125,"roll":54.875},"location":"Left Knee"},{"euler":{"heading":112.0,"pitch":179.875,"roll":87.625},"location":"Left Ankle"},{"euler":{"heading":105.625,"pitch":126.75,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":1.9375,"pitch":141.3125,"roll":39.75},"location":"Right Hip"},{"euler":{"heading":167.3125,"pitch":70.625,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":144.6875,"pitch":120.25,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:40.965"} +{"sensors":[{"euler":{"heading":125.25,"pitch":131.9375,"roll":49.75},"location":"Left Knee"},{"euler":{"heading":116.3125,"pitch":-174.3125,"roll":83.125},"location":"Left Ankle"},{"euler":{"heading":117.0625,"pitch":120.1875,"roll":54.5},"location":"Right Ankle"},{"euler":{"heading":81.5,"pitch":140.6875,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":154.125,"pitch":79.0625,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":144.5,"pitch":122.875,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:41.65"} +{"sensors":[{"euler":{"heading":43.75,"pitch":126.625,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":126.3125,"pitch":-106.75,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":114.0625,"pitch":120.8125,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":73.375,"pitch":141.9375,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":152.375,"pitch":73.125,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":146.3125,"pitch":126.6875,"roll":67.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:41.166"} +{"sensors":[{"euler":{"heading":57.8125,"pitch":124.8125,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":138.875,"pitch":-107.0625,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":101.4375,"pitch":120.25,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":140.1875,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":69.125,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":135.5625,"pitch":116.3125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:41.266"} +{"sensors":[{"euler":{"heading":69.125,"pitch":124.0,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":145.5,"pitch":-104.0625,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":97.8125,"pitch":123.5625,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":72.75,"pitch":138.3125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":158.25,"pitch":73.625,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":124.0625,"pitch":101.375,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:41.367"} +{"sensors":[{"euler":{"heading":42.25,"pitch":137.9375,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":119.0,"pitch":-97.5,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":128.0,"roll":72.4375},"location":"Right Ankle"},{"euler":{"heading":78.0625,"pitch":133.875,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":164.4375,"pitch":6.375,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":123.125,"pitch":101.8125,"roll":43.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:41.467"} +{"sensors":[{"euler":{"heading":88.875,"pitch":163.3125,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":86.4375,"pitch":100.0625,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":133.1875,"roll":77.0625},"location":"Right Ankle"},{"euler":{"heading":81.0,"pitch":133.0625,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":171.0625,"pitch":0.5,"roll":88.375},"location":"Right Knee"},{"euler":{"heading":125.75,"pitch":101.0,"roll":44.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:41.567"} +{"sensors":[{"euler":{"heading":70.0,"pitch":-172.0625,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":65.75,"pitch":91.5625,"roll":55.5625},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":163.0,"roll":82.0},"location":"Right Ankle"},{"euler":{"heading":81.4375,"pitch":132.875,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":-5.875,"roll":84.0625},"location":"Right Knee"},{"euler":{"heading":131.5625,"pitch":105.25,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:41.668"} +{"sensors":[{"euler":{"heading":85.0625,"pitch":177.4375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":76.1875,"pitch":97.5,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":73.75,"pitch":-133.5625,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":83.4375,"pitch":133.4375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":190.0,"pitch":-88.75,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":136.875,"pitch":107.0625,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:41.768"} +{"sensors":[{"euler":{"heading":95.3125,"pitch":165.375,"roll":57.875},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":93.9375,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":-109.5,"roll":63.4375},"location":"Right Ankle"},{"euler":{"heading":90.3125,"pitch":130.75,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":200.3125,"pitch":-84.875,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":135.1875,"pitch":106.6875,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:41.869"} +{"sensors":[{"euler":{"heading":104.375,"pitch":156.5,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":108.3125,"pitch":176.0,"roll":84.6875},"location":"Left Ankle"},{"euler":{"heading":57.8125,"pitch":-115.125,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":98.8125,"pitch":130.3125,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":201.4375,"pitch":-78.3125,"roll":64.6875},"location":"Right Knee"},{"euler":{"heading":139.25,"pitch":112.6875,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:41.970"} +{"sensors":[{"euler":{"heading":111.6875,"pitch":148.375,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":115.5625,"pitch":0.1875,"roll":88.4375},"location":"Left Ankle"},{"euler":{"heading":74.875,"pitch":-137.5625,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":12.625,"pitch":135.1875,"roll":40.6875},"location":"Right Hip"},{"euler":{"heading":190.6875,"pitch":-56.125,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":142.25,"pitch":115.6875,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:42.70"} +{"sensors":[{"euler":{"heading":117.8125,"pitch":140.625,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":113.75,"pitch":179.75,"roll":87.0},"location":"Left Ankle"},{"euler":{"heading":101.4375,"pitch":135.625,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":5.8125,"pitch":141.5625,"roll":37.9375},"location":"Right Hip"},{"euler":{"heading":172.5625,"pitch":73.0625,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":144.0,"pitch":118.375,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:42.171"} +{"sensors":[{"euler":{"heading":124.8125,"pitch":133.25,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":119.4375,"pitch":-121.4375,"roll":82.625},"location":"Left Ankle"},{"euler":{"heading":121.0625,"pitch":118.1875,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":83.3125,"pitch":142.625,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":161.1875,"pitch":86.8125,"roll":65.125},"location":"Right Knee"},{"euler":{"heading":144.5,"pitch":118.9375,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:42.271"} +{"sensors":[{"euler":{"heading":46.4375,"pitch":126.9375,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":129.75,"pitch":-106.5625,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":114.1875,"pitch":121.625,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":75.0,"pitch":142.5,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":155.1875,"pitch":77.0,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":144.9375,"pitch":120.125,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:42.372"} +{"sensors":[{"euler":{"heading":60.0625,"pitch":122.8125,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":136.875,"pitch":-95.0,"roll":58.5625},"location":"Left Ankle"},{"euler":{"heading":104.625,"pitch":117.875,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":78.375,"pitch":139.875,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":159.3125,"pitch":74.375,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":136.4375,"pitch":111.375,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:42.473"} +{"sensors":[{"euler":{"heading":67.25,"pitch":123.4375,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":138.125,"pitch":-98.5,"roll":53.625},"location":"Left Ankle"},{"euler":{"heading":96.9375,"pitch":125.625,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":77.8125,"pitch":136.25,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":77.0625,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":128.3125,"pitch":101.625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:42.574"} +{"sensors":[{"euler":{"heading":40.9375,"pitch":138.375,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":117.125,"pitch":-96.0625,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":133.125,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":81.0625,"pitch":133.25,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":163.5,"pitch":6.0,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":124.875,"pitch":101.125,"roll":42.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:42.674"} +{"sensors":[{"euler":{"heading":89.0,"pitch":165.8125,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":86.9375,"pitch":98.0,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":144.625,"roll":78.9375},"location":"Right Ankle"},{"euler":{"heading":81.875,"pitch":131.8125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":169.625,"pitch":0.0,"roll":88.375},"location":"Right Knee"},{"euler":{"heading":125.75,"pitch":101.75,"roll":41.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:42.775"} +{"sensors":[{"euler":{"heading":74.5625,"pitch":-173.125,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":68.125,"pitch":94.625,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":77.8125,"pitch":-175.0625,"roll":81.875},"location":"Right Ankle"},{"euler":{"heading":82.3125,"pitch":131.875,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":177.375,"pitch":-84.6875,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":132.9375,"pitch":106.5,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:42.877"} +{"sensors":[{"euler":{"heading":84.0,"pitch":179.1875,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":74.25,"pitch":95.3125,"roll":60.5625},"location":"Left Ankle"},{"euler":{"heading":72.75,"pitch":-129.3125,"roll":75.5625},"location":"Right Ankle"},{"euler":{"heading":85.5,"pitch":134.75,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":191.5,"pitch":-88.375,"roll":74.0},"location":"Right Knee"},{"euler":{"heading":137.875,"pitch":107.4375,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:42.978"} +{"sensors":[{"euler":{"heading":92.0,"pitch":168.9375,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":86.25,"pitch":88.75,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":61.8125,"pitch":-110.125,"roll":59.875},"location":"Right Ankle"},{"euler":{"heading":96.1875,"pitch":133.8125,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":204.0,"pitch":-86.625,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":135.125,"pitch":108.625,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:43.79"} +{"sensors":[{"euler":{"heading":100.3125,"pitch":158.3125,"roll":58.375},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":120.125,"roll":81.75},"location":"Left Ankle"},{"euler":{"heading":56.9375,"pitch":-112.5,"roll":57.875},"location":"Right Ankle"},{"euler":{"heading":102.4375,"pitch":130.6875,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":201.875,"pitch":-77.0,"roll":65.125},"location":"Right Knee"},{"euler":{"heading":139.1875,"pitch":112.5,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:43.179"} +{"sensors":[{"euler":{"heading":103.6875,"pitch":151.0,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":105.6875,"pitch":176.1875,"roll":85.875},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":-137.25,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":13.3125,"pitch":134.3125,"roll":39.6875},"location":"Right Hip"},{"euler":{"heading":188.0625,"pitch":-47.875,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":139.9375,"pitch":115.125,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:43.280"} +{"sensors":[{"euler":{"heading":109.3125,"pitch":144.0,"roll":55.4375},"location":"Left Knee"},{"euler":{"heading":105.375,"pitch":177.625,"roll":85.5},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":136.625,"roll":70.25},"location":"Right Ankle"},{"euler":{"heading":8.375,"pitch":138.9375,"roll":38.1875},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":70.9375,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":140.9375,"pitch":117.4375,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:43.380"} +{"sensors":[{"euler":{"heading":119.25,"pitch":136.0,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":112.875,"pitch":-176.5625,"roll":84.625},"location":"Left Ankle"},{"euler":{"heading":119.8125,"pitch":114.9375,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":358.3125,"pitch":139.625,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":156.875,"pitch":84.4375,"roll":61.75},"location":"Right Knee"},{"euler":{"heading":143.8125,"pitch":118.9375,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:43.481"} +{"sensors":[{"euler":{"heading":128.6875,"pitch":129.4375,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":120.9375,"pitch":-110.3125,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":117.875,"pitch":119.6875,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":77.25,"pitch":142.4375,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":152.75,"pitch":79.0625,"roll":60.75},"location":"Right Knee"},{"euler":{"heading":144.875,"pitch":122.6875,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:43.582"} +{"sensors":[{"euler":{"heading":51.6875,"pitch":123.8125,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":129.125,"pitch":-98.875,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":106.25,"pitch":117.0,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":78.125,"pitch":140.5625,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":154.3125,"pitch":74.3125,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":143.75,"pitch":118.5,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:43.682"} +{"sensors":[{"euler":{"heading":65.4375,"pitch":124.3125,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":147.75,"pitch":-101.9375,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":118.25,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":74.75,"pitch":140.3125,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":158.9375,"pitch":82.625,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":127.8125,"pitch":107.875,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:43.783"} +{"sensors":[{"euler":{"heading":55.4375,"pitch":131.875,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":124.375,"pitch":-103.0625,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":99.9375,"pitch":122.6875,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":79.375,"pitch":136.0,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":82.6875,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":124.0625,"pitch":103.5,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:43.883"} +{"sensors":[{"euler":{"heading":106.8125,"pitch":151.125,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":96.8125,"pitch":176.4375,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":95.625,"pitch":126.75,"roll":73.9375},"location":"Right Ankle"},{"euler":{"heading":82.5,"pitch":133.5,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":170.8125,"pitch":4.1875,"roll":85.75},"location":"Right Knee"},{"euler":{"heading":119.875,"pitch":105.6875,"roll":42.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:43.984"} +{"sensors":[{"euler":{"heading":77.5625,"pitch":-179.5625,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":72.125,"pitch":95.3125,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":145.5,"roll":79.5625},"location":"Right Ankle"},{"euler":{"heading":83.4375,"pitch":132.4375,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":173.875,"pitch":-1.1875,"roll":88.5625},"location":"Right Knee"},{"euler":{"heading":128.375,"pitch":105.625,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:44.85"} +{"sensors":[{"euler":{"heading":75.125,"pitch":-174.875,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":70.1875,"pitch":94.25,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-158.75,"roll":81.5},"location":"Right Ankle"},{"euler":{"heading":82.9375,"pitch":132.6875,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":181.875,"pitch":-85.4375,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":133.125,"pitch":107.375,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:44.185"} +{"sensors":[{"euler":{"heading":89.9375,"pitch":171.3125,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":82.6875,"pitch":93.125,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-123.0,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":87.6875,"pitch":133.4375,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":201.1875,"pitch":-88.5,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":134.4375,"pitch":106.6875,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:44.286"} +{"sensors":[{"euler":{"heading":99.3125,"pitch":160.5625,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":91.125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":57.25,"pitch":-114.25,"roll":57.125},"location":"Right Ankle"},{"euler":{"heading":95.75,"pitch":130.4375,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":203.125,"pitch":-81.6875,"roll":62.625},"location":"Right Knee"},{"euler":{"heading":137.75,"pitch":110.4375,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:44.386"} +{"sensors":[{"euler":{"heading":103.4375,"pitch":152.5625,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":108.125,"pitch":177.25,"roll":87.0},"location":"Left Ankle"},{"euler":{"heading":63.875,"pitch":-123.6875,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":8.9375,"pitch":132.625,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":193.3125,"pitch":-65.75,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":137.5625,"pitch":115.25,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:44.486"} +{"sensors":[{"euler":{"heading":110.3125,"pitch":145.4375,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":108.0,"pitch":178.3125,"roll":86.375},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":167.3125,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":5.5625,"pitch":138.5,"roll":39.75},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":28.6875,"roll":81.0625},"location":"Right Knee"},{"euler":{"heading":140.375,"pitch":118.5,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:44.587"} +{"sensors":[{"euler":{"heading":120.8125,"pitch":135.75,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":-176.0,"roll":84.75},"location":"Left Ankle"},{"euler":{"heading":113.625,"pitch":120.1875,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":0.75,"pitch":139.125,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":78.5,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":143.5625,"pitch":120.375,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:44.688"} +{"sensors":[{"euler":{"heading":130.1875,"pitch":128.875,"roll":47.8125},"location":"Left Knee"},{"euler":{"heading":124.8125,"pitch":-106.1875,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":120.125,"pitch":120.25,"roll":50.9375},"location":"Right Ankle"},{"euler":{"heading":77.8125,"pitch":143.1875,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":151.125,"pitch":78.75,"roll":58.125},"location":"Right Knee"},{"euler":{"heading":146.8125,"pitch":124.75,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:44.788"} +{"sensors":[{"euler":{"heading":50.25,"pitch":124.1875,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":132.3125,"pitch":-101.0,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":107.75,"pitch":124.375,"roll":59.6875},"location":"Right Ankle"},{"euler":{"heading":77.5625,"pitch":142.0625,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":74.875,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":149.125,"pitch":125.9375,"roll":67.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:44.888"} +{"sensors":[{"euler":{"heading":67.0,"pitch":120.5625,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":147.6875,"pitch":-103.625,"roll":49.0625},"location":"Left Ankle"},{"euler":{"heading":98.0,"pitch":126.25,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":138.0,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":156.8125,"pitch":75.5625,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":136.1875,"pitch":114.875,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:44.989"} +{"sensors":[{"euler":{"heading":62.3125,"pitch":127.9375,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":134.9375,"pitch":-108.9375,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":96.125,"pitch":132.75,"roll":69.1875},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":134.875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":162.0,"pitch":76.875,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":128.5625,"pitch":105.5,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:45.90"} +{"sensors":[{"euler":{"heading":28.8125,"pitch":145.6875,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":109.875,"pitch":-119.8125,"roll":83.0625},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":135.75,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":80.625,"pitch":132.25,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":165.6875,"pitch":73.0,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":124.9375,"pitch":103.0625,"roll":42.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:45.190"} +{"sensors":[{"euler":{"heading":81.0625,"pitch":174.625,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":81.9375,"pitch":98.3125,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":147.375,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":82.75,"pitch":130.9375,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":169.625,"pitch":1.9375,"roll":86.8125},"location":"Right Knee"},{"euler":{"heading":125.9375,"pitch":103.375,"roll":43.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:45.291"} +{"sensors":[{"euler":{"heading":70.4375,"pitch":-170.0625,"roll":57.8125},"location":"Left Knee"},{"euler":{"heading":67.5,"pitch":93.6875,"roll":54.4375},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":-169.4375,"roll":81.8125},"location":"Right Ankle"},{"euler":{"heading":83.125,"pitch":130.75,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":-5.0625,"roll":84.625},"location":"Right Knee"},{"euler":{"heading":132.6875,"pitch":107.4375,"roll":45.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:45.392"} +{"sensors":[{"euler":{"heading":87.5625,"pitch":177.0625,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":81.75,"pitch":95.75,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":68.875,"pitch":-123.6875,"roll":73.5625},"location":"Right Ankle"},{"euler":{"heading":85.0,"pitch":131.5,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":191.0625,"pitch":-87.3125,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":135.375,"pitch":107.9375,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:45.493"} +{"sensors":[{"euler":{"heading":97.8125,"pitch":165.0625,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":91.8125,"roll":71.75},"location":"Left Ankle"},{"euler":{"heading":56.625,"pitch":-107.8125,"roll":57.875},"location":"Right Ankle"},{"euler":{"heading":93.1875,"pitch":128.9375,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":203.0,"pitch":-83.25,"roll":64.0},"location":"Right Knee"},{"euler":{"heading":136.625,"pitch":108.625,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:45.593"} +{"sensors":[{"euler":{"heading":106.4375,"pitch":155.5625,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":110.625,"pitch":176.0625,"roll":85.1875},"location":"Left Ankle"},{"euler":{"heading":61.0,"pitch":-114.25,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":99.5625,"pitch":130.6875,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":198.9375,"pitch":-77.3125,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":140.3125,"pitch":113.75,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:45.694"} +{"sensors":[{"euler":{"heading":110.9375,"pitch":148.1875,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":113.5625,"pitch":1.6875,"roll":88.0},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":-165.5,"roll":75.75},"location":"Right Ankle"},{"euler":{"heading":10.6875,"pitch":135.6875,"roll":40.375},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":-2.625,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":142.4375,"pitch":116.75,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:45.794"} +{"sensors":[{"euler":{"heading":119.1875,"pitch":139.8125,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":114.25,"pitch":-179.875,"roll":87.1875},"location":"Left Ankle"},{"euler":{"heading":106.5625,"pitch":125.5,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":1.4375,"pitch":140.625,"roll":40.8125},"location":"Right Hip"},{"euler":{"heading":166.0,"pitch":75.5,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":144.0625,"pitch":119.0,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:45.895"} +{"sensors":[{"euler":{"heading":126.3125,"pitch":132.4375,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":120.0625,"pitch":-120.0625,"roll":82.6875},"location":"Left Ankle"},{"euler":{"heading":118.8125,"pitch":122.1875,"roll":52.5},"location":"Right Ankle"},{"euler":{"heading":79.6875,"pitch":141.0625,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":152.6875,"pitch":80.625,"roll":57.75},"location":"Right Knee"},{"euler":{"heading":145.5,"pitch":121.75,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:45.996"} +{"sensors":[{"euler":{"heading":45.8125,"pitch":126.4375,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":-99.5625,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":114.4375,"pitch":123.0625,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":72.8125,"pitch":143.125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":151.0,"pitch":75.75,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":147.4375,"pitch":124.75,"roll":67.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:46.97"} +{"sensors":[{"euler":{"heading":58.875,"pitch":123.8125,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":141.6875,"pitch":-99.1875,"roll":57.4375},"location":"Left Ankle"},{"euler":{"heading":102.0,"pitch":126.9375,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":74.3125,"pitch":140.625,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":152.6875,"pitch":69.8125,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":136.375,"pitch":117.1875,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:46.197"} +{"sensors":[{"euler":{"heading":68.8125,"pitch":123.25,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":145.875,"pitch":-108.5,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":128.6875,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":70.3125,"pitch":139.4375,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":153.5,"pitch":73.9375,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":127.375,"pitch":104.0,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:46.298"} +{"sensors":[{"euler":{"heading":42.9375,"pitch":138.125,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":119.75,"pitch":-96.4375,"roll":73.8125},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":131.3125,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":75.125,"pitch":134.5,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":157.625,"pitch":68.9375,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":122.75,"pitch":101.75,"roll":43.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:46.399"} +{"sensors":[{"euler":{"heading":89.75,"pitch":167.3125,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":86.625,"pitch":102.75,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":140.875,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":78.5625,"pitch":132.3125,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":5.625,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":124.4375,"pitch":102.0625,"roll":43.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:46.500"} +{"sensors":[{"euler":{"heading":71.1875,"pitch":-171.875,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":67.75,"pitch":94.4375,"roll":55.5},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":167.5,"roll":80.625},"location":"Right Ankle"},{"euler":{"heading":79.375,"pitch":131.625,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":-1.1875,"roll":87.25},"location":"Right Knee"},{"euler":{"heading":131.3125,"pitch":106.875,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:46.600"} +{"sensors":[{"euler":{"heading":83.9375,"pitch":178.9375,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":75.8125,"pitch":95.6875,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":69.25,"pitch":-134.1875,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":81.9375,"pitch":131.6875,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":182.0,"pitch":-84.5,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":135.9375,"pitch":108.6875,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:46.700"} +{"sensors":[{"euler":{"heading":93.5,"pitch":166.5,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":86.75,"pitch":92.5625,"roll":69.5625},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":-111.8125,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":91.125,"pitch":131.4375,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":199.0625,"pitch":-85.375,"roll":67.25},"location":"Right Knee"},{"euler":{"heading":135.375,"pitch":110.3125,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:46.801"} +{"sensors":[{"euler":{"heading":99.8125,"pitch":157.0625,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":101.875,"pitch":122.0,"roll":82.1875},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":-116.3125,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":99.6875,"pitch":131.125,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":200.8125,"pitch":-76.8125,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":139.375,"pitch":116.875,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:46.901"} +{"sensors":[{"euler":{"heading":106.8125,"pitch":149.25,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":108.3125,"pitch":177.5625,"roll":87.375},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-153.375,"roll":72.75},"location":"Right Ankle"},{"euler":{"heading":10.25,"pitch":135.0625,"roll":41.6875},"location":"Right Hip"},{"euler":{"heading":186.375,"pitch":-2.875,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":141.6875,"pitch":119.3125,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:47.3"} +{"sensors":[{"euler":{"heading":114.125,"pitch":141.5625,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":-179.875,"roll":85.5625},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":129.3125,"roll":66.6875},"location":"Right Ankle"},{"euler":{"heading":2.875,"pitch":139.5625,"roll":41.375},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":75.0625,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":143.25,"pitch":122.0,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:47.103"} +{"sensors":[{"euler":{"heading":123.75,"pitch":134.0,"roll":49.5625},"location":"Left Knee"},{"euler":{"heading":117.8125,"pitch":-120.8125,"roll":81.625},"location":"Left Ankle"},{"euler":{"heading":121.0,"pitch":118.375,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":80.5625,"pitch":140.25,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":153.4375,"pitch":84.75,"roll":58.75},"location":"Right Knee"},{"euler":{"heading":147.5625,"pitch":125.625,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:47.203"} +{"sensors":[{"euler":{"heading":43.5,"pitch":128.0,"roll":42.8125},"location":"Left Knee"},{"euler":{"heading":130.5,"pitch":-97.4375,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":116.1875,"pitch":122.375,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":75.875,"pitch":141.625,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":153.5,"pitch":80.875,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":150.1875,"pitch":128.75,"roll":68.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:47.304"} +{"sensors":[{"euler":{"heading":57.125,"pitch":125.6875,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":141.5625,"pitch":-105.6875,"roll":55.0625},"location":"Left Ankle"},{"euler":{"heading":104.9375,"pitch":121.5625,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":76.6875,"pitch":139.625,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":156.0625,"pitch":82.625,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":135.6875,"pitch":114.9375,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:47.404"} +{"sensors":[{"euler":{"heading":65.125,"pitch":125.3125,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":142.0,"pitch":-111.5625,"roll":48.875},"location":"Left Ankle"},{"euler":{"heading":105.1875,"pitch":123.0625,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":74.8125,"pitch":139.1875,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":160.8125,"pitch":89.1875,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":127.8125,"pitch":102.3125,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:47.504"} +{"sensors":[{"euler":{"heading":43.9375,"pitch":137.25,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":118.375,"pitch":-99.0625,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":100.5,"pitch":126.5,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":80.0625,"pitch":135.0625,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":166.6875,"pitch":95.875,"roll":81.125},"location":"Right Knee"},{"euler":{"heading":126.875,"pitch":102.0,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:47.605"} +{"sensors":[{"euler":{"heading":93.5625,"pitch":161.125,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":88.9375,"pitch":105.8125,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":135.1875,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":82.375,"pitch":134.0,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":171.375,"pitch":176.3125,"roll":86.1875},"location":"Right Knee"},{"euler":{"heading":128.9375,"pitch":101.75,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:47.706"} +{"sensors":[{"euler":{"heading":72.9375,"pitch":-172.9375,"roll":57.9375},"location":"Left Knee"},{"euler":{"heading":69.125,"pitch":92.6875,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":159.375,"roll":80.5625},"location":"Right Ankle"},{"euler":{"heading":81.5625,"pitch":133.25,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":175.5625,"pitch":-177.0,"roll":87.625},"location":"Right Knee"},{"euler":{"heading":135.0,"pitch":106.0625,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:47.808"} +{"sensors":[{"euler":{"heading":84.8125,"pitch":178.1875,"roll":57.4375},"location":"Left Knee"},{"euler":{"heading":77.875,"pitch":95.75,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-140.8125,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":83.25,"pitch":134.375,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":188.25,"pitch":-95.5,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":138.4375,"pitch":107.625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:47.909"} +{"sensors":[{"euler":{"heading":95.8125,"pitch":165.1875,"roll":58.625},"location":"Left Knee"},{"euler":{"heading":90.0,"pitch":92.6875,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":60.75,"pitch":-110.3125,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":92.5625,"pitch":133.4375,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":201.375,"pitch":-87.9375,"roll":66.4375},"location":"Right Knee"},{"euler":{"heading":138.4375,"pitch":108.875,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:48.9"} +{"sensors":[{"euler":{"heading":103.5625,"pitch":156.25,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":106.0625,"pitch":174.625,"roll":83.5625},"location":"Left Ankle"},{"euler":{"heading":60.0,"pitch":-119.3125,"roll":57.875},"location":"Right Ankle"},{"euler":{"heading":98.5625,"pitch":130.1875,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":202.4375,"pitch":-79.0,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":142.0,"pitch":116.3125,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:48.110"} +{"sensors":[{"euler":{"heading":109.0,"pitch":148.875,"roll":57.0625},"location":"Left Knee"},{"euler":{"heading":112.375,"pitch":178.5,"roll":88.4375},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":-144.1875,"roll":70.8125},"location":"Right Ankle"},{"euler":{"heading":7.5,"pitch":135.1875,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":188.625,"pitch":-38.1875,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":141.3125,"pitch":118.625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:48.211"} +{"sensors":[{"euler":{"heading":116.875,"pitch":141.25,"roll":54.0625},"location":"Left Knee"},{"euler":{"heading":112.4375,"pitch":179.8125,"roll":85.6875},"location":"Left Ankle"},{"euler":{"heading":102.875,"pitch":136.5,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":359.5625,"pitch":140.5625,"roll":41.9375},"location":"Right Hip"},{"euler":{"heading":169.3125,"pitch":71.875,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":142.1875,"pitch":120.125,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:48.312"} +{"sensors":[{"euler":{"heading":124.5625,"pitch":134.25,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":118.25,"pitch":-128.1875,"roll":82.625},"location":"Left Ankle"},{"euler":{"heading":115.6875,"pitch":122.6875,"roll":56.875},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":142.1875,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":155.0625,"pitch":82.9375,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":145.125,"pitch":123.5625,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:48.412"} +{"sensors":[{"euler":{"heading":45.3125,"pitch":127.875,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":130.1875,"pitch":-98.9375,"roll":72.75},"location":"Left Ankle"},{"euler":{"heading":110.0,"pitch":126.0625,"roll":59.625},"location":"Right Ankle"},{"euler":{"heading":72.6875,"pitch":143.0625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":152.5625,"pitch":79.6875,"roll":63.1875},"location":"Right Knee"},{"euler":{"heading":147.0,"pitch":125.375,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:48.513"} +{"sensors":[{"euler":{"heading":58.875,"pitch":126.0,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":139.4375,"pitch":-96.9375,"roll":54.75},"location":"Left Ankle"},{"euler":{"heading":102.0625,"pitch":125.5,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":141.5625,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":156.875,"pitch":81.9375,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":135.125,"pitch":111.75,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:48.613"} +{"sensors":[{"euler":{"heading":62.0,"pitch":127.1875,"roll":29.125},"location":"Left Knee"},{"euler":{"heading":132.625,"pitch":-108.0625,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":129.0,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":75.8125,"pitch":137.875,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":85.4375,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":129.625,"pitch":102.25,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:48.714"} +{"sensors":[{"euler":{"heading":34.25,"pitch":142.375,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":109.25,"pitch":-110.5625,"roll":81.5625},"location":"Left Ankle"},{"euler":{"heading":94.1875,"pitch":137.625,"roll":74.3125},"location":"Right Ankle"},{"euler":{"heading":81.125,"pitch":133.875,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":87.5625,"roll":81.625},"location":"Right Knee"},{"euler":{"heading":126.9375,"pitch":103.25,"roll":44.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:48.815"} +{"sensors":[{"euler":{"heading":84.75,"pitch":170.4375,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":78.9375,"pitch":100.9375,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":86.25,"pitch":153.8125,"roll":78.8125},"location":"Right Ankle"},{"euler":{"heading":82.4375,"pitch":132.5625,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":170.125,"pitch":3.0625,"roll":86.625},"location":"Right Knee"},{"euler":{"heading":128.4375,"pitch":103.375,"roll":44.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:48.915"} +{"sensors":[{"euler":{"heading":69.625,"pitch":-171.0625,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":66.0625,"pitch":92.75,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-164.0625,"roll":81.3125},"location":"Right Ankle"},{"euler":{"heading":81.8125,"pitch":132.375,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":177.375,"pitch":-4.0,"roll":85.9375},"location":"Right Knee"},{"euler":{"heading":134.5,"pitch":108.125,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:49.16"} +{"sensors":[{"euler":{"heading":83.0625,"pitch":176.9375,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":94.8125,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":71.8125,"pitch":-129.0,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":83.0625,"pitch":134.5,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":191.6875,"pitch":-90.9375,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":137.875,"pitch":109.25,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:49.117"} +{"sensors":[{"euler":{"heading":94.125,"pitch":164.6875,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":90.25,"roll":71.6875},"location":"Left Ankle"},{"euler":{"heading":57.0,"pitch":-110.5,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":91.3125,"pitch":132.375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":200.6875,"pitch":-81.125,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":137.375,"pitch":110.6875,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:49.218"} +{"sensors":[{"euler":{"heading":104.75,"pitch":155.1875,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":110.0625,"pitch":176.0,"roll":85.5625},"location":"Left Ankle"},{"euler":{"heading":56.4375,"pitch":-112.8125,"roll":62.0625},"location":"Right Ankle"},{"euler":{"heading":96.1875,"pitch":132.8125,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":192.625,"pitch":-70.6875,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":141.5625,"pitch":116.0,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:49.318"} +{"sensors":[{"euler":{"heading":114.375,"pitch":146.5625,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":115.5625,"pitch":0.9375,"roll":88.9375},"location":"Left Ankle"},{"euler":{"heading":83.1875,"pitch":-169.25,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":7.0625,"pitch":136.3125,"roll":41.5625},"location":"Right Hip"},{"euler":{"heading":179.5625,"pitch":3.0,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":145.1875,"pitch":118.25,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:49.419"} +{"sensors":[{"euler":{"heading":121.4375,"pitch":138.625,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":117.0625,"pitch":-177.1875,"roll":85.75},"location":"Left Ankle"},{"euler":{"heading":111.75,"pitch":123.0625,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":359.8125,"pitch":140.9375,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":162.25,"pitch":79.8125,"roll":66.375},"location":"Right Knee"},{"euler":{"heading":146.5625,"pitch":120.125,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:49.520"} +{"sensors":[{"euler":{"heading":128.9375,"pitch":131.0625,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":125.1875,"pitch":-108.75,"roll":79.25},"location":"Left Ankle"},{"euler":{"heading":123.0,"pitch":115.75,"roll":49.6875},"location":"Right Ankle"},{"euler":{"heading":79.9375,"pitch":142.875,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":151.25,"pitch":81.0,"roll":56.625},"location":"Right Knee"},{"euler":{"heading":146.8125,"pitch":120.5,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:49.620"} +{"sensors":[{"euler":{"heading":49.3125,"pitch":125.625,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":-90.25,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":108.0,"pitch":123.3125,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":143.5,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":151.0,"pitch":74.875,"roll":61.75},"location":"Right Knee"},{"euler":{"heading":147.0,"pitch":121.8125,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:49.721"} +{"sensors":[{"euler":{"heading":64.1875,"pitch":124.25,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":146.6875,"pitch":-101.8125,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":128.8125,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":76.375,"pitch":139.9375,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":153.875,"pitch":72.125,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":137.0625,"pitch":111.75,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:49.821"} +{"sensors":[{"euler":{"heading":66.375,"pitch":125.6875,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":138.875,"pitch":-107.5625,"roll":54.875},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":136.9375,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":74.75,"pitch":137.9375,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":155.5625,"pitch":71.875,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":130.0,"pitch":102.4375,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:49.921"} +{"sensors":[{"euler":{"heading":36.1875,"pitch":141.9375,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":113.5625,"pitch":-104.0,"roll":80.25},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":142.0625,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":133.875,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":158.3125,"pitch":68.0625,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":126.5,"pitch":101.5625,"roll":44.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:50.22"} +{"sensors":[{"euler":{"heading":82.875,"pitch":169.625,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":77.25,"pitch":99.0,"roll":67.25},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":156.8125,"roll":79.625},"location":"Right Ankle"},{"euler":{"heading":78.9375,"pitch":132.625,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":163.625,"pitch":4.5,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":127.1875,"pitch":102.375,"roll":44.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:50.123"} +{"sensors":[{"euler":{"heading":72.125,"pitch":-172.4375,"roll":57.0},"location":"Left Knee"},{"euler":{"heading":67.375,"pitch":93.875,"roll":54.6875},"location":"Left Ankle"},{"euler":{"heading":73.375,"pitch":-159.0,"roll":81.0625},"location":"Right Ankle"},{"euler":{"heading":81.875,"pitch":133.25,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":173.25,"pitch":-3.0625,"roll":86.0625},"location":"Right Knee"},{"euler":{"heading":134.875,"pitch":106.8125,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:50.223"} +{"sensors":[{"euler":{"heading":86.1875,"pitch":177.9375,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":82.125,"pitch":96.6875,"roll":64.75},"location":"Left Ankle"},{"euler":{"heading":69.3125,"pitch":-126.0625,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":84.6875,"pitch":134.1875,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":187.9375,"pitch":-85.875,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":137.875,"pitch":108.9375,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:50.324"} +{"sensors":[{"euler":{"heading":95.875,"pitch":165.0,"roll":58.1875},"location":"Left Knee"},{"euler":{"heading":91.0,"pitch":93.75,"roll":71.25},"location":"Left Ankle"},{"euler":{"heading":55.8125,"pitch":-110.6875,"roll":57.75},"location":"Right Ankle"},{"euler":{"heading":93.0,"pitch":132.625,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":199.1875,"pitch":-82.125,"roll":66.6875},"location":"Right Knee"},{"euler":{"heading":139.625,"pitch":110.5625,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:50.424"} +{"sensors":[{"euler":{"heading":104.5625,"pitch":154.9375,"roll":57.625},"location":"Left Knee"},{"euler":{"heading":108.0,"pitch":175.4375,"roll":83.9375},"location":"Left Ankle"},{"euler":{"heading":55.375,"pitch":-114.8125,"roll":56.6875},"location":"Right Ankle"},{"euler":{"heading":98.0625,"pitch":131.4375,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":199.3125,"pitch":-75.75,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":141.8125,"pitch":116.5,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:50.524"} +{"sensors":[{"euler":{"heading":111.25,"pitch":147.375,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":113.8125,"pitch":179.125,"roll":88.6875},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-138.875,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":8.6875,"pitch":135.6875,"roll":42.0},"location":"Right Hip"},{"euler":{"heading":186.9375,"pitch":-42.3125,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":144.5,"pitch":119.5,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:50.625"} +{"sensors":[{"euler":{"heading":119.0,"pitch":140.1875,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":116.0625,"pitch":-177.8125,"roll":86.0},"location":"Left Ankle"},{"euler":{"heading":101.5,"pitch":145.5625,"roll":68.9375},"location":"Right Ankle"},{"euler":{"heading":2.375,"pitch":140.875,"roll":40.0625},"location":"Right Hip"},{"euler":{"heading":171.9375,"pitch":75.4375,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":147.25,"pitch":122.6875,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:50.726"} +{"sensors":[{"euler":{"heading":126.0625,"pitch":133.5625,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":122.75,"pitch":-111.6875,"roll":81.0625},"location":"Left Ankle"},{"euler":{"heading":111.8125,"pitch":127.5625,"roll":58.1875},"location":"Right Ankle"},{"euler":{"heading":82.125,"pitch":141.375,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":79.9375,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":147.8125,"pitch":126.3125,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:50.827"} +{"sensors":[{"euler":{"heading":45.3125,"pitch":127.5625,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":133.1875,"pitch":-99.6875,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":108.1875,"pitch":127.625,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":72.5625,"pitch":142.6875,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":150.5,"pitch":74.3125,"roll":60.9375},"location":"Right Knee"},{"euler":{"heading":149.125,"pitch":128.875,"roll":68.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:50.928"} +{"sensors":[{"euler":{"heading":58.3125,"pitch":125.0,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":143.9375,"pitch":-104.125,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":97.1875,"pitch":127.0,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":75.3125,"pitch":139.6875,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":152.1875,"pitch":72.625,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":143.75,"pitch":121.1875,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:51.28"} +{"sensors":[{"euler":{"heading":71.125,"pitch":123.25,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":150.5,"pitch":-107.0,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":135.0,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":71.1875,"pitch":139.125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":152.8125,"pitch":74.0,"roll":73.3125},"location":"Right Knee"},{"euler":{"heading":133.25,"pitch":106.8125,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:51.129"} +{"sensors":[{"euler":{"heading":43.625,"pitch":138.9375,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":120.375,"pitch":-102.5,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":142.125,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":74.4375,"pitch":134.6875,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":156.3125,"pitch":70.375,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":126.5625,"pitch":103.375,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:51.229"} +{"sensors":[{"euler":{"heading":89.4375,"pitch":164.0,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":89.125,"pitch":104.625,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":155.375,"roll":78.1875},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":133.5,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":161.25,"pitch":60.5,"roll":83.125},"location":"Right Knee"},{"euler":{"heading":126.5,"pitch":101.875,"roll":44.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:51.330"} +{"sensors":[{"euler":{"heading":72.125,"pitch":-173.75,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":68.5,"pitch":94.0,"roll":55.5},"location":"Left Ankle"},{"euler":{"heading":72.5,"pitch":-166.0625,"roll":80.875},"location":"Right Ankle"},{"euler":{"heading":79.9375,"pitch":133.1875,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":169.5625,"pitch":-2.0625,"roll":87.875},"location":"Right Knee"},{"euler":{"heading":132.5625,"pitch":105.875,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:51.431"} +{"sensors":[{"euler":{"heading":84.9375,"pitch":177.375,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":79.1875,"pitch":97.5625,"roll":62.8125},"location":"Left Ankle"},{"euler":{"heading":67.625,"pitch":-124.375,"roll":73.75},"location":"Right Ankle"},{"euler":{"heading":83.625,"pitch":134.9375,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":184.3125,"pitch":-90.4375,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":136.875,"pitch":107.75,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:51.534"} +{"sensors":[{"euler":{"heading":94.6875,"pitch":165.375,"roll":57.5625},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":94.0,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":56.25,"pitch":-111.0,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":92.3125,"pitch":133.0,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":200.1875,"pitch":-89.0625,"roll":67.0625},"location":"Right Knee"},{"euler":{"heading":136.125,"pitch":107.6875,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:51.635"} +{"sensors":[{"euler":{"heading":105.625,"pitch":156.4375,"roll":57.1875},"location":"Left Knee"},{"euler":{"heading":109.625,"pitch":129.875,"roll":83.0},"location":"Left Ankle"},{"euler":{"heading":59.875,"pitch":-120.375,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":98.5,"pitch":132.0625,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":201.25,"pitch":-79.6875,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":140.1875,"pitch":112.3125,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:51.735"} +{"sensors":[{"euler":{"heading":111.5625,"pitch":149.0625,"roll":56.125},"location":"Left Knee"},{"euler":{"heading":114.75,"pitch":178.25,"roll":87.125},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-160.4375,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":9.5625,"pitch":136.5625,"roll":41.1875},"location":"Right Hip"},{"euler":{"heading":186.3125,"pitch":-2.0625,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":144.0625,"pitch":116.75,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:51.839"} +{"sensors":[{"euler":{"heading":118.6875,"pitch":141.5,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":115.5625,"pitch":-179.0,"roll":84.5625},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":128.75,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":4.625,"pitch":140.3125,"roll":40.875},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":81.75,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":145.1875,"pitch":118.8125,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:51.940"} +{"sensors":[{"euler":{"heading":125.5,"pitch":134.9375,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":122.25,"pitch":-125.9375,"roll":80.5},"location":"Left Ankle"},{"euler":{"heading":124.25,"pitch":120.4375,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":81.9375,"pitch":141.4375,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":156.5,"pitch":85.4375,"roll":60.0625},"location":"Right Knee"},{"euler":{"heading":146.4375,"pitch":121.25,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:52.40"} +{"sensors":[{"euler":{"heading":43.875,"pitch":129.625,"roll":42.0625},"location":"Left Knee"},{"euler":{"heading":132.125,"pitch":-101.875,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":115.5625,"pitch":125.125,"roll":56.75},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":142.3125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":80.3125,"roll":62.3125},"location":"Right Knee"},{"euler":{"heading":147.0625,"pitch":124.75,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:52.141"} +{"sensors":[{"euler":{"heading":59.3125,"pitch":126.375,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":-104.5625,"roll":55.625},"location":"Left Ankle"},{"euler":{"heading":103.9375,"pitch":126.1875,"roll":64.6875},"location":"Right Ankle"},{"euler":{"heading":78.3125,"pitch":140.0625,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":156.5625,"pitch":78.3125,"roll":69.3125},"location":"Right Knee"},{"euler":{"heading":139.875,"pitch":117.5,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:52.242"} +{"sensors":[{"euler":{"heading":68.25,"pitch":125.3125,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":139.5,"pitch":-108.0625,"roll":55.4375},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":130.6875,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":73.75,"pitch":139.3125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":157.4375,"pitch":79.5,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":130.875,"pitch":103.4375,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:52.343"} +{"sensors":[{"euler":{"heading":38.5,"pitch":140.75,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":113.9375,"pitch":-109.0625,"roll":80.3125},"location":"Left Ankle"},{"euler":{"heading":93.5,"pitch":139.0625,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":79.1875,"pitch":135.8125,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":162.25,"pitch":80.8125,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":126.5,"pitch":102.0,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:52.443"} +{"sensors":[{"euler":{"heading":87.0,"pitch":167.0625,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":82.125,"pitch":100.0,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":147.5625,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":134.5,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":167.125,"pitch":4.625,"roll":85.125},"location":"Right Knee"},{"euler":{"heading":129.375,"pitch":102.3125,"roll":45.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:52.544"} +{"sensors":[{"euler":{"heading":71.6875,"pitch":-172.1875,"roll":58.0625},"location":"Left Knee"},{"euler":{"heading":66.9375,"pitch":92.375,"roll":53.625},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":176.5625,"roll":80.75},"location":"Right Ankle"},{"euler":{"heading":80.0625,"pitch":135.1875,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":175.25,"pitch":-2.5,"roll":87.375},"location":"Right Knee"},{"euler":{"heading":135.125,"pitch":106.0,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:52.647"} +{"sensors":[{"euler":{"heading":85.3125,"pitch":176.75,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":78.125,"pitch":91.5625,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":76.0,"pitch":-135.1875,"roll":73.9375},"location":"Right Ankle"},{"euler":{"heading":85.5625,"pitch":136.25,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":194.0625,"pitch":-94.1875,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":138.0,"pitch":108.9375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:52.748"} +{"sensors":[{"euler":{"heading":94.125,"pitch":165.0,"roll":59.75},"location":"Left Knee"},{"euler":{"heading":87.125,"pitch":88.3125,"roll":68.375},"location":"Left Ankle"},{"euler":{"heading":62.875,"pitch":-117.1875,"roll":59.375},"location":"Right Ankle"},{"euler":{"heading":97.4375,"pitch":132.5625,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":200.125,"pitch":-87.0,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":139.5,"pitch":111.6875,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:52.848"} +{"sensors":[{"euler":{"heading":99.125,"pitch":155.8125,"roll":58.5},"location":"Left Knee"},{"euler":{"heading":101.4375,"pitch":110.9375,"roll":81.3125},"location":"Left Ankle"},{"euler":{"heading":63.25,"pitch":-120.4375,"roll":62.75},"location":"Right Ankle"},{"euler":{"heading":101.25,"pitch":133.5625,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":195.6875,"pitch":-72.0,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":139.875,"pitch":115.9375,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:52.948"} +{"sensors":[{"euler":{"heading":103.5625,"pitch":148.8125,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":101.875,"pitch":114.8125,"roll":82.0},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":-166.5625,"roll":73.5625},"location":"Right Ankle"},{"euler":{"heading":10.25,"pitch":137.6875,"roll":39.375},"location":"Right Hip"},{"euler":{"heading":181.375,"pitch":4.125,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":142.25,"pitch":117.6875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:53.49"} +{"sensors":[{"euler":{"heading":109.625,"pitch":142.1875,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":105.1875,"pitch":177.0625,"roll":84.75},"location":"Left Ankle"},{"euler":{"heading":101.125,"pitch":132.75,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":2.625,"pitch":141.9375,"roll":39.8125},"location":"Right Hip"},{"euler":{"heading":163.125,"pitch":73.1875,"roll":68.9375},"location":"Right Knee"},{"euler":{"heading":143.6875,"pitch":120.1875,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:53.150"} +{"sensors":[{"euler":{"heading":118.25,"pitch":135.125,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":114.1875,"pitch":-175.125,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":119.4375,"pitch":117.375,"roll":51.25},"location":"Right Ankle"},{"euler":{"heading":81.9375,"pitch":141.8125,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":151.1875,"pitch":81.125,"roll":57.875},"location":"Right Knee"},{"euler":{"heading":144.875,"pitch":121.3125,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:53.251"} +{"sensors":[{"euler":{"heading":39.9375,"pitch":129.25,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":127.6875,"pitch":-104.25,"roll":72.8125},"location":"Left Ankle"},{"euler":{"heading":114.0625,"pitch":118.8125,"roll":55.375},"location":"Right Ankle"},{"euler":{"heading":76.375,"pitch":142.1875,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":150.9375,"pitch":78.5,"roll":60.9375},"location":"Right Knee"},{"euler":{"heading":145.875,"pitch":123.4375,"roll":66.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:53.352"} +{"sensors":[{"euler":{"heading":55.3125,"pitch":125.6875,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":142.625,"pitch":-102.5625,"roll":56.625},"location":"Left Ankle"},{"euler":{"heading":100.6875,"pitch":125.25,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":80.625,"pitch":139.0,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":155.75,"pitch":72.875,"roll":68.9375},"location":"Right Knee"},{"euler":{"heading":141.75,"pitch":119.3125,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:53.453"} +{"sensors":[{"euler":{"heading":67.125,"pitch":125.6875,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":144.4375,"pitch":-107.4375,"roll":51.6875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":133.9375,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":77.25,"pitch":136.875,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":155.125,"pitch":77.625,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":131.6875,"pitch":104.0625,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:53.554"} +{"sensors":[{"euler":{"heading":42.875,"pitch":140.4375,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":114.625,"pitch":-105.625,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":86.25,"pitch":138.0625,"roll":74.9375},"location":"Right Ankle"},{"euler":{"heading":80.875,"pitch":133.875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":158.8125,"pitch":76.25,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":127.0625,"pitch":102.3125,"roll":45.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:53.655"} +{"sensors":[{"euler":{"heading":86.0625,"pitch":166.6875,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":83.4375,"pitch":102.25,"roll":71.75},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":150.125,"roll":78.25},"location":"Right Ankle"},{"euler":{"heading":84.3125,"pitch":132.625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":163.6875,"pitch":6.0625,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":128.1875,"pitch":101.375,"roll":44.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:53.756"} +{"sensors":[{"euler":{"heading":71.8125,"pitch":-172.5625,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":66.75,"pitch":96.0625,"roll":53.3125},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-170.375,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":85.8125,"pitch":132.4375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":170.5,"pitch":-0.4375,"roll":88.75},"location":"Right Knee"},{"euler":{"heading":136.1875,"pitch":105.5,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:53.857"} +{"sensors":[{"euler":{"heading":82.9375,"pitch":179.125,"roll":56.3125},"location":"Left Knee"},{"euler":{"heading":76.9375,"pitch":101.6875,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":69.6875,"pitch":-132.75,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":85.875,"pitch":134.3125,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":181.5625,"pitch":-89.3125,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":139.75,"pitch":106.3125,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:53.957"} +{"sensors":[{"euler":{"heading":94.25,"pitch":168.25,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":90.8125,"pitch":97.375,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":-114.1875,"roll":61.4375},"location":"Right Ankle"},{"euler":{"heading":92.5,"pitch":134.4375,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":199.875,"pitch":-90.0,"roll":68.875},"location":"Right Knee"},{"euler":{"heading":138.25,"pitch":109.0,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:54.58"} +{"sensors":[{"euler":{"heading":105.5625,"pitch":158.4375,"roll":57.3125},"location":"Left Knee"},{"euler":{"heading":101.5625,"pitch":104.6875,"roll":78.5},"location":"Left Ankle"},{"euler":{"heading":54.0625,"pitch":-110.6875,"roll":56.5},"location":"Right Ankle"},{"euler":{"heading":98.625,"pitch":132.5625,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":198.4375,"pitch":-79.4375,"roll":67.0625},"location":"Right Knee"},{"euler":{"heading":143.5625,"pitch":114.0625,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:54.159"} +{"sensors":[{"euler":{"heading":113.125,"pitch":150.4375,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":115.625,"pitch":176.5625,"roll":86.125},"location":"Left Ankle"},{"euler":{"heading":72.4375,"pitch":-137.25,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":12.75,"pitch":135.5625,"roll":40.3125},"location":"Right Hip"},{"euler":{"heading":189.25,"pitch":-53.1875,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":147.1875,"pitch":119.375,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:54.259"} +{"sensors":[{"euler":{"heading":121.5,"pitch":142.1875,"roll":54.0625},"location":"Left Knee"},{"euler":{"heading":118.5,"pitch":-179.875,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":99.75,"pitch":142.5625,"roll":68.8125},"location":"Right Ankle"},{"euler":{"heading":5.75,"pitch":141.5,"roll":38.875},"location":"Right Hip"},{"euler":{"heading":170.8125,"pitch":74.0,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":148.875,"pitch":121.0625,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:54.360"} +{"sensors":[{"euler":{"heading":131.1875,"pitch":134.0,"roll":50.125},"location":"Left Knee"},{"euler":{"heading":127.9375,"pitch":-123.125,"roll":81.4375},"location":"Left Ankle"},{"euler":{"heading":119.75,"pitch":119.1875,"roll":52.1875},"location":"Right Ankle"},{"euler":{"heading":86.25,"pitch":141.125,"roll":45.25},"location":"Right Hip"},{"euler":{"heading":154.8125,"pitch":83.4375,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":151.375,"pitch":121.375,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:54.461"} +{"sensors":[{"euler":{"heading":50.4375,"pitch":127.1875,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":136.8125,"pitch":-100.75,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":113.25,"pitch":121.6875,"roll":56.9375},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":142.5,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":155.1875,"pitch":79.25,"roll":62.4375},"location":"Right Knee"},{"euler":{"heading":151.4375,"pitch":122.6875,"roll":67.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:54.562"} +{"sensors":[{"euler":{"heading":61.75,"pitch":124.9375,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":145.6875,"pitch":-105.5,"roll":56.6875},"location":"Left Ankle"},{"euler":{"heading":101.5,"pitch":126.5,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":80.25,"pitch":140.875,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":156.5625,"pitch":75.125,"roll":68.375},"location":"Right Knee"},{"euler":{"heading":143.0625,"pitch":115.8125,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:54.662"} +{"sensors":[{"euler":{"heading":73.375,"pitch":124.75,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":143.25,"pitch":-106.625,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":97.0,"pitch":128.75,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":140.3125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":80.375,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":134.4375,"pitch":105.3125,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:54.763"} +{"sensors":[{"euler":{"heading":44.5,"pitch":140.0,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":118.0625,"pitch":-112.125,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":134.0625,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":80.875,"pitch":137.1875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":160.3125,"pitch":78.6875,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":130.0625,"pitch":103.5625,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:54.864"} +{"sensors":[{"euler":{"heading":91.25,"pitch":165.25,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":86.1875,"pitch":103.8125,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":84.0,"pitch":147.5,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":82.1875,"pitch":135.0625,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":5.625,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":129.625,"pitch":102.3125,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:54.965"} +{"sensors":[{"euler":{"heading":72.375,"pitch":-172.5,"roll":57.125},"location":"Left Knee"},{"euler":{"heading":67.6875,"pitch":93.875,"roll":52.875},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-172.25,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":82.75,"pitch":133.9375,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":-1.125,"roll":88.1875},"location":"Right Knee"},{"euler":{"heading":135.5625,"pitch":106.125,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:55.66"} +{"sensors":[{"euler":{"heading":83.0,"pitch":-179.6875,"roll":56.875},"location":"Left Knee"},{"euler":{"heading":76.0625,"pitch":95.875,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":70.0625,"pitch":-130.75,"roll":76.3125},"location":"Right Ankle"},{"euler":{"heading":84.25,"pitch":134.75,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":183.4375,"pitch":-90.9375,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":140.125,"pitch":108.0625,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:55.167"} +{"sensors":[{"euler":{"heading":94.5625,"pitch":168.1875,"roll":58.3125},"location":"Left Knee"},{"euler":{"heading":88.875,"pitch":92.4375,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":57.1875,"pitch":-113.0625,"roll":58.0},"location":"Right Ankle"},{"euler":{"heading":92.1875,"pitch":134.1875,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":199.875,"pitch":-88.875,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":139.4375,"pitch":109.8125,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:55.269"} +{"sensors":[{"euler":{"heading":102.3125,"pitch":158.1875,"roll":58.125},"location":"Left Knee"},{"euler":{"heading":104.4375,"pitch":116.125,"roll":80.875},"location":"Left Ankle"},{"euler":{"heading":56.6875,"pitch":-118.0,"roll":56.1875},"location":"Right Ankle"},{"euler":{"heading":97.3125,"pitch":133.3125,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":200.9375,"pitch":-80.0,"roll":67.0625},"location":"Right Knee"},{"euler":{"heading":142.125,"pitch":117.625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:55.369"} +{"sensors":[{"euler":{"heading":109.125,"pitch":150.1875,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":110.25,"pitch":4.375,"roll":85.5625},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-144.4375,"roll":68.9375},"location":"Right Ankle"},{"euler":{"heading":8.875,"pitch":136.6875,"roll":41.8125},"location":"Right Hip"},{"euler":{"heading":188.8125,"pitch":-52.375,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":145.5625,"pitch":120.5625,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:55.470"} +{"sensors":[{"euler":{"heading":114.5625,"pitch":143.25,"roll":54.375},"location":"Left Knee"},{"euler":{"heading":106.25,"pitch":175.0625,"roll":83.375},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":145.625,"roll":68.8125},"location":"Right Ankle"},{"euler":{"heading":1.375,"pitch":142.0,"roll":40.875},"location":"Right Hip"},{"euler":{"heading":170.6875,"pitch":68.0625,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":146.625,"pitch":123.0625,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:55.571"} +{"sensors":[{"euler":{"heading":122.0,"pitch":135.75,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":112.9375,"pitch":-178.625,"roll":84.8125},"location":"Left Ankle"},{"euler":{"heading":117.5625,"pitch":119.0,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":80.5,"pitch":143.6875,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":155.8125,"pitch":82.375,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":148.625,"pitch":125.4375,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:55.672"} +{"sensors":[{"euler":{"heading":40.5625,"pitch":129.875,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":-115.5,"roll":76.8125},"location":"Left Ankle"},{"euler":{"heading":113.3125,"pitch":119.5,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":75.375,"pitch":144.5625,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":154.1875,"pitch":79.4375,"roll":61.3125},"location":"Right Knee"},{"euler":{"heading":150.125,"pitch":129.0,"roll":68.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:55.773"} +{"sensors":[{"euler":{"heading":55.6875,"pitch":126.375,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":134.5,"pitch":-105.25,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":101.0625,"pitch":127.0,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":140.75,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":155.75,"pitch":74.875,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":143.8125,"pitch":119.6875,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:55.873"} +{"sensors":[{"euler":{"heading":70.4375,"pitch":124.0,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":141.8125,"pitch":-106.875,"roll":55.875},"location":"Left Ankle"},{"euler":{"heading":93.1875,"pitch":131.5625,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":76.1875,"pitch":139.75,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":155.875,"pitch":77.9375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":132.75,"pitch":106.125,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:55.974"} +{"sensors":[{"euler":{"heading":46.3125,"pitch":138.125,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":117.125,"pitch":-108.875,"roll":77.5},"location":"Left Ankle"},{"euler":{"heading":86.4375,"pitch":139.0,"roll":75.4375},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":135.875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":159.5,"pitch":75.75,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":128.1875,"pitch":104.25,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:56.75"} +{"sensors":[{"euler":{"heading":94.25,"pitch":162.0625,"roll":52.5625},"location":"Left Knee"},{"euler":{"heading":88.3125,"pitch":105.375,"roll":72.375},"location":"Left Ankle"},{"euler":{"heading":81.1875,"pitch":153.3125,"roll":79.25},"location":"Right Ankle"},{"euler":{"heading":82.1875,"pitch":134.4375,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":164.4375,"pitch":5.3125,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":128.5625,"pitch":102.4375,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:56.176"} +{"sensors":[{"euler":{"heading":75.9375,"pitch":-176.5625,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":68.625,"pitch":94.9375,"roll":53.5},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-165.0625,"roll":81.5},"location":"Right Ankle"},{"euler":{"heading":83.5,"pitch":133.625,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":172.6875,"pitch":-1.625,"roll":88.125},"location":"Right Knee"},{"euler":{"heading":136.0,"pitch":106.75,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:56.277"} +{"sensors":[{"euler":{"heading":87.625,"pitch":175.3125,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":76.4375,"pitch":97.4375,"roll":58.875},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-125.9375,"roll":75.6875},"location":"Right Ankle"},{"euler":{"heading":85.5,"pitch":134.375,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":186.875,"pitch":-93.5,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":139.3125,"pitch":108.25,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:56.378"} +{"sensors":[{"euler":{"heading":96.5,"pitch":163.875,"roll":56.75},"location":"Left Knee"},{"euler":{"heading":88.4375,"pitch":95.1875,"roll":68.25},"location":"Left Ankle"},{"euler":{"heading":57.625,"pitch":-112.4375,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":92.1875,"pitch":134.375,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":201.0625,"pitch":-89.375,"roll":66.6875},"location":"Right Knee"},{"euler":{"heading":137.375,"pitch":109.4375,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:56.479"} +{"sensors":[{"euler":{"heading":103.8125,"pitch":155.125,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":104.9375,"pitch":124.6875,"roll":81.1875},"location":"Left Ankle"},{"euler":{"heading":58.625,"pitch":-120.125,"roll":55.75},"location":"Right Ankle"},{"euler":{"heading":97.875,"pitch":131.8125,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":201.6875,"pitch":-80.125,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":139.875,"pitch":115.25,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:56.579"} +{"sensors":[{"euler":{"heading":110.75,"pitch":148.4375,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":111.375,"pitch":176.5,"roll":86.25},"location":"Left Ankle"},{"euler":{"heading":72.4375,"pitch":-143.0,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":9.25,"pitch":134.5,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":187.3125,"pitch":-45.75,"roll":82.0},"location":"Right Knee"},{"euler":{"heading":143.1875,"pitch":118.8125,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:56.679"} +{"sensors":[{"euler":{"heading":120.0625,"pitch":141.125,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":111.1875,"pitch":176.0,"roll":84.25},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":148.5,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":2.875,"pitch":140.5625,"roll":40.6875},"location":"Right Hip"},{"euler":{"heading":168.875,"pitch":72.875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":145.625,"pitch":121.25,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:56.780"} +{"sensors":[{"euler":{"heading":128.1875,"pitch":133.375,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":117.1875,"pitch":-178.375,"roll":85.0},"location":"Left Ankle"},{"euler":{"heading":114.875,"pitch":121.9375,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":354.1875,"pitch":143.0,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":154.9375,"pitch":80.5625,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":148.375,"pitch":124.3125,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:56.881"} +{"sensors":[{"euler":{"heading":45.5,"pitch":127.9375,"roll":42.6875},"location":"Left Knee"},{"euler":{"heading":126.4375,"pitch":-116.0625,"roll":78.375},"location":"Left Ankle"},{"euler":{"heading":113.1875,"pitch":120.9375,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":75.5,"pitch":144.625,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":153.8125,"pitch":77.0,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":149.75,"pitch":129.125,"roll":68.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:56.981"} +{"sensors":[{"euler":{"heading":58.3125,"pitch":125.0625,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":134.5,"pitch":-105.5,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":103.0625,"pitch":125.4375,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":78.9375,"pitch":140.9375,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":155.75,"pitch":77.125,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":146.0,"pitch":121.5625,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:57.82"} +{"sensors":[{"euler":{"heading":72.75,"pitch":123.1875,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":149.5,"pitch":-104.6875,"roll":50.0625},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":129.625,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":141.125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":81.4375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":133.5,"pitch":109.375,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:57.183"} +{"sensors":[{"euler":{"heading":54.25,"pitch":134.1875,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":123.3125,"pitch":-103.6875,"roll":70.6875},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":138.375,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":77.1875,"pitch":136.6875,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":79.5625,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":112.125,"pitch":104.75,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:57.284"} +{"sensors":[{"euler":{"heading":102.3125,"pitch":154.9375,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":95.125,"pitch":111.875,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":152.0625,"roll":78.0},"location":"Right Ankle"},{"euler":{"heading":80.25,"pitch":134.0625,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":163.0625,"pitch":71.375,"roll":82.4375},"location":"Right Knee"},{"euler":{"heading":127.5625,"pitch":102.3125,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:57.385"} +{"sensors":[{"euler":{"heading":79.0625,"pitch":179.4375,"roll":56.6875},"location":"Left Knee"},{"euler":{"heading":71.4375,"pitch":96.25,"roll":56.1875},"location":"Left Ankle"},{"euler":{"heading":74.8125,"pitch":-167.9375,"roll":81.125},"location":"Right Ankle"},{"euler":{"heading":82.0,"pitch":132.4375,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":0.3125,"roll":88.375},"location":"Right Knee"},{"euler":{"heading":132.125,"pitch":105.75,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:57.486"} +{"sensors":[{"euler":{"heading":80.875,"pitch":-179.125,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":73.1875,"pitch":97.4375,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":68.0,"pitch":-126.6875,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":83.1875,"pitch":133.4375,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":178.1875,"pitch":-86.0,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":136.4375,"pitch":107.5,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:57.587"} +{"sensors":[{"euler":{"heading":94.9375,"pitch":167.5625,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":86.4375,"pitch":95.6875,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-120.5625,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":86.875,"pitch":134.8125,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":197.4375,"pitch":-89.8125,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":136.4375,"pitch":107.875,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:57.688"} +{"sensors":[{"euler":{"heading":102.875,"pitch":157.25,"roll":56.0},"location":"Left Knee"},{"euler":{"heading":93.625,"pitch":96.5625,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":50.625,"pitch":-107.5625,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":92.5,"pitch":131.75,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":200.5625,"pitch":-81.875,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":139.3125,"pitch":112.75,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:57.789"} +{"sensors":[{"euler":{"heading":111.875,"pitch":148.9375,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":113.875,"pitch":177.125,"roll":86.1875},"location":"Left Ankle"},{"euler":{"heading":60.5,"pitch":-122.9375,"roll":60.4375},"location":"Right Ankle"},{"euler":{"heading":98.6875,"pitch":132.5,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":193.8125,"pitch":-67.8125,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":142.75,"pitch":117.125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:57.890"} +{"sensors":[{"euler":{"heading":120.5,"pitch":141.5625,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":114.625,"pitch":177.0,"roll":85.25},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":175.375,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":7.1875,"pitch":137.75,"roll":40.9375},"location":"Right Hip"},{"euler":{"heading":177.0,"pitch":49.75,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":145.375,"pitch":119.5625,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:57.991"} +{"sensors":[{"euler":{"heading":128.5625,"pitch":133.9375,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":119.0625,"pitch":-177.875,"roll":84.5625},"location":"Left Ankle"},{"euler":{"heading":111.6875,"pitch":128.375,"roll":59.875},"location":"Right Ankle"},{"euler":{"heading":357.9375,"pitch":142.0,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":82.5,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":147.75,"pitch":121.0,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:58.92"} +{"sensors":[{"euler":{"heading":46.6875,"pitch":128.25,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":127.6875,"pitch":-115.5,"roll":78.0},"location":"Left Ankle"},{"euler":{"heading":115.625,"pitch":125.4375,"roll":54.75},"location":"Right Ankle"},{"euler":{"heading":78.1875,"pitch":142.9375,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":152.1875,"pitch":82.625,"roll":58.1875},"location":"Right Knee"},{"euler":{"heading":148.0625,"pitch":124.0,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:58.193"} +{"sensors":[{"euler":{"heading":60.4375,"pitch":122.625,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":137.9375,"pitch":-103.75,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":103.625,"pitch":135.3125,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":77.75,"pitch":142.125,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":153.75,"pitch":76.4375,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":147.5625,"pitch":121.4375,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:58.293"} +{"sensors":[{"euler":{"heading":77.875,"pitch":121.5625,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":160.75,"pitch":-99.1875,"roll":48.4375},"location":"Left Ankle"},{"euler":{"heading":95.1875,"pitch":144.5625,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":78.125,"pitch":139.4375,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":156.375,"pitch":77.0,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":137.3125,"pitch":110.3125,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:58.394"} +{"sensors":[{"euler":{"heading":68.1875,"pitch":129.4375,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":136.75,"pitch":-106.0625,"roll":60.4375},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":146.4375,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":79.5625,"pitch":136.375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":160.1875,"pitch":80.875,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":129.75,"pitch":103.875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:58.494"} +{"sensors":[{"euler":{"heading":28.875,"pitch":147.6875,"roll":43.1875},"location":"Left Knee"},{"euler":{"heading":107.0,"pitch":-178.3125,"roll":84.1875},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":155.9375,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":81.375,"pitch":133.75,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":80.625,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":126.875,"pitch":102.25,"roll":44.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:58.595"} +{"sensors":[{"euler":{"heading":83.75,"pitch":173.875,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":77.3125,"pitch":100.4375,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-177.6875,"roll":78.75},"location":"Right Ankle"},{"euler":{"heading":83.125,"pitch":132.6875,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":166.5625,"pitch":3.3125,"roll":86.3125},"location":"Right Knee"},{"euler":{"heading":129.0625,"pitch":103.4375,"roll":45.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:58.696"} +{"sensors":[{"euler":{"heading":76.1875,"pitch":-175.4375,"roll":55.75},"location":"Left Knee"},{"euler":{"heading":70.0,"pitch":96.125,"roll":53.0625},"location":"Left Ankle"},{"euler":{"heading":67.25,"pitch":-133.8125,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":83.5625,"pitch":132.75,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":174.5,"pitch":-4.25,"roll":85.5625},"location":"Right Knee"},{"euler":{"heading":134.9375,"pitch":107.0,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:58.796"} +{"sensors":[{"euler":{"heading":92.0,"pitch":172.375,"roll":55.6875},"location":"Left Knee"},{"euler":{"heading":82.5625,"pitch":97.625,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-119.625,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":86.75,"pitch":134.0,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":192.375,"pitch":-92.6875,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":138.9375,"pitch":108.375,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:58.896"} +{"sensors":[{"euler":{"heading":102.9375,"pitch":159.875,"roll":56.1875},"location":"Left Knee"},{"euler":{"heading":93.1875,"pitch":96.4375,"roll":70.6875},"location":"Left Ankle"},{"euler":{"heading":55.625,"pitch":-115.5,"roll":54.6875},"location":"Right Ankle"},{"euler":{"heading":96.25,"pitch":132.0625,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":201.3125,"pitch":-84.3125,"roll":65.25},"location":"Right Knee"},{"euler":{"heading":140.25,"pitch":109.1875,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:58.997"} +{"sensors":[{"euler":{"heading":108.75,"pitch":151.875,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":111.0625,"pitch":175.4375,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":58.9375,"pitch":-121.875,"roll":56.75},"location":"Right Ankle"},{"euler":{"heading":100.75,"pitch":132.3125,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":199.125,"pitch":-76.125,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":140.3125,"pitch":113.75,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:59.97"} +{"sensors":[{"euler":{"heading":116.9375,"pitch":145.0625,"roll":54.4375},"location":"Left Knee"},{"euler":{"heading":115.125,"pitch":177.0625,"roll":86.0},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":-157.875,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":10.75,"pitch":136.5,"roll":40.8125},"location":"Right Hip"},{"euler":{"heading":183.75,"pitch":-0.625,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":145.8125,"pitch":117.625,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:59.197"} +{"sensors":[{"euler":{"heading":125.125,"pitch":137.6875,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":118.25,"pitch":-179.4375,"roll":85.5},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":132.125,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":4.125,"pitch":141.4375,"roll":40.875},"location":"Right Hip"},{"euler":{"heading":168.5,"pitch":83.875,"roll":69.6875},"location":"Right Knee"},{"euler":{"heading":148.3125,"pitch":120.375,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:59.298"} +{"sensors":[{"euler":{"heading":133.375,"pitch":131.3125,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":125.5625,"pitch":-123.625,"roll":81.4375},"location":"Left Ankle"},{"euler":{"heading":122.0,"pitch":119.5625,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":85.125,"pitch":141.6875,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":155.75,"pitch":86.5625,"roll":58.4375},"location":"Right Knee"},{"euler":{"heading":149.3125,"pitch":122.5,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:59.399"} +{"sensors":[{"euler":{"heading":51.5625,"pitch":126.625,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":135.1875,"pitch":-94.5625,"roll":72.6875},"location":"Left Ankle"},{"euler":{"heading":112.875,"pitch":129.1875,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":78.0625,"pitch":142.9375,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":152.9375,"pitch":80.8125,"roll":61.375},"location":"Right Knee"},{"euler":{"heading":150.0625,"pitch":125.6875,"roll":68.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:59.499"} +{"sensors":[{"euler":{"heading":63.0625,"pitch":125.25,"roll":29.0625},"location":"Left Knee"},{"euler":{"heading":145.4375,"pitch":-107.3125,"roll":57.3125},"location":"Left Ankle"},{"euler":{"heading":100.9375,"pitch":130.125,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":80.1875,"pitch":140.1875,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":155.875,"pitch":79.0625,"roll":68.375},"location":"Right Knee"},{"euler":{"heading":142.5,"pitch":119.5,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:59.600"} +{"sensors":[{"euler":{"heading":76.3125,"pitch":123.625,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":149.875,"pitch":-108.875,"roll":51.6875},"location":"Left Ankle"},{"euler":{"heading":94.6875,"pitch":134.3125,"roll":70.625},"location":"Right Ankle"},{"euler":{"heading":76.375,"pitch":139.1875,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":158.0,"pitch":82.125,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":133.625,"pitch":108.0625,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:59.700"} +{"sensors":[{"euler":{"heading":51.3125,"pitch":137.5625,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":118.0625,"pitch":-119.5,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":144.3125,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":135.125,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":163.0,"pitch":83.8125,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":127.3125,"pitch":105.375,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:59.801"} +{"sensors":[{"euler":{"heading":94.875,"pitch":161.3125,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":88.6875,"pitch":104.0625,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":158.0,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":82.875,"pitch":133.875,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":169.6875,"pitch":4.75,"roll":85.1875},"location":"Right Knee"},{"euler":{"heading":127.125,"pitch":103.9375,"roll":46.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:36:59.902"} +{"sensors":[{"euler":{"heading":75.0,"pitch":-176.75,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":67.4375,"pitch":93.4375,"roll":52.875},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":-169.5625,"roll":78.875},"location":"Right Ankle"},{"euler":{"heading":84.0625,"pitch":133.9375,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":-177.8125,"roll":87.8125},"location":"Right Knee"},{"euler":{"heading":132.5625,"pitch":106.25,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:00.3"} +{"sensors":[{"euler":{"heading":84.875,"pitch":176.625,"roll":56.0625},"location":"Left Knee"},{"euler":{"heading":75.6875,"pitch":95.5,"roll":59.3125},"location":"Left Ankle"},{"euler":{"heading":71.5,"pitch":-130.875,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":85.3125,"pitch":135.0,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":187.9375,"pitch":-92.9375,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":137.6875,"pitch":106.3125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:00.104"} +{"sensors":[{"euler":{"heading":96.6875,"pitch":164.5625,"roll":56.625},"location":"Left Knee"},{"euler":{"heading":88.4375,"pitch":94.0625,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":-115.0,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":92.5,"pitch":133.8125,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":200.5625,"pitch":-87.0625,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":136.0,"pitch":107.5625,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:00.204"} +{"sensors":[{"euler":{"heading":107.0,"pitch":155.625,"roll":56.5625},"location":"Left Knee"},{"euler":{"heading":104.0,"pitch":98.125,"roll":79.8125},"location":"Left Ankle"},{"euler":{"heading":60.375,"pitch":-121.125,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":97.8125,"pitch":132.5625,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":201.1875,"pitch":-77.0625,"roll":68.3125},"location":"Right Knee"},{"euler":{"heading":141.0625,"pitch":113.625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:00.304"} +{"sensors":[{"euler":{"heading":113.5625,"pitch":148.25,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":113.9375,"pitch":3.5,"roll":86.375},"location":"Left Ankle"},{"euler":{"heading":74.125,"pitch":-131.1875,"roll":70.6875},"location":"Right Ankle"},{"euler":{"heading":11.4375,"pitch":133.875,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":187.6875,"pitch":-3.75,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":144.5625,"pitch":118.3125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:00.405"} +{"sensors":[{"euler":{"heading":119.4375,"pitch":141.25,"roll":52.9375},"location":"Left Knee"},{"euler":{"heading":109.1875,"pitch":175.75,"roll":84.1875},"location":"Left Ankle"},{"euler":{"heading":100.1875,"pitch":140.0,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":3.5625,"pitch":139.8125,"roll":42.0},"location":"Right Hip"},{"euler":{"heading":168.5625,"pitch":78.625,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":145.375,"pitch":120.75,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:00.506"} +{"sensors":[{"euler":{"heading":126.875,"pitch":134.625,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":115.875,"pitch":-178.0625,"roll":84.8125},"location":"Left Ankle"},{"euler":{"heading":120.1875,"pitch":126.8125,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":83.1875,"pitch":141.625,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":155.0625,"pitch":85.125,"roll":58.9375},"location":"Right Knee"},{"euler":{"heading":147.0,"pitch":122.125,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:00.606"} +{"sensors":[{"euler":{"heading":45.875,"pitch":129.0,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":126.875,"pitch":-114.25,"roll":76.9375},"location":"Left Ankle"},{"euler":{"heading":111.0625,"pitch":130.875,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":142.6875,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":79.3125,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":148.125,"pitch":125.625,"roll":67.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:00.707"} +{"sensors":[{"euler":{"heading":57.6875,"pitch":126.5,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":136.125,"pitch":-106.375,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":103.0,"pitch":134.5,"roll":64.5625},"location":"Right Ankle"},{"euler":{"heading":79.75,"pitch":139.8125,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":154.625,"pitch":78.5,"roll":68.0},"location":"Right Knee"},{"euler":{"heading":141.9375,"pitch":118.3125,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:00.809"} +{"sensors":[{"euler":{"heading":71.0625,"pitch":125.8125,"roll":24.75},"location":"Left Knee"},{"euler":{"heading":142.9375,"pitch":-107.1875,"roll":52.875},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":139.8125,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":76.0,"pitch":139.0625,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":84.1875,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":131.9375,"pitch":104.5,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:00.910"} +{"sensors":[{"euler":{"heading":46.875,"pitch":138.5625,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":118.875,"pitch":-107.875,"roll":75.75},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":145.4375,"roll":71.0625},"location":"Right Ankle"},{"euler":{"heading":80.0,"pitch":135.0,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":161.625,"pitch":83.8125,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":128.125,"pitch":103.1875,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:01.11"} +{"sensors":[{"euler":{"heading":95.9375,"pitch":160.75,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":88.1875,"pitch":109.4375,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":160.6875,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":83.3125,"pitch":132.8125,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":166.375,"pitch":5.8125,"roll":84.0},"location":"Right Knee"},{"euler":{"heading":128.9375,"pitch":102.4375,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:01.112"} +{"sensors":[{"euler":{"heading":77.625,"pitch":-178.875,"roll":55.625},"location":"Left Knee"},{"euler":{"heading":69.625,"pitch":96.125,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-164.125,"roll":77.9375},"location":"Right Ankle"},{"euler":{"heading":85.1875,"pitch":132.875,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":172.75,"pitch":-0.1875,"roll":89.4375},"location":"Right Knee"},{"euler":{"heading":134.3125,"pitch":105.875,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:01.212"} +{"sensors":[{"euler":{"heading":87.75,"pitch":174.6875,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":76.3125,"pitch":99.0625,"roll":59.375},"location":"Left Ankle"},{"euler":{"heading":69.8125,"pitch":-131.75,"roll":71.875},"location":"Right Ankle"},{"euler":{"heading":86.1875,"pitch":134.4375,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":183.5625,"pitch":-88.4375,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":139.5625,"pitch":107.5625,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:01.313"} +{"sensors":[{"euler":{"heading":99.625,"pitch":162.75,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":88.25,"pitch":95.875,"roll":68.1875},"location":"Left Ankle"},{"euler":{"heading":61.625,"pitch":-117.4375,"roll":59.5},"location":"Right Ankle"},{"euler":{"heading":92.1875,"pitch":133.4375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":199.875,"pitch":-87.375,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":138.8125,"pitch":110.75,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:01.414"} +{"sensors":[{"euler":{"heading":110.875,"pitch":153.0,"roll":55.1875},"location":"Left Knee"},{"euler":{"heading":109.5625,"pitch":123.4375,"roll":82.375},"location":"Left Ankle"},{"euler":{"heading":60.8125,"pitch":-124.8125,"roll":56.8125},"location":"Right Ankle"},{"euler":{"heading":95.125,"pitch":131.625,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":200.5,"pitch":-77.3125,"roll":68.3125},"location":"Right Knee"},{"euler":{"heading":143.8125,"pitch":116.0625,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:01.515"} +{"sensors":[{"euler":{"heading":119.25,"pitch":145.125,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":118.5,"pitch":178.8125,"roll":88.3125},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":-156.0,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":96.75,"pitch":133.9375,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":184.75,"pitch":-3.9375,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":147.125,"pitch":119.75,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:01.615"} +{"sensors":[{"euler":{"heading":126.0,"pitch":138.5,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":120.0,"pitch":-178.125,"roll":85.6875},"location":"Left Ankle"},{"euler":{"heading":106.0625,"pitch":137.75,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":0.625,"pitch":140.375,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":165.8125,"pitch":81.625,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":148.8125,"pitch":123.375,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:01.716"} +{"sensors":[{"euler":{"heading":133.25,"pitch":132.125,"roll":46.8125},"location":"Left Knee"},{"euler":{"heading":126.3125,"pitch":-119.625,"roll":80.875},"location":"Left Ankle"},{"euler":{"heading":121.875,"pitch":124.3125,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":80.9375,"pitch":143.1875,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":153.3125,"pitch":85.0,"roll":57.875},"location":"Right Knee"},{"euler":{"heading":151.5625,"pitch":126.5625,"roll":67.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:01.817"} +{"sensors":[{"euler":{"heading":52.8125,"pitch":126.6875,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":136.0,"pitch":-104.125,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":114.75,"pitch":127.875,"roll":56.375},"location":"Right Ankle"},{"euler":{"heading":80.0625,"pitch":142.6875,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":153.5,"pitch":80.625,"roll":62.25},"location":"Right Knee"},{"euler":{"heading":153.6875,"pitch":128.875,"roll":69.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:01.918"} +{"sensors":[{"euler":{"heading":66.0625,"pitch":126.4375,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":148.375,"pitch":-107.5625,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":101.8125,"pitch":132.0,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":81.25,"pitch":139.5625,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":156.4375,"pitch":79.375,"roll":69.0},"location":"Right Knee"},{"euler":{"heading":142.3125,"pitch":118.3125,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:02.18"} +{"sensors":[{"euler":{"heading":75.4375,"pitch":126.5625,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":146.8125,"pitch":-113.6875,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":138.3125,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":137.5625,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":157.3125,"pitch":82.3125,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":135.0625,"pitch":104.9375,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:02.119"} +{"sensors":[{"euler":{"heading":46.25,"pitch":142.6875,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":113.8125,"pitch":-125.8125,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":91.4375,"pitch":146.4375,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":82.625,"pitch":133.8125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":82.875,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":129.3125,"pitch":103.6875,"roll":45.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:02.219"} +{"sensors":[{"euler":{"heading":89.1875,"pitch":168.25,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":83.1875,"pitch":104.25,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":157.375,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":84.125,"pitch":132.625,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":167.6875,"pitch":4.6875,"roll":85.125},"location":"Right Knee"},{"euler":{"heading":129.5,"pitch":103.6875,"roll":45.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:02.320"} +{"sensors":[{"euler":{"heading":75.5,"pitch":-175.875,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":67.6875,"pitch":94.6875,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":79.0,"pitch":-169.1875,"roll":78.4375},"location":"Right Ankle"},{"euler":{"heading":86.125,"pitch":132.9375,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":176.1875,"pitch":-2.5,"roll":87.375},"location":"Right Knee"},{"euler":{"heading":135.75,"pitch":107.6875,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:02.421"} +{"sensors":[{"euler":{"heading":90.875,"pitch":173.625,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":80.1875,"pitch":98.75,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":72.0,"pitch":-135.5,"roll":72.625},"location":"Right Ankle"},{"euler":{"heading":86.5,"pitch":134.75,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":188.8125,"pitch":-91.6875,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":139.375,"pitch":107.6875,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:02.522"} +{"sensors":[{"euler":{"heading":100.5625,"pitch":162.5,"roll":56.4375},"location":"Left Knee"},{"euler":{"heading":91.8125,"pitch":94.5,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":60.0,"pitch":-116.0,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":93.9375,"pitch":133.0,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":199.4375,"pitch":-86.0,"roll":67.25},"location":"Right Knee"},{"euler":{"heading":138.5625,"pitch":108.375,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:02.623"} +{"sensors":[{"euler":{"heading":108.5,"pitch":154.0625,"roll":55.5},"location":"Left Knee"},{"euler":{"heading":108.3125,"pitch":122.125,"roll":82.375},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-123.8125,"roll":58.75},"location":"Right Ankle"},{"euler":{"heading":98.125,"pitch":132.25,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":198.25,"pitch":-77.4375,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":141.6875,"pitch":114.8125,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:02.724"} +{"sensors":[{"euler":{"heading":116.625,"pitch":146.5,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":115.4375,"pitch":177.375,"roll":86.9375},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-146.75,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":7.75,"pitch":136.375,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":183.4375,"pitch":15.375,"roll":84.625},"location":"Right Knee"},{"euler":{"heading":143.6875,"pitch":116.9375,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:02.825"} +{"sensors":[{"euler":{"heading":123.625,"pitch":138.8125,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":117.25,"pitch":-178.75,"roll":85.0625},"location":"Left Ankle"},{"euler":{"heading":104.4375,"pitch":120.9375,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":356.5625,"pitch":141.6875,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":161.25,"pitch":79.6875,"roll":66.25},"location":"Right Knee"},{"euler":{"heading":144.75,"pitch":118.75,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:02.926"} +{"sensors":[{"euler":{"heading":131.5,"pitch":132.4375,"roll":46.0},"location":"Left Knee"},{"euler":{"heading":125.1875,"pitch":-124.25,"roll":80.25},"location":"Left Ankle"},{"euler":{"heading":116.625,"pitch":121.9375,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":76.875,"pitch":144.8125,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":153.0625,"pitch":84.8125,"roll":58.125},"location":"Right Knee"},{"euler":{"heading":146.25,"pitch":120.3125,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:03.27"} +{"sensors":[{"euler":{"heading":54.0625,"pitch":125.8125,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":135.625,"pitch":-97.8125,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":106.875,"pitch":134.8125,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":77.5625,"pitch":143.5625,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":152.6875,"pitch":78.0,"roll":63.5},"location":"Right Knee"},{"euler":{"heading":148.5,"pitch":120.125,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:03.129"} +{"sensors":[{"euler":{"heading":67.5,"pitch":127.3125,"roll":25.0625},"location":"Left Knee"},{"euler":{"heading":148.75,"pitch":-99.75,"roll":52.75},"location":"Left Ankle"},{"euler":{"heading":98.6875,"pitch":139.75,"roll":65.75},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":141.625,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":155.375,"pitch":76.6875,"roll":69.6875},"location":"Right Knee"},{"euler":{"heading":132.1875,"pitch":109.6875,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:03.229"} +{"sensors":[{"euler":{"heading":62.0625,"pitch":131.625,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":134.875,"pitch":-100.375,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":144.125,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":76.5625,"pitch":138.0625,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":158.3125,"pitch":78.875,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":126.6875,"pitch":102.5,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:03.330"} +{"sensors":[{"euler":{"heading":21.625,"pitch":150.125,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":103.625,"pitch":175.9375,"roll":83.9375},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":152.4375,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":80.6875,"pitch":135.4375,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":163.8125,"pitch":77.375,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":127.625,"pitch":102.6875,"roll":46.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:03.431"} +{"sensors":[{"euler":{"heading":83.6875,"pitch":173.4375,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":77.5,"pitch":100.0625,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":171.9375,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":81.5,"pitch":134.8125,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":169.6875,"pitch":3.125,"roll":86.375},"location":"Right Knee"},{"euler":{"heading":130.25,"pitch":103.4375,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:03.532"} +{"sensors":[{"euler":{"heading":80.125,"pitch":-179.0625,"roll":54.375},"location":"Left Knee"},{"euler":{"heading":71.9375,"pitch":96.625,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":75.8125,"pitch":-149.875,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":84.125,"pitch":134.875,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":180.5625,"pitch":-5.5625,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":136.3125,"pitch":106.875,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:03.632"} +{"sensors":[{"euler":{"heading":95.3125,"pitch":167.625,"roll":54.9375},"location":"Left Knee"},{"euler":{"heading":85.0625,"pitch":98.5625,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":67.3125,"pitch":-124.3125,"roll":62.75},"location":"Right Ankle"},{"euler":{"heading":89.75,"pitch":135.125,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":199.1875,"pitch":-88.25,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":134.0,"pitch":104.75,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:03.733"} +{"sensors":[{"euler":{"heading":101.9375,"pitch":158.5625,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":93.125,"pitch":96.375,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":59.5,"pitch":-120.8125,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":101.0625,"pitch":130.75,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":202.5625,"pitch":-83.9375,"roll":66.8125},"location":"Right Knee"},{"euler":{"heading":136.25,"pitch":109.75,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:03.833"} +{"sensors":[{"euler":{"heading":107.3125,"pitch":151.75,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":108.4375,"pitch":175.5625,"roll":84.625},"location":"Left Ankle"},{"euler":{"heading":66.5625,"pitch":-130.25,"roll":63.125},"location":"Right Ankle"},{"euler":{"heading":10.3125,"pitch":133.75,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":176.3125,"pitch":-66.75,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":139.1875,"pitch":114.75,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:03.934"} +{"sensors":[{"euler":{"heading":116.5,"pitch":144.3125,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":111.0625,"pitch":177.1875,"roll":85.5625},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":178.1875,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":9.125,"pitch":138.8125,"roll":38.9375},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":54.6875,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":142.375,"pitch":118.3125,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:04.35"} +{"sensors":[{"euler":{"heading":125.0625,"pitch":137.1875,"roll":49.75},"location":"Left Knee"},{"euler":{"heading":117.4375,"pitch":-177.5625,"roll":85.3125},"location":"Left Ankle"},{"euler":{"heading":110.75,"pitch":131.9375,"roll":59.0},"location":"Right Ankle"},{"euler":{"heading":0.9375,"pitch":142.625,"roll":40.625},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":79.625,"roll":48.875},"location":"Right Knee"},{"euler":{"heading":145.5625,"pitch":120.9375,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:04.136"} +{"sensors":[{"euler":{"heading":42.0,"pitch":131.625,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":126.3125,"pitch":-112.375,"roll":78.5625},"location":"Left Ankle"},{"euler":{"heading":119.9375,"pitch":127.875,"roll":52.25},"location":"Right Ankle"},{"euler":{"heading":77.125,"pitch":144.25,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":150.4375,"pitch":80.6875,"roll":55.5},"location":"Right Knee"},{"euler":{"heading":146.5625,"pitch":125.4375,"roll":67.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:04.237"} +{"sensors":[{"euler":{"heading":54.875,"pitch":125.375,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":133.875,"pitch":-100.5,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":108.3125,"pitch":131.9375,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":77.5,"pitch":143.3125,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":151.4375,"pitch":75.9375,"roll":61.875},"location":"Right Knee"},{"euler":{"heading":148.1875,"pitch":122.6875,"roll":67.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:04.338"} +{"sensors":[{"euler":{"heading":70.3125,"pitch":124.875,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":152.0625,"pitch":-103.9375,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":138.5625,"roll":65.6875},"location":"Right Ankle"},{"euler":{"heading":76.0625,"pitch":142.3125,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":153.6875,"pitch":79.6875,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":135.8125,"pitch":109.0,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:04.439"} +{"sensors":[{"euler":{"heading":66.5,"pitch":129.625,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":133.0625,"pitch":-102.75,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":94.25,"pitch":144.625,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":79.3125,"pitch":137.75,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":82.875,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":129.3125,"pitch":102.375,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:04.541"} +{"sensors":[{"euler":{"heading":29.875,"pitch":146.0,"roll":42.0625},"location":"Left Knee"},{"euler":{"heading":105.3125,"pitch":-178.375,"roll":86.0625},"location":"Left Ankle"},{"euler":{"heading":90.0,"pitch":150.5625,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":82.875,"pitch":136.25,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":163.375,"pitch":83.1875,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":128.625,"pitch":101.875,"roll":45.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:04.641"} +{"sensors":[{"euler":{"heading":84.8125,"pitch":170.9375,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":76.25,"pitch":97.125,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":171.0,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":82.9375,"pitch":135.9375,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":4.4375,"roll":85.3125},"location":"Right Knee"},{"euler":{"heading":130.0625,"pitch":102.8125,"roll":46.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:04.746"} +{"sensors":[{"euler":{"heading":76.75,"pitch":-178.375,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":69.3125,"pitch":95.5625,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":-154.3125,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":82.4375,"pitch":136.625,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":-4.0625,"roll":85.8125},"location":"Right Knee"},{"euler":{"heading":134.5,"pitch":105.9375,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:04.846"} +{"sensors":[{"euler":{"heading":91.4375,"pitch":169.125,"roll":55.3125},"location":"Left Knee"},{"euler":{"heading":82.3125,"pitch":95.125,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":72.125,"pitch":-130.125,"roll":66.4375},"location":"Right Ankle"},{"euler":{"heading":86.75,"pitch":136.875,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":195.0,"pitch":-91.6875,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":134.5,"pitch":107.1875,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:04.947"} +{"sensors":[{"euler":{"heading":100.1875,"pitch":159.1875,"roll":55.125},"location":"Left Knee"},{"euler":{"heading":90.375,"pitch":94.3125,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":61.1875,"pitch":-122.4375,"roll":54.625},"location":"Right Ankle"},{"euler":{"heading":94.75,"pitch":133.8125,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":204.1875,"pitch":-86.5625,"roll":65.0625},"location":"Right Knee"},{"euler":{"heading":136.875,"pitch":110.75,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:05.47"} +{"sensors":[{"euler":{"heading":107.6875,"pitch":151.3125,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":106.75,"pitch":175.3125,"roll":84.125},"location":"Left Ankle"},{"euler":{"heading":78.75,"pitch":-129.0,"roll":62.3125},"location":"Right Ankle"},{"euler":{"heading":7.3125,"pitch":135.5625,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":192.0625,"pitch":-72.375,"roll":74.625},"location":"Right Knee"},{"euler":{"heading":140.0625,"pitch":114.875,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:05.148"} +{"sensors":[{"euler":{"heading":113.625,"pitch":144.375,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":107.875,"pitch":176.9375,"roll":84.6875},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":176.25,"roll":70.125},"location":"Right Ankle"},{"euler":{"heading":4.75,"pitch":139.6875,"roll":40.6875},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":44.625,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":140.9375,"pitch":117.625,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:05.248"} +{"sensors":[{"euler":{"heading":121.1875,"pitch":138.4375,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":112.375,"pitch":-178.25,"roll":84.375},"location":"Left Ankle"},{"euler":{"heading":112.625,"pitch":129.5625,"roll":57.5625},"location":"Right Ankle"},{"euler":{"heading":354.0625,"pitch":144.3125,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":160.6875,"pitch":78.875,"roll":65.125},"location":"Right Knee"},{"euler":{"heading":143.125,"pitch":120.5625,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:05.349"} +{"sensors":[{"euler":{"heading":39.25,"pitch":132.8125,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":122.4375,"pitch":-118.875,"roll":78.25},"location":"Left Ankle"},{"euler":{"heading":118.4375,"pitch":128.9375,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":74.8125,"pitch":145.75,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":153.0625,"pitch":79.0625,"roll":59.125},"location":"Right Knee"},{"euler":{"heading":144.375,"pitch":123.875,"roll":66.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:05.450"} +{"sensors":[{"euler":{"heading":53.5625,"pitch":127.4375,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":131.0,"pitch":-107.3125,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":100.875,"pitch":136.3125,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":75.25,"pitch":144.4375,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":75.5,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":145.375,"pitch":124.125,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:05.551"} +{"sensors":[{"euler":{"heading":69.1875,"pitch":125.5,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":146.625,"pitch":-108.4375,"roll":52.3125},"location":"Left Ankle"},{"euler":{"heading":99.3125,"pitch":138.5,"roll":65.8125},"location":"Right Ankle"},{"euler":{"heading":74.1875,"pitch":142.5625,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":156.5,"pitch":78.3125,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":133.5,"pitch":110.5625,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:05.651"} +{"sensors":[{"euler":{"heading":62.375,"pitch":130.8125,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":129.75,"pitch":-101.0625,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":145.0625,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":76.5,"pitch":138.875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":158.75,"pitch":79.1875,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":128.625,"pitch":105.875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:05.752"} +{"sensors":[{"euler":{"heading":23.125,"pitch":148.5,"roll":44.3125},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":177.0,"roll":85.5},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":156.6875,"roll":73.125},"location":"Right Ankle"},{"euler":{"heading":80.5625,"pitch":136.0625,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":77.3125,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":126.4375,"pitch":102.875,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:05.852"} +{"sensors":[{"euler":{"heading":81.5625,"pitch":173.6875,"roll":55.5625},"location":"Left Knee"},{"euler":{"heading":74.0,"pitch":96.625,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":79.125,"pitch":175.5,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":82.1875,"pitch":134.8125,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":167.5,"pitch":1.3125,"roll":88.25},"location":"Right Knee"},{"euler":{"heading":129.6875,"pitch":104.6875,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:05.953"} +{"sensors":[{"euler":{"heading":79.75,"pitch":-179.375,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":73.375,"pitch":97.8125,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":73.375,"pitch":-148.625,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":84.0,"pitch":135.25,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":179.25,"pitch":-93.375,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":136.5625,"pitch":108.5625,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:06.53"} +{"sensors":[{"euler":{"heading":94.0625,"pitch":166.625,"roll":55.0},"location":"Left Knee"},{"euler":{"heading":85.875,"pitch":95.4375,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":66.875,"pitch":-124.0,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":89.3125,"pitch":135.4375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":196.5,"pitch":-91.6875,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":135.8125,"pitch":109.5,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:06.154"} +{"sensors":[{"euler":{"heading":105.9375,"pitch":157.0,"roll":55.25},"location":"Left Knee"},{"euler":{"heading":97.8125,"pitch":92.375,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":58.8125,"pitch":-121.75,"roll":56.5},"location":"Right Ankle"},{"euler":{"heading":94.6875,"pitch":132.375,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":200.3125,"pitch":-84.875,"roll":65.0625},"location":"Right Knee"},{"euler":{"heading":140.875,"pitch":115.4375,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:06.255"} +{"sensors":[{"euler":{"heading":115.125,"pitch":149.625,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":114.75,"pitch":176.3125,"roll":86.1875},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-133.6875,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":11.0,"pitch":134.4375,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":192.75,"pitch":-71.5625,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":146.0625,"pitch":120.5,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:06.355"} +{"sensors":[{"euler":{"heading":122.3125,"pitch":141.625,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":177.875,"roll":86.1875},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":158.8125,"roll":70.25},"location":"Right Ankle"},{"euler":{"heading":5.875,"pitch":141.0,"roll":39.75},"location":"Right Hip"},{"euler":{"heading":178.1875,"pitch":55.3125,"roll":82.6875},"location":"Right Knee"},{"euler":{"heading":147.8125,"pitch":124.5,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:06.456"} +{"sensors":[{"euler":{"heading":129.9375,"pitch":134.75,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":122.0625,"pitch":-175.75,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":120.5,"pitch":122.0,"roll":53.0},"location":"Right Ankle"},{"euler":{"heading":354.875,"pitch":143.1875,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":159.625,"pitch":83.1875,"roll":63.1875},"location":"Right Knee"},{"euler":{"heading":148.75,"pitch":126.3125,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:06.556"} +{"sensors":[{"euler":{"heading":63.8125,"pitch":129.0,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":132.875,"pitch":-109.6875,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":120.0,"pitch":126.3125,"roll":52.5},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":145.625,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":154.5625,"pitch":80.0,"roll":60.125},"location":"Right Knee"},{"euler":{"heading":148.25,"pitch":128.5625,"roll":67.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:06.657"} +{"sensors":[{"euler":{"heading":62.375,"pitch":124.25,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":140.3125,"pitch":-104.8125,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":103.625,"pitch":130.0625,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":78.9375,"pitch":142.25,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":155.25,"pitch":73.5625,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":145.25,"pitch":123.0,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:06.758"} +{"sensors":[{"euler":{"heading":74.4375,"pitch":125.375,"roll":22.875},"location":"Left Knee"},{"euler":{"heading":152.5,"pitch":-105.0,"roll":48.8125},"location":"Left Ankle"},{"euler":{"heading":98.8125,"pitch":136.0625,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":74.625,"pitch":141.5,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":156.3125,"pitch":78.4375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":132.625,"pitch":107.75,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:06.859"} +{"sensors":[{"euler":{"heading":56.25,"pitch":134.75,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":127.0625,"pitch":-101.9375,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":94.375,"pitch":140.8125,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":137.5625,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":80.875,"roll":78.9375},"location":"Right Knee"},{"euler":{"heading":127.125,"pitch":104.5625,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:06.960"} +{"sensors":[{"euler":{"heading":103.125,"pitch":155.4375,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":92.875,"pitch":115.0,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":151.6875,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":82.0,"pitch":136.1875,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":166.375,"pitch":5.8125,"roll":84.0},"location":"Right Knee"},{"euler":{"heading":126.9375,"pitch":102.9375,"roll":45.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:07.61"} +{"sensors":[{"euler":{"heading":80.5,"pitch":177.0625,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":96.25,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":174.625,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":82.875,"pitch":135.25,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":-0.3125,"roll":89.125},"location":"Right Knee"},{"euler":{"heading":131.25,"pitch":105.6875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:07.161"} +{"sensors":[{"euler":{"heading":90.8125,"pitch":171.9375,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":77.875,"pitch":100.1875,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":73.8125,"pitch":-144.1875,"roll":76.1875},"location":"Right Ankle"},{"euler":{"heading":84.5,"pitch":136.1875,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":183.3125,"pitch":-89.6875,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":137.0625,"pitch":107.75,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:07.262"} +{"sensors":[{"euler":{"heading":102.0625,"pitch":161.6875,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":88.25,"pitch":96.3125,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":64.6875,"pitch":-121.9375,"roll":62.6875},"location":"Right Ankle"},{"euler":{"heading":89.375,"pitch":136.25,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":199.8125,"pitch":-89.9375,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":136.5625,"pitch":108.8125,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:07.363"} +{"sensors":[{"euler":{"heading":110.3125,"pitch":153.0625,"roll":54.3125},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":107.4375,"roll":79.25},"location":"Left Ankle"},{"euler":{"heading":60.6875,"pitch":-124.3125,"roll":55.75},"location":"Right Ankle"},{"euler":{"heading":96.125,"pitch":133.3125,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":203.0,"pitch":-82.5625,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":140.75,"pitch":116.0625,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:07.464"} +{"sensors":[{"euler":{"heading":117.6875,"pitch":145.0625,"roll":52.9375},"location":"Left Knee"},{"euler":{"heading":113.9375,"pitch":176.6875,"roll":86.4375},"location":"Left Ankle"},{"euler":{"heading":74.125,"pitch":-143.375,"roll":66.6875},"location":"Right Ankle"},{"euler":{"heading":8.9375,"pitch":135.75,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":189.6875,"pitch":-59.0,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":144.5625,"pitch":120.4375,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:07.565"} +{"sensors":[{"euler":{"heading":123.4375,"pitch":139.0,"roll":50.3125},"location":"Left Knee"},{"euler":{"heading":113.8125,"pitch":178.375,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":149.4375,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":1.125,"pitch":142.0625,"roll":42.625},"location":"Right Hip"},{"euler":{"heading":174.375,"pitch":67.8125,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":145.0625,"pitch":123.75,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:07.665"} +{"sensors":[{"euler":{"heading":130.375,"pitch":133.625,"roll":45.1875},"location":"Left Knee"},{"euler":{"heading":118.5625,"pitch":-146.25,"roll":82.9375},"location":"Left Ankle"},{"euler":{"heading":123.875,"pitch":122.3125,"roll":51.375},"location":"Right Ankle"},{"euler":{"heading":79.5,"pitch":144.3125,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":159.0,"pitch":82.5,"roll":61.8125},"location":"Right Knee"},{"euler":{"heading":146.1875,"pitch":126.0625,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:07.766"} +{"sensors":[{"euler":{"heading":50.9375,"pitch":128.6875,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":129.5625,"pitch":-113.4375,"roll":75.125},"location":"Left Ankle"},{"euler":{"heading":119.0,"pitch":126.625,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":74.4375,"pitch":145.0,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":155.5625,"pitch":79.5625,"roll":61.6875},"location":"Right Knee"},{"euler":{"heading":148.875,"pitch":130.875,"roll":68.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:07.867"} +{"sensors":[{"euler":{"heading":64.875,"pitch":126.4375,"roll":26.3125},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":-113.5,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":105.375,"pitch":129.75,"roll":62.5},"location":"Right Ankle"},{"euler":{"heading":77.125,"pitch":142.125,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":156.125,"pitch":74.5,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":142.25,"pitch":121.5,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:07.968"} +{"sensors":[{"euler":{"heading":74.3125,"pitch":126.3125,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":147.1875,"pitch":-110.3125,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":136.375,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":73.125,"pitch":140.8125,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":156.875,"pitch":77.1875,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":131.75,"pitch":104.5,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:08.68"} +{"sensors":[{"euler":{"heading":46.4375,"pitch":138.6875,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":114.875,"pitch":-109.3125,"roll":78.875},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":143.1875,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":137.1875,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":160.125,"pitch":75.0,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":127.125,"pitch":102.9375,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:08.169"} +{"sensors":[{"euler":{"heading":93.3125,"pitch":161.1875,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":82.25,"pitch":101.625,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":153.4375,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":77.9375,"pitch":136.375,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":164.5,"pitch":5.5625,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":126.9375,"pitch":101.5,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:08.270"} +{"sensors":[{"euler":{"heading":77.5,"pitch":179.8125,"roll":55.8125},"location":"Left Knee"},{"euler":{"heading":67.1875,"pitch":92.3125,"roll":53.625},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":176.625,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":136.6875,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":172.1875,"pitch":-1.1875,"roll":88.3125},"location":"Right Knee"},{"euler":{"heading":133.5625,"pitch":106.125,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:08.370"} +{"sensors":[{"euler":{"heading":92.375,"pitch":169.875,"roll":54.125},"location":"Left Knee"},{"euler":{"heading":79.375,"pitch":98.0,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":-139.3125,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":84.625,"pitch":135.9375,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":185.6875,"pitch":-91.125,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":135.8125,"pitch":108.125,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:08.471"} +{"sensors":[{"euler":{"heading":104.8125,"pitch":158.3125,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":91.375,"pitch":93.0625,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":64.3125,"pitch":-123.125,"roll":59.125},"location":"Right Ankle"},{"euler":{"heading":95.25,"pitch":132.5625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":201.5625,"pitch":-86.4375,"roll":66.4375},"location":"Right Knee"},{"euler":{"heading":139.9375,"pitch":111.3125,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:08.572"} +{"sensors":[{"euler":{"heading":114.9375,"pitch":149.25,"roll":54.0},"location":"Left Knee"},{"euler":{"heading":109.25,"pitch":174.5625,"roll":83.5625},"location":"Left Ankle"},{"euler":{"heading":68.5625,"pitch":-126.8125,"roll":63.875},"location":"Right Ankle"},{"euler":{"heading":101.5,"pitch":132.6875,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":197.5,"pitch":-77.0625,"roll":72.6875},"location":"Right Knee"},{"euler":{"heading":145.0625,"pitch":117.5,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:08.673"} +{"sensors":[{"euler":{"heading":121.1875,"pitch":141.875,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":115.0625,"pitch":178.5625,"roll":88.0625},"location":"Left Ankle"},{"euler":{"heading":93.375,"pitch":174.8125,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":11.6875,"pitch":136.4375,"roll":42.875},"location":"Right Hip"},{"euler":{"heading":183.375,"pitch":2.625,"roll":85.8125},"location":"Right Knee"},{"euler":{"heading":147.0,"pitch":121.25,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:08.774"} +{"sensors":[{"euler":{"heading":143.6875,"pitch":136.0625,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":116.875,"pitch":-177.75,"roll":84.75},"location":"Left Ankle"},{"euler":{"heading":117.5625,"pitch":133.1875,"roll":56.875},"location":"Right Ankle"},{"euler":{"heading":88.875,"pitch":141.75,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":165.4375,"pitch":83.625,"roll":68.0},"location":"Right Knee"},{"euler":{"heading":148.3125,"pitch":124.0625,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:08.875"} +{"sensors":[{"euler":{"heading":45.0,"pitch":131.3125,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":125.1875,"pitch":-120.125,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":123.25,"pitch":126.25,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":79.5625,"pitch":144.4375,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":157.25,"pitch":84.4375,"roll":61.6875},"location":"Right Knee"},{"euler":{"heading":148.125,"pitch":127.125,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:08.977"} +{"sensors":[{"euler":{"heading":57.75,"pitch":126.3125,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":130.8125,"pitch":-102.1875,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":115.125,"pitch":130.4375,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":143.75,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":158.375,"pitch":81.375,"roll":67.6875},"location":"Right Knee"},{"euler":{"heading":147.875,"pitch":125.4375,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:09.77"} +{"sensors":[{"euler":{"heading":75.3125,"pitch":123.625,"roll":23.3125},"location":"Left Knee"},{"euler":{"heading":147.6875,"pitch":-102.375,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":106.75,"pitch":136.3125,"roll":63.0625},"location":"Right Ankle"},{"euler":{"heading":83.3125,"pitch":140.625,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":84.6875,"roll":74.375},"location":"Right Knee"},{"euler":{"heading":138.4375,"pitch":112.0,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:09.178"} +{"sensors":[{"euler":{"heading":65.875,"pitch":131.0,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":135.0625,"pitch":-107.4375,"roll":62.4375},"location":"Left Ankle"},{"euler":{"heading":101.3125,"pitch":138.25,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":81.25,"pitch":138.1875,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":163.75,"pitch":87.0625,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":133.375,"pitch":105.625,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:09.278"} +{"sensors":[{"euler":{"heading":25.5625,"pitch":148.6875,"roll":44.4375},"location":"Left Knee"},{"euler":{"heading":101.375,"pitch":175.0,"roll":83.8125},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":145.25,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":82.8125,"pitch":137.125,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":174.3125,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":130.1875,"pitch":104.3125,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:09.379"} +{"sensors":[{"euler":{"heading":86.625,"pitch":170.9375,"roll":54.875},"location":"Left Knee"},{"euler":{"heading":75.4375,"pitch":96.5,"roll":60.9375},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":160.125,"roll":74.0625},"location":"Right Ankle"},{"euler":{"heading":82.75,"pitch":135.4375,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":173.875,"pitch":-179.5625,"roll":89.375},"location":"Right Knee"},{"euler":{"heading":132.125,"pitch":106.0625,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:09.480"} +{"sensors":[{"euler":{"heading":89.9375,"pitch":174.0625,"roll":52.8125},"location":"Left Knee"},{"euler":{"heading":76.75,"pitch":97.0625,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":-166.375,"roll":75.875},"location":"Right Ankle"},{"euler":{"heading":85.4375,"pitch":134.5625,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":184.5625,"pitch":-99.75,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":136.75,"pitch":110.75,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:09.580"} +{"sensors":[{"euler":{"heading":104.5,"pitch":161.875,"roll":53.5},"location":"Left Knee"},{"euler":{"heading":89.1875,"pitch":96.8125,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":72.5,"pitch":-131.5625,"roll":64.5625},"location":"Right Ankle"},{"euler":{"heading":93.1875,"pitch":134.0,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":203.0,"pitch":-91.375,"roll":68.0625},"location":"Right Knee"},{"euler":{"heading":137.875,"pitch":110.75,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:09.682"} +{"sensors":[{"euler":{"heading":112.0625,"pitch":153.125,"roll":53.875},"location":"Left Knee"},{"euler":{"heading":99.625,"pitch":91.9375,"roll":74.625},"location":"Left Ankle"},{"euler":{"heading":68.3125,"pitch":-129.625,"roll":59.75},"location":"Right Ankle"},{"euler":{"heading":99.375,"pitch":132.6875,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":204.3125,"pitch":-82.0,"roll":66.1875},"location":"Right Knee"},{"euler":{"heading":138.9375,"pitch":113.625,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:09.783"} +{"sensors":[{"euler":{"heading":118.0,"pitch":146.25,"roll":52.5625},"location":"Left Knee"},{"euler":{"heading":116.25,"pitch":178.0625,"roll":87.1875},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":-171.125,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":8.875,"pitch":135.8125,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":188.8125,"pitch":-48.5625,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":141.3125,"pitch":116.875,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:09.885"} +{"sensors":[{"euler":{"heading":120.75,"pitch":141.25,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":109.375,"pitch":176.1875,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":108.875,"pitch":135.1875,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":1.0625,"pitch":140.125,"roll":43.6875},"location":"Right Hip"},{"euler":{"heading":170.125,"pitch":74.0625,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":141.3125,"pitch":121.625,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:09.986"} +{"sensors":[{"euler":{"heading":38.625,"pitch":134.625,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":115.25,"pitch":-177.5625,"roll":83.4375},"location":"Left Ankle"},{"euler":{"heading":123.375,"pitch":123.125,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":79.0,"pitch":143.5625,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":155.5625,"pitch":84.625,"roll":61.5},"location":"Right Knee"},{"euler":{"heading":144.0625,"pitch":125.75,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:10.86"} +{"sensors":[{"euler":{"heading":51.75,"pitch":128.5,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":-119.25,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":113.0,"pitch":129.0,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":77.8125,"pitch":143.0,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":155.0,"pitch":79.125,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":147.9375,"pitch":127.1875,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:10.187"} +{"sensors":[{"euler":{"heading":69.5,"pitch":125.875,"roll":24.9375},"location":"Left Knee"},{"euler":{"heading":140.25,"pitch":-98.0625,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":103.0,"pitch":136.625,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":75.5625,"pitch":142.3125,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":157.25,"pitch":77.0625,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":135.8125,"pitch":113.3125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:10.288"} +{"sensors":[{"euler":{"heading":70.875,"pitch":128.4375,"roll":24.0},"location":"Left Knee"},{"euler":{"heading":135.125,"pitch":-106.25,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":101.0625,"pitch":138.75,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":75.125,"pitch":140.625,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":160.8125,"pitch":85.5625,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":128.625,"pitch":103.625,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:10.389"} +{"sensors":[{"euler":{"heading":40.75,"pitch":141.5625,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":109.0,"pitch":-176.3125,"roll":84.625},"location":"Left Ankle"},{"euler":{"heading":94.6875,"pitch":143.375,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":78.9375,"pitch":137.0625,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":165.375,"pitch":88.25,"roll":82.625},"location":"Right Knee"},{"euler":{"heading":128.4375,"pitch":104.6875,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:10.490"} +{"sensors":[{"euler":{"heading":93.6875,"pitch":163.625,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":100.75,"roll":65.5625},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":155.5,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":80.6875,"pitch":135.9375,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":177.8125,"roll":87.8125},"location":"Right Knee"},{"euler":{"heading":127.5625,"pitch":105.6875,"roll":47.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:10.591"} +{"sensors":[{"euler":{"heading":80.8125,"pitch":177.8125,"roll":54.6875},"location":"Left Knee"},{"euler":{"heading":69.875,"pitch":94.375,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":-176.625,"roll":78.0625},"location":"Right Ankle"},{"euler":{"heading":83.75,"pitch":135.625,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":180.75,"pitch":-173.3125,"roll":83.125},"location":"Right Knee"},{"euler":{"heading":134.6875,"pitch":109.125,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:10.693"} +{"sensors":[{"euler":{"heading":98.25,"pitch":166.875,"roll":53.625},"location":"Left Knee"},{"euler":{"heading":85.875,"pitch":99.625,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-138.8125,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":88.75,"pitch":135.75,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":197.4375,"pitch":-97.8125,"roll":71.9375},"location":"Right Knee"},{"euler":{"heading":138.9375,"pitch":110.625,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:10.793"} +{"sensors":[{"euler":{"heading":112.25,"pitch":155.0625,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":93.625,"roll":73.6875},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":-114.4375,"roll":56.75},"location":"Right Ankle"},{"euler":{"heading":96.9375,"pitch":131.75,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":205.5,"pitch":-85.75,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":141.9375,"pitch":111.5,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:10.894"} +{"sensors":[{"euler":{"heading":121.625,"pitch":146.25,"roll":52.9375},"location":"Left Knee"},{"euler":{"heading":120.875,"pitch":178.125,"roll":86.6875},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":-128.8125,"roll":58.5},"location":"Right Ankle"},{"euler":{"heading":100.0625,"pitch":134.125,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":201.3125,"pitch":-75.9375,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":144.0,"pitch":116.0625,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:10.995"} +{"sensors":[{"euler":{"heading":126.9375,"pitch":139.375,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":119.3125,"pitch":177.5625,"roll":86.6875},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":177.5625,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":8.375,"pitch":138.3125,"roll":41.375},"location":"Right Hip"},{"euler":{"heading":183.25,"pitch":0.9375,"roll":85.0},"location":"Right Knee"},{"euler":{"heading":147.625,"pitch":120.5,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:11.95"} +{"sensors":[{"euler":{"heading":133.4375,"pitch":133.3125,"roll":46.875},"location":"Left Knee"},{"euler":{"heading":122.5,"pitch":-177.0,"roll":84.25},"location":"Left Ankle"},{"euler":{"heading":118.25,"pitch":124.3125,"roll":56.5},"location":"Right Ankle"},{"euler":{"heading":85.25,"pitch":142.8125,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":83.5,"roll":67.25},"location":"Right Knee"},{"euler":{"heading":148.375,"pitch":120.9375,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:11.195"} +{"sensors":[{"euler":{"heading":50.875,"pitch":128.625,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":128.6875,"pitch":-119.875,"roll":77.9375},"location":"Left Ankle"},{"euler":{"heading":121.1875,"pitch":127.3125,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":77.0625,"pitch":143.3125,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":156.5,"pitch":83.4375,"roll":62.75},"location":"Right Knee"},{"euler":{"heading":149.1875,"pitch":125.5,"roll":67.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:11.296"} +{"sensors":[{"euler":{"heading":63.4375,"pitch":124.25,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":136.8125,"pitch":-102.1875,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":131.5,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":77.375,"pitch":142.6875,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":156.5625,"pitch":80.625,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":146.8125,"pitch":123.4375,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:11.396"} +{"sensors":[{"euler":{"heading":76.125,"pitch":124.5,"roll":21.9375},"location":"Left Knee"},{"euler":{"heading":146.9375,"pitch":-108.8125,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":99.5625,"pitch":131.1875,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":73.8125,"pitch":142.0625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":157.9375,"pitch":81.3125,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":132.875,"pitch":109.5625,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:11.498"} +{"sensors":[{"euler":{"heading":58.9375,"pitch":134.5625,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":122.6875,"pitch":-104.5625,"roll":72.75},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":143.5,"roll":68.5},"location":"Right Ankle"},{"euler":{"heading":76.75,"pitch":137.9375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":161.8125,"pitch":81.75,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":127.875,"pitch":105.1875,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:11.598"} +{"sensors":[{"euler":{"heading":107.375,"pitch":153.5625,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":95.5625,"pitch":107.4375,"roll":78.125},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":149.5,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":79.3125,"pitch":136.3125,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":167.25,"pitch":4.875,"roll":85.0},"location":"Right Knee"},{"euler":{"heading":127.75,"pitch":103.4375,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:11.699"} +{"sensors":[{"euler":{"heading":83.375,"pitch":174.8125,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":72.25,"pitch":94.5,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":170.625,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":81.1875,"pitch":135.875,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":174.25,"pitch":-178.125,"roll":88.125},"location":"Right Knee"},{"euler":{"heading":131.1875,"pitch":107.625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:11.799"} +{"sensors":[{"euler":{"heading":92.0,"pitch":170.9375,"roll":53.0625},"location":"Left Knee"},{"euler":{"heading":76.375,"pitch":97.6875,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-148.0,"roll":75.6875},"location":"Right Ankle"},{"euler":{"heading":83.1875,"pitch":136.8125,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":185.5,"pitch":-94.6875,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":135.5,"pitch":109.6875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:11.900"} +{"sensors":[{"euler":{"heading":99.875,"pitch":160.75,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":89.4375,"pitch":95.875,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":63.1875,"pitch":-122.0625,"roll":61.625},"location":"Right Ankle"},{"euler":{"heading":86.625,"pitch":134.75,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":200.25,"pitch":-91.9375,"roll":67.1875},"location":"Right Knee"},{"euler":{"heading":134.0625,"pitch":110.5,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:12.0"} +{"sensors":[{"euler":{"heading":109.0625,"pitch":151.8125,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":105.0625,"pitch":111.875,"roll":81.1875},"location":"Left Ankle"},{"euler":{"heading":62.125,"pitch":-124.5625,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":92.3125,"pitch":133.1875,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":201.5,"pitch":-84.75,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":134.9375,"pitch":115.5625,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:12.100"} +{"sensors":[{"euler":{"heading":117.4375,"pitch":145.1875,"roll":50.875},"location":"Left Knee"},{"euler":{"heading":115.4375,"pitch":179.5625,"roll":88.875},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-156.5,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":95.75,"pitch":135.6875,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":190.6875,"pitch":-65.6875,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":140.1875,"pitch":120.5,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:12.201"} +{"sensors":[{"euler":{"heading":123.0625,"pitch":140.0,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":112.75,"pitch":178.4375,"roll":84.875},"location":"Left Ankle"},{"euler":{"heading":108.875,"pitch":136.875,"roll":64.1875},"location":"Right Ankle"},{"euler":{"heading":89.3125,"pitch":140.75,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":173.9375,"pitch":77.625,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":141.875,"pitch":124.125,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:12.302"} +{"sensors":[{"euler":{"heading":41.0625,"pitch":133.5625,"roll":44.25},"location":"Left Knee"},{"euler":{"heading":118.4375,"pitch":-142.375,"roll":82.5625},"location":"Left Ankle"},{"euler":{"heading":124.875,"pitch":118.4375,"roll":49.875},"location":"Right Ankle"},{"euler":{"heading":78.875,"pitch":142.625,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":158.75,"pitch":84.0,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":144.0625,"pitch":126.1875,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:12.403"} +{"sensors":[{"euler":{"heading":51.375,"pitch":128.5,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":128.4375,"pitch":-117.625,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":112.875,"pitch":123.9375,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":75.9375,"pitch":143.8125,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":157.6875,"pitch":79.4375,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":146.0,"pitch":129.8125,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:12.503"} +{"sensors":[{"euler":{"heading":65.25,"pitch":127.4375,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":138.375,"pitch":-102.0,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":134.1875,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":77.0,"pitch":141.625,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":160.6875,"pitch":79.5625,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":135.0625,"pitch":121.0,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:12.604"} +{"sensors":[{"euler":{"heading":68.0,"pitch":129.3125,"roll":23.5625},"location":"Left Knee"},{"euler":{"heading":133.5,"pitch":-110.875,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":140.3125,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":75.0625,"pitch":139.75,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":163.0625,"pitch":87.6875,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":126.0625,"pitch":108.625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:12.705"} +{"sensors":[{"euler":{"heading":40.0,"pitch":141.6875,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":115.125,"pitch":-107.25,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":145.375,"roll":72.5625},"location":"Right Ankle"},{"euler":{"heading":77.375,"pitch":136.9375,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":167.3125,"pitch":174.6875,"roll":84.125},"location":"Right Knee"},{"euler":{"heading":123.75,"pitch":105.75,"roll":45.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:12.806"} +{"sensors":[{"euler":{"heading":92.625,"pitch":164.125,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":85.1875,"pitch":100.0,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":161.875,"roll":75.6875},"location":"Right Ankle"},{"euler":{"heading":79.75,"pitch":135.6875,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":173.5625,"pitch":-179.6875,"roll":88.625},"location":"Right Knee"},{"euler":{"heading":125.6875,"pitch":105.6875,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:12.906"} +{"sensors":[{"euler":{"heading":78.875,"pitch":177.875,"roll":54.8125},"location":"Left Knee"},{"euler":{"heading":69.5625,"pitch":93.75,"roll":55.0625},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-161.5625,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":82.8125,"pitch":135.75,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":183.625,"pitch":-104.5625,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":131.375,"pitch":110.0,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:13.7"} +{"sensors":[{"euler":{"heading":95.0,"pitch":166.9375,"roll":53.3125},"location":"Left Knee"},{"euler":{"heading":82.375,"pitch":97.875,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-136.5,"roll":72.4375},"location":"Right Ankle"},{"euler":{"heading":84.875,"pitch":137.0,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":193.875,"pitch":-97.375,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":132.3125,"pitch":109.6875,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:13.107"} +{"sensors":[{"euler":{"heading":109.375,"pitch":155.25,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":95.625,"pitch":92.6875,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":79.6875,"pitch":-121.25,"roll":57.125},"location":"Right Ankle"},{"euler":{"heading":92.5,"pitch":134.375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":207.25,"pitch":-89.75,"roll":62.1875},"location":"Right Knee"},{"euler":{"heading":137.4375,"pitch":111.9375,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:13.208"} +{"sensors":[{"euler":{"heading":115.875,"pitch":147.5625,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":113.625,"pitch":177.5,"roll":85.4375},"location":"Left Ankle"},{"euler":{"heading":68.5625,"pitch":-129.8125,"roll":62.3125},"location":"Right Ankle"},{"euler":{"heading":97.3125,"pitch":135.125,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":202.5,"pitch":-80.75,"roll":68.9375},"location":"Right Knee"},{"euler":{"heading":137.4375,"pitch":117.375,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:13.309"} +{"sensors":[{"euler":{"heading":121.5625,"pitch":142.25,"roll":50.0625},"location":"Left Knee"},{"euler":{"heading":117.0,"pitch":1.25,"roll":88.6875},"location":"Left Ankle"},{"euler":{"heading":91.4375,"pitch":167.375,"roll":70.8125},"location":"Right Ankle"},{"euler":{"heading":3.1875,"pitch":138.0625,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":185.125,"pitch":0.9375,"roll":85.6875},"location":"Right Knee"},{"euler":{"heading":140.375,"pitch":122.25,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:13.410"} +{"sensors":[{"euler":{"heading":126.8125,"pitch":137.3125,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":116.5,"pitch":-178.8125,"roll":85.1875},"location":"Left Ankle"},{"euler":{"heading":115.5,"pitch":122.9375,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":80.5,"pitch":143.875,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":81.6875,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":143.375,"pitch":126.0,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:13.511"} +{"sensors":[{"euler":{"heading":46.5,"pitch":131.0,"roll":41.5625},"location":"Left Knee"},{"euler":{"heading":124.0,"pitch":-125.6875,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":113.625,"pitch":133.1875,"roll":56.8125},"location":"Right Ankle"},{"euler":{"heading":76.125,"pitch":144.75,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":160.3125,"pitch":76.3125,"roll":67.125},"location":"Right Knee"},{"euler":{"heading":146.375,"pitch":126.8125,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:13.611"} +{"sensors":[{"euler":{"heading":62.1875,"pitch":125.625,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":135.125,"pitch":-105.1875,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":101.0,"pitch":137.6875,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":78.5,"pitch":143.1875,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":162.6875,"pitch":79.625,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":143.9375,"pitch":120.875,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:13.712"} +{"sensors":[{"euler":{"heading":70.5,"pitch":127.875,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":140.3125,"pitch":-107.5,"roll":57.375},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":138.0625,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":74.75,"pitch":142.375,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":163.375,"pitch":82.0625,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":131.375,"pitch":107.9375,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:13.813"} +{"sensors":[{"euler":{"heading":47.0,"pitch":140.9375,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":113.75,"pitch":-108.8125,"roll":80.9375},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":146.0,"roll":70.75},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":139.4375,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":168.125,"pitch":5.9375,"roll":83.9375},"location":"Right Knee"},{"euler":{"heading":126.3125,"pitch":106.0625,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:13.913"} +{"sensors":[{"euler":{"heading":94.3125,"pitch":163.625,"roll":51.3125},"location":"Left Knee"},{"euler":{"heading":84.75,"pitch":101.375,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":91.3125,"pitch":157.125,"roll":74.125},"location":"Right Ankle"},{"euler":{"heading":78.875,"pitch":137.9375,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":174.3125,"pitch":179.625,"roll":89.25},"location":"Right Knee"},{"euler":{"heading":126.5,"pitch":104.125,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:14.14"} +{"sensors":[{"euler":{"heading":77.9375,"pitch":-179.5625,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":68.375,"pitch":93.75,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-172.375,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":81.8125,"pitch":137.9375,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":182.0625,"pitch":-173.3125,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":132.3125,"pitch":108.4375,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:14.114"} +{"sensors":[{"euler":{"heading":94.6875,"pitch":170.1875,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":81.9375,"pitch":101.125,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-137.8125,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":84.5,"pitch":138.625,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":193.3125,"pitch":-94.6875,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":138.0,"pitch":109.625,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:14.215"} +{"sensors":[{"euler":{"heading":109.0,"pitch":158.1875,"roll":54.75},"location":"Left Knee"},{"euler":{"heading":97.125,"pitch":93.25,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":57.125,"pitch":-114.6875,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":92.125,"pitch":135.625,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":204.375,"pitch":-85.5625,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":140.6875,"pitch":111.0,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:14.315"} +{"sensors":[{"euler":{"heading":112.875,"pitch":150.3125,"roll":53.75},"location":"Left Knee"},{"euler":{"heading":110.875,"pitch":174.5625,"roll":83.25},"location":"Left Ankle"},{"euler":{"heading":58.8125,"pitch":-122.5625,"roll":55.5625},"location":"Right Ankle"},{"euler":{"heading":100.125,"pitch":133.75,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":204.0625,"pitch":-79.0,"roll":65.625},"location":"Right Knee"},{"euler":{"heading":142.125,"pitch":119.5625,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:14.416"} +{"sensors":[{"euler":{"heading":116.125,"pitch":145.0,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":114.875,"pitch":2.3125,"roll":87.3125},"location":"Left Ankle"},{"euler":{"heading":73.3125,"pitch":-134.0,"roll":69.0625},"location":"Right Ankle"},{"euler":{"heading":9.5625,"pitch":136.625,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":190.4375,"pitch":-55.4375,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":144.25,"pitch":123.25,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:14.517"} +{"sensors":[{"euler":{"heading":122.5625,"pitch":138.875,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":108.25,"pitch":175.6875,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":103.9375,"pitch":138.1875,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":359.25,"pitch":142.125,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":168.8125,"pitch":78.75,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":145.1875,"pitch":126.9375,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:14.621"} +{"sensors":[{"euler":{"heading":38.75,"pitch":133.9375,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":114.875,"pitch":-177.3125,"roll":83.5625},"location":"Left Ankle"},{"euler":{"heading":122.8125,"pitch":119.0625,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":77.4375,"pitch":143.125,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":156.625,"pitch":86.0625,"roll":60.625},"location":"Right Knee"},{"euler":{"heading":145.4375,"pitch":129.125,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:14.722"} +{"sensors":[{"euler":{"heading":51.25,"pitch":128.875,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":128.5625,"pitch":-103.875,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":116.75,"pitch":129.875,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":77.1875,"pitch":143.5,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":157.625,"pitch":82.3125,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":147.25,"pitch":130.875,"roll":67.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:14.823"} +{"sensors":[{"euler":{"heading":67.75,"pitch":127.0625,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":140.75,"pitch":-101.0625,"roll":59.1875},"location":"Left Ankle"},{"euler":{"heading":107.375,"pitch":132.3125,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":77.375,"pitch":141.625,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":86.6875,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":135.6875,"pitch":116.625,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:14.924"} +{"sensors":[{"euler":{"heading":67.8125,"pitch":130.5625,"roll":25.0625},"location":"Left Knee"},{"euler":{"heading":135.375,"pitch":-109.8125,"roll":62.3125},"location":"Left Ankle"},{"euler":{"heading":106.3125,"pitch":133.125,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":77.375,"pitch":139.875,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":99.25,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":129.3125,"pitch":108.3125,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:15.25"} +{"sensors":[{"euler":{"heading":38.0,"pitch":143.5625,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":112.875,"pitch":-176.875,"roll":85.0},"location":"Left Ankle"},{"euler":{"heading":102.0625,"pitch":139.8125,"roll":70.25},"location":"Right Ankle"},{"euler":{"heading":81.625,"pitch":136.9375,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":172.375,"pitch":173.875,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":128.375,"pitch":107.125,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:15.126"} +{"sensors":[{"euler":{"heading":94.125,"pitch":165.0625,"roll":52.0},"location":"Left Knee"},{"euler":{"heading":86.5,"pitch":102.625,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":95.1875,"pitch":151.6875,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":82.75,"pitch":136.5625,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":179.4375,"roll":87.875},"location":"Right Knee"},{"euler":{"heading":128.75,"pitch":105.8125,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:15.227"} +{"sensors":[{"euler":{"heading":82.625,"pitch":178.125,"roll":54.5},"location":"Left Knee"},{"euler":{"heading":73.1875,"pitch":95.3125,"roll":54.875},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":174.875,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":83.875,"pitch":136.1875,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":182.1875,"pitch":-174.6875,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":135.5625,"pitch":109.0625,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:15.327"} +{"sensors":[{"euler":{"heading":97.125,"pitch":167.9375,"roll":53.9375},"location":"Left Knee"},{"euler":{"heading":83.25,"pitch":98.1875,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":-147.5,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":86.3125,"pitch":137.25,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":195.625,"pitch":-99.75,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":139.8125,"pitch":110.8125,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:15.428"} +{"sensors":[{"euler":{"heading":106.5,"pitch":157.1875,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":92.9375,"pitch":94.625,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":64.75,"pitch":-122.9375,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":94.5625,"pitch":132.8125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":203.6875,"pitch":-87.0,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":139.5625,"pitch":114.0625,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:15.529"} +{"sensors":[{"euler":{"heading":112.9375,"pitch":149.8125,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":109.3125,"pitch":122.8125,"roll":82.9375},"location":"Left Ankle"},{"euler":{"heading":69.375,"pitch":-132.0625,"roll":63.5},"location":"Right Ankle"},{"euler":{"heading":100.25,"pitch":133.375,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":200.8125,"pitch":-77.3125,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":141.4375,"pitch":120.375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:15.629"} +{"sensors":[{"euler":{"heading":119.5625,"pitch":143.0625,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":111.0,"pitch":174.0625,"roll":83.6875},"location":"Left Ankle"},{"euler":{"heading":85.25,"pitch":-159.75,"roll":78.9375},"location":"Right Ankle"},{"euler":{"heading":6.9375,"pitch":137.625,"roll":43.9375},"location":"Right Hip"},{"euler":{"heading":181.0,"pitch":1.9375,"roll":85.4375},"location":"Right Knee"},{"euler":{"heading":144.0625,"pitch":123.9375,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:15.731"} +{"sensors":[{"euler":{"heading":126.5,"pitch":137.1875,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":111.5,"pitch":177.5625,"roll":83.5},"location":"Left Ankle"},{"euler":{"heading":111.625,"pitch":126.375,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":86.0625,"pitch":142.0,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":167.75,"pitch":84.9375,"roll":69.4375},"location":"Right Knee"},{"euler":{"heading":146.8125,"pitch":127.375,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:15.833"} +{"sensors":[{"euler":{"heading":44.6875,"pitch":132.5,"roll":42.0625},"location":"Left Knee"},{"euler":{"heading":119.0625,"pitch":-143.625,"roll":81.1875},"location":"Left Ankle"},{"euler":{"heading":123.75,"pitch":119.5,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":79.25,"pitch":143.0,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":87.8125,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":147.75,"pitch":131.3125,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:15.933"} +{"sensors":[{"euler":{"heading":58.4375,"pitch":127.1875,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":129.4375,"pitch":-99.625,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":110.75,"pitch":126.5625,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":76.75,"pitch":144.125,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":83.6875,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":146.875,"pitch":126.3125,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:16.34"} +{"sensors":[{"euler":{"heading":71.6875,"pitch":126.1875,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":138.875,"pitch":-109.8125,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":102.625,"pitch":132.25,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":142.5625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":86.4375,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":132.75,"pitch":113.8125,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:16.134"} +{"sensors":[{"euler":{"heading":57.0,"pitch":135.1875,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":121.6875,"pitch":-110.9375,"roll":75.8125},"location":"Left Ankle"},{"euler":{"heading":98.25,"pitch":138.5,"roll":70.375},"location":"Right Ankle"},{"euler":{"heading":77.0625,"pitch":139.5,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":166.0,"pitch":92.875,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":127.875,"pitch":107.75,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:16.236"} +{"sensors":[{"euler":{"heading":106.1875,"pitch":154.875,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":94.5,"pitch":108.5625,"roll":76.5},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":147.625,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":136.1875,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":170.25,"pitch":176.0625,"roll":85.9375},"location":"Right Knee"},{"euler":{"heading":126.9375,"pitch":105.0625,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:16.336"} +{"sensors":[{"euler":{"heading":79.25,"pitch":176.5625,"roll":54.625},"location":"Left Knee"},{"euler":{"heading":69.875,"pitch":94.8125,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":168.0,"roll":77.125},"location":"Right Ankle"},{"euler":{"heading":79.8125,"pitch":136.0,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":177.4375,"pitch":-176.9375,"roll":86.625},"location":"Right Knee"},{"euler":{"heading":131.1875,"pitch":108.75,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:16.437"} +{"sensors":[{"euler":{"heading":87.8125,"pitch":173.625,"roll":52.375},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":97.75,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":-148.25,"roll":75.4375},"location":"Right Ankle"},{"euler":{"heading":82.0625,"pitch":137.0,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-97.125,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":136.625,"pitch":111.0,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:16.538"} +{"sensors":[{"euler":{"heading":103.6875,"pitch":161.5625,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":93.0,"pitch":96.8125,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":-122.75,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":89.375,"pitch":135.875,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":207.0,"pitch":-90.5,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":135.75,"pitch":112.1875,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:16.640"} +{"sensors":[{"euler":{"heading":116.9375,"pitch":151.6875,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":94.0625,"roll":79.0},"location":"Left Ankle"},{"euler":{"heading":57.5,"pitch":-120.125,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":94.5,"pitch":132.75,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":206.1875,"pitch":-84.5,"roll":62.625},"location":"Right Knee"},{"euler":{"heading":141.5,"pitch":116.5625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:16.741"} +{"sensors":[{"euler":{"heading":124.3125,"pitch":143.8125,"roll":51.1875},"location":"Left Knee"},{"euler":{"heading":122.625,"pitch":-179.8125,"roll":88.4375},"location":"Left Ankle"},{"euler":{"heading":67.875,"pitch":-123.0,"roll":64.5625},"location":"Right Ankle"},{"euler":{"heading":94.8125,"pitch":137.0,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":193.875,"pitch":-65.0,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":146.0,"pitch":122.8125,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:16.847"} +{"sensors":[{"euler":{"heading":129.5,"pitch":138.0625,"roll":48.125},"location":"Left Knee"},{"euler":{"heading":122.25,"pitch":-177.6875,"roll":84.9375},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":156.125,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":356.1875,"pitch":144.4375,"roll":43.6875},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":74.5625,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":146.125,"pitch":126.0,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:16.948"} +{"sensors":[{"euler":{"heading":46.375,"pitch":132.5,"roll":43.625},"location":"Left Knee"},{"euler":{"heading":127.625,"pitch":-122.5,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":120.625,"pitch":130.1875,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":74.4375,"pitch":146.125,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":159.5625,"pitch":82.875,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":147.8125,"pitch":129.5625,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:17.48"} +{"sensors":[{"euler":{"heading":58.9375,"pitch":126.875,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":138.8125,"pitch":-105.6875,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":110.375,"pitch":137.75,"roll":59.5625},"location":"Right Ankle"},{"euler":{"heading":73.1875,"pitch":146.5625,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":159.375,"pitch":78.625,"roll":67.125},"location":"Right Knee"},{"euler":{"heading":149.25,"pitch":128.625,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:17.149"} +{"sensors":[{"euler":{"heading":71.625,"pitch":126.875,"roll":23.3125},"location":"Left Knee"},{"euler":{"heading":147.6875,"pitch":-100.6875,"roll":54.4375},"location":"Left Ankle"},{"euler":{"heading":102.9375,"pitch":141.875,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":73.125,"pitch":145.6875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":163.3125,"pitch":80.4375,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":132.6875,"pitch":114.9375,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:17.250"} +{"sensors":[{"euler":{"heading":70.125,"pitch":129.9375,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":142.0,"pitch":-107.375,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":99.3125,"pitch":148.8125,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":73.375,"pitch":142.0625,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":83.5,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":128.5,"pitch":104.75,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:17.350"} +{"sensors":[{"euler":{"heading":34.0,"pitch":144.6875,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":110.1875,"pitch":-130.0625,"roll":83.0625},"location":"Left Ankle"},{"euler":{"heading":92.9375,"pitch":155.8125,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":139.625,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":169.4375,"pitch":6.0,"roll":83.9375},"location":"Right Knee"},{"euler":{"heading":127.5625,"pitch":104.5,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:17.451"} +{"sensors":[{"euler":{"heading":89.25,"pitch":167.125,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":78.625,"pitch":100.5625,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":174.4375,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":139.5,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":173.5625,"pitch":0.5625,"roll":89.0625},"location":"Right Knee"},{"euler":{"heading":129.375,"pitch":106.0625,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:17.552"} +{"sensors":[{"euler":{"heading":83.875,"pitch":175.3125,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":71.8125,"pitch":98.6875,"roll":58.3125},"location":"Left Ankle"},{"euler":{"heading":76.75,"pitch":-156.6875,"roll":73.9375},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":139.5625,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":182.3125,"pitch":-91.9375,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":133.625,"pitch":109.875,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:17.654"} +{"sensors":[{"euler":{"heading":97.6875,"pitch":163.5,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":102.125,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":68.5,"pitch":-131.0,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":83.0625,"pitch":137.25,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":201.3125,"pitch":-91.75,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":131.5625,"pitch":109.125,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:17.754"} +{"sensors":[{"euler":{"heading":104.75,"pitch":155.5625,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":116.625,"roll":77.75},"location":"Left Ankle"},{"euler":{"heading":62.125,"pitch":-127.0625,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":93.375,"pitch":134.5,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":203.25,"pitch":-83.9375,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":134.875,"pitch":115.5,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:17.854"} +{"sensors":[{"euler":{"heading":110.375,"pitch":149.0,"roll":50.125},"location":"Left Knee"},{"euler":{"heading":106.6875,"pitch":176.8125,"roll":83.6875},"location":"Left Ankle"},{"euler":{"heading":77.625,"pitch":-149.625,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":94.1875,"pitch":138.5625,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":193.1875,"pitch":-64.5,"roll":94.4375},"location":"Right Knee"},{"euler":{"heading":137.1875,"pitch":119.375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:17.955"} +{"sensors":[{"euler":{"heading":115.25,"pitch":143.625,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":109.4375,"pitch":-179.25,"roll":84.1875},"location":"Left Ankle"},{"euler":{"heading":103.1875,"pitch":146.875,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":86.4375,"pitch":143.25,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":76.0625,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":138.375,"pitch":123.25,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:18.57"} +{"sensors":[{"euler":{"heading":35.0625,"pitch":137.9375,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":117.4375,"pitch":-132.0625,"roll":80.25},"location":"Left Ankle"},{"euler":{"heading":123.125,"pitch":126.75,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":77.5,"pitch":144.1875,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":158.8125,"pitch":86.4375,"roll":63.5},"location":"Right Knee"},{"euler":{"heading":142.125,"pitch":125.5,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:18.158"} +{"sensors":[{"euler":{"heading":48.0625,"pitch":131.875,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":129.1875,"pitch":-115.5,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":112.0,"pitch":131.875,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":76.1875,"pitch":144.5625,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":158.5,"pitch":81.25,"roll":66.8125},"location":"Right Knee"},{"euler":{"heading":145.0,"pitch":128.5,"roll":66.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:18.258"} +{"sensors":[{"euler":{"heading":68.0,"pitch":127.75,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":144.375,"pitch":-111.25,"roll":55.625},"location":"Left Ankle"},{"euler":{"heading":100.9375,"pitch":144.3125,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":75.8125,"pitch":143.0625,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":159.875,"pitch":78.875,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":135.3125,"pitch":116.0625,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:18.358"} +{"sensors":[{"euler":{"heading":73.25,"pitch":129.625,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":145.875,"pitch":-110.0625,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":97.0625,"pitch":147.1875,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":141.0625,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":162.875,"pitch":85.3125,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":126.9375,"pitch":103.1875,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:18.459"} +{"sensors":[{"euler":{"heading":41.0,"pitch":144.5625,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":113.125,"pitch":-116.125,"roll":82.0625},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":158.0,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":137.9375,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":167.9375,"pitch":174.5,"roll":84.4375},"location":"Right Knee"},{"euler":{"heading":125.375,"pitch":103.75,"roll":46.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:18.560"} +{"sensors":[{"euler":{"heading":86.75,"pitch":168.3125,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":79.9375,"pitch":101.0,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":85.5,"pitch":173.4375,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":80.9375,"pitch":137.4375,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":174.375,"pitch":-179.75,"roll":88.375},"location":"Right Knee"},{"euler":{"heading":126.9375,"pitch":104.4375,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:18.661"} +{"sensors":[{"euler":{"heading":77.1875,"pitch":-179.5,"roll":54.1875},"location":"Left Knee"},{"euler":{"heading":67.0,"pitch":94.1875,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":78.5,"pitch":-157.25,"roll":75.0},"location":"Right Ankle"},{"euler":{"heading":81.3125,"pitch":139.875,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":183.625,"pitch":-103.3125,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":132.375,"pitch":108.1875,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:18.762"} +{"sensors":[{"euler":{"heading":97.0,"pitch":167.8125,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":85.5,"pitch":99.5625,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":-133.75,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":86.25,"pitch":141.5,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":201.875,"pitch":-95.8125,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":136.0625,"pitch":108.8125,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:18.863"} +{"sensors":[{"euler":{"heading":107.0,"pitch":157.1875,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":97.0,"roll":73.375},"location":"Left Ankle"},{"euler":{"heading":62.0,"pitch":-120.625,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":93.8125,"pitch":135.0,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":205.8125,"pitch":-90.9375,"roll":61.8125},"location":"Right Knee"},{"euler":{"heading":137.8125,"pitch":112.375,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:18.963"} +{"sensors":[{"euler":{"heading":116.4375,"pitch":148.875,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":112.5625,"pitch":160.0,"roll":83.0},"location":"Left Ankle"},{"euler":{"heading":70.375,"pitch":-134.0625,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":98.5,"pitch":135.375,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":202.125,"pitch":-79.0,"roll":69.4375},"location":"Right Knee"},{"euler":{"heading":141.375,"pitch":118.125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:19.64"} +{"sensors":[{"euler":{"heading":123.25,"pitch":142.4375,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":120.1875,"pitch":-178.8125,"roll":86.1875},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":164.6875,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":4.875,"pitch":139.875,"roll":43.8125},"location":"Right Hip"},{"euler":{"heading":185.0625,"pitch":0.625,"roll":86.5},"location":"Right Knee"},{"euler":{"heading":142.8125,"pitch":122.3125,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:19.165"} +{"sensors":[{"euler":{"heading":130.125,"pitch":136.6875,"roll":46.0},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":-125.1875,"roll":82.0625},"location":"Left Ankle"},{"euler":{"heading":121.0625,"pitch":130.25,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":82.25,"pitch":144.25,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":87.6875,"roll":69.0},"location":"Right Knee"},{"euler":{"heading":144.1875,"pitch":125.4375,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:19.266"} +{"sensors":[{"euler":{"heading":49.375,"pitch":130.6875,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":133.75,"pitch":-111.125,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":119.0625,"pitch":130.8125,"roll":54.25},"location":"Right Ankle"},{"euler":{"heading":75.5,"pitch":146.5625,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":160.125,"pitch":84.875,"roll":65.125},"location":"Right Knee"},{"euler":{"heading":146.625,"pitch":128.6875,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:19.367"} +{"sensors":[{"euler":{"heading":64.25,"pitch":126.75,"roll":28.375},"location":"Left Knee"},{"euler":{"heading":142.1875,"pitch":-111.25,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":104.25,"pitch":138.75,"roll":63.875},"location":"Right Ankle"},{"euler":{"heading":75.0625,"pitch":145.625,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":161.0,"pitch":81.3125,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":138.625,"pitch":119.625,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:19.467"} +{"sensors":[{"euler":{"heading":71.375,"pitch":128.5625,"roll":24.125},"location":"Left Knee"},{"euler":{"heading":145.625,"pitch":-105.75,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":148.375,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":72.5625,"pitch":143.3125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":162.875,"pitch":86.1875,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":129.1875,"pitch":107.8125,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:19.568"} +{"sensors":[{"euler":{"heading":40.875,"pitch":144.0625,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":117.8125,"pitch":-113.75,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":91.9375,"pitch":152.6875,"roll":70.75},"location":"Right Ankle"},{"euler":{"heading":77.4375,"pitch":138.5625,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":167.0625,"pitch":89.4375,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":127.75,"pitch":107.5,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:19.669"} +{"sensors":[{"euler":{"heading":94.0,"pitch":166.125,"roll":51.125},"location":"Left Knee"},{"euler":{"heading":87.1875,"pitch":104.0625,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":163.375,"roll":74.25},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":136.75,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":178.1875,"roll":88.125},"location":"Right Knee"},{"euler":{"heading":127.4375,"pitch":107.3125,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:19.769"} +{"sensors":[{"euler":{"heading":79.9375,"pitch":178.625,"roll":53.625},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":96.5,"roll":56.375},"location":"Left Ankle"},{"euler":{"heading":80.5625,"pitch":-169.375,"roll":76.0},"location":"Right Ankle"},{"euler":{"heading":82.375,"pitch":136.6875,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":180.3125,"pitch":-174.875,"roll":84.6875},"location":"Right Knee"},{"euler":{"heading":132.3125,"pitch":110.3125,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:19.870"} +{"sensors":[{"euler":{"heading":95.4375,"pitch":167.875,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":83.0,"pitch":103.0625,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":-139.4375,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":84.8125,"pitch":138.5625,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":194.6875,"pitch":-96.125,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":136.5625,"pitch":111.4375,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:19.971"} +{"sensors":[{"euler":{"heading":106.9375,"pitch":156.9375,"roll":51.9375},"location":"Left Knee"},{"euler":{"heading":95.5,"pitch":102.25,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":62.5625,"pitch":-122.0625,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":94.3125,"pitch":134.0,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":204.1875,"pitch":-86.875,"roll":64.1875},"location":"Right Knee"},{"euler":{"heading":138.9375,"pitch":114.9375,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:20.73"} +{"sensors":[{"euler":{"heading":118.125,"pitch":148.5625,"roll":50.625},"location":"Left Knee"},{"euler":{"heading":115.625,"pitch":177.75,"roll":84.375},"location":"Left Ankle"},{"euler":{"heading":68.8125,"pitch":-134.4375,"roll":60.4375},"location":"Right Ankle"},{"euler":{"heading":96.9375,"pitch":134.5625,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":200.25,"pitch":-79.75,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":142.75,"pitch":121.0,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:20.173"} +{"sensors":[{"euler":{"heading":125.5625,"pitch":142.1875,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":122.75,"pitch":-177.75,"roll":86.3125},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":160.0625,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":5.125,"pitch":138.625,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":186.8125,"pitch":1.6875,"roll":87.25},"location":"Right Knee"},{"euler":{"heading":145.375,"pitch":125.25,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:20.274"} +{"sensors":[{"euler":{"heading":132.0,"pitch":136.5625,"roll":45.125},"location":"Left Knee"},{"euler":{"heading":124.8125,"pitch":-130.4375,"roll":81.625},"location":"Left Ankle"},{"euler":{"heading":118.1875,"pitch":128.25,"roll":56.875},"location":"Right Ankle"},{"euler":{"heading":83.75,"pitch":144.125,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":83.375,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":147.375,"pitch":128.4375,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:20.375"} +{"sensors":[{"euler":{"heading":49.9375,"pitch":131.375,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":131.6875,"pitch":-113.6875,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":118.9375,"pitch":131.0625,"roll":54.1875},"location":"Right Ankle"},{"euler":{"heading":75.6875,"pitch":146.0625,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":160.625,"pitch":82.25,"roll":65.1875},"location":"Right Knee"},{"euler":{"heading":148.9375,"pitch":132.25,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:20.476"} +{"sensors":[{"euler":{"heading":64.25,"pitch":127.0625,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":137.6875,"pitch":-108.3125,"roll":64.125},"location":"Left Ankle"},{"euler":{"heading":103.5,"pitch":142.0,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":75.5,"pitch":145.25,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":78.375,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":144.125,"pitch":124.75,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:20.577"} +{"sensors":[{"euler":{"heading":77.4375,"pitch":126.5,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":150.9375,"pitch":-109.875,"roll":51.9375},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":152.0,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":71.8125,"pitch":143.3125,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":161.5,"pitch":81.4375,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":130.6875,"pitch":108.5,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:20.678"} +{"sensors":[{"euler":{"heading":53.375,"pitch":137.25,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":124.5625,"pitch":-105.75,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":156.4375,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":74.5625,"pitch":139.8125,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":165.75,"pitch":85.8125,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":127.625,"pitch":106.5625,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:20.779"} +{"sensors":[{"euler":{"heading":99.6875,"pitch":159.6875,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":89.6875,"pitch":106.1875,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":86.875,"pitch":163.0,"roll":72.6875},"location":"Right Ankle"},{"euler":{"heading":77.25,"pitch":138.4375,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":171.25,"pitch":177.625,"roll":87.625},"location":"Right Knee"},{"euler":{"heading":127.0625,"pitch":104.5,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:20.880"} +{"sensors":[{"euler":{"heading":78.25,"pitch":178.9375,"roll":54.1875},"location":"Left Knee"},{"euler":{"heading":68.875,"pitch":93.75,"roll":55.8125},"location":"Left Ankle"},{"euler":{"heading":81.4375,"pitch":-174.875,"roll":74.75},"location":"Right Ankle"},{"euler":{"heading":78.5,"pitch":138.5625,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":178.25,"pitch":-175.0,"roll":84.8125},"location":"Right Knee"},{"euler":{"heading":132.375,"pitch":109.1875,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:20.980"} +{"sensors":[{"euler":{"heading":91.5,"pitch":169.625,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":80.0,"pitch":101.8125,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-139.6875,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":82.625,"pitch":138.9375,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":190.5625,"pitch":-96.125,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":133.4375,"pitch":110.125,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:21.81"} +{"sensors":[{"euler":{"heading":104.3125,"pitch":158.9375,"roll":52.125},"location":"Left Knee"},{"euler":{"heading":92.8125,"pitch":98.9375,"roll":71.75},"location":"Left Ankle"},{"euler":{"heading":64.6875,"pitch":-124.75,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":92.8125,"pitch":133.75,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":206.625,"pitch":-90.25,"roll":63.375},"location":"Right Knee"},{"euler":{"heading":135.4375,"pitch":112.375,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:21.182"} +{"sensors":[{"euler":{"heading":112.6875,"pitch":151.375,"roll":50.75},"location":"Left Knee"},{"euler":{"heading":110.0625,"pitch":176.3125,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":70.1875,"pitch":-134.875,"roll":61.0},"location":"Right Ankle"},{"euler":{"heading":96.25,"pitch":135.6875,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":202.125,"pitch":-81.8125,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":139.0,"pitch":118.1875,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:21.283"} +{"sensors":[{"euler":{"heading":117.75,"pitch":146.0625,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":113.5,"pitch":179.5625,"roll":85.8125},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":174.4375,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":92.75,"pitch":139.4375,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":186.875,"pitch":-1.5,"roll":86.4375},"location":"Right Knee"},{"euler":{"heading":142.0,"pitch":123.375,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:21.383"} +{"sensors":[{"euler":{"heading":123.1875,"pitch":141.0625,"roll":46.125},"location":"Left Knee"},{"euler":{"heading":115.3125,"pitch":-176.9375,"roll":83.25},"location":"Left Ankle"},{"euler":{"heading":115.125,"pitch":129.5625,"roll":57.375},"location":"Right Ankle"},{"euler":{"heading":82.5,"pitch":144.375,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":168.3125,"pitch":80.75,"roll":71.25},"location":"Right Knee"},{"euler":{"heading":143.3125,"pitch":127.4375,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:21.484"} +{"sensors":[{"euler":{"heading":42.0,"pitch":135.3125,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":122.6875,"pitch":-126.0,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":123.0625,"pitch":130.4375,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":74.5,"pitch":147.0,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":162.5,"pitch":84.9375,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":146.1875,"pitch":132.125,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:21.585"} +{"sensors":[{"euler":{"heading":57.8125,"pitch":128.875,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":130.1875,"pitch":-113.6875,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":140.5625,"roll":62.4375},"location":"Right Ankle"},{"euler":{"heading":74.6875,"pitch":146.25,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":78.8125,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":146.5625,"pitch":113.375,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:21.686"} +{"sensors":[{"euler":{"heading":74.8125,"pitch":126.6875,"roll":23.375},"location":"Left Knee"},{"euler":{"heading":146.875,"pitch":-112.4375,"roll":53.75},"location":"Left Ankle"},{"euler":{"heading":99.9375,"pitch":146.125,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":73.0625,"pitch":145.1875,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":163.9375,"pitch":82.0625,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":133.125,"pitch":112.25,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:21.788"} +{"sensors":[{"euler":{"heading":60.25,"pitch":135.3125,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":-104.0625,"roll":69.375},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":152.5,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":141.6875,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":166.875,"pitch":90.5,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":130.0625,"pitch":107.1875,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:21.889"} +{"sensors":[{"euler":{"heading":108.1875,"pitch":153.625,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":98.6875,"pitch":118.0625,"roll":79.8125},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":163.1875,"roll":71.25},"location":"Right Ankle"},{"euler":{"heading":76.375,"pitch":140.0625,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":169.875,"pitch":176.875,"roll":86.875},"location":"Right Knee"},{"euler":{"heading":128.4375,"pitch":105.125,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:21.990"} +{"sensors":[{"euler":{"heading":84.0,"pitch":173.9375,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":74.75,"pitch":96.9375,"roll":59.625},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":177.125,"roll":75.5},"location":"Right Ankle"},{"euler":{"heading":77.5625,"pitch":139.9375,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":-177.0,"roll":86.75},"location":"Right Knee"},{"euler":{"heading":132.1875,"pitch":108.375,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:22.91"} +{"sensors":[{"euler":{"heading":91.4375,"pitch":172.1875,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":77.625,"pitch":98.25,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-151.9375,"roll":73.4375},"location":"Right Ankle"},{"euler":{"heading":80.6875,"pitch":140.3125,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":188.6875,"pitch":-101.4375,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":137.6875,"pitch":112.5,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:22.192"} +{"sensors":[{"euler":{"heading":99.3125,"pitch":162.8125,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":86.9375,"pitch":97.0625,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":68.8125,"pitch":-129.0,"roll":61.3125},"location":"Right Ankle"},{"euler":{"heading":86.25,"pitch":137.75,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":204.75,"pitch":-94.9375,"roll":65.625},"location":"Right Knee"},{"euler":{"heading":134.5,"pitch":112.4375,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:22.292"} +{"sensors":[{"euler":{"heading":105.4375,"pitch":155.5,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":118.75,"roll":75.875},"location":"Left Ankle"},{"euler":{"heading":65.1875,"pitch":-126.375,"roll":58.625},"location":"Right Ankle"},{"euler":{"heading":93.0,"pitch":135.9375,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":205.0,"pitch":-87.25,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":137.8125,"pitch":119.125,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:22.393"} +{"sensors":[{"euler":{"heading":111.1875,"pitch":149.625,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":107.5625,"pitch":176.75,"roll":83.25},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":-166.5625,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":94.4375,"pitch":137.9375,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":192.125,"pitch":-73.875,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":140.25,"pitch":124.875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:22.493"} +{"sensors":[{"euler":{"heading":119.1875,"pitch":144.0,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":110.5625,"pitch":179.0625,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":107.125,"pitch":141.125,"roll":63.0625},"location":"Right Ankle"},{"euler":{"heading":86.875,"pitch":141.6875,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":78.3125,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":142.5,"pitch":128.75,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:22.594"} +{"sensors":[{"euler":{"heading":37.625,"pitch":137.9375,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":117.9375,"pitch":-141.9375,"roll":80.25},"location":"Left Ankle"},{"euler":{"heading":126.125,"pitch":119.25,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":76.9375,"pitch":144.875,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":88.1875,"roll":64.25},"location":"Right Knee"},{"euler":{"heading":146.125,"pitch":133.6875,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:22.696"} +{"sensors":[{"euler":{"heading":49.0625,"pitch":131.25,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":-122.6875,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":115.8125,"pitch":126.4375,"roll":57.375},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":144.8125,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":161.6875,"pitch":83.6875,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":150.875,"pitch":136.5625,"roll":66.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:22.797"} +{"sensors":[{"euler":{"heading":72.9375,"pitch":125.875,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":147.125,"pitch":-112.0,"roll":55.875},"location":"Left Ankle"},{"euler":{"heading":107.9375,"pitch":141.1875,"roll":63.25},"location":"Right Ankle"},{"euler":{"heading":77.375,"pitch":144.0625,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":166.0,"pitch":88.9375,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":137.25,"pitch":117.5,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:22.898"} +{"sensors":[{"euler":{"heading":67.75,"pitch":132.0,"roll":26.25},"location":"Left Knee"},{"euler":{"heading":140.25,"pitch":-116.0625,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":108.625,"pitch":139.875,"roll":64.3125},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":143.375,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":172.875,"pitch":107.5625,"roll":81.0},"location":"Right Knee"},{"euler":{"heading":133.1875,"pitch":108.9375,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:22.999"} +{"sensors":[{"euler":{"heading":32.8125,"pitch":145.375,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":111.5625,"pitch":-178.4375,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":105.25,"pitch":142.5625,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":80.4375,"pitch":141.875,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":180.0,"pitch":177.0,"roll":85.0},"location":"Right Knee"},{"euler":{"heading":130.0625,"pitch":106.875,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:23.101"} +{"sensors":[{"euler":{"heading":91.25,"pitch":165.1875,"roll":52.5625},"location":"Left Knee"},{"euler":{"heading":83.5625,"pitch":101.8125,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":157.9375,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":141.4375,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":182.25,"pitch":-177.9375,"roll":86.125},"location":"Right Knee"},{"euler":{"heading":130.25,"pitch":106.0,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:23.202"} +{"sensors":[{"euler":{"heading":76.5625,"pitch":-178.625,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":69.375,"pitch":91.5625,"roll":54.625},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":178.3125,"roll":73.5},"location":"Right Ankle"},{"euler":{"heading":79.5625,"pitch":144.625,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":189.1875,"pitch":-107.3125,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":132.25,"pitch":107.5,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:23.302"} +{"sensors":[{"euler":{"heading":88.5,"pitch":172.3125,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":78.8125,"pitch":96.125,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-147.125,"roll":70.5},"location":"Right Ankle"},{"euler":{"heading":81.8125,"pitch":143.875,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":202.0625,"pitch":-99.25,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":134.3125,"pitch":109.3125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:23.404"} +{"sensors":[{"euler":{"heading":95.4375,"pitch":161.5625,"roll":53.4375},"location":"Left Knee"},{"euler":{"heading":87.75,"pitch":94.25,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":-125.1875,"roll":57.375},"location":"Right Ankle"},{"euler":{"heading":87.125,"pitch":137.875,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":206.5,"pitch":-93.0,"roll":61.375},"location":"Right Knee"},{"euler":{"heading":133.125,"pitch":111.25,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:23.504"} +{"sensors":[{"euler":{"heading":99.8125,"pitch":155.25,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":127.5625,"roll":80.75},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":-133.125,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":91.375,"pitch":136.6875,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":199.5625,"pitch":-83.3125,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":134.75,"pitch":116.875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:23.605"} +{"sensors":[{"euler":{"heading":106.5,"pitch":149.375,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":108.3125,"pitch":178.375,"roll":85.9375},"location":"Left Ankle"},{"euler":{"heading":91.375,"pitch":179.0,"roll":68.6875},"location":"Right Ankle"},{"euler":{"heading":90.75,"pitch":139.0,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":183.4375,"pitch":2.125,"roll":87.3125},"location":"Right Knee"},{"euler":{"heading":137.125,"pitch":120.3125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:23.706"} +{"sensors":[{"euler":{"heading":117.625,"pitch":142.9375,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":112.6875,"pitch":-177.0625,"roll":83.625},"location":"Left Ankle"},{"euler":{"heading":114.4375,"pitch":132.0625,"roll":57.8125},"location":"Right Ankle"},{"euler":{"heading":83.25,"pitch":143.4375,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":163.8125,"pitch":88.125,"roll":68.6875},"location":"Right Knee"},{"euler":{"heading":141.3125,"pitch":123.8125,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:23.807"} +{"sensors":[{"euler":{"heading":38.125,"pitch":136.0625,"roll":42.6875},"location":"Left Knee"},{"euler":{"heading":119.875,"pitch":-124.6875,"roll":79.375},"location":"Left Ankle"},{"euler":{"heading":123.5625,"pitch":127.0,"roll":52.4375},"location":"Right Ankle"},{"euler":{"heading":74.625,"pitch":146.9375,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":159.5,"pitch":88.0625,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":146.8125,"pitch":129.25,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:23.908"} +{"sensors":[{"euler":{"heading":53.625,"pitch":129.75,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":129.5625,"pitch":-117.9375,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":112.375,"pitch":137.0625,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":75.875,"pitch":146.3125,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":162.375,"pitch":87.0625,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":147.5,"pitch":127.875,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:24.8"} +{"sensors":[{"euler":{"heading":71.8125,"pitch":127.0625,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":146.1875,"pitch":-113.1875,"roll":55.625},"location":"Left Ankle"},{"euler":{"heading":108.25,"pitch":141.8125,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":75.0625,"pitch":145.4375,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":166.875,"pitch":93.125,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":135.4375,"pitch":113.3125,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:24.109"} +{"sensors":[{"euler":{"heading":61.0625,"pitch":134.9375,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":131.3125,"pitch":-111.0625,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":106.5,"pitch":139.5625,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":75.9375,"pitch":142.8125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":171.625,"pitch":106.4375,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":132.1875,"pitch":107.8125,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:24.209"} +{"sensors":[{"euler":{"heading":109.5,"pitch":152.6875,"roll":45.5625},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":122.1875,"roll":81.0625},"location":"Left Ankle"},{"euler":{"heading":100.3125,"pitch":148.1875,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":80.1875,"pitch":140.3125,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":177.5625,"roll":85.9375},"location":"Right Knee"},{"euler":{"heading":130.0625,"pitch":106.5625,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:24.310"} +{"sensors":[{"euler":{"heading":84.0625,"pitch":174.25,"roll":54.25},"location":"Left Knee"},{"euler":{"heading":77.3125,"pitch":97.6875,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":91.8125,"pitch":167.875,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":81.9375,"pitch":140.375,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":182.3125,"pitch":-176.0,"roll":85.1875},"location":"Right Knee"},{"euler":{"heading":131.125,"pitch":106.3125,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:24.410"} +{"sensors":[{"euler":{"heading":88.3125,"pitch":175.75,"roll":52.5625},"location":"Left Knee"},{"euler":{"heading":78.375,"pitch":98.5,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":-159.125,"roll":73.375},"location":"Right Ankle"},{"euler":{"heading":83.125,"pitch":141.0,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":191.4375,"pitch":-103.375,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":136.0,"pitch":109.4375,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:24.511"} +{"sensors":[{"euler":{"heading":102.75,"pitch":163.4375,"roll":53.125},"location":"Left Knee"},{"euler":{"heading":91.625,"pitch":97.625,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":69.0625,"pitch":-127.3125,"roll":60.1875},"location":"Right Ankle"},{"euler":{"heading":90.375,"pitch":138.375,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":207.6875,"pitch":-94.125,"roll":64.1875},"location":"Right Knee"},{"euler":{"heading":137.0,"pitch":111.0625,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:24.613"} +{"sensors":[{"euler":{"heading":112.4375,"pitch":154.375,"roll":53.25},"location":"Left Knee"},{"euler":{"heading":103.0625,"pitch":93.25,"roll":75.8125},"location":"Left Ankle"},{"euler":{"heading":62.125,"pitch":-125.25,"roll":54.6875},"location":"Right Ankle"},{"euler":{"heading":95.8125,"pitch":134.375,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":208.0,"pitch":-86.4375,"roll":62.3125},"location":"Right Knee"},{"euler":{"heading":140.6875,"pitch":115.8125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:24.714"} +{"sensors":[{"euler":{"heading":119.1875,"pitch":146.5625,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":118.5625,"pitch":178.3125,"roll":86.3125},"location":"Left Ankle"},{"euler":{"heading":76.125,"pitch":-146.75,"roll":64.5625},"location":"Right Ankle"},{"euler":{"heading":95.625,"pitch":138.0,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":196.4375,"pitch":-71.125,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":143.5,"pitch":119.9375,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:24.815"} +{"sensors":[{"euler":{"heading":125.5625,"pitch":140.375,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":120.8125,"pitch":-178.5,"roll":85.5625},"location":"Left Ankle"},{"euler":{"heading":103.6875,"pitch":152.4375,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":358.4375,"pitch":143.375,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":178.375,"pitch":67.75,"roll":65.5625},"location":"Right Knee"},{"euler":{"heading":145.125,"pitch":124.0625,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:24.915"} +{"sensors":[{"euler":{"heading":43.875,"pitch":134.3125,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":124.5625,"pitch":-130.1875,"roll":81.375},"location":"Left Ankle"},{"euler":{"heading":124.0625,"pitch":125.0625,"roll":51.375},"location":"Right Ankle"},{"euler":{"heading":78.75,"pitch":145.3125,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":162.6875,"pitch":87.9375,"roll":65.5625},"location":"Right Knee"},{"euler":{"heading":148.0,"pitch":128.1875,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:25.16"} +{"sensors":[{"euler":{"heading":51.9375,"pitch":129.6875,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":133.3125,"pitch":-114.125,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":119.625,"pitch":132.25,"roll":54.5},"location":"Right Ankle"},{"euler":{"heading":72.0625,"pitch":147.3125,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":160.5,"pitch":86.1875,"roll":66.6875},"location":"Right Knee"},{"euler":{"heading":150.0,"pitch":133.9375,"roll":68.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:25.116"} +{"sensors":[{"euler":{"heading":67.3125,"pitch":127.4375,"roll":26.375},"location":"Left Knee"},{"euler":{"heading":142.1875,"pitch":-111.0,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":105.875,"pitch":137.25,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":144.5,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":161.8125,"pitch":87.25,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":144.625,"pitch":124.5,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:25.216"} +{"sensors":[{"euler":{"heading":78.3125,"pitch":126.625,"roll":22.3125},"location":"Left Knee"},{"euler":{"heading":153.375,"pitch":-108.375,"roll":52.625},"location":"Left Ankle"},{"euler":{"heading":103.3125,"pitch":140.9375,"roll":64.5625},"location":"Right Ankle"},{"euler":{"heading":72.8125,"pitch":143.9375,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":165.125,"pitch":93.9375,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":136.0625,"pitch":109.3125,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:25.317"} +{"sensors":[{"euler":{"heading":52.0,"pitch":139.125,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":-106.25,"roll":74.875},"location":"Left Ankle"},{"euler":{"heading":96.3125,"pitch":147.375,"roll":69.125},"location":"Right Ankle"},{"euler":{"heading":76.375,"pitch":140.125,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":169.1875,"pitch":173.3125,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":131.75,"pitch":106.375,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:25.418"} +{"sensors":[{"euler":{"heading":99.625,"pitch":161.3125,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":94.5625,"pitch":108.5625,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":87.625,"pitch":161.8125,"roll":72.6875},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":137.0,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":172.1875,"pitch":178.375,"roll":88.375},"location":"Right Knee"},{"euler":{"heading":131.0,"pitch":105.4375,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:25.519"} +{"sensors":[{"euler":{"heading":81.4375,"pitch":178.9375,"roll":53.8125},"location":"Left Knee"},{"euler":{"heading":74.5,"pitch":96.875,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":80.375,"pitch":-175.25,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":79.25,"pitch":137.25,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":178.625,"pitch":-174.625,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":135.5625,"pitch":109.6875,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:25.620"} +{"sensors":[{"euler":{"heading":93.0625,"pitch":170.0,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":84.375,"pitch":101.625,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":73.125,"pitch":-141.25,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":81.75,"pitch":137.0625,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":192.6875,"pitch":-96.3125,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":135.8125,"pitch":110.6875,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:25.721"} +{"sensors":[{"euler":{"heading":102.375,"pitch":159.9375,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":93.1875,"pitch":99.1875,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":-127.875,"roll":56.6875},"location":"Right Ankle"},{"euler":{"heading":90.4375,"pitch":133.625,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":206.375,"pitch":-89.3125,"roll":63.1875},"location":"Right Knee"},{"euler":{"heading":137.5625,"pitch":113.75,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:25.822"} +{"sensors":[{"euler":{"heading":110.25,"pitch":152.4375,"roll":51.6875},"location":"Left Knee"},{"euler":{"heading":110.1875,"pitch":146.375,"roll":82.375},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":-133.4375,"roll":59.9375},"location":"Right Ankle"},{"euler":{"heading":94.3125,"pitch":136.125,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":201.4375,"pitch":-80.625,"roll":69.25},"location":"Right Knee"},{"euler":{"heading":139.5,"pitch":118.875,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:25.923"} +{"sensors":[{"euler":{"heading":115.6875,"pitch":146.75,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":114.0,"pitch":179.125,"roll":84.5625},"location":"Left Ankle"},{"euler":{"heading":89.5,"pitch":-177.1875,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":1.8125,"pitch":140.9375,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":187.0,"pitch":-0.3125,"roll":85.125},"location":"Right Knee"},{"euler":{"heading":141.9375,"pitch":122.875,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:26.23"} +{"sensors":[{"euler":{"heading":122.75,"pitch":140.875,"roll":47.125},"location":"Left Knee"},{"euler":{"heading":116.25,"pitch":-157.5625,"roll":83.0625},"location":"Left Ankle"},{"euler":{"heading":112.625,"pitch":137.0,"roll":58.3125},"location":"Right Ankle"},{"euler":{"heading":83.1875,"pitch":144.875,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":169.75,"pitch":79.25,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":145.6875,"pitch":128.875,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:26.124"} +{"sensors":[{"euler":{"heading":43.75,"pitch":134.1875,"roll":42.625},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":-122.4375,"roll":78.0},"location":"Left Ankle"},{"euler":{"heading":123.875,"pitch":129.75,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":73.6875,"pitch":147.0625,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":160.4375,"pitch":84.5,"roll":63.5},"location":"Right Knee"},{"euler":{"heading":150.125,"pitch":134.625,"roll":68.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:26.224"} +{"sensors":[{"euler":{"heading":56.5,"pitch":128.0,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":136.625,"pitch":-110.0625,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":111.375,"pitch":137.9375,"roll":58.5},"location":"Right Ankle"},{"euler":{"heading":73.625,"pitch":147.125,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":161.0625,"pitch":79.8125,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":151.25,"pitch":134.8125,"roll":68.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:26.325"} +{"sensors":[{"euler":{"heading":73.4375,"pitch":126.625,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":154.5625,"pitch":-103.5,"roll":52.625},"location":"Left Ankle"},{"euler":{"heading":105.8125,"pitch":140.6875,"roll":62.0625},"location":"Right Ankle"},{"euler":{"heading":71.125,"pitch":146.1875,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":162.6875,"pitch":84.0625,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":134.8125,"pitch":117.25,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:26.426"} +{"sensors":[{"euler":{"heading":66.75,"pitch":132.375,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":135.5625,"pitch":-102.0625,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":100.0,"pitch":147.25,"roll":65.8125},"location":"Right Ankle"},{"euler":{"heading":73.25,"pitch":141.6875,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":86.625,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":129.75,"pitch":108.0,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:26.527"} +{"sensors":[{"euler":{"heading":25.375,"pitch":150.3125,"roll":42.3125},"location":"Left Knee"},{"euler":{"heading":102.0,"pitch":175.0625,"roll":84.625},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":157.75,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":77.4375,"pitch":137.6875,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":175.25,"roll":85.25},"location":"Right Knee"},{"euler":{"heading":129.1875,"pitch":107.0,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:26.627"} +{"sensors":[{"euler":{"heading":83.3125,"pitch":173.1875,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":74.5,"pitch":92.5,"roll":59.5},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":171.0,"roll":73.9375},"location":"Right Ankle"},{"euler":{"heading":77.25,"pitch":137.6875,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":175.125,"pitch":-178.3125,"roll":88.1875},"location":"Right Knee"},{"euler":{"heading":131.375,"pitch":108.875,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:26.729"} +{"sensors":[{"euler":{"heading":80.1875,"pitch":178.375,"roll":53.375},"location":"Left Knee"},{"euler":{"heading":72.0,"pitch":92.0,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":78.875,"pitch":-159.8125,"roll":74.3125},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":139.5,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":183.9375,"pitch":-97.5625,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":135.25,"pitch":111.125,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:26.830"} +{"sensors":[{"euler":{"heading":97.125,"pitch":165.6875,"roll":52.9375},"location":"Left Knee"},{"euler":{"heading":87.1875,"pitch":91.6875,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":74.125,"pitch":-137.625,"roll":64.5625},"location":"Right Ankle"},{"euler":{"heading":84.0625,"pitch":139.3125,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":205.0625,"pitch":-92.0625,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":136.375,"pitch":112.3125,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:26.932"} +{"sensors":[{"euler":{"heading":109.625,"pitch":155.875,"roll":53.0},"location":"Left Knee"},{"euler":{"heading":100.8125,"pitch":86.25,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":63.875,"pitch":-129.3125,"roll":54.8125},"location":"Right Ankle"},{"euler":{"heading":92.0,"pitch":135.0,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":206.875,"pitch":-84.375,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":140.8125,"pitch":115.9375,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:27.33"} +{"sensors":[{"euler":{"heading":119.375,"pitch":148.0625,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":118.125,"pitch":176.875,"roll":86.5625},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-143.5,"roll":61.625},"location":"Right Ankle"},{"euler":{"heading":93.9375,"pitch":137.1875,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":196.1875,"pitch":-72.5,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":144.0625,"pitch":121.9375,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:27.133"} +{"sensors":[{"euler":{"heading":126.125,"pitch":141.875,"roll":49.375},"location":"Left Knee"},{"euler":{"heading":118.375,"pitch":179.1875,"roll":87.0},"location":"Left Ankle"},{"euler":{"heading":100.75,"pitch":163.625,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":87.6875,"pitch":143.125,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":180.0625,"pitch":61.0,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":145.75,"pitch":125.6875,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:27.234"} +{"sensors":[{"euler":{"heading":131.625,"pitch":136.75,"roll":45.375},"location":"Left Knee"},{"euler":{"heading":121.875,"pitch":-175.75,"roll":83.9375},"location":"Left Ankle"},{"euler":{"heading":120.75,"pitch":130.0625,"roll":53.25},"location":"Right Ankle"},{"euler":{"heading":77.125,"pitch":146.5625,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":164.9375,"pitch":83.3125,"roll":67.1875},"location":"Right Knee"},{"euler":{"heading":146.9375,"pitch":130.3125,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:27.334"} +{"sensors":[{"euler":{"heading":50.375,"pitch":131.5625,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":129.625,"pitch":-112.875,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":111.5,"pitch":137.75,"roll":55.9375},"location":"Right Ankle"},{"euler":{"heading":70.6875,"pitch":146.5625,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":158.6875,"pitch":79.625,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":149.125,"pitch":136.3125,"roll":67.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:27.435"} +{"sensors":[{"euler":{"heading":63.75,"pitch":128.8125,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":137.75,"pitch":-103.75,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":99.125,"pitch":146.4375,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":70.75,"pitch":145.875,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":75.8125,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":138.625,"pitch":124.0625,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:27.536"} +{"sensors":[{"euler":{"heading":69.0625,"pitch":129.875,"roll":23.625},"location":"Left Knee"},{"euler":{"heading":138.125,"pitch":-109.875,"roll":59.5},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":151.5,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":65.5,"pitch":146.4375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":85.1875,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":127.375,"pitch":107.75,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:27.636"} +{"sensors":[{"euler":{"heading":40.875,"pitch":141.0,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":111.9375,"pitch":-173.5,"roll":83.5},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":157.375,"roll":70.125},"location":"Right Ankle"},{"euler":{"heading":67.6875,"pitch":144.375,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":166.5625,"pitch":173.875,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":122.625,"pitch":105.9375,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:27.737"} +{"sensors":[{"euler":{"heading":88.8125,"pitch":162.4375,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":80.4375,"pitch":93.3125,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":168.4375,"roll":73.25},"location":"Right Ankle"},{"euler":{"heading":70.0,"pitch":143.8125,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":173.625,"pitch":179.4375,"roll":88.625},"location":"Right Knee"},{"euler":{"heading":123.125,"pitch":105.125,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:27.837"} +{"sensors":[{"euler":{"heading":77.5,"pitch":178.75,"roll":54.5625},"location":"Left Knee"},{"euler":{"heading":67.3125,"pitch":88.375,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-165.6875,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":73.3125,"pitch":143.0625,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":181.875,"pitch":-173.6875,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":131.875,"pitch":109.5625,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:27.938"} +{"sensors":[{"euler":{"heading":94.875,"pitch":167.625,"roll":53.1875},"location":"Left Knee"},{"euler":{"heading":84.25,"pitch":94.0625,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":75.5,"pitch":-136.75,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":141.125,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":199.6875,"pitch":-98.1875,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":135.375,"pitch":111.1875,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:28.39"} +{"sensors":[{"euler":{"heading":103.75,"pitch":157.3125,"roll":52.375},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":89.25,"roll":72.5625},"location":"Left Ankle"},{"euler":{"heading":62.875,"pitch":-125.25,"roll":55.625},"location":"Right Ankle"},{"euler":{"heading":88.0,"pitch":135.0625,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":204.75,"pitch":-91.9375,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":135.5,"pitch":114.1875,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:28.139"} +{"sensors":[{"euler":{"heading":110.0,"pitch":150.8125,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":112.0,"pitch":176.8125,"roll":86.0},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-137.8125,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":91.3125,"pitch":136.25,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":194.8125,"pitch":-76.75,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":136.125,"pitch":120.9375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:28.240"} +{"sensors":[{"euler":{"heading":119.9375,"pitch":144.5625,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":115.3125,"pitch":177.9375,"roll":86.6875},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":168.0625,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":88.0,"pitch":141.0,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":178.6875,"pitch":38.6875,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":140.3125,"pitch":124.8125,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:28.342"} +{"sensors":[{"euler":{"heading":129.4375,"pitch":137.3125,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":121.0,"pitch":-176.6875,"roll":85.25},"location":"Left Ankle"},{"euler":{"heading":117.125,"pitch":131.125,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":145.8125,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":163.0,"pitch":79.625,"roll":67.0625},"location":"Right Knee"},{"euler":{"heading":144.8125,"pitch":128.3125,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:28.443"} +{"sensors":[{"euler":{"heading":50.625,"pitch":131.4375,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":130.6875,"pitch":-110.125,"roll":76.5},"location":"Left Ankle"},{"euler":{"heading":114.875,"pitch":136.875,"roll":54.6875},"location":"Right Ankle"},{"euler":{"heading":73.9375,"pitch":146.8125,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":159.125,"pitch":80.3125,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":148.125,"pitch":133.375,"roll":67.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:28.545"} +{"sensors":[{"euler":{"heading":64.0,"pitch":128.6875,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":139.25,"pitch":-102.875,"roll":62.625},"location":"Left Ankle"},{"euler":{"heading":104.375,"pitch":140.3125,"roll":62.9375},"location":"Right Ankle"},{"euler":{"heading":75.4375,"pitch":145.125,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":161.0,"pitch":79.9375,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":141.875,"pitch":126.5625,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:28.646"} +{"sensors":[{"euler":{"heading":81.125,"pitch":127.0,"roll":21.1875},"location":"Left Knee"},{"euler":{"heading":153.5,"pitch":-100.625,"roll":52.875},"location":"Left Ankle"},{"euler":{"heading":103.375,"pitch":144.5625,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":72.0,"pitch":144.4375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":163.125,"pitch":90.375,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":131.875,"pitch":110.6875,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:28.747"} +{"sensors":[{"euler":{"heading":62.1875,"pitch":136.6875,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":128.25,"pitch":-91.3125,"roll":75.625},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":147.0,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":75.9375,"pitch":141.3125,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":166.625,"pitch":94.125,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":127.9375,"pitch":107.9375,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:28.848"} +{"sensors":[{"euler":{"heading":103.75,"pitch":157.8125,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":91.8125,"pitch":99.8125,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":156.0625,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":78.0,"pitch":139.625,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":171.0,"pitch":177.1875,"roll":86.3125},"location":"Right Knee"},{"euler":{"heading":127.25,"pitch":105.9375,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:28.949"} +{"sensors":[{"euler":{"heading":81.4375,"pitch":178.875,"roll":53.6875},"location":"Left Knee"},{"euler":{"heading":70.25,"pitch":90.75,"roll":53.0},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":175.9375,"roll":73.875},"location":"Right Ankle"},{"euler":{"heading":80.0,"pitch":138.8125,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":179.25,"pitch":-175.5,"roll":85.625},"location":"Right Knee"},{"euler":{"heading":134.0625,"pitch":110.0625,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:29.50"} +{"sensors":[{"euler":{"heading":92.4375,"pitch":171.25,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":80.375,"pitch":94.9375,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":-151.625,"roll":72.0},"location":"Right Ankle"},{"euler":{"heading":83.375,"pitch":139.25,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":191.0625,"pitch":-104.0,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":138.625,"pitch":112.0,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:29.152"} +{"sensors":[{"euler":{"heading":105.6875,"pitch":161.0625,"roll":52.5625},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":90.5,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":66.625,"pitch":-126.3125,"roll":58.75},"location":"Right Ankle"},{"euler":{"heading":91.4375,"pitch":135.5,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":207.25,"pitch":-91.9375,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":138.1875,"pitch":114.0625,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:29.253"} +{"sensors":[{"euler":{"heading":116.6875,"pitch":152.5,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":114.1875,"pitch":104.1875,"roll":82.9375},"location":"Left Ankle"},{"euler":{"heading":63.875,"pitch":-128.0,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":97.5,"pitch":135.0,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":205.8125,"pitch":-83.0625,"roll":66.4375},"location":"Right Knee"},{"euler":{"heading":141.75,"pitch":119.75,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:29.355"} +{"sensors":[{"euler":{"heading":123.375,"pitch":145.8125,"roll":51.25},"location":"Left Knee"},{"euler":{"heading":120.5,"pitch":3.4375,"roll":85.6875},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":-160.125,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":8.125,"pitch":138.25,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":193.125,"pitch":-4.375,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":146.625,"pitch":122.0625,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:29.455"} +{"sensors":[{"euler":{"heading":130.1875,"pitch":139.5625,"roll":48.0},"location":"Left Knee"},{"euler":{"heading":118.3125,"pitch":178.0,"roll":86.375},"location":"Left Ankle"},{"euler":{"heading":109.875,"pitch":142.4375,"roll":60.5},"location":"Right Ankle"},{"euler":{"heading":359.3125,"pitch":143.5625,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":172.0625,"pitch":78.875,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":146.9375,"pitch":125.0625,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:29.557"} +{"sensors":[{"euler":{"heading":46.625,"pitch":134.4375,"roll":43.625},"location":"Left Knee"},{"euler":{"heading":124.9375,"pitch":-175.8125,"roll":84.3125},"location":"Left Ankle"},{"euler":{"heading":122.0625,"pitch":128.625,"roll":51.5625},"location":"Right Ankle"},{"euler":{"heading":77.0,"pitch":145.375,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":83.9375,"roll":63.875},"location":"Right Knee"},{"euler":{"heading":146.8125,"pitch":127.25,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:29.658"} +{"sensors":[{"euler":{"heading":55.125,"pitch":129.8125,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":133.0625,"pitch":-104.8125,"roll":75.8125},"location":"Left Ankle"},{"euler":{"heading":113.8125,"pitch":137.0625,"roll":56.0},"location":"Right Ankle"},{"euler":{"heading":73.6875,"pitch":146.625,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":161.375,"pitch":82.8125,"roll":68.1875},"location":"Right Knee"},{"euler":{"heading":147.125,"pitch":130.1875,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:29.758"} +{"sensors":[{"euler":{"heading":70.625,"pitch":128.5,"roll":24.0625},"location":"Left Knee"},{"euler":{"heading":142.25,"pitch":-96.3125,"roll":60.0625},"location":"Left Ankle"},{"euler":{"heading":104.5625,"pitch":141.3125,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":75.75,"pitch":143.875,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":166.625,"pitch":81.25,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":131.125,"pitch":117.75,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:29.859"} +{"sensors":[{"euler":{"heading":73.1875,"pitch":129.875,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":135.1875,"pitch":-103.4375,"roll":60.625},"location":"Left Ankle"},{"euler":{"heading":101.1875,"pitch":148.8125,"roll":65.375},"location":"Right Ankle"},{"euler":{"heading":75.375,"pitch":141.6875,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":168.25,"pitch":91.6875,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":126.0,"pitch":106.3125,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:29.959"} +{"sensors":[{"euler":{"heading":41.875,"pitch":144.6875,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":111.3125,"pitch":-176.1875,"roll":86.0},"location":"Left Ankle"},{"euler":{"heading":92.9375,"pitch":158.0,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":77.8125,"pitch":138.6875,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":170.125,"pitch":175.0,"roll":85.0},"location":"Right Knee"},{"euler":{"heading":126.3125,"pitch":105.625,"roll":45.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:30.60"} +{"sensors":[{"euler":{"heading":89.9375,"pitch":169.4375,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":81.6875,"pitch":96.375,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":174.3125,"roll":72.9375},"location":"Right Ankle"},{"euler":{"heading":79.6875,"pitch":138.75,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":174.75,"pitch":-179.125,"roll":89.0},"location":"Right Knee"},{"euler":{"heading":128.9375,"pitch":106.75,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:30.161"} +{"sensors":[{"euler":{"heading":87.125,"pitch":160.6875,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":76.6875,"pitch":96.8125,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-157.8125,"roll":72.75},"location":"Right Ankle"},{"euler":{"heading":81.75,"pitch":138.625,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":183.5,"pitch":-98.6875,"roll":81.4375},"location":"Right Knee"},{"euler":{"heading":136.8125,"pitch":111.625,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:30.261"} +{"sensors":[{"euler":{"heading":103.5,"pitch":163.4375,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":89.1875,"pitch":97.0625,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":69.8125,"pitch":-135.125,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":85.25,"pitch":137.0625,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":198.75,"pitch":-94.3125,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":137.0,"pitch":112.3125,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:30.363"} +{"sensors":[{"euler":{"heading":111.0625,"pitch":155.125,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":98.5625,"pitch":90.625,"roll":71.75},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":-128.25,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":93.1875,"pitch":133.75,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":206.5625,"pitch":-87.125,"roll":63.5625},"location":"Right Knee"},{"euler":{"heading":142.75,"pitch":113.1875,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:30.463"} +{"sensors":[{"euler":{"heading":121.875,"pitch":147.5625,"roll":50.125},"location":"Left Knee"},{"euler":{"heading":120.1875,"pitch":2.5625,"roll":86.75},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":-143.1875,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":97.875,"pitch":134.8125,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":199.9375,"pitch":-77.4375,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":144.5,"pitch":123.1875,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:30.564"} +{"sensors":[{"euler":{"heading":128.875,"pitch":141.5,"roll":47.625},"location":"Left Knee"},{"euler":{"heading":114.8125,"pitch":173.875,"roll":83.1875},"location":"Left Ankle"},{"euler":{"heading":104.25,"pitch":158.0625,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":91.75,"pitch":140.625,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":183.0,"pitch":64.3125,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":145.75,"pitch":126.25,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:30.665"} +{"sensors":[{"euler":{"heading":44.0625,"pitch":136.5,"roll":43.875},"location":"Left Knee"},{"euler":{"heading":117.25,"pitch":178.625,"roll":84.75},"location":"Left Ankle"},{"euler":{"heading":123.8125,"pitch":126.5625,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":77.0,"pitch":145.3125,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":87.125,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":148.1875,"pitch":130.375,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:30.765"} +{"sensors":[{"euler":{"heading":52.125,"pitch":131.6875,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":125.625,"pitch":-130.25,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":119.25,"pitch":129.4375,"roll":54.5},"location":"Right Ankle"},{"euler":{"heading":72.5625,"pitch":146.0,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":160.875,"pitch":85.0625,"roll":65.9375},"location":"Right Knee"},{"euler":{"heading":149.875,"pitch":133.5,"roll":67.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:30.865"} +{"sensors":[{"euler":{"heading":67.8125,"pitch":129.6875,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":144.8125,"pitch":-100.9375,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":107.125,"pitch":136.9375,"roll":62.0625},"location":"Right Ankle"},{"euler":{"heading":74.3125,"pitch":144.1875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":84.25,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":142.25,"pitch":122.25,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:30.966"} +{"sensors":[{"euler":{"heading":78.5625,"pitch":128.3125,"roll":20.75},"location":"Left Knee"},{"euler":{"heading":141.5625,"pitch":-105.625,"roll":55.625},"location":"Left Ankle"},{"euler":{"heading":102.125,"pitch":140.5,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":71.25,"pitch":143.9375,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":87.1875,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":129.375,"pitch":108.4375,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:31.66"} +{"sensors":[{"euler":{"heading":48.125,"pitch":141.9375,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":116.125,"pitch":-101.6875,"roll":80.1875},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":153.5625,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":74.75,"pitch":139.25,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":166.5,"pitch":85.5,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":129.5,"pitch":107.5625,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:31.167"} +{"sensors":[{"euler":{"heading":91.5625,"pitch":165.375,"roll":50.875},"location":"Left Knee"},{"euler":{"heading":83.8125,"pitch":94.125,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":171.3125,"roll":71.5625},"location":"Right Ankle"},{"euler":{"heading":75.9375,"pitch":138.375,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":171.1875,"pitch":2.75,"roll":87.125},"location":"Right Knee"},{"euler":{"heading":131.0625,"pitch":107.75,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:31.268"} +{"sensors":[{"euler":{"heading":84.375,"pitch":177.0,"roll":52.125},"location":"Left Knee"},{"euler":{"heading":76.375,"pitch":94.4375,"roll":56.1875},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-162.9375,"roll":74.125},"location":"Right Ankle"},{"euler":{"heading":78.0,"pitch":138.0,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":180.1875,"pitch":-174.6875,"roll":84.625},"location":"Right Knee"},{"euler":{"heading":137.25,"pitch":113.5625,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:31.369"} +{"sensors":[{"euler":{"heading":102.3125,"pitch":164.25,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":97.8125,"roll":67.25},"location":"Left Ankle"},{"euler":{"heading":72.0625,"pitch":-138.375,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":81.9375,"pitch":138.3125,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":196.3125,"pitch":-92.8125,"roll":71.1875},"location":"Right Knee"},{"euler":{"heading":136.75,"pitch":113.0,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:31.470"} +{"sensors":[{"euler":{"heading":112.5625,"pitch":155.375,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":89.125,"roll":73.75},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-132.625,"roll":57.875},"location":"Right Ankle"},{"euler":{"heading":87.875,"pitch":135.0,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":203.625,"pitch":-86.1875,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":142.0,"pitch":120.0625,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:31.570"} +{"sensors":[{"euler":{"heading":121.3125,"pitch":148.1875,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":120.125,"pitch":176.8125,"roll":86.625},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-155.5625,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":93.1875,"pitch":135.8125,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":195.0625,"pitch":-77.375,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":147.0,"pitch":127.625,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:31.671"} +{"sensors":[{"euler":{"heading":129.5,"pitch":141.6875,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":121.375,"pitch":178.3125,"roll":86.8125},"location":"Left Ankle"},{"euler":{"heading":105.75,"pitch":153.3125,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":87.375,"pitch":142.125,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":179.125,"pitch":79.625,"roll":65.25},"location":"Right Knee"},{"euler":{"heading":149.75,"pitch":131.625,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:31.772"} +{"sensors":[{"euler":{"heading":45.0625,"pitch":136.3125,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":124.0625,"pitch":-176.25,"roll":84.0625},"location":"Left Ankle"},{"euler":{"heading":124.3125,"pitch":131.5625,"roll":51.25},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":145.875,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":162.625,"pitch":86.3125,"roll":64.25},"location":"Right Knee"},{"euler":{"heading":151.6875,"pitch":136.1875,"roll":67.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:31.872"} +{"sensors":[{"euler":{"heading":54.125,"pitch":131.0,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":132.9375,"pitch":-115.5625,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":112.5,"pitch":138.9375,"roll":55.0625},"location":"Right Ankle"},{"euler":{"heading":73.4375,"pitch":145.75,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":157.875,"pitch":77.6875,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":153.4375,"pitch":139.5625,"roll":69.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:31.973"} +{"sensors":[{"euler":{"heading":72.0,"pitch":128.6875,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":145.875,"pitch":-100.0,"roll":58.5},"location":"Left Ankle"},{"euler":{"heading":94.375,"pitch":152.9375,"roll":63.875},"location":"Right Ankle"},{"euler":{"heading":77.0,"pitch":143.1875,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":77.8125,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":143.375,"pitch":124.5,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:32.74"} +{"sensors":[{"euler":{"heading":78.1875,"pitch":128.5,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":147.625,"pitch":-107.875,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":157.125,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":74.4375,"pitch":142.625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":86.8125,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":136.3125,"pitch":108.75,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:32.175"} +{"sensors":[{"euler":{"heading":46.5,"pitch":142.4375,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":119.25,"pitch":-109.6875,"roll":81.875},"location":"Left Ankle"},{"euler":{"heading":89.625,"pitch":158.625,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":76.75,"pitch":140.625,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":166.9375,"pitch":96.875,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":132.5625,"pitch":106.625,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:32.275"} +{"sensors":[{"euler":{"heading":97.3125,"pitch":163.8125,"roll":49.0},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":99.5625,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":86.4375,"pitch":168.25,"roll":72.125},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":141.3125,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":172.3125,"pitch":178.75,"roll":87.5625},"location":"Right Knee"},{"euler":{"heading":132.5625,"pitch":105.5,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:32.376"} +{"sensors":[{"euler":{"heading":83.9375,"pitch":177.9375,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":74.0,"pitch":95.25,"roll":55.1875},"location":"Left Ankle"},{"euler":{"heading":80.75,"pitch":-168.625,"roll":74.5},"location":"Right Ankle"},{"euler":{"heading":80.625,"pitch":141.0625,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":181.4375,"pitch":-114.9375,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":140.9375,"pitch":110.5625,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:32.477"} +{"sensors":[{"euler":{"heading":101.0625,"pitch":167.1875,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":91.0,"pitch":97.3125,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-141.0,"roll":68.1875},"location":"Right Ankle"},{"euler":{"heading":83.6875,"pitch":140.75,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":196.25,"pitch":-99.5625,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":142.5,"pitch":112.0,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:32.578"} +{"sensors":[{"euler":{"heading":111.875,"pitch":156.625,"roll":51.125},"location":"Left Knee"},{"euler":{"heading":101.875,"pitch":94.75,"roll":72.5},"location":"Left Ankle"},{"euler":{"heading":65.0,"pitch":-126.9375,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":90.8125,"pitch":136.3125,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":204.6875,"pitch":-90.875,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":143.25,"pitch":114.1875,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:32.678"} +{"sensors":[{"euler":{"heading":121.6875,"pitch":149.0625,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":119.8125,"pitch":175.8125,"roll":84.9375},"location":"Left Ankle"},{"euler":{"heading":70.1875,"pitch":-136.25,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":94.75,"pitch":135.4375,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":199.375,"pitch":-84.8125,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":147.1875,"pitch":121.8125,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:32.779"} +{"sensors":[{"euler":{"heading":128.25,"pitch":143.0625,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":123.9375,"pitch":178.375,"roll":87.6875},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":176.875,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":93.0,"pitch":140.375,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":185.8125,"pitch":2.125,"roll":87.0625},"location":"Right Knee"},{"euler":{"heading":149.5,"pitch":128.4375,"roll":64.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:32.879"} +{"sensors":[{"euler":{"heading":135.1875,"pitch":137.0625,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":126.4375,"pitch":-177.6875,"roll":86.0625},"location":"Left Ankle"},{"euler":{"heading":118.0625,"pitch":133.25,"roll":56.0},"location":"Right Ankle"},{"euler":{"heading":81.5625,"pitch":146.0625,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":168.1875,"pitch":86.75,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":152.0,"pitch":132.5,"roll":67.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:32.980"} +{"sensors":[{"euler":{"heading":52.6875,"pitch":131.6875,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":133.5,"pitch":-110.9375,"roll":79.75},"location":"Left Ankle"},{"euler":{"heading":121.375,"pitch":129.625,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":72.4375,"pitch":148.6875,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":159.5,"pitch":86.6875,"roll":62.125},"location":"Right Knee"},{"euler":{"heading":154.625,"pitch":139.75,"roll":70.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:33.81"} +{"sensors":[{"euler":{"heading":62.875,"pitch":127.375,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":139.75,"pitch":-98.8125,"roll":70.0625},"location":"Left Ankle"},{"euler":{"heading":106.1875,"pitch":139.625,"roll":61.0},"location":"Right Ankle"},{"euler":{"heading":70.625,"pitch":148.125,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":157.9375,"pitch":80.875,"roll":67.4375},"location":"Right Knee"},{"euler":{"heading":153.5,"pitch":134.875,"roll":68.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:33.181"} +{"sensors":[{"euler":{"heading":76.25,"pitch":128.0,"roll":21.6875},"location":"Left Knee"},{"euler":{"heading":156.125,"pitch":-101.4375,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":106.0,"pitch":142.8125,"roll":61.8125},"location":"Right Ankle"},{"euler":{"heading":69.625,"pitch":149.5,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":87.875,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":137.25,"pitch":113.5,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:33.281"} +{"sensors":[{"euler":{"heading":72.875,"pitch":131.375,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":134.375,"pitch":-92.1875,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":148.375,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":71.5625,"pitch":144.3125,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":163.375,"pitch":92.4375,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":131.25,"pitch":105.8125,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:33.382"} +{"sensors":[{"euler":{"heading":28.5,"pitch":150.0625,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":101.5625,"pitch":107.1875,"roll":81.625},"location":"Left Ankle"},{"euler":{"heading":86.875,"pitch":162.1875,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":76.0625,"pitch":139.875,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":166.0,"pitch":173.9375,"roll":83.375},"location":"Right Knee"},{"euler":{"heading":130.0625,"pitch":104.25,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:33.482"} +{"sensors":[{"euler":{"heading":85.375,"pitch":174.125,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":77.375,"pitch":94.875,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":-174.9375,"roll":74.0},"location":"Right Ankle"},{"euler":{"heading":76.75,"pitch":139.125,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":-179.4375,"roll":88.6875},"location":"Right Knee"},{"euler":{"heading":133.875,"pitch":108.0625,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:33.582"} +{"sensors":[{"euler":{"heading":89.75,"pitch":174.5,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":80.3125,"pitch":94.5,"roll":58.625},"location":"Left Ankle"},{"euler":{"heading":73.8125,"pitch":-146.0,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":140.75,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":183.8125,"pitch":-100.9375,"roll":80.75},"location":"Right Knee"},{"euler":{"heading":138.875,"pitch":111.375,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:33.683"} +{"sensors":[{"euler":{"heading":102.125,"pitch":163.25,"roll":52.125},"location":"Left Knee"},{"euler":{"heading":91.3125,"pitch":90.9375,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":66.5625,"pitch":-129.0,"roll":58.625},"location":"Right Ankle"},{"euler":{"heading":88.125,"pitch":139.625,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":204.4375,"pitch":-81.0625,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":138.3125,"pitch":113.1875,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:33.783"} +{"sensors":[{"euler":{"heading":111.375,"pitch":154.5625,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":104.625,"pitch":101.6875,"roll":78.3125},"location":"Left Ankle"},{"euler":{"heading":67.125,"pitch":-132.0,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":92.4375,"pitch":136.0625,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":206.1875,"pitch":-86.9375,"roll":65.9375},"location":"Right Knee"},{"euler":{"heading":142.0,"pitch":118.0625,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:33.884"} +{"sensors":[{"euler":{"heading":117.75,"pitch":148.375,"roll":49.8125},"location":"Left Knee"},{"euler":{"heading":115.0,"pitch":175.9375,"roll":85.375},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":-163.625,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":93.25,"pitch":138.25,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":192.25,"pitch":-76.3125,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":144.625,"pitch":123.1875,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:33.984"} +{"sensors":[{"euler":{"heading":125.4375,"pitch":142.25,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":119.0625,"pitch":179.1875,"roll":87.0625},"location":"Left Ankle"},{"euler":{"heading":104.875,"pitch":149.5625,"roll":61.4375},"location":"Right Ankle"},{"euler":{"heading":87.4375,"pitch":142.625,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":173.3125,"pitch":76.5625,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":148.4375,"pitch":128.375,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:34.85"} +{"sensors":[{"euler":{"heading":43.125,"pitch":136.375,"roll":44.75},"location":"Left Knee"},{"euler":{"heading":125.0625,"pitch":-175.5625,"roll":84.6875},"location":"Left Ankle"},{"euler":{"heading":120.75,"pitch":129.875,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":146.9375,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":160.375,"pitch":85.25,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":149.9375,"pitch":131.5625,"roll":67.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:34.185"} +{"sensors":[{"euler":{"heading":51.6875,"pitch":131.625,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":-107.375,"roll":75.5625},"location":"Left Ankle"},{"euler":{"heading":113.0,"pitch":138.8125,"roll":54.375},"location":"Right Ankle"},{"euler":{"heading":72.0,"pitch":148.0,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":157.75,"pitch":80.5625,"roll":65.375},"location":"Right Knee"},{"euler":{"heading":149.6875,"pitch":135.5,"roll":68.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:34.286"} +{"sensors":[{"euler":{"heading":66.3125,"pitch":128.5625,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":143.875,"pitch":-106.625,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":102.4375,"pitch":142.875,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":75.4375,"pitch":145.0,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":160.0625,"pitch":82.375,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":142.4375,"pitch":125.25,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:34.387"} +{"sensors":[{"euler":{"heading":82.625,"pitch":126.5625,"roll":21.25},"location":"Left Knee"},{"euler":{"heading":153.0625,"pitch":-106.875,"roll":53.8125},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":149.5,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":73.3125,"pitch":144.375,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":92.3125,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":135.4375,"pitch":109.9375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:34.488"} +{"sensors":[{"euler":{"heading":57.75,"pitch":139.5,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":120.9375,"pitch":-113.0,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":157.9375,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":141.0,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":164.6875,"pitch":93.9375,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":131.125,"pitch":106.8125,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:34.589"} +{"sensors":[{"euler":{"heading":102.8125,"pitch":161.3125,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":89.125,"pitch":100.75,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":168.75,"roll":71.625},"location":"Right Ankle"},{"euler":{"heading":77.8125,"pitch":139.1875,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":177.6875,"roll":87.375},"location":"Right Knee"},{"euler":{"heading":129.9375,"pitch":106.625,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:34.690"} +{"sensors":[{"euler":{"heading":87.3125,"pitch":176.0,"roll":51.0625},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":95.9375,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":-169.375,"roll":74.125},"location":"Right Ankle"},{"euler":{"heading":80.5625,"pitch":138.625,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":-175.3125,"roll":84.6875},"location":"Right Knee"},{"euler":{"heading":136.5625,"pitch":109.5,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:34.790"} +{"sensors":[{"euler":{"heading":102.75,"pitch":168.625,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":86.875,"pitch":100.75,"roll":59.375},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":-142.75,"roll":69.8125},"location":"Right Ankle"},{"euler":{"heading":82.8125,"pitch":141.8125,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":191.3125,"pitch":-101.9375,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":145.6875,"pitch":113.8125,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:34.891"} +{"sensors":[{"euler":{"heading":112.625,"pitch":158.1875,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":101.1875,"pitch":95.1875,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":66.6875,"pitch":-127.1875,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":88.5,"pitch":141.5,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":207.75,"pitch":-94.625,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":142.875,"pitch":115.0,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:34.994"} +{"sensors":[{"euler":{"heading":124.8125,"pitch":148.75,"roll":50.875},"location":"Left Knee"},{"euler":{"heading":116.1875,"pitch":104.75,"roll":80.375},"location":"Left Ankle"},{"euler":{"heading":67.5625,"pitch":-128.75,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":93.875,"pitch":136.8125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":212.75,"pitch":-91.0,"roll":61.5},"location":"Right Knee"},{"euler":{"heading":147.5,"pitch":121.0,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:35.94"} +{"sensors":[{"euler":{"heading":131.6875,"pitch":141.625,"roll":50.1875},"location":"Left Knee"},{"euler":{"heading":128.8125,"pitch":178.3125,"roll":88.1875},"location":"Left Ankle"},{"euler":{"heading":81.1875,"pitch":-150.6875,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":97.0625,"pitch":138.5,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":201.5,"pitch":-84.4375,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":152.5,"pitch":126.375,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:35.195"} +{"sensors":[{"euler":{"heading":136.6875,"pitch":136.0625,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":128.875,"pitch":-178.8125,"roll":86.6875},"location":"Left Ankle"},{"euler":{"heading":103.125,"pitch":155.6875,"roll":64.125},"location":"Right Ankle"},{"euler":{"heading":358.5,"pitch":144.9375,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":180.4375,"pitch":73.4375,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":152.5,"pitch":129.125,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:35.295"} +{"sensors":[{"euler":{"heading":51.75,"pitch":131.6875,"roll":42.6875},"location":"Left Knee"},{"euler":{"heading":131.25,"pitch":-125.8125,"roll":82.5},"location":"Left Ankle"},{"euler":{"heading":122.125,"pitch":133.0625,"roll":52.0625},"location":"Right Ankle"},{"euler":{"heading":80.375,"pitch":146.5,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":164.0625,"pitch":86.3125,"roll":65.0625},"location":"Right Knee"},{"euler":{"heading":151.25,"pitch":132.875,"roll":68.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:35.395"} +{"sensors":[{"euler":{"heading":58.875,"pitch":127.625,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":140.5625,"pitch":-103.875,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":114.375,"pitch":139.0625,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":71.1875,"pitch":148.75,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":156.9375,"pitch":78.6875,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":151.3125,"pitch":137.625,"roll":69.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:35.496"} +{"sensors":[{"euler":{"heading":68.4375,"pitch":127.375,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":144.5625,"pitch":-108.875,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":145.8125,"roll":61.1875},"location":"Right Ankle"},{"euler":{"heading":74.0625,"pitch":145.5625,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":159.875,"pitch":81.6875,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":146.6875,"pitch":134.6875,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:35.596"} +{"sensors":[{"euler":{"heading":81.0625,"pitch":125.625,"roll":19.875},"location":"Left Knee"},{"euler":{"heading":152.25,"pitch":-106.3125,"roll":53.375},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":152.1875,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":70.3125,"pitch":145.3125,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":161.8125,"pitch":90.0,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":133.4375,"pitch":112.75,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:35.697"} +{"sensors":[{"euler":{"heading":56.6875,"pitch":137.875,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":120.6875,"pitch":-106.1875,"roll":79.5},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":160.625,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":73.6875,"pitch":140.9375,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":95.75,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":129.1875,"pitch":107.375,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:35.798"} +{"sensors":[{"euler":{"heading":101.1875,"pitch":175.125,"roll":46.8125},"location":"Left Knee"},{"euler":{"heading":90.8125,"pitch":99.1875,"roll":71.0625},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":169.1875,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":77.6875,"pitch":139.4375,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":169.875,"pitch":176.6875,"roll":86.4375},"location":"Right Knee"},{"euler":{"heading":131.5,"pitch":106.1875,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:35.898"} +{"sensors":[{"euler":{"heading":84.25,"pitch":176.5625,"roll":52.625},"location":"Left Knee"},{"euler":{"heading":74.3125,"pitch":93.3125,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":77.8125,"pitch":-167.75,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":81.6875,"pitch":138.9375,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":178.0625,"pitch":-176.0625,"roll":85.4375},"location":"Right Knee"},{"euler":{"heading":139.625,"pitch":109.6875,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:35.998"} +{"sensors":[{"euler":{"heading":96.8125,"pitch":169.4375,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":84.5625,"pitch":97.8125,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":71.25,"pitch":-140.875,"roll":68.9375},"location":"Right Ankle"},{"euler":{"heading":84.5,"pitch":141.9375,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":190.75,"pitch":-102.1875,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":145.5,"pitch":111.6875,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:36.100"} +{"sensors":[{"euler":{"heading":107.5625,"pitch":159.25,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":96.9375,"pitch":91.375,"roll":68.625},"location":"Left Ankle"},{"euler":{"heading":67.6875,"pitch":-131.25,"roll":59.75},"location":"Right Ankle"},{"euler":{"heading":88.5,"pitch":141.1875,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":207.0,"pitch":-92.4375,"roll":65.875},"location":"Right Knee"},{"euler":{"heading":144.9375,"pitch":113.5,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:36.200"} +{"sensors":[{"euler":{"heading":116.125,"pitch":150.75,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":107.25,"pitch":103.6875,"roll":78.8125},"location":"Left Ankle"},{"euler":{"heading":56.3125,"pitch":-119.3125,"roll":52.5},"location":"Right Ankle"},{"euler":{"heading":93.75,"pitch":136.9375,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":207.5,"pitch":-86.5625,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":148.5625,"pitch":119.0625,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:36.302"} +{"sensors":[{"euler":{"heading":122.1875,"pitch":144.6875,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":117.8125,"pitch":176.625,"roll":85.6875},"location":"Left Ankle"},{"euler":{"heading":64.375,"pitch":-131.5625,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":97.1875,"pitch":138.375,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":196.75,"pitch":-79.1875,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":152.125,"pitch":123.625,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:36.402"} +{"sensors":[{"euler":{"heading":127.8125,"pitch":139.3125,"roll":47.6875},"location":"Left Knee"},{"euler":{"heading":121.0625,"pitch":-179.8125,"roll":86.4375},"location":"Left Ankle"},{"euler":{"heading":91.9375,"pitch":167.0,"roll":65.8125},"location":"Right Ankle"},{"euler":{"heading":1.625,"pitch":143.625,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":178.0,"pitch":69.375,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":154.4375,"pitch":128.25,"roll":64.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:36.503"} +{"sensors":[{"euler":{"heading":45.1875,"pitch":134.1875,"roll":43.25},"location":"Left Knee"},{"euler":{"heading":126.5625,"pitch":-124.4375,"roll":83.0625},"location":"Left Ankle"},{"euler":{"heading":116.5,"pitch":137.5,"roll":54.1875},"location":"Right Ankle"},{"euler":{"heading":82.25,"pitch":145.375,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":164.375,"pitch":86.375,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":155.8125,"pitch":132.0625,"roll":66.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:36.604"} +{"sensors":[{"euler":{"heading":53.875,"pitch":129.6875,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":135.875,"pitch":-107.25,"roll":74.3125},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":142.375,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":74.25,"pitch":147.375,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":158.8125,"pitch":83.25,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":158.6875,"pitch":137.9375,"roll":68.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:36.705"} +{"sensors":[{"euler":{"heading":66.3125,"pitch":128.0625,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":143.75,"pitch":-108.1875,"roll":59.75},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":149.75,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":143.5625,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":160.9375,"pitch":86.4375,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":155.875,"pitch":133.0,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:36.806"} +{"sensors":[{"euler":{"heading":82.375,"pitch":125.0,"roll":20.0},"location":"Left Knee"},{"euler":{"heading":154.875,"pitch":-104.8125,"roll":53.625},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":154.875,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":73.625,"pitch":143.0,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":161.1875,"pitch":90.25,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":146.5,"pitch":114.875,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:36.907"} +{"sensors":[{"euler":{"heading":61.0,"pitch":136.125,"roll":28.375},"location":"Left Knee"},{"euler":{"heading":125.6875,"pitch":-94.625,"roll":76.3125},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":163.5625,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":75.1875,"pitch":140.8125,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":164.625,"pitch":94.3125,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":138.8125,"pitch":108.0,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:37.7"} +{"sensors":[{"euler":{"heading":104.6875,"pitch":159.0,"roll":46.125},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":98.125,"roll":72.3125},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":169.75,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":78.125,"pitch":139.6875,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":169.25,"pitch":176.875,"roll":86.6875},"location":"Right Knee"},{"euler":{"heading":139.4375,"pitch":107.25,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:37.109"} +{"sensors":[{"euler":{"heading":85.1875,"pitch":177.0625,"roll":52.6875},"location":"Left Knee"},{"euler":{"heading":74.0,"pitch":92.5625,"roll":52.875},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":-168.25,"roll":74.625},"location":"Right Ankle"},{"euler":{"heading":81.5625,"pitch":139.5,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":-176.125,"roll":85.3125},"location":"Right Knee"},{"euler":{"heading":148.3125,"pitch":112.4375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:37.209"} +{"sensors":[{"euler":{"heading":98.75,"pitch":169.5625,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":84.5625,"pitch":97.8125,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":74.125,"pitch":-144.25,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":83.25,"pitch":141.6875,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":189.1875,"pitch":-105.125,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":153.875,"pitch":114.25,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:37.310"} +{"sensors":[{"euler":{"heading":110.9375,"pitch":159.0625,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":93.25,"roll":68.5},"location":"Left Ankle"},{"euler":{"heading":65.9375,"pitch":-125.5625,"roll":58.75},"location":"Right Ankle"},{"euler":{"heading":88.5,"pitch":141.0625,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":206.6875,"pitch":-96.625,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":152.0625,"pitch":115.0,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:37.410"} +{"sensors":[{"euler":{"heading":119.0,"pitch":150.6875,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":114.8125,"pitch":116.1875,"roll":81.875},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":-125.25,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":95.1875,"pitch":137.5,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":212.9375,"pitch":-90.5,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":155.5,"pitch":122.75,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:37.511"} +{"sensors":[{"euler":{"heading":125.75,"pitch":144.125,"roll":49.75},"location":"Left Knee"},{"euler":{"heading":123.125,"pitch":177.3125,"roll":87.3125},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":-141.375,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":98.5625,"pitch":138.125,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":200.6875,"pitch":-82.1875,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":158.4375,"pitch":125.1875,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:37.611"} +{"sensors":[{"euler":{"heading":131.8125,"pitch":138.625,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":121.875,"pitch":177.4375,"roll":86.0},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":166.1875,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":1.0625,"pitch":144.0625,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":177.625,"pitch":71.25,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":159.3125,"pitch":130.25,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:37.713"} +{"sensors":[{"euler":{"heading":48.6875,"pitch":133.375,"roll":43.25},"location":"Left Knee"},{"euler":{"heading":127.125,"pitch":-176.9375,"roll":85.3125},"location":"Left Ankle"},{"euler":{"heading":120.4375,"pitch":131.375,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":80.1875,"pitch":147.5,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":87.5,"roll":66.5},"location":"Right Knee"},{"euler":{"heading":161.375,"pitch":134.5,"roll":67.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:37.813"} +{"sensors":[{"euler":{"heading":57.875,"pitch":128.4375,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":137.1875,"pitch":-103.875,"roll":76.25},"location":"Left Ankle"},{"euler":{"heading":115.4375,"pitch":133.0625,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":74.6875,"pitch":147.125,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":161.6875,"pitch":82.4375,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":163.875,"pitch":138.5625,"roll":68.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:37.914"} +{"sensors":[{"euler":{"heading":70.4375,"pitch":127.375,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":147.8125,"pitch":-101.625,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":103.1875,"pitch":143.1875,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":76.3125,"pitch":145.625,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":163.0,"pitch":83.375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":154.75,"pitch":126.5,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:38.15"} +{"sensors":[{"euler":{"heading":83.25,"pitch":125.4375,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":153.8125,"pitch":-106.3125,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":100.1875,"pitch":148.5,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":75.5,"pitch":145.25,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":166.4375,"pitch":94.6875,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":149.125,"pitch":111.0,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:38.115"} +{"sensors":[{"euler":{"heading":58.75,"pitch":138.375,"roll":31.375},"location":"Left Knee"},{"euler":{"heading":124.9375,"pitch":-101.4375,"roll":80.625},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":160.9375,"roll":67.5},"location":"Right Ankle"},{"euler":{"heading":77.6875,"pitch":141.9375,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":168.875,"pitch":173.5625,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":145.1875,"pitch":108.0,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:38.216"} +{"sensors":[{"euler":{"heading":102.0625,"pitch":160.5625,"roll":48.3125},"location":"Left Knee"},{"euler":{"heading":90.625,"pitch":96.5625,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":175.0625,"roll":71.375},"location":"Right Ankle"},{"euler":{"heading":78.875,"pitch":140.3125,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":171.9375,"pitch":178.8125,"roll":88.5625},"location":"Right Knee"},{"euler":{"heading":144.1875,"pitch":108.6875,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:38.318"} +{"sensors":[{"euler":{"heading":84.3125,"pitch":176.875,"roll":52.875},"location":"Left Knee"},{"euler":{"heading":75.1875,"pitch":91.625,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-161.0625,"roll":73.75},"location":"Right Ankle"},{"euler":{"heading":79.5625,"pitch":141.125,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":180.0,"pitch":-173.625,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":150.4375,"pitch":113.0,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:38.419"} +{"sensors":[{"euler":{"heading":98.375,"pitch":167.6875,"roll":51.6875},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":94.9375,"roll":79.625},"location":"Left Ankle"},{"euler":{"heading":73.0,"pitch":-139.625,"roll":66.3125},"location":"Right Ankle"},{"euler":{"heading":81.75,"pitch":141.625,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":196.9375,"pitch":-100.9375,"roll":71.5625},"location":"Right Knee"},{"euler":{"heading":151.25,"pitch":114.625,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:38.519"} +{"sensors":[{"euler":{"heading":108.375,"pitch":157.6875,"roll":52.1875},"location":"Left Knee"},{"euler":{"heading":96.4375,"pitch":91.75,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":-126.5625,"roll":55.375},"location":"Right Ankle"},{"euler":{"heading":86.75,"pitch":137.4375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":201.3125,"pitch":-91.75,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":151.375,"pitch":116.75,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:38.620"} +{"sensors":[{"euler":{"heading":117.4375,"pitch":150.1875,"roll":51.6875},"location":"Left Knee"},{"euler":{"heading":114.0,"pitch":108.5,"roll":83.0625},"location":"Left Ankle"},{"euler":{"heading":65.0,"pitch":-135.8125,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":93.5625,"pitch":137.6875,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":198.0625,"pitch":-84.4375,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":155.375,"pitch":123.1875,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:38.721"} +{"sensors":[{"euler":{"heading":126.9375,"pitch":142.875,"roll":49.5},"location":"Left Knee"},{"euler":{"heading":117.8125,"pitch":175.1875,"roll":84.8125},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":-175.1875,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":4.125,"pitch":141.3125,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":188.6875,"pitch":-2.5625,"roll":86.25},"location":"Right Knee"},{"euler":{"heading":160.1875,"pitch":128.1875,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:38.822"} +{"sensors":[{"euler":{"heading":133.25,"pitch":137.0625,"roll":46.125},"location":"Left Knee"},{"euler":{"heading":120.6875,"pitch":179.1875,"roll":86.5625},"location":"Left Ankle"},{"euler":{"heading":114.1875,"pitch":139.375,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":355.875,"pitch":146.25,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":173.4375,"pitch":87.8125,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":161.9375,"pitch":134.0,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:38.923"} +{"sensors":[{"euler":{"heading":49.375,"pitch":132.3125,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":128.5625,"pitch":-119.125,"roll":82.0625},"location":"Left Ankle"},{"euler":{"heading":124.9375,"pitch":127.0625,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":73.3125,"pitch":148.75,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":87.6875,"roll":63.5625},"location":"Right Knee"},{"euler":{"heading":162.0,"pitch":138.1875,"roll":67.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:39.23"} +{"sensors":[{"euler":{"heading":62.25,"pitch":127.0625,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":135.5625,"pitch":-100.4375,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":107.6875,"pitch":141.1875,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":72.75,"pitch":147.5,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":159.5625,"pitch":81.9375,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":160.625,"pitch":133.1875,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:39.124"} +{"sensors":[{"euler":{"heading":79.5625,"pitch":126.8125,"roll":20.8125},"location":"Left Knee"},{"euler":{"heading":155.5625,"pitch":-100.875,"roll":52.5},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":145.4375,"roll":62.1875},"location":"Right Ankle"},{"euler":{"heading":69.875,"pitch":147.3125,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":162.0625,"pitch":85.125,"roll":74.875},"location":"Right Knee"},{"euler":{"heading":142.6875,"pitch":112.9375,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:39.225"} +{"sensors":[{"euler":{"heading":72.5625,"pitch":133.9375,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":135.5,"pitch":-99.5,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":149.375,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":75.4375,"pitch":143.9375,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":99.0625,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":140.9375,"pitch":108.0,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:39.326"} +{"sensors":[{"euler":{"heading":30.125,"pitch":150.75,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":103.9375,"pitch":111.8125,"roll":81.75},"location":"Left Ankle"},{"euler":{"heading":93.375,"pitch":157.1875,"roll":69.1875},"location":"Right Ankle"},{"euler":{"heading":79.5,"pitch":141.8125,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":172.4375,"pitch":176.0625,"roll":85.25},"location":"Right Knee"},{"euler":{"heading":142.6875,"pitch":107.5,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:39.427"} +{"sensors":[{"euler":{"heading":89.5,"pitch":171.625,"roll":52.0625},"location":"Left Knee"},{"euler":{"heading":78.875,"pitch":94.125,"roll":57.3125},"location":"Left Ankle"},{"euler":{"heading":87.4375,"pitch":171.75,"roll":72.4375},"location":"Right Ankle"},{"euler":{"heading":81.1875,"pitch":141.4375,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":179.125,"pitch":-177.4375,"roll":86.0},"location":"Right Knee"},{"euler":{"heading":147.125,"pitch":109.875,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:39.527"} +{"sensors":[{"euler":{"heading":90.0625,"pitch":174.8125,"roll":51.875},"location":"Left Knee"},{"euler":{"heading":80.3125,"pitch":94.0,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-158.875,"roll":73.3125},"location":"Right Ankle"},{"euler":{"heading":83.0,"pitch":142.0625,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":188.75,"pitch":-112.5,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":153.6875,"pitch":113.4375,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:39.628"} +{"sensors":[{"euler":{"heading":106.0625,"pitch":162.9375,"roll":51.5625},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":92.0625,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":77.6875,"pitch":-139.75,"roll":64.5},"location":"Right Ankle"},{"euler":{"heading":87.6875,"pitch":141.625,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":207.8125,"pitch":-100.25,"roll":67.25},"location":"Right Knee"},{"euler":{"heading":155.0625,"pitch":115.4375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:39.728"} +{"sensors":[{"euler":{"heading":114.625,"pitch":154.3125,"roll":51.4375},"location":"Left Knee"},{"euler":{"heading":100.5625,"pitch":89.875,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":68.0,"pitch":-130.5,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":93.3125,"pitch":137.625,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":211.5,"pitch":-91.625,"roll":62.6875},"location":"Right Knee"},{"euler":{"heading":158.6875,"pitch":122.8125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:39.828"} +{"sensors":[{"euler":{"heading":120.375,"pitch":148.0,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":116.375,"pitch":174.0,"roll":84.0},"location":"Left Ankle"},{"euler":{"heading":94.25,"pitch":-151.0,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":98.4375,"pitch":138.0,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":199.625,"pitch":-84.0,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":159.25,"pitch":128.8125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:39.929"} +{"sensors":[{"euler":{"heading":125.9375,"pitch":141.875,"roll":47.5},"location":"Left Knee"},{"euler":{"heading":113.125,"pitch":117.625,"roll":82.9375},"location":"Left Ankle"},{"euler":{"heading":105.625,"pitch":156.0625,"roll":63.5625},"location":"Right Ankle"},{"euler":{"heading":358.4375,"pitch":143.9375,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":181.625,"pitch":76.9375,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":158.3125,"pitch":130.625,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:40.30"} +{"sensors":[{"euler":{"heading":43.125,"pitch":136.875,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":118.125,"pitch":179.125,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":125.4375,"pitch":130.5625,"roll":51.375},"location":"Right Ankle"},{"euler":{"heading":76.5,"pitch":147.5,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":90.75,"roll":66.375},"location":"Right Knee"},{"euler":{"heading":159.875,"pitch":133.6875,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:40.130"} +{"sensors":[{"euler":{"heading":52.3125,"pitch":132.0625,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":143.4375,"pitch":-120.8125,"roll":79.625},"location":"Left Ankle"},{"euler":{"heading":118.1875,"pitch":134.8125,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":72.5625,"pitch":147.5,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":85.625,"roll":67.25},"location":"Right Knee"},{"euler":{"heading":162.25,"pitch":137.6875,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:40.231"} +{"sensors":[{"euler":{"heading":67.75,"pitch":129.5625,"roll":24.9375},"location":"Left Knee"},{"euler":{"heading":135.875,"pitch":-102.3125,"roll":65.25},"location":"Left Ankle"},{"euler":{"heading":103.9375,"pitch":142.4375,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":74.375,"pitch":145.875,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":163.4375,"pitch":86.875,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":155.125,"pitch":126.1875,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:40.331"} +{"sensors":[{"euler":{"heading":80.0625,"pitch":128.6875,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":144.25,"pitch":-103.5625,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":103.25,"pitch":145.3125,"roll":64.1875},"location":"Right Ankle"},{"euler":{"heading":72.625,"pitch":145.3125,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":166.3125,"pitch":99.625,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":144.4375,"pitch":110.6875,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:40.432"} +{"sensors":[{"euler":{"heading":53.75,"pitch":141.8125,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":121.0,"pitch":-105.625,"roll":81.3125},"location":"Left Ankle"},{"euler":{"heading":99.4375,"pitch":151.25,"roll":67.3125},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":141.6875,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":171.875,"pitch":117.3125,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":142.9375,"pitch":110.0,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:40.533"} +{"sensors":[{"euler":{"heading":100.625,"pitch":162.625,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":99.5,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":93.9375,"pitch":161.8125,"roll":70.8125},"location":"Right Ankle"},{"euler":{"heading":81.1875,"pitch":140.5625,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":179.5625,"roll":86.3125},"location":"Right Knee"},{"euler":{"heading":145.375,"pitch":109.125,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:40.634"} +{"sensors":[{"euler":{"heading":82.5625,"pitch":178.9375,"roll":52.375},"location":"Left Knee"},{"euler":{"heading":73.375,"pitch":90.5625,"roll":52.125},"location":"Left Ankle"},{"euler":{"heading":85.5,"pitch":-175.25,"roll":73.625},"location":"Right Ankle"},{"euler":{"heading":82.0,"pitch":141.4375,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":184.8125,"pitch":-121.3125,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":150.5625,"pitch":112.6875,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:40.735"} +{"sensors":[{"euler":{"heading":98.5625,"pitch":170.0,"roll":51.1875},"location":"Left Knee"},{"euler":{"heading":85.625,"pitch":94.75,"roll":60.25},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":-147.9375,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":83.3125,"pitch":143.3125,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":195.9375,"pitch":-105.6875,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":156.3125,"pitch":114.625,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:40.835"} +{"sensors":[{"euler":{"heading":109.375,"pitch":159.1875,"roll":51.5},"location":"Left Knee"},{"euler":{"heading":96.25,"pitch":90.625,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":66.0,"pitch":-124.8125,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":90.4375,"pitch":140.625,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":211.1875,"pitch":-93.5,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":155.0625,"pitch":116.875,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:40.936"} +{"sensors":[{"euler":{"heading":117.3125,"pitch":150.6875,"roll":50.75},"location":"Left Knee"},{"euler":{"heading":114.1875,"pitch":103.625,"roll":82.375},"location":"Left Ankle"},{"euler":{"heading":64.25,"pitch":-129.8125,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":95.4375,"pitch":136.4375,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":212.375,"pitch":-86.875,"roll":62.3125},"location":"Right Knee"},{"euler":{"heading":157.25,"pitch":123.8125,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:41.39"} +{"sensors":[{"euler":{"heading":120.3125,"pitch":145.75,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":119.6875,"pitch":3.4375,"roll":85.1875},"location":"Left Ankle"},{"euler":{"heading":73.0,"pitch":-137.0,"roll":63.4375},"location":"Right Ankle"},{"euler":{"heading":96.625,"pitch":137.1875,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":197.0,"pitch":-74.875,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":157.5625,"pitch":127.3125,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:41.140"} +{"sensors":[{"euler":{"heading":129.9375,"pitch":139.375,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":174.1875,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":95.8125,"pitch":159.5,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":88.6875,"pitch":142.25,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":177.25,"pitch":75.3125,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":160.375,"pitch":131.625,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:41.240"} +{"sensors":[{"euler":{"heading":47.75,"pitch":133.5625,"roll":42.8125},"location":"Left Knee"},{"euler":{"heading":121.4375,"pitch":179.75,"roll":87.375},"location":"Left Ankle"},{"euler":{"heading":119.3125,"pitch":130.9375,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":77.8125,"pitch":145.875,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":164.75,"pitch":87.6875,"roll":65.5625},"location":"Right Knee"},{"euler":{"heading":162.75,"pitch":135.75,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:41.341"} +{"sensors":[{"euler":{"heading":56.6875,"pitch":128.875,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":130.6875,"pitch":-113.625,"roll":79.375},"location":"Left Ankle"},{"euler":{"heading":116.1875,"pitch":137.625,"roll":54.625},"location":"Right Ankle"},{"euler":{"heading":73.1875,"pitch":147.4375,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":163.125,"pitch":83.125,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":165.25,"pitch":139.5,"roll":67.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:41.441"} +{"sensors":[{"euler":{"heading":72.125,"pitch":127.875,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":-103.25,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":103.875,"pitch":143.8125,"roll":62.125},"location":"Right Ankle"},{"euler":{"heading":76.625,"pitch":144.5,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":165.4375,"pitch":87.125,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":155.25,"pitch":126.875,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:41.541"} +{"sensors":[{"euler":{"heading":84.1875,"pitch":125.0625,"roll":20.5},"location":"Left Knee"},{"euler":{"heading":150.9375,"pitch":-100.875,"roll":53.4375},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":148.0,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":73.5625,"pitch":143.5,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":166.125,"pitch":100.4375,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":147.0625,"pitch":112.3125,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:41.643"} +{"sensors":[{"euler":{"heading":54.25,"pitch":141.3125,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":123.75,"pitch":-100.6875,"roll":78.375},"location":"Left Ankle"},{"euler":{"heading":91.1875,"pitch":158.1875,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":140.25,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":170.5,"pitch":175.625,"roll":85.1875},"location":"Right Knee"},{"euler":{"heading":143.625,"pitch":109.4375,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:41.743"} +{"sensors":[{"euler":{"heading":100.0625,"pitch":162.9375,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":98.1875,"roll":67.3125},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":172.0,"roll":72.375},"location":"Right Ankle"},{"euler":{"heading":79.0,"pitch":139.75,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":175.4375,"pitch":-178.75,"roll":87.3125},"location":"Right Knee"},{"euler":{"heading":146.0625,"pitch":109.5,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:41.844"} +{"sensors":[{"euler":{"heading":84.125,"pitch":177.5625,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":74.75,"pitch":92.125,"roll":53.3125},"location":"Left Ankle"},{"euler":{"heading":77.6875,"pitch":-161.0625,"roll":73.8125},"location":"Right Ankle"},{"euler":{"heading":79.5,"pitch":140.4375,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":184.25,"pitch":-110.0625,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":152.1875,"pitch":113.6875,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:41.944"} +{"sensors":[{"euler":{"heading":100.6875,"pitch":167.5,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":93.5625,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":73.25,"pitch":-137.625,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":83.9375,"pitch":141.5,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":199.9375,"pitch":-100.625,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":153.6875,"pitch":115.5625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:42.45"} +{"sensors":[{"euler":{"heading":109.8125,"pitch":157.5,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":98.6875,"pitch":91.1875,"roll":70.0},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":-126.6875,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":94.6875,"pitch":137.0,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":213.1875,"pitch":-94.5625,"roll":58.9375},"location":"Right Knee"},{"euler":{"heading":155.25,"pitch":119.25,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:42.145"} +{"sensors":[{"euler":{"heading":121.25,"pitch":149.4375,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":119.1875,"pitch":174.8125,"roll":84.5},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":-132.75,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":97.1875,"pitch":136.375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":206.5,"pitch":-87.75,"roll":67.125},"location":"Right Knee"},{"euler":{"heading":159.6875,"pitch":123.9375,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:42.246"} +{"sensors":[{"euler":{"heading":129.25,"pitch":142.75,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":123.875,"pitch":2.6875,"roll":87.25},"location":"Left Ankle"},{"euler":{"heading":92.8125,"pitch":-176.875,"roll":66.125},"location":"Right Ankle"},{"euler":{"heading":4.5625,"pitch":141.25,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":190.5,"pitch":-2.8125,"roll":86.5},"location":"Right Knee"},{"euler":{"heading":162.1875,"pitch":128.5,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:42.347"} +{"sensors":[{"euler":{"heading":134.375,"pitch":137.3125,"roll":45.4375},"location":"Left Knee"},{"euler":{"heading":123.5,"pitch":-179.9375,"roll":86.875},"location":"Left Ankle"},{"euler":{"heading":115.625,"pitch":137.625,"roll":57.125},"location":"Right Ankle"},{"euler":{"heading":84.125,"pitch":145.25,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":172.0625,"pitch":84.8125,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":163.5,"pitch":132.6875,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:42.448"} +{"sensors":[{"euler":{"heading":52.75,"pitch":132.0,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":131.125,"pitch":-117.8125,"roll":82.25},"location":"Left Ankle"},{"euler":{"heading":121.25,"pitch":134.625,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":73.75,"pitch":147.8125,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":164.3125,"pitch":87.625,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":164.875,"pitch":136.25,"roll":67.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:42.549"} +{"sensors":[{"euler":{"heading":64.125,"pitch":127.125,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":138.375,"pitch":-90.25,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":108.375,"pitch":136.8125,"roll":59.6875},"location":"Right Ankle"},{"euler":{"heading":73.4375,"pitch":147.625,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":164.3125,"pitch":84.5,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":167.625,"pitch":138.5625,"roll":68.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:42.649"} +{"sensors":[{"euler":{"heading":77.875,"pitch":128.1875,"roll":21.0625},"location":"Left Knee"},{"euler":{"heading":154.8125,"pitch":-96.4375,"roll":55.25},"location":"Left Ankle"},{"euler":{"heading":103.25,"pitch":141.375,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":72.3125,"pitch":146.4375,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":166.9375,"pitch":90.25,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":151.75,"pitch":121.5,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:42.751"} +{"sensors":[{"euler":{"heading":77.5,"pitch":130.75,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":139.8125,"pitch":-105.1875,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":150.9375,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":75.375,"pitch":144.0,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":170.5,"pitch":173.375,"roll":83.125},"location":"Right Knee"},{"euler":{"heading":146.0625,"pitch":110.375,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:42.852"} +{"sensors":[{"euler":{"heading":39.25,"pitch":148.0625,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":111.125,"pitch":178.3125,"roll":86.375},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":162.25,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":140.6875,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":173.75,"pitch":178.3125,"roll":87.25},"location":"Right Knee"},{"euler":{"heading":146.25,"pitch":108.8125,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:42.954"} +{"sensors":[{"euler":{"heading":91.75,"pitch":170.5625,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":80.625,"pitch":95.25,"roll":58.625},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":-174.1875,"roll":74.5625},"location":"Right Ankle"},{"euler":{"heading":80.4375,"pitch":139.25,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":178.875,"pitch":-175.5625,"roll":84.8125},"location":"Right Knee"},{"euler":{"heading":149.5,"pitch":111.625,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:43.55"} +{"sensors":[{"euler":{"heading":94.0,"pitch":172.6875,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":83.5,"pitch":97.0625,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":-142.875,"roll":70.6875},"location":"Right Ankle"},{"euler":{"heading":83.4375,"pitch":139.5,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":190.5625,"pitch":-104.75,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":153.8125,"pitch":115.4375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:43.155"} +{"sensors":[{"euler":{"heading":109.1875,"pitch":161.4375,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":97.0625,"pitch":93.5,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":65.875,"pitch":-127.3125,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":88.375,"pitch":137.8125,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":209.875,"pitch":-97.375,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":154.25,"pitch":116.6875,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:43.255"} +{"sensors":[{"euler":{"heading":119.0625,"pitch":151.625,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":111.375,"pitch":90.1875,"roll":77.875},"location":"Left Ankle"},{"euler":{"heading":64.625,"pitch":-128.6875,"roll":53.1875},"location":"Right Ankle"},{"euler":{"heading":95.1875,"pitch":135.9375,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":212.875,"pitch":-91.3125,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":158.375,"pitch":124.0,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:43.357"} +{"sensors":[{"euler":{"heading":128.8125,"pitch":144.5625,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":124.625,"pitch":3.25,"roll":86.6875},"location":"Left Ankle"},{"euler":{"heading":80.5625,"pitch":-151.875,"roll":63.5625},"location":"Right Ankle"},{"euler":{"heading":98.0625,"pitch":137.125,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":199.875,"pitch":-80.6875,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":162.5625,"pitch":129.9375,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:43.458"} +{"sensors":[{"euler":{"heading":134.375,"pitch":138.9375,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":121.9375,"pitch":177.6875,"roll":86.0625},"location":"Left Ankle"},{"euler":{"heading":103.0,"pitch":155.5625,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":0.875,"pitch":143.5625,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":182.125,"pitch":74.9375,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":163.6875,"pitch":133.9375,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:43.558"} +{"sensors":[{"euler":{"heading":50.25,"pitch":134.0625,"roll":42.0625},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":-176.4375,"roll":84.125},"location":"Left Ankle"},{"euler":{"heading":122.1875,"pitch":135.1875,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":80.8125,"pitch":145.625,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":168.75,"pitch":89.625,"roll":68.125},"location":"Right Knee"},{"euler":{"heading":164.25,"pitch":137.625,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:43.659"} +{"sensors":[{"euler":{"heading":58.1875,"pitch":130.0,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":135.6875,"pitch":-112.1875,"roll":75.9375},"location":"Left Ankle"},{"euler":{"heading":117.125,"pitch":136.9375,"roll":54.5},"location":"Right Ankle"},{"euler":{"heading":73.875,"pitch":146.625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":163.5625,"pitch":86.8125,"roll":68.1875},"location":"Right Knee"},{"euler":{"heading":166.5625,"pitch":142.5625,"roll":67.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:43.759"} +{"sensors":[{"euler":{"heading":70.375,"pitch":129.4375,"roll":23.0},"location":"Left Knee"},{"euler":{"heading":140.75,"pitch":-101.25,"roll":64.0625},"location":"Left Ankle"},{"euler":{"heading":106.1875,"pitch":139.5,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":77.25,"pitch":144.375,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":166.25,"pitch":92.5625,"roll":74.375},"location":"Right Knee"},{"euler":{"heading":156.125,"pitch":129.3125,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:43.860"} +{"sensors":[{"euler":{"heading":83.75,"pitch":127.3125,"roll":19.125},"location":"Left Knee"},{"euler":{"heading":156.625,"pitch":-95.3125,"roll":50.6875},"location":"Left Ankle"},{"euler":{"heading":104.5,"pitch":142.625,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":74.75,"pitch":143.75,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":169.5625,"pitch":109.125,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":146.5,"pitch":114.125,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:43.962"} +{"sensors":[{"euler":{"heading":69.1875,"pitch":135.125,"roll":26.1875},"location":"Left Knee"},{"euler":{"heading":137.375,"pitch":-87.125,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":152.3125,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":79.375,"pitch":140.0625,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":173.375,"pitch":175.375,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":144.125,"pitch":111.125,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:44.63"} +{"sensors":[{"euler":{"heading":23.6875,"pitch":154.875,"roll":43.125},"location":"Left Knee"},{"euler":{"heading":101.3125,"pitch":102.375,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":163.0,"roll":72.0},"location":"Right Ankle"},{"euler":{"heading":81.3125,"pitch":138.125,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":177.625,"pitch":-179.3125,"roll":86.3125},"location":"Right Knee"},{"euler":{"heading":144.625,"pitch":109.5,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:44.163"} +{"sensors":[{"euler":{"heading":86.125,"pitch":175.1875,"roll":52.3125},"location":"Left Knee"},{"euler":{"heading":78.5,"pitch":90.875,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":-177.25,"roll":74.1875},"location":"Right Ankle"},{"euler":{"heading":81.5625,"pitch":138.8125,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":184.8125,"pitch":-120.75,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":151.9375,"pitch":113.75,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:44.264"} +{"sensors":[{"euler":{"heading":101.5625,"pitch":168.125,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":86.3125,"pitch":94.5625,"roll":61.5625},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-147.5,"roll":70.1875},"location":"Right Ankle"},{"euler":{"heading":84.0,"pitch":140.375,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":198.8125,"pitch":-105.25,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":155.875,"pitch":116.75,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:44.365"} +{"sensors":[{"euler":{"heading":112.3125,"pitch":157.8125,"roll":51.75},"location":"Left Knee"},{"euler":{"heading":98.9375,"pitch":91.8125,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":65.8125,"pitch":-124.125,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":90.9375,"pitch":137.625,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":212.8125,"pitch":-96.3125,"roll":60.8125},"location":"Right Knee"},{"euler":{"heading":155.125,"pitch":119.3125,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:44.466"} +{"sensors":[{"euler":{"heading":118.5625,"pitch":150.375,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":115.3125,"pitch":89.125,"roll":81.5625},"location":"Left Ankle"},{"euler":{"heading":66.875,"pitch":-130.875,"roll":52.375},"location":"Right Ankle"},{"euler":{"heading":97.125,"pitch":135.1875,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":214.5625,"pitch":-89.0,"roll":61.375},"location":"Right Knee"},{"euler":{"heading":156.25,"pitch":126.75,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:44.566"} +{"sensors":[{"euler":{"heading":126.75,"pitch":144.0625,"roll":48.0625},"location":"Left Knee"},{"euler":{"heading":125.125,"pitch":0.9375,"roll":86.5},"location":"Left Ankle"},{"euler":{"heading":81.4375,"pitch":-152.75,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":96.0625,"pitch":137.0625,"roll":46.0},"location":"Right Hip"},{"euler":{"heading":199.0,"pitch":-75.9375,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":158.6875,"pitch":130.875,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:44.667"} +{"sensors":[{"euler":{"heading":133.0625,"pitch":138.6875,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":117.9375,"pitch":175.875,"roll":84.625},"location":"Left Ankle"},{"euler":{"heading":108.6875,"pitch":151.375,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":86.5,"pitch":142.5625,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":181.125,"pitch":82.5,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":161.375,"pitch":135.9375,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:44.768"} +{"sensors":[{"euler":{"heading":50.3125,"pitch":133.625,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":123.5625,"pitch":-177.5625,"roll":84.75},"location":"Left Ankle"},{"euler":{"heading":125.6875,"pitch":131.4375,"roll":50.9375},"location":"Right Ankle"},{"euler":{"heading":76.6875,"pitch":145.4375,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":89.3125,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":164.125,"pitch":141.0625,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:44.868"} +{"sensors":[{"euler":{"heading":60.875,"pitch":127.875,"roll":16.8125},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":-112.5625,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":116.1875,"pitch":138.1875,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":74.1875,"pitch":146.875,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":85.3125,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":165.625,"pitch":139.8125,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:44.969"} +{"sensors":[{"euler":{"heading":80.875,"pitch":127.1875,"roll":20.0625},"location":"Left Knee"},{"euler":{"heading":151.625,"pitch":-88.5625,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":103.25,"pitch":147.5625,"roll":63.75},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":144.25,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":169.5,"pitch":93.4375,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":150.6875,"pitch":122.0,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:45.70"} +{"sensors":[{"euler":{"heading":79.5,"pitch":131.25,"roll":21.375},"location":"Left Knee"},{"euler":{"heading":140.625,"pitch":-102.375,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":155.375,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":77.9375,"pitch":139.5625,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":173.625,"pitch":174.625,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":144.8125,"pitch":113.375,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:45.171"} +{"sensors":[{"euler":{"heading":40.0,"pitch":147.6875,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":113.5,"pitch":-178.0,"roll":87.125},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":165.1875,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":80.875,"pitch":136.625,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":177.0625,"pitch":179.125,"roll":87.1875},"location":"Right Knee"},{"euler":{"heading":144.5,"pitch":110.25,"roll":44.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:45.271"} +{"sensors":[{"euler":{"heading":93.0,"pitch":170.0625,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":85.8125,"pitch":94.5,"roll":60.5625},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":-177.5,"roll":72.125},"location":"Right Ankle"},{"euler":{"heading":81.8125,"pitch":135.5,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":182.125,"pitch":-174.625,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":148.875,"pitch":112.1875,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:45.371"} +{"sensors":[{"euler":{"heading":89.4375,"pitch":175.4375,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":80.25,"pitch":93.9375,"roll":55.0625},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":-150.9375,"roll":71.5},"location":"Right Ankle"},{"euler":{"heading":83.1875,"pitch":137.0,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":192.5625,"pitch":-104.5625,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":153.375,"pitch":115.1875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:45.472"} +{"sensors":[{"euler":{"heading":107.8125,"pitch":162.875,"roll":50.125},"location":"Left Knee"},{"euler":{"heading":92.5625,"pitch":96.25,"roll":65.75},"location":"Left Ankle"},{"euler":{"heading":71.875,"pitch":-134.875,"roll":61.8125},"location":"Right Ankle"},{"euler":{"heading":86.9375,"pitch":137.6875,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":208.8125,"pitch":-96.8125,"roll":63.25},"location":"Right Knee"},{"euler":{"heading":155.1875,"pitch":117.125,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:45.575"} +{"sensors":[{"euler":{"heading":117.0625,"pitch":153.6875,"roll":50.1875},"location":"Left Knee"},{"euler":{"heading":105.125,"pitch":89.625,"roll":72.5},"location":"Left Ankle"},{"euler":{"heading":60.625,"pitch":-123.625,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":92.9375,"pitch":132.9375,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":214.375,"pitch":-91.6875,"roll":56.8125},"location":"Right Knee"},{"euler":{"heading":156.75,"pitch":121.8125,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:45.675"} +{"sensors":[{"euler":{"heading":123.9375,"pitch":147.375,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":122.5625,"pitch":177.125,"roll":87.0625},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":-134.9375,"roll":58.1875},"location":"Right Ankle"},{"euler":{"heading":97.3125,"pitch":134.4375,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":209.0625,"pitch":-85.25,"roll":65.4375},"location":"Right Knee"},{"euler":{"heading":158.8125,"pitch":127.8125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:45.776"} +{"sensors":[{"euler":{"heading":128.0,"pitch":142.625,"roll":47.0625},"location":"Left Knee"},{"euler":{"heading":117.0,"pitch":109.625,"roll":82.8125},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":175.125,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":92.8125,"pitch":140.25,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":192.3125,"pitch":-1.0,"roll":85.4375},"location":"Right Knee"},{"euler":{"heading":160.9375,"pitch":132.6875,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:45.876"} +{"sensors":[{"euler":{"heading":45.4375,"pitch":136.9375,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":123.75,"pitch":179.5,"roll":87.0},"location":"Left Ankle"},{"euler":{"heading":120.75,"pitch":135.3125,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":81.5,"pitch":143.1875,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":172.8125,"pitch":85.0625,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":162.6875,"pitch":135.6875,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:45.977"} +{"sensors":[{"euler":{"heading":55.75,"pitch":131.625,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":138.6875,"pitch":-81.25,"roll":77.0},"location":"Left Ankle"},{"euler":{"heading":116.25,"pitch":137.3125,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":75.3125,"pitch":145.0625,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":166.6875,"pitch":84.4375,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":164.8125,"pitch":138.25,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:46.78"} +{"sensors":[{"euler":{"heading":65.375,"pitch":130.6875,"roll":25.3125},"location":"Left Knee"},{"euler":{"heading":136.25,"pitch":-105.4375,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":105.8125,"pitch":143.5,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":78.125,"pitch":143.6875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":169.0,"pitch":90.9375,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":158.25,"pitch":130.375,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:46.178"} +{"sensors":[{"euler":{"heading":83.125,"pitch":127.4375,"roll":20.125},"location":"Left Knee"},{"euler":{"heading":154.625,"pitch":-97.25,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":106.375,"pitch":147.6875,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":75.4375,"pitch":143.75,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":173.25,"pitch":114.4375,"roll":80.3125},"location":"Right Knee"},{"euler":{"heading":146.6875,"pitch":116.3125,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:46.280"} +{"sensors":[{"euler":{"heading":67.0,"pitch":136.25,"roll":26.0625},"location":"Left Knee"},{"euler":{"heading":140.75,"pitch":-94.875,"roll":63.5},"location":"Left Ankle"},{"euler":{"heading":103.875,"pitch":151.875,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":80.375,"pitch":140.8125,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":179.625,"pitch":176.8125,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":144.3125,"pitch":113.0625,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:46.381"} +{"sensors":[{"euler":{"heading":24.9375,"pitch":152.75,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":107.8125,"pitch":176.4375,"roll":84.125},"location":"Left Ankle"},{"euler":{"heading":98.125,"pitch":159.1875,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":82.375,"pitch":138.9375,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":183.625,"pitch":-178.5625,"roll":84.625},"location":"Right Knee"},{"euler":{"heading":145.1875,"pitch":110.875,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:46.481"} +{"sensors":[{"euler":{"heading":88.6875,"pitch":173.625,"roll":52.5},"location":"Left Knee"},{"euler":{"heading":83.625,"pitch":97.375,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":91.5625,"pitch":175.0625,"roll":73.0625},"location":"Right Ankle"},{"euler":{"heading":82.6875,"pitch":140.0,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":189.8125,"pitch":-123.4375,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":151.0625,"pitch":112.6875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:46.582"} +{"sensors":[{"euler":{"heading":90.8125,"pitch":174.5625,"roll":51.375},"location":"Left Knee"},{"euler":{"heading":83.0625,"pitch":98.625,"roll":58.0},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-157.8125,"roll":72.1875},"location":"Right Ankle"},{"euler":{"heading":82.4375,"pitch":142.9375,"roll":70.0625},"location":"Right Hip"},{"euler":{"heading":198.9375,"pitch":-108.6875,"roll":72.5625},"location":"Right Knee"},{"euler":{"heading":156.4375,"pitch":115.25,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:46.683"} +{"sensors":[{"euler":{"heading":108.0625,"pitch":161.3125,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":96.8125,"pitch":102.0,"roll":69.875},"location":"Left Ankle"},{"euler":{"heading":78.5625,"pitch":-141.625,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":84.125,"pitch":144.5625,"roll":69.875},"location":"Right Hip"},{"euler":{"heading":213.6875,"pitch":-96.8125,"roll":62.25},"location":"Right Knee"},{"euler":{"heading":156.25,"pitch":114.125,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:46.784"} +{"sensors":[{"euler":{"heading":117.125,"pitch":151.4375,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":105.6875,"pitch":101.1875,"roll":76.0625},"location":"Left Ankle"},{"euler":{"heading":66.0625,"pitch":-127.3125,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":89.0625,"pitch":136.25,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":218.9375,"pitch":-91.25,"roll":55.4375},"location":"Right Knee"},{"euler":{"heading":158.125,"pitch":121.875,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:46.886"} +{"sensors":[{"euler":{"heading":122.0,"pitch":145.5,"roll":48.75},"location":"Left Knee"},{"euler":{"heading":121.75,"pitch":178.4375,"roll":88.4375},"location":"Left Ankle"},{"euler":{"heading":72.125,"pitch":-135.3125,"roll":59.125},"location":"Right Ankle"},{"euler":{"heading":95.4375,"pitch":136.375,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":210.75,"pitch":-88.8125,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":157.625,"pitch":125.875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:46.986"} +{"sensors":[{"euler":{"heading":129.25,"pitch":140.4375,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":121.4375,"pitch":177.75,"roll":87.6875},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":-177.625,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":93.0625,"pitch":140.9375,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":188.875,"pitch":0.8125,"roll":87.1875},"location":"Right Knee"},{"euler":{"heading":161.0625,"pitch":131.0,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:47.87"} +{"sensors":[{"euler":{"heading":46.1875,"pitch":135.5,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":122.625,"pitch":-178.0625,"roll":85.5625},"location":"Left Ankle"},{"euler":{"heading":115.8125,"pitch":134.5,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":81.0625,"pitch":145.375,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":173.25,"pitch":88.625,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":163.9375,"pitch":135.8125,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:47.188"} +{"sensors":[{"euler":{"heading":55.0625,"pitch":130.875,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":131.5,"pitch":-114.0625,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":116.625,"pitch":137.5625,"roll":55.5625},"location":"Right Ankle"},{"euler":{"heading":72.5625,"pitch":147.375,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":166.5625,"pitch":88.8125,"roll":67.8125},"location":"Right Knee"},{"euler":{"heading":164.8125,"pitch":139.625,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:47.288"} +{"sensors":[{"euler":{"heading":72.875,"pitch":127.8125,"roll":22.875},"location":"Left Knee"},{"euler":{"heading":148.375,"pitch":-97.625,"roll":59.5},"location":"Left Ankle"},{"euler":{"heading":105.625,"pitch":145.0,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":76.3125,"pitch":145.125,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":90.0,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":158.0625,"pitch":126.75,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:47.390"} +{"sensors":[{"euler":{"heading":88.5625,"pitch":125.75,"roll":18.4375},"location":"Left Knee"},{"euler":{"heading":147.875,"pitch":-102.25,"roll":55.4375},"location":"Left Ankle"},{"euler":{"heading":102.9375,"pitch":145.625,"roll":63.125},"location":"Right Ankle"},{"euler":{"heading":73.125,"pitch":143.0625,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":168.0625,"pitch":99.125,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":148.6875,"pitch":111.8125,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:47.491"} +{"sensors":[{"euler":{"heading":61.75,"pitch":139.4375,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":126.25,"pitch":-97.8125,"roll":76.3125},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":154.125,"roll":68.75},"location":"Right Ankle"},{"euler":{"heading":78.875,"pitch":138.0,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":170.9375,"pitch":174.125,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":145.1875,"pitch":110.25,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:47.591"} +{"sensors":[{"euler":{"heading":102.3125,"pitch":161.25,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":95.0,"pitch":96.3125,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":88.375,"pitch":166.3125,"roll":71.1875},"location":"Right Ankle"},{"euler":{"heading":81.1875,"pitch":137.375,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":176.5625,"pitch":-188.25,"roll":86.9375},"location":"Right Knee"},{"euler":{"heading":145.625,"pitch":109.25,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:47.692"} +{"sensors":[{"euler":{"heading":88.4375,"pitch":177.9375,"roll":50.4375},"location":"Left Knee"},{"euler":{"heading":77.5625,"pitch":93.8125,"roll":52.625},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":-170.0625,"roll":73.6875},"location":"Right Ankle"},{"euler":{"heading":83.75,"pitch":138.9375,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":187.25,"pitch":-117.0,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":155.375,"pitch":115.5,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:47.794"} +{"sensors":[{"euler":{"heading":101.75,"pitch":168.9375,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":86.125,"pitch":96.5625,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":76.5625,"pitch":-141.6875,"roll":68.375},"location":"Right Ankle"},{"euler":{"heading":87.0,"pitch":140.0,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":201.8125,"pitch":-103.5,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":157.0625,"pitch":116.4375,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:47.895"} +{"sensors":[{"euler":{"heading":112.8125,"pitch":158.3125,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":99.25,"pitch":92.1875,"roll":68.0},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":-122.75,"roll":54.8125},"location":"Right Ankle"},{"euler":{"heading":95.75,"pitch":135.5625,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":215.0,"pitch":-94.25,"roll":59.625},"location":"Right Knee"},{"euler":{"heading":156.1875,"pitch":119.6875,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:47.996"} +{"sensors":[{"euler":{"heading":122.875,"pitch":150.125,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":118.625,"pitch":113.5,"roll":82.3125},"location":"Left Ankle"},{"euler":{"heading":70.1875,"pitch":-132.4375,"roll":55.1875},"location":"Right Ankle"},{"euler":{"heading":101.3125,"pitch":133.9375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":214.3125,"pitch":-90.75,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":161.0,"pitch":125.8125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:48.97"} +{"sensors":[{"euler":{"heading":129.3125,"pitch":144.1875,"roll":48.375},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":2.8125,"roll":87.0625},"location":"Left Ankle"},{"euler":{"heading":91.1875,"pitch":-169.8125,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":8.875,"pitch":138.125,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":198.0625,"pitch":-80.0,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":163.5625,"pitch":128.9375,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:48.197"} +{"sensors":[{"euler":{"heading":134.375,"pitch":139.0,"roll":45.6875},"location":"Left Knee"},{"euler":{"heading":120.875,"pitch":177.125,"roll":84.6875},"location":"Left Ankle"},{"euler":{"heading":108.625,"pitch":143.5625,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":88.1875,"pitch":144.0625,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":84.0625,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":164.4375,"pitch":131.5625,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:48.298"} +{"sensors":[{"euler":{"heading":48.125,"pitch":135.5,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":124.5,"pitch":-177.25,"roll":84.25},"location":"Left Ankle"},{"euler":{"heading":117.5,"pitch":137.0,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":77.0625,"pitch":146.1875,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":167.4375,"pitch":89.9375,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":162.3125,"pitch":134.9375,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:48.399"} +{"sensors":[{"euler":{"heading":56.75,"pitch":131.8125,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":135.625,"pitch":-97.125,"roll":75.375},"location":"Left Ankle"},{"euler":{"heading":115.125,"pitch":137.6875,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":71.75,"pitch":147.875,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":167.125,"pitch":91.4375,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":163.5625,"pitch":138.8125,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:48.501"} +{"sensors":[{"euler":{"heading":72.8125,"pitch":130.0625,"roll":22.25},"location":"Left Knee"},{"euler":{"heading":147.1875,"pitch":-94.8125,"roll":59.8125},"location":"Left Ankle"},{"euler":{"heading":105.5625,"pitch":140.8125,"roll":61.9375},"location":"Right Ankle"},{"euler":{"heading":74.0,"pitch":145.1875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":169.5,"pitch":95.875,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":149.4375,"pitch":123.4375,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:48.601"} +{"sensors":[{"euler":{"heading":75.4375,"pitch":130.9375,"roll":21.75},"location":"Left Knee"},{"euler":{"heading":138.375,"pitch":-105.8125,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":147.625,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":72.5,"pitch":144.6875,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":174.0,"pitch":175.125,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":140.6875,"pitch":109.25,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:48.702"} +{"sensors":[{"euler":{"heading":48.25,"pitch":144.0,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":115.5,"pitch":-175.25,"roll":85.0},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":150.8125,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":77.75,"pitch":141.5,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":180.4375,"pitch":-179.375,"roll":84.8125},"location":"Right Knee"},{"euler":{"heading":143.3125,"pitch":108.6875,"roll":46.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:48.803"} +{"sensors":[{"euler":{"heading":98.25,"pitch":164.75,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":88.625,"pitch":95.3125,"roll":63.5625},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":163.625,"roll":71.875},"location":"Right Ankle"},{"euler":{"heading":81.0625,"pitch":140.625,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":188.8125,"pitch":-127.3125,"roll":80.625},"location":"Right Knee"},{"euler":{"heading":148.5625,"pitch":109.9375,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:48.904"} +{"sensors":[{"euler":{"heading":87.375,"pitch":178.0625,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":77.375,"pitch":90.3125,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":-173.25,"roll":72.8125},"location":"Right Ankle"},{"euler":{"heading":84.5,"pitch":141.4375,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":198.0625,"pitch":-113.5625,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":156.625,"pitch":114.6875,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:49.4"} +{"sensors":[{"euler":{"heading":102.9375,"pitch":166.8125,"roll":51.625},"location":"Left Knee"},{"euler":{"heading":90.25,"pitch":90.5,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":80.3125,"pitch":-142.4375,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":88.9375,"pitch":142.625,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":214.0,"pitch":-101.75,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":159.125,"pitch":115.875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:49.105"} +{"sensors":[{"euler":{"heading":113.875,"pitch":156.0,"roll":52.25},"location":"Left Knee"},{"euler":{"heading":100.125,"pitch":84.8125,"roll":68.875},"location":"Left Ankle"},{"euler":{"heading":63.125,"pitch":-117.375,"roll":54.0},"location":"Right Ankle"},{"euler":{"heading":98.5625,"pitch":136.375,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":217.5,"pitch":-94.3125,"roll":55.625},"location":"Right Knee"},{"euler":{"heading":162.125,"pitch":120.5,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:49.206"} +{"sensors":[{"euler":{"heading":117.5625,"pitch":149.6875,"roll":50.9375},"location":"Left Knee"},{"euler":{"heading":114.5,"pitch":87.9375,"roll":82.6875},"location":"Left Ankle"},{"euler":{"heading":68.8125,"pitch":-131.3125,"roll":55.5625},"location":"Right Ankle"},{"euler":{"heading":100.1875,"pitch":135.4375,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":216.1875,"pitch":-86.9375,"roll":60.6875},"location":"Right Knee"},{"euler":{"heading":162.4375,"pitch":130.1875,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:49.311"} +{"sensors":[{"euler":{"heading":123.875,"pitch":144.0625,"roll":48.375},"location":"Left Knee"},{"euler":{"heading":112.6875,"pitch":83.75,"roll":80.6875},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":-172.0625,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":5.8125,"pitch":139.9375,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":202.9375,"pitch":-82.0,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":163.3125,"pitch":133.25,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:49.411"} +{"sensors":[{"euler":{"heading":129.9375,"pitch":139.0,"roll":45.125},"location":"Left Knee"},{"euler":{"heading":113.0,"pitch":175.125,"roll":83.9375},"location":"Left Ankle"},{"euler":{"heading":119.875,"pitch":137.375,"roll":57.0625},"location":"Right Ankle"},{"euler":{"heading":86.1875,"pitch":144.0625,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":184.75,"pitch":88.3125,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":165.375,"pitch":137.0625,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:49.512"} +{"sensors":[{"euler":{"heading":47.8125,"pitch":134.375,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":119.625,"pitch":-177.625,"roll":84.5625},"location":"Left Ankle"},{"euler":{"heading":130.1875,"pitch":128.1875,"roll":50.0625},"location":"Right Ankle"},{"euler":{"heading":76.3125,"pitch":146.0,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":173.375,"pitch":95.375,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":167.5625,"pitch":142.125,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:49.612"} +{"sensors":[{"euler":{"heading":61.8125,"pitch":129.0,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":132.625,"pitch":-90.9375,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":111.75,"pitch":140.3125,"roll":58.6875},"location":"Right Ankle"},{"euler":{"heading":75.1875,"pitch":147.3125,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":170.9375,"pitch":89.25,"roll":75.5625},"location":"Right Knee"},{"euler":{"heading":167.375,"pitch":137.25,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:49.713"} +{"sensors":[{"euler":{"heading":79.875,"pitch":126.6875,"roll":21.4375},"location":"Left Knee"},{"euler":{"heading":149.75,"pitch":-95.5,"roll":57.5},"location":"Left Ankle"},{"euler":{"heading":103.4375,"pitch":144.25,"roll":63.5},"location":"Right Ankle"},{"euler":{"heading":73.375,"pitch":146.0,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":171.75,"pitch":103.75,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":150.875,"pitch":116.9375,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:49.813"} +{"sensors":[{"euler":{"heading":66.1875,"pitch":136.375,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":134.0625,"pitch":-96.0625,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":152.1875,"roll":67.75},"location":"Right Ankle"},{"euler":{"heading":74.8125,"pitch":142.25,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":174.25,"pitch":176.375,"roll":85.25},"location":"Right Knee"},{"euler":{"heading":145.8125,"pitch":111.0625,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:49.914"} +{"sensors":[{"euler":{"heading":17.875,"pitch":157.0,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":95.9375,"roll":79.0},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":165.4375,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":77.1875,"pitch":139.5625,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":178.75,"pitch":-178.4375,"roll":85.9375},"location":"Right Knee"},{"euler":{"heading":144.8125,"pitch":109.6875,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:50.14"} +{"sensors":[{"euler":{"heading":81.75,"pitch":178.75,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":74.9375,"pitch":91.5,"roll":53.8125},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":-171.125,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":79.8125,"pitch":138.625,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":187.6875,"pitch":-118.1875,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":152.4375,"pitch":115.1875,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:50.120"} +{"sensors":[{"euler":{"heading":97.3125,"pitch":169.75,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":84.8125,"pitch":95.1875,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":76.0625,"pitch":-143.0,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":83.9375,"pitch":140.9375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":203.0,"pitch":-104.4375,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":155.75,"pitch":114.8125,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:50.221"} +{"sensors":[{"euler":{"heading":108.4375,"pitch":159.25,"roll":50.8125},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":92.1875,"roll":68.9375},"location":"Left Ankle"},{"euler":{"heading":67.1875,"pitch":-126.125,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":95.5,"pitch":137.5,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":218.125,"pitch":-95.8125,"roll":58.0625},"location":"Right Knee"},{"euler":{"heading":157.25,"pitch":120.125,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:50.321"} +{"sensors":[{"euler":{"heading":117.5,"pitch":151.5,"roll":49.5625},"location":"Left Knee"},{"euler":{"heading":117.0625,"pitch":174.0625,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":69.375,"pitch":-133.3125,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":102.125,"pitch":133.875,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":218.375,"pitch":-89.375,"roll":59.8125},"location":"Right Knee"},{"euler":{"heading":161.9375,"pitch":127.6875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:50.422"} +{"sensors":[{"euler":{"heading":128.5625,"pitch":144.5,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":125.125,"pitch":1.0625,"roll":88.0625},"location":"Left Ankle"},{"euler":{"heading":88.125,"pitch":-163.9375,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":9.3125,"pitch":138.5,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":202.6875,"pitch":-79.5625,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":165.9375,"pitch":131.1875,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:50.523"} +{"sensors":[{"euler":{"heading":135.3125,"pitch":138.9375,"roll":45.0625},"location":"Left Knee"},{"euler":{"heading":120.6875,"pitch":176.8125,"roll":85.0625},"location":"Left Ankle"},{"euler":{"heading":115.125,"pitch":145.875,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":89.25,"pitch":144.625,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":185.875,"pitch":80.5,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":167.875,"pitch":136.1875,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:50.624"} +{"sensors":[{"euler":{"heading":51.5625,"pitch":134.3125,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":126.0,"pitch":-176.9375,"roll":84.5},"location":"Left Ankle"},{"euler":{"heading":127.0625,"pitch":134.3125,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":77.5625,"pitch":147.75,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":173.75,"pitch":90.0625,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":169.125,"pitch":140.4375,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:50.724"} +{"sensors":[{"euler":{"heading":62.75,"pitch":128.875,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":136.25,"pitch":-113.125,"roll":74.5625},"location":"Left Ankle"},{"euler":{"heading":117.5625,"pitch":138.5625,"roll":54.6875},"location":"Right Ankle"},{"euler":{"heading":73.6875,"pitch":150.0,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":171.9375,"pitch":87.25,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":170.75,"pitch":140.9375,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:50.826"} +{"sensors":[{"euler":{"heading":79.4375,"pitch":127.375,"roll":21.5625},"location":"Left Knee"},{"euler":{"heading":149.875,"pitch":-93.25,"roll":58.8125},"location":"Left Ankle"},{"euler":{"heading":107.5,"pitch":143.625,"roll":62.125},"location":"Right Ankle"},{"euler":{"heading":75.875,"pitch":147.875,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":175.25,"pitch":92.0625,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":156.875,"pitch":122.25,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:50.927"} +{"sensors":[{"euler":{"heading":71.625,"pitch":132.125,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":142.1875,"pitch":-100.1875,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":154.0625,"roll":65.375},"location":"Right Ankle"},{"euler":{"heading":74.375,"pitch":145.625,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":176.1875,"roll":86.0625},"location":"Right Knee"},{"euler":{"heading":152.8125,"pitch":113.125,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:51.27"} +{"sensors":[{"euler":{"heading":24.6875,"pitch":152.0625,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":111.0625,"pitch":2.375,"roll":87.0},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":164.5625,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":74.4375,"pitch":143.8125,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":179.5,"pitch":-178.625,"roll":87.125},"location":"Right Knee"},{"euler":{"heading":147.875,"pitch":110.6875,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:51.128"} +{"sensors":[{"euler":{"heading":86.8125,"pitch":174.5625,"roll":52.4375},"location":"Left Knee"},{"euler":{"heading":80.875,"pitch":90.75,"roll":59.0625},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":179.1875,"roll":71.8125},"location":"Right Ankle"},{"euler":{"heading":76.0,"pitch":144.0625,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":184.8125,"pitch":-113.5625,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":151.875,"pitch":114.75,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:51.229"} +{"sensors":[{"euler":{"heading":99.875,"pitch":168.5625,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":94.875,"roll":59.5625},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-155.0625,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":80.125,"pitch":143.25,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":196.4375,"pitch":-102.75,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":155.9375,"pitch":117.125,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:51.330"} +{"sensors":[{"euler":{"heading":107.375,"pitch":159.625,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":94.75,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":70.9375,"pitch":-136.25,"roll":56.25},"location":"Right Ankle"},{"euler":{"heading":90.6875,"pitch":138.5625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":215.25,"pitch":-96.1875,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":153.75,"pitch":119.9375,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:51.431"} +{"sensors":[{"euler":{"heading":117.9375,"pitch":152.0,"roll":48.75},"location":"Left Knee"},{"euler":{"heading":113.3125,"pitch":97.625,"roll":81.625},"location":"Left Ankle"},{"euler":{"heading":75.0,"pitch":-141.75,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":101.125,"pitch":133.9375,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":216.0,"pitch":-88.0,"roll":62.1875},"location":"Right Knee"},{"euler":{"heading":161.5,"pitch":128.625,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:51.532"} +{"sensors":[{"euler":{"heading":131.0,"pitch":143.9375,"roll":47.3125},"location":"Left Knee"},{"euler":{"heading":126.0,"pitch":1.125,"roll":88.0625},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":-176.625,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":8.6875,"pitch":138.5,"roll":44.875},"location":"Right Hip"},{"euler":{"heading":201.5,"pitch":-76.1875,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":167.25,"pitch":132.4375,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:51.633"} +{"sensors":[{"euler":{"heading":49.3125,"pitch":137.25,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":122.125,"pitch":177.1875,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":118.1875,"pitch":140.8125,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":90.75,"pitch":144.0625,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":181.4375,"pitch":80.5625,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":171.0625,"pitch":136.75,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:51.733"} +{"sensors":[{"euler":{"heading":55.3125,"pitch":132.0,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":128.5625,"pitch":-175.5,"roll":83.125},"location":"Left Ankle"},{"euler":{"heading":132.25,"pitch":127.0,"roll":46.4375},"location":"Right Ankle"},{"euler":{"heading":79.5625,"pitch":148.8125,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":88.4375,"roll":69.0},"location":"Right Knee"},{"euler":{"heading":170.9375,"pitch":141.1875,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:51.834"} +{"sensors":[{"euler":{"heading":65.875,"pitch":127.0625,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":139.5,"pitch":-112.625,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":114.8125,"pitch":135.4375,"roll":54.75},"location":"Right Ankle"},{"euler":{"heading":73.1875,"pitch":149.6875,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":81.8125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":170.0625,"pitch":140.6875,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:51.934"} +{"sensors":[{"euler":{"heading":83.75,"pitch":126.0625,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":155.8125,"pitch":-94.4375,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":101.3125,"pitch":149.3125,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":72.875,"pitch":148.0,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":170.4375,"pitch":82.375,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":154.25,"pitch":121.625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:52.35"} +{"sensors":[{"euler":{"heading":76.9375,"pitch":131.875,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":142.625,"pitch":-101.5,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":157.3125,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":71.875,"pitch":145.0,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":171.4375,"pitch":174.875,"roll":84.875},"location":"Right Knee"},{"euler":{"heading":146.125,"pitch":109.125,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:52.137"} +{"sensors":[{"euler":{"heading":24.375,"pitch":153.875,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":106.0625,"pitch":5.875,"roll":84.0625},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":166.125,"roll":69.5},"location":"Right Ankle"},{"euler":{"heading":72.375,"pitch":143.25,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":175.25,"pitch":179.9375,"roll":88.75},"location":"Right Knee"},{"euler":{"heading":143.4375,"pitch":108.4375,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:52.237"} +{"sensors":[{"euler":{"heading":81.125,"pitch":176.5625,"roll":52.75},"location":"Left Knee"},{"euler":{"heading":78.0625,"pitch":91.75,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":-174.6875,"roll":71.6875},"location":"Right Ankle"},{"euler":{"heading":74.6875,"pitch":142.0,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":181.8125,"pitch":-108.5625,"roll":82.625},"location":"Right Knee"},{"euler":{"heading":142.5,"pitch":118.5625,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:52.337"} +{"sensors":[{"euler":{"heading":100.375,"pitch":168.0625,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":86.1875,"pitch":100.5,"roll":61.875},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":-145.0,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":82.125,"pitch":138.9375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":198.0,"pitch":-101.8125,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":149.9375,"pitch":115.1875,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:52.439"} +{"sensors":[{"euler":{"heading":112.5,"pitch":158.625,"roll":48.4375},"location":"Left Knee"},{"euler":{"heading":98.3125,"pitch":97.9375,"roll":70.1875},"location":"Left Ankle"},{"euler":{"heading":66.9375,"pitch":-133.0625,"roll":55.75},"location":"Right Ankle"},{"euler":{"heading":95.4375,"pitch":134.5625,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":212.25,"pitch":-94.625,"roll":60.125},"location":"Right Knee"},{"euler":{"heading":154.125,"pitch":118.75,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:52.539"} +{"sensors":[{"euler":{"heading":119.0625,"pitch":151.875,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":116.625,"pitch":111.0,"roll":82.8125},"location":"Left Ankle"},{"euler":{"heading":73.125,"pitch":-141.4375,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":98.125,"pitch":135.0625,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":209.375,"pitch":-86.625,"roll":66.375},"location":"Right Knee"},{"euler":{"heading":157.25,"pitch":124.8125,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:52.641"} +{"sensors":[{"euler":{"heading":125.9375,"pitch":146.0,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":122.0625,"pitch":178.0625,"roll":87.4375},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":174.875,"roll":65.125},"location":"Right Ankle"},{"euler":{"heading":4.0625,"pitch":139.625,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":193.9375,"pitch":-5.9375,"roll":83.625},"location":"Right Knee"},{"euler":{"heading":160.75,"pitch":131.0,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:52.742"} +{"sensors":[{"euler":{"heading":43.125,"pitch":140.0625,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":121.5625,"pitch":179.0625,"roll":85.4375},"location":"Left Ankle"},{"euler":{"heading":118.875,"pitch":135.8125,"roll":53.9375},"location":"Right Ankle"},{"euler":{"heading":83.875,"pitch":145.1875,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":178.1875,"pitch":88.375,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":163.25,"pitch":135.75,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:52.843"} +{"sensors":[{"euler":{"heading":50.0625,"pitch":134.75,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":127.75,"pitch":-134.1875,"roll":81.8125},"location":"Left Ankle"},{"euler":{"heading":129.9375,"pitch":126.875,"roll":47.125},"location":"Right Ankle"},{"euler":{"heading":73.875,"pitch":148.5,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":168.75,"pitch":91.3125,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":166.5625,"pitch":142.6875,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:52.943"} +{"sensors":[{"euler":{"heading":64.5625,"pitch":128.5625,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":139.125,"pitch":-102.625,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":120.75,"pitch":133.625,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":148.1875,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":173.8125,"pitch":96.375,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":169.6875,"pitch":141.0625,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:53.44"} +{"sensors":[{"euler":{"heading":86.75,"pitch":125.1875,"roll":20.0},"location":"Left Knee"},{"euler":{"heading":155.0,"pitch":-97.1875,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":110.0,"pitch":140.0,"roll":60.875},"location":"Right Ankle"},{"euler":{"heading":76.4375,"pitch":146.3125,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":174.8125,"pitch":105.75,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":160.6875,"pitch":123.4375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:53.145"} +{"sensors":[{"euler":{"heading":78.9375,"pitch":131.8125,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":142.25,"pitch":-102.5,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":102.875,"pitch":144.4375,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":75.8125,"pitch":143.5,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":175.1875,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":150.25,"pitch":112.0,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:53.246"} +{"sensors":[{"euler":{"heading":36.375,"pitch":149.5,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":112.125,"pitch":176.5625,"roll":85.875},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":150.5,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":78.375,"pitch":141.75,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":181.6875,"pitch":-179.6875,"roll":84.625},"location":"Right Knee"},{"euler":{"heading":147.875,"pitch":110.1875,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:53.347"} +{"sensors":[{"euler":{"heading":95.6875,"pitch":170.0,"roll":50.25},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":96.4375,"roll":60.0},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":164.5625,"roll":71.1875},"location":"Right Ankle"},{"euler":{"heading":80.8125,"pitch":140.8125,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":188.0625,"pitch":-131.8125,"roll":81.0625},"location":"Right Knee"},{"euler":{"heading":151.75,"pitch":112.3125,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:53.450"} +{"sensors":[{"euler":{"heading":92.375,"pitch":176.25,"roll":50.0},"location":"Left Knee"},{"euler":{"heading":82.0625,"pitch":94.25,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":86.25,"pitch":-166.1875,"roll":71.875},"location":"Right Ankle"},{"euler":{"heading":84.0,"pitch":142.125,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":199.3125,"pitch":-112.75,"roll":72.75},"location":"Right Knee"},{"euler":{"heading":158.0625,"pitch":115.9375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:53.551"} +{"sensors":[{"euler":{"heading":109.9375,"pitch":164.4375,"roll":50.1875},"location":"Left Knee"},{"euler":{"heading":95.1875,"pitch":94.0625,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-142.8125,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":88.8125,"pitch":141.8125,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":217.0,"pitch":-101.6875,"roll":61.1875},"location":"Right Knee"},{"euler":{"heading":159.4375,"pitch":116.5625,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:53.652"} +{"sensors":[{"euler":{"heading":119.6875,"pitch":154.625,"roll":50.6875},"location":"Left Knee"},{"euler":{"heading":105.75,"pitch":88.25,"roll":71.6875},"location":"Left Ankle"},{"euler":{"heading":67.25,"pitch":-126.3125,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":97.25,"pitch":135.75,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":219.25,"pitch":-95.625,"roll":55.5},"location":"Right Knee"},{"euler":{"heading":162.375,"pitch":122.0,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:53.752"} +{"sensors":[{"euler":{"heading":127.75,"pitch":146.75,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":125.6875,"pitch":2.625,"roll":86.3125},"location":"Left Ankle"},{"euler":{"heading":70.3125,"pitch":-134.8125,"roll":57.125},"location":"Right Ankle"},{"euler":{"heading":99.5,"pitch":136.1875,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":212.875,"pitch":-88.1875,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":164.3125,"pitch":127.25,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:53.853"} +{"sensors":[{"euler":{"heading":131.75,"pitch":141.875,"roll":46.625},"location":"Left Knee"},{"euler":{"heading":120.0,"pitch":173.5625,"roll":83.375},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":-178.9375,"roll":65.75},"location":"Right Ankle"},{"euler":{"heading":4.6875,"pitch":141.3125,"roll":43.8125},"location":"Right Hip"},{"euler":{"heading":196.125,"pitch":-2.9375,"roll":84.375},"location":"Right Knee"},{"euler":{"heading":165.0,"pitch":133.1875,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:53.954"} +{"sensors":[{"euler":{"heading":49.875,"pitch":136.125,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":124.0,"pitch":178.4375,"roll":86.4375},"location":"Left Ankle"},{"euler":{"heading":124.6875,"pitch":132.625,"roll":50.625},"location":"Right Ankle"},{"euler":{"heading":81.4375,"pitch":145.6875,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":174.5,"pitch":87.9375,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":168.5,"pitch":137.875,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:54.55"} +{"sensors":[{"euler":{"heading":57.875,"pitch":131.0,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":129.5,"pitch":-129.6875,"roll":82.6875},"location":"Left Ankle"},{"euler":{"heading":123.875,"pitch":134.125,"roll":48.0},"location":"Right Ankle"},{"euler":{"heading":72.25,"pitch":148.3125,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":81.875,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":172.125,"pitch":142.875,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:54.156"} +{"sensors":[{"euler":{"heading":69.4375,"pitch":127.5,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":140.25,"pitch":-102.9375,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":107.125,"pitch":140.8125,"roll":59.75},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":147.5,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":167.5625,"pitch":84.75,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":171.4375,"pitch":140.25,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:54.257"} +{"sensors":[{"euler":{"heading":86.8125,"pitch":127.0625,"roll":18.5625},"location":"Left Knee"},{"euler":{"heading":158.5625,"pitch":-95.375,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":143.4375,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":72.3125,"pitch":146.5625,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":94.625,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":154.8125,"pitch":121.625,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:54.358"} +{"sensors":[{"euler":{"heading":78.375,"pitch":133.0,"roll":22.3125},"location":"Left Knee"},{"euler":{"heading":143.1875,"pitch":-100.5,"roll":63.0625},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":149.25,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":73.6875,"pitch":144.4375,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":172.9375,"pitch":174.5625,"roll":84.0},"location":"Right Knee"},{"euler":{"heading":148.125,"pitch":112.0625,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:54.459"} +{"sensors":[{"euler":{"heading":36.3125,"pitch":150.3125,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":111.125,"pitch":176.625,"roll":85.3125},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":158.4375,"roll":68.125},"location":"Right Ankle"},{"euler":{"heading":77.8125,"pitch":141.25,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":176.75,"pitch":179.5625,"roll":86.4375},"location":"Right Knee"},{"euler":{"heading":147.625,"pitch":109.0,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:54.559"} +{"sensors":[{"euler":{"heading":94.875,"pitch":171.0,"roll":50.375},"location":"Left Knee"},{"euler":{"heading":84.4375,"pitch":96.375,"roll":58.5625},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":171.5,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":78.5625,"pitch":141.75,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":182.375,"pitch":-125.0,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":151.0,"pitch":111.75,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:54.659"} +{"sensors":[{"euler":{"heading":98.875,"pitch":170.8125,"roll":48.9375},"location":"Left Knee"},{"euler":{"heading":82.1875,"pitch":94.9375,"roll":54.875},"location":"Left Ankle"},{"euler":{"heading":80.5625,"pitch":-162.625,"roll":71.875},"location":"Right Ankle"},{"euler":{"heading":82.1875,"pitch":142.3125,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":194.1875,"pitch":-110.1875,"roll":75.125},"location":"Right Knee"},{"euler":{"heading":156.75,"pitch":115.625,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:54.760"} +{"sensors":[{"euler":{"heading":110.8125,"pitch":160.625,"roll":50.5},"location":"Left Knee"},{"euler":{"heading":93.25,"pitch":95.125,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":-138.3125,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":89.6875,"pitch":141.0,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":214.25,"pitch":-98.5625,"roll":62.4375},"location":"Right Knee"},{"euler":{"heading":159.8125,"pitch":117.125,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:54.860"} +{"sensors":[{"euler":{"heading":117.0625,"pitch":152.625,"roll":49.625},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":90.8125,"roll":69.8125},"location":"Left Ankle"},{"euler":{"heading":62.3125,"pitch":-130.75,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":96.875,"pitch":135.125,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":215.375,"pitch":-91.3125,"roll":58.3125},"location":"Right Knee"},{"euler":{"heading":162.625,"pitch":124.9375,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:54.961"} +{"sensors":[{"euler":{"heading":122.5,"pitch":147.0625,"roll":47.5625},"location":"Left Knee"},{"euler":{"heading":118.5625,"pitch":174.4375,"roll":84.375},"location":"Left Ankle"},{"euler":{"heading":73.625,"pitch":-147.6875,"roll":62.0},"location":"Right Ankle"},{"euler":{"heading":98.25,"pitch":137.3125,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":202.875,"pitch":-82.375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":163.0,"pitch":128.5,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:55.62"} +{"sensors":[{"euler":{"heading":128.125,"pitch":142.1875,"roll":45.0},"location":"Left Knee"},{"euler":{"heading":113.8125,"pitch":120.0625,"roll":82.375},"location":"Left Ankle"},{"euler":{"heading":99.3125,"pitch":159.6875,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":0.9375,"pitch":143.0,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":184.625,"pitch":4.125,"roll":85.0},"location":"Right Knee"},{"euler":{"heading":164.0,"pitch":132.5,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:55.163"} +{"sensors":[{"euler":{"heading":46.75,"pitch":135.75,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":120.625,"pitch":179.5,"roll":85.3125},"location":"Left Ankle"},{"euler":{"heading":127.75,"pitch":131.0625,"roll":49.1875},"location":"Right Ankle"},{"euler":{"heading":80.5,"pitch":146.25,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":172.75,"pitch":92.125,"roll":69.9375},"location":"Right Knee"},{"euler":{"heading":167.3125,"pitch":136.0,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:55.264"} +{"sensors":[{"euler":{"heading":57.9375,"pitch":131.4375,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":130.1875,"pitch":-124.125,"roll":80.0625},"location":"Left Ankle"},{"euler":{"heading":123.875,"pitch":134.0625,"roll":51.0625},"location":"Right Ankle"},{"euler":{"heading":75.75,"pitch":146.5625,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":169.0,"pitch":89.4375,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":168.3125,"pitch":140.0625,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:55.366"} +{"sensors":[{"euler":{"heading":73.125,"pitch":129.125,"roll":23.0},"location":"Left Knee"},{"euler":{"heading":140.1875,"pitch":-96.0,"roll":67.875},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":134.0625,"roll":59.75},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":145.25,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":173.0625,"pitch":98.75,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":162.1875,"pitch":130.5625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:55.467"} +{"sensors":[{"euler":{"heading":89.875,"pitch":126.3125,"roll":18.25},"location":"Left Knee"},{"euler":{"heading":152.625,"pitch":-97.4375,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":109.5,"pitch":136.9375,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":144.25,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":175.5,"pitch":121.25,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":149.75,"pitch":114.75,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:55.568"} +{"sensors":[{"euler":{"heading":67.25,"pitch":138.6875,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":134.0,"pitch":-94.9375,"roll":75.1875},"location":"Left Ankle"},{"euler":{"heading":104.8125,"pitch":144.5625,"roll":65.75},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":141.125,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":180.75,"pitch":177.125,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":147.5625,"pitch":111.375,"roll":46.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:55.669"} +{"sensors":[{"euler":{"heading":109.9375,"pitch":157.6875,"roll":45.1875},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":98.6875,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":99.5,"pitch":155.875,"roll":69.25},"location":"Right Ankle"},{"euler":{"heading":83.4375,"pitch":139.8125,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":187.0625,"pitch":-154.25,"roll":82.9375},"location":"Right Knee"},{"euler":{"heading":148.875,"pitch":110.625,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:55.769"} +{"sensors":[{"euler":{"heading":91.8125,"pitch":174.0625,"roll":51.8125},"location":"Left Knee"},{"euler":{"heading":81.3125,"pitch":92.4375,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":176.6875,"roll":73.0},"location":"Right Ankle"},{"euler":{"heading":84.25,"pitch":139.9375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":192.625,"pitch":-121.9375,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":156.125,"pitch":115.1875,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:55.870"} +{"sensors":[{"euler":{"heading":106.0,"pitch":165.875,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":89.1875,"pitch":95.5625,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":-153.25,"roll":70.9375},"location":"Right Ankle"},{"euler":{"heading":86.1875,"pitch":142.625,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":204.1875,"pitch":-110.6875,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":159.3125,"pitch":117.4375,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:55.970"} +{"sensors":[{"euler":{"heading":118.25,"pitch":155.625,"roll":50.1875},"location":"Left Knee"},{"euler":{"heading":102.625,"pitch":93.3125,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-124.4375,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":91.875,"pitch":138.25,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":218.375,"pitch":-99.375,"roll":58.3125},"location":"Right Knee"},{"euler":{"heading":160.375,"pitch":121.125,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:56.71"} +{"sensors":[{"euler":{"heading":128.5625,"pitch":147.4375,"roll":49.4375},"location":"Left Knee"},{"euler":{"heading":120.75,"pitch":100.1875,"roll":81.625},"location":"Left Ankle"},{"euler":{"heading":68.3125,"pitch":-131.25,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":97.875,"pitch":135.6875,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":218.1875,"pitch":-93.5,"roll":59.875},"location":"Right Knee"},{"euler":{"heading":164.1875,"pitch":128.9375,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:56.172"} +{"sensors":[{"euler":{"heading":136.3125,"pitch":141.125,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":130.0625,"pitch":1.875,"roll":87.0625},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":-155.3125,"roll":65.25},"location":"Right Ankle"},{"euler":{"heading":98.1875,"pitch":138.9375,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":203.875,"pitch":-82.6875,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":165.875,"pitch":133.9375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:56.272"} +{"sensors":[{"euler":{"heading":50.9375,"pitch":135.625,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":125.1875,"pitch":177.9375,"roll":84.8125},"location":"Left Ankle"},{"euler":{"heading":110.9375,"pitch":146.4375,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":88.0625,"pitch":144.375,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":185.25,"pitch":78.9375,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":167.375,"pitch":137.5625,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:56.374"} +{"sensors":[{"euler":{"heading":56.75,"pitch":131.5625,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":129.4375,"pitch":-146.5,"roll":82.4375},"location":"Left Ankle"},{"euler":{"heading":129.25,"pitch":128.8125,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":75.8125,"pitch":147.25,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":170.625,"pitch":91.25,"roll":67.25},"location":"Right Knee"},{"euler":{"heading":168.3125,"pitch":141.4375,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:56.474"} +{"sensors":[{"euler":{"heading":68.125,"pitch":126.5625,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":140.75,"pitch":-113.75,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":118.875,"pitch":135.875,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":74.0625,"pitch":147.875,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":168.125,"pitch":86.375,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":169.8125,"pitch":140.75,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:56.575"} +{"sensors":[{"euler":{"heading":85.0,"pitch":126.5,"roll":18.9375},"location":"Left Knee"},{"euler":{"heading":164.5,"pitch":-92.9375,"roll":51.375},"location":"Left Ankle"},{"euler":{"heading":108.375,"pitch":136.6875,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":146.8125,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":170.875,"pitch":94.375,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":151.5625,"pitch":123.375,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:56.675"} +{"sensors":[{"euler":{"heading":84.5,"pitch":130.25,"roll":19.3125},"location":"Left Knee"},{"euler":{"heading":156.0625,"pitch":-101.1875,"roll":50.25},"location":"Left Ankle"},{"euler":{"heading":102.6875,"pitch":142.0,"roll":64.375},"location":"Right Ankle"},{"euler":{"heading":75.25,"pitch":143.25,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":173.4375,"pitch":173.5625,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":147.0,"pitch":111.4375,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:56.776"} +{"sensors":[{"euler":{"heading":49.875,"pitch":144.6875,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":126.625,"pitch":-103.0,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":150.875,"roll":68.25},"location":"Right Ankle"},{"euler":{"heading":79.0,"pitch":140.0625,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":176.625,"pitch":177.875,"roll":86.1875},"location":"Right Knee"},{"euler":{"heading":147.0,"pitch":109.3125,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:56.876"} +{"sensors":[{"euler":{"heading":100.0,"pitch":165.4375,"roll":48.125},"location":"Left Knee"},{"euler":{"heading":92.0,"pitch":98.875,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":165.0,"roll":72.125},"location":"Right Ankle"},{"euler":{"heading":79.6875,"pitch":139.8125,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":181.75,"pitch":-176.375,"roll":84.875},"location":"Right Knee"},{"euler":{"heading":149.5625,"pitch":111.6875,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:56.979"} +{"sensors":[{"euler":{"heading":94.9375,"pitch":172.1875,"roll":49.3125},"location":"Left Knee"},{"euler":{"heading":88.25,"pitch":97.875,"roll":60.5625},"location":"Left Ankle"},{"euler":{"heading":83.5625,"pitch":-171.6875,"roll":74.0625},"location":"Right Ankle"},{"euler":{"heading":81.75,"pitch":141.125,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":192.0,"pitch":-113.1875,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":155.25,"pitch":117.125,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:57.80"} +{"sensors":[{"euler":{"heading":113.125,"pitch":144.4375,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":100.0,"pitch":100.1875,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":78.9375,"pitch":-141.5625,"roll":65.3125},"location":"Right Ankle"},{"euler":{"heading":86.375,"pitch":139.6875,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":211.3125,"pitch":-102.3125,"roll":64.6875},"location":"Right Knee"},{"euler":{"heading":156.5,"pitch":118.0625,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:57.181"} +{"sensors":[{"euler":{"heading":121.6875,"pitch":151.0,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":109.5,"pitch":88.5,"roll":75.5},"location":"Left Ankle"},{"euler":{"heading":68.0,"pitch":-128.9375,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":95.9375,"pitch":134.5625,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":216.375,"pitch":-94.25,"roll":59.3125},"location":"Right Knee"},{"euler":{"heading":159.5625,"pitch":124.0625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:57.282"} +{"sensors":[{"euler":{"heading":128.375,"pitch":144.8125,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":128.0,"pitch":-0.625,"roll":89.25},"location":"Left Ankle"},{"euler":{"heading":72.125,"pitch":-138.5625,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":96.6875,"pitch":137.1875,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":206.0,"pitch":-87.5,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":161.6875,"pitch":129.9375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:57.383"} +{"sensors":[{"euler":{"heading":44.375,"pitch":140.25,"roll":44.0625},"location":"Left Knee"},{"euler":{"heading":123.625,"pitch":178.125,"roll":86.375},"location":"Left Ankle"},{"euler":{"heading":100.3125,"pitch":168.5625,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":89.875,"pitch":143.0,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":189.125,"pitch":2.1875,"roll":87.1875},"location":"Right Knee"},{"euler":{"heading":161.8125,"pitch":132.8125,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:57.484"} +{"sensors":[{"euler":{"heading":51.0,"pitch":135.75,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":127.8125,"pitch":-160.1875,"roll":83.8125},"location":"Left Ankle"},{"euler":{"heading":123.0,"pitch":132.0625,"roll":50.5},"location":"Right Ankle"},{"euler":{"heading":78.0,"pitch":146.375,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":169.4375,"pitch":87.25,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":163.9375,"pitch":137.5,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:57.584"} +{"sensors":[{"euler":{"heading":60.6875,"pitch":130.875,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":136.6875,"pitch":-115.25,"roll":75.6875},"location":"Left Ankle"},{"euler":{"heading":123.4375,"pitch":133.6875,"roll":50.6875},"location":"Right Ankle"},{"euler":{"heading":72.125,"pitch":148.625,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":88.9375,"roll":69.4375},"location":"Right Knee"},{"euler":{"heading":168.125,"pitch":141.1875,"roll":66.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:57.685"} +{"sensors":[{"euler":{"heading":76.25,"pitch":128.8125,"roll":21.375},"location":"Left Knee"},{"euler":{"heading":153.375,"pitch":-100.1875,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":112.6875,"pitch":135.0,"roll":59.375},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":145.6875,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":171.0,"pitch":96.5625,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":161.5,"pitch":126.6875,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:57.785"} +{"sensors":[{"euler":{"heading":91.5,"pitch":126.875,"roll":16.0},"location":"Left Knee"},{"euler":{"heading":158.0625,"pitch":-102.9375,"roll":49.125},"location":"Left Ankle"},{"euler":{"heading":110.3125,"pitch":138.5,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":75.1875,"pitch":145.75,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":174.375,"pitch":113.375,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":148.8125,"pitch":113.625,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:57.887"} +{"sensors":[{"euler":{"heading":73.125,"pitch":136.1875,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":136.5,"pitch":-99.375,"roll":70.75},"location":"Left Ankle"},{"euler":{"heading":105.5,"pitch":144.1875,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":79.3125,"pitch":143.0625,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":179.3125,"pitch":176.1875,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":147.625,"pitch":110.8125,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:57.988"} +{"sensors":[{"euler":{"heading":27.5,"pitch":154.1875,"roll":42.0625},"location":"Left Knee"},{"euler":{"heading":105.25,"pitch":104.8125,"roll":78.25},"location":"Left Ankle"},{"euler":{"heading":96.5,"pitch":155.6875,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":81.75,"pitch":141.125,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":182.0,"pitch":-178.375,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":149.0,"pitch":109.75,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:58.89"} +{"sensors":[{"euler":{"heading":92.625,"pitch":172.4375,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":83.4375,"pitch":93.625,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":174.5,"roll":72.3125},"location":"Right Ankle"},{"euler":{"heading":81.25,"pitch":142.75,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":187.875,"pitch":-127.0,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":153.1875,"pitch":113.0,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:58.189"} +{"sensors":[{"euler":{"heading":102.375,"pitch":167.1875,"roll":49.1875},"location":"Left Knee"},{"euler":{"heading":90.875,"pitch":96.0,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":-155.8125,"roll":70.5625},"location":"Right Ankle"},{"euler":{"heading":83.8125,"pitch":143.8125,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":200.4375,"pitch":-111.625,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":156.9375,"pitch":115.9375,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:58.290"} +{"sensors":[{"euler":{"heading":112.9375,"pitch":157.9375,"roll":49.75},"location":"Left Knee"},{"euler":{"heading":102.9375,"pitch":91.375,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":-126.3125,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":94.3125,"pitch":139.1875,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":214.75,"pitch":-97.125,"roll":61.1875},"location":"Right Knee"},{"euler":{"heading":156.3125,"pitch":120.125,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:58.391"} +{"sensors":[{"euler":{"heading":123.75,"pitch":148.875,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":121.625,"pitch":176.125,"roll":85.875},"location":"Left Ankle"},{"euler":{"heading":68.75,"pitch":-133.3125,"roll":55.9375},"location":"Right Ankle"},{"euler":{"heading":98.375,"pitch":136.0,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":214.5,"pitch":-91.4375,"roll":62.0},"location":"Right Knee"},{"euler":{"heading":160.5,"pitch":126.625,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:58.491"} +{"sensors":[{"euler":{"heading":132.25,"pitch":142.5,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":130.125,"pitch":-1.0625,"roll":86.75},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":-163.75,"roll":64.75},"location":"Right Ankle"},{"euler":{"heading":95.3125,"pitch":140.1875,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":200.375,"pitch":-83.0625,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":163.5625,"pitch":129.75,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:58.592"} +{"sensors":[{"euler":{"heading":49.5625,"pitch":136.625,"roll":44.25},"location":"Left Knee"},{"euler":{"heading":127.3125,"pitch":-179.5,"roll":87.375},"location":"Left Ankle"},{"euler":{"heading":114.375,"pitch":143.0625,"roll":58.6875},"location":"Right Ankle"},{"euler":{"heading":358.9375,"pitch":145.125,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":183.25,"pitch":86.9375,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":166.4375,"pitch":133.625,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:58.693"} +{"sensors":[{"euler":{"heading":56.4375,"pitch":132.375,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":133.25,"pitch":-123.5625,"roll":81.375},"location":"Left Ankle"},{"euler":{"heading":130.375,"pitch":131.9375,"roll":47.875},"location":"Right Ankle"},{"euler":{"heading":76.9375,"pitch":147.6875,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":170.625,"pitch":93.625,"roll":67.1875},"location":"Right Knee"},{"euler":{"heading":167.0,"pitch":135.8125,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:58.794"} +{"sensors":[{"euler":{"heading":68.3125,"pitch":127.25,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":145.125,"pitch":-95.25,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":119.5,"pitch":137.625,"roll":53.5625},"location":"Right Ankle"},{"euler":{"heading":74.25,"pitch":148.9375,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":167.75,"pitch":91.25,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":166.875,"pitch":133.4375,"roll":66.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:58.895"} +{"sensors":[{"euler":{"heading":84.5,"pitch":126.875,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":160.25,"pitch":-91.8125,"roll":50.5625},"location":"Left Ankle"},{"euler":{"heading":109.9375,"pitch":138.0625,"roll":60.4375},"location":"Right Ankle"},{"euler":{"heading":73.8125,"pitch":148.8125,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":169.625,"pitch":111.375,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":150.0625,"pitch":117.125,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:58.996"} +{"sensors":[{"euler":{"heading":86.4375,"pitch":129.3125,"roll":19.125},"location":"Left Knee"},{"euler":{"heading":151.5625,"pitch":-100.6875,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":104.9375,"pitch":143.5625,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":144.25,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":105.5625,"roll":80.125},"location":"Right Knee"},{"euler":{"heading":146.25,"pitch":108.375,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:59.97"} +{"sensors":[{"euler":{"heading":54.875,"pitch":144.875,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":119.6875,"pitch":-175.125,"roll":84.3125},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":152.6875,"roll":66.125},"location":"Right Ankle"},{"euler":{"heading":79.9375,"pitch":140.6875,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":175.625,"pitch":176.625,"roll":84.6875},"location":"Right Knee"},{"euler":{"heading":146.5,"pitch":108.875,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:59.198"} +{"sensors":[{"euler":{"heading":102.125,"pitch":163.5625,"roll":47.5625},"location":"Left Knee"},{"euler":{"heading":91.125,"pitch":97.75,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":165.625,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":80.0,"pitch":140.3125,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":180.4375,"pitch":-177.875,"roll":85.375},"location":"Right Knee"},{"euler":{"heading":148.375,"pitch":110.4375,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:59.299"} +{"sensors":[{"euler":{"heading":95.5,"pitch":171.6875,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":86.8125,"pitch":94.3125,"roll":59.375},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":-172.8125,"roll":72.5},"location":"Right Ankle"},{"euler":{"heading":82.0,"pitch":142.25,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":190.25,"pitch":-116.0625,"roll":78.0},"location":"Right Knee"},{"euler":{"heading":155.4375,"pitch":115.75,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:59.399"} +{"sensors":[{"euler":{"heading":112.0625,"pitch":144.125,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":96.875,"pitch":95.1875,"roll":69.3125},"location":"Left Ankle"},{"euler":{"heading":78.9375,"pitch":-144.8125,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":87.0625,"pitch":139.4375,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":211.625,"pitch":-102.0,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":154.625,"pitch":116.5,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:59.500"} +{"sensors":[{"euler":{"heading":119.5625,"pitch":151.375,"roll":48.4375},"location":"Left Knee"},{"euler":{"heading":106.375,"pitch":88.8125,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-133.625,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":97.8125,"pitch":135.875,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":216.1875,"pitch":-93.625,"roll":61.1875},"location":"Right Knee"},{"euler":{"heading":159.0,"pitch":122.1875,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:59.602"} +{"sensors":[{"euler":{"heading":124.8125,"pitch":145.75,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":122.8125,"pitch":179.0625,"roll":88.9375},"location":"Left Ankle"},{"euler":{"heading":76.125,"pitch":-143.75,"roll":60.8125},"location":"Right Ankle"},{"euler":{"heading":96.8125,"pitch":138.9375,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":205.625,"pitch":-87.375,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":160.25,"pitch":128.375,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:59.703"} +{"sensors":[{"euler":{"heading":40.875,"pitch":141.25,"roll":43.5},"location":"Left Knee"},{"euler":{"heading":120.6875,"pitch":179.75,"roll":86.4375},"location":"Left Ankle"},{"euler":{"heading":102.375,"pitch":165.0625,"roll":63.5},"location":"Right Ankle"},{"euler":{"heading":89.0,"pitch":143.9375,"roll":46.0},"location":"Right Hip"},{"euler":{"heading":188.5,"pitch":3.5625,"roll":86.375},"location":"Right Knee"},{"euler":{"heading":161.0625,"pitch":132.25,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:59.803"} +{"sensors":[{"euler":{"heading":49.3125,"pitch":136.0625,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":126.375,"pitch":-133.375,"roll":82.8125},"location":"Left Ankle"},{"euler":{"heading":127.4375,"pitch":130.0,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":77.875,"pitch":147.1875,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":173.1875,"pitch":95.4375,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":164.5625,"pitch":136.625,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:37:59.904"} +{"sensors":[{"euler":{"heading":58.1875,"pitch":131.875,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":135.5,"pitch":-115.25,"roll":74.5625},"location":"Left Ankle"},{"euler":{"heading":126.75,"pitch":132.5,"roll":50.0},"location":"Right Ankle"},{"euler":{"heading":72.375,"pitch":148.5,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":168.8125,"pitch":92.9375,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":168.0,"pitch":142.0625,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:00.4"} +{"sensors":[{"euler":{"heading":75.3125,"pitch":128.3125,"roll":21.875},"location":"Left Knee"},{"euler":{"heading":144.375,"pitch":-99.8125,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":111.375,"pitch":138.0625,"roll":60.6875},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":145.75,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":170.8125,"pitch":97.375,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":162.375,"pitch":114.3125,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:00.105"} +{"sensors":[{"euler":{"heading":90.4375,"pitch":128.125,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":158.5625,"pitch":-99.25,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":111.8125,"pitch":139.4375,"roll":60.8125},"location":"Right Ankle"},{"euler":{"heading":74.875,"pitch":145.9375,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":174.625,"pitch":113.0625,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":148.625,"pitch":110.125,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:00.205"} +{"sensors":[{"euler":{"heading":73.125,"pitch":136.4375,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":139.75,"pitch":-96.25,"roll":68.0},"location":"Left Ankle"},{"euler":{"heading":108.125,"pitch":146.0625,"roll":63.75},"location":"Right Ankle"},{"euler":{"heading":80.3125,"pitch":143.125,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":180.125,"pitch":143.75,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":148.3125,"pitch":108.1875,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:00.306"} +{"sensors":[{"euler":{"heading":26.6875,"pitch":154.8125,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":106.5,"pitch":116.4375,"roll":80.1875},"location":"Left Ankle"},{"euler":{"heading":102.3125,"pitch":154.6875,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":83.8125,"pitch":142.0625,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":185.9375,"pitch":-178.875,"roll":83.625},"location":"Right Knee"},{"euler":{"heading":151.0625,"pitch":108.0625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:00.407"} +{"sensors":[{"euler":{"heading":95.875,"pitch":171.3125,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":85.5625,"pitch":94.875,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":95.125,"pitch":171.4375,"roll":70.75},"location":"Right Ankle"},{"euler":{"heading":84.3125,"pitch":143.5,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":192.1875,"pitch":-129.1875,"roll":79.875},"location":"Right Knee"},{"euler":{"heading":156.5,"pitch":113.5,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:00.508"} +{"sensors":[{"euler":{"heading":106.375,"pitch":165.5625,"roll":48.875},"location":"Left Knee"},{"euler":{"heading":94.75,"pitch":97.5625,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":-158.25,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":85.6875,"pitch":144.8125,"roll":70.0},"location":"Right Hip"},{"euler":{"heading":203.625,"pitch":-109.9375,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":158.9375,"pitch":115.875,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:00.609"} +{"sensors":[{"euler":{"heading":116.8125,"pitch":155.625,"roll":49.875},"location":"Left Knee"},{"euler":{"heading":104.9375,"pitch":87.875,"roll":72.75},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":-127.4375,"roll":58.0},"location":"Right Ankle"},{"euler":{"heading":93.25,"pitch":138.875,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":216.0,"pitch":-95.875,"roll":61.8125},"location":"Right Knee"},{"euler":{"heading":158.875,"pitch":120.8125,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:00.709"} +{"sensors":[{"euler":{"heading":126.25,"pitch":147.5,"roll":48.625},"location":"Left Knee"},{"euler":{"heading":123.625,"pitch":177.5,"roll":87.125},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-134.5625,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":100.4375,"pitch":135.0,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":215.25,"pitch":-91.375,"roll":63.9375},"location":"Right Knee"},{"euler":{"heading":162.625,"pitch":127.9375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:00.809"} +{"sensors":[{"euler":{"heading":132.0,"pitch":141.5,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":129.375,"pitch":-1.0625,"roll":87.6875},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":-166.75,"roll":64.875},"location":"Right Ankle"},{"euler":{"heading":97.875,"pitch":138.0,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":199.8125,"pitch":-84.1875,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":164.1875,"pitch":130.0,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:00.910"} +{"sensors":[{"euler":{"heading":49.625,"pitch":136.875,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":129.5,"pitch":-176.0625,"roll":84.625},"location":"Left Ankle"},{"euler":{"heading":121.1875,"pitch":140.5,"roll":56.6875},"location":"Right Ankle"},{"euler":{"heading":87.8125,"pitch":143.9375,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":180.5625,"pitch":94.75,"roll":75.5625},"location":"Right Knee"},{"euler":{"heading":164.625,"pitch":132.75,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:01.10"} +{"sensors":[{"euler":{"heading":56.0,"pitch":132.6875,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":134.625,"pitch":-116.1875,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":134.0625,"pitch":129.3125,"roll":47.3125},"location":"Right Ankle"},{"euler":{"heading":77.5625,"pitch":146.125,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":97.0,"roll":65.125},"location":"Right Knee"},{"euler":{"heading":166.875,"pitch":137.9375,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:01.111"} +{"sensors":[{"euler":{"heading":66.8125,"pitch":127.875,"roll":29.9375},"location":"Left Knee"},{"euler":{"heading":143.3125,"pitch":-106.875,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":117.25,"pitch":138.875,"roll":56.25},"location":"Right Ankle"},{"euler":{"heading":74.1875,"pitch":148.375,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":166.9375,"pitch":92.9375,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":169.0625,"pitch":139.125,"roll":66.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:01.212"} +{"sensors":[{"euler":{"heading":86.875,"pitch":127.8125,"roll":17.4375},"location":"Left Knee"},{"euler":{"heading":166.0,"pitch":-98.875,"roll":49.125},"location":"Left Ankle"},{"euler":{"heading":109.0625,"pitch":147.875,"roll":62.1875},"location":"Right Ankle"},{"euler":{"heading":75.8125,"pitch":147.1875,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":170.6875,"pitch":101.6875,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":154.375,"pitch":119.375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:01.312"} +{"sensors":[{"euler":{"heading":88.5625,"pitch":130.9375,"roll":17.0625},"location":"Left Knee"},{"euler":{"heading":152.0,"pitch":-105.875,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":145.0625,"roll":64.375},"location":"Right Ankle"},{"euler":{"heading":77.8125,"pitch":143.4375,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":173.5,"pitch":121.125,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":148.75,"pitch":108.125,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:01.413"} +{"sensors":[{"euler":{"heading":56.6875,"pitch":142.6875,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":124.625,"pitch":-109.125,"roll":81.3125},"location":"Left Ankle"},{"euler":{"heading":104.75,"pitch":151.125,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":83.25,"pitch":142.125,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":181.8125,"pitch":156.3125,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":150.0,"pitch":107.375,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:01.514"} +{"sensors":[{"euler":{"heading":106.0625,"pitch":161.5625,"roll":47.3125},"location":"Left Knee"},{"euler":{"heading":95.25,"pitch":99.6875,"roll":69.5},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":163.0625,"roll":69.375},"location":"Right Ankle"},{"euler":{"heading":83.9375,"pitch":143.25,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":186.9375,"pitch":-177.3125,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":152.75,"pitch":108.6875,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:01.615"} +{"sensors":[{"euler":{"heading":96.3125,"pitch":171.25,"roll":49.375},"location":"Left Knee"},{"euler":{"heading":85.8125,"pitch":93.25,"roll":58.75},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":-176.1875,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":84.6875,"pitch":145.875,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":195.5,"pitch":-124.5625,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":156.9375,"pitch":114.5625,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:01.716"} +{"sensors":[{"euler":{"heading":111.3125,"pitch":160.6875,"roll":48.25},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":94.5625,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-147.875,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":87.375,"pitch":144.875,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":211.1875,"pitch":-106.0625,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":156.5625,"pitch":115.25,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:01.816"} +{"sensors":[{"euler":{"heading":120.0625,"pitch":151.9375,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":106.25,"pitch":89.9375,"roll":75.3125},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":-132.125,"roll":55.0},"location":"Right Ankle"},{"euler":{"heading":97.1875,"pitch":138.0625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":216.25,"pitch":-95.5625,"roll":60.5},"location":"Right Knee"},{"euler":{"heading":160.375,"pitch":120.8125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:01.918"} +{"sensors":[{"euler":{"heading":124.8125,"pitch":146.25,"roll":46.375},"location":"Left Knee"},{"euler":{"heading":122.8125,"pitch":179.625,"roll":88.5},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-141.6875,"roll":58.875},"location":"Right Ankle"},{"euler":{"heading":98.0625,"pitch":138.1875,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":209.5625,"pitch":-89.6875,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":161.25,"pitch":127.0625,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:02.19"} +{"sensors":[{"euler":{"heading":40.0625,"pitch":141.875,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":123.5,"pitch":-178.625,"roll":86.8125},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":-178.1875,"roll":71.75},"location":"Right Ankle"},{"euler":{"heading":91.0,"pitch":143.0,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":192.3125,"pitch":-0.5,"roll":89.4375},"location":"Right Knee"},{"euler":{"heading":162.0,"pitch":130.75,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:02.120"} +{"sensors":[{"euler":{"heading":46.625,"pitch":137.625,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":126.75,"pitch":-127.0,"roll":82.3125},"location":"Left Ankle"},{"euler":{"heading":120.125,"pitch":137.0,"roll":57.0},"location":"Right Ankle"},{"euler":{"heading":79.9375,"pitch":147.0625,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":174.625,"pitch":93.4375,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":164.5625,"pitch":134.75,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:02.221"} +{"sensors":[{"euler":{"heading":56.8125,"pitch":132.625,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":136.1875,"pitch":-112.375,"roll":74.0},"location":"Left Ankle"},{"euler":{"heading":122.5625,"pitch":133.5,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":72.5,"pitch":148.6875,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":168.375,"pitch":95.5625,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":167.8125,"pitch":140.0625,"roll":67.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:02.321"} +{"sensors":[{"euler":{"heading":71.75,"pitch":129.0,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":143.0625,"pitch":-100.875,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":111.625,"pitch":143.1875,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":73.875,"pitch":148.1875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":96.0,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":164.3125,"pitch":132.5,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:02.422"} +{"sensors":[{"euler":{"heading":87.8125,"pitch":143.75,"roll":16.625},"location":"Left Knee"},{"euler":{"heading":152.6875,"pitch":-105.25,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":109.5625,"pitch":144.4375,"roll":61.4375},"location":"Right Ankle"},{"euler":{"heading":73.0,"pitch":147.6875,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":171.1875,"pitch":114.0,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":150.3125,"pitch":113.875,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:02.522"} +{"sensors":[{"euler":{"heading":71.125,"pitch":136.9375,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":135.375,"pitch":-96.6875,"roll":72.4375},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":148.875,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":78.9375,"pitch":145.1875,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":177.5,"pitch":140.1875,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":149.5,"pitch":110.9375,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:02.623"} +{"sensors":[{"euler":{"heading":26.0625,"pitch":154.625,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":103.3125,"pitch":110.875,"roll":77.625},"location":"Left Ankle"},{"euler":{"heading":101.0,"pitch":157.9375,"roll":69.0},"location":"Right Ankle"},{"euler":{"heading":83.6875,"pitch":143.4375,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":185.1875,"pitch":-173.3125,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":151.3125,"pitch":109.25,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:02.724"} +{"sensors":[{"euler":{"heading":93.75,"pitch":171.375,"roll":49.9375},"location":"Left Knee"},{"euler":{"heading":83.0625,"pitch":92.3125,"roll":58.875},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":178.25,"roll":71.4375},"location":"Right Ankle"},{"euler":{"heading":84.875,"pitch":144.375,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":192.9375,"pitch":-132.0,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":155.875,"pitch":113.5625,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:02.824"} +{"sensors":[{"euler":{"heading":107.5,"pitch":164.1875,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":96.125,"pitch":99.8125,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":-151.375,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":86.4375,"pitch":146.125,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":205.4375,"pitch":-111.3125,"roll":69.6875},"location":"Right Knee"},{"euler":{"heading":157.0,"pitch":113.1875,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:02.925"} +{"sensors":[{"euler":{"heading":121.25,"pitch":154.125,"roll":48.8125},"location":"Left Knee"},{"euler":{"heading":109.8125,"pitch":87.4375,"roll":74.5},"location":"Left Ankle"},{"euler":{"heading":67.9375,"pitch":-123.3125,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":94.8125,"pitch":140.375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":214.6875,"pitch":-98.4375,"roll":62.0},"location":"Right Knee"},{"euler":{"heading":159.9375,"pitch":116.9375,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:03.26"} +{"sensors":[{"euler":{"heading":128.625,"pitch":147.0625,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":126.375,"pitch":178.8125,"roll":87.875},"location":"Left Ankle"},{"euler":{"heading":72.625,"pitch":-135.75,"roll":55.5625},"location":"Right Ankle"},{"euler":{"heading":99.1875,"pitch":138.125,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":213.1875,"pitch":-92.0625,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":162.5,"pitch":124.25,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:03.127"} +{"sensors":[{"euler":{"heading":133.5625,"pitch":142.0625,"roll":45.4375},"location":"Left Knee"},{"euler":{"heading":127.5625,"pitch":1.0625,"roll":87.4375},"location":"Left Ankle"},{"euler":{"heading":95.1875,"pitch":-172.875,"roll":65.1875},"location":"Right Ankle"},{"euler":{"heading":95.625,"pitch":140.8125,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":194.25,"pitch":-177.5,"roll":87.4375},"location":"Right Knee"},{"euler":{"heading":162.8125,"pitch":127.5,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:03.228"} +{"sensors":[{"euler":{"heading":49.5,"pitch":136.375,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":127.625,"pitch":-177.875,"roll":86.0},"location":"Left Ankle"},{"euler":{"heading":124.75,"pitch":134.8125,"roll":54.25},"location":"Right Ankle"},{"euler":{"heading":84.75,"pitch":145.5625,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":175.75,"pitch":98.125,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":164.3125,"pitch":130.3125,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:03.329"} +{"sensors":[{"euler":{"heading":56.1875,"pitch":131.9375,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":133.8125,"pitch":-116.875,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":137.1875,"pitch":127.75,"roll":47.0625},"location":"Right Ankle"},{"euler":{"heading":76.625,"pitch":148.4375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":169.8125,"pitch":101.0625,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":165.8125,"pitch":134.1875,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:03.430"} +{"sensors":[{"euler":{"heading":70.25,"pitch":127.5,"roll":26.875},"location":"Left Knee"},{"euler":{"heading":144.125,"pitch":-92.75,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":120.875,"pitch":138.125,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":74.125,"pitch":149.5625,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":167.375,"pitch":97.75,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":165.3125,"pitch":133.5,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:03.531"} +{"sensors":[{"euler":{"heading":88.6875,"pitch":126.0625,"roll":17.5625},"location":"Left Knee"},{"euler":{"heading":159.5,"pitch":-95.375,"roll":52.9375},"location":"Left Ankle"},{"euler":{"heading":111.9375,"pitch":142.75,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":147.5,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":169.1875,"pitch":104.125,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":153.875,"pitch":115.75,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:03.632"} +{"sensors":[{"euler":{"heading":80.0,"pitch":133.125,"roll":21.6875},"location":"Left Knee"},{"euler":{"heading":142.5,"pitch":-98.1875,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":106.25,"pitch":145.8125,"roll":64.5},"location":"Right Ankle"},{"euler":{"heading":74.8125,"pitch":145.875,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":172.875,"pitch":120.1875,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":148.5,"pitch":109.6875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:03.733"} +{"sensors":[{"euler":{"heading":34.75,"pitch":150.0625,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":111.6875,"pitch":175.3125,"roll":84.6875},"location":"Left Ankle"},{"euler":{"heading":100.5625,"pitch":153.4375,"roll":67.3125},"location":"Right Ankle"},{"euler":{"heading":78.0625,"pitch":144.0,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":176.9375,"pitch":145.4375,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":147.4375,"pitch":108.25,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:03.834"} +{"sensors":[{"euler":{"heading":93.3125,"pitch":169.1875,"roll":49.6875},"location":"Left Knee"},{"euler":{"heading":85.4375,"pitch":94.3125,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":170.25,"roll":70.4375},"location":"Right Ankle"},{"euler":{"heading":78.875,"pitch":144.0625,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":182.625,"pitch":-177.5,"roll":83.625},"location":"Right Knee"},{"euler":{"heading":150.8125,"pitch":111.3125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:03.935"} +{"sensors":[{"euler":{"heading":99.625,"pitch":169.125,"roll":48.25},"location":"Left Knee"},{"euler":{"heading":89.0625,"pitch":97.1875,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":-161.875,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":82.3125,"pitch":145.6875,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":194.375,"pitch":-120.1875,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":156.125,"pitch":114.0625,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:04.35"} +{"sensors":[{"euler":{"heading":114.9375,"pitch":157.9375,"roll":47.6875},"location":"Left Knee"},{"euler":{"heading":100.875,"pitch":93.75,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":74.25,"pitch":-135.1875,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":88.8125,"pitch":142.3125,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":213.9375,"pitch":-103.25,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":156.125,"pitch":116.9375,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:04.136"} +{"sensors":[{"euler":{"heading":124.25,"pitch":149.0625,"roll":47.375},"location":"Left Knee"},{"euler":{"heading":118.125,"pitch":176.75,"roll":85.375},"location":"Left Ankle"},{"euler":{"heading":75.0,"pitch":-140.125,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":98.5625,"pitch":136.9375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":215.125,"pitch":-96.5,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":162.3125,"pitch":125.0625,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:04.239"} +{"sensors":[{"euler":{"heading":130.625,"pitch":143.5625,"roll":45.3125},"location":"Left Knee"},{"euler":{"heading":128.5,"pitch":-2.0625,"roll":87.875},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":-167.1875,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":95.75,"pitch":139.75,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":200.375,"pitch":-90.5,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":162.1875,"pitch":127.75,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:04.340"} +{"sensors":[{"euler":{"heading":46.0,"pitch":139.5,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":125.75,"pitch":-177.9375,"roll":85.75},"location":"Left Ankle"},{"euler":{"heading":117.125,"pitch":144.75,"roll":58.0625},"location":"Right Ankle"},{"euler":{"heading":87.3125,"pitch":144.5625,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":182.0,"pitch":94.1875,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":162.25,"pitch":131.6875,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:04.441"} +{"sensors":[{"euler":{"heading":53.4375,"pitch":134.5625,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":-118.9375,"roll":80.5},"location":"Left Ankle"},{"euler":{"heading":131.4375,"pitch":131.125,"roll":48.1875},"location":"Right Ankle"},{"euler":{"heading":77.25,"pitch":148.125,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":169.5,"pitch":96.0625,"roll":67.0625},"location":"Right Knee"},{"euler":{"heading":165.5625,"pitch":137.0,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:04.541"} +{"sensors":[{"euler":{"heading":66.5,"pitch":129.375,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":142.3125,"pitch":-107.8125,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":119.5625,"pitch":139.1875,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":75.375,"pitch":148.25,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":167.0625,"pitch":90.5625,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":168.25,"pitch":139.5,"roll":67.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:04.643"} +{"sensors":[{"euler":{"heading":84.0625,"pitch":128.0,"roll":18.8125},"location":"Left Knee"},{"euler":{"heading":158.0,"pitch":-92.125,"roll":54.6875},"location":"Left Ankle"},{"euler":{"heading":107.625,"pitch":143.625,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":74.6875,"pitch":147.0625,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":169.3125,"pitch":96.9375,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":155.6875,"pitch":124.1875,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:04.743"} +{"sensors":[{"euler":{"heading":82.0,"pitch":132.0,"roll":20.5},"location":"Left Knee"},{"euler":{"heading":147.0,"pitch":-103.125,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":103.8125,"pitch":146.875,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":75.75,"pitch":144.6875,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":116.5,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":149.125,"pitch":110.875,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:04.844"} +{"sensors":[{"euler":{"heading":44.375,"pitch":147.0,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":118.375,"pitch":-177.9375,"roll":86.625},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":155.5625,"roll":65.625},"location":"Right Ankle"},{"euler":{"heading":79.9375,"pitch":142.375,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":176.125,"pitch":176.25,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":149.5625,"pitch":108.9375,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:04.945"} +{"sensors":[{"euler":{"heading":98.625,"pitch":166.5625,"roll":48.4375},"location":"Left Knee"},{"euler":{"heading":91.25,"pitch":97.5625,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":167.5625,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":80.6875,"pitch":141.875,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":180.9375,"pitch":-178.0,"roll":84.4375},"location":"Right Knee"},{"euler":{"heading":150.625,"pitch":110.75,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:05.45"} +{"sensors":[{"euler":{"heading":96.4375,"pitch":169.875,"roll":47.625},"location":"Left Knee"},{"euler":{"heading":87.4375,"pitch":96.875,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":86.25,"pitch":-172.875,"roll":72.0625},"location":"Right Ankle"},{"euler":{"heading":81.9375,"pitch":144.0,"roll":69.5},"location":"Right Hip"},{"euler":{"heading":191.625,"pitch":-122.875,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":154.875,"pitch":115.3125,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:05.149"} +{"sensors":[{"euler":{"heading":112.625,"pitch":159.875,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":97.375,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":-146.3125,"roll":64.5},"location":"Right Ankle"},{"euler":{"heading":85.8125,"pitch":141.5625,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":209.9375,"pitch":-104.75,"roll":65.375},"location":"Right Knee"},{"euler":{"heading":154.0,"pitch":115.1875,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:05.250"} +{"sensors":[{"euler":{"heading":123.8125,"pitch":151.1875,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":109.1875,"pitch":89.1875,"roll":75.875},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-137.4375,"roll":55.0},"location":"Right Ankle"},{"euler":{"heading":96.375,"pitch":136.1875,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":217.5625,"pitch":-97.4375,"roll":59.6875},"location":"Right Knee"},{"euler":{"heading":160.9375,"pitch":122.1875,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:05.351"} +{"sensors":[{"euler":{"heading":131.8125,"pitch":144.375,"roll":45.6875},"location":"Left Knee"},{"euler":{"heading":128.75,"pitch":-178.5,"roll":88.5},"location":"Left Ankle"},{"euler":{"heading":78.9375,"pitch":-144.4375,"roll":61.0},"location":"Right Ankle"},{"euler":{"heading":98.0625,"pitch":137.1875,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":207.25,"pitch":-94.0,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":162.3125,"pitch":129.125,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:05.452"} +{"sensors":[{"euler":{"heading":48.8125,"pitch":139.4375,"roll":42.375},"location":"Left Knee"},{"euler":{"heading":128.6875,"pitch":-178.25,"roll":86.5},"location":"Left Ankle"},{"euler":{"heading":102.125,"pitch":166.6875,"roll":64.5},"location":"Right Ankle"},{"euler":{"heading":92.0,"pitch":142.625,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":189.4375,"pitch":178.25,"roll":88.0625},"location":"Right Knee"},{"euler":{"heading":162.625,"pitch":132.375,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:05.552"} +{"sensors":[{"euler":{"heading":54.625,"pitch":135.125,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":133.0,"pitch":-120.0,"roll":81.4375},"location":"Left Ankle"},{"euler":{"heading":125.6875,"pitch":133.6875,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":79.8125,"pitch":146.875,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":174.625,"pitch":95.5625,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":165.0,"pitch":137.125,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:05.653"} +{"sensors":[{"euler":{"heading":65.0625,"pitch":130.375,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":142.375,"pitch":-109.4375,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":127.1875,"pitch":133.4375,"roll":51.25},"location":"Right Ankle"},{"euler":{"heading":72.625,"pitch":150.3125,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":171.4375,"pitch":95.875,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":168.5,"pitch":141.3125,"roll":67.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:05.754"} +{"sensors":[{"euler":{"heading":80.375,"pitch":129.625,"roll":19.375},"location":"Left Knee"},{"euler":{"heading":151.4375,"pitch":-99.125,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":116.0,"pitch":138.5625,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":78.125,"pitch":147.25,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":105.6875,"roll":77.25},"location":"Right Knee"},{"euler":{"heading":160.5625,"pitch":127.625,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:05.854"} +{"sensors":[{"euler":{"heading":88.5625,"pitch":129.8125,"roll":16.3125},"location":"Left Knee"},{"euler":{"heading":150.5625,"pitch":-103.5,"roll":54.3125},"location":"Left Ankle"},{"euler":{"heading":112.9375,"pitch":142.5625,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":75.9375,"pitch":146.0,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":178.75,"pitch":126.75,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":149.4375,"pitch":112.625,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:05.955"} +{"sensors":[{"euler":{"heading":64.25,"pitch":139.375,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":130.1875,"pitch":-100.6875,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":108.3125,"pitch":150.75,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":82.25,"pitch":143.1875,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":184.25,"pitch":178.375,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":149.9375,"pitch":110.6875,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:06.55"} +{"sensors":[{"euler":{"heading":22.25,"pitch":157.5625,"roll":44.375},"location":"Left Knee"},{"euler":{"heading":100.9375,"pitch":100.75,"roll":74.5625},"location":"Left Ankle"},{"euler":{"heading":100.0,"pitch":163.625,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":84.125,"pitch":142.3125,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":187.875,"pitch":-150.375,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":152.125,"pitch":109.875,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:06.157"} +{"sensors":[{"euler":{"heading":94.375,"pitch":172.3125,"roll":49.5625},"location":"Left Knee"},{"euler":{"heading":85.5625,"pitch":93.375,"roll":58.3125},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":-178.5,"roll":70.3125},"location":"Right Ankle"},{"euler":{"heading":83.0625,"pitch":145.0625,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":194.3125,"pitch":-121.5625,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":156.1875,"pitch":114.375,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:06.258"} +{"sensors":[{"euler":{"heading":109.8125,"pitch":163.1875,"roll":47.3125},"location":"Left Knee"},{"euler":{"heading":97.875,"pitch":96.6875,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":84.375,"pitch":-152.375,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":84.3125,"pitch":145.0,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":208.1875,"pitch":-105.25,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":156.0,"pitch":114.625,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:06.359"} +{"sensors":[{"euler":{"heading":117.5625,"pitch":153.375,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":105.1875,"pitch":93.9375,"roll":74.1875},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-138.3125,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":95.75,"pitch":139.125,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":218.25,"pitch":-94.9375,"roll":60.125},"location":"Right Knee"},{"euler":{"heading":158.75,"pitch":119.9375,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:06.460"} +{"sensors":[{"euler":{"heading":122.25,"pitch":148.0625,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":122.375,"pitch":179.0625,"roll":88.3125},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":-147.25,"roll":58.3125},"location":"Right Ankle"},{"euler":{"heading":97.875,"pitch":137.75,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":212.8125,"pitch":-91.125,"roll":68.1875},"location":"Right Knee"},{"euler":{"heading":159.4375,"pitch":126.8125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:06.560"} +{"sensors":[{"euler":{"heading":36.25,"pitch":144.4375,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":-3.0,"roll":86.1875},"location":"Left Ankle"},{"euler":{"heading":99.4375,"pitch":179.9375,"roll":64.0},"location":"Right Ankle"},{"euler":{"heading":91.875,"pitch":141.1875,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":194.75,"pitch":-2.375,"roll":87.5625},"location":"Right Knee"},{"euler":{"heading":160.75,"pitch":132.0,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:06.661"} +{"sensors":[{"euler":{"heading":44.625,"pitch":139.3125,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":123.3125,"pitch":-176.375,"roll":84.25},"location":"Left Ankle"},{"euler":{"heading":129.625,"pitch":134.6875,"roll":51.6875},"location":"Right Ankle"},{"euler":{"heading":83.6875,"pitch":145.5625,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":100.8125,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":165.0,"pitch":138.5625,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:06.762"} +{"sensors":[{"euler":{"heading":56.4375,"pitch":133.4375,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":132.1875,"pitch":-117.4375,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":135.3125,"pitch":127.8125,"roll":47.5},"location":"Right Ankle"},{"euler":{"heading":76.8125,"pitch":147.3125,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":172.375,"pitch":101.1875,"roll":67.8125},"location":"Right Knee"},{"euler":{"heading":168.8125,"pitch":143.5625,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:06.862"} +{"sensors":[{"euler":{"heading":71.875,"pitch":128.9375,"roll":24.25},"location":"Left Knee"},{"euler":{"heading":159.5625,"pitch":-97.4375,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":118.375,"pitch":137.5,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":76.875,"pitch":147.625,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":171.4375,"pitch":100.3125,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":168.5,"pitch":137.625,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:06.963"} +{"sensors":[{"euler":{"heading":89.6875,"pitch":127.0625,"roll":16.625},"location":"Left Knee"},{"euler":{"heading":156.3125,"pitch":-103.0625,"roll":53.3125},"location":"Left Ankle"},{"euler":{"heading":114.8125,"pitch":141.0625,"roll":59.9375},"location":"Right Ankle"},{"euler":{"heading":75.875,"pitch":145.9375,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":173.4375,"pitch":117.375,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":155.0625,"pitch":116.9375,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:07.64"} +{"sensors":[{"euler":{"heading":75.625,"pitch":134.9375,"roll":23.375},"location":"Left Knee"},{"euler":{"heading":145.0625,"pitch":-94.8125,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":112.25,"pitch":142.5,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":79.8125,"pitch":144.5,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":181.1875,"pitch":147.25,"roll":81.4375},"location":"Right Knee"},{"euler":{"heading":151.75,"pitch":111.625,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:07.165"} +{"sensors":[{"euler":{"heading":34.1875,"pitch":151.625,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":111.375,"pitch":118.4375,"roll":82.375},"location":"Left Ankle"},{"euler":{"heading":104.375,"pitch":152.75,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":84.9375,"pitch":141.5625,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":185.0,"pitch":177.375,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":152.875,"pitch":110.375,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:07.265"} +{"sensors":[{"euler":{"heading":96.6875,"pitch":169.9375,"roll":49.125},"location":"Left Knee"},{"euler":{"heading":87.6875,"pitch":94.4375,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":167.0625,"roll":69.75},"location":"Right Ankle"},{"euler":{"heading":85.6875,"pitch":142.125,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":190.6875,"pitch":-142.1875,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":156.5,"pitch":114.6875,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:07.366"} +{"sensors":[{"euler":{"heading":106.125,"pitch":165.8125,"roll":48.125},"location":"Left Knee"},{"euler":{"heading":94.8125,"pitch":99.8125,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":-165.625,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":85.8125,"pitch":145.125,"roll":68.5},"location":"Right Hip"},{"euler":{"heading":200.625,"pitch":-117.0,"roll":73.0},"location":"Right Knee"},{"euler":{"heading":159.4375,"pitch":115.0625,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:07.467"} +{"sensors":[{"euler":{"heading":116.4375,"pitch":156.4375,"roll":47.3125},"location":"Left Knee"},{"euler":{"heading":105.3125,"pitch":96.125,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":78.75,"pitch":-137.5,"roll":60.875},"location":"Right Ankle"},{"euler":{"heading":93.0,"pitch":141.5,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":216.5,"pitch":-103.1875,"roll":61.625},"location":"Right Knee"},{"euler":{"heading":157.75,"pitch":118.5625,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:07.567"} +{"sensors":[{"euler":{"heading":128.125,"pitch":147.4375,"roll":46.4375},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":176.75,"roll":86.125},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":-142.0625,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":96.4375,"pitch":136.375,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":218.0625,"pitch":-95.875,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":162.125,"pitch":124.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:07.669"} +{"sensors":[{"euler":{"heading":48.0,"pitch":141.375,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":135.4375,"pitch":-4.125,"roll":85.8125},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":-188.625,"roll":64.3125},"location":"Right Ankle"},{"euler":{"heading":97.125,"pitch":138.1875,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":204.0625,"pitch":-93.4375,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":164.9375,"pitch":129.375,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:07.770"} +{"sensors":[{"euler":{"heading":53.8125,"pitch":136.875,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":132.6875,"pitch":-176.625,"roll":85.5625},"location":"Left Ankle"},{"euler":{"heading":124.375,"pitch":135.8125,"roll":55.75},"location":"Right Ankle"},{"euler":{"heading":87.625,"pitch":144.1875,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":185.75,"pitch":98.9375,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":167.375,"pitch":135.1875,"roll":64.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:07.870"} +{"sensors":[{"euler":{"heading":60.5625,"pitch":132.625,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":137.0,"pitch":-115.875,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":135.125,"pitch":130.0625,"roll":47.0},"location":"Right Ankle"},{"euler":{"heading":77.4375,"pitch":147.5,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":172.125,"pitch":96.5,"roll":68.125},"location":"Right Knee"},{"euler":{"heading":168.75,"pitch":139.3125,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:07.971"} +{"sensors":[{"euler":{"heading":72.8125,"pitch":128.125,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":145.25,"pitch":-111.125,"roll":67.1875},"location":"Left Ankle"},{"euler":{"heading":127.125,"pitch":134.75,"roll":54.1875},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":148.8125,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":174.9375,"pitch":103.3125,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":168.3125,"pitch":135.6875,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:08.72"} +{"sensors":[{"euler":{"heading":90.1875,"pitch":126.5625,"roll":17.1875},"location":"Left Knee"},{"euler":{"heading":159.375,"pitch":-102.3125,"roll":52.5625},"location":"Left Ankle"},{"euler":{"heading":124.625,"pitch":132.75,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":147.4375,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":181.0625,"pitch":120.375,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":156.375,"pitch":120.1875,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:08.173"} +{"sensors":[{"euler":{"heading":83.875,"pitch":132.5,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":146.75,"pitch":-103.3125,"roll":63.0625},"location":"Left Ankle"},{"euler":{"heading":122.6875,"pitch":134.375,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":82.0,"pitch":144.875,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":187.0,"pitch":150.0,"roll":82.125},"location":"Right Knee"},{"euler":{"heading":153.125,"pitch":113.5,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:08.273"} +{"sensors":[{"euler":{"heading":44.375,"pitch":146.0,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":122.625,"pitch":-176.4375,"roll":85.4375},"location":"Left Ankle"},{"euler":{"heading":118.3125,"pitch":139.625,"roll":63.0},"location":"Right Ankle"},{"euler":{"heading":86.5,"pitch":143.25,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":192.8125,"pitch":-171.4375,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":151.75,"pitch":112.125,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:08.374"} +{"sensors":[{"euler":{"heading":108.0625,"pitch":161.6875,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":100.25,"pitch":98.875,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":112.625,"pitch":147.9375,"roll":66.25},"location":"Right Ankle"},{"euler":{"heading":87.0625,"pitch":144.875,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":197.8125,"pitch":-135.5625,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":153.6875,"pitch":111.375,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:08.474"} +{"sensors":[{"euler":{"heading":98.1875,"pitch":171.5625,"roll":49.0625},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":91.875,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":106.0,"pitch":162.5,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":86.375,"pitch":147.9375,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":204.25,"pitch":-116.4375,"roll":75.1875},"location":"Right Knee"},{"euler":{"heading":159.125,"pitch":114.6875,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:08.575"} +{"sensors":[{"euler":{"heading":114.75,"pitch":161.0,"roll":48.5625},"location":"Left Knee"},{"euler":{"heading":103.0625,"pitch":91.8125,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":94.0,"pitch":-163.125,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":89.5625,"pitch":146.5625,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":215.5625,"pitch":-102.875,"roll":65.375},"location":"Right Knee"},{"euler":{"heading":160.4375,"pitch":115.25,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:08.676"} +{"sensors":[{"euler":{"heading":124.75,"pitch":151.1875,"roll":49.25},"location":"Left Knee"},{"euler":{"heading":113.25,"pitch":79.8125,"roll":75.625},"location":"Left Ankle"},{"euler":{"heading":77.375,"pitch":-138.6875,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":97.875,"pitch":136.6875,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":217.9375,"pitch":-94.125,"roll":59.25},"location":"Right Knee"},{"euler":{"heading":163.25,"pitch":119.9375,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:08.776"} +{"sensors":[{"euler":{"heading":131.1875,"pitch":144.125,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":129.125,"pitch":0.4375,"roll":88.625},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":-152.375,"roll":62.6875},"location":"Right Ankle"},{"euler":{"heading":102.9375,"pitch":135.8125,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":209.0,"pitch":-89.75,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":163.875,"pitch":127.0,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:08.877"} +{"sensors":[{"euler":{"heading":47.25,"pitch":139.375,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":127.375,"pitch":2.375,"roll":85.0},"location":"Left Ankle"},{"euler":{"heading":107.5625,"pitch":160.6875,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":95.875,"pitch":141.0,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":192.3125,"pitch":179.25,"roll":89.0625},"location":"Right Knee"},{"euler":{"heading":164.1875,"pitch":131.6875,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:08.977"} +{"sensors":[{"euler":{"heading":53.8125,"pitch":134.5625,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":129.0,"pitch":-177.0625,"roll":86.0},"location":"Left Ankle"},{"euler":{"heading":134.5,"pitch":127.0,"roll":48.625},"location":"Right Ankle"},{"euler":{"heading":83.9375,"pitch":144.6875,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":177.0625,"pitch":102.1875,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":166.1875,"pitch":134.0,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:09.78"} +{"sensors":[{"euler":{"heading":60.6875,"pitch":131.125,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":134.75,"pitch":-111.8125,"roll":78.625},"location":"Left Ankle"},{"euler":{"heading":133.5,"pitch":125.375,"roll":47.9375},"location":"Right Ankle"},{"euler":{"heading":76.6875,"pitch":146.125,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":172.25,"pitch":98.5,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":167.1875,"pitch":139.0625,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:09.182"} +{"sensors":[{"euler":{"heading":72.625,"pitch":129.0,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":147.25,"pitch":-100.5,"roll":62.1875},"location":"Left Ankle"},{"euler":{"heading":124.5625,"pitch":131.0625,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":78.5,"pitch":147.125,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":111.5,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":163.25,"pitch":131.25,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:09.283"} +{"sensors":[{"euler":{"heading":90.75,"pitch":126.5,"roll":16.1875},"location":"Left Knee"},{"euler":{"heading":155.6875,"pitch":-99.875,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":123.5,"pitch":133.8125,"roll":58.25},"location":"Right Ankle"},{"euler":{"heading":78.0,"pitch":147.0625,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":182.25,"pitch":133.5,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":154.9375,"pitch":116.5625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:09.383"} +{"sensors":[{"euler":{"heading":76.75,"pitch":134.0,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":141.5625,"pitch":-94.75,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":120.1875,"pitch":139.4375,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":82.4375,"pitch":145.125,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":189.25,"pitch":168.3125,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":152.9375,"pitch":113.75,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:09.485"} +{"sensors":[{"euler":{"heading":39.75,"pitch":148.8125,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":116.6875,"pitch":174.0,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":115.875,"pitch":145.875,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":86.0625,"pitch":144.5625,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":196.0,"pitch":-150.875,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":153.4375,"pitch":111.4375,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:09.586"} +{"sensors":[{"euler":{"heading":105.0625,"pitch":166.0625,"roll":48.75},"location":"Left Knee"},{"euler":{"heading":93.0625,"pitch":92.25,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":107.9375,"pitch":157.375,"roll":67.625},"location":"Right Ankle"},{"euler":{"heading":87.75,"pitch":144.75,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":199.375,"pitch":-126.5,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":159.0625,"pitch":114.0625,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:09.687"} +{"sensors":[{"euler":{"heading":126.8125,"pitch":161.625,"roll":48.5},"location":"Left Knee"},{"euler":{"heading":95.6875,"pitch":92.25,"roll":64.625},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":-179.875,"roll":69.3125},"location":"Right Ankle"},{"euler":{"heading":86.875,"pitch":148.75,"roll":70.1875},"location":"Right Hip"},{"euler":{"heading":206.9375,"pitch":-108.875,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":162.125,"pitch":115.3125,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:09.788"} +{"sensors":[{"euler":{"heading":122.625,"pitch":152.3125,"roll":48.1875},"location":"Left Knee"},{"euler":{"heading":105.1875,"pitch":88.5625,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-143.0625,"roll":61.8125},"location":"Right Ankle"},{"euler":{"heading":94.4375,"pitch":144.25,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":216.4375,"pitch":-97.125,"roll":62.0625},"location":"Right Knee"},{"euler":{"heading":160.5625,"pitch":118.0625,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:09.888"} +{"sensors":[{"euler":{"heading":128.0,"pitch":145.875,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":111.0625,"pitch":82.4375,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-140.9375,"roll":57.8125},"location":"Right Ankle"},{"euler":{"heading":98.5625,"pitch":137.0625,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":215.75,"pitch":-89.875,"roll":62.5},"location":"Right Knee"},{"euler":{"heading":163.625,"pitch":125.625,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:09.989"} +{"sensors":[{"euler":{"heading":41.5625,"pitch":141.8125,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":126.9375,"pitch":-0.875,"roll":87.0625},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":-160.5625,"roll":63.375},"location":"Right Ankle"},{"euler":{"heading":97.0,"pitch":137.25,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":198.1875,"pitch":-85.5,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":163.4375,"pitch":131.1875,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:10.90"} +{"sensors":[{"euler":{"heading":47.625,"pitch":137.5625,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":121.9375,"pitch":179.0,"roll":88.125},"location":"Left Ankle"},{"euler":{"heading":109.125,"pitch":141.875,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":88.0625,"pitch":142.875,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":179.5,"pitch":94.1875,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":163.5625,"pitch":133.9375,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:10.191"} +{"sensors":[{"euler":{"heading":54.8125,"pitch":133.1875,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":127.1875,"pitch":-174.25,"roll":83.4375},"location":"Left Ankle"},{"euler":{"heading":133.25,"pitch":130.5625,"roll":48.25},"location":"Right Ankle"},{"euler":{"heading":77.0,"pitch":146.5,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":169.3125,"pitch":100.1875,"roll":66.8125},"location":"Right Knee"},{"euler":{"heading":166.0625,"pitch":138.5625,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:10.292"} +{"sensors":[{"euler":{"heading":66.375,"pitch":130.4375,"roll":26.375},"location":"Left Knee"},{"euler":{"heading":136.375,"pitch":-112.25,"roll":70.8125},"location":"Left Ankle"},{"euler":{"heading":118.75,"pitch":140.0,"roll":54.375},"location":"Right Ankle"},{"euler":{"heading":76.375,"pitch":146.25,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":167.3125,"pitch":96.25,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":166.0625,"pitch":138.5,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:10.392"} +{"sensors":[{"euler":{"heading":90.625,"pitch":125.1875,"roll":16.75},"location":"Left Knee"},{"euler":{"heading":163.9375,"pitch":-93.5625,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":111.875,"pitch":146.5625,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":77.9375,"pitch":144.625,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":171.3125,"pitch":111.3125,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":157.375,"pitch":120.4375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:10.493"} +{"sensors":[{"euler":{"heading":88.8125,"pitch":131.5,"roll":17.5},"location":"Left Knee"},{"euler":{"heading":151.75,"pitch":-98.0,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":111.875,"pitch":144.875,"roll":62.0625},"location":"Right Ankle"},{"euler":{"heading":79.75,"pitch":143.8125,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":180.0,"pitch":141.375,"roll":82.0},"location":"Right Knee"},{"euler":{"heading":150.625,"pitch":112.6875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:10.594"} +{"sensors":[{"euler":{"heading":49.5,"pitch":145.375,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":130.0625,"pitch":-63.875,"roll":82.0},"location":"Left Ankle"},{"euler":{"heading":108.5,"pitch":149.875,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":82.9375,"pitch":142.6875,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":185.8125,"pitch":-179.0625,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":149.25,"pitch":109.3125,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:10.694"} +{"sensors":[{"euler":{"heading":104.9375,"pitch":163.0625,"roll":47.4375},"location":"Left Knee"},{"euler":{"heading":95.8125,"pitch":97.5625,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":99.625,"pitch":162.875,"roll":68.625},"location":"Right Ankle"},{"euler":{"heading":85.8125,"pitch":142.625,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":188.75,"pitch":-141.1875,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":152.5625,"pitch":110.3125,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:10.795"} +{"sensors":[{"euler":{"heading":102.75,"pitch":168.6875,"roll":47.9375},"location":"Left Knee"},{"euler":{"heading":92.0,"pitch":96.125,"roll":61.3125},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":-175.75,"roll":71.125},"location":"Right Ankle"},{"euler":{"heading":86.1875,"pitch":144.625,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":195.25,"pitch":-118.25,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":157.0,"pitch":114.125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:10.895"} +{"sensors":[{"euler":{"heading":118.3125,"pitch":156.6875,"roll":46.8125},"location":"Left Knee"},{"euler":{"heading":100.4375,"pitch":98.5,"roll":70.875},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":-151.4375,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":88.25,"pitch":143.3125,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":212.0625,"pitch":-106.375,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":157.75,"pitch":115.1875,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:10.996"} +{"sensors":[{"euler":{"heading":126.5,"pitch":149.1875,"roll":45.8125},"location":"Left Knee"},{"euler":{"heading":108.375,"pitch":88.5,"roll":74.9375},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-139.375,"roll":56.875},"location":"Right Ankle"},{"euler":{"heading":95.125,"pitch":138.375,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":215.4375,"pitch":-95.6875,"roll":60.0625},"location":"Right Knee"},{"euler":{"heading":161.1875,"pitch":120.6875,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:11.97"} +{"sensors":[{"euler":{"heading":42.5,"pitch":143.75,"roll":44.25},"location":"Left Knee"},{"euler":{"heading":125.8125,"pitch":179.5625,"roll":88.75},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":-155.75,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":99.125,"pitch":137.5625,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":204.8125,"pitch":-91.5,"roll":72.6875},"location":"Right Knee"},{"euler":{"heading":163.0,"pitch":127.75,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:11.198"} +{"sensors":[{"euler":{"heading":47.4375,"pitch":139.4375,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":123.0625,"pitch":179.4375,"roll":86.6875},"location":"Left Ankle"},{"euler":{"heading":104.3125,"pitch":159.125,"roll":70.6875},"location":"Right Ankle"},{"euler":{"heading":92.3125,"pitch":142.0625,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":176.4375,"roll":86.375},"location":"Right Knee"},{"euler":{"heading":163.75,"pitch":132.625,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:11.299"} +{"sensors":[{"euler":{"heading":54.5625,"pitch":135.0,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":128.375,"pitch":-131.4375,"roll":82.9375},"location":"Left Ankle"},{"euler":{"heading":131.875,"pitch":130.6875,"roll":50.25},"location":"Right Ankle"},{"euler":{"heading":79.875,"pitch":147.4375,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":174.125,"pitch":101.0,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":165.6875,"pitch":136.6875,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:11.399"} +{"sensors":[{"euler":{"heading":64.375,"pitch":131.4375,"roll":29.9375},"location":"Left Knee"},{"euler":{"heading":139.3125,"pitch":-112.5,"roll":72.625},"location":"Left Ankle"},{"euler":{"heading":128.6875,"pitch":133.3125,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":74.9375,"pitch":148.6875,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":95.3125,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":165.9375,"pitch":138.75,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:11.500"} +{"sensors":[{"euler":{"heading":83.375,"pitch":128.6875,"roll":17.625},"location":"Left Knee"},{"euler":{"heading":151.75,"pitch":-97.25,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":116.25,"pitch":141.5,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":146.5625,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":171.0625,"pitch":105.375,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":156.25,"pitch":124.6875,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:11.601"} +{"sensors":[{"euler":{"heading":97.5,"pitch":127.75,"roll":13.3125},"location":"Left Knee"},{"euler":{"heading":157.1875,"pitch":-101.875,"roll":52.5},"location":"Left Ankle"},{"euler":{"heading":117.125,"pitch":140.75,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":145.25,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":177.625,"pitch":127.3125,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":149.75,"pitch":112.125,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:11.702"} +{"sensors":[{"euler":{"heading":80.3125,"pitch":135.9375,"roll":23.125},"location":"Left Knee"},{"euler":{"heading":141.0,"pitch":-97.0625,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":110.6875,"pitch":145.75,"roll":63.0625},"location":"Right Ankle"},{"euler":{"heading":83.5,"pitch":141.9375,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":181.8125,"pitch":155.4375,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":149.4375,"pitch":111.375,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:11.802"} +{"sensors":[{"euler":{"heading":32.125,"pitch":153.625,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":107.875,"pitch":106.5,"roll":78.5},"location":"Left Ankle"},{"euler":{"heading":102.75,"pitch":156.4375,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":84.3125,"pitch":141.0,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":184.875,"pitch":-177.9375,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":149.625,"pitch":110.25,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:11.903"} +{"sensors":[{"euler":{"heading":99.75,"pitch":168.8125,"roll":47.75},"location":"Left Knee"},{"euler":{"heading":87.125,"pitch":93.5625,"roll":59.3125},"location":"Left Ankle"},{"euler":{"heading":94.8125,"pitch":170.875,"roll":70.0625},"location":"Right Ankle"},{"euler":{"heading":82.6875,"pitch":142.875,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":190.9375,"pitch":-127.8125,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":154.125,"pitch":114.5,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:12.4"} +{"sensors":[{"euler":{"heading":113.5,"pitch":161.875,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":94.8125,"pitch":94.4375,"roll":66.0625},"location":"Left Ankle"},{"euler":{"heading":87.75,"pitch":-157.8125,"roll":68.4375},"location":"Right Ankle"},{"euler":{"heading":85.9375,"pitch":144.375,"roll":69.0},"location":"Right Hip"},{"euler":{"heading":205.0625,"pitch":-109.8125,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":156.6875,"pitch":118.0625,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:12.105"} +{"sensors":[{"euler":{"heading":123.375,"pitch":152.4375,"roll":46.5625},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":89.0625,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":-136.25,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":94.4375,"pitch":137.25,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":215.0625,"pitch":-98.0625,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":157.125,"pitch":122.0,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:12.205"} +{"sensors":[{"euler":{"heading":134.1875,"pitch":144.6875,"roll":45.125},"location":"Left Knee"},{"euler":{"heading":127.75,"pitch":0.9375,"roll":88.0},"location":"Left Ankle"},{"euler":{"heading":77.3125,"pitch":-143.5,"roll":58.0625},"location":"Right Ankle"},{"euler":{"heading":99.125,"pitch":136.0,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":210.5625,"pitch":-92.6875,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":161.5625,"pitch":129.0625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:12.306"} +{"sensors":[{"euler":{"heading":51.75,"pitch":138.5,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":133.8125,"pitch":-0.375,"roll":86.625},"location":"Left Ankle"},{"euler":{"heading":96.375,"pitch":-178.6875,"roll":64.0625},"location":"Right Ankle"},{"euler":{"heading":95.375,"pitch":140.0625,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":195.9375,"pitch":-4.1875,"roll":85.75},"location":"Right Knee"},{"euler":{"heading":165.8125,"pitch":133.4375,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:12.406"} +{"sensors":[{"euler":{"heading":58.75,"pitch":133.6875,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":-176.875,"roll":86.375},"location":"Left Ankle"},{"euler":{"heading":123.25,"pitch":138.1875,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":88.0,"pitch":143.125,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":178.375,"pitch":88.125,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":167.9375,"pitch":135.875,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:12.507"} +{"sensors":[{"euler":{"heading":67.625,"pitch":129.9375,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":-74.5625,"roll":75.875},"location":"Left Ankle"},{"euler":{"heading":131.1875,"pitch":136.25,"roll":47.1875},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":147.3125,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":170.3125,"pitch":86.1875,"roll":67.875},"location":"Right Knee"},{"euler":{"heading":170.0625,"pitch":140.125,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:12.608"} +{"sensors":[{"euler":{"heading":81.125,"pitch":127.4375,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":146.5625,"pitch":-95.75,"roll":66.375},"location":"Left Ankle"},{"euler":{"heading":118.25,"pitch":140.5,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":79.125,"pitch":147.4375,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":171.875,"pitch":96.25,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":167.375,"pitch":134.6875,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:12.708"} +{"sensors":[{"euler":{"heading":96.4375,"pitch":126.375,"roll":14.0},"location":"Left Knee"},{"euler":{"heading":160.5,"pitch":-103.1875,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":116.5625,"pitch":139.9375,"roll":58.6875},"location":"Right Ankle"},{"euler":{"heading":78.0625,"pitch":146.75,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":112.5,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":152.875,"pitch":119.375,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:12.809"} +{"sensors":[{"euler":{"heading":85.875,"pitch":132.8125,"roll":19.3125},"location":"Left Knee"},{"euler":{"heading":142.5625,"pitch":-107.1875,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":112.375,"pitch":146.3125,"roll":61.1875},"location":"Right Ankle"},{"euler":{"heading":81.0625,"pitch":143.75,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":180.5,"pitch":175.4375,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":148.8125,"pitch":112.375,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:12.909"} +{"sensors":[{"euler":{"heading":42.75,"pitch":148.9375,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":113.75,"pitch":176.375,"roll":86.25},"location":"Left Ankle"},{"euler":{"heading":104.4375,"pitch":154.8125,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":84.3125,"pitch":140.875,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":184.5625,"pitch":-179.25,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":147.4375,"pitch":110.75,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:13.11"} +{"sensors":[{"euler":{"heading":102.6875,"pitch":166.4375,"roll":47.5625},"location":"Left Knee"},{"euler":{"heading":90.9375,"pitch":94.8125,"roll":61.25},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":170.375,"roll":69.4375},"location":"Right Ankle"},{"euler":{"heading":84.6875,"pitch":140.8125,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-129.0625,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":150.375,"pitch":113.1875,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:13.112"} +{"sensors":[{"euler":{"heading":107.3125,"pitch":166.6875,"roll":47.0625},"location":"Left Knee"},{"euler":{"heading":90.875,"pitch":95.125,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":-164.9375,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":84.6875,"pitch":144.3125,"roll":69.6875},"location":"Right Hip"},{"euler":{"heading":199.1875,"pitch":-108.75,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":156.875,"pitch":116.3125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:13.213"} +{"sensors":[{"euler":{"heading":121.8125,"pitch":155.8125,"roll":47.0},"location":"Left Knee"},{"euler":{"heading":103.125,"pitch":90.0,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":76.75,"pitch":-138.75,"roll":58.75},"location":"Right Ankle"},{"euler":{"heading":91.0625,"pitch":142.9375,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":216.0,"pitch":-96.8125,"roll":61.6875},"location":"Right Knee"},{"euler":{"heading":156.75,"pitch":118.4375,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:13.313"} +{"sensors":[{"euler":{"heading":130.75,"pitch":147.1875,"roll":46.9375},"location":"Left Knee"},{"euler":{"heading":120.25,"pitch":90.6875,"roll":81.5625},"location":"Left Ankle"},{"euler":{"heading":70.5625,"pitch":-136.3125,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":96.75,"pitch":134.5625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":215.3125,"pitch":-91.75,"roll":60.0625},"location":"Right Knee"},{"euler":{"heading":162.1875,"pitch":125.625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:13.414"} +{"sensors":[{"euler":{"heading":49.0625,"pitch":140.6875,"roll":44.6875},"location":"Left Knee"},{"euler":{"heading":131.0625,"pitch":-0.0625,"roll":88.625},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":-156.75,"roll":61.75},"location":"Right Ankle"},{"euler":{"heading":99.875,"pitch":135.9375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":202.875,"pitch":-87.625,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":164.1875,"pitch":129.9375,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:13.515"} +{"sensors":[{"euler":{"heading":55.5,"pitch":135.625,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":129.3125,"pitch":179.9375,"roll":88.125},"location":"Left Ankle"},{"euler":{"heading":114.3125,"pitch":151.875,"roll":58.3125},"location":"Right Ankle"},{"euler":{"heading":91.5,"pitch":142.625,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":184.875,"pitch":92.9375,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":165.3125,"pitch":132.625,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:13.617"} +{"sensors":[{"euler":{"heading":61.6875,"pitch":131.25,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":134.25,"pitch":-121.3125,"roll":83.0},"location":"Left Ankle"},{"euler":{"heading":45.6875,"pitch":128.3125,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":82.1875,"pitch":145.0,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":169.4375,"pitch":96.8125,"roll":66.875},"location":"Right Knee"},{"euler":{"heading":167.0,"pitch":135.875,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:13.717"} +{"sensors":[{"euler":{"heading":70.25,"pitch":127.8125,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":143.25,"pitch":-105.0,"roll":74.5625},"location":"Left Ankle"},{"euler":{"heading":127.8125,"pitch":137.5,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":75.8125,"pitch":147.625,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":166.5,"pitch":93.0625,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":169.125,"pitch":140.9375,"roll":67.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:13.818"} +{"sensors":[{"euler":{"heading":84.1875,"pitch":127.5625,"roll":18.0625},"location":"Left Knee"},{"euler":{"heading":153.25,"pitch":-96.625,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":111.625,"pitch":142.8125,"roll":58.875},"location":"Right Ankle"},{"euler":{"heading":80.625,"pitch":144.5625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":169.4375,"pitch":99.5625,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":161.5625,"pitch":129.625,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:13.919"} +{"sensors":[{"euler":{"heading":98.125,"pitch":125.5,"roll":13.0625},"location":"Left Knee"},{"euler":{"heading":159.1875,"pitch":-101.375,"roll":50.3125},"location":"Left Ankle"},{"euler":{"heading":108.5,"pitch":145.8125,"roll":60.8125},"location":"Right Ankle"},{"euler":{"heading":79.3125,"pitch":142.0625,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":172.5625,"pitch":120.5625,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":151.75,"pitch":115.1875,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:14.19"} +{"sensors":[{"euler":{"heading":77.8125,"pitch":136.25,"roll":22.3125},"location":"Left Knee"},{"euler":{"heading":136.9375,"pitch":-98.3125,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":103.25,"pitch":153.375,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":82.75,"pitch":139.125,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":176.75,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":147.375,"pitch":111.0,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:14.120"} +{"sensors":[{"euler":{"heading":32.25,"pitch":153.9375,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":104.1875,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":98.375,"pitch":161.6875,"roll":67.5},"location":"Right Ankle"},{"euler":{"heading":84.8125,"pitch":138.875,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":182.625,"pitch":-177.5,"roll":83.375},"location":"Right Knee"},{"euler":{"heading":147.5625,"pitch":109.0625,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:14.220"} +{"sensors":[{"euler":{"heading":103.0625,"pitch":167.4375,"roll":47.25},"location":"Left Knee"},{"euler":{"heading":87.625,"pitch":94.0625,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":-178.875,"roll":70.0},"location":"Right Ankle"},{"euler":{"heading":86.4375,"pitch":140.5,"roll":68.0625},"location":"Right Hip"},{"euler":{"heading":190.25,"pitch":-122.8125,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":155.625,"pitch":112.9375,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:14.321"} +{"sensors":[{"euler":{"heading":116.25,"pitch":160.5,"roll":46.4375},"location":"Left Knee"},{"euler":{"heading":93.0625,"pitch":94.8125,"roll":62.5625},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":-154.9375,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":88.5,"pitch":144.5,"roll":69.25},"location":"Right Hip"},{"euler":{"heading":204.5,"pitch":-107.5,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":160.0,"pitch":114.875,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:14.422"} +{"sensors":[{"euler":{"heading":124.6875,"pitch":151.625,"roll":46.4375},"location":"Left Knee"},{"euler":{"heading":103.9375,"pitch":90.4375,"roll":71.125},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":-127.5625,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":97.6875,"pitch":137.375,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":216.1875,"pitch":-96.0625,"roll":59.625},"location":"Right Knee"},{"euler":{"heading":158.9375,"pitch":119.125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:14.522"} +{"sensors":[{"euler":{"heading":42.375,"pitch":145.0,"roll":44.875},"location":"Left Knee"},{"euler":{"heading":123.6875,"pitch":175.875,"roll":85.75},"location":"Left Ankle"},{"euler":{"heading":69.25,"pitch":-134.3125,"roll":52.0},"location":"Right Ankle"},{"euler":{"heading":103.75,"pitch":132.125,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":214.9375,"pitch":-90.0625,"roll":62.0},"location":"Right Knee"},{"euler":{"heading":162.5625,"pitch":125.8125,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:14.623"} +{"sensors":[{"euler":{"heading":50.375,"pitch":139.5,"roll":42.0},"location":"Left Knee"},{"euler":{"heading":130.5,"pitch":-178.75,"roll":88.75},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":-144.25,"roll":68.375},"location":"Right Ankle"},{"euler":{"heading":101.5,"pitch":136.625,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":200.3125,"pitch":-86.8125,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":162.5,"pitch":127.5625,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:14.724"} +{"sensors":[{"euler":{"heading":57.0625,"pitch":133.9375,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":132.3125,"pitch":-176.1875,"roll":85.375},"location":"Left Ankle"},{"euler":{"heading":113.5625,"pitch":151.1875,"roll":60.8125},"location":"Right Ankle"},{"euler":{"heading":93.5,"pitch":142.75,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":182.0625,"pitch":97.3125,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":164.3125,"pitch":129.8125,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:14.826"} +{"sensors":[{"euler":{"heading":64.0625,"pitch":129.5625,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":140.0,"pitch":-104.5,"roll":79.125},"location":"Left Ankle"},{"euler":{"heading":133.0,"pitch":135.5,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":83.8125,"pitch":144.9375,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":170.0,"pitch":98.3125,"roll":67.625},"location":"Right Knee"},{"euler":{"heading":165.75,"pitch":131.625,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:14.926"} +{"sensors":[{"euler":{"heading":77.375,"pitch":125.9375,"roll":26.1875},"location":"Left Knee"},{"euler":{"heading":148.25,"pitch":-90.0,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":124.6875,"pitch":139.0625,"roll":49.6875},"location":"Right Ankle"},{"euler":{"heading":78.5625,"pitch":146.875,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":94.75,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":166.75,"pitch":134.625,"roll":66.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:15.28"} +{"sensors":[{"euler":{"heading":95.3125,"pitch":125.1875,"roll":14.25},"location":"Left Knee"},{"euler":{"heading":160.6875,"pitch":-95.4375,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":113.3125,"pitch":142.8125,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":81.75,"pitch":143.4375,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":170.6875,"pitch":102.375,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":159.6875,"pitch":128.625,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:15.129"} +{"sensors":[{"euler":{"heading":104.25,"pitch":123.3125,"roll":12.375},"location":"Left Knee"},{"euler":{"heading":161.75,"pitch":-101.1875,"roll":52.3125},"location":"Left Ankle"},{"euler":{"heading":109.3125,"pitch":149.0625,"roll":59.6875},"location":"Right Ankle"},{"euler":{"heading":81.4375,"pitch":141.9375,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":174.25,"pitch":119.3125,"roll":80.75},"location":"Right Knee"},{"euler":{"heading":154.9375,"pitch":115.5625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:15.230"} +{"sensors":[{"euler":{"heading":77.1875,"pitch":137.25,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":137.0625,"pitch":-101.3125,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":102.125,"pitch":153.5625,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":82.0625,"pitch":139.9375,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":176.8125,"pitch":176.3125,"roll":84.375},"location":"Right Knee"},{"euler":{"heading":148.125,"pitch":109.8125,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:15.330"} +{"sensors":[{"euler":{"heading":29.125,"pitch":155.625,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":104.4375,"pitch":101.8125,"roll":75.0},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":164.5625,"roll":67.0625},"location":"Right Ankle"},{"euler":{"heading":83.125,"pitch":139.375,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":179.5,"pitch":-178.6875,"roll":85.625},"location":"Right Knee"},{"euler":{"heading":147.375,"pitch":109.125,"roll":47.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:15.430"} +{"sensors":[{"euler":{"heading":103.125,"pitch":167.3125,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":88.1875,"pitch":95.5625,"roll":58.75},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":-177.375,"roll":69.625},"location":"Right Ankle"},{"euler":{"heading":83.8125,"pitch":139.6875,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":186.8125,"pitch":-122.25,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":154.1875,"pitch":114.375,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:15.531"} +{"sensors":[{"euler":{"heading":119.25,"pitch":158.75,"roll":45.25},"location":"Left Knee"},{"euler":{"heading":98.3125,"pitch":95.5625,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":-152.0625,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":87.1875,"pitch":141.5,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":203.75,"pitch":-105.6875,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":156.4375,"pitch":118.4375,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:15.632"} +{"sensors":[{"euler":{"heading":127.0625,"pitch":149.625,"roll":45.1875},"location":"Left Knee"},{"euler":{"heading":107.5625,"pitch":93.0,"roll":73.5},"location":"Left Ankle"},{"euler":{"heading":70.0625,"pitch":-131.8125,"roll":55.1875},"location":"Right Ankle"},{"euler":{"heading":96.4375,"pitch":135.625,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":213.125,"pitch":-95.375,"roll":60.5},"location":"Right Knee"},{"euler":{"heading":157.5625,"pitch":121.3125,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:15.732"} +{"sensors":[{"euler":{"heading":47.25,"pitch":142.9375,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":129.75,"pitch":179.875,"roll":89.3125},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":-140.5,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":99.9375,"pitch":134.4375,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":208.75,"pitch":-89.6875,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":159.0625,"pitch":127.0,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:15.833"} +{"sensors":[{"euler":{"heading":52.75,"pitch":137.875,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":131.1875,"pitch":0.75,"roll":87.75},"location":"Left Ankle"},{"euler":{"heading":98.4375,"pitch":179.0,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":96.9375,"pitch":139.5,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":194.125,"pitch":-4.125,"roll":85.75},"location":"Right Knee"},{"euler":{"heading":162.625,"pitch":130.125,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:15.934"} +{"sensors":[{"euler":{"heading":59.25,"pitch":133.4375,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":132.6875,"pitch":-177.5625,"roll":86.625},"location":"Left Ankle"},{"euler":{"heading":126.6875,"pitch":138.875,"roll":51.3125},"location":"Right Ankle"},{"euler":{"heading":86.9375,"pitch":144.875,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":177.25,"pitch":89.0625,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":165.375,"pitch":134.1875,"roll":64.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:16.35"} +{"sensors":[{"euler":{"heading":69.125,"pitch":129.1875,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":-73.75,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":133.625,"pitch":130.0,"roll":45.0},"location":"Right Ankle"},{"euler":{"heading":78.625,"pitch":146.6875,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":168.0,"pitch":90.3125,"roll":65.4375},"location":"Right Knee"},{"euler":{"heading":167.3125,"pitch":139.4375,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:16.135"} +{"sensors":[{"euler":{"heading":78.8125,"pitch":126.75,"roll":22.3125},"location":"Left Knee"},{"euler":{"heading":149.25,"pitch":-97.5,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":118.625,"pitch":137.3125,"roll":54.5},"location":"Right Ankle"},{"euler":{"heading":77.1875,"pitch":147.125,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":168.25,"pitch":90.8125,"roll":71.875},"location":"Right Knee"},{"euler":{"heading":169.3125,"pitch":139.0625,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:16.236"} +{"sensors":[{"euler":{"heading":98.5,"pitch":126.0625,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":169.375,"pitch":-99.1875,"roll":45.9375},"location":"Left Ankle"},{"euler":{"heading":113.125,"pitch":141.625,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":78.1875,"pitch":145.6875,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":171.875,"pitch":105.375,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":153.0,"pitch":121.375,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:16.338"} +{"sensors":[{"euler":{"heading":96.0625,"pitch":129.3125,"roll":14.25},"location":"Left Knee"},{"euler":{"heading":162.4375,"pitch":-95.5,"roll":48.25},"location":"Left Ankle"},{"euler":{"heading":107.125,"pitch":147.5625,"roll":62.8125},"location":"Right Ankle"},{"euler":{"heading":80.75,"pitch":142.8125,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":175.375,"pitch":125.5625,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":147.375,"pitch":111.3125,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:16.438"} +{"sensors":[{"euler":{"heading":60.8125,"pitch":143.375,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":131.75,"pitch":-116.8125,"roll":78.5},"location":"Left Ankle"},{"euler":{"heading":98.125,"pitch":157.4375,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":83.875,"pitch":139.1875,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":177.8125,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":147.4375,"pitch":109.0,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:16.539"} +{"sensors":[{"euler":{"heading":20.0,"pitch":161.9375,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":99.625,"pitch":102.375,"roll":67.5625},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":172.625,"roll":69.6875},"location":"Right Ankle"},{"euler":{"heading":84.6875,"pitch":138.375,"roll":66.8125},"location":"Right Hip"},{"euler":{"heading":181.4375,"pitch":-176.4375,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":150.25,"pitch":111.6875,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:16.639"} +{"sensors":[{"euler":{"heading":108.75,"pitch":165.125,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":95.3125,"pitch":104.625,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":-163.75,"roll":69.875},"location":"Right Ankle"},{"euler":{"heading":86.0,"pitch":139.4375,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":191.375,"pitch":-117.625,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":155.875,"pitch":116.5,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:16.741"} +{"sensors":[{"euler":{"heading":124.0,"pitch":154.75,"roll":45.125},"location":"Left Knee"},{"euler":{"heading":105.5,"pitch":106.125,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":-142.5625,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":90.625,"pitch":138.4375,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":210.375,"pitch":-103.25,"roll":64.5625},"location":"Right Knee"},{"euler":{"heading":155.375,"pitch":118.375,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:16.841"} +{"sensors":[{"euler":{"heading":44.25,"pitch":146.1875,"roll":44.9375},"location":"Left Knee"},{"euler":{"heading":118.75,"pitch":94.125,"roll":78.5625},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":-136.0,"roll":51.75},"location":"Right Ankle"},{"euler":{"heading":99.375,"pitch":133.25,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":217.1875,"pitch":-94.8125,"roll":58.875},"location":"Right Knee"},{"euler":{"heading":160.25,"pitch":125.1875,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:16.941"} +{"sensors":[{"euler":{"heading":54.0625,"pitch":139.125,"roll":43.25},"location":"Left Knee"},{"euler":{"heading":135.875,"pitch":-1.0,"roll":86.9375},"location":"Left Ankle"},{"euler":{"heading":81.75,"pitch":-148.875,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":103.125,"pitch":135.0625,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":207.1875,"pitch":-90.5625,"roll":71.1875},"location":"Right Knee"},{"euler":{"heading":164.0625,"pitch":130.8125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:17.42"} +{"sensors":[{"euler":{"heading":61.4375,"pitch":134.125,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":131.25,"pitch":178.1875,"roll":87.375},"location":"Left Ankle"},{"euler":{"heading":109.125,"pitch":158.9375,"roll":60.0625},"location":"Right Ankle"},{"euler":{"heading":95.1875,"pitch":142.1875,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":190.0625,"pitch":5.0625,"roll":87.0},"location":"Right Knee"},{"euler":{"heading":166.4375,"pitch":134.8125,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:17.144"} +{"sensors":[{"euler":{"heading":68.1875,"pitch":129.6875,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":136.25,"pitch":-175.8125,"roll":84.3125},"location":"Left Ankle"},{"euler":{"heading":135.0,"pitch":131.8125,"roll":45.6875},"location":"Right Ankle"},{"euler":{"heading":85.1875,"pitch":144.75,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":173.8125,"pitch":93.875,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":167.875,"pitch":137.25,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:17.244"} +{"sensors":[{"euler":{"heading":75.5625,"pitch":126.3125,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":145.375,"pitch":-110.375,"roll":75.875},"location":"Left Ankle"},{"euler":{"heading":134.4375,"pitch":135.5625,"roll":45.9375},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":147.125,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":171.3125,"pitch":94.625,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":170.875,"pitch":142.0625,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:17.345"} +{"sensors":[{"euler":{"heading":89.375,"pitch":126.125,"roll":17.375},"location":"Left Knee"},{"euler":{"heading":151.875,"pitch":-95.3125,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":120.5625,"pitch":138.875,"roll":55.5625},"location":"Right Ankle"},{"euler":{"heading":82.0,"pitch":145.5,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":173.9375,"pitch":97.375,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":159.5625,"pitch":131.3125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:17.445"} +{"sensors":[{"euler":{"heading":104.125,"pitch":123.375,"roll":11.3125},"location":"Left Knee"},{"euler":{"heading":166.375,"pitch":-95.375,"roll":48.4375},"location":"Left Ankle"},{"euler":{"heading":113.875,"pitch":144.25,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":78.3125,"pitch":145.6875,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":175.1875,"pitch":108.375,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":145.5625,"pitch":116.9375,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:17.545"} +{"sensors":[{"euler":{"heading":87.0625,"pitch":135.1875,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":154.125,"pitch":-77.4375,"roll":56.625},"location":"Left Ankle"},{"euler":{"heading":105.6875,"pitch":153.0625,"roll":62.3125},"location":"Right Ankle"},{"euler":{"heading":81.6875,"pitch":140.75,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":175.75,"roll":84.5625},"location":"Right Knee"},{"euler":{"heading":143.9375,"pitch":112.0625,"roll":44.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:17.646"} +{"sensors":[{"euler":{"heading":34.875,"pitch":154.125,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":122.1875,"pitch":2.75,"roll":85.9375},"location":"Left Ankle"},{"euler":{"heading":96.0625,"pitch":163.25,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":82.9375,"pitch":138.5625,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":179.625,"pitch":-179.375,"roll":86.1875},"location":"Right Knee"},{"euler":{"heading":145.3125,"pitch":111.0,"roll":45.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:17.747"} +{"sensors":[{"euler":{"heading":101.375,"pitch":167.8125,"roll":47.3125},"location":"Left Knee"},{"euler":{"heading":91.3125,"pitch":101.6875,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":179.5625,"roll":69.25},"location":"Right Ankle"},{"euler":{"heading":82.4375,"pitch":139.375,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":186.25,"pitch":-120.125,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":151.25,"pitch":115.625,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:17.848"} +{"sensors":[{"euler":{"heading":117.9375,"pitch":159.0625,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":100.625,"pitch":104.1875,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":-152.6875,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":86.9375,"pitch":139.25,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":200.75,"pitch":-104.3125,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":153.0625,"pitch":117.875,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:17.949"} +{"sensors":[{"euler":{"heading":126.375,"pitch":149.875,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":108.6875,"pitch":107.625,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":-138.9375,"roll":55.0},"location":"Right Ankle"},{"euler":{"heading":96.8125,"pitch":135.125,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":218.3125,"pitch":-97.0,"roll":59.25},"location":"Right Knee"},{"euler":{"heading":155.4375,"pitch":121.875,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:18.49"} +{"sensors":[{"euler":{"heading":44.5,"pitch":143.375,"roll":43.875},"location":"Left Knee"},{"euler":{"heading":125.25,"pitch":3.4375,"roll":85.8125},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":-141.625,"roll":58.5},"location":"Right Ankle"},{"euler":{"heading":101.0625,"pitch":132.9375,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":212.1875,"pitch":-95.5625,"roll":64.5625},"location":"Right Knee"},{"euler":{"heading":158.0625,"pitch":127.3125,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:18.150"} +{"sensors":[{"euler":{"heading":50.4375,"pitch":139.0625,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":131.1875,"pitch":-1.5,"roll":86.4375},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":-178.125,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":98.6875,"pitch":137.6875,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":198.6875,"pitch":-91.0625,"roll":82.125},"location":"Right Knee"},{"euler":{"heading":160.0625,"pitch":131.5,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:18.250"} +{"sensors":[{"euler":{"heading":55.4375,"pitch":135.25,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":123.8125,"pitch":179.0,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":119.5,"pitch":149.625,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":87.9375,"pitch":143.0625,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":179.8125,"pitch":87.8125,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":162.0,"pitch":135.625,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:18.351"} +{"sensors":[{"euler":{"heading":61.1875,"pitch":131.9375,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":130.8125,"pitch":-129.1875,"roll":82.25},"location":"Left Ankle"},{"euler":{"heading":42.0625,"pitch":135.5,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":77.5,"pitch":146.0,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":165.1875,"pitch":90.5625,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":162.9375,"pitch":139.5,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:18.452"} +{"sensors":[{"euler":{"heading":73.1875,"pitch":127.5,"roll":25.9375},"location":"Left Knee"},{"euler":{"heading":143.375,"pitch":-110.4375,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":120.5,"pitch":140.125,"roll":50.1875},"location":"Right Ankle"},{"euler":{"heading":73.5,"pitch":147.9375,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":163.5625,"pitch":88.0,"roll":69.0},"location":"Right Knee"},{"euler":{"heading":164.25,"pitch":139.3125,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:18.552"} +{"sensors":[{"euler":{"heading":94.75,"pitch":126.375,"roll":13.5},"location":"Left Knee"},{"euler":{"heading":169.625,"pitch":-98.25,"roll":48.6875},"location":"Left Ankle"},{"euler":{"heading":111.6875,"pitch":143.8125,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":73.9375,"pitch":146.4375,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":166.8125,"pitch":93.0,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":151.0,"pitch":122.5625,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:18.653"} +{"sensors":[{"euler":{"heading":104.375,"pitch":125.0625,"roll":11.9375},"location":"Left Knee"},{"euler":{"heading":159.375,"pitch":-98.875,"roll":53.0625},"location":"Left Ankle"},{"euler":{"heading":105.3125,"pitch":147.25,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":76.3125,"pitch":143.25,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":169.25,"pitch":113.375,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":146.1875,"pitch":111.4375,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:18.754"} +{"sensors":[{"euler":{"heading":75.875,"pitch":139.0625,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":134.0,"pitch":-105.5,"roll":78.125},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":155.4375,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":81.6875,"pitch":139.25,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":173.625,"pitch":175.625,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":146.1875,"pitch":109.125,"roll":45.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:18.855"} +{"sensors":[{"euler":{"heading":32.25,"pitch":156.125,"roll":41.5},"location":"Left Knee"},{"euler":{"heading":103.375,"pitch":97.5,"roll":69.9375},"location":"Left Ankle"},{"euler":{"heading":91.625,"pitch":167.3125,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":85.5625,"pitch":138.0625,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":179.1875,"pitch":-178.3125,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":150.75,"pitch":110.6875,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:18.956"} +{"sensors":[{"euler":{"heading":112.75,"pitch":163.4375,"roll":45.9375},"location":"Left Knee"},{"euler":{"heading":91.625,"pitch":94.6875,"roll":58.0},"location":"Left Ankle"},{"euler":{"heading":84.125,"pitch":-169.1875,"roll":71.0},"location":"Right Ankle"},{"euler":{"heading":87.625,"pitch":139.5625,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":189.5,"pitch":-123.375,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":156.375,"pitch":118.3125,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:19.57"} +{"sensors":[{"euler":{"heading":127.875,"pitch":153.75,"roll":45.0},"location":"Left Knee"},{"euler":{"heading":100.875,"pitch":93.125,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":83.5625,"pitch":-149.25,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":91.375,"pitch":142.125,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":210.875,"pitch":-108.75,"roll":65.0625},"location":"Right Knee"},{"euler":{"heading":159.0,"pitch":121.6875,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:19.158"} +{"sensors":[{"euler":{"heading":137.1875,"pitch":144.5625,"roll":45.625},"location":"Left Knee"},{"euler":{"heading":113.125,"pitch":83.75,"roll":73.125},"location":"Left Ankle"},{"euler":{"heading":72.625,"pitch":-131.4375,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":99.375,"pitch":137.0625,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":215.125,"pitch":-98.1875,"roll":58.9375},"location":"Right Knee"},{"euler":{"heading":161.0625,"pitch":125.5,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:19.259"} +{"sensors":[{"euler":{"heading":55.5625,"pitch":138.0,"roll":43.9375},"location":"Left Knee"},{"euler":{"heading":132.0,"pitch":1.5625,"roll":86.4375},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":-144.75,"roll":60.125},"location":"Right Ankle"},{"euler":{"heading":102.875,"pitch":136.5,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":208.0625,"pitch":-92.1875,"roll":68.25},"location":"Right Knee"},{"euler":{"heading":164.375,"pitch":131.375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:19.360"} +{"sensors":[{"euler":{"heading":62.3125,"pitch":133.25,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":131.25,"pitch":3.875,"roll":85.5},"location":"Left Ankle"},{"euler":{"heading":102.625,"pitch":167.75,"roll":62.875},"location":"Right Ankle"},{"euler":{"heading":7.125,"pitch":141.875,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":191.8125,"pitch":-1.625,"roll":88.1875},"location":"Right Knee"},{"euler":{"heading":165.0625,"pitch":133.8125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:19.461"} +{"sensors":[{"euler":{"heading":67.6875,"pitch":129.5625,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":-178.125,"roll":86.4375},"location":"Left Ankle"},{"euler":{"heading":131.3125,"pitch":133.625,"roll":47.125},"location":"Right Ankle"},{"euler":{"heading":87.3125,"pitch":145.9375,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":175.1875,"pitch":92.9375,"roll":72.125},"location":"Right Knee"},{"euler":{"heading":165.125,"pitch":136.1875,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:19.562"} +{"sensors":[{"euler":{"heading":73.5625,"pitch":127.0625,"roll":31.0},"location":"Left Knee"},{"euler":{"heading":141.5625,"pitch":-113.5,"roll":79.8125},"location":"Left Ankle"},{"euler":{"heading":41.8125,"pitch":130.6875,"roll":44.5},"location":"Right Ankle"},{"euler":{"heading":75.375,"pitch":149.3125,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":166.75,"pitch":88.1875,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":165.4375,"pitch":139.125,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:19.663"} +{"sensors":[{"euler":{"heading":87.25,"pitch":124.125,"roll":20.3125},"location":"Left Knee"},{"euler":{"heading":150.6875,"pitch":-92.125,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":118.125,"pitch":135.8125,"roll":53.75},"location":"Right Ankle"},{"euler":{"heading":79.75,"pitch":146.3125,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":91.5625,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":165.5,"pitch":133.6875,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:19.764"} +{"sensors":[{"euler":{"heading":102.6875,"pitch":125.125,"roll":10.5625},"location":"Left Knee"},{"euler":{"heading":159.5,"pitch":-102.75,"roll":53.625},"location":"Left Ankle"},{"euler":{"heading":114.875,"pitch":138.1875,"roll":57.375},"location":"Right Ankle"},{"euler":{"heading":76.875,"pitch":147.3125,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":172.125,"pitch":104.625,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":148.25,"pitch":118.5625,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:19.865"} +{"sensors":[{"euler":{"heading":93.4375,"pitch":133.1875,"roll":17.25},"location":"Left Knee"},{"euler":{"heading":146.875,"pitch":-98.0625,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":110.3125,"pitch":143.0,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":80.125,"pitch":144.25,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":174.6875,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":145.1875,"pitch":112.375,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:19.966"} +{"sensors":[{"euler":{"heading":33.0,"pitch":149.125,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":115.125,"pitch":175.3125,"roll":84.5625},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":151.0,"roll":64.5625},"location":"Right Ankle"},{"euler":{"heading":84.0625,"pitch":141.3125,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":179.8125,"pitch":179.375,"roll":85.0},"location":"Right Knee"},{"euler":{"heading":145.6875,"pitch":110.8125,"roll":46.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:20.67"} +{"sensors":[{"euler":{"heading":107.875,"pitch":164.25,"roll":45.875},"location":"Left Knee"},{"euler":{"heading":91.1875,"pitch":96.25,"roll":59.625},"location":"Left Ankle"},{"euler":{"heading":94.125,"pitch":163.6875,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":84.625,"pitch":141.5625,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":184.6875,"pitch":-133.875,"roll":82.625},"location":"Right Knee"},{"euler":{"heading":149.4375,"pitch":113.375,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:20.168"} +{"sensors":[{"euler":{"heading":30.4375,"pitch":159.8125,"roll":44.0625},"location":"Left Knee"},{"euler":{"heading":93.8125,"pitch":97.25,"roll":60.25},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":-173.6875,"roll":70.875},"location":"Right Ankle"},{"euler":{"heading":86.625,"pitch":143.0,"roll":68.3125},"location":"Right Hip"},{"euler":{"heading":194.1875,"pitch":-112.8125,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":155.1875,"pitch":116.5,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:20.268"} +{"sensors":[{"euler":{"heading":41.625,"pitch":150.875,"roll":44.75},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":92.5625,"roll":70.25},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-145.5,"roll":61.6875},"location":"Right Ankle"},{"euler":{"heading":92.5625,"pitch":139.3125,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":213.8125,"pitch":-102.625,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":156.4375,"pitch":118.0,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:20.368"} +{"sensors":[{"euler":{"heading":50.125,"pitch":142.6875,"roll":44.875},"location":"Left Knee"},{"euler":{"heading":119.5,"pitch":81.0625,"roll":79.0},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":-139.25,"roll":53.8125},"location":"Right Ankle"},{"euler":{"heading":103.0625,"pitch":133.8125,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":219.5,"pitch":-96.9375,"roll":58.5625},"location":"Right Knee"},{"euler":{"heading":162.625,"pitch":128.0,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:20.469"} +{"sensors":[{"euler":{"heading":57.1875,"pitch":136.75,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":134.125,"pitch":0.3125,"roll":87.5},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":-154.9375,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":105.1875,"pitch":135.5,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":208.5,"pitch":-95.875,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":164.875,"pitch":131.125,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:20.570"} +{"sensors":[{"euler":{"heading":61.375,"pitch":133.1875,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":127.75,"pitch":177.4375,"roll":86.25},"location":"Left Ankle"},{"euler":{"heading":112.9375,"pitch":156.5625,"roll":59.875},"location":"Right Ankle"},{"euler":{"heading":96.75,"pitch":142.0625,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":188.25,"pitch":175.6875,"roll":85.4375},"location":"Right Knee"},{"euler":{"heading":163.375,"pitch":133.5625,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:20.671"} +{"sensors":[{"euler":{"heading":67.1875,"pitch":129.75,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":132.0625,"pitch":-177.375,"roll":85.0},"location":"Left Ankle"},{"euler":{"heading":135.9375,"pitch":130.25,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":83.5625,"pitch":145.875,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":97.9375,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":164.125,"pitch":135.5625,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:20.771"} +{"sensors":[{"euler":{"heading":74.25,"pitch":127.3125,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":140.375,"pitch":-111.625,"roll":78.125},"location":"Left Ankle"},{"euler":{"heading":130.0625,"pitch":133.125,"roll":47.0625},"location":"Right Ankle"},{"euler":{"heading":76.3125,"pitch":147.625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":169.625,"pitch":92.6875,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":166.625,"pitch":141.125,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:20.872"} +{"sensors":[{"euler":{"heading":89.0625,"pitch":126.9375,"roll":15.125},"location":"Left Knee"},{"euler":{"heading":152.25,"pitch":-97.9375,"roll":60.6875},"location":"Left Ankle"},{"euler":{"heading":115.9375,"pitch":141.6875,"roll":55.5},"location":"Right Ankle"},{"euler":{"heading":83.8125,"pitch":143.8125,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":171.625,"pitch":98.9375,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":161.1875,"pitch":129.125,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:20.972"} +{"sensors":[{"euler":{"heading":107.1875,"pitch":121.9375,"roll":9.625},"location":"Left Knee"},{"euler":{"heading":163.875,"pitch":-98.375,"roll":49.875},"location":"Left Ankle"},{"euler":{"heading":107.4375,"pitch":147.875,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":82.125,"pitch":143.9375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":173.0625,"pitch":126.75,"roll":80.625},"location":"Right Knee"},{"euler":{"heading":149.5625,"pitch":111.5625,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:21.73"} +{"sensors":[{"euler":{"heading":91.1875,"pitch":134.6875,"roll":17.75},"location":"Left Knee"},{"euler":{"heading":143.4375,"pitch":-95.0625,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":99.5,"pitch":154.125,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":85.375,"pitch":139.25,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":176.5625,"pitch":176.875,"roll":83.375},"location":"Right Knee"},{"euler":{"heading":146.8125,"pitch":110.125,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:21.174"} +{"sensors":[{"euler":{"heading":42.125,"pitch":152.375,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":110.4375,"pitch":99.875,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":160.375,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":86.375,"pitch":139.8125,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":181.3125,"pitch":-178.1875,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":146.5625,"pitch":107.9375,"roll":46.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:21.274"} +{"sensors":[{"euler":{"heading":104.6875,"pitch":165.8125,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":88.3125,"pitch":92.5625,"roll":58.25},"location":"Left Ankle"},{"euler":{"heading":91.6875,"pitch":173.1875,"roll":69.9375},"location":"Right Ankle"},{"euler":{"heading":86.0,"pitch":140.9375,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":188.1875,"pitch":-132.375,"roll":78.75},"location":"Right Knee"},{"euler":{"heading":153.5625,"pitch":113.6875,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:21.375"} +{"sensors":[{"euler":{"heading":116.0,"pitch":159.0625,"roll":45.125},"location":"Left Knee"},{"euler":{"heading":92.375,"pitch":95.0,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":-161.5625,"roll":68.0},"location":"Right Ankle"},{"euler":{"heading":88.6875,"pitch":142.5,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":201.375,"pitch":-113.875,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":155.0,"pitch":115.1875,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:21.476"} +{"sensors":[{"euler":{"heading":37.5625,"pitch":149.9375,"roll":44.3125},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":90.625,"roll":71.5625},"location":"Left Ankle"},{"euler":{"heading":75.375,"pitch":-133.6875,"roll":57.875},"location":"Right Ankle"},{"euler":{"heading":98.3125,"pitch":138.3125,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":219.1875,"pitch":-99.9375,"roll":59.125},"location":"Right Knee"},{"euler":{"heading":155.5625,"pitch":119.5625,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:21.577"} +{"sensors":[{"euler":{"heading":45.875,"pitch":143.0,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":122.125,"pitch":175.1875,"roll":85.1875},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":-139.125,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":106.375,"pitch":133.4375,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":219.4375,"pitch":-95.0625,"roll":59.375},"location":"Right Knee"},{"euler":{"heading":161.0625,"pitch":128.1875,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:21.678"} +{"sensors":[{"euler":{"heading":54.0,"pitch":137.75,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":131.375,"pitch":-2.0625,"roll":86.75},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":-174.4375,"roll":62.5},"location":"Right Ankle"},{"euler":{"heading":103.3125,"pitch":137.25,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":204.1875,"pitch":-92.9375,"roll":77.3125},"location":"Right Knee"},{"euler":{"heading":162.375,"pitch":130.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:21.781"} +{"sensors":[{"euler":{"heading":59.8125,"pitch":133.875,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":125.875,"pitch":-179.875,"roll":86.9375},"location":"Left Ankle"},{"euler":{"heading":122.125,"pitch":142.625,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":93.3125,"pitch":143.3125,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":184.4375,"pitch":97.6875,"roll":80.125},"location":"Right Knee"},{"euler":{"heading":164.75,"pitch":134.5625,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:21.882"} +{"sensors":[{"euler":{"heading":65.9375,"pitch":130.6875,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":131.75,"pitch":-123.5,"roll":82.25},"location":"Left Ankle"},{"euler":{"heading":54.875,"pitch":125.0625,"roll":40.375},"location":"Right Ankle"},{"euler":{"heading":80.25,"pitch":148.4375,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":174.3125,"pitch":101.1875,"roll":68.0},"location":"Right Knee"},{"euler":{"heading":165.75,"pitch":139.1875,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:21.983"} +{"sensors":[{"euler":{"heading":80.5625,"pitch":126.375,"roll":22.3125},"location":"Left Knee"},{"euler":{"heading":144.1875,"pitch":-105.125,"roll":70.4375},"location":"Left Ankle"},{"euler":{"heading":125.0625,"pitch":135.8125,"roll":49.75},"location":"Right Ankle"},{"euler":{"heading":81.8125,"pitch":148.0,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":170.9375,"pitch":91.625,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":170.4375,"pitch":140.4375,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:22.87"} +{"sensors":[{"euler":{"heading":99.5625,"pitch":125.75,"roll":10.9375},"location":"Left Knee"},{"euler":{"heading":162.4375,"pitch":-93.4375,"roll":52.8125},"location":"Left Ankle"},{"euler":{"heading":117.375,"pitch":140.0625,"roll":55.75},"location":"Right Ankle"},{"euler":{"heading":83.0625,"pitch":145.875,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":174.625,"pitch":104.5625,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":155.25,"pitch":125.0625,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:22.188"} +{"sensors":[{"euler":{"heading":103.1875,"pitch":127.5625,"roll":11.4375},"location":"Left Knee"},{"euler":{"heading":154.8125,"pitch":-102.1875,"roll":56.1875},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":143.9375,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":81.625,"pitch":144.3125,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":177.6875,"pitch":124.875,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":148.5625,"pitch":111.9375,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:22.290"} +{"sensors":[{"euler":{"heading":68.75,"pitch":140.9375,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":126.125,"pitch":-176.8125,"roll":83.3125},"location":"Left Ankle"},{"euler":{"heading":104.8125,"pitch":151.625,"roll":63.125},"location":"Right Ankle"},{"euler":{"heading":84.8125,"pitch":141.6875,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":181.625,"pitch":179.375,"roll":84.9375},"location":"Right Knee"},{"euler":{"heading":147.5,"pitch":109.5,"roll":47.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:22.390"} +{"sensors":[{"euler":{"heading":22.0625,"pitch":158.75,"roll":44.5625},"location":"Left Knee"},{"euler":{"heading":94.875,"pitch":95.4375,"roll":66.4375},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":162.25,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":85.5625,"pitch":141.625,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":187.3125,"pitch":-134.3125,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":149.75,"pitch":111.6875,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:22.491"} +{"sensors":[{"euler":{"heading":106.6875,"pitch":164.375,"roll":46.5},"location":"Left Knee"},{"euler":{"heading":88.8125,"pitch":93.5,"roll":59.0625},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":-161.0625,"roll":69.5625},"location":"Right Ankle"},{"euler":{"heading":87.0625,"pitch":142.9375,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":197.9375,"pitch":-114.125,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":155.4375,"pitch":114.875,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:22.591"} +{"sensors":[{"euler":{"heading":36.0625,"pitch":153.375,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":102.1875,"pitch":96.3125,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":-151.6875,"roll":62.3125},"location":"Right Ankle"},{"euler":{"heading":90.3125,"pitch":142.625,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":216.9375,"pitch":-102.125,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":153.9375,"pitch":114.4375,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:22.692"} +{"sensors":[{"euler":{"heading":44.75,"pitch":145.625,"roll":42.8125},"location":"Left Knee"},{"euler":{"heading":114.6875,"pitch":85.1875,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-141.25,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":97.375,"pitch":137.0,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":219.125,"pitch":-96.5625,"roll":57.3125},"location":"Right Knee"},{"euler":{"heading":157.875,"pitch":120.625,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:22.793"} +{"sensors":[{"euler":{"heading":53.9375,"pitch":138.625,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":133.1875,"pitch":-2.0625,"roll":86.8125},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":-157.875,"roll":61.125},"location":"Right Ankle"},{"euler":{"heading":101.0625,"pitch":136.4375,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":205.5,"pitch":-93.1875,"roll":72.0},"location":"Right Knee"},{"euler":{"heading":161.9375,"pitch":128.5625,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:22.893"} +{"sensors":[{"euler":{"heading":59.4375,"pitch":134.625,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":129.5625,"pitch":178.5625,"roll":88.5},"location":"Left Ankle"},{"euler":{"heading":107.3125,"pitch":160.5,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":94.1875,"pitch":142.375,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":188.5,"pitch":177.0625,"roll":87.0},"location":"Right Knee"},{"euler":{"heading":164.0625,"pitch":133.3125,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:22.994"} +{"sensors":[{"euler":{"heading":65.0625,"pitch":131.125,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":132.75,"pitch":-176.1875,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":135.25,"pitch":132.625,"roll":45.4375},"location":"Right Ankle"},{"euler":{"heading":83.125,"pitch":146.875,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":175.1875,"pitch":96.8125,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":165.9375,"pitch":137.125,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:23.95"} +{"sensors":[{"euler":{"heading":73.875,"pitch":127.6875,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":141.4375,"pitch":-107.4375,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":133.125,"pitch":131.875,"roll":45.375},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":147.6875,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":172.4375,"pitch":94.875,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":166.5,"pitch":138.5625,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:23.197"} +{"sensors":[{"euler":{"heading":89.625,"pitch":127.3125,"roll":15.1875},"location":"Left Knee"},{"euler":{"heading":147.75,"pitch":-104.1875,"roll":62.6875},"location":"Left Ankle"},{"euler":{"heading":122.875,"pitch":136.875,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":81.25,"pitch":147.75,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":176.1875,"pitch":106.0,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":162.0,"pitch":129.5,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:23.297"} +{"sensors":[{"euler":{"heading":103.0625,"pitch":124.875,"roll":10.625},"location":"Left Knee"},{"euler":{"heading":155.5,"pitch":-103.625,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":118.6875,"pitch":140.625,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":78.0625,"pitch":148.375,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":179.75,"pitch":124.5,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":151.375,"pitch":115.9375,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:23.398"} +{"sensors":[{"euler":{"heading":81.0,"pitch":135.0625,"roll":20.4375},"location":"Left Knee"},{"euler":{"heading":134.125,"pitch":-101.6875,"roll":73.1875},"location":"Left Ankle"},{"euler":{"heading":115.6875,"pitch":144.3125,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":81.5625,"pitch":146.875,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":185.5625,"pitch":178.625,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":148.3125,"pitch":112.9375,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:23.498"} +{"sensors":[{"euler":{"heading":34.375,"pitch":151.0625,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":107.375,"pitch":88.125,"roll":79.375},"location":"Left Ankle"},{"euler":{"heading":107.8125,"pitch":152.75,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":83.0625,"pitch":145.9375,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":186.875,"pitch":-177.125,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":147.6875,"pitch":110.25,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:23.599"} +{"sensors":[{"euler":{"heading":101.9375,"pitch":165.9375,"roll":46.125},"location":"Left Knee"},{"euler":{"heading":86.3125,"pitch":91.125,"roll":59.5625},"location":"Left Ankle"},{"euler":{"heading":99.25,"pitch":166.875,"roll":66.6875},"location":"Right Ankle"},{"euler":{"heading":84.3125,"pitch":145.625,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":191.9375,"pitch":-121.875,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":153.5625,"pitch":114.5625,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:23.699"} +{"sensors":[{"euler":{"heading":28.3125,"pitch":159.625,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":92.1875,"pitch":96.4375,"roll":62.75},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":-167.75,"roll":66.8125},"location":"Right Ankle"},{"euler":{"heading":86.375,"pitch":147.25,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":203.4375,"pitch":-108.0625,"roll":70.0},"location":"Right Knee"},{"euler":{"heading":155.3125,"pitch":115.1875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:23.801"} +{"sensors":[{"euler":{"heading":36.8125,"pitch":152.0625,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":105.3125,"pitch":95.125,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-136.875,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":92.0,"pitch":142.5625,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":216.375,"pitch":-96.5,"roll":59.125},"location":"Right Knee"},{"euler":{"heading":154.25,"pitch":117.75,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:23.901"} +{"sensors":[{"euler":{"heading":41.6875,"pitch":146.6875,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":115.4375,"pitch":99.0,"roll":80.875},"location":"Left Ankle"},{"euler":{"heading":76.0625,"pitch":-143.25,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":99.75,"pitch":136.125,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":215.75,"pitch":-91.5,"roll":60.9375},"location":"Right Knee"},{"euler":{"heading":155.75,"pitch":125.6875,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:24.2"} +{"sensors":[{"euler":{"heading":51.4375,"pitch":140.6875,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":129.3125,"pitch":-0.6875,"roll":88.0625},"location":"Left Ankle"},{"euler":{"heading":96.75,"pitch":-174.75,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":98.25,"pitch":138.875,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":200.875,"pitch":-89.875,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":161.5,"pitch":130.6875,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:24.103"} +{"sensors":[{"euler":{"heading":57.625,"pitch":136.125,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":124.875,"pitch":178.5,"roll":86.6875},"location":"Left Ankle"},{"euler":{"heading":123.75,"pitch":143.3125,"roll":52.8125},"location":"Right Ankle"},{"euler":{"heading":89.6875,"pitch":144.6875,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":182.8125,"pitch":95.4375,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":163.0,"pitch":134.25,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:24.203"} +{"sensors":[{"euler":{"heading":64.875,"pitch":132.25,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":130.8125,"pitch":-175.25,"roll":83.375},"location":"Left Ankle"},{"euler":{"heading":50.75,"pitch":127.1875,"roll":42.0625},"location":"Right Ankle"},{"euler":{"heading":79.75,"pitch":148.375,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":173.6875,"pitch":100.4375,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":164.625,"pitch":137.5,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:24.304"} +{"sensors":[{"euler":{"heading":75.375,"pitch":128.5625,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":141.3125,"pitch":-108.5,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":126.5,"pitch":133.75,"roll":49.1875},"location":"Right Ankle"},{"euler":{"heading":77.1875,"pitch":148.1875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":171.125,"pitch":95.125,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":166.5625,"pitch":139.875,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:24.405"} +{"sensors":[{"euler":{"heading":93.0625,"pitch":129.625,"roll":12.5625},"location":"Left Knee"},{"euler":{"heading":154.4375,"pitch":-94.3125,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":115.4375,"pitch":139.8125,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":77.3125,"pitch":146.1875,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":172.5625,"pitch":107.625,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":151.3125,"pitch":124.6875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:24.506"} +{"sensors":[{"euler":{"heading":91.6875,"pitch":132.25,"roll":13.8125},"location":"Left Knee"},{"euler":{"heading":151.5625,"pitch":-99.625,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":111.3125,"pitch":142.625,"roll":59.5},"location":"Right Ankle"},{"euler":{"heading":75.1875,"pitch":145.0625,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":176.6875,"pitch":175.6875,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":140.9375,"pitch":112.0625,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:24.607"} +{"sensors":[{"euler":{"heading":323.0625,"pitch":144.6875,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":125.375,"pitch":-90.25,"roll":83.0},"location":"Left Ankle"},{"euler":{"heading":107.5,"pitch":148.375,"roll":62.6875},"location":"Right Ankle"},{"euler":{"heading":81.125,"pitch":142.8125,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":183.25,"pitch":-178.625,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":142.1875,"pitch":110.8125,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:24.708"} +{"sensors":[{"euler":{"heading":19.4375,"pitch":160.0,"roll":44.5625},"location":"Left Knee"},{"euler":{"heading":96.375,"pitch":95.5625,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":102.25,"pitch":157.8125,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":84.75,"pitch":142.9375,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":190.0625,"pitch":-130.75,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":148.0,"pitch":111.3125,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:24.809"} +{"sensors":[{"euler":{"heading":106.6875,"pitch":165.25,"roll":46.1875},"location":"Left Knee"},{"euler":{"heading":90.3125,"pitch":92.6875,"roll":58.75},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":191.5625,"roll":68.875},"location":"Right Ankle"},{"euler":{"heading":87.375,"pitch":145.25,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":199.3125,"pitch":-113.8125,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":155.4375,"pitch":114.25,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:24.910"} +{"sensors":[{"euler":{"heading":36.75,"pitch":153.75,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":104.5,"pitch":96.0,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":-158.25,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":91.5,"pitch":143.625,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":215.875,"pitch":-103.5625,"roll":61.75},"location":"Right Knee"},{"euler":{"heading":157.4375,"pitch":114.25,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:25.11"} +{"sensors":[{"euler":{"heading":46.4375,"pitch":145.6875,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":87.625,"roll":76.4375},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":-149.0625,"roll":56.5},"location":"Right Ankle"},{"euler":{"heading":99.75,"pitch":136.75,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":225.8125,"pitch":-95.0625,"roll":55.0},"location":"Right Knee"},{"euler":{"heading":160.5625,"pitch":118.3125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:25.112"} +{"sensors":[{"euler":{"heading":53.9375,"pitch":139.6875,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":134.5625,"pitch":-178.25,"roll":88.25},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":-161.0,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":102.5625,"pitch":137.375,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":211.625,"pitch":-94.875,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":163.5,"pitch":125.4375,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:25.213"} +{"sensors":[{"euler":{"heading":56.625,"pitch":136.375,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":133.8125,"pitch":-1.0625,"roll":87.75},"location":"Left Ankle"},{"euler":{"heading":110.875,"pitch":160.125,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":97.9375,"pitch":142.0625,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":196.75,"pitch":-177.0,"roll":86.9375},"location":"Right Knee"},{"euler":{"heading":165.875,"pitch":131.0,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:25.314"} +{"sensors":[{"euler":{"heading":60.875,"pitch":133.8125,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":133.375,"pitch":-175.125,"roll":84.3125},"location":"Left Ankle"},{"euler":{"heading":128.25,"pitch":136.8125,"roll":47.9375},"location":"Right Ankle"},{"euler":{"heading":86.0,"pitch":144.25,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":175.6875,"pitch":91.5625,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":166.8125,"pitch":136.0625,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:25.414"} +{"sensors":[{"euler":{"heading":69.25,"pitch":131.0,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":143.8125,"pitch":-78.0625,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":135.625,"pitch":133.75,"roll":45.5625},"location":"Right Ankle"},{"euler":{"heading":78.1875,"pitch":147.5,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":172.625,"pitch":97.25,"roll":69.875},"location":"Right Knee"},{"euler":{"heading":168.0,"pitch":142.625,"roll":67.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:25.514"} +{"sensors":[{"euler":{"heading":85.5625,"pitch":130.5625,"roll":15.125},"location":"Left Knee"},{"euler":{"heading":148.9375,"pitch":-106.5625,"roll":61.9375},"location":"Left Ankle"},{"euler":{"heading":112.9375,"pitch":148.625,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":77.125,"pitch":147.0,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":171.3125,"pitch":98.4375,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":162.25,"pitch":132.875,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:25.615"} +{"sensors":[{"euler":{"heading":103.3125,"pitch":125.4375,"roll":10.0625},"location":"Left Knee"},{"euler":{"heading":167.4375,"pitch":-104.0625,"roll":48.4375},"location":"Left Ankle"},{"euler":{"heading":111.0,"pitch":150.6875,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":75.3125,"pitch":148.0625,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":174.0625,"pitch":123.25,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":151.875,"pitch":113.9375,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:25.716"} +{"sensors":[{"euler":{"heading":86.6875,"pitch":135.375,"roll":17.9375},"location":"Left Knee"},{"euler":{"heading":143.5625,"pitch":-97.75,"roll":67.3125},"location":"Left Ankle"},{"euler":{"heading":106.0,"pitch":151.375,"roll":62.25},"location":"Right Ankle"},{"euler":{"heading":78.0625,"pitch":144.5625,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":147.6875,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":147.75,"pitch":109.375,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:25.816"} +{"sensors":[{"euler":{"heading":37.125,"pitch":151.6875,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":114.5625,"pitch":100.75,"roll":83.8125},"location":"Left Ankle"},{"euler":{"heading":97.6875,"pitch":162.5,"roll":65.375},"location":"Right Ankle"},{"euler":{"heading":80.5,"pitch":142.5625,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":180.4375,"pitch":-178.5625,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":147.4375,"pitch":108.75,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:25.917"} +{"sensors":[{"euler":{"heading":100.0,"pitch":167.25,"roll":46.25},"location":"Left Knee"},{"euler":{"heading":86.875,"pitch":92.0625,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":176.3125,"roll":67.9375},"location":"Right Ankle"},{"euler":{"heading":81.6875,"pitch":143.125,"roll":68.8125},"location":"Right Hip"},{"euler":{"heading":188.5625,"pitch":-131.625,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":152.5625,"pitch":113.9375,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:26.18"} +{"sensors":[{"euler":{"heading":26.0625,"pitch":159.8125,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":94.4375,"pitch":96.9375,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":-157.5,"roll":66.5},"location":"Right Ankle"},{"euler":{"heading":86.5625,"pitch":144.25,"roll":68.25},"location":"Right Hip"},{"euler":{"heading":203.4375,"pitch":-112.4375,"roll":68.625},"location":"Right Knee"},{"euler":{"heading":155.375,"pitch":114.875,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:26.118"} +{"sensors":[{"euler":{"heading":39.0,"pitch":151.0625,"roll":42.8125},"location":"Left Knee"},{"euler":{"heading":109.25,"pitch":93.0,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-136.5,"roll":55.5625},"location":"Right Ankle"},{"euler":{"heading":94.75,"pitch":139.125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":216.125,"pitch":-101.5625,"roll":58.125},"location":"Right Knee"},{"euler":{"heading":155.375,"pitch":117.75,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:26.218"} +{"sensors":[{"euler":{"heading":48.4375,"pitch":144.0625,"roll":42.0},"location":"Left Knee"},{"euler":{"heading":127.3125,"pitch":178.4375,"roll":87.875},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-143.25,"roll":55.0625},"location":"Right Ankle"},{"euler":{"heading":100.0625,"pitch":135.0625,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":213.625,"pitch":-93.8125,"roll":63.25},"location":"Right Knee"},{"euler":{"heading":161.25,"pitch":127.625,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:26.319"} +{"sensors":[{"euler":{"heading":56.5,"pitch":138.375,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":133.3125,"pitch":-2.125,"roll":87.8125},"location":"Left Ankle"},{"euler":{"heading":100.125,"pitch":-178.3125,"roll":61.375},"location":"Right Ankle"},{"euler":{"heading":98.3125,"pitch":138.3125,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":200.125,"pitch":-91.3125,"roll":80.625},"location":"Right Knee"},{"euler":{"heading":166.0625,"pitch":134.3125,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:26.420"} +{"sensors":[{"euler":{"heading":63.625,"pitch":134.0,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":133.6875,"pitch":-175.1875,"roll":83.6875},"location":"Left Ankle"},{"euler":{"heading":132.0,"pitch":141.875,"roll":49.6875},"location":"Right Ankle"},{"euler":{"heading":90.875,"pitch":144.0625,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":183.9375,"pitch":105.25,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":167.625,"pitch":138.8125,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:26.520"} +{"sensors":[{"euler":{"heading":72.625,"pitch":129.5625,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":142.25,"pitch":-112.3125,"roll":76.375},"location":"Left Ankle"},{"euler":{"heading":50.625,"pitch":132.5625,"roll":43.0},"location":"Right Ankle"},{"euler":{"heading":77.875,"pitch":148.875,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":173.1875,"pitch":96.3125,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":170.75,"pitch":144.875,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:26.622"} +{"sensors":[{"euler":{"heading":88.1875,"pitch":126.0,"roll":17.5},"location":"Left Knee"},{"euler":{"heading":150.75,"pitch":-98.9375,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":120.0625,"pitch":142.625,"roll":54.4375},"location":"Right Ankle"},{"euler":{"heading":81.3125,"pitch":146.5625,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":175.0,"pitch":102.0625,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":170.25,"pitch":138.75,"roll":66.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:26.723"} +{"sensors":[{"euler":{"heading":105.8125,"pitch":125.5625,"roll":8.5625},"location":"Left Knee"},{"euler":{"heading":161.4375,"pitch":-103.125,"roll":52.125},"location":"Left Ankle"},{"euler":{"heading":112.625,"pitch":147.625,"roll":58.75},"location":"Right Ankle"},{"euler":{"heading":80.9375,"pitch":144.9375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":176.3125,"pitch":121.8125,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":153.6875,"pitch":120.0625,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:26.823"} +{"sensors":[{"euler":{"heading":94.6875,"pitch":132.0625,"roll":15.125},"location":"Left Knee"},{"euler":{"heading":155.6875,"pitch":-103.6875,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":108.75,"pitch":152.0625,"roll":61.8125},"location":"Right Ankle"},{"euler":{"heading":82.1875,"pitch":141.9375,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":179.9375,"pitch":176.8125,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":148.75,"pitch":114.9375,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:26.924"} +{"sensors":[{"euler":{"heading":327.25,"pitch":146.8125,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":124.6875,"pitch":-175.25,"roll":84.0},"location":"Left Ankle"},{"euler":{"heading":106.5,"pitch":155.8125,"roll":64.625},"location":"Right Ankle"},{"euler":{"heading":83.0,"pitch":142.5625,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":185.625,"pitch":-165.5625,"roll":82.9375},"location":"Right Knee"},{"euler":{"heading":145.125,"pitch":111.1875,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:27.24"} +{"sensors":[{"euler":{"heading":21.75,"pitch":160.6875,"roll":43.8125},"location":"Left Knee"},{"euler":{"heading":98.1875,"pitch":97.875,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":102.5625,"pitch":164.625,"roll":67.0},"location":"Right Ankle"},{"euler":{"heading":84.5,"pitch":144.0,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":192.3125,"pitch":-133.0625,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":147.8125,"pitch":112.125,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:27.125"} +{"sensors":[{"euler":{"heading":107.25,"pitch":165.9375,"roll":45.6875},"location":"Left Knee"},{"euler":{"heading":90.4375,"pitch":92.625,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":95.75,"pitch":-177.25,"roll":68.5625},"location":"Right Ankle"},{"euler":{"heading":86.3125,"pitch":145.8125,"roll":68.9375},"location":"Right Hip"},{"euler":{"heading":201.125,"pitch":-115.6875,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":155.375,"pitch":115.125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:27.226"} +{"sensors":[{"euler":{"heading":36.4375,"pitch":154.375,"roll":44.125},"location":"Left Knee"},{"euler":{"heading":104.875,"pitch":94.5625,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":-153.875,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":91.0,"pitch":146.0,"roll":68.625},"location":"Right Hip"},{"euler":{"heading":218.25,"pitch":-102.0,"roll":61.75},"location":"Right Knee"},{"euler":{"heading":158.875,"pitch":116.125,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:27.327"} +{"sensors":[{"euler":{"heading":47.75,"pitch":145.4375,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":114.9375,"pitch":87.5625,"roll":75.8125},"location":"Left Ankle"},{"euler":{"heading":73.375,"pitch":-133.375,"roll":52.3125},"location":"Right Ankle"},{"euler":{"heading":98.75,"pitch":137.0625,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":221.5,"pitch":-95.8125,"roll":54.625},"location":"Right Knee"},{"euler":{"heading":162.375,"pitch":121.125,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:27.427"} +{"sensors":[{"euler":{"heading":54.4375,"pitch":139.5,"roll":41.5},"location":"Left Knee"},{"euler":{"heading":132.5625,"pitch":179.625,"roll":88.625},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":-145.75,"roll":56.25},"location":"Right Ankle"},{"euler":{"heading":101.25,"pitch":137.25,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":217.6875,"pitch":-91.75,"roll":62.375},"location":"Right Knee"},{"euler":{"heading":163.4375,"pitch":128.5,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:27.527"} +{"sensors":[{"euler":{"heading":60.4375,"pitch":135.4375,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":134.875,"pitch":0.125,"roll":86.625},"location":"Left Ankle"},{"euler":{"heading":107.6875,"pitch":170.8125,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":96.75,"pitch":141.3125,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":200.1875,"pitch":-174.875,"roll":82.4375},"location":"Right Knee"},{"euler":{"heading":164.5625,"pitch":132.75,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:27.628"} +{"sensors":[{"euler":{"heading":66.125,"pitch":131.9375,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":135.1875,"pitch":-175.875,"roll":85.0625},"location":"Left Ankle"},{"euler":{"heading":136.6875,"pitch":133.0625,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":83.5,"pitch":147.25,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":182.0,"pitch":100.1875,"roll":76.1875},"location":"Right Knee"},{"euler":{"heading":164.9375,"pitch":137.0,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:27.729"} +{"sensors":[{"euler":{"heading":72.5,"pitch":129.5,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":142.1875,"pitch":-111.0625,"roll":76.6875},"location":"Left Ankle"},{"euler":{"heading":136.0625,"pitch":135.5625,"roll":46.3125},"location":"Right Ankle"},{"euler":{"heading":76.1875,"pitch":149.9375,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":177.125,"pitch":95.3125,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":166.875,"pitch":141.6875,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:27.830"} +{"sensors":[{"euler":{"heading":86.625,"pitch":127.1875,"roll":17.375},"location":"Left Knee"},{"euler":{"heading":151.4375,"pitch":-98.5,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":121.0,"pitch":143.9375,"roll":54.6875},"location":"Right Ankle"},{"euler":{"heading":77.375,"pitch":149.0625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":177.25,"pitch":105.5625,"roll":79.5},"location":"Right Knee"},{"euler":{"heading":162.0625,"pitch":131.125,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:27.930"} +{"sensors":[{"euler":{"heading":99.0625,"pitch":126.8125,"roll":11.0625},"location":"Left Knee"},{"euler":{"heading":149.4375,"pitch":-107.5,"roll":57.3125},"location":"Left Ankle"},{"euler":{"heading":116.1875,"pitch":147.5,"roll":56.9375},"location":"Right Ankle"},{"euler":{"heading":78.125,"pitch":147.4375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":179.6875,"pitch":134.4375,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":150.6875,"pitch":115.75,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:28.30"} +{"sensors":[{"euler":{"heading":84.1875,"pitch":135.125,"roll":20.125},"location":"Left Knee"},{"euler":{"heading":134.8125,"pitch":-99.875,"roll":74.6875},"location":"Left Ankle"},{"euler":{"heading":109.0,"pitch":154.375,"roll":60.375},"location":"Right Ankle"},{"euler":{"heading":78.8125,"pitch":145.375,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":181.25,"pitch":179.125,"roll":84.4375},"location":"Right Knee"},{"euler":{"heading":147.3125,"pitch":112.625,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:28.131"} +{"sensors":[{"euler":{"heading":40.6875,"pitch":149.625,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":107.125,"pitch":88.9375,"roll":77.8125},"location":"Left Ankle"},{"euler":{"heading":102.0,"pitch":161.5,"roll":62.625},"location":"Right Ankle"},{"euler":{"heading":79.3125,"pitch":144.8125,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":183.75,"pitch":-148.625,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":143.875,"pitch":109.4375,"roll":48.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:28.231"} +{"sensors":[{"euler":{"heading":17.75,"pitch":164.375,"roll":44.4375},"location":"Left Knee"},{"euler":{"heading":88.1875,"pitch":91.1875,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":173.6875,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":81.125,"pitch":144.0625,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":-123.6875,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":149.5,"pitch":113.125,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:28.332"} +{"sensors":[{"euler":{"heading":22.9375,"pitch":160.5625,"roll":43.6875},"location":"Left Knee"},{"euler":{"heading":92.375,"pitch":93.1875,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":-164.625,"roll":66.1875},"location":"Right Ankle"},{"euler":{"heading":83.9375,"pitch":145.3125,"roll":69.3125},"location":"Right Hip"},{"euler":{"heading":201.1875,"pitch":-109.375,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":155.3125,"pitch":115.0625,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:28.433"} +{"sensors":[{"euler":{"heading":38.1875,"pitch":151.75,"roll":42.625},"location":"Left Knee"},{"euler":{"heading":104.0625,"pitch":86.5,"roll":71.3125},"location":"Left Ankle"},{"euler":{"heading":79.5625,"pitch":-143.4375,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":92.75,"pitch":142.4375,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":219.6875,"pitch":-98.75,"roll":57.8125},"location":"Right Knee"},{"euler":{"heading":154.875,"pitch":117.875,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:28.533"} +{"sensors":[{"euler":{"heading":43.9375,"pitch":146.25,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":118.5,"pitch":173.875,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":-148.875,"roll":56.3125},"location":"Right Ankle"},{"euler":{"heading":99.125,"pitch":136.3125,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":221.8125,"pitch":-94.0,"roll":58.0625},"location":"Right Knee"},{"euler":{"heading":156.375,"pitch":123.4375,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:28.634"} +{"sensors":[{"euler":{"heading":48.125,"pitch":142.3125,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":124.375,"pitch":0.3125,"roll":89.5625},"location":"Left Ankle"},{"euler":{"heading":95.8125,"pitch":-171.0,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":97.75,"pitch":138.5625,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":205.8125,"pitch":-93.375,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":160.0625,"pitch":129.6875,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:28.734"} +{"sensors":[{"euler":{"heading":57.0625,"pitch":136.8125,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":127.4375,"pitch":-178.0625,"roll":87.5625},"location":"Left Ankle"},{"euler":{"heading":108.75,"pitch":152.1875,"roll":61.25},"location":"Right Ankle"},{"euler":{"heading":92.5,"pitch":142.75,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":183.3125,"pitch":91.875,"roll":82.625},"location":"Right Knee"},{"euler":{"heading":163.25,"pitch":134.1875,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:28.835"} +{"sensors":[{"euler":{"heading":65.3125,"pitch":132.625,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":134.125,"pitch":-107.0,"roll":81.6875},"location":"Left Ankle"},{"euler":{"heading":41.5,"pitch":139.0625,"roll":44.6875},"location":"Right Ankle"},{"euler":{"heading":79.9375,"pitch":148.8125,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":174.0625,"pitch":92.75,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":166.1875,"pitch":138.0625,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:28.936"} +{"sensors":[{"euler":{"heading":77.25,"pitch":128.875,"roll":24.75},"location":"Left Knee"},{"euler":{"heading":144.0625,"pitch":-101.3125,"roll":72.625},"location":"Left Ankle"},{"euler":{"heading":127.4375,"pitch":142.6875,"roll":47.375},"location":"Right Ankle"},{"euler":{"heading":78.4375,"pitch":148.6875,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":173.9375,"pitch":93.5625,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":168.5625,"pitch":140.375,"roll":67.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:29.37"} +{"sensors":[{"euler":{"heading":95.9375,"pitch":128.25,"roll":12.25},"location":"Left Knee"},{"euler":{"heading":154.5,"pitch":-96.3125,"roll":58.3125},"location":"Left Ankle"},{"euler":{"heading":115.875,"pitch":149.3125,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":82.4375,"pitch":146.125,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":177.1875,"pitch":108.0,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":158.375,"pitch":128.4375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:29.138"} +{"sensors":[{"euler":{"heading":104.375,"pitch":125.3125,"roll":11.1875},"location":"Left Knee"},{"euler":{"heading":156.0625,"pitch":-101.0625,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":108.875,"pitch":152.5625,"roll":57.9375},"location":"Right Ankle"},{"euler":{"heading":83.375,"pitch":143.9375,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":178.8125,"pitch":176.25,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":154.375,"pitch":115.1875,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:29.238"} +{"sensors":[{"euler":{"heading":81.25,"pitch":136.5625,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":131.0,"pitch":-95.75,"roll":80.3125},"location":"Left Ankle"},{"euler":{"heading":99.4375,"pitch":160.25,"roll":61.875},"location":"Right Ankle"},{"euler":{"heading":85.5625,"pitch":141.625,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":180.9375,"pitch":-179.625,"roll":84.375},"location":"Right Knee"},{"euler":{"heading":149.8125,"pitch":111.6875,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:29.338"} +{"sensors":[{"euler":{"heading":34.25,"pitch":154.375,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":91.6875,"roll":70.375},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":168.6875,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":84.9375,"pitch":141.1875,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":183.75,"pitch":-140.625,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":147.3125,"pitch":109.125,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:29.439"} +{"sensors":[{"euler":{"heading":104.6875,"pitch":167.1875,"roll":46.4375},"location":"Left Knee"},{"euler":{"heading":86.375,"pitch":88.875,"roll":55.75},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":-175.4375,"roll":68.3125},"location":"Right Ankle"},{"euler":{"heading":85.875,"pitch":142.0,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":192.25,"pitch":-119.875,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":153.6875,"pitch":112.9375,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:29.541"} +{"sensors":[{"euler":{"heading":32.5625,"pitch":157.75,"roll":44.625},"location":"Left Knee"},{"euler":{"heading":98.8125,"pitch":91.0,"roll":64.875},"location":"Left Ankle"},{"euler":{"heading":83.9375,"pitch":-155.5,"roll":65.4375},"location":"Right Ankle"},{"euler":{"heading":89.875,"pitch":143.6875,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":209.375,"pitch":-110.0,"roll":64.6875},"location":"Right Knee"},{"euler":{"heading":157.5625,"pitch":116.125,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:29.641"} +{"sensors":[{"euler":{"heading":42.9375,"pitch":148.8125,"roll":43.75},"location":"Left Knee"},{"euler":{"heading":108.25,"pitch":85.0,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":70.9375,"pitch":-130.6875,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":96.9375,"pitch":137.5625,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":221.9375,"pitch":-98.5,"roll":54.9375},"location":"Right Knee"},{"euler":{"heading":158.875,"pitch":119.5625,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:29.742"} +{"sensors":[{"euler":{"heading":49.3125,"pitch":143.4375,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":125.625,"pitch":4.4375,"roll":85.5},"location":"Left Ankle"},{"euler":{"heading":70.6875,"pitch":-135.8125,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":102.75,"pitch":135.25,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":217.6875,"pitch":-93.3125,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":158.5,"pitch":125.9375,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:29.843"} +{"sensors":[{"euler":{"heading":53.8125,"pitch":139.5625,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":126.3125,"pitch":6.125,"roll":84.625},"location":"Left Ankle"},{"euler":{"heading":96.125,"pitch":-176.5625,"roll":60.375},"location":"Right Ankle"},{"euler":{"heading":100.3125,"pitch":139.75,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":201.625,"pitch":-88.0,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":160.5,"pitch":129.6875,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:29.944"} +{"sensors":[{"euler":{"heading":59.875,"pitch":135.75,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":178.0,"roll":86.4375},"location":"Left Ankle"},{"euler":{"heading":116.1875,"pitch":149.75,"roll":52.25},"location":"Right Ankle"},{"euler":{"heading":91.8125,"pitch":143.6875,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":184.0625,"pitch":82.375,"roll":80.1875},"location":"Right Knee"},{"euler":{"heading":161.375,"pitch":132.75,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:30.44"} +{"sensors":[{"euler":{"heading":67.1875,"pitch":132.0,"roll":30.8125},"location":"Left Knee"},{"euler":{"heading":131.5625,"pitch":-174.9375,"roll":83.875},"location":"Left Ankle"},{"euler":{"heading":43.8125,"pitch":132.75,"roll":42.125},"location":"Right Ankle"},{"euler":{"heading":79.8125,"pitch":146.9375,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":170.8125,"pitch":90.0625,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":164.3125,"pitch":138.5,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:30.146"} +{"sensors":[{"euler":{"heading":80.1875,"pitch":128.3125,"roll":22.6875},"location":"Left Knee"},{"euler":{"heading":146.0625,"pitch":-94.6875,"roll":72.375},"location":"Left Ankle"},{"euler":{"heading":121.25,"pitch":139.3125,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":79.8125,"pitch":146.75,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":172.8125,"pitch":93.1875,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":167.75,"pitch":140.8125,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:30.247"} +{"sensors":[{"euler":{"heading":99.0625,"pitch":127.375,"roll":11.125},"location":"Left Knee"},{"euler":{"heading":161.5625,"pitch":-89.9375,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":112.9375,"pitch":143.8125,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":80.625,"pitch":145.0625,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":176.4375,"pitch":111.625,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":154.1875,"pitch":126.1875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:30.347"} +{"sensors":[{"euler":{"heading":105.1875,"pitch":125.9375,"roll":10.6875},"location":"Left Knee"},{"euler":{"heading":158.375,"pitch":-97.1875,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":106.5625,"pitch":148.4375,"roll":60.8125},"location":"Right Ankle"},{"euler":{"heading":79.5625,"pitch":143.9375,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":177.25,"pitch":175.4375,"roll":83.375},"location":"Right Knee"},{"euler":{"heading":147.9375,"pitch":113.25,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:30.448"} +{"sensors":[{"euler":{"heading":77.25,"pitch":139.4375,"roll":23.375},"location":"Left Knee"},{"euler":{"heading":131.3125,"pitch":-173.625,"roll":80.625},"location":"Left Ankle"},{"euler":{"heading":98.875,"pitch":156.25,"roll":64.8125},"location":"Right Ankle"},{"euler":{"heading":83.8125,"pitch":140.625,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":181.0,"pitch":-179.0625,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":145.0625,"pitch":110.3125,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:30.549"} +{"sensors":[{"euler":{"heading":29.75,"pitch":157.5,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":99.3125,"pitch":91.5,"roll":67.75},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":165.375,"roll":67.0},"location":"Right Ankle"},{"euler":{"heading":85.4375,"pitch":140.4375,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":186.8125,"pitch":-136.625,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":147.9375,"pitch":111.5,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:30.650"} +{"sensors":[{"euler":{"heading":104.625,"pitch":167.5625,"roll":46.75},"location":"Left Knee"},{"euler":{"heading":86.4375,"pitch":90.1875,"roll":55.375},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":-176.625,"roll":69.0625},"location":"Right Ankle"},{"euler":{"heading":86.4375,"pitch":141.25,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":195.1875,"pitch":-119.4375,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":154.75,"pitch":114.625,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:30.750"} +{"sensors":[{"euler":{"heading":36.8125,"pitch":156.875,"roll":43.6875},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":91.1875,"roll":66.875},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":-153.3125,"roll":65.9375},"location":"Right Ankle"},{"euler":{"heading":90.4375,"pitch":143.9375,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":212.5,"pitch":-108.125,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":158.625,"pitch":116.625,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:30.851"} +{"sensors":[{"euler":{"heading":44.8125,"pitch":148.0625,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":114.6875,"pitch":83.375,"roll":73.625},"location":"Left Ankle"},{"euler":{"heading":70.125,"pitch":-128.375,"roll":55.0625},"location":"Right Ankle"},{"euler":{"heading":97.625,"pitch":137.5,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":222.1875,"pitch":-98.8125,"roll":53.5},"location":"Right Knee"},{"euler":{"heading":156.375,"pitch":117.6875,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:30.951"} +{"sensors":[{"euler":{"heading":53.25,"pitch":141.9375,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":131.5,"pitch":1.6875,"roll":88.25},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":-140.0625,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":101.9375,"pitch":135.8125,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":219.875,"pitch":-93.5625,"roll":58.0},"location":"Right Knee"},{"euler":{"heading":159.0625,"pitch":126.75,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:31.53"} +{"sensors":[{"euler":{"heading":58.8125,"pitch":137.1875,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":130.125,"pitch":4.8125,"roll":83.375},"location":"Left Ankle"},{"euler":{"heading":91.625,"pitch":-173.1875,"roll":60.875},"location":"Right Ankle"},{"euler":{"heading":99.875,"pitch":140.0625,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":205.1875,"pitch":-87.6875,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":163.0625,"pitch":132.8125,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:31.153"} +{"sensors":[{"euler":{"heading":65.75,"pitch":131.8125,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":134.4375,"pitch":-0.125,"roll":89.4375},"location":"Left Ankle"},{"euler":{"heading":122.125,"pitch":145.1875,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":90.375,"pitch":145.3125,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":187.75,"pitch":88.8125,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":165.1875,"pitch":137.25,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:31.253"} +{"sensors":[{"euler":{"heading":75.0,"pitch":128.125,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":145.5625,"pitch":-58.8125,"roll":78.5},"location":"Left Ankle"},{"euler":{"heading":44.875,"pitch":138.1875,"roll":43.3125},"location":"Right Ankle"},{"euler":{"heading":81.1875,"pitch":146.6875,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":174.875,"pitch":87.6875,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":166.8125,"pitch":142.25,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:31.355"} +{"sensors":[{"euler":{"heading":84.125,"pitch":125.4375,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":150.4375,"pitch":-80.625,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":122.75,"pitch":144.8125,"roll":48.6875},"location":"Right Ankle"},{"euler":{"heading":77.375,"pitch":148.125,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":173.75,"pitch":83.0,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":169.375,"pitch":144.75,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:31.456"} +{"sensors":[{"euler":{"heading":103.1875,"pitch":127.3125,"roll":9.5625},"location":"Left Knee"},{"euler":{"heading":169.125,"pitch":-90.25,"roll":50.0},"location":"Left Ankle"},{"euler":{"heading":110.875,"pitch":148.0,"roll":56.625},"location":"Right Ankle"},{"euler":{"heading":81.0625,"pitch":144.75,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":105.5625,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":155.75,"pitch":129.8125,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:31.556"} +{"sensors":[{"euler":{"heading":107.625,"pitch":126.9375,"roll":9.125},"location":"Left Knee"},{"euler":{"heading":165.6875,"pitch":-95.375,"roll":46.875},"location":"Left Ankle"},{"euler":{"heading":110.875,"pitch":151.0625,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":80.9375,"pitch":143.3125,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":183.375,"pitch":179.25,"roll":85.0625},"location":"Right Knee"},{"euler":{"heading":147.25,"pitch":116.875,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:31.658"} +{"sensors":[{"euler":{"heading":84.3125,"pitch":137.8125,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":144.875,"pitch":-77.125,"roll":67.8125},"location":"Left Ankle"},{"euler":{"heading":106.75,"pitch":157.0,"roll":59.8125},"location":"Right Ankle"},{"euler":{"heading":85.1875,"pitch":141.0,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":188.75,"pitch":-146.8125,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":145.5,"pitch":112.875,"roll":46.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:31.759"} +{"sensors":[{"euler":{"heading":340.25,"pitch":155.0625,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":110.5,"pitch":85.75,"roll":75.75},"location":"Left Ankle"},{"euler":{"heading":99.6875,"pitch":164.3125,"roll":65.0625},"location":"Right Ankle"},{"euler":{"heading":86.9375,"pitch":140.375,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":194.5,"pitch":-123.625,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":148.125,"pitch":113.0,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:31.859"} +{"sensors":[{"euler":{"heading":106.875,"pitch":167.5,"roll":46.0},"location":"Left Knee"},{"euler":{"heading":88.5625,"pitch":90.3125,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":-175.4375,"roll":67.375},"location":"Right Ankle"},{"euler":{"heading":88.0,"pitch":141.875,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":202.125,"pitch":-111.875,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":155.3125,"pitch":116.6875,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:31.960"} +{"sensors":[{"euler":{"heading":34.625,"pitch":158.625,"roll":44.75},"location":"Left Knee"},{"euler":{"heading":101.75,"pitch":93.1875,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":85.8125,"pitch":-155.0,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":90.5625,"pitch":143.75,"roll":69.8125},"location":"Right Hip"},{"euler":{"heading":217.3125,"pitch":-104.8125,"roll":60.3125},"location":"Right Knee"},{"euler":{"heading":158.8125,"pitch":116.5625,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:32.61"} +{"sensors":[{"euler":{"heading":45.1875,"pitch":149.4375,"roll":43.375},"location":"Left Knee"},{"euler":{"heading":113.875,"pitch":84.5,"roll":73.25},"location":"Left Ankle"},{"euler":{"heading":73.0,"pitch":-132.5625,"roll":55.0},"location":"Right Ankle"},{"euler":{"heading":98.9375,"pitch":137.5,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":223.625,"pitch":-98.4375,"roll":52.0625},"location":"Right Knee"},{"euler":{"heading":158.625,"pitch":119.125,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:32.162"} +{"sensors":[{"euler":{"heading":51.3125,"pitch":143.25,"roll":42.0625},"location":"Left Knee"},{"euler":{"heading":120.875,"pitch":89.75,"roll":81.75},"location":"Left Ankle"},{"euler":{"heading":74.25,"pitch":-141.3125,"roll":53.5625},"location":"Right Ankle"},{"euler":{"heading":102.5,"pitch":135.1875,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":223.5625,"pitch":-91.3125,"roll":56.75},"location":"Right Knee"},{"euler":{"heading":159.5625,"pitch":128.4375,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:32.263"} +{"sensors":[{"euler":{"heading":56.5,"pitch":138.9375,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":122.3125,"pitch":80.25,"roll":82.25},"location":"Left Ankle"},{"euler":{"heading":93.875,"pitch":-176.9375,"roll":60.125},"location":"Right Ankle"},{"euler":{"heading":99.375,"pitch":139.4375,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":208.4375,"pitch":-85.75,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":161.0,"pitch":134.75,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:32.364"} +{"sensors":[{"euler":{"heading":65.3125,"pitch":133.75,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":128.0625,"pitch":2.25,"roll":87.6875},"location":"Left Ankle"},{"euler":{"heading":122.4375,"pitch":143.875,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":90.4375,"pitch":143.9375,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":190.8125,"pitch":6.3125,"roll":85.5},"location":"Right Knee"},{"euler":{"heading":163.0,"pitch":137.9375,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:32.464"} +{"sensors":[{"euler":{"heading":72.5625,"pitch":129.3125,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":135.125,"pitch":-175.6875,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":44.25,"pitch":138.6875,"roll":44.8125},"location":"Right Ankle"},{"euler":{"heading":79.5625,"pitch":147.125,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":177.25,"pitch":92.875,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":166.375,"pitch":142.25,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:32.565"} +{"sensors":[{"euler":{"heading":81.375,"pitch":126.5,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":144.125,"pitch":-95.5,"roll":74.375},"location":"Left Ankle"},{"euler":{"heading":127.25,"pitch":143.3125,"roll":48.8125},"location":"Right Ankle"},{"euler":{"heading":76.875,"pitch":149.875,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":97.0625,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":168.1875,"pitch":143.375,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:32.665"} +{"sensors":[{"euler":{"heading":98.125,"pitch":128.4375,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":157.375,"pitch":-92.375,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":119.375,"pitch":144.8125,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":81.0,"pitch":146.6875,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":183.375,"pitch":175.1875,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":155.5625,"pitch":126.375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:32.765"} +{"sensors":[{"euler":{"heading":106.0625,"pitch":126.5,"roll":10.5625},"location":"Left Knee"},{"euler":{"heading":153.25,"pitch":-95.3125,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":118.625,"pitch":148.5,"roll":56.0},"location":"Right Ankle"},{"euler":{"heading":81.3125,"pitch":141.4375,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":187.625,"pitch":-188.25,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":148.125,"pitch":114.0,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:32.866"} +{"sensors":[{"euler":{"heading":81.3125,"pitch":138.625,"roll":21.4375},"location":"Left Knee"},{"euler":{"heading":127.75,"pitch":-91.1875,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":108.875,"pitch":156.75,"roll":59.5625},"location":"Right Ankle"},{"euler":{"heading":85.5625,"pitch":139.5625,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":188.875,"pitch":-149.75,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":145.0,"pitch":112.6875,"roll":45.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:32.966"} +{"sensors":[{"euler":{"heading":34.625,"pitch":155.4375,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":99.25,"pitch":89.8125,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":98.5,"pitch":166.5625,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":86.625,"pitch":138.8125,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":191.8125,"pitch":-127.5,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":146.75,"pitch":111.375,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:33.66"} +{"sensors":[{"euler":{"heading":106.25,"pitch":166.875,"roll":46.0625},"location":"Left Knee"},{"euler":{"heading":85.125,"pitch":89.1875,"roll":55.75},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":-175.875,"roll":67.25},"location":"Right Ankle"},{"euler":{"heading":86.125,"pitch":140.625,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":198.625,"pitch":-116.5,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":152.8125,"pitch":115.3125,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:33.167"} +{"sensors":[{"euler":{"heading":34.25,"pitch":157.8125,"roll":43.625},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":89.25,"roll":64.625},"location":"Left Ankle"},{"euler":{"heading":84.0625,"pitch":-154.0,"roll":63.0625},"location":"Right Ankle"},{"euler":{"heading":87.875,"pitch":142.375,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":213.4375,"pitch":-107.3125,"roll":62.0625},"location":"Right Knee"},{"euler":{"heading":155.625,"pitch":117.125,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:33.267"} +{"sensors":[{"euler":{"heading":41.0,"pitch":149.5,"roll":43.4375},"location":"Left Knee"},{"euler":{"heading":104.5625,"pitch":85.625,"roll":71.4375},"location":"Left Ankle"},{"euler":{"heading":74.1875,"pitch":-136.875,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":95.125,"pitch":138.6875,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":224.875,"pitch":-97.3125,"roll":52.625},"location":"Right Knee"},{"euler":{"heading":154.9375,"pitch":119.875,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:33.367"} +{"sensors":[{"euler":{"heading":49.0625,"pitch":143.5,"roll":41.5625},"location":"Left Knee"},{"euler":{"heading":123.375,"pitch":4.1875,"roll":85.4375},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-144.0625,"roll":54.1875},"location":"Right Ankle"},{"euler":{"heading":99.25,"pitch":136.3125,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":221.0625,"pitch":-92.0,"roll":57.125},"location":"Right Knee"},{"euler":{"heading":158.125,"pitch":127.6875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:33.468"} +{"sensors":[{"euler":{"heading":53.375,"pitch":139.25,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":4.25,"roll":84.0},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":-178.25,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":98.0625,"pitch":138.9375,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":205.8125,"pitch":-87.375,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":160.5625,"pitch":133.4375,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:33.569"} +{"sensors":[{"euler":{"heading":62.5,"pitch":133.9375,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":124.875,"pitch":178.25,"roll":88.125},"location":"Left Ankle"},{"euler":{"heading":128.8125,"pitch":142.25,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":88.3125,"pitch":144.8125,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":188.25,"pitch":87.4375,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":163.5625,"pitch":137.9375,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:33.670"} +{"sensors":[{"euler":{"heading":70.625,"pitch":130.25,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":130.875,"pitch":-174.75,"roll":84.125},"location":"Left Ankle"},{"euler":{"heading":50.9375,"pitch":130.5625,"roll":40.3125},"location":"Right Ankle"},{"euler":{"heading":80.25,"pitch":147.625,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":177.875,"pitch":92.3125,"roll":72.1875},"location":"Right Knee"},{"euler":{"heading":166.0625,"pitch":142.0625,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:33.770"} +{"sensors":[{"euler":{"heading":82.375,"pitch":126.4375,"roll":22.6875},"location":"Left Knee"},{"euler":{"heading":142.375,"pitch":-104.5,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":119.8125,"pitch":141.375,"roll":49.625},"location":"Right Ankle"},{"euler":{"heading":78.0625,"pitch":147.8125,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":174.5625,"pitch":80.0,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":165.75,"pitch":139.75,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:33.871"} +{"sensors":[{"euler":{"heading":102.75,"pitch":125.375,"roll":10.375},"location":"Left Knee"},{"euler":{"heading":162.1875,"pitch":-89.375,"roll":53.25},"location":"Left Ankle"},{"euler":{"heading":108.0,"pitch":150.5625,"roll":55.5625},"location":"Right Ankle"},{"euler":{"heading":79.25,"pitch":145.3125,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":176.5,"pitch":173.625,"roll":83.375},"location":"Right Knee"},{"euler":{"heading":151.1875,"pitch":122.875,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:33.972"} +{"sensors":[{"euler":{"heading":105.3125,"pitch":128.5,"roll":12.6875},"location":"Left Knee"},{"euler":{"heading":153.4375,"pitch":-93.4375,"roll":61.125},"location":"Left Ankle"},{"euler":{"heading":99.9375,"pitch":155.0625,"roll":60.3125},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":143.4375,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":177.6875,"pitch":178.25,"roll":86.3125},"location":"Right Knee"},{"euler":{"heading":145.8125,"pitch":113.75,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:34.72"} +{"sensors":[{"euler":{"heading":329.5625,"pitch":144.6875,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":123.5,"pitch":-0.25,"roll":89.4375},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":162.375,"roll":63.6875},"location":"Right Ankle"},{"euler":{"heading":81.9375,"pitch":140.6875,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":180.75,"pitch":-177.0625,"roll":85.3125},"location":"Right Knee"},{"euler":{"heading":145.0,"pitch":110.4375,"roll":46.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:34.173"} +{"sensors":[{"euler":{"heading":21.5625,"pitch":162.0625,"roll":43.5625},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":91.0,"roll":61.5},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":173.6875,"roll":66.75},"location":"Right Ankle"},{"euler":{"heading":82.8125,"pitch":139.375,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":185.875,"pitch":-119.5,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":149.5,"pitch":114.25,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:34.273"} +{"sensors":[{"euler":{"heading":30.375,"pitch":159.25,"roll":43.25},"location":"Left Knee"},{"euler":{"heading":91.125,"pitch":93.1875,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-168.5625,"roll":67.8125},"location":"Right Ankle"},{"euler":{"heading":86.25,"pitch":140.5,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":197.1875,"pitch":-109.875,"roll":71.4375},"location":"Right Knee"},{"euler":{"heading":154.9375,"pitch":115.875,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:34.373"} +{"sensors":[{"euler":{"heading":42.25,"pitch":151.5,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":103.1875,"pitch":90.6875,"roll":71.0},"location":"Left Ankle"},{"euler":{"heading":78.75,"pitch":-147.125,"roll":60.0},"location":"Right Ankle"},{"euler":{"heading":92.875,"pitch":140.875,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":218.6875,"pitch":-100.3125,"roll":57.875},"location":"Right Knee"},{"euler":{"heading":153.25,"pitch":116.625,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:34.474"} +{"sensors":[{"euler":{"heading":48.4375,"pitch":145.125,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":119.125,"pitch":85.875,"roll":80.4375},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":-146.75,"roll":57.875},"location":"Right Ankle"},{"euler":{"heading":98.125,"pitch":135.0,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":222.5,"pitch":-96.25,"roll":54.875},"location":"Right Knee"},{"euler":{"heading":157.1875,"pitch":123.8125,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:34.574"} +{"sensors":[{"euler":{"heading":57.0,"pitch":139.1875,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":130.0,"pitch":0.5625,"roll":88.0},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":-171.875,"roll":60.5},"location":"Right Ankle"},{"euler":{"heading":100.75,"pitch":136.4375,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":213.875,"pitch":-92.375,"roll":67.125},"location":"Right Knee"},{"euler":{"heading":162.125,"pitch":129.625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:34.675"} +{"sensors":[{"euler":{"heading":61.875,"pitch":135.5,"roll":36.8125},"location":"Left Knee"},{"euler":{"heading":123.8125,"pitch":177.375,"roll":86.4375},"location":"Left Ankle"},{"euler":{"heading":119.9375,"pitch":149.9375,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":96.125,"pitch":143.4375,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":198.375,"pitch":-177.0,"roll":86.6875},"location":"Right Knee"},{"euler":{"heading":163.25,"pitch":133.6875,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:34.776"} +{"sensors":[{"euler":{"heading":67.75,"pitch":132.0,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":129.375,"pitch":-176.5625,"roll":85.1875},"location":"Left Ankle"},{"euler":{"heading":47.6875,"pitch":133.9375,"roll":42.125},"location":"Right Ankle"},{"euler":{"heading":83.875,"pitch":147.0,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":180.0,"pitch":92.875,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":164.5,"pitch":137.125,"roll":64.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:34.878"} +{"sensors":[{"euler":{"heading":76.6875,"pitch":129.375,"roll":25.875},"location":"Left Knee"},{"euler":{"heading":139.1875,"pitch":-108.0,"roll":76.375},"location":"Left Ankle"},{"euler":{"heading":43.25,"pitch":137.5625,"roll":44.0625},"location":"Right Ankle"},{"euler":{"heading":76.75,"pitch":149.375,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":177.375,"pitch":90.1875,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":165.9375,"pitch":142.125,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:34.978"} +{"sensors":[{"euler":{"heading":92.4375,"pitch":127.375,"roll":14.5},"location":"Left Knee"},{"euler":{"heading":149.4375,"pitch":-92.1875,"roll":63.0625},"location":"Left Ankle"},{"euler":{"heading":111.75,"pitch":146.4375,"roll":54.6875},"location":"Right Ankle"},{"euler":{"heading":78.625,"pitch":148.0,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":178.125,"pitch":102.9375,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":164.5,"pitch":136.75,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:35.79"} +{"sensors":[{"euler":{"heading":109.3125,"pitch":125.1875,"roll":7.75},"location":"Left Knee"},{"euler":{"heading":162.3125,"pitch":-93.1875,"roll":50.1875},"location":"Left Ankle"},{"euler":{"heading":107.5625,"pitch":149.0625,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":75.0625,"pitch":147.875,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":177.75,"pitch":176.75,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":147.75,"pitch":117.625,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:35.180"} +{"sensors":[{"euler":{"heading":89.75,"pitch":136.1875,"roll":16.6875},"location":"Left Knee"},{"euler":{"heading":145.25,"pitch":-76.9375,"roll":63.4375},"location":"Left Ankle"},{"euler":{"heading":100.75,"pitch":154.9375,"roll":59.625},"location":"Right Ankle"},{"euler":{"heading":79.0625,"pitch":143.8125,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":180.5,"pitch":-178.3125,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":143.3125,"pitch":110.8125,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:35.281"} +{"sensors":[{"euler":{"heading":333.75,"pitch":152.6875,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":114.625,"pitch":4.3125,"roll":84.875},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":161.875,"roll":63.5},"location":"Right Ankle"},{"euler":{"heading":82.625,"pitch":141.5,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":185.1875,"pitch":-135.625,"roll":80.25},"location":"Right Knee"},{"euler":{"heading":143.1875,"pitch":108.9375,"roll":46.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:35.382"} +{"sensors":[{"euler":{"heading":103.625,"pitch":167.5625,"roll":45.375},"location":"Left Knee"},{"euler":{"heading":84.5,"pitch":90.4375,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":87.8125,"pitch":173.4375,"roll":66.6875},"location":"Right Ankle"},{"euler":{"heading":84.0,"pitch":140.75,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":191.5625,"pitch":-121.8125,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":149.625,"pitch":113.0625,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:35.483"} +{"sensors":[{"euler":{"heading":29.9375,"pitch":160.5,"roll":43.3125},"location":"Left Knee"},{"euler":{"heading":91.0625,"pitch":93.9375,"roll":61.1875},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-167.875,"roll":67.3125},"location":"Right Ankle"},{"euler":{"heading":86.75,"pitch":141.8125,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":205.0,"pitch":-112.9375,"roll":66.0625},"location":"Right Knee"},{"euler":{"heading":156.8125,"pitch":116.0,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:35.583"} +{"sensors":[{"euler":{"heading":41.125,"pitch":152.625,"roll":42.3125},"location":"Left Knee"},{"euler":{"heading":102.9375,"pitch":88.4375,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-144.625,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":92.5625,"pitch":141.3125,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":226.6875,"pitch":-101.75,"roll":52.9375},"location":"Right Knee"},{"euler":{"heading":155.0625,"pitch":116.9375,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:35.685"} +{"sensors":[{"euler":{"heading":49.6875,"pitch":145.625,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":121.125,"pitch":174.6875,"roll":84.5},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-143.0,"roll":53.4375},"location":"Right Ankle"},{"euler":{"heading":98.9375,"pitch":137.5625,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":226.3125,"pitch":-97.4375,"roll":52.0},"location":"Right Knee"},{"euler":{"heading":158.125,"pitch":124.3125,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:35.785"} +{"sensors":[{"euler":{"heading":57.8125,"pitch":139.5,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":130.3125,"pitch":1.3125,"roll":88.0},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":-165.0625,"roll":60.125},"location":"Right Ankle"},{"euler":{"heading":102.125,"pitch":138.0625,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":214.1875,"pitch":-90.875,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":161.75,"pitch":128.75,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:35.885"} +{"sensors":[{"euler":{"heading":65.0625,"pitch":134.3125,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":130.0625,"pitch":179.8125,"roll":88.8125},"location":"Left Ankle"},{"euler":{"heading":120.9375,"pitch":150.9375,"roll":54.25},"location":"Right Ankle"},{"euler":{"heading":96.125,"pitch":143.3125,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":198.9375,"pitch":-177.6875,"roll":87.5},"location":"Right Knee"},{"euler":{"heading":163.875,"pitch":133.125,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:35.986"} +{"sensors":[{"euler":{"heading":72.375,"pitch":129.9375,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":137.5,"pitch":-173.6875,"roll":83.4375},"location":"Left Ankle"},{"euler":{"heading":48.3125,"pitch":136.1875,"roll":42.6875},"location":"Right Ankle"},{"euler":{"heading":83.8125,"pitch":147.25,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":182.75,"pitch":94.125,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":165.9375,"pitch":134.875,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:36.87"} +{"sensors":[{"euler":{"heading":81.125,"pitch":126.375,"roll":26.3125},"location":"Left Knee"},{"euler":{"heading":146.125,"pitch":-93.0,"roll":75.5},"location":"Left Ankle"},{"euler":{"heading":129.375,"pitch":141.1875,"roll":45.8125},"location":"Right Ankle"},{"euler":{"heading":74.875,"pitch":151.375,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":178.75,"pitch":87.875,"roll":77.8125},"location":"Right Knee"},{"euler":{"heading":168.375,"pitch":138.4375,"roll":67.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:36.188"} +{"sensors":[{"euler":{"heading":94.625,"pitch":127.5625,"roll":14.0},"location":"Left Knee"},{"euler":{"heading":156.9375,"pitch":-96.875,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":115.625,"pitch":144.4375,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":78.0625,"pitch":148.5625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":180.9375,"pitch":174.0625,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":158.8125,"pitch":127.125,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:36.288"} +{"sensors":[{"euler":{"heading":106.5625,"pitch":125.8125,"roll":9.375},"location":"Left Knee"},{"euler":{"heading":156.875,"pitch":-100.0,"roll":52.3125},"location":"Left Ankle"},{"euler":{"heading":109.875,"pitch":149.625,"roll":55.6875},"location":"Right Ankle"},{"euler":{"heading":75.625,"pitch":148.625,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":181.5,"pitch":178.5625,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":148.4375,"pitch":109.6875,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:36.389"} +{"sensors":[{"euler":{"heading":87.875,"pitch":138.4375,"roll":19.375},"location":"Left Knee"},{"euler":{"heading":135.625,"pitch":-89.8125,"roll":73.875},"location":"Left Ankle"},{"euler":{"heading":101.125,"pitch":157.75,"roll":59.4375},"location":"Right Ankle"},{"euler":{"heading":81.0,"pitch":145.25,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":185.0625,"pitch":-149.625,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":145.375,"pitch":107.75,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:36.491"} +{"sensors":[{"euler":{"heading":338.25,"pitch":155.3125,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":100.375,"pitch":96.75,"roll":73.5625},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":165.3125,"roll":64.6875},"location":"Right Ankle"},{"euler":{"heading":83.9375,"pitch":143.5,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":190.75,"pitch":-129.0,"roll":77.75},"location":"Right Knee"},{"euler":{"heading":149.0625,"pitch":107.625,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:36.591"} +{"sensors":[{"euler":{"heading":19.25,"pitch":165.875,"roll":44.75},"location":"Left Knee"},{"euler":{"heading":85.0,"pitch":90.6875,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":179.125,"roll":68.0625},"location":"Right Ankle"},{"euler":{"heading":85.25,"pitch":143.625,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":200.75,"pitch":-117.5625,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":156.6875,"pitch":114.0625,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:36.692"} +{"sensors":[{"euler":{"heading":37.3125,"pitch":156.375,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":98.3125,"pitch":92.0,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":-157.6875,"roll":64.1875},"location":"Right Ankle"},{"euler":{"heading":90.0,"pitch":143.3125,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":221.1875,"pitch":-106.25,"roll":57.6875},"location":"Right Knee"},{"euler":{"heading":156.5,"pitch":115.0625,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:36.792"} +{"sensors":[{"euler":{"heading":45.6875,"pitch":148.1875,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":108.625,"pitch":84.3125,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-137.0,"roll":54.3125},"location":"Right Ankle"},{"euler":{"heading":99.5,"pitch":137.4375,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":228.3125,"pitch":-97.5625,"roll":50.1875},"location":"Right Knee"},{"euler":{"heading":159.0,"pitch":119.8125,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:36.893"} +{"sensors":[{"euler":{"heading":52.875,"pitch":142.0,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":124.0625,"pitch":4.25,"roll":85.6875},"location":"Left Ankle"},{"euler":{"heading":78.3125,"pitch":-145.375,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":103.1875,"pitch":136.75,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":223.0625,"pitch":-91.8125,"roll":58.0625},"location":"Right Knee"},{"euler":{"heading":163.3125,"pitch":129.0625,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:36.994"} +{"sensors":[{"euler":{"heading":60.5,"pitch":136.625,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":127.25,"pitch":177.5,"roll":87.1875},"location":"Left Ankle"},{"euler":{"heading":104.75,"pitch":172.125,"roll":58.5625},"location":"Right Ankle"},{"euler":{"heading":98.1875,"pitch":142.375,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":206.75,"pitch":-87.0625,"roll":78.0625},"location":"Right Knee"},{"euler":{"heading":165.6875,"pitch":132.625,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:37.95"} +{"sensors":[{"euler":{"heading":67.5,"pitch":132.375,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":130.625,"pitch":-177.4375,"roll":86.375},"location":"Left Ankle"},{"euler":{"heading":132.5625,"pitch":138.625,"roll":46.875},"location":"Right Ankle"},{"euler":{"heading":90.25,"pitch":145.875,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":190.5,"pitch":97.875,"roll":82.0625},"location":"Right Knee"},{"euler":{"heading":167.8125,"pitch":136.8125,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:37.195"} +{"sensors":[{"euler":{"heading":73.875,"pitch":130.0,"roll":28.9375},"location":"Left Knee"},{"euler":{"heading":138.875,"pitch":-105.0,"roll":78.75},"location":"Left Ankle"},{"euler":{"heading":51.375,"pitch":134.25,"roll":41.8125},"location":"Right Ankle"},{"euler":{"heading":80.25,"pitch":148.125,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":181.375,"pitch":97.75,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":168.875,"pitch":142.1875,"roll":67.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:37.296"} +{"sensors":[{"euler":{"heading":86.875,"pitch":127.5,"roll":19.5},"location":"Left Knee"},{"euler":{"heading":149.0625,"pitch":-88.75,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":123.9375,"pitch":142.6875,"roll":49.375},"location":"Right Ankle"},{"euler":{"heading":80.25,"pitch":147.1875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":178.9375,"pitch":96.75,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":169.125,"pitch":142.75,"roll":67.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:37.396"} +{"sensors":[{"euler":{"heading":107.5,"pitch":125.5,"roll":8.75},"location":"Left Knee"},{"euler":{"heading":171.4375,"pitch":-93.5625,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":116.5625,"pitch":147.0625,"roll":53.9375},"location":"Right Ankle"},{"euler":{"heading":79.5,"pitch":146.4375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":182.6875,"pitch":176.1875,"roll":84.0},"location":"Right Knee"},{"euler":{"heading":153.6875,"pitch":122.875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:37.498"} +{"sensors":[{"euler":{"heading":108.0625,"pitch":129.0,"roll":9.0625},"location":"Left Knee"},{"euler":{"heading":153.0,"pitch":-97.3125,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":112.375,"pitch":148.625,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":81.4375,"pitch":144.4375,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":188.0,"pitch":-168.4375,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":147.875,"pitch":110.875,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:37.598"} +{"sensors":[{"euler":{"heading":78.75,"pitch":140.125,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":124.5,"pitch":-175.1875,"roll":84.875},"location":"Left Ankle"},{"euler":{"heading":106.1875,"pitch":153.9375,"roll":60.9375},"location":"Right Ankle"},{"euler":{"heading":86.375,"pitch":140.8125,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":193.1875,"pitch":-142.125,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":149.1875,"pitch":109.875,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:37.699"} +{"sensors":[{"euler":{"heading":34.9375,"pitch":156.25,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":94.75,"pitch":95.0,"roll":65.125},"location":"Left Ankle"},{"euler":{"heading":98.3125,"pitch":165.9375,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":87.1875,"pitch":140.625,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":197.4375,"pitch":-125.25,"roll":75.3125},"location":"Right Knee"},{"euler":{"heading":150.8125,"pitch":110.5,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:37.800"} +{"sensors":[{"euler":{"heading":23.5,"pitch":163.6875,"roll":43.875},"location":"Left Knee"},{"euler":{"heading":87.25,"pitch":90.875,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":-173.375,"roll":67.4375},"location":"Right Ankle"},{"euler":{"heading":87.75,"pitch":144.4375,"roll":67.3125},"location":"Right Hip"},{"euler":{"heading":207.125,"pitch":-112.875,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":156.8125,"pitch":113.625,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:37.901"} +{"sensors":[{"euler":{"heading":45.25,"pitch":151.75,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":103.625,"pitch":92.625,"roll":69.25},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":-154.125,"roll":62.375},"location":"Right Ankle"},{"euler":{"heading":92.5,"pitch":143.625,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":227.0,"pitch":-103.5,"roll":55.0},"location":"Right Knee"},{"euler":{"heading":159.0,"pitch":114.5625,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:38.2"} +{"sensors":[{"euler":{"heading":55.75,"pitch":143.0,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":83.0625,"roll":75.0625},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":-139.6875,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":100.4375,"pitch":137.25,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":232.5,"pitch":-96.4375,"roll":48.4375},"location":"Right Knee"},{"euler":{"heading":162.9375,"pitch":119.5625,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:38.103"} +{"sensors":[{"euler":{"heading":62.5625,"pitch":137.25,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":134.375,"pitch":0.5625,"roll":87.75},"location":"Left Ankle"},{"euler":{"heading":86.5,"pitch":-152.0625,"roll":58.375},"location":"Right Ankle"},{"euler":{"heading":104.5,"pitch":137.25,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":226.6875,"pitch":-92.25,"roll":57.25},"location":"Right Knee"},{"euler":{"heading":165.5625,"pitch":127.125,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:38.203"} +{"sensors":[{"euler":{"heading":66.125,"pitch":133.875,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":131.25,"pitch":178.375,"roll":88.125},"location":"Left Ankle"},{"euler":{"heading":127.0625,"pitch":162.3125,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":99.875,"pitch":142.875,"roll":45.25},"location":"Right Hip"},{"euler":{"heading":210.25,"pitch":-91.9375,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":167.0625,"pitch":132.1875,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:38.305"} +{"sensors":[{"euler":{"heading":70.9375,"pitch":131.125,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":134.9375,"pitch":-176.5,"roll":86.9375},"location":"Left Ankle"},{"euler":{"heading":51.625,"pitch":132.4375,"roll":42.875},"location":"Right Ankle"},{"euler":{"heading":90.6875,"pitch":145.625,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":192.4375,"pitch":99.375,"roll":80.9375},"location":"Right Knee"},{"euler":{"heading":168.375,"pitch":136.4375,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:38.405"} +{"sensors":[{"euler":{"heading":79.125,"pitch":128.125,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":146.9375,"pitch":-76.375,"roll":74.75},"location":"Left Ankle"},{"euler":{"heading":49.75,"pitch":136.1875,"roll":41.375},"location":"Right Ankle"},{"euler":{"heading":79.0,"pitch":148.375,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":182.0625,"pitch":91.0625,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":170.3125,"pitch":142.8125,"roll":67.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:38.506"} +{"sensors":[{"euler":{"heading":88.125,"pitch":127.125,"roll":17.875},"location":"Left Knee"},{"euler":{"heading":148.6875,"pitch":-98.3125,"roll":66.6875},"location":"Left Ankle"},{"euler":{"heading":117.0625,"pitch":147.4375,"roll":52.875},"location":"Right Ankle"},{"euler":{"heading":78.375,"pitch":148.3125,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":182.3125,"pitch":96.125,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":169.25,"pitch":140.5625,"roll":67.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:38.606"} +{"sensors":[{"euler":{"heading":106.5,"pitch":127.25,"roll":7.625},"location":"Left Knee"},{"euler":{"heading":171.0,"pitch":-92.75,"roll":46.125},"location":"Left Ankle"},{"euler":{"heading":117.5625,"pitch":146.1875,"roll":53.5625},"location":"Right Ankle"},{"euler":{"heading":78.25,"pitch":147.8125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":186.125,"pitch":177.75,"roll":84.625},"location":"Right Knee"},{"euler":{"heading":152.0,"pitch":122.5,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:38.708"} +{"sensors":[{"euler":{"heading":102.1875,"pitch":131.0625,"roll":10.8125},"location":"Left Knee"},{"euler":{"heading":160.25,"pitch":-93.6875,"roll":50.0},"location":"Left Ankle"},{"euler":{"heading":113.125,"pitch":150.1875,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":144.75,"roll":79.875},"location":"Right Hip"},{"euler":{"heading":188.6875,"pitch":-160.25,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":144.4375,"pitch":109.3125,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:38.808"} +{"sensors":[{"euler":{"heading":327.75,"pitch":143.9375,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":125.5,"pitch":-113.4375,"roll":81.8125},"location":"Left Ankle"},{"euler":{"heading":105.375,"pitch":156.5,"roll":58.8125},"location":"Right Ankle"},{"euler":{"heading":82.0,"pitch":142.4375,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":191.9375,"pitch":-136.0625,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":144.9375,"pitch":108.0,"roll":46.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:38.909"} +{"sensors":[{"euler":{"heading":28.0625,"pitch":159.8125,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":93.75,"pitch":101.3125,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":166.6875,"roll":63.8125},"location":"Right Ankle"},{"euler":{"heading":84.0,"pitch":141.8125,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":197.1875,"pitch":-121.5625,"roll":74.75},"location":"Right Knee"},{"euler":{"heading":149.375,"pitch":110.625,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:39.10"} +{"sensors":[{"euler":{"heading":29.375,"pitch":162.0,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":94.375,"pitch":102.5625,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":87.4375,"pitch":-173.125,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":86.75,"pitch":142.9375,"roll":68.375},"location":"Right Hip"},{"euler":{"heading":207.5,"pitch":-112.5,"roll":66.4375},"location":"Right Knee"},{"euler":{"heading":156.375,"pitch":114.625,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:39.111"} +{"sensors":[{"euler":{"heading":49.5,"pitch":150.3125,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":108.3125,"pitch":104.5,"roll":72.0625},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":-151.6875,"roll":60.4375},"location":"Right Ankle"},{"euler":{"heading":91.4375,"pitch":139.0625,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":227.5,"pitch":-103.4375,"roll":53.5625},"location":"Right Knee"},{"euler":{"heading":156.125,"pitch":114.75,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:39.212"} +{"sensors":[{"euler":{"heading":55.9375,"pitch":143.75,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":119.9375,"pitch":101.75,"roll":79.6875},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":-149.8125,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":99.4375,"pitch":136.75,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":232.3125,"pitch":-96.6875,"roll":51.1875},"location":"Right Knee"},{"euler":{"heading":160.5625,"pitch":120.6875,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:39.312"} +{"sensors":[{"euler":{"heading":59.6875,"pitch":139.4375,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":129.0625,"pitch":0.8125,"roll":89.0},"location":"Left Ankle"},{"euler":{"heading":96.4375,"pitch":-172.625,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":102.9375,"pitch":136.625,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":218.375,"pitch":-93.9375,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":162.375,"pitch":129.5625,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:39.413"} +{"sensors":[{"euler":{"heading":67.375,"pitch":134.5625,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":128.375,"pitch":-179.9375,"roll":88.0},"location":"Left Ankle"},{"euler":{"heading":119.8125,"pitch":152.1875,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":93.8125,"pitch":143.125,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":198.8125,"pitch":-178.5625,"roll":88.375},"location":"Right Knee"},{"euler":{"heading":164.6875,"pitch":134.3125,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:39.513"} +{"sensors":[{"euler":{"heading":74.5,"pitch":130.75,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":134.75,"pitch":-174.0,"roll":83.4375},"location":"Left Ankle"},{"euler":{"heading":51.0,"pitch":136.25,"roll":40.6875},"location":"Right Ankle"},{"euler":{"heading":83.5,"pitch":146.1875,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":184.0,"pitch":91.9375,"roll":75.5625},"location":"Right Knee"},{"euler":{"heading":167.125,"pitch":138.9375,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:39.613"} +{"sensors":[{"euler":{"heading":84.375,"pitch":127.5625,"roll":23.9375},"location":"Left Knee"},{"euler":{"heading":144.875,"pitch":-102.0,"roll":74.0625},"location":"Left Ankle"},{"euler":{"heading":131.4375,"pitch":140.8125,"roll":45.1875},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":147.75,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":182.0,"pitch":86.625,"roll":78.625},"location":"Right Knee"},{"euler":{"heading":170.0,"pitch":143.0,"roll":67.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:39.715"} +{"sensors":[{"euler":{"heading":99.625,"pitch":129.1875,"roll":10.9375},"location":"Left Knee"},{"euler":{"heading":149.75,"pitch":-99.4375,"roll":61.75},"location":"Left Ankle"},{"euler":{"heading":118.5,"pitch":145.6875,"roll":53.875},"location":"Right Ankle"},{"euler":{"heading":82.9375,"pitch":146.125,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":185.25,"pitch":174.5625,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":162.9375,"pitch":130.375,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:39.815"} +{"sensors":[{"euler":{"heading":112.1875,"pitch":127.5,"roll":6.375},"location":"Left Knee"},{"euler":{"heading":157.75,"pitch":-102.625,"roll":52.8125},"location":"Left Ankle"},{"euler":{"heading":120.5625,"pitch":146.625,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":80.1875,"pitch":146.75,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":191.0,"pitch":-179.6875,"roll":83.625},"location":"Right Knee"},{"euler":{"heading":150.625,"pitch":115.375,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:39.915"} +{"sensors":[{"euler":{"heading":94.125,"pitch":135.6875,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":141.8125,"pitch":-90.0,"roll":69.6875},"location":"Left Ankle"},{"euler":{"heading":119.4375,"pitch":146.3125,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":84.4375,"pitch":144.3125,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":197.375,"pitch":-144.875,"roll":80.3125},"location":"Right Knee"},{"euler":{"heading":147.625,"pitch":113.6875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:40.16"} +{"sensors":[{"euler":{"heading":332.75,"pitch":150.3125,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":107.8125,"pitch":98.375,"roll":77.75},"location":"Left Ankle"},{"euler":{"heading":112.125,"pitch":151.375,"roll":59.9375},"location":"Right Ankle"},{"euler":{"heading":88.125,"pitch":142.875,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":202.6875,"pitch":-127.4375,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":147.6875,"pitch":111.8125,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:40.117"} +{"sensors":[{"euler":{"heading":22.125,"pitch":163.375,"roll":44.0},"location":"Left Knee"},{"euler":{"heading":85.5,"pitch":90.3125,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":103.75,"pitch":164.9375,"roll":64.3125},"location":"Right Ankle"},{"euler":{"heading":89.5,"pitch":143.375,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":208.875,"pitch":-115.0,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":154.5,"pitch":113.0,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:40.217"} +{"sensors":[{"euler":{"heading":29.75,"pitch":161.6875,"roll":43.25},"location":"Left Knee"},{"euler":{"heading":91.5625,"pitch":91.6875,"roll":59.4375},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":-174.6875,"roll":65.875},"location":"Right Ankle"},{"euler":{"heading":90.0,"pitch":145.1875,"roll":68.6875},"location":"Right Hip"},{"euler":{"heading":216.625,"pitch":-108.5625,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":159.625,"pitch":114.0625,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:40.318"} +{"sensors":[{"euler":{"heading":45.375,"pitch":149.6875,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":105.875,"pitch":87.4375,"roll":70.5625},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":-153.4375,"roll":61.8125},"location":"Right Ankle"},{"euler":{"heading":93.3125,"pitch":143.9375,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":231.5,"pitch":-100.125,"roll":51.9375},"location":"Right Knee"},{"euler":{"heading":160.375,"pitch":114.1875,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:40.419"} +{"sensors":[{"euler":{"heading":57.25,"pitch":142.1875,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":114.125,"pitch":84.5,"roll":76.625},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-140.9375,"roll":54.9375},"location":"Right Ankle"},{"euler":{"heading":97.8125,"pitch":137.6875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":234.1875,"pitch":-97.0,"roll":46.75},"location":"Right Knee"},{"euler":{"heading":164.3125,"pitch":121.4375,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:40.520"} +{"sensors":[{"euler":{"heading":60.0,"pitch":138.4375,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":130.9375,"pitch":-0.1875,"roll":88.4375},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":-160.375,"roll":59.0625},"location":"Right Ankle"},{"euler":{"heading":102.125,"pitch":137.3125,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":223.125,"pitch":-93.125,"roll":59.75},"location":"Right Knee"},{"euler":{"heading":163.75,"pitch":128.375,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:40.623"} +{"sensors":[{"euler":{"heading":66.5,"pitch":134.0625,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":129.875,"pitch":0.8125,"roll":89.125},"location":"Left Ankle"},{"euler":{"heading":113.8125,"pitch":153.6875,"roll":55.3125},"location":"Right Ankle"},{"euler":{"heading":94.25,"pitch":142.1875,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":201.6875,"pitch":-174.125,"roll":84.0625},"location":"Right Knee"},{"euler":{"heading":166.6875,"pitch":133.75,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:40.724"} +{"sensors":[{"euler":{"heading":73.625,"pitch":129.1875,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":134.0,"pitch":-176.0625,"roll":86.625},"location":"Left Ankle"},{"euler":{"heading":49.5,"pitch":135.4375,"roll":41.625},"location":"Right Ankle"},{"euler":{"heading":82.375,"pitch":147.75,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":185.5,"pitch":95.3125,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":169.5,"pitch":138.625,"roll":67.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:40.825"} +{"sensors":[{"euler":{"heading":81.625,"pitch":126.125,"roll":26.125},"location":"Left Knee"},{"euler":{"heading":141.875,"pitch":-95.5625,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":42.0625,"pitch":140.0,"roll":44.625},"location":"Right Ankle"},{"euler":{"heading":79.375,"pitch":147.6875,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":181.625,"pitch":92.4375,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":171.125,"pitch":144.375,"roll":69.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:40.932"} +{"sensors":[{"euler":{"heading":94.9375,"pitch":126.5625,"roll":13.5},"location":"Left Knee"},{"euler":{"heading":147.625,"pitch":-91.3125,"roll":64.0625},"location":"Left Ankle"},{"euler":{"heading":111.375,"pitch":147.375,"roll":53.625},"location":"Right Ankle"},{"euler":{"heading":80.0,"pitch":146.0,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":179.875,"pitch":104.375,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":165.1875,"pitch":134.6875,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:41.32"} +{"sensors":[{"euler":{"heading":112.0,"pitch":124.0,"roll":6.9375},"location":"Left Knee"},{"euler":{"heading":157.1875,"pitch":-97.0,"roll":52.3125},"location":"Left Ankle"},{"euler":{"heading":106.4375,"pitch":152.5,"roll":55.125},"location":"Right Ankle"},{"euler":{"heading":74.6875,"pitch":146.6875,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":180.625,"pitch":176.5625,"roll":84.0},"location":"Right Knee"},{"euler":{"heading":151.5,"pitch":114.3125,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:41.133"} +{"sensors":[{"euler":{"heading":92.5,"pitch":136.375,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":137.625,"pitch":-87.1875,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":104.125,"pitch":153.75,"roll":58.75},"location":"Right Ankle"},{"euler":{"heading":79.0,"pitch":142.5625,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":186.625,"pitch":-177.5625,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":146.4375,"pitch":110.8125,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:41.234"} +{"sensors":[{"euler":{"heading":334.75,"pitch":152.1875,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":104.375,"pitch":99.875,"roll":77.1875},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":160.6875,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":83.4375,"pitch":140.3125,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":191.875,"pitch":-130.375,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":148.75,"pitch":108.8125,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:41.335"} +{"sensors":[{"euler":{"heading":20.3125,"pitch":165.0,"roll":42.9375},"location":"Left Knee"},{"euler":{"heading":83.5,"pitch":91.4375,"roll":56.75},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":176.125,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":85.4375,"pitch":140.0,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":198.875,"pitch":-117.875,"roll":73.0625},"location":"Right Knee"},{"euler":{"heading":155.5625,"pitch":113.25,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:41.436"} +{"sensors":[{"euler":{"heading":34.6875,"pitch":158.5,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":93.0625,"pitch":93.3125,"roll":64.4375},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-160.5625,"roll":64.1875},"location":"Right Ankle"},{"euler":{"heading":89.1875,"pitch":141.375,"roll":67.875},"location":"Right Hip"},{"euler":{"heading":213.625,"pitch":-108.125,"roll":62.5},"location":"Right Knee"},{"euler":{"heading":159.1875,"pitch":114.25,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:41.537"} +{"sensors":[{"euler":{"heading":43.9375,"pitch":151.25,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":102.6875,"pitch":89.0,"roll":71.625},"location":"Left Ankle"},{"euler":{"heading":76.9375,"pitch":-143.3125,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":95.9375,"pitch":138.375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":230.0,"pitch":-98.9375,"roll":52.0},"location":"Right Knee"},{"euler":{"heading":157.375,"pitch":116.1875,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:41.638"} +{"sensors":[{"euler":{"heading":53.0625,"pitch":143.875,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":122.125,"pitch":175.875,"roll":85.75},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-146.875,"roll":54.5625},"location":"Right Ankle"},{"euler":{"heading":99.375,"pitch":137.5625,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":228.6875,"pitch":-94.1875,"roll":52.4375},"location":"Right Knee"},{"euler":{"heading":162.1875,"pitch":124.1875,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:41.738"} +{"sensors":[{"euler":{"heading":60.1875,"pitch":138.5625,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":128.8125,"pitch":0.25,"roll":88.6875},"location":"Left Ankle"},{"euler":{"heading":96.0625,"pitch":-177.3125,"roll":59.125},"location":"Right Ankle"},{"euler":{"heading":101.4375,"pitch":138.6875,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":213.0625,"pitch":-93.25,"roll":69.6875},"location":"Right Knee"},{"euler":{"heading":164.875,"pitch":129.875,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:41.839"} +{"sensors":[{"euler":{"heading":68.375,"pitch":133.375,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":131.4375,"pitch":-177.0625,"roll":86.9375},"location":"Left Ankle"},{"euler":{"heading":123.5625,"pitch":144.25,"roll":49.5},"location":"Right Ankle"},{"euler":{"heading":95.375,"pitch":142.5,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":193.9375,"pitch":177.875,"roll":87.8125},"location":"Right Knee"},{"euler":{"heading":167.5,"pitch":134.5625,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:41.939"} +{"sensors":[{"euler":{"heading":77.4375,"pitch":128.9375,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":140.1875,"pitch":-97.25,"roll":80.25},"location":"Left Ankle"},{"euler":{"heading":50.5,"pitch":133.25,"roll":39.125},"location":"Right Ankle"},{"euler":{"heading":81.75,"pitch":148.375,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":183.3125,"pitch":94.9375,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":169.5625,"pitch":138.75,"roll":67.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:42.40"} +{"sensors":[{"euler":{"heading":87.5,"pitch":126.375,"roll":22.25},"location":"Left Knee"},{"euler":{"heading":148.875,"pitch":-89.25,"roll":71.375},"location":"Left Ankle"},{"euler":{"heading":40.75,"pitch":140.4375,"roll":44.1875},"location":"Right Ankle"},{"euler":{"heading":80.0625,"pitch":149.5625,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":183.875,"pitch":99.375,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":171.375,"pitch":141.75,"roll":68.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:42.141"} +{"sensors":[{"euler":{"heading":103.875,"pitch":128.0625,"roll":9.1875},"location":"Left Knee"},{"euler":{"heading":159.1875,"pitch":-98.0,"roll":53.25},"location":"Left Ankle"},{"euler":{"heading":120.4375,"pitch":142.5625,"roll":50.8125},"location":"Right Ankle"},{"euler":{"heading":81.8125,"pitch":147.125,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":187.375,"pitch":177.5625,"roll":85.5625},"location":"Right Knee"},{"euler":{"heading":159.375,"pitch":126.0,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:42.241"} +{"sensors":[{"euler":{"heading":107.125,"pitch":128.0,"roll":8.1875},"location":"Left Knee"},{"euler":{"heading":147.5,"pitch":-105.3125,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":112.5625,"pitch":146.3125,"roll":54.8125},"location":"Right Ankle"},{"euler":{"heading":78.75,"pitch":147.125,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":188.125,"pitch":-178.25,"roll":83.125},"location":"Right Knee"},{"euler":{"heading":150.4375,"pitch":110.6875,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:42.341"} +{"sensors":[{"euler":{"heading":82.75,"pitch":138.5,"roll":21.125},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":-89.875,"roll":81.75},"location":"Left Ankle"},{"euler":{"heading":105.5625,"pitch":153.9375,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":83.3125,"pitch":143.3125,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":191.375,"pitch":-141.0,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":149.125,"pitch":109.5625,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:42.442"} +{"sensors":[{"euler":{"heading":37.25,"pitch":154.875,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":94.4375,"pitch":94.25,"roll":67.9375},"location":"Left Ankle"},{"euler":{"heading":97.9375,"pitch":160.625,"roll":62.0625},"location":"Right Ankle"},{"euler":{"heading":85.6875,"pitch":141.25,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":196.4375,"pitch":-125.1875,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":151.5,"pitch":110.125,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:42.542"} +{"sensors":[{"euler":{"heading":24.6875,"pitch":164.3125,"roll":42.8125},"location":"Left Knee"},{"euler":{"heading":83.5,"pitch":92.1875,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":89.9375,"pitch":174.0,"roll":66.0},"location":"Right Ankle"},{"euler":{"heading":86.75,"pitch":141.75,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":203.6875,"pitch":-117.0625,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":158.4375,"pitch":113.8125,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:42.643"} +{"sensors":[{"euler":{"heading":41.875,"pitch":155.4375,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":96.5,"pitch":94.75,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":-166.75,"roll":65.5},"location":"Right Ankle"},{"euler":{"heading":88.8125,"pitch":144.6875,"roll":68.1875},"location":"Right Hip"},{"euler":{"heading":219.1875,"pitch":-109.0,"roll":58.875},"location":"Right Knee"},{"euler":{"heading":162.75,"pitch":115.375,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:42.743"} +{"sensors":[{"euler":{"heading":51.625,"pitch":146.875,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":107.6875,"pitch":89.625,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":76.375,"pitch":-140.75,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":96.0,"pitch":143.5,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":232.75,"pitch":-99.125,"roll":48.25},"location":"Right Knee"},{"euler":{"heading":160.875,"pitch":117.1875,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:42.844"} +{"sensors":[{"euler":{"heading":59.8125,"pitch":141.0,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":120.5625,"pitch":103.875,"roll":82.5},"location":"Left Ankle"},{"euler":{"heading":78.5625,"pitch":-146.8125,"roll":52.75},"location":"Right Ankle"},{"euler":{"heading":99.625,"pitch":139.25,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":232.1875,"pitch":-95.5,"roll":49.5625},"location":"Right Knee"},{"euler":{"heading":163.875,"pitch":125.8125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:42.944"} +{"sensors":[{"euler":{"heading":66.125,"pitch":136.0625,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":132.1875,"pitch":-0.0625,"roll":88.5},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":-171.0,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":101.375,"pitch":139.8125,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":217.3125,"pitch":-90.625,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":167.0,"pitch":131.5625,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:43.45"} +{"sensors":[{"euler":{"heading":73.8125,"pitch":131.0625,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":133.8125,"pitch":-177.5625,"roll":87.375},"location":"Left Ankle"},{"euler":{"heading":143.3125,"pitch":143.5,"roll":49.6875},"location":"Right Ankle"},{"euler":{"heading":91.875,"pitch":146.5,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":201.3125,"pitch":-178.1875,"roll":87.625},"location":"Right Knee"},{"euler":{"heading":169.8125,"pitch":136.0,"roll":64.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:43.146"} +{"sensors":[{"euler":{"heading":81.0,"pitch":127.5625,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":139.875,"pitch":-99.4375,"roll":81.375},"location":"Left Ankle"},{"euler":{"heading":53.6875,"pitch":133.25,"roll":38.8125},"location":"Right Ankle"},{"euler":{"heading":83.4375,"pitch":148.25,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":187.875,"pitch":100.4375,"roll":77.625},"location":"Right Knee"},{"euler":{"heading":170.75,"pitch":138.75,"roll":66.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:43.247"} +{"sensors":[{"euler":{"heading":90.125,"pitch":125.625,"roll":21.0},"location":"Left Knee"},{"euler":{"heading":148.9375,"pitch":-94.8125,"roll":71.5},"location":"Left Ankle"},{"euler":{"heading":43.0625,"pitch":139.5,"roll":43.0},"location":"Right Ankle"},{"euler":{"heading":78.375,"pitch":149.25,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":183.8125,"pitch":95.9375,"roll":80.3125},"location":"Right Knee"},{"euler":{"heading":171.6875,"pitch":141.875,"roll":67.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:43.347"} +{"sensors":[{"euler":{"heading":104.6875,"pitch":127.875,"roll":8.5625},"location":"Left Knee"},{"euler":{"heading":160.9375,"pitch":-99.25,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":116.875,"pitch":145.25,"roll":51.875},"location":"Right Ankle"},{"euler":{"heading":78.75,"pitch":147.5,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":183.875,"pitch":176.375,"roll":84.9375},"location":"Right Knee"},{"euler":{"heading":159.25,"pitch":112.125,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:43.448"} +{"sensors":[{"euler":{"heading":112.9375,"pitch":127.875,"roll":5.875},"location":"Left Knee"},{"euler":{"heading":154.6875,"pitch":-99.375,"roll":52.8125},"location":"Left Ankle"},{"euler":{"heading":115.1875,"pitch":146.6875,"roll":53.5},"location":"Right Ankle"},{"euler":{"heading":75.8125,"pitch":147.9375,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":186.625,"pitch":-179.1875,"roll":84.5625},"location":"Right Knee"},{"euler":{"heading":146.0625,"pitch":109.3125,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:43.548"} +{"sensors":[{"euler":{"heading":319.375,"pitch":137.6875,"roll":16.5},"location":"Left Knee"},{"euler":{"heading":134.5,"pitch":-87.0,"roll":74.5},"location":"Left Ankle"},{"euler":{"heading":109.4375,"pitch":150.4375,"roll":57.4375},"location":"Right Ankle"},{"euler":{"heading":81.4375,"pitch":144.25,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":192.9375,"pitch":-138.8125,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":146.5625,"pitch":108.75,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:43.649"} +{"sensors":[{"euler":{"heading":337.3125,"pitch":153.75,"roll":36.8125},"location":"Left Knee"},{"euler":{"heading":98.125,"pitch":92.6875,"roll":72.625},"location":"Left Ankle"},{"euler":{"heading":103.25,"pitch":157.625,"roll":60.5625},"location":"Right Ankle"},{"euler":{"heading":83.9375,"pitch":144.0625,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":198.0,"pitch":-123.0,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":149.5,"pitch":108.6875,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:43.749"} +{"sensors":[{"euler":{"heading":23.9375,"pitch":163.5,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":82.9375,"pitch":89.3125,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":169.1875,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":85.25,"pitch":144.75,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":204.8125,"pitch":-114.4375,"roll":70.1875},"location":"Right Knee"},{"euler":{"heading":157.1875,"pitch":113.1875,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:43.850"} +{"sensors":[{"euler":{"heading":38.4375,"pitch":155.9375,"roll":41.5},"location":"Left Knee"},{"euler":{"heading":93.8125,"pitch":91.125,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":-171.4375,"roll":65.6875},"location":"Right Ankle"},{"euler":{"heading":87.625,"pitch":145.6875,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":218.25,"pitch":-106.5,"roll":59.875},"location":"Right Knee"},{"euler":{"heading":161.0,"pitch":116.0,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:43.952"} +{"sensors":[{"euler":{"heading":50.5625,"pitch":146.5625,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":106.125,"pitch":83.5,"roll":71.875},"location":"Left Ankle"},{"euler":{"heading":77.4375,"pitch":-142.875,"roll":58.4375},"location":"Right Ankle"},{"euler":{"heading":94.25,"pitch":141.625,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":230.0625,"pitch":-98.625,"roll":50.5},"location":"Right Knee"},{"euler":{"heading":161.0625,"pitch":119.75,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:44.53"} +{"sensors":[{"euler":{"heading":56.1875,"pitch":141.5,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":122.1875,"pitch":3.6875,"roll":86.25},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":-154.375,"roll":55.4375},"location":"Right Ankle"},{"euler":{"heading":99.875,"pitch":140.1875,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":231.6875,"pitch":-93.0625,"roll":52.9375},"location":"Right Knee"},{"euler":{"heading":164.625,"pitch":128.1875,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:44.154"} +{"sensors":[{"euler":{"heading":61.0625,"pitch":137.6875,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":124.1875,"pitch":2.6875,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":106.0,"pitch":173.5,"roll":58.0625},"location":"Right Ankle"},{"euler":{"heading":99.0,"pitch":141.5,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":214.5,"pitch":-88.8125,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":167.5,"pitch":134.0625,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:44.255"} +{"sensors":[{"euler":{"heading":67.8125,"pitch":133.8125,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":123.25,"pitch":179.4375,"roll":88.125},"location":"Left Ankle"},{"euler":{"heading":132.625,"pitch":139.3125,"roll":45.6875},"location":"Right Ankle"},{"euler":{"heading":88.8125,"pitch":146.1875,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":194.5625,"pitch":4.375,"roll":85.5625},"location":"Right Knee"},{"euler":{"heading":168.9375,"pitch":138.6875,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:44.356"} +{"sensors":[{"euler":{"heading":75.625,"pitch":130.6875,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":-173.8125,"roll":83.4375},"location":"Left Ankle"},{"euler":{"heading":55.125,"pitch":133.875,"roll":38.4375},"location":"Right Ankle"},{"euler":{"heading":79.1875,"pitch":149.1875,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":184.5,"pitch":97.9375,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":170.625,"pitch":143.375,"roll":67.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:44.456"} +{"sensors":[{"euler":{"heading":86.875,"pitch":128.5625,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":144.3125,"pitch":-91.0625,"roll":70.3125},"location":"Left Ankle"},{"euler":{"heading":124.5625,"pitch":141.75,"roll":47.5625},"location":"Right Ankle"},{"euler":{"heading":77.5,"pitch":149.375,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":182.1875,"pitch":100.875,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":171.875,"pitch":144.1875,"roll":68.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:44.557"} +{"sensors":[{"euler":{"heading":106.0625,"pitch":128.375,"roll":7.4375},"location":"Left Knee"},{"euler":{"heading":157.8125,"pitch":-91.6875,"roll":55.25},"location":"Left Ankle"},{"euler":{"heading":121.25,"pitch":141.1875,"roll":51.25},"location":"Right Ankle"},{"euler":{"heading":78.625,"pitch":147.25,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":186.5625,"pitch":177.5,"roll":84.6875},"location":"Right Knee"},{"euler":{"heading":157.375,"pitch":123.25,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:44.659"} +{"sensors":[{"euler":{"heading":106.5625,"pitch":131.625,"roll":8.6875},"location":"Left Knee"},{"euler":{"heading":149.875,"pitch":-96.5,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":114.25,"pitch":145.3125,"roll":54.875},"location":"Right Ankle"},{"euler":{"heading":77.625,"pitch":145.1875,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":188.0625,"pitch":-178.0625,"roll":83.25},"location":"Right Knee"},{"euler":{"heading":150.9375,"pitch":110.25,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:44.760"} +{"sensors":[{"euler":{"heading":324.3125,"pitch":144.0,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":120.0,"pitch":-178.0,"roll":87.625},"location":"Left Ankle"},{"euler":{"heading":107.625,"pitch":151.1875,"roll":58.75},"location":"Right Ankle"},{"euler":{"heading":83.0625,"pitch":142.4375,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":193.6875,"pitch":-136.1875,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":149.9375,"pitch":108.5,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:44.860"} +{"sensors":[{"euler":{"heading":341.25,"pitch":158.0,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":91.625,"pitch":92.375,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":100.4375,"pitch":158.9375,"roll":63.3125},"location":"Right Ankle"},{"euler":{"heading":84.625,"pitch":142.5625,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":198.375,"pitch":-121.9375,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":151.5,"pitch":109.5,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:44.961"} +{"sensors":[{"euler":{"heading":21.4375,"pitch":163.9375,"roll":42.6875},"location":"Left Knee"},{"euler":{"heading":83.0625,"pitch":89.9375,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":174.0625,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":85.4375,"pitch":143.9375,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":205.625,"pitch":-114.625,"roll":68.1875},"location":"Right Knee"},{"euler":{"heading":156.0,"pitch":112.8125,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:45.62"} +{"sensors":[{"euler":{"heading":41.125,"pitch":153.875,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":96.4375,"pitch":88.3125,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":-163.4375,"roll":64.9375},"location":"Right Ankle"},{"euler":{"heading":88.5625,"pitch":144.125,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":222.25,"pitch":-106.8125,"roll":57.0625},"location":"Right Knee"},{"euler":{"heading":159.25,"pitch":115.1875,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:45.162"} +{"sensors":[{"euler":{"heading":53.0,"pitch":145.125,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":110.375,"pitch":84.625,"roll":75.9375},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":-148.125,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":96.9375,"pitch":140.75,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":231.8125,"pitch":-98.375,"roll":49.25},"location":"Right Knee"},{"euler":{"heading":163.125,"pitch":120.4375,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:45.263"} +{"sensors":[{"euler":{"heading":60.875,"pitch":139.375,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":126.25,"pitch":178.3125,"roll":88.25},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":-163.6875,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":103.3125,"pitch":138.9375,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":225.375,"pitch":-94.3125,"roll":60.25},"location":"Right Knee"},{"euler":{"heading":166.3125,"pitch":128.375,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:45.365"} +{"sensors":[{"euler":{"heading":68.125,"pitch":134.75,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":128.5625,"pitch":-179.6875,"roll":89.3125},"location":"Left Ankle"},{"euler":{"heading":114.625,"pitch":159.125,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":99.5625,"pitch":142.625,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":210.625,"pitch":-91.5,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":169.0,"pitch":133.5,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:45.465"} +{"sensors":[{"euler":{"heading":75.0,"pitch":131.1875,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":132.75,"pitch":-174.6875,"roll":84.3125},"location":"Left Ankle"},{"euler":{"heading":49.5625,"pitch":133.5625,"roll":41.75},"location":"Right Ankle"},{"euler":{"heading":88.5,"pitch":146.75,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":191.875,"pitch":100.6875,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":170.1875,"pitch":137.375,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:45.566"} +{"sensors":[{"euler":{"heading":82.1875,"pitch":129.625,"roll":23.9375},"location":"Left Knee"},{"euler":{"heading":140.5,"pitch":-101.75,"roll":76.125},"location":"Left Ankle"},{"euler":{"heading":47.125,"pitch":137.8125,"roll":41.3125},"location":"Right Ankle"},{"euler":{"heading":78.625,"pitch":148.875,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":183.5,"pitch":92.1875,"roll":78.375},"location":"Right Knee"},{"euler":{"heading":169.5625,"pitch":142.3125,"roll":67.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:45.667"} +{"sensors":[{"euler":{"heading":95.5625,"pitch":128.5,"roll":13.75},"location":"Left Knee"},{"euler":{"heading":146.375,"pitch":-91.9375,"roll":65.3125},"location":"Left Ankle"},{"euler":{"heading":120.5,"pitch":140.4375,"roll":50.3125},"location":"Right Ankle"},{"euler":{"heading":77.875,"pitch":148.625,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":184.5625,"pitch":174.8125,"roll":84.125},"location":"Right Knee"},{"euler":{"heading":166.25,"pitch":137.4375,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:45.767"} +{"sensors":[{"euler":{"heading":115.25,"pitch":125.75,"roll":4.75},"location":"Left Knee"},{"euler":{"heading":162.5625,"pitch":-94.5625,"roll":50.375},"location":"Left Ankle"},{"euler":{"heading":115.8125,"pitch":143.375,"roll":54.25},"location":"Right Ankle"},{"euler":{"heading":76.1875,"pitch":148.4375,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":188.75,"pitch":-179.3125,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":151.25,"pitch":117.0,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:45.868"} +{"sensors":[{"euler":{"heading":108.4375,"pitch":132.3125,"roll":9.5},"location":"Left Knee"},{"euler":{"heading":147.25,"pitch":-92.5,"roll":79.0625},"location":"Left Ankle"},{"euler":{"heading":111.1875,"pitch":148.25,"roll":56.9375},"location":"Right Ankle"},{"euler":{"heading":81.3125,"pitch":143.8125,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":193.0,"pitch":-145.25,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":149.0,"pitch":111.75,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:45.968"} +{"sensors":[{"euler":{"heading":329.75,"pitch":145.5,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":117.25,"pitch":176.3125,"roll":88.3125},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":152.375,"roll":61.125},"location":"Right Ankle"},{"euler":{"heading":85.625,"pitch":142.4375,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":199.9375,"pitch":-128.0625,"roll":75.625},"location":"Right Knee"},{"euler":{"heading":150.0,"pitch":109.6875,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:46.69"} +{"sensors":[{"euler":{"heading":345.8125,"pitch":158.3125,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":90.8125,"pitch":91.9375,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":100.125,"pitch":161.6875,"roll":65.375},"location":"Right Ankle"},{"euler":{"heading":87.5625,"pitch":142.75,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":206.75,"pitch":-118.1875,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":155.375,"pitch":112.1875,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:46.170"} +{"sensors":[{"euler":{"heading":35.0,"pitch":159.375,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":88.875,"pitch":92.5,"roll":59.9375},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":-179.1875,"roll":67.5625},"location":"Right Ankle"},{"euler":{"heading":89.9375,"pitch":145.1875,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":216.9375,"pitch":-109.4375,"roll":61.625},"location":"Right Knee"},{"euler":{"heading":161.3125,"pitch":115.9375,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:46.270"} +{"sensors":[{"euler":{"heading":51.5,"pitch":148.9375,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":102.875,"pitch":87.0,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":-154.25,"roll":61.5625},"location":"Right Ankle"},{"euler":{"heading":96.4375,"pitch":142.9375,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":236.5,"pitch":-100.75,"roll":50.1875},"location":"Right Knee"},{"euler":{"heading":161.375,"pitch":118.125,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:46.371"} +{"sensors":[{"euler":{"heading":61.0,"pitch":140.9375,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":77.5625,"roll":75.6875},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-144.5625,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":104.4375,"pitch":135.6875,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":236.5,"pitch":-94.5625,"roll":46.6875},"location":"Right Knee"},{"euler":{"heading":167.75,"pitch":127.9375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:46.472"} +{"sensors":[{"euler":{"heading":67.5,"pitch":135.8125,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":0.5625,"roll":84.75},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":-162.375,"roll":59.1875},"location":"Right Ankle"},{"euler":{"heading":107.3125,"pitch":136.875,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":226.4375,"pitch":-91.125,"roll":59.4375},"location":"Right Knee"},{"euler":{"heading":170.5625,"pitch":133.4375,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:46.572"} +{"sensors":[{"euler":{"heading":72.75,"pitch":131.8125,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":127.75,"pitch":3.0625,"roll":86.8125},"location":"Left Ankle"},{"euler":{"heading":121.8125,"pitch":149.9375,"roll":55.0625},"location":"Right Ankle"},{"euler":{"heading":7.9375,"pitch":144.6875,"roll":44.125},"location":"Right Hip"},{"euler":{"heading":208.0625,"pitch":-92.625,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":172.125,"pitch":138.625,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:46.676"} +{"sensors":[{"euler":{"heading":78.875,"pitch":128.625,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":132.125,"pitch":-177.4375,"roll":86.875},"location":"Left Ankle"},{"euler":{"heading":51.5625,"pitch":131.3125,"roll":41.0},"location":"Right Ankle"},{"euler":{"heading":86.6875,"pitch":146.9375,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":191.125,"pitch":101.75,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":172.6875,"pitch":140.875,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:46.776"} +{"sensors":[{"euler":{"heading":86.3125,"pitch":127.0,"roll":22.8125},"location":"Left Knee"},{"euler":{"heading":139.9375,"pitch":-106.4375,"roll":78.25},"location":"Left Ankle"},{"euler":{"heading":42.6875,"pitch":135.375,"roll":44.875},"location":"Right Ankle"},{"euler":{"heading":79.6875,"pitch":148.6875,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":186.4375,"pitch":95.125,"roll":80.8125},"location":"Right Knee"},{"euler":{"heading":174.0,"pitch":145.0,"roll":67.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:46.878"} +{"sensors":[{"euler":{"heading":98.4375,"pitch":128.5625,"roll":10.625},"location":"Left Knee"},{"euler":{"heading":146.4375,"pitch":-91.9375,"roll":64.5625},"location":"Left Ankle"},{"euler":{"heading":119.0,"pitch":139.25,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":83.9375,"pitch":145.6875,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":189.4375,"pitch":177.0625,"roll":85.4375},"location":"Right Knee"},{"euler":{"heading":165.5625,"pitch":133.0625,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:46.978"} +{"sensors":[{"euler":{"heading":117.4375,"pitch":125.25,"roll":4.3125},"location":"Left Knee"},{"euler":{"heading":159.0625,"pitch":-95.9375,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":112.5,"pitch":145.25,"roll":57.6875},"location":"Right Ankle"},{"euler":{"heading":81.0625,"pitch":145.625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":191.6875,"pitch":-177.5625,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":153.5625,"pitch":116.5,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:47.79"} +{"sensors":[{"euler":{"heading":101.5625,"pitch":134.5,"roll":12.3125},"location":"Left Knee"},{"euler":{"heading":142.6875,"pitch":-89.375,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":107.6875,"pitch":150.25,"roll":60.1875},"location":"Right Ankle"},{"euler":{"heading":84.0,"pitch":143.5625,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":195.125,"pitch":-133.1875,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":147.875,"pitch":110.9375,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:47.181"} +{"sensors":[{"euler":{"heading":330.875,"pitch":149.625,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":108.5625,"pitch":88.9375,"roll":82.875},"location":"Left Ankle"},{"euler":{"heading":101.8125,"pitch":155.6875,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":84.4375,"pitch":143.3125,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":198.0,"pitch":-124.9375,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":147.9375,"pitch":108.3125,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:47.281"} +{"sensors":[{"euler":{"heading":345.125,"pitch":162.3125,"roll":41.25},"location":"Left Knee"},{"euler":{"heading":83.25,"pitch":88.375,"roll":58.3125},"location":"Left Ankle"},{"euler":{"heading":95.625,"pitch":167.5625,"roll":66.9375},"location":"Right Ankle"},{"euler":{"heading":85.1875,"pitch":143.75,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":204.1875,"pitch":-116.25,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":153.625,"pitch":111.1875,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:47.381"} +{"sensors":[{"euler":{"heading":38.625,"pitch":156.3125,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":88.1875,"pitch":90.9375,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":-169.25,"roll":67.1875},"location":"Right Ankle"},{"euler":{"heading":87.875,"pitch":144.9375,"roll":67.5625},"location":"Right Hip"},{"euler":{"heading":216.125,"pitch":-109.125,"roll":61.6875},"location":"Right Knee"},{"euler":{"heading":160.5625,"pitch":114.625,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:47.482"} +{"sensors":[{"euler":{"heading":48.9375,"pitch":148.875,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":100.0625,"pitch":85.75,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":76.6875,"pitch":-138.75,"roll":57.875},"location":"Right Ankle"},{"euler":{"heading":94.375,"pitch":142.5625,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":231.6875,"pitch":-99.5625,"roll":50.5},"location":"Right Knee"},{"euler":{"heading":158.125,"pitch":117.375,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:47.583"} +{"sensors":[{"euler":{"heading":57.375,"pitch":142.5625,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":118.5,"pitch":173.6875,"roll":83.625},"location":"Left Ankle"},{"euler":{"heading":76.375,"pitch":-144.875,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":101.0,"pitch":137.4375,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":230.1875,"pitch":-94.9375,"roll":52.1875},"location":"Right Knee"},{"euler":{"heading":161.875,"pitch":126.625,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:47.683"} +{"sensors":[{"euler":{"heading":65.1875,"pitch":137.6875,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":127.5,"pitch":0.5625,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":-167.1875,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":100.6875,"pitch":140.1875,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":213.125,"pitch":-92.5,"roll":68.875},"location":"Right Knee"},{"euler":{"heading":163.5625,"pitch":130.0625,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:47.784"} +{"sensors":[{"euler":{"heading":71.5,"pitch":133.8125,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":124.25,"pitch":178.3125,"roll":87.5625},"location":"Left Ankle"},{"euler":{"heading":121.75,"pitch":148.125,"roll":53.3125},"location":"Right Ankle"},{"euler":{"heading":91.75,"pitch":146.0625,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":200.375,"pitch":-178.6875,"roll":88.5},"location":"Right Knee"},{"euler":{"heading":164.875,"pitch":133.6875,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:47.884"} +{"sensors":[{"euler":{"heading":77.9375,"pitch":131.125,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":-175.1875,"roll":84.375},"location":"Left Ankle"},{"euler":{"heading":51.8125,"pitch":131.8125,"roll":41.4375},"location":"Right Ankle"},{"euler":{"heading":79.375,"pitch":150.3125,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":187.9375,"pitch":102.5,"roll":78.1875},"location":"Right Knee"},{"euler":{"heading":166.875,"pitch":137.4375,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:47.987"} +{"sensors":[{"euler":{"heading":88.5625,"pitch":128.25,"roll":18.4375},"location":"Left Knee"},{"euler":{"heading":141.625,"pitch":-99.875,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":134.5,"pitch":139.4375,"roll":45.25},"location":"Right Ankle"},{"euler":{"heading":78.3125,"pitch":150.5625,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":187.0625,"pitch":105.625,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":169.3125,"pitch":140.5,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:48.88"} +{"sensors":[{"euler":{"heading":106.4375,"pitch":129.8125,"roll":6.5},"location":"Left Knee"},{"euler":{"heading":151.4375,"pitch":-95.25,"roll":58.5},"location":"Left Ankle"},{"euler":{"heading":120.5,"pitch":141.5,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":82.125,"pitch":147.6875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":190.3125,"pitch":177.75,"roll":85.6875},"location":"Right Knee"},{"euler":{"heading":161.6875,"pitch":128.1875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:48.189"} +{"sensors":[{"euler":{"heading":110.4375,"pitch":129.125,"roll":6.5625},"location":"Left Knee"},{"euler":{"heading":151.75,"pitch":-99.25,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":116.8125,"pitch":145.3125,"roll":55.9375},"location":"Right Ankle"},{"euler":{"heading":79.5625,"pitch":147.8125,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":193.125,"pitch":-157.6875,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":153.125,"pitch":113.75,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:48.290"} +{"sensors":[{"euler":{"heading":84.0,"pitch":138.375,"roll":20.0},"location":"Left Knee"},{"euler":{"heading":129.6875,"pitch":-88.5625,"roll":79.1875},"location":"Left Ankle"},{"euler":{"heading":113.9375,"pitch":150.4375,"roll":58.125},"location":"Right Ankle"},{"euler":{"heading":82.9375,"pitch":146.0,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":198.5625,"pitch":-133.25,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":152.125,"pitch":111.4375,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:48.391"} +{"sensors":[{"euler":{"heading":338.3125,"pitch":152.5,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":99.4375,"pitch":96.5,"roll":72.375},"location":"Left Ankle"},{"euler":{"heading":107.125,"pitch":157.1875,"roll":61.625},"location":"Right Ankle"},{"euler":{"heading":83.5625,"pitch":146.25,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":202.6875,"pitch":-120.8125,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":152.5,"pitch":108.875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:48.492"} +{"sensors":[{"euler":{"heading":350.1875,"pitch":160.4375,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":86.0625,"pitch":90.8125,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":98.25,"pitch":171.25,"roll":65.75},"location":"Right Ankle"},{"euler":{"heading":85.9375,"pitch":146.125,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":209.75,"pitch":-113.5625,"roll":68.125},"location":"Right Knee"},{"euler":{"heading":161.0625,"pitch":114.3125,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:48.592"} +{"sensors":[{"euler":{"heading":50.375,"pitch":151.1875,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":100.6875,"pitch":97.6875,"roll":67.4375},"location":"Left Ankle"},{"euler":{"heading":89.8125,"pitch":-162.0625,"roll":63.875},"location":"Right Ankle"},{"euler":{"heading":89.6875,"pitch":146.3125,"roll":68.5625},"location":"Right Hip"},{"euler":{"heading":223.6875,"pitch":-104.5625,"roll":57.9375},"location":"Right Knee"},{"euler":{"heading":163.875,"pitch":115.875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:48.693"} +{"sensors":[{"euler":{"heading":58.375,"pitch":143.3125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":112.375,"pitch":84.125,"roll":73.3125},"location":"Left Ankle"},{"euler":{"heading":78.5625,"pitch":-142.5,"roll":55.8125},"location":"Right Ankle"},{"euler":{"heading":96.75,"pitch":140.4375,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":234.0625,"pitch":-99.625,"roll":47.5},"location":"Right Knee"},{"euler":{"heading":165.125,"pitch":119.5,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:48.793"} +{"sensors":[{"euler":{"heading":61.75,"pitch":139.375,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":126.5625,"pitch":3.25,"roll":86.6875},"location":"Left Ankle"},{"euler":{"heading":82.9375,"pitch":-150.625,"roll":58.0625},"location":"Right Ankle"},{"euler":{"heading":102.0,"pitch":137.5,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":228.5625,"pitch":-95.625,"roll":54.0},"location":"Right Knee"},{"euler":{"heading":167.1875,"pitch":129.6875,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:48.894"} +{"sensors":[{"euler":{"heading":66.0,"pitch":136.125,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":124.125,"pitch":4.25,"roll":85.6875},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":177.5625,"roll":59.9375},"location":"Right Ankle"},{"euler":{"heading":99.25,"pitch":141.9375,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":214.6875,"pitch":-91.125,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":168.0,"pitch":134.3125,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:48.995"} +{"sensors":[{"euler":{"heading":71.5625,"pitch":133.25,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":126.1875,"pitch":179.8125,"roll":87.8125},"location":"Left Ankle"},{"euler":{"heading":126.5625,"pitch":144.3125,"roll":49.3125},"location":"Right Ankle"},{"euler":{"heading":90.1875,"pitch":146.875,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":194.4375,"pitch":175.4375,"roll":85.4375},"location":"Right Knee"},{"euler":{"heading":168.5625,"pitch":138.5625,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:49.96"} +{"sensors":[{"euler":{"heading":77.5,"pitch":131.75,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":133.125,"pitch":-110.25,"roll":82.8125},"location":"Left Ankle"},{"euler":{"heading":51.25,"pitch":134.125,"roll":40.625},"location":"Right Ankle"},{"euler":{"heading":80.0,"pitch":149.25,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":99.375,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":168.75,"pitch":143.875,"roll":68.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:49.196"} +{"sensors":[{"euler":{"heading":87.0,"pitch":130.75,"roll":17.375},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":-88.6875,"roll":69.1875},"location":"Left Ankle"},{"euler":{"heading":122.0625,"pitch":145.1875,"roll":48.375},"location":"Right Ankle"},{"euler":{"heading":75.0625,"pitch":149.9375,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":181.8125,"pitch":98.375,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":170.9375,"pitch":149.875,"roll":69.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:49.297"} +{"sensors":[{"euler":{"heading":108.0625,"pitch":128.9375,"roll":5.5625},"location":"Left Knee"},{"euler":{"heading":163.5625,"pitch":-96.25,"roll":51.9375},"location":"Left Ankle"},{"euler":{"heading":112.0625,"pitch":151.0,"roll":53.6875},"location":"Right Ankle"},{"euler":{"heading":76.5625,"pitch":147.0,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":183.5625,"pitch":176.125,"roll":84.75},"location":"Right Knee"},{"euler":{"heading":157.3125,"pitch":129.375,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:49.398"} +{"sensors":[{"euler":{"heading":114.0,"pitch":128.8125,"roll":4.5625},"location":"Left Knee"},{"euler":{"heading":156.75,"pitch":-108.375,"roll":51.3125},"location":"Left Ankle"},{"euler":{"heading":108.3125,"pitch":151.375,"roll":57.25},"location":"Right Ankle"},{"euler":{"heading":77.25,"pitch":146.1875,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":188.0,"pitch":-163.875,"roll":82.75},"location":"Right Knee"},{"euler":{"heading":151.375,"pitch":110.6875,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:49.499"} +{"sensors":[{"euler":{"heading":322.375,"pitch":138.1875,"roll":18.1875},"location":"Left Knee"},{"euler":{"heading":129.8125,"pitch":-90.8125,"roll":79.875},"location":"Left Ankle"},{"euler":{"heading":103.3125,"pitch":155.3125,"roll":61.125},"location":"Right Ankle"},{"euler":{"heading":82.125,"pitch":143.625,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":192.625,"pitch":-140.625,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":150.9375,"pitch":108.625,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:49.600"} +{"sensors":[{"euler":{"heading":339.75,"pitch":154.125,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":94.75,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":163.4375,"roll":63.25},"location":"Right Ankle"},{"euler":{"heading":85.5,"pitch":143.3125,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":199.5,"pitch":-125.3125,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":147.5625,"pitch":118.25,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:49.701"} +{"sensors":[{"euler":{"heading":349.5,"pitch":161.6875,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":84.4375,"pitch":90.4375,"roll":56.1875},"location":"Left Ankle"},{"euler":{"heading":92.3125,"pitch":177.0625,"roll":66.875},"location":"Right Ankle"},{"euler":{"heading":87.5,"pitch":143.9375,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":223.875,"pitch":-117.0,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":161.125,"pitch":115.625,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:49.802"} +{"sensors":[{"euler":{"heading":50.1875,"pitch":151.75,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":99.875,"pitch":92.25,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":-161.0,"roll":64.4375},"location":"Right Ankle"},{"euler":{"heading":90.3125,"pitch":145.25,"roll":68.875},"location":"Right Hip"},{"euler":{"heading":226.0,"pitch":-107.0,"roll":56.25},"location":"Right Knee"},{"euler":{"heading":164.0625,"pitch":119.0625,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:49.903"} +{"sensors":[{"euler":{"heading":58.5,"pitch":143.5,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":111.0625,"pitch":85.3125,"roll":73.9375},"location":"Left Ankle"},{"euler":{"heading":78.75,"pitch":-140.5,"roll":55.875},"location":"Right Ankle"},{"euler":{"heading":98.0,"pitch":138.5625,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":232.875,"pitch":-99.75,"roll":48.125},"location":"Right Knee"},{"euler":{"heading":166.25,"pitch":123.25,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:50.4"} +{"sensors":[{"euler":{"heading":65.0625,"pitch":138.0625,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":127.4375,"pitch":177.4375,"roll":86.875},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":-147.25,"roll":56.125},"location":"Right Ankle"},{"euler":{"heading":103.3125,"pitch":137.0,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":228.625,"pitch":-94.75,"roll":55.1875},"location":"Right Knee"},{"euler":{"heading":169.5,"pitch":133.125,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:50.104"} +{"sensors":[{"euler":{"heading":72.25,"pitch":133.1875,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":131.5,"pitch":179.8125,"roll":89.0625},"location":"Left Ankle"},{"euler":{"heading":104.9375,"pitch":175.75,"roll":58.9375},"location":"Right Ankle"},{"euler":{"heading":101.3125,"pitch":140.875,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":214.5625,"pitch":-93.1875,"roll":74.0},"location":"Right Knee"},{"euler":{"heading":171.75,"pitch":138.5,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:50.205"} +{"sensors":[{"euler":{"heading":78.5,"pitch":130.0,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":134.875,"pitch":-175.1875,"roll":84.4375},"location":"Left Ankle"},{"euler":{"heading":138.1875,"pitch":140.9375,"roll":45.0},"location":"Right Ankle"},{"euler":{"heading":92.0625,"pitch":145.625,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":197.125,"pitch":174.875,"roll":84.5},"location":"Right Knee"},{"euler":{"heading":173.1875,"pitch":143.0625,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:50.305"} +{"sensors":[{"euler":{"heading":86.0,"pitch":128.0,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":143.625,"pitch":-101.375,"roll":76.5625},"location":"Left Ankle"},{"euler":{"heading":49.0,"pitch":136.9375,"roll":41.75},"location":"Right Ankle"},{"euler":{"heading":82.0,"pitch":148.25,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":186.125,"pitch":98.6875,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":174.4375,"pitch":147.375,"roll":67.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:50.406"} +{"sensors":[{"euler":{"heading":95.9375,"pitch":128.0625,"roll":13.875},"location":"Left Knee"},{"euler":{"heading":151.5,"pitch":-94.4375,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":123.375,"pitch":145.6875,"roll":49.875},"location":"Right Ankle"},{"euler":{"heading":83.25,"pitch":148.6875,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":189.0625,"pitch":113.9375,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":173.1875,"pitch":145.625,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:50.507"} +{"sensors":[{"euler":{"heading":115.875,"pitch":125.875,"roll":3.6875},"location":"Left Knee"},{"euler":{"heading":172.0625,"pitch":-96.25,"roll":46.1875},"location":"Left Ankle"},{"euler":{"heading":113.375,"pitch":152.75,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":84.4375,"pitch":145.3125,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":188.25,"pitch":178.3125,"roll":84.4375},"location":"Right Knee"},{"euler":{"heading":159.75,"pitch":120.875,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:50.607"} +{"sensors":[{"euler":{"heading":113.1875,"pitch":130.125,"roll":7.25},"location":"Left Knee"},{"euler":{"heading":148.9375,"pitch":-95.4375,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":111.4375,"pitch":152.625,"roll":56.4375},"location":"Right Ankle"},{"euler":{"heading":83.1875,"pitch":143.75,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":191.25,"pitch":-160.5625,"roll":81.375},"location":"Right Knee"},{"euler":{"heading":154.1875,"pitch":110.8125,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:50.708"} +{"sensors":[{"euler":{"heading":329.875,"pitch":142.3125,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":120.3125,"pitch":-179.5625,"roll":88.625},"location":"Left Ankle"},{"euler":{"heading":106.1875,"pitch":155.9375,"roll":59.8125},"location":"Right Ankle"},{"euler":{"heading":87.4375,"pitch":140.5,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":196.25,"pitch":-136.6875,"roll":78.5625},"location":"Right Knee"},{"euler":{"heading":155.1875,"pitch":109.3125,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:50.808"} +{"sensors":[{"euler":{"heading":35.5625,"pitch":156.5625,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":92.3125,"pitch":92.5,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":100.3125,"pitch":165.25,"roll":63.625},"location":"Right Ankle"},{"euler":{"heading":89.0625,"pitch":141.4375,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":202.6875,"pitch":-122.4375,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":159.375,"pitch":112.8125,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:50.909"} +{"sensors":[{"euler":{"heading":36.75,"pitch":158.875,"roll":40.875},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":91.8125,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":92.875,"pitch":-178.0,"roll":67.125},"location":"Right Ankle"},{"euler":{"heading":90.625,"pitch":142.6875,"roll":69.1875},"location":"Right Hip"},{"euler":{"heading":212.375,"pitch":-114.0625,"roll":65.75},"location":"Right Knee"},{"euler":{"heading":163.75,"pitch":116.6875,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:51.10"} +{"sensors":[{"euler":{"heading":47.9375,"pitch":150.375,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":100.375,"pitch":88.375,"roll":68.0625},"location":"Left Ankle"},{"euler":{"heading":91.75,"pitch":-158.125,"roll":61.3125},"location":"Right Ankle"},{"euler":{"heading":94.625,"pitch":142.6875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":233.375,"pitch":-102.75,"roll":53.0},"location":"Right Knee"},{"euler":{"heading":162.9375,"pitch":116.1875,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:51.111"} +{"sensors":[{"euler":{"heading":55.0625,"pitch":143.875,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":110.125,"pitch":82.0625,"roll":74.125},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-143.875,"roll":52.6875},"location":"Right Ankle"},{"euler":{"heading":102.5,"pitch":136.875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":234.6875,"pitch":-98.6875,"roll":48.1875},"location":"Right Knee"},{"euler":{"heading":164.0,"pitch":120.4375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:51.211"} +{"sensors":[{"euler":{"heading":63.3125,"pitch":138.125,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":1.4375,"roll":88.5},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":-150.8125,"roll":56.875},"location":"Right Ankle"},{"euler":{"heading":102.6875,"pitch":137.8125,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":224.5,"pitch":-93.25,"roll":58.6875},"location":"Right Knee"},{"euler":{"heading":166.125,"pitch":143.5,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:51.312"} +{"sensors":[{"euler":{"heading":68.1875,"pitch":134.8125,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":129.25,"pitch":0.0,"roll":88.5},"location":"Left Ankle"},{"euler":{"heading":106.3125,"pitch":170.1875,"roll":57.625},"location":"Right Ankle"},{"euler":{"heading":99.75,"pitch":141.6875,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":208.3125,"pitch":-91.6875,"roll":81.0625},"location":"Right Knee"},{"euler":{"heading":168.9375,"pitch":134.125,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:51.412"} +{"sensors":[{"euler":{"heading":72.375,"pitch":131.1875,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":130.5,"pitch":-176.25,"roll":85.8125},"location":"Left Ankle"},{"euler":{"heading":133.625,"pitch":138.625,"roll":45.875},"location":"Right Ankle"},{"euler":{"heading":90.625,"pitch":146.1875,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":191.0,"pitch":102.75,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":172.125,"pitch":140.375,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:51.514"} +{"sensors":[{"euler":{"heading":80.25,"pitch":129.0,"roll":25.5},"location":"Left Knee"},{"euler":{"heading":138.8125,"pitch":-99.75,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":51.0,"pitch":136.0625,"roll":40.0625},"location":"Right Ankle"},{"euler":{"heading":81.5,"pitch":147.875,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":181.6875,"pitch":95.75,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":172.5625,"pitch":145.75,"roll":67.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:51.614"} +{"sensors":[{"euler":{"heading":91.5,"pitch":128.0625,"roll":0.3125},"location":"Left Knee"},{"euler":{"heading":148.4375,"pitch":-90.5625,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":124.125,"pitch":144.5625,"roll":48.375},"location":"Right Ankle"},{"euler":{"heading":79.6875,"pitch":148.5625,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":182.4375,"pitch":99.5625,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":172.0,"pitch":146.0625,"roll":67.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:51.715"} +{"sensors":[{"euler":{"heading":115.25,"pitch":125.4375,"roll":3.625},"location":"Left Knee"},{"euler":{"heading":171.0,"pitch":-95.75,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":111.9375,"pitch":151.25,"roll":54.125},"location":"Right Ankle"},{"euler":{"heading":82.0,"pitch":145.4375,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":185.0,"pitch":176.75,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":156.875,"pitch":127.8125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:51.816"} +{"sensors":[{"euler":{"heading":118.6875,"pitch":127.1875,"roll":4.5625},"location":"Left Knee"},{"euler":{"heading":157.8125,"pitch":-99.0625,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":106.6875,"pitch":156.625,"roll":57.1875},"location":"Right Ankle"},{"euler":{"heading":84.875,"pitch":141.625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":188.875,"pitch":-166.625,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":153.5625,"pitch":114.5625,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:51.916"} +{"sensors":[{"euler":{"heading":90.625,"pitch":137.8125,"roll":18.6875},"location":"Left Knee"},{"euler":{"heading":130.25,"pitch":-90.9375,"roll":80.6875},"location":"Left Ankle"},{"euler":{"heading":103.625,"pitch":157.5,"roll":60.25},"location":"Right Ankle"},{"euler":{"heading":86.5,"pitch":139.9375,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":192.625,"pitch":-145.75,"roll":79.75},"location":"Right Knee"},{"euler":{"heading":150.8125,"pitch":112.0,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:52.17"} +{"sensors":[{"euler":{"heading":340.125,"pitch":155.3125,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":96.125,"pitch":93.3125,"roll":68.75},"location":"Left Ankle"},{"euler":{"heading":100.8125,"pitch":162.0625,"roll":63.1875},"location":"Right Ankle"},{"euler":{"heading":89.1875,"pitch":140.0,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":199.3125,"pitch":-128.0625,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":151.25,"pitch":111.8125,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:52.118"} +{"sensors":[{"euler":{"heading":26.875,"pitch":162.9375,"roll":42.8125},"location":"Left Knee"},{"euler":{"heading":85.9375,"pitch":89.8125,"roll":55.5625},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":176.0625,"roll":66.375},"location":"Right Ankle"},{"euler":{"heading":91.125,"pitch":140.5,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":207.375,"pitch":-118.1875,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":161.6875,"pitch":115.5,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:52.218"} +{"sensors":[{"euler":{"heading":45.3125,"pitch":154.4375,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":99.8125,"pitch":92.875,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":-162.125,"roll":65.0},"location":"Right Ankle"},{"euler":{"heading":93.0,"pitch":143.375,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":224.375,"pitch":-108.625,"roll":57.875},"location":"Right Knee"},{"euler":{"heading":165.25,"pitch":117.25,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:52.319"} +{"sensors":[{"euler":{"heading":55.1875,"pitch":145.875,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":110.0,"pitch":86.875,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-134.4375,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":102.125,"pitch":137.25,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":233.4375,"pitch":-99.625,"roll":49.75},"location":"Right Knee"},{"euler":{"heading":165.5,"pitch":120.75,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:52.420"} +{"sensors":[{"euler":{"heading":62.3125,"pitch":140.0,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":129.0,"pitch":177.5,"roll":87.4375},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-141.1875,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":107.625,"pitch":136.1875,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":232.0,"pitch":-96.5,"roll":51.6875},"location":"Right Knee"},{"euler":{"heading":167.5625,"pitch":128.625,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:52.521"} +{"sensors":[{"euler":{"heading":67.6875,"pitch":135.25,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":131.5625,"pitch":4.75,"roll":84.6875},"location":"Left Ankle"},{"euler":{"heading":93.75,"pitch":-168.75,"roll":60.75},"location":"Right Ankle"},{"euler":{"heading":16.0625,"pitch":140.875,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":216.3125,"pitch":-94.625,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":170.875,"pitch":134.0625,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:52.622"} +{"sensors":[{"euler":{"heading":73.3125,"pitch":130.3125,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":131.5625,"pitch":179.0,"roll":88.875},"location":"Left Ankle"},{"euler":{"heading":122.5625,"pitch":148.25,"roll":53.375},"location":"Right Ankle"},{"euler":{"heading":6.6875,"pitch":145.0,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":199.6875,"pitch":179.0,"roll":87.875},"location":"Right Knee"},{"euler":{"heading":172.0,"pitch":137.8125,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:52.725"} +{"sensors":[{"euler":{"heading":81.0625,"pitch":126.25,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":138.625,"pitch":-174.125,"roll":84.125},"location":"Left Ankle"},{"euler":{"heading":44.875,"pitch":137.875,"roll":43.8125},"location":"Right Ankle"},{"euler":{"heading":87.625,"pitch":145.25,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":184.5625,"pitch":94.4375,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":173.1875,"pitch":140.5625,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:52.826"} +{"sensors":[{"euler":{"heading":90.5625,"pitch":124.9375,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":147.4375,"pitch":-94.4375,"roll":72.5},"location":"Left Ankle"},{"euler":{"heading":126.6875,"pitch":143.5,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":82.5,"pitch":147.25,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":183.0625,"pitch":98.875,"roll":79.4375},"location":"Right Knee"},{"euler":{"heading":173.375,"pitch":143.0625,"roll":67.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:52.926"} +{"sensors":[{"euler":{"heading":107.5,"pitch":125.4375,"roll":8.5625},"location":"Left Knee"},{"euler":{"heading":174.75,"pitch":-88.6875,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":116.8125,"pitch":144.125,"roll":54.6875},"location":"Right Ankle"},{"euler":{"heading":83.625,"pitch":145.0,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":187.0625,"pitch":176.125,"roll":84.0625},"location":"Right Knee"},{"euler":{"heading":162.125,"pitch":129.3125,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:53.26"} +{"sensors":[{"euler":{"heading":114.375,"pitch":126.125,"roll":7.4375},"location":"Left Knee"},{"euler":{"heading":162.4375,"pitch":-91.1875,"roll":54.375},"location":"Left Ankle"},{"euler":{"heading":112.6875,"pitch":148.1875,"roll":57.5},"location":"Right Ankle"},{"euler":{"heading":82.0625,"pitch":145.25,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":191.0625,"pitch":-178.5625,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":154.0,"pitch":115.0,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:53.127"} +{"sensors":[{"euler":{"heading":325.625,"pitch":139.375,"roll":20.25},"location":"Left Knee"},{"euler":{"heading":134.375,"pitch":-89.75,"roll":78.9375},"location":"Left Ankle"},{"euler":{"heading":106.75,"pitch":154.6875,"roll":60.4375},"location":"Right Ankle"},{"euler":{"heading":85.9375,"pitch":142.8125,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":195.1875,"pitch":-140.4375,"roll":80.0625},"location":"Right Knee"},{"euler":{"heading":152.1875,"pitch":110.625,"roll":47.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:53.227"} +{"sensors":[{"euler":{"heading":343.8125,"pitch":155.6875,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":101.0,"pitch":98.9375,"roll":69.625},"location":"Left Ankle"},{"euler":{"heading":98.5625,"pitch":164.375,"roll":64.25},"location":"Right Ankle"},{"euler":{"heading":87.75,"pitch":141.5625,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":198.75,"pitch":-127.4375,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":154.0,"pitch":110.625,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:53.328"} +{"sensors":[{"euler":{"heading":352.4375,"pitch":165.0,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":87.0,"pitch":92.375,"roll":55.625},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":-179.9375,"roll":66.625},"location":"Right Ankle"},{"euler":{"heading":88.375,"pitch":141.75,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":206.375,"pitch":-117.75,"roll":68.9375},"location":"Right Knee"},{"euler":{"heading":160.8125,"pitch":115.3125,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:53.429"} +{"sensors":[{"euler":{"heading":43.5,"pitch":155.625,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":99.875,"pitch":93.875,"roll":65.1875},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":-159.5625,"roll":63.9375},"location":"Right Ankle"},{"euler":{"heading":89.9375,"pitch":144.1875,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":222.0625,"pitch":-109.625,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":162.4375,"pitch":116.3125,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:53.529"} +{"sensors":[{"euler":{"heading":50.5625,"pitch":148.125,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":109.0625,"pitch":89.8125,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":-137.5625,"roll":55.25},"location":"Right Ankle"},{"euler":{"heading":98.0625,"pitch":140.9375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":233.125,"pitch":-98.8125,"roll":49.0},"location":"Right Knee"},{"euler":{"heading":159.375,"pitch":116.5625,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:53.630"} +{"sensors":[{"euler":{"heading":54.875,"pitch":144.0,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":125.1875,"pitch":175.75,"roll":85.5625},"location":"Left Ankle"},{"euler":{"heading":73.1875,"pitch":-139.6875,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":102.0,"pitch":138.1875,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":226.75,"pitch":-95.75,"roll":54.125},"location":"Right Knee"},{"euler":{"heading":161.0625,"pitch":126.0,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:53.731"} +{"sensors":[{"euler":{"heading":57.9375,"pitch":141.1875,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":127.3125,"pitch":2.75,"roll":85.4375},"location":"Left Ankle"},{"euler":{"heading":96.75,"pitch":-175.3125,"roll":59.25},"location":"Right Ankle"},{"euler":{"heading":12.125,"pitch":141.0,"roll":43.5625},"location":"Right Hip"},{"euler":{"heading":214.0625,"pitch":-91.5,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":164.0,"pitch":132.5,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:53.832"} +{"sensors":[{"euler":{"heading":65.6875,"pitch":136.0625,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":125.25,"pitch":178.625,"roll":86.9375},"location":"Left Ankle"},{"euler":{"heading":123.8125,"pitch":145.375,"roll":51.375},"location":"Right Ankle"},{"euler":{"heading":92.5625,"pitch":145.75,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":196.875,"pitch":175.875,"roll":86.9375},"location":"Right Knee"},{"euler":{"heading":166.5,"pitch":136.8125,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:53.934"} +{"sensors":[{"euler":{"heading":73.625,"pitch":132.375,"roll":28.375},"location":"Left Knee"},{"euler":{"heading":132.8125,"pitch":-115.125,"roll":83.8125},"location":"Left Ankle"},{"euler":{"heading":52.6875,"pitch":132.75,"roll":42.1875},"location":"Right Ankle"},{"euler":{"heading":83.3125,"pitch":146.0625,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":186.5625,"pitch":106.125,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":168.75,"pitch":140.6875,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:54.35"} +{"sensors":[{"euler":{"heading":87.125,"pitch":129.0625,"roll":19.5625},"location":"Left Knee"},{"euler":{"heading":144.3125,"pitch":-83.8125,"roll":74.4375},"location":"Left Ankle"},{"euler":{"heading":130.875,"pitch":140.3125,"roll":46.6875},"location":"Right Ankle"},{"euler":{"heading":82.625,"pitch":145.9375,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":184.375,"pitch":106.1875,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":172.25,"pitch":144.4375,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:54.136"} +{"sensors":[{"euler":{"heading":108.6875,"pitch":128.25,"roll":7.125},"location":"Left Knee"},{"euler":{"heading":159.8125,"pitch":-88.0,"roll":54.6875},"location":"Left Ankle"},{"euler":{"heading":122.1875,"pitch":140.125,"roll":54.0625},"location":"Right Ankle"},{"euler":{"heading":82.625,"pitch":145.8125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":189.75,"pitch":147.5,"roll":83.0},"location":"Right Knee"},{"euler":{"heading":144.375,"pitch":127.3125,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:54.236"} +{"sensors":[{"euler":{"heading":113.5,"pitch":127.375,"roll":7.4375},"location":"Left Knee"},{"euler":{"heading":159.8125,"pitch":-97.0,"roll":52.875},"location":"Left Ankle"},{"euler":{"heading":122.25,"pitch":140.5,"roll":56.0625},"location":"Right Ankle"},{"euler":{"heading":86.25,"pitch":143.625,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":196.125,"pitch":-168.75,"roll":80.6875},"location":"Right Knee"},{"euler":{"heading":154.5,"pitch":114.125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:54.337"} +{"sensors":[{"euler":{"heading":87.375,"pitch":138.5625,"roll":20.5625},"location":"Left Knee"},{"euler":{"heading":137.6875,"pitch":-90.75,"roll":79.4375},"location":"Left Ankle"},{"euler":{"heading":119.4375,"pitch":143.875,"roll":58.6875},"location":"Right Ankle"},{"euler":{"heading":90.25,"pitch":141.875,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":203.1875,"pitch":-144.375,"roll":77.4375},"location":"Right Knee"},{"euler":{"heading":156.0,"pitch":113.625,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:54.438"} +{"sensors":[{"euler":{"heading":39.6875,"pitch":154.3125,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":101.25,"pitch":93.75,"roll":70.625},"location":"Left Ankle"},{"euler":{"heading":112.5625,"pitch":151.8125,"roll":62.3125},"location":"Right Ankle"},{"euler":{"heading":92.0625,"pitch":141.8125,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":207.6875,"pitch":-128.0,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":158.75,"pitch":113.0,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:54.539"} +{"sensors":[{"euler":{"heading":113.375,"pitch":164.0,"roll":45.25},"location":"Left Knee"},{"euler":{"heading":87.4375,"pitch":86.5,"roll":56.4375},"location":"Left Ankle"},{"euler":{"heading":104.6875,"pitch":165.4375,"roll":65.5625},"location":"Right Ankle"},{"euler":{"heading":92.625,"pitch":143.3125,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":213.5625,"pitch":-117.375,"roll":68.3125},"location":"Right Knee"},{"euler":{"heading":164.75,"pitch":115.5625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:54.640"} +{"sensors":[{"euler":{"heading":43.4375,"pitch":154.375,"roll":42.3125},"location":"Left Knee"},{"euler":{"heading":100.8125,"pitch":90.8125,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":98.6875,"pitch":-172.375,"roll":66.0625},"location":"Right Ankle"},{"euler":{"heading":95.125,"pitch":144.0625,"roll":68.75},"location":"Right Hip"},{"euler":{"heading":227.625,"pitch":-110.0,"roll":58.5625},"location":"Right Knee"},{"euler":{"heading":169.0625,"pitch":117.875,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:54.741"} +{"sensors":[{"euler":{"heading":50.5625,"pitch":146.3125,"roll":41.5},"location":"Left Knee"},{"euler":{"heading":110.0625,"pitch":81.625,"roll":71.9375},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":-136.375,"roll":57.3125},"location":"Right Ankle"},{"euler":{"heading":102.625,"pitch":138.75,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":234.4375,"pitch":-99.1875,"roll":48.875},"location":"Right Knee"},{"euler":{"heading":169.3125,"pitch":122.8125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:54.841"} +{"sensors":[{"euler":{"heading":52.75,"pitch":142.9375,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":125.25,"pitch":3.875,"roll":86.0625},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-144.25,"roll":52.5625},"location":"Right Ankle"},{"euler":{"heading":105.75,"pitch":137.25,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":233.9375,"pitch":-94.1875,"roll":53.5},"location":"Right Knee"},{"euler":{"heading":167.6875,"pitch":132.25,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:54.943"} +{"sensors":[{"euler":{"heading":57.8125,"pitch":139.8125,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":126.875,"pitch":2.6875,"roll":83.75},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":-169.3125,"roll":59.3125},"location":"Right Ankle"},{"euler":{"heading":103.5625,"pitch":139.3125,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":216.875,"pitch":-94.6875,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":170.125,"pitch":137.5625,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:55.43"} +{"sensors":[{"euler":{"heading":64.1875,"pitch":135.9375,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":123.3125,"pitch":177.375,"roll":87.0625},"location":"Left Ankle"},{"euler":{"heading":122.8125,"pitch":149.0625,"roll":53.0625},"location":"Right Ankle"},{"euler":{"heading":94.25,"pitch":144.0625,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":197.5625,"pitch":177.25,"roll":86.75},"location":"Right Knee"},{"euler":{"heading":171.1875,"pitch":143.25,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:55.143"} +{"sensors":[{"euler":{"heading":74.6875,"pitch":130.6875,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":131.625,"pitch":-176.0625,"roll":85.625},"location":"Left Ankle"},{"euler":{"heading":53.9375,"pitch":131.375,"roll":41.5625},"location":"Right Ankle"},{"euler":{"heading":82.3125,"pitch":146.625,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":184.75,"pitch":103.8125,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":174.8125,"pitch":148.625,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:55.244"} +{"sensors":[{"euler":{"heading":83.125,"pitch":129.5625,"roll":20.75},"location":"Left Knee"},{"euler":{"heading":141.5,"pitch":-98.5,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":130.0625,"pitch":144.1875,"roll":47.75},"location":"Right Ankle"},{"euler":{"heading":81.6875,"pitch":146.0625,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":183.0,"pitch":99.6875,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":176.75,"pitch":153.0,"roll":67.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:55.345"} +{"sensors":[{"euler":{"heading":103.3125,"pitch":127.0625,"roll":8.625},"location":"Left Knee"},{"euler":{"heading":159.875,"pitch":-88.9375,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":159.875,"pitch":-88.9375,"roll":56.5625},"location":"Right Ankle"},{"euler":{"heading":100.75,"pitch":137.6875,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":235.0625,"pitch":-98.5625,"roll":47.5625},"location":"Right Knee"},{"euler":{"heading":168.75,"pitch":123.5625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:55.446"} +{"sensors":[{"euler":{"heading":53.1875,"pitch":145.8125,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":113.5625,"pitch":88.0,"roll":76.5625},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":101.0625,"pitch":137.5625,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":235.375,"pitch":-97.6875,"roll":47.8125},"location":"Right Knee"},{"euler":{"heading":168.9375,"pitch":124.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:56.92"} +{"sensors":[{"euler":{"heading":60.5,"pitch":140.0625,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":131.1875,"pitch":0.9375,"roll":88.375},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":104.9375,"pitch":138.3125,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":222.0625,"pitch":-93.0625,"roll":61.5},"location":"Right Knee"},{"euler":{"heading":172.625,"pitch":133.5,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:56.193"} +{"sensors":[{"euler":{"heading":68.0625,"pitch":135.125,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":131.5,"pitch":-179.125,"roll":88.5},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":8.6875,"pitch":144.25,"roll":43.9375},"location":"Right Hip"},{"euler":{"heading":200.9375,"pitch":-173.6875,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":174.625,"pitch":138.6875,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:56.294"} +{"sensors":[{"euler":{"heading":76.1875,"pitch":130.25,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":137.25,"pitch":-173.8125,"roll":83.5625},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":88.875,"pitch":146.25,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":188.125,"pitch":96.75,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":177.0,"pitch":143.4375,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:56.397"} +{"sensors":[{"euler":{"heading":83.75,"pitch":128.125,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":145.875,"pitch":-98.1875,"roll":75.25},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":82.75,"pitch":147.75,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":188.875,"pitch":106.3125,"roll":79.0625},"location":"Right Knee"},{"euler":{"heading":176.8125,"pitch":148.1875,"roll":67.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:56.499"} +{"sensors":[{"euler":{"heading":95.4375,"pitch":129.125,"roll":13.3125},"location":"Left Knee"},{"euler":{"heading":150.4375,"pitch":-95.6875,"roll":63.9375},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":81.8125,"pitch":146.4375,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":188.4375,"pitch":175.75,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":169.5625,"pitch":139.375,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:56.601"} +{"sensors":[{"euler":{"heading":114.0,"pitch":126.75,"roll":5.4375},"location":"Left Knee"},{"euler":{"heading":163.375,"pitch":-97.0625,"roll":51.75},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":79.625,"pitch":146.75,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":190.75,"pitch":-175.1875,"roll":81.9375},"location":"Right Knee"},{"euler":{"heading":157.9375,"pitch":117.4375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:56.701"} +{"sensors":[{"euler":{"heading":100.5,"pitch":133.6875,"roll":13.1875},"location":"Left Knee"},{"euler":{"heading":140.75,"pitch":-92.1875,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":84.875,"pitch":143.9375,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":196.0,"pitch":-147.375,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":154.0,"pitch":114.5625,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:56.803"} +{"sensors":[{"euler":{"heading":333.125,"pitch":148.3125,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":97.4375,"roll":81.5625},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":88.0,"pitch":140.5,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":198.5625,"pitch":-131.625,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":154.625,"pitch":111.3125,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:56.904"} +{"sensors":[{"euler":{"heading":350.625,"pitch":161.8125,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":93.5625,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":88.875,"pitch":140.1875,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":203.6875,"pitch":-120.9375,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":163.625,"pitch":116.6875,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:57.4"} +{"sensors":[{"euler":{"heading":38.25,"pitch":158.0,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":93.625,"pitch":96.4375,"roll":60.75},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":90.375,"pitch":141.4375,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":214.1875,"pitch":-111.625,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":166.875,"pitch":118.125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:57.105"} +{"sensors":[{"euler":{"heading":49.9375,"pitch":149.5,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":107.125,"pitch":91.0,"roll":70.125},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":98.375,"pitch":138.75,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":230.25,"pitch":-100.9375,"roll":51.5},"location":"Right Knee"},{"euler":{"heading":167.8125,"pitch":121.3125,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:57.205"} +{"sensors":[{"euler":{"heading":56.75,"pitch":143.25,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":122.375,"pitch":100.75,"roll":82.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":103.0625,"pitch":134.875,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":233.4375,"pitch":-96.5,"roll":48.75},"location":"Right Knee"},{"euler":{"heading":168.9375,"pitch":127.625,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:57.306"} +{"sensors":[{"euler":{"heading":63.75,"pitch":138.375,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":132.9375,"pitch":0.375,"roll":87.4375},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":105.875,"pitch":136.6875,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":221.4375,"pitch":-92.875,"roll":62.375},"location":"Right Knee"},{"euler":{"heading":171.8125,"pitch":134.625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:57.407"} +{"sensors":[{"euler":{"heading":72.3125,"pitch":132.625,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":130.25,"pitch":176.8125,"roll":86.75},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":12.375,"pitch":141.625,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":202.75,"pitch":-176.3125,"roll":86.3125},"location":"Right Knee"},{"euler":{"heading":175.125,"pitch":140.3125,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:57.509"} +{"sensors":[{"euler":{"heading":79.75,"pitch":128.5,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":135.9375,"pitch":-177.4375,"roll":86.8125},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":92.75,"pitch":144.0625,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":189.6875,"pitch":97.875,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":178.0,"pitch":144.625,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:57.609"} +{"sensors":[{"euler":{"heading":87.375,"pitch":125.875,"roll":23.375},"location":"Left Knee"},{"euler":{"heading":145.0,"pitch":-100.25,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":86.125,"pitch":145.75,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":185.0625,"pitch":86.8125,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":178.4375,"pitch":147.1875,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:57.710"} +{"sensors":[{"euler":{"heading":103.125,"pitch":128.3125,"roll":9.375},"location":"Left Knee"},{"euler":{"heading":150.3125,"pitch":-97.0625,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":88.5625,"pitch":143.6875,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":188.3125,"pitch":175.1875,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":173.4375,"pitch":138.125,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:57.810"} +{"sensors":[{"euler":{"heading":119.0,"pitch":122.6875,"roll":6.0},"location":"Left Knee"},{"euler":{"heading":166.0625,"pitch":-91.75,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":86.0,"pitch":143.8125,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":190.875,"pitch":-179.75,"roll":84.1875},"location":"Right Knee"},{"euler":{"heading":163.375,"pitch":119.5625,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:57.912"} +{"sensors":[{"euler":{"heading":99.625,"pitch":134.3125,"roll":15.6875},"location":"Left Knee"},{"euler":{"heading":141.75,"pitch":-90.875,"roll":72.25},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":87.75,"pitch":140.375,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":193.125,"pitch":-144.5625,"roll":82.0},"location":"Right Knee"},{"euler":{"heading":158.5625,"pitch":115.6875,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:58.13"} +{"sensors":[{"euler":{"heading":339.75,"pitch":152.0625,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":108.625,"pitch":91.1875,"roll":77.25},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":88.875,"pitch":139.375,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":197.4375,"pitch":-126.0,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":157.9375,"pitch":112.6875,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:58.115"} +{"sensors":[{"euler":{"heading":24.875,"pitch":163.5,"roll":44.5},"location":"Left Knee"},{"euler":{"heading":88.6875,"pitch":89.0,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":90.3125,"pitch":140.0,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":205.5625,"pitch":-115.0,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":164.625,"pitch":116.875,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:58.216"} +{"sensors":[{"euler":{"heading":41.8125,"pitch":155.4375,"roll":42.125},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":91.4375,"roll":63.125},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":93.75,"pitch":140.9375,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":221.0625,"pitch":-106.375,"roll":59.8125},"location":"Right Knee"},{"euler":{"heading":166.75,"pitch":119.625,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:58.317"} +{"sensors":[{"euler":{"heading":49.5625,"pitch":147.4375,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":107.25,"pitch":86.1875,"roll":71.6875},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":101.0,"pitch":138.1875,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":232.3125,"pitch":-99.1875,"roll":49.3125},"location":"Right Knee"},{"euler":{"heading":167.5625,"pitch":123.0625,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:58.422"} +{"sensors":[{"euler":{"heading":54.5625,"pitch":142.3125,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":124.75,"pitch":4.625,"roll":85.3125},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":107.75,"pitch":137.125,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":228.4375,"pitch":-94.5625,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":170.4375,"pitch":131.9375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:58.524"} +{"sensors":[{"euler":{"heading":62.3125,"pitch":137.375,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":131.4375,"pitch":0.4375,"roll":86.4375},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":14.25,"pitch":140.1875,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":212.5,"pitch":-91.75,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":172.1875,"pitch":135.125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:58.624"} +{"sensors":[{"euler":{"heading":69.125,"pitch":133.75,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":126.5,"pitch":178.0625,"roll":87.3125},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":95.0625,"pitch":144.25,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":194.0,"pitch":175.125,"roll":85.125},"location":"Right Knee"},{"euler":{"heading":172.1875,"pitch":138.6875,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:58.726"} +{"sensors":[{"euler":{"heading":76.25,"pitch":130.0625,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":133.8125,"pitch":-175.4375,"roll":85.0625},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":82.9375,"pitch":147.5,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":182.875,"pitch":93.625,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":173.375,"pitch":142.9375,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:58.828"} +{"sensors":[{"euler":{"heading":87.0625,"pitch":127.5625,"roll":20.625},"location":"Left Knee"},{"euler":{"heading":145.1875,"pitch":-98.375,"roll":74.25},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":80.25,"pitch":148.8125,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":182.1875,"pitch":97.125,"roll":78.8125},"location":"Right Knee"},{"euler":{"heading":174.75,"pitch":145.5,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:58.929"} +{"sensors":[{"euler":{"heading":105.3125,"pitch":128.4375,"roll":8.375},"location":"Left Knee"},{"euler":{"heading":157.5625,"pitch":-91.0,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":82.625,"pitch":145.0625,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":175.9375,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":162.5,"pitch":130.625,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:59.30"} +{"sensors":[{"euler":{"heading":111.0,"pitch":127.5,"roll":7.6875},"location":"Left Knee"},{"euler":{"heading":158.6875,"pitch":-96.75,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":80.8125,"pitch":144.75,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":189.5625,"pitch":-178.75,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":154.8125,"pitch":116.0,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:59.130"} +{"sensors":[{"euler":{"heading":322.8125,"pitch":139.625,"roll":20.0},"location":"Left Knee"},{"euler":{"heading":131.875,"pitch":-91.625,"roll":78.1875},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":85.1875,"pitch":142.3125,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":194.625,"pitch":-141.3125,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":153.3125,"pitch":113.0625,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:59.232"} +{"sensors":[{"euler":{"heading":340.75,"pitch":156.75,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":100.25,"pitch":93.8125,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":87.25,"pitch":141.5625,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":197.125,"pitch":-126.1875,"roll":76.4375},"location":"Right Knee"},{"euler":{"heading":156.375,"pitch":112.75,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:59.333"} +{"sensors":[{"euler":{"heading":351.875,"pitch":165.625,"roll":42.8125},"location":"Left Knee"},{"euler":{"heading":85.8125,"pitch":89.875,"roll":55.75},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":87.9375,"pitch":141.9375,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":205.375,"pitch":-117.5,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":164.25,"pitch":117.6875,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:59.434"} +{"sensors":[{"euler":{"heading":42.375,"pitch":156.25,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":92.875,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":90.6875,"pitch":144.1875,"roll":69.375},"location":"Right Hip"},{"euler":{"heading":221.3125,"pitch":-108.375,"roll":58.75},"location":"Right Knee"},{"euler":{"heading":167.3125,"pitch":119.75,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:59.535"} +{"sensors":[{"euler":{"heading":51.0625,"pitch":147.5,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":109.5625,"pitch":86.0,"roll":71.8125},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":96.625,"pitch":139.9375,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":232.4375,"pitch":-100.4375,"roll":49.1875},"location":"Right Knee"},{"euler":{"heading":165.9375,"pitch":122.1875,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:59.636"} +{"sensors":[{"euler":{"heading":61.5625,"pitch":140.125,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":129.9375,"pitch":3.0,"roll":86.9375},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":102.5625,"pitch":135.1875,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":230.5625,"pitch":-95.6875,"roll":50.8125},"location":"Right Knee"},{"euler":{"heading":171.8125,"pitch":130.8125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:59.737"} +{"sensors":[{"euler":{"heading":67.875,"pitch":135.0625,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":133.25,"pitch":2.8125,"roll":84.375},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":103.6875,"pitch":138.5625,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":217.0,"pitch":-91.5625,"roll":68.875},"location":"Right Knee"},{"euler":{"heading":175.1875,"pitch":136.25,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:59.838"} +{"sensors":[{"euler":{"heading":75.1875,"pitch":130.6875,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":132.6875,"pitch":179.0,"roll":88.875},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":95.5,"pitch":144.25,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":201.125,"pitch":-179.9375,"roll":88.9375},"location":"Right Knee"},{"euler":{"heading":175.75,"pitch":140.1875,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:38:59.939"} +{"sensors":[{"euler":{"heading":81.125,"pitch":128.0,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":138.6875,"pitch":-174.8125,"roll":84.6875},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":83.4375,"pitch":147.4375,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":189.3125,"pitch":104.3125,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":177.5625,"pitch":145.4375,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:00.40"} +{"sensors":[{"euler":{"heading":89.0625,"pitch":125.875,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":147.6875,"pitch":-80.0625,"roll":74.8125},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":80.4375,"pitch":149.375,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":189.75,"pitch":116.875,"roll":82.625},"location":"Right Knee"},{"euler":{"heading":179.75,"pitch":150.5625,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:00.141"} +{"sensors":[{"euler":{"heading":104.375,"pitch":128.5,"roll":8.625},"location":"Left Knee"},{"euler":{"heading":155.0,"pitch":-93.125,"roll":56.3125},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":83.875,"pitch":147.1875,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":194.625,"pitch":-179.6875,"roll":85.25},"location":"Right Knee"},{"euler":{"heading":170.375,"pitch":134.5,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:00.242"} +{"sensors":[{"euler":{"heading":113.8125,"pitch":125.0625,"roll":6.3125},"location":"Left Knee"},{"euler":{"heading":157.6875,"pitch":-99.0625,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":83.6875,"pitch":145.25,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":196.6875,"pitch":-142.0,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":159.375,"pitch":119.125,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:00.343"} +{"sensors":[{"euler":{"heading":85.875,"pitch":138.375,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":132.3125,"pitch":-86.4375,"roll":77.0625},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":87.25,"pitch":141.5,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":199.75,"pitch":-124.9375,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":157.375,"pitch":115.5625,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:00.446"} +{"sensors":[{"euler":{"heading":341.1875,"pitch":154.9375,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":102.125,"pitch":91.25,"roll":72.125},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":88.25,"pitch":141.5625,"roll":67.4375},"location":"Right Hip"},{"euler":{"heading":205.3125,"pitch":-114.9375,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":159.625,"pitch":115.0,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:00.547"} +{"sensors":[{"euler":{"heading":26.25,"pitch":163.5625,"roll":42.5},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":91.875,"roll":57.1875},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":88.6875,"pitch":143.0625,"roll":69.4375},"location":"Right Hip"},{"euler":{"heading":214.8125,"pitch":-107.8125,"roll":64.375},"location":"Right Knee"},{"euler":{"heading":164.6875,"pitch":119.3125,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:00.648"} +{"sensors":[{"euler":{"heading":105.25,"pitch":154.1875,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":104.9375,"pitch":157.875,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":1.3125,"pitch":-135.0625,"roll":76.9375},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":167.6875,"pitch":-58.75,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":170.9375,"pitch":114.75,"roll":69.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:58.808"} +{"sensors":[{"euler":{"heading":105.25,"pitch":154.125,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":104.9375,"pitch":158.0,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":1.875,"pitch":-137.625,"roll":76.5625},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":-58.5625,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":170.875,"pitch":114.6875,"roll":69.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:58.909"} +{"sensors":[{"euler":{"heading":104.875,"pitch":154.375,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":104.8125,"pitch":157.75,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":2.125,"pitch":-136.8125,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":-58.4375,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":170.5,"pitch":114.5,"roll":69.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:59.10"} +{"sensors":[{"euler":{"heading":104.5625,"pitch":154.5625,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":104.6875,"pitch":157.375,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":1.1875,"pitch":-137.0,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":-58.25,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":170.25,"pitch":114.25,"roll":69.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:59.111"} +{"sensors":[{"euler":{"heading":104.375,"pitch":154.6875,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":104.6875,"pitch":157.1875,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":2.125,"pitch":-135.8125,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":167.9375,"pitch":-58.0625,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":170.0,"pitch":114.0,"roll":69.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:59.212"} +{"sensors":[{"euler":{"heading":104.0625,"pitch":154.875,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":104.5625,"pitch":157.0,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":2.25,"pitch":-135.1875,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":167.875,"pitch":-57.875,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":169.75,"pitch":113.75,"roll":69.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:59.312"} +{"sensors":[{"euler":{"heading":103.6875,"pitch":155.1875,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":104.375,"pitch":156.375,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":2.3125,"pitch":-135.3125,"roll":76.375},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":-57.75,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":169.4375,"pitch":113.5625,"roll":69.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:59.413"} +{"sensors":[{"euler":{"heading":103.25,"pitch":155.4375,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":104.125,"pitch":155.9375,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":1.625,"pitch":-132.5625,"roll":76.75},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":167.8125,"pitch":-57.5,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":169.3125,"pitch":113.4375,"roll":68.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:59.514"} +{"sensors":[{"euler":{"heading":103.375,"pitch":155.375,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":104.125,"pitch":155.875,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":0.1875,"pitch":-140.125,"roll":77.4375},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":167.9375,"pitch":-57.5,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":169.4375,"pitch":113.5,"roll":68.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:59.615"} +{"sensors":[{"euler":{"heading":103.5,"pitch":155.3125,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":104.1875,"pitch":156.0625,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":359.3125,"pitch":-140.6875,"roll":78.125},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":168.0625,"pitch":-57.625,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":169.5625,"pitch":113.6875,"roll":69.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:59.715"} +{"sensors":[{"euler":{"heading":103.75,"pitch":155.25,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":104.25,"pitch":155.9375,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":359.0,"pitch":-140.5,"roll":78.5},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":168.3125,"pitch":-58.0,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":169.8125,"pitch":114.125,"roll":69.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:59.816"} +{"sensors":[{"euler":{"heading":103.8125,"pitch":155.0625,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":156.1875,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":0.375,"pitch":-142.1875,"roll":77.25},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":168.25,"pitch":-57.6875,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":169.6875,"pitch":114.1875,"roll":69.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:39:59.917"} +{"sensors":[{"euler":{"heading":103.75,"pitch":155.0,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":156.3125,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":0.1875,"pitch":-143.0625,"roll":76.625},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":168.125,"pitch":-58.0,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":169.4375,"pitch":114.1875,"roll":69.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:00.18"} +{"sensors":[{"euler":{"heading":103.875,"pitch":154.9375,"roll":59.0},"location":"Left Knee"},{"euler":{"heading":104.375,"pitch":156.8125,"roll":77.3125},"location":"Left Ankle"},{"euler":{"heading":1.125,"pitch":-140.5625,"roll":76.5},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":168.25,"pitch":-58.1875,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":169.6875,"pitch":114.4375,"roll":69.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:00.119"} +{"sensors":[{"euler":{"heading":103.875,"pitch":154.875,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":104.3125,"pitch":156.5625,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":359.5625,"pitch":-146.0625,"roll":77.6875},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":168.3125,"pitch":-57.875,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":169.6875,"pitch":114.625,"roll":69.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:00.220"} +{"sensors":[{"euler":{"heading":103.8125,"pitch":155.0,"roll":59.0625},"location":"Left Knee"},{"euler":{"heading":104.25,"pitch":156.125,"roll":77.4375},"location":"Left Ankle"},{"euler":{"heading":358.8125,"pitch":-153.0625,"roll":76.3125},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":168.3125,"pitch":-57.75,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":169.625,"pitch":114.5,"roll":69.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:00.321"} +{"sensors":[{"euler":{"heading":104.0,"pitch":155.0,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":104.4375,"pitch":156.3125,"roll":77.5},"location":"Left Ankle"},{"euler":{"heading":359.5,"pitch":-150.625,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":168.6875,"pitch":-57.5625,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":170.125,"pitch":114.1875,"roll":68.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:00.421"} +{"sensors":[{"euler":{"heading":105.3125,"pitch":154.5625,"roll":59.125},"location":"Left Knee"},{"euler":{"heading":105.25,"pitch":158.0625,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":1.375,"pitch":-138.0625,"roll":77.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":-57.4375,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":171.5,"pitch":114.25,"roll":68.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:00.522"} +{"sensors":[{"euler":{"heading":106.25,"pitch":154.0625,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":105.75,"pitch":159.25,"roll":77.5625},"location":"Left Ankle"},{"euler":{"heading":1.0625,"pitch":-142.0,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.75,"pitch":-57.0625,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":172.4375,"pitch":114.8125,"roll":69.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:00.623"} +{"sensors":[{"euler":{"heading":106.125,"pitch":154.0,"roll":58.9375},"location":"Left Knee"},{"euler":{"heading":105.6875,"pitch":159.3125,"roll":77.5},"location":"Left Ankle"},{"euler":{"heading":1.5,"pitch":-145.0,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.75,"pitch":-56.9375,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":172.4375,"pitch":115.1875,"roll":69.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:00.723"} +{"sensors":[{"euler":{"heading":105.75,"pitch":154.1875,"roll":58.875},"location":"Left Knee"},{"euler":{"heading":105.4375,"pitch":159.1875,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":1.4375,"pitch":-145.5,"roll":76.875},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.5625,"pitch":-57.25,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":171.875,"pitch":115.5625,"roll":69.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:00.824"} +{"sensors":[{"euler":{"heading":171.875,"pitch":115.5625,"roll":69.0625},"location":"Left Knee"},{"euler":{"heading":104.8125,"pitch":157.5625,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":1.625,"pitch":-145.0,"roll":76.6875},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.0625,"pitch":-58.375,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:00.924"} +{"sensors":[{"euler":{"heading":105.4375,"pitch":154.3125,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":104.8125,"pitch":157.5625,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":1.5,"pitch":-144.8125,"roll":76.8125},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.0625,"pitch":-58.375,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:01.578"} +{"sensors":[{"euler":{"heading":105.6875,"pitch":154.1875,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":104.8125,"pitch":157.4375,"roll":77.4375},"location":"Left Ankle"},{"euler":{"heading":3.0,"pitch":-136.5625,"roll":76.4375},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.0625,"pitch":-58.375,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:01.680"} +{"sensors":[{"euler":{"heading":105.6875,"pitch":154.125,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":104.875,"pitch":157.6875,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":3.125,"pitch":-124.9375,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":-58.5625,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:01.780"} +{"sensors":[{"euler":{"heading":105.75,"pitch":154.125,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":104.875,"pitch":157.6875,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":2.9375,"pitch":-123.625,"roll":76.0625},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.0,"pitch":-58.625,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:01.881"} +{"sensors":[{"euler":{"heading":105.9375,"pitch":154.0,"roll":58.8125},"location":"Left Knee"},{"euler":{"heading":104.875,"pitch":157.625,"roll":77.4375},"location":"Left Ankle"},{"euler":{"heading":3.4375,"pitch":-122.8125,"roll":76.25},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":-58.375,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:01.981"} +{"sensors":[{"euler":{"heading":106.25,"pitch":153.8125,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":104.9375,"pitch":157.625,"roll":77.4375},"location":"Left Ankle"},{"euler":{"heading":1.3125,"pitch":-142.0,"roll":77.5},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.375,"pitch":-58.125,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:02.83"} +{"sensors":[{"euler":{"heading":106.3125,"pitch":153.8125,"roll":58.75},"location":"Left Knee"},{"euler":{"heading":104.9375,"pitch":157.6875,"roll":77.375},"location":"Left Ankle"},{"euler":{"heading":1.0,"pitch":-143.9375,"roll":77.625},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":169.3125,"pitch":-58.125,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:02.184"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:02.287"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:06.116"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:26.140"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:26.241"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:26.342"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:26.443"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:26.544"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:26.645"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:26.746"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:26.847"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:26.948"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:27.49"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:27.150"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:27.251"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:27.352"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:27.454"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:27.555"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:27.656"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:27.757"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:27.857"} +{"sensors":[{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":5e-324,"roll":2.705636634196e-312},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:27.959"} +{"sensors":[{"euler":{"heading":102.5,"pitch":155.875,"roll":59.1875},"location":"Left Knee"},{"euler":{"heading":101.375,"pitch":151.0625,"roll":77.9375},"location":"Left Ankle"},{"euler":{"heading":6.75,"pitch":-130.3125,"roll":75.0625},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":172.8125,"pitch":-57.4375,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:40:28.60"} diff --git a/sensors/treadmill_imu_data/imu_data_treadmill_5min_1.9mph.json b/sensors/treadmill_imu_data/imu_data_treadmill_5min_1.9mph.json new file mode 100644 index 0000000..c98c138 --- /dev/null +++ b/sensors/treadmill_imu_data/imu_data_treadmill_5min_1.9mph.json @@ -0,0 +1,3069 @@ +{"sensors":[{"euler":{"heading":367.625,"pitch":128.8125,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":107.6875,"roll":37.0},"location":"Left Ankle"},{"euler":{"heading":53.375,"pitch":-3.6875,"roll":13.0},"location":"Right Ankle"},{"euler":{"heading":103.6875,"pitch":-149.125,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":-144.4375,"roll":-50.625},"location":"Right Knee"},{"euler":{"heading":49.375,"pitch":-145.6875,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.599"} +{"sensors":[{"euler":{"heading":358.375,"pitch":125.4375,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":105.3125,"pitch":109.8125,"roll":41.375},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":1.125,"roll":15.3125},"location":"Right Ankle"},{"euler":{"heading":94.4375,"pitch":-152.4375,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":147.5625,"pitch":-132.125,"roll":-38.9375},"location":"Right Knee"},{"euler":{"heading":51.0625,"pitch":-152.75,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.699"} +{"sensors":[{"euler":{"heading":5.75,"pitch":122.9375,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":112.375,"pitch":114.125,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":5.4375,"roll":14.0},"location":"Right Ankle"},{"euler":{"heading":83.375,"pitch":-156.0625,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":148.375,"pitch":-133.5,"roll":-36.1875},"location":"Right Knee"},{"euler":{"heading":53.125,"pitch":-159.0625,"roll":67.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.800"} +{"sensors":[{"euler":{"heading":16.875,"pitch":122.0625,"roll":14.5},"location":"Left Knee"},{"euler":{"heading":119.125,"pitch":124.375,"roll":58.875},"location":"Left Ankle"},{"euler":{"heading":62.9375,"pitch":6.625,"roll":12.6875},"location":"Right Ankle"},{"euler":{"heading":83.625,"pitch":-155.5,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":165.875,"pitch":-143.0,"roll":-41.5625},"location":"Right Knee"},{"euler":{"heading":53.5625,"pitch":-157.375,"roll":67.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:11.900"} +{"sensors":[{"euler":{"heading":31.125,"pitch":122.0,"roll":5.4375},"location":"Left Knee"},{"euler":{"heading":136.5,"pitch":156.4375,"roll":68.125},"location":"Left Ankle"},{"euler":{"heading":56.875,"pitch":9.0,"roll":11.0},"location":"Right Ankle"},{"euler":{"heading":79.5625,"pitch":-156.25,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":182.25,"pitch":-150.0625,"roll":-47.0625},"location":"Right Knee"},{"euler":{"heading":38.5,"pitch":-130.875,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.1"} +{"sensors":[{"euler":{"heading":19.875,"pitch":129.4375,"roll":11.3125},"location":"Left Knee"},{"euler":{"heading":126.0625,"pitch":124.0,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":52.25,"pitch":8.9375,"roll":8.125},"location":"Right Ankle"},{"euler":{"heading":78.6875,"pitch":-156.5625,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":191.125,"pitch":-155.6875,"roll":-50.6875},"location":"Right Knee"},{"euler":{"heading":27.0,"pitch":-118.0,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.101"} +{"sensors":[{"euler":{"heading":342.875,"pitch":142.0,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":93.75,"pitch":104.0625,"roll":43.9375},"location":"Left Ankle"},{"euler":{"heading":48.625,"pitch":9.0625,"roll":8.875},"location":"Right Ankle"},{"euler":{"heading":79.25,"pitch":-157.0625,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":198.0625,"pitch":-160.3125,"roll":-54.4375},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-112.8125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.201"} +{"sensors":[{"euler":{"heading":257.625,"pitch":156.125,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":65.6875,"pitch":95.875,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":44.1875,"pitch":8.5625,"roll":7.9375},"location":"Right Ankle"},{"euler":{"heading":82.4375,"pitch":-157.3125,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":202.9375,"pitch":-167.0,"roll":-56.75},"location":"Right Knee"},{"euler":{"heading":25.75,"pitch":-114.3125,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.302"} +{"sensors":[{"euler":{"heading":265.9375,"pitch":161.5625,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":58.375,"pitch":95.6875,"roll":10.1875},"location":"Left Ankle"},{"euler":{"heading":38.3125,"pitch":7.3125,"roll":7.75},"location":"Right Ankle"},{"euler":{"heading":84.5,"pitch":-159.1875,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":207.75,"pitch":-176.0625,"roll":-59.0625},"location":"Right Knee"},{"euler":{"heading":32.625,"pitch":-119.4375,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.402"} +{"sensors":[{"euler":{"heading":323.875,"pitch":151.875,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":77.625,"pitch":102.0625,"roll":20.5},"location":"Left Ankle"},{"euler":{"heading":29.125,"pitch":1.375,"roll":5.8125},"location":"Right Ankle"},{"euler":{"heading":87.1875,"pitch":-164.25,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":208.75,"pitch":170.75,"roll":-63.0625},"location":"Right Knee"},{"euler":{"heading":36.1875,"pitch":-122.0,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.503"} +{"sensors":[{"euler":{"heading":333.25,"pitch":143.9375,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":81.625,"pitch":103.4375,"roll":27.5625},"location":"Left Ankle"},{"euler":{"heading":15.875,"pitch":-2.0625,"roll":5.75},"location":"Right Ankle"},{"euler":{"heading":93.375,"pitch":-153.5,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":219.875,"pitch":156.5625,"roll":-56.625},"location":"Right Knee"},{"euler":{"heading":36.0,"pitch":-122.0625,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.603"} +{"sensors":[{"euler":{"heading":338.9375,"pitch":138.5,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":88.5625,"pitch":103.9375,"roll":31.4375},"location":"Left Ankle"},{"euler":{"heading":21.5,"pitch":-3.8125,"roll":6.6875},"location":"Right Ankle"},{"euler":{"heading":99.875,"pitch":-147.25,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":206.5625,"pitch":170.125,"roll":-56.125},"location":"Right Knee"},{"euler":{"heading":39.5,"pitch":-130.625,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.704"} +{"sensors":[{"euler":{"heading":346.9375,"pitch":132.5625,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":95.6875,"pitch":105.75,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":42.25,"pitch":-3.5,"roll":9.875},"location":"Right Ankle"},{"euler":{"heading":103.125,"pitch":-147.375,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":179.25,"pitch":-158.5,"roll":-55.125},"location":"Right Knee"},{"euler":{"heading":44.5,"pitch":-138.4375,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.804"} +{"sensors":[{"euler":{"heading":354.125,"pitch":128.1875,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":107.875,"roll":39.5},"location":"Left Ankle"},{"euler":{"heading":64.4375,"pitch":-0.125,"roll":11.4375},"location":"Right Ankle"},{"euler":{"heading":98.375,"pitch":-150.75,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":156.375,"pitch":-136.3125,"roll":-45.0},"location":"Right Knee"},{"euler":{"heading":47.125,"pitch":-146.125,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:12.905"} +{"sensors":[{"euler":{"heading":0.375,"pitch":125.25,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":108.0625,"pitch":111.0625,"roll":45.375},"location":"Left Ankle"},{"euler":{"heading":74.75,"pitch":3.9375,"roll":14.3125},"location":"Right Ankle"},{"euler":{"heading":86.9375,"pitch":-154.3125,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":147.8125,"pitch":-131.625,"roll":-36.9375},"location":"Right Knee"},{"euler":{"heading":47.625,"pitch":-151.8125,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.6"} +{"sensors":[{"euler":{"heading":9.25,"pitch":123.4375,"roll":19.9375},"location":"Left Knee"},{"euler":{"heading":114.75,"pitch":116.6875,"roll":54.9375},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":6.8125,"roll":13.125},"location":"Right Ankle"},{"euler":{"heading":80.1875,"pitch":-156.5,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":159.8125,"pitch":-138.6875,"roll":-39.3125},"location":"Right Knee"},{"euler":{"heading":49.3125,"pitch":-156.25,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.107"} +{"sensors":[{"euler":{"heading":23.4375,"pitch":123.8125,"roll":8.8125},"location":"Left Knee"},{"euler":{"heading":130.4375,"pitch":144.0,"roll":67.5},"location":"Left Ankle"},{"euler":{"heading":60.1875,"pitch":7.5,"roll":11.5},"location":"Right Ankle"},{"euler":{"heading":81.8125,"pitch":-155.75,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":173.1875,"pitch":-144.8125,"roll":-44.9375},"location":"Right Knee"},{"euler":{"heading":40.625,"pitch":-139.8125,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.208"} +{"sensors":[{"euler":{"heading":34.625,"pitch":124.125,"roll":4.0},"location":"Left Knee"},{"euler":{"heading":133.625,"pitch":151.8125,"roll":69.75},"location":"Left Ankle"},{"euler":{"heading":56.0,"pitch":8.5,"roll":9.5},"location":"Right Ankle"},{"euler":{"heading":77.125,"pitch":-157.5,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":187.9375,"pitch":-151.625,"roll":-50.1875},"location":"Right Knee"},{"euler":{"heading":30.0,"pitch":-117.5625,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.309"} +{"sensors":[{"euler":{"heading":15.6875,"pitch":134.4375,"roll":14.125},"location":"Left Knee"},{"euler":{"heading":112.75,"pitch":112.375,"roll":60.375},"location":"Left Ankle"},{"euler":{"heading":52.8125,"pitch":8.3125,"roll":8.0625},"location":"Right Ankle"},{"euler":{"heading":78.625,"pitch":-157.1875,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":193.875,"pitch":-155.75,"roll":-53.3125},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-113.25,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.409"} +{"sensors":[{"euler":{"heading":252.5,"pitch":147.6875,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":78.3125,"pitch":102.25,"roll":30.3125},"location":"Left Ankle"},{"euler":{"heading":49.625,"pitch":8.3125,"roll":7.5625},"location":"Right Ankle"},{"euler":{"heading":82.25,"pitch":-156.8125,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":199.1875,"pitch":-161.6875,"roll":-55.8125},"location":"Right Knee"},{"euler":{"heading":24.3125,"pitch":-113.3125,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.511"} +{"sensors":[{"euler":{"heading":264.1875,"pitch":157.0,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":59.6875,"pitch":98.3125,"roll":11.9375},"location":"Left Ankle"},{"euler":{"heading":43.6875,"pitch":7.6875,"roll":6.8125},"location":"Right Ankle"},{"euler":{"heading":84.5,"pitch":-159.0625,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":204.4375,"pitch":-169.875,"roll":-58.6875},"location":"Right Knee"},{"euler":{"heading":30.0625,"pitch":-117.1875,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.612"} +{"sensors":[{"euler":{"heading":323.9375,"pitch":153.375,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":65.375,"pitch":104.1875,"roll":14.4375},"location":"Left Ankle"},{"euler":{"heading":35.5625,"pitch":4.5,"roll":5.1875},"location":"Right Ankle"},{"euler":{"heading":87.0,"pitch":-162.5625,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":208.0625,"pitch":177.3125,"roll":-60.625},"location":"Right Knee"},{"euler":{"heading":37.5625,"pitch":-121.0625,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.713"} +{"sensors":[{"euler":{"heading":338.0625,"pitch":144.125,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":80.9375,"pitch":106.75,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":20.875,"pitch":-1.375,"roll":5.25},"location":"Right Ankle"},{"euler":{"heading":95.4375,"pitch":-156.375,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":213.3125,"pitch":161.875,"roll":-59.0},"location":"Right Knee"},{"euler":{"heading":36.1875,"pitch":-121.4375,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.813"} +{"sensors":[{"euler":{"heading":346.0625,"pitch":136.6875,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":94.3125,"pitch":110.1875,"roll":31.875},"location":"Left Ankle"},{"euler":{"heading":15.0,"pitch":-5.1875,"roll":5.375},"location":"Right Ankle"},{"euler":{"heading":100.1875,"pitch":-148.1875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":211.125,"pitch":162.25,"roll":-57.8125},"location":"Right Knee"},{"euler":{"heading":39.75,"pitch":-124.0,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:13.914"} +{"sensors":[{"euler":{"heading":349.6875,"pitch":132.1875,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":99.375,"pitch":110.4375,"roll":35.3125},"location":"Left Ankle"},{"euler":{"heading":30.1875,"pitch":-5.375,"roll":6.5},"location":"Right Ankle"},{"euler":{"heading":106.5625,"pitch":-146.4375,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":187.5,"pitch":-168.3125,"roll":-58.5},"location":"Right Knee"},{"euler":{"heading":44.3125,"pitch":-132.4375,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.15"} +{"sensors":[{"euler":{"heading":355.1875,"pitch":128.375,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":102.625,"pitch":111.0,"roll":37.8125},"location":"Left Ankle"},{"euler":{"heading":53.5625,"pitch":-4.0625,"roll":10.375},"location":"Right Ankle"},{"euler":{"heading":103.6875,"pitch":-149.625,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":160.5,"pitch":-138.5,"roll":-49.625},"location":"Right Knee"},{"euler":{"heading":47.5,"pitch":-142.5,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.116"} +{"sensors":[{"euler":{"heading":0.75,"pitch":125.1875,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":107.25,"pitch":112.5,"roll":42.0},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":0.375,"roll":14.0625},"location":"Right Ankle"},{"euler":{"heading":94.75,"pitch":-151.375,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":143.6875,"pitch":-128.9375,"roll":-37.1875},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-149.125,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.216"} +{"sensors":[{"euler":{"heading":6.5625,"pitch":122.4375,"roll":24.75},"location":"Left Knee"},{"euler":{"heading":115.0,"pitch":116.4375,"roll":49.5625},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":6.0625,"roll":12.875},"location":"Right Ankle"},{"euler":{"heading":83.375,"pitch":-154.9375,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":145.125,"pitch":-133.875,"roll":-33.3125},"location":"Right Knee"},{"euler":{"heading":51.0,"pitch":-155.75,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.318"} +{"sensors":[{"euler":{"heading":18.0,"pitch":120.8125,"roll":14.8125},"location":"Left Knee"},{"euler":{"heading":121.625,"pitch":127.5,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":65.1875,"pitch":6.1875,"roll":11.25},"location":"Right Ankle"},{"euler":{"heading":84.5625,"pitch":-154.5,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":161.8125,"pitch":-142.375,"roll":-40.5},"location":"Right Knee"},{"euler":{"heading":52.0625,"pitch":-153.5625,"roll":67.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.418"} +{"sensors":[{"euler":{"heading":32.9375,"pitch":120.875,"roll":4.375},"location":"Left Knee"},{"euler":{"heading":139.0,"pitch":158.4375,"roll":70.5},"location":"Left Ankle"},{"euler":{"heading":58.9375,"pitch":7.75,"roll":9.5625},"location":"Right Ankle"},{"euler":{"heading":78.8125,"pitch":-156.375,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":177.6875,"pitch":-147.5,"roll":-46.3125},"location":"Right Knee"},{"euler":{"heading":35.8125,"pitch":-128.125,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.519"} +{"sensors":[{"euler":{"heading":27.5,"pitch":128.875,"roll":8.3125},"location":"Left Knee"},{"euler":{"heading":125.0625,"pitch":126.3125,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":55.6875,"pitch":8.5,"roll":7.75},"location":"Right Ankle"},{"euler":{"heading":79.1875,"pitch":-156.8125,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":189.125,"pitch":-152.5,"roll":-50.8125},"location":"Right Knee"},{"euler":{"heading":26.75,"pitch":-116.3125,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.620"} +{"sensors":[{"euler":{"heading":352.1875,"pitch":140.875,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":94.375,"pitch":103.75,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":52.125,"pitch":9.375,"roll":7.5},"location":"Right Ankle"},{"euler":{"heading":80.875,"pitch":-156.5,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":196.375,"pitch":-158.125,"roll":-53.5},"location":"Right Knee"},{"euler":{"heading":20.875,"pitch":-118.75,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.721"} +{"sensors":[{"euler":{"heading":258.3125,"pitch":154.75,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":63.75,"pitch":96.875,"roll":17.4375},"location":"Left Ankle"},{"euler":{"heading":46.5,"pitch":9.8125,"roll":7.1875},"location":"Right Ankle"},{"euler":{"heading":82.1875,"pitch":-157.75,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":204.0625,"pitch":-166.4375,"roll":-55.9375},"location":"Right Knee"},{"euler":{"heading":25.5625,"pitch":-118.0625,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.822"} +{"sensors":[{"euler":{"heading":267.0,"pitch":158.625,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":60.6875,"pitch":100.0625,"roll":11.375},"location":"Left Ankle"},{"euler":{"heading":38.8125,"pitch":8.25,"roll":6.5},"location":"Right Ankle"},{"euler":{"heading":82.9375,"pitch":-162.125,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":210.4375,"pitch":-177.125,"roll":-58.5},"location":"Right Knee"},{"euler":{"heading":32.125,"pitch":-122.0625,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:14.922"} +{"sensors":[{"euler":{"heading":332.0625,"pitch":148.625,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":80.1875,"pitch":105.1875,"roll":22.125},"location":"Left Ankle"},{"euler":{"heading":27.8125,"pitch":-0.3125,"roll":4.8125},"location":"Right Ankle"},{"euler":{"heading":89.6875,"pitch":-159.25,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":210.5625,"pitch":168.8125,"roll":-61.5},"location":"Right Knee"},{"euler":{"heading":34.5,"pitch":-122.9375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.23"} +{"sensors":[{"euler":{"heading":343.125,"pitch":139.75,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":89.625,"pitch":107.5625,"roll":29.5625},"location":"Left Ankle"},{"euler":{"heading":15.6875,"pitch":-7.1875,"roll":3.6875},"location":"Right Ankle"},{"euler":{"heading":98.125,"pitch":-150.5,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":212.4375,"pitch":159.1875,"roll":-59.5},"location":"Right Knee"},{"euler":{"heading":40.75,"pitch":-128.0,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.124"} +{"sensors":[{"euler":{"heading":348.4375,"pitch":133.4375,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":97.25,"pitch":109.5,"roll":33.6875},"location":"Left Ankle"},{"euler":{"heading":29.375,"pitch":-7.25,"roll":5.0625},"location":"Right Ankle"},{"euler":{"heading":105.625,"pitch":-145.875,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":194.6875,"pitch":-177.8125,"roll":-60.6875},"location":"Right Knee"},{"euler":{"heading":46.9375,"pitch":-137.8125,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.225"} +{"sensors":[{"euler":{"heading":354.4375,"pitch":128.9375,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":110.75,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":50.5625,"pitch":-5.9375,"roll":11.0},"location":"Right Ankle"},{"euler":{"heading":102.75,"pitch":-148.6875,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":-144.0625,"roll":-53.1875},"location":"Right Knee"},{"euler":{"heading":48.75,"pitch":-143.5,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.325"} +{"sensors":[{"euler":{"heading":0.875,"pitch":124.625,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":107.125,"pitch":113.0625,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":71.875,"pitch":0.875,"roll":14.125},"location":"Right Ankle"},{"euler":{"heading":95.4375,"pitch":-151.0,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":147.5,"pitch":-131.3125,"roll":-39.5625},"location":"Right Knee"},{"euler":{"heading":50.8125,"pitch":-149.1875,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.426"} +{"sensors":[{"euler":{"heading":7.0625,"pitch":121.5,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":114.1875,"pitch":116.75,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":77.875,"pitch":4.125,"roll":13.125},"location":"Right Ankle"},{"euler":{"heading":83.75,"pitch":-155.4375,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":144.5,"pitch":-131.625,"roll":-35.25},"location":"Right Knee"},{"euler":{"heading":53.25,"pitch":-156.375,"roll":67.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.527"} +{"sensors":[{"euler":{"heading":16.4375,"pitch":120.4375,"roll":16.5},"location":"Left Knee"},{"euler":{"heading":118.25,"pitch":123.9375,"roll":56.6875},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":6.875,"roll":12.0625},"location":"Right Ankle"},{"euler":{"heading":84.4375,"pitch":-154.5625,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":161.375,"pitch":-141.3125,"roll":-39.75},"location":"Right Knee"},{"euler":{"heading":53.375,"pitch":-153.625,"roll":68.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.629"} +{"sensors":[{"euler":{"heading":31.8125,"pitch":120.5625,"roll":7.9375},"location":"Left Knee"},{"euler":{"heading":142.75,"pitch":156.4375,"roll":66.75},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":10.4375,"roll":9.75},"location":"Right Ankle"},{"euler":{"heading":82.6875,"pitch":-153.5,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":177.5,"pitch":-148.4375,"roll":-44.1875},"location":"Right Knee"},{"euler":{"heading":37.875,"pitch":-130.5625,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.730"} +{"sensors":[{"euler":{"heading":27.3125,"pitch":128.3125,"roll":10.0},"location":"Left Knee"},{"euler":{"heading":125.0625,"pitch":130.4375,"roll":63.625},"location":"Left Ankle"},{"euler":{"heading":56.9375,"pitch":10.25,"roll":8.0625},"location":"Right Ankle"},{"euler":{"heading":81.5,"pitch":-153.75,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":188.75,"pitch":-153.875,"roll":-48.9375},"location":"Right Knee"},{"euler":{"heading":29.4375,"pitch":-116.9375,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.831"} +{"sensors":[{"euler":{"heading":242.5,"pitch":141.5,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":94.3125,"pitch":104.4375,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":53.6875,"pitch":10.5625,"roll":7.0},"location":"Right Ankle"},{"euler":{"heading":81.0,"pitch":-154.0625,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":198.0625,"pitch":-160.0,"roll":-53.0},"location":"Right Knee"},{"euler":{"heading":22.375,"pitch":-111.1875,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:15.931"} +{"sensors":[{"euler":{"heading":257.0625,"pitch":154.875,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":65.0625,"pitch":96.9375,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":48.625,"pitch":10.875,"roll":6.625},"location":"Right Ankle"},{"euler":{"heading":82.5625,"pitch":-155.0,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":205.625,"pitch":-167.75,"roll":-55.75},"location":"Right Knee"},{"euler":{"heading":23.625,"pitch":-112.625,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.32"} +{"sensors":[{"euler":{"heading":266.5625,"pitch":162.5625,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":55.125,"pitch":94.625,"roll":8.3125},"location":"Left Ankle"},{"euler":{"heading":42.25,"pitch":9.25,"roll":6.6875},"location":"Right Ankle"},{"euler":{"heading":83.6875,"pitch":-158.6875,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":210.625,"pitch":-176.6875,"roll":-58.625},"location":"Right Knee"},{"euler":{"heading":30.5,"pitch":-117.875,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.132"} +{"sensors":[{"euler":{"heading":320.375,"pitch":154.4375,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":67.6875,"pitch":99.875,"roll":16.375},"location":"Left Ankle"},{"euler":{"heading":32.625,"pitch":4.625,"roll":4.375},"location":"Right Ankle"},{"euler":{"heading":85.0625,"pitch":-163.1875,"roll":69.0625},"location":"Right Hip"},{"euler":{"heading":213.75,"pitch":170.6875,"roll":-60.6875},"location":"Right Knee"},{"euler":{"heading":33.375,"pitch":-120.0625,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.233"} +{"sensors":[{"euler":{"heading":332.125,"pitch":145.5,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":78.375,"pitch":102.0,"roll":24.1875},"location":"Left Ankle"},{"euler":{"heading":18.75,"pitch":-2.6875,"roll":3.8125},"location":"Right Ankle"},{"euler":{"heading":92.8125,"pitch":-156.75,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":216.75,"pitch":155.9375,"roll":-58.4375},"location":"Right Knee"},{"euler":{"heading":34.3125,"pitch":-121.0,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.334"} +{"sensors":[{"euler":{"heading":338.0,"pitch":139.6875,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":85.375,"pitch":102.5,"roll":29.125},"location":"Left Ankle"},{"euler":{"heading":21.5625,"pitch":-6.125,"roll":5.6875},"location":"Right Ankle"},{"euler":{"heading":99.6875,"pitch":-149.25,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":208.4375,"pitch":167.5625,"roll":-58.75},"location":"Right Knee"},{"euler":{"heading":39.1875,"pitch":-129.25,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.435"} +{"sensors":[{"euler":{"heading":342.0,"pitch":135.1875,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":93.4375,"pitch":103.375,"roll":35.5625},"location":"Left Ankle"},{"euler":{"heading":42.1875,"pitch":-5.0,"roll":9.375},"location":"Right Ankle"},{"euler":{"heading":103.6875,"pitch":-146.125,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":184.9375,"pitch":-159.5625,"roll":-57.8125},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-137.8125,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.536"} +{"sensors":[{"euler":{"heading":350.6875,"pitch":130.375,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":100.875,"pitch":105.5625,"roll":40.9375},"location":"Left Ankle"},{"euler":{"heading":60.625,"pitch":-0.8125,"roll":14.3125},"location":"Right Ankle"},{"euler":{"heading":97.75,"pitch":-149.3125,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":-138.125,"roll":-46.875},"location":"Right Knee"},{"euler":{"heading":46.6875,"pitch":-143.125,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.636"} +{"sensors":[{"euler":{"heading":358.25,"pitch":126.5,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":106.9375,"pitch":109.1875,"roll":46.0625},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":2.0625,"roll":13.5},"location":"Right Ankle"},{"euler":{"heading":89.625,"pitch":-152.625,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":148.625,"pitch":-129.25,"roll":-38.4375},"location":"Right Knee"},{"euler":{"heading":49.3125,"pitch":-148.875,"roll":67.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.737"} +{"sensors":[{"euler":{"heading":6.75,"pitch":124.1875,"roll":21.875},"location":"Left Knee"},{"euler":{"heading":113.4375,"pitch":114.5625,"roll":53.6875},"location":"Left Ankle"},{"euler":{"heading":71.625,"pitch":3.3125,"roll":12.4375},"location":"Right Ankle"},{"euler":{"heading":85.0,"pitch":-154.3125,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":155.4375,"pitch":-133.9375,"roll":-39.75},"location":"Right Knee"},{"euler":{"heading":52.625,"pitch":-156.5,"roll":67.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.837"} +{"sensors":[{"euler":{"heading":20.25,"pitch":124.4375,"roll":10.0},"location":"Left Knee"},{"euler":{"heading":123.0625,"pitch":135.4375,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":61.9375,"pitch":2.8125,"roll":10.375},"location":"Right Ankle"},{"euler":{"heading":87.25,"pitch":-153.6875,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":168.6875,"pitch":-140.9375,"roll":-45.3125},"location":"Right Knee"},{"euler":{"heading":41.4375,"pitch":-138.375,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:16.938"} +{"sensors":[{"euler":{"heading":28.6875,"pitch":125.6875,"roll":7.1875},"location":"Left Knee"},{"euler":{"heading":123.875,"pitch":136.9375,"roll":66.0},"location":"Left Ankle"},{"euler":{"heading":58.6875,"pitch":1.75,"roll":8.875},"location":"Right Ankle"},{"euler":{"heading":83.3125,"pitch":-156.0625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":179.25,"pitch":-144.75,"roll":-51.75},"location":"Right Knee"},{"euler":{"heading":32.375,"pitch":-117.875,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.39"} +{"sensors":[{"euler":{"heading":6.6875,"pitch":134.5,"roll":18.8125},"location":"Left Knee"},{"euler":{"heading":106.1875,"pitch":106.5625,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":55.5,"pitch":1.3125,"roll":8.3125},"location":"Right Ankle"},{"euler":{"heading":85.8125,"pitch":-155.3125,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":185.0625,"pitch":-149.0,"roll":-55.8125},"location":"Right Knee"},{"euler":{"heading":25.9375,"pitch":-114.25,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.140"} +{"sensors":[{"euler":{"heading":328.1875,"pitch":147.875,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":75.4375,"pitch":99.625,"roll":28.8125},"location":"Left Ankle"},{"euler":{"heading":51.375,"pitch":1.6875,"roll":7.625},"location":"Right Ankle"},{"euler":{"heading":87.75,"pitch":-156.0,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":191.0625,"pitch":-156.125,"roll":-58.125},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-111.5625,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.240"} +{"sensors":[{"euler":{"heading":309.1875,"pitch":159.125,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":57.5625,"pitch":94.8125,"roll":10.0625},"location":"Left Ankle"},{"euler":{"heading":45.0625,"pitch":2.625,"roll":5.1875},"location":"Right Ankle"},{"euler":{"heading":90.0625,"pitch":-156.4375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":197.875,"pitch":-165.625,"roll":-60.8125},"location":"Right Knee"},{"euler":{"heading":30.3125,"pitch":-115.625,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.341"} +{"sensors":[{"euler":{"heading":319.3125,"pitch":155.9375,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":62.75,"pitch":100.6875,"roll":11.4375},"location":"Left Ankle"},{"euler":{"heading":37.8125,"pitch":1.3125,"roll":4.5},"location":"Right Ankle"},{"euler":{"heading":91.0,"pitch":-161.0625,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":203.3125,"pitch":-178.875,"roll":-62.125},"location":"Right Knee"},{"euler":{"heading":37.0625,"pitch":-119.375,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.442"} +{"sensors":[{"euler":{"heading":333.3125,"pitch":146.125,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":80.375,"pitch":105.1875,"roll":23.625},"location":"Left Ankle"},{"euler":{"heading":24.9375,"pitch":-5.625,"roll":3.9375},"location":"Right Ankle"},{"euler":{"heading":95.5,"pitch":-157.5,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":208.1875,"pitch":163.5625,"roll":-61.1875},"location":"Right Knee"},{"euler":{"heading":35.4375,"pitch":-119.5,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.543"} +{"sensors":[{"euler":{"heading":341.75,"pitch":138.6875,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":88.5625,"pitch":106.4375,"roll":28.3125},"location":"Left Ankle"},{"euler":{"heading":16.375,"pitch":-8.5625,"roll":3.125},"location":"Right Ankle"},{"euler":{"heading":101.875,"pitch":-149.75,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":210.1875,"pitch":160.8125,"roll":-59.5625},"location":"Right Knee"},{"euler":{"heading":40.25,"pitch":-123.625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.644"} +{"sensors":[{"euler":{"heading":343.6875,"pitch":135.125,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":91.0,"pitch":105.875,"roll":32.0},"location":"Left Ankle"},{"euler":{"heading":33.0625,"pitch":-8.0625,"roll":7.0},"location":"Right Ankle"},{"euler":{"heading":107.0,"pitch":-145.5,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":190.6875,"pitch":-168.6875,"roll":-60.3125},"location":"Right Knee"},{"euler":{"heading":42.75,"pitch":-131.8125,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.744"} +{"sensors":[{"euler":{"heading":348.5,"pitch":131.875,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":95.3125,"pitch":106.25,"roll":35.875},"location":"Left Ankle"},{"euler":{"heading":55.5,"pitch":-1.3125,"roll":10.4375},"location":"Right Ankle"},{"euler":{"heading":102.625,"pitch":-148.0625,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":166.6875,"pitch":-141.625,"roll":-49.625},"location":"Right Knee"},{"euler":{"heading":44.25,"pitch":-138.625,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.845"} +{"sensors":[{"euler":{"heading":355.1875,"pitch":127.5,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":100.625,"pitch":107.8125,"roll":40.625},"location":"Left Ankle"},{"euler":{"heading":72.0,"pitch":1.5625,"roll":13.3125},"location":"Right Ankle"},{"euler":{"heading":93.3125,"pitch":-150.9375,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":149.875,"pitch":-129.875,"roll":-39.3125},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-145.1875,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:17.946"} +{"sensors":[{"euler":{"heading":2.5625,"pitch":124.5,"roll":25.9375},"location":"Left Knee"},{"euler":{"heading":108.75,"pitch":111.75,"roll":46.5625},"location":"Left Ankle"},{"euler":{"heading":73.3125,"pitch":6.375,"roll":11.3125},"location":"Right Ankle"},{"euler":{"heading":84.8125,"pitch":-153.4375,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":152.3125,"pitch":-133.3125,"roll":-36.875},"location":"Right Knee"},{"euler":{"heading":49.875,"pitch":-153.625,"roll":67.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.46"} +{"sensors":[{"euler":{"heading":11.25,"pitch":125.9375,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":112.1875,"pitch":119.6875,"roll":57.25},"location":"Left Ankle"},{"euler":{"heading":62.0625,"pitch":6.5,"roll":10.0},"location":"Right Ankle"},{"euler":{"heading":83.5,"pitch":-154.125,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":168.3125,"pitch":-141.5625,"roll":-42.75},"location":"Right Knee"},{"euler":{"heading":46.6875,"pitch":-152.25,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.147"} +{"sensors":[{"euler":{"heading":28.375,"pitch":121.625,"roll":6.75},"location":"Left Knee"},{"euler":{"heading":130.8125,"pitch":143.8125,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":56.8125,"pitch":8.1875,"roll":8.1875},"location":"Right Ankle"},{"euler":{"heading":78.8125,"pitch":-155.5,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":182.8125,"pitch":-148.0,"roll":-48.125},"location":"Right Knee"},{"euler":{"heading":36.375,"pitch":-124.0625,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.247"} +{"sensors":[{"euler":{"heading":23.25,"pitch":131.0,"roll":10.8125},"location":"Left Knee"},{"euler":{"heading":114.4375,"pitch":113.6875,"roll":63.6875},"location":"Left Ankle"},{"euler":{"heading":53.0,"pitch":8.0625,"roll":6.9375},"location":"Right Ankle"},{"euler":{"heading":80.5625,"pitch":-155.125,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":190.75,"pitch":-152.125,"roll":-52.6875},"location":"Right Knee"},{"euler":{"heading":27.75,"pitch":-115.375,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.348"} +{"sensors":[{"euler":{"heading":349.75,"pitch":142.1875,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":88.625,"pitch":98.875,"roll":41.1875},"location":"Left Ankle"},{"euler":{"heading":49.6875,"pitch":7.875,"roll":6.375},"location":"Right Ankle"},{"euler":{"heading":84.125,"pitch":-154.1875,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":194.5,"pitch":-156.75,"roll":-55.5},"location":"Right Knee"},{"euler":{"heading":25.5,"pitch":-113.0625,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.448"} +{"sensors":[{"euler":{"heading":314.5625,"pitch":155.75,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":62.125,"pitch":95.9375,"roll":13.8125},"location":"Left Ankle"},{"euler":{"heading":44.375,"pitch":7.0625,"roll":6.0},"location":"Right Ankle"},{"euler":{"heading":86.8125,"pitch":-155.625,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":199.1875,"pitch":-163.4375,"roll":-58.5625},"location":"Right Knee"},{"euler":{"heading":28.4375,"pitch":-114.375,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.549"} +{"sensors":[{"euler":{"heading":313.3125,"pitch":159.4375,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":99.0,"roll":8.625},"location":"Left Ankle"},{"euler":{"heading":37.1875,"pitch":4.8125,"roll":5.1875},"location":"Right Ankle"},{"euler":{"heading":88.125,"pitch":-160.5,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":203.5625,"pitch":-173.8125,"roll":-61.25},"location":"Right Knee"},{"euler":{"heading":34.25,"pitch":-119.125,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.650"} +{"sensors":[{"euler":{"heading":331.1875,"pitch":149.0625,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":74.875,"pitch":104.3125,"roll":21.25},"location":"Left Ankle"},{"euler":{"heading":28.0625,"pitch":-2.1875,"roll":3.25},"location":"Right Ankle"},{"euler":{"heading":91.1875,"pitch":-161.9375,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":206.8125,"pitch":169.375,"roll":-63.8125},"location":"Right Knee"},{"euler":{"heading":36.3125,"pitch":-120.25,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.750"} +{"sensors":[{"euler":{"heading":342.0,"pitch":140.5625,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":84.875,"pitch":106.5,"roll":27.0},"location":"Left Ankle"},{"euler":{"heading":13.25,"pitch":-3.75,"roll":2.375},"location":"Right Ankle"},{"euler":{"heading":98.3125,"pitch":-153.0625,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":217.875,"pitch":155.0625,"roll":-58.125},"location":"Right Knee"},{"euler":{"heading":40.25,"pitch":-122.625,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.851"} +{"sensors":[{"euler":{"heading":347.5625,"pitch":134.875,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":91.6875,"pitch":107.375,"roll":31.4375},"location":"Left Ankle"},{"euler":{"heading":26.1875,"pitch":-4.375,"roll":6.5},"location":"Right Ankle"},{"euler":{"heading":101.5625,"pitch":-148.3125,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":202.5,"pitch":177.125,"roll":-58.9375},"location":"Right Knee"},{"euler":{"heading":42.8125,"pitch":-128.8125,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:18.951"} +{"sensors":[{"euler":{"heading":352.75,"pitch":130.25,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":102.4375,"pitch":109.9375,"roll":38.375},"location":"Left Ankle"},{"euler":{"heading":47.625,"pitch":-5.0,"roll":11.1875},"location":"Right Ankle"},{"euler":{"heading":103.0625,"pitch":-147.9375,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":174.5,"pitch":-147.875,"roll":-55.875},"location":"Right Knee"},{"euler":{"heading":46.8125,"pitch":-138.5,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.52"} +{"sensors":[{"euler":{"heading":359.5625,"pitch":125.75,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":107.1875,"pitch":111.6875,"roll":42.1875},"location":"Left Ankle"},{"euler":{"heading":66.875,"pitch":-0.125,"roll":13.9375},"location":"Right Ankle"},{"euler":{"heading":98.0625,"pitch":-150.6875,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":150.3125,"pitch":-130.9375,"roll":-42.1875},"location":"Right Knee"},{"euler":{"heading":50.0625,"pitch":-144.875,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.152"} +{"sensors":[{"euler":{"heading":6.375,"pitch":122.0625,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":113.9375,"pitch":115.5,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":76.6875,"pitch":2.75,"roll":12.8125},"location":"Right Ankle"},{"euler":{"heading":88.875,"pitch":-153.625,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":142.8125,"pitch":-129.625,"roll":-35.5625},"location":"Right Knee"},{"euler":{"heading":51.625,"pitch":-149.8125,"roll":67.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.253"} +{"sensors":[{"euler":{"heading":15.375,"pitch":120.375,"roll":18.5},"location":"Left Knee"},{"euler":{"heading":122.125,"pitch":124.3125,"roll":58.75},"location":"Left Ankle"},{"euler":{"heading":65.5625,"pitch":6.8125,"roll":11.8125},"location":"Right Ankle"},{"euler":{"heading":85.3125,"pitch":-154.875,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":-139.375,"roll":-41.0625},"location":"Right Knee"},{"euler":{"heading":51.9375,"pitch":-150.6875,"roll":68.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.354"} +{"sensors":[{"euler":{"heading":30.5,"pitch":119.3125,"roll":7.375},"location":"Left Knee"},{"euler":{"heading":137.75,"pitch":153.875,"roll":68.5625},"location":"Left Ankle"},{"euler":{"heading":57.5,"pitch":8.5,"roll":10.25},"location":"Right Ankle"},{"euler":{"heading":86.8125,"pitch":-153.75,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":190.75,"pitch":-145.6875,"roll":-46.4375},"location":"Right Knee"},{"euler":{"heading":40.1875,"pitch":-113.3125,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.455"} +{"sensors":[{"euler":{"heading":32.25,"pitch":125.0625,"roll":6.4375},"location":"Left Knee"},{"euler":{"heading":127.625,"pitch":133.25,"roll":69.125},"location":"Left Ankle"},{"euler":{"heading":53.6875,"pitch":9.0,"roll":8.5},"location":"Right Ankle"},{"euler":{"heading":84.3125,"pitch":-154.5,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":187.8125,"pitch":-151.3125,"roll":-51.0625},"location":"Right Knee"},{"euler":{"heading":29.5,"pitch":-114.8125,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.556"} +{"sensors":[{"euler":{"heading":7.0625,"pitch":135.625,"roll":19.9375},"location":"Left Knee"},{"euler":{"heading":100.0625,"pitch":106.5625,"roll":48.625},"location":"Left Ankle"},{"euler":{"heading":49.9375,"pitch":9.5625,"roll":7.4375},"location":"Right Ankle"},{"euler":{"heading":85.5625,"pitch":-153.5625,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":194.6875,"pitch":-156.75,"roll":-53.75},"location":"Right Knee"},{"euler":{"heading":24.0625,"pitch":-111.9375,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.656"} +{"sensors":[{"euler":{"heading":326.25,"pitch":150.0625,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":68.375,"pitch":99.0,"roll":21.875},"location":"Left Ankle"},{"euler":{"heading":45.25,"pitch":10.125,"roll":6.875},"location":"Right Ankle"},{"euler":{"heading":86.875,"pitch":-154.0,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":201.125,"pitch":-163.8125,"roll":-56.1875},"location":"Right Knee"},{"euler":{"heading":25.4375,"pitch":-111.75,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.757"} +{"sensors":[{"euler":{"heading":266.125,"pitch":159.3125,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":56.625,"pitch":96.0625,"roll":9.625},"location":"Left Ankle"},{"euler":{"heading":39.0,"pitch":8.625,"roll":6.375},"location":"Right Ankle"},{"euler":{"heading":88.1875,"pitch":-156.375,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":206.5,"pitch":-172.875,"roll":-59.375},"location":"Right Knee"},{"euler":{"heading":30.75,"pitch":-117.375,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.858"} +{"sensors":[{"euler":{"heading":326.3125,"pitch":151.375,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":70.6875,"pitch":101.875,"roll":17.3125},"location":"Left Ankle"},{"euler":{"heading":28.875,"pitch":0.875,"roll":4.125},"location":"Right Ankle"},{"euler":{"heading":90.625,"pitch":-159.625,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":208.0625,"pitch":172.8125,"roll":-63.125},"location":"Right Knee"},{"euler":{"heading":32.25,"pitch":-119.125,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:19.958"} +{"sensors":[{"euler":{"heading":338.0,"pitch":143.0,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":78.0,"pitch":102.75,"roll":25.1875},"location":"Left Ankle"},{"euler":{"heading":14.875,"pitch":-4.625,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":97.5,"pitch":-150.9375,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":215.625,"pitch":156.9375,"roll":-59.6875},"location":"Right Knee"},{"euler":{"heading":34.8125,"pitch":-121.1875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.59"} +{"sensors":[{"euler":{"heading":341.0625,"pitch":138.375,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":83.0625,"pitch":103.4375,"roll":28.625},"location":"Left Ankle"},{"euler":{"heading":20.8125,"pitch":-5.5,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":105.0625,"pitch":-146.25,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":202.1875,"pitch":172.875,"roll":-60.1875},"location":"Right Knee"},{"euler":{"heading":38.1875,"pitch":-129.3125,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.160"} +{"sensors":[{"euler":{"heading":346.8125,"pitch":133.4375,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":89.9375,"pitch":104.4375,"roll":32.9375},"location":"Left Ankle"},{"euler":{"heading":46.5,"pitch":-4.125,"roll":9.125},"location":"Right Ankle"},{"euler":{"heading":103.875,"pitch":-146.5625,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":-152.4375,"roll":-56.1875},"location":"Right Knee"},{"euler":{"heading":41.875,"pitch":-135.5,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.261"} +{"sensors":[{"euler":{"heading":355.25,"pitch":129.0625,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":96.1875,"pitch":107.1875,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":68.625,"pitch":2.125,"roll":10.0625},"location":"Right Ankle"},{"euler":{"heading":97.25,"pitch":-150.375,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":155.3125,"pitch":-134.5625,"roll":-43.0625},"location":"Right Knee"},{"euler":{"heading":43.4375,"pitch":-140.875,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.361"} +{"sensors":[{"euler":{"heading":2.375,"pitch":125.25,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":103.875,"pitch":110.9375,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":2.0625,"roll":12.4375},"location":"Right Ankle"},{"euler":{"heading":87.5625,"pitch":-154.0,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":146.1875,"pitch":-127.75,"roll":-36.8125},"location":"Right Knee"},{"euler":{"heading":46.5,"pitch":-146.875,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.462"} +{"sensors":[{"euler":{"heading":12.0625,"pitch":122.5625,"roll":19.8125},"location":"Left Knee"},{"euler":{"heading":112.625,"pitch":117.3125,"roll":52.3125},"location":"Left Ankle"},{"euler":{"heading":69.125,"pitch":4.6875,"roll":11.0625},"location":"Right Ankle"},{"euler":{"heading":84.875,"pitch":-155.0,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":157.8125,"pitch":-135.0,"roll":-40.25},"location":"Right Knee"},{"euler":{"heading":50.0625,"pitch":-150.8125,"roll":67.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.563"} +{"sensors":[{"euler":{"heading":26.5625,"pitch":123.875,"roll":7.875},"location":"Left Knee"},{"euler":{"heading":128.8125,"pitch":139.6875,"roll":66.5},"location":"Left Ankle"},{"euler":{"heading":61.8125,"pitch":3.625,"roll":9.125},"location":"Right Ankle"},{"euler":{"heading":84.25,"pitch":-155.5,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":170.5,"pitch":-140.5,"roll":-46.4375},"location":"Right Knee"},{"euler":{"heading":38.0625,"pitch":-136.625,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.664"} +{"sensors":[{"euler":{"heading":33.9375,"pitch":125.125,"roll":4.4375},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":136.75,"roll":70.9375},"location":"Left Ankle"},{"euler":{"heading":59.0,"pitch":3.9375,"roll":7.9375},"location":"Right Ankle"},{"euler":{"heading":80.5,"pitch":-157.5,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":179.6875,"pitch":-145.25,"roll":-51.0},"location":"Right Knee"},{"euler":{"heading":26.25,"pitch":-113.9375,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.764"} +{"sensors":[{"euler":{"heading":16.875,"pitch":132.875,"roll":15.0},"location":"Left Knee"},{"euler":{"heading":107.5625,"pitch":106.25,"roll":54.3125},"location":"Left Ankle"},{"euler":{"heading":54.6875,"pitch":2.875,"roll":6.125},"location":"Right Ankle"},{"euler":{"heading":84.25,"pitch":-156.125,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":185.25,"pitch":-149.0,"roll":-55.3125},"location":"Right Knee"},{"euler":{"heading":21.5625,"pitch":-112.5625,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.865"} +{"sensors":[{"euler":{"heading":331.6875,"pitch":147.1875,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":73.1875,"pitch":98.3125,"roll":25.75},"location":"Left Ankle"},{"euler":{"heading":50.75,"pitch":1.875,"roll":6.3125},"location":"Right Ankle"},{"euler":{"heading":86.625,"pitch":-157.4375,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":189.0,"pitch":-154.25,"roll":-58.1875},"location":"Right Knee"},{"euler":{"heading":23.0,"pitch":-111.6875,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:20.966"} +{"sensors":[{"euler":{"heading":310.9375,"pitch":158.5,"roll":41.75},"location":"Left Knee"},{"euler":{"heading":55.3125,"pitch":94.625,"roll":6.75},"location":"Left Ankle"},{"euler":{"heading":44.0625,"pitch":3.0,"roll":4.875},"location":"Right Ankle"},{"euler":{"heading":88.1875,"pitch":-159.875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":195.25,"pitch":-164.625,"roll":-61.0},"location":"Right Knee"},{"euler":{"heading":30.3125,"pitch":-116.3125,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.67"} +{"sensors":[{"euler":{"heading":321.5625,"pitch":155.5,"roll":40.875},"location":"Left Knee"},{"euler":{"heading":61.3125,"pitch":100.5625,"roll":9.3125},"location":"Left Ankle"},{"euler":{"heading":35.25,"pitch":0.125,"roll":2.1875},"location":"Right Ankle"},{"euler":{"heading":90.0,"pitch":-164.4375,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":200.25,"pitch":-178.4375,"roll":-63.125},"location":"Right Knee"},{"euler":{"heading":35.5625,"pitch":-118.8125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.168"} +{"sensors":[{"euler":{"heading":333.4375,"pitch":145.1875,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":78.1875,"pitch":102.875,"roll":23.125},"location":"Left Ankle"},{"euler":{"heading":18.375,"pitch":-5.4375,"roll":0.625},"location":"Right Ankle"},{"euler":{"heading":97.0625,"pitch":-157.5625,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":206.25,"pitch":162.0,"roll":-61.25},"location":"Right Knee"},{"euler":{"heading":34.0625,"pitch":-120.9375,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.269"} +{"sensors":[{"euler":{"heading":340.125,"pitch":139.0625,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":83.6875,"pitch":103.9375,"roll":26.1875},"location":"Left Ankle"},{"euler":{"heading":15.25,"pitch":-6.9375,"roll":1.8125},"location":"Right Ankle"},{"euler":{"heading":103.125,"pitch":-147.5625,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":208.0,"pitch":163.3125,"roll":-59.1875},"location":"Right Knee"},{"euler":{"heading":37.5,"pitch":-126.1875,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.369"} +{"sensors":[{"euler":{"heading":345.0,"pitch":134.25,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":90.4375,"pitch":105.25,"roll":30.9375},"location":"Left Ankle"},{"euler":{"heading":33.125,"pitch":-6.3125,"roll":6.0},"location":"Right Ankle"},{"euler":{"heading":108.4375,"pitch":-144.4375,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":190.6875,"pitch":-167.625,"roll":-59.875},"location":"Right Knee"},{"euler":{"heading":40.6875,"pitch":-132.5625,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.469"} +{"sensors":[{"euler":{"heading":353.5625,"pitch":128.6875,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":97.4375,"pitch":107.5625,"roll":34.875},"location":"Left Ankle"},{"euler":{"heading":52.0625,"pitch":-4.9375,"roll":11.75},"location":"Right Ankle"},{"euler":{"heading":104.4375,"pitch":-148.6875,"roll":44.875},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":-138.25,"roll":-49.0625},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-138.75,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.570"} +{"sensors":[{"euler":{"heading":0.25,"pitch":124.8125,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":104.4375,"pitch":109.6875,"roll":41.25},"location":"Left Ankle"},{"euler":{"heading":71.6875,"pitch":0.0,"roll":13.25},"location":"Right Ankle"},{"euler":{"heading":80.125,"pitch":-151.0625,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":146.75,"pitch":-127.0,"roll":-38.625},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-144.1875,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.671"} +{"sensors":[{"euler":{"heading":6.375,"pitch":122.25,"roll":25.0625},"location":"Left Knee"},{"euler":{"heading":110.875,"pitch":112.625,"roll":48.0625},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":6.25,"roll":11.4375},"location":"Right Ankle"},{"euler":{"heading":85.25,"pitch":-153.9375,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":148.75,"pitch":-133.75,"roll":-36.375},"location":"Right Knee"},{"euler":{"heading":49.4375,"pitch":-152.5625,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.772"} +{"sensors":[{"euler":{"heading":15.875,"pitch":123.875,"roll":13.6875},"location":"Left Knee"},{"euler":{"heading":114.75,"pitch":123.25,"roll":60.625},"location":"Left Ankle"},{"euler":{"heading":62.0625,"pitch":6.6875,"roll":10.1875},"location":"Right Ankle"},{"euler":{"heading":86.875,"pitch":-153.125,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":164.125,"pitch":-140.6875,"roll":-41.875},"location":"Right Knee"},{"euler":{"heading":44.125,"pitch":-144.5,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.873"} +{"sensors":[{"euler":{"heading":34.625,"pitch":119.5625,"roll":5.6875},"location":"Left Knee"},{"euler":{"heading":133.3125,"pitch":148.5,"roll":68.6875},"location":"Left Ankle"},{"euler":{"heading":57.1875,"pitch":7.5625,"roll":7.9375},"location":"Right Ankle"},{"euler":{"heading":81.6875,"pitch":-155.125,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":177.8125,"pitch":-146.0,"roll":-46.75},"location":"Right Knee"},{"euler":{"heading":33.75,"pitch":-116.5,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:21.974"} +{"sensors":[{"euler":{"heading":28.0625,"pitch":129.0625,"roll":9.875},"location":"Left Knee"},{"euler":{"heading":118.5625,"pitch":116.9375,"roll":61.375},"location":"Left Ankle"},{"euler":{"heading":54.0,"pitch":7.8125,"roll":6.6875},"location":"Right Ankle"},{"euler":{"heading":83.8125,"pitch":-154.1875,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":186.625,"pitch":-150.1875,"roll":-51.25},"location":"Right Knee"},{"euler":{"heading":24.3125,"pitch":-112.1875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.75"} +{"sensors":[{"euler":{"heading":247.4375,"pitch":158.75,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":83.8125,"pitch":101.6875,"roll":34.4375},"location":"Left Ankle"},{"euler":{"heading":51.75,"pitch":7.5625,"roll":6.0},"location":"Right Ankle"},{"euler":{"heading":87.4375,"pitch":-153.75,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":191.8125,"pitch":-155.0625,"roll":-54.375},"location":"Right Knee"},{"euler":{"heading":22.625,"pitch":-111.375,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.176"} +{"sensors":[{"euler":{"heading":316.375,"pitch":156.4375,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":59.3125,"pitch":96.6875,"roll":11.5625},"location":"Left Ankle"},{"euler":{"heading":45.9375,"pitch":7.75,"roll":5.0625},"location":"Right Ankle"},{"euler":{"heading":88.0,"pitch":-155.625,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":199.1875,"pitch":-163.3125,"roll":-57.625},"location":"Right Knee"},{"euler":{"heading":26.6875,"pitch":-114.25,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.276"} +{"sensors":[{"euler":{"heading":313.1875,"pitch":157.75,"roll":40.875},"location":"Left Knee"},{"euler":{"heading":60.8125,"pitch":99.125,"roll":10.8125},"location":"Left Ankle"},{"euler":{"heading":37.5625,"pitch":5.375,"roll":2.875},"location":"Right Ankle"},{"euler":{"heading":89.0625,"pitch":-160.125,"roll":67.8125},"location":"Right Hip"},{"euler":{"heading":203.6875,"pitch":-174.0625,"roll":-61.0},"location":"Right Knee"},{"euler":{"heading":32.125,"pitch":-119.125,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.377"} +{"sensors":[{"euler":{"heading":331.4375,"pitch":147.375,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":76.375,"pitch":103.3125,"roll":22.0625},"location":"Left Ankle"},{"euler":{"heading":26.4375,"pitch":-1.5625,"roll":2.75},"location":"Right Ankle"},{"euler":{"heading":93.25,"pitch":-158.4375,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":206.5625,"pitch":169.0625,"roll":-62.8125},"location":"Right Knee"},{"euler":{"heading":32.1875,"pitch":-118.8125,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.478"} +{"sensors":[{"euler":{"heading":341.4375,"pitch":140.0625,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":85.1875,"pitch":105.4375,"roll":27.125},"location":"Left Ankle"},{"euler":{"heading":13.25,"pitch":-8.3125,"roll":0.6875},"location":"Right Ankle"},{"euler":{"heading":100.0625,"pitch":-150.4375,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":207.875,"pitch":159.5,"roll":-61.8125},"location":"Right Knee"},{"euler":{"heading":35.6875,"pitch":-123.25,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.578"} +{"sensors":[{"euler":{"heading":347.0,"pitch":134.4375,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":106.9375,"roll":32.125},"location":"Left Ankle"},{"euler":{"heading":26.3125,"pitch":-8.5,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":106.625,"pitch":-146.0625,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":192.3125,"pitch":-175.5,"roll":-61.75},"location":"Right Knee"},{"euler":{"heading":40.6875,"pitch":-130.25,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.678"} +{"sensors":[{"euler":{"heading":354.0625,"pitch":129.4375,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":98.4375,"pitch":109.125,"roll":35.4375},"location":"Left Ankle"},{"euler":{"heading":49.0,"pitch":-7.0625,"roll":11.1875},"location":"Right Ankle"},{"euler":{"heading":105.375,"pitch":-147.5625,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":164.25,"pitch":-141.9375,"roll":-52.0625},"location":"Right Knee"},{"euler":{"heading":43.8125,"pitch":-138.0,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.779"} +{"sensors":[{"euler":{"heading":1.875,"pitch":125.875,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":102.875,"pitch":110.875,"roll":39.6875},"location":"Left Ankle"},{"euler":{"heading":69.0,"pitch":-0.75,"roll":14.25},"location":"Right Ankle"},{"euler":{"heading":95.6875,"pitch":-152.3125,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":144.5625,"pitch":-128.5625,"roll":-38.375},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-143.25,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.880"} +{"sensors":[{"euler":{"heading":8.1875,"pitch":123.4375,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":109.875,"pitch":114.125,"roll":46.6875},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":2.8125,"roll":12.0625},"location":"Right Ankle"},{"euler":{"heading":85.75,"pitch":-155.4375,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":142.9375,"pitch":-129.3125,"roll":-35.0625},"location":"Right Knee"},{"euler":{"heading":49.125,"pitch":-150.125,"roll":66.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:22.980"} +{"sensors":[{"euler":{"heading":19.6875,"pitch":121.375,"roll":14.4375},"location":"Left Knee"},{"euler":{"heading":116.25,"pitch":123.3125,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":64.625,"pitch":4.8125,"roll":10.625},"location":"Right Ankle"},{"euler":{"heading":85.8125,"pitch":-155.875,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":174.75,"pitch":-137.875,"roll":-40.4375},"location":"Right Knee"},{"euler":{"heading":48.375,"pitch":-145.6875,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.81"} +{"sensors":[{"euler":{"heading":35.1875,"pitch":121.5625,"roll":5.125},"location":"Left Knee"},{"euler":{"heading":137.5,"pitch":153.0625,"roll":69.0},"location":"Left Ankle"},{"euler":{"heading":59.1875,"pitch":5.8125,"roll":8.9375},"location":"Right Ankle"},{"euler":{"heading":82.0625,"pitch":-157.125,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":175.0,"pitch":-143.3125,"roll":-46.25},"location":"Right Knee"},{"euler":{"heading":32.625,"pitch":-117.3125,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.182"} +{"sensors":[{"euler":{"heading":26.4375,"pitch":129.1875,"roll":10.5},"location":"Left Knee"},{"euler":{"heading":117.5,"pitch":114.5,"roll":61.6875},"location":"Left Ankle"},{"euler":{"heading":56.25,"pitch":5.8125,"roll":7.375},"location":"Right Ankle"},{"euler":{"heading":84.125,"pitch":-156.1875,"roll":62.75},"location":"Right Hip"},{"euler":{"heading":184.0,"pitch":-147.875,"roll":-50.75},"location":"Right Knee"},{"euler":{"heading":23.375,"pitch":-112.125,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.282"} +{"sensors":[{"euler":{"heading":342.6875,"pitch":143.5625,"roll":28.75},"location":"Left Knee"},{"euler":{"heading":82.3125,"pitch":98.0,"roll":34.3125},"location":"Left Ankle"},{"euler":{"heading":52.6875,"pitch":6.0,"roll":6.75},"location":"Right Ankle"},{"euler":{"heading":87.6875,"pitch":-154.5625,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":189.1875,"pitch":-153.0625,"roll":-53.875},"location":"Right Knee"},{"euler":{"heading":23.0625,"pitch":-110.0,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.383"} +{"sensors":[{"euler":{"heading":314.0,"pitch":156.3125,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":59.0625,"pitch":95.125,"roll":11.0},"location":"Left Ankle"},{"euler":{"heading":46.625,"pitch":6.1875,"roll":5.0},"location":"Right Ankle"},{"euler":{"heading":90.5,"pitch":-155.75,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":195.3125,"pitch":-160.3125,"roll":-57.5625},"location":"Right Knee"},{"euler":{"heading":27.875,"pitch":-114.5,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.483"} +{"sensors":[{"euler":{"heading":318.0,"pitch":157.6875,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":60.0625,"pitch":99.75,"roll":9.5625},"location":"Left Ankle"},{"euler":{"heading":38.0625,"pitch":4.5625,"roll":2.9375},"location":"Right Ankle"},{"euler":{"heading":92.6875,"pitch":-158.4375,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":199.625,"pitch":-171.4375,"roll":-61.0625},"location":"Right Knee"},{"euler":{"heading":32.4375,"pitch":-119.0625,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.584"} +{"sensors":[{"euler":{"heading":330.375,"pitch":148.3125,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":73.5625,"pitch":101.125,"roll":20.5},"location":"Left Ankle"},{"euler":{"heading":26.625,"pitch":-5.125,"roll":2.6875},"location":"Right Ankle"},{"euler":{"heading":99.1875,"pitch":-155.3125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":200.25,"pitch":171.625,"roll":-63.6875},"location":"Right Knee"},{"euler":{"heading":32.375,"pitch":-119.4375,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.684"} +{"sensors":[{"euler":{"heading":338.9375,"pitch":141.4375,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":80.4375,"pitch":101.875,"roll":25.625},"location":"Left Ankle"},{"euler":{"heading":18.125,"pitch":-7.3125,"roll":2.5},"location":"Right Ankle"},{"euler":{"heading":105.4375,"pitch":-147.625,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":205.9375,"pitch":165.9375,"roll":-61.0625},"location":"Right Knee"},{"euler":{"heading":35.8125,"pitch":-124.625,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.785"} +{"sensors":[{"euler":{"heading":341.1875,"pitch":138.125,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":85.1875,"pitch":102.0625,"roll":30.125},"location":"Left Ankle"},{"euler":{"heading":34.5625,"pitch":-5.1875,"roll":5.625},"location":"Right Ankle"},{"euler":{"heading":108.75,"pitch":-145.625,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":189.6875,"pitch":-166.6875,"roll":-60.125},"location":"Right Knee"},{"euler":{"heading":37.5625,"pitch":-130.5625,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.885"} +{"sensors":[{"euler":{"heading":348.0625,"pitch":133.3125,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":90.0,"pitch":103.5625,"roll":33.9375},"location":"Left Ankle"},{"euler":{"heading":56.3125,"pitch":-2.5,"roll":14.1875},"location":"Right Ankle"},{"euler":{"heading":102.0,"pitch":-148.875,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":162.3125,"pitch":-138.625,"roll":-49.75},"location":"Right Knee"},{"euler":{"heading":40.75,"pitch":-135.625,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:23.986"} +{"sensors":[{"euler":{"heading":355.3125,"pitch":129.625,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":104.9375,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":1.4375,"roll":12.875},"location":"Right Ankle"},{"euler":{"heading":94.1875,"pitch":-152.4375,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":144.8125,"pitch":-126.9375,"roll":-37.75},"location":"Right Knee"},{"euler":{"heading":43.125,"pitch":-140.75,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.86"} +{"sensors":[{"euler":{"heading":3.0625,"pitch":126.75,"roll":24.1875},"location":"Left Knee"},{"euler":{"heading":102.625,"pitch":108.1875,"roll":46.0625},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":3.1875,"roll":10.75},"location":"Right Ankle"},{"euler":{"heading":86.125,"pitch":-154.75,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":143.375,"pitch":-125.5625,"roll":-35.1875},"location":"Right Knee"},{"euler":{"heading":46.3125,"pitch":-148.875,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.186"} +{"sensors":[{"euler":{"heading":14.25,"pitch":126.0625,"roll":14.125},"location":"Left Knee"},{"euler":{"heading":111.25,"pitch":118.0,"roll":58.5625},"location":"Left Ankle"},{"euler":{"heading":67.125,"pitch":4.6875,"roll":8.4375},"location":"Right Ankle"},{"euler":{"heading":89.625,"pitch":-153.1875,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":159.0,"pitch":-135.8125,"roll":-40.75},"location":"Right Knee"},{"euler":{"heading":45.0625,"pitch":-146.0625,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.287"} +{"sensors":[{"euler":{"heading":31.375,"pitch":122.75,"roll":6.5},"location":"Left Knee"},{"euler":{"heading":123.1875,"pitch":137.375,"roll":66.3125},"location":"Left Ankle"},{"euler":{"heading":63.875,"pitch":4.0625,"roll":7.1875},"location":"Right Ankle"},{"euler":{"heading":85.3125,"pitch":-155.1875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":170.75,"pitch":-138.4375,"roll":-47.5},"location":"Right Knee"},{"euler":{"heading":30.4375,"pitch":-117.875,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.387"} +{"sensors":[{"euler":{"heading":25.9375,"pitch":131.625,"roll":10.4375},"location":"Left Knee"},{"euler":{"heading":114.375,"pitch":112.0625,"roll":60.3125},"location":"Left Ankle"},{"euler":{"heading":61.875,"pitch":4.6875,"roll":5.4375},"location":"Right Ankle"},{"euler":{"heading":88.875,"pitch":-153.0,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":-143.125,"roll":-51.375},"location":"Right Knee"},{"euler":{"heading":23.375,"pitch":-112.5625,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.488"} +{"sensors":[{"euler":{"heading":247.375,"pitch":145.0625,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":83.4375,"pitch":97.9375,"roll":34.125},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":5.125,"roll":5.875},"location":"Right Ankle"},{"euler":{"heading":89.9375,"pitch":-152.8125,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":185.1875,"pitch":-149.1875,"roll":-54.3125},"location":"Right Knee"},{"euler":{"heading":22.375,"pitch":-109.5625,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.588"} +{"sensors":[{"euler":{"heading":310.75,"pitch":157.8125,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":58.8125,"pitch":94.6875,"roll":11.0625},"location":"Left Ankle"},{"euler":{"heading":51.875,"pitch":5.875,"roll":4.8125},"location":"Right Ankle"},{"euler":{"heading":91.0625,"pitch":-153.9375,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":192.875,"pitch":-157.0,"roll":-57.9375},"location":"Right Knee"},{"euler":{"heading":25.875,"pitch":-112.875,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.688"} +{"sensors":[{"euler":{"heading":317.125,"pitch":157.25,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":60.5,"pitch":100.125,"roll":10.3125},"location":"Left Ankle"},{"euler":{"heading":43.8125,"pitch":4.625,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":92.1875,"pitch":-157.9375,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":195.8125,"pitch":-165.0,"roll":-60.875},"location":"Right Knee"},{"euler":{"heading":32.25,"pitch":-118.75,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.789"} +{"sensors":[{"euler":{"heading":332.875,"pitch":146.75,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":75.625,"pitch":103.0,"roll":21.1875},"location":"Left Ankle"},{"euler":{"heading":33.5625,"pitch":-2.6875,"roll":1.5625},"location":"Right Ankle"},{"euler":{"heading":96.1875,"pitch":-158.1875,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":197.875,"pitch":179.3125,"roll":-64.0625},"location":"Right Knee"},{"euler":{"heading":34.25,"pitch":-120.5,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.890"} +{"sensors":[{"euler":{"heading":343.5625,"pitch":138.875,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":86.0625,"pitch":106.0625,"roll":26.75},"location":"Left Ankle"},{"euler":{"heading":19.125,"pitch":-8.5,"roll":0.875},"location":"Right Ankle"},{"euler":{"heading":104.1875,"pitch":-149.25,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":202.5625,"pitch":165.8125,"roll":-63.25},"location":"Right Knee"},{"euler":{"heading":38.125,"pitch":-122.375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:24.990"} +{"sensors":[{"euler":{"heading":346.375,"pitch":135.25,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":90.75,"pitch":106.375,"roll":32.625},"location":"Left Ankle"},{"euler":{"heading":29.125,"pitch":-8.4375,"roll":2.9375},"location":"Right Ankle"},{"euler":{"heading":113.1875,"pitch":-145.25,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":186.4375,"pitch":-169.9375,"roll":-62.8125},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-130.875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.91"} +{"sensors":[{"euler":{"heading":350.8125,"pitch":131.875,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":95.0625,"pitch":107.0,"roll":36.25},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-6.9375,"roll":10.625},"location":"Right Ankle"},{"euler":{"heading":111.4375,"pitch":-147.1875,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":158.3125,"pitch":-137.4375,"roll":-51.3125},"location":"Right Knee"},{"euler":{"heading":41.875,"pitch":-137.1875,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.191"} +{"sensors":[{"euler":{"heading":359.4375,"pitch":126.875,"roll":31.0},"location":"Left Knee"},{"euler":{"heading":102.6875,"pitch":110.1875,"roll":40.6875},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":0.75,"roll":13.125},"location":"Right Ankle"},{"euler":{"heading":101.5625,"pitch":-150.0625,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":141.6875,"pitch":-127.625,"roll":-36.9375},"location":"Right Knee"},{"euler":{"heading":44.4375,"pitch":-141.25,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.291"} +{"sensors":[{"euler":{"heading":5.8125,"pitch":124.25,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":109.5625,"pitch":113.0,"roll":47.1875},"location":"Left Ankle"},{"euler":{"heading":78.875,"pitch":2.5,"roll":11.5625},"location":"Right Ankle"},{"euler":{"heading":89.375,"pitch":-154.1875,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":137.0625,"pitch":-125.4375,"roll":-32.1875},"location":"Right Knee"},{"euler":{"heading":46.5,"pitch":-147.9375,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.392"} +{"sensors":[{"euler":{"heading":16.4375,"pitch":123.1875,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":115.375,"pitch":120.0625,"roll":57.75},"location":"Left Ankle"},{"euler":{"heading":68.6875,"pitch":3.4375,"roll":9.5},"location":"Right Ankle"},{"euler":{"heading":86.875,"pitch":-155.5625,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":151.25,"pitch":-132.625,"roll":-37.375},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-147.6875,"roll":66.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.493"} +{"sensors":[{"euler":{"heading":32.875,"pitch":121.25,"roll":6.625},"location":"Left Knee"},{"euler":{"heading":127.875,"pitch":140.1875,"roll":65.9375},"location":"Left Ankle"},{"euler":{"heading":62.875,"pitch":2.6875,"roll":8.0625},"location":"Right Ankle"},{"euler":{"heading":85.125,"pitch":-156.375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":-136.375,"roll":-44.3125},"location":"Right Knee"},{"euler":{"heading":33.75,"pitch":-124.0625,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.593"} +{"sensors":[{"euler":{"heading":28.3125,"pitch":128.25,"roll":9.4375},"location":"Left Knee"},{"euler":{"heading":117.75,"pitch":116.9375,"roll":62.375},"location":"Left Ankle"},{"euler":{"heading":60.0625,"pitch":3.3125,"roll":6.375},"location":"Right Ankle"},{"euler":{"heading":85.625,"pitch":-156.4375,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":173.875,"pitch":-141.0625,"roll":-49.0625},"location":"Right Knee"},{"euler":{"heading":26.125,"pitch":-113.8125,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.693"} +{"sensors":[{"euler":{"heading":349.4375,"pitch":141.0,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":88.375,"pitch":98.5625,"roll":40.1875},"location":"Left Ankle"},{"euler":{"heading":58.0625,"pitch":4.4375,"roll":5.875},"location":"Right Ankle"},{"euler":{"heading":87.9375,"pitch":-154.5,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":180.5625,"pitch":-145.875,"roll":-52.3125},"location":"Right Knee"},{"euler":{"heading":22.625,"pitch":-111.125,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.794"} +{"sensors":[{"euler":{"heading":315.625,"pitch":154.4375,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":60.375,"pitch":93.4375,"roll":14.0},"location":"Left Ankle"},{"euler":{"heading":52.9375,"pitch":4.3125,"roll":5.0625},"location":"Right Ankle"},{"euler":{"heading":89.5,"pitch":-156.5625,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":186.8125,"pitch":-151.6875,"roll":-56.125},"location":"Right Knee"},{"euler":{"heading":24.9375,"pitch":-112.4375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.895"} +{"sensors":[{"euler":{"heading":308.125,"pitch":160.5,"roll":42.125},"location":"Left Knee"},{"euler":{"heading":56.75,"pitch":94.3125,"roll":8.0},"location":"Left Ankle"},{"euler":{"heading":45.8125,"pitch":3.25,"roll":3.5},"location":"Right Ankle"},{"euler":{"heading":91.375,"pitch":-161.0,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":190.25,"pitch":-158.75,"roll":-60.0625},"location":"Right Knee"},{"euler":{"heading":31.875,"pitch":-118.375,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:25.996"} +{"sensors":[{"euler":{"heading":328.1875,"pitch":150.75,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":72.125,"pitch":100.25,"roll":19.4375},"location":"Left Ankle"},{"euler":{"heading":35.875,"pitch":-1.75,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":95.8125,"pitch":-161.0,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":193.6875,"pitch":-173.4375,"roll":-64.9375},"location":"Right Knee"},{"euler":{"heading":34.5,"pitch":-120.75,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.96"} +{"sensors":[{"euler":{"heading":337.3125,"pitch":142.6875,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":80.1875,"pitch":101.6875,"roll":24.8125},"location":"Left Ankle"},{"euler":{"heading":18.25,"pitch":-4.75,"roll":-0.6875},"location":"Right Ankle"},{"euler":{"heading":103.0,"pitch":-150.4375,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":204.0,"pitch":167.25,"roll":-62.0625},"location":"Right Knee"},{"euler":{"heading":35.5,"pitch":-121.4375,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.197"} +{"sensors":[{"euler":{"heading":339.75,"pitch":138.0625,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":83.9375,"pitch":101.875,"roll":28.9375},"location":"Left Ankle"},{"euler":{"heading":26.125,"pitch":-4.5625,"roll":2.5},"location":"Right Ankle"},{"euler":{"heading":108.4375,"pitch":-146.625,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":191.875,"pitch":-175.125,"roll":-61.8125},"location":"Right Knee"},{"euler":{"heading":37.4375,"pitch":-129.0,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.298"} +{"sensors":[{"euler":{"heading":345.6875,"pitch":133.4375,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":91.25,"pitch":103.6875,"roll":33.875},"location":"Left Ankle"},{"euler":{"heading":46.0625,"pitch":-6.1875,"roll":9.0},"location":"Right Ankle"},{"euler":{"heading":105.9375,"pitch":-146.6875,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":164.0625,"pitch":-140.8125,"roll":-53.125},"location":"Right Knee"},{"euler":{"heading":40.375,"pitch":-136.4375,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.398"} +{"sensors":[{"euler":{"heading":353.8125,"pitch":129.8125,"roll":31.0},"location":"Left Knee"},{"euler":{"heading":95.5625,"pitch":104.9375,"roll":38.3125},"location":"Left Ankle"},{"euler":{"heading":68.0625,"pitch":-0.5625,"roll":12.25},"location":"Right Ankle"},{"euler":{"heading":96.5,"pitch":-151.3125,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":143.625,"pitch":-127.25,"roll":-38.375},"location":"Right Knee"},{"euler":{"heading":41.5,"pitch":-140.4375,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.499"} +{"sensors":[{"euler":{"heading":1.6875,"pitch":126.5,"roll":26.125},"location":"Left Knee"},{"euler":{"heading":102.875,"pitch":107.75,"roll":44.9375},"location":"Left Ankle"},{"euler":{"heading":79.3125,"pitch":1.5625,"roll":10.8125},"location":"Right Ankle"},{"euler":{"heading":88.0,"pitch":-154.1875,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":138.0,"pitch":-124.1875,"roll":-32.625},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-145.0625,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.599"} +{"sensors":[{"euler":{"heading":11.875,"pitch":124.8125,"roll":17.3125},"location":"Left Knee"},{"euler":{"heading":109.875,"pitch":113.6875,"roll":56.0},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":4.8125,"roll":9.3125},"location":"Right Ankle"},{"euler":{"heading":86.5625,"pitch":-154.8125,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":152.3125,"pitch":-133.4375,"roll":-37.0},"location":"Right Knee"},{"euler":{"heading":46.625,"pitch":-148.3125,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.700"} +{"sensors":[{"euler":{"heading":28.5625,"pitch":123.625,"roll":7.125},"location":"Left Knee"},{"euler":{"heading":121.25,"pitch":133.9375,"roll":65.875},"location":"Left Ankle"},{"euler":{"heading":62.8125,"pitch":3.75,"roll":7.6875},"location":"Right Ankle"},{"euler":{"heading":86.3125,"pitch":-155.4375,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":165.8125,"pitch":-137.0,"roll":-44.3125},"location":"Right Knee"},{"euler":{"heading":33.25,"pitch":-127.0625,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.801"} +{"sensors":[{"euler":{"heading":28.6875,"pitch":128.4375,"roll":8.375},"location":"Left Knee"},{"euler":{"heading":116.0625,"pitch":115.3125,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":60.25,"pitch":2.5,"roll":6.5},"location":"Right Ankle"},{"euler":{"heading":87.125,"pitch":-155.0,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":172.9375,"pitch":-139.625,"roll":-49.8125},"location":"Right Knee"},{"euler":{"heading":27.1875,"pitch":-113.8125,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:26.902"} +{"sensors":[{"euler":{"heading":358.1875,"pitch":138.625,"roll":23.0},"location":"Left Knee"},{"euler":{"heading":91.9375,"pitch":100.75,"roll":41.875},"location":"Left Ankle"},{"euler":{"heading":57.875,"pitch":0.9375,"roll":5.9375},"location":"Right Ankle"},{"euler":{"heading":89.0625,"pitch":-155.6875,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":176.0625,"pitch":-141.75,"roll":-53.5},"location":"Right Knee"},{"euler":{"heading":24.4375,"pitch":-112.5,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.2"} +{"sensors":[{"euler":{"heading":322.6875,"pitch":151.875,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":64.0625,"pitch":95.875,"roll":17.625},"location":"Left Ankle"},{"euler":{"heading":53.0,"pitch":1.25,"roll":5.0625},"location":"Right Ankle"},{"euler":{"heading":90.625,"pitch":-157.25,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":181.5,"pitch":-148.1875,"roll":-56.375},"location":"Right Knee"},{"euler":{"heading":25.6875,"pitch":-112.125,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.103"} +{"sensors":[{"euler":{"heading":313.875,"pitch":158.625,"roll":41.5625},"location":"Left Knee"},{"euler":{"heading":57.75,"pitch":97.0,"roll":8.25},"location":"Left Ankle"},{"euler":{"heading":45.6875,"pitch":1.9375,"roll":3.0625},"location":"Right Ankle"},{"euler":{"heading":91.9375,"pitch":-158.75,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":187.75,"pitch":-156.6875,"roll":-59.9375},"location":"Right Knee"},{"euler":{"heading":32.4375,"pitch":-117.9375,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.203"} +{"sensors":[{"euler":{"heading":332.25,"pitch":148.8125,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":103.4375,"roll":18.625},"location":"Left Ankle"},{"euler":{"heading":36.25,"pitch":-2.9375,"roll":1.125},"location":"Right Ankle"},{"euler":{"heading":95.9375,"pitch":-160.25,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":191.9375,"pitch":-171.375,"roll":-64.25},"location":"Right Knee"},{"euler":{"heading":34.8125,"pitch":-119.6875,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.303"} +{"sensors":[{"euler":{"heading":341.9375,"pitch":140.5625,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":81.6875,"pitch":105.0625,"roll":25.0},"location":"Left Ankle"},{"euler":{"heading":19.4375,"pitch":-6.0,"roll":-1.1875},"location":"Right Ankle"},{"euler":{"heading":103.5625,"pitch":-149.75,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":202.375,"pitch":167.6875,"roll":-62.6875},"location":"Right Knee"},{"euler":{"heading":37.5,"pitch":-122.875,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.404"} +{"sensors":[{"euler":{"heading":345.4375,"pitch":136.125,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":88.25,"pitch":105.4375,"roll":29.4375},"location":"Left Ankle"},{"euler":{"heading":26.4375,"pitch":-6.875,"roll":2.0},"location":"Right Ankle"},{"euler":{"heading":107.75,"pitch":-146.25,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":193.5,"pitch":-175.8125,"roll":-63.25},"location":"Right Knee"},{"euler":{"heading":40.625,"pitch":-131.25,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.505"} +{"sensors":[{"euler":{"heading":351.8125,"pitch":131.125,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":93.125,"pitch":106.5625,"roll":33.0},"location":"Left Ankle"},{"euler":{"heading":48.125,"pitch":-6.875,"roll":8.4375},"location":"Right Ankle"},{"euler":{"heading":106.375,"pitch":-147.5625,"roll":46.0},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":-141.1875,"roll":-57.0625},"location":"Right Knee"},{"euler":{"heading":43.6875,"pitch":-138.1875,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.606"} +{"sensors":[{"euler":{"heading":358.875,"pitch":127.25,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":98.0625,"pitch":108.125,"roll":37.0},"location":"Left Ankle"},{"euler":{"heading":69.25,"pitch":-1.6875,"roll":12.4375},"location":"Right Ankle"},{"euler":{"heading":99.125,"pitch":-150.75,"roll":46.0},"location":"Right Hip"},{"euler":{"heading":144.1875,"pitch":-127.6875,"roll":-39.25},"location":"Right Knee"},{"euler":{"heading":45.8125,"pitch":-143.125,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.706"} +{"sensors":[{"euler":{"heading":4.4375,"pitch":125.0625,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":103.4375,"pitch":109.75,"roll":42.75},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":1.375,"roll":11.4375},"location":"Right Ankle"},{"euler":{"heading":88.6875,"pitch":-153.875,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":134.1875,"pitch":-124.9375,"roll":-32.0},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-150.25,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.807"} +{"sensors":[{"euler":{"heading":11.625,"pitch":124.25,"roll":18.75},"location":"Left Knee"},{"euler":{"heading":110.3125,"pitch":115.0,"roll":52.75},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":6.5,"roll":9.4375},"location":"Right Ankle"},{"euler":{"heading":85.9375,"pitch":-155.1875,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":149.5,"pitch":-134.4375,"roll":-36.625},"location":"Right Knee"},{"euler":{"heading":47.3125,"pitch":-151.0,"roll":67.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:27.907"} +{"sensors":[{"euler":{"heading":29.375,"pitch":122.75,"roll":7.5},"location":"Left Knee"},{"euler":{"heading":132.5625,"pitch":142.0625,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":62.5625,"pitch":7.1875,"roll":7.5625},"location":"Right Ankle"},{"euler":{"heading":84.5,"pitch":-155.0625,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":164.3125,"pitch":-139.5625,"roll":-42.875},"location":"Right Knee"},{"euler":{"heading":33.25,"pitch":-124.8125,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.8"} +{"sensors":[{"euler":{"heading":32.8125,"pitch":126.5625,"roll":6.9375},"location":"Left Knee"},{"euler":{"heading":123.8125,"pitch":123.9375,"roll":66.5625},"location":"Left Ankle"},{"euler":{"heading":60.8125,"pitch":6.875,"roll":6.0625},"location":"Right Ankle"},{"euler":{"heading":84.125,"pitch":-155.3125,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":174.8125,"pitch":-143.5,"roll":-47.6875},"location":"Right Knee"},{"euler":{"heading":23.9375,"pitch":-112.3125,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.109"} +{"sensors":[{"euler":{"heading":1.875,"pitch":138.25,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":94.0,"pitch":99.9375,"roll":45.1875},"location":"Left Ankle"},{"euler":{"heading":58.1875,"pitch":7.1875,"roll":5.5},"location":"Right Ankle"},{"euler":{"heading":85.5,"pitch":-155.0625,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":180.0,"pitch":-146.9375,"roll":-51.125},"location":"Right Knee"},{"euler":{"heading":21.5,"pitch":-110.4375,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.210"} +{"sensors":[{"euler":{"heading":257.125,"pitch":150.8125,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":64.5,"pitch":96.1875,"roll":18.75},"location":"Left Ankle"},{"euler":{"heading":53.5625,"pitch":7.5625,"roll":5.0},"location":"Right Ankle"},{"euler":{"heading":88.5,"pitch":-155.4375,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":186.5,"pitch":-152.8125,"roll":-54.125},"location":"Right Knee"},{"euler":{"heading":22.875,"pitch":-110.8125,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.311"} +{"sensors":[{"euler":{"heading":266.125,"pitch":156.9375,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":55.6875,"pitch":95.125,"roll":8.625},"location":"Left Ankle"},{"euler":{"heading":46.5,"pitch":7.125,"roll":3.75},"location":"Right Ankle"},{"euler":{"heading":90.375,"pitch":-156.625,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":192.625,"pitch":-160.75,"roll":-58.0},"location":"Right Knee"},{"euler":{"heading":29.4375,"pitch":-117.3125,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.412"} +{"sensors":[{"euler":{"heading":334.5,"pitch":147.75,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":72.25,"pitch":101.125,"roll":17.8125},"location":"Left Ankle"},{"euler":{"heading":37.8125,"pitch":2.375,"roll":1.3125},"location":"Right Ankle"},{"euler":{"heading":93.875,"pitch":-157.5625,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":196.3125,"pitch":-173.9375,"roll":-62.5},"location":"Right Knee"},{"euler":{"heading":32.3125,"pitch":-121.1875,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.513"} +{"sensors":[{"euler":{"heading":344.0625,"pitch":139.8125,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":80.625,"pitch":103.875,"roll":25.25},"location":"Left Ankle"},{"euler":{"heading":20.3125,"pitch":-3.1875,"roll":-0.5},"location":"Right Ankle"},{"euler":{"heading":100.3125,"pitch":-150.9375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":202.125,"pitch":168.6875,"roll":-62.25},"location":"Right Knee"},{"euler":{"heading":34.25,"pitch":-122.6875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.614"} +{"sensors":[{"euler":{"heading":351.25,"pitch":133.75,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":94.875,"pitch":106.75,"roll":33.3125},"location":"Left Ankle"},{"euler":{"heading":27.8125,"pitch":-5.875,"roll":1.375},"location":"Right Ankle"},{"euler":{"heading":106.0,"pitch":-147.0625,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":190.8125,"pitch":-174.5625,"roll":-62.6875},"location":"Right Knee"},{"euler":{"heading":39.1875,"pitch":-129.0,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.714"} +{"sensors":[{"euler":{"heading":356.0625,"pitch":129.875,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":97.0625,"pitch":107.1875,"roll":36.4375},"location":"Left Ankle"},{"euler":{"heading":49.6875,"pitch":-6.4375,"roll":6.8125},"location":"Right Ankle"},{"euler":{"heading":105.875,"pitch":-148.375,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":165.3125,"pitch":-140.5,"roll":-55.375},"location":"Right Knee"},{"euler":{"heading":42.9375,"pitch":-138.0,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.815"} +{"sensors":[{"euler":{"heading":2.1875,"pitch":126.5625,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":101.5,"pitch":108.75,"roll":40.4375},"location":"Left Ankle"},{"euler":{"heading":72.75,"pitch":-0.125,"roll":8.8125},"location":"Right Ankle"},{"euler":{"heading":96.5625,"pitch":-152.5625,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":143.25,"pitch":-127.875,"roll":-39.5},"location":"Right Knee"},{"euler":{"heading":44.4375,"pitch":-143.75,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:28.917"} +{"sensors":[{"euler":{"heading":7.1875,"pitch":124.25,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":109.0625,"pitch":112.875,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":1.375,"roll":10.8125},"location":"Right Ankle"},{"euler":{"heading":85.5625,"pitch":-155.9375,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":134.625,"pitch":-123.1875,"roll":-31.75},"location":"Right Knee"},{"euler":{"heading":46.0,"pitch":-149.0,"roll":66.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.17"} +{"sensors":[{"euler":{"heading":17.8125,"pitch":122.125,"roll":16.25},"location":"Left Knee"},{"euler":{"heading":116.8125,"pitch":120.25,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":3.875,"roll":9.25},"location":"Right Ankle"},{"euler":{"heading":85.1875,"pitch":-156.625,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":147.375,"pitch":-130.0625,"roll":-36.5},"location":"Right Knee"},{"euler":{"heading":49.0,"pitch":-150.875,"roll":68.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.118"} +{"sensors":[{"euler":{"heading":36.6875,"pitch":121.125,"roll":4.5625},"location":"Left Knee"},{"euler":{"heading":132.6875,"pitch":148.4375,"roll":67.25},"location":"Left Ankle"},{"euler":{"heading":65.9375,"pitch":3.5,"roll":7.875},"location":"Right Ankle"},{"euler":{"heading":85.3125,"pitch":-156.4375,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":161.75,"pitch":-135.25,"roll":-43.5},"location":"Right Knee"},{"euler":{"heading":38.1875,"pitch":-130.75,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.219"} +{"sensors":[{"euler":{"heading":35.75,"pitch":126.625,"roll":5.5625},"location":"Left Knee"},{"euler":{"heading":124.0,"pitch":126.4375,"roll":67.0},"location":"Left Ankle"},{"euler":{"heading":63.1875,"pitch":2.6875,"roll":6.5},"location":"Right Ankle"},{"euler":{"heading":85.375,"pitch":-157.0625,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":169.5625,"pitch":-138.5625,"roll":-48.4375},"location":"Right Knee"},{"euler":{"heading":28.125,"pitch":-114.125,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.320"} +{"sensors":[{"euler":{"heading":5.4375,"pitch":137.0,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":101.5,"roll":46.0},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":2.75,"roll":5.125},"location":"Right Ankle"},{"euler":{"heading":87.125,"pitch":-156.875,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":175.25,"pitch":-141.875,"roll":-52.25},"location":"Right Knee"},{"euler":{"heading":23.9375,"pitch":-111.25,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.421"} +{"sensors":[{"euler":{"heading":326.0,"pitch":150.5,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":66.25,"pitch":95.9375,"roll":20.5625},"location":"Left Ankle"},{"euler":{"heading":55.375,"pitch":3.5625,"roll":4.5},"location":"Right Ankle"},{"euler":{"heading":88.625,"pitch":-157.9375,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":182.125,"pitch":-148.375,"roll":-55.3125},"location":"Right Knee"},{"euler":{"heading":24.625,"pitch":-111.4375,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.522"} +{"sensors":[{"euler":{"heading":312.625,"pitch":158.4375,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":56.125,"pitch":94.375,"roll":8.4375},"location":"Left Ankle"},{"euler":{"heading":48.375,"pitch":3.9375,"roll":2.5625},"location":"Right Ankle"},{"euler":{"heading":90.3125,"pitch":-159.4375,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":188.375,"pitch":-156.9375,"roll":-59.125},"location":"Right Knee"},{"euler":{"heading":31.25,"pitch":-117.5,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.622"} +{"sensors":[{"euler":{"heading":329.0,"pitch":149.75,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":74.375,"pitch":100.6875,"roll":17.6875},"location":"Left Ankle"},{"euler":{"heading":37.4375,"pitch":-0.6875,"roll":1.8125},"location":"Right Ankle"},{"euler":{"heading":95.0,"pitch":-158.8125,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":193.0,"pitch":-171.625,"roll":-63.75},"location":"Right Knee"},{"euler":{"heading":33.6875,"pitch":-122.1875,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.723"} +{"sensors":[{"euler":{"heading":341.0625,"pitch":140.6875,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":81.125,"pitch":103.3125,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":20.5,"pitch":-5.5,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":103.125,"pitch":-149.3125,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":200.625,"pitch":169.625,"roll":-63.25},"location":"Right Knee"},{"euler":{"heading":36.9375,"pitch":-124.1875,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.824"} +{"sensors":[{"euler":{"heading":347.5,"pitch":134.75,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":88.3125,"pitch":104.6875,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":27.4375,"pitch":-7.3125,"roll":1.6875},"location":"Right Ankle"},{"euler":{"heading":109.8125,"pitch":-146.0625,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":190.75,"pitch":-175.625,"roll":-64.0},"location":"Right Knee"},{"euler":{"heading":41.5,"pitch":-131.4375,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:29.925"} +{"sensors":[{"euler":{"heading":352.5,"pitch":130.25,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":105.875,"roll":33.75},"location":"Left Ankle"},{"euler":{"heading":51.125,"pitch":-7.8125,"roll":7.6875},"location":"Right Ankle"},{"euler":{"heading":109.875,"pitch":-148.0625,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":163.3125,"pitch":-138.0625,"roll":-55.5},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-139.6875,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.26"} +{"sensors":[{"euler":{"heading":358.9375,"pitch":127.5,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":107.25,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":70.1875,"pitch":-2.625,"roll":11.25},"location":"Right Ankle"},{"euler":{"heading":100.8125,"pitch":-152.1875,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":139.875,"pitch":-125.9375,"roll":-39.1875},"location":"Right Knee"},{"euler":{"heading":45.0,"pitch":-144.5625,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.127"} +{"sensors":[{"euler":{"heading":5.25,"pitch":125.375,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":102.3125,"pitch":109.4375,"roll":43.9375},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":1.25,"roll":11.4375},"location":"Right Ankle"},{"euler":{"heading":88.0,"pitch":-155.875,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":133.9375,"pitch":-123.125,"roll":-31.5625},"location":"Right Knee"},{"euler":{"heading":46.5625,"pitch":-152.1875,"roll":66.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.229"} +{"sensors":[{"euler":{"heading":15.5,"pitch":123.625,"roll":16.625},"location":"Left Knee"},{"euler":{"heading":109.3125,"pitch":115.0625,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":72.5,"pitch":4.5625,"roll":9.5},"location":"Right Ankle"},{"euler":{"heading":85.8125,"pitch":-156.4375,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":146.875,"pitch":-131.1875,"roll":-35.5},"location":"Right Knee"},{"euler":{"heading":49.0625,"pitch":-152.25,"roll":68.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.329"} +{"sensors":[{"euler":{"heading":32.5625,"pitch":122.25,"roll":6.25},"location":"Left Knee"},{"euler":{"heading":132.6875,"pitch":144.25,"roll":67.6875},"location":"Left Ankle"},{"euler":{"heading":66.625,"pitch":5.3125,"roll":8.0},"location":"Right Ankle"},{"euler":{"heading":85.75,"pitch":-156.125,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":160.8125,"pitch":-136.0625,"roll":-41.9375},"location":"Right Knee"},{"euler":{"heading":35.75,"pitch":-125.9375,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.431"} +{"sensors":[{"euler":{"heading":34.375,"pitch":125.125,"roll":6.8125},"location":"Left Knee"},{"euler":{"heading":125.0,"pitch":124.4375,"roll":65.8125},"location":"Left Ankle"},{"euler":{"heading":63.3125,"pitch":7.25,"roll":5.9375},"location":"Right Ankle"},{"euler":{"heading":85.4375,"pitch":-154.8125,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":-141.625,"roll":-45.875},"location":"Right Knee"},{"euler":{"heading":26.5,"pitch":-113.375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.533"} +{"sensors":[{"euler":{"heading":4.25,"pitch":137.5,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":95.0625,"pitch":100.875,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":59.125,"pitch":8.5,"roll":4.875},"location":"Right Ankle"},{"euler":{"heading":87.25,"pitch":-153.6875,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":178.625,"pitch":-145.625,"roll":-49.1875},"location":"Right Knee"},{"euler":{"heading":22.4375,"pitch":-111.6875,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.634"} +{"sensors":[{"euler":{"heading":322.6875,"pitch":151.4375,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":62.5625,"pitch":95.5625,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":53.25,"pitch":8.75,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":90.25,"pitch":-154.0,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":184.875,"pitch":-150.6875,"roll":-53.125},"location":"Right Knee"},{"euler":{"heading":24.5,"pitch":-112.8125,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.735"} +{"sensors":[{"euler":{"heading":312.9375,"pitch":159.25,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":53.5625,"pitch":95.75,"roll":5.75},"location":"Left Ankle"},{"euler":{"heading":45.625,"pitch":6.875,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":92.75,"pitch":-155.9375,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":190.0,"pitch":-157.625,"roll":-57.875},"location":"Right Knee"},{"euler":{"heading":32.125,"pitch":-119.875,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.836"} +{"sensors":[{"euler":{"heading":326.5,"pitch":150.75,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":70.125,"pitch":102.0,"roll":30.6875},"location":"Left Ankle"},{"euler":{"heading":33.875,"pitch":-1.4375,"roll":1.3125},"location":"Right Ankle"},{"euler":{"heading":96.9375,"pitch":-159.0,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":191.125,"pitch":-168.4375,"roll":-63.875},"location":"Right Knee"},{"euler":{"heading":34.4375,"pitch":-123.125,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:30.936"} +{"sensors":[{"euler":{"heading":338.375,"pitch":142.25,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":78.125,"pitch":103.75,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":18.0,"pitch":-4.0625,"roll":-2.1875},"location":"Right Ankle"},{"euler":{"heading":103.8125,"pitch":-149.5625,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":197.5625,"pitch":172.1875,"roll":-63.9375},"location":"Right Knee"},{"euler":{"heading":34.6875,"pitch":-122.875,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.38"} +{"sensors":[{"euler":{"heading":346.875,"pitch":135.8125,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":87.25,"pitch":105.3125,"roll":28.625},"location":"Left Ankle"},{"euler":{"heading":24.875,"pitch":-8.1875,"roll":2.0625},"location":"Right Ankle"},{"euler":{"heading":111.3125,"pitch":-144.8125,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":191.1875,"pitch":-178.75,"roll":-63.625},"location":"Right Knee"},{"euler":{"heading":40.5,"pitch":-130.75,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.138"} +{"sensors":[{"euler":{"heading":352.9375,"pitch":131.0,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":91.9375,"pitch":106.5625,"roll":32.375},"location":"Left Ankle"},{"euler":{"heading":47.5,"pitch":-7.6875,"roll":6.625},"location":"Right Ankle"},{"euler":{"heading":111.5625,"pitch":-146.5,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":167.1875,"pitch":-143.9375,"roll":-57.0625},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-138.1875,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.239"} +{"sensors":[{"euler":{"heading":0.0,"pitch":127.5625,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":98.0625,"pitch":108.625,"roll":37.375},"location":"Left Ankle"},{"euler":{"heading":67.4375,"pitch":-3.3125,"roll":10.1875},"location":"Right Ankle"},{"euler":{"heading":104.125,"pitch":-150.5625,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":143.5625,"pitch":-126.8125,"roll":-41.875},"location":"Right Knee"},{"euler":{"heading":45.25,"pitch":-142.6875,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.340"} +{"sensors":[{"euler":{"heading":5.75,"pitch":124.875,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":104.5625,"pitch":111.4375,"roll":43.6875},"location":"Left Ankle"},{"euler":{"heading":80.75,"pitch":-0.0625,"roll":11.375},"location":"Right Ankle"},{"euler":{"heading":91.9375,"pitch":-153.625,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":135.0625,"pitch":-122.25,"roll":-33.4375},"location":"Right Knee"},{"euler":{"heading":47.125,"pitch":-149.25,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.442"} +{"sensors":[{"euler":{"heading":14.8125,"pitch":122.6875,"roll":19.4375},"location":"Left Knee"},{"euler":{"heading":110.0625,"pitch":116.375,"roll":52.25},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":2.0625,"roll":9.625},"location":"Right Ankle"},{"euler":{"heading":86.9375,"pitch":-156.0,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":145.375,"pitch":-128.1875,"roll":-36.75},"location":"Right Knee"},{"euler":{"heading":49.6875,"pitch":-153.125,"roll":67.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.542"} +{"sensors":[{"euler":{"heading":30.875,"pitch":122.625,"roll":7.625},"location":"Left Knee"},{"euler":{"heading":128.0,"pitch":139.875,"roll":64.9375},"location":"Left Ankle"},{"euler":{"heading":67.4375,"pitch":0.3125,"roll":7.625},"location":"Right Ankle"},{"euler":{"heading":89.75,"pitch":-155.75,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":157.3125,"pitch":-131.125,"roll":-44.0625},"location":"Right Knee"},{"euler":{"heading":37.125,"pitch":-133.5625,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.643"} +{"sensors":[{"euler":{"heading":36.8125,"pitch":124.8125,"roll":5.4375},"location":"Left Knee"},{"euler":{"heading":124.625,"pitch":132.875,"roll":65.4375},"location":"Left Ankle"},{"euler":{"heading":66.75,"pitch":-0.6875,"roll":6.1875},"location":"Right Ankle"},{"euler":{"heading":87.1875,"pitch":-157.4375,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":164.0,"pitch":-133.6875,"roll":-48.6875},"location":"Right Knee"},{"euler":{"heading":29.25,"pitch":-116.75,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.744"} +{"sensors":[{"euler":{"heading":15.0,"pitch":134.8125,"roll":17.125},"location":"Left Knee"},{"euler":{"heading":101.4375,"pitch":103.3125,"roll":50.1875},"location":"Left Ankle"},{"euler":{"heading":64.0,"pitch":-0.4375,"roll":3.5},"location":"Right Ankle"},{"euler":{"heading":90.875,"pitch":-157.3125,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":-137.0,"roll":-52.9375},"location":"Right Knee"},{"euler":{"heading":24.875,"pitch":-113.875,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.846"} +{"sensors":[{"euler":{"heading":334.1875,"pitch":147.75,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":69.6875,"pitch":98.5,"roll":23.4375},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":0.875,"roll":4.75},"location":"Right Ankle"},{"euler":{"heading":91.8125,"pitch":-157.8125,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":176.3125,"pitch":-143.1875,"roll":-56.0625},"location":"Right Knee"},{"euler":{"heading":25.375,"pitch":-113.375,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:31.947"} +{"sensors":[{"euler":{"heading":315.0625,"pitch":158.625,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":53.4375,"pitch":94.625,"roll":5.8125},"location":"Left Ankle"},{"euler":{"heading":52.0,"pitch":1.9375,"roll":2.5625},"location":"Right Ankle"},{"euler":{"heading":93.0,"pitch":-159.125,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":183.1875,"pitch":-151.25,"roll":-59.75},"location":"Right Knee"},{"euler":{"heading":32.5,"pitch":-119.5,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.47"} +{"sensors":[{"euler":{"heading":326.0,"pitch":151.6875,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":61.5625,"pitch":99.3125,"roll":11.6875},"location":"Left Ankle"},{"euler":{"heading":43.4375,"pitch":1.0,"roll":1.0625},"location":"Right Ankle"},{"euler":{"heading":94.375,"pitch":-162.6875,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":188.75,"pitch":-163.75,"roll":-63.3125},"location":"Right Knee"},{"euler":{"heading":36.0,"pitch":-121.0,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.148"} +{"sensors":[{"euler":{"heading":340.4375,"pitch":142.6875,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":77.8125,"pitch":102.875,"roll":23.3125},"location":"Left Ankle"},{"euler":{"heading":27.9375,"pitch":-4.625,"roll":1.1875},"location":"Right Ankle"},{"euler":{"heading":102.0625,"pitch":-155.375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":195.5,"pitch":174.5625,"roll":-63.625},"location":"Right Knee"},{"euler":{"heading":35.75,"pitch":-122.9375,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.249"} +{"sensors":[{"euler":{"heading":346.9375,"pitch":136.75,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":86.0625,"pitch":104.25,"roll":28.125},"location":"Left Ankle"},{"euler":{"heading":22.0625,"pitch":-9.0,"roll":2.0},"location":"Right Ankle"},{"euler":{"heading":109.125,"pitch":-148.5625,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":192.8125,"pitch":175.0625,"roll":-63.1875},"location":"Right Knee"},{"euler":{"heading":39.3125,"pitch":-129.375,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.350"} +{"sensors":[{"euler":{"heading":349.9375,"pitch":133.1875,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":94.4375,"pitch":105.375,"roll":36.1875},"location":"Left Ankle"},{"euler":{"heading":40.125,"pitch":-7.5,"roll":4.9375},"location":"Right Ankle"},{"euler":{"heading":111.9375,"pitch":-145.1875,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":172.0625,"pitch":-152.1875,"roll":-59.0625},"location":"Right Knee"},{"euler":{"heading":41.75,"pitch":-136.125,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.450"} +{"sensors":[{"euler":{"heading":355.625,"pitch":129.875,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":98.9375,"pitch":106.5625,"roll":39.5},"location":"Left Ankle"},{"euler":{"heading":61.625,"pitch":-4.75,"roll":12.0},"location":"Right Ankle"},{"euler":{"heading":103.9375,"pitch":-148.5625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":148.5625,"pitch":-130.125,"roll":-45.125},"location":"Right Knee"},{"euler":{"heading":42.0625,"pitch":-143.1875,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.551"} +{"sensors":[{"euler":{"heading":2.375,"pitch":127.0625,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":104.25,"pitch":108.3125,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":78.9375,"pitch":-1.5,"roll":10.9375},"location":"Right Ankle"},{"euler":{"heading":95.125,"pitch":-152.4375,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":135.4375,"pitch":-122.0,"roll":-34.25},"location":"Right Knee"},{"euler":{"heading":44.75,"pitch":-148.5625,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.651"} +{"sensors":[{"euler":{"heading":10.9375,"pitch":124.3125,"roll":20.625},"location":"Left Knee"},{"euler":{"heading":112.0,"pitch":113.25,"roll":52.9375},"location":"Left Ankle"},{"euler":{"heading":75.125,"pitch":-0.125,"roll":8.9375},"location":"Right Ankle"},{"euler":{"heading":89.0625,"pitch":-154.75,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":143.0625,"pitch":-125.6875,"roll":-36.4375},"location":"Right Knee"},{"euler":{"heading":48.9375,"pitch":-154.625,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.752"} +{"sensors":[{"euler":{"heading":26.1875,"pitch":125.125,"roll":8.5},"location":"Left Knee"},{"euler":{"heading":120.625,"pitch":129.125,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":66.75,"pitch":0.125,"roll":7.25},"location":"Right Ankle"},{"euler":{"heading":92.4375,"pitch":-154.4375,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":154.625,"pitch":-130.75,"roll":-42.6875},"location":"Right Knee"},{"euler":{"heading":38.875,"pitch":-136.25,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.853"} +{"sensors":[{"euler":{"heading":32.125,"pitch":126.625,"roll":6.4375},"location":"Left Knee"},{"euler":{"heading":122.6875,"pitch":129.5625,"roll":67.375},"location":"Left Ankle"},{"euler":{"heading":62.25,"pitch":-0.25,"roll":5.6875},"location":"Right Ankle"},{"euler":{"heading":87.0625,"pitch":-156.25,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":165.625,"pitch":-134.375,"roll":-48.5},"location":"Right Knee"},{"euler":{"heading":28.625,"pitch":-116.1875,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:32.953"} +{"sensors":[{"euler":{"heading":8.0,"pitch":136.125,"roll":19.0},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":101.4375,"roll":52.0625},"location":"Left Ankle"},{"euler":{"heading":60.1875,"pitch":-2.0625,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":91.5,"pitch":-155.75,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":169.0625,"pitch":-135.625,"roll":-53.1875},"location":"Right Knee"},{"euler":{"heading":22.875,"pitch":-113.375,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.53"} +{"sensors":[{"euler":{"heading":332.0625,"pitch":148.1875,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":72.5625,"pitch":99.0,"roll":22.75},"location":"Left Ankle"},{"euler":{"heading":55.6875,"pitch":-2.875,"roll":3.875},"location":"Right Ankle"},{"euler":{"heading":94.9375,"pitch":-154.0,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":172.875,"pitch":-139.875,"roll":-56.5},"location":"Right Knee"},{"euler":{"heading":25.375,"pitch":-113.4375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.154"} +{"sensors":[{"euler":{"heading":313.875,"pitch":158.5,"roll":41.8125},"location":"Left Knee"},{"euler":{"heading":56.4375,"pitch":94.5625,"roll":7.0625},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":-2.125,"roll":2.875},"location":"Right Ankle"},{"euler":{"heading":95.75,"pitch":-158.4375,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":178.5,"pitch":-147.1875,"roll":-60.375},"location":"Right Knee"},{"euler":{"heading":30.8125,"pitch":-116.5625,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.255"} +{"sensors":[{"euler":{"heading":327.375,"pitch":151.875,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":64.0625,"pitch":99.5625,"roll":12.5},"location":"Left Ankle"},{"euler":{"heading":39.6875,"pitch":-4.5,"roll":0.4375},"location":"Right Ankle"},{"euler":{"heading":97.5625,"pitch":-163.4375,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":183.4375,"pitch":-158.6875,"roll":-65.1875},"location":"Right Knee"},{"euler":{"heading":36.875,"pitch":-119.125,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.355"} +{"sensors":[{"euler":{"heading":338.9375,"pitch":143.375,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":78.125,"pitch":102.1875,"roll":22.875},"location":"Left Ankle"},{"euler":{"heading":24.875,"pitch":-6.25,"roll":-1.875},"location":"Right Ankle"},{"euler":{"heading":105.8125,"pitch":-154.25,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":193.5,"pitch":175.9375,"roll":-64.875},"location":"Right Knee"},{"euler":{"heading":36.0625,"pitch":-120.125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.456"} +{"sensors":[{"euler":{"heading":340.0,"pitch":139.3125,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":84.0625,"pitch":102.0,"roll":27.5},"location":"Left Ankle"},{"euler":{"heading":22.625,"pitch":-7.375,"roll":0.25},"location":"Right Ankle"},{"euler":{"heading":111.1875,"pitch":-146.375,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":190.75,"pitch":179.125,"roll":-62.1875},"location":"Right Knee"},{"euler":{"heading":38.375,"pitch":-129.25,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.558"} +{"sensors":[{"euler":{"heading":342.0625,"pitch":136.5,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":90.8125,"pitch":102.5625,"roll":34.8125},"location":"Left Ankle"},{"euler":{"heading":42.0625,"pitch":-7.125,"roll":5.4375},"location":"Right Ankle"},{"euler":{"heading":112.4375,"pitch":-144.3125,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":171.3125,"pitch":-153.3125,"roll":-57.875},"location":"Right Knee"},{"euler":{"heading":39.25,"pitch":-134.375,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.658"} +{"sensors":[{"euler":{"heading":351.875,"pitch":131.25,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":96.1875,"pitch":104.5,"roll":38.9375},"location":"Left Ankle"},{"euler":{"heading":62.375,"pitch":-3.625,"roll":10.0},"location":"Right Ankle"},{"euler":{"heading":106.5625,"pitch":-148.0,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":149.0,"pitch":-130.875,"roll":-45.125},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-137.6875,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.759"} +{"sensors":[{"euler":{"heading":358.6875,"pitch":128.1875,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":101.5625,"pitch":105.125,"roll":44.1875},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":0.0625,"roll":10.375},"location":"Right Ankle"},{"euler":{"heading":98.0,"pitch":-150.4375,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":135.375,"pitch":-122.25,"roll":-33.5625},"location":"Right Knee"},{"euler":{"heading":42.4375,"pitch":-143.25,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.860"} +{"sensors":[{"euler":{"heading":6.125,"pitch":126.0,"roll":21.9375},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":108.25,"roll":51.6875},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":1.9375,"roll":8.75},"location":"Right Ankle"},{"euler":{"heading":88.875,"pitch":-153.0625,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":136.0625,"pitch":-125.625,"roll":-32.625},"location":"Right Knee"},{"euler":{"heading":46.1875,"pitch":-153.3125,"roll":66.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:33.962"} +{"sensors":[{"euler":{"heading":20.8125,"pitch":126.6875,"roll":10.125},"location":"Left Knee"},{"euler":{"heading":117.0625,"pitch":122.0625,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":3.5625,"roll":6.5},"location":"Right Ankle"},{"euler":{"heading":91.6875,"pitch":-152.0,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":152.0625,"pitch":-132.5,"roll":-38.8125},"location":"Right Knee"},{"euler":{"heading":41.1875,"pitch":-145.1875,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.62"} +{"sensors":[{"euler":{"heading":39.0,"pitch":120.0,"roll":4.8125},"location":"Left Knee"},{"euler":{"heading":129.375,"pitch":143.8125,"roll":67.25},"location":"Left Ankle"},{"euler":{"heading":65.125,"pitch":3.875,"roll":5.3125},"location":"Right Ankle"},{"euler":{"heading":86.8125,"pitch":-153.5625,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":165.875,"pitch":-137.125,"roll":-45.125},"location":"Right Knee"},{"euler":{"heading":33.3125,"pitch":-119.3125,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.164"} +{"sensors":[{"euler":{"heading":26.25,"pitch":131.125,"roll":12.0},"location":"Left Knee"},{"euler":{"heading":115.0625,"pitch":113.5625,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":3.625,"roll":4.0625},"location":"Right Ankle"},{"euler":{"heading":90.5,"pitch":-152.6875,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":170.75,"pitch":-138.9375,"roll":-49.4375},"location":"Right Knee"},{"euler":{"heading":23.75,"pitch":-113.4375,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.265"} +{"sensors":[{"euler":{"heading":252.0625,"pitch":145.375,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":81.5625,"pitch":99.375,"roll":32.875},"location":"Left Ankle"},{"euler":{"heading":59.0,"pitch":5.25,"roll":3.5625},"location":"Right Ankle"},{"euler":{"heading":92.25,"pitch":-152.0625,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":178.125,"pitch":-145.0,"roll":-52.125},"location":"Right Knee"},{"euler":{"heading":18.8125,"pitch":-113.375,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.365"} +{"sensors":[{"euler":{"heading":266.8125,"pitch":157.875,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":56.5625,"pitch":95.5,"roll":9.625},"location":"Left Ankle"},{"euler":{"heading":53.3125,"pitch":6.625,"roll":2.5},"location":"Right Ankle"},{"euler":{"heading":92.75,"pitch":-152.9375,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":185.9375,"pitch":-151.6875,"roll":-56.0},"location":"Right Knee"},{"euler":{"heading":25.875,"pitch":-116.1875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.466"} +{"sensors":[{"euler":{"heading":271.3125,"pitch":157.5,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":58.4375,"pitch":99.75,"roll":9.1875},"location":"Left Ankle"},{"euler":{"heading":46.375,"pitch":4.8125,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":93.8125,"pitch":-156.25,"roll":67.5},"location":"Right Hip"},{"euler":{"heading":190.3125,"pitch":-160.4375,"roll":-60.5},"location":"Right Knee"},{"euler":{"heading":31.5625,"pitch":-120.8125,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.567"} +{"sensors":[{"euler":{"heading":336.0625,"pitch":147.625,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":74.5,"pitch":103.0,"roll":21.5},"location":"Left Ankle"},{"euler":{"heading":32.875,"pitch":-2.0625,"roll":0.625},"location":"Right Ankle"},{"euler":{"heading":98.125,"pitch":-154.8125,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":194.6875,"pitch":-177.25,"roll":-64.5625},"location":"Right Knee"},{"euler":{"heading":32.5625,"pitch":-121.5,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.667"} +{"sensors":[{"euler":{"heading":345.0,"pitch":140.125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":83.125,"pitch":105.0625,"roll":26.125},"location":"Left Ankle"},{"euler":{"heading":20.125,"pitch":-7.9375,"roll":-0.375},"location":"Right Ankle"},{"euler":{"heading":106.6875,"pitch":-147.4375,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":195.0625,"pitch":174.125,"roll":-64.5625},"location":"Right Knee"},{"euler":{"heading":36.75,"pitch":-126.5625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.768"} +{"sensors":[{"euler":{"heading":352.125,"pitch":134.0625,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":106.8125,"roll":30.8125},"location":"Left Ankle"},{"euler":{"heading":33.125,"pitch":-7.25,"roll":2.1875},"location":"Right Ankle"},{"euler":{"heading":112.375,"pitch":-144.25,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":176.375,"pitch":-157.4375,"roll":-60.75},"location":"Right Knee"},{"euler":{"heading":42.375,"pitch":-132.5,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.868"} +{"sensors":[{"euler":{"heading":358.1875,"pitch":129.8125,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":108.5625,"roll":34.625},"location":"Left Ankle"},{"euler":{"heading":55.625,"pitch":-6.3125,"roll":8.3125},"location":"Right Ankle"},{"euler":{"heading":108.9375,"pitch":-147.75,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":150.625,"pitch":-131.6875,"roll":-47.25},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-140.0625,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:34.968"} +{"sensors":[{"euler":{"heading":4.6875,"pitch":126.5625,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":100.4375,"pitch":110.5625,"roll":39.1875},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-0.3125,"roll":11.6875},"location":"Right Ankle"},{"euler":{"heading":98.75,"pitch":-150.5,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":134.3125,"pitch":-123.4375,"roll":-33.375},"location":"Right Knee"},{"euler":{"heading":45.5625,"pitch":-145.5,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.69"} +{"sensors":[{"euler":{"heading":9.8125,"pitch":123.5,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":107.4375,"pitch":112.9375,"roll":46.125},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":2.5625,"roll":10.1875},"location":"Right Ankle"},{"euler":{"heading":89.3125,"pitch":-154.4375,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":134.25,"pitch":-126.0625,"roll":-30.25},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-153.4375,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.170"} +{"sensors":[{"euler":{"heading":23.1875,"pitch":122.625,"roll":12.75},"location":"Left Knee"},{"euler":{"heading":114.125,"pitch":122.6875,"roll":57.5},"location":"Left Ankle"},{"euler":{"heading":70.1875,"pitch":1.9375,"roll":8.3125},"location":"Right Ankle"},{"euler":{"heading":89.625,"pitch":-154.875,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":147.625,"pitch":-130.25,"roll":-37.25},"location":"Right Knee"},{"euler":{"heading":49.25,"pitch":-150.5,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.271"} +{"sensors":[{"euler":{"heading":40.4375,"pitch":120.4375,"roll":4.25},"location":"Left Knee"},{"euler":{"heading":134.375,"pitch":149.625,"roll":67.125},"location":"Left Ankle"},{"euler":{"heading":65.1875,"pitch":2.0,"roll":6.5},"location":"Right Ankle"},{"euler":{"heading":86.25,"pitch":-156.5625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":160.3125,"pitch":-133.8125,"roll":-43.625},"location":"Right Knee"},{"euler":{"heading":35.875,"pitch":-123.3125,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.374"} +{"sensors":[{"euler":{"heading":33.8125,"pitch":128.4375,"roll":8.4375},"location":"Left Knee"},{"euler":{"heading":119.5625,"pitch":121.6875,"roll":62.9375},"location":"Left Ankle"},{"euler":{"heading":62.1875,"pitch":1.8125,"roll":4.9375},"location":"Right Ankle"},{"euler":{"heading":88.1875,"pitch":-155.75,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":168.625,"pitch":-136.625,"roll":-48.5625},"location":"Right Knee"},{"euler":{"heading":26.5,"pitch":-115.75,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.475"} +{"sensors":[{"euler":{"heading":353.5,"pitch":141.25,"roll":25.9375},"location":"Left Knee"},{"euler":{"heading":84.125,"pitch":100.5625,"roll":35.1875},"location":"Left Ankle"},{"euler":{"heading":58.0625,"pitch":2.3125,"roll":4.6875},"location":"Right Ankle"},{"euler":{"heading":90.1875,"pitch":-155.5625,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":174.625,"pitch":-140.875,"roll":-52.8125},"location":"Right Knee"},{"euler":{"heading":24.25,"pitch":-112.5625,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.576"} +{"sensors":[{"euler":{"heading":320.0,"pitch":154.5625,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":57.8125,"pitch":95.75,"roll":10.875},"location":"Left Ankle"},{"euler":{"heading":53.125,"pitch":3.25,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":91.5625,"pitch":-157.0625,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":180.75,"pitch":-147.375,"roll":-56.5},"location":"Right Knee"},{"euler":{"heading":27.8125,"pitch":-115.3125,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.677"} +{"sensors":[{"euler":{"heading":316.9375,"pitch":157.5625,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":57.25,"pitch":99.4375,"roll":8.1875},"location":"Left Ankle"},{"euler":{"heading":44.3125,"pitch":2.1875,"roll":2.4375},"location":"Right Ankle"},{"euler":{"heading":93.3125,"pitch":-159.8125,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":186.4375,"pitch":-156.5,"roll":-61.375},"location":"Right Knee"},{"euler":{"heading":33.125,"pitch":-121.125,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.778"} +{"sensors":[{"euler":{"heading":334.375,"pitch":147.0,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":73.6875,"pitch":102.3125,"roll":21.125},"location":"Left Ankle"},{"euler":{"heading":31.6875,"pitch":-5.0625,"roll":1.1875},"location":"Right Ankle"},{"euler":{"heading":99.1875,"pitch":-158.5,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":189.625,"pitch":-174.125,"roll":-66.75},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-122.5,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.878"} +{"sensors":[{"euler":{"heading":344.0625,"pitch":140.125,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":80.9375,"pitch":103.4375,"roll":25.375},"location":"Left Ankle"},{"euler":{"heading":19.0625,"pitch":-8.0625,"roll":-1.375},"location":"Right Ankle"},{"euler":{"heading":107.6875,"pitch":-148.5625,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":196.4375,"pitch":172.3125,"roll":-64.375},"location":"Right Knee"},{"euler":{"heading":38.25,"pitch":-127.375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:35.979"} +{"sensors":[{"euler":{"heading":347.9375,"pitch":135.75,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":86.1875,"pitch":103.8125,"roll":29.75},"location":"Left Ankle"},{"euler":{"heading":32.25,"pitch":-8.4375,"roll":2.25},"location":"Right Ankle"},{"euler":{"heading":113.5625,"pitch":-144.6875,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":180.6875,"pitch":-159.75,"roll":-62.5625},"location":"Right Knee"},{"euler":{"heading":41.9375,"pitch":-135.0625,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.80"} +{"sensors":[{"euler":{"heading":354.75,"pitch":131.125,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":91.8125,"pitch":105.5,"roll":33.75},"location":"Left Ankle"},{"euler":{"heading":52.125,"pitch":-8.8125,"roll":9.375},"location":"Right Ankle"},{"euler":{"heading":110.875,"pitch":-147.4375,"roll":44.875},"location":"Right Hip"},{"euler":{"heading":153.375,"pitch":-131.75,"roll":-50.8125},"location":"Right Knee"},{"euler":{"heading":44.125,"pitch":-140.8125,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.181"} +{"sensors":[{"euler":{"heading":1.4375,"pitch":127.3125,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":97.375,"pitch":107.5,"roll":38.0},"location":"Left Ankle"},{"euler":{"heading":71.875,"pitch":-3.0,"roll":12.3125},"location":"Right Ankle"},{"euler":{"heading":103.5625,"pitch":-149.875,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":131.3125,"pitch":-122.625,"roll":-34.25},"location":"Right Knee"},{"euler":{"heading":45.75,"pitch":-147.5,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.282"} +{"sensors":[{"euler":{"heading":7.875,"pitch":124.8125,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":103.625,"pitch":109.875,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":0.875,"roll":10.5},"location":"Right Ankle"},{"euler":{"heading":91.25,"pitch":-153.5,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":126.0,"pitch":-122.75,"roll":-27.8125},"location":"Right Knee"},{"euler":{"heading":48.125,"pitch":-155.5625,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.382"} +{"sensors":[{"euler":{"heading":17.5,"pitch":125.125,"roll":14.8125},"location":"Left Knee"},{"euler":{"heading":108.1875,"pitch":114.8125,"roll":53.5},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":0.875,"roll":8.8125},"location":"Right Ankle"},{"euler":{"heading":89.5625,"pitch":-154.875,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":138.4375,"pitch":-129.0,"roll":-33.1875},"location":"Right Knee"},{"euler":{"heading":49.9375,"pitch":-160.875,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.483"} +{"sensors":[{"euler":{"heading":36.6875,"pitch":120.1875,"roll":5.4375},"location":"Left Knee"},{"euler":{"heading":131.5,"pitch":144.1875,"roll":66.9375},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":2.5625,"roll":6.75},"location":"Right Ankle"},{"euler":{"heading":89.5625,"pitch":-153.875,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":153.5,"pitch":-134.4375,"roll":-39.5},"location":"Right Knee"},{"euler":{"heading":37.9375,"pitch":-137.6875,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.583"} +{"sensors":[{"euler":{"heading":37.9375,"pitch":125.75,"roll":6.125},"location":"Left Knee"},{"euler":{"heading":124.5625,"pitch":128.3125,"roll":67.0625},"location":"Left Ankle"},{"euler":{"heading":61.5625,"pitch":3.625,"roll":4.8125},"location":"Right Ankle"},{"euler":{"heading":88.125,"pitch":-154.6875,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":165.6875,"pitch":-137.8125,"roll":-45.3125},"location":"Right Knee"},{"euler":{"heading":28.75,"pitch":-119.3125,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.683"} +{"sensors":[{"euler":{"heading":6.8125,"pitch":137.6875,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":97.0,"pitch":103.9375,"roll":47.4375},"location":"Left Ankle"},{"euler":{"heading":59.1875,"pitch":5.0,"roll":3.75},"location":"Right Ankle"},{"euler":{"heading":90.25,"pitch":-153.5,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":173.0,"pitch":-141.9375,"roll":-49.0},"location":"Right Knee"},{"euler":{"heading":23.1875,"pitch":-113.5625,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.784"} +{"sensors":[{"euler":{"heading":325.4375,"pitch":151.6875,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":64.625,"pitch":96.75,"roll":19.625},"location":"Left Ankle"},{"euler":{"heading":54.25,"pitch":5.1875,"roll":3.1875},"location":"Right Ankle"},{"euler":{"heading":92.0625,"pitch":-154.625,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":179.625,"pitch":-147.0,"roll":-53.1875},"location":"Right Knee"},{"euler":{"heading":25.25,"pitch":-114.4375,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.885"} +{"sensors":[{"euler":{"heading":316.25,"pitch":159.3125,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":52.6875,"pitch":96.9375,"roll":5.25},"location":"Left Ankle"},{"euler":{"heading":47.125,"pitch":4.5,"roll":2.75},"location":"Right Ankle"},{"euler":{"heading":93.4375,"pitch":-158.1875,"roll":68.125},"location":"Right Hip"},{"euler":{"heading":185.25,"pitch":-153.875,"roll":-58.0625},"location":"Right Knee"},{"euler":{"heading":32.8125,"pitch":-121.5625,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:36.986"} +{"sensors":[{"euler":{"heading":330.5,"pitch":151.5625,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":66.25,"pitch":102.625,"roll":15.4375},"location":"Left Ankle"},{"euler":{"heading":35.75,"pitch":-2.25,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":97.375,"pitch":-162.125,"roll":66.9375},"location":"Right Hip"},{"euler":{"heading":187.5,"pitch":-165.5625,"roll":-64.9375},"location":"Right Knee"},{"euler":{"heading":35.125,"pitch":-124.8125,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.86"} +{"sensors":[{"euler":{"heading":342.25,"pitch":141.75,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":79.125,"pitch":104.0,"roll":24.3125},"location":"Left Ankle"},{"euler":{"heading":18.75,"pitch":-6.25,"roll":-2.9375},"location":"Right Ankle"},{"euler":{"heading":105.625,"pitch":-150.625,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":196.6875,"pitch":172.6875,"roll":-64.125},"location":"Right Knee"},{"euler":{"heading":36.75,"pitch":-125.0625,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.187"} +{"sensors":[{"euler":{"heading":349.6875,"pitch":135.25,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":88.1875,"pitch":106.4375,"roll":28.5625},"location":"Left Ankle"},{"euler":{"heading":22.5625,"pitch":-7.5625,"roll":0.6875},"location":"Right Ankle"},{"euler":{"heading":112.5,"pitch":-144.75,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":185.375,"pitch":-170.9375,"roll":-63.0625},"location":"Right Knee"},{"euler":{"heading":41.6875,"pitch":-132.125,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.287"} +{"sensors":[{"euler":{"heading":354.5,"pitch":131.1875,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":93.625,"pitch":107.25,"roll":33.1875},"location":"Left Ankle"},{"euler":{"heading":43.8125,"pitch":-8.5,"roll":4.875},"location":"Right Ankle"},{"euler":{"heading":113.0625,"pitch":-145.625,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":162.9375,"pitch":-138.0,"roll":-55.75},"location":"Right Knee"},{"euler":{"heading":44.5,"pitch":-139.3125,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.388"} +{"sensors":[{"euler":{"heading":1.25,"pitch":127.625,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":108.1875,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":-5.8125,"roll":10.8125},"location":"Right Ankle"},{"euler":{"heading":107.75,"pitch":-148.625,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":136.625,"pitch":-122.75,"roll":-37.8125},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-145.625,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.489"} +{"sensors":[{"euler":{"heading":6.9375,"pitch":124.3125,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":103.25,"pitch":110.3125,"roll":41.75},"location":"Left Ankle"},{"euler":{"heading":80.8125,"pitch":-2.125,"roll":11.0625},"location":"Right Ankle"},{"euler":{"heading":96.5,"pitch":-151.625,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":125.75,"pitch":-120.625,"roll":-29.3125},"location":"Right Knee"},{"euler":{"heading":48.6875,"pitch":-152.5,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.590"} +{"sensors":[{"euler":{"heading":15.375,"pitch":122.3125,"roll":20.1875},"location":"Left Knee"},{"euler":{"heading":110.4375,"pitch":115.0625,"roll":50.4375},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":0.8125,"roll":9.125},"location":"Right Ankle"},{"euler":{"heading":90.625,"pitch":-154.8125,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":134.5625,"pitch":-126.875,"roll":-31.625},"location":"Right Knee"},{"euler":{"heading":50.875,"pitch":-155.375,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.691"} +{"sensors":[{"euler":{"heading":31.125,"pitch":122.4375,"roll":8.1875},"location":"Left Knee"},{"euler":{"heading":125.375,"pitch":136.5625,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":67.9375,"pitch":0.75,"roll":7.1875},"location":"Right Ankle"},{"euler":{"heading":92.0,"pitch":-154.625,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":150.5625,"pitch":-130.3125,"roll":-39.375},"location":"Right Knee"},{"euler":{"heading":40.125,"pitch":-138.5,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.792"} +{"sensors":[{"euler":{"heading":39.75,"pitch":121.375,"roll":5.5},"location":"Left Knee"},{"euler":{"heading":127.25,"pitch":142.0,"roll":66.8125},"location":"Left Ankle"},{"euler":{"heading":63.625,"pitch":1.8125,"roll":5.5625},"location":"Right Ankle"},{"euler":{"heading":90.375,"pitch":-155.0,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":161.8125,"pitch":-135.375,"roll":-44.5},"location":"Right Knee"},{"euler":{"heading":31.25,"pitch":-117.4375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.893"} +{"sensors":[{"euler":{"heading":20.5,"pitch":132.25,"roll":16.5},"location":"Left Knee"},{"euler":{"heading":105.625,"pitch":108.3125,"roll":53.125},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":3.75,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":91.8125,"pitch":-153.8125,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":168.9375,"pitch":-139.125,"roll":-47.625},"location":"Right Knee"},{"euler":{"heading":26.1875,"pitch":-113.9375,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:37.993"} +{"sensors":[{"euler":{"heading":334.0625,"pitch":147.5,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":73.5625,"pitch":97.3125,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":54.875,"pitch":5.125,"roll":3.25},"location":"Right Ankle"},{"euler":{"heading":92.0,"pitch":-154.8125,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":175.8125,"pitch":-144.125,"roll":-51.0},"location":"Right Knee"},{"euler":{"heading":25.125,"pitch":-113.1875,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.94"} +{"sensors":[{"euler":{"heading":313.375,"pitch":158.8125,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":53.8125,"pitch":93.4375,"roll":7.625},"location":"Left Ankle"},{"euler":{"heading":49.0625,"pitch":4.8125,"roll":2.5625},"location":"Right Ankle"},{"euler":{"heading":93.25,"pitch":-157.5625,"roll":68.0},"location":"Right Hip"},{"euler":{"heading":182.5625,"pitch":-150.4375,"roll":-56.375},"location":"Right Knee"},{"euler":{"heading":31.125,"pitch":-119.5625,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.194"} +{"sensors":[{"euler":{"heading":326.9375,"pitch":152.4375,"roll":41.5},"location":"Left Knee"},{"euler":{"heading":60.0,"pitch":97.8125,"roll":11.125},"location":"Left Ankle"},{"euler":{"heading":39.75,"pitch":-0.5,"roll":0.3125},"location":"Right Ankle"},{"euler":{"heading":97.0625,"pitch":-161.1875,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":184.75,"pitch":-159.6875,"roll":-63.1875},"location":"Right Knee"},{"euler":{"heading":35.625,"pitch":-123.875,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.295"} +{"sensors":[{"euler":{"heading":334.375,"pitch":145.75,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":70.5,"pitch":98.375,"roll":21.3125},"location":"Left Ankle"},{"euler":{"heading":23.6875,"pitch":-4.0625,"roll":-0.625},"location":"Right Ankle"},{"euler":{"heading":104.5,"pitch":-154.0,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":190.4375,"pitch":-176.25,"roll":-63.3125},"location":"Right Knee"},{"euler":{"heading":34.75,"pitch":-125.75,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.396"} +{"sensors":[{"euler":{"heading":340.1875,"pitch":140.625,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":74.9375,"pitch":99.3125,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":22.25,"pitch":-5.9375,"roll":0.5625},"location":"Right Ankle"},{"euler":{"heading":109.75,"pitch":-146.8125,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":184.6875,"pitch":-170.25,"roll":-60.625},"location":"Right Knee"},{"euler":{"heading":39.0625,"pitch":-132.625,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.496"} +{"sensors":[{"euler":{"heading":345.1875,"pitch":136.0625,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":79.125,"pitch":100.125,"roll":28.4375},"location":"Left Ankle"},{"euler":{"heading":41.6875,"pitch":-7.8125,"roll":5.4375},"location":"Right Ankle"},{"euler":{"heading":113.5,"pitch":-145.6875,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":-141.4375,"roll":-53.4375},"location":"Right Knee"},{"euler":{"heading":41.625,"pitch":-137.9375,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.597"} +{"sensors":[{"euler":{"heading":351.8125,"pitch":132.25,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":84.6875,"pitch":101.375,"roll":32.6875},"location":"Left Ankle"},{"euler":{"heading":65.125,"pitch":-3.3125,"roll":7.25},"location":"Right Ankle"},{"euler":{"heading":109.6875,"pitch":-148.5625,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":137.5,"pitch":-125.4375,"roll":-38.5},"location":"Right Knee"},{"euler":{"heading":43.5,"pitch":-143.875,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.698"} +{"sensors":[{"euler":{"heading":359.625,"pitch":128.875,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":90.875,"pitch":102.875,"roll":38.4375},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":-0.8125,"roll":9.5},"location":"Right Ankle"},{"euler":{"heading":98.8125,"pitch":-150.625,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":126.8125,"pitch":-119.8125,"roll":-27.6875},"location":"Right Knee"},{"euler":{"heading":46.0625,"pitch":-150.3125,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.799"} +{"sensors":[{"euler":{"heading":9.1875,"pitch":125.875,"roll":21.0625},"location":"Left Knee"},{"euler":{"heading":99.0,"pitch":107.0,"roll":47.0625},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":-0.125,"roll":7.9375},"location":"Right Ankle"},{"euler":{"heading":90.25,"pitch":-153.875,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":134.25,"pitch":-124.125,"roll":-30.1875},"location":"Right Knee"},{"euler":{"heading":49.125,"pitch":-158.25,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:38.900"} +{"sensors":[{"euler":{"heading":24.75,"pitch":124.625,"roll":9.8125},"location":"Left Knee"},{"euler":{"heading":113.5,"pitch":124.875,"roll":62.875},"location":"Left Ankle"},{"euler":{"heading":67.5625,"pitch":-1.8125,"roll":6.125},"location":"Right Ankle"},{"euler":{"heading":94.875,"pitch":-152.8125,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":144.625,"pitch":-126.75,"roll":-36.6875},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-147.3125,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.0"} +{"sensors":[{"euler":{"heading":41.3125,"pitch":118.9375,"roll":4.3125},"location":"Left Knee"},{"euler":{"heading":121.125,"pitch":140.125,"roll":68.3125},"location":"Left Ankle"},{"euler":{"heading":64.1875,"pitch":-2.5,"roll":4.4375},"location":"Right Ankle"},{"euler":{"heading":91.125,"pitch":-154.9375,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":156.375,"pitch":-128.375,"roll":-43.9375},"location":"Right Knee"},{"euler":{"heading":34.3125,"pitch":-120.625,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.101"} +{"sensors":[{"euler":{"heading":27.75,"pitch":131.375,"roll":11.9375},"location":"Left Knee"},{"euler":{"heading":102.6875,"pitch":107.1875,"roll":55.375},"location":"Left Ankle"},{"euler":{"heading":63.0,"pitch":-3.25,"roll":3.1875},"location":"Right Ankle"},{"euler":{"heading":94.8125,"pitch":-153.5625,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":-129.625,"roll":-48.5625},"location":"Right Knee"},{"euler":{"heading":25.9375,"pitch":-115.8125,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.202"} +{"sensors":[{"euler":{"heading":342.8125,"pitch":144.9375,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":73.5625,"pitch":96.3125,"roll":27.75},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-2.8125,"roll":2.6875},"location":"Right Ankle"},{"euler":{"heading":97.125,"pitch":-153.6875,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":166.625,"pitch":-133.6875,"roll":-52.375},"location":"Right Knee"},{"euler":{"heading":24.4375,"pitch":-114.0,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.303"} +{"sensors":[{"euler":{"heading":318.3125,"pitch":156.5,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":52.0,"pitch":93.5,"roll":7.5},"location":"Left Ankle"},{"euler":{"heading":52.5,"pitch":-0.4375,"roll":1.125},"location":"Right Ankle"},{"euler":{"heading":98.4375,"pitch":-153.8125,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":174.5,"pitch":-141.25,"roll":-56.1875},"location":"Right Knee"},{"euler":{"heading":26.5,"pitch":-115.5,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.404"} +{"sensors":[{"euler":{"heading":321.5625,"pitch":157.625,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":53.9375,"pitch":99.5,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":44.625,"pitch":-0.125,"roll":-1.25},"location":"Right Ankle"},{"euler":{"heading":98.8125,"pitch":-157.25,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":181.0,"pitch":-150.8125,"roll":-60.625},"location":"Right Knee"},{"euler":{"heading":32.8125,"pitch":-121.3125,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.505"} +{"sensors":[{"euler":{"heading":337.4375,"pitch":147.4375,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":69.25,"pitch":103.0,"roll":19.3125},"location":"Left Ankle"},{"euler":{"heading":29.5,"pitch":-5.6875,"roll":-1.5},"location":"Right Ankle"},{"euler":{"heading":103.3125,"pitch":-155.0,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":186.4375,"pitch":-166.875,"roll":-66.1875},"location":"Right Knee"},{"euler":{"heading":33.9375,"pitch":-122.625,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.607"} +{"sensors":[{"euler":{"heading":347.6875,"pitch":139.375,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":79.375,"pitch":105.1875,"roll":23.875},"location":"Left Ankle"},{"euler":{"heading":18.0625,"pitch":-9.0,"roll":-2.6875},"location":"Right Ankle"},{"euler":{"heading":110.6875,"pitch":-147.6875,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":190.3125,"pitch":178.0,"roll":-65.5625},"location":"Right Knee"},{"euler":{"heading":37.8125,"pitch":-127.8125,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.708"} +{"sensors":[{"euler":{"heading":353.5625,"pitch":133.3125,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":86.0,"pitch":106.75,"roll":28.3125},"location":"Left Ankle"},{"euler":{"heading":32.25,"pitch":-7.9375,"roll":1.25},"location":"Right Ankle"},{"euler":{"heading":113.125,"pitch":-144.75,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":176.5625,"pitch":-157.8125,"roll":-61.0},"location":"Right Knee"},{"euler":{"heading":43.125,"pitch":-135.5,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.809"} +{"sensors":[{"euler":{"heading":357.5625,"pitch":129.5,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":92.1875,"pitch":108.9375,"roll":32.9375},"location":"Left Ankle"},{"euler":{"heading":56.625,"pitch":-6.25,"roll":6.375},"location":"Right Ankle"},{"euler":{"heading":109.125,"pitch":-147.6875,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":150.0625,"pitch":-131.9375,"roll":-48.0625},"location":"Right Knee"},{"euler":{"heading":44.0,"pitch":-141.25,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:39.909"} +{"sensors":[{"euler":{"heading":4.75,"pitch":125.1875,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":111.3125,"roll":37.4375},"location":"Left Ankle"},{"euler":{"heading":74.0,"pitch":-1.9375,"roll":9.25},"location":"Right Ankle"},{"euler":{"heading":102.0,"pitch":-151.25,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":131.8125,"pitch":-122.25,"roll":-34.1875},"location":"Right Knee"},{"euler":{"heading":46.25,"pitch":-147.0625,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.10"} +{"sensors":[{"euler":{"heading":10.5,"pitch":122.375,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":103.9375,"pitch":114.125,"roll":44.25},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":0.125,"roll":8.6875},"location":"Right Ankle"},{"euler":{"heading":93.5,"pitch":-154.3125,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":129.3125,"pitch":-123.3125,"roll":-29.75},"location":"Right Knee"},{"euler":{"heading":48.625,"pitch":-153.8125,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.111"} +{"sensors":[{"euler":{"heading":20.75,"pitch":122.1875,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":108.9375,"pitch":119.9375,"roll":56.3125},"location":"Left Ankle"},{"euler":{"heading":71.75,"pitch":0.375,"roll":6.9375},"location":"Right Ankle"},{"euler":{"heading":91.0625,"pitch":-155.375,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":143.5,"pitch":-128.625,"roll":-36.6875},"location":"Right Knee"},{"euler":{"heading":48.1875,"pitch":-150.75,"roll":66.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.212"} +{"sensors":[{"euler":{"heading":36.25,"pitch":120.125,"roll":7.375},"location":"Left Knee"},{"euler":{"heading":128.0625,"pitch":143.0625,"roll":67.3125},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":0.25,"roll":5.75},"location":"Right Ankle"},{"euler":{"heading":89.875,"pitch":-155.8125,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":155.875,"pitch":-131.75,"roll":-43.3125},"location":"Right Knee"},{"euler":{"heading":35.875,"pitch":-130.8125,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.312"} +{"sensors":[{"euler":{"heading":29.0,"pitch":127.6875,"roll":11.125},"location":"Left Knee"},{"euler":{"heading":114.6875,"pitch":113.4375,"roll":62.125},"location":"Left Ankle"},{"euler":{"heading":63.0,"pitch":0.6875,"roll":4.25},"location":"Right Ankle"},{"euler":{"heading":89.875,"pitch":-155.6875,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":163.625,"pitch":-135.625,"roll":-47.3125},"location":"Right Knee"},{"euler":{"heading":26.8125,"pitch":-119.1875,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.413"} +{"sensors":[{"euler":{"heading":348.3125,"pitch":140.875,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":95.75,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":59.875,"pitch":3.1875,"roll":1.1875},"location":"Right Ankle"},{"euler":{"heading":91.5,"pitch":-154.375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":171.5,"pitch":-141.1875,"roll":-50.5625},"location":"Right Knee"},{"euler":{"heading":22.4375,"pitch":-115.125,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.515"} +{"sensors":[{"euler":{"heading":315.5625,"pitch":155.1875,"roll":41.375},"location":"Left Knee"},{"euler":{"heading":55.125,"pitch":93.75,"roll":11.5625},"location":"Left Ankle"},{"euler":{"heading":55.0,"pitch":4.375,"roll":1.125},"location":"Right Ankle"},{"euler":{"heading":92.9375,"pitch":-154.8125,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":178.3125,"pitch":-146.8125,"roll":-54.0},"location":"Right Knee"},{"euler":{"heading":24.0,"pitch":-116.0625,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.616"} +{"sensors":[{"euler":{"heading":314.1875,"pitch":159.4375,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":50.75,"pitch":96.375,"roll":5.1875},"location":"Left Ankle"},{"euler":{"heading":46.25,"pitch":3.25,"roll":-1.0},"location":"Right Ankle"},{"euler":{"heading":96.125,"pitch":-157.6875,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":183.75,"pitch":-155.3125,"roll":-60.0625},"location":"Right Knee"},{"euler":{"heading":30.9375,"pitch":-122.375,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.720"} +{"sensors":[{"euler":{"heading":331.25,"pitch":149.1875,"roll":41.5625},"location":"Left Knee"},{"euler":{"heading":69.0625,"pitch":102.875,"roll":15.5},"location":"Left Ankle"},{"euler":{"heading":34.375,"pitch":-3.5,"roll":-0.875},"location":"Right Ankle"},{"euler":{"heading":100.75,"pitch":-157.5625,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":-167.5,"roll":-65.3125},"location":"Right Knee"},{"euler":{"heading":33.5,"pitch":-124.375,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.821"} +{"sensors":[{"euler":{"heading":342.625,"pitch":140.8125,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":77.1875,"pitch":105.125,"roll":23.375},"location":"Left Ankle"},{"euler":{"heading":18.0625,"pitch":-7.4375,"roll":-2.75},"location":"Right Ankle"},{"euler":{"heading":107.875,"pitch":-149.0,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":193.4375,"pitch":176.1875,"roll":-64.4375},"location":"Right Knee"},{"euler":{"heading":36.125,"pitch":-125.875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:40.922"} +{"sensors":[{"euler":{"heading":349.875,"pitch":134.4375,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":107.1875,"roll":28.25},"location":"Left Ankle"},{"euler":{"heading":28.9375,"pitch":-9.8125,"roll":1.0625},"location":"Right Ankle"},{"euler":{"heading":112.3125,"pitch":-146.125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":177.6875,"pitch":-161.1875,"roll":-61.875},"location":"Right Knee"},{"euler":{"heading":40.3125,"pitch":-132.9375,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.23"} +{"sensors":[{"euler":{"heading":355.3125,"pitch":130.125,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":90.1875,"pitch":107.625,"roll":31.625},"location":"Left Ankle"},{"euler":{"heading":52.3125,"pitch":-9.0,"roll":6.0625},"location":"Right Ankle"},{"euler":{"heading":111.625,"pitch":-147.4375,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":151.375,"pitch":-132.3125,"roll":-49.9375},"location":"Right Knee"},{"euler":{"heading":42.6875,"pitch":-141.375,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.123"} +{"sensors":[{"euler":{"heading":1.125,"pitch":126.875,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":94.0,"pitch":108.75,"roll":35.625},"location":"Left Ankle"},{"euler":{"heading":75.0,"pitch":-1.5625,"roll":6.375},"location":"Right Ankle"},{"euler":{"heading":103.5625,"pitch":-150.375,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":133.3125,"pitch":-123.5,"roll":-34.875},"location":"Right Knee"},{"euler":{"heading":44.25,"pitch":-146.375,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.225"} +{"sensors":[{"euler":{"heading":5.9375,"pitch":124.3125,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":110.5,"roll":42.0},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":0.0625,"roll":8.125},"location":"Right Ankle"},{"euler":{"heading":90.9375,"pitch":-154.9375,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":129.0,"pitch":-122.3125,"roll":-28.9375},"location":"Right Knee"},{"euler":{"heading":46.6875,"pitch":-152.9375,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.325"} +{"sensors":[{"euler":{"heading":14.5,"pitch":123.375,"roll":19.5625},"location":"Left Knee"},{"euler":{"heading":105.5,"pitch":114.0,"roll":52.625},"location":"Left Ankle"},{"euler":{"heading":71.9375,"pitch":1.9375,"roll":6.3125},"location":"Right Ankle"},{"euler":{"heading":87.0,"pitch":-156.5625,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":142.25,"pitch":-128.8125,"roll":-34.25},"location":"Right Knee"},{"euler":{"heading":49.0625,"pitch":-154.25,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.426"} +{"sensors":[{"euler":{"heading":30.4375,"pitch":123.1875,"roll":8.6875},"location":"Left Knee"},{"euler":{"heading":125.6875,"pitch":137.25,"roll":66.125},"location":"Left Ankle"},{"euler":{"heading":67.5625,"pitch":3.4375,"roll":4.3125},"location":"Right Ankle"},{"euler":{"heading":86.1875,"pitch":-156.9375,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":156.6875,"pitch":-133.5,"roll":-40.8125},"location":"Right Knee"},{"euler":{"heading":36.5,"pitch":-132.1875,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.527"} +{"sensors":[{"euler":{"heading":33.5,"pitch":125.8125,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":117.5625,"pitch":116.5,"roll":63.1875},"location":"Left Ankle"},{"euler":{"heading":63.0,"pitch":3.6875,"roll":2.9375},"location":"Right Ankle"},{"euler":{"heading":87.25,"pitch":-156.625,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":-137.0,"roll":-45.75},"location":"Right Knee"},{"euler":{"heading":27.625,"pitch":-120.125,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.627"} +{"sensors":[{"euler":{"heading":4.125,"pitch":138.6875,"roll":23.125},"location":"Left Knee"},{"euler":{"heading":87.0,"pitch":101.0,"roll":40.125},"location":"Left Ankle"},{"euler":{"heading":59.1875,"pitch":4.5625,"roll":2.0},"location":"Right Ankle"},{"euler":{"heading":90.3125,"pitch":-155.125,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":171.6875,"pitch":-140.5,"roll":-49.5},"location":"Right Knee"},{"euler":{"heading":24.6875,"pitch":-115.4375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.727"} +{"sensors":[{"euler":{"heading":326.6875,"pitch":153.125,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":57.6875,"pitch":99.4375,"roll":12.8125},"location":"Left Ankle"},{"euler":{"heading":54.125,"pitch":5.0,"roll":0.75},"location":"Right Ankle"},{"euler":{"heading":92.875,"pitch":-155.8125,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":177.8125,"pitch":-145.6875,"roll":-53.5},"location":"Right Knee"},{"euler":{"heading":26.5,"pitch":-117.4375,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.829"} +{"sensors":[{"euler":{"heading":317.875,"pitch":159.1875,"roll":42.125},"location":"Left Knee"},{"euler":{"heading":50.375,"pitch":99.5,"roll":3.75},"location":"Left Ankle"},{"euler":{"heading":47.125,"pitch":4.1875,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":96.0625,"pitch":-157.8125,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":183.9375,"pitch":-154.0625,"roll":-58.75},"location":"Right Knee"},{"euler":{"heading":33.875,"pitch":-123.0625,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:41.929"} +{"sensors":[{"euler":{"heading":331.875,"pitch":149.5625,"roll":42.4375},"location":"Left Knee"},{"euler":{"heading":67.375,"pitch":103.1875,"roll":14.3125},"location":"Left Ankle"},{"euler":{"heading":34.5,"pitch":-3.0,"roll":-2.25},"location":"Right Ankle"},{"euler":{"heading":101.3125,"pitch":-159.0625,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":186.0,"pitch":-166.4375,"roll":-66.0},"location":"Right Knee"},{"euler":{"heading":36.0,"pitch":-127.0,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.30"} +{"sensors":[{"euler":{"heading":342.5625,"pitch":140.5,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":77.1875,"pitch":105.9375,"roll":22.0625},"location":"Left Ankle"},{"euler":{"heading":17.1875,"pitch":-3.75,"roll":-5.6875},"location":"Right Ankle"},{"euler":{"heading":108.875,"pitch":-151.0,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":194.0625,"pitch":177.0625,"roll":-64.625},"location":"Right Knee"},{"euler":{"heading":39.0,"pitch":-128.3125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.130"} +{"sensors":[{"euler":{"heading":348.9375,"pitch":134.9375,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":91.125,"pitch":107.8125,"roll":31.1875},"location":"Left Ankle"},{"euler":{"heading":24.5,"pitch":-8.0,"roll":-1.0},"location":"Right Ankle"},{"euler":{"heading":114.8125,"pitch":-147.125,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":178.8125,"pitch":-163.75,"roll":-62.4375},"location":"Right Knee"},{"euler":{"heading":42.6875,"pitch":-135.5,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.230"} +{"sensors":[{"euler":{"heading":353.3125,"pitch":131.5625,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":90.625,"pitch":106.5625,"roll":32.8125},"location":"Left Ankle"},{"euler":{"heading":48.5,"pitch":-7.375,"roll":3.5625},"location":"Right Ankle"},{"euler":{"heading":114.5625,"pitch":-148.3125,"roll":43.0},"location":"Right Hip"},{"euler":{"heading":154.375,"pitch":-132.4375,"roll":-50.6875},"location":"Right Knee"},{"euler":{"heading":44.8125,"pitch":-142.8125,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.331"} +{"sensors":[{"euler":{"heading":359.0,"pitch":128.25,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":94.9375,"pitch":107.5,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":72.4375,"pitch":-3.1875,"roll":6.9375},"location":"Right Ankle"},{"euler":{"heading":105.6875,"pitch":-150.5,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":131.3125,"pitch":-121.5625,"roll":-35.25},"location":"Right Knee"},{"euler":{"heading":45.8125,"pitch":-148.5625,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.431"} +{"sensors":[{"euler":{"heading":5.125,"pitch":125.375,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":102.0,"pitch":109.6875,"roll":42.75},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-2.125,"roll":8.875},"location":"Right Ankle"},{"euler":{"heading":93.5625,"pitch":-153.8125,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":124.25,"pitch":-118.8125,"roll":-28.125},"location":"Right Knee"},{"euler":{"heading":48.6875,"pitch":-156.5625,"roll":66.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.531"} +{"sensors":[{"euler":{"heading":13.1875,"pitch":124.0,"roll":20.25},"location":"Left Knee"},{"euler":{"heading":107.6875,"pitch":113.125,"roll":52.0625},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":2.1875,"roll":6.8125},"location":"Right Ankle"},{"euler":{"heading":88.1875,"pitch":-155.75,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":134.25,"pitch":-128.0,"roll":-30.5625},"location":"Right Knee"},{"euler":{"heading":49.625,"pitch":-160.625,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.632"} +{"sensors":[{"euler":{"heading":30.375,"pitch":122.1875,"roll":9.5},"location":"Left Knee"},{"euler":{"heading":126.375,"pitch":137.25,"roll":64.6875},"location":"Left Ankle"},{"euler":{"heading":67.0625,"pitch":2.6875,"roll":4.5625},"location":"Right Ankle"},{"euler":{"heading":91.4375,"pitch":-154.25,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":147.1875,"pitch":-132.3125,"roll":-37.25},"location":"Right Knee"},{"euler":{"heading":41.375,"pitch":-144.1875,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.732"} +{"sensors":[{"euler":{"heading":37.125,"pitch":124.5625,"roll":5.6875},"location":"Left Knee"},{"euler":{"heading":122.0625,"pitch":129.625,"roll":66.625},"location":"Left Ankle"},{"euler":{"heading":64.625,"pitch":4.4375,"roll":2.75},"location":"Right Ankle"},{"euler":{"heading":86.5625,"pitch":-155.4375,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":160.1875,"pitch":-136.9375,"roll":-41.6875},"location":"Right Knee"},{"euler":{"heading":29.875,"pitch":-121.5,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.833"} +{"sensors":[{"euler":{"heading":18.125,"pitch":133.375,"roll":16.5625},"location":"Left Knee"},{"euler":{"heading":100.75,"pitch":103.0,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":60.9375,"pitch":5.25,"roll":1.1875},"location":"Right Ankle"},{"euler":{"heading":88.375,"pitch":-154.6875,"roll":79.9375},"location":"Right Hip"},{"euler":{"heading":169.9375,"pitch":-139.9375,"roll":-47.0},"location":"Right Knee"},{"euler":{"heading":23.125,"pitch":-116.5625,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:42.934"} +{"sensors":[{"euler":{"heading":333.9375,"pitch":147.875,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":69.0625,"pitch":96.875,"roll":23.8125},"location":"Left Ankle"},{"euler":{"heading":57.8125,"pitch":3.75,"roll":1.5},"location":"Right Ankle"},{"euler":{"heading":89.25,"pitch":-156.9375,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":174.4375,"pitch":-142.8125,"roll":-51.1875},"location":"Right Knee"},{"euler":{"heading":21.9375,"pitch":-114.6875,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.34"} +{"sensors":[{"euler":{"heading":313.25,"pitch":159.25,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":49.1875,"pitch":93.0,"roll":4.1875},"location":"Left Ankle"},{"euler":{"heading":51.3125,"pitch":3.125,"roll":-0.75},"location":"Right Ankle"},{"euler":{"heading":92.25,"pitch":-159.8125,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":178.8125,"pitch":-146.9375,"roll":-56.3125},"location":"Right Knee"},{"euler":{"heading":28.3125,"pitch":-119.5,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.136"} +{"sensors":[{"euler":{"heading":327.1875,"pitch":154.1875,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":56.875,"pitch":98.875,"roll":8.25},"location":"Left Ankle"},{"euler":{"heading":42.125,"pitch":-0.5,"roll":-2.0},"location":"Right Ankle"},{"euler":{"heading":96.3125,"pitch":-164.1875,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":181.9375,"pitch":-154.9375,"roll":-62.375},"location":"Right Knee"},{"euler":{"heading":36.8125,"pitch":-124.1875,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.237"} +{"sensors":[{"euler":{"heading":339.625,"pitch":145.125,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":73.875,"pitch":103.1875,"roll":21.3125},"location":"Left Ankle"},{"euler":{"heading":23.6875,"pitch":-4.75,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":106.125,"pitch":-156.25,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":187.75,"pitch":-175.5,"roll":-66.25},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-125.1875,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.337"} +{"sensors":[{"euler":{"heading":347.5,"pitch":138.0625,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":80.0,"pitch":104.125,"roll":24.8125},"location":"Left Ankle"},{"euler":{"heading":17.25,"pitch":-8.5625,"roll":-2.875},"location":"Right Ankle"},{"euler":{"heading":113.4375,"pitch":-147.5625,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":188.25,"pitch":-178.5,"roll":-63.6875},"location":"Right Knee"},{"euler":{"heading":39.5,"pitch":-130.5,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.439"} +{"sensors":[{"euler":{"heading":352.1875,"pitch":132.4375,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":88.25,"pitch":105.8125,"roll":30.0625},"location":"Left Ankle"},{"euler":{"heading":36.75,"pitch":-8.1875,"roll":2.0},"location":"Right Ankle"},{"euler":{"heading":114.125,"pitch":-145.5,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":165.75,"pitch":-147.75,"roll":-57.375},"location":"Right Knee"},{"euler":{"heading":44.0,"pitch":-138.75,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.540"} +{"sensors":[{"euler":{"heading":358.8125,"pitch":128.25,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":92.5,"pitch":107.0625,"roll":33.125},"location":"Left Ankle"},{"euler":{"heading":61.625,"pitch":-6.25,"roll":6.9375},"location":"Right Ankle"},{"euler":{"heading":108.0,"pitch":-149.5,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":141.0625,"pitch":-126.0625,"roll":-43.0},"location":"Right Knee"},{"euler":{"heading":46.125,"pitch":-145.5625,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.641"} +{"sensors":[{"euler":{"heading":4.9375,"pitch":124.875,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":97.375,"pitch":109.0625,"roll":37.625},"location":"Left Ankle"},{"euler":{"heading":77.6875,"pitch":-1.4375,"roll":9.9375},"location":"Right Ankle"},{"euler":{"heading":97.625,"pitch":-152.4375,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":128.3125,"pitch":-120.9375,"roll":-30.8125},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-150.4375,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.741"} +{"sensors":[{"euler":{"heading":11.1875,"pitch":122.6875,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":104.0625,"pitch":111.75,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":1.625,"roll":8.0},"location":"Right Ankle"},{"euler":{"heading":88.5,"pitch":-156.0625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":132.625,"pitch":-125.0625,"roll":-30.875},"location":"Right Knee"},{"euler":{"heading":48.875,"pitch":-157.5,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.842"} +{"sensors":[{"euler":{"heading":23.375,"pitch":122.25,"roll":13.625},"location":"Left Knee"},{"euler":{"heading":110.1875,"pitch":121.375,"roll":57.375},"location":"Left Ankle"},{"euler":{"heading":69.0625,"pitch":2.3125,"roll":5.625},"location":"Right Ankle"},{"euler":{"heading":90.125,"pitch":-155.6875,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":146.4375,"pitch":-131.375,"roll":-36.6875},"location":"Right Knee"},{"euler":{"heading":45.375,"pitch":-149.8125,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:43.943"} +{"sensors":[{"euler":{"heading":39.8125,"pitch":118.375,"roll":6.4375},"location":"Left Knee"},{"euler":{"heading":123.8125,"pitch":139.125,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":65.4375,"pitch":4.6875,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":88.125,"pitch":-155.875,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":160.75,"pitch":-135.8125,"roll":-42.875},"location":"Right Knee"},{"euler":{"heading":36.5,"pitch":-123.4375,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.44"} +{"sensors":[{"euler":{"heading":27.6875,"pitch":129.1875,"roll":13.3125},"location":"Left Knee"},{"euler":{"heading":108.5625,"pitch":96.3125,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":60.75,"pitch":5.4375,"roll":2.5625},"location":"Right Ankle"},{"euler":{"heading":90.0625,"pitch":-154.8125,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":168.25,"pitch":-139.0,"roll":-47.125},"location":"Right Knee"},{"euler":{"heading":26.75,"pitch":-116.875,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.145"} +{"sensors":[{"euler":{"heading":346.0,"pitch":143.3125,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":76.125,"pitch":99.625,"roll":28.5},"location":"Left Ankle"},{"euler":{"heading":56.9375,"pitch":4.6875,"roll":2.1875},"location":"Right Ankle"},{"euler":{"heading":92.1875,"pitch":-154.9375,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":173.0625,"pitch":-142.25,"roll":-51.0625},"location":"Right Knee"},{"euler":{"heading":24.75,"pitch":-115.6875,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.246"} +{"sensors":[{"euler":{"heading":324.6875,"pitch":154.6875,"roll":40.375},"location":"Left Knee"},{"euler":{"heading":52.3125,"pitch":97.3125,"roll":5.375},"location":"Left Ankle"},{"euler":{"heading":51.3125,"pitch":4.9375,"roll":0.5625},"location":"Right Ankle"},{"euler":{"heading":93.75,"pitch":-157.1875,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":179.3125,"pitch":-147.25,"roll":-55.5},"location":"Right Knee"},{"euler":{"heading":29.0,"pitch":-119.125,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.347"} +{"sensors":[{"euler":{"heading":326.1875,"pitch":154.9375,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":54.6875,"pitch":99.5625,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":43.9375,"pitch":3.3125,"roll":-1.9375},"location":"Right Ankle"},{"euler":{"heading":95.1875,"pitch":-161.1875,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":184.4375,"pitch":-155.0625,"roll":-60.6875},"location":"Right Knee"},{"euler":{"heading":34.8125,"pitch":-123.4375,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.448"} +{"sensors":[{"euler":{"heading":340.4375,"pitch":144.0,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":68.4375,"pitch":102.6875,"roll":17.5625},"location":"Left Ankle"},{"euler":{"heading":30.8125,"pitch":-2.0625,"roll":-1.1875},"location":"Right Ankle"},{"euler":{"heading":99.6875,"pitch":-159.1875,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":189.6875,"pitch":-171.875,"roll":-64.8125},"location":"Right Knee"},{"euler":{"heading":34.8125,"pitch":-125.0,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.549"} +{"sensors":[{"euler":{"heading":348.5,"pitch":137.5625,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":75.8125,"pitch":103.9375,"roll":22.6875},"location":"Left Ankle"},{"euler":{"heading":19.8125,"pitch":-4.6875,"roll":-1.375},"location":"Right Ankle"},{"euler":{"heading":106.5625,"pitch":-149.875,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":195.9375,"pitch":173.625,"roll":-63.0},"location":"Right Knee"},{"euler":{"heading":38.75,"pitch":-130.9375,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.650"} +{"sensors":[{"euler":{"heading":354.1875,"pitch":132.0625,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":84.5625,"pitch":105.75,"roll":27.4375},"location":"Left Ankle"},{"euler":{"heading":34.75,"pitch":-4.5,"roll":1.375},"location":"Right Ankle"},{"euler":{"heading":110.8125,"pitch":-146.125,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":177.1875,"pitch":-161.25,"roll":-59.4375},"location":"Right Knee"},{"euler":{"heading":42.0,"pitch":-136.625,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.751"} +{"sensors":[{"euler":{"heading":0.8125,"pitch":127.1875,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":90.5,"pitch":107.9375,"roll":31.0},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-4.0,"roll":5.6875},"location":"Right Ankle"},{"euler":{"heading":108.375,"pitch":-149.0,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":150.5625,"pitch":-133.75,"roll":-48.25},"location":"Right Knee"},{"euler":{"heading":43.8125,"pitch":-143.25,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.852"} +{"sensors":[{"euler":{"heading":7.9375,"pitch":123.25,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":95.625,"pitch":110.0625,"roll":35.1875},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":-1.5,"roll":8.4375},"location":"Right Ankle"},{"euler":{"heading":98.8125,"pitch":-153.0625,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":128.5,"pitch":-121.6875,"roll":-33.125},"location":"Right Knee"},{"euler":{"heading":46.9375,"pitch":-149.5625,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:44.952"} +{"sensors":[{"euler":{"heading":13.9375,"pitch":121.25,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":101.6875,"pitch":112.25,"roll":41.6875},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":0.3125,"roll":7.9375},"location":"Right Ankle"},{"euler":{"heading":89.8125,"pitch":-156.3125,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":128.125,"pitch":-122.1875,"roll":-29.8125},"location":"Right Knee"},{"euler":{"heading":49.625,"pitch":-158.0625,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.53"} +{"sensors":[{"euler":{"heading":24.75,"pitch":122.5625,"roll":12.625},"location":"Left Knee"},{"euler":{"heading":106.5625,"pitch":117.4375,"roll":54.5},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":0.75,"roll":5.125},"location":"Right Ankle"},{"euler":{"heading":92.0,"pitch":-155.75,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":142.75,"pitch":-128.625,"roll":-36.6875},"location":"Right Knee"},{"euler":{"heading":47.0,"pitch":-151.6875,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.154"} +{"sensors":[{"euler":{"heading":40.875,"pitch":119.5625,"roll":4.75},"location":"Left Knee"},{"euler":{"heading":122.5,"pitch":137.9375,"roll":64.375},"location":"Left Ankle"},{"euler":{"heading":66.5,"pitch":1.9375,"roll":4.375},"location":"Right Ankle"},{"euler":{"heading":87.0625,"pitch":-157.625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":155.25,"pitch":-132.0,"roll":-42.5},"location":"Right Knee"},{"euler":{"heading":35.0,"pitch":-128.375,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.254"} +{"sensors":[{"euler":{"heading":31.875,"pitch":127.9375,"roll":10.5625},"location":"Left Knee"},{"euler":{"heading":111.6875,"pitch":113.3125,"roll":58.1875},"location":"Left Ankle"},{"euler":{"heading":64.25,"pitch":3.875,"roll":1.8125},"location":"Right Ankle"},{"euler":{"heading":89.5,"pitch":-156.5,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":165.5,"pitch":-137.25,"roll":-46.8125},"location":"Right Knee"},{"euler":{"heading":25.25,"pitch":-118.75,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.356"} +{"sensors":[{"euler":{"heading":347.5,"pitch":142.5,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":78.375,"pitch":98.0625,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":61.8125,"pitch":5.3125,"roll":0.875},"location":"Right Ankle"},{"euler":{"heading":90.1875,"pitch":-155.875,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":172.125,"pitch":-142.25,"roll":-50.25},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-114.9375,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.457"} +{"sensors":[{"euler":{"heading":317.5625,"pitch":156.0625,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":51.0625,"pitch":94.0625,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":55.8125,"pitch":6.0625,"roll":-0.1875},"location":"Right Ankle"},{"euler":{"heading":92.25,"pitch":-157.0,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":179.1875,"pitch":-148.0625,"roll":-54.125},"location":"Right Knee"},{"euler":{"heading":24.125,"pitch":-117.6875,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.557"} +{"sensors":[{"euler":{"heading":317.125,"pitch":158.8125,"roll":42.25},"location":"Left Knee"},{"euler":{"heading":49.5625,"pitch":96.75,"roll":2.8125},"location":"Left Ankle"},{"euler":{"heading":46.9375,"pitch":4.6875,"roll":-2.5625},"location":"Right Ankle"},{"euler":{"heading":94.25,"pitch":-161.4375,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":183.8125,"pitch":-154.625,"roll":-59.1875},"location":"Right Knee"},{"euler":{"heading":30.375,"pitch":-122.1875,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.658"} +{"sensors":[{"euler":{"heading":333.8125,"pitch":148.3125,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":65.0625,"pitch":99.875,"roll":15.25},"location":"Left Ankle"},{"euler":{"heading":17.8125,"pitch":-4.5625,"roll":-1.625},"location":"Right Ankle"},{"euler":{"heading":99.0625,"pitch":-161.0,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":185.5625,"pitch":-170.75,"roll":-66.375},"location":"Right Knee"},{"euler":{"heading":31.375,"pitch":-123.875,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.758"} +{"sensors":[{"euler":{"heading":342.3125,"pitch":141.3125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":71.6875,"pitch":101.0625,"roll":19.875},"location":"Left Ankle"},{"euler":{"heading":20.0625,"pitch":-5.125,"roll":-1.9375},"location":"Right Ankle"},{"euler":{"heading":106.0625,"pitch":-149.875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":195.75,"pitch":176.625,"roll":-63.5625},"location":"Right Knee"},{"euler":{"heading":34.0,"pitch":-128.3125,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.859"} +{"sensors":[{"euler":{"heading":346.5625,"pitch":136.8125,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":76.3125,"pitch":101.6875,"roll":24.8125},"location":"Left Ankle"},{"euler":{"heading":32.3125,"pitch":-4.5,"roll":1.0625},"location":"Right Ankle"},{"euler":{"heading":110.9375,"pitch":-145.875,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":177.6875,"pitch":-160.6875,"roll":-59.625},"location":"Right Knee"},{"euler":{"heading":36.9375,"pitch":-134.125,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:45.959"} +{"sensors":[{"euler":{"heading":352.625,"pitch":132.25,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":102.5,"roll":29.125},"location":"Left Ankle"},{"euler":{"heading":56.5,"pitch":-5.1875,"roll":5.8125},"location":"Right Ankle"},{"euler":{"heading":109.3125,"pitch":-147.375,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":147.0625,"pitch":-131.0625,"roll":-46.375},"location":"Right Knee"},{"euler":{"heading":39.5625,"pitch":-139.1875,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.59"} +{"sensors":[{"euler":{"heading":0.9375,"pitch":127.1875,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":90.0625,"pitch":105.6875,"roll":34.125},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":-1.5625,"roll":6.125},"location":"Right Ankle"},{"euler":{"heading":102.5,"pitch":-151.875,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":131.75,"pitch":-120.625,"roll":-33.125},"location":"Right Knee"},{"euler":{"heading":42.25,"pitch":-143.5625,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.159"} +{"sensors":[{"euler":{"heading":7.625,"pitch":124.3125,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":108.0625,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":-0.4375,"roll":7.9375},"location":"Right Ankle"},{"euler":{"heading":90.6875,"pitch":-156.1875,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":124.9375,"pitch":-119.5,"roll":-27.5},"location":"Right Knee"},{"euler":{"heading":44.5,"pitch":-150.6875,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.260"} +{"sensors":[{"euler":{"heading":17.375,"pitch":122.0625,"roll":17.0625},"location":"Left Knee"},{"euler":{"heading":103.875,"pitch":113.6875,"roll":50.5625},"location":"Left Ankle"},{"euler":{"heading":73.75,"pitch":2.9375,"roll":5.9375},"location":"Right Ankle"},{"euler":{"heading":91.3125,"pitch":-155.625,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":138.375,"pitch":-127.9375,"roll":-32.875},"location":"Right Knee"},{"euler":{"heading":47.5,"pitch":-154.5625,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.361"} +{"sensors":[{"euler":{"heading":37.5625,"pitch":120.9375,"roll":6.1875},"location":"Left Knee"},{"euler":{"heading":125.375,"pitch":138.125,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":66.875,"pitch":4.9375,"roll":4.3125},"location":"Right Ankle"},{"euler":{"heading":93.9375,"pitch":-153.9375,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":150.25,"pitch":-131.875,"roll":-38.875},"location":"Right Knee"},{"euler":{"heading":33.8125,"pitch":-133.9375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.462"} +{"sensors":[{"euler":{"heading":38.0,"pitch":124.5,"roll":7.8125},"location":"Left Knee"},{"euler":{"heading":115.4375,"pitch":121.375,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":63.1875,"pitch":5.625,"roll":1.625},"location":"Right Ankle"},{"euler":{"heading":91.9375,"pitch":-154.1875,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":162.1875,"pitch":-136.125,"roll":-44.25},"location":"Right Knee"},{"euler":{"heading":26.6875,"pitch":-118.0,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.563"} +{"sensors":[{"euler":{"heading":1.0,"pitch":139.0,"roll":24.0},"location":"Left Knee"},{"euler":{"heading":84.25,"pitch":100.25,"roll":37.375},"location":"Left Ankle"},{"euler":{"heading":61.5,"pitch":6.1875,"roll":0.8125},"location":"Right Ankle"},{"euler":{"heading":94.625,"pitch":-153.0625,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":168.8125,"pitch":-138.8125,"roll":-48.375},"location":"Right Knee"},{"euler":{"heading":21.9375,"pitch":-114.8125,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.664"} +{"sensors":[{"euler":{"heading":327.25,"pitch":151.625,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":56.125,"pitch":97.25,"roll":11.6875},"location":"Left Ankle"},{"euler":{"heading":56.9375,"pitch":6.125,"roll":0.5625},"location":"Right Ankle"},{"euler":{"heading":96.375,"pitch":-154.375,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":174.125,"pitch":-142.8125,"roll":-51.75},"location":"Right Knee"},{"euler":{"heading":18.25,"pitch":-121.25,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.764"} +{"sensors":[{"euler":{"heading":322.1875,"pitch":156.875,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":49.8125,"pitch":96.6875,"roll":3.375},"location":"Left Ankle"},{"euler":{"heading":50.1875,"pitch":6.5,"roll":-2.0},"location":"Right Ankle"},{"euler":{"heading":96.875,"pitch":-156.625,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":181.75,"pitch":-149.6875,"roll":-57.125},"location":"Right Knee"},{"euler":{"heading":28.875,"pitch":-120.8125,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.865"} +{"sensors":[{"euler":{"heading":332.6875,"pitch":149.5625,"roll":42.0},"location":"Left Knee"},{"euler":{"heading":60.875,"pitch":101.375,"roll":10.625},"location":"Left Ankle"},{"euler":{"heading":39.625,"pitch":1.1875,"roll":-3.0},"location":"Right Ankle"},{"euler":{"heading":99.3125,"pitch":-160.75,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":185.125,"pitch":-158.5625,"roll":-63.8125},"location":"Right Knee"},{"euler":{"heading":32.5625,"pitch":-124.875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:46.967"} +{"sensors":[{"euler":{"heading":341.5625,"pitch":141.4375,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":71.1875,"pitch":101.125,"roll":20.25},"location":"Left Ankle"},{"euler":{"heading":21.3125,"pitch":-1.875,"roll":-4.125},"location":"Right Ankle"},{"euler":{"heading":105.25,"pitch":-153.3125,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":191.375,"pitch":-179.25,"roll":-64.0625},"location":"Right Knee"},{"euler":{"heading":32.875,"pitch":-126.5625,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.71"} +{"sensors":[{"euler":{"heading":346.5625,"pitch":137.0,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":77.0,"pitch":102.0,"roll":24.125},"location":"Left Ankle"},{"euler":{"heading":25.125,"pitch":-2.8125,"roll":-1.5},"location":"Right Ankle"},{"euler":{"heading":110.3125,"pitch":-148.0625,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":183.6875,"pitch":-168.25,"roll":-61.5},"location":"Right Knee"},{"euler":{"heading":36.3125,"pitch":-134.5625,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.172"} +{"sensors":[{"euler":{"heading":352.375,"pitch":132.1875,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":102.375,"roll":28.3125},"location":"Left Ankle"},{"euler":{"heading":63.3125,"pitch":-5.4375,"roll":3.25},"location":"Right Ankle"},{"euler":{"heading":111.1875,"pitch":-146.6875,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":157.25,"pitch":-136.6875,"roll":-53.0},"location":"Right Knee"},{"euler":{"heading":38.9375,"pitch":-141.9375,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.272"} +{"sensors":[{"euler":{"heading":0.9375,"pitch":127.75,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":88.625,"pitch":105.0,"roll":32.875},"location":"Left Ankle"},{"euler":{"heading":71.8125,"pitch":-2.125,"roll":5.6875},"location":"Right Ankle"},{"euler":{"heading":103.625,"pitch":-151.0,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":135.1875,"pitch":-122.75,"roll":-37.125},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-146.5625,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.372"} +{"sensors":[{"euler":{"heading":8.125,"pitch":124.375,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":95.4375,"pitch":107.4375,"roll":38.75},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":-1.0625,"roll":7.6875},"location":"Right Ankle"},{"euler":{"heading":91.6875,"pitch":-155.5,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":124.4375,"pitch":-119.5,"roll":-27.3125},"location":"Right Knee"},{"euler":{"heading":45.0,"pitch":-153.8125,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.473"} +{"sensors":[{"euler":{"heading":17.625,"pitch":122.75,"roll":18.75},"location":"Left Knee"},{"euler":{"heading":100.6875,"pitch":111.4375,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":75.5,"pitch":1.9375,"roll":5.75},"location":"Right Ankle"},{"euler":{"heading":88.9375,"pitch":-156.8125,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":135.8125,"pitch":-126.5,"roll":-31.375},"location":"Right Knee"},{"euler":{"heading":48.0625,"pitch":-158.0,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.574"} +{"sensors":[{"euler":{"heading":33.5625,"pitch":124.25,"roll":6.625},"location":"Left Knee"},{"euler":{"heading":117.4375,"pitch":129.5625,"roll":62.625},"location":"Left Ankle"},{"euler":{"heading":69.125,"pitch":2.375,"roll":4.125},"location":"Right Ankle"},{"euler":{"heading":88.375,"pitch":-156.625,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":149.75,"pitch":-131.125,"roll":-37.8125},"location":"Right Knee"},{"euler":{"heading":33.25,"pitch":-139.3125,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.674"} +{"sensors":[{"euler":{"heading":38.75,"pitch":124.125,"roll":5.4375},"location":"Left Knee"},{"euler":{"heading":117.25,"pitch":124.0,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":65.75,"pitch":2.3125,"roll":2.375},"location":"Right Ankle"},{"euler":{"heading":86.6875,"pitch":-157.3125,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":160.1875,"pitch":-134.75,"roll":-43.125},"location":"Right Knee"},{"euler":{"heading":24.0,"pitch":-121.1875,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.775"} +{"sensors":[{"euler":{"heading":17.25,"pitch":133.625,"roll":17.6875},"location":"Left Knee"},{"euler":{"heading":92.875,"pitch":101.0,"roll":46.1875},"location":"Left Ankle"},{"euler":{"heading":64.8125,"pitch":2.5625,"roll":1.6875},"location":"Right Ankle"},{"euler":{"heading":90.1875,"pitch":-156.1875,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":-136.5625,"roll":-47.0625},"location":"Right Knee"},{"euler":{"heading":20.25,"pitch":-117.125,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.875"} +{"sensors":[{"euler":{"heading":335.25,"pitch":147.375,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":61.875,"pitch":96.0,"roll":18.5625},"location":"Left Ankle"},{"euler":{"heading":60.5625,"pitch":4.125,"roll":0.6875},"location":"Right Ankle"},{"euler":{"heading":92.9375,"pitch":-154.5,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":172.25,"pitch":-141.25,"roll":-50.25},"location":"Right Knee"},{"euler":{"heading":21.75,"pitch":-117.3125,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:47.976"} +{"sensors":[{"euler":{"heading":318.125,"pitch":157.125,"roll":41.4375},"location":"Left Knee"},{"euler":{"heading":47.6875,"pitch":92.5,"roll":3.0625},"location":"Left Ankle"},{"euler":{"heading":54.125,"pitch":4.6875,"roll":-1.3125},"location":"Right Ankle"},{"euler":{"heading":95.125,"pitch":-155.625,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-145.8125,"roll":-55.125},"location":"Right Knee"},{"euler":{"heading":28.25,"pitch":-123.75,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.77"} +{"sensors":[{"euler":{"heading":329.375,"pitch":151.25,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":57.1875,"pitch":97.3125,"roll":9.75},"location":"Left Ankle"},{"euler":{"heading":43.9375,"pitch":2.4375,"roll":-3.25},"location":"Right Ankle"},{"euler":{"heading":99.0,"pitch":-156.9375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":184.3125,"pitch":-155.625,"roll":-61.8125},"location":"Right Knee"},{"euler":{"heading":31.6875,"pitch":-127.25,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.179"} +{"sensors":[{"euler":{"heading":342.125,"pitch":142.375,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":69.25,"pitch":101.0625,"roll":18.8125},"location":"Left Ankle"},{"euler":{"heading":26.4375,"pitch":-1.9375,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":104.875,"pitch":-150.9375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":187.3125,"pitch":-174.5625,"roll":-64.5625},"location":"Right Knee"},{"euler":{"heading":32.3125,"pitch":-128.5,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.279"} +{"sensors":[{"euler":{"heading":347.875,"pitch":136.6875,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":80.0,"pitch":103.0,"roll":25.5625},"location":"Left Ankle"},{"euler":{"heading":34.8125,"pitch":-3.9375,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":110.9375,"pitch":-147.3125,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":178.4375,"pitch":-158.75,"roll":-62.375},"location":"Right Knee"},{"euler":{"heading":34.4375,"pitch":-134.8125,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.380"} +{"sensors":[{"euler":{"heading":354.3125,"pitch":131.375,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":88.75,"pitch":105.1875,"roll":32.625},"location":"Left Ankle"},{"euler":{"heading":57.8125,"pitch":-6.125,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":109.625,"pitch":-146.875,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":151.3125,"pitch":-129.25,"roll":-50.0},"location":"Right Knee"},{"euler":{"heading":38.8125,"pitch":-141.375,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.481"} +{"sensors":[{"euler":{"heading":2.25,"pitch":127.0,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":93.8125,"pitch":107.25,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":77.75,"pitch":-3.0625,"roll":8.0},"location":"Right Ankle"},{"euler":{"heading":99.6875,"pitch":-152.125,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":132.875,"pitch":-119.75,"roll":-33.8125},"location":"Right Knee"},{"euler":{"heading":41.4375,"pitch":-147.5,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.581"} +{"sensors":[{"euler":{"heading":10.1875,"pitch":123.875,"roll":25.25},"location":"Left Knee"},{"euler":{"heading":102.1875,"pitch":110.625,"roll":43.8125},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":-1.5,"roll":8.4375},"location":"Right Ankle"},{"euler":{"heading":91.25,"pitch":-155.625,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":124.25,"pitch":-119.3125,"roll":-26.8125},"location":"Right Knee"},{"euler":{"heading":42.125,"pitch":-152.0625,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.682"} +{"sensors":[{"euler":{"heading":21.375,"pitch":122.375,"roll":14.375},"location":"Left Knee"},{"euler":{"heading":110.125,"pitch":114.875,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":74.8125,"pitch":1.4375,"roll":5.9375},"location":"Right Ankle"},{"euler":{"heading":91.8125,"pitch":-155.6875,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":135.625,"pitch":-126.5,"roll":-31.1875},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-152.875,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.783"} +{"sensors":[{"euler":{"heading":39.4375,"pitch":120.625,"roll":5.25},"location":"Left Knee"},{"euler":{"heading":123.375,"pitch":138.25,"roll":63.875},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":2.5,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":89.875,"pitch":-156.125,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":149.6875,"pitch":-130.875,"roll":-37.8125},"location":"Right Knee"},{"euler":{"heading":31.3125,"pitch":-130.5625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.884"} +{"sensors":[{"euler":{"heading":32.4375,"pitch":128.375,"roll":9.9375},"location":"Left Knee"},{"euler":{"heading":108.75,"pitch":113.25,"roll":57.9375},"location":"Left Ankle"},{"euler":{"heading":65.3125,"pitch":3.0,"roll":2.0625},"location":"Right Ankle"},{"euler":{"heading":91.4375,"pitch":-154.0625,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":159.625,"pitch":-134.625,"roll":-42.5},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-120.5625,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:48.984"} +{"sensors":[{"euler":{"heading":351.3125,"pitch":142.125,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":77.9375,"pitch":96.125,"roll":33.125},"location":"Left Ankle"},{"euler":{"heading":62.875,"pitch":2.9375,"roll":1.75},"location":"Right Ankle"},{"euler":{"heading":92.25,"pitch":-154.4375,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":165.9375,"pitch":-137.0,"roll":-47.125},"location":"Right Knee"},{"euler":{"heading":20.5,"pitch":-116.4375,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.87"} +{"sensors":[{"euler":{"heading":319.4375,"pitch":155.25,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":53.75,"pitch":94.375,"roll":10.0},"location":"Left Ankle"},{"euler":{"heading":58.1875,"pitch":3.25,"roll":0.6875},"location":"Right Ankle"},{"euler":{"heading":92.3125,"pitch":-156.375,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":173.0,"pitch":-141.125,"roll":-51.6875},"location":"Right Knee"},{"euler":{"heading":21.8125,"pitch":-118.1875,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.188"} +{"sensors":[{"euler":{"heading":315.5,"pitch":159.5,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":48.875,"pitch":94.625,"roll":3.3125},"location":"Left Ankle"},{"euler":{"heading":51.6875,"pitch":3.9375,"roll":-1.5},"location":"Right Ankle"},{"euler":{"heading":93.875,"pitch":-160.3125,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":177.6875,"pitch":-144.8125,"roll":-57.8125},"location":"Right Knee"},{"euler":{"heading":28.6875,"pitch":-123.875,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.288"} +{"sensors":[{"euler":{"heading":329.3125,"pitch":150.0625,"roll":40.875},"location":"Left Knee"},{"euler":{"heading":66.5625,"pitch":100.6875,"roll":13.4375},"location":"Left Ankle"},{"euler":{"heading":41.0,"pitch":-1.125,"roll":-2.75},"location":"Right Ankle"},{"euler":{"heading":100.4375,"pitch":-158.8125,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":182.625,"pitch":-157.0,"roll":-65.5625},"location":"Right Knee"},{"euler":{"heading":30.0,"pitch":-125.875,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.390"} +{"sensors":[{"euler":{"heading":341.375,"pitch":141.9375,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":71.375,"pitch":101.8125,"roll":19.9375},"location":"Left Ankle"},{"euler":{"heading":26.9375,"pitch":-5.125,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":108.625,"pitch":-148.5,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":187.375,"pitch":-172.5625,"roll":-64.625},"location":"Right Knee"},{"euler":{"heading":32.5,"pitch":-127.5625,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.491"} +{"sensors":[{"euler":{"heading":348.875,"pitch":136.3125,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":77.8125,"pitch":102.6875,"roll":23.8125},"location":"Left Ankle"},{"euler":{"heading":37.75,"pitch":-4.875,"roll":-0.3125},"location":"Right Ankle"},{"euler":{"heading":114.5,"pitch":-144.4375,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":168.6875,"pitch":-149.9375,"roll":-58.1875},"location":"Right Knee"},{"euler":{"heading":37.5625,"pitch":-136.4375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.592"} +{"sensors":[{"euler":{"heading":353.875,"pitch":132.3125,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":81.875,"pitch":103.3125,"roll":27.875},"location":"Left Ankle"},{"euler":{"heading":57.9375,"pitch":-6.375,"roll":5.25},"location":"Right Ankle"},{"euler":{"heading":111.4375,"pitch":-147.0625,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":144.8125,"pitch":-128.125,"roll":-45.5},"location":"Right Knee"},{"euler":{"heading":40.875,"pitch":-144.125,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.693"} +{"sensors":[{"euler":{"heading":0.75,"pitch":128.625,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":86.625,"pitch":104.8125,"roll":32.375},"location":"Left Ankle"},{"euler":{"heading":74.625,"pitch":-4.1875,"roll":8.75},"location":"Right Ankle"},{"euler":{"heading":103.75,"pitch":-151.0625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":127.25,"pitch":-119.3125,"roll":-31.75},"location":"Right Knee"},{"euler":{"heading":42.6875,"pitch":-149.3125,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.794"} +{"sensors":[{"euler":{"heading":7.5625,"pitch":126.25,"roll":25.6875},"location":"Left Knee"},{"euler":{"heading":93.125,"pitch":107.0625,"roll":38.9375},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":-1.375,"roll":7.75},"location":"Right Ankle"},{"euler":{"heading":90.8125,"pitch":-155.5625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":124.0625,"pitch":-120.0625,"roll":-26.375},"location":"Right Knee"},{"euler":{"heading":44.0,"pitch":-155.0,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.894"} +{"sensors":[{"euler":{"heading":19.625,"pitch":123.8125,"roll":16.5625},"location":"Left Knee"},{"euler":{"heading":101.375,"pitch":112.5625,"roll":50.0},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":0.8125,"roll":5.25},"location":"Right Ankle"},{"euler":{"heading":88.3125,"pitch":-157.1875,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":137.5625,"pitch":-126.75,"roll":-32.5},"location":"Right Knee"},{"euler":{"heading":46.875,"pitch":-156.3125,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:49.995"} +{"sensors":[{"euler":{"heading":37.4375,"pitch":122.0,"roll":6.5625},"location":"Left Knee"},{"euler":{"heading":118.4375,"pitch":133.0,"roll":61.4375},"location":"Left Ankle"},{"euler":{"heading":68.25,"pitch":1.6875,"roll":3.1875},"location":"Right Ankle"},{"euler":{"heading":87.5,"pitch":-156.5,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":152.5625,"pitch":-130.9375,"roll":-39.5},"location":"Right Knee"},{"euler":{"heading":33.25,"pitch":-135.5,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.95"} +{"sensors":[{"euler":{"heading":33.1875,"pitch":128.1875,"roll":9.1875},"location":"Left Knee"},{"euler":{"heading":108.625,"pitch":111.5625,"roll":56.875},"location":"Left Ankle"},{"euler":{"heading":65.4375,"pitch":1.1875,"roll":2.125},"location":"Right Ankle"},{"euler":{"heading":88.8125,"pitch":-156.5625,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":159.75,"pitch":-133.0625,"roll":-44.6875},"location":"Right Knee"},{"euler":{"heading":24.6875,"pitch":-123.125,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.196"} +{"sensors":[{"euler":{"heading":353.5625,"pitch":141.0625,"roll":25.5},"location":"Left Knee"},{"euler":{"heading":79.0,"pitch":97.125,"roll":34.5},"location":"Left Ankle"},{"euler":{"heading":61.5,"pitch":1.0,"roll":1.375},"location":"Right Ankle"},{"euler":{"heading":91.4375,"pitch":-156.0625,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":-136.1875,"roll":-49.125},"location":"Right Knee"},{"euler":{"heading":20.625,"pitch":-117.9375,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.297"} +{"sensors":[{"euler":{"heading":321.375,"pitch":153.75,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":55.0,"pitch":93.6875,"roll":11.375},"location":"Left Ankle"},{"euler":{"heading":56.3125,"pitch":2.5,"roll":-0.1875},"location":"Right Ankle"},{"euler":{"heading":93.25,"pitch":-156.75,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":173.1875,"pitch":-142.1875,"roll":-53.25},"location":"Right Knee"},{"euler":{"heading":23.1875,"pitch":-119.375,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.397"} +{"sensors":[{"euler":{"heading":317.25,"pitch":158.25,"roll":41.5625},"location":"Left Knee"},{"euler":{"heading":49.8125,"pitch":95.9375,"roll":3.9375},"location":"Left Ankle"},{"euler":{"heading":48.8125,"pitch":3.0,"roll":-2.6875},"location":"Right Ankle"},{"euler":{"heading":95.75,"pitch":-158.4375,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":179.875,"pitch":-149.0,"roll":-58.5625},"location":"Right Knee"},{"euler":{"heading":29.0625,"pitch":-124.625,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.498"} +{"sensors":[{"euler":{"heading":334.25,"pitch":148.3125,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":66.3125,"pitch":100.6875,"roll":14.6875},"location":"Left Ankle"},{"euler":{"heading":34.6875,"pitch":-3.0,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":103.125,"pitch":-154.5625,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":184.375,"pitch":-163.4375,"roll":-65.25},"location":"Right Knee"},{"euler":{"heading":30.75,"pitch":-126.4375,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.598"} +{"sensors":[{"euler":{"heading":345.875,"pitch":140.375,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":74.625,"pitch":103.5,"roll":21.4375},"location":"Left Ankle"},{"euler":{"heading":22.8125,"pitch":-3.625,"roll":-4.125},"location":"Right Ankle"},{"euler":{"heading":108.5625,"pitch":-147.0625,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":189.375,"pitch":-173.625,"roll":-65.8125},"location":"Right Knee"},{"euler":{"heading":34.5625,"pitch":-131.375,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.699"} +{"sensors":[{"euler":{"heading":353.25,"pitch":134.1875,"roll":36.8125},"location":"Left Knee"},{"euler":{"heading":88.8125,"pitch":106.3125,"roll":30.4375},"location":"Left Ankle"},{"euler":{"heading":37.125,"pitch":-4.875,"roll":-1.0625},"location":"Right Ankle"},{"euler":{"heading":114.5,"pitch":-144.625,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":170.0625,"pitch":-147.625,"roll":-60.0},"location":"Right Knee"},{"euler":{"heading":39.1875,"pitch":-138.875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.799"} +{"sensors":[{"euler":{"heading":359.625,"pitch":129.25,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":91.4375,"pitch":107.25,"roll":33.75},"location":"Left Ankle"},{"euler":{"heading":61.125,"pitch":-5.875,"roll":4.75},"location":"Right Ankle"},{"euler":{"heading":108.875,"pitch":-148.75,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":144.4375,"pitch":-125.25,"roll":-46.0625},"location":"Right Knee"},{"euler":{"heading":41.0,"pitch":-145.375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:50.900"} +{"sensors":[{"euler":{"heading":6.25,"pitch":125.9375,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":109.4375,"roll":38.0625},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-2.125,"roll":7.875},"location":"Right Ankle"},{"euler":{"heading":98.625,"pitch":-152.375,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":126.0,"pitch":-118.3125,"roll":-30.125},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-151.125,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.1"} +{"sensors":[{"euler":{"heading":13.5625,"pitch":123.3125,"roll":23.5625},"location":"Left Knee"},{"euler":{"heading":103.875,"pitch":112.5625,"roll":45.75},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":-0.625,"roll":6.5},"location":"Right Ankle"},{"euler":{"heading":89.625,"pitch":-156.1875,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":125.25,"pitch":-121.4375,"roll":-27.6875},"location":"Right Knee"},{"euler":{"heading":46.375,"pitch":-156.5,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.102"} +{"sensors":[{"euler":{"heading":28.875,"pitch":123.5625,"roll":10.6875},"location":"Left Knee"},{"euler":{"heading":108.25,"pitch":120.3125,"roll":56.625},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":0.25,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":90.5,"pitch":-156.25,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":139.5,"pitch":-126.375,"roll":-34.3125},"location":"Right Knee"},{"euler":{"heading":41.0625,"pitch":-147.3125,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.202"} +{"sensors":[{"euler":{"heading":43.6875,"pitch":121.375,"roll":4.0},"location":"Left Knee"},{"euler":{"heading":118.25,"pitch":135.25,"roll":62.0},"location":"Left Ankle"},{"euler":{"heading":68.3125,"pitch":0.0625,"roll":2.6875},"location":"Right Ankle"},{"euler":{"heading":88.4375,"pitch":-157.1875,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":151.75,"pitch":-128.1875,"roll":-41.0},"location":"Right Knee"},{"euler":{"heading":31.5625,"pitch":-124.875,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.303"} +{"sensors":[{"euler":{"heading":29.375,"pitch":129.375,"roll":12.375},"location":"Left Knee"},{"euler":{"heading":106.375,"pitch":108.75,"roll":54.3125},"location":"Left Ankle"},{"euler":{"heading":66.75,"pitch":0.75,"roll":1.25},"location":"Right Ankle"},{"euler":{"heading":89.9375,"pitch":-156.9375,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":158.5,"pitch":-130.5,"roll":-45.25},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-119.6875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.404"} +{"sensors":[{"euler":{"heading":346.625,"pitch":143.75,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":73.5,"pitch":97.9375,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":62.5,"pitch":1.875,"roll":0.9375},"location":"Right Ankle"},{"euler":{"heading":92.25,"pitch":-156.0625,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":165.0,"pitch":-135.3125,"roll":-49.0625},"location":"Right Knee"},{"euler":{"heading":20.5625,"pitch":-116.75,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.504"} +{"sensors":[{"euler":{"heading":320.875,"pitch":156.3125,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":50.1875,"pitch":93.6875,"roll":4.875},"location":"Left Ankle"},{"euler":{"heading":56.3125,"pitch":2.9375,"roll":-0.125},"location":"Right Ankle"},{"euler":{"heading":93.125,"pitch":-157.5,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":171.875,"pitch":-139.125,"roll":-53.875},"location":"Right Knee"},{"euler":{"heading":25.3125,"pitch":-120.625,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.605"} +{"sensors":[{"euler":{"heading":321.9375,"pitch":157.0,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":52.8125,"pitch":97.4375,"roll":5.75},"location":"Left Ankle"},{"euler":{"heading":47.5625,"pitch":2.5,"roll":-3.0625},"location":"Right Ankle"},{"euler":{"heading":95.375,"pitch":-161.0,"roll":67.1875},"location":"Right Hip"},{"euler":{"heading":177.1875,"pitch":-145.125,"roll":-59.8125},"location":"Right Knee"},{"euler":{"heading":30.375,"pitch":-126.0,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.706"} +{"sensors":[{"euler":{"heading":338.8125,"pitch":146.5625,"roll":39.125},"location":"Left Knee"},{"euler":{"heading":62.875,"pitch":99.9375,"roll":15.625},"location":"Left Ankle"},{"euler":{"heading":32.4375,"pitch":-2.25,"roll":-2.5625},"location":"Right Ankle"},{"euler":{"heading":102.9375,"pitch":-154.375,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":183.1875,"pitch":-162.875,"roll":-65.3125},"location":"Right Knee"},{"euler":{"heading":32.125,"pitch":-127.9375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.807"} +{"sensors":[{"euler":{"heading":345.5625,"pitch":140.25,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":67.6875,"pitch":100.5,"roll":19.25},"location":"Left Ankle"},{"euler":{"heading":23.9375,"pitch":-6.25,"roll":-2.9375},"location":"Right Ankle"},{"euler":{"heading":111.4375,"pitch":-146.75,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":185.125,"pitch":-170.875,"roll":-66.4375},"location":"Right Knee"},{"euler":{"heading":35.3125,"pitch":-134.5625,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:51.907"} +{"sensors":[{"euler":{"heading":349.125,"pitch":136.25,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":73.25,"pitch":101.1875,"roll":24.5},"location":"Left Ankle"},{"euler":{"heading":40.5625,"pitch":-4.5625,"roll":-1.0},"location":"Right Ankle"},{"euler":{"heading":115.625,"pitch":-144.25,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":169.125,"pitch":-145.375,"roll":-59.3125},"location":"Right Knee"},{"euler":{"heading":37.3125,"pitch":-139.4375,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.8"} +{"sensors":[{"euler":{"heading":355.5625,"pitch":132.375,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":78.125,"pitch":102.4375,"roll":28.3125},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-3.8125,"roll":4.5},"location":"Right Ankle"},{"euler":{"heading":110.1875,"pitch":-148.5,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":140.5,"pitch":-124.9375,"roll":-42.375},"location":"Right Knee"},{"euler":{"heading":37.8125,"pitch":-144.1875,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.108"} +{"sensors":[{"euler":{"heading":3.25,"pitch":128.3125,"roll":28.75},"location":"Left Knee"},{"euler":{"heading":84.625,"pitch":104.625,"roll":33.9375},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":-3.5,"roll":7.9375},"location":"Right Ankle"},{"euler":{"heading":97.25,"pitch":-153.5625,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":123.3125,"pitch":-115.8125,"roll":-27.1875},"location":"Right Knee"},{"euler":{"heading":40.0,"pitch":-150.0,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.211"} +{"sensors":[{"euler":{"heading":12.0,"pitch":125.3125,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":92.1875,"pitch":107.9375,"roll":41.875},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-0.9375,"roll":6.25},"location":"Right Ankle"},{"euler":{"heading":90.625,"pitch":-155.5,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":126.375,"pitch":-120.875,"roll":-27.75},"location":"Right Knee"},{"euler":{"heading":44.75,"pitch":-156.375,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.312"} +{"sensors":[{"euler":{"heading":28.8125,"pitch":124.8125,"roll":9.9375},"location":"Left Knee"},{"euler":{"heading":104.5,"pitch":119.5,"roll":56.6875},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":0.75,"roll":3.625},"location":"Right Ankle"},{"euler":{"heading":94.6875,"pitch":-153.5,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":139.0625,"pitch":-125.875,"roll":-33.875},"location":"Right Knee"},{"euler":{"heading":36.5,"pitch":-143.4375,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.413"} +{"sensors":[{"euler":{"heading":38.1875,"pitch":126.125,"roll":5.875},"location":"Left Knee"},{"euler":{"heading":107.4375,"pitch":122.625,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":68.0,"pitch":-1.4375,"roll":1.875},"location":"Right Ankle"},{"euler":{"heading":91.0625,"pitch":-155.5625,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":149.125,"pitch":-125.125,"roll":-40.875},"location":"Right Knee"},{"euler":{"heading":27.5,"pitch":-123.0625,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.514"} +{"sensors":[{"euler":{"heading":19.75,"pitch":134.0,"roll":16.1875},"location":"Left Knee"},{"euler":{"heading":92.9375,"pitch":103.0,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":67.0,"pitch":-1.8125,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":95.625,"pitch":-154.375,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":153.5625,"pitch":-126.0,"roll":-45.125},"location":"Right Knee"},{"euler":{"heading":20.4375,"pitch":-119.125,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.614"} +{"sensors":[{"euler":{"heading":340.0625,"pitch":146.4375,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":67.0625,"pitch":97.5625,"roll":23.5},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-1.0,"roll":0.3125},"location":"Right Ankle"},{"euler":{"heading":96.0,"pitch":-154.125,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":160.5625,"pitch":-130.5625,"roll":-48.9375},"location":"Right Knee"},{"euler":{"heading":19.4375,"pitch":-116.75,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.715"} +{"sensors":[{"euler":{"heading":316.1875,"pitch":158.4375,"roll":40.6875},"location":"Left Knee"},{"euler":{"heading":46.5625,"pitch":91.375,"roll":4.6875},"location":"Left Ankle"},{"euler":{"heading":57.875,"pitch":-0.75,"roll":-0.5625},"location":"Right Ankle"},{"euler":{"heading":96.0625,"pitch":-157.375,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":166.625,"pitch":-133.75,"roll":-53.9375},"location":"Right Knee"},{"euler":{"heading":23.3125,"pitch":-119.9375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.816"} +{"sensors":[{"euler":{"heading":321.75,"pitch":157.0,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":48.3125,"pitch":95.9375,"roll":5.375},"location":"Left Ankle"},{"euler":{"heading":50.375,"pitch":-0.125,"roll":-4.1875},"location":"Right Ankle"},{"euler":{"heading":96.5,"pitch":-160.9375,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":171.5625,"pitch":-139.6875,"roll":-59.125},"location":"Right Knee"},{"euler":{"heading":28.8125,"pitch":-124.125,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:52.917"} +{"sensors":[{"euler":{"heading":338.6875,"pitch":146.625,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":62.8125,"pitch":99.375,"roll":15.5625},"location":"Left Ankle"},{"euler":{"heading":37.5,"pitch":-4.6875,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":101.9375,"pitch":-157.0,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":179.1875,"pitch":-155.9375,"roll":-66.1875},"location":"Right Knee"},{"euler":{"heading":29.625,"pitch":-124.4375,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.18"} +{"sensors":[{"euler":{"heading":346.75,"pitch":139.4375,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":71.125,"pitch":101.375,"roll":20.1875},"location":"Left Ankle"},{"euler":{"heading":25.25,"pitch":-4.625,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":107.0,"pitch":-149.375,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":183.4375,"pitch":-166.9375,"roll":-65.6875},"location":"Right Knee"},{"euler":{"heading":33.4375,"pitch":-129.8125,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.118"} +{"sensors":[{"euler":{"heading":349.25,"pitch":135.8125,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":76.5,"pitch":101.25,"roll":25.625},"location":"Left Ankle"},{"euler":{"heading":39.25,"pitch":-5.9375,"roll":-1.625},"location":"Right Ankle"},{"euler":{"heading":112.125,"pitch":-147.0625,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":164.75,"pitch":-141.25,"roll":-58.875},"location":"Right Knee"},{"euler":{"heading":34.5625,"pitch":-136.6875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.219"} +{"sensors":[{"euler":{"heading":355.875,"pitch":131.4375,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":102.625,"roll":29.0},"location":"Left Ankle"},{"euler":{"heading":63.625,"pitch":-7.125,"roll":4.875},"location":"Right Ankle"},{"euler":{"heading":106.8125,"pitch":-150.25,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":138.1875,"pitch":-121.75,"roll":-42.25},"location":"Right Knee"},{"euler":{"heading":37.6875,"pitch":-143.875,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.319"} +{"sensors":[{"euler":{"heading":2.375,"pitch":127.9375,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":85.3125,"pitch":103.8125,"roll":33.4375},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":-3.6875,"roll":8.25},"location":"Right Ankle"},{"euler":{"heading":97.625,"pitch":-154.125,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":118.5,"pitch":-115.875,"roll":-26.625},"location":"Right Knee"},{"euler":{"heading":40.5625,"pitch":-150.25,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.420"} +{"sensors":[{"euler":{"heading":9.75,"pitch":125.75,"roll":24.1875},"location":"Left Knee"},{"euler":{"heading":91.375,"pitch":105.875,"roll":40.4375},"location":"Left Ankle"},{"euler":{"heading":83.8125,"pitch":-2.0625,"roll":7.0},"location":"Right Ankle"},{"euler":{"heading":90.75,"pitch":-156.3125,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":118.4375,"pitch":-117.5625,"roll":-24.625},"location":"Right Knee"},{"euler":{"heading":44.75,"pitch":-157.9375,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.521"} +{"sensors":[{"euler":{"heading":22.6875,"pitch":123.125,"roll":14.3125},"location":"Left Knee"},{"euler":{"heading":100.625,"pitch":113.25,"roll":53.8125},"location":"Left Ankle"},{"euler":{"heading":72.5625,"pitch":0.9375,"roll":4.625},"location":"Right Ankle"},{"euler":{"heading":90.0625,"pitch":-156.0,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":132.3125,"pitch":-125.3125,"roll":-31.0},"location":"Right Knee"},{"euler":{"heading":46.125,"pitch":-156.8125,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.621"} +{"sensors":[{"euler":{"heading":42.5625,"pitch":119.6875,"roll":4.375},"location":"Left Knee"},{"euler":{"heading":121.5625,"pitch":137.3125,"roll":65.0},"location":"Left Ankle"},{"euler":{"heading":67.6875,"pitch":3.375,"roll":2.8125},"location":"Right Ankle"},{"euler":{"heading":90.1875,"pitch":-154.6875,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":145.75,"pitch":-129.5625,"roll":-37.125},"location":"Right Knee"},{"euler":{"heading":34.25,"pitch":-135.0,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.722"} +{"sensors":[{"euler":{"heading":35.3125,"pitch":128.0,"roll":8.75},"location":"Left Knee"},{"euler":{"heading":106.4375,"pitch":110.3125,"roll":57.625},"location":"Left Ankle"},{"euler":{"heading":64.25,"pitch":4.375,"roll":1.8125},"location":"Right Ankle"},{"euler":{"heading":90.875,"pitch":-154.5,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":155.5,"pitch":-132.375,"roll":-42.125},"location":"Right Knee"},{"euler":{"heading":25.25,"pitch":-123.125,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.822"} +{"sensors":[{"euler":{"heading":352.625,"pitch":141.625,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":73.75,"pitch":96.4375,"roll":31.4375},"location":"Left Ankle"},{"euler":{"heading":60.8125,"pitch":4.875,"roll":0.9375},"location":"Right Ankle"},{"euler":{"heading":92.625,"pitch":-155.125,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":160.875,"pitch":-134.625,"roll":-45.8125},"location":"Right Knee"},{"euler":{"heading":21.6875,"pitch":-117.75,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:53.923"} +{"sensors":[{"euler":{"heading":321.5625,"pitch":154.375,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":49.4375,"pitch":92.875,"roll":8.25},"location":"Left Ankle"},{"euler":{"heading":55.0,"pitch":5.3125,"roll":0.125},"location":"Right Ankle"},{"euler":{"heading":94.25,"pitch":-156.3125,"roll":66.5},"location":"Right Hip"},{"euler":{"heading":167.625,"pitch":-138.6875,"roll":-50.4375},"location":"Right Knee"},{"euler":{"heading":23.625,"pitch":-124.625,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.23"} +{"sensors":[{"euler":{"heading":332.5625,"pitch":151.3125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":54.4375,"pitch":97.8125,"roll":11.4375},"location":"Left Ankle"},{"euler":{"heading":45.0,"pitch":2.8125,"roll":-2.5625},"location":"Right Ankle"},{"euler":{"heading":98.1875,"pitch":-157.3125,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":174.875,"pitch":-145.8125,"roll":-56.8125},"location":"Right Knee"},{"euler":{"heading":30.625,"pitch":-125.9375,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.124"} +{"sensors":[{"euler":{"heading":345.0,"pitch":143.25,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":68.25,"pitch":101.5625,"roll":18.125},"location":"Left Ankle"},{"euler":{"heading":27.75,"pitch":-2.625,"roll":-3.0},"location":"Right Ankle"},{"euler":{"heading":106.25,"pitch":-150.1875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":181.0,"pitch":-159.8125,"roll":-63.8125},"location":"Right Knee"},{"euler":{"heading":31.625,"pitch":-128.5625,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.224"} +{"sensors":[{"euler":{"heading":352.25,"pitch":136.6875,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":80.125,"pitch":104.5,"roll":27.6875},"location":"Left Ankle"},{"euler":{"heading":28.875,"pitch":-5.0625,"roll":-2.375},"location":"Right Ankle"},{"euler":{"heading":111.9375,"pitch":-146.0625,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":177.3125,"pitch":-156.75,"roll":-62.9375},"location":"Right Knee"},{"euler":{"heading":36.0625,"pitch":-134.3125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.325"} +{"sensors":[{"euler":{"heading":358.5625,"pitch":131.5,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":89.5,"pitch":106.625,"roll":33.5},"location":"Left Ankle"},{"euler":{"heading":48.25,"pitch":-6.0,"roll":1.25},"location":"Right Ankle"},{"euler":{"heading":112.625,"pitch":-146.4375,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":155.4375,"pitch":-133.25,"roll":-52.6875},"location":"Right Knee"},{"euler":{"heading":40.9375,"pitch":-142.5625,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.426"} +{"sensors":[{"euler":{"heading":3.8125,"pitch":128.3125,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":89.5625,"pitch":106.625,"roll":35.8125},"location":"Left Ankle"},{"euler":{"heading":70.5,"pitch":-6.9375,"roll":4.625},"location":"Right Ankle"},{"euler":{"heading":106.5,"pitch":-151.8125,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":130.1875,"pitch":-118.0,"roll":-36.9375},"location":"Right Knee"},{"euler":{"heading":43.125,"pitch":-150.75,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.527"} +{"sensors":[{"euler":{"heading":10.25,"pitch":125.125,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":109.4375,"roll":41.4375},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":-5.4375,"roll":8.75},"location":"Right Ankle"},{"euler":{"heading":96.5625,"pitch":-154.625,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":116.125,"pitch":-114.3125,"roll":-24.75},"location":"Right Knee"},{"euler":{"heading":45.1875,"pitch":-157.9375,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.627"} +{"sensors":[{"euler":{"heading":19.625,"pitch":122.6875,"roll":19.5625},"location":"Left Knee"},{"euler":{"heading":104.625,"pitch":114.625,"roll":52.5},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":-0.6875,"roll":6.375},"location":"Right Ankle"},{"euler":{"heading":89.0625,"pitch":-157.0,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":124.0,"pitch":-122.0,"roll":-26.25},"location":"Right Knee"},{"euler":{"heading":48.3125,"pitch":-161.5,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.728"} +{"sensors":[{"euler":{"heading":32.9375,"pitch":123.75,"roll":7.5625},"location":"Left Knee"},{"euler":{"heading":113.6875,"pitch":126.5625,"roll":64.25},"location":"Left Ankle"},{"euler":{"heading":70.3125,"pitch":0.25,"roll":3.875},"location":"Right Ankle"},{"euler":{"heading":93.0625,"pitch":-155.9375,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":137.25,"pitch":-125.4375,"roll":-33.25},"location":"Right Knee"},{"euler":{"heading":37.0,"pitch":-142.625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.828"} +{"sensors":[{"euler":{"heading":40.75,"pitch":123.8125,"roll":3.9375},"location":"Left Knee"},{"euler":{"heading":115.0,"pitch":123.25,"roll":66.25},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":1.625,"roll":1.8125},"location":"Right Ankle"},{"euler":{"heading":89.0,"pitch":-157.8125,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":148.0625,"pitch":-128.9375,"roll":-38.375},"location":"Right Knee"},{"euler":{"heading":26.125,"pitch":-121.75,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:54.929"} +{"sensors":[{"euler":{"heading":23.0,"pitch":132.5,"roll":15.0},"location":"Left Knee"},{"euler":{"heading":88.5,"pitch":98.1875,"roll":45.125},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":3.0625,"roll":0.625},"location":"Right Ankle"},{"euler":{"heading":93.0,"pitch":-155.25,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":157.1875,"pitch":-131.5,"roll":-43.4375},"location":"Right Knee"},{"euler":{"heading":22.25,"pitch":-119.5625,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.29"} +{"sensors":[{"euler":{"heading":259.75,"pitch":147.875,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":54.5625,"pitch":94.125,"roll":15.3125},"location":"Left Ankle"},{"euler":{"heading":57.9375,"pitch":4.375,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":94.5,"pitch":-156.0,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":163.6875,"pitch":-134.9375,"roll":-47.5625},"location":"Right Knee"},{"euler":{"heading":23.0625,"pitch":-119.8125,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.129"} +{"sensors":[{"euler":{"heading":271.25,"pitch":158.25,"roll":39.9375},"location":"Left Knee"},{"euler":{"heading":42.625,"pitch":93.5,"roll":2.1875},"location":"Left Ankle"},{"euler":{"heading":50.9375,"pitch":4.8125,"roll":-1.75},"location":"Right Ankle"},{"euler":{"heading":97.875,"pitch":-156.625,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":170.75,"pitch":-139.25,"roll":-53.4375},"location":"Right Knee"},{"euler":{"heading":28.1875,"pitch":-125.375,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.230"} +{"sensors":[{"euler":{"heading":336.625,"pitch":149.8125,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":55.9375,"pitch":100.9375,"roll":10.4375},"location":"Left Ankle"},{"euler":{"heading":39.1875,"pitch":0.375,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":101.125,"pitch":-157.5625,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":176.1875,"pitch":-145.3125,"roll":-61.75},"location":"Right Knee"},{"euler":{"heading":31.75,"pitch":-129.375,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.331"} +{"sensors":[{"euler":{"heading":346.6875,"pitch":141.875,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":67.875,"pitch":104.0625,"roll":19.1875},"location":"Left Ankle"},{"euler":{"heading":24.5,"pitch":-2.6875,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":109.375,"pitch":-150.3125,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":181.9375,"pitch":-162.3125,"roll":-65.1875},"location":"Right Knee"},{"euler":{"heading":32.75,"pitch":-131.5625,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.431"} +{"sensors":[{"euler":{"heading":355.75,"pitch":134.6875,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":88.1875,"pitch":108.4375,"roll":30.625},"location":"Left Ankle"},{"euler":{"heading":29.75,"pitch":-7.0625,"roll":-1.6875},"location":"Right Ankle"},{"euler":{"heading":113.125,"pitch":-146.1875,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":173.0,"pitch":-152.5625,"roll":-63.375},"location":"Right Knee"},{"euler":{"heading":38.8125,"pitch":-138.3125,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.531"} +{"sensors":[{"euler":{"heading":2.875,"pitch":129.375,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":88.5,"pitch":109.75,"roll":32.375},"location":"Left Ankle"},{"euler":{"heading":51.6875,"pitch":-9.9375,"roll":1.75},"location":"Right Ankle"},{"euler":{"heading":113.6875,"pitch":-147.625,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":149.6875,"pitch":-126.0625,"roll":-51.8125},"location":"Right Knee"},{"euler":{"heading":43.4375,"pitch":-146.5625,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.632"} +{"sensors":[{"euler":{"heading":9.3125,"pitch":125.5625,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":93.0,"pitch":111.3125,"roll":36.1875},"location":"Left Ankle"},{"euler":{"heading":71.9375,"pitch":-7.5,"roll":7.625},"location":"Right Ankle"},{"euler":{"heading":106.9375,"pitch":-151.3125,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":124.625,"pitch":-116.25,"roll":-33.375},"location":"Right Knee"},{"euler":{"heading":45.3125,"pitch":-152.5625,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.732"} +{"sensors":[{"euler":{"heading":15.75,"pitch":122.375,"roll":26.125},"location":"Left Knee"},{"euler":{"heading":100.75,"pitch":114.5625,"roll":42.6875},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":-4.125,"roll":8.0625},"location":"Right Ankle"},{"euler":{"heading":93.625,"pitch":-155.8125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":113.3125,"pitch":-115.1875,"roll":-22.6875},"location":"Right Knee"},{"euler":{"heading":48.0625,"pitch":-158.375,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.833"} +{"sensors":[{"euler":{"heading":23.9375,"pitch":122.375,"roll":16.75},"location":"Left Knee"},{"euler":{"heading":106.25,"pitch":116.9375,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":75.75,"pitch":-1.375,"roll":5.0},"location":"Right Ankle"},{"euler":{"heading":93.4375,"pitch":-156.6875,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":123.8125,"pitch":-122.375,"roll":-27.4375},"location":"Right Knee"},{"euler":{"heading":51.125,"pitch":-159.8125,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:55.934"} +{"sensors":[{"euler":{"heading":37.4375,"pitch":124.3125,"roll":5.625},"location":"Left Knee"},{"euler":{"heading":115.5,"pitch":129.9375,"roll":64.5},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":-2.375,"roll":3.6875},"location":"Right Ankle"},{"euler":{"heading":94.4375,"pitch":-156.375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":137.875,"pitch":-124.25,"roll":-35.125},"location":"Right Knee"},{"euler":{"heading":33.875,"pitch":-136.875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.34"} +{"sensors":[{"euler":{"heading":38.25,"pitch":126.125,"roll":6.0625},"location":"Left Knee"},{"euler":{"heading":106.6875,"pitch":110.375,"roll":62.0625},"location":"Left Ankle"},{"euler":{"heading":64.6875,"pitch":-1.6875,"roll":2.125},"location":"Right Ankle"},{"euler":{"heading":92.6875,"pitch":-157.5625,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":147.0625,"pitch":-126.5625,"roll":-40.5625},"location":"Right Knee"},{"euler":{"heading":24.4375,"pitch":-121.0625,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.135"} +{"sensors":[{"euler":{"heading":10.0625,"pitch":136.9375,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":79.75,"pitch":95.4375,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":61.125,"pitch":-1.0,"roll":1.25},"location":"Right Ankle"},{"euler":{"heading":96.25,"pitch":-155.375,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":154.0625,"pitch":-128.75,"roll":-45.5625},"location":"Right Knee"},{"euler":{"heading":22.75,"pitch":-119.5,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.238"} +{"sensors":[{"euler":{"heading":329.5,"pitch":151.5625,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":49.5,"pitch":93.4375,"roll":9.25},"location":"Left Ankle"},{"euler":{"heading":55.5625,"pitch":0.375,"roll":0.125},"location":"Right Ankle"},{"euler":{"heading":97.8125,"pitch":-156.5,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":160.1875,"pitch":-133.375,"roll":-49.25},"location":"Right Knee"},{"euler":{"heading":23.8125,"pitch":-121.3125,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.339"} +{"sensors":[{"euler":{"heading":322.125,"pitch":155.8125,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":44.125,"pitch":95.9375,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":47.8125,"pitch":1.875,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":99.8125,"pitch":-157.8125,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":168.5625,"pitch":-140.0625,"roll":-55.25},"location":"Right Knee"},{"euler":{"heading":27.9375,"pitch":-125.5,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.440"} +{"sensors":[{"euler":{"heading":338.4375,"pitch":145.375,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":62.25,"pitch":100.0625,"roll":12.625},"location":"Left Ankle"},{"euler":{"heading":34.3125,"pitch":-4.125,"roll":-2.875},"location":"Right Ankle"},{"euler":{"heading":104.6875,"pitch":-157.1875,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":173.75,"pitch":-147.4375,"roll":-64.125},"location":"Right Knee"},{"euler":{"heading":30.125,"pitch":-128.25,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.541"} +{"sensors":[{"euler":{"heading":350.75,"pitch":136.6875,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":71.0625,"pitch":103.0,"roll":19.75},"location":"Left Ankle"},{"euler":{"heading":21.625,"pitch":-8.1875,"roll":-3.875},"location":"Right Ankle"},{"euler":{"heading":111.375,"pitch":-149.0,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":179.8125,"pitch":-162.5,"roll":-65.6875},"location":"Right Knee"},{"euler":{"heading":36.8125,"pitch":-133.625,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.641"} +{"sensors":[{"euler":{"heading":357.5,"pitch":131.5,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":86.5,"pitch":104.9375,"roll":29.9375},"location":"Left Ankle"},{"euler":{"heading":36.5625,"pitch":-9.875,"roll":-2.625},"location":"Right Ankle"},{"euler":{"heading":117.375,"pitch":-145.5,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":163.3125,"pitch":-139.5625,"roll":-60.1875},"location":"Right Knee"},{"euler":{"heading":41.0625,"pitch":-143.1875,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.742"} +{"sensors":[{"euler":{"heading":3.0625,"pitch":127.5625,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":87.25,"pitch":105.375,"roll":32.625},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":-12.8125,"roll":5.6875},"location":"Right Ankle"},{"euler":{"heading":112.3125,"pitch":-148.375,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":135.5625,"pitch":-117.75,"roll":-43.25},"location":"Right Knee"},{"euler":{"heading":42.6875,"pitch":-149.625,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.843"} +{"sensors":[{"euler":{"heading":9.9375,"pitch":124.75,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":91.625,"pitch":107.25,"roll":37.4375},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":-3.75,"roll":7.1875},"location":"Right Ankle"},{"euler":{"heading":100.625,"pitch":-152.3125,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":117.4375,"pitch":-115.875,"roll":-24.875},"location":"Right Knee"},{"euler":{"heading":43.3125,"pitch":-153.4375,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:56.944"} +{"sensors":[{"euler":{"heading":15.4375,"pitch":123.0,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":99.0,"pitch":109.125,"roll":45.8125},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":-0.9375,"roll":5.6875},"location":"Right Ankle"},{"euler":{"heading":93.3125,"pitch":-155.1875,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":117.3125,"pitch":-119.0625,"roll":-22.9375},"location":"Right Knee"},{"euler":{"heading":46.1875,"pitch":-158.1875,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.45"} +{"sensors":[{"euler":{"heading":28.8125,"pitch":123.625,"roll":9.625},"location":"Left Knee"},{"euler":{"heading":101.25,"pitch":114.375,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":72.5625,"pitch":-2.25,"roll":3.125},"location":"Right Ankle"},{"euler":{"heading":96.5625,"pitch":-155.375,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":130.8125,"pitch":-121.1875,"roll":-30.875},"location":"Right Knee"},{"euler":{"heading":42.5,"pitch":-148.375,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.146"} +{"sensors":[{"euler":{"heading":43.6875,"pitch":121.1875,"roll":3.5},"location":"Left Knee"},{"euler":{"heading":110.9375,"pitch":126.125,"roll":63.625},"location":"Left Ankle"},{"euler":{"heading":67.75,"pitch":-2.875,"roll":1.875},"location":"Right Ankle"},{"euler":{"heading":93.6875,"pitch":-156.6875,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":141.5625,"pitch":-123.0,"roll":-37.3125},"location":"Right Knee"},{"euler":{"heading":30.3125,"pitch":-124.625,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.247"} +{"sensors":[{"euler":{"heading":32.3125,"pitch":130.625,"roll":11.25},"location":"Left Knee"},{"euler":{"heading":97.625,"pitch":104.625,"roll":51.8125},"location":"Left Ankle"},{"euler":{"heading":64.6875,"pitch":-3.25,"roll":0.25},"location":"Right Ankle"},{"euler":{"heading":95.75,"pitch":-156.125,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":148.8125,"pitch":-123.875,"roll":-42.5},"location":"Right Knee"},{"euler":{"heading":23.0,"pitch":-120.1875,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.348"} +{"sensors":[{"euler":{"heading":348.4375,"pitch":144.6875,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":66.3125,"pitch":95.3125,"roll":24.625},"location":"Left Ankle"},{"euler":{"heading":61.625,"pitch":-2.875,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":99.1875,"pitch":-156.0625,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":154.125,"pitch":-126.375,"roll":-47.0},"location":"Right Knee"},{"euler":{"heading":22.75,"pitch":-118.9375,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.449"} +{"sensors":[{"euler":{"heading":323.6875,"pitch":155.4375,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":45.0625,"pitch":92.9375,"roll":2.5},"location":"Left Ankle"},{"euler":{"heading":54.5,"pitch":-2.125,"roll":-1.625},"location":"Right Ankle"},{"euler":{"heading":101.25,"pitch":-157.625,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":159.875,"pitch":-129.5,"roll":-52.3125},"location":"Right Knee"},{"euler":{"heading":28.125,"pitch":-123.75,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.550"} +{"sensors":[{"euler":{"heading":336.75,"pitch":149.0625,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":49.75,"pitch":98.25,"roll":5.25},"location":"Left Ankle"},{"euler":{"heading":45.0625,"pitch":-2.3125,"roll":-4.625},"location":"Right Ankle"},{"euler":{"heading":104.125,"pitch":-159.6875,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":167.0,"pitch":-137.3125,"roll":-59.9375},"location":"Right Knee"},{"euler":{"heading":33.625,"pitch":-126.75,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.650"} +{"sensors":[{"euler":{"heading":347.375,"pitch":141.25,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":64.9375,"pitch":102.375,"roll":16.5625},"location":"Left Ankle"},{"euler":{"heading":26.4375,"pitch":-6.25,"roll":-6.9375},"location":"Right Ankle"},{"euler":{"heading":110.0625,"pitch":-153.3125,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":174.4375,"pitch":-153.1875,"roll":-66.8125},"location":"Right Knee"},{"euler":{"heading":31.125,"pitch":-127.0625,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.751"} +{"sensors":[{"euler":{"heading":352.75,"pitch":135.625,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":72.0625,"pitch":102.875,"roll":21.1875},"location":"Left Ankle"},{"euler":{"heading":25.875,"pitch":-8.0,"roll":-4.625},"location":"Right Ankle"},{"euler":{"heading":115.0,"pitch":-148.375,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":170.125,"pitch":-147.9375,"roll":-64.5},"location":"Right Knee"},{"euler":{"heading":35.75,"pitch":-135.8125,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.853"} +{"sensors":[{"euler":{"heading":356.1875,"pitch":131.5625,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":82.5625,"pitch":103.3125,"roll":28.875},"location":"Left Ankle"},{"euler":{"heading":47.25,"pitch":-9.25,"roll":1.0},"location":"Right Ankle"},{"euler":{"heading":114.6875,"pitch":-147.5625,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":145.125,"pitch":-127.25,"roll":-50.0625},"location":"Right Knee"},{"euler":{"heading":39.0625,"pitch":-143.9375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:57.954"} +{"sensors":[{"euler":{"heading":2.625,"pitch":127.6875,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":104.25,"roll":32.25},"location":"Left Ankle"},{"euler":{"heading":68.75,"pitch":-5.5,"roll":7.9375},"location":"Right Ankle"},{"euler":{"heading":106.125,"pitch":-151.375,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":121.375,"pitch":-118.4375,"roll":-30.4375},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-149.1875,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.54"} +{"sensors":[{"euler":{"heading":9.375,"pitch":125.0,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":89.3125,"pitch":105.4375,"roll":37.6875},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-4.5625,"roll":6.75},"location":"Right Ankle"},{"euler":{"heading":93.875,"pitch":-156.1875,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":112.0,"pitch":-114.5,"roll":-21.375},"location":"Right Knee"},{"euler":{"heading":44.4375,"pitch":-155.5625,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.155"} +{"sensors":[{"euler":{"heading":17.375,"pitch":124.3125,"roll":18.5},"location":"Left Knee"},{"euler":{"heading":96.25,"pitch":106.875,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":1.4375,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":89.8125,"pitch":-157.3125,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":121.125,"pitch":-123.8125,"roll":-24.125},"location":"Right Knee"},{"euler":{"heading":45.375,"pitch":-156.125,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.255"} +{"sensors":[{"euler":{"heading":34.75,"pitch":123.875,"roll":7.25},"location":"Left Knee"},{"euler":{"heading":108.625,"pitch":122.9375,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":68.1875,"pitch":2.875,"roll":1.875},"location":"Right Ankle"},{"euler":{"heading":91.9375,"pitch":-156.375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":137.5625,"pitch":-126.0625,"roll":-32.125},"location":"Right Knee"},{"euler":{"heading":29.625,"pitch":-133.75,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.356"} +{"sensors":[{"euler":{"heading":36.3125,"pitch":127.625,"roll":7.6875},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":111.0625,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":65.25,"pitch":2.4375,"roll":0.3125},"location":"Right Ankle"},{"euler":{"heading":90.875,"pitch":-156.4375,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":145.9375,"pitch":-128.0,"roll":-37.3125},"location":"Right Knee"},{"euler":{"heading":22.3125,"pitch":-122.6875,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.457"} +{"sensors":[{"euler":{"heading":6.3125,"pitch":138.625,"roll":21.875},"location":"Left Knee"},{"euler":{"heading":75.625,"pitch":97.75,"roll":33.0625},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":2.5,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":94.3125,"pitch":-154.875,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":152.1875,"pitch":-129.75,"roll":-41.6875},"location":"Right Knee"},{"euler":{"heading":19.1875,"pitch":-119.25,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.558"} +{"sensors":[{"euler":{"heading":329.6875,"pitch":151.375,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":49.25,"pitch":94.1875,"roll":8.625},"location":"Left Ankle"},{"euler":{"heading":57.375,"pitch":3.0625,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":96.375,"pitch":-155.5,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":158.75,"pitch":-133.25,"roll":-46.25},"location":"Right Knee"},{"euler":{"heading":20.9375,"pitch":-120.9375,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.658"} +{"sensors":[{"euler":{"heading":319.25,"pitch":156.75,"roll":41.0625},"location":"Left Knee"},{"euler":{"heading":43.6875,"pitch":92.3125,"roll":1.3125},"location":"Left Ankle"},{"euler":{"heading":48.9375,"pitch":3.6875,"roll":-4.125},"location":"Right Ankle"},{"euler":{"heading":98.4375,"pitch":-157.75,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":166.4375,"pitch":-137.75,"roll":-53.125},"location":"Right Knee"},{"euler":{"heading":27.0625,"pitch":-125.5,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.759"} +{"sensors":[{"euler":{"heading":335.75,"pitch":146.5,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":59.3125,"pitch":96.6875,"roll":12.5},"location":"Left Ankle"},{"euler":{"heading":38.0,"pitch":-1.0625,"roll":-4.625},"location":"Right Ankle"},{"euler":{"heading":103.0,"pitch":-158.8125,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":170.1875,"pitch":-141.4375,"roll":-63.0},"location":"Right Knee"},{"euler":{"heading":29.9375,"pitch":-128.625,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.863"} +{"sensors":[{"euler":{"heading":347.5625,"pitch":138.875,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":66.6875,"pitch":99.9375,"roll":19.75},"location":"Left Ankle"},{"euler":{"heading":26.25,"pitch":-2.1875,"roll":-4.9375},"location":"Right Ankle"},{"euler":{"heading":112.0,"pitch":-148.125,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":174.75,"pitch":-155.75,"roll":-63.1875},"location":"Right Knee"},{"euler":{"heading":32.75,"pitch":-130.375,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:58.965"} +{"sensors":[{"euler":{"heading":354.0625,"pitch":133.1875,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":85.3125,"pitch":103.375,"roll":30.5},"location":"Left Ankle"},{"euler":{"heading":38.75,"pitch":-2.5625,"roll":-3.0},"location":"Right Ankle"},{"euler":{"heading":117.0625,"pitch":-145.9375,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":157.9375,"pitch":-137.8125,"roll":-55.375},"location":"Right Knee"},{"euler":{"heading":37.0625,"pitch":-137.6875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.65"} +{"sensors":[{"euler":{"heading":0.375,"pitch":129.1875,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":84.8125,"pitch":104.0625,"roll":32.3125},"location":"Left Ankle"},{"euler":{"heading":61.625,"pitch":-5.625,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":114.4375,"pitch":-149.25,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":134.3125,"pitch":-118.5625,"roll":-40.3125},"location":"Right Knee"},{"euler":{"heading":39.6875,"pitch":-144.3125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.166"} +{"sensors":[{"euler":{"heading":6.8125,"pitch":126.125,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":88.625,"pitch":105.625,"roll":36.0625},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":-3.125,"roll":3.6875},"location":"Right Ankle"},{"euler":{"heading":104.625,"pitch":-152.6875,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":114.1875,"pitch":-114.0625,"roll":-24.0625},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-150.75,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.266"} +{"sensors":[{"euler":{"heading":13.4375,"pitch":123.875,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":95.4375,"pitch":108.4375,"roll":42.6875},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":0.1875,"roll":5.75},"location":"Right Ankle"},{"euler":{"heading":91.375,"pitch":-157.3125,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":111.0,"pitch":-118.6875,"roll":-19.625},"location":"Right Knee"},{"euler":{"heading":43.3125,"pitch":-156.8125,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.368"} +{"sensors":[{"euler":{"heading":26.5,"pitch":121.1875,"roll":13.6875},"location":"Left Knee"},{"euler":{"heading":102.3125,"pitch":114.4375,"roll":54.6875},"location":"Left Ankle"},{"euler":{"heading":72.1875,"pitch":0.8125,"roll":2.1875},"location":"Right Ankle"},{"euler":{"heading":94.9375,"pitch":-156.25,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":125.0625,"pitch":-123.375,"roll":-26.875},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-152.4375,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.469"} +{"sensors":[{"euler":{"heading":41.125,"pitch":122.125,"roll":4.0625},"location":"Left Knee"},{"euler":{"heading":103.375,"pitch":121.6875,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":70.0625,"pitch":-1.8125,"roll":2.4375},"location":"Right Ankle"},{"euler":{"heading":91.9375,"pitch":-158.5625,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":137.625,"pitch":-123.875,"roll":-34.375},"location":"Right Knee"},{"euler":{"heading":29.1875,"pitch":-131.8125,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.569"} +{"sensors":[{"euler":{"heading":36.375,"pitch":127.375,"roll":7.6875},"location":"Left Knee"},{"euler":{"heading":100.125,"pitch":104.0625,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":-1.875,"roll":1.1875},"location":"Right Ankle"},{"euler":{"heading":92.875,"pitch":-158.4375,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":143.875,"pitch":-125.75,"roll":-38.5625},"location":"Right Knee"},{"euler":{"heading":22.4375,"pitch":-123.5625,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.670"} +{"sensors":[{"euler":{"heading":1.625,"pitch":138.4375,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":75.125,"pitch":94.3125,"roll":32.0625},"location":"Left Ankle"},{"euler":{"heading":64.25,"pitch":0.0625,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":95.1875,"pitch":-157.4375,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":150.9375,"pitch":-129.4375,"roll":-42.4375},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-119.125,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.770"} +{"sensors":[{"euler":{"heading":326.25,"pitch":152.6875,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":47.0625,"pitch":92.8125,"roll":6.125},"location":"Left Ankle"},{"euler":{"heading":58.125,"pitch":2.1875,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":95.5625,"pitch":-158.8125,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":159.1875,"pitch":-133.875,"roll":-47.25},"location":"Right Knee"},{"euler":{"heading":23.0,"pitch":-121.75,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.871"} +{"sensors":[{"euler":{"heading":323.875,"pitch":155.8125,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":44.8125,"pitch":95.5,"roll":2.25},"location":"Left Ankle"},{"euler":{"heading":49.0,"pitch":3.4375,"roll":-4.625},"location":"Right Ankle"},{"euler":{"heading":97.5625,"pitch":-161.3125,"roll":67.6875},"location":"Right Hip"},{"euler":{"heading":166.1875,"pitch":-139.0,"roll":-53.375},"location":"Right Knee"},{"euler":{"heading":28.375,"pitch":-126.5,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:19:59.972"} +{"sensors":[{"euler":{"heading":342.75,"pitch":144.75,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":61.1875,"pitch":100.4375,"roll":13.0},"location":"Left Ankle"},{"euler":{"heading":36.1875,"pitch":-2.8125,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":104.5625,"pitch":-157.0625,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":170.5,"pitch":-146.1875,"roll":-62.625},"location":"Right Knee"},{"euler":{"heading":30.25,"pitch":-127.625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.73"} +{"sensors":[{"euler":{"heading":353.4375,"pitch":136.4375,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":70.5625,"pitch":102.75,"roll":19.8125},"location":"Left Ankle"},{"euler":{"heading":23.4375,"pitch":-5.4375,"roll":-5.6875},"location":"Right Ankle"},{"euler":{"heading":112.5625,"pitch":-149.375,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":174.6875,"pitch":-156.25,"roll":-64.4375},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-133.25,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.173"} +{"sensors":[{"euler":{"heading":357.75,"pitch":131.6875,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":86.0,"pitch":105.0625,"roll":29.625},"location":"Left Ankle"},{"euler":{"heading":37.25,"pitch":-6.6875,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":118.75,"pitch":-145.625,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":154.375,"pitch":-135.625,"roll":-55.3125},"location":"Right Knee"},{"euler":{"heading":38.625,"pitch":-142.375,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.274"} +{"sensors":[{"euler":{"heading":2.875,"pitch":127.875,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":85.875,"pitch":105.3125,"roll":31.6875},"location":"Left Ankle"},{"euler":{"heading":61.5,"pitch":-9.375,"roll":3.0},"location":"Right Ankle"},{"euler":{"heading":114.0,"pitch":-149.4375,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":129.5625,"pitch":-118.0,"roll":-38.875},"location":"Right Knee"},{"euler":{"heading":39.375,"pitch":-149.1875,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.374"} +{"sensors":[{"euler":{"heading":10.125,"pitch":124.75,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":107.0625,"roll":36.1875},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":-4.5625,"roll":8.0625},"location":"Right Ankle"},{"euler":{"heading":104.5625,"pitch":-153.1875,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":111.3125,"pitch":-113.875,"roll":-22.1875},"location":"Right Knee"},{"euler":{"heading":41.0,"pitch":-152.9375,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.474"} +{"sensors":[{"euler":{"heading":17.0625,"pitch":122.75,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":97.25,"pitch":109.75,"roll":43.75},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":-1.5,"roll":6.1875},"location":"Right Ankle"},{"euler":{"heading":93.9375,"pitch":-156.6875,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":109.625,"pitch":-116.625,"roll":-18.8125},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-158.6875,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.575"} +{"sensors":[{"euler":{"heading":28.4375,"pitch":123.0,"roll":10.875},"location":"Left Knee"},{"euler":{"heading":102.0625,"pitch":113.5625,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-0.375,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":96.625,"pitch":-155.8125,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":122.5,"pitch":-122.8125,"roll":-25.625},"location":"Right Knee"},{"euler":{"heading":41.6875,"pitch":-152.25,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.675"} +{"sensors":[{"euler":{"heading":44.625,"pitch":120.9375,"roll":3.0625},"location":"Left Knee"},{"euler":{"heading":115.5,"pitch":131.0625,"roll":65.0625},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":0.0625,"roll":2.3125},"location":"Right Ankle"},{"euler":{"heading":95.4375,"pitch":-156.0,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":134.125,"pitch":-124.5625,"roll":-31.875},"location":"Right Knee"},{"euler":{"heading":30.0,"pitch":-128.5,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.776"} +{"sensors":[{"euler":{"heading":37.4375,"pitch":127.625,"roll":8.0625},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":107.5,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":-0.3125,"roll":0.625},"location":"Right Ankle"},{"euler":{"heading":97.6875,"pitch":-155.625,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":142.9375,"pitch":-125.5625,"roll":-37.375},"location":"Right Knee"},{"euler":{"heading":21.75,"pitch":-120.375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.876"} +{"sensors":[{"euler":{"heading":357.875,"pitch":140.75,"roll":25.3125},"location":"Left Knee"},{"euler":{"heading":74.5,"pitch":94.625,"roll":32.0},"location":"Left Ankle"},{"euler":{"heading":62.0,"pitch":-0.4375,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":99.0625,"pitch":-156.25,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":148.625,"pitch":-127.0,"roll":-41.625},"location":"Right Knee"},{"euler":{"heading":19.5625,"pitch":-118.1875,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:00.977"} +{"sensors":[{"euler":{"heading":325.125,"pitch":153.875,"roll":39.25},"location":"Left Knee"},{"euler":{"heading":47.25,"pitch":92.625,"roll":5.125},"location":"Left Ankle"},{"euler":{"heading":56.3125,"pitch":0.0625,"roll":-1.0},"location":"Right Ankle"},{"euler":{"heading":99.375,"pitch":-158.3125,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":155.1875,"pitch":-130.25,"roll":-46.625},"location":"Right Knee"},{"euler":{"heading":23.0625,"pitch":-121.625,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.77"} +{"sensors":[{"euler":{"heading":322.0,"pitch":157.0625,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":43.5625,"pitch":94.25,"roll":1.625},"location":"Left Ankle"},{"euler":{"heading":48.8125,"pitch":0.875,"roll":-2.625},"location":"Right Ankle"},{"euler":{"heading":100.6875,"pitch":-160.875,"roll":67.375},"location":"Right Hip"},{"euler":{"heading":162.4375,"pitch":-135.125,"roll":-52.4375},"location":"Right Knee"},{"euler":{"heading":28.25,"pitch":-126.0625,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.178"} +{"sensors":[{"euler":{"heading":339.125,"pitch":146.5625,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":58.5,"pitch":99.375,"roll":12.75},"location":"Left Ankle"},{"euler":{"heading":37.0,"pitch":-4.0625,"roll":-3.75},"location":"Right Ankle"},{"euler":{"heading":106.25,"pitch":-159.6875,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":167.75,"pitch":-142.0,"roll":-61.1875},"location":"Right Knee"},{"euler":{"heading":31.6875,"pitch":-127.4375,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.278"} +{"sensors":[{"euler":{"heading":351.0,"pitch":138.5,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":67.625,"pitch":102.3125,"roll":20.1875},"location":"Left Ankle"},{"euler":{"heading":21.4375,"pitch":-4.25,"roll":-6.6875},"location":"Right Ankle"},{"euler":{"heading":117.0,"pitch":-149.25,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":170.875,"pitch":-154.75,"roll":-62.375},"location":"Right Knee"},{"euler":{"heading":35.5625,"pitch":-130.75,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.379"} +{"sensors":[{"euler":{"heading":356.9375,"pitch":132.8125,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":76.875,"pitch":103.8125,"roll":27.0625},"location":"Left Ankle"},{"euler":{"heading":30.9375,"pitch":-6.375,"roll":-4.0},"location":"Right Ankle"},{"euler":{"heading":120.875,"pitch":-147.0,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":157.375,"pitch":-137.9375,"roll":-57.5625},"location":"Right Knee"},{"euler":{"heading":37.4375,"pitch":-135.875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.479"} +{"sensors":[{"euler":{"heading":0.625,"pitch":130.25,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":78.5,"pitch":103.375,"roll":30.0625},"location":"Left Ankle"},{"euler":{"heading":51.8125,"pitch":-9.9375,"roll":4.875},"location":"Right Ankle"},{"euler":{"heading":119.0,"pitch":-148.6875,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":131.625,"pitch":-118.5625,"roll":-41.375},"location":"Right Knee"},{"euler":{"heading":38.6875,"pitch":-144.0625,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.580"} +{"sensors":[{"euler":{"heading":6.4375,"pitch":127.125,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":83.875,"pitch":104.25,"roll":34.125},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":-7.125,"roll":7.3125},"location":"Right Ankle"},{"euler":{"heading":109.8125,"pitch":-151.625,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":111.1875,"pitch":-112.6875,"roll":-23.6875},"location":"Right Knee"},{"euler":{"heading":41.5625,"pitch":-150.9375,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.680"} +{"sensors":[{"euler":{"heading":13.25,"pitch":125.125,"roll":22.375},"location":"Left Knee"},{"euler":{"heading":89.6875,"pitch":105.5625,"roll":40.375},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":-4.4375,"roll":6.4375},"location":"Right Ankle"},{"euler":{"heading":96.4375,"pitch":-156.0,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":110.8125,"pitch":-113.8125,"roll":-19.375},"location":"Right Knee"},{"euler":{"heading":44.375,"pitch":-158.0625,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.781"} +{"sensors":[{"euler":{"heading":25.9375,"pitch":125.375,"roll":11.5625},"location":"Left Knee"},{"euler":{"heading":97.5,"pitch":111.0625,"roll":52.8125},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":-3.75,"roll":3.5},"location":"Right Ankle"},{"euler":{"heading":95.9375,"pitch":-157.5,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":123.375,"pitch":-118.9375,"roll":-27.0},"location":"Right Knee"},{"euler":{"heading":42.6875,"pitch":-153.8125,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.881"} +{"sensors":[{"euler":{"heading":43.875,"pitch":123.0625,"roll":3.125},"location":"Left Knee"},{"euler":{"heading":112.1875,"pitch":125.625,"roll":64.1875},"location":"Left Ankle"},{"euler":{"heading":69.1875,"pitch":-2.9375,"roll":2.0625},"location":"Right Ankle"},{"euler":{"heading":92.125,"pitch":-158.6875,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":136.0625,"pitch":-121.6875,"roll":-33.25},"location":"Right Knee"},{"euler":{"heading":27.0,"pitch":-126.625,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:01.982"} +{"sensors":[{"euler":{"heading":35.25,"pitch":129.625,"roll":8.6875},"location":"Left Knee"},{"euler":{"heading":104.4375,"pitch":106.6875,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":65.6875,"pitch":-2.8125,"roll":0.375},"location":"Right Ankle"},{"euler":{"heading":94.9375,"pitch":-158.1875,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":143.5,"pitch":-123.625,"roll":-38.1875},"location":"Right Knee"},{"euler":{"heading":19.8125,"pitch":-118.75,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.82"} +{"sensors":[{"euler":{"heading":250.9375,"pitch":142.625,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":71.875,"pitch":92.25,"roll":31.9375},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-2.3125,"roll":0.0625},"location":"Right Ankle"},{"euler":{"heading":96.25,"pitch":-158.0625,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":148.8125,"pitch":-126.125,"roll":-42.125},"location":"Right Knee"},{"euler":{"heading":19.3125,"pitch":-116.4375,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.183"} +{"sensors":[{"euler":{"heading":321.875,"pitch":154.875,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":45.375,"pitch":91.25,"roll":4.875},"location":"Left Ankle"},{"euler":{"heading":56.4375,"pitch":-0.9375,"roll":-1.375},"location":"Right Ankle"},{"euler":{"heading":98.4375,"pitch":-159.9375,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":154.875,"pitch":-128.6875,"roll":-47.125},"location":"Right Knee"},{"euler":{"heading":23.75,"pitch":-120.625,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.284"} +{"sensors":[{"euler":{"heading":326.9375,"pitch":154.75,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":44.4375,"pitch":94.4375,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":47.5625,"pitch":-1.0625,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":100.875,"pitch":-163.1875,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":161.125,"pitch":-132.5625,"roll":-54.0625},"location":"Right Knee"},{"euler":{"heading":28.75,"pitch":-125.6875,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.385"} +{"sensors":[{"euler":{"heading":337.8125,"pitch":146.4375,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":57.4375,"pitch":96.6875,"roll":13.625},"location":"Left Ankle"},{"euler":{"heading":34.375,"pitch":-7.6875,"roll":-4.75},"location":"Right Ankle"},{"euler":{"heading":106.5,"pitch":-157.375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":166.4375,"pitch":-140.8125,"roll":-63.5625},"location":"Right Knee"},{"euler":{"heading":26.25,"pitch":-124.5625,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.486"} +{"sensors":[{"euler":{"heading":345.25,"pitch":140.8125,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":63.5,"pitch":97.4375,"roll":18.4375},"location":"Left Ankle"},{"euler":{"heading":24.5625,"pitch":-7.4375,"roll":-4.9375},"location":"Right Ankle"},{"euler":{"heading":112.5625,"pitch":-149.3125,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":172.25,"pitch":-151.8125,"roll":-64.0},"location":"Right Knee"},{"euler":{"heading":28.625,"pitch":-130.375,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.586"} +{"sensors":[{"euler":{"heading":349.1875,"pitch":137.1875,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":70.3125,"pitch":98.3125,"roll":24.6875},"location":"Left Ankle"},{"euler":{"heading":43.1875,"pitch":-7.6875,"roll":-0.8125},"location":"Right Ankle"},{"euler":{"heading":116.0,"pitch":-147.9375,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":152.3125,"pitch":-132.0625,"roll":-53.25},"location":"Right Knee"},{"euler":{"heading":31.5625,"pitch":-136.125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.687"} +{"sensors":[{"euler":{"heading":356.0,"pitch":133.1875,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":74.5,"pitch":99.3125,"roll":28.125},"location":"Left Ankle"},{"euler":{"heading":63.5625,"pitch":-9.0625,"roll":6.1875},"location":"Right Ankle"},{"euler":{"heading":113.1875,"pitch":-151.0,"roll":44.875},"location":"Right Hip"},{"euler":{"heading":126.125,"pitch":-115.875,"roll":-36.3125},"location":"Right Knee"},{"euler":{"heading":34.5625,"pitch":-144.0,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.788"} +{"sensors":[{"euler":{"heading":4.8125,"pitch":128.5625,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":101.6875,"roll":33.125},"location":"Left Ankle"},{"euler":{"heading":83.1875,"pitch":-6.25,"roll":8.1875},"location":"Right Ankle"},{"euler":{"heading":104.0625,"pitch":-153.375,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":108.75,"pitch":-112.4375,"roll":-20.875},"location":"Right Knee"},{"euler":{"heading":39.0625,"pitch":-150.125,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.889"} +{"sensors":[{"euler":{"heading":13.375,"pitch":125.75,"roll":22.1875},"location":"Left Knee"},{"euler":{"heading":87.625,"pitch":104.4375,"roll":40.4375},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":-0.875,"roll":5.8125},"location":"Right Ankle"},{"euler":{"heading":95.9375,"pitch":-155.4375,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":108.375,"pitch":-118.125,"roll":-18.4375},"location":"Right Knee"},{"euler":{"heading":43.125,"pitch":-157.3125,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:02.989"} +{"sensors":[{"euler":{"heading":28.75,"pitch":123.3125,"roll":10.125},"location":"Left Knee"},{"euler":{"heading":98.625,"pitch":114.3125,"roll":54.1875},"location":"Left Ankle"},{"euler":{"heading":70.6875,"pitch":0.375,"roll":2.875},"location":"Right Ankle"},{"euler":{"heading":97.6875,"pitch":-154.5625,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":122.125,"pitch":-123.9375,"roll":-25.5625},"location":"Right Knee"},{"euler":{"heading":42.0,"pitch":-152.3125,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.90"} +{"sensors":[{"euler":{"heading":45.75,"pitch":123.0625,"roll":2.5},"location":"Left Knee"},{"euler":{"heading":108.0,"pitch":126.0,"roll":61.3125},"location":"Left Ankle"},{"euler":{"heading":66.375,"pitch":2.4375,"roll":1.3125},"location":"Right Ankle"},{"euler":{"heading":90.6875,"pitch":-156.4375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":138.3125,"pitch":-128.375,"roll":-32.125},"location":"Right Knee"},{"euler":{"heading":27.4375,"pitch":-126.625,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.191"} +{"sensors":[{"euler":{"heading":33.375,"pitch":130.625,"roll":9.875},"location":"Left Knee"},{"euler":{"heading":98.0625,"pitch":104.1875,"roll":53.4375},"location":"Left Ankle"},{"euler":{"heading":64.5,"pitch":3.125,"roll":-0.5},"location":"Right Ankle"},{"euler":{"heading":93.9375,"pitch":-155.3125,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":146.6875,"pitch":-129.5625,"roll":-37.0},"location":"Right Knee"},{"euler":{"heading":19.1875,"pitch":-119.5,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.291"} +{"sensors":[{"euler":{"heading":253.5625,"pitch":143.75,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":67.75,"pitch":94.4375,"roll":27.875},"location":"Left Ankle"},{"euler":{"heading":61.6875,"pitch":3.375,"roll":-1.0},"location":"Right Ankle"},{"euler":{"heading":95.375,"pitch":-156.0,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":152.875,"pitch":-131.0625,"roll":-41.375},"location":"Right Knee"},{"euler":{"heading":17.5,"pitch":-116.9375,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.392"} +{"sensors":[{"euler":{"heading":268.75,"pitch":154.625,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":44.125,"pitch":93.0,"roll":4.75},"location":"Left Ankle"},{"euler":{"heading":56.0,"pitch":4.0,"roll":-2.0625},"location":"Right Ankle"},{"euler":{"heading":96.8125,"pitch":-157.875,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":159.6875,"pitch":-133.625,"roll":-46.6875},"location":"Right Knee"},{"euler":{"heading":21.375,"pitch":-119.625,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.492"} +{"sensors":[{"euler":{"heading":326.0,"pitch":155.6875,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":43.5625,"pitch":97.125,"roll":1.5625},"location":"Left Ankle"},{"euler":{"heading":46.0,"pitch":2.8125,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":99.375,"pitch":-161.9375,"roll":67.25},"location":"Right Hip"},{"euler":{"heading":165.25,"pitch":-135.8125,"roll":-53.875},"location":"Right Knee"},{"euler":{"heading":29.5625,"pitch":-126.375,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.592"} +{"sensors":[{"euler":{"heading":343.375,"pitch":144.6875,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":61.625,"pitch":101.1875,"roll":14.6875},"location":"Left Ankle"},{"euler":{"heading":33.0625,"pitch":-4.5,"roll":-4.5625},"location":"Right Ankle"},{"euler":{"heading":104.875,"pitch":-159.0625,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":170.0625,"pitch":-141.375,"roll":-64.3125},"location":"Right Knee"},{"euler":{"heading":31.0,"pitch":-127.9375,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.693"} +{"sensors":[{"euler":{"heading":352.5,"pitch":138.25,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":68.25,"pitch":102.5,"roll":18.375},"location":"Left Ankle"},{"euler":{"heading":24.1875,"pitch":-9.9375,"roll":-6.25},"location":"Right Ankle"},{"euler":{"heading":112.75,"pitch":-149.9375,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":170.375,"pitch":-150.625,"roll":-66.8125},"location":"Right Knee"},{"euler":{"heading":32.4375,"pitch":-131.5625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.794"} +{"sensors":[{"euler":{"heading":356.1875,"pitch":133.875,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":74.3125,"pitch":103.5,"roll":23.5625},"location":"Left Ankle"},{"euler":{"heading":37.0,"pitch":-10.0625,"roll":-3.75},"location":"Right Ankle"},{"euler":{"heading":118.1875,"pitch":-146.8125,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":156.3125,"pitch":-133.625,"roll":-57.375},"location":"Right Knee"},{"euler":{"heading":34.5625,"pitch":-139.3125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.895"} +{"sensors":[{"euler":{"heading":3.625,"pitch":128.75,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":81.1875,"pitch":106.25,"roll":27.5625},"location":"Left Ankle"},{"euler":{"heading":60.875,"pitch":-8.75,"roll":1.875},"location":"Right Ankle"},{"euler":{"heading":114.5625,"pitch":-150.625,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":129.875,"pitch":-118.1875,"roll":-39.25},"location":"Right Knee"},{"euler":{"heading":37.0,"pitch":-145.6875,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:03.996"} +{"sensors":[{"euler":{"heading":11.0,"pitch":124.8125,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":85.5,"pitch":107.5625,"roll":31.6875},"location":"Left Ankle"},{"euler":{"heading":76.6875,"pitch":-4.4375,"roll":6.875},"location":"Right Ankle"},{"euler":{"heading":103.875,"pitch":-154.125,"roll":45.25},"location":"Right Hip"},{"euler":{"heading":109.6875,"pitch":-113.6875,"roll":-22.125},"location":"Right Knee"},{"euler":{"heading":39.0625,"pitch":-150.3125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.96"} +{"sensors":[{"euler":{"heading":16.5625,"pitch":123.125,"roll":23.125},"location":"Left Knee"},{"euler":{"heading":92.0,"pitch":108.75,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":-2.125,"roll":6.25},"location":"Right Ankle"},{"euler":{"heading":89.8125,"pitch":-159.0625,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":104.3125,"pitch":-115.5,"roll":-15.8125},"location":"Right Knee"},{"euler":{"heading":40.75,"pitch":-156.9375,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.197"} +{"sensors":[{"euler":{"heading":27.375,"pitch":122.3125,"roll":13.3125},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":112.625,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-1.6875,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":93.25,"pitch":-158.375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":117.75,"pitch":-120.8125,"roll":-22.9375},"location":"Right Knee"},{"euler":{"heading":40.6875,"pitch":-154.3125,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.297"} +{"sensors":[{"euler":{"heading":43.25,"pitch":121.1875,"roll":3.625},"location":"Left Knee"},{"euler":{"heading":115.6875,"pitch":128.0,"roll":64.8125},"location":"Left Ankle"},{"euler":{"heading":69.875,"pitch":-1.75,"roll":1.875},"location":"Right Ankle"},{"euler":{"heading":89.8125,"pitch":-159.9375,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":129.25,"pitch":-123.0,"roll":-29.3125},"location":"Right Knee"},{"euler":{"heading":28.0,"pitch":-128.0625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.398"} +{"sensors":[{"euler":{"heading":43.4375,"pitch":125.75,"roll":4.8125},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":108.1875,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":66.375,"pitch":0.0,"roll":0.0625},"location":"Right Ankle"},{"euler":{"heading":92.6875,"pitch":-158.25,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":139.5625,"pitch":-126.125,"roll":-34.1875},"location":"Right Knee"},{"euler":{"heading":20.4375,"pitch":-118.9375,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.499"} +{"sensors":[{"euler":{"heading":14.1875,"pitch":138.5,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":76.5625,"pitch":96.8125,"roll":35.375},"location":"Left Ankle"},{"euler":{"heading":62.3125,"pitch":3.1875,"roll":-1.0625},"location":"Right Ankle"},{"euler":{"heading":94.5625,"pitch":-156.3125,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":147.3125,"pitch":-130.0,"roll":-37.6875},"location":"Right Knee"},{"euler":{"heading":18.375,"pitch":-116.5,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.600"} +{"sensors":[{"euler":{"heading":266.25,"pitch":152.25,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":48.0625,"pitch":91.8125,"roll":6.375},"location":"Left Ankle"},{"euler":{"heading":57.3125,"pitch":5.0625,"roll":-2.125},"location":"Right Ankle"},{"euler":{"heading":95.4375,"pitch":-157.1875,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":154.6875,"pitch":-133.375,"roll":-42.8125},"location":"Right Knee"},{"euler":{"heading":20.6875,"pitch":-120.5625,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.701"} +{"sensors":[{"euler":{"heading":272.75,"pitch":157.6875,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":42.375,"pitch":93.6875,"roll":0.5625},"location":"Left Ankle"},{"euler":{"heading":48.5,"pitch":4.5625,"roll":-4.1875},"location":"Right Ankle"},{"euler":{"heading":97.25,"pitch":-159.6875,"roll":67.625},"location":"Right Hip"},{"euler":{"heading":161.5625,"pitch":-135.875,"roll":-49.6875},"location":"Right Knee"},{"euler":{"heading":25.875,"pitch":-126.5,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.802"} +{"sensors":[{"euler":{"heading":339.9375,"pitch":148.4375,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":57.75,"pitch":98.0625,"roll":12.6875},"location":"Left Ankle"},{"euler":{"heading":36.8125,"pitch":-4.0625,"roll":-5.0625},"location":"Right Ankle"},{"euler":{"heading":103.8125,"pitch":-158.8125,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":165.5625,"pitch":-137.0625,"roll":-60.625},"location":"Right Knee"},{"euler":{"heading":27.9375,"pitch":-128.4375,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:04.903"} +{"sensors":[{"euler":{"heading":349.375,"pitch":141.1875,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":65.5625,"pitch":100.5,"roll":17.0625},"location":"Left Ankle"},{"euler":{"heading":21.1875,"pitch":-4.4375,"roll":-7.5625},"location":"Right Ankle"},{"euler":{"heading":114.5625,"pitch":-148.375,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":172.0625,"pitch":-151.0,"roll":-61.4375},"location":"Right Knee"},{"euler":{"heading":31.4375,"pitch":-132.375,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.4"} +{"sensors":[{"euler":{"heading":354.875,"pitch":135.6875,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":101.375,"roll":21.8125},"location":"Left Ankle"},{"euler":{"heading":32.4375,"pitch":-5.1875,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":118.6875,"pitch":-146.125,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":157.75,"pitch":-138.25,"roll":-54.5},"location":"Right Knee"},{"euler":{"heading":37.0,"pitch":-140.0625,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.105"} +{"sensors":[{"euler":{"heading":1.875,"pitch":130.8125,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":77.9375,"pitch":103.0625,"roll":25.75},"location":"Left Ankle"},{"euler":{"heading":56.1875,"pitch":-7.6875,"roll":1.125},"location":"Right Ankle"},{"euler":{"heading":115.5625,"pitch":-149.9375,"roll":42.625},"location":"Right Hip"},{"euler":{"heading":130.375,"pitch":-120.125,"roll":-38.625},"location":"Right Knee"},{"euler":{"heading":40.0,"pitch":-145.8125,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.206"} +{"sensors":[{"euler":{"heading":9.25,"pitch":126.5625,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":83.1875,"pitch":105.3125,"roll":30.1875},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-4.9375,"roll":4.5625},"location":"Right Ankle"},{"euler":{"heading":107.5,"pitch":-152.875,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":107.375,"pitch":-114.0,"roll":-20.3125},"location":"Right Knee"},{"euler":{"heading":42.625,"pitch":-151.6875,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.306"} +{"sensors":[{"euler":{"heading":15.9375,"pitch":124.1875,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":89.875,"pitch":108.0,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":-3.875,"roll":6.8125},"location":"Right Ankle"},{"euler":{"heading":93.0,"pitch":-157.6875,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":102.0625,"pitch":-115.25,"roll":-14.8125},"location":"Right Knee"},{"euler":{"heading":43.8125,"pitch":-157.75,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.407"} +{"sensors":[{"euler":{"heading":27.4375,"pitch":121.9375,"roll":14.4375},"location":"Left Knee"},{"euler":{"heading":97.5625,"pitch":112.1875,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":-1.0625,"roll":3.5625},"location":"Right Ankle"},{"euler":{"heading":91.4375,"pitch":-159.0625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":114.25,"pitch":-121.75,"roll":-20.9375},"location":"Right Knee"},{"euler":{"heading":45.1875,"pitch":-154.25,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.508"} +{"sensors":[{"euler":{"heading":43.9375,"pitch":123.4375,"roll":4.0625},"location":"Left Knee"},{"euler":{"heading":116.1875,"pitch":131.0625,"roll":63.25},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":0.25,"roll":1.6875},"location":"Right Ankle"},{"euler":{"heading":90.8125,"pitch":-159.375,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":129.6875,"pitch":-125.5625,"roll":-27.1875},"location":"Right Knee"},{"euler":{"heading":28.0,"pitch":-128.3125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.608"} +{"sensors":[{"euler":{"heading":42.625,"pitch":124.8125,"roll":7.4375},"location":"Left Knee"},{"euler":{"heading":111.875,"pitch":114.9375,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":68.875,"pitch":2.1875,"roll":-0.125},"location":"Right Ankle"},{"euler":{"heading":93.25,"pitch":-157.625,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":138.75,"pitch":-128.375,"roll":-31.875},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-119.125,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.709"} +{"sensors":[{"euler":{"heading":8.3125,"pitch":139.5,"roll":21.75},"location":"Left Knee"},{"euler":{"heading":78.5625,"pitch":98.875,"roll":34.1875},"location":"Left Ankle"},{"euler":{"heading":65.25,"pitch":4.0625,"roll":-1.8125},"location":"Right Ankle"},{"euler":{"heading":95.0625,"pitch":-156.0,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":145.625,"pitch":-131.625,"roll":-35.5},"location":"Right Knee"},{"euler":{"heading":18.625,"pitch":-116.0625,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.810"} +{"sensors":[{"euler":{"heading":266.375,"pitch":153.0625,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":47.25,"pitch":93.4375,"roll":7.0},"location":"Left Ankle"},{"euler":{"heading":59.8125,"pitch":5.25,"roll":-2.5},"location":"Right Ankle"},{"euler":{"heading":96.6875,"pitch":-156.9375,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":153.25,"pitch":-134.75,"roll":-40.25},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-119.25,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:05.911"} +{"sensors":[{"euler":{"heading":274.5,"pitch":157.4375,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":43.8125,"pitch":95.8125,"roll":1.4375},"location":"Left Ankle"},{"euler":{"heading":50.875,"pitch":4.625,"roll":-5.5},"location":"Right Ankle"},{"euler":{"heading":99.625,"pitch":-158.5625,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":159.3125,"pitch":-136.875,"roll":-46.9375},"location":"Right Knee"},{"euler":{"heading":28.5625,"pitch":-126.25,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.12"} +{"sensors":[{"euler":{"heading":343.125,"pitch":147.375,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":60.5625,"pitch":101.5625,"roll":11.25},"location":"Left Ankle"},{"euler":{"heading":38.375,"pitch":-3.0625,"roll":-5.3125},"location":"Right Ankle"},{"euler":{"heading":102.875,"pitch":-161.5625,"roll":65.875},"location":"Right Hip"},{"euler":{"heading":164.3125,"pitch":-138.4375,"roll":-56.875},"location":"Right Knee"},{"euler":{"heading":30.75,"pitch":-129.0625,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.112"} +{"sensors":[{"euler":{"heading":354.75,"pitch":139.125,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":66.875,"pitch":103.6875,"roll":18.75},"location":"Left Ankle"},{"euler":{"heading":24.0,"pitch":-5.75,"roll":-8.125},"location":"Right Ankle"},{"euler":{"heading":109.125,"pitch":-153.0625,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":171.8125,"pitch":-150.25,"roll":-62.9375},"location":"Right Knee"},{"euler":{"heading":34.0625,"pitch":-131.125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.213"} +{"sensors":[{"euler":{"heading":358.875,"pitch":134.4375,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":74.6875,"pitch":104.75,"roll":23.1875},"location":"Left Ankle"},{"euler":{"heading":32.5625,"pitch":-6.75,"roll":-5.9375},"location":"Right Ankle"},{"euler":{"heading":116.3125,"pitch":-148.5,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":161.9375,"pitch":-139.3125,"roll":-59.125},"location":"Right Knee"},{"euler":{"heading":36.6875,"pitch":-140.1875,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.315"} +{"sensors":[{"euler":{"heading":5.4375,"pitch":129.5625,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":80.5,"pitch":107.0,"roll":26.9375},"location":"Left Ankle"},{"euler":{"heading":54.625,"pitch":-7.9375,"roll":-0.25},"location":"Right Ankle"},{"euler":{"heading":115.875,"pitch":-149.6875,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":139.25,"pitch":-121.9375,"roll":-44.5},"location":"Right Knee"},{"euler":{"heading":39.8125,"pitch":-147.0625,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.416"} +{"sensors":[{"euler":{"heading":11.75,"pitch":126.6875,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":84.5625,"pitch":107.4375,"roll":30.875},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":-5.6875,"roll":7.0},"location":"Right Ankle"},{"euler":{"heading":106.8125,"pitch":-153.375,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":113.625,"pitch":-114.6875,"roll":-25.3125},"location":"Right Knee"},{"euler":{"heading":41.25,"pitch":-151.8125,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.517"} +{"sensors":[{"euler":{"heading":15.125,"pitch":125.5,"roll":24.0},"location":"Left Knee"},{"euler":{"heading":89.1875,"pitch":107.6875,"roll":36.9375},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":-2.1875,"roll":6.0},"location":"Right Ankle"},{"euler":{"heading":91.1875,"pitch":-158.8125,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":104.0,"pitch":-115.5625,"roll":-15.0},"location":"Right Knee"},{"euler":{"heading":43.875,"pitch":-159.5,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.618"} +{"sensors":[{"euler":{"heading":25.375,"pitch":124.3125,"roll":14.4375},"location":"Left Knee"},{"euler":{"heading":95.875,"pitch":110.625,"roll":49.625},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-1.4375,"roll":3.3125},"location":"Right Ankle"},{"euler":{"heading":92.5625,"pitch":-159.5,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":114.5,"pitch":-120.75,"roll":-20.5},"location":"Right Knee"},{"euler":{"heading":44.875,"pitch":-154.9375,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.719"} +{"sensors":[{"euler":{"heading":43.0,"pitch":122.5,"roll":4.5},"location":"Left Knee"},{"euler":{"heading":114.75,"pitch":128.3125,"roll":63.75},"location":"Left Ankle"},{"euler":{"heading":71.6875,"pitch":0.0625,"roll":1.625},"location":"Right Ankle"},{"euler":{"heading":90.625,"pitch":-159.8125,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":126.4375,"pitch":-124.5,"roll":-26.125},"location":"Right Knee"},{"euler":{"heading":28.6875,"pitch":-126.375,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.820"} +{"sensors":[{"euler":{"heading":43.0,"pitch":143.3125,"roll":5.5625},"location":"Left Knee"},{"euler":{"heading":104.25,"pitch":108.875,"roll":59.625},"location":"Left Ankle"},{"euler":{"heading":68.625,"pitch":1.1875,"roll":-0.1875},"location":"Right Ankle"},{"euler":{"heading":94.25,"pitch":-157.875,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":137.0,"pitch":-127.375,"roll":-31.5},"location":"Right Knee"},{"euler":{"heading":21.1875,"pitch":-119.125,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:06.921"} +{"sensors":[{"euler":{"heading":10.125,"pitch":140.125,"roll":21.375},"location":"Left Knee"},{"euler":{"heading":76.625,"pitch":94.6875,"roll":35.1875},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":2.0,"roll":-1.9375},"location":"Right Ankle"},{"euler":{"heading":96.6875,"pitch":-157.0625,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":143.75,"pitch":-129.0,"roll":-35.8125},"location":"Right Knee"},{"euler":{"heading":18.875,"pitch":-116.5625,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.21"} +{"sensors":[{"euler":{"heading":267.6875,"pitch":153.6875,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":47.625,"pitch":91.5,"roll":7.625},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":1.5625,"roll":-2.25},"location":"Right Ankle"},{"euler":{"heading":98.125,"pitch":-159.1875,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":149.25,"pitch":-130.625,"roll":-40.8125},"location":"Right Knee"},{"euler":{"heading":21.0,"pitch":-119.25,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.122"} +{"sensors":[{"euler":{"heading":319.4375,"pitch":159.5,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":41.5,"pitch":92.375,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":51.5,"pitch":1.5,"roll":-5.125},"location":"Right Ankle"},{"euler":{"heading":100.875,"pitch":-161.875,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":155.3125,"pitch":-132.3125,"roll":-47.6875},"location":"Right Knee"},{"euler":{"heading":28.5625,"pitch":-126.125,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.222"} +{"sensors":[{"euler":{"heading":336.0,"pitch":150.0625,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":59.8125,"pitch":98.875,"roll":10.125},"location":"Left Ankle"},{"euler":{"heading":38.875,"pitch":-4.375,"roll":-5.5625},"location":"Right Ankle"},{"euler":{"heading":106.0625,"pitch":-161.0,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":161.3125,"pitch":-135.0,"roll":-58.25},"location":"Right Knee"},{"euler":{"heading":29.3125,"pitch":-128.6875,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.323"} +{"sensors":[{"euler":{"heading":343.9375,"pitch":143.1875,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":64.625,"pitch":98.875,"roll":16.875},"location":"Left Ankle"},{"euler":{"heading":22.3125,"pitch":-1.9375,"roll":-7.8125},"location":"Right Ankle"},{"euler":{"heading":113.0,"pitch":-149.125,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":171.8125,"pitch":-151.875,"roll":-60.125},"location":"Right Knee"},{"euler":{"heading":29.0,"pitch":-130.3125,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.424"} +{"sensors":[{"euler":{"heading":348.0625,"pitch":138.5625,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":68.625,"pitch":98.375,"roll":20.6875},"location":"Left Ankle"},{"euler":{"heading":30.625,"pitch":-4.25,"roll":-4.375},"location":"Right Ankle"},{"euler":{"heading":117.5625,"pitch":-147.4375,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":158.9375,"pitch":-139.625,"roll":-55.0},"location":"Right Knee"},{"euler":{"heading":31.8125,"pitch":-137.0,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.525"} +{"sensors":[{"euler":{"heading":354.1875,"pitch":134.4375,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":72.6875,"pitch":99.0,"roll":24.1875},"location":"Left Ankle"},{"euler":{"heading":54.0,"pitch":-7.9375,"roll":0.6875},"location":"Right Ankle"},{"euler":{"heading":115.5,"pitch":-150.125,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":133.8125,"pitch":-120.1875,"roll":-40.375},"location":"Right Knee"},{"euler":{"heading":35.1875,"pitch":-142.0,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.626"} +{"sensors":[{"euler":{"heading":1.4375,"pitch":130.625,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":76.9375,"pitch":100.125,"roll":28.625},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-6.3125,"roll":5.875},"location":"Right Ankle"},{"euler":{"heading":106.0,"pitch":-154.0,"roll":46.0},"location":"Right Hip"},{"euler":{"heading":108.375,"pitch":-112.9375,"roll":-20.9375},"location":"Right Knee"},{"euler":{"heading":36.6875,"pitch":-146.8125,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.727"} +{"sensors":[{"euler":{"heading":8.0625,"pitch":112.125,"roll":25.5},"location":"Left Knee"},{"euler":{"heading":83.5,"pitch":101.5625,"roll":35.375},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":-5.125,"roll":6.3125},"location":"Right Ankle"},{"euler":{"heading":95.6875,"pitch":-156.9375,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":102.6875,"pitch":-112.8125,"roll":-13.4375},"location":"Right Knee"},{"euler":{"heading":39.1875,"pitch":-151.625,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.828"} +{"sensors":[{"euler":{"heading":18.0625,"pitch":126.0,"roll":17.25},"location":"Left Knee"},{"euler":{"heading":93.375,"pitch":105.0,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":-0.875,"roll":3.375},"location":"Right Ankle"},{"euler":{"heading":93.3125,"pitch":-158.3125,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":112.9375,"pitch":-120.9375,"roll":-18.75},"location":"Right Knee"},{"euler":{"heading":40.375,"pitch":-152.9375,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:07.929"} +{"sensors":[{"euler":{"heading":36.375,"pitch":122.5625,"roll":7.3125},"location":"Left Knee"},{"euler":{"heading":114.375,"pitch":122.1875,"roll":63.8125},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":1.125,"roll":1.8125},"location":"Right Ankle"},{"euler":{"heading":94.25,"pitch":-156.4375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":126.9375,"pitch":-125.375,"roll":-25.4375},"location":"Right Knee"},{"euler":{"heading":30.0625,"pitch":-132.9375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.30"} +{"sensors":[{"euler":{"heading":40.3125,"pitch":126.875,"roll":6.8125},"location":"Left Knee"},{"euler":{"heading":107.25,"pitch":105.625,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":69.1875,"pitch":3.125,"roll":-0.625},"location":"Right Ankle"},{"euler":{"heading":93.1875,"pitch":-156.5625,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":135.4375,"pitch":-128.75,"roll":-29.375},"location":"Right Knee"},{"euler":{"heading":20.75,"pitch":-117.6875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.131"} +{"sensors":[{"euler":{"heading":7.125,"pitch":139.375,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":78.875,"pitch":93.125,"roll":37.25},"location":"Left Ankle"},{"euler":{"heading":66.375,"pitch":4.75,"roll":-2.25},"location":"Right Ankle"},{"euler":{"heading":95.625,"pitch":-154.8125,"roll":63.625},"location":"Right Hip"},{"euler":{"heading":142.625,"pitch":-131.25,"roll":-33.1875},"location":"Right Knee"},{"euler":{"heading":17.125,"pitch":-115.3125,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.232"} +{"sensors":[{"euler":{"heading":264.875,"pitch":153.0625,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":49.0625,"pitch":90.5,"roll":9.5625},"location":"Left Ankle"},{"euler":{"heading":61.6875,"pitch":5.25,"roll":-2.75},"location":"Right Ankle"},{"euler":{"heading":97.5,"pitch":-155.75,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":148.75,"pitch":-133.0,"roll":-37.8125},"location":"Right Knee"},{"euler":{"heading":12.3125,"pitch":-123.125,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.332"} +{"sensors":[{"euler":{"heading":319.5,"pitch":159.0625,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":41.8125,"pitch":92.3125,"roll":-0.375},"location":"Left Ankle"},{"euler":{"heading":55.1875,"pitch":4.1875,"roll":-5.0},"location":"Right Ankle"},{"euler":{"heading":101.625,"pitch":-156.4375,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":-133.4375,"roll":-44.75},"location":"Right Knee"},{"euler":{"heading":25.3125,"pitch":-126.4375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.433"} +{"sensors":[{"euler":{"heading":336.8125,"pitch":150.4375,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":57.8125,"pitch":99.375,"roll":8.25},"location":"Left Ankle"},{"euler":{"heading":42.0625,"pitch":-1.0625,"roll":-6.375},"location":"Right Ankle"},{"euler":{"heading":105.6875,"pitch":-157.6875,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":160.625,"pitch":-133.9375,"roll":-55.5},"location":"Right Knee"},{"euler":{"heading":27.1875,"pitch":-128.125,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.534"} +{"sensors":[{"euler":{"heading":345.875,"pitch":143.0625,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":61.0625,"pitch":99.4375,"roll":14.75},"location":"Left Ankle"},{"euler":{"heading":24.5,"pitch":-5.0,"roll":-9.8125},"location":"Right Ankle"},{"euler":{"heading":113.1875,"pitch":-151.0625,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":166.5,"pitch":-143.375,"roll":-61.125},"location":"Right Knee"},{"euler":{"heading":29.9375,"pitch":-131.25,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.635"} +{"sensors":[{"euler":{"heading":351.8125,"pitch":137.8125,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":100.875,"roll":21.6875},"location":"Left Ankle"},{"euler":{"heading":31.3125,"pitch":-6.875,"roll":-6.375},"location":"Right Ankle"},{"euler":{"heading":119.375,"pitch":-147.375,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":154.5,"pitch":-132.9375,"roll":-54.1875},"location":"Right Knee"},{"euler":{"heading":34.125,"pitch":-139.0625,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.735"} +{"sensors":[{"euler":{"heading":356.5,"pitch":133.9375,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":73.3125,"pitch":100.375,"roll":25.1875},"location":"Left Ankle"},{"euler":{"heading":55.125,"pitch":-10.4375,"roll":-0.625},"location":"Right Ankle"},{"euler":{"heading":117.5,"pitch":-149.5,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":129.3125,"pitch":-116.4375,"roll":-37.625},"location":"Right Knee"},{"euler":{"heading":37.1875,"pitch":-145.75,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.836"} +{"sensors":[{"euler":{"heading":3.5625,"pitch":130.4375,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":79.0625,"pitch":101.5625,"roll":30.4375},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":-7.1875,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":110.3125,"pitch":-152.8125,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":106.375,"pitch":-111.5625,"roll":-19.5625},"location":"Right Knee"},{"euler":{"heading":39.25,"pitch":-150.375,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:08.937"} +{"sensors":[{"euler":{"heading":10.125,"pitch":127.6875,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":87.1875,"pitch":104.1875,"roll":38.0625},"location":"Left Ankle"},{"euler":{"heading":85.8125,"pitch":-6.4375,"roll":6.0},"location":"Right Ankle"},{"euler":{"heading":96.0,"pitch":-156.375,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":99.375,"pitch":-112.3125,"roll":-11.75},"location":"Right Knee"},{"euler":{"heading":40.6875,"pitch":-154.875,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.38"} +{"sensors":[{"euler":{"heading":21.4375,"pitch":124.75,"roll":17.375},"location":"Left Knee"},{"euler":{"heading":96.125,"pitch":108.875,"roll":49.25},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":-3.8125,"roll":2.625},"location":"Right Ankle"},{"euler":{"heading":93.125,"pitch":-158.6875,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":109.8125,"pitch":-118.5,"roll":-17.5},"location":"Right Knee"},{"euler":{"heading":45.4375,"pitch":-158.0,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.138"} +{"sensors":[{"euler":{"heading":39.0625,"pitch":124.375,"roll":7.0},"location":"Left Knee"},{"euler":{"heading":113.1875,"pitch":125.0625,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":72.0625,"pitch":-1.0,"roll":0.625},"location":"Right Ankle"},{"euler":{"heading":94.5625,"pitch":-157.4375,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":123.1875,"pitch":-123.1875,"roll":-23.875},"location":"Right Knee"},{"euler":{"heading":29.75,"pitch":-137.3125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.239"} +{"sensors":[{"euler":{"heading":40.6875,"pitch":128.0625,"roll":7.125},"location":"Left Knee"},{"euler":{"heading":104.75,"pitch":112.75,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":68.3125,"pitch":-0.75,"roll":-1.0625},"location":"Right Ankle"},{"euler":{"heading":93.3125,"pitch":-157.375,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":131.9375,"pitch":-125.75,"roll":-28.8125},"location":"Right Knee"},{"euler":{"heading":21.875,"pitch":-121.5625,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.339"} +{"sensors":[{"euler":{"heading":10.5625,"pitch":140.125,"roll":23.1875},"location":"Left Knee"},{"euler":{"heading":76.875,"pitch":95.0,"roll":36.1875},"location":"Left Ankle"},{"euler":{"heading":65.6875,"pitch":-0.1875,"roll":-3.9375},"location":"Right Ankle"},{"euler":{"heading":97.0625,"pitch":-156.3125,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":138.25,"pitch":-126.9375,"roll":-33.0625},"location":"Right Knee"},{"euler":{"heading":18.5625,"pitch":-118.0625,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.441"} +{"sensors":[{"euler":{"heading":328.0625,"pitch":153.3125,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":49.1875,"pitch":93.0,"roll":9.5},"location":"Left Ankle"},{"euler":{"heading":60.625,"pitch":0.375,"roll":-4.5625},"location":"Right Ankle"},{"euler":{"heading":99.3125,"pitch":-157.0625,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":144.6875,"pitch":-128.875,"roll":-38.0625},"location":"Right Knee"},{"euler":{"heading":17.8125,"pitch":-120.5625,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.541"} +{"sensors":[{"euler":{"heading":313.5,"pitch":161.375,"roll":42.75},"location":"Left Knee"},{"euler":{"heading":39.6875,"pitch":89.6875,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":52.0625,"pitch":0.75,"roll":-6.625},"location":"Right Ankle"},{"euler":{"heading":102.75,"pitch":-157.9375,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":150.875,"pitch":-130.0,"roll":-44.8125},"location":"Right Knee"},{"euler":{"heading":26.75,"pitch":-125.1875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.642"} +{"sensors":[{"euler":{"heading":330.0,"pitch":152.375,"roll":42.1875},"location":"Left Knee"},{"euler":{"heading":52.4375,"pitch":95.1875,"roll":6.0},"location":"Left Ankle"},{"euler":{"heading":37.4375,"pitch":-4.625,"roll":-7.9375},"location":"Right Ankle"},{"euler":{"heading":107.25,"pitch":-159.6875,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":158.1875,"pitch":-131.5625,"roll":-55.9375},"location":"Right Knee"},{"euler":{"heading":30.0625,"pitch":-128.6875,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.743"} +{"sensors":[{"euler":{"heading":340.3125,"pitch":144.8125,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":60.0,"pitch":96.25,"roll":15.1875},"location":"Left Ankle"},{"euler":{"heading":22.0625,"pitch":-5.875,"roll":-9.25},"location":"Right Ankle"},{"euler":{"heading":115.0,"pitch":-151.6875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":164.4375,"pitch":-143.3125,"roll":-60.1875},"location":"Right Knee"},{"euler":{"heading":28.8125,"pitch":-128.5625,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.844"} +{"sensors":[{"euler":{"heading":345.3125,"pitch":140.375,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":67.5,"pitch":97.625,"roll":19.625},"location":"Left Ankle"},{"euler":{"heading":28.5,"pitch":-5.4375,"roll":-6.25},"location":"Right Ankle"},{"euler":{"heading":119.5625,"pitch":-147.3125,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":157.25,"pitch":-137.5,"roll":-56.375},"location":"Right Knee"},{"euler":{"heading":30.6875,"pitch":-136.0625,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:09.945"} +{"sensors":[{"euler":{"heading":349.75,"pitch":136.875,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":72.3125,"pitch":97.0625,"roll":26.0625},"location":"Left Ankle"},{"euler":{"heading":51.625,"pitch":-8.875,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":117.0,"pitch":-148.0625,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":133.6875,"pitch":-121.375,"roll":-41.5},"location":"Right Knee"},{"euler":{"heading":34.5,"pitch":-142.4375,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.46"} +{"sensors":[{"euler":{"heading":357.8125,"pitch":132.5,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":77.0,"pitch":98.1875,"roll":29.8125},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-7.5625,"roll":2.9375},"location":"Right Ankle"},{"euler":{"heading":108.875,"pitch":-152.5625,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":108.375,"pitch":-112.5,"roll":-21.625},"location":"Right Knee"},{"euler":{"heading":37.6875,"pitch":-148.625,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.146"} +{"sensors":[{"euler":{"heading":5.5,"pitch":129.1875,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":85.1875,"pitch":101.0625,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":-8.125,"roll":6.5},"location":"Right Ankle"},{"euler":{"heading":96.1875,"pitch":-157.6875,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":98.8125,"pitch":-111.875,"roll":-12.0625},"location":"Right Knee"},{"euler":{"heading":40.625,"pitch":-155.0,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.247"} +{"sensors":[{"euler":{"heading":17.0,"pitch":125.625,"roll":19.375},"location":"Left Knee"},{"euler":{"heading":93.0,"pitch":104.5,"roll":48.0625},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-6.5625,"roll":2.1875},"location":"Right Ankle"},{"euler":{"heading":93.8125,"pitch":-160.125,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":109.375,"pitch":-114.875,"roll":-19.0},"location":"Right Knee"},{"euler":{"heading":44.0625,"pitch":-155.1875,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.348"} +{"sensors":[{"euler":{"heading":35.1875,"pitch":124.5,"roll":8.375},"location":"Left Knee"},{"euler":{"heading":104.625,"pitch":118.1875,"roll":59.875},"location":"Left Ankle"},{"euler":{"heading":72.6875,"pitch":-7.1875,"roll":1.625},"location":"Right Ankle"},{"euler":{"heading":94.5,"pitch":-160.125,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":121.5625,"pitch":-118.1875,"roll":-25.8125},"location":"Right Knee"},{"euler":{"heading":28.625,"pitch":-133.625,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.449"} +{"sensors":[{"euler":{"heading":34.4375,"pitch":129.125,"roll":9.4375},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":103.25,"roll":54.8125},"location":"Left Ankle"},{"euler":{"heading":69.8125,"pitch":-7.0625,"roll":0.5625},"location":"Right Ankle"},{"euler":{"heading":95.0,"pitch":-160.625,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":128.1875,"pitch":-119.5625,"roll":-30.3125},"location":"Right Knee"},{"euler":{"heading":22.1875,"pitch":-121.5,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.550"} +{"sensors":[{"euler":{"heading":357.25,"pitch":140.6875,"roll":25.75},"location":"Left Knee"},{"euler":{"heading":73.375,"pitch":91.1875,"roll":32.3125},"location":"Left Ankle"},{"euler":{"heading":66.0,"pitch":-5.9375,"roll":-1.6875},"location":"Right Ankle"},{"euler":{"heading":97.5,"pitch":-159.5,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":135.375,"pitch":-121.6875,"roll":-35.125},"location":"Right Knee"},{"euler":{"heading":19.375,"pitch":-118.875,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.651"} +{"sensors":[{"euler":{"heading":322.1875,"pitch":154.1875,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":48.0,"pitch":89.5625,"roll":7.8125},"location":"Left Ankle"},{"euler":{"heading":61.0625,"pitch":-4.5,"roll":-2.0},"location":"Right Ankle"},{"euler":{"heading":98.5625,"pitch":-161.0,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":143.0,"pitch":-124.625,"roll":-40.3125},"location":"Right Knee"},{"euler":{"heading":20.5,"pitch":-118.75,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.752"} +{"sensors":[{"euler":{"heading":312.9375,"pitch":161.375,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":40.625,"pitch":88.0625,"roll":-1.75},"location":"Left Ankle"},{"euler":{"heading":53.0625,"pitch":-2.9375,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":100.6875,"pitch":-163.6875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":150.125,"pitch":-126.5625,"roll":-47.1875},"location":"Right Knee"},{"euler":{"heading":27.6875,"pitch":-124.8125,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.852"} +{"sensors":[{"euler":{"heading":332.875,"pitch":151.25,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":55.875,"pitch":95.875,"roll":7.9375},"location":"Left Ankle"},{"euler":{"heading":41.4375,"pitch":-6.4375,"roll":-7.3125},"location":"Right Ankle"},{"euler":{"heading":105.6875,"pitch":-162.625,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":156.75,"pitch":-129.75,"roll":-57.1875},"location":"Right Knee"},{"euler":{"heading":30.25,"pitch":-127.5625,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:10.953"} +{"sensors":[{"euler":{"heading":341.75,"pitch":143.9375,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":60.25,"pitch":96.0,"roll":14.875},"location":"Left Ankle"},{"euler":{"heading":22.0625,"pitch":-7.5,"roll":-10.375},"location":"Right Ankle"},{"euler":{"heading":116.25,"pitch":-151.4375,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":162.625,"pitch":-141.0625,"roll":-61.75},"location":"Right Knee"},{"euler":{"heading":30.625,"pitch":-130.875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.54"} +{"sensors":[{"euler":{"heading":345.8125,"pitch":139.75,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":66.5625,"pitch":96.875,"roll":19.875},"location":"Left Ankle"},{"euler":{"heading":28.375,"pitch":-7.9375,"roll":-6.4375},"location":"Right Ankle"},{"euler":{"heading":118.5,"pitch":-148.4375,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":151.875,"pitch":-131.4375,"roll":-54.5625},"location":"Right Knee"},{"euler":{"heading":32.125,"pitch":-137.25,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.154"} +{"sensors":[{"euler":{"heading":351.25,"pitch":136.0625,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":74.125,"pitch":97.4375,"roll":27.4375},"location":"Left Ankle"},{"euler":{"heading":54.75,"pitch":-10.0,"roll":0.25},"location":"Right Ankle"},{"euler":{"heading":114.3125,"pitch":-149.25,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":125.9375,"pitch":-116.8125,"roll":-36.625},"location":"Right Knee"},{"euler":{"heading":34.1875,"pitch":-142.375,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.255"} +{"sensors":[{"euler":{"heading":359.0,"pitch":132.3125,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":78.5625,"pitch":98.875,"roll":31.8125},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":-6.125,"roll":3.625},"location":"Right Ankle"},{"euler":{"heading":105.875,"pitch":-153.6875,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":106.0,"pitch":-112.375,"roll":-19.1875},"location":"Right Knee"},{"euler":{"heading":35.75,"pitch":-146.625,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.356"} +{"sensors":[{"euler":{"heading":6.4375,"pitch":130.0,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":84.875,"pitch":100.1875,"roll":38.75},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":-7.75,"roll":5.3125},"location":"Right Ankle"},{"euler":{"heading":95.6875,"pitch":-157.75,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":100.4375,"pitch":-110.625,"roll":-12.9375},"location":"Right Knee"},{"euler":{"heading":37.875,"pitch":-151.8125,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.456"} +{"sensors":[{"euler":{"heading":18.75,"pitch":126.75,"roll":16.6875},"location":"Left Knee"},{"euler":{"heading":94.0625,"pitch":102.6875,"roll":50.25},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-2.8125,"roll":1.4375},"location":"Right Ankle"},{"euler":{"heading":94.125,"pitch":-158.3125,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":109.9375,"pitch":-119.8125,"roll":-17.9375},"location":"Right Knee"},{"euler":{"heading":42.75,"pitch":-155.6875,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.557"} +{"sensors":[{"euler":{"heading":36.9375,"pitch":125.25,"roll":7.125},"location":"Left Knee"},{"euler":{"heading":105.1875,"pitch":117.75,"roll":60.1875},"location":"Left Ankle"},{"euler":{"heading":68.375,"pitch":-4.3125,"roll":0.125},"location":"Right Ankle"},{"euler":{"heading":93.75,"pitch":-159.25,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":123.375,"pitch":-119.8125,"roll":-25.8125},"location":"Right Knee"},{"euler":{"heading":26.75,"pitch":-133.6875,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.657"} +{"sensors":[{"euler":{"heading":37.25,"pitch":128.5,"roll":7.9375},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":104.8125,"roll":56.375},"location":"Left Ankle"},{"euler":{"heading":67.3125,"pitch":-4.4375,"roll":-2.25},"location":"Right Ankle"},{"euler":{"heading":94.5,"pitch":-160.125,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":130.125,"pitch":-119.875,"roll":-31.0},"location":"Right Knee"},{"euler":{"heading":21.375,"pitch":-123.4375,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.758"} +{"sensors":[{"euler":{"heading":7.75,"pitch":137.875,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":77.0625,"pitch":95.3125,"roll":35.3125},"location":"Left Ankle"},{"euler":{"heading":63.625,"pitch":-3.875,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":97.75,"pitch":-160.0625,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":135.25,"pitch":-121.0625,"roll":-35.375},"location":"Right Knee"},{"euler":{"heading":19.875,"pitch":-119.25,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.859"} +{"sensors":[{"euler":{"heading":329.1875,"pitch":151.5,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":50.375,"pitch":91.3125,"roll":10.4375},"location":"Left Ankle"},{"euler":{"heading":58.0625,"pitch":-2.5625,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":97.9375,"pitch":-161.9375,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":142.3125,"pitch":-124.0625,"roll":-40.125},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-120.3125,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:11.960"} +{"sensors":[{"euler":{"heading":315.625,"pitch":160.9375,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":39.625,"pitch":90.3125,"roll":-2.8125},"location":"Left Ankle"},{"euler":{"heading":49.4375,"pitch":-1.1875,"roll":-7.75},"location":"Right Ankle"},{"euler":{"heading":100.4375,"pitch":-164.125,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":149.875,"pitch":-126.9375,"roll":-46.8125},"location":"Right Knee"},{"euler":{"heading":27.4375,"pitch":-125.0625,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.63"} +{"sensors":[{"euler":{"heading":336.1875,"pitch":150.3125,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":55.9375,"pitch":98.5625,"roll":8.25},"location":"Left Ankle"},{"euler":{"heading":34.8125,"pitch":-6.3125,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":106.125,"pitch":-162.5625,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":157.125,"pitch":-130.5,"roll":-57.5625},"location":"Right Knee"},{"euler":{"heading":29.75,"pitch":-127.1875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.164"} +{"sensors":[{"euler":{"heading":347.4375,"pitch":141.8125,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":63.9375,"pitch":100.875,"roll":16.5625},"location":"Left Ankle"},{"euler":{"heading":19.875,"pitch":-7.125,"roll":-10.1875},"location":"Right Ankle"},{"euler":{"heading":114.25,"pitch":-152.0,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":162.875,"pitch":-140.9375,"roll":-61.0},"location":"Right Knee"},{"euler":{"heading":31.1875,"pitch":-129.4375,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.265"} +{"sensors":[{"euler":{"heading":350.6875,"pitch":137.75,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":77.625,"pitch":101.625,"roll":26.25},"location":"Left Ankle"},{"euler":{"heading":34.1875,"pitch":-8.0,"roll":-5.5625},"location":"Right Ankle"},{"euler":{"heading":118.375,"pitch":-147.5625,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":146.9375,"pitch":-112.5,"roll":-51.9375},"location":"Right Knee"},{"euler":{"heading":33.9375,"pitch":-139.1875,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.366"} +{"sensors":[{"euler":{"heading":355.5625,"pitch":134.125,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":77.0,"pitch":101.3125,"roll":28.3125},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":-10.4375,"roll":0.6875},"location":"Right Ankle"},{"euler":{"heading":114.25,"pitch":-149.25,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":120.375,"pitch":-114.875,"roll":-33.4375},"location":"Right Knee"},{"euler":{"heading":34.75,"pitch":-143.625,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.467"} +{"sensors":[{"euler":{"heading":3.25,"pitch":129.8125,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":81.3125,"pitch":102.875,"roll":32.8125},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-8.125,"roll":5.625},"location":"Right Ankle"},{"euler":{"heading":104.4375,"pitch":-154.875,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":103.75,"pitch":-110.25,"roll":-16.5625},"location":"Right Knee"},{"euler":{"heading":37.6875,"pitch":-148.1875,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.567"} +{"sensors":[{"euler":{"heading":10.3125,"pitch":127.1875,"roll":25.6875},"location":"Left Knee"},{"euler":{"heading":89.0625,"pitch":104.5625,"roll":39.875},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":-7.0,"roll":4.5},"location":"Right Ankle"},{"euler":{"heading":95.9375,"pitch":-158.1875,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":101.5,"pitch":-111.4375,"roll":-13.9375},"location":"Right Knee"},{"euler":{"heading":40.8125,"pitch":-154.625,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.669"} +{"sensors":[{"euler":{"heading":22.1875,"pitch":125.125,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":106.0625,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":72.0,"pitch":-4.5625,"roll":0.625},"location":"Right Ankle"},{"euler":{"heading":95.9375,"pitch":-159.125,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":111.375,"pitch":-117.625,"roll":-19.3125},"location":"Right Knee"},{"euler":{"heading":35.8125,"pitch":-146.0,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.769"} +{"sensors":[{"euler":{"heading":36.75,"pitch":124.5,"roll":8.0},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":115.625,"roll":57.8125},"location":"Left Ankle"},{"euler":{"heading":69.9375,"pitch":-5.6875,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":92.9375,"pitch":-161.5,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":122.6875,"pitch":-118.375,"roll":-25.8125},"location":"Right Knee"},{"euler":{"heading":23.8125,"pitch":-125.6875,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.870"} +{"sensors":[{"euler":{"heading":26.0,"pitch":131.3125,"roll":14.1875},"location":"Left Knee"},{"euler":{"heading":92.5625,"pitch":98.75,"roll":48.6875},"location":"Left Ankle"},{"euler":{"heading":68.5625,"pitch":-6.0,"roll":-1.5},"location":"Right Ankle"},{"euler":{"heading":97.1875,"pitch":-161.3125,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":128.5625,"pitch":-117.9375,"roll":-30.875},"location":"Right Knee"},{"euler":{"heading":19.25,"pitch":-123.125,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:12.971"} +{"sensors":[{"euler":{"heading":351.0625,"pitch":142.4375,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":67.875,"pitch":94.8125,"roll":25.5625},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":-5.75,"roll":-2.25},"location":"Right Ankle"},{"euler":{"heading":100.0,"pitch":-161.9375,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":133.25,"pitch":-118.375,"roll":-35.375},"location":"Right Knee"},{"euler":{"heading":19.875,"pitch":-119.9375,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.72"} +{"sensors":[{"euler":{"heading":322.9375,"pitch":155.0625,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":43.9375,"pitch":91.625,"roll":2.6875},"location":"Left Ankle"},{"euler":{"heading":58.125,"pitch":-4.375,"roll":-5.5},"location":"Right Ankle"},{"euler":{"heading":102.375,"pitch":-162.5,"roll":66.4375},"location":"Right Hip"},{"euler":{"heading":140.0,"pitch":-120.625,"roll":-40.75},"location":"Right Knee"},{"euler":{"heading":24.125,"pitch":-122.75,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.173"} +{"sensors":[{"euler":{"heading":330.5,"pitch":154.0625,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":43.5625,"pitch":95.4375,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":47.375,"pitch":-3.5625,"roll":-7.5625},"location":"Right Ankle"},{"euler":{"heading":103.875,"pitch":-164.625,"roll":66.875},"location":"Right Hip"},{"euler":{"heading":147.875,"pitch":-124.6875,"roll":-48.0},"location":"Right Knee"},{"euler":{"heading":27.375,"pitch":-126.0625,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.273"} +{"sensors":[{"euler":{"heading":345.8125,"pitch":144.1875,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":60.375,"pitch":101.0,"roll":12.3125},"location":"Left Ankle"},{"euler":{"heading":29.5625,"pitch":-5.4375,"roll":-8.6875},"location":"Right Ankle"},{"euler":{"heading":110.875,"pitch":-157.5625,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":157.625,"pitch":-132.9375,"roll":-58.1875},"location":"Right Knee"},{"euler":{"heading":27.875,"pitch":-125.75,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.374"} +{"sensors":[{"euler":{"heading":355.125,"pitch":136.5625,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":71.0625,"pitch":104.375,"roll":19.375},"location":"Left Ankle"},{"euler":{"heading":23.3125,"pitch":-8.0,"roll":-8.0},"location":"Right Ankle"},{"euler":{"heading":118.1875,"pitch":-149.4375,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":155.5,"pitch":-135.75,"roll":-58.75},"location":"Right Knee"},{"euler":{"heading":33.1875,"pitch":-132.875,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.475"} +{"sensors":[{"euler":{"heading":1.625,"pitch":131.125,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":86.0,"pitch":107.25,"roll":29.0},"location":"Left Ankle"},{"euler":{"heading":42.5625,"pitch":-10.375,"roll":-4.4375},"location":"Right Ankle"},{"euler":{"heading":120.1875,"pitch":-147.75,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":133.875,"pitch":-119.5,"roll":-45.3125},"location":"Right Knee"},{"euler":{"heading":38.3125,"pitch":-140.75,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.576"} +{"sensors":[{"euler":{"heading":7.3125,"pitch":127.1875,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":84.625,"pitch":107.125,"roll":30.5625},"location":"Left Ankle"},{"euler":{"heading":67.1875,"pitch":-10.875,"roll":1.6875},"location":"Right Ankle"},{"euler":{"heading":119.25,"pitch":-150.4375,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":110.125,"pitch":-109.75,"roll":-26.0625},"location":"Right Knee"},{"euler":{"heading":40.3125,"pitch":-146.25,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.676"} +{"sensors":[{"euler":{"heading":13.5625,"pitch":124.0,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":88.0,"pitch":108.25,"roll":34.75},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":-8.3125,"roll":6.5},"location":"Right Ankle"},{"euler":{"heading":103.75,"pitch":-156.8125,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":95.5,"pitch":-108.9375,"roll":-11.6875},"location":"Right Knee"},{"euler":{"heading":41.875,"pitch":-150.8125,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.777"} +{"sensors":[{"euler":{"heading":21.0,"pitch":122.5625,"roll":21.3125},"location":"Left Knee"},{"euler":{"heading":95.0,"pitch":109.5625,"roll":43.3125},"location":"Left Ankle"},{"euler":{"heading":78.5,"pitch":-4.3125,"roll":4.375},"location":"Right Ankle"},{"euler":{"heading":95.875,"pitch":-160.125,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":101.625,"pitch":-114.875,"roll":-14.5625},"location":"Right Knee"},{"euler":{"heading":45.3125,"pitch":-156.4375,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.878"} +{"sensors":[{"euler":{"heading":35.1875,"pitch":122.375,"roll":9.6875},"location":"Left Knee"},{"euler":{"heading":101.625,"pitch":116.3125,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":70.3125,"pitch":-1.8125,"roll":-1.4375},"location":"Right Ankle"},{"euler":{"heading":99.25,"pitch":-158.0625,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":113.375,"pitch":-119.0,"roll":-21.25},"location":"Right Knee"},{"euler":{"heading":35.625,"pitch":-140.75,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:13.979"} +{"sensors":[{"euler":{"heading":44.6875,"pitch":123.0,"roll":4.8125},"location":"Left Knee"},{"euler":{"heading":107.0625,"pitch":122.1875,"roll":59.625},"location":"Left Ankle"},{"euler":{"heading":68.625,"pitch":-0.625,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":96.75,"pitch":-158.5,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":124.1875,"pitch":-122.875,"roll":-26.3125},"location":"Right Knee"},{"euler":{"heading":26.0,"pitch":-121.625,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.79"} +{"sensors":[{"euler":{"heading":26.5,"pitch":132.875,"roll":15.25},"location":"Left Knee"},{"euler":{"heading":94.75,"pitch":101.6875,"roll":43.875},"location":"Left Ankle"},{"euler":{"heading":65.375,"pitch":1.5,"roll":-3.0625},"location":"Right Ankle"},{"euler":{"heading":98.875,"pitch":-157.375,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":131.6875,"pitch":-125.4375,"roll":-30.5},"location":"Right Knee"},{"euler":{"heading":18.3125,"pitch":-119.375,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.183"} +{"sensors":[{"euler":{"heading":262.5,"pitch":148.0625,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":59.75,"pitch":94.75,"roll":16.5},"location":"Left Ankle"},{"euler":{"heading":61.6875,"pitch":2.5625,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":100.5625,"pitch":-158.3125,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":138.1875,"pitch":-127.125,"roll":-35.0},"location":"Right Knee"},{"euler":{"heading":16.875,"pitch":-116.875,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.284"} +{"sensors":[{"euler":{"heading":321.0,"pitch":158.4375,"roll":40.875},"location":"Left Knee"},{"euler":{"heading":39.875,"pitch":91.1875,"roll":-0.875},"location":"Left Ankle"},{"euler":{"heading":54.3125,"pitch":3.1875,"roll":-6.125},"location":"Right Ankle"},{"euler":{"heading":101.3125,"pitch":-159.875,"roll":66.3125},"location":"Right Hip"},{"euler":{"heading":146.875,"pitch":-129.9375,"roll":-41.5},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-123.25,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.385"} +{"sensors":[{"euler":{"heading":336.625,"pitch":150.875,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":48.75,"pitch":96.9375,"roll":6.6875},"location":"Left Ankle"},{"euler":{"heading":43.75,"pitch":0.1875,"roll":-7.4375},"location":"Right Ankle"},{"euler":{"heading":105.0,"pitch":-161.0625,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":154.3125,"pitch":-131.625,"roll":-50.9375},"location":"Right Knee"},{"euler":{"heading":26.25,"pitch":-126.3125,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.486"} +{"sensors":[{"euler":{"heading":348.625,"pitch":142.375,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":60.0625,"pitch":100.0,"roll":13.8125},"location":"Left Ankle"},{"euler":{"heading":25.375,"pitch":-4.1875,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":115.25,"pitch":-151.0625,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":159.0625,"pitch":-139.5625,"roll":-57.3125},"location":"Right Knee"},{"euler":{"heading":29.4375,"pitch":-129.4375,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.586"} +{"sensors":[{"euler":{"heading":355.8125,"pitch":136.0625,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":75.8125,"pitch":102.6875,"roll":24.8125},"location":"Left Ankle"},{"euler":{"heading":30.3125,"pitch":-3.75,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":121.9375,"pitch":-145.625,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":147.8125,"pitch":-134.625,"roll":-51.25},"location":"Right Knee"},{"euler":{"heading":34.6875,"pitch":-138.4375,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.687"} +{"sensors":[{"euler":{"heading":1.375,"pitch":131.6875,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":82.0625,"pitch":104.3125,"roll":28.125},"location":"Left Ankle"},{"euler":{"heading":52.5,"pitch":-7.0,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":120.1875,"pitch":-148.6875,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":124.6875,"pitch":-117.5,"roll":-36.125},"location":"Right Knee"},{"euler":{"heading":38.0625,"pitch":-143.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.787"} +{"sensors":[{"euler":{"heading":8.125,"pitch":127.625,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":82.8125,"pitch":105.25,"roll":30.9375},"location":"Left Ankle"},{"euler":{"heading":76.6875,"pitch":-8.0,"roll":2.5},"location":"Right Ankle"},{"euler":{"heading":113.8125,"pitch":-152.1875,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":104.375,"pitch":-110.0,"roll":-20.6875},"location":"Right Knee"},{"euler":{"heading":40.25,"pitch":-149.0,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.887"} +{"sensors":[{"euler":{"heading":15.6875,"pitch":124.3125,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":89.4375,"pitch":107.875,"roll":37.125},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":-5.0,"roll":4.4375},"location":"Right Ankle"},{"euler":{"heading":100.3125,"pitch":-156.5625,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":94.375,"pitch":-110.5625,"roll":-10.75},"location":"Right Knee"},{"euler":{"heading":42.25,"pitch":-153.6875,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:14.988"} +{"sensors":[{"euler":{"heading":25.375,"pitch":122.1875,"roll":18.0625},"location":"Left Knee"},{"euler":{"heading":102.125,"pitch":109.625,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":-4.25,"roll":1.3125},"location":"Right Ankle"},{"euler":{"heading":97.125,"pitch":-159.0,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":103.125,"pitch":-116.125,"roll":-15.375},"location":"Right Knee"},{"euler":{"heading":44.875,"pitch":-153.25,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.89"} +{"sensors":[{"euler":{"heading":41.4375,"pitch":122.625,"roll":6.6875},"location":"Left Knee"},{"euler":{"heading":108.75,"pitch":122.9375,"roll":58.4375},"location":"Left Ankle"},{"euler":{"heading":71.3125,"pitch":-3.5625,"roll":-0.25},"location":"Right Ankle"},{"euler":{"heading":95.9375,"pitch":-159.5,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":115.25,"pitch":-119.0625,"roll":-22.1875},"location":"Right Knee"},{"euler":{"heading":28.8125,"pitch":-134.3125,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.190"} +{"sensors":[{"euler":{"heading":42.375,"pitch":126.9375,"roll":7.75},"location":"Left Knee"},{"euler":{"heading":99.0,"pitch":112.0625,"roll":54.9375},"location":"Left Ankle"},{"euler":{"heading":67.5625,"pitch":-2.9375,"roll":-1.0625},"location":"Right Ankle"},{"euler":{"heading":97.25,"pitch":-159.9375,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":125.625,"pitch":-121.0,"roll":-28.0625},"location":"Right Knee"},{"euler":{"heading":22.4375,"pitch":-122.5625,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.291"} +{"sensors":[{"euler":{"heading":13.5,"pitch":138.1875,"roll":22.4375},"location":"Left Knee"},{"euler":{"heading":77.9375,"pitch":96.375,"roll":36.0},"location":"Left Ankle"},{"euler":{"heading":63.875,"pitch":-2.125,"roll":-3.125},"location":"Right Ankle"},{"euler":{"heading":98.5625,"pitch":-160.3125,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":131.875,"pitch":-122.5625,"roll":-32.25},"location":"Right Knee"},{"euler":{"heading":16.0625,"pitch":-119.125,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.391"} +{"sensors":[{"euler":{"heading":330.875,"pitch":151.5625,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":49.125,"pitch":92.375,"roll":10.0625},"location":"Left Ankle"},{"euler":{"heading":58.8125,"pitch":-0.5625,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":99.3125,"pitch":-161.875,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":138.25,"pitch":-125.25,"roll":-36.5625},"location":"Right Knee"},{"euler":{"heading":349.8125,"pitch":-134.0625,"roll":39.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.492"} +{"sensors":[{"euler":{"heading":322.75,"pitch":158.0625,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":38.0625,"pitch":91.5625,"roll":-2.75},"location":"Left Ankle"},{"euler":{"heading":51.0625,"pitch":0.375,"roll":-6.6875},"location":"Right Ankle"},{"euler":{"heading":101.6875,"pitch":-163.8125,"roll":66.375},"location":"Right Hip"},{"euler":{"heading":146.3125,"pitch":-127.6875,"roll":-43.0},"location":"Right Knee"},{"euler":{"heading":26.625,"pitch":-123.75,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.593"} +{"sensors":[{"euler":{"heading":341.5,"pitch":148.0625,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":53.3125,"pitch":97.75,"roll":9.625},"location":"Left Ankle"},{"euler":{"heading":37.9375,"pitch":-4.1875,"roll":-7.375},"location":"Right Ankle"},{"euler":{"heading":107.125,"pitch":-161.9375,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":153.375,"pitch":-128.75,"roll":-54.375},"location":"Right Knee"},{"euler":{"heading":26.6875,"pitch":-128.375,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.693"} +{"sensors":[{"euler":{"heading":351.875,"pitch":139.875,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":62.625,"pitch":100.9375,"roll":16.3125},"location":"Left Ankle"},{"euler":{"heading":21.625,"pitch":-5.25,"roll":-8.75},"location":"Right Ankle"},{"euler":{"heading":118.3125,"pitch":-152.3125,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":157.75,"pitch":-137.0625,"roll":-58.75},"location":"Right Knee"},{"euler":{"heading":31.9375,"pitch":-131.8125,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.794"} +{"sensors":[{"euler":{"heading":354.3125,"pitch":135.875,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":77.8125,"pitch":102.4375,"roll":27.125},"location":"Left Ankle"},{"euler":{"heading":29.5,"pitch":-6.75,"roll":-5.75},"location":"Right Ankle"},{"euler":{"heading":121.5,"pitch":-147.5625,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":145.6875,"pitch":-129.375,"roll":-52.1875},"location":"Right Knee"},{"euler":{"heading":32.5625,"pitch":-139.6875,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.894"} +{"sensors":[{"euler":{"heading":0.9375,"pitch":131.25,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":80.0625,"pitch":103.8125,"roll":29.25},"location":"Left Ankle"},{"euler":{"heading":52.1875,"pitch":-9.1875,"roll":-0.5625},"location":"Right Ankle"},{"euler":{"heading":119.125,"pitch":-148.0625,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":121.5,"pitch":-115.6875,"roll":-36.0625},"location":"Right Knee"},{"euler":{"heading":36.1875,"pitch":-145.75,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:15.995"} +{"sensors":[{"euler":{"heading":8.5,"pitch":127.375,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":82.9375,"pitch":104.875,"roll":33.4375},"location":"Left Ankle"},{"euler":{"heading":77.3125,"pitch":-7.875,"roll":2.0},"location":"Right Ankle"},{"euler":{"heading":111.6875,"pitch":-153.25,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":103.1875,"pitch":-109.75,"roll":-18.625},"location":"Right Knee"},{"euler":{"heading":38.0,"pitch":-150.5,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.96"} +{"sensors":[{"euler":{"heading":15.0,"pitch":124.8125,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":90.5625,"pitch":106.625,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":-7.875,"roll":4.9375},"location":"Right Ankle"},{"euler":{"heading":99.25,"pitch":-157.125,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":95.375,"pitch":-109.6875,"roll":-9.5},"location":"Right Knee"},{"euler":{"heading":41.25,"pitch":-155.875,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.197"} +{"sensors":[{"euler":{"heading":25.25,"pitch":123.125,"roll":16.25},"location":"Left Knee"},{"euler":{"heading":98.8125,"pitch":108.375,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":74.125,"pitch":-2.9375,"roll":-0.125},"location":"Right Ankle"},{"euler":{"heading":97.1875,"pitch":-158.25,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":103.4375,"pitch":-117.8125,"roll":-15.3125},"location":"Right Knee"},{"euler":{"heading":43.125,"pitch":-155.8125,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.298"} +{"sensors":[{"euler":{"heading":41.625,"pitch":122.9375,"roll":5.8125},"location":"Left Knee"},{"euler":{"heading":107.875,"pitch":123.4375,"roll":61.8125},"location":"Left Ankle"},{"euler":{"heading":68.375,"pitch":-2.125,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":97.5625,"pitch":-158.1875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":118.75,"pitch":-119.8125,"roll":-22.5625},"location":"Right Knee"},{"euler":{"heading":28.3125,"pitch":-135.0,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.399"} +{"sensors":[{"euler":{"heading":42.5625,"pitch":126.25,"roll":6.5},"location":"Left Knee"},{"euler":{"heading":96.1875,"pitch":105.125,"roll":55.875},"location":"Left Ankle"},{"euler":{"heading":64.875,"pitch":-0.5625,"roll":-3.0},"location":"Right Ankle"},{"euler":{"heading":99.625,"pitch":-157.0625,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":126.875,"pitch":-122.0,"roll":-27.3125},"location":"Right Knee"},{"euler":{"heading":21.625,"pitch":-124.375,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.499"} +{"sensors":[{"euler":{"heading":16.1875,"pitch":138.375,"roll":20.5},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":94.25,"roll":31.9375},"location":"Left Ankle"},{"euler":{"heading":61.5625,"pitch":0.1875,"roll":-5.125},"location":"Right Ankle"},{"euler":{"heading":102.3125,"pitch":-156.5625,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":131.625,"pitch":-123.0625,"roll":-31.4375},"location":"Right Knee"},{"euler":{"heading":18.4375,"pitch":-119.875,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.599"} +{"sensors":[{"euler":{"heading":335.125,"pitch":152.5,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":44.3125,"pitch":92.8125,"roll":5.0625},"location":"Left Ankle"},{"euler":{"heading":57.0625,"pitch":0.625,"roll":-5.3125},"location":"Right Ankle"},{"euler":{"heading":102.1875,"pitch":-159.1875,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":138.4375,"pitch":-125.3125,"roll":-35.8125},"location":"Right Knee"},{"euler":{"heading":20.625,"pitch":-120.375,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.700"} +{"sensors":[{"euler":{"heading":321.8125,"pitch":159.25,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":38.8125,"pitch":94.125,"roll":-2.5625},"location":"Left Ankle"},{"euler":{"heading":48.875,"pitch":1.4375,"roll":-8.8125},"location":"Right Ankle"},{"euler":{"heading":103.4375,"pitch":-162.1875,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":146.75,"pitch":-127.25,"roll":-43.25},"location":"Right Knee"},{"euler":{"heading":27.0,"pitch":-126.375,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.800"} +{"sensors":[{"euler":{"heading":340.5625,"pitch":149.8125,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":53.5,"pitch":99.4375,"roll":7.6875},"location":"Left Ankle"},{"euler":{"heading":35.5,"pitch":-2.5625,"roll":-8.9375},"location":"Right Ankle"},{"euler":{"heading":107.0,"pitch":-164.0,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":153.25,"pitch":-127.5,"roll":-53.5},"location":"Right Knee"},{"euler":{"heading":30.6875,"pitch":-129.3125,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:16.901"} +{"sensors":[{"euler":{"heading":351.9375,"pitch":140.875,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":62.5,"pitch":102.1875,"roll":15.375},"location":"Left Ankle"},{"euler":{"heading":20.125,"pitch":-5.125,"roll":-12.0625},"location":"Right Ankle"},{"euler":{"heading":118.75,"pitch":-154.6875,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":159.125,"pitch":-137.75,"roll":-59.5},"location":"Right Knee"},{"euler":{"heading":34.0625,"pitch":-132.0,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.2"} +{"sensors":[{"euler":{"heading":359.875,"pitch":134.0,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":72.625,"pitch":104.875,"roll":21.4375},"location":"Left Ankle"},{"euler":{"heading":21.8125,"pitch":-8.4375,"roll":-8.4375},"location":"Right Ankle"},{"euler":{"heading":124.4375,"pitch":-148.0625,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":147.1875,"pitch":-128.3125,"roll":-55.5},"location":"Right Knee"},{"euler":{"heading":38.5,"pitch":-139.6875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.103"} +{"sensors":[{"euler":{"heading":4.5,"pitch":129.5625,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":79.875,"pitch":105.6875,"roll":26.6875},"location":"Left Ankle"},{"euler":{"heading":42.25,"pitch":-9.3125,"roll":-4.9375},"location":"Right Ankle"},{"euler":{"heading":123.875,"pitch":-148.0625,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":127.3125,"pitch":-116.75,"roll":-40.625},"location":"Right Knee"},{"euler":{"heading":41.0625,"pitch":-146.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.204"} +{"sensors":[{"euler":{"heading":10.25,"pitch":126.375,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":82.625,"pitch":106.25,"roll":30.0},"location":"Left Ankle"},{"euler":{"heading":69.9375,"pitch":-9.75,"roll":1.4375},"location":"Right Ankle"},{"euler":{"heading":120.1875,"pitch":-150.6875,"roll":42.25},"location":"Right Hip"},{"euler":{"heading":105.6875,"pitch":-108.8125,"roll":-21.5625},"location":"Right Knee"},{"euler":{"heading":41.3125,"pitch":-151.75,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.304"} +{"sensors":[{"euler":{"heading":16.1875,"pitch":123.875,"roll":26.75},"location":"Left Knee"},{"euler":{"heading":87.0,"pitch":107.125,"roll":35.1875},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":-7.125,"roll":5.25},"location":"Right Ankle"},{"euler":{"heading":104.3125,"pitch":-155.1875,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":93.4375,"pitch":-110.375,"roll":-9.9375},"location":"Right Knee"},{"euler":{"heading":43.0625,"pitch":-157.5,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.405"} +{"sensors":[{"euler":{"heading":23.3125,"pitch":122.625,"roll":19.1875},"location":"Left Knee"},{"euler":{"heading":94.0,"pitch":109.125,"roll":44.6875},"location":"Left Ankle"},{"euler":{"heading":77.625,"pitch":-4.0625,"roll":2.125},"location":"Right Ankle"},{"euler":{"heading":94.5625,"pitch":-160.0625,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":101.4375,"pitch":-116.5,"roll":-13.4375},"location":"Right Knee"},{"euler":{"heading":46.125,"pitch":-162.0625,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.506"} +{"sensors":[{"euler":{"heading":38.8125,"pitch":123.5,"roll":7.125},"location":"Left Knee"},{"euler":{"heading":105.5625,"pitch":122.375,"roll":60.625},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-3.25,"roll":-0.875},"location":"Right Ankle"},{"euler":{"heading":98.375,"pitch":-158.8125,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":116.0625,"pitch":-118.6875,"roll":-21.4375},"location":"Right Knee"},{"euler":{"heading":32.9375,"pitch":-142.4375,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.607"} +{"sensors":[{"euler":{"heading":45.875,"pitch":123.1875,"roll":4.6875},"location":"Left Knee"},{"euler":{"heading":105.5625,"pitch":111.4375,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":67.375,"pitch":-2.75,"roll":-2.0625},"location":"Right Ankle"},{"euler":{"heading":96.75,"pitch":-160.25,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":124.1875,"pitch":-121.0,"roll":-26.3125},"location":"Right Knee"},{"euler":{"heading":23.6875,"pitch":-122.5625,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.708"} +{"sensors":[{"euler":{"heading":28.25,"pitch":131.9375,"roll":16.3125},"location":"Left Knee"},{"euler":{"heading":87.875,"pitch":97.125,"roll":42.3125},"location":"Left Ankle"},{"euler":{"heading":64.6875,"pitch":-1.0,"roll":-3.875},"location":"Right Ankle"},{"euler":{"heading":99.5625,"pitch":-158.625,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":130.6875,"pitch":-123.375,"roll":-30.375},"location":"Right Knee"},{"euler":{"heading":18.125,"pitch":-118.5,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.808"} +{"sensors":[{"euler":{"heading":341.75,"pitch":147.875,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":52.25,"pitch":92.8125,"roll":13.5625},"location":"Left Ankle"},{"euler":{"heading":60.1875,"pitch":0.25,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":100.6875,"pitch":-159.5625,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":137.5,"pitch":-125.5,"roll":-35.0},"location":"Right Knee"},{"euler":{"heading":18.25,"pitch":-117.5,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:17.908"} +{"sensors":[{"euler":{"heading":323.875,"pitch":158.25,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":37.5,"pitch":91.8125,"roll":-2.875},"location":"Left Ankle"},{"euler":{"heading":52.875,"pitch":1.8125,"roll":-8.4375},"location":"Right Ankle"},{"euler":{"heading":102.1875,"pitch":-161.4375,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":145.0,"pitch":-126.9375,"roll":-41.3125},"location":"Right Knee"},{"euler":{"heading":26.0,"pitch":-123.9375,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.10"} +{"sensors":[{"euler":{"heading":336.1875,"pitch":151.9375,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":47.0,"pitch":96.5,"roll":4.25},"location":"Left Ankle"},{"euler":{"heading":39.6875,"pitch":-1.625,"roll":-8.9375},"location":"Right Ankle"},{"euler":{"heading":106.75,"pitch":-161.625,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":152.4375,"pitch":-127.5,"roll":-51.1875},"location":"Right Knee"},{"euler":{"heading":29.375,"pitch":-127.75,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.110"} +{"sensors":[{"euler":{"heading":347.4375,"pitch":143.1875,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":58.3125,"pitch":98.8125,"roll":13.75},"location":"Left Ankle"},{"euler":{"heading":22.25,"pitch":-3.375,"roll":-11.4375},"location":"Right Ankle"},{"euler":{"heading":116.4375,"pitch":-152.375,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":157.5625,"pitch":-137.0,"roll":-57.9375},"location":"Right Knee"},{"euler":{"heading":29.0625,"pitch":-129.3125,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.211"} +{"sensors":[{"euler":{"heading":353.5625,"pitch":137.75,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":67.1875,"pitch":100.75,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":23.9375,"pitch":-6.625,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":121.0625,"pitch":-148.125,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":153.125,"pitch":-132.4375,"roll":-56.4375},"location":"Right Knee"},{"euler":{"heading":31.75,"pitch":-135.125,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.311"} +{"sensors":[{"euler":{"heading":356.75,"pitch":134.6875,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":73.9375,"pitch":100.5,"roll":26.3125},"location":"Left Ankle"},{"euler":{"heading":45.75,"pitch":-8.75,"roll":-3.5625},"location":"Right Ankle"},{"euler":{"heading":121.3125,"pitch":-148.375,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":130.8125,"pitch":-118.75,"roll":-41.375},"location":"Right Knee"},{"euler":{"heading":33.8125,"pitch":-141.4375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.412"} +{"sensors":[{"euler":{"heading":2.75,"pitch":131.0,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":76.6875,"pitch":100.5625,"roll":29.4375},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-9.1875,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":114.5625,"pitch":-152.1875,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":107.9375,"pitch":-110.1875,"roll":-23.0625},"location":"Right Knee"},{"euler":{"heading":37.5,"pitch":-148.3125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.512"} +{"sensors":[{"euler":{"heading":9.3125,"pitch":128.3125,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":82.375,"pitch":101.6875,"roll":35.1875},"location":"Left Ankle"},{"euler":{"heading":82.9375,"pitch":-10.375,"roll":4.8125},"location":"Right Ankle"},{"euler":{"heading":104.5625,"pitch":-155.375,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":96.4375,"pitch":-106.0625,"roll":-11.5},"location":"Right Knee"},{"euler":{"heading":40.0625,"pitch":-153.8125,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.613"} +{"sensors":[{"euler":{"heading":18.1875,"pitch":125.9375,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":90.3125,"pitch":104.1875,"roll":44.0625},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":-7.5,"roll":3.125},"location":"Right Ankle"},{"euler":{"heading":96.6875,"pitch":-158.6875,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":100.75,"pitch":-112.125,"roll":-13.125},"location":"Right Knee"},{"euler":{"heading":44.4375,"pitch":-159.5,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.714"} +{"sensors":[{"euler":{"heading":36.4375,"pitch":124.125,"roll":8.75},"location":"Left Knee"},{"euler":{"heading":99.3125,"pitch":117.4375,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":-5.4375,"roll":-0.3125},"location":"Right Ankle"},{"euler":{"heading":100.25,"pitch":-158.0,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":111.625,"pitch":-116.1875,"roll":-19.125},"location":"Right Knee"},{"euler":{"heading":34.9375,"pitch":-129.0,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.815"} +{"sensors":[{"euler":{"heading":44.75,"pitch":124.0625,"roll":6.0},"location":"Left Knee"},{"euler":{"heading":99.3125,"pitch":117.375,"roll":56.125},"location":"Left Ankle"},{"euler":{"heading":70.3125,"pitch":-4.5625,"roll":-3.0625},"location":"Right Ankle"},{"euler":{"heading":98.4375,"pitch":-158.5625,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":121.8125,"pitch":-119.0,"roll":-24.8125},"location":"Right Knee"},{"euler":{"heading":26.0,"pitch":-124.9375,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:18.916"} +{"sensors":[{"euler":{"heading":25.1875,"pitch":132.8125,"roll":17.0625},"location":"Left Knee"},{"euler":{"heading":83.5625,"pitch":99.9375,"roll":40.5625},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-5.125,"roll":-4.9375},"location":"Right Ankle"},{"euler":{"heading":101.375,"pitch":-158.75,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":127.5625,"pitch":-118.75,"roll":-29.6875},"location":"Right Knee"},{"euler":{"heading":19.75,"pitch":-122.1875,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.17"} +{"sensors":[{"euler":{"heading":341.875,"pitch":146.75,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":55.8125,"pitch":93.375,"roll":16.0},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":-4.625,"roll":-4.625},"location":"Right Ankle"},{"euler":{"heading":103.75,"pitch":-159.5,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":133.25,"pitch":-119.375,"roll":-34.375},"location":"Right Knee"},{"euler":{"heading":18.8125,"pitch":-120.0,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.117"} +{"sensors":[{"euler":{"heading":321.5625,"pitch":158.375,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":39.25,"pitch":91.0625,"roll":-1.625},"location":"Left Ankle"},{"euler":{"heading":57.3125,"pitch":-2.75,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":104.5625,"pitch":-160.3125,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":141.0,"pitch":-121.75,"roll":-40.0625},"location":"Right Knee"},{"euler":{"heading":23.75,"pitch":-123.3125,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.218"} +{"sensors":[{"euler":{"heading":331.3125,"pitch":154.875,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":43.8125,"pitch":94.875,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":32.625,"pitch":-3.125,"roll":-9.875},"location":"Right Ankle"},{"euler":{"heading":107.25,"pitch":-163.4375,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":148.125,"pitch":-122.875,"roll":-47.875},"location":"Right Knee"},{"euler":{"heading":29.6875,"pitch":-125.875,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.319"} +{"sensors":[{"euler":{"heading":346.5,"pitch":144.4375,"roll":39.6875},"location":"Left Knee"},{"euler":{"heading":57.0,"pitch":99.125,"roll":11.6875},"location":"Left Ankle"},{"euler":{"heading":29.125,"pitch":-6.9375,"roll":-10.375},"location":"Right Ankle"},{"euler":{"heading":113.375,"pitch":-157.125,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":155.5625,"pitch":-127.5,"roll":-59.0},"location":"Right Knee"},{"euler":{"heading":29.1875,"pitch":-127.5625,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.422"} +{"sensors":[{"euler":{"heading":351.5625,"pitch":139.0,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":61.625,"pitch":98.75,"roll":15.5},"location":"Left Ankle"},{"euler":{"heading":21.625,"pitch":-6.125,"roll":-10.25},"location":"Right Ankle"},{"euler":{"heading":122.1875,"pitch":-149.0625,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":154.625,"pitch":-132.75,"roll":-57.8125},"location":"Right Knee"},{"euler":{"heading":32.9375,"pitch":-137.5625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.523"} +{"sensors":[{"euler":{"heading":354.125,"pitch":135.5625,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":70.1875,"pitch":99.4375,"roll":22.125},"location":"Left Ankle"},{"euler":{"heading":38.75,"pitch":-8.3125,"roll":-6.1875},"location":"Right Ankle"},{"euler":{"heading":123.0,"pitch":-147.375,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":131.6875,"pitch":-119.5,"roll":-43.75},"location":"Right Knee"},{"euler":{"heading":36.0,"pitch":-144.625,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.626"} +{"sensors":[{"euler":{"heading":0.0,"pitch":131.8125,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":73.125,"pitch":99.6875,"roll":25.6875},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-10.0,"roll":0.25},"location":"Right Ankle"},{"euler":{"heading":115.8125,"pitch":-151.875,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":110.0625,"pitch":-110.0625,"roll":-25.625},"location":"Right Knee"},{"euler":{"heading":36.0625,"pitch":-148.375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.726"} +{"sensors":[{"euler":{"heading":7.5625,"pitch":128.3125,"roll":29.0625},"location":"Left Knee"},{"euler":{"heading":79.6875,"pitch":101.125,"roll":31.9375},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":-7.6875,"roll":2.6875},"location":"Right Ankle"},{"euler":{"heading":106.0625,"pitch":-154.3125,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":93.875,"pitch":-108.25,"roll":-10.1875},"location":"Right Knee"},{"euler":{"heading":38.0,"pitch":-151.1875,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.828"} +{"sensors":[{"euler":{"heading":15.0,"pitch":125.875,"roll":23.1875},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":103.4375,"roll":40.6875},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-4.5625,"roll":2.375},"location":"Right Ankle"},{"euler":{"heading":95.0,"pitch":-158.75,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":95.0,"pitch":-114.0,"roll":-9.75},"location":"Right Knee"},{"euler":{"heading":41.375,"pitch":-157.75,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:19.928"} +{"sensors":[{"euler":{"heading":27.875,"pitch":125.8125,"roll":12.25},"location":"Left Knee"},{"euler":{"heading":93.625,"pitch":108.875,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":-3.6875,"roll":-1.375},"location":"Right Ankle"},{"euler":{"heading":97.4375,"pitch":-158.6875,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":106.6875,"pitch":-117.625,"roll":-16.4375},"location":"Right Knee"},{"euler":{"heading":37.0625,"pitch":-150.0,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.28"} +{"sensors":[{"euler":{"heading":45.0625,"pitch":122.125,"roll":4.625},"location":"Left Knee"},{"euler":{"heading":102.625,"pitch":118.8125,"roll":60.875},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":-1.8125,"roll":-2.0625},"location":"Right Ankle"},{"euler":{"heading":94.1875,"pitch":-160.25,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":118.4375,"pitch":-121.0625,"roll":-22.625},"location":"Right Knee"},{"euler":{"heading":23.375,"pitch":-123.375,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.129"} +{"sensors":[{"euler":{"heading":35.3125,"pitch":131.4375,"roll":12.375},"location":"Left Knee"},{"euler":{"heading":90.5,"pitch":98.875,"roll":47.875},"location":"Left Ankle"},{"euler":{"heading":67.3125,"pitch":-2.0,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":97.4375,"pitch":-158.8125,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":126.5625,"pitch":-121.8125,"roll":-27.25},"location":"Right Knee"},{"euler":{"heading":15.9375,"pitch":-119.625,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.230"} +{"sensors":[{"euler":{"heading":347.75,"pitch":145.125,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":60.75,"pitch":92.3125,"roll":21.125},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":-2.5625,"roll":-5.4375},"location":"Right Ankle"},{"euler":{"heading":100.875,"pitch":-159.875,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":132.375,"pitch":-121.5,"roll":-32.5},"location":"Right Knee"},{"euler":{"heading":15.625,"pitch":-116.5,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.331"} +{"sensors":[{"euler":{"heading":323.0625,"pitch":157.25,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":39.1875,"pitch":91.3125,"roll":-0.875},"location":"Left Ankle"},{"euler":{"heading":57.75,"pitch":-1.0625,"roll":-8.375},"location":"Right Ankle"},{"euler":{"heading":102.75,"pitch":-161.625,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":139.5,"pitch":-123.1875,"roll":-38.0625},"location":"Right Knee"},{"euler":{"heading":21.0625,"pitch":-118.6875,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.432"} +{"sensors":[{"euler":{"heading":327.0,"pitch":158.375,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":39.875,"pitch":96.375,"roll":-2.25},"location":"Left Ankle"},{"euler":{"heading":48.8125,"pitch":-0.625,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":105.3125,"pitch":-165.6875,"roll":66.125},"location":"Right Hip"},{"euler":{"heading":145.75,"pitch":-124.25,"roll":-45.25},"location":"Right Knee"},{"euler":{"heading":27.4375,"pitch":-124.0,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.532"} +{"sensors":[{"euler":{"heading":343.0625,"pitch":147.625,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":54.3125,"pitch":99.0625,"roll":9.375},"location":"Left Ankle"},{"euler":{"heading":35.1875,"pitch":-4.9375,"roll":-9.75},"location":"Right Ankle"},{"euler":{"heading":109.4375,"pitch":-164.6875,"roll":64.875},"location":"Right Hip"},{"euler":{"heading":152.625,"pitch":-125.9375,"roll":-55.0},"location":"Right Knee"},{"euler":{"heading":28.0625,"pitch":-124.875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.633"} +{"sensors":[{"euler":{"heading":351.375,"pitch":140.4375,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":61.625,"pitch":100.0625,"roll":15.75},"location":"Left Ankle"},{"euler":{"heading":20.0,"pitch":-4.375,"roll":-11.6875},"location":"Right Ankle"},{"euler":{"heading":116.875,"pitch":-153.3125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":158.375,"pitch":-137.6875,"roll":-59.625},"location":"Right Knee"},{"euler":{"heading":30.625,"pitch":-128.3125,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.734"} +{"sensors":[{"euler":{"heading":353.375,"pitch":137.0625,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":69.1875,"pitch":100.4375,"roll":21.5},"location":"Left Ankle"},{"euler":{"heading":29.3125,"pitch":-6.375,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":121.25,"pitch":-149.1875,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":145.625,"pitch":-129.25,"roll":-52.9375},"location":"Right Knee"},{"euler":{"heading":31.375,"pitch":-135.6875,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.835"} +{"sensors":[{"euler":{"heading":358.875,"pitch":133.1875,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":72.3125,"pitch":100.6875,"roll":24.8125},"location":"Left Ankle"},{"euler":{"heading":52.75,"pitch":-9.0625,"roll":-2.0625},"location":"Right Ankle"},{"euler":{"heading":119.5,"pitch":-149.5625,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":119.1875,"pitch":-114.625,"roll":-34.5625},"location":"Right Knee"},{"euler":{"heading":33.8125,"pitch":-143.5,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:20.936"} +{"sensors":[{"euler":{"heading":7.5625,"pitch":128.5625,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":77.375,"pitch":102.3125,"roll":28.9375},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-7.5,"roll":3.1875},"location":"Right Ankle"},{"euler":{"heading":110.6875,"pitch":-153.9375,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":99.875,"pitch":-109.1875,"roll":-16.0},"location":"Right Knee"},{"euler":{"heading":37.0,"pitch":-149.875,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.37"} +{"sensors":[{"euler":{"heading":15.0,"pitch":125.0,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":84.25,"pitch":104.375,"roll":35.5},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-7.0,"roll":3.125},"location":"Right Ankle"},{"euler":{"heading":98.875,"pitch":-158.375,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":94.5625,"pitch":-109.6875,"roll":-10.0},"location":"Right Knee"},{"euler":{"heading":41.1875,"pitch":-156.375,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.138"} +{"sensors":[{"euler":{"heading":26.25,"pitch":122.5,"roll":16.6875},"location":"Left Knee"},{"euler":{"heading":92.3125,"pitch":108.125,"roll":46.9375},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-3.5,"roll":-1.25},"location":"Right Ankle"},{"euler":{"heading":99.625,"pitch":-158.375,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":105.0,"pitch":-116.625,"roll":-16.625},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-155.6875,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.238"} +{"sensors":[{"euler":{"heading":42.1875,"pitch":123.125,"roll":6.0625},"location":"Left Knee"},{"euler":{"heading":110.125,"pitch":123.1875,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":66.6875,"pitch":-0.8125,"roll":-2.5},"location":"Right Ankle"},{"euler":{"heading":98.0,"pitch":-158.5625,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":117.5625,"pitch":-120.25,"roll":-22.5625},"location":"Right Knee"},{"euler":{"heading":27.0,"pitch":-133.9375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.339"} +{"sensors":[{"euler":{"heading":39.875,"pitch":128.6875,"roll":8.625},"location":"Left Knee"},{"euler":{"heading":98.75,"pitch":102.5625,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":0.6875,"roll":-4.8125},"location":"Right Ankle"},{"euler":{"heading":98.75,"pitch":-158.1875,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":127.875,"pitch":-123.0625,"roll":-27.875},"location":"Right Knee"},{"euler":{"heading":17.75,"pitch":-122.5,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.440"} +{"sensors":[{"euler":{"heading":355.9375,"pitch":141.875,"roll":26.75},"location":"Left Knee"},{"euler":{"heading":71.375,"pitch":93.875,"roll":30.8125},"location":"Left Ankle"},{"euler":{"heading":61.75,"pitch":1.5,"roll":-7.0625},"location":"Right Ankle"},{"euler":{"heading":100.8125,"pitch":-158.375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":133.9375,"pitch":-124.5625,"roll":-32.125},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-117.375,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.541"} +{"sensors":[{"euler":{"heading":324.5625,"pitch":155.4375,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":43.5,"pitch":91.625,"roll":4.625},"location":"Left Ankle"},{"euler":{"heading":56.75,"pitch":2.3125,"roll":-8.1875},"location":"Right Ankle"},{"euler":{"heading":101.3125,"pitch":-160.9375,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":141.9375,"pitch":-126.875,"roll":-37.625},"location":"Right Knee"},{"euler":{"heading":18.3125,"pitch":-118.625,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.642"} +{"sensors":[{"euler":{"heading":324.125,"pitch":158.5,"roll":41.625},"location":"Left Knee"},{"euler":{"heading":37.3125,"pitch":94.6875,"roll":-3.25},"location":"Left Ankle"},{"euler":{"heading":32.0,"pitch":2.625,"roll":-10.6875},"location":"Right Ankle"},{"euler":{"heading":102.75,"pitch":-164.3125,"roll":67.75},"location":"Right Hip"},{"euler":{"heading":150.5,"pitch":-128.75,"roll":-45.0625},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-123.625,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.742"} +{"sensors":[{"euler":{"heading":343.0625,"pitch":147.0,"roll":40.3125},"location":"Left Knee"},{"euler":{"heading":52.0,"pitch":99.875,"roll":8.8125},"location":"Left Ankle"},{"euler":{"heading":33.625,"pitch":-2.9375,"roll":-10.4375},"location":"Right Ankle"},{"euler":{"heading":107.875,"pitch":-164.75,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":156.25,"pitch":-128.6875,"roll":-55.5625},"location":"Right Knee"},{"euler":{"heading":27.9375,"pitch":-126.1875,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.843"} +{"sensors":[{"euler":{"heading":356.4375,"pitch":137.375,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":65.0625,"pitch":104.6875,"roll":16.3125},"location":"Left Ankle"},{"euler":{"heading":17.75,"pitch":-6.0,"roll":-12.6875},"location":"Right Ankle"},{"euler":{"heading":117.8125,"pitch":-153.125,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":160.5,"pitch":-137.5625,"roll":-61.6875},"location":"Right Knee"},{"euler":{"heading":31.75,"pitch":-127.1875,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:21.944"} +{"sensors":[{"euler":{"heading":2.0,"pitch":132.125,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":107.375,"roll":26.875},"location":"Left Ankle"},{"euler":{"heading":27.6875,"pitch":-8.0625,"roll":-10.1875},"location":"Right Ankle"},{"euler":{"heading":127.0625,"pitch":-148.0,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":144.9375,"pitch":-125.1875,"roll":-54.4375},"location":"Right Knee"},{"euler":{"heading":34.6875,"pitch":-137.5625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.45"} +{"sensors":[{"euler":{"heading":6.75,"pitch":128.1875,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":81.5625,"pitch":107.6875,"roll":28.125},"location":"Left Ankle"},{"euler":{"heading":52.3125,"pitch":-10.75,"roll":-3.5},"location":"Right Ankle"},{"euler":{"heading":122.875,"pitch":-150.9375,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":120.4375,"pitch":-112.3125,"roll":-36.4375},"location":"Right Knee"},{"euler":{"heading":36.875,"pitch":-143.75,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.145"} +{"sensors":[{"euler":{"heading":12.375,"pitch":124.5625,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":84.4375,"pitch":108.8125,"roll":31.3125},"location":"Left Ankle"},{"euler":{"heading":77.875,"pitch":-8.875,"roll":2.125},"location":"Right Ankle"},{"euler":{"heading":114.75,"pitch":-153.8125,"roll":43.9375},"location":"Right Hip"},{"euler":{"heading":98.4375,"pitch":-107.625,"roll":-16.6875},"location":"Right Knee"},{"euler":{"heading":38.375,"pitch":-149.9375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.246"} +{"sensors":[{"euler":{"heading":20.0,"pitch":121.6875,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":91.5625,"pitch":111.1875,"roll":37.9375},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-5.8125,"roll":3.75},"location":"Right Ankle"},{"euler":{"heading":99.125,"pitch":-159.625,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":91.5625,"pitch":-110.1875,"roll":-8.8125},"location":"Right Knee"},{"euler":{"heading":39.8125,"pitch":-154.5,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.347"} +{"sensors":[{"euler":{"heading":29.125,"pitch":120.75,"roll":16.4375},"location":"Left Knee"},{"euler":{"heading":91.6875,"pitch":110.1875,"roll":44.9375},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-3.5625,"roll":-0.5625},"location":"Right Ankle"},{"euler":{"heading":96.0625,"pitch":-161.875,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":105.0625,"pitch":-117.5,"roll":-16.3125},"location":"Right Knee"},{"euler":{"heading":39.75,"pitch":-151.0,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.448"} +{"sensors":[{"euler":{"heading":42.875,"pitch":122.8125,"roll":6.125},"location":"Left Knee"},{"euler":{"heading":107.4375,"pitch":123.125,"roll":60.5},"location":"Left Ankle"},{"euler":{"heading":69.75,"pitch":-1.625,"roll":-1.75},"location":"Right Ankle"},{"euler":{"heading":94.8125,"pitch":-162.25,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":116.25,"pitch":-120.75,"roll":-21.875},"location":"Right Knee"},{"euler":{"heading":23.8125,"pitch":-128.5,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.549"} +{"sensors":[{"euler":{"heading":42.8125,"pitch":126.1875,"roll":7.8125},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":104.125,"roll":55.9375},"location":"Left Ankle"},{"euler":{"heading":65.6875,"pitch":0.0,"roll":-3.625},"location":"Right Ankle"},{"euler":{"heading":96.5625,"pitch":-161.625,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":127.5625,"pitch":-123.9375,"roll":-27.5},"location":"Right Knee"},{"euler":{"heading":15.6875,"pitch":-120.375,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.649"} +{"sensors":[{"euler":{"heading":11.5625,"pitch":140.375,"roll":22.25},"location":"Left Knee"},{"euler":{"heading":69.9375,"pitch":93.5625,"roll":31.6875},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":2.0625,"roll":-6.9375},"location":"Right Ankle"},{"euler":{"heading":99.1875,"pitch":-161.3125,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":133.4375,"pitch":-126.0625,"roll":-31.8125},"location":"Right Knee"},{"euler":{"heading":14.875,"pitch":-117.0625,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.750"} +{"sensors":[{"euler":{"heading":334.3125,"pitch":153.5,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":42.25,"pitch":93.375,"roll":4.5},"location":"Left Ankle"},{"euler":{"heading":57.1875,"pitch":3.125,"roll":-4.4375},"location":"Right Ankle"},{"euler":{"heading":100.625,"pitch":-163.5,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":140.5625,"pitch":-127.9375,"roll":-36.5},"location":"Right Knee"},{"euler":{"heading":19.4375,"pitch":-120.0625,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.851"} +{"sensors":[{"euler":{"heading":330.125,"pitch":157.3125,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":35.8125,"pitch":94.5,"roll":-4.125},"location":"Left Ankle"},{"euler":{"heading":49.1875,"pitch":2.625,"roll":-7.1875},"location":"Right Ankle"},{"euler":{"heading":102.1875,"pitch":-166.625,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":148.8125,"pitch":-128.875,"roll":-44.125},"location":"Right Knee"},{"euler":{"heading":24.8125,"pitch":-125.875,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:22.952"} +{"sensors":[{"euler":{"heading":346.1875,"pitch":147.0625,"roll":38.8125},"location":"Left Knee"},{"euler":{"heading":49.5,"pitch":99.625,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":34.0,"pitch":-3.1875,"roll":-8.0},"location":"Right Ankle"},{"euler":{"heading":109.1875,"pitch":-162.6875,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":154.4375,"pitch":-129.625,"roll":-55.4375},"location":"Right Knee"},{"euler":{"heading":25.5625,"pitch":-125.875,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.53"} +{"sensors":[{"euler":{"heading":356.3125,"pitch":139.3125,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":60.1875,"pitch":103.1875,"roll":14.625},"location":"Left Ankle"},{"euler":{"heading":17.625,"pitch":-4.1875,"roll":-10.0},"location":"Right Ankle"},{"euler":{"heading":121.75,"pitch":-151.3125,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":157.0,"pitch":-136.75,"roll":-58.625},"location":"Right Knee"},{"euler":{"heading":29.5625,"pitch":-130.375,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.153"} +{"sensors":[{"euler":{"heading":3.1875,"pitch":133.1875,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":77.875,"pitch":107.0,"roll":25.6875},"location":"Left Ankle"},{"euler":{"heading":27.375,"pitch":-8.8125,"roll":-7.0},"location":"Right Ankle"},{"euler":{"heading":127.1875,"pitch":-147.5625,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":140.375,"pitch":-123.3125,"roll":-51.3125},"location":"Right Knee"},{"euler":{"heading":33.375,"pitch":-138.25,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.254"} +{"sensors":[{"euler":{"heading":8.5625,"pitch":128.5,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":79.3125,"pitch":107.375,"roll":27.1875},"location":"Left Ankle"},{"euler":{"heading":50.5,"pitch":-12.0625,"roll":-1.9375},"location":"Right Ankle"},{"euler":{"heading":125.5,"pitch":-151.1875,"roll":41.0},"location":"Right Hip"},{"euler":{"heading":119.3125,"pitch":-109.75,"roll":-35.3125},"location":"Right Knee"},{"euler":{"heading":37.3125,"pitch":-145.75,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.354"} +{"sensors":[{"euler":{"heading":14.375,"pitch":124.4375,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":82.875,"pitch":108.25,"roll":31.0},"location":"Left Ankle"},{"euler":{"heading":75.0625,"pitch":-10.5,"roll":3.0625},"location":"Right Ankle"},{"euler":{"heading":119.125,"pitch":-153.5,"roll":41.625},"location":"Right Hip"},{"euler":{"heading":98.375,"pitch":-104.8125,"roll":-17.0},"location":"Right Knee"},{"euler":{"heading":41.0625,"pitch":-151.5625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.455"} +{"sensors":[{"euler":{"heading":21.625,"pitch":121.625,"roll":25.875},"location":"Left Knee"},{"euler":{"heading":89.4375,"pitch":110.125,"roll":37.0625},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":-7.875,"roll":6.1875},"location":"Right Ankle"},{"euler":{"heading":103.5625,"pitch":-157.5625,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":88.1875,"pitch":-107.8125,"roll":-6.6875},"location":"Right Knee"},{"euler":{"heading":43.9375,"pitch":-158.25,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.555"} +{"sensors":[{"euler":{"heading":29.125,"pitch":120.875,"roll":17.4375},"location":"Left Knee"},{"euler":{"heading":96.375,"pitch":111.25,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":-4.3125,"roll":3.0},"location":"Right Ankle"},{"euler":{"heading":97.5625,"pitch":-161.4375,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":97.9375,"pitch":-114.125,"roll":-12.0625},"location":"Right Knee"},{"euler":{"heading":47.6875,"pitch":-162.5,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.657"} +{"sensors":[{"euler":{"heading":42.9375,"pitch":124.1875,"roll":5.5625},"location":"Left Knee"},{"euler":{"heading":108.875,"pitch":122.875,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-1.375,"roll":0.0625},"location":"Right Ankle"},{"euler":{"heading":98.75,"pitch":-160.5625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":111.1875,"pitch":-118.8125,"roll":-19.25},"location":"Right Knee"},{"euler":{"heading":30.25,"pitch":-140.375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.757"} +{"sensors":[{"euler":{"heading":47.4375,"pitch":123.875,"roll":4.5},"location":"Left Knee"},{"euler":{"heading":99.0,"pitch":110.75,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":65.375,"pitch":0.3125,"roll":-2.125},"location":"Right Ankle"},{"euler":{"heading":96.1875,"pitch":-162.1875,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":120.4375,"pitch":-122.25,"roll":-24.0},"location":"Right Knee"},{"euler":{"heading":18.4375,"pitch":-120.5,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.858"} +{"sensors":[{"euler":{"heading":27.9375,"pitch":134.25,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":79.0625,"pitch":94.75,"roll":40.1875},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":1.1875,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":100.0,"pitch":-161.375,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":129.0625,"pitch":-123.5,"roll":-29.125},"location":"Right Knee"},{"euler":{"heading":14.625,"pitch":-115.5,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:23.958"} +{"sensors":[{"euler":{"heading":267.8125,"pitch":149.1875,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":48.0,"pitch":90.9375,"roll":11.8125},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":1.75,"roll":-5.4375},"location":"Right Ankle"},{"euler":{"heading":101.25,"pitch":-164.0,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":135.5,"pitch":-124.625,"roll":-34.125},"location":"Right Knee"},{"euler":{"heading":17.25,"pitch":-116.75,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.59"} +{"sensors":[{"euler":{"heading":279.875,"pitch":159.0625,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":35.25,"pitch":91.8125,"roll":-4.1875},"location":"Left Ankle"},{"euler":{"heading":50.25,"pitch":1.8125,"roll":-8.3125},"location":"Right Ankle"},{"euler":{"heading":103.375,"pitch":-166.6875,"roll":66.1875},"location":"Right Hip"},{"euler":{"heading":142.25,"pitch":-125.5,"roll":-40.5},"location":"Right Knee"},{"euler":{"heading":24.875,"pitch":-123.3125,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.160"} +{"sensors":[{"euler":{"heading":341.8125,"pitch":151.4375,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":46.75,"pitch":99.125,"roll":5.4375},"location":"Left Ankle"},{"euler":{"heading":35.6875,"pitch":-4.9375,"roll":-8.375},"location":"Right Ankle"},{"euler":{"heading":107.4375,"pitch":-168.0625,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":147.4375,"pitch":-123.9375,"roll":-49.5625},"location":"Right Knee"},{"euler":{"heading":28.375,"pitch":-126.0625,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.260"} +{"sensors":[{"euler":{"heading":349.8125,"pitch":143.6875,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":56.4375,"pitch":100.0,"roll":12.4375},"location":"Left Ankle"},{"euler":{"heading":19.25,"pitch":-4.125,"roll":-10.625},"location":"Right Ankle"},{"euler":{"heading":118.5625,"pitch":-156.125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":154.75,"pitch":-133.75,"roll":-57.0625},"location":"Right Knee"},{"euler":{"heading":26.8125,"pitch":-127.3125,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.361"} +{"sensors":[{"euler":{"heading":357.0,"pitch":137.75,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":62.875,"pitch":100.9375,"roll":17.3125},"location":"Left Ankle"},{"euler":{"heading":22.625,"pitch":-4.25,"roll":-7.5},"location":"Right Ankle"},{"euler":{"heading":124.5,"pitch":-148.1875,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":150.25,"pitch":-132.125,"roll":-53.5},"location":"Right Knee"},{"euler":{"heading":30.0625,"pitch":-135.25,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.461"} +{"sensors":[{"euler":{"heading":2.75,"pitch":132.1875,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":73.5625,"pitch":102.4375,"roll":24.1875},"location":"Left Ankle"},{"euler":{"heading":42.4375,"pitch":-6.0,"roll":-3.75},"location":"Right Ankle"},{"euler":{"heading":125.0625,"pitch":-149.5,"roll":41.5625},"location":"Right Hip"},{"euler":{"heading":124.4375,"pitch":-118.125,"roll":-38.5},"location":"Right Knee"},{"euler":{"heading":34.3125,"pitch":-142.5,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.562"} +{"sensors":[{"euler":{"heading":9.75,"pitch":127.375,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":78.0,"pitch":103.6875,"roll":27.4375},"location":"Left Ankle"},{"euler":{"heading":65.5625,"pitch":-4.25,"roll":1.0},"location":"Right Ankle"},{"euler":{"heading":119.625,"pitch":-153.25,"roll":39.5},"location":"Right Hip"},{"euler":{"heading":102.9375,"pitch":-111.0,"roll":-20.0},"location":"Right Knee"},{"euler":{"heading":37.875,"pitch":-149.0625,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.663"} +{"sensors":[{"euler":{"heading":16.125,"pitch":124.6875,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":82.0625,"pitch":104.625,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":-3.6875,"roll":6.125},"location":"Right Ankle"},{"euler":{"heading":106.75,"pitch":-155.9375,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":89.0,"pitch":-110.4375,"roll":-6.875},"location":"Right Knee"},{"euler":{"heading":38.5625,"pitch":-154.6875,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.763"} +{"sensors":[{"euler":{"heading":22.9375,"pitch":124.4375,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":87.0625,"pitch":104.875,"roll":40.375},"location":"Left Ankle"},{"euler":{"heading":80.5625,"pitch":-1.1875,"roll":4.5625},"location":"Right Ankle"},{"euler":{"heading":94.875,"pitch":-160.0625,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":92.5,"pitch":-115.5,"roll":-7.5},"location":"Right Knee"},{"euler":{"heading":41.6875,"pitch":-162.75,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.864"} +{"sensors":[{"euler":{"heading":34.625,"pitch":125.75,"roll":8.6875},"location":"Left Knee"},{"euler":{"heading":96.5625,"pitch":112.25,"roll":55.9375},"location":"Left Ankle"},{"euler":{"heading":70.9375,"pitch":0.9375,"roll":0.875},"location":"Right Ankle"},{"euler":{"heading":99.3125,"pitch":-158.4375,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":105.125,"pitch":-119.625,"roll":-14.8125},"location":"Right Knee"},{"euler":{"heading":34.25,"pitch":-150.3125,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:24.964"} +{"sensors":[{"euler":{"heading":53.1875,"pitch":119.8125,"roll":1.5},"location":"Left Knee"},{"euler":{"heading":107.375,"pitch":125.4375,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":67.375,"pitch":0.75,"roll":-1.5625},"location":"Right Ankle"},{"euler":{"heading":96.375,"pitch":-160.3125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":118.0625,"pitch":-121.6875,"roll":-21.5},"location":"Right Knee"},{"euler":{"heading":21.1875,"pitch":-124.3125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.65"} +{"sensors":[{"euler":{"heading":48.4375,"pitch":128.6875,"roll":6.25},"location":"Left Knee"},{"euler":{"heading":99.125,"pitch":106.9375,"roll":55.0625},"location":"Left Ankle"},{"euler":{"heading":66.0,"pitch":-0.4375,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":101.1875,"pitch":-159.625,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":124.5,"pitch":-120.5625,"roll":-26.6875},"location":"Right Knee"},{"euler":{"heading":13.5,"pitch":-118.125,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.166"} +{"sensors":[{"euler":{"heading":259.625,"pitch":141.375,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":68.1875,"pitch":97.625,"roll":29.25},"location":"Left Ankle"},{"euler":{"heading":62.5,"pitch":-0.4375,"roll":-4.5625},"location":"Right Ankle"},{"euler":{"heading":105.3125,"pitch":-159.3125,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":130.0625,"pitch":-121.0625,"roll":-31.25},"location":"Right Knee"},{"euler":{"heading":14.375,"pitch":-115.9375,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.267"} +{"sensors":[{"euler":{"heading":275.0,"pitch":153.8125,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":39.375,"pitch":94.5,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":56.875,"pitch":0.0625,"roll":-6.1875},"location":"Right Ankle"},{"euler":{"heading":107.1875,"pitch":-159.4375,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":137.625,"pitch":-122.875,"roll":-36.9375},"location":"Right Knee"},{"euler":{"heading":18.375,"pitch":-117.5,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.368"} +{"sensors":[{"euler":{"heading":324.5,"pitch":159.625,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":37.0,"pitch":95.0,"roll":-3.75},"location":"Left Ankle"},{"euler":{"heading":48.9375,"pitch":1.75,"roll":-9.6875},"location":"Right Ankle"},{"euler":{"heading":106.8125,"pitch":-163.4375,"roll":66.6875},"location":"Right Hip"},{"euler":{"heading":144.9375,"pitch":-125.3125,"roll":-42.625},"location":"Right Knee"},{"euler":{"heading":26.0,"pitch":-123.4375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.469"} +{"sensors":[{"euler":{"heading":345.1875,"pitch":148.875,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":51.875,"pitch":102.4375,"roll":6.5},"location":"Left Ankle"},{"euler":{"heading":36.75,"pitch":-3.8125,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":111.1875,"pitch":-165.3125,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":152.625,"pitch":-124.75,"roll":-54.25},"location":"Right Knee"},{"euler":{"heading":28.6875,"pitch":-125.5,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.570"} +{"sensors":[{"euler":{"heading":358.1875,"pitch":139.0625,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":61.875,"pitch":105.5625,"roll":13.6875},"location":"Left Ankle"},{"euler":{"heading":18.75,"pitch":-1.75,"roll":-14.875},"location":"Right Ankle"},{"euler":{"heading":120.9375,"pitch":-152.375,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":160.5,"pitch":-137.3125,"roll":-60.3125},"location":"Right Knee"},{"euler":{"heading":32.6875,"pitch":-127.1875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.670"} +{"sensors":[{"euler":{"heading":1.9375,"pitch":134.125,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":67.6875,"pitch":106.0,"roll":18.25},"location":"Left Ankle"},{"euler":{"heading":20.3125,"pitch":-7.1875,"roll":-11.0},"location":"Right Ankle"},{"euler":{"heading":128.75,"pitch":-147.5625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":148.5,"pitch":-128.25,"roll":-56.875},"location":"Right Knee"},{"euler":{"heading":34.625,"pitch":-136.125,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.771"} +{"sensors":[{"euler":{"heading":7.1875,"pitch":128.8125,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":77.375,"pitch":108.0,"roll":24.4375},"location":"Left Ankle"},{"euler":{"heading":42.4375,"pitch":-9.25,"roll":-5.625},"location":"Right Ankle"},{"euler":{"heading":128.4375,"pitch":-149.5625,"roll":40.75},"location":"Right Hip"},{"euler":{"heading":126.0625,"pitch":-114.8125,"roll":-41.1875},"location":"Right Knee"},{"euler":{"heading":37.9375,"pitch":-144.375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.871"} +{"sensors":[{"euler":{"heading":14.625,"pitch":124.875,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":80.5625,"pitch":108.5625,"roll":27.5625},"location":"Left Ankle"},{"euler":{"heading":66.4375,"pitch":-8.0,"roll":0.8125},"location":"Right Ankle"},{"euler":{"heading":120.8125,"pitch":-153.25,"roll":39.375},"location":"Right Hip"},{"euler":{"heading":103.625,"pitch":-107.8125,"roll":-20.9375},"location":"Right Knee"},{"euler":{"heading":40.1875,"pitch":-151.0,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:25.972"} +{"sensors":[{"euler":{"heading":20.25,"pitch":122.75,"roll":25.875},"location":"Left Knee"},{"euler":{"heading":85.3125,"pitch":109.0,"roll":33.0625},"location":"Left Ankle"},{"euler":{"heading":81.5625,"pitch":-8.0,"roll":5.8125},"location":"Right Ankle"},{"euler":{"heading":110.0,"pitch":-154.4375,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":90.0,"pitch":-107.0,"roll":-6.6875},"location":"Right Knee"},{"euler":{"heading":41.6875,"pitch":-158.5,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.73"} +{"sensors":[{"euler":{"heading":27.25,"pitch":122.3125,"roll":17.5625},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":110.375,"roll":42.9375},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-2.5,"roll":3.0625},"location":"Right Ankle"},{"euler":{"heading":98.4375,"pitch":-159.4375,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":94.1875,"pitch":-115.0,"roll":-8.875},"location":"Right Knee"},{"euler":{"heading":44.5,"pitch":-162.8125,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.173"} +{"sensors":[{"euler":{"heading":43.4375,"pitch":121.875,"roll":5.9375},"location":"Left Knee"},{"euler":{"heading":109.125,"pitch":124.875,"roll":59.375},"location":"Left Ankle"},{"euler":{"heading":67.6875,"pitch":-0.8125,"roll":-0.125},"location":"Right Ankle"},{"euler":{"heading":101.875,"pitch":-157.0,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":107.9375,"pitch":-118.75,"roll":-17.4375},"location":"Right Knee"},{"euler":{"heading":28.4375,"pitch":-142.5,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.274"} +{"sensors":[{"euler":{"heading":52.0625,"pitch":122.9375,"roll":2.375},"location":"Left Knee"},{"euler":{"heading":106.0,"pitch":123.9375,"roll":62.4375},"location":"Left Ankle"},{"euler":{"heading":64.75,"pitch":-0.625,"roll":-2.1875},"location":"Right Ankle"},{"euler":{"heading":100.25,"pitch":-158.0625,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":118.3125,"pitch":-120.1875,"roll":-23.375},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-120.9375,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.375"} +{"sensors":[{"euler":{"heading":37.625,"pitch":132.4375,"roll":11.75},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":105.4375,"roll":49.8125},"location":"Left Ankle"},{"euler":{"heading":62.5,"pitch":-0.8125,"roll":-3.625},"location":"Right Ankle"},{"euler":{"heading":103.25,"pitch":-156.875,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":125.75,"pitch":-120.0,"roll":-28.125},"location":"Right Knee"},{"euler":{"heading":12.125,"pitch":-116.3125,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.476"} +{"sensors":[{"euler":{"heading":263.0,"pitch":146.75,"roll":29.0625},"location":"Left Knee"},{"euler":{"heading":61.8125,"pitch":94.8125,"roll":22.875},"location":"Left Ankle"},{"euler":{"heading":58.5625,"pitch":-1.4375,"roll":-4.5625},"location":"Right Ankle"},{"euler":{"heading":105.9375,"pitch":-158.25,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":131.625,"pitch":-119.875,"roll":-33.3125},"location":"Right Knee"},{"euler":{"heading":14.0,"pitch":-116.5625,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.577"} +{"sensors":[{"euler":{"heading":276.75,"pitch":156.5,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":38.375,"pitch":93.1875,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":53.3125,"pitch":-1.0,"roll":-5.75},"location":"Right Ankle"},{"euler":{"heading":106.4375,"pitch":-162.0,"roll":65.75},"location":"Right Hip"},{"euler":{"heading":138.4375,"pitch":-121.5,"roll":-39.375},"location":"Right Knee"},{"euler":{"heading":22.25,"pitch":-120.375,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.678"} +{"sensors":[{"euler":{"heading":336.25,"pitch":152.375,"roll":40.625},"location":"Left Knee"},{"euler":{"heading":42.875,"pitch":100.125,"roll":1.6875},"location":"Left Ankle"},{"euler":{"heading":44.375,"pitch":-2.25,"roll":-9.375},"location":"Right Ankle"},{"euler":{"heading":108.1875,"pitch":-168.3125,"roll":67.0},"location":"Right Hip"},{"euler":{"heading":146.3125,"pitch":-120.25,"roll":-48.8125},"location":"Right Knee"},{"euler":{"heading":32.1875,"pitch":-125.5625,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.778"} +{"sensors":[{"euler":{"heading":351.125,"pitch":143.25,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":56.625,"pitch":103.375,"roll":11.5625},"location":"Left Ankle"},{"euler":{"heading":29.0625,"pitch":-5.0,"roll":-11.875},"location":"Right Ankle"},{"euler":{"heading":117.0625,"pitch":-159.875,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":155.25,"pitch":-128.5625,"roll":-59.5625},"location":"Right Knee"},{"euler":{"heading":28.625,"pitch":-125.875,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.879"} +{"sensors":[{"euler":{"heading":2.1875,"pitch":135.375,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":65.5625,"pitch":106.3125,"roll":16.8125},"location":"Left Ankle"},{"euler":{"heading":18.125,"pitch":-6.625,"roll":-11.875},"location":"Right Ankle"},{"euler":{"heading":125.5,"pitch":-150.75,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":155.8125,"pitch":-130.625,"roll":-60.5},"location":"Right Knee"},{"euler":{"heading":33.25,"pitch":-131.5625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:26.980"} +{"sensors":[{"euler":{"heading":5.4375,"pitch":130.9375,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":73.9375,"pitch":107.125,"roll":22.375},"location":"Left Ankle"},{"euler":{"heading":30.3125,"pitch":-8.875,"roll":-8.5625},"location":"Right Ankle"},{"euler":{"heading":131.5,"pitch":-148.5625,"roll":43.8125},"location":"Right Hip"},{"euler":{"heading":140.5625,"pitch":-118.875,"roll":-49.9375},"location":"Right Knee"},{"euler":{"heading":37.125,"pitch":-140.75,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.81"} +{"sensors":[{"euler":{"heading":10.4375,"pitch":127.1875,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":77.5,"pitch":107.5,"roll":24.9375},"location":"Left Ankle"},{"euler":{"heading":57.125,"pitch":-10.3125,"roll":-2.25},"location":"Right Ankle"},{"euler":{"heading":126.6875,"pitch":-152.0625,"roll":39.1875},"location":"Right Hip"},{"euler":{"heading":98.1875,"pitch":-107.75,"roll":-29.4375},"location":"Right Knee"},{"euler":{"heading":39.375,"pitch":-149.3125,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.182"} +{"sensors":[{"euler":{"heading":16.8125,"pitch":123.75,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":81.9375,"pitch":108.6875,"roll":29.125},"location":"Left Ankle"},{"euler":{"heading":75.375,"pitch":-9.5,"roll":4.5},"location":"Right Ankle"},{"euler":{"heading":115.6875,"pitch":-154.625,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":93.125,"pitch":-104.8125,"roll":-11.5},"location":"Right Knee"},{"euler":{"heading":41.4375,"pitch":-154.4375,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.283"} +{"sensors":[{"euler":{"heading":22.1875,"pitch":122.25,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":88.9375,"pitch":109.9375,"roll":36.5625},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":-7.375,"roll":5.0625},"location":"Right Ankle"},{"euler":{"heading":101.0625,"pitch":-159.25,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":91.125,"pitch":-109.6875,"roll":-7.75},"location":"Right Knee"},{"euler":{"heading":43.25,"pitch":-161.25,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.383"} +{"sensors":[{"euler":{"heading":31.75,"pitch":122.375,"roll":13.5},"location":"Left Knee"},{"euler":{"heading":93.6875,"pitch":111.125,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":72.5,"pitch":-3.625,"roll":-0.375},"location":"Right Ankle"},{"euler":{"heading":98.5625,"pitch":-161.0625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":100.1875,"pitch":-114.9375,"roll":-13.3125},"location":"Right Knee"},{"euler":{"heading":43.375,"pitch":-156.5625,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.484"} +{"sensors":[{"euler":{"heading":48.875,"pitch":118.5,"roll":3.6875},"location":"Left Knee"},{"euler":{"heading":109.875,"pitch":125.4375,"roll":63.0},"location":"Left Ankle"},{"euler":{"heading":68.5,"pitch":-3.3125,"roll":-1.4375},"location":"Right Ankle"},{"euler":{"heading":98.625,"pitch":-161.8125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":112.25,"pitch":-117.8125,"roll":-20.25},"location":"Right Knee"},{"euler":{"heading":26.4375,"pitch":-127.5625,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.588"} +{"sensors":[{"euler":{"heading":51.5,"pitch":126.375,"roll":3.5},"location":"Left Knee"},{"euler":{"heading":101.125,"pitch":107.875,"roll":58.375},"location":"Left Ankle"},{"euler":{"heading":65.9375,"pitch":-0.5625,"roll":-3.5625},"location":"Right Ankle"},{"euler":{"heading":100.3125,"pitch":-161.125,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":123.1875,"pitch":-121.125,"roll":-25.0625},"location":"Right Knee"},{"euler":{"heading":15.5625,"pitch":-118.9375,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.688"} +{"sensors":[{"euler":{"heading":27.0625,"pitch":137.5,"roll":18.875},"location":"Left Knee"},{"euler":{"heading":72.1875,"pitch":96.125,"roll":33.75},"location":"Left Ankle"},{"euler":{"heading":62.0625,"pitch":1.1875,"roll":-4.125},"location":"Right Ankle"},{"euler":{"heading":102.6875,"pitch":-160.3125,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":128.6875,"pitch":-123.0,"roll":-29.125},"location":"Right Knee"},{"euler":{"heading":13.25,"pitch":-115.875,"roll":47.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.790"} +{"sensors":[{"euler":{"heading":270.9375,"pitch":152.0,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":43.125,"pitch":92.1875,"roll":6.4375},"location":"Left Ankle"},{"euler":{"heading":57.375,"pitch":2.0,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":103.9375,"pitch":-163.125,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":135.1875,"pitch":-123.6875,"roll":-34.4375},"location":"Right Knee"},{"euler":{"heading":17.25,"pitch":-118.5625,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.891"} +{"sensors":[{"euler":{"heading":280.1875,"pitch":159.4375,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":34.1875,"pitch":92.375,"roll":-5.625},"location":"Left Ankle"},{"euler":{"heading":51.4375,"pitch":1.4375,"roll":-8.9375},"location":"Right Ankle"},{"euler":{"heading":105.0,"pitch":-167.5625,"roll":67.9375},"location":"Right Hip"},{"euler":{"heading":142.3125,"pitch":-123.3125,"roll":-41.625},"location":"Right Knee"},{"euler":{"heading":26.0,"pitch":-125.25,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:27.992"} +{"sensors":[{"euler":{"heading":346.0,"pitch":149.125,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":46.5625,"pitch":99.75,"roll":3.8125},"location":"Left Ankle"},{"euler":{"heading":39.3125,"pitch":-6.5,"roll":-9.6875},"location":"Right Ankle"},{"euler":{"heading":110.75,"pitch":-168.0,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":147.8125,"pitch":-119.3125,"roll":-53.9375},"location":"Right Knee"},{"euler":{"heading":30.5625,"pitch":-128.5,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.93"} +{"sensors":[{"euler":{"heading":356.0625,"pitch":140.0,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":59.625,"pitch":104.3125,"roll":13.625},"location":"Left Ankle"},{"euler":{"heading":17.75,"pitch":-6.625,"roll":-15.1875},"location":"Right Ankle"},{"euler":{"heading":124.75,"pitch":-152.375,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":154.25,"pitch":-130.1875,"roll":-58.625},"location":"Right Knee"},{"euler":{"heading":31.875,"pitch":-129.4375,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.200"} +{"sensors":[{"euler":{"heading":3.9375,"pitch":133.0,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":75.9375,"pitch":108.125,"roll":24.0},"location":"Left Ankle"},{"euler":{"heading":22.875,"pitch":-9.25,"roll":-9.0},"location":"Right Ankle"},{"euler":{"heading":130.375,"pitch":-147.75,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":139.4375,"pitch":-120.4375,"roll":-50.0},"location":"Right Knee"},{"euler":{"heading":35.5,"pitch":-136.75,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.300"} +{"sensors":[{"euler":{"heading":8.9375,"pitch":128.9375,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":77.3125,"pitch":107.8125,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":45.1875,"pitch":-10.8125,"roll":-4.5625},"location":"Right Ankle"},{"euler":{"heading":128.5,"pitch":-150.75,"roll":40.4375},"location":"Right Hip"},{"euler":{"heading":119.0625,"pitch":-109.6875,"roll":-33.25},"location":"Right Knee"},{"euler":{"heading":36.9375,"pitch":-142.5625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.401"} +{"sensors":[{"euler":{"heading":14.125,"pitch":125.625,"roll":31.25},"location":"Left Knee"},{"euler":{"heading":81.5625,"pitch":108.4375,"roll":29.5},"location":"Left Ankle"},{"euler":{"heading":69.3125,"pitch":-8.0,"roll":0.3125},"location":"Right Ankle"},{"euler":{"heading":121.75,"pitch":-153.25,"roll":40.0},"location":"Right Hip"},{"euler":{"heading":98.3125,"pitch":-107.375,"roll":-15.0},"location":"Right Knee"},{"euler":{"heading":39.0,"pitch":-149.5625,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.502"} +{"sensors":[{"euler":{"heading":19.125,"pitch":123.3125,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":109.125,"roll":35.5},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":-7.9375,"roll":4.625},"location":"Right Ankle"},{"euler":{"heading":108.3125,"pitch":-156.125,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":91.5625,"pitch":-107.5,"roll":-7.0625},"location":"Right Knee"},{"euler":{"heading":40.125,"pitch":-156.0,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.603"} +{"sensors":[{"euler":{"heading":21.375,"pitch":122.625,"roll":20.875},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":109.375,"roll":45.4375},"location":"Left Ankle"},{"euler":{"heading":76.5625,"pitch":-5.4375,"roll":2.25},"location":"Right Ankle"},{"euler":{"heading":99.5625,"pitch":-161.125,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":97.625,"pitch":-113.5625,"roll":-10.0},"location":"Right Knee"},{"euler":{"heading":42.3125,"pitch":-158.125,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.703"} +{"sensors":[{"euler":{"heading":38.6875,"pitch":123.125,"roll":8.125},"location":"Left Knee"},{"euler":{"heading":104.5,"pitch":120.3125,"roll":58.625},"location":"Left Ankle"},{"euler":{"heading":69.6875,"pitch":-4.125,"roll":-0.875},"location":"Right Ankle"},{"euler":{"heading":101.25,"pitch":-160.375,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":108.125,"pitch":-117.3125,"roll":-16.3125},"location":"Right Knee"},{"euler":{"heading":25.125,"pitch":-135.125,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.804"} +{"sensors":[{"euler":{"heading":46.75,"pitch":124.0625,"roll":5.0},"location":"Left Knee"},{"euler":{"heading":102.8125,"pitch":111.4375,"roll":61.625},"location":"Left Ankle"},{"euler":{"heading":66.875,"pitch":-3.375,"roll":-3.125},"location":"Right Ankle"},{"euler":{"heading":101.1875,"pitch":-160.625,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":118.3125,"pitch":-119.0625,"roll":-22.5625},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-119.125,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:28.906"} +{"sensors":[{"euler":{"heading":30.375,"pitch":133.875,"roll":14.875},"location":"Left Knee"},{"euler":{"heading":83.0,"pitch":98.8125,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":64.5,"pitch":-2.0625,"roll":-5.3125},"location":"Right Ankle"},{"euler":{"heading":103.25,"pitch":-159.9375,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":124.375,"pitch":-120.375,"roll":-26.0},"location":"Right Knee"},{"euler":{"heading":10.8125,"pitch":-115.0,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.7"} +{"sensors":[{"euler":{"heading":265.5,"pitch":149.375,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":52.8125,"pitch":92.0,"roll":14.6875},"location":"Left Ankle"},{"euler":{"heading":60.4375,"pitch":-1.6875,"roll":-5.4375},"location":"Right Ankle"},{"euler":{"heading":105.5,"pitch":-161.6875,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":130.1875,"pitch":-121.0625,"roll":-31.3125},"location":"Right Knee"},{"euler":{"heading":12.75,"pitch":-115.8125,"roll":46.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.108"} +{"sensors":[{"euler":{"heading":278.5625,"pitch":159.875,"roll":40.9375},"location":"Left Knee"},{"euler":{"heading":33.875,"pitch":91.25,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":54.5,"pitch":-0.875,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":105.625,"pitch":-166.3125,"roll":67.0625},"location":"Right Hip"},{"euler":{"heading":136.8125,"pitch":-121.5625,"roll":-37.4375},"location":"Right Knee"},{"euler":{"heading":21.375,"pitch":-120.5625,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.208"} +{"sensors":[{"euler":{"heading":333.1875,"pitch":155.625,"roll":41.6875},"location":"Left Knee"},{"euler":{"heading":40.125,"pitch":99.1875,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":44.25,"pitch":-2.5625,"roll":-9.875},"location":"Right Ankle"},{"euler":{"heading":108.4375,"pitch":-170.25,"roll":67.125},"location":"Right Hip"},{"euler":{"heading":143.125,"pitch":-120.3125,"roll":-46.1875},"location":"Right Knee"},{"euler":{"heading":30.5,"pitch":-125.75,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.310"} +{"sensors":[{"euler":{"heading":345.875,"pitch":146.5625,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":55.6875,"pitch":101.0625,"roll":10.9375},"location":"Left Ankle"},{"euler":{"heading":26.875,"pitch":-6.3125,"roll":-11.625},"location":"Right Ankle"},{"euler":{"heading":119.625,"pitch":-159.4375,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":149.8125,"pitch":-125.3125,"roll":-56.25},"location":"Right Knee"},{"euler":{"heading":28.4375,"pitch":-127.8125,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.410"} +{"sensors":[{"euler":{"heading":354.0,"pitch":139.0625,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":61.9375,"pitch":102.5625,"roll":18.5},"location":"Left Ankle"},{"euler":{"heading":17.125,"pitch":-10.0625,"roll":-11.625},"location":"Right Ankle"},{"euler":{"heading":131.25,"pitch":-148.6875,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":149.6875,"pitch":-126.3125,"roll":-57.5},"location":"Right Knee"},{"euler":{"heading":32.5625,"pitch":-135.375,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.511"} +{"sensors":[{"euler":{"heading":358.375,"pitch":134.5625,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":73.5,"pitch":103.8125,"roll":23.75},"location":"Left Ankle"},{"euler":{"heading":31.375,"pitch":-10.0625,"roll":-9.125},"location":"Right Ankle"},{"euler":{"heading":132.5,"pitch":-147.125,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":130.25,"pitch":-116.5,"roll":-44.6875},"location":"Right Knee"},{"euler":{"heading":35.125,"pitch":-141.9375,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.611"} +{"sensors":[{"euler":{"heading":4.6875,"pitch":130.125,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":74.625,"pitch":104.3125,"roll":25.8125},"location":"Left Ankle"},{"euler":{"heading":54.8125,"pitch":-11.625,"roll":-3.25},"location":"Right Ankle"},{"euler":{"heading":128.5625,"pitch":-150.75,"roll":39.4375},"location":"Right Hip"},{"euler":{"heading":111.0625,"pitch":-107.875,"roll":-28.875},"location":"Right Knee"},{"euler":{"heading":36.5,"pitch":-147.6875,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.712"} +{"sensors":[{"euler":{"heading":11.125,"pitch":126.1875,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":80.5625,"pitch":105.9375,"roll":30.4375},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":-7.75,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":121.4375,"pitch":-151.875,"roll":42.875},"location":"Right Hip"},{"euler":{"heading":90.0625,"pitch":-106.5625,"roll":-9.0625},"location":"Right Knee"},{"euler":{"heading":39.25,"pitch":-153.3125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.814"} +{"sensors":[{"euler":{"heading":17.5,"pitch":124.25,"roll":25.4375},"location":"Left Knee"},{"euler":{"heading":88.0,"pitch":107.5,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":-8.1875,"roll":4.875},"location":"Right Ankle"},{"euler":{"heading":105.5,"pitch":-157.25,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":85.5,"pitch":-109.6875,"roll":-5.0625},"location":"Right Knee"},{"euler":{"heading":40.6875,"pitch":-159.0,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:29.915"} +{"sensors":[{"euler":{"heading":28.375,"pitch":123.75,"roll":14.5},"location":"Left Knee"},{"euler":{"heading":90.0,"pitch":108.4375,"roll":48.25},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":-6.5,"roll":0.5625},"location":"Right Ankle"},{"euler":{"heading":106.9375,"pitch":-158.1875,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":96.875,"pitch":-114.4375,"roll":-13.0},"location":"Right Knee"},{"euler":{"heading":40.5,"pitch":-150.4375,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.17"} +{"sensors":[{"euler":{"heading":46.5,"pitch":119.0625,"roll":6.125},"location":"Left Knee"},{"euler":{"heading":109.75,"pitch":124.9375,"roll":63.3125},"location":"Left Ankle"},{"euler":{"heading":69.0,"pitch":-4.1875,"roll":-0.5},"location":"Right Ankle"},{"euler":{"heading":104.6875,"pitch":-158.6875,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":110.3125,"pitch":-117.25,"roll":-18.875},"location":"Right Knee"},{"euler":{"heading":27.6875,"pitch":-131.25,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.118"} +{"sensors":[{"euler":{"heading":43.8125,"pitch":126.1875,"roll":8.8125},"location":"Left Knee"},{"euler":{"heading":100.6875,"pitch":107.5,"roll":56.9375},"location":"Left Ankle"},{"euler":{"heading":65.9375,"pitch":-2.3125,"roll":-2.875},"location":"Right Ankle"},{"euler":{"heading":105.8125,"pitch":-158.125,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":120.625,"pitch":-120.375,"roll":-24.3125},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":-119.4375,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.219"} +{"sensors":[{"euler":{"heading":10.4375,"pitch":139.25,"roll":24.1875},"location":"Left Knee"},{"euler":{"heading":70.375,"pitch":95.5625,"roll":31.6875},"location":"Left Ankle"},{"euler":{"heading":62.375,"pitch":-1.1875,"roll":-3.875},"location":"Right Ankle"},{"euler":{"heading":106.5625,"pitch":-158.9375,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":127.1875,"pitch":-121.6875,"roll":-28.75},"location":"Right Knee"},{"euler":{"heading":14.0625,"pitch":-115.375,"roll":47.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.320"} +{"sensors":[{"euler":{"heading":329.6875,"pitch":155.5,"roll":40.5625},"location":"Left Knee"},{"euler":{"heading":42.0,"pitch":92.6875,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":57.5,"pitch":0.0,"roll":-7.25},"location":"Right Ankle"},{"euler":{"heading":108.875,"pitch":-160.5,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":133.6875,"pitch":-122.4375,"roll":-34.0625},"location":"Right Knee"},{"euler":{"heading":19.75,"pitch":-119.8125,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.421"} +{"sensors":[{"euler":{"heading":328.9375,"pitch":158.125,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":35.75,"pitch":96.3125,"roll":-4.0625},"location":"Left Ankle"},{"euler":{"heading":49.5625,"pitch":-1.5625,"roll":-9.125},"location":"Right Ankle"},{"euler":{"heading":111.3125,"pitch":-162.8125,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":141.75,"pitch":-122.125,"roll":-42.375},"location":"Right Knee"},{"euler":{"heading":25.9375,"pitch":-126.1875,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.522"} +{"sensors":[{"euler":{"heading":344.5625,"pitch":148.0,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":48.4375,"pitch":100.1875,"roll":6.625},"location":"Left Ankle"},{"euler":{"heading":31.0625,"pitch":-7.6875,"roll":-9.875},"location":"Right Ankle"},{"euler":{"heading":117.5625,"pitch":-157.5625,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":150.0,"pitch":-122.75,"roll":-54.6875},"location":"Right Knee"},{"euler":{"heading":25.5,"pitch":-126.4375,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.623"} +{"sensors":[{"euler":{"heading":353.1875,"pitch":140.4375,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":62.0,"pitch":103.0625,"roll":15.625},"location":"Left Ankle"},{"euler":{"heading":19.0625,"pitch":-7.9375,"roll":-11.875},"location":"Right Ankle"},{"euler":{"heading":129.75,"pitch":-147.9375,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":152.6875,"pitch":-130.5625,"roll":-57.25},"location":"Right Knee"},{"euler":{"heading":29.0625,"pitch":-131.25,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.724"} +{"sensors":[{"euler":{"heading":358.875,"pitch":134.6875,"roll":39.3125},"location":"Left Knee"},{"euler":{"heading":73.75,"pitch":105.375,"roll":23.25},"location":"Left Ankle"},{"euler":{"heading":30.5625,"pitch":-8.4375,"roll":-8.875},"location":"Right Ankle"},{"euler":{"heading":132.625,"pitch":-146.3125,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":135.5,"pitch":-120.375,"roll":-47.625},"location":"Right Knee"},{"euler":{"heading":33.1875,"pitch":-139.0625,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.825"} +{"sensors":[{"euler":{"heading":3.8125,"pitch":131.25,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":73.875,"pitch":104.5625,"roll":25.0},"location":"Left Ankle"},{"euler":{"heading":52.625,"pitch":-11.5,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":130.375,"pitch":-150.3125,"roll":38.5625},"location":"Right Hip"},{"euler":{"heading":113.3125,"pitch":-108.875,"roll":-31.1875},"location":"Right Knee"},{"euler":{"heading":33.25,"pitch":-144.5,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:30.925"} +{"sensors":[{"euler":{"heading":10.0625,"pitch":128.1875,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":77.875,"pitch":105.8125,"roll":29.25},"location":"Left Ankle"},{"euler":{"heading":74.875,"pitch":-8.75,"roll":2.4375},"location":"Right Ankle"},{"euler":{"heading":122.125,"pitch":-152.5,"roll":40.4375},"location":"Right Hip"},{"euler":{"heading":93.125,"pitch":-106.8125,"roll":-12.9375},"location":"Right Knee"},{"euler":{"heading":34.3125,"pitch":-149.5,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.25"} +{"sensors":[{"euler":{"heading":15.9375,"pitch":125.75,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":85.25,"pitch":107.25,"roll":36.3125},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":-5.3125,"roll":5.125},"location":"Right Ankle"},{"euler":{"heading":104.375,"pitch":-157.4375,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":84.0625,"pitch":-110.1875,"roll":-3.6875},"location":"Right Knee"},{"euler":{"heading":36.3125,"pitch":-155.625,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.128"} +{"sensors":[{"euler":{"heading":26.6875,"pitch":123.625,"roll":1.375},"location":"Left Knee"},{"euler":{"heading":92.375,"pitch":107.1875,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":-4.5625,"roll":0.375},"location":"Right Ankle"},{"euler":{"heading":100.375,"pitch":-161.125,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":94.5,"pitch":-114.875,"roll":-9.75},"location":"Right Knee"},{"euler":{"heading":39.0625,"pitch":-154.0625,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.228"} +{"sensors":[{"euler":{"heading":43.4375,"pitch":122.3125,"roll":6.6875},"location":"Left Knee"},{"euler":{"heading":106.375,"pitch":123.1875,"roll":61.0625},"location":"Left Ankle"},{"euler":{"heading":71.75,"pitch":-4.0625,"roll":-0.6875},"location":"Right Ankle"},{"euler":{"heading":101.1875,"pitch":-161.0,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":106.9375,"pitch":-117.5625,"roll":-16.5625},"location":"Right Knee"},{"euler":{"heading":20.875,"pitch":-130.0625,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.329"} +{"sensors":[{"euler":{"heading":46.0,"pitch":126.625,"roll":7.375},"location":"Left Knee"},{"euler":{"heading":100.3125,"pitch":108.0625,"roll":58.6875},"location":"Left Ankle"},{"euler":{"heading":68.6875,"pitch":-2.125,"roll":-2.875},"location":"Right Ankle"},{"euler":{"heading":103.4375,"pitch":-160.0625,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":117.1875,"pitch":-120.8125,"roll":-21.875},"location":"Right Knee"},{"euler":{"heading":13.9375,"pitch":-118.0625,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.430"} +{"sensors":[{"euler":{"heading":15.5625,"pitch":137.8125,"roll":21.875},"location":"Left Knee"},{"euler":{"heading":76.125,"pitch":95.5,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":64.75,"pitch":0.0,"roll":-5.0},"location":"Right Ankle"},{"euler":{"heading":105.25,"pitch":-159.0625,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":124.75,"pitch":-123.3125,"roll":-26.0625},"location":"Right Knee"},{"euler":{"heading":3.8125,"pitch":-117.875,"roll":45.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.531"} +{"sensors":[{"euler":{"heading":330.5625,"pitch":153.1875,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":45.5625,"pitch":91.3125,"roll":8.8125},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":0.4375,"roll":-5.125},"location":"Right Ankle"},{"euler":{"heading":107.0625,"pitch":-159.5625,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":129.125,"pitch":-124.0625,"roll":-29.75},"location":"Right Knee"},{"euler":{"heading":10.625,"pitch":-119.3125,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.632"} +{"sensors":[{"euler":{"heading":319.875,"pitch":161.9375,"roll":42.875},"location":"Left Knee"},{"euler":{"heading":32.625,"pitch":91.625,"roll":-7.1875},"location":"Left Ankle"},{"euler":{"heading":53.25,"pitch":1.125,"roll":-9.1875},"location":"Right Ankle"},{"euler":{"heading":108.6875,"pitch":-162.4375,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":136.75,"pitch":-123.8125,"roll":-36.625},"location":"Right Knee"},{"euler":{"heading":21.8125,"pitch":-123.9375,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.733"} +{"sensors":[{"euler":{"heading":335.125,"pitch":153.625,"roll":42.5625},"location":"Left Knee"},{"euler":{"heading":42.4375,"pitch":97.25,"roll":1.3125},"location":"Left Ankle"},{"euler":{"heading":42.4375,"pitch":-3.75,"roll":-10.3125},"location":"Right Ankle"},{"euler":{"heading":113.75,"pitch":-164.25,"roll":65.5},"location":"Right Hip"},{"euler":{"heading":144.125,"pitch":-121.125,"roll":-47.3125},"location":"Right Knee"},{"euler":{"heading":26.4375,"pitch":-126.875,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.833"} +{"sensors":[{"euler":{"heading":348.8125,"pitch":143.75,"roll":40.75},"location":"Left Knee"},{"euler":{"heading":53.5625,"pitch":100.3125,"roll":10.0625},"location":"Left Ankle"},{"euler":{"heading":20.875,"pitch":-3.625,"roll":-13.625},"location":"Right Ankle"},{"euler":{"heading":125.0,"pitch":-153.5,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":149.0625,"pitch":-128.0625,"roll":-54.4375},"location":"Right Knee"},{"euler":{"heading":27.4375,"pitch":-127.8125,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:31.934"} +{"sensors":[{"euler":{"heading":353.9375,"pitch":138.0625,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":61.875,"pitch":101.6875,"roll":16.0625},"location":"Left Ankle"},{"euler":{"heading":21.25,"pitch":-7.0625,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":133.4375,"pitch":-145.8125,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":142.875,"pitch":-125.4375,"roll":-52.0625},"location":"Right Knee"},{"euler":{"heading":30.0,"pitch":-136.1875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.36"} +{"sensors":[{"euler":{"heading":359.375,"pitch":132.8125,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":72.8125,"pitch":103.4375,"roll":23.0},"location":"Left Ankle"},{"euler":{"heading":43.8125,"pitch":-10.5625,"roll":-5.5625},"location":"Right Ankle"},{"euler":{"heading":132.1875,"pitch":-146.9375,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":118.0,"pitch":-111.125,"roll":-35.125},"location":"Right Knee"},{"euler":{"heading":33.375,"pitch":-142.6875,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.137"} +{"sensors":[{"euler":{"heading":5.9375,"pitch":128.875,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":74.875,"pitch":103.9375,"roll":26.0},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-10.5,"roll":-1.125},"location":"Right Ankle"},{"euler":{"heading":125.8125,"pitch":-151.6875,"roll":39.875},"location":"Right Hip"},{"euler":{"heading":98.3125,"pitch":-105.5625,"roll":-16.4375},"location":"Right Knee"},{"euler":{"heading":35.125,"pitch":-148.125,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.238"} +{"sensors":[{"euler":{"heading":12.1875,"pitch":125.625,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":80.875,"pitch":105.625,"roll":31.375},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-8.4375,"roll":3.5625},"location":"Right Ankle"},{"euler":{"heading":117.3125,"pitch":-152.25,"roll":45.25},"location":"Right Hip"},{"euler":{"heading":84.0,"pitch":-106.8125,"roll":-2.6875},"location":"Right Knee"},{"euler":{"heading":37.1875,"pitch":-153.5,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.338"} +{"sensors":[{"euler":{"heading":19.3125,"pitch":123.5,"roll":23.9375},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":107.25,"roll":40.875},"location":"Left Ankle"},{"euler":{"heading":64.375,"pitch":-3.0,"roll":1.875},"location":"Right Ankle"},{"euler":{"heading":101.3125,"pitch":-158.8125,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":88.75,"pitch":-114.625,"roll":-4.6875},"location":"Right Knee"},{"euler":{"heading":41.1875,"pitch":-158.3125,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.439"} +{"sensors":[{"euler":{"heading":30.375,"pitch":126.0625,"roll":10.6875},"location":"Left Knee"},{"euler":{"heading":93.5625,"pitch":110.875,"roll":53.625},"location":"Left Ankle"},{"euler":{"heading":73.4375,"pitch":-4.375,"roll":-2.1875},"location":"Right Ankle"},{"euler":{"heading":105.25,"pitch":-158.125,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":101.375,"pitch":-115.375,"roll":-12.1875},"location":"Right Knee"},{"euler":{"heading":29.1875,"pitch":-142.8125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.539"} +{"sensors":[{"euler":{"heading":45.0,"pitch":123.625,"roll":6.0},"location":"Left Knee"},{"euler":{"heading":98.125,"pitch":115.5625,"roll":59.6875},"location":"Left Ankle"},{"euler":{"heading":70.125,"pitch":-4.25,"roll":-2.6875},"location":"Right Ankle"},{"euler":{"heading":102.625,"pitch":-159.3125,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":110.625,"pitch":-117.5,"roll":-18.0625},"location":"Right Knee"},{"euler":{"heading":17.75,"pitch":-120.75,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.639"} +{"sensors":[{"euler":{"heading":30.875,"pitch":132.875,"roll":14.5625},"location":"Left Knee"},{"euler":{"heading":86.4375,"pitch":98.6875,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":66.5625,"pitch":-4.125,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":106.3125,"pitch":-158.75,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":119.5625,"pitch":-117.5625,"roll":-23.8125},"location":"Right Knee"},{"euler":{"heading":12.3125,"pitch":-116.75,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.742"} +{"sensors":[{"euler":{"heading":345.6875,"pitch":147.125,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":56.8125,"pitch":92.5,"roll":18.6875},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-5.375,"roll":-5.3125},"location":"Right Ankle"},{"euler":{"heading":108.5625,"pitch":-161.1875,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":125.1875,"pitch":-116.3125,"roll":-29.3125},"location":"Right Knee"},{"euler":{"heading":13.3125,"pitch":-116.0625,"roll":47.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.842"} +{"sensors":[{"euler":{"heading":322.0,"pitch":159.8125,"roll":41.9375},"location":"Left Knee"},{"euler":{"heading":35.3125,"pitch":91.3125,"roll":-3.5},"location":"Left Ankle"},{"euler":{"heading":56.8125,"pitch":-3.125,"roll":-9.625},"location":"Right Ankle"},{"euler":{"heading":110.25,"pitch":-162.25,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":131.75,"pitch":-118.0625,"roll":-34.3125},"location":"Right Knee"},{"euler":{"heading":20.125,"pitch":-119.875,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:32.943"} +{"sensors":[{"euler":{"heading":328.625,"pitch":159.1875,"roll":41.875},"location":"Left Knee"},{"euler":{"heading":36.625,"pitch":96.875,"roll":-4.25},"location":"Left Ankle"},{"euler":{"heading":32.0,"pitch":-2.875,"roll":-10.75},"location":"Right Ankle"},{"euler":{"heading":111.1875,"pitch":-166.9375,"roll":66.25},"location":"Right Hip"},{"euler":{"heading":139.125,"pitch":-118.9375,"roll":-41.75},"location":"Right Knee"},{"euler":{"heading":25.75,"pitch":-124.875,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.44"} +{"sensors":[{"euler":{"heading":346.0625,"pitch":147.875,"roll":41.0},"location":"Left Knee"},{"euler":{"heading":51.25,"pitch":100.875,"roll":7.0},"location":"Left Ankle"},{"euler":{"heading":17.25,"pitch":-5.3125,"roll":-12.1875},"location":"Right Ankle"},{"euler":{"heading":119.5,"pitch":-162.1875,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":146.6875,"pitch":-116.5,"roll":-54.125},"location":"Right Knee"},{"euler":{"heading":26.75,"pitch":-125.375,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.144"} +{"sensors":[{"euler":{"heading":354.75,"pitch":140.0625,"roll":40.8125},"location":"Left Knee"},{"euler":{"heading":59.5625,"pitch":102.25,"roll":12.25},"location":"Left Ankle"},{"euler":{"heading":20.125,"pitch":-4.875,"roll":-13.375},"location":"Right Ankle"},{"euler":{"heading":128.6875,"pitch":-149.875,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":152.0625,"pitch":-130.25,"roll":-56.5},"location":"Right Knee"},{"euler":{"heading":30.625,"pitch":-131.3125,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.245"} +{"sensors":[{"euler":{"heading":358.6875,"pitch":135.25,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":68.4375,"pitch":103.625,"roll":18.5625},"location":"Left Ankle"},{"euler":{"heading":33.8125,"pitch":-8.375,"roll":-9.9375},"location":"Right Ankle"},{"euler":{"heading":133.8125,"pitch":-146.625,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":135.0625,"pitch":-119.9375,"roll":-47.4375},"location":"Right Knee"},{"euler":{"heading":33.75,"pitch":-139.25,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.346"} +{"sensors":[{"euler":{"heading":2.9375,"pitch":131.875,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":70.125,"pitch":103.5,"roll":21.5625},"location":"Left Ankle"},{"euler":{"heading":58.5625,"pitch":-10.5,"roll":-3.4375},"location":"Right Ankle"},{"euler":{"heading":128.9375,"pitch":-150.75,"roll":40.3125},"location":"Right Hip"},{"euler":{"heading":108.1875,"pitch":-108.125,"roll":-26.5625},"location":"Right Knee"},{"euler":{"heading":33.0625,"pitch":-143.875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.447"} +{"sensors":[{"euler":{"heading":9.8125,"pitch":128.0625,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":74.0625,"pitch":105.0625,"roll":26.0625},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":-9.5,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":119.0,"pitch":-152.375,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":89.75,"pitch":-105.625,"roll":-9.125},"location":"Right Knee"},{"euler":{"heading":33.5625,"pitch":-146.9375,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.549"} +{"sensors":[{"euler":{"heading":15.6875,"pitch":125.625,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":106.5625,"roll":32.9375},"location":"Left Ankle"},{"euler":{"heading":84.375,"pitch":-7.4375,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":104.9375,"pitch":-157.9375,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":87.0625,"pitch":-109.1875,"roll":-4.8125},"location":"Right Knee"},{"euler":{"heading":34.8125,"pitch":-153.0,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.650"} +{"sensors":[{"euler":{"heading":26.9375,"pitch":124.25,"roll":16.5},"location":"Left Knee"},{"euler":{"heading":86.875,"pitch":106.25,"roll":45.375},"location":"Left Ankle"},{"euler":{"heading":76.5625,"pitch":-6.625,"roll":-0.625},"location":"Right Ankle"},{"euler":{"heading":102.5625,"pitch":-160.4375,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":97.5,"pitch":-113.625,"roll":-11.4375},"location":"Right Knee"},{"euler":{"heading":35.25,"pitch":-147.375,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.751"} +{"sensors":[{"euler":{"heading":42.125,"pitch":123.9375,"roll":7.375},"location":"Left Knee"},{"euler":{"heading":100.5,"pitch":116.5,"roll":59.0625},"location":"Left Ankle"},{"euler":{"heading":73.1875,"pitch":-7.0625,"roll":-1.1875},"location":"Right Ankle"},{"euler":{"heading":100.6875,"pitch":-161.6875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":109.25,"pitch":-114.875,"roll":-18.3125},"location":"Right Knee"},{"euler":{"heading":18.375,"pitch":-126.0625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.852"} +{"sensors":[{"euler":{"heading":40.875,"pitch":128.5625,"roll":9.0625},"location":"Left Knee"},{"euler":{"heading":96.75,"pitch":102.8125,"roll":54.3125},"location":"Left Ankle"},{"euler":{"heading":69.8125,"pitch":-5.0625,"roll":-2.875},"location":"Right Ankle"},{"euler":{"heading":103.375,"pitch":-160.4375,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":118.3125,"pitch":-117.5,"roll":-23.5},"location":"Right Knee"},{"euler":{"heading":12.0625,"pitch":-119.0625,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:33.953"} +{"sensors":[{"euler":{"heading":5.625,"pitch":140.6875,"roll":24.25},"location":"Left Knee"},{"euler":{"heading":68.5,"pitch":91.0625,"roll":30.8125},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-3.375,"roll":-5.0625},"location":"Right Ankle"},{"euler":{"heading":104.5,"pitch":-159.625,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":124.5625,"pitch":-119.875,"roll":-27.6875},"location":"Right Knee"},{"euler":{"heading":9.1875,"pitch":-114.75,"roll":46.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.54"} +{"sensors":[{"euler":{"heading":325.4375,"pitch":155.5625,"roll":39.625},"location":"Left Knee"},{"euler":{"heading":40.375,"pitch":89.3125,"roll":3.4375},"location":"Left Ankle"},{"euler":{"heading":60.25,"pitch":-1.1875,"roll":-6.375},"location":"Right Ankle"},{"euler":{"heading":105.4375,"pitch":-161.1875,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":131.875,"pitch":-122.1875,"roll":-32.75},"location":"Right Knee"},{"euler":{"heading":11.625,"pitch":-116.3125,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.154"} +{"sensors":[{"euler":{"heading":319.5625,"pitch":161.6875,"roll":42.0625},"location":"Left Knee"},{"euler":{"heading":30.9375,"pitch":89.875,"roll":-8.375},"location":"Left Ankle"},{"euler":{"heading":53.0,"pitch":-0.5,"roll":-9.25},"location":"Right Ankle"},{"euler":{"heading":108.1875,"pitch":-163.75,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":138.875,"pitch":-122.25,"roll":-39.8125},"location":"Right Knee"},{"euler":{"heading":20.4375,"pitch":-123.0,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.255"} +{"sensors":[{"euler":{"heading":344.5625,"pitch":149.625,"roll":40.5},"location":"Left Knee"},{"euler":{"heading":46.4375,"pitch":100.25,"roll":2.0625},"location":"Left Ankle"},{"euler":{"heading":40.75,"pitch":-4.3125,"roll":-9.8125},"location":"Right Ankle"},{"euler":{"heading":112.5625,"pitch":-165.8125,"roll":64.1875},"location":"Right Hip"},{"euler":{"heading":145.25,"pitch":-121.8125,"roll":-49.5},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-125.5,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.356"} +{"sensors":[{"euler":{"heading":355.8125,"pitch":140.125,"roll":39.375},"location":"Left Knee"},{"euler":{"heading":54.25,"pitch":101.5,"roll":10.6875},"location":"Left Ankle"},{"euler":{"heading":21.0,"pitch":-3.375,"roll":-14.125},"location":"Right Ankle"},{"euler":{"heading":123.125,"pitch":-153.375,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":151.5,"pitch":-131.0,"roll":-55.6875},"location":"Right Knee"},{"euler":{"heading":27.25,"pitch":-125.625,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.457"} +{"sensors":[{"euler":{"heading":357.5625,"pitch":136.375,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":60.5,"pitch":101.125,"roll":15.875},"location":"Left Ankle"},{"euler":{"heading":25.625,"pitch":-4.8125,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":129.8125,"pitch":-148.625,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":141.75,"pitch":-125.75,"roll":-51.25},"location":"Right Knee"},{"euler":{"heading":26.5625,"pitch":-132.6875,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.558"} +{"sensors":[{"euler":{"heading":359.5625,"pitch":133.9375,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":66.875,"pitch":100.1875,"roll":21.5},"location":"Left Ankle"},{"euler":{"heading":46.4375,"pitch":-4.0625,"roll":-6.1875},"location":"Right Ankle"},{"euler":{"heading":129.0625,"pitch":-148.25,"roll":42.25},"location":"Right Hip"},{"euler":{"heading":120.1875,"pitch":-116.4375,"roll":-35.4375},"location":"Right Knee"},{"euler":{"heading":27.3125,"pitch":-138.6875,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.658"} +{"sensors":[{"euler":{"heading":6.0625,"pitch":130.625,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":69.75,"pitch":101.0,"roll":24.625},"location":"Left Ankle"},{"euler":{"heading":66.6875,"pitch":-4.375,"roll":1.5625},"location":"Right Ankle"},{"euler":{"heading":123.6875,"pitch":-151.75,"roll":40.875},"location":"Right Hip"},{"euler":{"heading":99.625,"pitch":-110.75,"roll":-17.1875},"location":"Right Knee"},{"euler":{"heading":29.75,"pitch":-143.625,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.759"} +{"sensors":[{"euler":{"heading":11.8125,"pitch":128.0,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":75.375,"pitch":101.5625,"roll":29.75},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":-7.625,"roll":4.3125},"location":"Right Ankle"},{"euler":{"heading":111.3125,"pitch":-155.8125,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":87.3125,"pitch":-106.9375,"roll":-4.8125},"location":"Right Knee"},{"euler":{"heading":31.9375,"pitch":-150.1875,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.859"} +{"sensors":[{"euler":{"heading":19.875,"pitch":126.3125,"roll":20.1875},"location":"Left Knee"},{"euler":{"heading":82.5,"pitch":102.5625,"roll":39.5},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":-6.375,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":100.5,"pitch":-158.8125,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":90.5,"pitch":-111.1875,"roll":-5.8125},"location":"Right Knee"},{"euler":{"heading":36.875,"pitch":-157.625,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:34.960"} +{"sensors":[{"euler":{"heading":35.8125,"pitch":125.0625,"roll":8.75},"location":"Left Knee"},{"euler":{"heading":110.25,"pitch":112.9375,"roll":55.875},"location":"Left Ankle"},{"euler":{"heading":73.125,"pitch":-5.25,"roll":-1.1875},"location":"Right Ankle"},{"euler":{"heading":105.875,"pitch":-157.1875,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":101.1875,"pitch":-114.4375,"roll":-12.75},"location":"Right Knee"},{"euler":{"heading":29.0,"pitch":-143.375,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.61"} +{"sensors":[{"euler":{"heading":50.0625,"pitch":122.875,"roll":3.0},"location":"Left Knee"},{"euler":{"heading":99.8125,"pitch":116.8125,"roll":61.0},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-6.0,"roll":-3.3125},"location":"Right Ankle"},{"euler":{"heading":102.6875,"pitch":-159.5,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":113.5625,"pitch":-115.1875,"roll":-19.9375},"location":"Right Knee"},{"euler":{"heading":18.625,"pitch":-121.3125,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.162"} +{"sensors":[{"euler":{"heading":37.0625,"pitch":131.25,"roll":11.375},"location":"Left Knee"},{"euler":{"heading":87.75,"pitch":98.25,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":67.75,"pitch":-6.125,"roll":-5.875},"location":"Right Ankle"},{"euler":{"heading":105.625,"pitch":-159.4375,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":119.8125,"pitch":-114.75,"roll":-24.875},"location":"Right Knee"},{"euler":{"heading":12.8125,"pitch":-117.4375,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.262"} +{"sensors":[{"euler":{"heading":353.1875,"pitch":144.5,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":58.4375,"pitch":92.0,"roll":21.1875},"location":"Left Ankle"},{"euler":{"heading":62.8125,"pitch":-6.3125,"roll":-5.3125},"location":"Right Ankle"},{"euler":{"heading":108.25,"pitch":-160.4375,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":125.6875,"pitch":-114.8125,"roll":-30.0625},"location":"Right Knee"},{"euler":{"heading":12.8125,"pitch":-115.625,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.362"} +{"sensors":[{"euler":{"heading":330.25,"pitch":156.125,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":34.9375,"pitch":91.75,"roll":-2.875},"location":"Left Ankle"},{"euler":{"heading":56.75,"pitch":-3.75,"roll":-6.9375},"location":"Right Ankle"},{"euler":{"heading":108.4375,"pitch":-162.625,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":133.1875,"pitch":-118.125,"roll":-35.5625},"location":"Right Knee"},{"euler":{"heading":18.625,"pitch":-118.75,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.464"} +{"sensors":[{"euler":{"heading":334.1875,"pitch":155.375,"roll":41.125},"location":"Left Knee"},{"euler":{"heading":37.4375,"pitch":97.0625,"roll":-2.375},"location":"Left Ankle"},{"euler":{"heading":47.875,"pitch":-2.9375,"roll":-10.9375},"location":"Right Ankle"},{"euler":{"heading":110.0625,"pitch":-167.875,"roll":66.625},"location":"Right Hip"},{"euler":{"heading":140.3125,"pitch":-118.25,"roll":-43.4375},"location":"Right Knee"},{"euler":{"heading":25.6875,"pitch":-124.5625,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.564"} +{"sensors":[{"euler":{"heading":350.375,"pitch":144.6875,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":52.25,"pitch":100.875,"roll":8.625},"location":"Left Ankle"},{"euler":{"heading":33.625,"pitch":-6.5625,"roll":-11.875},"location":"Right Ankle"},{"euler":{"heading":117.4375,"pitch":-162.375,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":149.375,"pitch":-121.0625,"roll":-55.6875},"location":"Right Knee"},{"euler":{"heading":25.9375,"pitch":-125.25,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.665"} +{"sensors":[{"euler":{"heading":359.8125,"pitch":136.75,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":61.8125,"pitch":104.375,"roll":13.8125},"location":"Left Ankle"},{"euler":{"heading":22.8125,"pitch":-6.25,"roll":-12.5625},"location":"Right Ankle"},{"euler":{"heading":125.0,"pitch":-152.0,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":149.25,"pitch":-125.8125,"roll":-57.375},"location":"Right Knee"},{"euler":{"heading":30.1875,"pitch":-131.1875,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.766"} +{"sensors":[{"euler":{"heading":2.75,"pitch":133.0,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":70.0625,"pitch":104.625,"roll":20.8125},"location":"Left Ankle"},{"euler":{"heading":33.375,"pitch":-6.375,"roll":-10.4375},"location":"Right Ankle"},{"euler":{"heading":127.8125,"pitch":-149.5,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":131.1875,"pitch":-117.375,"roll":-44.5},"location":"Right Knee"},{"euler":{"heading":31.0625,"pitch":-137.375,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.866"} +{"sensors":[{"euler":{"heading":7.75,"pitch":129.8125,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":72.9375,"pitch":104.4375,"roll":24.375},"location":"Left Ankle"},{"euler":{"heading":58.625,"pitch":-7.75,"roll":-3.25},"location":"Right Ankle"},{"euler":{"heading":123.625,"pitch":-152.25,"roll":42.125},"location":"Right Hip"},{"euler":{"heading":108.25,"pitch":-109.375,"roll":-25.4375},"location":"Right Knee"},{"euler":{"heading":31.9375,"pitch":-142.3125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:35.967"} +{"sensors":[{"euler":{"heading":14.25,"pitch":126.375,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":76.375,"pitch":105.0625,"roll":28.125},"location":"Left Ankle"},{"euler":{"heading":76.75,"pitch":-7.0625,"roll":3.1875},"location":"Right Ankle"},{"euler":{"heading":114.125,"pitch":-155.1875,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":90.0625,"pitch":-106.4375,"roll":-8.625},"location":"Right Knee"},{"euler":{"heading":34.375,"pitch":-149.375,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.69"} +{"sensors":[{"euler":{"heading":20.9375,"pitch":124.1875,"roll":23.625},"location":"Left Knee"},{"euler":{"heading":83.0625,"pitch":106.0625,"roll":35.0},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-6.125,"roll":3.125},"location":"Right Ankle"},{"euler":{"heading":101.125,"pitch":-159.4375,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":85.8125,"pitch":-108.875,"roll":-3.0625},"location":"Right Knee"},{"euler":{"heading":37.75,"pitch":-157.25,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.169"} +{"sensors":[{"euler":{"heading":30.75,"pitch":125.5,"roll":12.75},"location":"Left Knee"},{"euler":{"heading":89.25,"pitch":107.25,"roll":48.5625},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":-6.25,"roll":-0.1875},"location":"Right Ankle"},{"euler":{"heading":102.9375,"pitch":-159.9375,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":96.8125,"pitch":-113.25,"roll":-10.1875},"location":"Right Knee"},{"euler":{"heading":35.4375,"pitch":-151.625,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.270"} +{"sensors":[{"euler":{"heading":48.875,"pitch":122.25,"roll":4.5625},"location":"Left Knee"},{"euler":{"heading":111.125,"pitch":127.0625,"roll":62.25},"location":"Left Ankle"},{"euler":{"heading":69.875,"pitch":-6.5625,"roll":-1.6875},"location":"Right Ankle"},{"euler":{"heading":101.375,"pitch":-161.0625,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":109.1875,"pitch":-114.3125,"roll":-17.1875},"location":"Right Knee"},{"euler":{"heading":24.875,"pitch":-128.625,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.370"} +{"sensors":[{"euler":{"heading":45.3125,"pitch":127.625,"roll":7.625},"location":"Left Knee"},{"euler":{"heading":96.4375,"pitch":105.0,"roll":54.4375},"location":"Left Ankle"},{"euler":{"heading":66.875,"pitch":-5.8125,"roll":-3.5625},"location":"Right Ankle"},{"euler":{"heading":106.25,"pitch":-159.625,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":116.3125,"pitch":-115.25,"roll":-21.9375},"location":"Right Knee"},{"euler":{"heading":17.375,"pitch":-120.75,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.471"} +{"sensors":[{"euler":{"heading":6.4375,"pitch":140.125,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":66.75,"pitch":91.75,"roll":27.9375},"location":"Left Ankle"},{"euler":{"heading":64.0625,"pitch":-5.3125,"roll":-4.875},"location":"Right Ankle"},{"euler":{"heading":108.5,"pitch":-159.875,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":120.6875,"pitch":-115.3125,"roll":-26.375},"location":"Right Knee"},{"euler":{"heading":14.125,"pitch":-117.0,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.572"} +{"sensors":[{"euler":{"heading":333.375,"pitch":152.9375,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":38.625,"pitch":91.0625,"roll":2.0},"location":"Left Ankle"},{"euler":{"heading":59.4375,"pitch":-3.9375,"roll":-5.875},"location":"Right Ankle"},{"euler":{"heading":108.5625,"pitch":-162.25,"roll":64.6875},"location":"Right Hip"},{"euler":{"heading":127.0625,"pitch":-116.75,"roll":-30.8125},"location":"Right Knee"},{"euler":{"heading":16.1875,"pitch":-118.0,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.673"} +{"sensors":[{"euler":{"heading":326.9375,"pitch":158.875,"roll":40.875},"location":"Left Knee"},{"euler":{"heading":33.25,"pitch":93.625,"roll":-5.8125},"location":"Left Ankle"},{"euler":{"heading":52.25,"pitch":-2.8125,"roll":-9.5},"location":"Right Ankle"},{"euler":{"heading":109.125,"pitch":-166.1875,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":134.75,"pitch":-117.6875,"roll":-37.4375},"location":"Right Knee"},{"euler":{"heading":25.75,"pitch":-124.9375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.773"} +{"sensors":[{"euler":{"heading":343.375,"pitch":149.3125,"roll":40.4375},"location":"Left Knee"},{"euler":{"heading":49.1875,"pitch":99.9375,"roll":4.0625},"location":"Left Ankle"},{"euler":{"heading":39.3125,"pitch":-5.5,"roll":-10.1875},"location":"Right Ankle"},{"euler":{"heading":112.0,"pitch":-168.4375,"roll":65.9375},"location":"Right Hip"},{"euler":{"heading":142.125,"pitch":-117.75,"roll":-46.9375},"location":"Right Knee"},{"euler":{"heading":28.25,"pitch":-128.0,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.874"} +{"sensors":[{"euler":{"heading":350.375,"pitch":142.4375,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":53.5,"pitch":98.5,"roll":10.625},"location":"Left Ankle"},{"euler":{"heading":22.5,"pitch":-5.3125,"roll":-12.5625},"location":"Right Ankle"},{"euler":{"heading":123.125,"pitch":-156.625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":151.125,"pitch":-127.75,"roll":-55.0625},"location":"Right Knee"},{"euler":{"heading":29.5625,"pitch":-131.5,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:36.975"} +{"sensors":[{"euler":{"heading":355.875,"pitch":136.875,"roll":37.0},"location":"Left Knee"},{"euler":{"heading":59.0625,"pitch":99.25,"roll":14.4375},"location":"Left Ankle"},{"euler":{"heading":25.3125,"pitch":-3.875,"roll":-9.0},"location":"Right Ankle"},{"euler":{"heading":126.1875,"pitch":-149.875,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":140.5625,"pitch":-125.5625,"roll":-49.875},"location":"Right Knee"},{"euler":{"heading":31.375,"pitch":-138.0,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.75"} +{"sensors":[{"euler":{"heading":0.4375,"pitch":133.875,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":63.5625,"pitch":99.3125,"roll":19.3125},"location":"Left Ankle"},{"euler":{"heading":47.0,"pitch":-6.5625,"roll":-4.0},"location":"Right Ankle"},{"euler":{"heading":124.875,"pitch":-150.125,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":118.25,"pitch":-114.3125,"roll":-33.75},"location":"Right Knee"},{"euler":{"heading":31.1875,"pitch":-142.125,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.177"} +{"sensors":[{"euler":{"heading":7.75,"pitch":130.3125,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":67.5,"pitch":100.5,"roll":23.0625},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":-7.8125,"roll":0.9375},"location":"Right Ankle"},{"euler":{"heading":116.4375,"pitch":-154.1875,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":97.6875,"pitch":-107.375,"roll":-14.625},"location":"Right Knee"},{"euler":{"heading":34.625,"pitch":-147.8125,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.278"} +{"sensors":[{"euler":{"heading":14.9375,"pitch":127.25,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":74.1875,"pitch":102.0625,"roll":28.9375},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":-9.5625,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":105.0625,"pitch":-158.0,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":88.5625,"pitch":-105.5625,"roll":-4.125},"location":"Right Knee"},{"euler":{"heading":38.625,"pitch":-155.125,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.378"} +{"sensors":[{"euler":{"heading":25.125,"pitch":124.0625,"roll":17.75},"location":"Left Knee"},{"euler":{"heading":82.5625,"pitch":105.6875,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":-7.1875,"roll":1.1875},"location":"Right Ankle"},{"euler":{"heading":103.75,"pitch":-159.375,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":94.1875,"pitch":-111.625,"roll":-8.0},"location":"Right Knee"},{"euler":{"heading":42.8125,"pitch":-156.5625,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.480"} +{"sensors":[{"euler":{"heading":41.5,"pitch":124.0,"roll":6.75},"location":"Left Knee"},{"euler":{"heading":99.375,"pitch":116.75,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":71.9375,"pitch":-7.3125,"roll":-1.75},"location":"Right Ankle"},{"euler":{"heading":104.625,"pitch":-159.6875,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":107.9375,"pitch":-113.0,"roll":-15.9375},"location":"Right Knee"},{"euler":{"heading":27.9375,"pitch":-137.3125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.580"} +{"sensors":[{"euler":{"heading":44.875,"pitch":127.375,"roll":6.3125},"location":"Left Knee"},{"euler":{"heading":95.375,"pitch":107.5,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":-7.0625,"roll":-2.625},"location":"Right Ankle"},{"euler":{"heading":103.3125,"pitch":-160.8125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":115.1875,"pitch":-114.5625,"roll":-21.0},"location":"Right Knee"},{"euler":{"heading":18.3125,"pitch":-121.25,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.681"} +{"sensors":[{"euler":{"heading":18.4375,"pitch":136.75,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":74.0625,"pitch":93.3125,"roll":36.125},"location":"Left Ankle"},{"euler":{"heading":67.75,"pitch":-5.125,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":107.25,"pitch":-158.0,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":121.5,"pitch":-116.9375,"roll":-24.875},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-118.75,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.782"} +{"sensors":[{"euler":{"heading":342.25,"pitch":148.5625,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":45.8125,"pitch":91.4375,"roll":7.625},"location":"Left Ankle"},{"euler":{"heading":62.9375,"pitch":-4.1875,"roll":-5.625},"location":"Right Ankle"},{"euler":{"heading":109.9375,"pitch":-158.875,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":126.6875,"pitch":-117.9375,"roll":-29.5625},"location":"Right Knee"},{"euler":{"heading":16.375,"pitch":-117.875,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.882"} +{"sensors":[{"euler":{"heading":327.1875,"pitch":158.125,"roll":41.1875},"location":"Left Knee"},{"euler":{"heading":31.3125,"pitch":90.625,"roll":-7.25},"location":"Left Ankle"},{"euler":{"heading":57.375,"pitch":-2.8125,"roll":-8.5625},"location":"Right Ankle"},{"euler":{"heading":111.0625,"pitch":-161.4375,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":134.0625,"pitch":-118.0625,"roll":-35.9375},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-124.0625,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:37.983"} +{"sensors":[{"euler":{"heading":337.875,"pitch":152.3125,"roll":41.3125},"location":"Left Knee"},{"euler":{"heading":38.4375,"pitch":97.4375,"roll":-1.875},"location":"Left Ankle"},{"euler":{"heading":46.625,"pitch":-2.5625,"roll":-10.875},"location":"Right Ankle"},{"euler":{"heading":112.5,"pitch":-165.8125,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":141.25,"pitch":-118.75,"roll":-43.75},"location":"Right Knee"},{"euler":{"heading":27.875,"pitch":-126.0,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.84"} +{"sensors":[{"euler":{"heading":352.4375,"pitch":143.1875,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":52.0,"pitch":100.375,"roll":9.3125},"location":"Left Ankle"},{"euler":{"heading":29.3125,"pitch":-3.875,"roll":-12.375},"location":"Right Ankle"},{"euler":{"heading":118.75,"pitch":-159.6875,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":148.6875,"pitch":-121.75,"roll":-54.4375},"location":"Right Knee"},{"euler":{"heading":28.1875,"pitch":-128.875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.185"} +{"sensors":[{"euler":{"heading":358.1875,"pitch":136.875,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":58.5,"pitch":100.9375,"roll":12.5},"location":"Left Ankle"},{"euler":{"heading":21.625,"pitch":-4.625,"roll":-12.6875},"location":"Right Ankle"},{"euler":{"heading":126.625,"pitch":-150.25,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":151.9375,"pitch":-126.4375,"roll":-56.1875},"location":"Right Knee"},{"euler":{"heading":31.0,"pitch":-136.875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.285"} +{"sensors":[{"euler":{"heading":2.5625,"pitch":132.75,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":63.8125,"pitch":101.5625,"roll":16.875},"location":"Left Ankle"},{"euler":{"heading":35.875,"pitch":-6.875,"roll":-8.3125},"location":"Right Ankle"},{"euler":{"heading":128.125,"pitch":-148.875,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":133.125,"pitch":-115.9375,"roll":-42.625},"location":"Right Knee"},{"euler":{"heading":33.3125,"pitch":-143.0625,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.386"} +{"sensors":[{"euler":{"heading":8.4375,"pitch":129.375,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":66.9375,"pitch":102.0625,"roll":20.3125},"location":"Left Ankle"},{"euler":{"heading":61.8125,"pitch":-10.6875,"roll":-1.5625},"location":"Right Ankle"},{"euler":{"heading":122.5625,"pitch":-153.0,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":107.125,"pitch":-105.9375,"roll":-22.25},"location":"Right Knee"},{"euler":{"heading":35.375,"pitch":-148.6875,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.486"} +{"sensors":[{"euler":{"heading":15.6875,"pitch":125.8125,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":72.0625,"pitch":103.1875,"roll":25.5},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":-10.0,"roll":2.625},"location":"Right Ankle"},{"euler":{"heading":112.25,"pitch":-155.4375,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":89.375,"pitch":-104.3125,"roll":-5.8125},"location":"Right Knee"},{"euler":{"heading":38.8125,"pitch":-154.6875,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.587"} +{"sensors":[{"euler":{"heading":23.75,"pitch":124.375,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":79.0625,"pitch":104.375,"roll":34.25},"location":"Left Ankle"},{"euler":{"heading":83.1875,"pitch":-7.3125,"roll":2.5},"location":"Right Ankle"},{"euler":{"heading":105.25,"pitch":-157.6875,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":88.375,"pitch":-109.875,"roll":-5.625},"location":"Right Knee"},{"euler":{"heading":41.8125,"pitch":-159.1875,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.688"} +{"sensors":[{"euler":{"heading":37.25,"pitch":124.4375,"roll":8.375},"location":"Left Knee"},{"euler":{"heading":90.875,"pitch":110.125,"roll":50.5625},"location":"Left Ankle"},{"euler":{"heading":73.1875,"pitch":-7.75,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":109.9375,"pitch":-157.375,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":101.125,"pitch":-111.125,"roll":-13.25},"location":"Right Knee"},{"euler":{"heading":34.0625,"pitch":-148.5625,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.788"} +{"sensors":[{"euler":{"heading":51.3125,"pitch":122.6875,"roll":3.0},"location":"Left Knee"},{"euler":{"heading":106.875,"pitch":118.5,"roll":64.0},"location":"Left Ankle"},{"euler":{"heading":70.8125,"pitch":-8.0625,"roll":-2.6875},"location":"Right Ankle"},{"euler":{"heading":106.9375,"pitch":-159.1875,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":110.625,"pitch":-111.6875,"roll":-18.75},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-125.625,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.889"} +{"sensors":[{"euler":{"heading":38.375,"pitch":131.25,"roll":10.625},"location":"Left Knee"},{"euler":{"heading":91.75,"pitch":99.1875,"roll":52.0625},"location":"Left Ankle"},{"euler":{"heading":67.6875,"pitch":-6.25,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":110.5,"pitch":-157.25,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":116.75,"pitch":-114.0625,"roll":-22.9375},"location":"Right Knee"},{"euler":{"heading":14.8125,"pitch":-118.6875,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:38.990"} +{"sensors":[{"euler":{"heading":261.9375,"pitch":144.5,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":61.0,"pitch":90.6875,"roll":24.1875},"location":"Left Ankle"},{"euler":{"heading":63.5625,"pitch":-5.125,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":111.5625,"pitch":-157.9375,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":122.8125,"pitch":-115.375,"roll":-27.75},"location":"Right Knee"},{"euler":{"heading":12.5625,"pitch":-115.8125,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.92"} +{"sensors":[{"euler":{"heading":327.375,"pitch":157.125,"roll":39.875},"location":"Left Knee"},{"euler":{"heading":34.75,"pitch":89.0,"roll":-1.875},"location":"Left Ankle"},{"euler":{"heading":57.875,"pitch":-2.8125,"roll":-9.0},"location":"Right Ankle"},{"euler":{"heading":112.25,"pitch":-159.25,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":129.1875,"pitch":-117.375,"roll":-33.125},"location":"Right Knee"},{"euler":{"heading":17.3125,"pitch":-119.0625,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.193"} +{"sensors":[{"euler":{"heading":332.625,"pitch":157.3125,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":33.875,"pitch":94.125,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":49.8125,"pitch":-1.5625,"roll":-10.9375},"location":"Right Ankle"},{"euler":{"heading":112.5625,"pitch":-163.375,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":136.6875,"pitch":-118.6875,"roll":-40.4375},"location":"Right Knee"},{"euler":{"heading":22.6875,"pitch":-124.5625,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.294"} +{"sensors":[{"euler":{"heading":348.625,"pitch":147.25,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":55.125,"pitch":100.25,"roll":9.8125},"location":"Left Ankle"},{"euler":{"heading":34.4375,"pitch":-7.25,"roll":-10.9375},"location":"Right Ankle"},{"euler":{"heading":117.6875,"pitch":-160.9375,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":145.0,"pitch":-117.0625,"roll":-53.0},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-125.1875,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.396"} +{"sensors":[{"euler":{"heading":355.875,"pitch":140.8125,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":59.1875,"pitch":100.4375,"roll":12.1875},"location":"Left Ankle"},{"euler":{"heading":20.625,"pitch":-3.6875,"roll":-15.375},"location":"Right Ankle"},{"euler":{"heading":125.9375,"pitch":-151.875,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":149.125,"pitch":-125.25,"roll":-54.75},"location":"Right Knee"},{"euler":{"heading":25.75,"pitch":-129.6875,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.496"} +{"sensors":[{"euler":{"heading":2.375,"pitch":134.9375,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":67.125,"pitch":103.25,"roll":16.875},"location":"Left Ankle"},{"euler":{"heading":34.0,"pitch":-6.5,"roll":-9.25},"location":"Right Ankle"},{"euler":{"heading":129.0,"pitch":-148.75,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":134.1875,"pitch":-118.6875,"roll":-44.4375},"location":"Right Knee"},{"euler":{"heading":29.1875,"pitch":-134.625,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.597"} +{"sensors":[{"euler":{"heading":9.8125,"pitch":129.25,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":73.6875,"pitch":105.8125,"roll":21.5},"location":"Left Ankle"},{"euler":{"heading":58.3125,"pitch":-9.3125,"roll":-3.8125},"location":"Right Ankle"},{"euler":{"heading":125.375,"pitch":-151.9375,"roll":42.0},"location":"Right Hip"},{"euler":{"heading":109.0625,"pitch":-108.9375,"roll":-26.0625},"location":"Right Knee"},{"euler":{"heading":31.8125,"pitch":-139.25,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.698"} +{"sensors":[{"euler":{"heading":16.3125,"pitch":125.4375,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":78.8125,"pitch":107.25,"roll":25.75},"location":"Left Ankle"},{"euler":{"heading":82.9375,"pitch":-8.875,"roll":1.375},"location":"Right Ankle"},{"euler":{"heading":120.1875,"pitch":-153.9375,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":90.75,"pitch":-104.6875,"roll":-8.875},"location":"Right Knee"},{"euler":{"heading":33.75,"pitch":-144.0,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.799"} +{"sensors":[{"euler":{"heading":22.3125,"pitch":122.4375,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":84.6875,"pitch":108.75,"roll":31.75},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":-7.6875,"roll":3.9375},"location":"Right Ankle"},{"euler":{"heading":106.125,"pitch":-158.1875,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":83.1875,"pitch":-106.9375,"roll":-1.75},"location":"Right Knee"},{"euler":{"heading":37.1875,"pitch":-150.5625,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:39.899"} +{"sensors":[{"euler":{"heading":32.6875,"pitch":121.5625,"roll":15.3125},"location":"Left Knee"},{"euler":{"heading":90.1875,"pitch":109.125,"roll":43.1875},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-5.8125,"roll":-0.125},"location":"Right Ankle"},{"euler":{"heading":102.8125,"pitch":-160.6875,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":92.625,"pitch":-111.8125,"roll":-7.6875},"location":"Right Knee"},{"euler":{"heading":40.1875,"pitch":-153.625,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.0"} +{"sensors":[{"euler":{"heading":49.1875,"pitch":122.0,"roll":5.125},"location":"Left Knee"},{"euler":{"heading":111.5625,"pitch":125.3125,"roll":59.125},"location":"Left Ankle"},{"euler":{"heading":74.4375,"pitch":-4.4375,"roll":-1.3125},"location":"Right Ankle"},{"euler":{"heading":103.5625,"pitch":-160.375,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":104.375,"pitch":-115.0,"roll":-14.0625},"location":"Right Knee"},{"euler":{"heading":25.5625,"pitch":-133.9375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.102"} +{"sensors":[{"euler":{"heading":52.0625,"pitch":125.3125,"roll":5.75},"location":"Left Knee"},{"euler":{"heading":104.0625,"pitch":110.75,"roll":53.75},"location":"Left Ankle"},{"euler":{"heading":70.5,"pitch":-3.6875,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":105.4375,"pitch":-160.0,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":112.5625,"pitch":-116.625,"roll":-19.3125},"location":"Right Knee"},{"euler":{"heading":19.8125,"pitch":-120.6875,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.202"} +{"sensors":[{"euler":{"heading":19.4375,"pitch":138.0,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":72.4375,"pitch":98.1875,"roll":29.875},"location":"Left Ankle"},{"euler":{"heading":67.9375,"pitch":-1.6875,"roll":-5.625},"location":"Right Ankle"},{"euler":{"heading":106.6875,"pitch":-159.875,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":118.375,"pitch":-118.6875,"roll":-23.3125},"location":"Right Knee"},{"euler":{"heading":15.25,"pitch":-115.9375,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.303"} +{"sensors":[{"euler":{"heading":273.75,"pitch":152.375,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":41.875,"pitch":93.9375,"roll":2.4375},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-0.3125,"roll":-6.4375},"location":"Right Ankle"},{"euler":{"heading":109.25,"pitch":-160.1875,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":125.8125,"pitch":-120.5,"roll":-28.8125},"location":"Right Knee"},{"euler":{"heading":17.9375,"pitch":-119.3125,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.404"} +{"sensors":[{"euler":{"heading":282.1875,"pitch":158.125,"roll":40.125},"location":"Left Knee"},{"euler":{"heading":36.8125,"pitch":95.5,"roll":-4.8125},"location":"Left Ankle"},{"euler":{"heading":53.625,"pitch":1.0,"roll":-9.875},"location":"Right Ankle"},{"euler":{"heading":111.125,"pitch":-162.875,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":134.1875,"pitch":-121.3125,"roll":-36.125},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-124.5,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.504"} +{"sensors":[{"euler":{"heading":349.8125,"pitch":147.9375,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":55.125,"pitch":101.3125,"roll":6.8125},"location":"Left Ankle"},{"euler":{"heading":39.6875,"pitch":-3.75,"roll":-10.8125},"location":"Right Ankle"},{"euler":{"heading":116.0625,"pitch":-163.25,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":142.5625,"pitch":-118.5,"roll":-47.1875},"location":"Right Knee"},{"euler":{"heading":25.375,"pitch":-125.5,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.605"} +{"sensors":[{"euler":{"heading":359.4375,"pitch":139.5625,"roll":36.6875},"location":"Left Knee"},{"euler":{"heading":62.1875,"pitch":102.3125,"roll":14.0},"location":"Left Ankle"},{"euler":{"heading":24.6875,"pitch":-8.75,"roll":-11.9375},"location":"Right Ankle"},{"euler":{"heading":124.3125,"pitch":-154.25,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":150.375,"pitch":-123.5625,"roll":-55.5},"location":"Right Knee"},{"euler":{"heading":28.875,"pitch":-128.625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.705"} +{"sensors":[{"euler":{"heading":2.875,"pitch":134.9375,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":68.5625,"pitch":103.25,"roll":18.5},"location":"Left Ankle"},{"euler":{"heading":28.9375,"pitch":-8.0625,"roll":-9.875},"location":"Right Ankle"},{"euler":{"heading":129.0625,"pitch":-149.625,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":139.8125,"pitch":-119.4375,"roll":-48.125},"location":"Right Knee"},{"euler":{"heading":30.75,"pitch":-136.0,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.806"} +{"sensors":[{"euler":{"heading":6.875,"pitch":131.6875,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":73.6875,"pitch":103.6875,"roll":22.875},"location":"Left Ankle"},{"euler":{"heading":49.5,"pitch":-10.125,"roll":-4.3125},"location":"Right Ankle"},{"euler":{"heading":128.6875,"pitch":-150.5,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":115.75,"pitch":-110.125,"roll":-30.75},"location":"Right Knee"},{"euler":{"heading":33.3125,"pitch":-144.8125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:40.907"} +{"sensors":[{"euler":{"heading":14.75,"pitch":127.0625,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":79.0625,"pitch":105.6875,"roll":26.6875},"location":"Left Ankle"},{"euler":{"heading":70.25,"pitch":-9.875,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":120.8125,"pitch":-154.625,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":93.3125,"pitch":-105.4375,"roll":-11.0625},"location":"Right Knee"},{"euler":{"heading":36.5,"pitch":-150.125,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.7"} +{"sensors":[{"euler":{"heading":21.6875,"pitch":124.125,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":85.25,"pitch":107.25,"roll":32.9375},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":-8.6875,"roll":4.4375},"location":"Right Ankle"},{"euler":{"heading":108.5625,"pitch":-158.125,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":82.5,"pitch":-105.875,"roll":0.3125},"location":"Right Knee"},{"euler":{"heading":39.8125,"pitch":-156.5,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.108"} +{"sensors":[{"euler":{"heading":30.875,"pitch":122.25,"roll":17.3125},"location":"Left Knee"},{"euler":{"heading":93.4375,"pitch":110.375,"roll":43.625},"location":"Left Ankle"},{"euler":{"heading":79.3125,"pitch":-6.75,"roll":1.0},"location":"Right Ankle"},{"euler":{"heading":103.8125,"pitch":-160.125,"roll":52.4375},"location":"Right Hip"},{"euler":{"heading":90.125,"pitch":-112.0,"roll":-4.5625},"location":"Right Knee"},{"euler":{"heading":43.5625,"pitch":-159.5625,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.208"} +{"sensors":[{"euler":{"heading":46.5625,"pitch":122.3125,"roll":5.6875},"location":"Left Knee"},{"euler":{"heading":110.25,"pitch":124.75,"roll":59.25},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":-5.9375,"roll":-1.75},"location":"Right Ankle"},{"euler":{"heading":106.875,"pitch":-160.0625,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":103.9375,"pitch":-114.0,"roll":-12.75},"location":"Right Knee"},{"euler":{"heading":28.0625,"pitch":-139.125,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.309"} +{"sensors":[{"euler":{"heading":52.0,"pitch":125.125,"roll":3.5625},"location":"Left Knee"},{"euler":{"heading":100.4375,"pitch":107.4375,"roll":57.125},"location":"Left Ankle"},{"euler":{"heading":70.1875,"pitch":-5.5,"roll":-3.625},"location":"Right Ankle"},{"euler":{"heading":105.5625,"pitch":-160.25,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":112.5625,"pitch":-115.5625,"roll":-18.125},"location":"Right Knee"},{"euler":{"heading":20.0,"pitch":-122.4375,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.409"} +{"sensors":[{"euler":{"heading":31.6875,"pitch":135.625,"roll":17.625},"location":"Left Knee"},{"euler":{"heading":73.75,"pitch":94.25,"roll":33.875},"location":"Left Ankle"},{"euler":{"heading":67.1875,"pitch":-4.8125,"roll":-5.5625},"location":"Right Ankle"},{"euler":{"heading":107.875,"pitch":-160.1875,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":118.9375,"pitch":-116.5625,"roll":-22.75},"location":"Right Knee"},{"euler":{"heading":14.4375,"pitch":-118.25,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.510"} +{"sensors":[{"euler":{"heading":345.0,"pitch":149.25,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":44.5625,"pitch":92.4375,"roll":5.9375},"location":"Left Ankle"},{"euler":{"heading":62.5625,"pitch":-3.9375,"roll":-7.125},"location":"Right Ankle"},{"euler":{"heading":109.6875,"pitch":-161.5625,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":125.5625,"pitch":-117.25,"roll":-28.125},"location":"Right Knee"},{"euler":{"heading":15.75,"pitch":-118.5,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.611"} +{"sensors":[{"euler":{"heading":283.0,"pitch":158.75,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":34.5625,"pitch":92.1875,"roll":-7.375},"location":"Left Ankle"},{"euler":{"heading":55.4375,"pitch":-2.8125,"roll":-8.6875},"location":"Right Ankle"},{"euler":{"heading":111.0,"pitch":-164.3125,"roll":65.8125},"location":"Right Hip"},{"euler":{"heading":133.125,"pitch":-117.5,"roll":-34.8125},"location":"Right Knee"},{"euler":{"heading":23.75,"pitch":-124.1875,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.711"} +{"sensors":[{"euler":{"heading":343.6875,"pitch":151.0625,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":47.75,"pitch":100.125,"roll":1.375},"location":"Left Ankle"},{"euler":{"heading":44.9375,"pitch":-5.625,"roll":-11.25},"location":"Right Ankle"},{"euler":{"heading":114.5,"pitch":-167.875,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":140.3125,"pitch":-115.3125,"roll":-44.9375},"location":"Right Knee"},{"euler":{"heading":28.0625,"pitch":-126.75,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.811"} +{"sensors":[{"euler":{"heading":354.5625,"pitch":143.0,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":56.9375,"pitch":100.0625,"roll":11.3125},"location":"Left Ankle"},{"euler":{"heading":25.1875,"pitch":-3.25,"roll":-14.5625},"location":"Right Ankle"},{"euler":{"heading":122.75,"pitch":-157.25,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":150.5625,"pitch":-124.875,"roll":-54.0},"location":"Right Knee"},{"euler":{"heading":26.5,"pitch":-127.375,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:41.912"} +{"sensors":[{"euler":{"heading":358.6875,"pitch":137.75,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":63.1875,"pitch":101.75,"roll":14.4375},"location":"Left Ankle"},{"euler":{"heading":23.25,"pitch":-4.375,"roll":-11.125},"location":"Right Ankle"},{"euler":{"heading":127.875,"pitch":-150.375,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":143.625,"pitch":-124.25,"roll":-50.25},"location":"Right Knee"},{"euler":{"heading":28.0625,"pitch":-134.1875,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.12"} +{"sensors":[{"euler":{"heading":5.9375,"pitch":131.875,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":72.5,"pitch":104.8125,"roll":20.3125},"location":"Left Ankle"},{"euler":{"heading":46.3125,"pitch":-3.9375,"roll":-7.25},"location":"Right Ankle"},{"euler":{"heading":127.75,"pitch":-150.4375,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":119.0,"pitch":-115.25,"roll":-32.1875},"location":"Right Knee"},{"euler":{"heading":32.875,"pitch":-140.4375,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.113"} +{"sensors":[{"euler":{"heading":14.4375,"pitch":126.25,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":77.25,"pitch":106.8125,"roll":23.8125},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":-10.125,"roll":-0.125},"location":"Right Ankle"},{"euler":{"heading":120.5625,"pitch":-154.9375,"roll":41.625},"location":"Right Hip"},{"euler":{"heading":97.1875,"pitch":-105.0625,"roll":-14.8125},"location":"Right Knee"},{"euler":{"heading":36.125,"pitch":-145.9375,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.214"} +{"sensors":[{"euler":{"heading":20.5625,"pitch":123.1875,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":81.4375,"pitch":107.625,"roll":28.375},"location":"Left Ankle"},{"euler":{"heading":86.0625,"pitch":-9.3125,"roll":4.6875},"location":"Right Ankle"},{"euler":{"heading":108.9375,"pitch":-157.5625,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":81.125,"pitch":-105.1875,"roll":0.5},"location":"Right Knee"},{"euler":{"heading":38.625,"pitch":-153.0,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.316"} +{"sensors":[{"euler":{"heading":27.0625,"pitch":121.3125,"roll":21.75},"location":"Left Knee"},{"euler":{"heading":88.4375,"pitch":109.125,"roll":36.3125},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":-6.8125,"roll":2.3125},"location":"Right Ankle"},{"euler":{"heading":100.375,"pitch":-161.75,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":85.9375,"pitch":-110.625,"roll":-1.875},"location":"Right Knee"},{"euler":{"heading":42.3125,"pitch":-160.1875,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.417"} +{"sensors":[{"euler":{"heading":38.625,"pitch":123.6875,"roll":9.5625},"location":"Left Knee"},{"euler":{"heading":98.5625,"pitch":115.1875,"roll":53.0},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-5.0,"roll":-1.0625},"location":"Right Ankle"},{"euler":{"heading":107.375,"pitch":-159.3125,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":95.9375,"pitch":-114.5,"roll":-8.75},"location":"Right Knee"},{"euler":{"heading":32.9375,"pitch":-145.6875,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.517"} +{"sensors":[{"euler":{"heading":52.75,"pitch":121.4375,"roll":3.375},"location":"Left Knee"},{"euler":{"heading":109.8125,"pitch":120.75,"roll":63.375},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-2.5,"roll":-3.6875},"location":"Right Ankle"},{"euler":{"heading":104.5,"pitch":-159.4375,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":106.75,"pitch":-118.125,"roll":-14.4375},"location":"Right Knee"},{"euler":{"heading":20.8125,"pitch":-120.875,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.618"} +{"sensors":[{"euler":{"heading":43.1875,"pitch":129.875,"roll":9.5},"location":"Left Knee"},{"euler":{"heading":91.8125,"pitch":99.9375,"roll":48.625},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-2.875,"roll":-6.0},"location":"Right Ankle"},{"euler":{"heading":108.5625,"pitch":-158.125,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":113.375,"pitch":-118.0,"roll":-19.1875},"location":"Right Knee"},{"euler":{"heading":9.875,"pitch":-118.4375,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.718"} +{"sensors":[{"euler":{"heading":261.5625,"pitch":144.75,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":61.3125,"pitch":90.625,"roll":19.0625},"location":"Left Ankle"},{"euler":{"heading":65.6875,"pitch":-3.5625,"roll":-5.4375},"location":"Right Ankle"},{"euler":{"heading":110.6875,"pitch":-159.25,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":118.6875,"pitch":-117.5625,"roll":-23.6875},"location":"Right Knee"},{"euler":{"heading":345.6875,"pitch":-133.9375,"roll":34.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.819"} +{"sensors":[{"euler":{"heading":277.875,"pitch":155.1875,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":38.0,"pitch":91.1875,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-2.25,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":112.375,"pitch":-160.1875,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":126.5625,"pitch":-118.75,"roll":-30.0625},"location":"Right Knee"},{"euler":{"heading":15.875,"pitch":-120.4375,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:42.923"} +{"sensors":[{"euler":{"heading":337.75,"pitch":155.9375,"roll":39.8125},"location":"Left Knee"},{"euler":{"heading":39.875,"pitch":97.125,"roll":-3.5625},"location":"Left Ankle"},{"euler":{"heading":51.125,"pitch":-2.1875,"roll":-10.6875},"location":"Right Ankle"},{"euler":{"heading":113.25,"pitch":-164.25,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":134.25,"pitch":-118.1875,"roll":-37.9375},"location":"Right Knee"},{"euler":{"heading":23.875,"pitch":-129.4375,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.23"} +{"sensors":[{"euler":{"heading":351.8125,"pitch":146.0,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":53.5,"pitch":99.1875,"roll":8.125},"location":"Left Ankle"},{"euler":{"heading":33.875,"pitch":-6.5,"roll":-11.9375},"location":"Right Ankle"},{"euler":{"heading":119.75,"pitch":-160.6875,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":142.25,"pitch":-116.5,"roll":-49.625},"location":"Right Knee"},{"euler":{"heading":23.5,"pitch":-129.1875,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.123"} +{"sensors":[{"euler":{"heading":0.5625,"pitch":138.75,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":59.0,"pitch":100.125,"roll":11.875},"location":"Left Ankle"},{"euler":{"heading":22.75,"pitch":-6.1875,"roll":-13.5625},"location":"Right Ankle"},{"euler":{"heading":126.875,"pitch":-151.375,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":146.375,"pitch":-122.3125,"roll":-52.375},"location":"Right Knee"},{"euler":{"heading":28.0,"pitch":-135.0625,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.224"} +{"sensors":[{"euler":{"heading":2.4375,"pitch":134.875,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":63.4375,"pitch":100.0625,"roll":15.75},"location":"Left Ankle"},{"euler":{"heading":36.8125,"pitch":-8.375,"roll":-9.625},"location":"Right Ankle"},{"euler":{"heading":129.4375,"pitch":-149.125,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":129.6875,"pitch":-115.1875,"roll":-40.6875},"location":"Right Knee"},{"euler":{"heading":30.25,"pitch":-141.125,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.325"} +{"sensors":[{"euler":{"heading":6.6875,"pitch":131.75,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":67.9375,"pitch":100.1875,"roll":19.5},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":-12.875,"roll":-1.3125},"location":"Right Ankle"},{"euler":{"heading":123.1875,"pitch":-152.5625,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":103.875,"pitch":-106.125,"roll":-20.625},"location":"Right Knee"},{"euler":{"heading":33.3125,"pitch":-149.9375,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.426"} +{"sensors":[{"euler":{"heading":14.5625,"pitch":127.4375,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":74.0625,"pitch":102.3125,"roll":24.3125},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":-11.25,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":112.75,"pitch":-156.5,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":85.25,"pitch":-103.9375,"roll":-3.25},"location":"Right Knee"},{"euler":{"heading":36.6875,"pitch":-155.0,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.526"} +{"sensors":[{"euler":{"heading":22.6875,"pitch":124.125,"roll":23.625},"location":"Left Knee"},{"euler":{"heading":80.75,"pitch":104.625,"roll":31.625},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":-8.0,"roll":3.9375},"location":"Right Ankle"},{"euler":{"heading":104.1875,"pitch":-160.0625,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":80.0,"pitch":-106.9375,"roll":1.3125},"location":"Right Knee"},{"euler":{"heading":40.3125,"pitch":-160.125,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.627"} +{"sensors":[{"euler":{"heading":35.0625,"pitch":121.4375,"roll":12.875},"location":"Left Knee"},{"euler":{"heading":90.9375,"pitch":110.0625,"roll":45.0},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":-4.9375,"roll":-0.25},"location":"Right Ankle"},{"euler":{"heading":106.875,"pitch":-159.375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":89.5,"pitch":-112.8125,"roll":-5.3125},"location":"Right Knee"},{"euler":{"heading":41.875,"pitch":-157.1875,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.728"} +{"sensors":[{"euler":{"heading":51.125,"pitch":122.375,"roll":3.8125},"location":"Left Knee"},{"euler":{"heading":105.5625,"pitch":122.9375,"roll":58.125},"location":"Left Ankle"},{"euler":{"heading":73.375,"pitch":-2.5625,"roll":-3.0625},"location":"Right Ankle"},{"euler":{"heading":105.4375,"pitch":-159.6875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":102.9375,"pitch":-116.25,"roll":-12.125},"location":"Right Knee"},{"euler":{"heading":24.5625,"pitch":-134.5,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.828"} +{"sensors":[{"euler":{"heading":43.375,"pitch":129.4375,"roll":10.0},"location":"Left Knee"},{"euler":{"heading":89.5,"pitch":102.5625,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":69.25,"pitch":-2.5625,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":106.5625,"pitch":-159.625,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":111.375,"pitch":-117.375,"roll":-17.4375},"location":"Right Knee"},{"euler":{"heading":15.6875,"pitch":-123.8125,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:43.930"} +{"sensors":[{"euler":{"heading":264.125,"pitch":143.0625,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":61.375,"pitch":94.9375,"roll":18.8125},"location":"Left Ankle"},{"euler":{"heading":66.5,"pitch":-3.6875,"roll":-5.9375},"location":"Right Ankle"},{"euler":{"heading":108.875,"pitch":-161.4375,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":116.5625,"pitch":-116.5625,"roll":-21.8125},"location":"Right Knee"},{"euler":{"heading":13.6875,"pitch":-118.8125,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.30"} +{"sensors":[{"euler":{"heading":279.625,"pitch":155.9375,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":37.8125,"pitch":92.8125,"roll":-4.0625},"location":"Left Ankle"},{"euler":{"heading":61.6875,"pitch":-2.75,"roll":-7.6875},"location":"Right Ankle"},{"euler":{"heading":109.25,"pitch":-163.5625,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":123.4375,"pitch":-117.875,"roll":-27.1875},"location":"Right Knee"},{"euler":{"heading":17.6875,"pitch":-121.3125,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.131"} +{"sensors":[{"euler":{"heading":284.3125,"pitch":158.6875,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":35.8125,"pitch":95.375,"roll":-6.625},"location":"Left Ankle"},{"euler":{"heading":55.0,"pitch":-2.875,"roll":-10.0625},"location":"Right Ankle"},{"euler":{"heading":111.5625,"pitch":-167.0625,"roll":66.0},"location":"Right Hip"},{"euler":{"heading":131.75,"pitch":-117.4375,"roll":-35.125},"location":"Right Knee"},{"euler":{"heading":22.9375,"pitch":-126.0,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.232"} +{"sensors":[{"euler":{"heading":349.1875,"pitch":148.1875,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":53.4375,"pitch":99.5,"roll":8.4375},"location":"Left Ankle"},{"euler":{"heading":41.25,"pitch":-7.4375,"roll":-12.0625},"location":"Right Ankle"},{"euler":{"heading":116.5,"pitch":-166.0625,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":140.75,"pitch":-114.6875,"roll":-47.125},"location":"Right Knee"},{"euler":{"heading":25.4375,"pitch":-127.625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.333"} +{"sensors":[{"euler":{"heading":357.375,"pitch":141.0,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":57.0,"pitch":100.375,"roll":10.5625},"location":"Left Ankle"},{"euler":{"heading":20.6875,"pitch":-5.5,"roll":-17.25},"location":"Right Ankle"},{"euler":{"heading":125.4375,"pitch":-154.25,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":146.8125,"pitch":-121.5,"roll":-52.8125},"location":"Right Knee"},{"euler":{"heading":28.125,"pitch":-131.625,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.433"} +{"sensors":[{"euler":{"heading":0.8125,"pitch":136.3125,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":61.75,"pitch":100.9375,"roll":14.5},"location":"Left Ankle"},{"euler":{"heading":29.125,"pitch":-8.125,"roll":-11.6875},"location":"Right Ankle"},{"euler":{"heading":130.25,"pitch":-149.8125,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":130.625,"pitch":-115.125,"roll":-42.5},"location":"Right Knee"},{"euler":{"heading":30.8125,"pitch":-138.75,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.534"} +{"sensors":[{"euler":{"heading":6.4375,"pitch":132.625,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":70.25,"pitch":102.5625,"roll":21.0},"location":"Left Ankle"},{"euler":{"heading":53.0,"pitch":-12.6875,"roll":-4.3125},"location":"Right Ankle"},{"euler":{"heading":127.1875,"pitch":-151.375,"roll":44.125},"location":"Right Hip"},{"euler":{"heading":106.25,"pitch":-106.6875,"roll":-23.375},"location":"Right Knee"},{"euler":{"heading":31.3125,"pitch":-144.75,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.635"} +{"sensors":[{"euler":{"heading":12.625,"pitch":129.375,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":75.5,"pitch":103.1875,"roll":25.6875},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-12.875,"roll":2.4375},"location":"Right Ankle"},{"euler":{"heading":119.125,"pitch":-155.4375,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":87.8125,"pitch":-103.5625,"roll":-5.6875},"location":"Right Knee"},{"euler":{"heading":33.3125,"pitch":-149.25,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.736"} +{"sensors":[{"euler":{"heading":18.5,"pitch":126.6875,"roll":24.75},"location":"Left Knee"},{"euler":{"heading":80.6875,"pitch":103.6875,"roll":31.4375},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":-12.9375,"roll":4.375},"location":"Right Ankle"},{"euler":{"heading":108.4375,"pitch":-158.625,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":82.3125,"pitch":-104.0625,"roll":1.125},"location":"Right Knee"},{"euler":{"heading":36.5625,"pitch":-154.625,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.837"} +{"sensors":[{"euler":{"heading":28.875,"pitch":123.625,"roll":16.4375},"location":"Left Knee"},{"euler":{"heading":88.4375,"pitch":106.0625,"roll":42.0625},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":-11.4375,"roll":0.875},"location":"Right Ankle"},{"euler":{"heading":104.4375,"pitch":-162.375,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":90.0,"pitch":-108.0,"roll":-3.9375},"location":"Right Knee"},{"euler":{"heading":39.3125,"pitch":-155.625,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:44.938"} +{"sensors":[{"euler":{"heading":45.8125,"pitch":122.1875,"roll":6.8125},"location":"Left Knee"},{"euler":{"heading":96.5625,"pitch":112.5625,"roll":52.5625},"location":"Left Ankle"},{"euler":{"heading":75.0,"pitch":-10.375,"roll":-1.0},"location":"Right Ankle"},{"euler":{"heading":105.6875,"pitch":-162.5625,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":100.625,"pitch":-110.6875,"roll":-11.0},"location":"Right Knee"},{"euler":{"heading":25.0,"pitch":-135.5625,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.39"} +{"sensors":[{"euler":{"heading":40.0625,"pitch":128.3125,"roll":11.0},"location":"Left Knee"},{"euler":{"heading":89.25,"pitch":103.875,"roll":44.6875},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-8.5625,"roll":-3.0625},"location":"Right Ankle"},{"euler":{"heading":105.625,"pitch":-162.0,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":108.5,"pitch":-113.3125,"roll":-16.0625},"location":"Right Knee"},{"euler":{"heading":17.0,"pitch":-124.375,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.140"} +{"sensors":[{"euler":{"heading":2.875,"pitch":141.3125,"roll":26.3125},"location":"Left Knee"},{"euler":{"heading":65.8125,"pitch":93.5,"roll":24.0},"location":"Left Ankle"},{"euler":{"heading":67.5625,"pitch":-6.4375,"roll":-6.375},"location":"Right Ankle"},{"euler":{"heading":106.9375,"pitch":-161.75,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":113.3125,"pitch":-115.4375,"roll":-19.875},"location":"Right Knee"},{"euler":{"heading":11.6875,"pitch":-119.0,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.241"} +{"sensors":[{"euler":{"heading":336.9375,"pitch":152.5625,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":41.5625,"pitch":93.0625,"roll":-14.5},"location":"Left Ankle"},{"euler":{"heading":63.125,"pitch":-6.5625,"roll":-6.625},"location":"Right Ankle"},{"euler":{"heading":109.3125,"pitch":-164.625,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":119.1875,"pitch":-114.9375,"roll":-25.3125},"location":"Right Knee"},{"euler":{"heading":15.1875,"pitch":-120.375,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.342"} +{"sensors":[{"euler":{"heading":331.875,"pitch":157.375,"roll":40.1875},"location":"Left Knee"},{"euler":{"heading":37.875,"pitch":94.3125,"roll":-4.625},"location":"Left Ankle"},{"euler":{"heading":55.875,"pitch":-6.9375,"roll":-10.25},"location":"Right Ankle"},{"euler":{"heading":112.875,"pitch":-167.0625,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":126.9375,"pitch":-113.1875,"roll":-32.8125},"location":"Right Knee"},{"euler":{"heading":22.1875,"pitch":-126.3125,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.442"} +{"sensors":[{"euler":{"heading":349.625,"pitch":147.0,"roll":38.625},"location":"Left Knee"},{"euler":{"heading":50.4375,"pitch":98.375,"roll":6.0},"location":"Left Ankle"},{"euler":{"heading":41.125,"pitch":-10.1875,"roll":-11.125},"location":"Right Ankle"},{"euler":{"heading":116.6875,"pitch":-164.125,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":136.1875,"pitch":-111.75,"roll":-44.3125},"location":"Right Knee"},{"euler":{"heading":21.9375,"pitch":-125.3125,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.544"} +{"sensors":[{"euler":{"heading":0.5625,"pitch":139.375,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":57.4375,"pitch":100.0,"roll":11.75},"location":"Left Ankle"},{"euler":{"heading":24.3125,"pitch":-11.9375,"roll":-13.125},"location":"Right Ankle"},{"euler":{"heading":126.625,"pitch":-154.75,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":143.125,"pitch":-117.25,"roll":-51.5625},"location":"Right Knee"},{"euler":{"heading":26.75,"pitch":-130.125,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.644"} +{"sensors":[{"euler":{"heading":1.875,"pitch":135.875,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":65.125,"pitch":100.75,"roll":17.625},"location":"Left Ankle"},{"euler":{"heading":38.9375,"pitch":-10.9375,"roll":-9.875},"location":"Right Ankle"},{"euler":{"heading":131.8125,"pitch":-151.0,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":112.9375,"pitch":-111.0625,"roll":-39.9375},"location":"Right Knee"},{"euler":{"heading":28.125,"pitch":-137.375,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.745"} +{"sensors":[{"euler":{"heading":8.0,"pitch":131.875,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":70.125,"pitch":102.1875,"roll":21.5},"location":"Left Ankle"},{"euler":{"heading":63.25,"pitch":-11.75,"roll":-2.375},"location":"Right Ankle"},{"euler":{"heading":125.0625,"pitch":-152.75,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":102.125,"pitch":-105.0625,"roll":-19.1875},"location":"Right Knee"},{"euler":{"heading":30.75,"pitch":-143.9375,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.846"} +{"sensors":[{"euler":{"heading":16.5625,"pitch":127.4375,"roll":28.25},"location":"Left Knee"},{"euler":{"heading":75.5625,"pitch":103.875,"roll":26.125},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-12.25,"roll":3.5625},"location":"Right Ankle"},{"euler":{"heading":115.3125,"pitch":-156.1875,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":84.1875,"pitch":-103.0625,"roll":-1.3125},"location":"Right Knee"},{"euler":{"heading":34.375,"pitch":-149.5625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:45.947"} +{"sensors":[{"euler":{"heading":24.8125,"pitch":124.1875,"roll":22.4375},"location":"Left Knee"},{"euler":{"heading":84.0,"pitch":106.4375,"roll":34.375},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":-10.9375,"roll":2.75},"location":"Right Ankle"},{"euler":{"heading":107.375,"pitch":-159.125,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":79.125,"pitch":-105.6875,"roll":2.6875},"location":"Right Knee"},{"euler":{"heading":36.3125,"pitch":-153.8125,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.47"} +{"sensors":[{"euler":{"heading":36.625,"pitch":122.6875,"roll":12.5},"location":"Left Knee"},{"euler":{"heading":91.5,"pitch":109.3125,"roll":47.9375},"location":"Left Ankle"},{"euler":{"heading":76.5,"pitch":-8.0625,"roll":-2.0},"location":"Right Ankle"},{"euler":{"heading":106.875,"pitch":-160.4375,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":88.4375,"pitch":-111.3125,"roll":-3.5625},"location":"Right Knee"},{"euler":{"heading":37.8125,"pitch":-152.0,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.147"} +{"sensors":[{"euler":{"heading":52.375,"pitch":120.625,"roll":3.5625},"location":"Left Knee"},{"euler":{"heading":103.5,"pitch":119.8125,"roll":58.5},"location":"Left Ankle"},{"euler":{"heading":71.9375,"pitch":-8.875,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":106.625,"pitch":-161.3125,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":100.5,"pitch":-112.0,"roll":-10.625},"location":"Right Knee"},{"euler":{"heading":26.9375,"pitch":-130.4375,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.248"} +{"sensors":[{"euler":{"heading":32.5625,"pitch":127.875,"roll":8.6875},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":103.6875,"roll":49.5},"location":"Left Ankle"},{"euler":{"heading":69.8125,"pitch":-8.5,"roll":-4.3125},"location":"Right Ankle"},{"euler":{"heading":109.1875,"pitch":-161.0,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":107.0,"pitch":-111.875,"roll":-15.75},"location":"Right Knee"},{"euler":{"heading":18.3125,"pitch":-122.9375,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.348"} +{"sensors":[{"euler":{"heading":8.25,"pitch":140.1875,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":65.5625,"pitch":95.375,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":65.8125,"pitch":-6.4375,"roll":-5.1875},"location":"Right Ankle"},{"euler":{"heading":110.25,"pitch":-161.5625,"roll":63.5625},"location":"Right Hip"},{"euler":{"heading":112.0625,"pitch":-113.4375,"roll":-19.75},"location":"Right Knee"},{"euler":{"heading":14.875,"pitch":-118.75,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.449"} +{"sensors":[{"euler":{"heading":335.875,"pitch":153.125,"roll":39.0},"location":"Left Knee"},{"euler":{"heading":41.5,"pitch":92.3125,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":60.8125,"pitch":-3.9375,"roll":-6.875},"location":"Right Ankle"},{"euler":{"heading":110.375,"pitch":-163.375,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":119.0,"pitch":-115.8125,"roll":-24.9375},"location":"Right Knee"},{"euler":{"heading":17.5625,"pitch":-121.0,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.550"} +{"sensors":[{"euler":{"heading":336.75,"pitch":155.25,"roll":40.25},"location":"Left Knee"},{"euler":{"heading":39.75,"pitch":95.3125,"roll":-3.0},"location":"Left Ankle"},{"euler":{"heading":52.75,"pitch":-2.875,"roll":-11.5625},"location":"Right Ankle"},{"euler":{"heading":111.8125,"pitch":-166.375,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":127.375,"pitch":-115.6875,"roll":-33.375},"location":"Right Knee"},{"euler":{"heading":23.75,"pitch":-127.5,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.651"} +{"sensors":[{"euler":{"heading":348.875,"pitch":146.4375,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":50.6875,"pitch":97.25,"roll":5.5},"location":"Left Ankle"},{"euler":{"heading":37.75,"pitch":-7.5,"roll":-12.0},"location":"Right Ankle"},{"euler":{"heading":117.1875,"pitch":-161.1875,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":136.5625,"pitch":-112.875,"roll":-45.0625},"location":"Right Knee"},{"euler":{"heading":21.8125,"pitch":-127.9375,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.752"} +{"sensors":[{"euler":{"heading":354.8125,"pitch":141.0,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":56.375,"pitch":97.375,"roll":11.0},"location":"Left Ankle"},{"euler":{"heading":25.0,"pitch":-6.25,"roll":-12.75},"location":"Right Ankle"},{"euler":{"heading":124.9375,"pitch":-152.6875,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":142.375,"pitch":-120.8125,"roll":-49.375},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-134.8125,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.853"} +{"sensors":[{"euler":{"heading":358.0,"pitch":137.625,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":64.8125,"pitch":98.125,"roll":18.0},"location":"Left Ankle"},{"euler":{"heading":36.6875,"pitch":-6.375,"roll":-9.625},"location":"Right Ankle"},{"euler":{"heading":126.6875,"pitch":-150.1875,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":125.375,"pitch":-114.8125,"roll":-37.8125},"location":"Right Knee"},{"euler":{"heading":26.875,"pitch":-141.75,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:46.954"} +{"sensors":[{"euler":{"heading":3.8125,"pitch":134.125,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":67.5,"pitch":97.6875,"roll":21.25},"location":"Left Ankle"},{"euler":{"heading":61.3125,"pitch":-9.9375,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":122.9375,"pitch":-152.25,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":99.125,"pitch":-106.8125,"roll":-18.0},"location":"Right Knee"},{"euler":{"heading":28.9375,"pitch":-148.0625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.54"} +{"sensors":[{"euler":{"heading":12.9375,"pitch":129.9375,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":73.5625,"pitch":99.8125,"roll":26.8125},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-10.5,"roll":2.0625},"location":"Right Ankle"},{"euler":{"heading":114.5,"pitch":-155.9375,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":83.9375,"pitch":-103.875,"roll":-0.9375},"location":"Right Knee"},{"euler":{"heading":31.5625,"pitch":-151.875,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.155"} +{"sensors":[{"euler":{"heading":20.9375,"pitch":127.1875,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":82.125,"pitch":102.6875,"roll":34.875},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":-10.1875,"roll":2.375},"location":"Right Ankle"},{"euler":{"heading":103.5625,"pitch":-160.0625,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":78.6875,"pitch":-106.25,"roll":3.1875},"location":"Right Knee"},{"euler":{"heading":35.0,"pitch":-157.375,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.256"} +{"sensors":[{"euler":{"heading":33.125,"pitch":124.5,"roll":13.125},"location":"Left Knee"},{"euler":{"heading":87.5,"pitch":105.4375,"roll":46.625},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-7.9375,"roll":-2.1875},"location":"Right Ankle"},{"euler":{"heading":106.5,"pitch":-159.1875,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":87.0625,"pitch":-111.875,"roll":-3.375},"location":"Right Knee"},{"euler":{"heading":37.0,"pitch":-155.0,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.357"} +{"sensors":[{"euler":{"heading":50.375,"pitch":123.875,"roll":3.9375},"location":"Left Knee"},{"euler":{"heading":96.4375,"pitch":113.9375,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":74.1875,"pitch":-9.1875,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":104.6875,"pitch":-160.75,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":100.625,"pitch":-112.1875,"roll":-10.625},"location":"Right Knee"},{"euler":{"heading":20.25,"pitch":-130.125,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.458"} +{"sensors":[{"euler":{"heading":45.75,"pitch":130.3125,"roll":7.9375},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":99.9375,"roll":46.4375},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-9.875,"roll":-4.6875},"location":"Right Ankle"},{"euler":{"heading":109.375,"pitch":-159.75,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":108.1875,"pitch":-111.5,"roll":-16.125},"location":"Right Knee"},{"euler":{"heading":13.375,"pitch":-122.4375,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.559"} +{"sensors":[{"euler":{"heading":263.375,"pitch":143.3125,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":60.5,"pitch":93.5625,"roll":20.625},"location":"Left Ankle"},{"euler":{"heading":67.8125,"pitch":-9.375,"roll":-6.75},"location":"Right Ankle"},{"euler":{"heading":112.6875,"pitch":-159.3125,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":113.625,"pitch":-111.4375,"roll":-21.0},"location":"Right Knee"},{"euler":{"heading":12.9375,"pitch":-119.8125,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.660"} +{"sensors":[{"euler":{"heading":335.125,"pitch":154.4375,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":37.6875,"pitch":92.75,"roll":-2.75},"location":"Left Ankle"},{"euler":{"heading":61.375,"pitch":-7.1875,"roll":-8.875},"location":"Right Ankle"},{"euler":{"heading":113.4375,"pitch":-160.8125,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":120.75,"pitch":-113.3125,"roll":-26.5625},"location":"Right Knee"},{"euler":{"heading":15.75,"pitch":-120.125,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.761"} +{"sensors":[{"euler":{"heading":334.9375,"pitch":155.625,"roll":40.0625},"location":"Left Knee"},{"euler":{"heading":36.0,"pitch":93.375,"roll":-6.5625},"location":"Left Ankle"},{"euler":{"heading":53.625,"pitch":-5.1875,"roll":-12.6875},"location":"Right Ankle"},{"euler":{"heading":114.6875,"pitch":-164.125,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":127.9375,"pitch":-113.9375,"roll":-33.375},"location":"Right Knee"},{"euler":{"heading":21.875,"pitch":-125.3125,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.862"} +{"sensors":[{"euler":{"heading":354.25,"pitch":144.625,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":50.75,"pitch":99.9375,"roll":4.375},"location":"Left Ankle"},{"euler":{"heading":40.75,"pitch":-8.75,"roll":-13.5625},"location":"Right Ankle"},{"euler":{"heading":119.25,"pitch":-163.625,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":136.8125,"pitch":-110.3125,"roll":-44.875},"location":"Right Knee"},{"euler":{"heading":26.375,"pitch":-128.4375,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:47.962"} +{"sensors":[{"euler":{"heading":4.125,"pitch":136.5,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":60.75,"pitch":102.875,"roll":11.125},"location":"Left Ankle"},{"euler":{"heading":23.375,"pitch":-5.8125,"roll":-17.25},"location":"Right Ankle"},{"euler":{"heading":126.25,"pitch":-153.5625,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":142.5625,"pitch":-117.4375,"roll":-50.625},"location":"Right Knee"},{"euler":{"heading":29.5,"pitch":-132.0,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.63"} +{"sensors":[{"euler":{"heading":8.3125,"pitch":131.75,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":67.6875,"pitch":104.0,"roll":16.1875},"location":"Left Ankle"},{"euler":{"heading":31.25,"pitch":-8.875,"roll":-12.875},"location":"Right Ankle"},{"euler":{"heading":129.9375,"pitch":-150.0625,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":130.5625,"pitch":-112.25,"roll":-42.3125},"location":"Right Knee"},{"euler":{"heading":31.9375,"pitch":-140.4375,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.163"} +{"sensors":[{"euler":{"heading":13.75,"pitch":127.75,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":105.25,"roll":19.375},"location":"Left Ankle"},{"euler":{"heading":55.75,"pitch":-13.75,"roll":-5.875},"location":"Right Ankle"},{"euler":{"heading":126.0,"pitch":-152.3125,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":104.875,"pitch":-103.625,"roll":-22.0625},"location":"Right Knee"},{"euler":{"heading":34.125,"pitch":-146.8125,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.264"} +{"sensors":[{"euler":{"heading":20.3125,"pitch":124.8125,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":74.375,"pitch":105.5625,"roll":23.125},"location":"Left Ankle"},{"euler":{"heading":78.9375,"pitch":-12.8125,"roll":1.9375},"location":"Right Ankle"},{"euler":{"heading":116.125,"pitch":-156.5,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":82.625,"pitch":-101.75,"roll":-1.625},"location":"Right Knee"},{"euler":{"heading":35.5625,"pitch":-151.375,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.365"} +{"sensors":[{"euler":{"heading":26.0,"pitch":123.0625,"roll":23.0},"location":"Left Knee"},{"euler":{"heading":79.125,"pitch":106.125,"roll":29.0},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":-11.5,"roll":3.375},"location":"Right Ankle"},{"euler":{"heading":103.6875,"pitch":-161.5,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":76.4375,"pitch":-103.9375,"roll":4.1875},"location":"Right Knee"},{"euler":{"heading":38.125,"pitch":-157.6875,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.465"} +{"sensors":[{"euler":{"heading":36.5625,"pitch":122.25,"roll":12.625},"location":"Left Knee"},{"euler":{"heading":87.0625,"pitch":106.375,"roll":41.6875},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":-7.875,"roll":-1.1875},"location":"Right Ankle"},{"euler":{"heading":104.875,"pitch":-161.5625,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":85.875,"pitch":-109.4375,"roll":-2.6875},"location":"Right Knee"},{"euler":{"heading":39.0,"pitch":-153.0625,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.566"} +{"sensors":[{"euler":{"heading":50.9375,"pitch":122.4375,"roll":3.9375},"location":"Left Knee"},{"euler":{"heading":98.875,"pitch":114.75,"roll":54.9375},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":-7.1875,"roll":-1.3125},"location":"Right Ankle"},{"euler":{"heading":103.75,"pitch":-162.0625,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":95.5625,"pitch":-112.25,"roll":-8.625},"location":"Right Knee"},{"euler":{"heading":19.6875,"pitch":-129.9375,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.667"} +{"sensors":[{"euler":{"heading":46.875,"pitch":128.6875,"roll":7.5},"location":"Left Knee"},{"euler":{"heading":90.6875,"pitch":100.5625,"roll":46.875},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":-6.0625,"roll":-3.0},"location":"Right Ankle"},{"euler":{"heading":106.875,"pitch":-160.4375,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":104.5625,"pitch":-114.3125,"roll":-14.25},"location":"Right Knee"},{"euler":{"heading":13.75,"pitch":-123.375,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.768"} +{"sensors":[{"euler":{"heading":259.8125,"pitch":140.75,"roll":24.0},"location":"Left Knee"},{"euler":{"heading":62.5,"pitch":92.75,"roll":22.4375},"location":"Left Ankle"},{"euler":{"heading":66.8125,"pitch":-5.75,"roll":-5.125},"location":"Right Ankle"},{"euler":{"heading":109.4375,"pitch":-160.5,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":110.5,"pitch":-114.4375,"roll":-18.875},"location":"Right Knee"},{"euler":{"heading":12.0625,"pitch":-118.8125,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.869"} +{"sensors":[{"euler":{"heading":334.875,"pitch":154.25,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":37.6875,"pitch":91.625,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":60.9375,"pitch":-3.5,"roll":-7.4375},"location":"Right Ankle"},{"euler":{"heading":109.875,"pitch":-163.125,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":117.6875,"pitch":-115.8125,"roll":-24.375},"location":"Right Knee"},{"euler":{"heading":16.25,"pitch":-121.9375,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:48.970"} +{"sensors":[{"euler":{"heading":343.0625,"pitch":152.0,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":39.875,"pitch":96.4375,"roll":-2.1875},"location":"Left Ankle"},{"euler":{"heading":49.9375,"pitch":-3.625,"roll":-10.3125},"location":"Right Ankle"},{"euler":{"heading":112.9375,"pitch":-166.4375,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":127.3125,"pitch":-115.125,"roll":-33.75},"location":"Right Knee"},{"euler":{"heading":23.0,"pitch":-126.6875,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.73"} +{"sensors":[{"euler":{"heading":354.375,"pitch":143.5625,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":52.1875,"pitch":99.625,"roll":6.25},"location":"Left Ankle"},{"euler":{"heading":35.125,"pitch":-5.8125,"roll":-11.0625},"location":"Right Ankle"},{"euler":{"heading":119.25,"pitch":-160.375,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":136.5625,"pitch":-114.5,"roll":-45.375},"location":"Right Knee"},{"euler":{"heading":22.6875,"pitch":-129.0,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.174"} +{"sensors":[{"euler":{"heading":0.75,"pitch":138.125,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":57.375,"pitch":100.0625,"roll":11.4375},"location":"Left Ankle"},{"euler":{"heading":26.9375,"pitch":-7.5625,"roll":-10.8125},"location":"Right Ankle"},{"euler":{"heading":125.5625,"pitch":-151.25,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":139.1875,"pitch":-118.5625,"roll":-48.3125},"location":"Right Knee"},{"euler":{"heading":25.875,"pitch":-137.5625,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.274"} +{"sensors":[{"euler":{"heading":6.375,"pitch":133.4375,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":70.0625,"pitch":101.4375,"roll":20.375},"location":"Left Ankle"},{"euler":{"heading":40.8125,"pitch":-8.9375,"roll":-8.5},"location":"Right Ankle"},{"euler":{"heading":128.375,"pitch":-149.5,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":121.3125,"pitch":-111.5,"roll":-36.3125},"location":"Right Knee"},{"euler":{"heading":30.5,"pitch":-144.375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.375"} +{"sensors":[{"euler":{"heading":12.5625,"pitch":129.3125,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":72.125,"pitch":102.5,"roll":23.4375},"location":"Left Ankle"},{"euler":{"heading":65.5,"pitch":-11.8125,"roll":-1.8125},"location":"Right Ankle"},{"euler":{"heading":122.6875,"pitch":-154.0,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":97.1875,"pitch":-104.125,"roll":-16.0},"location":"Right Knee"},{"euler":{"heading":33.1875,"pitch":-150.875,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.476"} +{"sensors":[{"euler":{"heading":20.6875,"pitch":125.4375,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":104.1875,"roll":28.625},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":-11.25,"roll":4.375},"location":"Right Ankle"},{"euler":{"heading":112.4375,"pitch":-156.6875,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":80.625,"pitch":-102.75,"roll":2.0625},"location":"Right Knee"},{"euler":{"heading":36.1875,"pitch":-156.0625,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.577"} +{"sensors":[{"euler":{"heading":27.5,"pitch":124.3125,"roll":20.0},"location":"Left Knee"},{"euler":{"heading":85.4375,"pitch":105.5625,"roll":37.3125},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":-6.125,"roll":2.75},"location":"Right Ankle"},{"euler":{"heading":102.6875,"pitch":-160.6875,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":77.3125,"pitch":-109.1875,"roll":3.8125},"location":"Right Knee"},{"euler":{"heading":38.6875,"pitch":-161.3125,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.678"} +{"sensors":[{"euler":{"heading":43.5,"pitch":125.8125,"roll":6.3125},"location":"Left Knee"},{"euler":{"heading":92.5625,"pitch":109.5,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":-4.625,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":105.0,"pitch":-160.5625,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":88.6875,"pitch":-112.4375,"roll":-3.25},"location":"Right Knee"},{"euler":{"heading":28.3125,"pitch":-145.3125,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.778"} +{"sensors":[{"euler":{"heading":55.125,"pitch":123.6875,"roll":1.8125},"location":"Left Knee"},{"euler":{"heading":98.4375,"pitch":113.8125,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":73.1875,"pitch":-4.5,"roll":-3.3125},"location":"Right Ankle"},{"euler":{"heading":102.4375,"pitch":-162.1875,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":99.875,"pitch":-114.875,"roll":-9.75},"location":"Right Knee"},{"euler":{"heading":17.25,"pitch":-121.4375,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.880"} +{"sensors":[{"euler":{"heading":40.1875,"pitch":132.25,"roll":11.25},"location":"Left Knee"},{"euler":{"heading":84.125,"pitch":97.125,"roll":42.5},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-4.4375,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":107.625,"pitch":-161.0,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":106.875,"pitch":-114.3125,"roll":-14.875},"location":"Right Knee"},{"euler":{"heading":12.25,"pitch":-118.5625,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:49.981"} +{"sensors":[{"euler":{"heading":266.75,"pitch":145.375,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":54.75,"pitch":91.625,"roll":15.25},"location":"Left Ankle"},{"euler":{"heading":65.9375,"pitch":-2.8125,"roll":-5.8125},"location":"Right Ankle"},{"euler":{"heading":109.5625,"pitch":-161.8125,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":113.75,"pitch":-115.3125,"roll":-20.25},"location":"Right Knee"},{"euler":{"heading":13.0,"pitch":-117.1875,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.82"} +{"sensors":[{"euler":{"heading":278.9375,"pitch":156.1875,"roll":38.3125},"location":"Left Knee"},{"euler":{"heading":33.5,"pitch":88.8125,"roll":-6.5},"location":"Left Ankle"},{"euler":{"heading":60.5625,"pitch":-1.8125,"roll":-7.375},"location":"Right Ankle"},{"euler":{"heading":110.6875,"pitch":-163.875,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":121.0,"pitch":-115.625,"roll":-25.875},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-121.8125,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.182"} +{"sensors":[{"euler":{"heading":346.0,"pitch":150.875,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":37.4375,"pitch":96.375,"roll":-4.3125},"location":"Left Ankle"},{"euler":{"heading":51.125,"pitch":-1.9375,"roll":-12.0625},"location":"Right Ankle"},{"euler":{"heading":113.6875,"pitch":-166.375,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":130.25,"pitch":-114.8125,"roll":-34.75},"location":"Right Knee"},{"euler":{"heading":24.3125,"pitch":-126.25,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.283"} +{"sensors":[{"euler":{"heading":357.5,"pitch":142.8125,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":53.25,"pitch":100.3125,"roll":7.9375},"location":"Left Ankle"},{"euler":{"heading":32.8125,"pitch":-6.0,"roll":-13.5},"location":"Right Ankle"},{"euler":{"heading":120.25,"pitch":-160.0625,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":139.6875,"pitch":-113.6875,"roll":-47.5},"location":"Right Knee"},{"euler":{"heading":22.9375,"pitch":-128.625,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.385"} +{"sensors":[{"euler":{"heading":6.8125,"pitch":135.5,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":60.625,"pitch":102.625,"roll":11.9375},"location":"Left Ankle"},{"euler":{"heading":27.625,"pitch":-7.4375,"roll":-12.6875},"location":"Right Ankle"},{"euler":{"heading":127.1875,"pitch":-151.1875,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":135.4375,"pitch":-113.875,"roll":-46.1875},"location":"Right Knee"},{"euler":{"heading":28.5,"pitch":-134.6875,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.485"} +{"sensors":[{"euler":{"heading":11.625,"pitch":130.375,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":67.3125,"pitch":104.3125,"roll":16.8125},"location":"Left Ankle"},{"euler":{"heading":45.9375,"pitch":-8.75,"roll":-8.75},"location":"Right Ankle"},{"euler":{"heading":131.25,"pitch":-148.375,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":114.375,"pitch":-108.4375,"roll":-29.9375},"location":"Right Knee"},{"euler":{"heading":32.375,"pitch":-142.4375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.586"} +{"sensors":[{"euler":{"heading":16.6875,"pitch":126.6875,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":70.5625,"pitch":104.25,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":71.8125,"pitch":-11.5,"roll":-0.4375},"location":"Right Ankle"},{"euler":{"heading":127.625,"pitch":-152.375,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":89.0,"pitch":-101.6875,"roll":-8.1875},"location":"Right Knee"},{"euler":{"heading":34.625,"pitch":-148.75,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.687"} +{"sensors":[{"euler":{"heading":21.8125,"pitch":124.5,"roll":26.875},"location":"Left Knee"},{"euler":{"heading":72.5625,"pitch":103.8125,"roll":24.125},"location":"Left Ankle"},{"euler":{"heading":87.9375,"pitch":-11.25,"roll":5.0625},"location":"Right Ankle"},{"euler":{"heading":115.5,"pitch":-156.625,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":75.625,"pitch":-100.8125,"roll":5.5},"location":"Right Knee"},{"euler":{"heading":35.375,"pitch":-153.5625,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.787"} +{"sensors":[{"euler":{"heading":28.4375,"pitch":123.6875,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":78.6875,"pitch":104.625,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":87.375,"pitch":-9.1875,"roll":3.3125},"location":"Right Ankle"},{"euler":{"heading":105.375,"pitch":-160.875,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":76.875,"pitch":-106.0,"roll":4.0625},"location":"Right Knee"},{"euler":{"heading":37.5625,"pitch":-158.875,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.888"} +{"sensors":[{"euler":{"heading":43.5,"pitch":124.25,"roll":7.4375},"location":"Left Knee"},{"euler":{"heading":88.25,"pitch":109.3125,"roll":48.6875},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":-7.125,"roll":-2.125},"location":"Right Ankle"},{"euler":{"heading":107.3125,"pitch":-160.6875,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":85.6875,"pitch":-110.375,"roll":-2.1875},"location":"Right Knee"},{"euler":{"heading":31.5625,"pitch":-148.5,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:50.989"} +{"sensors":[{"euler":{"heading":55.25,"pitch":122.875,"roll":2.125},"location":"Left Knee"},{"euler":{"heading":98.25,"pitch":113.4375,"roll":56.0625},"location":"Left Ankle"},{"euler":{"heading":76.0625,"pitch":-6.75,"roll":-2.125},"location":"Right Ankle"},{"euler":{"heading":103.1875,"pitch":-163.0,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":95.875,"pitch":-113.1875,"roll":-8.125},"location":"Right Knee"},{"euler":{"heading":18.125,"pitch":-124.375,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.90"} +{"sensors":[{"euler":{"heading":40.125,"pitch":131.5625,"roll":11.375},"location":"Left Knee"},{"euler":{"heading":83.5,"pitch":96.375,"roll":41.1875},"location":"Left Ankle"},{"euler":{"heading":72.0,"pitch":-4.375,"roll":-5.125},"location":"Right Ankle"},{"euler":{"heading":107.1875,"pitch":-161.1875,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":102.9375,"pitch":-115.25,"roll":-12.8125},"location":"Right Knee"},{"euler":{"heading":11.0,"pitch":-120.6875,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.190"} +{"sensors":[{"euler":{"heading":266.3125,"pitch":145.375,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":52.375,"pitch":92.1875,"roll":12.75},"location":"Left Ankle"},{"euler":{"heading":67.4375,"pitch":-3.3125,"roll":-5.5625},"location":"Right Ankle"},{"euler":{"heading":109.5625,"pitch":-161.3125,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":108.625,"pitch":-115.5625,"roll":-17.5625},"location":"Right Knee"},{"euler":{"heading":10.75,"pitch":-118.0,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.291"} +{"sensors":[{"euler":{"heading":334.25,"pitch":154.9375,"roll":39.4375},"location":"Left Knee"},{"euler":{"heading":33.9375,"pitch":90.375,"roll":-6.75},"location":"Left Ankle"},{"euler":{"heading":60.375,"pitch":-1.8125,"roll":-8.1875},"location":"Right Ankle"},{"euler":{"heading":111.5,"pitch":-162.875,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":116.25,"pitch":-115.8125,"roll":-23.75},"location":"Right Knee"},{"euler":{"heading":16.6875,"pitch":-122.5,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.392"} +{"sensors":[{"euler":{"heading":348.4375,"pitch":149.0,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":40.0,"pitch":96.5,"roll":-1.75},"location":"Left Ankle"},{"euler":{"heading":50.625,"pitch":-3.25,"roll":-11.4375},"location":"Right Ankle"},{"euler":{"heading":116.625,"pitch":-163.875,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":126.25,"pitch":-113.1875,"roll":-34.125},"location":"Right Knee"},{"euler":{"heading":23.4375,"pitch":-126.4375,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.493"} +{"sensors":[{"euler":{"heading":358.8125,"pitch":141.0,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":54.125,"pitch":99.6875,"roll":8.6875},"location":"Left Ankle"},{"euler":{"heading":31.375,"pitch":-3.5,"roll":-12.5},"location":"Right Ankle"},{"euler":{"heading":123.4375,"pitch":-157.3125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":131.6875,"pitch":-114.1875,"roll":-43.0},"location":"Right Knee"},{"euler":{"heading":23.8125,"pitch":-129.375,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.593"} +{"sensors":[{"euler":{"heading":3.75,"pitch":136.5625,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":60.3125,"pitch":99.9375,"roll":14.0625},"location":"Left Ankle"},{"euler":{"heading":28.3125,"pitch":-7.625,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":128.6875,"pitch":-151.3125,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":126.9375,"pitch":-112.625,"roll":-41.5},"location":"Right Knee"},{"euler":{"heading":27.125,"pitch":-135.25,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.693"} +{"sensors":[{"euler":{"heading":4.875,"pitch":134.9375,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":65.6875,"pitch":98.6875,"roll":19.625},"location":"Left Ankle"},{"euler":{"heading":47.125,"pitch":-10.1875,"roll":-5.9375},"location":"Right Ankle"},{"euler":{"heading":129.6875,"pitch":-151.0,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":107.625,"pitch":-105.9375,"roll":-26.1875},"location":"Right Knee"},{"euler":{"heading":29.5,"pitch":-143.5,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.794"} +{"sensors":[{"euler":{"heading":10.375,"pitch":132.875,"roll":27.75},"location":"Left Knee"},{"euler":{"heading":70.0625,"pitch":97.75,"roll":24.25},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":-11.8125,"roll":2.375},"location":"Right Ankle"},{"euler":{"heading":123.9375,"pitch":-154.0,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":87.4375,"pitch":-101.625,"roll":-7.0625},"location":"Right Knee"},{"euler":{"heading":32.5,"pitch":-151.0,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.894"} +{"sensors":[{"euler":{"heading":18.625,"pitch":129.625,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":75.6875,"pitch":98.5,"roll":29.9375},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":-12.125,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":112.0,"pitch":-156.5625,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":75.1875,"pitch":-101.75,"roll":7.875},"location":"Right Knee"},{"euler":{"heading":36.125,"pitch":-157.75,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:51.995"} +{"sensors":[{"euler":{"heading":28.9375,"pitch":126.9375,"roll":16.5},"location":"Left Knee"},{"euler":{"heading":82.875,"pitch":100.8125,"roll":38.75},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":-10.4375,"roll":1.125},"location":"Right Ankle"},{"euler":{"heading":106.0625,"pitch":-160.25,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":78.0625,"pitch":-106.5,"roll":5.5625},"location":"Right Knee"},{"euler":{"heading":39.25,"pitch":-162.0625,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.95"} +{"sensors":[{"euler":{"heading":46.0625,"pitch":125.1875,"roll":5.4375},"location":"Left Knee"},{"euler":{"heading":98.5,"pitch":112.5625,"roll":55.5},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":-9.375,"roll":-1.875},"location":"Right Ankle"},{"euler":{"heading":111.25,"pitch":-158.625,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":88.25,"pitch":-107.75,"roll":-2.0625},"location":"Right Knee"},{"euler":{"heading":29.375,"pitch":-146.0625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.195"} +{"sensors":[{"euler":{"heading":58.3125,"pitch":123.1875,"roll":1.125},"location":"Left Knee"},{"euler":{"heading":103.1875,"pitch":119.4375,"roll":60.125},"location":"Left Ankle"},{"euler":{"heading":72.6875,"pitch":-10.1875,"roll":-3.9375},"location":"Right Ankle"},{"euler":{"heading":108.9375,"pitch":-160.6875,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":97.875,"pitch":-108.5625,"roll":-8.25},"location":"Right Knee"},{"euler":{"heading":19.4375,"pitch":-125.25,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.296"} +{"sensors":[{"euler":{"heading":44.6875,"pitch":130.8125,"roll":11.125},"location":"Left Knee"},{"euler":{"heading":90.0625,"pitch":102.5625,"roll":45.375},"location":"Left Ankle"},{"euler":{"heading":70.6875,"pitch":-11.0625,"roll":-7.1875},"location":"Right Ankle"},{"euler":{"heading":114.4375,"pitch":-159.9375,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":104.25,"pitch":-106.375,"roll":-13.5625},"location":"Right Knee"},{"euler":{"heading":14.75,"pitch":-121.0625,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.396"} +{"sensors":[{"euler":{"heading":358.8125,"pitch":144.125,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":58.625,"pitch":93.5625,"roll":17.6875},"location":"Left Ankle"},{"euler":{"heading":65.625,"pitch":-10.3125,"roll":-6.25},"location":"Right Ankle"},{"euler":{"heading":117.125,"pitch":-160.6875,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":109.4375,"pitch":-106.8125,"roll":-18.4375},"location":"Right Knee"},{"euler":{"heading":16.0,"pitch":-119.0625,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.496"} +{"sensors":[{"euler":{"heading":334.5625,"pitch":155.8125,"roll":40.0},"location":"Left Knee"},{"euler":{"heading":38.6875,"pitch":90.1875,"roll":-3.0},"location":"Left Ankle"},{"euler":{"heading":59.1875,"pitch":-8.0625,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":117.5625,"pitch":-163.0625,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":116.125,"pitch":-108.1875,"roll":-24.5},"location":"Right Knee"},{"euler":{"heading":20.375,"pitch":-122.1875,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.597"} +{"sensors":[{"euler":{"heading":346.0625,"pitch":149.3125,"roll":39.5625},"location":"Left Knee"},{"euler":{"heading":42.0,"pitch":94.125,"roll":-1.3125},"location":"Left Ankle"},{"euler":{"heading":49.0,"pitch":-6.6875,"roll":-12.9375},"location":"Right Ankle"},{"euler":{"heading":119.0,"pitch":-166.5625,"roll":65.4375},"location":"Right Hip"},{"euler":{"heading":123.625,"pitch":-108.1875,"roll":-31.875},"location":"Right Knee"},{"euler":{"heading":27.5,"pitch":-125.375,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.697"} +{"sensors":[{"euler":{"heading":357.5625,"pitch":141.625,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":57.5,"pitch":98.5,"roll":11.1875},"location":"Left Ankle"},{"euler":{"heading":33.1875,"pitch":-7.5625,"roll":-15.3125},"location":"Right Ankle"},{"euler":{"heading":123.5,"pitch":-159.4375,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":132.875,"pitch":-106.75,"roll":-43.875},"location":"Right Knee"},{"euler":{"heading":25.6875,"pitch":-128.375,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.798"} +{"sensors":[{"euler":{"heading":3.5625,"pitch":136.625,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":61.0,"pitch":98.8125,"roll":13.625},"location":"Left Ankle"},{"euler":{"heading":27.125,"pitch":-9.0625,"roll":-13.75},"location":"Right Ankle"},{"euler":{"heading":128.625,"pitch":-152.25,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":135.0625,"pitch":-110.6875,"roll":-45.75},"location":"Right Knee"},{"euler":{"heading":27.5625,"pitch":-133.625,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.898"} +{"sensors":[{"euler":{"heading":6.75,"pitch":133.3125,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":64.8125,"pitch":99.1875,"roll":18.1875},"location":"Left Ankle"},{"euler":{"heading":45.125,"pitch":-11.75,"roll":-7.625},"location":"Right Ankle"},{"euler":{"heading":130.5,"pitch":-150.625,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":116.0,"pitch":-106.625,"roll":-30.4375},"location":"Right Knee"},{"euler":{"heading":29.75,"pitch":-141.125,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:52.999"} +{"sensors":[{"euler":{"heading":14.125,"pitch":129.3125,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":70.375,"pitch":100.75,"roll":22.9375},"location":"Left Ankle"},{"euler":{"heading":70.3125,"pitch":-11.875,"roll":0.375},"location":"Right Ankle"},{"euler":{"heading":124.5625,"pitch":-153.75,"roll":44.25},"location":"Right Hip"},{"euler":{"heading":88.1875,"pitch":-102.5625,"roll":-8.3125},"location":"Right Knee"},{"euler":{"heading":30.75,"pitch":-145.9375,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.99"} +{"sensors":[{"euler":{"heading":21.0,"pitch":126.75,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":74.3125,"pitch":101.4375,"roll":27.5625},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":-10.9375,"roll":4.25},"location":"Right Ankle"},{"euler":{"heading":115.0,"pitch":-156.4375,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":72.125,"pitch":-101.375,"roll":7.3125},"location":"Right Knee"},{"euler":{"heading":32.75,"pitch":-150.25,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.200"} +{"sensors":[{"euler":{"heading":28.125,"pitch":125.5625,"roll":18.9375},"location":"Left Knee"},{"euler":{"heading":81.625,"pitch":103.125,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":-6.75,"roll":2.0625},"location":"Right Ankle"},{"euler":{"heading":104.9375,"pitch":-159.9375,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":70.625,"pitch":-107.0,"roll":8.1875},"location":"Right Knee"},{"euler":{"heading":34.375,"pitch":-156.1875,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.301"} +{"sensors":[{"euler":{"heading":43.0,"pitch":126.25,"roll":7.3125},"location":"Left Knee"},{"euler":{"heading":93.125,"pitch":109.75,"roll":51.6875},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-4.5625,"roll":-2.6875},"location":"Right Ankle"},{"euler":{"heading":107.4375,"pitch":-158.3125,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":80.3125,"pitch":-111.0625,"roll":1.25},"location":"Right Knee"},{"euler":{"heading":30.0625,"pitch":-149.0625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.402"} +{"sensors":[{"euler":{"heading":58.0625,"pitch":122.9375,"roll":1.6875},"location":"Left Knee"},{"euler":{"heading":97.125,"pitch":114.5625,"roll":54.875},"location":"Left Ankle"},{"euler":{"heading":73.125,"pitch":-4.4375,"roll":-3.75},"location":"Right Ankle"},{"euler":{"heading":104.875,"pitch":-160.25,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":91.25,"pitch":-113.125,"roll":-4.6875},"location":"Right Knee"},{"euler":{"heading":19.75,"pitch":-127.75,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.502"} +{"sensors":[{"euler":{"heading":46.375,"pitch":131.1875,"roll":9.25},"location":"Left Knee"},{"euler":{"heading":82.0625,"pitch":99.4375,"roll":40.875},"location":"Left Ankle"},{"euler":{"heading":70.9375,"pitch":-5.0625,"roll":-5.125},"location":"Right Ankle"},{"euler":{"heading":110.25,"pitch":-159.5,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":99.75,"pitch":-111.75,"roll":-10.75},"location":"Right Knee"},{"euler":{"heading":12.1875,"pitch":-123.125,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.603"} +{"sensors":[{"euler":{"heading":264.625,"pitch":143.625,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":54.625,"pitch":93.25,"roll":16.3125},"location":"Left Ankle"},{"euler":{"heading":67.1875,"pitch":-5.9375,"roll":-6.3125},"location":"Right Ankle"},{"euler":{"heading":112.375,"pitch":-160.8125,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":106.0,"pitch":-110.8125,"roll":-16.125},"location":"Right Knee"},{"euler":{"heading":2.125,"pitch":-125.4375,"roll":45.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.705"} +{"sensors":[{"euler":{"heading":278.125,"pitch":154.0,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":36.5,"pitch":89.1875,"roll":-2.625},"location":"Left Ankle"},{"euler":{"heading":60.8125,"pitch":-4.625,"roll":-8.125},"location":"Right Ankle"},{"euler":{"heading":114.625,"pitch":-161.375,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":113.4375,"pitch":-111.8125,"roll":-22.1875},"location":"Right Knee"},{"euler":{"heading":13.9375,"pitch":-122.6875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.805"} +{"sensors":[{"euler":{"heading":340.8125,"pitch":152.6875,"roll":39.75},"location":"Left Knee"},{"euler":{"heading":38.75,"pitch":93.0625,"roll":-2.5625},"location":"Left Ankle"},{"euler":{"heading":52.4375,"pitch":-3.375,"roll":-12.25},"location":"Right Ankle"},{"euler":{"heading":115.9375,"pitch":-166.3125,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":121.375,"pitch":-111.0,"roll":-29.9375},"location":"Right Knee"},{"euler":{"heading":20.8125,"pitch":-127.3125,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:53.908"} +{"sensors":[{"euler":{"heading":354.125,"pitch":143.8125,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":51.875,"pitch":96.375,"roll":7.6875},"location":"Left Ankle"},{"euler":{"heading":39.4375,"pitch":-7.3125,"roll":-13.25},"location":"Right Ankle"},{"euler":{"heading":121.625,"pitch":-162.0,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":129.0,"pitch":-107.75,"roll":-40.6875},"location":"Right Knee"},{"euler":{"heading":22.25,"pitch":-129.1875,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.9"} +{"sensors":[{"euler":{"heading":3.0,"pitch":137.1875,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":58.625,"pitch":97.75,"roll":12.0},"location":"Left Ankle"},{"euler":{"heading":26.0625,"pitch":-4.375,"roll":-15.75},"location":"Right Ankle"},{"euler":{"heading":125.625,"pitch":-152.9375,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":135.375,"pitch":-114.0,"roll":-45.0},"location":"Right Knee"},{"euler":{"heading":26.3125,"pitch":-136.5,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.110"} +{"sensors":[{"euler":{"heading":7.6875,"pitch":133.25,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":63.3125,"pitch":98.5,"roll":16.1875},"location":"Left Ankle"},{"euler":{"heading":39.9375,"pitch":-8.8125,"roll":-10.25},"location":"Right Ankle"},{"euler":{"heading":128.625,"pitch":-150.625,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":118.0625,"pitch":-108.3125,"roll":-31.875},"location":"Right Knee"},{"euler":{"heading":28.875,"pitch":-141.8125,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.210"} +{"sensors":[{"euler":{"heading":14.0625,"pitch":129.6875,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":67.4375,"pitch":99.875,"roll":19.9375},"location":"Left Ankle"},{"euler":{"heading":66.3125,"pitch":-13.0625,"roll":-2.3125},"location":"Right Ankle"},{"euler":{"heading":122.25,"pitch":-153.375,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":92.75,"pitch":-102.6875,"roll":-10.1875},"location":"Right Knee"},{"euler":{"heading":29.9375,"pitch":-146.0,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.311"} +{"sensors":[{"euler":{"heading":21.625,"pitch":126.4375,"roll":26.375},"location":"Left Knee"},{"euler":{"heading":72.5,"pitch":101.5,"roll":24.9375},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":-11.375,"roll":3.375},"location":"Right Ankle"},{"euler":{"heading":111.5,"pitch":-158.0625,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":75.1875,"pitch":-101.5,"roll":6.625},"location":"Right Knee"},{"euler":{"heading":32.75,"pitch":-150.1875,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.412"} +{"sensors":[{"euler":{"heading":28.125,"pitch":124.125,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":79.25,"pitch":102.875,"roll":33.25},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":-9.5625,"roll":1.75},"location":"Right Ankle"},{"euler":{"heading":104.6875,"pitch":-161.8125,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":75.5,"pitch":-105.5,"roll":6.0625},"location":"Right Knee"},{"euler":{"heading":35.125,"pitch":-155.1875,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.513"} +{"sensors":[{"euler":{"heading":42.9375,"pitch":124.0625,"roll":8.5625},"location":"Left Knee"},{"euler":{"heading":87.375,"pitch":106.1875,"roll":49.125},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":-9.0625,"roll":-1.625},"location":"Right Ankle"},{"euler":{"heading":108.75,"pitch":-161.375,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":86.6875,"pitch":-108.625,"roll":-0.8125},"location":"Right Knee"},{"euler":{"heading":28.625,"pitch":-142.375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.613"} +{"sensors":[{"euler":{"heading":53.9375,"pitch":124.3125,"roll":2.9375},"location":"Left Knee"},{"euler":{"heading":93.75,"pitch":109.5,"roll":56.5625},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":-8.5625,"roll":-1.875},"location":"Right Ankle"},{"euler":{"heading":106.75,"pitch":-162.5625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":94.125,"pitch":-109.6875,"roll":-6.125},"location":"Right Knee"},{"euler":{"heading":17.5625,"pitch":-121.75,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.714"} +{"sensors":[{"euler":{"heading":40.6875,"pitch":131.1875,"roll":11.9375},"location":"Left Knee"},{"euler":{"heading":79.3125,"pitch":94.9375,"roll":39.125},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-7.5,"roll":-3.25},"location":"Right Ankle"},{"euler":{"heading":110.5,"pitch":-161.8125,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":100.875,"pitch":-110.8125,"roll":-11.3125},"location":"Right Knee"},{"euler":{"heading":13.375,"pitch":-119.625,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.814"} +{"sensors":[{"euler":{"heading":267.125,"pitch":144.375,"roll":29.125},"location":"Left Knee"},{"euler":{"heading":47.75,"pitch":89.6875,"roll":11.8125},"location":"Left Ankle"},{"euler":{"heading":69.0625,"pitch":-6.25,"roll":-4.5625},"location":"Right Ankle"},{"euler":{"heading":112.3125,"pitch":-161.8125,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":106.0625,"pitch":-111.5625,"roll":-15.625},"location":"Right Knee"},{"euler":{"heading":12.875,"pitch":-117.125,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:54.915"} +{"sensors":[{"euler":{"heading":282.375,"pitch":155.3125,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":31.625,"pitch":89.75,"roll":-7.3125},"location":"Left Ankle"},{"euler":{"heading":62.3125,"pitch":-3.5,"roll":-8.0},"location":"Right Ankle"},{"euler":{"heading":112.75,"pitch":-163.375,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":113.9375,"pitch":-113.4375,"roll":-22.0},"location":"Right Knee"},{"euler":{"heading":17.0625,"pitch":-122.4375,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.17"} +{"sensors":[{"euler":{"heading":344.5625,"pitch":152.8125,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":37.0625,"pitch":95.75,"roll":-3.1875},"location":"Left Ankle"},{"euler":{"heading":53.8125,"pitch":-3.375,"roll":-10.375},"location":"Right Ankle"},{"euler":{"heading":114.5,"pitch":-167.4375,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":121.3125,"pitch":-112.75,"roll":-29.375},"location":"Right Knee"},{"euler":{"heading":22.6875,"pitch":-125.6875,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.118"} +{"sensors":[{"euler":{"heading":1.75,"pitch":141.75,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":52.6875,"pitch":99.3125,"roll":9.25},"location":"Left Ankle"},{"euler":{"heading":37.0625,"pitch":-5.25,"roll":-11.375},"location":"Right Ankle"},{"euler":{"heading":120.6875,"pitch":-160.4375,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":130.8125,"pitch":-112.625,"roll":-41.25},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-129.6875,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.218"} +{"sensors":[{"euler":{"heading":8.1875,"pitch":135.8125,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":58.8125,"pitch":100.8125,"roll":13.0},"location":"Left Ankle"},{"euler":{"heading":27.75,"pitch":-6.9375,"roll":-12.0},"location":"Right Ankle"},{"euler":{"heading":128.25,"pitch":-152.0,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":133.0,"pitch":-113.5625,"roll":-43.6875},"location":"Right Knee"},{"euler":{"heading":26.9375,"pitch":-134.125,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.319"} +{"sensors":[{"euler":{"heading":11.25,"pitch":132.375,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":64.625,"pitch":101.375,"roll":18.0625},"location":"Left Ankle"},{"euler":{"heading":41.25,"pitch":-9.125,"roll":-8.875},"location":"Right Ankle"},{"euler":{"heading":129.0,"pitch":-150.9375,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":117.125,"pitch":-107.9375,"roll":-30.8125},"location":"Right Knee"},{"euler":{"heading":29.125,"pitch":-140.0,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.420"} +{"sensors":[{"euler":{"heading":17.25,"pitch":128.875,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":70.125,"pitch":102.625,"roll":22.25},"location":"Left Ankle"},{"euler":{"heading":65.1875,"pitch":-11.5,"roll":-1.4375},"location":"Right Ankle"},{"euler":{"heading":124.8125,"pitch":-154.5625,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":91.0,"pitch":-103.0,"roll":-9.8125},"location":"Right Knee"},{"euler":{"heading":31.625,"pitch":-147.625,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.521"} +{"sensors":[{"euler":{"heading":24.25,"pitch":125.4375,"roll":25.75},"location":"Left Knee"},{"euler":{"heading":74.125,"pitch":103.625,"roll":26.5625},"location":"Left Ankle"},{"euler":{"heading":83.5,"pitch":-13.625,"roll":4.8125},"location":"Right Ankle"},{"euler":{"heading":114.875,"pitch":-157.625,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":74.9375,"pitch":-99.8125,"roll":7.4375},"location":"Right Knee"},{"euler":{"heading":34.3125,"pitch":-151.5625,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.622"} +{"sensors":[{"euler":{"heading":31.5,"pitch":123.125,"roll":19.375},"location":"Left Knee"},{"euler":{"heading":81.875,"pitch":105.375,"roll":35.875},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":-7.8125,"roll":3.375},"location":"Right Ankle"},{"euler":{"heading":104.0,"pitch":-161.375,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":70.875,"pitch":-107.375,"roll":9.25},"location":"Right Knee"},{"euler":{"heading":37.5625,"pitch":-157.6875,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.723"} +{"sensors":[{"euler":{"heading":48.25,"pitch":123.1875,"roll":6.875},"location":"Left Knee"},{"euler":{"heading":95.8125,"pitch":115.3125,"roll":51.6875},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":-6.3125,"roll":-1.3125},"location":"Right Ankle"},{"euler":{"heading":107.8125,"pitch":-160.8125,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":80.0,"pitch":-110.4375,"roll":2.6875},"location":"Right Knee"},{"euler":{"heading":31.375,"pitch":-146.8125,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.826"} +{"sensors":[{"euler":{"heading":62.4375,"pitch":119.8125,"roll":2.0625},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":123.4375,"roll":54.6875},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-4.6875,"roll":-2.1875},"location":"Right Ankle"},{"euler":{"heading":104.875,"pitch":-162.4375,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":88.875,"pitch":-113.3125,"roll":-2.5},"location":"Right Knee"},{"euler":{"heading":23.0625,"pitch":-124.6875,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:55.927"} +{"sensors":[{"euler":{"heading":49.125,"pitch":129.4375,"roll":9.75},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":102.125,"roll":42.6875},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":-3.6875,"roll":-3.75},"location":"Right Ankle"},{"euler":{"heading":109.3125,"pitch":-160.9375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":95.4375,"pitch":-114.0,"roll":-7.1875},"location":"Right Knee"},{"euler":{"heading":15.3125,"pitch":-118.875,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.27"} +{"sensors":[{"euler":{"heading":266.4375,"pitch":144.6875,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":54.4375,"pitch":91.375,"roll":16.0},"location":"Left Ankle"},{"euler":{"heading":68.8125,"pitch":-1.5625,"roll":-4.9375},"location":"Right Ankle"},{"euler":{"heading":109.875,"pitch":-161.0,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":101.0,"pitch":-115.6875,"roll":-11.5},"location":"Right Knee"},{"euler":{"heading":12.0,"pitch":-117.0625,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.127"} +{"sensors":[{"euler":{"heading":280.875,"pitch":155.9375,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":31.25,"pitch":89.8125,"roll":-6.6875},"location":"Left Ankle"},{"euler":{"heading":62.8125,"pitch":0.5,"roll":-6.1875},"location":"Right Ankle"},{"euler":{"heading":110.875,"pitch":-162.75,"roll":65.3125},"location":"Right Hip"},{"euler":{"heading":108.6875,"pitch":-116.625,"roll":-17.5625},"location":"Right Knee"},{"euler":{"heading":17.125,"pitch":-122.4375,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.229"} +{"sensors":[{"euler":{"heading":350.0625,"pitch":151.4375,"roll":37.1875},"location":"Left Knee"},{"euler":{"heading":34.75,"pitch":94.6875,"roll":-4.625},"location":"Left Ankle"},{"euler":{"heading":52.5,"pitch":0.25,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":114.4375,"pitch":-163.625,"roll":65.5625},"location":"Right Hip"},{"euler":{"heading":118.625,"pitch":-115.625,"roll":-26.6875},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-127.3125,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.330"} +{"sensors":[{"euler":{"heading":359.4375,"pitch":143.9375,"roll":35.75},"location":"Left Knee"},{"euler":{"heading":52.0,"pitch":97.5625,"roll":9.5},"location":"Left Ankle"},{"euler":{"heading":36.75,"pitch":-4.375,"roll":-9.75},"location":"Right Ankle"},{"euler":{"heading":120.625,"pitch":-159.1875,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":129.125,"pitch":-114.5,"roll":-39.25},"location":"Right Knee"},{"euler":{"heading":21.75,"pitch":-130.375,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.430"} +{"sensors":[{"euler":{"heading":7.1875,"pitch":137.0625,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":56.9375,"pitch":100.5625,"roll":11.75},"location":"Left Ankle"},{"euler":{"heading":28.375,"pitch":-4.6875,"roll":-10.6875},"location":"Right Ankle"},{"euler":{"heading":126.5625,"pitch":-151.625,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":131.125,"pitch":-117.1875,"roll":-39.875},"location":"Right Knee"},{"euler":{"heading":27.8125,"pitch":-135.875,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.530"} +{"sensors":[{"euler":{"heading":9.75,"pitch":134.25,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":60.0625,"pitch":99.375,"roll":15.8125},"location":"Left Ankle"},{"euler":{"heading":43.25,"pitch":-7.6875,"roll":-6.75},"location":"Right Ankle"},{"euler":{"heading":129.5625,"pitch":-151.5,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":113.125,"pitch":-109.5625,"roll":-28.375},"location":"Right Knee"},{"euler":{"heading":29.875,"pitch":-143.1875,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.631"} +{"sensors":[{"euler":{"heading":16.75,"pitch":130.0625,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":66.4375,"pitch":100.8125,"roll":20.1875},"location":"Left Ankle"},{"euler":{"heading":70.25,"pitch":-11.1875,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":123.8125,"pitch":-155.625,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":87.1875,"pitch":-102.375,"roll":-7.1875},"location":"Right Knee"},{"euler":{"heading":33.0625,"pitch":-149.375,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.733"} +{"sensors":[{"euler":{"heading":25.3125,"pitch":125.75,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":72.625,"pitch":103.1875,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":-10.25,"roll":5.9375},"location":"Right Ankle"},{"euler":{"heading":115.5,"pitch":-157.4375,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":71.5,"pitch":-101.0,"roll":8.5625},"location":"Right Knee"},{"euler":{"heading":35.1875,"pitch":-152.375,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.834"} +{"sensors":[{"euler":{"heading":33.4375,"pitch":123.375,"roll":18.625},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":105.5,"roll":34.0625},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":-8.0,"roll":3.8125},"location":"Right Ankle"},{"euler":{"heading":103.9375,"pitch":-162.1875,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":67.5,"pitch":-104.4375,"roll":12.1875},"location":"Right Knee"},{"euler":{"heading":37.1875,"pitch":-158.3125,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:56.934"} +{"sensors":[{"euler":{"heading":46.4375,"pitch":125.25,"roll":6.75},"location":"Left Knee"},{"euler":{"heading":91.625,"pitch":109.875,"roll":51.6875},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-8.1875,"roll":-0.4375},"location":"Right Ankle"},{"euler":{"heading":107.25,"pitch":-161.6875,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":76.75,"pitch":-108.9375,"roll":4.9375},"location":"Right Knee"},{"euler":{"heading":33.5,"pitch":-152.8125,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.35"} +{"sensors":[{"euler":{"heading":61.8125,"pitch":120.375,"roll":0.4375},"location":"Left Knee"},{"euler":{"heading":99.0625,"pitch":118.3125,"roll":57.6875},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-7.75,"roll":-2.0625},"location":"Right Ankle"},{"euler":{"heading":105.0,"pitch":-163.625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":87.5625,"pitch":-110.375,"roll":-1.4375},"location":"Right Knee"},{"euler":{"heading":21.8125,"pitch":-112.25,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.136"} +{"sensors":[{"euler":{"heading":53.0,"pitch":128.6875,"roll":6.6875},"location":"Left Knee"},{"euler":{"heading":87.4375,"pitch":101.75,"roll":45.875},"location":"Left Ankle"},{"euler":{"heading":74.875,"pitch":-6.6875,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":108.75,"pitch":-162.875,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":93.375,"pitch":-111.0,"roll":-5.9375},"location":"Right Knee"},{"euler":{"heading":14.125,"pitch":-121.0,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.236"} +{"sensors":[{"euler":{"heading":12.6875,"pitch":140.9375,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":57.8125,"pitch":93.75,"roll":19.3125},"location":"Left Ankle"},{"euler":{"heading":70.5625,"pitch":-3.875,"roll":-4.8125},"location":"Right Ankle"},{"euler":{"heading":110.8125,"pitch":-162.125,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":98.1875,"pitch":-113.1875,"roll":-9.8125},"location":"Right Knee"},{"euler":{"heading":12.625,"pitch":-117.3125,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.336"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":153.3125,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":35.875,"pitch":90.375,"roll":-2.3125},"location":"Left Ankle"},{"euler":{"heading":65.4375,"pitch":-1.5,"roll":-6.875},"location":"Right Ankle"},{"euler":{"heading":112.5625,"pitch":-162.6875,"roll":64.3125},"location":"Right Hip"},{"euler":{"heading":104.6875,"pitch":-115.0625,"roll":-15.75},"location":"Right Knee"},{"euler":{"heading":15.1875,"pitch":-119.875,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.437"} +{"sensors":[{"euler":{"heading":284.875,"pitch":154.1875,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":34.75,"pitch":94.8125,"roll":-4.75},"location":"Left Ankle"},{"euler":{"heading":58.625,"pitch":-1.0,"roll":-10.3125},"location":"Right Ankle"},{"euler":{"heading":114.125,"pitch":-164.8125,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":113.625,"pitch":-114.75,"roll":-22.6875},"location":"Right Knee"},{"euler":{"heading":20.25,"pitch":-126.0625,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.538"} +{"sensors":[{"euler":{"heading":356.5,"pitch":144.8125,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":48.25,"pitch":97.5,"roll":6.125},"location":"Left Ankle"},{"euler":{"heading":44.4375,"pitch":-5.875,"roll":-11.1875},"location":"Right Ankle"},{"euler":{"heading":118.0,"pitch":-163.9375,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":124.3125,"pitch":-110.875,"roll":-34.3125},"location":"Right Knee"},{"euler":{"heading":21.375,"pitch":-128.5,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.639"} +{"sensors":[{"euler":{"heading":5.1875,"pitch":138.4375,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":54.75,"pitch":99.375,"roll":10.1875},"location":"Left Ankle"},{"euler":{"heading":29.9375,"pitch":-4.6875,"roll":-14.0625},"location":"Right Ankle"},{"euler":{"heading":123.3125,"pitch":-155.375,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":132.25,"pitch":-115.0625,"roll":-41.4375},"location":"Right Knee"},{"euler":{"heading":23.75,"pitch":-132.1875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.740"} +{"sensors":[{"euler":{"heading":11.3125,"pitch":133.375,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":60.4375,"pitch":100.5,"roll":14.625},"location":"Left Ankle"},{"euler":{"heading":40.4375,"pitch":-8.3125,"roll":-8.6875},"location":"Right Ankle"},{"euler":{"heading":127.375,"pitch":-151.625,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":119.4375,"pitch":-110.125,"roll":-33.75},"location":"Right Knee"},{"euler":{"heading":28.25,"pitch":-139.75,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.841"} +{"sensors":[{"euler":{"heading":15.875,"pitch":130.0625,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":65.25,"pitch":101.4375,"roll":18.75},"location":"Left Ankle"},{"euler":{"heading":63.9375,"pitch":-11.125,"roll":-2.625},"location":"Right Ankle"},{"euler":{"heading":127.375,"pitch":-152.75,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":96.5625,"pitch":-104.0625,"roll":-14.5},"location":"Right Knee"},{"euler":{"heading":31.125,"pitch":-147.9375,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:57.942"} +{"sensors":[{"euler":{"heading":22.625,"pitch":126.6875,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":70.1875,"pitch":103.5625,"roll":23.125},"location":"Left Ankle"},{"euler":{"heading":88.125,"pitch":-10.0,"roll":2.6875},"location":"Right Ankle"},{"euler":{"heading":115.75,"pitch":-157.8125,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":71.75,"pitch":-101.0,"roll":7.0},"location":"Right Knee"},{"euler":{"heading":33.125,"pitch":-152.0625,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.42"} +{"sensors":[{"euler":{"heading":28.1875,"pitch":124.5,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":105.5625,"roll":30.3125},"location":"Left Ankle"},{"euler":{"heading":93.8125,"pitch":-7.6875,"roll":5.0625},"location":"Right Ankle"},{"euler":{"heading":103.4375,"pitch":-162.9375,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":63.625,"pitch":-104.25,"roll":14.625},"location":"Right Knee"},{"euler":{"heading":34.625,"pitch":-157.375,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.143"} +{"sensors":[{"euler":{"heading":40.75,"pitch":122.6875,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":85.625,"pitch":107.0,"roll":43.4375},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":-6.4375,"roll":1.4375},"location":"Right Ankle"},{"euler":{"heading":105.875,"pitch":-162.625,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":72.6875,"pitch":-108.625,"roll":7.25},"location":"Right Knee"},{"euler":{"heading":34.6875,"pitch":-154.1875,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.243"} +{"sensors":[{"euler":{"heading":58.75,"pitch":122.8125,"roll":1.4375},"location":"Left Knee"},{"euler":{"heading":105.9375,"pitch":122.0,"roll":59.1875},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":-5.125,"roll":-0.875},"location":"Right Ankle"},{"euler":{"heading":103.375,"pitch":-163.875,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":81.1875,"pitch":-112.375,"roll":1.375},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-132.0625,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.343"} +{"sensors":[{"euler":{"heading":59.375,"pitch":126.1875,"roll":2.875},"location":"Left Knee"},{"euler":{"heading":98.75,"pitch":106.375,"roll":55.1875},"location":"Left Ankle"},{"euler":{"heading":75.0625,"pitch":-2.75,"roll":-3.4375},"location":"Right Ankle"},{"euler":{"heading":107.0,"pitch":-162.375,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":89.25,"pitch":-115.25,"roll":-3.5625},"location":"Right Knee"},{"euler":{"heading":11.9375,"pitch":-122.4375,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.445"} +{"sensors":[{"euler":{"heading":27.375,"pitch":137.5625,"roll":18.3125},"location":"Left Knee"},{"euler":{"heading":68.1875,"pitch":93.625,"roll":30.4375},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":-0.5,"roll":-5.375},"location":"Right Ankle"},{"euler":{"heading":109.125,"pitch":-161.5,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":94.4375,"pitch":-116.4375,"roll":-7.5},"location":"Right Knee"},{"euler":{"heading":9.9375,"pitch":-118.6875,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.545"} +{"sensors":[{"euler":{"heading":276.375,"pitch":152.0625,"roll":35.375},"location":"Left Knee"},{"euler":{"heading":41.375,"pitch":90.5625,"roll":4.5625},"location":"Left Ankle"},{"euler":{"heading":67.5,"pitch":0.75,"roll":-6.3125},"location":"Right Ankle"},{"euler":{"heading":111.4375,"pitch":-162.4375,"roll":65.6875},"location":"Right Hip"},{"euler":{"heading":101.6875,"pitch":-117.3125,"roll":-12.875},"location":"Right Knee"},{"euler":{"heading":12.5625,"pitch":-120.0625,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.645"} +{"sensors":[{"euler":{"heading":286.8125,"pitch":158.8125,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":31.25,"pitch":92.5625,"roll":-8.3125},"location":"Left Ankle"},{"euler":{"heading":59.8125,"pitch":1.8125,"roll":-10.25},"location":"Right Ankle"},{"euler":{"heading":114.0,"pitch":-164.0625,"roll":66.75},"location":"Right Hip"},{"euler":{"heading":111.0,"pitch":-116.75,"roll":-20.4375},"location":"Right Knee"},{"euler":{"heading":19.0625,"pitch":-124.8125,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.746"} +{"sensors":[{"euler":{"heading":352.9375,"pitch":149.6875,"roll":38.75},"location":"Left Knee"},{"euler":{"heading":49.75,"pitch":102.4375,"roll":4.1875},"location":"Left Ankle"},{"euler":{"heading":46.0,"pitch":-2.875,"roll":-11.375},"location":"Right Ankle"},{"euler":{"heading":118.75,"pitch":-165.3125,"roll":65.375},"location":"Right Hip"},{"euler":{"heading":122.0625,"pitch":-112.125,"roll":-31.6875},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-129.5,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.846"} +{"sensors":[{"euler":{"heading":2.4375,"pitch":141.5625,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":54.375,"pitch":102.0625,"roll":10.5625},"location":"Left Ankle"},{"euler":{"heading":28.1875,"pitch":-4.3125,"roll":-14.5625},"location":"Right Ankle"},{"euler":{"heading":126.25,"pitch":-155.3125,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":128.75,"pitch":-114.0625,"roll":-40.0},"location":"Right Knee"},{"euler":{"heading":24.375,"pitch":-130.0,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:58.947"} +{"sensors":[{"euler":{"heading":8.625,"pitch":135.4375,"roll":35.5},"location":"Left Knee"},{"euler":{"heading":60.3125,"pitch":102.6875,"roll":14.1875},"location":"Left Ankle"},{"euler":{"heading":34.125,"pitch":-8.1875,"roll":-11.5},"location":"Right Ankle"},{"euler":{"heading":130.875,"pitch":-150.5625,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":118.3125,"pitch":-109.375,"roll":-33.75},"location":"Right Knee"},{"euler":{"heading":27.25,"pitch":-137.8125,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.47"} +{"sensors":[{"euler":{"heading":14.9375,"pitch":130.6875,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":67.625,"pitch":104.75,"roll":19.3125},"location":"Left Ankle"},{"euler":{"heading":53.8125,"pitch":-11.8125,"roll":-6.25},"location":"Right Ankle"},{"euler":{"heading":130.6875,"pitch":-152.0,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":97.6875,"pitch":-103.8125,"roll":-16.125},"location":"Right Knee"},{"euler":{"heading":30.25,"pitch":-143.1875,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.149"} +{"sensors":[{"euler":{"heading":22.5,"pitch":127.5,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":71.625,"pitch":105.625,"roll":23.375},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":-12.5,"roll":2.1875},"location":"Right Ankle"},{"euler":{"heading":124.125,"pitch":-155.5,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":76.9375,"pitch":-100.5,"roll":3.5},"location":"Right Knee"},{"euler":{"heading":31.75,"pitch":-148.25,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.250"} +{"sensors":[{"euler":{"heading":28.375,"pitch":124.375,"roll":24.75},"location":"Left Knee"},{"euler":{"heading":77.8125,"pitch":107.125,"roll":28.75},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":-10.5625,"roll":5.75},"location":"Right Ankle"},{"euler":{"heading":114.0625,"pitch":-158.6875,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":48.4375,"pitch":-102.25,"roll":15.4375},"location":"Right Knee"},{"euler":{"heading":33.6875,"pitch":-154.1875,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.351"} +{"sensors":[{"euler":{"heading":36.1875,"pitch":122.5625,"roll":17.8125},"location":"Left Knee"},{"euler":{"heading":85.5625,"pitch":108.75,"roll":37.8125},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":-8.3125,"roll":3.6875},"location":"Right Ankle"},{"euler":{"heading":105.9375,"pitch":-162.25,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":65.125,"pitch":-107.1875,"roll":12.375},"location":"Right Knee"},{"euler":{"heading":36.875,"pitch":-159.4375,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.452"} +{"sensors":[{"euler":{"heading":50.1875,"pitch":124.75,"roll":5.5625},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":115.1875,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-7.8125,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":111.3125,"pitch":-160.6875,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":74.3125,"pitch":-109.375,"roll":5.5625},"location":"Right Knee"},{"euler":{"heading":28.3125,"pitch":-147.5625,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.552"} +{"sensors":[{"euler":{"heading":62.875,"pitch":121.625,"roll":0.75},"location":"Left Knee"},{"euler":{"heading":99.5625,"pitch":119.0625,"roll":57.375},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-5.8125,"roll":-2.8125},"location":"Right Ankle"},{"euler":{"heading":107.5625,"pitch":-162.125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":83.6875,"pitch":-113.25,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":19.625,"pitch":-125.0,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.653"} +{"sensors":[{"euler":{"heading":45.3125,"pitch":131.75,"roll":11.0},"location":"Left Knee"},{"euler":{"heading":80.8125,"pitch":98.1875,"roll":40.6875},"location":"Left Ankle"},{"euler":{"heading":72.125,"pitch":-4.625,"roll":-4.4375},"location":"Right Ankle"},{"euler":{"heading":111.25,"pitch":-161.3125,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":91.4375,"pitch":-113.625,"roll":-4.6875},"location":"Right Knee"},{"euler":{"heading":12.5,"pitch":-120.375,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.756"} +{"sensors":[{"euler":{"heading":268.9375,"pitch":145.0625,"roll":29.0625},"location":"Left Knee"},{"euler":{"heading":48.8125,"pitch":90.5,"roll":13.4375},"location":"Left Ankle"},{"euler":{"heading":68.25,"pitch":-3.75,"roll":-5.6875},"location":"Right Ankle"},{"euler":{"heading":112.9375,"pitch":-161.75,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":97.4375,"pitch":-114.125,"roll":-9.5},"location":"Right Knee"},{"euler":{"heading":11.0625,"pitch":-118.8125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.856"} +{"sensors":[{"euler":{"heading":281.5,"pitch":154.0625,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":32.0625,"pitch":89.25,"roll":-5.5625},"location":"Left Ankle"},{"euler":{"heading":63.1875,"pitch":-2.875,"roll":-5.5},"location":"Right Ankle"},{"euler":{"heading":114.4375,"pitch":-164.125,"roll":66.0625},"location":"Right Hip"},{"euler":{"heading":105.3125,"pitch":-113.9375,"roll":-15.8125},"location":"Right Knee"},{"euler":{"heading":17.6875,"pitch":-122.75,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:20:59.957"} +{"sensors":[{"euler":{"heading":353.4375,"pitch":148.5625,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":36.875,"pitch":96.75,"roll":-2.875},"location":"Left Ankle"},{"euler":{"heading":54.3125,"pitch":-3.5,"roll":-8.125},"location":"Right Ankle"},{"euler":{"heading":117.8125,"pitch":-167.625,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":114.0,"pitch":-111.6875,"roll":-24.4375},"location":"Right Knee"},{"euler":{"heading":24.8125,"pitch":-127.25,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.58"} +{"sensors":[{"euler":{"heading":6.625,"pitch":139.9375,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":50.625,"pitch":99.125,"roll":7.9375},"location":"Left Ankle"},{"euler":{"heading":39.625,"pitch":-8.1875,"roll":-10.0625},"location":"Right Ankle"},{"euler":{"heading":126.3125,"pitch":-161.1875,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":123.125,"pitch":-108.0625,"roll":-36.0625},"location":"Right Knee"},{"euler":{"heading":24.8125,"pitch":-129.5625,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.159"} +{"sensors":[{"euler":{"heading":12.25,"pitch":134.25,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":56.5625,"pitch":100.5625,"roll":12.375},"location":"Left Ankle"},{"euler":{"heading":29.75,"pitch":-11.625,"roll":-11.25},"location":"Right Ankle"},{"euler":{"heading":132.375,"pitch":-152.9375,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":124.875,"pitch":-108.375,"roll":-38.6875},"location":"Right Knee"},{"euler":{"heading":28.75,"pitch":-135.625,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.259"} +{"sensors":[{"euler":{"heading":14.3125,"pitch":131.0,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":62.375,"pitch":100.375,"roll":17.0625},"location":"Left Ankle"},{"euler":{"heading":44.5,"pitch":-12.9375,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":135.0,"pitch":-150.0,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":108.5,"pitch":-105.3125,"roll":-25.3125},"location":"Right Knee"},{"euler":{"heading":31.125,"pitch":-143.9375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.360"} +{"sensors":[{"euler":{"heading":21.0625,"pitch":127.625,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":66.5,"pitch":101.4375,"roll":20.5625},"location":"Left Ankle"},{"euler":{"heading":65.5625,"pitch":-15.75,"roll":1.5},"location":"Right Ankle"},{"euler":{"heading":130.5625,"pitch":-151.625,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":84.0,"pitch":-99.6875,"roll":-4.8125},"location":"Right Knee"},{"euler":{"heading":32.0625,"pitch":-149.125,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.461"} +{"sensors":[{"euler":{"heading":27.5,"pitch":124.5625,"roll":24.125},"location":"Left Knee"},{"euler":{"heading":72.6875,"pitch":102.875,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":-11.125,"roll":5.1875},"location":"Right Ankle"},{"euler":{"heading":120.8125,"pitch":-154.6875,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":64.625,"pitch":-100.875,"roll":12.9375},"location":"Right Knee"},{"euler":{"heading":34.0625,"pitch":-153.5,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.562"} +{"sensors":[{"euler":{"heading":34.75,"pitch":122.5625,"roll":17.625},"location":"Left Knee"},{"euler":{"heading":80.125,"pitch":104.25,"roll":34.375},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":-9.3125,"roll":3.3125},"location":"Right Ankle"},{"euler":{"heading":108.4375,"pitch":-160.125,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":60.1875,"pitch":-105.3125,"roll":15.1875},"location":"Right Knee"},{"euler":{"heading":38.375,"pitch":-160.6875,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.663"} +{"sensors":[{"euler":{"heading":50.125,"pitch":124.125,"roll":4.9375},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":110.125,"roll":50.625},"location":"Left Ankle"},{"euler":{"heading":77.4375,"pitch":-8.0625,"roll":-0.375},"location":"Right Ankle"},{"euler":{"heading":115.0,"pitch":-157.8125,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":70.3125,"pitch":-108.5,"roll":7.625},"location":"Right Knee"},{"euler":{"heading":31.4375,"pitch":-149.6875,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.763"} +{"sensors":[{"euler":{"heading":65.125,"pitch":121.1875,"roll":-1.0},"location":"Left Knee"},{"euler":{"heading":100.8125,"pitch":120.0625,"roll":56.625},"location":"Left Ankle"},{"euler":{"heading":73.4375,"pitch":-6.4375,"roll":-2.5},"location":"Right Ankle"},{"euler":{"heading":110.5625,"pitch":-159.9375,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":81.6875,"pitch":-112.1875,"roll":1.375},"location":"Right Knee"},{"euler":{"heading":20.6875,"pitch":-125.875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.864"} +{"sensors":[{"euler":{"heading":52.5,"pitch":129.1875,"roll":7.8125},"location":"Left Knee"},{"euler":{"heading":84.75,"pitch":102.375,"roll":42.8125},"location":"Left Ankle"},{"euler":{"heading":69.5625,"pitch":-5.3125,"roll":-4.375},"location":"Right Ankle"},{"euler":{"heading":114.8125,"pitch":-158.1875,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":88.625,"pitch":-112.8125,"roll":-3.4375},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-121.5625,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:00.965"} +{"sensors":[{"euler":{"heading":267.1875,"pitch":142.5,"roll":26.1875},"location":"Left Knee"},{"euler":{"heading":50.875,"pitch":94.0625,"roll":15.4375},"location":"Left Ankle"},{"euler":{"heading":65.4375,"pitch":-3.4375,"roll":-5.3125},"location":"Right Ankle"},{"euler":{"heading":115.375,"pitch":-158.6875,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":94.8125,"pitch":-114.1875,"roll":-8.0625},"location":"Right Knee"},{"euler":{"heading":11.875,"pitch":-118.0625,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.66"} +{"sensors":[{"euler":{"heading":281.9375,"pitch":153.375,"roll":36.3125},"location":"Left Knee"},{"euler":{"heading":31.75,"pitch":91.125,"roll":-5.5},"location":"Left Ankle"},{"euler":{"heading":59.9375,"pitch":-1.5625,"roll":-7.25},"location":"Right Ankle"},{"euler":{"heading":115.8125,"pitch":-159.9375,"roll":65.125},"location":"Right Hip"},{"euler":{"heading":102.625,"pitch":-115.5625,"roll":-14.0625},"location":"Right Knee"},{"euler":{"heading":15.5625,"pitch":-121.3125,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.167"} +{"sensors":[{"euler":{"heading":286.3125,"pitch":153.1875,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":32.0625,"pitch":95.9375,"roll":-6.625},"location":"Left Ankle"},{"euler":{"heading":51.4375,"pitch":-1.3125,"roll":-9.4375},"location":"Right Ankle"},{"euler":{"heading":116.9375,"pitch":-164.0625,"roll":66.5625},"location":"Right Hip"},{"euler":{"heading":112.0,"pitch":-114.0625,"roll":-22.0},"location":"Right Knee"},{"euler":{"heading":21.1875,"pitch":-125.8125,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.268"} +{"sensors":[{"euler":{"heading":4.5625,"pitch":142.75,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":47.8125,"pitch":100.1875,"roll":5.4375},"location":"Left Ankle"},{"euler":{"heading":37.375,"pitch":-7.0625,"roll":-11.1875},"location":"Right Ankle"},{"euler":{"heading":123.75,"pitch":-144.625,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":123.4375,"pitch":-107.5625,"roll":-34.8125},"location":"Right Knee"},{"euler":{"heading":21.1875,"pitch":-127.5625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.369"} +{"sensors":[{"euler":{"heading":14.25,"pitch":134.6875,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":56.8125,"pitch":103.5625,"roll":10.5},"location":"Left Ankle"},{"euler":{"heading":27.5625,"pitch":-8.3125,"roll":-14.25},"location":"Right Ankle"},{"euler":{"heading":130.0625,"pitch":-152.6875,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":125.4375,"pitch":-109.1875,"roll":-37.625},"location":"Right Knee"},{"euler":{"heading":26.9375,"pitch":-133.4375,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.469"} +{"sensors":[{"euler":{"heading":19.5,"pitch":128.625,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":64.4375,"pitch":105.4375,"roll":15.875},"location":"Left Ankle"},{"euler":{"heading":42.875,"pitch":-11.875,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":136.4375,"pitch":-150.625,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":107.0625,"pitch":-104.0625,"roll":-24.125},"location":"Right Knee"},{"euler":{"heading":32.1875,"pitch":-140.3125,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.570"} +{"sensors":[{"euler":{"heading":24.6875,"pitch":125.125,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":72.125,"pitch":106.6875,"roll":22.0},"location":"Left Ankle"},{"euler":{"heading":65.3125,"pitch":-14.375,"roll":-0.4375},"location":"Right Ankle"},{"euler":{"heading":129.9375,"pitch":-154.4375,"roll":42.3125},"location":"Right Hip"},{"euler":{"heading":83.9375,"pitch":-99.125,"roll":-4.625},"location":"Right Knee"},{"euler":{"heading":33.5,"pitch":-146.6875,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.671"} +{"sensors":[{"euler":{"heading":30.25,"pitch":122.5625,"roll":25.5},"location":"Left Knee"},{"euler":{"heading":75.9375,"pitch":107.125,"roll":26.1875},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":-11.6875,"roll":5.125},"location":"Right Ankle"},{"euler":{"heading":120.5625,"pitch":-156.875,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":64.125,"pitch":-99.5,"roll":13.125},"location":"Right Knee"},{"euler":{"heading":34.8125,"pitch":-151.1875,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.772"} +{"sensors":[{"euler":{"heading":36.5,"pitch":121.1875,"roll":19.1875},"location":"Left Knee"},{"euler":{"heading":83.1875,"pitch":108.375,"roll":34.3125},"location":"Left Ankle"},{"euler":{"heading":88.375,"pitch":-8.3125,"roll":3.6875},"location":"Right Ankle"},{"euler":{"heading":108.25,"pitch":-161.75,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":61.125,"pitch":-104.875,"roll":14.1875},"location":"Right Knee"},{"euler":{"heading":37.25,"pitch":-157.875,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.874"} +{"sensors":[{"euler":{"heading":47.8125,"pitch":122.5625,"roll":7.6875},"location":"Left Knee"},{"euler":{"heading":88.8125,"pitch":109.6875,"roll":47.9375},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":-7.625,"roll":-0.3125},"location":"Right Ankle"},{"euler":{"heading":111.0625,"pitch":-161.3125,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":70.4375,"pitch":-109.125,"roll":8.375},"location":"Right Knee"},{"euler":{"heading":32.9375,"pitch":-151.1875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:01.974"} +{"sensors":[{"euler":{"heading":62.75,"pitch":119.875,"roll":0.5},"location":"Left Knee"},{"euler":{"heading":97.5625,"pitch":115.8125,"roll":56.8125},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-5.875,"roll":-2.4375},"location":"Right Ankle"},{"euler":{"heading":109.0,"pitch":-162.0625,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":80.875,"pitch":-112.5,"roll":1.8125},"location":"Right Knee"},{"euler":{"heading":22.8125,"pitch":-128.75,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.74"} +{"sensors":[{"euler":{"heading":52.1875,"pitch":129.6875,"roll":6.75},"location":"Left Knee"},{"euler":{"heading":83.125,"pitch":97.375,"roll":44.3125},"location":"Left Ankle"},{"euler":{"heading":71.75,"pitch":-5.3125,"roll":-3.6875},"location":"Right Ankle"},{"euler":{"heading":111.6875,"pitch":-161.3125,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":88.3125,"pitch":-113.0625,"roll":-3.375},"location":"Right Knee"},{"euler":{"heading":12.3125,"pitch":-121.75,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.175"} +{"sensors":[{"euler":{"heading":265.625,"pitch":141.4375,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":54.375,"pitch":92.3125,"roll":17.375},"location":"Left Ankle"},{"euler":{"heading":69.1875,"pitch":-5.0625,"roll":-5.0625},"location":"Right Ankle"},{"euler":{"heading":114.5625,"pitch":-161.375,"roll":63.875},"location":"Right Hip"},{"euler":{"heading":94.0625,"pitch":-112.8125,"roll":-8.0625},"location":"Right Knee"},{"euler":{"heading":10.625,"pitch":-118.75,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.276"} +{"sensors":[{"euler":{"heading":282.125,"pitch":152.0,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":32.625,"pitch":91.1875,"roll":-5.125},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-2.9375,"roll":-9.25},"location":"Right Ankle"},{"euler":{"heading":116.5625,"pitch":-162.625,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":101.125,"pitch":-113.6875,"roll":-13.8125},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-123.75,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.376"} +{"sensors":[{"euler":{"heading":349.25,"pitch":152.25,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":34.375,"pitch":95.125,"roll":-4.9375},"location":"Left Ankle"},{"euler":{"heading":53.375,"pitch":-3.25,"roll":-11.125},"location":"Right Ankle"},{"euler":{"heading":119.0625,"pitch":-166.5625,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":111.125,"pitch":-112.5,"roll":-22.875},"location":"Right Knee"},{"euler":{"heading":20.9375,"pitch":-125.625,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.477"} +{"sensors":[{"euler":{"heading":0.0625,"pitch":128.0,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":46.75,"pitch":97.625,"roll":5.0},"location":"Left Ankle"},{"euler":{"heading":36.1875,"pitch":-6.9375,"roll":-12.1875},"location":"Right Ankle"},{"euler":{"heading":125.8125,"pitch":-161.625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":120.375,"pitch":-108.1875,"roll":-34.3125},"location":"Right Knee"},{"euler":{"heading":18.5,"pitch":-125.8125,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.578"} +{"sensors":[{"euler":{"heading":7.9375,"pitch":137.4375,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":52.8125,"pitch":98.9375,"roll":9.6875},"location":"Left Ankle"},{"euler":{"heading":27.875,"pitch":-8.75,"roll":-11.8125},"location":"Right Ankle"},{"euler":{"heading":131.375,"pitch":-152.25,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":120.625,"pitch":-111.1875,"roll":-35.1875},"location":"Right Knee"},{"euler":{"heading":22.3125,"pitch":-132.125,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.679"} +{"sensors":[{"euler":{"heading":12.8125,"pitch":133.125,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":59.5625,"pitch":99.875,"roll":14.6875},"location":"Left Ankle"},{"euler":{"heading":43.625,"pitch":-11.0,"roll":-8.3125},"location":"Right Ankle"},{"euler":{"heading":133.8125,"pitch":-150.1875,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":104.5,"pitch":-106.5,"roll":-20.5625},"location":"Right Knee"},{"euler":{"heading":26.125,"pitch":-138.5,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.779"} +{"sensors":[{"euler":{"heading":19.0,"pitch":128.9375,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":62.9375,"pitch":100.75,"roll":17.9375},"location":"Left Ankle"},{"euler":{"heading":67.875,"pitch":-15.375,"roll":-0.5},"location":"Right Ankle"},{"euler":{"heading":128.5,"pitch":-153.4375,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":79.5,"pitch":-100.625,"roll":-0.6875},"location":"Right Knee"},{"euler":{"heading":29.3125,"pitch":-145.0625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.880"} +{"sensors":[{"euler":{"heading":27.25,"pitch":125.375,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":68.9375,"pitch":103.1875,"roll":23.0},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":-12.25,"roll":4.875},"location":"Right Ankle"},{"euler":{"heading":120.25,"pitch":-156.125,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":63.75,"pitch":-101.5625,"roll":15.8125},"location":"Right Knee"},{"euler":{"heading":32.25,"pitch":-149.375,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:02.980"} +{"sensors":[{"euler":{"heading":33.625,"pitch":123.1875,"roll":20.0},"location":"Left Knee"},{"euler":{"heading":75.5625,"pitch":104.75,"roll":29.9375},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":-9.125,"roll":3.25},"location":"Right Ankle"},{"euler":{"heading":107.625,"pitch":-161.4375,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":58.0625,"pitch":-106.625,"roll":16.25},"location":"Right Knee"},{"euler":{"heading":36.0,"pitch":-156.125,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.81"} +{"sensors":[{"euler":{"heading":45.25,"pitch":125.3125,"roll":8.375},"location":"Left Knee"},{"euler":{"heading":80.5,"pitch":104.25,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":-8.25,"roll":-2.125},"location":"Right Ankle"},{"euler":{"heading":113.375,"pitch":-159.9375,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":66.8125,"pitch":-109.3125,"roll":10.0625},"location":"Right Knee"},{"euler":{"heading":33.875,"pitch":-151.5,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.182"} +{"sensors":[{"euler":{"heading":58.8125,"pitch":123.9375,"roll":1.875},"location":"Left Knee"},{"euler":{"heading":88.875,"pitch":110.5,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":-8.6875,"roll":-1.8125},"location":"Right Ankle"},{"euler":{"heading":107.875,"pitch":-163.3125,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":78.5,"pitch":-111.625,"roll":3.6875},"location":"Right Knee"},{"euler":{"heading":20.0,"pitch":-132.0,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.283"} +{"sensors":[{"euler":{"heading":50.25,"pitch":129.25,"roll":8.125},"location":"Left Knee"},{"euler":{"heading":80.25,"pitch":97.8125,"roll":41.0},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-8.125,"roll":-3.75},"location":"Right Ankle"},{"euler":{"heading":112.1875,"pitch":-161.875,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":85.9375,"pitch":-111.8125,"roll":-1.375},"location":"Right Knee"},{"euler":{"heading":13.6875,"pitch":-122.75,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.385"} +{"sensors":[{"euler":{"heading":12.375,"pitch":140.25,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":55.0,"pitch":92.6875,"roll":16.8125},"location":"Left Ankle"},{"euler":{"heading":72.0,"pitch":-8.0,"roll":-5.1875},"location":"Right Ankle"},{"euler":{"heading":116.8125,"pitch":-161.1875,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":91.8125,"pitch":-111.0,"roll":-6.375},"location":"Right Knee"},{"euler":{"heading":10.6875,"pitch":-119.9375,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.485"} +{"sensors":[{"euler":{"heading":346.5625,"pitch":151.0,"roll":36.8125},"location":"Left Knee"},{"euler":{"heading":33.25,"pitch":91.25,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":-6.5,"roll":-8.3125},"location":"Right Ankle"},{"euler":{"heading":119.25,"pitch":-162.125,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":98.3125,"pitch":-111.1875,"roll":-11.9375},"location":"Right Knee"},{"euler":{"heading":15.4375,"pitch":-122.5,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.586"} +{"sensors":[{"euler":{"heading":342.5,"pitch":154.1875,"roll":39.1875},"location":"Left Knee"},{"euler":{"heading":31.375,"pitch":93.9375,"roll":-8.5},"location":"Left Ankle"},{"euler":{"heading":56.3125,"pitch":-5.0625,"roll":-10.625},"location":"Right Ankle"},{"euler":{"heading":120.6875,"pitch":-165.75,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":106.25,"pitch":-111.125,"roll":-19.1875},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-126.375,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.687"} +{"sensors":[{"euler":{"heading":358.875,"pitch":128.0,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":46.5,"pitch":98.25,"roll":3.75},"location":"Left Ankle"},{"euler":{"heading":41.9375,"pitch":-8.0625,"roll":-12.1875},"location":"Right Ankle"},{"euler":{"heading":123.625,"pitch":-166.5,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":117.8125,"pitch":-108.4375,"roll":-30.9375},"location":"Right Knee"},{"euler":{"heading":23.3125,"pitch":-127.3125,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.787"} +{"sensors":[{"euler":{"heading":8.4375,"pitch":136.125,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":54.5,"pitch":100.25,"roll":9.875},"location":"Left Ankle"},{"euler":{"heading":26.75,"pitch":-6.0,"roll":-15.3125},"location":"Right Ankle"},{"euler":{"heading":129.625,"pitch":-156.125,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":123.5,"pitch":-113.8125,"roll":-37.375},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-129.375,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.889"} +{"sensors":[{"euler":{"heading":10.9375,"pitch":133.0,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":58.6875,"pitch":99.9375,"roll":14.0},"location":"Left Ankle"},{"euler":{"heading":36.9375,"pitch":-8.6875,"roll":-11.25},"location":"Right Ankle"},{"euler":{"heading":135.0,"pitch":-151.1875,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":113.875,"pitch":-110.25,"roll":-30.125},"location":"Right Knee"},{"euler":{"heading":26.4375,"pitch":-137.3125,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:03.989"} +{"sensors":[{"euler":{"heading":31.875,"pitch":129.3125,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":63.875,"pitch":101.375,"roll":17.8125},"location":"Left Ankle"},{"euler":{"heading":60.875,"pitch":-14.0625,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":131.0,"pitch":-153.0625,"roll":44.125},"location":"Right Hip"},{"euler":{"heading":90.375,"pitch":-102.0,"roll":-10.8125},"location":"Right Knee"},{"euler":{"heading":27.5625,"pitch":-142.9375,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.89"} +{"sensors":[{"euler":{"heading":24.3125,"pitch":125.5,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":68.5,"pitch":103.25,"roll":21.9375},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-13.6875,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":121.5,"pitch":-156.75,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":69.8125,"pitch":-99.9375,"roll":8.8125},"location":"Right Knee"},{"euler":{"heading":29.8125,"pitch":-145.8125,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.190"} +{"sensors":[{"euler":{"heading":29.9375,"pitch":123.6875,"roll":21.6875},"location":"Left Knee"},{"euler":{"heading":74.125,"pitch":103.875,"roll":27.9375},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":-12.25,"roll":4.25},"location":"Right Ankle"},{"euler":{"heading":109.375,"pitch":-161.375,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":61.625,"pitch":-101.625,"roll":17.5},"location":"Right Knee"},{"euler":{"heading":31.5,"pitch":-152.0,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.291"} +{"sensors":[{"euler":{"heading":40.0625,"pitch":123.3125,"roll":11.9375},"location":"Left Knee"},{"euler":{"heading":82.125,"pitch":103.6875,"roll":40.0},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":-8.6875,"roll":-0.5},"location":"Right Ankle"},{"euler":{"heading":108.625,"pitch":-162.4375,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":66.0625,"pitch":-108.3125,"roll":12.0625},"location":"Right Knee"},{"euler":{"heading":31.0,"pitch":-149.8125,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.392"} +{"sensors":[{"euler":{"heading":53.9375,"pitch":123.0625,"roll":3.6875},"location":"Left Knee"},{"euler":{"heading":97.6875,"pitch":110.4375,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":77.375,"pitch":-7.875,"roll":-1.625},"location":"Right Ankle"},{"euler":{"heading":107.75,"pitch":-162.875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":76.1875,"pitch":-111.75,"roll":5.625},"location":"Right Knee"},{"euler":{"heading":17.4375,"pitch":-127.8125,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.493"} +{"sensors":[{"euler":{"heading":49.875,"pitch":128.1875,"roll":7.625},"location":"Left Knee"},{"euler":{"heading":89.5625,"pitch":98.6875,"roll":46.5625},"location":"Left Ankle"},{"euler":{"heading":74.4375,"pitch":-6.5625,"roll":-3.625},"location":"Right Ankle"},{"euler":{"heading":110.375,"pitch":-163.0625,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":82.6875,"pitch":-113.1875,"roll":0.75},"location":"Right Knee"},{"euler":{"heading":10.375,"pitch":-119.375,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.594"} +{"sensors":[{"euler":{"heading":13.4375,"pitch":140.375,"roll":23.9375},"location":"Left Knee"},{"euler":{"heading":60.9375,"pitch":90.3125,"roll":20.9375},"location":"Left Ankle"},{"euler":{"heading":70.375,"pitch":-4.6875,"roll":-5.9375},"location":"Right Ankle"},{"euler":{"heading":111.75,"pitch":-162.3125,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":88.25,"pitch":-114.1875,"roll":-3.5},"location":"Right Knee"},{"euler":{"heading":9.6875,"pitch":-116.875,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.695"} +{"sensors":[{"euler":{"heading":279.1875,"pitch":152.625,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":33.375,"pitch":89.625,"roll":-3.6875},"location":"Left Ankle"},{"euler":{"heading":65.1875,"pitch":-2.875,"roll":-6.9375},"location":"Right Ankle"},{"euler":{"heading":114.0625,"pitch":-164.125,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":95.9375,"pitch":-114.5625,"roll":-9.625},"location":"Right Knee"},{"euler":{"heading":12.3125,"pitch":-118.3125,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.796"} +{"sensors":[{"euler":{"heading":286.25,"pitch":156.6875,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":29.0,"pitch":92.3125,"roll":-9.5625},"location":"Left Ankle"},{"euler":{"heading":55.75,"pitch":-1.5,"roll":-11.875},"location":"Right Ankle"},{"euler":{"heading":117.5625,"pitch":-164.9375,"roll":64.625},"location":"Right Hip"},{"euler":{"heading":105.0625,"pitch":-113.875,"roll":-17.5},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-123.8125,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.897"} +{"sensors":[{"euler":{"heading":356.5,"pitch":146.875,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":45.375,"pitch":97.9375,"roll":2.875},"location":"Left Ankle"},{"euler":{"heading":43.0625,"pitch":-6.0625,"roll":-11.75},"location":"Right Ankle"},{"euler":{"heading":119.6875,"pitch":-166.25,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":116.3125,"pitch":-110.0625,"roll":-28.6875},"location":"Right Knee"},{"euler":{"heading":20.3125,"pitch":-126.9375,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:04.997"} +{"sensors":[{"euler":{"heading":5.125,"pitch":138.3125,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":52.9375,"pitch":99.6875,"roll":8.4375},"location":"Left Ankle"},{"euler":{"heading":26.5,"pitch":-3.1875,"roll":-15.1875},"location":"Right Ankle"},{"euler":{"heading":127.1875,"pitch":-156.25,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":121.1875,"pitch":-115.1875,"roll":-34.75},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-129.8125,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.99"} +{"sensors":[{"euler":{"heading":10.75,"pitch":133.375,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":58.6875,"pitch":100.1875,"roll":12.5},"location":"Left Ankle"},{"euler":{"heading":34.9375,"pitch":-6.25,"roll":-9.0625},"location":"Right Ankle"},{"euler":{"heading":130.5,"pitch":-152.1875,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":107.625,"pitch":-110.5,"roll":-26.875},"location":"Right Knee"},{"euler":{"heading":26.625,"pitch":-137.375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.200"} +{"sensors":[{"euler":{"heading":17.625,"pitch":128.8125,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":64.875,"pitch":102.0,"roll":17.1875},"location":"Left Ankle"},{"euler":{"heading":57.4375,"pitch":-10.0,"roll":-3.75},"location":"Right Ankle"},{"euler":{"heading":128.4375,"pitch":-153.375,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":85.25,"pitch":-104.375,"roll":-8.25},"location":"Right Knee"},{"euler":{"heading":30.1875,"pitch":-143.375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.300"} +{"sensors":[{"euler":{"heading":25.0,"pitch":124.875,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":68.9375,"pitch":103.375,"roll":21.5625},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":-13.375,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":120.5,"pitch":-157.5625,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":69.25,"pitch":-99.5,"roll":8.0},"location":"Right Knee"},{"euler":{"heading":31.875,"pitch":-147.25,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.401"} +{"sensors":[{"euler":{"heading":30.4375,"pitch":122.9375,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":74.75,"pitch":104.5625,"roll":27.8125},"location":"Left Ankle"},{"euler":{"heading":92.375,"pitch":-11.0625,"roll":4.875},"location":"Right Ankle"},{"euler":{"heading":107.5625,"pitch":-162.6875,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":57.1875,"pitch":-102.1875,"roll":20.8125},"location":"Right Knee"},{"euler":{"heading":32.5,"pitch":-152.25,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.502"} +{"sensors":[{"euler":{"heading":40.6875,"pitch":121.75,"roll":13.25},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":105.25,"roll":39.25},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-9.9375,"roll":1.1875},"location":"Right Ankle"},{"euler":{"heading":107.375,"pitch":-164.3125,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":63.8125,"pitch":-106.5,"roll":14.5},"location":"Right Knee"},{"euler":{"heading":34.3125,"pitch":-154.125,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.602"} +{"sensors":[{"euler":{"heading":57.625,"pitch":120.3125,"roll":2.875},"location":"Left Knee"},{"euler":{"heading":98.0,"pitch":116.3125,"roll":55.0625},"location":"Left Ankle"},{"euler":{"heading":76.375,"pitch":-7.9375,"roll":-1.4375},"location":"Right Ankle"},{"euler":{"heading":107.5,"pitch":-164.5,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":73.1875,"pitch":-110.375,"roll":7.75},"location":"Right Knee"},{"euler":{"heading":21.5,"pitch":-131.9375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.704"} +{"sensors":[{"euler":{"heading":59.0625,"pitch":125.8125,"roll":3.125},"location":"Left Knee"},{"euler":{"heading":91.0625,"pitch":103.3125,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-6.25,"roll":-3.6875},"location":"Right Ankle"},{"euler":{"heading":110.5,"pitch":-163.375,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":79.5,"pitch":-112.8125,"roll":2.8125},"location":"Right Knee"},{"euler":{"heading":15.375,"pitch":-119.75,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.804"} +{"sensors":[{"euler":{"heading":29.5,"pitch":135.3125,"roll":18.6875},"location":"Left Knee"},{"euler":{"heading":68.0625,"pitch":92.4375,"roll":30.3125},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-5.1875,"roll":-4.8125},"location":"Right Ankle"},{"euler":{"heading":113.0625,"pitch":-163.1875,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":85.0625,"pitch":-113.3125,"roll":-1.5},"location":"Right Knee"},{"euler":{"heading":11.9375,"pitch":-115.6875,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:05.905"} +{"sensors":[{"euler":{"heading":353.3125,"pitch":147.5,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":38.875,"pitch":89.9375,"roll":2.1875},"location":"Left Ankle"},{"euler":{"heading":66.125,"pitch":-3.75,"roll":-6.25},"location":"Right Ankle"},{"euler":{"heading":114.8125,"pitch":-164.75,"roll":64.375},"location":"Right Hip"},{"euler":{"heading":91.375,"pitch":-113.8125,"roll":-6.6875},"location":"Right Knee"},{"euler":{"heading":13.4375,"pitch":-116.1875,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.7"} +{"sensors":[{"euler":{"heading":342.1875,"pitch":154.5,"roll":38.875},"location":"Left Knee"},{"euler":{"heading":30.1875,"pitch":91.375,"roll":-9.0625},"location":"Left Ankle"},{"euler":{"heading":58.4375,"pitch":-2.5,"roll":-10.8125},"location":"Right Ankle"},{"euler":{"heading":117.8125,"pitch":-167.0,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":99.8125,"pitch":-112.0625,"roll":-13.9375},"location":"Right Knee"},{"euler":{"heading":21.0625,"pitch":-124.125,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.107"} +{"sensors":[{"euler":{"heading":357.75,"pitch":145.375,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":46.1875,"pitch":98.5,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":43.625,"pitch":-8.5,"roll":-12.125},"location":"Right Ankle"},{"euler":{"heading":122.625,"pitch":-164.8125,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":112.75,"pitch":-106.6875,"roll":-26.625},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-126.375,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.208"} +{"sensors":[{"euler":{"heading":5.25,"pitch":139.125,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":50.625,"pitch":96.8125,"roll":8.25},"location":"Left Ankle"},{"euler":{"heading":27.875,"pitch":-4.4375,"roll":-16.1875},"location":"Right Ankle"},{"euler":{"heading":131.9375,"pitch":-155.0625,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":118.1875,"pitch":-111.9375,"roll":-32.4375},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-129.75,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.308"} +{"sensors":[{"euler":{"heading":9.3125,"pitch":135.125,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":54.6875,"pitch":97.5,"roll":12.0},"location":"Left Ankle"},{"euler":{"heading":34.8125,"pitch":-9.3125,"roll":-10.6875},"location":"Right Ankle"},{"euler":{"heading":133.375,"pitch":-151.6875,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":105.9375,"pitch":-107.4375,"roll":-24.625},"location":"Right Knee"},{"euler":{"heading":26.0625,"pitch":-135.3125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.409"} +{"sensors":[{"euler":{"heading":13.3125,"pitch":132.1875,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":58.5625,"pitch":97.5625,"roll":15.875},"location":"Left Ankle"},{"euler":{"heading":58.4375,"pitch":-12.8125,"roll":-3.6875},"location":"Right Ankle"},{"euler":{"heading":131.5625,"pitch":-152.0625,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":84.5,"pitch":-103.4375,"roll":-4.875},"location":"Right Knee"},{"euler":{"heading":27.4375,"pitch":-140.625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.510"} +{"sensors":[{"euler":{"heading":21.625,"pitch":127.8125,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":64.0,"pitch":99.375,"roll":20.5625},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":-12.875,"roll":3.625},"location":"Right Ankle"},{"euler":{"heading":122.125,"pitch":-156.5,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":63.5625,"pitch":-100.6875,"roll":14.0},"location":"Right Knee"},{"euler":{"heading":30.25,"pitch":-144.9375,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.610"} +{"sensors":[{"euler":{"heading":28.1875,"pitch":124.625,"roll":22.25},"location":"Left Knee"},{"euler":{"heading":71.875,"pitch":101.3125,"roll":27.0625},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":-11.625,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":111.375,"pitch":-161.0625,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":53.9375,"pitch":-102.5,"roll":23.25},"location":"Right Knee"},{"euler":{"heading":33.625,"pitch":-151.625,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.711"} +{"sensors":[{"euler":{"heading":38.8125,"pitch":123.0,"roll":13.8125},"location":"Left Knee"},{"euler":{"heading":79.875,"pitch":103.125,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":80.3125,"pitch":-8.3125,"roll":0.1875},"location":"Right Ankle"},{"euler":{"heading":110.5625,"pitch":-161.625,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":57.9375,"pitch":-108.8125,"roll":16.3125},"location":"Right Knee"},{"euler":{"heading":35.875,"pitch":-153.125,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.815"} +{"sensors":[{"euler":{"heading":56.9375,"pitch":121.75,"roll":2.8125},"location":"Left Knee"},{"euler":{"heading":98.1875,"pitch":114.875,"roll":54.625},"location":"Left Ankle"},{"euler":{"heading":73.5625,"pitch":-6.6875,"roll":-2.625},"location":"Right Ankle"},{"euler":{"heading":112.25,"pitch":-160.75,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":65.875,"pitch":-110.9375,"roll":11.0},"location":"Right Knee"},{"euler":{"heading":22.8125,"pitch":-130.8125,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:06.915"} +{"sensors":[{"euler":{"heading":62.3125,"pitch":123.75,"roll":1.4375},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":104.75,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":69.875,"pitch":-5.375,"roll":-5.0625},"location":"Right Ankle"},{"euler":{"heading":112.625,"pitch":-160.5,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":75.5625,"pitch":-113.75,"roll":4.9375},"location":"Right Knee"},{"euler":{"heading":15.125,"pitch":-117.6875,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.16"} +{"sensors":[{"euler":{"heading":41.6875,"pitch":133.0625,"roll":14.3125},"location":"Left Knee"},{"euler":{"heading":68.5625,"pitch":91.9375,"roll":30.875},"location":"Left Ankle"},{"euler":{"heading":67.8125,"pitch":-4.0,"roll":-6.1875},"location":"Right Ankle"},{"euler":{"heading":116.375,"pitch":-159.4375,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":81.5625,"pitch":-114.1875,"roll":0.5625},"location":"Right Knee"},{"euler":{"heading":11.75,"pitch":-115.3125,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.117"} +{"sensors":[{"euler":{"heading":274.4375,"pitch":146.75,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":41.1875,"pitch":88.75,"roll":2.875},"location":"Left Ankle"},{"euler":{"heading":63.5,"pitch":-2.0,"roll":-7.125},"location":"Right Ankle"},{"euler":{"heading":115.9375,"pitch":-162.0625,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":86.8125,"pitch":-115.375,"roll":-3.8125},"location":"Right Knee"},{"euler":{"heading":10.3125,"pitch":-114.625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.217"} +{"sensors":[{"euler":{"heading":286.0,"pitch":154.625,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":29.75,"pitch":90.75,"roll":-8.0625},"location":"Left Ankle"},{"euler":{"heading":56.375,"pitch":-0.4375,"roll":-9.5625},"location":"Right Ankle"},{"euler":{"heading":116.3125,"pitch":-164.6875,"roll":65.1875},"location":"Right Hip"},{"euler":{"heading":94.4375,"pitch":-115.5,"roll":-10.125},"location":"Right Knee"},{"euler":{"heading":17.3125,"pitch":-120.9375,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.317"} +{"sensors":[{"euler":{"heading":357.125,"pitch":148.125,"roll":36.9375},"location":"Left Knee"},{"euler":{"heading":42.0,"pitch":96.5,"roll":0.8125},"location":"Left Ankle"},{"euler":{"heading":42.3125,"pitch":-3.125,"roll":-12.25},"location":"Right Ankle"},{"euler":{"heading":119.9375,"pitch":-165.1875,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":106.4375,"pitch":-112.4375,"roll":-20.75},"location":"Right Knee"},{"euler":{"heading":18.375,"pitch":-125.0625,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.418"} +{"sensors":[{"euler":{"heading":7.375,"pitch":140.375,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":51.4375,"pitch":97.3125,"roll":7.75},"location":"Left Ankle"},{"euler":{"heading":26.3125,"pitch":-3.9375,"roll":-15.4375},"location":"Right Ankle"},{"euler":{"heading":126.875,"pitch":-156.1875,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":116.1875,"pitch":-111.0,"roll":-31.5},"location":"Right Knee"},{"euler":{"heading":20.6875,"pitch":-128.0,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.518"} +{"sensors":[{"euler":{"heading":11.4375,"pitch":134.875,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":57.5625,"pitch":98.3125,"roll":11.375},"location":"Left Ankle"},{"euler":{"heading":32.25,"pitch":-7.25,"roll":-13.4375},"location":"Right Ankle"},{"euler":{"heading":132.3125,"pitch":-151.75,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":110.4375,"pitch":-109.3125,"roll":-26.875},"location":"Right Knee"},{"euler":{"heading":25.1875,"pitch":-136.1875,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.619"} +{"sensors":[{"euler":{"heading":16.5,"pitch":130.625,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":62.4375,"pitch":99.0,"roll":16.0},"location":"Left Ankle"},{"euler":{"heading":53.875,"pitch":-14.1875,"roll":-6.5625},"location":"Right Ankle"},{"euler":{"heading":131.6875,"pitch":-152.75,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":91.875,"pitch":-102.9375,"roll":-10.4375},"location":"Right Knee"},{"euler":{"heading":28.875,"pitch":-142.875,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.720"} +{"sensors":[{"euler":{"heading":24.5625,"pitch":126.75,"roll":27.5},"location":"Left Knee"},{"euler":{"heading":67.25,"pitch":100.6875,"roll":20.5},"location":"Left Ankle"},{"euler":{"heading":73.6875,"pitch":-14.0,"roll":2.1875},"location":"Right Ankle"},{"euler":{"heading":124.8125,"pitch":-156.1875,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":67.8125,"pitch":-100.25,"roll":9.5625},"location":"Right Knee"},{"euler":{"heading":31.3125,"pitch":-148.375,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.820"} +{"sensors":[{"euler":{"heading":31.5,"pitch":124.0625,"roll":22.0625},"location":"Left Knee"},{"euler":{"heading":73.5625,"pitch":102.75,"roll":27.125},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":-10.9375,"roll":4.8125},"location":"Right Ankle"},{"euler":{"heading":114.4375,"pitch":-159.0625,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":52.75,"pitch":-102.25,"roll":22.8125},"location":"Right Knee"},{"euler":{"heading":32.375,"pitch":-153.0625,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:07.921"} +{"sensors":[{"euler":{"heading":43.1875,"pitch":121.8125,"roll":13.125},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":105.4375,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-6.375,"roll":1.0},"location":"Right Ankle"},{"euler":{"heading":109.0,"pitch":-162.3125,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":53.3125,"pitch":-108.1875,"roll":19.6875},"location":"Right Knee"},{"euler":{"heading":34.25,"pitch":-153.0,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.21"} +{"sensors":[{"euler":{"heading":59.75,"pitch":122.9375,"roll":1.4375},"location":"Left Knee"},{"euler":{"heading":97.3125,"pitch":114.1875,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-4.8125,"roll":-2.1875},"location":"Right Ankle"},{"euler":{"heading":111.8125,"pitch":-161.1875,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":61.6875,"pitch":-111.4375,"roll":13.0625},"location":"Right Knee"},{"euler":{"heading":20.75,"pitch":-134.0,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.121"} +{"sensors":[{"euler":{"heading":62.5,"pitch":124.625,"roll":1.3125},"location":"Left Knee"},{"euler":{"heading":97.125,"pitch":103.375,"roll":55.375},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-4.0,"roll":-4.4375},"location":"Right Ankle"},{"euler":{"heading":110.375,"pitch":-162.125,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":70.9375,"pitch":-114.375,"roll":7.25},"location":"Right Knee"},{"euler":{"heading":13.3125,"pitch":-118.75,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.222"} +{"sensors":[{"euler":{"heading":38.0,"pitch":134.875,"roll":14.75},"location":"Left Knee"},{"euler":{"heading":71.0,"pitch":92.75,"roll":32.8125},"location":"Left Ankle"},{"euler":{"heading":68.3125,"pitch":-3.9375,"roll":-5.8125},"location":"Right Ankle"},{"euler":{"heading":114.5625,"pitch":-160.9375,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":78.25,"pitch":-114.1875,"roll":2.25},"location":"Right Knee"},{"euler":{"heading":9.25,"pitch":-115.75,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.322"} +{"sensors":[{"euler":{"heading":275.3125,"pitch":147.3125,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":40.9375,"pitch":90.8125,"roll":4.8125},"location":"Left Ankle"},{"euler":{"heading":64.4375,"pitch":-3.4375,"roll":-7.0625},"location":"Right Ankle"},{"euler":{"heading":117.8125,"pitch":-161.3125,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":84.8125,"pitch":-113.625,"roll":-3.0},"location":"Right Knee"},{"euler":{"heading":10.25,"pitch":-116.0,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.422"} +{"sensors":[{"euler":{"heading":286.4375,"pitch":154.625,"roll":37.625},"location":"Left Knee"},{"euler":{"heading":29.875,"pitch":91.25,"roll":-8.375},"location":"Left Ankle"},{"euler":{"heading":57.1875,"pitch":-1.5,"roll":-9.0625},"location":"Right Ankle"},{"euler":{"heading":120.125,"pitch":-162.25,"roll":63.4375},"location":"Right Hip"},{"euler":{"heading":92.9375,"pitch":-113.5,"roll":-9.5625},"location":"Right Knee"},{"euler":{"heading":18.125,"pitch":-121.625,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.523"} +{"sensors":[{"euler":{"heading":356.375,"pitch":147.5,"roll":37.5625},"location":"Left Knee"},{"euler":{"heading":41.8125,"pitch":96.625,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":45.6875,"pitch":-3.375,"roll":-12.625},"location":"Right Ankle"},{"euler":{"heading":123.25,"pitch":-165.0,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":104.5625,"pitch":-109.5625,"roll":-19.875},"location":"Right Knee"},{"euler":{"heading":20.875,"pitch":-125.0625,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.623"} +{"sensors":[{"euler":{"heading":5.6875,"pitch":140.5625,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":48.75,"pitch":96.625,"roll":7.125},"location":"Left Ankle"},{"euler":{"heading":30.5,"pitch":-3.8125,"roll":-15.9375},"location":"Right Ankle"},{"euler":{"heading":130.4375,"pitch":-158.0,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":113.875,"pitch":-110.625,"roll":-29.4375},"location":"Right Knee"},{"euler":{"heading":20.8125,"pitch":-126.6875,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.723"} +{"sensors":[{"euler":{"heading":9.875,"pitch":136.1875,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":53.4375,"pitch":97.25,"roll":10.6875},"location":"Left Ankle"},{"euler":{"heading":32.0,"pitch":-6.5,"roll":-12.9375},"location":"Right Ankle"},{"euler":{"heading":134.6875,"pitch":-153.1875,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":108.125,"pitch":-106.875,"roll":-26.6875},"location":"Right Knee"},{"euler":{"heading":24.125,"pitch":-133.1875,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.824"} +{"sensors":[{"euler":{"heading":13.3125,"pitch":133.1875,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":57.5625,"pitch":97.25,"roll":14.5625},"location":"Left Ankle"},{"euler":{"heading":51.625,"pitch":-12.4375,"roll":-6.9375},"location":"Right Ankle"},{"euler":{"heading":134.5,"pitch":-153.25,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":91.1875,"pitch":-102.125,"roll":-10.625},"location":"Right Knee"},{"euler":{"heading":27.1875,"pitch":-139.375,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:08.924"} +{"sensors":[{"euler":{"heading":22.125,"pitch":127.6875,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":64.0625,"pitch":100.625,"roll":18.5625},"location":"Left Ankle"},{"euler":{"heading":73.25,"pitch":-14.5625,"roll":0.75},"location":"Right Ankle"},{"euler":{"heading":127.5,"pitch":-157.125,"roll":42.75},"location":"Right Hip"},{"euler":{"heading":69.625,"pitch":-99.25,"roll":8.6875},"location":"Right Knee"},{"euler":{"heading":30.9375,"pitch":-145.25,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.24"} +{"sensors":[{"euler":{"heading":28.6875,"pitch":125.125,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":69.9375,"pitch":102.0,"roll":24.1875},"location":"Left Ankle"},{"euler":{"heading":89.0625,"pitch":-14.5625,"roll":5.375},"location":"Right Ankle"},{"euler":{"heading":118.5,"pitch":-159.25,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":56.25,"pitch":-99.625,"roll":22.75},"location":"Right Knee"},{"euler":{"heading":32.0625,"pitch":-149.9375,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.125"} +{"sensors":[{"euler":{"heading":37.875,"pitch":122.9375,"roll":16.75},"location":"Left Knee"},{"euler":{"heading":77.4375,"pitch":103.6875,"roll":32.75},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":-10.5625,"roll":2.8125},"location":"Right Ankle"},{"euler":{"heading":109.4375,"pitch":-162.4375,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":54.8125,"pitch":-105.875,"roll":21.0},"location":"Right Knee"},{"euler":{"heading":35.125,"pitch":-157.0,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.225"} +{"sensors":[{"euler":{"heading":51.625,"pitch":125.0625,"roll":4.6875},"location":"Left Knee"},{"euler":{"heading":88.4375,"pitch":107.0,"roll":50.125},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":-8.75,"roll":-1.6875},"location":"Right Ankle"},{"euler":{"heading":113.4375,"pitch":-161.75,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":62.5,"pitch":-109.4375,"roll":13.9375},"location":"Right Knee"},{"euler":{"heading":29.0,"pitch":-148.125,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.326"} +{"sensors":[{"euler":{"heading":65.5,"pitch":120.9375,"roll":-0.875},"location":"Left Knee"},{"euler":{"heading":95.0,"pitch":112.0,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":73.3125,"pitch":-4.5,"roll":-3.875},"location":"Right Ankle"},{"euler":{"heading":109.9375,"pitch":-161.75,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":69.0,"pitch":-114.4375,"roll":9.0},"location":"Right Knee"},{"euler":{"heading":17.25,"pitch":-120.75,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.426"} +{"sensors":[{"euler":{"heading":53.375,"pitch":130.5,"roll":7.125},"location":"Left Knee"},{"euler":{"heading":85.6875,"pitch":97.125,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":70.375,"pitch":-4.5625,"roll":-5.4375},"location":"Right Ankle"},{"euler":{"heading":115.125,"pitch":-160.25,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":76.75,"pitch":-113.8125,"roll":3.625},"location":"Right Knee"},{"euler":{"heading":10.0,"pitch":-115.9375,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.526"} +{"sensors":[{"euler":{"heading":266.4375,"pitch":159.875,"roll":25.9375},"location":"Left Knee"},{"euler":{"heading":53.25,"pitch":88.25,"roll":15.8125},"location":"Left Ankle"},{"euler":{"heading":66.875,"pitch":-4.875,"roll":-6.125},"location":"Right Ankle"},{"euler":{"heading":116.75,"pitch":-161.4375,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":83.0625,"pitch":-113.375,"roll":-1.1875},"location":"Right Knee"},{"euler":{"heading":9.0,"pitch":-113.5,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.627"} +{"sensors":[{"euler":{"heading":282.6875,"pitch":153.875,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":31.4375,"pitch":89.125,"roll":-6.0625},"location":"Left Ankle"},{"euler":{"heading":60.375,"pitch":-2.3125,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":118.25,"pitch":-162.5625,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":89.5,"pitch":-114.625,"roll":-6.5},"location":"Right Knee"},{"euler":{"heading":13.75,"pitch":-116.0,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.728"} +{"sensors":[{"euler":{"heading":288.875,"pitch":151.5625,"roll":36.625},"location":"Left Knee"},{"euler":{"heading":31.625,"pitch":95.375,"roll":-7.9375},"location":"Left Ankle"},{"euler":{"heading":53.4375,"pitch":-2.5,"roll":-12.125},"location":"Right Ankle"},{"euler":{"heading":119.3125,"pitch":-166.9375,"roll":65.625},"location":"Right Hip"},{"euler":{"heading":97.8125,"pitch":-113.0625,"roll":-13.875},"location":"Right Knee"},{"euler":{"heading":20.875,"pitch":-122.1875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.829"} +{"sensors":[{"euler":{"heading":6.4375,"pitch":142.5625,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":46.3125,"pitch":98.875,"roll":4.125},"location":"Left Ankle"},{"euler":{"heading":38.75,"pitch":-6.5,"roll":-13.25},"location":"Right Ankle"},{"euler":{"heading":124.3125,"pitch":-162.6875,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":109.125,"pitch":-108.375,"roll":-25.6875},"location":"Right Knee"},{"euler":{"heading":20.25,"pitch":-124.0,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:09.930"} +{"sensors":[{"euler":{"heading":13.375,"pitch":136.0,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":52.5625,"pitch":100.3125,"roll":8.3125},"location":"Left Ankle"},{"euler":{"heading":25.5625,"pitch":-7.375,"roll":-14.5625},"location":"Right Ankle"},{"euler":{"heading":131.5,"pitch":-154.3125,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":115.25,"pitch":-109.8125,"roll":-31.75},"location":"Right Knee"},{"euler":{"heading":24.0625,"pitch":-129.75,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.30"} +{"sensors":[{"euler":{"heading":16.8125,"pitch":131.5,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":58.5625,"pitch":101.1875,"roll":12.875},"location":"Left Ankle"},{"euler":{"heading":40.3125,"pitch":-11.125,"roll":-11.0},"location":"Right Ankle"},{"euler":{"heading":135.0625,"pitch":-152.3125,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":101.6875,"pitch":-106.0625,"roll":-20.6875},"location":"Right Knee"},{"euler":{"heading":28.125,"pitch":-136.9375,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.131"} +{"sensors":[{"euler":{"heading":22.6875,"pitch":127.75,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":103.4375,"roll":22.875},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":-15.5,"roll":-3.5625},"location":"Right Ankle"},{"euler":{"heading":131.375,"pitch":-155.875,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":79.3125,"pitch":-100.25,"roll":1.8125},"location":"Right Knee"},{"euler":{"heading":30.25,"pitch":-143.875,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.231"} +{"sensors":[{"euler":{"heading":29.25,"pitch":124.5,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":75.5625,"pitch":104.125,"roll":27.1875},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-15.125,"roll":3.875},"location":"Right Ankle"},{"euler":{"heading":123.0625,"pitch":-158.1875,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":59.6875,"pitch":-98.4375,"roll":18.0},"location":"Right Knee"},{"euler":{"heading":32.5625,"pitch":-148.875,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.332"} +{"sensors":[{"euler":{"heading":35.125,"pitch":123.0,"roll":19.6875},"location":"Left Knee"},{"euler":{"heading":82.1875,"pitch":104.8125,"roll":34.5625},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":-11.6875,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":111.25,"pitch":-161.4375,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":50.8125,"pitch":-102.8125,"roll":25.75},"location":"Right Knee"},{"euler":{"heading":34.25,"pitch":-155.0,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.433"} +{"sensors":[{"euler":{"heading":47.1875,"pitch":122.5,"roll":9.4375},"location":"Left Knee"},{"euler":{"heading":90.875,"pitch":106.8125,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-7.1875,"roll":-0.6875},"location":"Right Ankle"},{"euler":{"heading":108.875,"pitch":-162.875,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":54.8125,"pitch":-110.0,"roll":19.6875},"location":"Right Knee"},{"euler":{"heading":34.0,"pitch":-154.9375,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.533"} +{"sensors":[{"euler":{"heading":63.875,"pitch":119.625,"roll":0.25},"location":"Left Knee"},{"euler":{"heading":101.8125,"pitch":118.0,"roll":56.6875},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-4.875,"roll":-3.3125},"location":"Right Ankle"},{"euler":{"heading":110.6875,"pitch":-162.25,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":62.375,"pitch":-114.1875,"roll":13.375},"location":"Right Knee"},{"euler":{"heading":21.4375,"pitch":-132.5,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.634"} +{"sensors":[{"euler":{"heading":61.8125,"pitch":126.6875,"roll":2.375},"location":"Left Knee"},{"euler":{"heading":89.625,"pitch":100.8125,"roll":49.0},"location":"Left Ankle"},{"euler":{"heading":72.9375,"pitch":-5.5625,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":112.125,"pitch":-162.1875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":71.625,"pitch":-114.5625,"roll":7.5},"location":"Right Knee"},{"euler":{"heading":11.625,"pitch":-119.9375,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.734"} +{"sensors":[{"euler":{"heading":261.1875,"pitch":138.125,"roll":18.25},"location":"Left Knee"},{"euler":{"heading":61.8125,"pitch":91.5,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":69.375,"pitch":-4.6875,"roll":-5.9375},"location":"Right Ankle"},{"euler":{"heading":115.0,"pitch":-161.5,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":77.125,"pitch":-114.3125,"roll":3.3125},"location":"Right Knee"},{"euler":{"heading":8.25,"pitch":-115.875,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.835"} +{"sensors":[{"euler":{"heading":277.6875,"pitch":149.4375,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":35.875,"pitch":89.6875,"roll":-0.75},"location":"Left Ankle"},{"euler":{"heading":64.8125,"pitch":-2.375,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":116.5625,"pitch":-162.5625,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":83.1875,"pitch":-115.5625,"roll":-1.6875},"location":"Right Knee"},{"euler":{"heading":10.6875,"pitch":-116.1875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:10.936"} +{"sensors":[{"euler":{"heading":286.375,"pitch":154.9375,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":29.5,"pitch":91.8125,"roll":-8.5625},"location":"Left Ankle"},{"euler":{"heading":58.375,"pitch":-1.25,"roll":-11.25},"location":"Right Ankle"},{"euler":{"heading":118.625,"pitch":-164.125,"roll":64.8125},"location":"Right Hip"},{"euler":{"heading":90.6875,"pitch":-115.0,"roll":-7.75},"location":"Right Knee"},{"euler":{"heading":17.4375,"pitch":-122.75,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.37"} +{"sensors":[{"euler":{"heading":1.375,"pitch":146.5,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":44.125,"pitch":98.9375,"roll":2.9375},"location":"Left Ankle"},{"euler":{"heading":46.8125,"pitch":-4.25,"roll":-13.5},"location":"Right Ankle"},{"euler":{"heading":122.125,"pitch":-164.3125,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":103.1875,"pitch":-111.625,"roll":-18.8125},"location":"Right Knee"},{"euler":{"heading":20.5625,"pitch":-126.5625,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.137"} +{"sensors":[{"euler":{"heading":10.125,"pitch":138.0625,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":51.3125,"pitch":101.0625,"roll":7.4375},"location":"Left Ankle"},{"euler":{"heading":29.1875,"pitch":-6.0625,"roll":-17.5625},"location":"Right Ankle"},{"euler":{"heading":129.25,"pitch":-157.0625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":112.25,"pitch":-108.5,"roll":-29.125},"location":"Right Knee"},{"euler":{"heading":22.3125,"pitch":-128.1875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.238"} +{"sensors":[{"euler":{"heading":17.375,"pitch":132.375,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":57.0625,"pitch":102.375,"roll":12.0625},"location":"Left Ankle"},{"euler":{"heading":31.25,"pitch":-13.0625,"roll":-12.9375},"location":"Right Ankle"},{"euler":{"heading":135.6875,"pitch":-152.3125,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":108.5,"pitch":-104.1875,"roll":-25.9375},"location":"Right Knee"},{"euler":{"heading":26.8125,"pitch":-135.4375,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.339"} +{"sensors":[{"euler":{"heading":23.5625,"pitch":128.3125,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":63.1875,"pitch":103.625,"roll":16.8125},"location":"Left Ankle"},{"euler":{"heading":52.4375,"pitch":-15.625,"roll":-6.875},"location":"Right Ankle"},{"euler":{"heading":133.5,"pitch":-153.1875,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":90.3125,"pitch":-102.8125,"roll":-10.6875},"location":"Right Knee"},{"euler":{"heading":29.375,"pitch":-140.5625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.440"} +{"sensors":[{"euler":{"heading":29.75,"pitch":124.875,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":68.1875,"pitch":104.9375,"roll":20.875},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-13.375,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":125.25,"pitch":-156.8125,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":63.0,"pitch":-100.6875,"roll":12.25},"location":"Right Knee"},{"euler":{"heading":32.3125,"pitch":-148.125,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.541"} +{"sensors":[{"euler":{"heading":34.625,"pitch":122.875,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":74.75,"pitch":105.5625,"roll":27.0},"location":"Left Ankle"},{"euler":{"heading":89.875,"pitch":-10.875,"roll":3.875},"location":"Right Ankle"},{"euler":{"heading":111.875,"pitch":-161.1875,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":48.4375,"pitch":-102.0625,"roll":26.0625},"location":"Right Knee"},{"euler":{"heading":35.0625,"pitch":-156.125,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.643"} +{"sensors":[{"euler":{"heading":43.625,"pitch":121.5625,"roll":13.8125},"location":"Left Knee"},{"euler":{"heading":82.0,"pitch":105.9375,"roll":38.375},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":-9.1875,"roll":1.875},"location":"Right Ankle"},{"euler":{"heading":109.4375,"pitch":-163.3125,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":52.5625,"pitch":-106.9375,"roll":21.0},"location":"Right Knee"},{"euler":{"heading":37.1875,"pitch":-158.0,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.744"} +{"sensors":[{"euler":{"heading":60.375,"pitch":122.5625,"roll":1.6875},"location":"Left Knee"},{"euler":{"heading":101.0625,"pitch":117.75,"roll":55.125},"location":"Left Ankle"},{"euler":{"heading":76.125,"pitch":-8.3125,"roll":-2.0625},"location":"Right Ankle"},{"euler":{"heading":113.4375,"pitch":-161.9375,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":60.3125,"pitch":-109.875,"roll":14.25},"location":"Right Knee"},{"euler":{"heading":22.3125,"pitch":-137.0,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.845"} +{"sensors":[{"euler":{"heading":66.125,"pitch":123.0625,"roll":0.25},"location":"Left Knee"},{"euler":{"heading":96.5625,"pitch":109.75,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":-6.75,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":112.6875,"pitch":-161.75,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":68.875,"pitch":-113.125,"roll":8.1875},"location":"Right Knee"},{"euler":{"heading":14.875,"pitch":-119.9375,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:11.946"} +{"sensors":[{"euler":{"heading":43.5,"pitch":134.125,"roll":13.8125},"location":"Left Knee"},{"euler":{"heading":71.5625,"pitch":94.3125,"roll":29.8125},"location":"Left Ankle"},{"euler":{"heading":71.625,"pitch":-4.75,"roll":-5.9375},"location":"Right Ankle"},{"euler":{"heading":116.625,"pitch":-160.25,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":74.0,"pitch":-114.5,"roll":4.375},"location":"Right Knee"},{"euler":{"heading":10.75,"pitch":-115.4375,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.47"} +{"sensors":[{"euler":{"heading":274.5625,"pitch":147.8125,"roll":47.75},"location":"Left Knee"},{"euler":{"heading":41.8125,"pitch":88.9375,"roll":5.875},"location":"Left Ankle"},{"euler":{"heading":67.375,"pitch":-2.375,"roll":-7.6875},"location":"Right Ankle"},{"euler":{"heading":118.5,"pitch":-160.6875,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":79.4375,"pitch":-115.75,"roll":-0.3125},"location":"Right Knee"},{"euler":{"heading":9.8125,"pitch":-115.5625,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.147"} +{"sensors":[{"euler":{"heading":284.75,"pitch":155.8125,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":27.875,"pitch":88.25,"roll":-9.75},"location":"Left Ankle"},{"euler":{"heading":61.5,"pitch":-1.9375,"roll":-10.6875},"location":"Right Ankle"},{"euler":{"heading":119.9375,"pitch":-162.75,"roll":64.5625},"location":"Right Hip"},{"euler":{"heading":88.5625,"pitch":-114.5,"roll":-7.375},"location":"Right Knee"},{"euler":{"heading":16.125,"pitch":-121.375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.250"} +{"sensors":[{"euler":{"heading":356.5625,"pitch":147.6875,"roll":37.75},"location":"Left Knee"},{"euler":{"heading":34.6875,"pitch":97.5625,"roll":-3.5},"location":"Left Ankle"},{"euler":{"heading":52.1875,"pitch":-4.3125,"roll":-13.625},"location":"Right Ankle"},{"euler":{"heading":124.125,"pitch":-165.1875,"roll":64.0625},"location":"Right Hip"},{"euler":{"heading":101.375,"pitch":-110.25,"roll":-17.5},"location":"Right Knee"},{"euler":{"heading":22.4375,"pitch":-125.4375,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.352"} +{"sensors":[{"euler":{"heading":8.9375,"pitch":139.25,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":49.1875,"pitch":98.875,"roll":7.375},"location":"Left Ankle"},{"euler":{"heading":33.375,"pitch":-6.6875,"roll":-16.4375},"location":"Right Ankle"},{"euler":{"heading":131.125,"pitch":-159.0625,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":112.0,"pitch":-106.75,"roll":-29.8125},"location":"Right Knee"},{"euler":{"heading":21.8125,"pitch":-127.4375,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.453"} +{"sensors":[{"euler":{"heading":15.125,"pitch":132.75,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":56.375,"pitch":101.25,"roll":9.9375},"location":"Left Ankle"},{"euler":{"heading":29.1875,"pitch":-11.0,"roll":-14.8125},"location":"Right Ankle"},{"euler":{"heading":138.1875,"pitch":-152.5625,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":112.3125,"pitch":-106.125,"roll":-29.375},"location":"Right Knee"},{"euler":{"heading":25.625,"pitch":-132.9375,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.554"} +{"sensors":[{"euler":{"heading":19.9375,"pitch":128.6875,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":64.5,"pitch":102.875,"roll":16.75},"location":"Left Ankle"},{"euler":{"heading":50.25,"pitch":-12.4375,"roll":-9.5625},"location":"Right Ankle"},{"euler":{"heading":136.6875,"pitch":-152.5625,"roll":44.125},"location":"Right Hip"},{"euler":{"heading":91.8125,"pitch":-103.4375,"roll":-12.875},"location":"Right Knee"},{"euler":{"heading":28.25,"pitch":-139.75,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.654"} +{"sensors":[{"euler":{"heading":26.4375,"pitch":124.875,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":69.8125,"pitch":104.5,"roll":20.9375},"location":"Left Ankle"},{"euler":{"heading":73.25,"pitch":-13.25,"roll":-1.1875},"location":"Right Ankle"},{"euler":{"heading":128.0625,"pitch":-156.625,"roll":42.625},"location":"Right Hip"},{"euler":{"heading":69.75,"pitch":-99.4375,"roll":8.4375},"location":"Right Knee"},{"euler":{"heading":30.375,"pitch":-146.125,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.755"} +{"sensors":[{"euler":{"heading":31.4375,"pitch":122.9375,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":73.3125,"pitch":104.0,"roll":25.875},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":-14.375,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":116.125,"pitch":-160.4375,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":55.1875,"pitch":-98.75,"roll":23.5},"location":"Right Knee"},{"euler":{"heading":31.5,"pitch":-151.4375,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.856"} +{"sensors":[{"euler":{"heading":38.0,"pitch":122.4375,"roll":16.4375},"location":"Left Knee"},{"euler":{"heading":80.125,"pitch":104.375,"roll":34.6875},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":-10.1875,"roll":0.75},"location":"Right Ankle"},{"euler":{"heading":107.3125,"pitch":-164.8125,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":52.4375,"pitch":-107.1875,"roll":22.8125},"location":"Right Knee"},{"euler":{"heading":35.6875,"pitch":-158.5625,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:12.960"} +{"sensors":[{"euler":{"heading":51.75,"pitch":125.625,"roll":4.25},"location":"Left Knee"},{"euler":{"heading":91.6875,"pitch":108.375,"roll":51.875},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":-9.4375,"roll":-2.125},"location":"Right Ankle"},{"euler":{"heading":113.25,"pitch":-163.0625,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":59.25,"pitch":-110.25,"roll":16.375},"location":"Right Knee"},{"euler":{"heading":26.375,"pitch":-146.75,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.60"} +{"sensors":[{"euler":{"heading":65.875,"pitch":120.8125,"roll":-0.5},"location":"Left Knee"},{"euler":{"heading":92.125,"pitch":112.6875,"roll":55.4375},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-7.875,"roll":-4.5625},"location":"Right Ankle"},{"euler":{"heading":111.0,"pitch":-163.625,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":67.125,"pitch":-113.0625,"roll":10.625},"location":"Right Knee"},{"euler":{"heading":17.25,"pitch":-121.75,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.161"} +{"sensors":[{"euler":{"heading":53.8125,"pitch":129.0,"roll":9.3125},"location":"Left Knee"},{"euler":{"heading":64.875,"pitch":99.4375,"roll":37.375},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":-6.0,"roll":-7.125},"location":"Right Ankle"},{"euler":{"heading":116.875,"pitch":-161.875,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":73.4375,"pitch":-113.3125,"roll":5.8125},"location":"Right Knee"},{"euler":{"heading":11.375,"pitch":-116.5625,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.264"} +{"sensors":[{"euler":{"heading":271.9375,"pitch":143.125,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":46.25,"pitch":92.0625,"roll":10.125},"location":"Left Ankle"},{"euler":{"heading":69.6875,"pitch":-4.3125,"roll":-7.5625},"location":"Right Ankle"},{"euler":{"heading":118.4375,"pitch":-162.3125,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":78.8125,"pitch":-113.9375,"roll":1.3125},"location":"Right Knee"},{"euler":{"heading":9.5,"pitch":-114.9375,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.365"} +{"sensors":[{"euler":{"heading":284.3125,"pitch":153.625,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":26.8125,"pitch":89.3125,"roll":-9.75},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":-3.0625,"roll":-9.9375},"location":"Right Ankle"},{"euler":{"heading":120.1875,"pitch":-163.5,"roll":64.75},"location":"Right Hip"},{"euler":{"heading":86.75,"pitch":-113.625,"roll":-4.9375},"location":"Right Knee"},{"euler":{"heading":347.75,"pitch":-130.8125,"roll":43.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.465"} +{"sensors":[{"euler":{"heading":357.5,"pitch":150.0,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":30.125,"pitch":96.3125,"roll":-8.0625},"location":"Left Ankle"},{"euler":{"heading":52.9375,"pitch":-3.625,"roll":-13.625},"location":"Right Ankle"},{"euler":{"heading":122.875,"pitch":-165.3125,"roll":65.0},"location":"Right Hip"},{"euler":{"heading":97.5625,"pitch":-111.1875,"roll":-14.3125},"location":"Right Knee"},{"euler":{"heading":15.375,"pitch":-128.625,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.566"} +{"sensors":[{"euler":{"heading":7.875,"pitch":141.875,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":48.875,"pitch":99.5625,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":35.4375,"pitch":-7.125,"roll":-14.6875},"location":"Right Ankle"},{"euler":{"heading":128.6875,"pitch":-159.75,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":109.625,"pitch":-106.0625,"roll":-27.0625},"location":"Right Knee"},{"euler":{"heading":14.0625,"pitch":-129.5625,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.666"} +{"sensors":[{"euler":{"heading":15.9375,"pitch":134.75,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":55.125,"pitch":102.6875,"roll":9.875},"location":"Left Ankle"},{"euler":{"heading":28.5,"pitch":-6.5,"roll":-15.25},"location":"Right Ankle"},{"euler":{"heading":136.5625,"pitch":-151.5625,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":109.75,"pitch":-109.375,"roll":-27.4375},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-134.0625,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.767"} +{"sensors":[{"euler":{"heading":20.5,"pitch":129.375,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":62.1875,"pitch":104.1875,"roll":14.3125},"location":"Left Ankle"},{"euler":{"heading":45.0625,"pitch":-9.5,"roll":-10.5},"location":"Right Ankle"},{"euler":{"heading":137.75,"pitch":-150.125,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":92.25,"pitch":-105.25,"roll":-13.125},"location":"Right Knee"},{"euler":{"heading":25.25,"pitch":-141.625,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.867"} +{"sensors":[{"euler":{"heading":27.75,"pitch":124.6875,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":67.125,"pitch":105.875,"roll":18.25},"location":"Left Ankle"},{"euler":{"heading":68.8125,"pitch":-13.375,"roll":-2.1875},"location":"Right Ankle"},{"euler":{"heading":133.625,"pitch":-153.875,"roll":42.5},"location":"Right Hip"},{"euler":{"heading":69.1875,"pitch":-99.9375,"roll":7.0},"location":"Right Knee"},{"euler":{"heading":29.0625,"pitch":-147.0,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:13.968"} +{"sensors":[{"euler":{"heading":32.0,"pitch":121.25,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":73.25,"pitch":107.9375,"roll":23.3125},"location":"Left Ankle"},{"euler":{"heading":88.0625,"pitch":-12.625,"roll":4.1875},"location":"Right Ankle"},{"euler":{"heading":126.0,"pitch":-156.25,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":51.1875,"pitch":-99.5625,"roll":24.125},"location":"Right Knee"},{"euler":{"heading":31.9375,"pitch":-151.0,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.69"} +{"sensors":[{"euler":{"heading":38.375,"pitch":119.25,"roll":20.4375},"location":"Left Knee"},{"euler":{"heading":81.375,"pitch":109.0,"roll":31.5625},"location":"Left Ankle"},{"euler":{"heading":91.75,"pitch":-7.4375,"roll":2.6875},"location":"Right Ankle"},{"euler":{"heading":111.8125,"pitch":-161.75,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":42.375,"pitch":-105.125,"roll":28.25},"location":"Right Knee"},{"euler":{"heading":32.6875,"pitch":-155.4375,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.170"} +{"sensors":[{"euler":{"heading":48.25,"pitch":120.125,"roll":9.0625},"location":"Left Knee"},{"euler":{"heading":87.0,"pitch":107.625,"roll":46.25},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":-9.25,"roll":-1.0625},"location":"Right Ankle"},{"euler":{"heading":117.25,"pitch":-160.625,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":51.75,"pitch":-108.0,"roll":20.5625},"location":"Right Knee"},{"euler":{"heading":28.75,"pitch":-150.6875,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.270"} +{"sensors":[{"euler":{"heading":63.25,"pitch":119.0625,"roll":0.5625},"location":"Left Knee"},{"euler":{"heading":99.8125,"pitch":114.125,"roll":58.875},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-7.1875,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":114.8125,"pitch":-161.75,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":62.0,"pitch":-112.375,"roll":13.5625},"location":"Right Knee"},{"euler":{"heading":17.625,"pitch":-126.3125,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.371"} +{"sensors":[{"euler":{"heading":54.5625,"pitch":127.0625,"roll":7.0},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":97.1875,"roll":46.75},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":-5.3125,"roll":-5.5625},"location":"Right Ankle"},{"euler":{"heading":118.0,"pitch":-159.3125,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":68.75,"pitch":-114.0625,"roll":8.625},"location":"Right Knee"},{"euler":{"heading":8.8125,"pitch":-120.25,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.471"} +{"sensors":[{"euler":{"heading":14.0,"pitch":140.875,"roll":24.75},"location":"Left Knee"},{"euler":{"heading":57.625,"pitch":88.8125,"roll":20.375},"location":"Left Ankle"},{"euler":{"heading":71.0,"pitch":-5.1875,"roll":-7.125},"location":"Right Ankle"},{"euler":{"heading":119.125,"pitch":-160.4375,"roll":62.375},"location":"Right Hip"},{"euler":{"heading":75.625,"pitch":-114.0,"roll":3.25},"location":"Right Knee"},{"euler":{"heading":4.9375,"pitch":-116.875,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.572"} +{"sensors":[{"euler":{"heading":282.125,"pitch":152.0625,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":33.1875,"pitch":89.8125,"roll":-4.0625},"location":"Left Ankle"},{"euler":{"heading":67.0625,"pitch":-4.25,"roll":-9.0625},"location":"Right Ankle"},{"euler":{"heading":120.375,"pitch":-162.0,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":82.5,"pitch":-114.375,"roll":-1.9375},"location":"Right Knee"},{"euler":{"heading":8.75,"pitch":-118.9375,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.672"} +{"sensors":[{"euler":{"heading":288.3125,"pitch":156.125,"roll":38.5625},"location":"Left Knee"},{"euler":{"heading":27.875,"pitch":92.8125,"roll":-10.8125},"location":"Left Ankle"},{"euler":{"heading":59.9375,"pitch":-3.25,"roll":-12.25},"location":"Right Ankle"},{"euler":{"heading":121.75,"pitch":-165.5,"roll":64.9375},"location":"Right Hip"},{"euler":{"heading":91.4375,"pitch":-112.8125,"roll":-10.0625},"location":"Right Knee"},{"euler":{"heading":14.75,"pitch":-124.625,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.773"} +{"sensors":[{"euler":{"heading":359.125,"pitch":146.0625,"roll":38.25},"location":"Left Knee"},{"euler":{"heading":44.75,"pitch":98.375,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":47.0625,"pitch":-8.6875,"roll":-13.875},"location":"Right Ankle"},{"euler":{"heading":126.5,"pitch":-165.0,"roll":63.25},"location":"Right Hip"},{"euler":{"heading":104.5625,"pitch":-106.375,"roll":-22.625},"location":"Right Knee"},{"euler":{"heading":16.75,"pitch":-126.375,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.874"} +{"sensors":[{"euler":{"heading":9.375,"pitch":138.0625,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":50.25,"pitch":101.125,"roll":6.375},"location":"Left Ankle"},{"euler":{"heading":29.5625,"pitch":-4.8125,"roll":-15.625},"location":"Right Ankle"},{"euler":{"heading":133.1875,"pitch":-154.4375,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":110.3125,"pitch":-112.5,"roll":-28.5625},"location":"Right Knee"},{"euler":{"heading":19.375,"pitch":-129.5,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:14.975"} +{"sensors":[{"euler":{"heading":14.0,"pitch":133.625,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":55.5,"pitch":102.0625,"roll":11.0625},"location":"Left Ankle"},{"euler":{"heading":36.4375,"pitch":-5.5,"roll":-11.0625},"location":"Right Ankle"},{"euler":{"heading":136.875,"pitch":-151.0625,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":99.125,"pitch":-109.1875,"roll":-21.1875},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-134.6875,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.75"} +{"sensors":[{"euler":{"heading":20.3125,"pitch":127.75,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":64.3125,"pitch":104.4375,"roll":16.1875},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-8.8125,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":134.5625,"pitch":-152.125,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":76.25,"pitch":-103.75,"roll":14.1875},"location":"Right Knee"},{"euler":{"heading":27.0625,"pitch":-141.9375,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.175"} +{"sensors":[{"euler":{"heading":27.5625,"pitch":123.4375,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":69.0625,"pitch":105.375,"roll":20.75},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":-10.9375,"roll":2.1875},"location":"Right Ankle"},{"euler":{"heading":125.1875,"pitch":-157.1875,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":56.1875,"pitch":-101.625,"roll":17.375},"location":"Right Knee"},{"euler":{"heading":27.9375,"pitch":-144.25,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.276"} +{"sensors":[{"euler":{"heading":32.5625,"pitch":121.5625,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":74.8125,"pitch":105.6875,"roll":27.0625},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":-10.125,"roll":3.6875},"location":"Right Ankle"},{"euler":{"heading":114.875,"pitch":-160.8125,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":46.875,"pitch":-104.1875,"roll":27.25},"location":"Right Knee"},{"euler":{"heading":27.875,"pitch":-148.75,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.377"} +{"sensors":[{"euler":{"heading":39.0625,"pitch":120.5625,"roll":16.6875},"location":"Left Knee"},{"euler":{"heading":86.8125,"pitch":106.25,"roll":40.0},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":-5.625,"roll":0.3125},"location":"Right Ankle"},{"euler":{"heading":108.875,"pitch":-163.125,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":47.375,"pitch":-111.3125,"roll":22.875},"location":"Right Knee"},{"euler":{"heading":30.4375,"pitch":-154.1875,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.477"} +{"sensors":[{"euler":{"heading":54.4375,"pitch":121.8125,"roll":4.6875},"location":"Left Knee"},{"euler":{"heading":98.375,"pitch":114.875,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-2.9375,"roll":-3.0625},"location":"Right Ankle"},{"euler":{"heading":112.0,"pitch":-161.875,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":55.9375,"pitch":-114.0,"roll":15.875},"location":"Right Knee"},{"euler":{"heading":18.75,"pitch":-138.375,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.578"} +{"sensors":[{"euler":{"heading":63.75,"pitch":121.375,"roll":0.9375},"location":"Left Knee"},{"euler":{"heading":94.0,"pitch":109.0625,"roll":53.6875},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":-2.1875,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":112.1875,"pitch":-162.375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":65.1875,"pitch":-115.9375,"roll":10.375},"location":"Right Knee"},{"euler":{"heading":11.25,"pitch":-122.125,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.678"} +{"sensors":[{"euler":{"heading":48.5,"pitch":131.625,"roll":11.0},"location":"Left Knee"},{"euler":{"heading":74.6875,"pitch":96.5,"roll":34.9375},"location":"Left Ankle"},{"euler":{"heading":71.8125,"pitch":-2.1875,"roll":-6.5},"location":"Right Ankle"},{"euler":{"heading":115.25,"pitch":-161.6875,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":71.5,"pitch":-116.0,"roll":5.875},"location":"Right Knee"},{"euler":{"heading":5.5,"pitch":-117.75,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.779"} +{"sensors":[{"euler":{"heading":287.375,"pitch":145.4375,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":43.375,"pitch":89.75,"roll":7.875},"location":"Left Ankle"},{"euler":{"heading":67.75,"pitch":-0.9375,"roll":-8.0},"location":"Right Ankle"},{"euler":{"heading":115.875,"pitch":-162.8125,"roll":63.9375},"location":"Right Hip"},{"euler":{"heading":77.4375,"pitch":-116.875,"roll":1.25},"location":"Right Knee"},{"euler":{"heading":5.8125,"pitch":-116.6875,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.880"} +{"sensors":[{"euler":{"heading":285.0625,"pitch":154.6875,"roll":37.6875},"location":"Left Knee"},{"euler":{"heading":26.0625,"pitch":88.6875,"roll":-10.875},"location":"Left Ankle"},{"euler":{"heading":61.125,"pitch":0.125,"roll":-10.875},"location":"Right Ankle"},{"euler":{"heading":118.25,"pitch":-164.5,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":86.25,"pitch":-116.0,"roll":-5.375},"location":"Right Knee"},{"euler":{"heading":11.75,"pitch":-121.5,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:15.981"} +{"sensors":[{"euler":{"heading":356.5625,"pitch":147.9375,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":31.1875,"pitch":96.3125,"roll":-7.5625},"location":"Left Ankle"},{"euler":{"heading":48.5625,"pitch":0.0,"roll":-13.875},"location":"Right Ankle"},{"euler":{"heading":121.75,"pitch":-166.9375,"roll":65.25},"location":"Right Hip"},{"euler":{"heading":96.9375,"pitch":-113.0625,"roll":-14.375},"location":"Right Knee"},{"euler":{"heading":18.5,"pitch":-125.25,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.83"} +{"sensors":[{"euler":{"heading":10.0625,"pitch":138.6875,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":51.8125,"pitch":101.25,"roll":8.5},"location":"Left Ankle"},{"euler":{"heading":33.625,"pitch":-2.6875,"roll":-15.125},"location":"Right Ankle"},{"euler":{"heading":129.0625,"pitch":-160.8125,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":108.6875,"pitch":-108.8125,"roll":-26.3125},"location":"Right Knee"},{"euler":{"heading":19.0,"pitch":-127.5625,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.184"} +{"sensors":[{"euler":{"heading":18.125,"pitch":131.25,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":56.6875,"pitch":103.6875,"roll":9.6875},"location":"Left Ankle"},{"euler":{"heading":29.1875,"pitch":-7.125,"roll":-14.6875},"location":"Right Ankle"},{"euler":{"heading":136.0,"pitch":-153.5,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":112.1875,"pitch":-106.375,"roll":-30.875},"location":"Right Knee"},{"euler":{"heading":24.5625,"pitch":-133.4375,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.284"} +{"sensors":[{"euler":{"heading":20.8125,"pitch":128.375,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":61.0,"pitch":102.6875,"roll":14.6875},"location":"Left Ankle"},{"euler":{"heading":45.6875,"pitch":-12.5,"roll":-10.3125},"location":"Right Ankle"},{"euler":{"heading":139.3125,"pitch":-152.25,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":97.4375,"pitch":-103.25,"roll":-17.5625},"location":"Right Knee"},{"euler":{"heading":27.1875,"pitch":-141.4375,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.384"} +{"sensors":[{"euler":{"heading":26.9375,"pitch":124.75,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":68.875,"pitch":104.625,"roll":20.6875},"location":"Left Ankle"},{"euler":{"heading":70.25,"pitch":-13.3125,"roll":-1.8125},"location":"Right Ankle"},{"euler":{"heading":131.9375,"pitch":-155.5625,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":69.875,"pitch":-99.625,"roll":4.875},"location":"Right Knee"},{"euler":{"heading":28.125,"pitch":-145.5625,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.485"} +{"sensors":[{"euler":{"heading":33.3125,"pitch":121.8125,"roll":24.0625},"location":"Left Knee"},{"euler":{"heading":73.625,"pitch":105.6875,"roll":25.3125},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":-11.5,"roll":3.875},"location":"Right Ankle"},{"euler":{"heading":119.75,"pitch":-159.0,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":50.5,"pitch":-100.0,"roll":22.8125},"location":"Right Knee"},{"euler":{"heading":29.8125,"pitch":-150.0,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.585"} +{"sensors":[{"euler":{"heading":40.3125,"pitch":120.1875,"roll":17.5},"location":"Left Knee"},{"euler":{"heading":80.5,"pitch":106.5,"roll":32.8125},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":-8.0625,"roll":1.25},"location":"Right Ankle"},{"euler":{"heading":111.875,"pitch":-161.9375,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":45.5625,"pitch":-104.25,"roll":26.0},"location":"Right Knee"},{"euler":{"heading":33.5,"pitch":-157.375,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.686"} +{"sensors":[{"euler":{"heading":51.6875,"pitch":122.4375,"roll":5.5},"location":"Left Knee"},{"euler":{"heading":88.6875,"pitch":107.4375,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":79.3125,"pitch":-6.6875,"roll":-2.5},"location":"Right Ankle"},{"euler":{"heading":114.625,"pitch":-161.25,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":52.1875,"pitch":-109.8125,"roll":18.75},"location":"Right Knee"},{"euler":{"heading":30.125,"pitch":-151.1875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.787"} +{"sensors":[{"euler":{"heading":66.3125,"pitch":118.5625,"roll":-1.25},"location":"Left Knee"},{"euler":{"heading":99.75,"pitch":114.8125,"roll":58.0625},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-5.375,"roll":-5.0625},"location":"Right Ankle"},{"euler":{"heading":113.625,"pitch":-162.0625,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":62.3125,"pitch":-112.9375,"roll":12.1875},"location":"Right Knee"},{"euler":{"heading":20.0625,"pitch":-127.125,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.888"} +{"sensors":[{"euler":{"heading":60.0,"pitch":125.8125,"roll":4.75},"location":"Left Knee"},{"euler":{"heading":84.375,"pitch":99.8125,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":72.875,"pitch":-3.625,"roll":-6.5},"location":"Right Ankle"},{"euler":{"heading":116.3125,"pitch":-162.0,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":70.0,"pitch":-114.875,"roll":7.125},"location":"Right Knee"},{"euler":{"heading":11.9375,"pitch":-119.25,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:16.988"} +{"sensors":[{"euler":{"heading":21.625,"pitch":140.1875,"roll":22.8125},"location":"Left Knee"},{"euler":{"heading":52.9375,"pitch":91.8125,"roll":16.375},"location":"Left Ankle"},{"euler":{"heading":68.75,"pitch":-2.6875,"roll":-7.75},"location":"Right Ankle"},{"euler":{"heading":118.3125,"pitch":-162.375,"roll":63.0},"location":"Right Hip"},{"euler":{"heading":76.3125,"pitch":-114.8125,"roll":2.3125},"location":"Right Knee"},{"euler":{"heading":8.5,"pitch":-117.4375,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.89"} +{"sensors":[{"euler":{"heading":281.1875,"pitch":151.9375,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":29.75,"pitch":88.375,"roll":-7.3125},"location":"Left Ankle"},{"euler":{"heading":63.3125,"pitch":-1.5625,"roll":-10.0625},"location":"Right Ankle"},{"euler":{"heading":120.25,"pitch":-163.375,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":83.8125,"pitch":-114.6875,"roll":-3.5625},"location":"Right Knee"},{"euler":{"heading":11.1875,"pitch":-121.0,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.190"} +{"sensors":[{"euler":{"heading":346.375,"pitch":153.4375,"roll":37.8125},"location":"Left Knee"},{"euler":{"heading":27.9375,"pitch":91.4375,"roll":-11.0625},"location":"Left Ankle"},{"euler":{"heading":56.0,"pitch":-1.0625,"roll":-12.5625},"location":"Right Ankle"},{"euler":{"heading":121.5625,"pitch":-166.6875,"roll":64.5},"location":"Right Hip"},{"euler":{"heading":86.4375,"pitch":-112.0625,"roll":-7.0},"location":"Right Knee"},{"euler":{"heading":15.5625,"pitch":-124.8125,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.290"} +{"sensors":[{"euler":{"heading":3.6875,"pitch":142.8125,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":46.4375,"pitch":97.625,"roll":5.0},"location":"Left Ankle"},{"euler":{"heading":42.4375,"pitch":-6.0,"roll":-14.25},"location":"Right Ankle"},{"euler":{"heading":126.75,"pitch":-166.625,"roll":62.625},"location":"Right Hip"},{"euler":{"heading":100.6875,"pitch":-105.5,"roll":-19.375},"location":"Right Knee"},{"euler":{"heading":18.0625,"pitch":-126.5625,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.391"} +{"sensors":[{"euler":{"heading":13.5625,"pitch":135.125,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":50.25,"pitch":99.625,"roll":7.0},"location":"Left Ankle"},{"euler":{"heading":25.3125,"pitch":-5.5,"roll":-18.0},"location":"Right Ankle"},{"euler":{"heading":135.1875,"pitch":-155.5625,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":106.25,"pitch":-107.75,"roll":-25.625},"location":"Right Knee"},{"euler":{"heading":20.375,"pitch":-128.5,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.492"} +{"sensors":[{"euler":{"heading":17.25,"pitch":131.0625,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":54.6875,"pitch":99.875,"roll":11.125},"location":"Left Ankle"},{"euler":{"heading":33.9375,"pitch":-8.875,"roll":-13.625},"location":"Right Ankle"},{"euler":{"heading":139.0625,"pitch":-152.3125,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":93.3125,"pitch":-104.6875,"roll":-15.9375},"location":"Right Knee"},{"euler":{"heading":22.75,"pitch":-135.8125,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.593"} +{"sensors":[{"euler":{"heading":22.375,"pitch":127.125,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":64.8125,"pitch":102.1875,"roll":18.1875},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":-13.9375,"roll":-5.625},"location":"Right Ankle"},{"euler":{"heading":135.8125,"pitch":-154.25,"roll":42.75},"location":"Right Hip"},{"euler":{"heading":71.0625,"pitch":-99.375,"roll":4.0625},"location":"Right Knee"},{"euler":{"heading":25.5,"pitch":-142.3125,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.694"} +{"sensors":[{"euler":{"heading":26.5,"pitch":125.0,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":69.875,"pitch":102.9375,"roll":23.4375},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":-11.5,"roll":-0.125},"location":"Right Ankle"},{"euler":{"heading":126.125,"pitch":-158.0625,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":49.375,"pitch":-98.5625,"roll":23.9375},"location":"Right Knee"},{"euler":{"heading":26.1875,"pitch":-145.625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.794"} +{"sensors":[{"euler":{"heading":31.6875,"pitch":123.125,"roll":22.0625},"location":"Left Knee"},{"euler":{"heading":75.1875,"pitch":103.0625,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":-11.6875,"roll":2.6875},"location":"Right Ankle"},{"euler":{"heading":112.1875,"pitch":-162.25,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":40.8125,"pitch":-101.25,"roll":32.75},"location":"Right Knee"},{"euler":{"heading":28.5625,"pitch":-151.6875,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.895"} +{"sensors":[{"euler":{"heading":41.5625,"pitch":121.9375,"roll":13.6875},"location":"Left Knee"},{"euler":{"heading":81.6875,"pitch":103.3125,"roll":38.6875},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":-9.0,"roll":-0.75},"location":"Right Ankle"},{"euler":{"heading":109.375,"pitch":-164.25,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":43.3125,"pitch":-107.3125,"roll":27.375},"location":"Right Knee"},{"euler":{"heading":33.125,"pitch":-157.75,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:17.995"} +{"sensors":[{"euler":{"heading":56.625,"pitch":123.75,"roll":2.375},"location":"Left Knee"},{"euler":{"heading":98.5,"pitch":112.0625,"roll":55.75},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":-7.5625,"roll":-3.5},"location":"Right Ankle"},{"euler":{"heading":111.625,"pitch":-163.3125,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":52.0625,"pitch":-111.25,"roll":20.3125},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-138.8125,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.97"} +{"sensors":[{"euler":{"heading":62.625,"pitch":124.1875,"roll":0.5625},"location":"Left Knee"},{"euler":{"heading":92.6875,"pitch":101.9375,"roll":53.9375},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-7.125,"roll":-5.8125},"location":"Right Ankle"},{"euler":{"heading":112.5,"pitch":-164.5,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":60.9375,"pitch":-112.3125,"roll":14.25},"location":"Right Knee"},{"euler":{"heading":9.625,"pitch":-120.6875,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.198"} +{"sensors":[{"euler":{"heading":44.1875,"pitch":132.9375,"roll":12.6875},"location":"Left Knee"},{"euler":{"heading":68.25,"pitch":92.375,"roll":31.5625},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-6.5625,"roll":-8.8125},"location":"Right Ankle"},{"euler":{"heading":117.0,"pitch":-162.9375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":67.9375,"pitch":-111.25,"roll":9.4375},"location":"Right Knee"},{"euler":{"heading":7.125,"pitch":-117.5625,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.298"} +{"sensors":[{"euler":{"heading":2.875,"pitch":145.375,"roll":46.6875},"location":"Left Knee"},{"euler":{"heading":39.5,"pitch":89.6875,"roll":4.375},"location":"Left Ankle"},{"euler":{"heading":66.4375,"pitch":-5.0625,"roll":-8.5},"location":"Right Ankle"},{"euler":{"heading":120.75,"pitch":-162.6875,"roll":62.4375},"location":"Right Hip"},{"euler":{"heading":72.9375,"pitch":-111.375,"roll":4.8125},"location":"Right Knee"},{"euler":{"heading":8.0,"pitch":-117.4375,"roll":48.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.399"} +{"sensors":[{"euler":{"heading":344.4375,"pitch":153.625,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":27.8125,"pitch":88.9375,"roll":-10.0625},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-3.3125,"roll":-11.0625},"location":"Right Ankle"},{"euler":{"heading":122.875,"pitch":-164.125,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":80.4375,"pitch":-111.125,"roll":-1.6875},"location":"Right Knee"},{"euler":{"heading":13.3125,"pitch":-123.0,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.499"} +{"sensors":[{"euler":{"heading":356.25,"pitch":146.25,"roll":38.5},"location":"Left Knee"},{"euler":{"heading":36.875,"pitch":95.1875,"roll":-3.625},"location":"Left Ankle"},{"euler":{"heading":47.75,"pitch":-6.0,"roll":-14.0},"location":"Right Ankle"},{"euler":{"heading":126.125,"pitch":-166.4375,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":92.75,"pitch":-106.875,"roll":-12.0625},"location":"Right Knee"},{"euler":{"heading":17.0625,"pitch":-126.25,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.600"} +{"sensors":[{"euler":{"heading":6.4375,"pitch":139.0625,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":46.4375,"pitch":96.125,"roll":5.375},"location":"Left Ankle"},{"euler":{"heading":31.3125,"pitch":-5.0,"roll":-16.625},"location":"Right Ankle"},{"euler":{"heading":134.1875,"pitch":-158.25,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":101.5625,"pitch":-107.3125,"roll":-22.5},"location":"Right Knee"},{"euler":{"heading":17.25,"pitch":-128.0625,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.702"} +{"sensors":[{"euler":{"heading":11.25,"pitch":134.0,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":53.0,"pitch":98.1875,"roll":9.125},"location":"Left Ankle"},{"euler":{"heading":35.8125,"pitch":-5.4375,"roll":-13.5625},"location":"Right Ankle"},{"euler":{"heading":136.6875,"pitch":-152.9375,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":96.125,"pitch":-106.1875,"roll":-18.9375},"location":"Right Knee"},{"euler":{"heading":19.8125,"pitch":-134.5625,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.803"} +{"sensors":[{"euler":{"heading":16.6875,"pitch":130.0,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":57.5625,"pitch":98.625,"roll":13.625},"location":"Left Ankle"},{"euler":{"heading":58.625,"pitch":-12.625,"roll":-6.125},"location":"Right Ankle"},{"euler":{"heading":134.5625,"pitch":-154.0625,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":76.625,"pitch":-100.9375,"roll":-0.625},"location":"Right Knee"},{"euler":{"heading":22.25,"pitch":-138.875,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:18.904"} +{"sensors":[{"euler":{"heading":23.8125,"pitch":126.125,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":62.0,"pitch":100.25,"roll":17.5625},"location":"Left Ankle"},{"euler":{"heading":83.1875,"pitch":-13.4375,"roll":0.3125},"location":"Right Ankle"},{"euler":{"heading":127.3125,"pitch":-158.1875,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":55.0,"pitch":-98.0,"roll":19.3125},"location":"Right Knee"},{"euler":{"heading":24.5625,"pitch":-143.5625,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.5"} +{"sensors":[{"euler":{"heading":30.1875,"pitch":123.5625,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":67.25,"pitch":101.3125,"roll":23.4375},"location":"Left Ankle"},{"euler":{"heading":92.875,"pitch":-14.5,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":116.5625,"pitch":-161.0625,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":45.125,"pitch":-99.4375,"roll":30.375},"location":"Right Knee"},{"euler":{"heading":28.5,"pitch":-150.125,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.107"} +{"sensors":[{"euler":{"heading":38.3125,"pitch":122.0625,"roll":16.625},"location":"Left Knee"},{"euler":{"heading":73.9375,"pitch":102.3125,"roll":32.5625},"location":"Left Ankle"},{"euler":{"heading":86.5,"pitch":-10.75,"roll":0.5625},"location":"Right Ankle"},{"euler":{"heading":111.5,"pitch":-163.3125,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":45.125,"pitch":-106.1875,"roll":26.8125},"location":"Right Knee"},{"euler":{"heading":32.4375,"pitch":-155.25,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.208"} +{"sensors":[{"euler":{"heading":54.5625,"pitch":123.5625,"roll":4.0},"location":"Left Knee"},{"euler":{"heading":86.5625,"pitch":110.75,"roll":48.8125},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":-8.5,"roll":-3.4375},"location":"Right Ankle"},{"euler":{"heading":114.75,"pitch":-162.4375,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":52.75,"pitch":-109.625,"roll":20.125},"location":"Right Knee"},{"euler":{"heading":19.6875,"pitch":-139.25,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.309"} +{"sensors":[{"euler":{"heading":64.1875,"pitch":121.1875,"roll":0.75},"location":"Left Knee"},{"euler":{"heading":91.4375,"pitch":109.0,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":76.125,"pitch":-6.1875,"roll":-5.6875},"location":"Right Ankle"},{"euler":{"heading":112.6875,"pitch":-163.25,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":59.75,"pitch":-113.625,"roll":14.6875},"location":"Right Knee"},{"euler":{"heading":10.6875,"pitch":-119.9375,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.410"} +{"sensors":[{"euler":{"heading":49.75,"pitch":130.0625,"roll":10.625},"location":"Left Knee"},{"euler":{"heading":74.5625,"pitch":94.875,"roll":33.5625},"location":"Left Ankle"},{"euler":{"heading":72.75,"pitch":-4.5625,"roll":-7.6875},"location":"Right Ankle"},{"euler":{"heading":116.4375,"pitch":-161.75,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":65.25,"pitch":-114.375,"roll":10.4375},"location":"Right Knee"},{"euler":{"heading":5.875,"pitch":-117.4375,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.510"} +{"sensors":[{"euler":{"heading":4.5,"pitch":143.75,"roll":29.9375},"location":"Left Knee"},{"euler":{"heading":42.9375,"pitch":90.625,"roll":7.125},"location":"Left Ankle"},{"euler":{"heading":68.5,"pitch":-3.1875,"roll":-8.875},"location":"Right Ankle"},{"euler":{"heading":119.0625,"pitch":-162.0,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":71.625,"pitch":-114.625,"roll":5.375},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":-116.1875,"roll":47.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.612"} +{"sensors":[{"euler":{"heading":342.875,"pitch":153.3125,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":27.0625,"pitch":87.5625,"roll":-10.875},"location":"Left Ankle"},{"euler":{"heading":62.125,"pitch":-2.375,"roll":-10.75},"location":"Right Ankle"},{"euler":{"heading":119.875,"pitch":-164.1875,"roll":64.25},"location":"Right Hip"},{"euler":{"heading":80.625,"pitch":-113.5625,"roll":-1.25},"location":"Right Knee"},{"euler":{"heading":11.3125,"pitch":-122.1875,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.712"} +{"sensors":[{"euler":{"heading":355.6875,"pitch":147.4375,"roll":38.4375},"location":"Left Knee"},{"euler":{"heading":32.5,"pitch":92.5,"roll":-6.5},"location":"Left Ankle"},{"euler":{"heading":53.3125,"pitch":-3.75,"roll":-14.25},"location":"Right Ankle"},{"euler":{"heading":123.25,"pitch":-166.5625,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":91.8125,"pitch":-110.4375,"roll":-10.5625},"location":"Right Knee"},{"euler":{"heading":16.25,"pitch":-125.25,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.813"} +{"sensors":[{"euler":{"heading":6.5,"pitch":139.75,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":46.25,"pitch":96.375,"roll":4.75},"location":"Left Ankle"},{"euler":{"heading":36.5,"pitch":-4.0,"roll":-14.3125},"location":"Right Ankle"},{"euler":{"heading":126.9375,"pitch":-162.625,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":102.0,"pitch":-107.6875,"roll":-21.9375},"location":"Right Knee"},{"euler":{"heading":14.6875,"pitch":-127.4375,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:19.914"} +{"sensors":[{"euler":{"heading":9.8125,"pitch":135.6875,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":50.25,"pitch":96.3125,"roll":7.75},"location":"Left Ankle"},{"euler":{"heading":32.5625,"pitch":-7.625,"roll":-12.75},"location":"Right Ankle"},{"euler":{"heading":131.5,"pitch":-155.75,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":101.8125,"pitch":-106.3125,"roll":-23.125},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-133.625,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.15"} +{"sensors":[{"euler":{"heading":16.0625,"pitch":131.5625,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":56.6875,"pitch":97.3125,"roll":13.6875},"location":"Left Ankle"},{"euler":{"heading":48.0,"pitch":-10.125,"roll":-9.625},"location":"Right Ankle"},{"euler":{"heading":133.3125,"pitch":-153.625,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":85.6875,"pitch":-103.6875,"roll":-9.0625},"location":"Right Knee"},{"euler":{"heading":21.5625,"pitch":-139.8125,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.116"} +{"sensors":[{"euler":{"heading":25.375,"pitch":126.1875,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":63.5625,"pitch":100.375,"roll":18.5625},"location":"Left Ankle"},{"euler":{"heading":71.25,"pitch":-13.125,"roll":-2.75},"location":"Right Ankle"},{"euler":{"heading":126.8125,"pitch":-158.0625,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":63.0625,"pitch":-99.6875,"roll":11.3125},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-143.25,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.217"} +{"sensors":[{"euler":{"heading":31.3125,"pitch":123.5,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":69.0,"pitch":101.5,"roll":23.75},"location":"Left Ankle"},{"euler":{"heading":90.6875,"pitch":-13.5625,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":117.4375,"pitch":-160.1875,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":46.4375,"pitch":-99.4375,"roll":28.75},"location":"Right Knee"},{"euler":{"heading":27.0,"pitch":-149.1875,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.319"} +{"sensors":[{"euler":{"heading":38.0,"pitch":121.75,"roll":17.5},"location":"Left Knee"},{"euler":{"heading":75.8125,"pitch":102.1875,"roll":31.625},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":-11.25,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":109.9375,"pitch":-163.0625,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":41.625,"pitch":-104.5,"roll":29.8125},"location":"Right Knee"},{"euler":{"heading":29.5625,"pitch":-155.9375,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.420"} +{"sensors":[{"euler":{"heading":52.125,"pitch":123.1875,"roll":4.25},"location":"Left Knee"},{"euler":{"heading":84.6875,"pitch":106.625,"roll":50.0625},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-10.375,"roll":-3.25},"location":"Right Ankle"},{"euler":{"heading":116.4375,"pitch":-161.9375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":50.875,"pitch":-107.1875,"roll":22.4375},"location":"Right Knee"},{"euler":{"heading":23.8125,"pitch":-146.3125,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.521"} +{"sensors":[{"euler":{"heading":65.9375,"pitch":119.6875,"roll":0.1875},"location":"Left Knee"},{"euler":{"heading":96.625,"pitch":113.125,"roll":57.5},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-9.125,"roll":-4.625},"location":"Right Ankle"},{"euler":{"heading":113.0625,"pitch":-163.8125,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":59.0625,"pitch":-110.6875,"roll":16.4375},"location":"Right Knee"},{"euler":{"heading":13.75,"pitch":-124.125,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.622"} +{"sensors":[{"euler":{"heading":53.5,"pitch":129.3125,"roll":9.1875},"location":"Left Knee"},{"euler":{"heading":81.625,"pitch":96.75,"roll":42.625},"location":"Left Ankle"},{"euler":{"heading":74.9375,"pitch":-9.3125,"roll":-6.125},"location":"Right Ankle"},{"euler":{"heading":118.5625,"pitch":-162.0625,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":65.9375,"pitch":-110.8125,"roll":11.4375},"location":"Right Knee"},{"euler":{"heading":4.8125,"pitch":-118.1875,"roll":48.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.723"} +{"sensors":[{"euler":{"heading":9.125,"pitch":143.125,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":52.6875,"pitch":90.375,"roll":16.0},"location":"Left Ankle"},{"euler":{"heading":71.25,"pitch":-8.9375,"roll":-7.3125},"location":"Right Ankle"},{"euler":{"heading":120.1875,"pitch":-162.0625,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":71.6875,"pitch":-110.75,"roll":6.5625},"location":"Right Knee"},{"euler":{"heading":3.5,"pitch":-116.0625,"roll":46.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.823"} +{"sensors":[{"euler":{"heading":346.75,"pitch":152.8125,"roll":37.4375},"location":"Left Knee"},{"euler":{"heading":29.75,"pitch":88.9375,"roll":-7.3125},"location":"Left Ankle"},{"euler":{"heading":64.625,"pitch":-6.5,"roll":-11.0625},"location":"Right Ankle"},{"euler":{"heading":124.1875,"pitch":-161.8125,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":78.9375,"pitch":-110.75,"roll":0.375},"location":"Right Knee"},{"euler":{"heading":7.875,"pitch":-118.0625,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:20.924"} +{"sensors":[{"euler":{"heading":350.9375,"pitch":152.1875,"roll":38.6875},"location":"Left Knee"},{"euler":{"heading":29.25,"pitch":94.6875,"roll":-9.4375},"location":"Left Ankle"},{"euler":{"heading":57.5625,"pitch":-4.3125,"roll":-14.25},"location":"Right Ankle"},{"euler":{"heading":124.875,"pitch":-164.8125,"roll":62.875},"location":"Right Hip"},{"euler":{"heading":88.3125,"pitch":-109.875,"roll":-7.75},"location":"Right Knee"},{"euler":{"heading":15.25,"pitch":-123.4375,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.25"} +{"sensors":[{"euler":{"heading":6.0,"pitch":142.1875,"roll":36.75},"location":"Left Knee"},{"euler":{"heading":44.5625,"pitch":98.125,"roll":3.125},"location":"Left Ankle"},{"euler":{"heading":43.6875,"pitch":-7.8125,"roll":-15.5625},"location":"Right Ankle"},{"euler":{"heading":128.0,"pitch":-165.625,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":100.0,"pitch":-104.75,"roll":-18.5},"location":"Right Knee"},{"euler":{"heading":15.3125,"pitch":-123.9375,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.126"} +{"sensors":[{"euler":{"heading":15.25,"pitch":134.1875,"roll":35.0625},"location":"Left Knee"},{"euler":{"heading":52.625,"pitch":99.75,"roll":8.5},"location":"Left Ankle"},{"euler":{"heading":27.5,"pitch":-6.5625,"roll":-18.375},"location":"Right Ankle"},{"euler":{"heading":134.3125,"pitch":-157.125,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":106.6875,"pitch":-107.0625,"roll":-25.8125},"location":"Right Knee"},{"euler":{"heading":18.6875,"pitch":-128.6875,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.229"} +{"sensors":[{"euler":{"heading":19.1875,"pitch":129.9375,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":57.4375,"pitch":100.6875,"roll":12.1875},"location":"Left Ankle"},{"euler":{"heading":38.9375,"pitch":-9.5,"roll":-13.9375},"location":"Right Ankle"},{"euler":{"heading":136.9375,"pitch":-154.25,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":92.75,"pitch":-103.75,"roll":-15.1875},"location":"Right Knee"},{"euler":{"heading":22.25,"pitch":-134.4375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.330"} +{"sensors":[{"euler":{"heading":24.9375,"pitch":126.5,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":62.4375,"pitch":102.0,"roll":17.1875},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":-14.5,"roll":-5.625},"location":"Right Ankle"},{"euler":{"heading":131.6875,"pitch":-156.25,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":69.0625,"pitch":-99.8125,"roll":6.4375},"location":"Right Knee"},{"euler":{"heading":24.0625,"pitch":-139.8125,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.431"} +{"sensors":[{"euler":{"heading":30.375,"pitch":124.125,"roll":25.75},"location":"Left Knee"},{"euler":{"heading":65.5625,"pitch":102.3125,"roll":21.375},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":-13.875,"roll":0.5625},"location":"Right Ankle"},{"euler":{"heading":121.0625,"pitch":-175.8125,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":48.625,"pitch":-99.25,"roll":26.5},"location":"Right Knee"},{"euler":{"heading":25.0,"pitch":-144.0625,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.532"} +{"sensors":[{"euler":{"heading":36.625,"pitch":121.75,"roll":20.1875},"location":"Left Knee"},{"euler":{"heading":72.25,"pitch":103.125,"roll":28.0},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":-11.75,"roll":0.875},"location":"Right Ankle"},{"euler":{"heading":111.0,"pitch":-163.625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":42.3125,"pitch":-102.3125,"roll":31.875},"location":"Right Knee"},{"euler":{"heading":28.4375,"pitch":-150.6875,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.632"} +{"sensors":[{"euler":{"heading":47.4375,"pitch":121.375,"roll":9.6875},"location":"Left Knee"},{"euler":{"heading":82.125,"pitch":104.1875,"roll":42.0625},"location":"Left Ankle"},{"euler":{"heading":80.3125,"pitch":-8.875,"roll":-4.25},"location":"Right Ankle"},{"euler":{"heading":113.3125,"pitch":-162.5625,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":45.8125,"pitch":-108.0625,"roll":25.1875},"location":"Right Knee"},{"euler":{"heading":27.5,"pitch":-148.375,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.733"} +{"sensors":[{"euler":{"heading":63.5625,"pitch":120.8125,"roll":1.0625},"location":"Left Knee"},{"euler":{"heading":104.625,"pitch":116.375,"roll":59.3125},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-7.4375,"roll":-5.5625},"location":"Right Ankle"},{"euler":{"heading":111.0625,"pitch":-164.125,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":54.125,"pitch":-112.75,"roll":19.0625},"location":"Right Knee"},{"euler":{"heading":10.8125,"pitch":-124.0625,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.834"} +{"sensors":[{"euler":{"heading":60.75,"pitch":126.625,"roll":4.1875},"location":"Left Knee"},{"euler":{"heading":91.3125,"pitch":99.8125,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":74.0625,"pitch":-7.5625,"roll":-6.875},"location":"Right Ankle"},{"euler":{"heading":116.1875,"pitch":-163.625,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":62.875,"pitch":-112.0,"roll":13.375},"location":"Right Knee"},{"euler":{"heading":4.8125,"pitch":-117.375,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:21.935"} +{"sensors":[{"euler":{"heading":27.1875,"pitch":137.75,"roll":21.125},"location":"Left Knee"},{"euler":{"heading":59.75,"pitch":92.0,"roll":23.375},"location":"Left Ankle"},{"euler":{"heading":69.9375,"pitch":-7.5625,"roll":-8.3125},"location":"Right Ankle"},{"euler":{"heading":120.0,"pitch":-162.875,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":69.25,"pitch":-110.75,"roll":8.375},"location":"Right Knee"},{"euler":{"heading":5.0,"pitch":-115.75,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.36"} +{"sensors":[{"euler":{"heading":353.25,"pitch":149.375,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":32.9375,"pitch":90.4375,"roll":-3.375},"location":"Left Ankle"},{"euler":{"heading":64.6875,"pitch":-5.25,"roll":-10.625},"location":"Right Ankle"},{"euler":{"heading":120.375,"pitch":-165.125,"roll":64.0},"location":"Right Hip"},{"euler":{"heading":75.8125,"pitch":-112.0,"roll":2.5},"location":"Right Knee"},{"euler":{"heading":7.9375,"pitch":-118.5625,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.138"} +{"sensors":[{"euler":{"heading":346.3125,"pitch":153.625,"roll":38.1875},"location":"Left Knee"},{"euler":{"heading":29.25,"pitch":91.6875,"roll":-8.625},"location":"Left Ankle"},{"euler":{"heading":57.875,"pitch":-3.5625,"roll":-13.9375},"location":"Right Ankle"},{"euler":{"heading":121.5625,"pitch":-167.9375,"roll":65.0625},"location":"Right Hip"},{"euler":{"heading":84.9375,"pitch":-111.25,"roll":-5.1875},"location":"Right Knee"},{"euler":{"heading":11.0,"pitch":-122.625,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.239"} +{"sensors":[{"euler":{"heading":4.0625,"pitch":142.25,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":44.3125,"pitch":97.25,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":39.75,"pitch":-6.8125,"roll":-15.875},"location":"Right Ankle"},{"euler":{"heading":127.5625,"pitch":-164.0625,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":98.3125,"pitch":-105.5625,"roll":-17.5625},"location":"Right Knee"},{"euler":{"heading":14.125,"pitch":-124.4375,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.340"} +{"sensors":[{"euler":{"heading":14.75,"pitch":134.25,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":52.9375,"pitch":100.0625,"roll":7.9375},"location":"Left Ankle"},{"euler":{"heading":27.75,"pitch":-6.9375,"roll":-17.5625},"location":"Right Ankle"},{"euler":{"heading":136.3125,"pitch":-155.875,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":104.75,"pitch":-107.0,"roll":-24.0625},"location":"Right Knee"},{"euler":{"heading":19.5625,"pitch":-129.0,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.441"} +{"sensors":[{"euler":{"heading":17.9375,"pitch":130.8125,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":58.5625,"pitch":100.25,"roll":12.6875},"location":"Left Ankle"},{"euler":{"heading":39.9375,"pitch":-9.0,"roll":-15.0625},"location":"Right Ankle"},{"euler":{"heading":138.1875,"pitch":-153.9375,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":92.75,"pitch":-104.4375,"roll":-14.0625},"location":"Right Knee"},{"euler":{"heading":21.8125,"pitch":-135.5,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.541"} +{"sensors":[{"euler":{"heading":23.3125,"pitch":127.4375,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":62.1875,"pitch":100.6875,"roll":16.125},"location":"Left Ankle"},{"euler":{"heading":64.375,"pitch":-14.6875,"roll":-6.4375},"location":"Right Ankle"},{"euler":{"heading":131.375,"pitch":-156.375,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":70.5625,"pitch":-99.625,"roll":6.0},"location":"Right Knee"},{"euler":{"heading":23.375,"pitch":-141.125,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.641"} +{"sensors":[{"euler":{"heading":30.5625,"pitch":124.0625,"roll":25.5},"location":"Left Knee"},{"euler":{"heading":65.625,"pitch":101.25,"roll":20.8125},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":-15.625,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":124.5,"pitch":-158.4375,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":51.5,"pitch":-98.0,"roll":24.6875},"location":"Right Knee"},{"euler":{"heading":24.5,"pitch":-145.0625,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.742"} +{"sensors":[{"euler":{"heading":37.5,"pitch":121.5,"roll":19.625},"location":"Left Knee"},{"euler":{"heading":73.5,"pitch":102.8125,"roll":28.375},"location":"Left Ankle"},{"euler":{"heading":91.9375,"pitch":-12.875,"roll":1.8125},"location":"Right Ankle"},{"euler":{"heading":113.125,"pitch":-163.125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":42.75,"pitch":-102.75,"roll":31.0},"location":"Right Knee"},{"euler":{"heading":28.0625,"pitch":-150.8125,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.842"} +{"sensors":[{"euler":{"heading":49.625,"pitch":120.9375,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":104.1875,"roll":42.5},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":-7.5625,"roll":-4.0},"location":"Right Ankle"},{"euler":{"heading":114.375,"pitch":-162.9375,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":47.1875,"pitch":-108.9375,"roll":24.125},"location":"Right Knee"},{"euler":{"heading":28.625,"pitch":-149.75,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:22.942"} +{"sensors":[{"euler":{"heading":65.625,"pitch":119.8125,"roll":0.3125},"location":"Left Knee"},{"euler":{"heading":96.5,"pitch":115.3125,"roll":54.4375},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":-5.0,"roll":-5.8125},"location":"Right Ankle"},{"euler":{"heading":115.5,"pitch":-162.3125,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":55.0,"pitch":-113.625,"roll":18.0},"location":"Right Knee"},{"euler":{"heading":17.0,"pitch":-128.1875,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.43"} +{"sensors":[{"euler":{"heading":61.875,"pitch":126.8125,"roll":3.75},"location":"Left Knee"},{"euler":{"heading":80.75,"pitch":97.125,"roll":45.3125},"location":"Left Ankle"},{"euler":{"heading":72.6875,"pitch":-3.875,"roll":-7.6875},"location":"Right Ankle"},{"euler":{"heading":117.5625,"pitch":-161.0625,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":61.5625,"pitch":-114.8125,"roll":12.9375},"location":"Right Knee"},{"euler":{"heading":7.5625,"pitch":-119.0,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.144"} +{"sensors":[{"euler":{"heading":26.4375,"pitch":138.0625,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":56.75,"pitch":90.5,"roll":20.8125},"location":"Left Ankle"},{"euler":{"heading":69.9375,"pitch":-2.5625,"roll":-9.625},"location":"Right Ankle"},{"euler":{"heading":119.6875,"pitch":-160.8125,"roll":61.8125},"location":"Right Hip"},{"euler":{"heading":66.875,"pitch":-115.1875,"roll":8.5625},"location":"Right Knee"},{"euler":{"heading":3.375,"pitch":-115.8125,"roll":47.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.244"} +{"sensors":[{"euler":{"heading":279.5625,"pitch":149.125,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":34.1875,"pitch":88.3125,"roll":-4.1875},"location":"Left Ankle"},{"euler":{"heading":65.375,"pitch":-1.4375,"roll":-11.0625},"location":"Right Ankle"},{"euler":{"heading":120.625,"pitch":-162.875,"roll":63.1875},"location":"Right Hip"},{"euler":{"heading":73.6875,"pitch":-115.1875,"roll":3.375},"location":"Right Knee"},{"euler":{"heading":5.25,"pitch":-115.875,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.345"} +{"sensors":[{"euler":{"heading":289.0625,"pitch":153.75,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":28.25,"pitch":93.125,"roll":-9.9375},"location":"Left Ankle"},{"euler":{"heading":59.625,"pitch":-1.0625,"roll":-14.875},"location":"Right Ankle"},{"euler":{"heading":122.625,"pitch":-165.1875,"roll":64.4375},"location":"Right Hip"},{"euler":{"heading":83.125,"pitch":-113.75,"roll":-3.75},"location":"Right Knee"},{"euler":{"heading":12.1875,"pitch":-123.3125,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.446"} +{"sensors":[{"euler":{"heading":2.3125,"pitch":145.5,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":43.0625,"pitch":97.75,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":46.0,"pitch":-4.3125,"roll":-16.5},"location":"Right Ankle"},{"euler":{"heading":126.1875,"pitch":-164.3125,"roll":63.6875},"location":"Right Hip"},{"euler":{"heading":97.0625,"pitch":-109.5,"roll":-15.1875},"location":"Right Knee"},{"euler":{"heading":13.25,"pitch":-125.8125,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.547"} +{"sensors":[{"euler":{"heading":13.5625,"pitch":136.625,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":52.1875,"pitch":101.3125,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":27.375,"pitch":-4.75,"roll":-19.5},"location":"Right Ankle"},{"euler":{"heading":134.75,"pitch":-157.0625,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":107.125,"pitch":-107.25,"roll":-25.625},"location":"Right Knee"},{"euler":{"heading":18.625,"pitch":-128.75,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.648"} +{"sensors":[{"euler":{"heading":19.9375,"pitch":130.375,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":57.8125,"pitch":102.8125,"roll":11.0625},"location":"Left Ankle"},{"euler":{"heading":35.0625,"pitch":-8.125,"roll":-16.125},"location":"Right Ankle"},{"euler":{"heading":138.1875,"pitch":-153.9375,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":96.375,"pitch":-104.375,"roll":-17.5},"location":"Right Knee"},{"euler":{"heading":23.375,"pitch":-135.75,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.748"} +{"sensors":[{"euler":{"heading":23.875,"pitch":127.5625,"roll":31.0},"location":"Left Knee"},{"euler":{"heading":61.0625,"pitch":101.9375,"roll":15.0625},"location":"Left Ankle"},{"euler":{"heading":57.5,"pitch":-13.0,"roll":-10.1875},"location":"Right Ankle"},{"euler":{"heading":133.75,"pitch":-156.1875,"roll":42.875},"location":"Right Hip"},{"euler":{"heading":77.75,"pitch":-100.8125,"roll":-0.8125},"location":"Right Knee"},{"euler":{"heading":24.0625,"pitch":-142.625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.849"} +{"sensors":[{"euler":{"heading":29.5625,"pitch":124.9375,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":64.5625,"pitch":102.25,"roll":19.0625},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":-13.25,"roll":-2.4375},"location":"Right Ankle"},{"euler":{"heading":126.5625,"pitch":-158.375,"roll":43.8125},"location":"Right Hip"},{"euler":{"heading":55.25,"pitch":-99.3125,"roll":19.6875},"location":"Right Knee"},{"euler":{"heading":24.75,"pitch":-146.5625,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:23.949"} +{"sensors":[{"euler":{"heading":35.125,"pitch":122.4375,"roll":21.25},"location":"Left Knee"},{"euler":{"heading":71.25,"pitch":103.375,"roll":25.4375},"location":"Left Ankle"},{"euler":{"heading":92.625,"pitch":-12.4375,"roll":1.5},"location":"Right Ankle"},{"euler":{"heading":112.6875,"pitch":-162.8125,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":41.75,"pitch":-102.6875,"roll":32.125},"location":"Right Knee"},{"euler":{"heading":26.125,"pitch":-151.875,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.50"} +{"sensors":[{"euler":{"heading":46.875,"pitch":120.5625,"roll":12.25},"location":"Left Knee"},{"euler":{"heading":78.75,"pitch":104.4375,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":-10.125,"roll":-2.5625},"location":"Right Ankle"},{"euler":{"heading":111.875,"pitch":-164.5625,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":44.6875,"pitch":-107.5,"roll":27.875},"location":"Right Knee"},{"euler":{"heading":29.875,"pitch":-154.8125,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.151"} +{"sensors":[{"euler":{"heading":64.25,"pitch":121.1875,"roll":1.125},"location":"Left Knee"},{"euler":{"heading":96.9375,"pitch":116.0,"roll":52.75},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":-10.125,"roll":-4.625},"location":"Right Ankle"},{"euler":{"heading":115.1875,"pitch":-163.875,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":55.6875,"pitch":-110.25,"roll":19.5625},"location":"Right Knee"},{"euler":{"heading":15.8125,"pitch":-134.4375,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.251"} +{"sensors":[{"euler":{"heading":68.1875,"pitch":123.9375,"roll":0.6875},"location":"Left Knee"},{"euler":{"heading":92.625,"pitch":105.25,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-10.8125,"roll":-6.125},"location":"Right Ankle"},{"euler":{"heading":117.3125,"pitch":-164.0625,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":63.875,"pitch":-109.375,"roll":13.9375},"location":"Right Knee"},{"euler":{"heading":10.0,"pitch":-120.25,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.352"} +{"sensors":[{"euler":{"heading":44.375,"pitch":132.6875,"roll":14.9375},"location":"Left Knee"},{"euler":{"heading":69.4375,"pitch":96.1875,"roll":30.6875},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":-10.8125,"roll":-8.1875},"location":"Right Ankle"},{"euler":{"heading":121.625,"pitch":-163.4375,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":69.125,"pitch":-108.5625,"roll":10.0625},"location":"Right Knee"},{"euler":{"heading":6.3125,"pitch":-116.875,"roll":48.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.453"} +{"sensors":[{"euler":{"heading":2.5,"pitch":145.625,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":39.0625,"pitch":91.0,"roll":3.9375},"location":"Left Ankle"},{"euler":{"heading":69.6875,"pitch":-9.8125,"roll":-9.8125},"location":"Right Ankle"},{"euler":{"heading":124.625,"pitch":-163.625,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":75.625,"pitch":-108.3125,"roll":4.4375},"location":"Right Knee"},{"euler":{"heading":6.875,"pitch":-116.125,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.553"} +{"sensors":[{"euler":{"heading":346.1875,"pitch":153.875,"roll":39.0625},"location":"Left Knee"},{"euler":{"heading":25.9375,"pitch":89.5,"roll":-12.0625},"location":"Left Ankle"},{"euler":{"heading":63.5625,"pitch":-8.4375,"roll":-14.0},"location":"Right Ankle"},{"euler":{"heading":127.5,"pitch":-164.5,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":82.9375,"pitch":-107.625,"roll":-1.625},"location":"Right Knee"},{"euler":{"heading":13.5625,"pitch":-121.625,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.654"} +{"sensors":[{"euler":{"heading":357.0625,"pitch":147.0625,"roll":39.5},"location":"Left Knee"},{"euler":{"heading":34.1875,"pitch":94.9375,"roll":-6.0},"location":"Left Ankle"},{"euler":{"heading":54.1875,"pitch":-7.1875,"roll":-15.8125},"location":"Right Ankle"},{"euler":{"heading":129.25,"pitch":-167.3125,"roll":62.9375},"location":"Right Hip"},{"euler":{"heading":91.5625,"pitch":-106.25,"roll":-9.8125},"location":"Right Knee"},{"euler":{"heading":18.375,"pitch":-123.9375,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.754"} +{"sensors":[{"euler":{"heading":9.125,"pitch":138.375,"roll":37.25},"location":"Left Knee"},{"euler":{"heading":46.875,"pitch":98.75,"roll":3.9375},"location":"Left Ankle"},{"euler":{"heading":36.0625,"pitch":-7.4375,"roll":-18.75},"location":"Right Ankle"},{"euler":{"heading":134.5,"pitch":-161.625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":103.25,"pitch":-103.875,"roll":-22.5},"location":"Right Knee"},{"euler":{"heading":18.25,"pitch":-125.625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.855"} +{"sensors":[{"euler":{"heading":14.125,"pitch":133.375,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":52.0,"pitch":98.625,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":29.625,"pitch":-10.75,"roll":-18.0625},"location":"Right Ankle"},{"euler":{"heading":139.6875,"pitch":-155.6875,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":104.625,"pitch":-102.5,"roll":-24.4375},"location":"Right Knee"},{"euler":{"heading":19.6875,"pitch":-132.875,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:24.956"} +{"sensors":[{"euler":{"heading":18.875,"pitch":129.125,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":58.6875,"pitch":100.0625,"roll":12.5625},"location":"Left Ankle"},{"euler":{"heading":46.875,"pitch":-14.25,"roll":-10.8125},"location":"Right Ankle"},{"euler":{"heading":138.0,"pitch":-154.1875,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":85.375,"pitch":-101.375,"roll":-8.0},"location":"Right Knee"},{"euler":{"heading":23.6875,"pitch":-138.6875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.57"} +{"sensors":[{"euler":{"heading":24.875,"pitch":126.0625,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":62.125,"pitch":100.625,"roll":16.0625},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":-18.3125,"roll":-4.1875},"location":"Right Ankle"},{"euler":{"heading":129.625,"pitch":-157.9375,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":61.8125,"pitch":-96.5,"roll":12.75},"location":"Right Knee"},{"euler":{"heading":24.125,"pitch":-143.75,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.157"} +{"sensors":[{"euler":{"heading":31.0,"pitch":123.8125,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":66.5,"pitch":100.75,"roll":21.25},"location":"Left Ankle"},{"euler":{"heading":88.875,"pitch":-13.8125,"roll":1.625},"location":"Right Ankle"},{"euler":{"heading":120.875,"pitch":-160.3125,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":44.3125,"pitch":-99.6875,"roll":29.875},"location":"Right Knee"},{"euler":{"heading":24.6875,"pitch":-148.5625,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.258"} +{"sensors":[{"euler":{"heading":39.0625,"pitch":121.875,"roll":17.6875},"location":"Left Knee"},{"euler":{"heading":75.0,"pitch":102.375,"roll":30.9375},"location":"Left Ankle"},{"euler":{"heading":88.5,"pitch":-8.75,"roll":-1.125},"location":"Right Ankle"},{"euler":{"heading":111.9375,"pitch":-162.9375,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":38.5625,"pitch":-106.1875,"roll":31.0625},"location":"Right Knee"},{"euler":{"heading":27.6875,"pitch":-153.375,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.359"} +{"sensors":[{"euler":{"heading":54.125,"pitch":123.125,"roll":5.3125},"location":"Left Knee"},{"euler":{"heading":88.25,"pitch":108.25,"roll":48.0},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":-8.0625,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":115.375,"pitch":-162.75,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":47.0,"pitch":-109.6875,"roll":23.8125},"location":"Right Knee"},{"euler":{"heading":19.625,"pitch":-141.9375,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.460"} +{"sensors":[{"euler":{"heading":68.8125,"pitch":119.125,"roll":-0.0625},"location":"Left Knee"},{"euler":{"heading":93.4375,"pitch":113.6875,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":77.625,"pitch":-6.9375,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":112.9375,"pitch":-164.5625,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":56.0625,"pitch":-113.4375,"roll":17.5},"location":"Right Knee"},{"euler":{"heading":11.75,"pitch":-121.8125,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.561"} +{"sensors":[{"euler":{"heading":59.375,"pitch":128.5,"roll":6.625},"location":"Left Knee"},{"euler":{"heading":81.125,"pitch":98.625,"roll":40.0625},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-6.625,"roll":-7.9375},"location":"Right Ankle"},{"euler":{"heading":117.875,"pitch":-163.5625,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":63.0,"pitch":-112.8125,"roll":12.625},"location":"Right Knee"},{"euler":{"heading":5.0625,"pitch":-116.9375,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.662"} +{"sensors":[{"euler":{"heading":12.5625,"pitch":141.9375,"roll":26.875},"location":"Left Knee"},{"euler":{"heading":50.9375,"pitch":90.5,"roll":13.125},"location":"Left Ankle"},{"euler":{"heading":71.5,"pitch":-4.5625,"roll":-9.4375},"location":"Right Ankle"},{"euler":{"heading":120.75,"pitch":-163.4375,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":67.75,"pitch":-113.125,"roll":8.5},"location":"Right Knee"},{"euler":{"heading":4.3125,"pitch":-115.3125,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.763"} +{"sensors":[{"euler":{"heading":347.875,"pitch":152.4375,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":27.6875,"pitch":88.625,"roll":-9.875},"location":"Left Ankle"},{"euler":{"heading":66.0625,"pitch":-2.0625,"roll":-13.125},"location":"Right Ankle"},{"euler":{"heading":121.625,"pitch":-165.1875,"roll":63.75},"location":"Right Hip"},{"euler":{"heading":74.4375,"pitch":-114.0625,"roll":2.75},"location":"Right Knee"},{"euler":{"heading":9.25,"pitch":-119.1875,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.864"} +{"sensors":[{"euler":{"heading":352.8125,"pitch":151.0,"roll":38.125},"location":"Left Knee"},{"euler":{"heading":30.4375,"pitch":93.25,"roll":-8.1875},"location":"Left Ankle"},{"euler":{"heading":56.375,"pitch":-1.0,"roll":-16.125},"location":"Right Ankle"},{"euler":{"heading":123.5625,"pitch":-167.0,"roll":63.8125},"location":"Right Hip"},{"euler":{"heading":85.0625,"pitch":-112.6875,"roll":-5.875},"location":"Right Knee"},{"euler":{"heading":13.375,"pitch":-123.625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:25.964"} +{"sensors":[{"euler":{"heading":5.375,"pitch":142.0,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":43.75,"pitch":96.125,"roll":2.875},"location":"Left Ankle"},{"euler":{"heading":38.8125,"pitch":-5.0625,"roll":-16.0625},"location":"Right Ankle"},{"euler":{"heading":131.0625,"pitch":-161.9375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":100.4375,"pitch":-106.0625,"roll":-20.0},"location":"Right Knee"},{"euler":{"heading":13.625,"pitch":-125.6875,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.66"} +{"sensors":[{"euler":{"heading":13.6875,"pitch":135.3125,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":49.375,"pitch":98.0,"roll":7.125},"location":"Left Ankle"},{"euler":{"heading":28.1875,"pitch":-5.1875,"roll":-16.875},"location":"Right Ankle"},{"euler":{"heading":137.625,"pitch":-155.0,"roll":51.375},"location":"Right Hip"},{"euler":{"heading":103.9375,"pitch":-107.75,"roll":-23.75},"location":"Right Knee"},{"euler":{"heading":18.875,"pitch":-131.625,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.167"} +{"sensors":[{"euler":{"heading":17.625,"pitch":131.4375,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":55.4375,"pitch":98.6875,"roll":11.9375},"location":"Left Ankle"},{"euler":{"heading":42.1875,"pitch":-9.0,"roll":-13.5},"location":"Right Ankle"},{"euler":{"heading":138.1875,"pitch":-154.0,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":89.4375,"pitch":-103.625,"roll":-10.3125},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-136.9375,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.269"} +{"sensors":[{"euler":{"heading":24.25,"pitch":127.75,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":60.3125,"pitch":100.4375,"roll":15.75},"location":"Left Ankle"},{"euler":{"heading":66.5,"pitch":-14.8125,"roll":-5.75},"location":"Right Ankle"},{"euler":{"heading":129.875,"pitch":-158.3125,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":67.25,"pitch":-100.1875,"roll":8.375},"location":"Right Knee"},{"euler":{"heading":22.0625,"pitch":-141.125,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.369"} +{"sensors":[{"euler":{"heading":30.75,"pitch":125.25,"roll":24.9375},"location":"Left Knee"},{"euler":{"heading":65.4375,"pitch":101.1875,"roll":20.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":-15.125,"roll":-0.3125},"location":"Right Ankle"},{"euler":{"heading":121.0,"pitch":-161.25,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":50.25,"pitch":-99.0,"roll":25.5625},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-145.625,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.470"} +{"sensors":[{"euler":{"heading":36.875,"pitch":122.3125,"roll":19.0},"location":"Left Knee"},{"euler":{"heading":73.4375,"pitch":102.625,"roll":28.75},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":-12.625,"roll":1.0},"location":"Right Ankle"},{"euler":{"heading":111.75,"pitch":-164.4375,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":43.0,"pitch":-103.5625,"roll":29.5},"location":"Right Knee"},{"euler":{"heading":27.8125,"pitch":-152.25,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.571"} +{"sensors":[{"euler":{"heading":50.1875,"pitch":122.9375,"roll":7.125},"location":"Left Knee"},{"euler":{"heading":81.25,"pitch":103.875,"roll":43.8125},"location":"Left Ankle"},{"euler":{"heading":83.5625,"pitch":-11.75,"roll":-2.8125},"location":"Right Ankle"},{"euler":{"heading":117.8125,"pitch":-162.9375,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":50.1875,"pitch":-107.25,"roll":22.25},"location":"Right Knee"},{"euler":{"heading":27.375,"pitch":-148.1875,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.672"} +{"sensors":[{"euler":{"heading":67.0625,"pitch":119.3125,"roll":-0.3125},"location":"Left Knee"},{"euler":{"heading":90.875,"pitch":111.5625,"roll":54.25},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":-9.8125,"roll":-5.1875},"location":"Right Ankle"},{"euler":{"heading":115.0625,"pitch":-164.0625,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":58.8125,"pitch":-111.5625,"roll":16.0625},"location":"Right Knee"},{"euler":{"heading":15.6875,"pitch":-124.875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.772"} +{"sensors":[{"euler":{"heading":61.0625,"pitch":126.9375,"roll":5.25},"location":"Left Knee"},{"euler":{"heading":84.9375,"pitch":100.75,"roll":43.25},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":-8.75,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":119.625,"pitch":-163.1875,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":66.0,"pitch":-111.5625,"roll":10.9375},"location":"Right Knee"},{"euler":{"heading":7.375,"pitch":-117.8125,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.873"} +{"sensors":[{"euler":{"heading":20.25,"pitch":139.625,"roll":22.9375},"location":"Left Knee"},{"euler":{"heading":55.0625,"pitch":89.6875,"roll":18.0625},"location":"Left Ankle"},{"euler":{"heading":72.4375,"pitch":-8.125,"roll":-8.75},"location":"Right Ankle"},{"euler":{"heading":121.3125,"pitch":-163.75,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":71.75,"pitch":-111.3125,"roll":6.1875},"location":"Right Knee"},{"euler":{"heading":5.3125,"pitch":-115.5625,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:26.973"} +{"sensors":[{"euler":{"heading":351.875,"pitch":149.625,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":30.125,"pitch":89.8125,"roll":-6.8125},"location":"Left Ankle"},{"euler":{"heading":67.25,"pitch":-6.625,"roll":-12.375},"location":"Right Ankle"},{"euler":{"heading":124.25,"pitch":-164.4375,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":78.0625,"pitch":-111.0,"roll":1.0},"location":"Right Knee"},{"euler":{"heading":8.3125,"pitch":-116.9375,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.74"} +{"sensors":[{"euler":{"heading":347.625,"pitch":153.375,"roll":38.9375},"location":"Left Knee"},{"euler":{"heading":26.6875,"pitch":92.125,"roll":-11.5},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":-5.75,"roll":-14.5625},"location":"Right Ankle"},{"euler":{"heading":126.3125,"pitch":-167.5,"roll":62.8125},"location":"Right Hip"},{"euler":{"heading":87.8125,"pitch":-109.3125,"roll":-7.375},"location":"Right Knee"},{"euler":{"heading":14.0625,"pitch":-123.375,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.175"} +{"sensors":[{"euler":{"heading":3.6875,"pitch":144.0,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":41.875,"pitch":95.9375,"roll":0.5625},"location":"Left Ankle"},{"euler":{"heading":44.75,"pitch":-8.875,"roll":-16.1875},"location":"Right Ankle"},{"euler":{"heading":131.25,"pitch":-164.875,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":101.0625,"pitch":-103.625,"roll":-19.9375},"location":"Right Knee"},{"euler":{"heading":16.0,"pitch":-124.875,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.276"} +{"sensors":[{"euler":{"heading":11.5625,"pitch":137.5625,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":46.8125,"pitch":96.6875,"roll":4.625},"location":"Left Ankle"},{"euler":{"heading":31.375,"pitch":-6.75,"roll":-17.125},"location":"Right Ankle"},{"euler":{"heading":139.0,"pitch":-155.75,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":106.875,"pitch":-108.1875,"roll":-26.1875},"location":"Right Knee"},{"euler":{"heading":19.0,"pitch":-130.4375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.377"} +{"sensors":[{"euler":{"heading":15.875,"pitch":133.0625,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":51.9375,"pitch":97.375,"roll":9.4375},"location":"Left Ankle"},{"euler":{"heading":42.9375,"pitch":-8.8125,"roll":-13.5},"location":"Right Ankle"},{"euler":{"heading":140.0625,"pitch":-153.5,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":92.0,"pitch":-104.5625,"roll":-15.125},"location":"Right Knee"},{"euler":{"heading":21.4375,"pitch":-134.6875,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.477"} +{"sensors":[{"euler":{"heading":20.875,"pitch":129.75,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":56.75,"pitch":98.375,"roll":13.6875},"location":"Left Ankle"},{"euler":{"heading":66.75,"pitch":-16.0,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":135.625,"pitch":-155.9375,"roll":43.5625},"location":"Right Hip"},{"euler":{"heading":72.3125,"pitch":-99.5625,"roll":4.1875},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-140.1875,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.578"} +{"sensors":[{"euler":{"heading":26.9375,"pitch":127.0,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":60.75,"pitch":98.75,"roll":18.25},"location":"Left Ankle"},{"euler":{"heading":91.6875,"pitch":-16.375,"roll":-0.25},"location":"Right Ankle"},{"euler":{"heading":126.1875,"pitch":-159.875,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":54.3125,"pitch":-97.9375,"roll":22.5625},"location":"Right Knee"},{"euler":{"heading":25.0625,"pitch":-145.4375,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.678"} +{"sensors":[{"euler":{"heading":33.8125,"pitch":124.0,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":68.5,"pitch":100.4375,"roll":25.5},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":-15.4375,"roll":2.1875},"location":"Right Ankle"},{"euler":{"heading":115.875,"pitch":-163.25,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":44.875,"pitch":-100.875,"roll":30.8125},"location":"Right Knee"},{"euler":{"heading":28.4375,"pitch":-150.5,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.779"} +{"sensors":[{"euler":{"heading":45.0625,"pitch":121.875,"roll":12.8125},"location":"Left Knee"},{"euler":{"heading":77.875,"pitch":101.625,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":85.8125,"pitch":-12.5625,"roll":-2.6875},"location":"Right Ankle"},{"euler":{"heading":115.6875,"pitch":-164.375,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":49.625,"pitch":-105.5,"roll":24.375},"location":"Right Knee"},{"euler":{"heading":29.625,"pitch":-149.875,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.879"} +{"sensors":[{"euler":{"heading":62.5625,"pitch":120.9375,"roll":1.6875},"location":"Left Knee"},{"euler":{"heading":94.75,"pitch":112.25,"roll":53.5625},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-11.25,"roll":-4.4375},"location":"Right Ankle"},{"euler":{"heading":116.4375,"pitch":-164.125,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":56.9375,"pitch":-110.0625,"roll":18.0625},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-128.5,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:27.980"} +{"sensors":[{"euler":{"heading":63.875,"pitch":124.0,"roll":4.125},"location":"Left Knee"},{"euler":{"heading":87.125,"pitch":102.0,"roll":46.1875},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":-11.1875,"roll":-6.25},"location":"Right Ankle"},{"euler":{"heading":119.1875,"pitch":-164.375,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":64.0,"pitch":-109.75,"roll":13.0625},"location":"Right Knee"},{"euler":{"heading":9.125,"pitch":-119.3125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.82"} +{"sensors":[{"euler":{"heading":31.0,"pitch":135.6875,"roll":20.75},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":92.75,"roll":21.4375},"location":"Left Ankle"},{"euler":{"heading":76.125,"pitch":-9.25,"roll":-8.3125},"location":"Right Ankle"},{"euler":{"heading":123.5625,"pitch":-162.625,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":68.8125,"pitch":-110.75,"roll":8.75},"location":"Right Knee"},{"euler":{"heading":7.4375,"pitch":-116.3125,"roll":48.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.183"} +{"sensors":[{"euler":{"heading":356.5625,"pitch":147.75,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":32.4375,"pitch":91.6875,"roll":-4.375},"location":"Left Ankle"},{"euler":{"heading":71.1875,"pitch":-6.25,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":124.0625,"pitch":-163.4375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":74.3125,"pitch":-112.375,"roll":3.75},"location":"Right Knee"},{"euler":{"heading":7.3125,"pitch":-117.0,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.284"} +{"sensors":[{"euler":{"heading":348.4375,"pitch":153.75,"roll":38.0},"location":"Left Knee"},{"euler":{"heading":24.875,"pitch":90.8125,"roll":-13.1875},"location":"Left Ankle"},{"euler":{"heading":64.1875,"pitch":-4.0,"roll":-14.875},"location":"Right Ankle"},{"euler":{"heading":125.5625,"pitch":-164.875,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":83.875,"pitch":-111.375,"roll":-3.75},"location":"Right Knee"},{"euler":{"heading":12.125,"pitch":-122.5,"roll":49.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.385"} +{"sensors":[{"euler":{"heading":4.75,"pitch":144.5,"roll":37.0625},"location":"Left Knee"},{"euler":{"heading":40.3125,"pitch":99.1875,"roll":-3.6875},"location":"Left Ankle"},{"euler":{"heading":51.5,"pitch":-6.375,"roll":-16.5625},"location":"Right Ankle"},{"euler":{"heading":128.875,"pitch":-165.875,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":96.5625,"pitch":-107.125,"roll":-15.0625},"location":"Right Knee"},{"euler":{"heading":14.8125,"pitch":-126.0,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.485"} +{"sensors":[{"euler":{"heading":13.75,"pitch":136.6875,"roll":34.875},"location":"Left Knee"},{"euler":{"heading":45.75,"pitch":98.0,"roll":4.0625},"location":"Left Ankle"},{"euler":{"heading":30.375,"pitch":-4.9375,"roll":-19.375},"location":"Right Ankle"},{"euler":{"heading":134.875,"pitch":-158.0,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":105.5625,"pitch":-106.4375,"roll":-25.0},"location":"Right Knee"},{"euler":{"heading":16.4375,"pitch":-128.4375,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.586"} +{"sensors":[{"euler":{"heading":19.1875,"pitch":130.8125,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":53.0625,"pitch":100.4375,"roll":8.1875},"location":"Left Ankle"},{"euler":{"heading":38.0625,"pitch":-7.875,"roll":-15.5},"location":"Right Ankle"},{"euler":{"heading":139.5,"pitch":-154.1875,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":94.1875,"pitch":-104.6875,"roll":-16.1875},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-133.9375,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.688"} +{"sensors":[{"euler":{"heading":24.5625,"pitch":126.4375,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":58.9375,"pitch":101.625,"roll":12.5625},"location":"Left Ankle"},{"euler":{"heading":60.625,"pitch":-14.75,"roll":-8.5},"location":"Right Ankle"},{"euler":{"heading":136.4375,"pitch":-155.8125,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":73.8125,"pitch":-99.625,"roll":3.0625},"location":"Right Knee"},{"euler":{"heading":24.4375,"pitch":-140.8125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.788"} +{"sensors":[{"euler":{"heading":30.5625,"pitch":123.25,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":61.875,"pitch":101.875,"roll":16.1875},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":-15.4375,"roll":-2.1875},"location":"Right Ankle"},{"euler":{"heading":126.6875,"pitch":-160.4375,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":55.4375,"pitch":-97.0625,"roll":21.5625},"location":"Right Knee"},{"euler":{"heading":26.25,"pitch":-144.3125,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.889"} +{"sensors":[{"euler":{"heading":36.4375,"pitch":120.75,"roll":22.8125},"location":"Left Knee"},{"euler":{"heading":67.5,"pitch":102.8125,"roll":21.875},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":-16.25,"roll":2.5625},"location":"Right Ankle"},{"euler":{"heading":116.75,"pitch":-163.25,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":44.75,"pitch":-99.375,"roll":31.875},"location":"Right Knee"},{"euler":{"heading":28.9375,"pitch":-150.375,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:28.989"} +{"sensors":[{"euler":{"heading":44.875,"pitch":118.9375,"roll":15.375},"location":"Left Knee"},{"euler":{"heading":74.125,"pitch":103.625,"roll":30.5},"location":"Left Ankle"},{"euler":{"heading":89.5625,"pitch":-12.3125,"roll":-1.0625},"location":"Right Ankle"},{"euler":{"heading":113.5625,"pitch":-165.1875,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":44.9375,"pitch":-105.875,"roll":27.25},"location":"Right Knee"},{"euler":{"heading":34.75,"pitch":-157.0625,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.89"} +{"sensors":[{"euler":{"heading":60.5,"pitch":121.125,"roll":3.0625},"location":"Left Knee"},{"euler":{"heading":86.25,"pitch":112.6875,"roll":46.625},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-8.3125,"roll":-4.5625},"location":"Right Ankle"},{"euler":{"heading":118.5625,"pitch":-163.1875,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":52.0,"pitch":-111.25,"roll":21.0},"location":"Right Knee"},{"euler":{"heading":24.625,"pitch":-143.875,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.190"} +{"sensors":[{"euler":{"heading":71.6875,"pitch":117.4375,"roll":-0.0625},"location":"Left Knee"},{"euler":{"heading":87.8125,"pitch":112.25,"roll":49.3125},"location":"Left Ankle"},{"euler":{"heading":78.75,"pitch":-6.0,"roll":-7.5625},"location":"Right Ankle"},{"euler":{"heading":117.25,"pitch":-164.5625,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":58.875,"pitch":-113.3125,"roll":15.4375},"location":"Right Knee"},{"euler":{"heading":17.875,"pitch":-124.9375,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.291"} +{"sensors":[{"euler":{"heading":55.75,"pitch":128.5625,"roll":10.125},"location":"Left Knee"},{"euler":{"heading":73.25,"pitch":98.1875,"roll":32.25},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-5.4375,"roll":-10.1875},"location":"Right Ankle"},{"euler":{"heading":120.3125,"pitch":-164.375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":65.1875,"pitch":-112.6875,"roll":10.375},"location":"Right Knee"},{"euler":{"heading":9.125,"pitch":-117.875,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.391"} +{"sensors":[{"euler":{"heading":12.75,"pitch":141.75,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":42.25,"pitch":90.0625,"roll":5.875},"location":"Left Ankle"},{"euler":{"heading":71.3125,"pitch":-5.375,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":122.0,"pitch":-167.0625,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":71.3125,"pitch":-111.5625,"roll":5.4375},"location":"Right Knee"},{"euler":{"heading":8.125,"pitch":-117.1875,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.492"} +{"sensors":[{"euler":{"heading":352.6875,"pitch":151.375,"roll":36.875},"location":"Left Knee"},{"euler":{"heading":26.0,"pitch":88.25,"roll":-11.875},"location":"Left Ankle"},{"euler":{"heading":65.4375,"pitch":-4.5,"roll":-11.9375},"location":"Right Ankle"},{"euler":{"heading":123.9375,"pitch":-169.0,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":79.6875,"pitch":-110.75,"roll":-1.375},"location":"Right Knee"},{"euler":{"heading":13.125,"pitch":-122.5625,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.593"} +{"sensors":[{"euler":{"heading":1.375,"pitch":145.6875,"roll":37.5},"location":"Left Knee"},{"euler":{"heading":33.4375,"pitch":93.6875,"roll":-5.6875},"location":"Left Ankle"},{"euler":{"heading":54.25,"pitch":-6.0625,"roll":-15.6875},"location":"Right Ankle"},{"euler":{"heading":127.75,"pitch":-169.3125,"roll":63.3125},"location":"Right Hip"},{"euler":{"heading":91.9375,"pitch":-107.5625,"roll":-12.4375},"location":"Right Knee"},{"euler":{"heading":14.75,"pitch":-125.8125,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.694"} +{"sensors":[{"euler":{"heading":11.4375,"pitch":138.4375,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":43.5,"pitch":95.1875,"roll":2.875},"location":"Left Ankle"},{"euler":{"heading":34.625,"pitch":-3.625,"roll":-18.0625},"location":"Right Ankle"},{"euler":{"heading":135.5625,"pitch":-159.6875,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":103.3125,"pitch":-108.5625,"roll":-22.625},"location":"Right Knee"},{"euler":{"heading":15.6875,"pitch":-128.4375,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.795"} +{"sensors":[{"euler":{"heading":15.5625,"pitch":134.25,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":48.4375,"pitch":96.5,"roll":6.3125},"location":"Left Ankle"},{"euler":{"heading":33.3125,"pitch":-7.1875,"roll":-14.875},"location":"Right Ankle"},{"euler":{"heading":139.625,"pitch":-153.8125,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":98.625,"pitch":-105.6875,"roll":-20.9375},"location":"Right Knee"},{"euler":{"heading":18.125,"pitch":-134.5625,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.896"} +{"sensors":[{"euler":{"heading":22.375,"pitch":129.0,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":55.4375,"pitch":98.75,"roll":11.0625},"location":"Left Ankle"},{"euler":{"heading":53.25,"pitch":-13.8125,"roll":-9.5625},"location":"Right Ankle"},{"euler":{"heading":135.8125,"pitch":-155.0625,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":64.5625,"pitch":-101.6875,"roll":-2.125},"location":"Right Knee"},{"euler":{"heading":21.875,"pitch":-139.125,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:29.996"} +{"sensors":[{"euler":{"heading":29.3125,"pitch":124.625,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":60.4375,"pitch":100.75,"roll":15.25},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":-15.875,"roll":-2.0},"location":"Right Ankle"},{"euler":{"heading":128.875,"pitch":-159.0625,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":58.25,"pitch":-98.6875,"roll":17.625},"location":"Right Knee"},{"euler":{"heading":24.6875,"pitch":-144.1875,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.97"} +{"sensors":[{"euler":{"heading":37.0,"pitch":121.75,"roll":22.3125},"location":"Left Knee"},{"euler":{"heading":66.8125,"pitch":102.4375,"roll":21.625},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":-14.5,"roll":1.75},"location":"Right Ankle"},{"euler":{"heading":119.25,"pitch":-161.9375,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":44.4375,"pitch":-100.875,"roll":30.5625},"location":"Right Knee"},{"euler":{"heading":25.5,"pitch":-147.0625,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.198"} +{"sensors":[{"euler":{"heading":45.3125,"pitch":120.375,"roll":14.0},"location":"Left Knee"},{"euler":{"heading":74.875,"pitch":103.6875,"roll":31.25},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":-13.125,"roll":-0.3125},"location":"Right Ankle"},{"euler":{"heading":115.625,"pitch":-164.375,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":46.5625,"pitch":-105.9375,"roll":26.625},"location":"Right Knee"},{"euler":{"heading":27.5625,"pitch":-151.6875,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.300"} +{"sensors":[{"euler":{"heading":61.0625,"pitch":120.875,"roll":2.5625},"location":"Left Knee"},{"euler":{"heading":87.25,"pitch":108.25,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":83.1875,"pitch":-12.25,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":118.5625,"pitch":-163.875,"roll":54.75},"location":"Right Hip"},{"euler":{"heading":53.75,"pitch":-108.9375,"roll":20.5},"location":"Right Knee"},{"euler":{"heading":17.625,"pitch":-138.3125,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.400"} +{"sensors":[{"euler":{"heading":71.1875,"pitch":120.0625,"roll":-1.3125},"location":"Left Knee"},{"euler":{"heading":89.9375,"pitch":108.75,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":-12.4375,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":118.75,"pitch":-164.8125,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":64.0,"pitch":-109.625,"roll":13.6875},"location":"Right Knee"},{"euler":{"heading":11.6875,"pitch":-120.25,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.501"} +{"sensors":[{"euler":{"heading":57.8125,"pitch":129.1875,"roll":9.5},"location":"Left Knee"},{"euler":{"heading":74.0,"pitch":94.6875,"roll":36.4375},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":-12.375,"roll":-8.625},"location":"Right Ankle"},{"euler":{"heading":122.625,"pitch":-164.25,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":70.5,"pitch":-108.4375,"roll":8.75},"location":"Right Knee"},{"euler":{"heading":4.9375,"pitch":-116.8125,"roll":48.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.601"} +{"sensors":[{"euler":{"heading":0.3125,"pitch":141.6875,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":46.5625,"pitch":90.1875,"roll":9.0},"location":"Left Ankle"},{"euler":{"heading":71.6875,"pitch":-11.8125,"roll":-9.375},"location":"Right Ankle"},{"euler":{"heading":125.125,"pitch":-164.625,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":76.9375,"pitch":-108.0,"roll":3.5},"location":"Right Knee"},{"euler":{"heading":5.3125,"pitch":-116.0,"roll":47.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.701"} +{"sensors":[{"euler":{"heading":351.5,"pitch":151.5625,"roll":37.375},"location":"Left Knee"},{"euler":{"heading":25.25,"pitch":88.4375,"roll":-12.375},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":-8.9375,"roll":-13.4375},"location":"Right Ankle"},{"euler":{"heading":126.625,"pitch":-165.1875,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":83.0,"pitch":-109.1875,"roll":-2.0625},"location":"Right Knee"},{"euler":{"heading":9.875,"pitch":-120.25,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.802"} +{"sensors":[{"euler":{"heading":356.5,"pitch":149.375,"roll":37.875},"location":"Left Knee"},{"euler":{"heading":26.9375,"pitch":92.5625,"roll":-12.0},"location":"Left Ankle"},{"euler":{"heading":57.5625,"pitch":-7.25,"roll":-16.625},"location":"Right Ankle"},{"euler":{"heading":126.875,"pitch":-169.75,"roll":64.125},"location":"Right Hip"},{"euler":{"heading":91.1875,"pitch":-108.5625,"roll":-9.5625},"location":"Right Knee"},{"euler":{"heading":31.1875,"pitch":-123.375,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:30.903"} +{"sensors":[{"euler":{"heading":10.375,"pitch":140.0625,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":42.8125,"pitch":95.9375,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":40.875,"pitch":-9.25,"roll":-18.0},"location":"Right Ankle"},{"euler":{"heading":132.0625,"pitch":-166.4375,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":102.6875,"pitch":-103.625,"roll":-21.1875},"location":"Right Knee"},{"euler":{"heading":15.5625,"pitch":-125.5,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.3"} +{"sensors":[{"euler":{"heading":16.9375,"pitch":133.625,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":48.1875,"pitch":97.6875,"roll":4.4375},"location":"Left Ankle"},{"euler":{"heading":29.75,"pitch":-8.6875,"roll":-17.5625},"location":"Right Ankle"},{"euler":{"heading":138.0625,"pitch":-157.4375,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":107.9375,"pitch":-106.625,"roll":-26.9375},"location":"Right Knee"},{"euler":{"heading":18.3125,"pitch":-130.5,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.104"} +{"sensors":[{"euler":{"heading":20.6875,"pitch":129.25,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":54.375,"pitch":99.125,"roll":8.875},"location":"Left Ankle"},{"euler":{"heading":43.75,"pitch":-10.4375,"roll":-13.75},"location":"Right Ankle"},{"euler":{"heading":139.625,"pitch":-154.75,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":92.5625,"pitch":-104.8125,"roll":-15.25},"location":"Right Knee"},{"euler":{"heading":20.875,"pitch":-136.1875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.204"} +{"sensors":[{"euler":{"heading":26.5,"pitch":125.6875,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":62.875,"pitch":101.125,"roll":15.625},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":-16.6875,"roll":-4.1875},"location":"Right Ankle"},{"euler":{"heading":133.375,"pitch":-157.875,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":69.5,"pitch":-98.875,"roll":5.75},"location":"Right Knee"},{"euler":{"heading":22.0625,"pitch":-140.0625,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.305"} +{"sensors":[{"euler":{"heading":33.0625,"pitch":122.1875,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":67.0,"pitch":102.3125,"roll":19.9375},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":-16.0,"roll":2.375},"location":"Right Ankle"},{"euler":{"heading":126.0625,"pitch":-160.125,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":49.8125,"pitch":-98.5,"roll":24.75},"location":"Right Knee"},{"euler":{"heading":24.25,"pitch":-143.125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.406"} +{"sensors":[{"euler":{"heading":39.3125,"pitch":119.75,"roll":20.625},"location":"Left Knee"},{"euler":{"heading":72.8125,"pitch":103.25,"roll":26.5},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":-15.1875,"roll":1.875},"location":"Right Ankle"},{"euler":{"heading":117.8125,"pitch":-162.9375,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":44.0625,"pitch":-100.6875,"roll":30.375},"location":"Right Knee"},{"euler":{"heading":26.9375,"pitch":-149.0625,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.507"} +{"sensors":[{"euler":{"heading":48.75,"pitch":119.3125,"roll":11.875},"location":"Left Knee"},{"euler":{"heading":79.4375,"pitch":103.0,"roll":37.6875},"location":"Left Ankle"},{"euler":{"heading":84.375,"pitch":-10.0625,"roll":-2.0625},"location":"Right Ankle"},{"euler":{"heading":117.6875,"pitch":-162.3125,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":45.5625,"pitch":-107.9375,"roll":24.9375},"location":"Right Knee"},{"euler":{"heading":29.1875,"pitch":-152.0625,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.608"} +{"sensors":[{"euler":{"heading":64.5625,"pitch":119.375,"roll":1.4375},"location":"Left Knee"},{"euler":{"heading":96.25,"pitch":114.5,"roll":51.75},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":-7.5,"roll":-5.0},"location":"Right Ankle"},{"euler":{"heading":117.625,"pitch":-163.25,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":54.8125,"pitch":-110.9375,"roll":18.6875},"location":"Right Knee"},{"euler":{"heading":16.75,"pitch":-135.8125,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.708"} +{"sensors":[{"euler":{"heading":69.75,"pitch":122.625,"roll":0.6875},"location":"Left Knee"},{"euler":{"heading":87.5625,"pitch":102.5625,"roll":47.125},"location":"Left Ankle"},{"euler":{"heading":76.5,"pitch":-8.8125,"roll":-7.25},"location":"Right Ankle"},{"euler":{"heading":119.0625,"pitch":-165.0,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":64.4375,"pitch":-109.875,"roll":12.5},"location":"Right Knee"},{"euler":{"heading":9.375,"pitch":-122.5625,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.809"} +{"sensors":[{"euler":{"heading":45.625,"pitch":134.5625,"roll":14.5625},"location":"Left Knee"},{"euler":{"heading":60.4375,"pitch":93.9375,"roll":23.1875},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":-7.4375,"roll":-8.8125},"location":"Right Ankle"},{"euler":{"heading":122.0625,"pitch":-163.75,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":69.1875,"pitch":-110.5,"roll":8.3125},"location":"Right Knee"},{"euler":{"heading":4.8125,"pitch":-117.9375,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:31.911"} +{"sensors":[{"euler":{"heading":354.125,"pitch":146.9375,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":32.625,"pitch":88.375,"roll":-2.5},"location":"Left Ankle"},{"euler":{"heading":67.875,"pitch":-5.125,"roll":-10.875},"location":"Right Ankle"},{"euler":{"heading":123.4375,"pitch":-163.9375,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":74.0,"pitch":-112.0,"roll":3.6875},"location":"Right Knee"},{"euler":{"heading":4.75,"pitch":-117.3125,"roll":48.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.12"} +{"sensors":[{"euler":{"heading":288.0,"pitch":154.0,"roll":37.9375},"location":"Left Knee"},{"euler":{"heading":22.375,"pitch":88.3125,"roll":-14.8125},"location":"Left Ankle"},{"euler":{"heading":60.375,"pitch":-3.4375,"roll":-13.5625},"location":"Right Ankle"},{"euler":{"heading":124.6875,"pitch":-166.0625,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":82.0,"pitch":-111.8125,"roll":-3.0625},"location":"Right Knee"},{"euler":{"heading":9.3125,"pitch":-121.1875,"roll":49.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.112"} +{"sensors":[{"euler":{"heading":4.9375,"pitch":145.0625,"roll":36.0},"location":"Left Knee"},{"euler":{"heading":33.1875,"pitch":97.6875,"roll":-6.5},"location":"Left Ankle"},{"euler":{"heading":48.4375,"pitch":-4.75,"roll":-16.5},"location":"Right Ankle"},{"euler":{"heading":127.5625,"pitch":-168.125,"roll":63.375},"location":"Right Hip"},{"euler":{"heading":95.125,"pitch":-108.75,"roll":-13.5625},"location":"Right Knee"},{"euler":{"heading":12.5625,"pitch":-124.0,"roll":50.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.213"} +{"sensors":[{"euler":{"heading":15.8125,"pitch":136.8125,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":44.4375,"pitch":97.6875,"roll":3.8125},"location":"Left Ankle"},{"euler":{"heading":31.8125,"pitch":-4.6875,"roll":-18.875},"location":"Right Ankle"},{"euler":{"heading":136.0,"pitch":-159.6875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":105.1875,"pitch":-108.6875,"roll":-24.0},"location":"Right Knee"},{"euler":{"heading":15.375,"pitch":-126.4375,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.313"} +{"sensors":[{"euler":{"heading":21.625,"pitch":130.25,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":52.5625,"pitch":100.9375,"roll":7.5},"location":"Left Ankle"},{"euler":{"heading":34.3125,"pitch":-8.3125,"roll":-15.8125},"location":"Right Ankle"},{"euler":{"heading":138.1875,"pitch":-155.8125,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":98.375,"pitch":-105.1875,"roll":-20.25},"location":"Right Knee"},{"euler":{"heading":19.9375,"pitch":-131.6875,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.414"} +{"sensors":[{"euler":{"heading":25.375,"pitch":127.0625,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":57.625,"pitch":101.4375,"roll":12.25},"location":"Left Ankle"},{"euler":{"heading":56.6875,"pitch":-13.9375,"roll":-10.3125},"location":"Right Ankle"},{"euler":{"heading":139.6875,"pitch":-155.1875,"roll":43.6875},"location":"Right Hip"},{"euler":{"heading":78.375,"pitch":-101.5,"roll":-1.75},"location":"Right Knee"},{"euler":{"heading":22.9375,"pitch":-138.4375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.515"} +{"sensors":[{"euler":{"heading":30.75,"pitch":124.5,"roll":26.9375},"location":"Left Knee"},{"euler":{"heading":61.0,"pitch":101.0,"roll":16.125},"location":"Left Ankle"},{"euler":{"heading":81.375,"pitch":-16.8125,"roll":-1.9375},"location":"Right Ankle"},{"euler":{"heading":131.1875,"pitch":-159.75,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":57.3125,"pitch":-97.6875,"roll":18.5},"location":"Right Knee"},{"euler":{"heading":24.0625,"pitch":-142.75,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.615"} +{"sensors":[{"euler":{"heading":36.3125,"pitch":121.9375,"roll":22.4375},"location":"Left Knee"},{"euler":{"heading":66.0625,"pitch":101.5,"roll":21.125},"location":"Left Ankle"},{"euler":{"heading":93.75,"pitch":-17.25,"roll":3.3125},"location":"Right Ankle"},{"euler":{"heading":121.875,"pitch":-162.3125,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":45.75,"pitch":-99.1875,"roll":30.9375},"location":"Right Knee"},{"euler":{"heading":26.25,"pitch":-147.5625,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.716"} +{"sensors":[{"euler":{"heading":44.625,"pitch":120.3125,"roll":15.3125},"location":"Left Knee"},{"euler":{"heading":73.9375,"pitch":102.625,"roll":29.625},"location":"Left Ankle"},{"euler":{"heading":89.75,"pitch":-14.4375,"roll":-0.125},"location":"Right Ankle"},{"euler":{"heading":117.125,"pitch":-163.5,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":45.9375,"pitch":-104.5,"roll":28.25},"location":"Right Knee"},{"euler":{"heading":28.75,"pitch":-153.6875,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.816"} +{"sensors":[{"euler":{"heading":58.9375,"pitch":119.8125,"roll":4.125},"location":"Left Knee"},{"euler":{"heading":86.1875,"pitch":107.125,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":-10.625,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":122.4375,"pitch":-161.3125,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":50.25,"pitch":-108.875,"roll":21.8125},"location":"Right Knee"},{"euler":{"heading":25.875,"pitch":-147.8125,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:32.918"} +{"sensors":[{"euler":{"heading":72.4375,"pitch":115.875,"roll":-2.25},"location":"Left Knee"},{"euler":{"heading":95.5,"pitch":112.125,"roll":56.625},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-9.1875,"roll":-6.75},"location":"Right Ankle"},{"euler":{"heading":124.3125,"pitch":-161.375,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":60.9375,"pitch":-110.25,"roll":15.1875},"location":"Right Knee"},{"euler":{"heading":17.375,"pitch":-125.1875,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.18"} +{"sensors":[{"euler":{"heading":63.0625,"pitch":125.9375,"roll":4.5625},"location":"Left Knee"},{"euler":{"heading":82.5,"pitch":95.6875,"roll":43.25},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-7.9375,"roll":-10.375},"location":"Right Ankle"},{"euler":{"heading":126.4375,"pitch":-160.1875,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":66.3125,"pitch":-111.5,"roll":10.625},"location":"Right Knee"},{"euler":{"heading":8.1875,"pitch":-118.875,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.119"} +{"sensors":[{"euler":{"heading":23.5,"pitch":138.25,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":52.25,"pitch":92.0625,"roll":13.9375},"location":"Left Ankle"},{"euler":{"heading":70.875,"pitch":-6.1875,"roll":-9.9375},"location":"Right Ankle"},{"euler":{"heading":126.3125,"pitch":-161.9375,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":70.625,"pitch":-112.625,"roll":6.6875},"location":"Right Knee"},{"euler":{"heading":5.75,"pitch":-116.0,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.220"} +{"sensors":[{"euler":{"heading":354.5625,"pitch":149.5,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":27.375,"pitch":88.75,"roll":-9.75},"location":"Left Ankle"},{"euler":{"heading":65.3125,"pitch":-3.8125,"roll":-12.4375},"location":"Right Ankle"},{"euler":{"heading":127.875,"pitch":-162.9375,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":77.75,"pitch":-113.0,"roll":0.875},"location":"Right Knee"},{"euler":{"heading":10.8125,"pitch":-119.75,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.321"} +{"sensors":[{"euler":{"heading":3.0625,"pitch":148.0,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":29.0,"pitch":95.75,"roll":-8.875},"location":"Left Ankle"},{"euler":{"heading":56.5625,"pitch":-6.4375,"roll":-17.25},"location":"Right Ankle"},{"euler":{"heading":131.6875,"pitch":-165.3125,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":88.75,"pitch":-109.625,"roll":-8.0},"location":"Right Knee"},{"euler":{"heading":16.75,"pitch":-123.9375,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.422"} +{"sensors":[{"euler":{"heading":13.9375,"pitch":138.75,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":41.3125,"pitch":97.625,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":38.25,"pitch":-10.1875,"roll":-18.375},"location":"Right Ankle"},{"euler":{"heading":138.625,"pitch":-160.625,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":102.3125,"pitch":-102.6875,"roll":-20.875},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-124.875,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.522"} +{"sensors":[{"euler":{"heading":20.0,"pitch":132.4375,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":49.0,"pitch":100.5,"roll":5.25},"location":"Left Ankle"},{"euler":{"heading":32.0625,"pitch":-8.6875,"roll":-17.125},"location":"Right Ankle"},{"euler":{"heading":142.1875,"pitch":-154.375,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":103.5,"pitch":-105.625,"roll":-23.1875},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-128.9375,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.622"} +{"sensors":[{"euler":{"heading":23.375,"pitch":129.0,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":54.3125,"pitch":100.75,"roll":9.8125},"location":"Left Ankle"},{"euler":{"heading":52.4375,"pitch":-12.375,"roll":-12.0},"location":"Right Ankle"},{"euler":{"heading":143.125,"pitch":-154.0,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":84.5625,"pitch":-102.875,"roll":-7.6875},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-134.625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.724"} +{"sensors":[{"euler":{"heading":28.1875,"pitch":126.25,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":57.625,"pitch":100.3125,"roll":13.3125},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-16.875,"roll":-0.4375},"location":"Right Ankle"},{"euler":{"heading":136.0,"pitch":-157.6875,"roll":41.4375},"location":"Right Hip"},{"euler":{"heading":61.8125,"pitch":-98.125,"roll":13.1875},"location":"Right Knee"},{"euler":{"heading":21.1875,"pitch":-140.875,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.824"} +{"sensors":[{"euler":{"heading":34.5625,"pitch":123.0,"roll":24.1875},"location":"Left Knee"},{"euler":{"heading":63.4375,"pitch":101.75,"roll":18.4375},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":-16.9375,"roll":4.0},"location":"Right Ankle"},{"euler":{"heading":126.125,"pitch":-160.75,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":46.1875,"pitch":-97.875,"roll":29.25},"location":"Right Knee"},{"euler":{"heading":22.25,"pitch":-143.6875,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:33.924"} +{"sensors":[{"euler":{"heading":40.75,"pitch":120.4375,"roll":19.0},"location":"Left Knee"},{"euler":{"heading":71.125,"pitch":103.375,"roll":25.8125},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":-13.0625,"roll":1.25},"location":"Right Ankle"},{"euler":{"heading":116.25,"pitch":-164.375,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":41.3125,"pitch":-102.4375,"roll":30.125},"location":"Right Knee"},{"euler":{"heading":26.1875,"pitch":-150.0625,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.25"} +{"sensors":[{"euler":{"heading":52.25,"pitch":121.125,"roll":8.1875},"location":"Left Knee"},{"euler":{"heading":76.9375,"pitch":101.5625,"roll":38.5},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":-11.875,"roll":-1.25},"location":"Right Ankle"},{"euler":{"heading":118.3125,"pitch":-163.8125,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":47.375,"pitch":-107.0,"roll":23.75},"location":"Right Knee"},{"euler":{"heading":26.8125,"pitch":-149.9375,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.125"} +{"sensors":[{"euler":{"heading":69.1875,"pitch":118.9375,"roll":-0.9375},"location":"Left Knee"},{"euler":{"heading":96.0625,"pitch":111.5625,"roll":53.875},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":-9.1875,"roll":-4.875},"location":"Right Ankle"},{"euler":{"heading":117.9375,"pitch":-164.875,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":55.5625,"pitch":-110.0,"roll":17.5},"location":"Right Knee"},{"euler":{"heading":15.6875,"pitch":-130.875,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.225"} +{"sensors":[{"euler":{"heading":68.1875,"pitch":123.625,"roll":2.1875},"location":"Left Knee"},{"euler":{"heading":84.9375,"pitch":99.1875,"roll":46.4375},"location":"Left Ankle"},{"euler":{"heading":76.5625,"pitch":-7.4375,"roll":-7.9375},"location":"Right Ankle"},{"euler":{"heading":123.9375,"pitch":-162.3125,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":63.0,"pitch":-112.1875,"roll":12.0625},"location":"Right Knee"},{"euler":{"heading":9.3125,"pitch":-121.25,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.326"} +{"sensors":[{"euler":{"heading":36.375,"pitch":134.875,"roll":19.375},"location":"Left Knee"},{"euler":{"heading":57.625,"pitch":91.5625,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":-6.625,"roll":-9.125},"location":"Right Ankle"},{"euler":{"heading":127.125,"pitch":-161.8125,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":68.625,"pitch":-112.375,"roll":7.625},"location":"Right Knee"},{"euler":{"heading":0.9375,"pitch":-121.0,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.426"} +{"sensors":[{"euler":{"heading":358.625,"pitch":147.5625,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":33.5,"pitch":88.8125,"roll":-4.25},"location":"Left Ankle"},{"euler":{"heading":67.8125,"pitch":-5.5,"roll":-11.5625},"location":"Right Ankle"},{"euler":{"heading":127.75,"pitch":-163.6875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":76.0625,"pitch":-112.3125,"roll":1.8125},"location":"Right Knee"},{"euler":{"heading":7.1875,"pitch":-120.25,"roll":47.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.526"} +{"sensors":[{"euler":{"heading":353.8125,"pitch":151.1875,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":29.25,"pitch":92.25,"roll":-10.375},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":-4.6875,"roll":-16.5},"location":"Right Ankle"},{"euler":{"heading":129.75,"pitch":-165.75,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":86.0625,"pitch":-110.9375,"roll":-6.1875},"location":"Right Knee"},{"euler":{"heading":12.625,"pitch":-124.5625,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.626"} +{"sensors":[{"euler":{"heading":7.9375,"pitch":141.8125,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":43.5625,"pitch":96.0625,"roll":-0.3125},"location":"Left Ankle"},{"euler":{"heading":44.8125,"pitch":-10.125,"roll":-17.125},"location":"Right Ankle"},{"euler":{"heading":135.3125,"pitch":-162.8125,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":100.125,"pitch":-104.875,"roll":-18.5625},"location":"Right Knee"},{"euler":{"heading":14.4375,"pitch":-124.25,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.727"} +{"sensors":[{"euler":{"heading":15.3125,"pitch":135.4375,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":48.3125,"pitch":96.0,"roll":5.5625},"location":"Left Ankle"},{"euler":{"heading":31.125,"pitch":-9.0625,"roll":-18.3125},"location":"Right Ankle"},{"euler":{"heading":142.0625,"pitch":-154.5625,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":105.8125,"pitch":-106.5,"roll":-25.1875},"location":"Right Knee"},{"euler":{"heading":18.1875,"pitch":-129.6875,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.828"} +{"sensors":[{"euler":{"heading":19.0625,"pitch":131.0,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":57.0625,"pitch":96.875,"roll":11.4375},"location":"Left Ankle"},{"euler":{"heading":43.4375,"pitch":-10.3125,"roll":-14.6875},"location":"Right Ankle"},{"euler":{"heading":143.75,"pitch":-152.8125,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":91.0625,"pitch":-104.375,"roll":-14.25},"location":"Right Knee"},{"euler":{"heading":21.5,"pitch":-134.9375,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:34.929"} +{"sensors":[{"euler":{"heading":22.25,"pitch":128.375,"roll":29.6875},"location":"Left Knee"},{"euler":{"heading":58.6875,"pitch":95.75,"roll":14.8125},"location":"Left Ankle"},{"euler":{"heading":67.3125,"pitch":-15.5625,"roll":-6.25},"location":"Right Ankle"},{"euler":{"heading":140.625,"pitch":-155.0,"roll":42.75},"location":"Right Hip"},{"euler":{"heading":69.5,"pitch":-99.5625,"roll":5.5625},"location":"Right Knee"},{"euler":{"heading":22.9375,"pitch":-141.3125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.30"} +{"sensors":[{"euler":{"heading":28.5625,"pitch":125.75,"roll":25.0625},"location":"Left Knee"},{"euler":{"heading":62.6875,"pitch":96.1875,"roll":19.125},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":-17.0,"roll":0.9375},"location":"Right Ankle"},{"euler":{"heading":130.0625,"pitch":-159.375,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":51.9375,"pitch":-97.8125,"roll":23.875},"location":"Right Knee"},{"euler":{"heading":25.25,"pitch":-145.1875,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.131"} +{"sensors":[{"euler":{"heading":35.375,"pitch":122.75,"roll":20.4375},"location":"Left Knee"},{"euler":{"heading":71.0625,"pitch":98.0625,"roll":26.625},"location":"Left Ankle"},{"euler":{"heading":97.0625,"pitch":-16.6875,"roll":2.4375},"location":"Right Ankle"},{"euler":{"heading":120.6875,"pitch":-162.625,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":42.875,"pitch":-100.5625,"roll":32.875},"location":"Right Knee"},{"euler":{"heading":26.75,"pitch":-149.5,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.231"} +{"sensors":[{"euler":{"heading":45.8125,"pitch":122.25,"roll":11.6875},"location":"Left Knee"},{"euler":{"heading":78.875,"pitch":98.4375,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":87.75,"pitch":-14.1875,"roll":-1.5625},"location":"Right Ankle"},{"euler":{"heading":118.875,"pitch":-163.4375,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":46.0,"pitch":-105.9375,"roll":27.4375},"location":"Right Knee"},{"euler":{"heading":28.0625,"pitch":-152.6875,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.332"} +{"sensors":[{"euler":{"heading":63.8125,"pitch":119.5,"roll":1.25},"location":"Left Knee"},{"euler":{"heading":95.4375,"pitch":109.3125,"roll":53.0625},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-14.4375,"roll":-4.6875},"location":"Right Ankle"},{"euler":{"heading":122.25,"pitch":-163.125,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":57.25,"pitch":-107.3125,"roll":19.25},"location":"Right Knee"},{"euler":{"heading":17.75,"pitch":-135.8125,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.432"} +{"sensors":[{"euler":{"heading":72.8125,"pitch":120.5625,"roll":-1.3125},"location":"Left Knee"},{"euler":{"heading":92.4375,"pitch":103.6875,"roll":52.25},"location":"Left Ankle"},{"euler":{"heading":79.25,"pitch":-13.9375,"roll":-6.75},"location":"Right Ankle"},{"euler":{"heading":124.0625,"pitch":-162.875,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":64.375,"pitch":-107.875,"roll":13.1875},"location":"Right Knee"},{"euler":{"heading":11.5625,"pitch":-121.4375,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.533"} +{"sensors":[{"euler":{"heading":52.5,"pitch":129.8125,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":68.125,"pitch":93.4375,"roll":29.6875},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-12.9375,"roll":-8.875},"location":"Right Ankle"},{"euler":{"heading":127.9375,"pitch":-161.3125,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":69.875,"pitch":-108.125,"roll":8.8125},"location":"Right Knee"},{"euler":{"heading":6.5625,"pitch":-117.1875,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.634"} +{"sensors":[{"euler":{"heading":8.5625,"pitch":142.75,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":38.75,"pitch":89.875,"roll":2.25},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-9.625,"roll":-11.5},"location":"Right Ankle"},{"euler":{"heading":130.875,"pitch":-160.9375,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":74.4375,"pitch":-110.0,"roll":4.3125},"location":"Right Knee"},{"euler":{"heading":7.0,"pitch":-116.25,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.735"} +{"sensors":[{"euler":{"heading":351.3125,"pitch":151.9375,"roll":38.375},"location":"Left Knee"},{"euler":{"heading":24.875,"pitch":89.1875,"roll":-13.625},"location":"Left Ankle"},{"euler":{"heading":64.375,"pitch":-7.3125,"roll":-14.6875},"location":"Right Ankle"},{"euler":{"heading":131.875,"pitch":-162.0,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":82.4375,"pitch":-109.8125,"roll":-2.3125},"location":"Right Knee"},{"euler":{"heading":12.625,"pitch":-120.375,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.837"} +{"sensors":[{"euler":{"heading":2.875,"pitch":145.1875,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":35.0,"pitch":97.4375,"roll":-6.5625},"location":"Left Ankle"},{"euler":{"heading":54.625,"pitch":-7.875,"roll":-18.125},"location":"Right Ankle"},{"euler":{"heading":133.3125,"pitch":-165.9375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":93.0,"pitch":-106.375,"roll":-11.5},"location":"Right Knee"},{"euler":{"heading":17.9375,"pitch":-124.0,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:35.938"} +{"sensors":[{"euler":{"heading":14.75,"pitch":136.75,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":46.75,"pitch":98.6875,"roll":3.9375},"location":"Left Ankle"},{"euler":{"heading":36.75,"pitch":-9.4375,"roll":-20.3125},"location":"Right Ankle"},{"euler":{"heading":138.9375,"pitch":-161.8125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":103.625,"pitch":-102.5,"roll":-23.25},"location":"Right Knee"},{"euler":{"heading":17.5,"pitch":-125.25,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.39"} +{"sensors":[{"euler":{"heading":22.8125,"pitch":129.5,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":54.8125,"pitch":101.375,"roll":8.125},"location":"Left Ankle"},{"euler":{"heading":32.375,"pitch":-11.4375,"roll":-17.9375},"location":"Right Ankle"},{"euler":{"heading":144.375,"pitch":-156.0,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":101.8125,"pitch":-100.6875,"roll":-23.0625},"location":"Right Knee"},{"euler":{"heading":23.3125,"pitch":-129.8125,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.140"} +{"sensors":[{"euler":{"heading":25.375,"pitch":127.4375,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":61.6875,"pitch":100.4375,"roll":15.9375},"location":"Left Ankle"},{"euler":{"heading":50.25,"pitch":-13.0625,"roll":-13.5625},"location":"Right Ankle"},{"euler":{"heading":147.125,"pitch":-153.75,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":83.1875,"pitch":-99.875,"roll":-6.3125},"location":"Right Knee"},{"euler":{"heading":24.9375,"pitch":-136.1875,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.241"} +{"sensors":[{"euler":{"heading":29.8125,"pitch":125.3125,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":65.375,"pitch":100.0,"roll":19.625},"location":"Left Ankle"},{"euler":{"heading":72.8125,"pitch":-15.3125,"roll":-3.5625},"location":"Right Ankle"},{"euler":{"heading":139.5625,"pitch":-156.3125,"roll":41.5625},"location":"Right Hip"},{"euler":{"heading":58.75,"pitch":-97.0,"roll":14.5625},"location":"Right Knee"},{"euler":{"heading":26.4375,"pitch":-142.125,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.342"} +{"sensors":[{"euler":{"heading":35.5,"pitch":121.875,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":72.125,"pitch":101.25,"roll":25.4375},"location":"Left Ankle"},{"euler":{"heading":94.125,"pitch":-16.5,"roll":1.5625},"location":"Right Ankle"},{"euler":{"heading":128.0,"pitch":-175.5625,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":42.125,"pitch":-97.5625,"roll":32.1875},"location":"Right Knee"},{"euler":{"heading":28.5,"pitch":-146.25,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.444"} +{"sensors":[{"euler":{"heading":43.125,"pitch":120.125,"roll":16.0625},"location":"Left Knee"},{"euler":{"heading":81.5,"pitch":102.5,"roll":35.375},"location":"Left Ankle"},{"euler":{"heading":92.8125,"pitch":-12.6875,"roll":-0.75},"location":"Right Ankle"},{"euler":{"heading":123.3125,"pitch":-160.875,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":36.9375,"pitch":-104.375,"roll":32.375},"location":"Right Knee"},{"euler":{"heading":30.1875,"pitch":-151.125,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.546"} +{"sensors":[{"euler":{"heading":56.5,"pitch":120.9375,"roll":5.125},"location":"Left Knee"},{"euler":{"heading":92.375,"pitch":108.25,"roll":52.5625},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":-13.0625,"roll":-5.0},"location":"Right Ankle"},{"euler":{"heading":125.5625,"pitch":-161.125,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":46.5,"pitch":-105.9375,"roll":24.8125},"location":"Right Knee"},{"euler":{"heading":27.4375,"pitch":-146.25,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.648"} +{"sensors":[{"euler":{"heading":71.9375,"pitch":115.875,"roll":-1.375},"location":"Left Knee"},{"euler":{"heading":96.0,"pitch":109.75,"roll":56.375},"location":"Left Ankle"},{"euler":{"heading":77.375,"pitch":-10.375,"roll":-7.9375},"location":"Right Ankle"},{"euler":{"heading":122.5,"pitch":-162.6875,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":54.5625,"pitch":-109.8125,"roll":18.75},"location":"Right Knee"},{"euler":{"heading":20.125,"pitch":-122.625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.748"} +{"sensors":[{"euler":{"heading":63.6875,"pitch":126.4375,"roll":5.125},"location":"Left Knee"},{"euler":{"heading":82.6875,"pitch":97.25,"roll":40.125},"location":"Left Ankle"},{"euler":{"heading":73.6875,"pitch":-8.1875,"roll":-10.0},"location":"Right Ankle"},{"euler":{"heading":125.625,"pitch":-160.9375,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":61.125,"pitch":-111.875,"roll":13.75},"location":"Right Knee"},{"euler":{"heading":10.875,"pitch":-115.8125,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.849"} +{"sensors":[{"euler":{"heading":26.5625,"pitch":138.875,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":49.6875,"pitch":92.5,"roll":11.4375},"location":"Left Ankle"},{"euler":{"heading":70.5625,"pitch":-6.0,"roll":-12.875},"location":"Right Ankle"},{"euler":{"heading":128.625,"pitch":-160.375,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":66.5,"pitch":-112.375,"roll":9.25},"location":"Right Knee"},{"euler":{"heading":9.625,"pitch":-114.625,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:36.949"} +{"sensors":[{"euler":{"heading":358.25,"pitch":149.9375,"roll":36.5},"location":"Left Knee"},{"euler":{"heading":26.5,"pitch":88.9375,"roll":-10.875},"location":"Left Ankle"},{"euler":{"heading":65.5,"pitch":-4.875,"roll":-14.375},"location":"Right Ankle"},{"euler":{"heading":131.5625,"pitch":-160.6875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":74.5625,"pitch":-111.625,"roll":3.0},"location":"Right Knee"},{"euler":{"heading":13.5625,"pitch":-118.375,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.49"} +{"sensors":[{"euler":{"heading":354.375,"pitch":150.75,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":26.8125,"pitch":93.6875,"roll":-11.625},"location":"Left Ankle"},{"euler":{"heading":56.125,"pitch":-3.6875,"roll":-18.375},"location":"Right Ankle"},{"euler":{"heading":133.5,"pitch":-162.625,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":84.875,"pitch":-110.0,"roll":-5.25},"location":"Right Knee"},{"euler":{"heading":17.8125,"pitch":-122.5,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.151"} +{"sensors":[{"euler":{"heading":11.5625,"pitch":140.9375,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":44.0,"pitch":97.4375,"roll":3.3125},"location":"Left Ankle"},{"euler":{"heading":43.25,"pitch":-8.875,"roll":-19.125},"location":"Right Ankle"},{"euler":{"heading":136.4375,"pitch":-163.9375,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":97.9375,"pitch":-104.5625,"roll":-16.125},"location":"Right Knee"},{"euler":{"heading":18.25,"pitch":-123.1875,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.252"} +{"sensors":[{"euler":{"heading":20.5,"pitch":133.625,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":48.4375,"pitch":100.1875,"roll":5.0625},"location":"Left Ankle"},{"euler":{"heading":29.8125,"pitch":-7.9375,"roll":-21.1875},"location":"Right Ankle"},{"euler":{"heading":142.75,"pitch":-156.1875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":102.75,"pitch":-106.0625,"roll":-22.9375},"location":"Right Knee"},{"euler":{"heading":21.125,"pitch":-126.0625,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.353"} +{"sensors":[{"euler":{"heading":24.0,"pitch":128.9375,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":55.3125,"pitch":101.8125,"roll":9.125},"location":"Left Ankle"},{"euler":{"heading":40.6875,"pitch":-13.625,"roll":-16.375},"location":"Right Ankle"},{"euler":{"heading":146.6875,"pitch":-153.1875,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":89.9375,"pitch":-100.375,"roll":-13.8125},"location":"Right Knee"},{"euler":{"heading":24.3125,"pitch":-133.5625,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.454"} +{"sensors":[{"euler":{"heading":30.25,"pitch":123.5625,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":63.1875,"pitch":104.25,"roll":14.8125},"location":"Left Ankle"},{"euler":{"heading":66.8125,"pitch":-17.9375,"roll":-8.875},"location":"Right Ankle"},{"euler":{"heading":141.3125,"pitch":-155.375,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":66.875,"pitch":-96.6875,"roll":7.1875},"location":"Right Knee"},{"euler":{"heading":26.9375,"pitch":-139.5,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.555"} +{"sensors":[{"euler":{"heading":36.25,"pitch":119.8125,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":67.625,"pitch":105.4375,"roll":19.0},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":-17.375,"roll":0.1875},"location":"Right Ankle"},{"euler":{"heading":128.625,"pitch":-160.375,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":47.9375,"pitch":-97.5,"roll":27.3125},"location":"Right Knee"},{"euler":{"heading":27.1875,"pitch":-142.25,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.656"} +{"sensors":[{"euler":{"heading":41.8125,"pitch":117.625,"roll":21.9375},"location":"Left Knee"},{"euler":{"heading":73.1875,"pitch":106.3125,"roll":25.0625},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":-17.3125,"roll":2.4375},"location":"Right Ankle"},{"euler":{"heading":116.0,"pitch":-165.4375,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":39.8125,"pitch":-98.75,"roll":34.625},"location":"Right Knee"},{"euler":{"heading":29.0625,"pitch":-147.3125,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.757"} +{"sensors":[{"euler":{"heading":50.875,"pitch":117.125,"roll":13.0625},"location":"Left Knee"},{"euler":{"heading":81.75,"pitch":105.8125,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":-14.625,"roll":-2.125},"location":"Right Ankle"},{"euler":{"heading":118.5,"pitch":-164.4375,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":44.4375,"pitch":-105.125,"roll":27.9375},"location":"Right Knee"},{"euler":{"heading":31.9375,"pitch":-150.375,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.859"} +{"sensors":[{"euler":{"heading":65.4375,"pitch":120.375,"roll":1.0},"location":"Left Knee"},{"euler":{"heading":95.75,"pitch":110.5625,"roll":53.3125},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-14.0,"roll":-4.875},"location":"Right Ankle"},{"euler":{"heading":120.5,"pitch":-165.4375,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":53.5625,"pitch":-108.1875,"roll":21.125},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-132.8125,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:37.959"} +{"sensors":[{"euler":{"heading":70.9375,"pitch":120.5,"roll":0.4375},"location":"Left Knee"},{"euler":{"heading":91.9375,"pitch":100.4375,"roll":51.375},"location":"Left Ankle"},{"euler":{"heading":80.375,"pitch":-13.4375,"roll":-7.25},"location":"Right Ankle"},{"euler":{"heading":121.8125,"pitch":-165.25,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":59.3125,"pitch":-109.4375,"roll":16.125},"location":"Right Knee"},{"euler":{"heading":11.125,"pitch":-117.5,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.60"} +{"sensors":[{"euler":{"heading":50.0625,"pitch":130.625,"roll":14.0625},"location":"Left Knee"},{"euler":{"heading":65.4375,"pitch":93.4375,"roll":27.25},"location":"Left Ankle"},{"euler":{"heading":77.4375,"pitch":-10.0625,"roll":-10.3125},"location":"Right Ankle"},{"euler":{"heading":126.0625,"pitch":-163.1875,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":56.25,"pitch":-111.125,"roll":17.0},"location":"Right Knee"},{"euler":{"heading":8.0625,"pitch":-115.1875,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.161"} +{"sensors":[{"euler":{"heading":8.8125,"pitch":144.9375,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":35.5,"pitch":90.0,"roll":-0.375},"location":"Left Ankle"},{"euler":{"heading":72.0625,"pitch":-7.0625,"roll":-11.0},"location":"Right Ankle"},{"euler":{"heading":127.8125,"pitch":-163.25,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":61.0625,"pitch":-112.1875,"roll":11.75},"location":"Right Knee"},{"euler":{"heading":8.1875,"pitch":-115.875,"roll":48.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.261"} +{"sensors":[{"euler":{"heading":355.0,"pitch":151.125,"roll":38.0625},"location":"Left Knee"},{"euler":{"heading":25.1875,"pitch":91.0625,"roll":-12.8125},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":-4.0625,"roll":-16.0625},"location":"Right Ankle"},{"euler":{"heading":129.4375,"pitch":-164.25,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":70.3125,"pitch":-111.625,"roll":4.375},"location":"Right Knee"},{"euler":{"heading":13.375,"pitch":-120.6875,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.362"} +{"sensors":[{"euler":{"heading":9.875,"pitch":142.5,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":38.125,"pitch":95.875,"roll":-2.875},"location":"Left Ankle"},{"euler":{"heading":52.25,"pitch":-7.5,"roll":-18.4375},"location":"Right Ankle"},{"euler":{"heading":133.0625,"pitch":-164.8125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":84.9375,"pitch":-106.75,"roll":-7.1875},"location":"Right Knee"},{"euler":{"heading":14.5,"pitch":-122.6875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.462"} +{"sensors":[{"euler":{"heading":17.75,"pitch":135.75,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":45.375,"pitch":96.5625,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":33.5,"pitch":-9.5,"roll":-20.0625},"location":"Right Ankle"},{"euler":{"heading":141.75,"pitch":-158.125,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":93.1875,"pitch":-103.625,"roll":-16.625},"location":"Right Knee"},{"euler":{"heading":17.0625,"pitch":-125.625,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.563"} +{"sensors":[{"euler":{"heading":19.3125,"pitch":131.6875,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":56.5625,"pitch":97.5,"roll":10.6875},"location":"Left Ankle"},{"euler":{"heading":40.1875,"pitch":-11.0,"roll":-16.625},"location":"Right Ankle"},{"euler":{"heading":144.3125,"pitch":-153.9375,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":82.5,"pitch":-102.75,"roll":-8.0625},"location":"Right Knee"},{"euler":{"heading":20.4375,"pitch":-133.75,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.667"} +{"sensors":[{"euler":{"heading":22.9375,"pitch":129.0,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":59.5625,"pitch":96.5625,"roll":15.375},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":-15.375,"roll":-9.4375},"location":"Right Ankle"},{"euler":{"heading":141.25,"pitch":-155.25,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":62.5,"pitch":-99.8125,"roll":9.6875},"location":"Right Knee"},{"euler":{"heading":22.0,"pitch":-139.125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.768"} +{"sensors":[{"euler":{"heading":31.0625,"pitch":124.375,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":64.25,"pitch":98.5625,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":-15.4375,"roll":-1.6875},"location":"Right Ankle"},{"euler":{"heading":130.5625,"pitch":-159.9375,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":42.375,"pitch":-97.0625,"roll":29.1875},"location":"Right Knee"},{"euler":{"heading":25.1875,"pitch":-143.75,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.869"} +{"sensors":[{"euler":{"heading":38.3125,"pitch":121.5,"roll":21.1875},"location":"Left Knee"},{"euler":{"heading":72.125,"pitch":100.6875,"roll":26.625},"location":"Left Ankle"},{"euler":{"heading":96.5,"pitch":-17.5625,"roll":2.75},"location":"Right Ankle"},{"euler":{"heading":122.125,"pitch":-162.875,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":32.75,"pitch":-97.6875,"roll":40.3125},"location":"Right Knee"},{"euler":{"heading":27.5625,"pitch":-148.8125,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:38.970"} +{"sensors":[{"euler":{"heading":47.625,"pitch":120.0,"roll":13.5625},"location":"Left Knee"},{"euler":{"heading":81.375,"pitch":102.625,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":-12.6875,"roll":-1.0625},"location":"Right Ankle"},{"euler":{"heading":118.125,"pitch":-164.0625,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":30.4375,"pitch":-103.4375,"roll":37.375},"location":"Right Knee"},{"euler":{"heading":31.125,"pitch":-155.4375,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.70"} +{"sensors":[{"euler":{"heading":62.0,"pitch":121.0625,"roll":2.3125},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":109.1875,"roll":51.5625},"location":"Left Ankle"},{"euler":{"heading":82.1875,"pitch":-9.6875,"roll":-5.3125},"location":"Right Ankle"},{"euler":{"heading":123.0,"pitch":-162.0625,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":36.5,"pitch":-107.875,"roll":30.75},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-141.4375,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.171"} +{"sensors":[{"euler":{"heading":70.3125,"pitch":119.25,"roll":-1.1875},"location":"Left Knee"},{"euler":{"heading":88.5,"pitch":106.6875,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":-7.125,"roll":-8.625},"location":"Right Ankle"},{"euler":{"heading":121.25,"pitch":-163.375,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":43.5,"pitch":-112.8125,"roll":25.125},"location":"Right Knee"},{"euler":{"heading":15.0625,"pitch":-120.25,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.271"} +{"sensors":[{"euler":{"heading":56.5,"pitch":129.375,"roll":9.5625},"location":"Left Knee"},{"euler":{"heading":70.5625,"pitch":93.1875,"roll":32.0625},"location":"Left Ankle"},{"euler":{"heading":76.375,"pitch":-4.8125,"roll":-12.0625},"location":"Right Ankle"},{"euler":{"heading":124.1875,"pitch":-161.9375,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":48.6875,"pitch":-114.1875,"roll":20.5625},"location":"Right Knee"},{"euler":{"heading":7.75,"pitch":-115.75,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.372"} +{"sensors":[{"euler":{"heading":10.875,"pitch":143.0,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":40.1875,"pitch":89.3125,"roll":4.875},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":-2.9375,"roll":-10.625},"location":"Right Ankle"},{"euler":{"heading":126.625,"pitch":-162.4375,"roll":61.3125},"location":"Right Hip"},{"euler":{"heading":54.1875,"pitch":-114.4375,"roll":15.8125},"location":"Right Knee"},{"euler":{"heading":7.0625,"pitch":-114.75,"roll":49.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.473"} +{"sensors":[{"euler":{"heading":352.875,"pitch":152.0,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":25.125,"pitch":87.375,"roll":-12.25},"location":"Left Ankle"},{"euler":{"heading":66.625,"pitch":-2.3125,"roll":-14.875},"location":"Right Ankle"},{"euler":{"heading":127.9375,"pitch":-164.3125,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":63.5625,"pitch":-113.5,"roll":9.0},"location":"Right Knee"},{"euler":{"heading":12.1875,"pitch":-119.625,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.573"} +{"sensors":[{"euler":{"heading":3.625,"pitch":146.1875,"roll":36.125},"location":"Left Knee"},{"euler":{"heading":30.9375,"pitch":92.875,"roll":-6.625},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":-5.5,"roll":-17.625},"location":"Right Ankle"},{"euler":{"heading":129.5,"pitch":-168.25,"roll":63.5},"location":"Right Hip"},{"euler":{"heading":76.0,"pitch":-109.875,"roll":-0.5},"location":"Right Knee"},{"euler":{"heading":15.3125,"pitch":-120.9375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.674"} +{"sensors":[{"euler":{"heading":14.3125,"pitch":139.625,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":44.25,"pitch":95.0625,"roll":4.0},"location":"Left Ankle"},{"euler":{"heading":37.75,"pitch":-8.375,"roll":-18.25},"location":"Right Ankle"},{"euler":{"heading":134.9375,"pitch":-164.0625,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":90.25,"pitch":-104.3125,"roll":-13.25},"location":"Right Knee"},{"euler":{"heading":12.5,"pitch":-121.5,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.775"} +{"sensors":[{"euler":{"heading":20.5625,"pitch":133.8125,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":50.1875,"pitch":98.0625,"roll":7.4375},"location":"Left Ankle"},{"euler":{"heading":36.4375,"pitch":-10.8125,"roll":-16.3125},"location":"Right Ankle"},{"euler":{"heading":140.8125,"pitch":-156.25,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":89.9375,"pitch":-102.25,"roll":-14.4375},"location":"Right Knee"},{"euler":{"heading":17.3125,"pitch":-127.375,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.876"} +{"sensors":[{"euler":{"heading":26.1875,"pitch":129.0,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":54.5,"pitch":98.8125,"roll":11.25},"location":"Left Ankle"},{"euler":{"heading":54.375,"pitch":-14.75,"roll":-11.0},"location":"Right Ankle"},{"euler":{"heading":141.125,"pitch":-155.0625,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":73.1875,"pitch":-100.9375,"roll":0.75},"location":"Right Knee"},{"euler":{"heading":21.75,"pitch":-132.75,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:39.977"} +{"sensors":[{"euler":{"heading":32.125,"pitch":125.4375,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":61.0,"pitch":100.75,"roll":16.625},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":-17.4375,"roll":-3.25},"location":"Right Ankle"},{"euler":{"heading":135.5625,"pitch":-158.625,"roll":42.3125},"location":"Right Hip"},{"euler":{"heading":50.5,"pitch":-97.625,"roll":22.9375},"location":"Right Knee"},{"euler":{"heading":25.5,"pitch":-140.375,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.79"} +{"sensors":[{"euler":{"heading":38.6875,"pitch":122.625,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":66.875,"pitch":101.875,"roll":21.75},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":-18.1875,"roll":3.9375},"location":"Right Ankle"},{"euler":{"heading":126.25,"pitch":-161.625,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":36.5625,"pitch":-97.1875,"roll":38.375},"location":"Right Knee"},{"euler":{"heading":26.5,"pitch":-144.625,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.179"} +{"sensors":[{"euler":{"heading":45.75,"pitch":120.25,"roll":16.8125},"location":"Left Knee"},{"euler":{"heading":74.1875,"pitch":103.3125,"roll":29.8125},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":-13.0625,"roll":0.5},"location":"Right Ankle"},{"euler":{"heading":118.75,"pitch":-164.1875,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":29.4375,"pitch":-102.125,"roll":40.0},"location":"Right Knee"},{"euler":{"heading":28.6875,"pitch":-150.125,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.280"} +{"sensors":[{"euler":{"heading":58.9375,"pitch":120.875,"roll":5.3125},"location":"Left Knee"},{"euler":{"heading":83.5625,"pitch":105.25,"roll":45.8125},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":-13.875,"roll":-2.4375},"location":"Right Ankle"},{"euler":{"heading":123.6875,"pitch":-163.0625,"roll":50.5},"location":"Right Hip"},{"euler":{"heading":35.8125,"pitch":-106.25,"roll":33.1875},"location":"Right Knee"},{"euler":{"heading":23.4375,"pitch":-141.4375,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.380"} +{"sensors":[{"euler":{"heading":73.4375,"pitch":118.4375,"roll":-2.125},"location":"Left Knee"},{"euler":{"heading":96.9375,"pitch":111.5,"roll":57.5},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":-13.125,"roll":-5.1875},"location":"Right Ankle"},{"euler":{"heading":122.1875,"pitch":-163.9375,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":43.8125,"pitch":-110.25,"roll":26.875},"location":"Right Knee"},{"euler":{"heading":12.625,"pitch":-118.5625,"roll":56.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.481"} +{"sensors":[{"euler":{"heading":62.8125,"pitch":127.1875,"roll":5.9375},"location":"Left Knee"},{"euler":{"heading":81.625,"pitch":95.4375,"roll":42.4375},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":-14.125,"roll":-6.5625},"location":"Right Ankle"},{"euler":{"heading":125.8125,"pitch":-163.4375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":51.5,"pitch":-109.25,"roll":21.875},"location":"Right Knee"},{"euler":{"heading":4.125,"pitch":-113.75,"roll":49.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.582"} +{"sensors":[{"euler":{"heading":20.1875,"pitch":139.8125,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":52.1875,"pitch":87.625,"roll":15.3125},"location":"Left Ankle"},{"euler":{"heading":76.5625,"pitch":-13.25,"roll":-7.9375},"location":"Right Ankle"},{"euler":{"heading":129.0,"pitch":-163.0625,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":57.4375,"pitch":-108.6875,"roll":17.0},"location":"Right Knee"},{"euler":{"heading":3.8125,"pitch":-112.5,"roll":47.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.683"} +{"sensors":[{"euler":{"heading":358.875,"pitch":148.6875,"roll":35.8125},"location":"Left Knee"},{"euler":{"heading":29.125,"pitch":89.0625,"roll":-8.1875},"location":"Left Ankle"},{"euler":{"heading":70.6875,"pitch":-9.75,"roll":-11.5},"location":"Right Ankle"},{"euler":{"heading":132.6875,"pitch":-161.75,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":62.9375,"pitch":-109.5,"roll":11.6875},"location":"Right Knee"},{"euler":{"heading":8.6875,"pitch":-116.125,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.783"} +{"sensors":[{"euler":{"heading":357.6875,"pitch":150.625,"roll":37.3125},"location":"Left Knee"},{"euler":{"heading":25.875,"pitch":92.125,"roll":-12.5},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-7.3125,"roll":-14.8125},"location":"Right Ankle"},{"euler":{"heading":133.5625,"pitch":-164.1875,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":71.25,"pitch":-108.875,"roll":4.6875},"location":"Right Knee"},{"euler":{"heading":12.75,"pitch":-119.75,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.884"} +{"sensors":[{"euler":{"heading":12.8125,"pitch":141.1875,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":38.5625,"pitch":96.3125,"roll":-1.6875},"location":"Left Ankle"},{"euler":{"heading":50.75,"pitch":-9.6875,"roll":-18.0},"location":"Right Ankle"},{"euler":{"heading":135.25,"pitch":-165.5625,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":84.375,"pitch":-104.875,"roll":-6.0625},"location":"Right Knee"},{"euler":{"heading":14.75,"pitch":-120.0625,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:40.984"} +{"sensors":[{"euler":{"heading":21.0,"pitch":134.25,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":46.6875,"pitch":97.3125,"roll":4.5625},"location":"Left Ankle"},{"euler":{"heading":32.8125,"pitch":-8.875,"roll":-21.5},"location":"Right Ankle"},{"euler":{"heading":142.0625,"pitch":-158.25,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":93.125,"pitch":-104.6875,"roll":-15.75},"location":"Right Knee"},{"euler":{"heading":16.375,"pitch":-122.9375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.85"} +{"sensors":[{"euler":{"heading":22.4375,"pitch":130.75,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":50.625,"pitch":96.9375,"roll":8.0625},"location":"Left Ankle"},{"euler":{"heading":38.6875,"pitch":-11.4375,"roll":-17.0625},"location":"Right Ankle"},{"euler":{"heading":147.1875,"pitch":-154.0625,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":82.8125,"pitch":-101.75,"roll":-8.25},"location":"Right Knee"},{"euler":{"heading":19.25,"pitch":-129.9375,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.187"} +{"sensors":[{"euler":{"heading":26.75,"pitch":127.5625,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":61.0625,"pitch":98.25,"roll":16.0625},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-17.125,"roll":-8.6875},"location":"Right Ankle"},{"euler":{"heading":144.3125,"pitch":-155.25,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":61.8125,"pitch":-98.9375,"roll":11.5625},"location":"Right Knee"},{"euler":{"heading":23.3125,"pitch":-137.3125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.288"} +{"sensors":[{"euler":{"heading":33.375,"pitch":123.8125,"roll":24.9375},"location":"Left Knee"},{"euler":{"heading":67.25,"pitch":98.9375,"roll":21.9375},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":-16.8125,"roll":-0.6875},"location":"Right Ankle"},{"euler":{"heading":135.1875,"pitch":-159.4375,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":39.9375,"pitch":-96.75,"roll":32.875},"location":"Right Knee"},{"euler":{"heading":25.1875,"pitch":-141.375,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.390"} +{"sensors":[{"euler":{"heading":41.0,"pitch":120.5625,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":73.125,"pitch":100.75,"roll":27.875},"location":"Left Ankle"},{"euler":{"heading":96.8125,"pitch":-17.0625,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":125.9375,"pitch":-161.75,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":29.1875,"pitch":-99.6875,"roll":43.1875},"location":"Right Knee"},{"euler":{"heading":26.9375,"pitch":-146.0625,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.491"} +{"sensors":[{"euler":{"heading":49.8125,"pitch":119.125,"roll":12.4375},"location":"Left Knee"},{"euler":{"heading":81.0,"pitch":102.5,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":-13.9375,"roll":0.375},"location":"Right Ankle"},{"euler":{"heading":119.25,"pitch":-164.3125,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":29.4375,"pitch":-104.0,"roll":39.6875},"location":"Right Knee"},{"euler":{"heading":31.625,"pitch":-153.625,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.592"} +{"sensors":[{"euler":{"heading":65.75,"pitch":120.6875,"roll":0.5},"location":"Left Knee"},{"euler":{"heading":88.875,"pitch":106.9375,"roll":49.25},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":-11.4375,"roll":-3.25},"location":"Right Ankle"},{"euler":{"heading":124.0,"pitch":-162.0625,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":34.5,"pitch":-107.9375,"roll":32.75},"location":"Right Knee"},{"euler":{"heading":21.9375,"pitch":-143.8125,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.693"} +{"sensors":[{"euler":{"heading":75.375,"pitch":118.4375,"roll":-3.125},"location":"Left Knee"},{"euler":{"heading":92.25,"pitch":111.3125,"roll":53.3125},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-10.625,"roll":-6.8125},"location":"Right Ankle"},{"euler":{"heading":123.0625,"pitch":-163.3125,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":43.625,"pitch":-111.3125,"roll":26.0625},"location":"Right Knee"},{"euler":{"heading":12.25,"pitch":-119.5,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.793"} +{"sensors":[{"euler":{"heading":63.25,"pitch":127.0625,"roll":7.4375},"location":"Left Knee"},{"euler":{"heading":76.4375,"pitch":97.25,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-7.9375,"roll":-10.1875},"location":"Right Ankle"},{"euler":{"heading":125.8125,"pitch":-161.5625,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":46.8125,"pitch":-113.4375,"roll":22.25},"location":"Right Knee"},{"euler":{"heading":5.125,"pitch":-114.5625,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.894"} +{"sensors":[{"euler":{"heading":18.75,"pitch":141.5,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":43.0,"pitch":90.5625,"roll":8.125},"location":"Left Ankle"},{"euler":{"heading":73.6875,"pitch":-5.375,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":129.125,"pitch":-160.9375,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":51.5625,"pitch":-113.9375,"roll":17.75},"location":"Right Knee"},{"euler":{"heading":3.875,"pitch":-113.25,"roll":47.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:41.995"} +{"sensors":[{"euler":{"heading":289.375,"pitch":151.0,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":23.9375,"pitch":88.25,"roll":-12.625},"location":"Left Ankle"},{"euler":{"heading":67.25,"pitch":-2.9375,"roll":-13.5},"location":"Right Ankle"},{"euler":{"heading":129.8125,"pitch":-162.125,"roll":61.875},"location":"Right Hip"},{"euler":{"heading":59.4375,"pitch":-114.25,"roll":11.1875},"location":"Right Knee"},{"euler":{"heading":9.5625,"pitch":-118.625,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.95"} +{"sensors":[{"euler":{"heading":10.125,"pitch":144.875,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":28.5,"pitch":95.0,"roll":-9.0625},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":-3.8125,"roll":-17.6875},"location":"Right Ankle"},{"euler":{"heading":131.8125,"pitch":-165.875,"roll":62.5},"location":"Right Hip"},{"euler":{"heading":71.625,"pitch":-111.125,"roll":2.0},"location":"Right Knee"},{"euler":{"heading":14.6875,"pitch":-121.6875,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.196"} +{"sensors":[{"euler":{"heading":19.5625,"pitch":137.9375,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":42.6875,"pitch":97.5,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":41.3125,"pitch":-9.3125,"roll":-17.875},"location":"Right Ankle"},{"euler":{"heading":138.125,"pitch":-163.3125,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":87.3125,"pitch":-103.625,"roll":-10.75},"location":"Right Knee"},{"euler":{"heading":12.875,"pitch":-122.1875,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.297"} +{"sensors":[{"euler":{"heading":26.25,"pitch":131.5,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":50.0,"pitch":99.625,"roll":6.625},"location":"Left Ankle"},{"euler":{"heading":33.25,"pitch":-3.8125,"roll":-19.875},"location":"Right Ankle"},{"euler":{"heading":144.0,"pitch":-154.375,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":84.9375,"pitch":-107.6875,"roll":-11.8125},"location":"Right Knee"},{"euler":{"heading":17.5,"pitch":-128.75,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.397"} +{"sensors":[{"euler":{"heading":31.0,"pitch":125.4375,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":57.375,"pitch":102.1875,"roll":11.0625},"location":"Left Ankle"},{"euler":{"heading":53.0625,"pitch":-12.75,"roll":-11.0625},"location":"Right Ankle"},{"euler":{"heading":146.75,"pitch":-152.75,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":67.1875,"pitch":-101.625,"roll":3.3125},"location":"Right Knee"},{"euler":{"heading":23.875,"pitch":-137.625,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.503"} +{"sensors":[{"euler":{"heading":37.9375,"pitch":120.3125,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":62.75,"pitch":104.625,"roll":15.375},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-16.875,"roll":-2.875},"location":"Right Ankle"},{"euler":{"heading":141.25,"pitch":-157.0,"roll":40.4375},"location":"Right Hip"},{"euler":{"heading":48.5,"pitch":-97.1875,"roll":22.25},"location":"Right Knee"},{"euler":{"heading":27.625,"pitch":-141.375,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.603"} +{"sensors":[{"euler":{"heading":44.8125,"pitch":116.6875,"roll":22.9375},"location":"Left Knee"},{"euler":{"heading":68.0,"pitch":106.25,"roll":20.5625},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":-16.9375,"roll":4.3125},"location":"Right Ankle"},{"euler":{"heading":133.125,"pitch":-160.1875,"roll":43.9375},"location":"Right Hip"},{"euler":{"heading":32.6875,"pitch":-96.75,"roll":38.875},"location":"Right Knee"},{"euler":{"heading":30.5625,"pitch":-145.5,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.704"} +{"sensors":[{"euler":{"heading":52.0,"pitch":114.875,"roll":16.0},"location":"Left Knee"},{"euler":{"heading":76.1875,"pitch":108.125,"roll":28.9375},"location":"Left Ankle"},{"euler":{"heading":94.5,"pitch":-14.875,"roll":2.3125},"location":"Right Ankle"},{"euler":{"heading":123.25,"pitch":-163.8125,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":28.8125,"pitch":-100.9375,"roll":39.625},"location":"Right Knee"},{"euler":{"heading":33.0,"pitch":-150.4375,"roll":65.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.804"} +{"sensors":[{"euler":{"heading":64.375,"pitch":117.375,"roll":3.3125},"location":"Left Knee"},{"euler":{"heading":84.25,"pitch":108.3125,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":-14.125,"roll":-2.5},"location":"Right Ankle"},{"euler":{"heading":127.8125,"pitch":-162.875,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":35.9375,"pitch":-105.75,"roll":32.625},"location":"Right Knee"},{"euler":{"heading":25.0625,"pitch":-139.375,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:42.905"} +{"sensors":[{"euler":{"heading":76.5,"pitch":116.4375,"roll":-3.0625},"location":"Left Knee"},{"euler":{"heading":95.5,"pitch":111.3125,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":83.4375,"pitch":-12.25,"roll":-4.5625},"location":"Right Ankle"},{"euler":{"heading":124.4375,"pitch":-164.625,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":41.8125,"pitch":-108.4375,"roll":27.3125},"location":"Right Knee"},{"euler":{"heading":14.25,"pitch":-116.6875,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.6"} +{"sensors":[{"euler":{"heading":67.0625,"pitch":124.875,"roll":5.0625},"location":"Left Knee"},{"euler":{"heading":81.625,"pitch":97.375,"roll":41.3125},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":-10.3125,"roll":-7.5625},"location":"Right Ankle"},{"euler":{"heading":127.875,"pitch":-162.875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":47.5625,"pitch":-110.875,"roll":22.125},"location":"Right Knee"},{"euler":{"heading":6.6875,"pitch":-114.375,"roll":49.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.107"} +{"sensors":[{"euler":{"heading":26.25,"pitch":138.3125,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":49.5,"pitch":90.75,"roll":12.5625},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-8.5625,"roll":-9.4375},"location":"Right Ankle"},{"euler":{"heading":129.1875,"pitch":-162.75,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":52.875,"pitch":-111.875,"roll":17.1875},"location":"Right Knee"},{"euler":{"heading":5.25,"pitch":-113.25,"roll":47.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.208"} +{"sensors":[{"euler":{"heading":359.0,"pitch":148.8125,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":25.3125,"pitch":89.75,"roll":-12.125},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-6.125,"roll":-13.6875},"location":"Right Ankle"},{"euler":{"heading":130.75,"pitch":-163.4375,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":61.0,"pitch":-112.1875,"roll":10.4375},"location":"Right Knee"},{"euler":{"heading":8.75,"pitch":-118.125,"roll":48.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.309"} +{"sensors":[{"euler":{"heading":9.0,"pitch":145.25,"roll":35.9375},"location":"Left Knee"},{"euler":{"heading":30.0625,"pitch":96.25,"roll":-7.375},"location":"Left Ankle"},{"euler":{"heading":58.625,"pitch":-6.0,"roll":-16.3125},"location":"Right Ankle"},{"euler":{"heading":133.0625,"pitch":-166.0,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":72.125,"pitch":-109.5625,"roll":1.625},"location":"Right Knee"},{"euler":{"heading":14.75,"pitch":-120.4375,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.410"} +{"sensors":[{"euler":{"heading":18.6875,"pitch":137.1875,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":44.0625,"pitch":99.6875,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":42.375,"pitch":-11.0625,"roll":-17.75},"location":"Right Ankle"},{"euler":{"heading":138.875,"pitch":-162.4375,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":87.25,"pitch":-102.875,"roll":-10.625},"location":"Right Knee"},{"euler":{"heading":14.0,"pitch":-121.0625,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.511"} +{"sensors":[{"euler":{"heading":26.1875,"pitch":130.5625,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":51.3125,"pitch":100.6875,"roll":8.125},"location":"Left Ankle"},{"euler":{"heading":33.5625,"pitch":-11.5,"roll":-19.6875},"location":"Right Ankle"},{"euler":{"heading":147.9375,"pitch":-155.0625,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":88.875,"pitch":-103.75,"roll":-13.6875},"location":"Right Knee"},{"euler":{"heading":18.5,"pitch":-127.625,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.612"} +{"sensors":[{"euler":{"heading":30.375,"pitch":126.4375,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":62.9375,"pitch":102.0625,"roll":16.375},"location":"Left Ankle"},{"euler":{"heading":50.8125,"pitch":-16.125,"roll":-13.375},"location":"Right Ankle"},{"euler":{"heading":149.4375,"pitch":-153.4375,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":73.125,"pitch":-98.75,"roll":-0.25},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-135.1875,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.714"} +{"sensors":[{"euler":{"heading":35.625,"pitch":122.875,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":65.75,"pitch":103.0625,"roll":19.5625},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-19.0625,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":142.5,"pitch":-156.6875,"roll":41.125},"location":"Right Hip"},{"euler":{"heading":51.25,"pitch":-95.3125,"roll":20.875},"location":"Right Knee"},{"euler":{"heading":24.5,"pitch":-140.6875,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.814"} +{"sensors":[{"euler":{"heading":42.5,"pitch":119.625,"roll":22.8125},"location":"Left Knee"},{"euler":{"heading":71.5625,"pitch":105.3125,"roll":24.5},"location":"Left Ankle"},{"euler":{"heading":94.8125,"pitch":-17.375,"roll":2.9375},"location":"Right Ankle"},{"euler":{"heading":132.4375,"pitch":-160.0625,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":33.75,"pitch":-96.625,"roll":38.5},"location":"Right Knee"},{"euler":{"heading":26.75,"pitch":-145.3125,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:43.915"} +{"sensors":[{"euler":{"heading":48.625,"pitch":118.0625,"roll":16.8125},"location":"Left Knee"},{"euler":{"heading":79.625,"pitch":106.625,"roll":32.125},"location":"Left Ankle"},{"euler":{"heading":96.875,"pitch":-14.875,"roll":2.75},"location":"Right Ankle"},{"euler":{"heading":119.1875,"pitch":-165.3125,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":26.75,"pitch":-99.625,"roll":42.4375},"location":"Right Knee"},{"euler":{"heading":29.625,"pitch":-151.5,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.15"} +{"sensors":[{"euler":{"heading":60.5625,"pitch":117.875,"roll":5.5625},"location":"Left Knee"},{"euler":{"heading":82.0625,"pitch":104.8125,"roll":42.125},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":-14.0,"roll":-1.5},"location":"Right Ankle"},{"euler":{"heading":122.875,"pitch":-164.125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":30.6875,"pitch":-105.125,"roll":35.5625},"location":"Right Knee"},{"euler":{"heading":28.6875,"pitch":-147.0,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.115"} +{"sensors":[{"euler":{"heading":74.6875,"pitch":119.4375,"roll":-3.375},"location":"Left Knee"},{"euler":{"heading":96.6875,"pitch":112.125,"roll":56.6875},"location":"Left Ankle"},{"euler":{"heading":83.8125,"pitch":-12.875,"roll":-4.375},"location":"Right Ankle"},{"euler":{"heading":121.375,"pitch":-165.5625,"roll":54.375},"location":"Right Hip"},{"euler":{"heading":38.6875,"pitch":-109.25,"roll":29.125},"location":"Right Knee"},{"euler":{"heading":12.5,"pitch":-124.4375,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.216"} +{"sensors":[{"euler":{"heading":70.125,"pitch":124.75,"roll":1.0625},"location":"Left Knee"},{"euler":{"heading":85.375,"pitch":95.625,"roll":46.0625},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":-12.6875,"roll":-7.625},"location":"Right Ankle"},{"euler":{"heading":125.4375,"pitch":-163.75,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":46.5,"pitch":-110.5,"roll":23.375},"location":"Right Knee"},{"euler":{"heading":3.625,"pitch":-116.875,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.316"} +{"sensors":[{"euler":{"heading":34.875,"pitch":136.25,"roll":18.8125},"location":"Left Knee"},{"euler":{"heading":55.8125,"pitch":87.6875,"roll":20.3125},"location":"Left Ankle"},{"euler":{"heading":78.25,"pitch":-12.0625,"roll":-9.5625},"location":"Right Ankle"},{"euler":{"heading":128.75,"pitch":-163.0625,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":52.375,"pitch":-110.5,"roll":18.625},"location":"Right Knee"},{"euler":{"heading":2.375,"pitch":-114.125,"roll":47.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.417"} +{"sensors":[{"euler":{"heading":4.9375,"pitch":145.75,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":31.0,"pitch":90.125,"roll":-4.75},"location":"Left Ankle"},{"euler":{"heading":72.6875,"pitch":-10.1875,"roll":-11.25},"location":"Right Ankle"},{"euler":{"heading":130.4375,"pitch":-164.1875,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":59.3125,"pitch":-110.8125,"roll":12.375},"location":"Right Knee"},{"euler":{"heading":5.9375,"pitch":-116.125,"roll":48.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.519"} +{"sensors":[{"euler":{"heading":1.5,"pitch":149.4375,"roll":36.1875},"location":"Left Knee"},{"euler":{"heading":24.4375,"pitch":90.9375,"roll":-13.25},"location":"Left Ankle"},{"euler":{"heading":64.6875,"pitch":-7.6875,"roll":-15.0},"location":"Right Ankle"},{"euler":{"heading":131.625,"pitch":-166.5625,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":67.9375,"pitch":-109.8125,"roll":5.125},"location":"Right Knee"},{"euler":{"heading":12.5,"pitch":-120.8125,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.620"} +{"sensors":[{"euler":{"heading":15.8125,"pitch":139.9375,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":38.25,"pitch":96.5625,"roll":-2.6875},"location":"Left Ankle"},{"euler":{"heading":52.0,"pitch":-11.1875,"roll":-17.1875},"location":"Right Ankle"},{"euler":{"heading":136.0625,"pitch":-167.375,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":83.5,"pitch":-103.0,"roll":-7.0},"location":"Right Knee"},{"euler":{"heading":13.75,"pitch":-121.8125,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.721"} +{"sensors":[{"euler":{"heading":25.25,"pitch":132.25,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":47.375,"pitch":99.1875,"roll":5.5},"location":"Left Ankle"},{"euler":{"heading":33.3125,"pitch":-8.25,"roll":-21.6875},"location":"Right Ankle"},{"euler":{"heading":145.4375,"pitch":-158.125,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":87.4375,"pitch":-104.375,"roll":-13.75},"location":"Right Knee"},{"euler":{"heading":17.6875,"pitch":-123.8125,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.821"} +{"sensors":[{"euler":{"heading":28.5,"pitch":128.25,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":57.0625,"pitch":100.4375,"roll":11.9375},"location":"Left Ankle"},{"euler":{"heading":39.125,"pitch":-12.875,"roll":-16.875},"location":"Right Ankle"},{"euler":{"heading":149.625,"pitch":-154.4375,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":78.125,"pitch":-100.5,"roll":-5.5625},"location":"Right Knee"},{"euler":{"heading":19.3125,"pitch":-131.5625,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:44.923"} +{"sensors":[{"euler":{"heading":33.3125,"pitch":124.25,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":65.75,"pitch":102.1875,"roll":18.4375},"location":"Left Ankle"},{"euler":{"heading":63.0625,"pitch":-19.5,"roll":-9.6875},"location":"Right Ankle"},{"euler":{"heading":144.9375,"pitch":-155.5,"roll":41.375},"location":"Right Hip"},{"euler":{"heading":56.8125,"pitch":-95.5,"roll":15.125},"location":"Right Knee"},{"euler":{"heading":23.1875,"pitch":-137.9375,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.24"} +{"sensors":[{"euler":{"heading":39.6875,"pitch":120.75,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":68.1875,"pitch":102.875,"roll":21.6875},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":-19.5,"roll":-0.6875},"location":"Right Ankle"},{"euler":{"heading":135.0625,"pitch":-159.375,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":38.0625,"pitch":-95.375,"roll":34.875},"location":"Right Knee"},{"euler":{"heading":25.125,"pitch":-142.0625,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.124"} +{"sensors":[{"euler":{"heading":45.75,"pitch":118.1875,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":74.0,"pitch":104.125,"roll":27.4375},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":-18.9375,"roll":3.8125},"location":"Right Ankle"},{"euler":{"heading":123.4375,"pitch":-163.3125,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":29.375,"pitch":-98.75,"roll":43.375},"location":"Right Knee"},{"euler":{"heading":28.375,"pitch":-147.125,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.225"} +{"sensors":[{"euler":{"heading":55.1875,"pitch":117.6875,"roll":10.4375},"location":"Left Knee"},{"euler":{"heading":81.125,"pitch":104.5,"roll":37.375},"location":"Left Ankle"},{"euler":{"heading":93.375,"pitch":-13.875,"roll":-1.75},"location":"Right Ankle"},{"euler":{"heading":121.4375,"pitch":-164.6875,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":29.375,"pitch":-105.0,"roll":38.4375},"location":"Right Knee"},{"euler":{"heading":31.625,"pitch":-150.125,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.325"} +{"sensors":[{"euler":{"heading":71.75,"pitch":117.5,"roll":-0.4375},"location":"Left Knee"},{"euler":{"heading":90.125,"pitch":113.125,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":-12.75,"roll":-4.875},"location":"Right Ankle"},{"euler":{"heading":124.0,"pitch":-163.25,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":35.5,"pitch":-109.375,"roll":31.75},"location":"Right Knee"},{"euler":{"heading":18.125,"pitch":-135.25,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.426"} +{"sensors":[{"euler":{"heading":74.625,"pitch":119.125,"roll":0.0625},"location":"Left Knee"},{"euler":{"heading":84.6875,"pitch":108.1875,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-12.0,"roll":-7.0},"location":"Right Ankle"},{"euler":{"heading":125.0,"pitch":-163.6875,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":42.75,"pitch":-111.125,"roll":25.875},"location":"Right Knee"},{"euler":{"heading":13.5,"pitch":-120.625,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.526"} +{"sensors":[{"euler":{"heading":51.9375,"pitch":130.0,"roll":13.0},"location":"Left Knee"},{"euler":{"heading":65.5,"pitch":95.9375,"roll":27.0},"location":"Left Ankle"},{"euler":{"heading":79.0,"pitch":-10.5625,"roll":-10.25},"location":"Right Ankle"},{"euler":{"heading":127.4375,"pitch":-162.5625,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":47.3125,"pitch":-111.625,"roll":21.375},"location":"Right Knee"},{"euler":{"heading":6.875,"pitch":-115.8125,"roll":49.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.627"} +{"sensors":[{"euler":{"heading":12.8125,"pitch":142.1875,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":38.125,"pitch":90.125,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":73.75,"pitch":-9.0625,"roll":-11.1875},"location":"Right Ankle"},{"euler":{"heading":129.25,"pitch":-164.125,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":54.4375,"pitch":-111.625,"roll":16.0},"location":"Right Knee"},{"euler":{"heading":5.9375,"pitch":-114.4375,"roll":48.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.728"} +{"sensors":[{"euler":{"heading":359.5625,"pitch":149.6875,"roll":36.375},"location":"Left Knee"},{"euler":{"heading":23.125,"pitch":88.875,"roll":-14.25},"location":"Left Ankle"},{"euler":{"heading":66.375,"pitch":-7.6875,"roll":-15.4375},"location":"Right Ankle"},{"euler":{"heading":131.9375,"pitch":-165.875,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":63.875,"pitch":-109.9375,"roll":8.75},"location":"Right Knee"},{"euler":{"heading":14.25,"pitch":-121.5625,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.829"} +{"sensors":[{"euler":{"heading":11.5625,"pitch":141.625,"roll":35.875},"location":"Left Knee"},{"euler":{"heading":34.1875,"pitch":94.4375,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":54.3125,"pitch":-8.4375,"roll":-17.5},"location":"Right Ankle"},{"euler":{"heading":134.0,"pitch":-169.875,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":75.0625,"pitch":-106.3125,"roll":-0.5625},"location":"Right Knee"},{"euler":{"heading":17.1875,"pitch":-122.1875,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:45.930"} +{"sensors":[{"euler":{"heading":22.375,"pitch":133.75,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":45.3125,"pitch":97.0,"roll":4.8125},"location":"Left Ankle"},{"euler":{"heading":35.9375,"pitch":-10.0,"roll":-22.0625},"location":"Right Ankle"},{"euler":{"heading":142.1875,"pitch":-162.6875,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":87.9375,"pitch":-101.875,"roll":-12.5625},"location":"Right Knee"},{"euler":{"heading":16.8125,"pitch":-121.75,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.31"} +{"sensors":[{"euler":{"heading":25.8125,"pitch":129.6875,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":50.1875,"pitch":97.125,"roll":8.375},"location":"Left Ankle"},{"euler":{"heading":35.5625,"pitch":-11.0,"roll":-19.875},"location":"Right Ankle"},{"euler":{"heading":149.5625,"pitch":-155.6875,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":85.1875,"pitch":-100.75,"roll":-11.75},"location":"Right Knee"},{"euler":{"heading":19.5,"pitch":-128.75,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.131"} +{"sensors":[{"euler":{"heading":28.1875,"pitch":127.875,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":59.875,"pitch":97.75,"roll":15.9375},"location":"Left Ankle"},{"euler":{"heading":55.5,"pitch":-14.5625,"roll":-12.625},"location":"Right Ankle"},{"euler":{"heading":147.8125,"pitch":-154.4375,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":64.0625,"pitch":-98.125,"roll":5.9375},"location":"Right Knee"},{"euler":{"heading":20.6875,"pitch":-134.25,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.232"} +{"sensors":[{"euler":{"heading":33.75,"pitch":125.0,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":61.4375,"pitch":97.25,"roll":18.5},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":-16.0,"roll":-3.0},"location":"Right Ankle"},{"euler":{"heading":138.75,"pitch":-157.875,"roll":42.3125},"location":"Right Hip"},{"euler":{"heading":41.0625,"pitch":-96.8125,"roll":28.25},"location":"Right Knee"},{"euler":{"heading":23.0,"pitch":-139.4375,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.332"} +{"sensors":[{"euler":{"heading":40.3125,"pitch":121.5625,"roll":20.8125},"location":"Left Knee"},{"euler":{"heading":67.625,"pitch":99.3125,"roll":23.4375},"location":"Left Ankle"},{"euler":{"heading":94.6875,"pitch":-17.3125,"roll":2.1875},"location":"Right Ankle"},{"euler":{"heading":127.0,"pitch":-161.875,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":29.375,"pitch":-97.9375,"roll":42.1875},"location":"Right Knee"},{"euler":{"heading":25.4375,"pitch":-143.0625,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.433"} +{"sensors":[{"euler":{"heading":48.375,"pitch":119.5625,"roll":14.375},"location":"Left Knee"},{"euler":{"heading":75.0,"pitch":100.9375,"roll":31.375},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":-15.875,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":121.375,"pitch":-163.875,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":28.8125,"pitch":-102.75,"roll":39.5625},"location":"Right Knee"},{"euler":{"heading":29.8125,"pitch":-150.125,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.533"} +{"sensors":[{"euler":{"heading":62.3125,"pitch":121.5,"roll":2.4375},"location":"Left Knee"},{"euler":{"heading":81.75,"pitch":101.875,"roll":44.125},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":-12.9375,"roll":-3.625},"location":"Right Ankle"},{"euler":{"heading":122.8125,"pitch":-164.0,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":31.9375,"pitch":-107.8125,"roll":33.875},"location":"Right Knee"},{"euler":{"heading":23.0,"pitch":-141.5625,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.634"} +{"sensors":[{"euler":{"heading":75.3125,"pitch":118.8125,"roll":-3.5625},"location":"Left Knee"},{"euler":{"heading":94.0,"pitch":104.3125,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-13.0,"roll":-6.25},"location":"Right Ankle"},{"euler":{"heading":119.0625,"pitch":-167.25,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":40.75,"pitch":-110.5625,"roll":27.5625},"location":"Right Knee"},{"euler":{"heading":9.75,"pitch":-116.9375,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.735"} +{"sensors":[{"euler":{"heading":67.4375,"pitch":126.5,"roll":3.5625},"location":"Left Knee"},{"euler":{"heading":83.5,"pitch":95.375,"roll":42.8125},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-12.0625,"roll":-8.25},"location":"Right Ankle"},{"euler":{"heading":123.75,"pitch":-166.25,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":46.5625,"pitch":-111.3125,"roll":22.75},"location":"Right Knee"},{"euler":{"heading":4.375,"pitch":-114.125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.835"} +{"sensors":[{"euler":{"heading":27.4375,"pitch":138.5,"roll":22.4375},"location":"Left Knee"},{"euler":{"heading":49.875,"pitch":87.875,"roll":13.625},"location":"Left Ankle"},{"euler":{"heading":76.9375,"pitch":-10.75,"roll":-11.125},"location":"Right Ankle"},{"euler":{"heading":127.5625,"pitch":-166.1875,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":53.0,"pitch":-110.625,"roll":17.4375},"location":"Right Knee"},{"euler":{"heading":5.8125,"pitch":-113.0625,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:46.936"} +{"sensors":[{"euler":{"heading":2.5625,"pitch":147.75,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":25.0,"pitch":89.3125,"roll":-11.75},"location":"Left Ankle"},{"euler":{"heading":70.25,"pitch":-8.375,"roll":-13.9375},"location":"Right Ankle"},{"euler":{"heading":130.3125,"pitch":-166.375,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":60.8125,"pitch":-110.4375,"roll":11.0},"location":"Right Knee"},{"euler":{"heading":12.4375,"pitch":-119.0,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.37"} +{"sensors":[{"euler":{"heading":8.5,"pitch":145.8125,"roll":35.625},"location":"Left Knee"},{"euler":{"heading":28.4375,"pitch":93.0625,"roll":-9.3125},"location":"Left Ankle"},{"euler":{"heading":58.5625,"pitch":-8.375,"roll":-17.875},"location":"Right Ankle"},{"euler":{"heading":133.1875,"pitch":-168.875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":72.5625,"pitch":-107.4375,"roll":1.625},"location":"Right Knee"},{"euler":{"heading":17.9375,"pitch":-121.625,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.137"} +{"sensors":[{"euler":{"heading":19.5,"pitch":137.25,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":42.3125,"pitch":97.75,"roll":1.4375},"location":"Left Ankle"},{"euler":{"heading":41.0625,"pitch":-9.875,"roll":-20.1875},"location":"Right Ankle"},{"euler":{"heading":138.375,"pitch":-165.8125,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":86.1875,"pitch":-101.875,"roll":-9.8125},"location":"Right Knee"},{"euler":{"heading":15.9375,"pitch":-121.875,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.238"} +{"sensors":[{"euler":{"heading":27.25,"pitch":130.6875,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":48.9375,"pitch":99.875,"roll":5.875},"location":"Left Ankle"},{"euler":{"heading":32.0,"pitch":-10.0,"roll":-21.4375},"location":"Right Ankle"},{"euler":{"heading":145.0625,"pitch":-157.625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":87.8125,"pitch":-103.0,"roll":-14.0},"location":"Right Knee"},{"euler":{"heading":20.0,"pitch":-128.125,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.339"} +{"sensors":[{"euler":{"heading":32.0,"pitch":125.6875,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":55.9375,"pitch":101.3125,"roll":10.5},"location":"Left Ankle"},{"euler":{"heading":46.75,"pitch":-14.4375,"roll":-16.0625},"location":"Right Ankle"},{"euler":{"heading":146.0625,"pitch":-155.1875,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":73.375,"pitch":-100.0,"roll":-1.4375},"location":"Right Knee"},{"euler":{"heading":24.5,"pitch":-134.75,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.439"} +{"sensors":[{"euler":{"heading":36.8125,"pitch":122.125,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":61.5625,"pitch":102.9375,"roll":15.3125},"location":"Left Ankle"},{"euler":{"heading":71.5625,"pitch":-19.6875,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":139.8125,"pitch":-158.0625,"roll":42.125},"location":"Right Hip"},{"euler":{"heading":51.375,"pitch":-94.625,"roll":19.9375},"location":"Right Knee"},{"euler":{"heading":25.9375,"pitch":-139.4375,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.540"} +{"sensors":[{"euler":{"heading":42.9375,"pitch":119.8125,"roll":22.1875},"location":"Left Knee"},{"euler":{"heading":64.625,"pitch":102.875,"roll":19.5625},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":-18.6875,"roll":2.0625},"location":"Right Ankle"},{"euler":{"heading":129.0,"pitch":-161.9375,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":33.5625,"pitch":-94.875,"roll":39.125},"location":"Right Knee"},{"euler":{"heading":27.0625,"pitch":-143.625,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.641"} +{"sensors":[{"euler":{"heading":49.625,"pitch":118.4375,"roll":16.25},"location":"Left Knee"},{"euler":{"heading":70.875,"pitch":103.375,"roll":26.375},"location":"Left Ankle"},{"euler":{"heading":98.0625,"pitch":-16.625,"roll":2.5625},"location":"Right Ankle"},{"euler":{"heading":118.0,"pitch":-166.0625,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":26.25,"pitch":-98.5625,"roll":43.25},"location":"Right Knee"},{"euler":{"heading":29.5625,"pitch":-150.9375,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.742"} +{"sensors":[{"euler":{"heading":60.5,"pitch":117.4375,"roll":6.3125},"location":"Left Knee"},{"euler":{"heading":79.0,"pitch":103.125,"roll":38.8125},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":-15.5625,"roll":-1.8125},"location":"Right Ankle"},{"euler":{"heading":121.0625,"pitch":-165.125,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":29.8125,"pitch":-104.4375,"roll":37.0625},"location":"Right Knee"},{"euler":{"heading":32.0625,"pitch":-151.0,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.843"} +{"sensors":[{"euler":{"heading":75.1875,"pitch":120.375,"roll":-3.625},"location":"Left Knee"},{"euler":{"heading":97.5625,"pitch":110.75,"roll":56.375},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":-14.0,"roll":-4.8125},"location":"Right Ankle"},{"euler":{"heading":120.0625,"pitch":-166.625,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":36.9375,"pitch":-108.5625,"roll":30.8125},"location":"Right Knee"},{"euler":{"heading":15.9375,"pitch":-128.9375,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:47.944"} +{"sensors":[{"euler":{"heading":73.5625,"pitch":123.625,"roll":-0.9375},"location":"Left Knee"},{"euler":{"heading":85.125,"pitch":97.8125,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":-12.0625,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":121.5625,"pitch":-166.75,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":43.25,"pitch":-111.5,"roll":25.0},"location":"Right Knee"},{"euler":{"heading":6.75,"pitch":-116.5,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.45"} +{"sensors":[{"euler":{"heading":41.9375,"pitch":135.0,"roll":15.75},"location":"Left Knee"},{"euler":{"heading":56.875,"pitch":87.375,"roll":21.4375},"location":"Left Ankle"},{"euler":{"heading":76.75,"pitch":-9.625,"roll":-12.0},"location":"Right Ankle"},{"euler":{"heading":124.9375,"pitch":-166.375,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":49.1875,"pitch":-111.6875,"roll":20.1875},"location":"Right Knee"},{"euler":{"heading":4.25,"pitch":-113.1875,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.147"} +{"sensors":[{"euler":{"heading":8.75,"pitch":144.9375,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":31.0625,"pitch":86.9375,"roll":-3.5625},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-8.3125,"roll":-12.875},"location":"Right Ankle"},{"euler":{"heading":127.5625,"pitch":-168.125,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":55.9375,"pitch":-110.875,"roll":14.5625},"location":"Right Knee"},{"euler":{"heading":7.5,"pitch":-114.3125,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.248"} +{"sensors":[{"euler":{"heading":3.8125,"pitch":148.75,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":25.6875,"pitch":91.0,"roll":-11.625},"location":"Left Ankle"},{"euler":{"heading":61.75,"pitch":-7.3125,"roll":-17.0},"location":"Right Ankle"},{"euler":{"heading":131.6875,"pitch":-169.0625,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":66.625,"pitch":-108.3125,"roll":6.375},"location":"Right Knee"},{"euler":{"heading":14.125,"pitch":-120.875,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.349"} +{"sensors":[{"euler":{"heading":16.875,"pitch":139.8125,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":40.5,"pitch":96.5625,"roll":-0.3125},"location":"Left Ankle"},{"euler":{"heading":46.5,"pitch":-12.1875,"roll":-18.1875},"location":"Right Ankle"},{"euler":{"heading":136.0625,"pitch":-168.3125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":83.125,"pitch":-101.875,"roll":-6.375},"location":"Right Knee"},{"euler":{"heading":15.25,"pitch":-122.625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.451"} +{"sensors":[{"euler":{"heading":27.5625,"pitch":132.875,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":45.125,"pitch":96.9375,"roll":4.8125},"location":"Left Ankle"},{"euler":{"heading":32.8125,"pitch":-9.125,"roll":-20.25},"location":"Right Ankle"},{"euler":{"heading":143.4375,"pitch":-158.3125,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":86.9375,"pitch":-105.0625,"roll":-13.125},"location":"Right Knee"},{"euler":{"heading":17.8125,"pitch":-124.625,"roll":57.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.552"} +{"sensors":[{"euler":{"heading":31.3125,"pitch":128.5625,"roll":29.0625},"location":"Left Knee"},{"euler":{"heading":49.75,"pitch":97.875,"roll":8.4375},"location":"Left Ankle"},{"euler":{"heading":43.875,"pitch":-12.375,"roll":-15.9375},"location":"Right Ankle"},{"euler":{"heading":144.875,"pitch":-155.75,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":75.5,"pitch":-101.5,"roll":-3.9375},"location":"Right Knee"},{"euler":{"heading":20.5625,"pitch":-131.1875,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.652"} +{"sensors":[{"euler":{"heading":35.375,"pitch":125.0,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":58.1875,"pitch":99.9375,"roll":13.75},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":-19.8125,"roll":-7.4375},"location":"Right Ankle"},{"euler":{"heading":141.625,"pitch":-157.5,"roll":42.875},"location":"Right Hip"},{"euler":{"heading":56.0625,"pitch":-97.125,"roll":16.4375},"location":"Right Knee"},{"euler":{"heading":24.5,"pitch":-138.5625,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.754"} +{"sensors":[{"euler":{"heading":41.25,"pitch":122.5625,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":63.375,"pitch":100.25,"roll":19.4375},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":-21.0625,"roll":0.75},"location":"Right Ankle"},{"euler":{"heading":130.6875,"pitch":-162.375,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":37.0625,"pitch":-94.25,"roll":36.25},"location":"Right Knee"},{"euler":{"heading":26.25,"pitch":-143.75,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.855"} +{"sensors":[{"euler":{"heading":48.25,"pitch":120.8125,"roll":16.5},"location":"Left Knee"},{"euler":{"heading":68.625,"pitch":100.5625,"roll":25.9375},"location":"Left Ankle"},{"euler":{"heading":99.9375,"pitch":-19.75,"roll":3.4375},"location":"Right Ankle"},{"euler":{"heading":120.5625,"pitch":-165.5,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":26.8125,"pitch":-98.3125,"roll":45.6875},"location":"Right Knee"},{"euler":{"heading":28.5625,"pitch":-149.25,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:48.955"} +{"sensors":[{"euler":{"heading":58.5625,"pitch":120.25,"roll":7.0},"location":"Left Knee"},{"euler":{"heading":77.4375,"pitch":101.1875,"roll":37.9375},"location":"Left Ankle"},{"euler":{"heading":91.5625,"pitch":-15.1875,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":120.75,"pitch":-165.75,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":26.75,"pitch":-105.3125,"roll":40.4375},"location":"Right Knee"},{"euler":{"heading":29.8125,"pitch":-150.25,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.56"} +{"sensors":[{"euler":{"heading":76.1875,"pitch":120.375,"roll":-3.625},"location":"Left Knee"},{"euler":{"heading":97.8125,"pitch":112.5,"roll":55.3125},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":-13.125,"roll":-4.875},"location":"Right Ankle"},{"euler":{"heading":121.25,"pitch":-166.0,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":32.9375,"pitch":-108.6875,"roll":33.6875},"location":"Right Knee"},{"euler":{"heading":14.0,"pitch":-126.9375,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.156"} +{"sensors":[{"euler":{"heading":78.5625,"pitch":123.125,"roll":-2.6875},"location":"Left Knee"},{"euler":{"heading":91.1875,"pitch":102.8125,"roll":52.125},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-12.75,"roll":-6.8125},"location":"Right Ankle"},{"euler":{"heading":122.5625,"pitch":-166.375,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":41.125,"pitch":-111.25,"roll":27.25},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":-115.0625,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.257"} +{"sensors":[{"euler":{"heading":53.625,"pitch":132.5,"roll":12.4375},"location":"Left Knee"},{"euler":{"heading":64.375,"pitch":92.375,"roll":28.1875},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-12.125,"roll":-9.125},"location":"Right Ankle"},{"euler":{"heading":126.75,"pitch":-165.3125,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":46.25,"pitch":-111.125,"roll":23.25},"location":"Right Knee"},{"euler":{"heading":4.6875,"pitch":-112.8125,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.358"} +{"sensors":[{"euler":{"heading":14.25,"pitch":144.125,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":34.3125,"pitch":87.8125,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-10.375,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":130.3125,"pitch":-165.0,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":51.6875,"pitch":-111.375,"roll":17.9375},"location":"Right Knee"},{"euler":{"heading":6.1875,"pitch":-114.1875,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.459"} +{"sensors":[{"euler":{"heading":292.375,"pitch":150.6875,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":23.75,"pitch":88.3125,"roll":-12.25},"location":"Left Ankle"},{"euler":{"heading":68.5,"pitch":-8.1875,"roll":-14.8125},"location":"Right Ankle"},{"euler":{"heading":133.875,"pitch":-165.5625,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":60.8125,"pitch":-109.9375,"roll":10.875},"location":"Right Knee"},{"euler":{"heading":13.5625,"pitch":-120.0625,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.560"} +{"sensors":[{"euler":{"heading":14.6875,"pitch":143.125,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":35.3125,"pitch":97.0,"roll":-4.9375},"location":"Left Ankle"},{"euler":{"heading":57.3125,"pitch":-8.375,"roll":-17.9375},"location":"Right Ankle"},{"euler":{"heading":136.3125,"pitch":-167.625,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":72.4375,"pitch":-106.875,"roll":1.375},"location":"Right Knee"},{"euler":{"heading":16.125,"pitch":-122.4375,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.662"} +{"sensors":[{"euler":{"heading":25.25,"pitch":135.125,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":45.375,"pitch":96.75,"roll":5.4375},"location":"Left Ankle"},{"euler":{"heading":39.0625,"pitch":-5.5,"roll":-21.375},"location":"Right Ankle"},{"euler":{"heading":144.0625,"pitch":-160.875,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":83.9375,"pitch":-104.125,"roll":-10.5},"location":"Right Knee"},{"euler":{"heading":17.5,"pitch":-123.5625,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.762"} +{"sensors":[{"euler":{"heading":29.3125,"pitch":129.4375,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":49.125,"pitch":97.8125,"roll":6.75},"location":"Left Ankle"},{"euler":{"heading":38.6875,"pitch":-11.5,"roll":-17.625},"location":"Right Ankle"},{"euler":{"heading":147.6875,"pitch":-155.6875,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":81.25,"pitch":-101.75,"roll":-8.625},"location":"Right Knee"},{"euler":{"heading":21.1875,"pitch":-131.0,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.863"} +{"sensors":[{"euler":{"heading":33.75,"pitch":126.3125,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":53.625,"pitch":98.375,"roll":11.125},"location":"Left Ankle"},{"euler":{"heading":60.0625,"pitch":-18.375,"roll":-11.0},"location":"Right Ankle"},{"euler":{"heading":147.375,"pitch":-155.625,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":65.4375,"pitch":-99.0625,"roll":7.25},"location":"Right Knee"},{"euler":{"heading":24.0,"pitch":-136.8125,"roll":61.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:49.964"} +{"sensors":[{"euler":{"heading":39.875,"pitch":122.625,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":59.875,"pitch":100.0625,"roll":15.5625},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":-20.375,"roll":-1.375},"location":"Right Ankle"},{"euler":{"heading":139.625,"pitch":-159.4375,"roll":42.75},"location":"Right Hip"},{"euler":{"heading":44.6875,"pitch":-95.875,"roll":27.9375},"location":"Right Knee"},{"euler":{"heading":27.625,"pitch":-142.875,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.64"} +{"sensors":[{"euler":{"heading":45.75,"pitch":120.0,"roll":20.4375},"location":"Left Knee"},{"euler":{"heading":64.9375,"pitch":101.5625,"roll":20.6875},"location":"Left Ankle"},{"euler":{"heading":98.875,"pitch":-19.5625,"roll":4.5625},"location":"Right Ankle"},{"euler":{"heading":129.0,"pitch":-163.25,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":30.25,"pitch":-97.4375,"roll":42.3125},"location":"Right Knee"},{"euler":{"heading":30.1875,"pitch":-147.125,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.164"} +{"sensors":[{"euler":{"heading":54.375,"pitch":118.0625,"roll":13.0625},"location":"Left Knee"},{"euler":{"heading":71.5625,"pitch":102.75,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":94.0,"pitch":-15.625,"roll":-0.1875},"location":"Right Ankle"},{"euler":{"heading":128.625,"pitch":-162.9375,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":29.6875,"pitch":-103.125,"roll":39.0},"location":"Right Knee"},{"euler":{"heading":34.875,"pitch":-153.3125,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.264"} +{"sensors":[{"euler":{"heading":71.0,"pitch":120.8125,"roll":-0.3125},"location":"Left Knee"},{"euler":{"heading":81.0625,"pitch":106.875,"roll":47.5},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":-14.375,"roll":-3.6875},"location":"Right Ankle"},{"euler":{"heading":128.875,"pitch":-163.6875,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":34.5625,"pitch":-107.0,"roll":32.9375},"location":"Right Knee"},{"euler":{"heading":25.875,"pitch":-139.625,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.365"} +{"sensors":[{"euler":{"heading":79.75,"pitch":118.125,"roll":-3.625},"location":"Left Knee"},{"euler":{"heading":90.375,"pitch":108.0625,"roll":53.5625},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":-11.0,"roll":-6.8125},"location":"Right Ankle"},{"euler":{"heading":124.375,"pitch":-165.6875,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":38.4375,"pitch":-112.25,"roll":27.9375},"location":"Right Knee"},{"euler":{"heading":11.9375,"pitch":-112.625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.466"} +{"sensors":[{"euler":{"heading":66.6875,"pitch":128.125,"roll":6.4375},"location":"Left Knee"},{"euler":{"heading":73.6875,"pitch":94.0,"roll":35.375},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-8.8125,"roll":-10.875},"location":"Right Ankle"},{"euler":{"heading":129.0625,"pitch":-163.5625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":44.0,"pitch":-113.1875,"roll":23.0},"location":"Right Knee"},{"euler":{"heading":5.6875,"pitch":-110.8125,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.567"} +{"sensors":[{"euler":{"heading":25.0,"pitch":140.5,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":43.0625,"pitch":87.1875,"roll":7.875},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":-8.875,"roll":-11.3125},"location":"Right Ankle"},{"euler":{"heading":131.375,"pitch":-164.625,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":51.375,"pitch":-112.1875,"roll":17.5625},"location":"Right Knee"},{"euler":{"heading":6.4375,"pitch":-110.875,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.667"} +{"sensors":[{"euler":{"heading":6.5,"pitch":148.3125,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":26.9375,"pitch":86.125,"roll":-10.8125},"location":"Left Ankle"},{"euler":{"heading":69.375,"pitch":-7.875,"roll":-13.125},"location":"Right Ankle"},{"euler":{"heading":134.5,"pitch":-165.75,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":60.25,"pitch":-110.9375,"roll":10.9375},"location":"Right Knee"},{"euler":{"heading":11.875,"pitch":-115.0625,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.768"} +{"sensors":[{"euler":{"heading":15.1875,"pitch":143.0,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":32.4375,"pitch":93.375,"roll":-7.25},"location":"Left Ankle"},{"euler":{"heading":60.1875,"pitch":-8.0,"roll":-16.8125},"location":"Right Ankle"},{"euler":{"heading":138.625,"pitch":-166.3125,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":73.1875,"pitch":-107.5,"roll":0.875},"location":"Right Knee"},{"euler":{"heading":17.9375,"pitch":-119.875,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.870"} +{"sensors":[{"euler":{"heading":22.5,"pitch":136.5,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":44.0625,"pitch":93.75,"roll":5.375},"location":"Left Ankle"},{"euler":{"heading":41.25,"pitch":-9.4375,"roll":-21.0},"location":"Right Ankle"},{"euler":{"heading":145.6875,"pitch":-160.75,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":86.3125,"pitch":-102.3125,"roll":-10.8125},"location":"Right Knee"},{"euler":{"heading":17.75,"pitch":-121.9375,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:50.970"} +{"sensors":[{"euler":{"heading":26.9375,"pitch":131.9375,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":46.625,"pitch":93.8125,"roll":7.125},"location":"Left Ankle"},{"euler":{"heading":34.625,"pitch":-11.25,"roll":-19.75},"location":"Right Ankle"},{"euler":{"heading":153.0,"pitch":-154.0,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":86.5625,"pitch":-102.125,"roll":-12.125},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-129.0,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.72"} +{"sensors":[{"euler":{"heading":30.0,"pitch":128.75,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":51.625,"pitch":94.1875,"roll":11.5625},"location":"Left Ankle"},{"euler":{"heading":53.25,"pitch":-15.9375,"roll":-14.0},"location":"Right Ankle"},{"euler":{"heading":151.4375,"pitch":-153.375,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":68.375,"pitch":-100.0,"roll":4.625},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-135.1875,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.172"} +{"sensors":[{"euler":{"heading":36.8125,"pitch":124.1875,"roll":25.4375},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":96.4375,"roll":16.5},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-20.125,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":142.8125,"pitch":-157.1875,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":46.8125,"pitch":-97.25,"roll":25.4375},"location":"Right Knee"},{"euler":{"heading":26.125,"pitch":-140.0,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.273"} +{"sensors":[{"euler":{"heading":43.8125,"pitch":122.0625,"roll":20.3125},"location":"Left Knee"},{"euler":{"heading":62.75,"pitch":97.0625,"roll":21.5},"location":"Left Ankle"},{"euler":{"heading":93.0625,"pitch":-20.5,"roll":2.5625},"location":"Right Ankle"},{"euler":{"heading":131.875,"pitch":-161.6875,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":32.125,"pitch":-96.9375,"roll":41.125},"location":"Right Knee"},{"euler":{"heading":27.5,"pitch":-144.6875,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.374"} +{"sensors":[{"euler":{"heading":51.5625,"pitch":120.75,"roll":13.5},"location":"Left Knee"},{"euler":{"heading":69.375,"pitch":98.0,"roll":29.5625},"location":"Left Ankle"},{"euler":{"heading":92.625,"pitch":-15.9375,"roll":0.125},"location":"Right Ankle"},{"euler":{"heading":123.6875,"pitch":-164.3125,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":28.0,"pitch":-102.8125,"roll":41.4375},"location":"Right Knee"},{"euler":{"heading":30.375,"pitch":-152.0,"roll":67.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.475"} +{"sensors":[{"euler":{"heading":65.375,"pitch":120.8125,"roll":2.125},"location":"Left Knee"},{"euler":{"heading":80.0625,"pitch":100.9375,"roll":45.6875},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":-14.1875,"roll":-5.5625},"location":"Right Ankle"},{"euler":{"heading":126.3125,"pitch":-163.25,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":33.3125,"pitch":-107.5625,"roll":34.4375},"location":"Right Knee"},{"euler":{"heading":25.875,"pitch":-142.0625,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.576"} +{"sensors":[{"euler":{"heading":79.3125,"pitch":119.75,"roll":-5.1875},"location":"Left Knee"},{"euler":{"heading":89.75,"pitch":104.5,"roll":56.5},"location":"Left Ankle"},{"euler":{"heading":80.0625,"pitch":-12.875,"roll":-7.625},"location":"Right Ankle"},{"euler":{"heading":121.625,"pitch":-166.5,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":39.1875,"pitch":-111.625,"roll":28.625},"location":"Right Knee"},{"euler":{"heading":11.4375,"pitch":-115.5,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.676"} +{"sensors":[{"euler":{"heading":72.1875,"pitch":127.0,"roll":1.0625},"location":"Left Knee"},{"euler":{"heading":79.375,"pitch":90.4375,"roll":43.875},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-12.3125,"roll":-9.4375},"location":"Right Ankle"},{"euler":{"heading":125.6875,"pitch":-165.5625,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":46.4375,"pitch":-111.4375,"roll":23.4375},"location":"Right Knee"},{"euler":{"heading":4.625,"pitch":-110.6875,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.777"} +{"sensors":[{"euler":{"heading":34.375,"pitch":137.8125,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":50.6875,"pitch":85.625,"roll":14.8125},"location":"Left Ankle"},{"euler":{"heading":73.75,"pitch":-12.1875,"roll":-10.6875},"location":"Right Ankle"},{"euler":{"heading":130.5625,"pitch":-165.1875,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":53.25,"pitch":-110.1875,"roll":18.5625},"location":"Right Knee"},{"euler":{"heading":4.3125,"pitch":-109.3125,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.877"} +{"sensors":[{"euler":{"heading":285.0625,"pitch":146.9375,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":28.4375,"pitch":83.3125,"roll":-5.6875},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":-11.125,"roll":-13.1875},"location":"Right Ankle"},{"euler":{"heading":133.875,"pitch":-165.6875,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":61.25,"pitch":-108.875,"roll":12.3125},"location":"Right Knee"},{"euler":{"heading":8.875,"pitch":-112.5625,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:51.978"} +{"sensors":[{"euler":{"heading":4.375,"pitch":148.75,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":26.5625,"pitch":89.1875,"roll":-9.625},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-9.5,"roll":-16.875},"location":"Right Ankle"},{"euler":{"heading":136.3125,"pitch":-167.875,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":70.625,"pitch":-107.25,"roll":4.125},"location":"Right Knee"},{"euler":{"heading":14.3125,"pitch":-118.5625,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.79"} +{"sensors":[{"euler":{"heading":19.875,"pitch":139.1875,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":43.25,"pitch":92.4375,"roll":4.3125},"location":"Left Ankle"},{"euler":{"heading":43.625,"pitch":-10.625,"roll":-19.4375},"location":"Right Ankle"},{"euler":{"heading":141.125,"pitch":-164.5,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":84.375,"pitch":-102.4375,"roll":-8.0625},"location":"Right Knee"},{"euler":{"heading":15.1875,"pitch":-120.6875,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.180"} +{"sensors":[{"euler":{"heading":26.375,"pitch":132.4375,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":47.125,"pitch":93.125,"roll":5.75},"location":"Left Ankle"},{"euler":{"heading":32.25,"pitch":-7.4375,"roll":-22.75},"location":"Right Ankle"},{"euler":{"heading":146.5625,"pitch":-156.625,"roll":52.0},"location":"Right Hip"},{"euler":{"heading":86.875,"pitch":-105.0,"roll":-11.625},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-127.0,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.280"} +{"sensors":[{"euler":{"heading":30.5625,"pitch":127.8125,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":51.9375,"pitch":94.125,"roll":10.0},"location":"Left Ankle"},{"euler":{"heading":46.25,"pitch":-15.1875,"roll":-17.125},"location":"Right Ankle"},{"euler":{"heading":149.25,"pitch":-154.875,"roll":44.9375},"location":"Right Hip"},{"euler":{"heading":74.0625,"pitch":-100.125,"roll":0.1875},"location":"Right Knee"},{"euler":{"heading":23.75,"pitch":-132.6875,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.382"} +{"sensors":[{"euler":{"heading":36.8125,"pitch":124.5,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":61.875,"pitch":96.5,"roll":18.6875},"location":"Left Ankle"},{"euler":{"heading":71.75,"pitch":-21.375,"roll":-7.375},"location":"Right Ankle"},{"euler":{"heading":144.125,"pitch":-157.6875,"roll":41.625},"location":"Right Hip"},{"euler":{"heading":53.3125,"pitch":-97.4375,"roll":21.125},"location":"Right Knee"},{"euler":{"heading":23.9375,"pitch":-136.5625,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.482"} +{"sensors":[{"euler":{"heading":42.9375,"pitch":122.625,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":65.9375,"pitch":96.875,"roll":23.5},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":-20.5,"roll":0.8125},"location":"Right Ankle"},{"euler":{"heading":131.875,"pitch":-161.6875,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":32.375,"pitch":-99.125,"roll":40.875},"location":"Right Knee"},{"euler":{"heading":25.4375,"pitch":-142.625,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.583"} +{"sensors":[{"euler":{"heading":50.1875,"pitch":120.625,"roll":14.8125},"location":"Left Knee"},{"euler":{"heading":72.625,"pitch":97.8125,"roll":31.1875},"location":"Left Ankle"},{"euler":{"heading":94.25,"pitch":-17.125,"roll":0.75},"location":"Right Ankle"},{"euler":{"heading":121.0625,"pitch":-165.8125,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":26.3125,"pitch":-103.125,"roll":43.4375},"location":"Right Knee"},{"euler":{"heading":28.625,"pitch":-148.9375,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.684"} +{"sensors":[{"euler":{"heading":65.0,"pitch":121.625,"roll":2.1875},"location":"Left Knee"},{"euler":{"heading":79.75,"pitch":98.125,"roll":46.0},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-13.4375,"roll":-5.9375},"location":"Right Ankle"},{"euler":{"heading":124.1875,"pitch":-164.75,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":30.4375,"pitch":-108.375,"roll":36.5},"location":"Right Knee"},{"euler":{"heading":28.875,"pitch":-146.1875,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.785"} +{"sensors":[{"euler":{"heading":80.4375,"pitch":118.375,"roll":-4.875},"location":"Left Knee"},{"euler":{"heading":95.5,"pitch":108.3125,"roll":58.4375},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":-12.5625,"roll":-6.9375},"location":"Right Ankle"},{"euler":{"heading":121.5625,"pitch":-166.125,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":36.3125,"pitch":-111.875,"roll":30.5625},"location":"Right Knee"},{"euler":{"heading":14.5,"pitch":-117.3125,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.886"} +{"sensors":[{"euler":{"heading":74.5625,"pitch":125.625,"roll":0.9375},"location":"Left Knee"},{"euler":{"heading":83.125,"pitch":95.25,"roll":47.1875},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":-11.625,"roll":-8.9375},"location":"Right Ankle"},{"euler":{"heading":126.1875,"pitch":-164.625,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":42.8125,"pitch":-112.0625,"roll":25.9375},"location":"Right Knee"},{"euler":{"heading":7.375,"pitch":-111.5625,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:52.987"} +{"sensors":[{"euler":{"heading":38.6875,"pitch":137.125,"roll":18.625},"location":"Left Knee"},{"euler":{"heading":53.0625,"pitch":86.6875,"roll":17.5},"location":"Left Ankle"},{"euler":{"heading":74.25,"pitch":-10.0,"roll":-10.75},"location":"Right Ankle"},{"euler":{"heading":129.75,"pitch":-163.9375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":48.8125,"pitch":-112.125,"roll":20.8125},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":-109.8125,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.88"} +{"sensors":[{"euler":{"heading":286.9375,"pitch":146.375,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":27.1875,"pitch":85.875,"roll":-6.3125},"location":"Left Ankle"},{"euler":{"heading":68.8125,"pitch":-8.625,"roll":-13.125},"location":"Right Ankle"},{"euler":{"heading":132.4375,"pitch":-164.625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":51.1875,"pitch":-111.125,"roll":17.75},"location":"Right Knee"},{"euler":{"heading":9.6875,"pitch":-112.25,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.189"} +{"sensors":[{"euler":{"heading":7.0,"pitch":148.5625,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":25.5,"pitch":90.375,"roll":-9.9375},"location":"Left Ankle"},{"euler":{"heading":60.875,"pitch":-7.25,"roll":-18.0},"location":"Right Ankle"},{"euler":{"heading":135.1875,"pitch":-166.4375,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":60.9375,"pitch":-109.0,"roll":10.9375},"location":"Right Knee"},{"euler":{"heading":16.25,"pitch":-118.75,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.290"} +{"sensors":[{"euler":{"heading":23.0,"pitch":138.3125,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":39.6875,"pitch":94.125,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":49.1875,"pitch":-9.8125,"roll":-19.0625},"location":"Right Ankle"},{"euler":{"heading":139.375,"pitch":-164.875,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":75.375,"pitch":-104.1875,"roll":-1.125},"location":"Right Knee"},{"euler":{"heading":18.6875,"pitch":-122.125,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.391"} +{"sensors":[{"euler":{"heading":30.3125,"pitch":131.25,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":45.3125,"pitch":94.875,"roll":5.75},"location":"Left Ankle"},{"euler":{"heading":32.125,"pitch":-10.6875,"roll":-22.4375},"location":"Right Ankle"},{"euler":{"heading":148.375,"pitch":-157.25,"roll":53.125},"location":"Right Hip"},{"euler":{"heading":85.625,"pitch":-102.0625,"roll":-10.5},"location":"Right Knee"},{"euler":{"heading":22.75,"pitch":-127.875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.491"} +{"sensors":[{"euler":{"heading":33.875,"pitch":127.25,"roll":28.375},"location":"Left Knee"},{"euler":{"heading":50.625,"pitch":95.75,"roll":10.125},"location":"Left Ankle"},{"euler":{"heading":40.125,"pitch":-11.3125,"roll":-19.1875},"location":"Right Ankle"},{"euler":{"heading":150.6875,"pitch":-154.4375,"roll":45.75},"location":"Right Hip"},{"euler":{"heading":75.5625,"pitch":-101.375,"roll":-2.25},"location":"Right Knee"},{"euler":{"heading":25.4375,"pitch":-133.625,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.592"} +{"sensors":[{"euler":{"heading":40.0,"pitch":123.5625,"roll":25.5625},"location":"Left Knee"},{"euler":{"heading":62.6875,"pitch":98.8125,"roll":19.125},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-16.9375,"roll":-10.4375},"location":"Right Ankle"},{"euler":{"heading":147.0625,"pitch":-156.6875,"roll":40.875},"location":"Right Hip"},{"euler":{"heading":53.8125,"pitch":-98.3125,"roll":18.4375},"location":"Right Knee"},{"euler":{"heading":28.1875,"pitch":-141.4375,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.693"} +{"sensors":[{"euler":{"heading":46.0625,"pitch":120.3125,"roll":21.6875},"location":"Left Knee"},{"euler":{"heading":66.875,"pitch":100.25,"roll":23.1875},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":-19.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":137.0,"pitch":-160.3125,"roll":41.625},"location":"Right Hip"},{"euler":{"heading":32.5,"pitch":-94.875,"roll":38.5625},"location":"Right Knee"},{"euler":{"heading":30.75,"pitch":-146.6875,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.794"} +{"sensors":[{"euler":{"heading":52.1875,"pitch":118.5,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":73.8125,"pitch":101.3125,"roll":30.375},"location":"Left Ankle"},{"euler":{"heading":96.625,"pitch":-19.875,"roll":2.8125},"location":"Right Ankle"},{"euler":{"heading":124.375,"pitch":-164.6875,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":24.75,"pitch":-96.875,"roll":46.4375},"location":"Right Knee"},{"euler":{"heading":33.25,"pitch":-153.9375,"roll":68.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.895"} +{"sensors":[{"euler":{"heading":64.25,"pitch":118.25,"roll":5.125},"location":"Left Knee"},{"euler":{"heading":83.6875,"pitch":102.125,"roll":44.0625},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":-14.3125,"roll":-2.125},"location":"Right Ankle"},{"euler":{"heading":125.125,"pitch":-164.625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":25.75,"pitch":-103.875,"roll":40.0625},"location":"Right Knee"},{"euler":{"heading":34.25,"pitch":-154.375,"roll":68.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:53.995"} +{"sensors":[{"euler":{"heading":79.0625,"pitch":115.875,"roll":-4.25},"location":"Left Knee"},{"euler":{"heading":99.4375,"pitch":112.5625,"roll":57.75},"location":"Left Ankle"},{"euler":{"heading":80.0625,"pitch":-11.25,"roll":-5.875},"location":"Right Ankle"},{"euler":{"heading":127.75,"pitch":-163.625,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":33.1875,"pitch":-109.6875,"roll":33.5},"location":"Right Knee"},{"euler":{"heading":21.6875,"pitch":-126.0,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.97"} +{"sensors":[{"euler":{"heading":80.3125,"pitch":121.5,"roll":-2.8125},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":80.5625,"roll":52.5625},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":-10.5625,"roll":-8.5},"location":"Right Ankle"},{"euler":{"heading":127.125,"pitch":-164.1875,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":38.4375,"pitch":-111.875,"roll":28.625},"location":"Right Knee"},{"euler":{"heading":10.0625,"pitch":-113.625,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.197"} +{"sensors":[{"euler":{"heading":48.5,"pitch":134.9375,"roll":14.4375},"location":"Left Knee"},{"euler":{"heading":58.0,"pitch":86.375,"roll":24.8125},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-9.4375,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":130.125,"pitch":-163.5,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":43.4375,"pitch":-112.3125,"roll":24.1875},"location":"Right Knee"},{"euler":{"heading":4.25,"pitch":-110.625,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.303"} +{"sensors":[{"euler":{"heading":284.75,"pitch":146.25,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":30.375,"pitch":85.5625,"roll":-2.6875},"location":"Left Ankle"},{"euler":{"heading":71.5,"pitch":-7.6875,"roll":-12.375},"location":"Right Ankle"},{"euler":{"heading":133.25,"pitch":-163.875,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":50.4375,"pitch":-111.375,"roll":18.4375},"location":"Right Knee"},{"euler":{"heading":7.25,"pitch":-112.6875,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.404"} +{"sensors":[{"euler":{"heading":292.75,"pitch":151.5,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":22.375,"pitch":86.25,"roll":-12.25},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":-6.5,"roll":-16.8125},"location":"Right Ankle"},{"euler":{"heading":137.4375,"pitch":-164.3125,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":60.375,"pitch":-109.25,"roll":10.75},"location":"Right Knee"},{"euler":{"heading":14.375,"pitch":-119.0,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.505"} +{"sensors":[{"euler":{"heading":17.6875,"pitch":142.75,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":33.4375,"pitch":93.3125,"roll":-3.5},"location":"Left Ankle"},{"euler":{"heading":52.5625,"pitch":-8.9375,"roll":-19.375},"location":"Right Ankle"},{"euler":{"heading":138.875,"pitch":-167.125,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":73.625,"pitch":-105.25,"roll":0.6875},"location":"Right Knee"},{"euler":{"heading":18.4375,"pitch":-123.4375,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.606"} +{"sensors":[{"euler":{"heading":24.75,"pitch":135.375,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":40.75,"pitch":94.3125,"roll":2.4375},"location":"Left Ankle"},{"euler":{"heading":35.375,"pitch":-4.9375,"roll":-23.125},"location":"Right Ankle"},{"euler":{"heading":143.0625,"pitch":-160.8125,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":83.0625,"pitch":-104.5,"roll":-9.4375},"location":"Right Knee"},{"euler":{"heading":18.5,"pitch":-124.5625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.707"} +{"sensors":[{"euler":{"heading":29.8125,"pitch":130.25,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":47.125,"pitch":95.4375,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":34.0625,"pitch":-8.375,"roll":-20.0},"location":"Right Ankle"},{"euler":{"heading":146.9375,"pitch":-155.0625,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":79.9375,"pitch":-103.8125,"roll":-7.4375},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-131.875,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.808"} +{"sensors":[{"euler":{"heading":35.1875,"pitch":126.25,"roll":27.8125},"location":"Left Knee"},{"euler":{"heading":55.1875,"pitch":96.9375,"roll":13.0625},"location":"Left Ankle"},{"euler":{"heading":52.875,"pitch":-15.0,"roll":-13.75},"location":"Right Ankle"},{"euler":{"heading":145.375,"pitch":-156.625,"roll":41.5},"location":"Right Hip"},{"euler":{"heading":62.625,"pitch":-100.25,"roll":8.625},"location":"Right Knee"},{"euler":{"heading":24.5,"pitch":-138.6875,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:54.909"} +{"sensors":[{"euler":{"heading":40.75,"pitch":123.0625,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":62.6875,"pitch":97.875,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-23.125,"roll":-3.125},"location":"Right Ankle"},{"euler":{"heading":94.75,"pitch":-161.0,"roll":40.75},"location":"Right Hip"},{"euler":{"heading":42.0625,"pitch":-93.625,"roll":29.5625},"location":"Right Knee"},{"euler":{"heading":27.3125,"pitch":-144.6875,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.10"} +{"sensors":[{"euler":{"heading":46.5625,"pitch":121.125,"roll":19.3125},"location":"Left Knee"},{"euler":{"heading":68.625,"pitch":98.5625,"roll":26.0},"location":"Left Ankle"},{"euler":{"heading":96.125,"pitch":-19.875,"roll":3.75},"location":"Right Ankle"},{"euler":{"heading":126.875,"pitch":-163.875,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":23.9375,"pitch":-96.8125,"roll":47.0},"location":"Right Knee"},{"euler":{"heading":28.625,"pitch":-149.1875,"roll":67.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.111"} +{"sensors":[{"euler":{"heading":56.0625,"pitch":119.75,"roll":11.6875},"location":"Left Knee"},{"euler":{"heading":77.5,"pitch":100.1875,"roll":36.375},"location":"Left Ankle"},{"euler":{"heading":95.125,"pitch":-16.875,"roll":0.625},"location":"Right Ankle"},{"euler":{"heading":122.625,"pitch":-165.1875,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":20.75,"pitch":-103.125,"roll":45.0},"location":"Right Knee"},{"euler":{"heading":30.625,"pitch":-153.6875,"roll":67.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.212"} +{"sensors":[{"euler":{"heading":70.5,"pitch":121.4375,"roll":-0.25},"location":"Left Knee"},{"euler":{"heading":86.9375,"pitch":104.25,"roll":50.75},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":-14.8125,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":125.875,"pitch":-165.3125,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":26.9375,"pitch":-106.5625,"roll":38.25},"location":"Right Knee"},{"euler":{"heading":25.6875,"pitch":-144.375,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.313"} +{"sensors":[{"euler":{"heading":83.75,"pitch":118.4375,"roll":-6.1875},"location":"Left Knee"},{"euler":{"heading":93.5,"pitch":108.0,"roll":57.0},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":-14.0625,"roll":-7.375},"location":"Right Ankle"},{"euler":{"heading":123.0,"pitch":-167.0,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":33.875,"pitch":-109.5625,"roll":32.4375},"location":"Right Knee"},{"euler":{"heading":13.4375,"pitch":-116.0,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.413"} +{"sensors":[{"euler":{"heading":74.8125,"pitch":126.75,"roll":2.0},"location":"Left Knee"},{"euler":{"heading":77.1875,"pitch":95.625,"roll":40.8125},"location":"Left Ankle"},{"euler":{"heading":79.125,"pitch":-11.4375,"roll":-9.5},"location":"Right Ankle"},{"euler":{"heading":126.25,"pitch":-166.0,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":37.75,"pitch":-111.9375,"roll":28.5},"location":"Right Knee"},{"euler":{"heading":5.375,"pitch":-110.6875,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.515"} +{"sensors":[{"euler":{"heading":275.1875,"pitch":139.1875,"roll":20.75},"location":"Left Knee"},{"euler":{"heading":45.875,"pitch":87.5625,"roll":12.375},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":-6.75,"roll":-12.25},"location":"Right Ankle"},{"euler":{"heading":129.5,"pitch":-163.8125,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":40.6875,"pitch":-113.6875,"roll":24.3125},"location":"Right Knee"},{"euler":{"heading":4.0625,"pitch":-110.25,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.616"} +{"sensors":[{"euler":{"heading":287.1875,"pitch":149.75,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":23.8125,"pitch":83.1875,"roll":-9.1875},"location":"Left Ankle"},{"euler":{"heading":69.5625,"pitch":-4.3125,"roll":-15.375},"location":"Right Ankle"},{"euler":{"heading":130.625,"pitch":-164.9375,"roll":62.5625},"location":"Right Hip"},{"euler":{"heading":48.1875,"pitch":-113.8125,"roll":18.4375},"location":"Right Knee"},{"euler":{"heading":7.5625,"pitch":-114.5,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.717"} +{"sensors":[{"euler":{"heading":292.75,"pitch":149.5,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":23.1875,"pitch":89.0625,"roll":-11.5},"location":"Left Ankle"},{"euler":{"heading":62.3125,"pitch":-5.5625,"roll":-19.1875},"location":"Right Ankle"},{"euler":{"heading":134.0625,"pitch":-166.9375,"roll":63.125},"location":"Right Hip"},{"euler":{"heading":60.8125,"pitch":-110.0625,"roll":9.625},"location":"Right Knee"},{"euler":{"heading":14.875,"pitch":-119.6875,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.817"} +{"sensors":[{"euler":{"heading":24.375,"pitch":139.0625,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":38.9375,"pitch":93.6875,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":47.1875,"pitch":-9.375,"roll":-19.8125},"location":"Right Ankle"},{"euler":{"heading":138.375,"pitch":-165.5,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":76.5,"pitch":-103.625,"roll":-2.125},"location":"Right Knee"},{"euler":{"heading":16.625,"pitch":-122.875,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:55.918"} +{"sensors":[{"euler":{"heading":31.625,"pitch":131.75,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":44.75,"pitch":96.0625,"roll":4.875},"location":"Left Ankle"},{"euler":{"heading":31.3125,"pitch":-4.8125,"roll":-23.875},"location":"Right Ankle"},{"euler":{"heading":146.3125,"pitch":-156.75,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":81.5625,"pitch":-104.9375,"roll":-8.375},"location":"Right Knee"},{"euler":{"heading":21.625,"pitch":-129.125,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.19"} +{"sensors":[{"euler":{"heading":36.0,"pitch":126.1875,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":51.3125,"pitch":98.125,"roll":8.9375},"location":"Left Ankle"},{"euler":{"heading":40.0625,"pitch":-10.625,"roll":-19.125},"location":"Right Ankle"},{"euler":{"heading":150.25,"pitch":-154.6875,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":71.875,"pitch":-101.75,"roll":-0.1875},"location":"Right Knee"},{"euler":{"heading":26.375,"pitch":-135.6875,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.120"} +{"sensors":[{"euler":{"heading":41.375,"pitch":122.8125,"roll":26.25},"location":"Left Knee"},{"euler":{"heading":62.6875,"pitch":100.1875,"roll":18.5},"location":"Left Ankle"},{"euler":{"heading":63.5625,"pitch":-19.0,"roll":-11.1875},"location":"Right Ankle"},{"euler":{"heading":97.5625,"pitch":-158.625,"roll":40.4375},"location":"Right Hip"},{"euler":{"heading":53.6875,"pitch":-97.0625,"roll":19.0625},"location":"Right Knee"},{"euler":{"heading":27.6875,"pitch":-141.0,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.220"} +{"sensors":[{"euler":{"heading":46.5625,"pitch":120.125,"roll":22.1875},"location":"Left Knee"},{"euler":{"heading":67.3125,"pitch":101.125,"roll":22.875},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":-21.125,"roll":-1.625},"location":"Right Ankle"},{"euler":{"heading":135.1875,"pitch":-161.5,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":34.1875,"pitch":-93.75,"roll":38.25},"location":"Right Knee"},{"euler":{"heading":29.0,"pitch":-145.8125,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.321"} +{"sensors":[{"euler":{"heading":51.5,"pitch":119.625,"roll":16.25},"location":"Left Knee"},{"euler":{"heading":73.375,"pitch":100.8125,"roll":30.0},"location":"Left Ankle"},{"euler":{"heading":96.3125,"pitch":-20.25,"roll":2.3125},"location":"Right Ankle"},{"euler":{"heading":121.5625,"pitch":-166.25,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":23.75,"pitch":-96.375,"roll":47.625},"location":"Right Knee"},{"euler":{"heading":29.75,"pitch":-153.125,"roll":67.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.422"} +{"sensors":[{"euler":{"heading":64.5625,"pitch":119.75,"roll":4.375},"location":"Left Knee"},{"euler":{"heading":82.0,"pitch":100.375,"roll":44.625},"location":"Left Ankle"},{"euler":{"heading":88.1875,"pitch":-17.3125,"roll":-1.3125},"location":"Right Ankle"},{"euler":{"heading":125.375,"pitch":-165.4375,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":25.3125,"pitch":-102.75,"roll":41.8125},"location":"Right Knee"},{"euler":{"heading":30.125,"pitch":-149.125,"roll":67.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.523"} +{"sensors":[{"euler":{"heading":79.4375,"pitch":119.4375,"roll":-4.25},"location":"Left Knee"},{"euler":{"heading":95.625,"pitch":105.9375,"roll":58.3125},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":-16.125,"roll":-5.3125},"location":"Right Ankle"},{"euler":{"heading":123.75,"pitch":-167.5625,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":32.75,"pitch":-106.875,"roll":34.875},"location":"Right Knee"},{"euler":{"heading":15.9375,"pitch":-121.6875,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.625"} +{"sensors":[{"euler":{"heading":74.875,"pitch":125.4375,"roll":0.5625},"location":"Left Knee"},{"euler":{"heading":83.1875,"pitch":93.9375,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":-16.0625,"roll":-7.3125},"location":"Right Ankle"},{"euler":{"heading":126.875,"pitch":-166.875,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":38.1875,"pitch":-108.75,"roll":30.0625},"location":"Right Knee"},{"euler":{"heading":7.375,"pitch":-112.125,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.726"} +{"sensors":[{"euler":{"heading":39.4375,"pitch":137.0625,"roll":18.1875},"location":"Left Knee"},{"euler":{"heading":52.0,"pitch":85.125,"roll":19.75},"location":"Left Ankle"},{"euler":{"heading":76.6875,"pitch":-14.9375,"roll":-9.375},"location":"Right Ankle"},{"euler":{"heading":131.875,"pitch":-164.5625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":45.0,"pitch":-108.4375,"roll":24.9375},"location":"Right Knee"},{"euler":{"heading":5.5625,"pitch":-111.5625,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.827"} +{"sensors":[{"euler":{"heading":287.0625,"pitch":147.25,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":27.375,"pitch":85.125,"roll":-5.25},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":-12.625,"roll":-12.0625},"location":"Right Ankle"},{"euler":{"heading":135.0,"pitch":-163.625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":50.8125,"pitch":-108.625,"roll":19.3125},"location":"Right Knee"},{"euler":{"heading":6.5625,"pitch":-112.6875,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:56.928"} +{"sensors":[{"euler":{"heading":294.3125,"pitch":150.875,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":22.125,"pitch":87.6875,"roll":-12.1875},"location":"Left Ankle"},{"euler":{"heading":63.5625,"pitch":-10.125,"roll":-16.3125},"location":"Right Ankle"},{"euler":{"heading":139.5,"pitch":-163.8125,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":59.375,"pitch":-106.75,"roll":11.25},"location":"Right Knee"},{"euler":{"heading":13.75,"pitch":-117.875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.29"} +{"sensors":[{"euler":{"heading":19.875,"pitch":141.5625,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":34.625,"pitch":93.875,"roll":-1.875},"location":"Left Ankle"},{"euler":{"heading":50.4375,"pitch":-11.125,"roll":-20.125},"location":"Right Ankle"},{"euler":{"heading":141.75,"pitch":-166.6875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":71.625,"pitch":-102.75,"roll":2.5},"location":"Right Knee"},{"euler":{"heading":17.5,"pitch":-121.125,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.130"} +{"sensors":[{"euler":{"heading":28.8125,"pitch":133.375,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":42.8125,"pitch":96.375,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":33.5625,"pitch":-8.75,"roll":-24.5},"location":"Right Ankle"},{"euler":{"heading":148.8125,"pitch":-159.4375,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":81.625,"pitch":-102.625,"roll":-8.4375},"location":"Right Knee"},{"euler":{"heading":20.0625,"pitch":-124.3125,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.231"} +{"sensors":[{"euler":{"heading":32.875,"pitch":129.125,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":47.1875,"pitch":96.1875,"roll":7.8125},"location":"Left Ankle"},{"euler":{"heading":39.3125,"pitch":-12.75,"roll":-20.75},"location":"Right Ankle"},{"euler":{"heading":152.5625,"pitch":-155.625,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":76.3125,"pitch":-99.9375,"roll":-2.125},"location":"Right Knee"},{"euler":{"heading":22.25,"pitch":-130.375,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.332"} +{"sensors":[{"euler":{"heading":36.5,"pitch":126.5,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":96.875,"roll":16.5},"location":"Left Ankle"},{"euler":{"heading":62.3125,"pitch":-19.75,"roll":-12.4375},"location":"Right Ankle"},{"euler":{"heading":149.9375,"pitch":-156.8125,"roll":41.75},"location":"Right Hip"},{"euler":{"heading":55.9375,"pitch":-97.1875,"roll":17.3125},"location":"Right Knee"},{"euler":{"heading":24.8125,"pitch":-137.0,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.434"} +{"sensors":[{"euler":{"heading":42.5,"pitch":123.125,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":62.25,"pitch":98.3125,"roll":20.25},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":-23.125,"roll":-1.5625},"location":"Right Ankle"},{"euler":{"heading":140.3125,"pitch":-160.375,"roll":41.9375},"location":"Right Hip"},{"euler":{"heading":36.1875,"pitch":-94.875,"roll":37.0625},"location":"Right Knee"},{"euler":{"heading":26.25,"pitch":-142.125,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.535"} +{"sensors":[{"euler":{"heading":48.8125,"pitch":120.875,"roll":18.25},"location":"Left Knee"},{"euler":{"heading":69.125,"pitch":99.625,"roll":26.875},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":-22.625,"roll":3.625},"location":"Right Ankle"},{"euler":{"heading":130.125,"pitch":-162.875,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":24.1875,"pitch":-98.25,"roll":48.0625},"location":"Right Knee"},{"euler":{"heading":27.375,"pitch":-145.6875,"roll":66.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.636"} +{"sensors":[{"euler":{"heading":58.375,"pitch":119.4375,"roll":10.4375},"location":"Left Knee"},{"euler":{"heading":77.3125,"pitch":100.8125,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":93.1875,"pitch":-17.8125,"roll":0.125},"location":"Right Ankle"},{"euler":{"heading":124.5625,"pitch":-165.1875,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":23.6875,"pitch":-104.6875,"roll":43.6875},"location":"Right Knee"},{"euler":{"heading":31.0625,"pitch":-152.9375,"roll":67.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.737"} +{"sensors":[{"euler":{"heading":74.875,"pitch":120.625,"roll":-1.3125},"location":"Left Knee"},{"euler":{"heading":89.4375,"pitch":108.0625,"roll":51.5},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":-14.8125,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":126.8125,"pitch":-164.6875,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":28.6875,"pitch":-108.6875,"roll":37.0},"location":"Right Knee"},{"euler":{"heading":21.375,"pitch":-138.875,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.838"} +{"sensors":[{"euler":{"heading":81.625,"pitch":120.3125,"roll":-3.3125},"location":"Left Knee"},{"euler":{"heading":83.875,"pitch":103.6875,"roll":50.4375},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":-14.25,"roll":-7.75},"location":"Right Ankle"},{"euler":{"heading":124.625,"pitch":-166.1875,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":34.8125,"pitch":-110.8125,"roll":31.5625},"location":"Right Knee"},{"euler":{"heading":10.875,"pitch":-116.125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:57.938"} +{"sensors":[{"euler":{"heading":60.0625,"pitch":131.9375,"roll":9.375},"location":"Left Knee"},{"euler":{"heading":61.0,"pitch":88.5,"roll":29.1875},"location":"Left Ankle"},{"euler":{"heading":78.3125,"pitch":-13.4375,"roll":-10.0625},"location":"Right Ankle"},{"euler":{"heading":130.375,"pitch":-164.1875,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":41.25,"pitch":-110.625,"roll":26.5625},"location":"Right Knee"},{"euler":{"heading":5.5,"pitch":-113.5,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.39"} +{"sensors":[{"euler":{"heading":21.6875,"pitch":143.4375,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":31.9375,"pitch":85.6875,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":73.4375,"pitch":-11.9375,"roll":-12.9375},"location":"Right Ankle"},{"euler":{"heading":134.5,"pitch":-163.75,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":47.625,"pitch":-110.0,"roll":21.125},"location":"Right Knee"},{"euler":{"heading":6.25,"pitch":-113.5,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.141"} +{"sensors":[{"euler":{"heading":291.875,"pitch":150.9375,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":21.75,"pitch":84.5625,"roll":-13.0625},"location":"Left Ankle"},{"euler":{"heading":64.9375,"pitch":-9.5,"roll":-16.5},"location":"Right Ankle"},{"euler":{"heading":138.0,"pitch":-164.1875,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":56.25,"pitch":-108.625,"roll":13.9375},"location":"Right Knee"},{"euler":{"heading":10.6875,"pitch":-117.5,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.242"} +{"sensors":[{"euler":{"heading":15.1875,"pitch":142.5625,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":30.8125,"pitch":93.25,"roll":-5.8125},"location":"Left Ankle"},{"euler":{"heading":53.875,"pitch":-10.5625,"roll":-20.125},"location":"Right Ankle"},{"euler":{"heading":142.1875,"pitch":-166.0625,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":69.375,"pitch":-104.625,"roll":3.875},"location":"Right Knee"},{"euler":{"heading":16.5625,"pitch":-119.875,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.343"} +{"sensors":[{"euler":{"heading":25.6875,"pitch":134.8125,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":42.0,"pitch":95.125,"roll":2.875},"location":"Left Ankle"},{"euler":{"heading":36.0625,"pitch":-9.375,"roll":-24.875},"location":"Right Ankle"},{"euler":{"heading":149.75,"pitch":-160.5,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":80.625,"pitch":-102.25,"roll":-7.0625},"location":"Right Knee"},{"euler":{"heading":16.25,"pitch":-122.125,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.443"} +{"sensors":[{"euler":{"heading":31.0625,"pitch":129.375,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":47.25,"pitch":96.0625,"roll":6.125},"location":"Left Ankle"},{"euler":{"heading":36.6875,"pitch":-12.5,"roll":-22.125},"location":"Right Ankle"},{"euler":{"heading":153.6875,"pitch":-155.4375,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":78.6875,"pitch":-100.25,"roll":-5.5625},"location":"Right Knee"},{"euler":{"heading":21.1875,"pitch":-128.0,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.544"} +{"sensors":[{"euler":{"heading":35.5,"pitch":126.125,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":50.4375,"pitch":96.0,"roll":9.9375},"location":"Left Ankle"},{"euler":{"heading":56.8125,"pitch":-19.1875,"roll":-14.375},"location":"Right Ankle"},{"euler":{"heading":152.4375,"pitch":-155.8125,"roll":41.1875},"location":"Right Hip"},{"euler":{"heading":62.1875,"pitch":-98.0625,"roll":10.75},"location":"Right Knee"},{"euler":{"heading":24.625,"pitch":-134.4375,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.644"} +{"sensors":[{"euler":{"heading":40.875,"pitch":123.5,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":53.75,"pitch":96.625,"roll":13.6875},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":-20.8125,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":98.625,"pitch":-159.5625,"roll":40.875},"location":"Right Hip"},{"euler":{"heading":39.875,"pitch":-96.4375,"roll":31.6875},"location":"Right Knee"},{"euler":{"heading":25.5625,"pitch":-138.875,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.745"} +{"sensors":[{"euler":{"heading":45.6875,"pitch":121.9375,"roll":20.4375},"location":"Left Knee"},{"euler":{"heading":60.3125,"pitch":96.8125,"roll":20.4375},"location":"Left Ankle"},{"euler":{"heading":95.4375,"pitch":-21.1875,"roll":2.0625},"location":"Right Ankle"},{"euler":{"heading":132.4375,"pitch":-162.375,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":26.6875,"pitch":-97.75,"roll":46.1875},"location":"Right Knee"},{"euler":{"heading":28.0625,"pitch":-146.0625,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.846"} +{"sensors":[{"euler":{"heading":52.8125,"pitch":122.125,"roll":13.3125},"location":"Left Knee"},{"euler":{"heading":67.375,"pitch":96.75,"roll":28.875},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":-20.1875,"roll":-0.25},"location":"Right Ankle"},{"euler":{"heading":124.0625,"pitch":-165.625,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":23.5625,"pitch":-101.0625,"roll":46.25},"location":"Right Knee"},{"euler":{"heading":28.75,"pitch":-152.5625,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:58.947"} +{"sensors":[{"euler":{"heading":67.625,"pitch":123.5,"roll":1.0},"location":"Left Knee"},{"euler":{"heading":78.875,"pitch":97.5625,"roll":46.75},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":-18.9375,"roll":-5.125},"location":"Right Ankle"},{"euler":{"heading":127.1875,"pitch":-165.375,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":27.3125,"pitch":-105.5,"roll":40.0625},"location":"Right Knee"},{"euler":{"heading":23.625,"pitch":-141.8125,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.47"} +{"sensors":[{"euler":{"heading":80.0625,"pitch":120.1875,"roll":-3.625},"location":"Left Knee"},{"euler":{"heading":85.75,"pitch":103.5,"roll":53.0625},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":-19.3125,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":125.0,"pitch":-166.9375,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":34.75,"pitch":-107.875,"roll":34.1875},"location":"Right Knee"},{"euler":{"heading":10.375,"pitch":-116.5625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.148"} +{"sensors":[{"euler":{"heading":67.5,"pitch":127.9375,"roll":6.25},"location":"Left Knee"},{"euler":{"heading":70.75,"pitch":92.375,"roll":35.4375},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":-19.375,"roll":-7.75},"location":"Right Ankle"},{"euler":{"heading":130.75,"pitch":-165.375,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":41.3125,"pitch":-107.125,"roll":28.75},"location":"Right Knee"},{"euler":{"heading":5.375,"pitch":-113.4375,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.249"} +{"sensors":[{"euler":{"heading":26.3125,"pitch":140.375,"roll":24.25},"location":"Left Knee"},{"euler":{"heading":41.0625,"pitch":86.1875,"roll":10.25},"location":"Left Ankle"},{"euler":{"heading":77.9375,"pitch":-18.125,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":133.4375,"pitch":-165.125,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":46.5625,"pitch":-106.9375,"roll":23.6875},"location":"Right Knee"},{"euler":{"heading":4.375,"pitch":-112.0,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.350"} +{"sensors":[{"euler":{"heading":5.9375,"pitch":148.3125,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":25.3125,"pitch":84.6875,"roll":-8.4375},"location":"Left Ankle"},{"euler":{"heading":70.5625,"pitch":-15.1875,"roll":-13.3125},"location":"Right Ankle"},{"euler":{"heading":137.0,"pitch":-164.3125,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":52.6875,"pitch":-107.0625,"roll":17.5625},"location":"Right Knee"},{"euler":{"heading":7.8125,"pitch":-114.3125,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.450"} +{"sensors":[{"euler":{"heading":8.3125,"pitch":148.125,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":26.3125,"pitch":89.875,"roll":-8.125},"location":"Left Ankle"},{"euler":{"heading":62.4375,"pitch":-12.4375,"roll":-18.0},"location":"Right Ankle"},{"euler":{"heading":139.5,"pitch":-165.9375,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":60.8125,"pitch":-105.125,"roll":10.0625},"location":"Right Knee"},{"euler":{"heading":13.5625,"pitch":-118.5,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.551"} +{"sensors":[{"euler":{"heading":23.25,"pitch":137.3125,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":39.8125,"pitch":93.125,"roll":2.375},"location":"Left Ankle"},{"euler":{"heading":47.4375,"pitch":-14.0,"roll":-20.625},"location":"Right Ankle"},{"euler":{"heading":144.9375,"pitch":-163.75,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":76.5,"pitch":-100.25,"roll":-2.0625},"location":"Right Knee"},{"euler":{"heading":16.0,"pitch":-120.5625,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.652"} +{"sensors":[{"euler":{"heading":30.8125,"pitch":130.75,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":45.1875,"pitch":94.4375,"roll":6.75},"location":"Left Ankle"},{"euler":{"heading":32.875,"pitch":-7.0,"roll":-25.1875},"location":"Right Ankle"},{"euler":{"heading":149.5,"pitch":-157.625,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":79.375,"pitch":-103.1875,"roll":-7.25},"location":"Right Knee"},{"euler":{"heading":20.125,"pitch":-126.625,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.753"} +{"sensors":[{"euler":{"heading":34.9375,"pitch":127.5,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":53.125,"pitch":96.375,"roll":12.5625},"location":"Left Ankle"},{"euler":{"heading":43.8125,"pitch":-11.9375,"roll":-19.1875},"location":"Right Ankle"},{"euler":{"heading":148.5,"pitch":-156.75,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":69.0625,"pitch":-101.1875,"roll":1.5625},"location":"Right Knee"},{"euler":{"heading":20.875,"pitch":-131.25,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.854"} +{"sensors":[{"euler":{"heading":41.125,"pitch":123.6875,"roll":25.25},"location":"Left Knee"},{"euler":{"heading":63.5625,"pitch":98.625,"roll":20.875},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-19.875,"roll":-9.4375},"location":"Right Ankle"},{"euler":{"heading":143.375,"pitch":-158.6875,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":49.5625,"pitch":-97.4375,"roll":21.6875},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-138.5625,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:21:59.954"} +{"sensors":[{"euler":{"heading":47.125,"pitch":120.875,"roll":20.875},"location":"Left Knee"},{"euler":{"heading":68.25,"pitch":99.375,"roll":25.5625},"location":"Left Ankle"},{"euler":{"heading":94.0,"pitch":-20.3125,"roll":-0.875},"location":"Right Ankle"},{"euler":{"heading":133.25,"pitch":-162.875,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":28.4375,"pitch":-96.375,"roll":41.9375},"location":"Right Knee"},{"euler":{"heading":25.6875,"pitch":-143.5,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.55"} +{"sensors":[{"euler":{"heading":53.8125,"pitch":119.0,"roll":15.0},"location":"Left Knee"},{"euler":{"heading":75.1875,"pitch":100.5625,"roll":32.9375},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":-20.5,"roll":1.3125},"location":"Right Ankle"},{"euler":{"heading":123.1875,"pitch":-166.625,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":21.6875,"pitch":-99.25,"roll":49.9375},"location":"Right Knee"},{"euler":{"heading":29.1875,"pitch":-151.1875,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.156"} +{"sensors":[{"euler":{"heading":66.6875,"pitch":118.125,"roll":4.125},"location":"Left Knee"},{"euler":{"heading":84.125,"pitch":102.0625,"roll":47.5},"location":"Left Ankle"},{"euler":{"heading":83.9375,"pitch":-16.625,"roll":-5.625},"location":"Right Ankle"},{"euler":{"heading":123.8125,"pitch":-166.9375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":24.0,"pitch":-104.5625,"roll":42.5},"location":"Right Knee"},{"euler":{"heading":29.25,"pitch":-148.4375,"roll":67.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.257"} +{"sensors":[{"euler":{"heading":81.875,"pitch":116.9375,"roll":-4.375},"location":"Left Knee"},{"euler":{"heading":97.1875,"pitch":111.9375,"roll":57.875},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":-14.8125,"roll":-7.4375},"location":"Right Ankle"},{"euler":{"heading":125.125,"pitch":-166.5,"roll":53.75},"location":"Right Hip"},{"euler":{"heading":30.125,"pitch":-109.0625,"roll":36.125},"location":"Right Knee"},{"euler":{"heading":16.5625,"pitch":-122.1875,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.358"} +{"sensors":[{"euler":{"heading":77.8125,"pitch":124.125,"roll":-0.625},"location":"Left Knee"},{"euler":{"heading":80.6875,"pitch":92.9375,"roll":47.375},"location":"Left Ankle"},{"euler":{"heading":76.8125,"pitch":-13.625,"roll":-9.6875},"location":"Right Ankle"},{"euler":{"heading":129.1875,"pitch":-164.875,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":36.0,"pitch":-109.9375,"roll":30.875},"location":"Right Knee"},{"euler":{"heading":6.625,"pitch":-114.5,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.459"} +{"sensors":[{"euler":{"heading":43.8125,"pitch":135.25,"roll":17.25},"location":"Left Knee"},{"euler":{"heading":53.4375,"pitch":87.3125,"roll":20.5625},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":-12.375,"roll":-11.5},"location":"Right Ankle"},{"euler":{"heading":133.0625,"pitch":-164.0625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":41.9375,"pitch":-109.875,"roll":25.8125},"location":"Right Knee"},{"euler":{"heading":3.875,"pitch":-111.625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.560"} +{"sensors":[{"euler":{"heading":17.0,"pitch":143.625,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":28.8125,"pitch":87.125,"roll":-3.875},"location":"Left Ankle"},{"euler":{"heading":67.4375,"pitch":-10.5,"roll":-13.8125},"location":"Right Ankle"},{"euler":{"heading":136.4375,"pitch":-164.375,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":49.3125,"pitch":-109.125,"roll":19.6875},"location":"Right Knee"},{"euler":{"heading":7.75,"pitch":-114.4375,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.662"} +{"sensors":[{"euler":{"heading":13.8125,"pitch":145.875,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":25.25,"pitch":90.125,"roll":-9.0625},"location":"Left Ankle"},{"euler":{"heading":59.6875,"pitch":-8.6875,"roll":-19.375},"location":"Right Ankle"},{"euler":{"heading":140.8125,"pitch":-164.3125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":58.25,"pitch":-107.0,"roll":12.5},"location":"Right Knee"},{"euler":{"heading":13.6875,"pitch":-118.8125,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.762"} +{"sensors":[{"euler":{"heading":27.125,"pitch":136.5625,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":38.0,"pitch":94.4375,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":44.8125,"pitch":-11.625,"roll":-21.5625},"location":"Right Ankle"},{"euler":{"heading":145.875,"pitch":-162.1875,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":75.0,"pitch":-101.5,"roll":-0.25},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-119.375,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.863"} +{"sensors":[{"euler":{"heading":34.0625,"pitch":130.75,"roll":29.0625},"location":"Left Knee"},{"euler":{"heading":44.375,"pitch":95.1875,"roll":6.0625},"location":"Left Ankle"},{"euler":{"heading":31.25,"pitch":-10.1875,"roll":-24.1875},"location":"Right Ankle"},{"euler":{"heading":152.1875,"pitch":-155.9375,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":79.0,"pitch":-102.0,"roll":-5.5},"location":"Right Knee"},{"euler":{"heading":17.5,"pitch":-125.0,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:00.964"} +{"sensors":[{"euler":{"heading":34.9375,"pitch":127.875,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":48.5,"pitch":94.3125,"roll":9.8125},"location":"Left Ankle"},{"euler":{"heading":43.25,"pitch":-14.375,"roll":-19.4375},"location":"Right Ankle"},{"euler":{"heading":149.6875,"pitch":-155.875,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":65.4375,"pitch":-100.625,"roll":6.375},"location":"Right Knee"},{"euler":{"heading":20.9375,"pitch":-132.5625,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.65"} +{"sensors":[{"euler":{"heading":39.875,"pitch":125.125,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":52.5625,"pitch":94.625,"roll":13.75},"location":"Left Ankle"},{"euler":{"heading":67.75,"pitch":-21.375,"roll":-8.8125},"location":"Right Ankle"},{"euler":{"heading":143.125,"pitch":-158.625,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":44.5625,"pitch":-97.8125,"roll":27.125},"location":"Right Knee"},{"euler":{"heading":23.375,"pitch":-140.5,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.165"} +{"sensors":[{"euler":{"heading":46.4375,"pitch":122.0625,"roll":20.0625},"location":"Left Knee"},{"euler":{"heading":58.0625,"pitch":95.9375,"roll":18.6875},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":-21.75,"roll":-1.1875},"location":"Right Ankle"},{"euler":{"heading":134.125,"pitch":-162.5,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":27.4375,"pitch":-97.0,"roll":44.5625},"location":"Right Knee"},{"euler":{"heading":25.9375,"pitch":-145.1875,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.266"} +{"sensors":[{"euler":{"heading":54.125,"pitch":119.9375,"roll":13.875},"location":"Left Knee"},{"euler":{"heading":65.5625,"pitch":97.5,"roll":26.25},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":-22.3125,"roll":0.75},"location":"Right Ankle"},{"euler":{"heading":125.75,"pitch":-165.4375,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":21.375,"pitch":-99.25,"roll":50.4375},"location":"Right Knee"},{"euler":{"heading":29.125,"pitch":-152.0,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.368"} +{"sensors":[{"euler":{"heading":67.25,"pitch":118.9375,"roll":3.0625},"location":"Left Knee"},{"euler":{"heading":76.0625,"pitch":99.25,"roll":41.0625},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-18.125,"roll":-6.25},"location":"Right Ankle"},{"euler":{"heading":129.125,"pitch":-164.1875,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":23.0625,"pitch":-103.875,"roll":43.3125},"location":"Right Knee"},{"euler":{"heading":29.5,"pitch":-149.5625,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.469"} +{"sensors":[{"euler":{"heading":82.125,"pitch":117.6875,"roll":-5.1875},"location":"Left Knee"},{"euler":{"heading":89.125,"pitch":107.6875,"roll":54.125},"location":"Left Ankle"},{"euler":{"heading":80.75,"pitch":-17.1875,"roll":-7.3125},"location":"Right Ankle"},{"euler":{"heading":127.125,"pitch":-165.0625,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":29.25,"pitch":-108.4375,"roll":37.25},"location":"Right Knee"},{"euler":{"heading":14.5,"pitch":-123.75,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.569"} +{"sensors":[{"euler":{"heading":78.25,"pitch":123.625,"roll":-0.4375},"location":"Left Knee"},{"euler":{"heading":80.1875,"pitch":94.25,"roll":44.1875},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":-17.25,"roll":-9.5},"location":"Right Ankle"},{"euler":{"heading":131.75,"pitch":-163.875,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":37.125,"pitch":-108.75,"roll":31.5},"location":"Right Knee"},{"euler":{"heading":7.0,"pitch":-115.6875,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.670"} +{"sensors":[{"euler":{"heading":44.3125,"pitch":135.25,"roll":16.875},"location":"Left Knee"},{"euler":{"heading":51.875,"pitch":87.125,"roll":18.9375},"location":"Left Ankle"},{"euler":{"heading":75.125,"pitch":-16.25,"roll":-12.5},"location":"Right Ankle"},{"euler":{"heading":136.0625,"pitch":-162.5625,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":42.6875,"pitch":-108.25,"roll":26.25},"location":"Right Knee"},{"euler":{"heading":5.5,"pitch":-113.625,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.771"} +{"sensors":[{"euler":{"heading":13.125,"pitch":144.375,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":28.0,"pitch":86.3125,"roll":-5.3125},"location":"Left Ankle"},{"euler":{"heading":68.6875,"pitch":-14.375,"roll":-13.8125},"location":"Right Ankle"},{"euler":{"heading":138.0,"pitch":-163.5,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":50.0,"pitch":-107.8125,"roll":19.6875},"location":"Right Knee"},{"euler":{"heading":7.8125,"pitch":-115.5625,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.871"} +{"sensors":[{"euler":{"heading":10.125,"pitch":146.125,"roll":34.8125},"location":"Left Knee"},{"euler":{"heading":25.3125,"pitch":88.8125,"roll":-9.625},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-11.9375,"roll":-19.8125},"location":"Right Ankle"},{"euler":{"heading":141.375,"pitch":-165.1875,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":60.1875,"pitch":-105.5,"roll":11.3125},"location":"Right Knee"},{"euler":{"heading":13.0625,"pitch":-119.4375,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:01.972"} +{"sensors":[{"euler":{"heading":25.6875,"pitch":136.4375,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":38.25,"pitch":93.5625,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":43.375,"pitch":-13.5625,"roll":-22.5},"location":"Right Ankle"},{"euler":{"heading":146.0625,"pitch":-162.1875,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":75.875,"pitch":-99.5625,"roll":-1.25},"location":"Right Knee"},{"euler":{"heading":14.75,"pitch":-120.6875,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.73"} +{"sensors":[{"euler":{"heading":33.25,"pitch":130.1875,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":44.875,"pitch":94.9375,"roll":6.0},"location":"Left Ankle"},{"euler":{"heading":34.0,"pitch":-13.625,"roll":-21.875},"location":"Right Ankle"},{"euler":{"heading":153.25,"pitch":-155.5,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":78.125,"pitch":-99.625,"roll":-4.5},"location":"Right Knee"},{"euler":{"heading":19.1875,"pitch":-127.125,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.174"} +{"sensors":[{"euler":{"heading":37.1875,"pitch":126.375,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":56.75,"pitch":96.75,"roll":14.8125},"location":"Left Ankle"},{"euler":{"heading":47.1875,"pitch":-15.0,"roll":-18.75},"location":"Right Ankle"},{"euler":{"heading":148.9375,"pitch":-155.9375,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":60.875,"pitch":-100.0625,"roll":9.375},"location":"Right Knee"},{"euler":{"heading":21.625,"pitch":-133.375,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.275"} +{"sensors":[{"euler":{"heading":43.0,"pitch":122.5,"roll":24.75},"location":"Left Knee"},{"euler":{"heading":59.375,"pitch":97.6875,"roll":18.3125},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-21.0,"roll":-7.125},"location":"Right Ankle"},{"euler":{"heading":141.4375,"pitch":-159.4375,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":39.5,"pitch":-96.375,"roll":30.4375},"location":"Right Knee"},{"euler":{"heading":24.5625,"pitch":-139.375,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.376"} +{"sensors":[{"euler":{"heading":48.6875,"pitch":120.6875,"roll":19.5625},"location":"Left Knee"},{"euler":{"heading":63.4375,"pitch":97.8125,"roll":23.75},"location":"Left Ankle"},{"euler":{"heading":90.0,"pitch":-22.1875,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":132.3125,"pitch":-164.375,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":24.1875,"pitch":-96.5625,"roll":47.375},"location":"Right Knee"},{"euler":{"heading":26.8125,"pitch":-145.5,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.476"} +{"sensors":[{"euler":{"heading":55.5625,"pitch":120.0625,"roll":12.6875},"location":"Left Knee"},{"euler":{"heading":71.1875,"pitch":98.125,"roll":31.875},"location":"Left Ankle"},{"euler":{"heading":94.0,"pitch":-21.6875,"roll":1.125},"location":"Right Ankle"},{"euler":{"heading":122.3125,"pitch":-167.25,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":20.5,"pitch":-100.1875,"roll":49.0},"location":"Right Knee"},{"euler":{"heading":29.625,"pitch":-153.75,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.577"} +{"sensors":[{"euler":{"heading":70.875,"pitch":119.5,"roll":0.75},"location":"Left Knee"},{"euler":{"heading":77.0625,"pitch":100.25,"roll":44.4375},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":-16.5,"roll":-7.9375},"location":"Right Ankle"},{"euler":{"heading":127.0,"pitch":-165.375,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":23.8125,"pitch":-106.5,"roll":42.1875},"location":"Right Knee"},{"euler":{"heading":25.0625,"pitch":-141.875,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.677"} +{"sensors":[{"euler":{"heading":82.6875,"pitch":118.9375,"roll":-5.1875},"location":"Left Knee"},{"euler":{"heading":84.375,"pitch":103.8125,"roll":52.6875},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":-17.375,"roll":-6.75},"location":"Right Ankle"},{"euler":{"heading":124.0,"pitch":-168.375,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":29.375,"pitch":-108.375,"roll":36.9375},"location":"Right Knee"},{"euler":{"heading":10.375,"pitch":-119.125,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.778"} +{"sensors":[{"euler":{"heading":71.6875,"pitch":126.0,"roll":3.4375},"location":"Left Knee"},{"euler":{"heading":74.125,"pitch":91.3125,"roll":38.1875},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-17.3125,"roll":-8.4375},"location":"Right Ankle"},{"euler":{"heading":127.3125,"pitch":-167.625,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":34.9375,"pitch":-107.75,"roll":31.875},"location":"Right Knee"},{"euler":{"heading":4.375,"pitch":-116.0625,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.878"} +{"sensors":[{"euler":{"heading":32.25,"pitch":137.375,"roll":22.1875},"location":"Left Knee"},{"euler":{"heading":43.5,"pitch":85.4375,"roll":11.5},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":-15.75,"roll":-10.875},"location":"Right Ankle"},{"euler":{"heading":131.125,"pitch":-167.375,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":40.1875,"pitch":-107.6875,"roll":27.3125},"location":"Right Knee"},{"euler":{"heading":4.9375,"pitch":-114.0,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:02.979"} +{"sensors":[{"euler":{"heading":5.625,"pitch":146.625,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":26.125,"pitch":82.75,"roll":-8.6875},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":-13.75,"roll":-15.25},"location":"Right Ankle"},{"euler":{"heading":133.5,"pitch":-168.6875,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":47.6875,"pitch":-106.5625,"roll":21.0625},"location":"Right Knee"},{"euler":{"heading":8.9375,"pitch":-119.3125,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.80"} +{"sensors":[{"euler":{"heading":16.625,"pitch":141.8125,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":31.5625,"pitch":88.625,"roll":-2.875},"location":"Left Ankle"},{"euler":{"heading":58.6875,"pitch":-13.5,"roll":-19.0625},"location":"Right Ankle"},{"euler":{"heading":137.625,"pitch":-169.125,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":59.4375,"pitch":-103.8125,"roll":12.25},"location":"Right Knee"},{"euler":{"heading":12.3125,"pitch":-121.625,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.180"} +{"sensors":[{"euler":{"heading":26.5625,"pitch":135.125,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":41.3125,"pitch":91.875,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":39.125,"pitch":-10.3125,"roll":-23.0},"location":"Right Ankle"},{"euler":{"heading":142.5625,"pitch":-162.75,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":72.25,"pitch":-101.0,"roll":-0.0625},"location":"Right Knee"},{"euler":{"heading":12.25,"pitch":-122.5,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.280"} +{"sensors":[{"euler":{"heading":31.1875,"pitch":131.5625,"roll":28.25},"location":"Left Knee"},{"euler":{"heading":48.4375,"pitch":91.75,"roll":10.125},"location":"Left Ankle"},{"euler":{"heading":37.4375,"pitch":-11.6875,"roll":-20.875},"location":"Right Ankle"},{"euler":{"heading":144.8125,"pitch":-158.75,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":71.0,"pitch":-101.25,"roll":-0.6875},"location":"Right Knee"},{"euler":{"heading":14.75,"pitch":-130.4375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.381"} +{"sensors":[{"euler":{"heading":34.0,"pitch":128.875,"roll":26.1875},"location":"Left Knee"},{"euler":{"heading":58.0625,"pitch":91.9375,"roll":17.25},"location":"Left Ankle"},{"euler":{"heading":56.8125,"pitch":-18.8125,"roll":-14.5625},"location":"Right Ankle"},{"euler":{"heading":145.0625,"pitch":-158.25,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":53.5,"pitch":-97.625,"roll":16.3125},"location":"Right Knee"},{"euler":{"heading":19.5,"pitch":-139.125,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.481"} +{"sensors":[{"euler":{"heading":38.875,"pitch":126.1875,"roll":22.8125},"location":"Left Knee"},{"euler":{"heading":59.25,"pitch":91.6875,"roll":20.625},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":-22.5625,"roll":-5.0},"location":"Right Ankle"},{"euler":{"heading":135.9375,"pitch":-162.125,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":33.25,"pitch":-94.9375,"roll":36.9375},"location":"Right Knee"},{"euler":{"heading":22.0625,"pitch":-145.6875,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.582"} +{"sensors":[{"euler":{"heading":46.75,"pitch":123.8125,"roll":16.8125},"location":"Left Knee"},{"euler":{"heading":64.1875,"pitch":92.375,"roll":26.4375},"location":"Left Ankle"},{"euler":{"heading":96.1875,"pitch":-21.6875,"roll":1.6875},"location":"Right Ankle"},{"euler":{"heading":129.6875,"pitch":-164.6875,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":19.4375,"pitch":-97.75,"roll":50.9375},"location":"Right Knee"},{"euler":{"heading":25.6875,"pitch":-152.125,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.683"} +{"sensors":[{"euler":{"heading":56.5625,"pitch":122.875,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":72.625,"pitch":93.5,"roll":36.3125},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":-19.125,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":126.125,"pitch":-165.25,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":19.875,"pitch":-103.6875,"roll":48.6875},"location":"Right Knee"},{"euler":{"heading":29.5,"pitch":-158.0,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.784"} +{"sensors":[{"euler":{"heading":74.5625,"pitch":122.25,"roll":-2.5},"location":"Left Knee"},{"euler":{"heading":80.125,"pitch":97.9375,"roll":48.75},"location":"Left Ankle"},{"euler":{"heading":83.5625,"pitch":-14.875,"roll":-6.875},"location":"Right Ankle"},{"euler":{"heading":127.5,"pitch":-165.125,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":20.9375,"pitch":-108.375,"roll":42.4375},"location":"Right Knee"},{"euler":{"heading":21.0,"pitch":-143.5,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.885"} +{"sensors":[{"euler":{"heading":81.0625,"pitch":121.5625,"roll":-5.5625},"location":"Left Knee"},{"euler":{"heading":82.4375,"pitch":96.875,"roll":53.6875},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-13.25,"roll":-10.1875},"location":"Right Ankle"},{"euler":{"heading":125.0625,"pitch":-167.125,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":27.5625,"pitch":-111.75,"roll":36.0},"location":"Right Knee"},{"euler":{"heading":11.375,"pitch":-121.5625,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:03.986"} +{"sensors":[{"euler":{"heading":64.125,"pitch":129.1875,"roll":6.3125},"location":"Left Knee"},{"euler":{"heading":67.625,"pitch":85.3125,"roll":34.5},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-12.625,"roll":-13.375},"location":"Right Ankle"},{"euler":{"heading":128.1875,"pitch":-166.625,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":33.875,"pitch":-111.5625,"roll":31.25},"location":"Right Knee"},{"euler":{"heading":5.6875,"pitch":-117.125,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.87"} +{"sensors":[{"euler":{"heading":26.8125,"pitch":139.25,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":38.125,"pitch":85.0,"roll":6.8125},"location":"Left Ankle"},{"euler":{"heading":71.8125,"pitch":-11.5,"roll":-14.1875},"location":"Right Ankle"},{"euler":{"heading":134.1875,"pitch":-164.75,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":39.875,"pitch":-110.5,"roll":26.4375},"location":"Right Knee"},{"euler":{"heading":5.9375,"pitch":-115.25,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.188"} +{"sensors":[{"euler":{"heading":14.25,"pitch":145.0,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":21.9375,"pitch":87.8125,"roll":-11.8125},"location":"Left Ankle"},{"euler":{"heading":63.3125,"pitch":-8.5,"roll":-19.6875},"location":"Right Ankle"},{"euler":{"heading":140.625,"pitch":-162.6875,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":49.4375,"pitch":-109.75,"roll":18.125},"location":"Right Knee"},{"euler":{"heading":10.75,"pitch":-120.25,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.289"} +{"sensors":[{"euler":{"heading":24.125,"pitch":138.4375,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":28.25,"pitch":94.25,"roll":-6.625},"location":"Left Ankle"},{"euler":{"heading":50.75,"pitch":-10.5625,"roll":-23.0625},"location":"Right Ankle"},{"euler":{"heading":146.75,"pitch":-164.0,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":64.5625,"pitch":-104.8125,"roll":7.625},"location":"Right Knee"},{"euler":{"heading":17.5,"pitch":-122.1875,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.390"} +{"sensors":[{"euler":{"heading":33.0625,"pitch":130.75,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":43.5625,"pitch":97.1875,"roll":4.5},"location":"Left Ankle"},{"euler":{"heading":33.3125,"pitch":-6.375,"roll":-28.4375},"location":"Right Ankle"},{"euler":{"heading":155.25,"pitch":-157.9375,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":74.4375,"pitch":-102.875,"roll":-2.5625},"location":"Right Knee"},{"euler":{"heading":18.9375,"pitch":-125.625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.491"} +{"sensors":[{"euler":{"heading":39.625,"pitch":124.8125,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":52.6875,"pitch":101.6875,"roll":9.75},"location":"Left Ankle"},{"euler":{"heading":35.125,"pitch":-12.1875,"roll":-23.9375},"location":"Right Ankle"},{"euler":{"heading":158.6875,"pitch":-153.0625,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":68.375,"pitch":-99.0,"roll":2.125},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-131.1875,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.592"} +{"sensors":[{"euler":{"heading":44.875,"pitch":120.25,"roll":27.75},"location":"Left Knee"},{"euler":{"heading":62.25,"pitch":103.3125,"roll":16.0625},"location":"Left Ankle"},{"euler":{"heading":56.375,"pitch":-19.8125,"roll":-17.5625},"location":"Right Ankle"},{"euler":{"heading":157.4375,"pitch":-154.0625,"roll":41.0625},"location":"Right Hip"},{"euler":{"heading":51.75,"pitch":-95.0625,"roll":18.5},"location":"Right Knee"},{"euler":{"heading":25.9375,"pitch":-137.0625,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.693"} +{"sensors":[{"euler":{"heading":49.0625,"pitch":117.6875,"roll":24.0},"location":"Left Knee"},{"euler":{"heading":63.4375,"pitch":102.375,"roll":19.6875},"location":"Left Ankle"},{"euler":{"heading":84.0,"pitch":-24.25,"roll":-6.25},"location":"Right Ankle"},{"euler":{"heading":147.125,"pitch":-158.5,"roll":40.8125},"location":"Right Hip"},{"euler":{"heading":31.25,"pitch":-91.6875,"roll":40.625},"location":"Right Knee"},{"euler":{"heading":28.9375,"pitch":-144.0625,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.793"} +{"sensors":[{"euler":{"heading":55.5,"pitch":115.625,"roll":18.4375},"location":"Left Knee"},{"euler":{"heading":67.25,"pitch":103.0,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":96.125,"pitch":-22.6875,"roll":2.0},"location":"Right Ankle"},{"euler":{"heading":133.625,"pitch":-163.3125,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":17.125,"pitch":-93.125,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":30.9375,"pitch":-148.8125,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.895"} +{"sensors":[{"euler":{"heading":64.0,"pitch":115.3125,"roll":9.5625},"location":"Left Knee"},{"euler":{"heading":73.875,"pitch":103.0625,"roll":34.1875},"location":"Left Ankle"},{"euler":{"heading":92.125,"pitch":-20.4375,"roll":0.125},"location":"Right Ankle"},{"euler":{"heading":130.9375,"pitch":-165.8125,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":18.9375,"pitch":-99.5625,"roll":48.375},"location":"Right Knee"},{"euler":{"heading":32.1875,"pitch":-150.625,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:04.996"} +{"sensors":[{"euler":{"heading":79.8125,"pitch":118.25,"roll":-3.0},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":104.0,"roll":52.625},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":-18.125,"roll":-8.375},"location":"Right Ankle"},{"euler":{"heading":131.5,"pitch":-165.625,"roll":51.75},"location":"Right Hip"},{"euler":{"heading":23.0625,"pitch":-104.5,"roll":42.3125},"location":"Right Knee"},{"euler":{"heading":17.125,"pitch":-130.125,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.97"} +{"sensors":[{"euler":{"heading":82.0,"pitch":119.6875,"roll":-2.875},"location":"Left Knee"},{"euler":{"heading":91.0,"pitch":100.0,"roll":54.9375},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":-18.125,"roll":-7.125},"location":"Right Ankle"},{"euler":{"heading":131.625,"pitch":-166.1875,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":28.6875,"pitch":-107.5625,"roll":36.9375},"location":"Right Knee"},{"euler":{"heading":7.375,"pitch":-114.8125,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.198"} +{"sensors":[{"euler":{"heading":61.5,"pitch":129.5,"roll":10.8125},"location":"Left Knee"},{"euler":{"heading":68.75,"pitch":88.75,"roll":33.25},"location":"Left Ankle"},{"euler":{"heading":80.5625,"pitch":-17.8125,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":135.0,"pitch":-165.375,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":34.625,"pitch":-107.5625,"roll":32.1875},"location":"Right Knee"},{"euler":{"heading":3.0,"pitch":-115.4375,"roll":48.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.299"} +{"sensors":[{"euler":{"heading":22.3125,"pitch":141.1875,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":35.75,"pitch":86.75,"roll":5.125},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":-16.8125,"roll":-12.5},"location":"Right Ankle"},{"euler":{"heading":137.9375,"pitch":-165.6875,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":40.75,"pitch":-106.9375,"roll":26.6875},"location":"Right Knee"},{"euler":{"heading":4.8125,"pitch":-116.75,"roll":49.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.399"} +{"sensors":[{"euler":{"heading":8.8125,"pitch":148.375,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":21.625,"pitch":84.625,"roll":-11.5},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":-13.5,"roll":-16.75},"location":"Right Ankle"},{"euler":{"heading":139.1875,"pitch":-167.1875,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":49.625,"pitch":-106.25,"roll":19.0625},"location":"Right Knee"},{"euler":{"heading":11.875,"pitch":-122.1875,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.500"} +{"sensors":[{"euler":{"heading":21.625,"pitch":140.9375,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":31.625,"pitch":90.875,"roll":-3.5625},"location":"Left Ankle"},{"euler":{"heading":53.875,"pitch":-11.6875,"roll":-20.25},"location":"Right Ankle"},{"euler":{"heading":142.9375,"pitch":-168.125,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":61.8125,"pitch":-103.3125,"roll":9.125},"location":"Right Knee"},{"euler":{"heading":14.4375,"pitch":-125.25,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.601"} +{"sensors":[{"euler":{"heading":29.9375,"pitch":133.25,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":42.9375,"pitch":93.3125,"roll":5.0},"location":"Left Ankle"},{"euler":{"heading":36.4375,"pitch":-9.875,"roll":-24.1875},"location":"Right Ankle"},{"euler":{"heading":153.25,"pitch":-158.0625,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":71.125,"pitch":-101.0,"roll":-1.875},"location":"Right Knee"},{"euler":{"heading":17.5625,"pitch":-127.5625,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.702"} +{"sensors":[{"euler":{"heading":35.875,"pitch":127.0625,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":50.9375,"pitch":95.75,"roll":9.8125},"location":"Left Ankle"},{"euler":{"heading":36.4375,"pitch":-10.4375,"roll":-22.875},"location":"Right Ankle"},{"euler":{"heading":158.3125,"pitch":-152.8125,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":65.1875,"pitch":-99.5,"roll":2.8125},"location":"Right Knee"},{"euler":{"heading":21.4375,"pitch":-136.3125,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.803"} +{"sensors":[{"euler":{"heading":40.5625,"pitch":123.5,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":61.75,"pitch":97.4375,"roll":17.5625},"location":"Left Ankle"},{"euler":{"heading":58.1875,"pitch":-18.625,"roll":-15.5},"location":"Right Ankle"},{"euler":{"heading":154.4375,"pitch":-154.1875,"roll":42.125},"location":"Right Hip"},{"euler":{"heading":48.75,"pitch":-95.5,"roll":19.25},"location":"Right Knee"},{"euler":{"heading":22.4375,"pitch":-139.5625,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:05.904"} +{"sensors":[{"euler":{"heading":46.75,"pitch":120.125,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":62.75,"pitch":97.6875,"roll":20.5625},"location":"Left Ankle"},{"euler":{"heading":85.9375,"pitch":-22.625,"roll":-3.125},"location":"Right Ankle"},{"euler":{"heading":145.5,"pitch":-157.125,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":26.9375,"pitch":-92.5,"roll":40.75},"location":"Right Knee"},{"euler":{"heading":24.6875,"pitch":-144.3125,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.4"} +{"sensors":[{"euler":{"heading":53.375,"pitch":117.375,"roll":18.1875},"location":"Left Knee"},{"euler":{"heading":68.125,"pitch":99.4375,"roll":26.1875},"location":"Left Ankle"},{"euler":{"heading":96.5,"pitch":-20.9375,"roll":0.8125},"location":"Right Ankle"},{"euler":{"heading":135.0,"pitch":-161.75,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":13.0625,"pitch":-94.3125,"roll":54.5625},"location":"Right Knee"},{"euler":{"heading":26.9375,"pitch":-148.375,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.105"} +{"sensors":[{"euler":{"heading":62.5,"pitch":116.75,"roll":9.6875},"location":"Left Knee"},{"euler":{"heading":77.9375,"pitch":100.4375,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":-19.25,"roll":-1.9375},"location":"Right Ankle"},{"euler":{"heading":129.3125,"pitch":-164.6875,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":12.1875,"pitch":-99.8125,"roll":52.5625},"location":"Right Knee"},{"euler":{"heading":27.6875,"pitch":-151.4375,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.205"} +{"sensors":[{"euler":{"heading":77.25,"pitch":117.25,"roll":-1.875},"location":"Left Knee"},{"euler":{"heading":88.0625,"pitch":105.125,"roll":53.5625},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":-18.125,"roll":-6.5},"location":"Right Ankle"},{"euler":{"heading":133.5625,"pitch":-163.9375,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":19.5,"pitch":-104.5,"roll":45.125},"location":"Right Knee"},{"euler":{"heading":20.75,"pitch":-137.5625,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.309"} +{"sensors":[{"euler":{"heading":86.0625,"pitch":116.3125,"roll":-5.4375},"location":"Left Knee"},{"euler":{"heading":94.375,"pitch":105.1875,"roll":57.5},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":-17.3125,"roll":-8.4375},"location":"Right Ankle"},{"euler":{"heading":131.0625,"pitch":-165.5,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":24.75,"pitch":-108.8125,"roll":39.9375},"location":"Right Knee"},{"euler":{"heading":11.5625,"pitch":-120.125,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.409"} +{"sensors":[{"euler":{"heading":72.3125,"pitch":125.4375,"roll":5.0625},"location":"Left Knee"},{"euler":{"heading":78.1875,"pitch":91.875,"roll":40.375},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":-16.8125,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":134.3125,"pitch":-164.875,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":29.75,"pitch":-109.0625,"roll":35.4375},"location":"Right Knee"},{"euler":{"heading":4.1875,"pitch":-116.25,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.510"} +{"sensors":[{"euler":{"heading":30.8125,"pitch":137.9375,"roll":24.75},"location":"Left Knee"},{"euler":{"heading":45.8125,"pitch":87.3125,"roll":9.625},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-14.4375,"roll":-12.875},"location":"Right Ankle"},{"euler":{"heading":135.8125,"pitch":-164.875,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":33.9375,"pitch":-109.8125,"roll":30.5},"location":"Right Knee"},{"euler":{"heading":3.0625,"pitch":-114.375,"roll":48.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.611"} +{"sensors":[{"euler":{"heading":10.1875,"pitch":146.5,"roll":35.1875},"location":"Left Knee"},{"euler":{"heading":22.0625,"pitch":85.3125,"roll":-11.75},"location":"Left Ankle"},{"euler":{"heading":69.5625,"pitch":-10.8125,"roll":-17.5625},"location":"Right Ankle"},{"euler":{"heading":137.75,"pitch":-165.5,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":40.8125,"pitch":-110.0,"roll":24.0},"location":"Right Knee"},{"euler":{"heading":10.1875,"pitch":-119.6875,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.712"} +{"sensors":[{"euler":{"heading":19.6875,"pitch":142.0625,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":28.3125,"pitch":92.0625,"roll":-6.0625},"location":"Left Ankle"},{"euler":{"heading":59.0625,"pitch":-9.8125,"roll":-20.6875},"location":"Right Ankle"},{"euler":{"heading":141.75,"pitch":-167.4375,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":52.8125,"pitch":-106.5,"roll":15.0625},"location":"Right Knee"},{"euler":{"heading":16.75,"pitch":-123.3125,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.812"} +{"sensors":[{"euler":{"heading":28.4375,"pitch":134.5625,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":40.75,"pitch":94.25,"roll":3.25},"location":"Left Ankle"},{"euler":{"heading":41.4375,"pitch":-10.375,"roll":-22.875},"location":"Right Ankle"},{"euler":{"heading":150.3125,"pitch":-160.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":67.1875,"pitch":-101.5,"roll":2.5},"location":"Right Knee"},{"euler":{"heading":15.5625,"pitch":-123.875,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:06.913"} +{"sensors":[{"euler":{"heading":33.8125,"pitch":129.75,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":45.8125,"pitch":94.5,"roll":7.4375},"location":"Left Ankle"},{"euler":{"heading":32.6875,"pitch":-11.4375,"roll":-22.8125},"location":"Right Ankle"},{"euler":{"heading":156.3125,"pitch":-155.0625,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":69.75,"pitch":-99.3125,"roll":-0.75},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-131.5625,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.14"} +{"sensors":[{"euler":{"heading":35.9375,"pitch":127.9375,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":58.5625,"pitch":95.125,"roll":16.4375},"location":"Left Ankle"},{"euler":{"heading":47.6875,"pitch":-14.8125,"roll":-18.75},"location":"Right Ankle"},{"euler":{"heading":155.3125,"pitch":-154.8125,"roll":43.0},"location":"Right Hip"},{"euler":{"heading":52.875,"pitch":-96.125,"roll":13.5625},"location":"Right Knee"},{"euler":{"heading":19.75,"pitch":-136.9375,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.115"} +{"sensors":[{"euler":{"heading":40.625,"pitch":125.6875,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":59.625,"pitch":93.75,"roll":19.625},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-19.9375,"roll":-7.6875},"location":"Right Ankle"},{"euler":{"heading":147.0,"pitch":-158.4375,"roll":41.1875},"location":"Right Hip"},{"euler":{"heading":29.5625,"pitch":-93.0625,"roll":36.8125},"location":"Right Knee"},{"euler":{"heading":20.8125,"pitch":-141.8125,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.220"} +{"sensors":[{"euler":{"heading":48.125,"pitch":122.6875,"roll":18.5},"location":"Left Knee"},{"euler":{"heading":63.6875,"pitch":94.25,"roll":24.75},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":-21.75,"roll":-0.0625},"location":"Right Ankle"},{"euler":{"heading":137.75,"pitch":-161.8125,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":17.1875,"pitch":-93.625,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":24.5,"pitch":-147.625,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.321"} +{"sensors":[{"euler":{"heading":55.375,"pitch":120.5625,"roll":12.6875},"location":"Left Knee"},{"euler":{"heading":71.25,"pitch":96.5,"roll":32.8125},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":-20.5625,"roll":-0.5625},"location":"Right Ankle"},{"euler":{"heading":126.125,"pitch":-165.6875,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":10.75,"pitch":-98.8125,"roll":55.75},"location":"Right Knee"},{"euler":{"heading":27.3125,"pitch":-154.875,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.421"} +{"sensors":[{"euler":{"heading":68.9375,"pitch":119.8125,"roll":1.75},"location":"Left Knee"},{"euler":{"heading":64.875,"pitch":98.625,"roll":45.25},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":-17.6875,"roll":-6.5625},"location":"Right Ankle"},{"euler":{"heading":129.5,"pitch":-164.4375,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":14.375,"pitch":-104.0,"roll":48.3125},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-148.8125,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.522"} +{"sensors":[{"euler":{"heading":83.6875,"pitch":117.5,"roll":-6.0625},"location":"Left Knee"},{"euler":{"heading":89.8125,"pitch":103.625,"roll":57.5625},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":-17.1875,"roll":-8.6875},"location":"Right Ankle"},{"euler":{"heading":125.1875,"pitch":-166.5625,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":21.0,"pitch":-110.0625,"roll":41.6875},"location":"Right Knee"},{"euler":{"heading":10.25,"pitch":-120.625,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.622"} +{"sensors":[{"euler":{"heading":80.8125,"pitch":124.125,"roll":-1.875},"location":"Left Knee"},{"euler":{"heading":81.0625,"pitch":90.75,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":-16.5,"roll":-11.4375},"location":"Right Ankle"},{"euler":{"heading":130.75,"pitch":-164.5625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":27.3125,"pitch":-110.625,"roll":36.5625},"location":"Right Knee"},{"euler":{"heading":2.0625,"pitch":-115.3125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.723"} +{"sensors":[{"euler":{"heading":45.625,"pitch":135.9375,"roll":17.4375},"location":"Left Knee"},{"euler":{"heading":51.625,"pitch":87.125,"roll":20.3125},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":-15.1875,"roll":-12.875},"location":"Right Ankle"},{"euler":{"heading":135.625,"pitch":-163.0,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":31.6875,"pitch":-110.1875,"roll":32.125},"location":"Right Knee"},{"euler":{"heading":356.5,"pitch":-118.0625,"roll":47.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.824"} +{"sensors":[{"euler":{"heading":17.25,"pitch":144.8125,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":26.1875,"pitch":88.3125,"roll":-5.5625},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-13.6875,"roll":-16.4375},"location":"Right Ankle"},{"euler":{"heading":138.0625,"pitch":-163.9375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":38.9375,"pitch":-109.5625,"roll":26.125},"location":"Right Knee"},{"euler":{"heading":5.9375,"pitch":-118.0625,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:07.926"} +{"sensors":[{"euler":{"heading":12.0625,"pitch":146.9375,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":22.875,"pitch":89.625,"roll":-11.125},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":-11.375,"roll":-19.75},"location":"Right Ankle"},{"euler":{"heading":140.375,"pitch":-166.5,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":47.8125,"pitch":-107.8125,"roll":19.0},"location":"Right Knee"},{"euler":{"heading":13.1875,"pitch":-121.4375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.27"} +{"sensors":[{"euler":{"heading":30.4375,"pitch":136.25,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":36.75,"pitch":97.1875,"roll":0.1875},"location":"Left Ankle"},{"euler":{"heading":51.125,"pitch":-12.875,"roll":-23.125},"location":"Right Ankle"},{"euler":{"heading":144.6875,"pitch":-169.0625,"roll":62.25},"location":"Right Hip"},{"euler":{"heading":62.6875,"pitch":-102.25,"roll":8.5},"location":"Right Knee"},{"euler":{"heading":19.875,"pitch":-124.4375,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.128"} +{"sensors":[{"euler":{"heading":39.125,"pitch":127.5625,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":47.0,"pitch":101.0625,"roll":6.5},"location":"Left Ankle"},{"euler":{"heading":33.8125,"pitch":-9.1875,"roll":-28.75},"location":"Right Ankle"},{"euler":{"heading":153.4375,"pitch":-159.1875,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":70.9375,"pitch":-102.4375,"roll":-1.5625},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-126.375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.228"} +{"sensors":[{"euler":{"heading":42.125,"pitch":123.5,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":52.625,"pitch":101.6875,"roll":10.625},"location":"Left Ankle"},{"euler":{"heading":36.9375,"pitch":-12.5,"roll":-24.9375},"location":"Right Ankle"},{"euler":{"heading":157.8125,"pitch":-155.25,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":64.9375,"pitch":-99.4375,"roll":4.0625},"location":"Right Knee"},{"euler":{"heading":24.75,"pitch":-135.4375,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.329"} +{"sensors":[{"euler":{"heading":46.6875,"pitch":119.6875,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":62.75,"pitch":104.125,"roll":18.25},"location":"Left Ankle"},{"euler":{"heading":59.0,"pitch":-20.125,"roll":-16.3125},"location":"Right Ankle"},{"euler":{"heading":153.0625,"pitch":-156.4375,"roll":41.0625},"location":"Right Hip"},{"euler":{"heading":44.3125,"pitch":-95.25,"roll":23.625},"location":"Right Knee"},{"euler":{"heading":26.0625,"pitch":-140.1875,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.430"} +{"sensors":[{"euler":{"heading":52.1875,"pitch":117.25,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":66.5,"pitch":104.8125,"roll":22.0625},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":-23.0625,"roll":-4.6875},"location":"Right Ankle"},{"euler":{"heading":143.125,"pitch":-159.75,"roll":41.0625},"location":"Right Hip"},{"euler":{"heading":23.1875,"pitch":-93.6875,"roll":44.875},"location":"Right Knee"},{"euler":{"heading":27.25,"pitch":-144.4375,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.530"} +{"sensors":[{"euler":{"heading":57.25,"pitch":115.6875,"roll":17.25},"location":"Left Knee"},{"euler":{"heading":71.4375,"pitch":104.125,"roll":28.4375},"location":"Left Ankle"},{"euler":{"heading":94.1875,"pitch":-20.1875,"roll":0.4375},"location":"Right Ankle"},{"euler":{"heading":129.3125,"pitch":-164.625,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":9.875,"pitch":-95.5,"roll":55.9375},"location":"Right Knee"},{"euler":{"heading":27.875,"pitch":-148.8125,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.631"} +{"sensors":[{"euler":{"heading":65.25,"pitch":115.6875,"roll":8.8125},"location":"Left Knee"},{"euler":{"heading":79.75,"pitch":104.25,"roll":38.625},"location":"Left Ankle"},{"euler":{"heading":89.875,"pitch":-20.25,"roll":-3.8125},"location":"Right Ankle"},{"euler":{"heading":126.0,"pitch":-167.1875,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":9.875,"pitch":-102.375,"roll":52.625},"location":"Right Knee"},{"euler":{"heading":31.0,"pitch":-154.9375,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.731"} +{"sensors":[{"euler":{"heading":80.75,"pitch":118.125,"roll":-3.375},"location":"Left Knee"},{"euler":{"heading":94.875,"pitch":108.9375,"roll":55.0},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":-18.3125,"roll":-7.625},"location":"Right Ankle"},{"euler":{"heading":129.375,"pitch":-166.375,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":15.5625,"pitch":-106.5,"roll":45.875},"location":"Right Knee"},{"euler":{"heading":19.5,"pitch":-136.8125,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.831"} +{"sensors":[{"euler":{"heading":84.625,"pitch":118.25,"roll":-4.0625},"location":"Left Knee"},{"euler":{"heading":90.375,"pitch":101.0625,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-16.5,"roll":-10.75},"location":"Right Ankle"},{"euler":{"heading":129.25,"pitch":-167.0,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":19.1875,"pitch":-109.9375,"roll":40.9375},"location":"Right Knee"},{"euler":{"heading":11.25,"pitch":-119.375,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:08.933"} +{"sensors":[{"euler":{"heading":63.875,"pitch":128.875,"roll":10.4375},"location":"Left Knee"},{"euler":{"heading":66.25,"pitch":89.5625,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":77.375,"pitch":-14.875,"roll":-12.6875},"location":"Right Ankle"},{"euler":{"heading":133.4375,"pitch":-165.3125,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":24.875,"pitch":-111.125,"roll":35.8125},"location":"Right Knee"},{"euler":{"heading":6.375,"pitch":-116.25,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.34"} +{"sensors":[{"euler":{"heading":23.9375,"pitch":141.25,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":34.1875,"pitch":86.625,"roll":3.75},"location":"Left Ankle"},{"euler":{"heading":72.75,"pitch":-13.125,"roll":-14.3125},"location":"Right Ankle"},{"euler":{"heading":135.8125,"pitch":-165.8125,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":30.625,"pitch":-110.625,"roll":30.5625},"location":"Right Knee"},{"euler":{"heading":7.0625,"pitch":-117.0,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.135"} +{"sensors":[{"euler":{"heading":9.1875,"pitch":148.6875,"roll":35.3125},"location":"Left Knee"},{"euler":{"heading":20.125,"pitch":85.3125,"roll":-12.3125},"location":"Left Ankle"},{"euler":{"heading":66.5,"pitch":-10.875,"roll":-19.3125},"location":"Right Ankle"},{"euler":{"heading":139.1875,"pitch":-166.0625,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":40.0625,"pitch":-109.4375,"roll":23.1875},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-123.9375,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.236"} +{"sensors":[{"euler":{"heading":22.625,"pitch":140.5,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":31.0,"pitch":93.8125,"roll":-4.3125},"location":"Left Ankle"},{"euler":{"heading":52.875,"pitch":-11.75,"roll":-23.1875},"location":"Right Ankle"},{"euler":{"heading":144.1875,"pitch":-165.3125,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":55.3125,"pitch":-104.8125,"roll":11.9375},"location":"Right Knee"},{"euler":{"heading":14.25,"pitch":-125.8125,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.337"} +{"sensors":[{"euler":{"heading":31.25,"pitch":133.375,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":39.5,"pitch":93.6875,"roll":4.125},"location":"Left Ankle"},{"euler":{"heading":33.1875,"pitch":-5.625,"roll":-27.125},"location":"Right Ankle"},{"euler":{"heading":152.4375,"pitch":-158.4375,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":64.125,"pitch":-103.0625,"roll":2.125},"location":"Right Knee"},{"euler":{"heading":16.9375,"pitch":-128.5,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.438"} +{"sensors":[{"euler":{"heading":37.8125,"pitch":126.9375,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":47.5625,"pitch":97.0625,"roll":8.5625},"location":"Left Ankle"},{"euler":{"heading":37.375,"pitch":-8.8125,"roll":-22.9375},"location":"Right Ankle"},{"euler":{"heading":154.5625,"pitch":-153.4375,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":58.5625,"pitch":-102.75,"roll":5.875},"location":"Right Knee"},{"euler":{"heading":21.0,"pitch":-134.75,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.539"} +{"sensors":[{"euler":{"heading":43.875,"pitch":122.125,"roll":28.0625},"location":"Left Knee"},{"euler":{"heading":52.9375,"pitch":98.6875,"roll":12.75},"location":"Left Ankle"},{"euler":{"heading":60.75,"pitch":-19.125,"roll":-15.6875},"location":"Right Ankle"},{"euler":{"heading":153.6875,"pitch":-155.25,"roll":40.6875},"location":"Right Hip"},{"euler":{"heading":42.375,"pitch":-98.3125,"roll":22.625},"location":"Right Knee"},{"euler":{"heading":25.4375,"pitch":-140.3125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.640"} +{"sensors":[{"euler":{"heading":49.625,"pitch":118.8125,"roll":24.0625},"location":"Left Knee"},{"euler":{"heading":57.0625,"pitch":99.4375,"roll":16.875},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":-24.8125,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":101.9375,"pitch":-159.3125,"roll":40.125},"location":"Right Hip"},{"euler":{"heading":24.625,"pitch":-93.8125,"roll":43.6875},"location":"Right Knee"},{"euler":{"heading":27.9375,"pitch":-146.125,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.741"} +{"sensors":[{"euler":{"heading":55.75,"pitch":116.375,"roll":18.5},"location":"Left Knee"},{"euler":{"heading":63.4375,"pitch":101.6875,"roll":23.375},"location":"Left Ankle"},{"euler":{"heading":97.4375,"pitch":-24.0,"roll":2.8125},"location":"Right Ankle"},{"euler":{"heading":135.0625,"pitch":-163.5,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":10.25,"pitch":-94.25,"roll":57.1875},"location":"Right Knee"},{"euler":{"heading":29.0625,"pitch":-151.625,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.842"} +{"sensors":[{"euler":{"heading":63.6875,"pitch":115.9375,"roll":10.25},"location":"Left Knee"},{"euler":{"heading":73.6875,"pitch":102.0625,"roll":34.625},"location":"Left Ankle"},{"euler":{"heading":90.1875,"pitch":-20.125,"roll":-2.625},"location":"Right Ankle"},{"euler":{"heading":128.4375,"pitch":-167.4375,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":10.0,"pitch":-99.875,"roll":53.3125},"location":"Right Knee"},{"euler":{"heading":33.9375,"pitch":-158.875,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:09.942"} +{"sensors":[{"euler":{"heading":81.5,"pitch":118.9375,"roll":-3.6875},"location":"Left Knee"},{"euler":{"heading":86.1875,"pitch":105.3125,"roll":53.1875},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-18.5625,"roll":-7.75},"location":"Right Ankle"},{"euler":{"heading":133.0,"pitch":-165.5625,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":15.75,"pitch":-105.0,"roll":46.375},"location":"Right Knee"},{"euler":{"heading":18.4375,"pitch":-137.125,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.43"} +{"sensors":[{"euler":{"heading":85.125,"pitch":118.3125,"roll":-3.6875},"location":"Left Knee"},{"euler":{"heading":85.75,"pitch":101.0,"roll":54.9375},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":-17.5,"roll":-9.1875},"location":"Right Ankle"},{"euler":{"heading":132.4375,"pitch":-166.3125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":19.6875,"pitch":-107.75,"roll":41.5},"location":"Right Knee"},{"euler":{"heading":8.6875,"pitch":-117.5,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.145"} +{"sensors":[{"euler":{"heading":66.8125,"pitch":128.125,"roll":9.8125},"location":"Left Knee"},{"euler":{"heading":64.875,"pitch":88.6875,"roll":32.3125},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":-15.4375,"roll":-11.75},"location":"Right Ankle"},{"euler":{"heading":136.9375,"pitch":-164.0625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":24.0625,"pitch":-109.375,"roll":36.75},"location":"Right Knee"},{"euler":{"heading":4.875,"pitch":-115.3125,"roll":49.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.245"} +{"sensors":[{"euler":{"heading":24.9375,"pitch":140.3125,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":31.75,"pitch":86.4375,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":74.125,"pitch":-13.75,"roll":-14.3125},"location":"Right Ankle"},{"euler":{"heading":139.375,"pitch":-163.875,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":29.5625,"pitch":-109.25,"roll":31.125},"location":"Right Knee"},{"euler":{"heading":6.875,"pitch":-116.25,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.346"} +{"sensors":[{"euler":{"heading":9.25,"pitch":147.5625,"roll":36.5625},"location":"Left Knee"},{"euler":{"heading":20.6875,"pitch":85.75,"roll":-12.625},"location":"Left Ankle"},{"euler":{"heading":66.625,"pitch":-10.5625,"roll":-20.1875},"location":"Right Ankle"},{"euler":{"heading":140.5625,"pitch":-165.125,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":39.125,"pitch":-109.4375,"roll":23.6875},"location":"Right Knee"},{"euler":{"heading":11.9375,"pitch":-121.0625,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.447"} +{"sensors":[{"euler":{"heading":21.375,"pitch":140.375,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":29.75,"pitch":91.625,"roll":-4.6875},"location":"Left Ankle"},{"euler":{"heading":54.5625,"pitch":-10.1875,"roll":-22.8125},"location":"Right Ankle"},{"euler":{"heading":143.9375,"pitch":-166.8125,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":52.0,"pitch":-105.5625,"roll":14.3125},"location":"Right Knee"},{"euler":{"heading":17.0625,"pitch":-124.875,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.547"} +{"sensors":[{"euler":{"heading":28.8125,"pitch":133.6875,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":39.5625,"pitch":92.9375,"roll":3.6875},"location":"Left Ankle"},{"euler":{"heading":37.75,"pitch":-9.8125,"roll":-26.125},"location":"Right Ankle"},{"euler":{"heading":151.3125,"pitch":-160.5,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":65.25,"pitch":-100.25,"roll":1.75},"location":"Right Knee"},{"euler":{"heading":16.0,"pitch":-125.75,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.648"} +{"sensors":[{"euler":{"heading":35.125,"pitch":128.4375,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":45.0,"pitch":94.0625,"roll":7.75},"location":"Left Ankle"},{"euler":{"heading":33.6875,"pitch":-12.375,"roll":-23.5},"location":"Right Ankle"},{"euler":{"heading":156.1875,"pitch":-155.0,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":63.875,"pitch":-99.3125,"roll":2.1875},"location":"Right Knee"},{"euler":{"heading":20.8125,"pitch":-134.625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.748"} +{"sensors":[{"euler":{"heading":38.625,"pitch":125.0625,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":54.125,"pitch":94.6875,"roll":15.0625},"location":"Left Ankle"},{"euler":{"heading":51.5625,"pitch":-17.625,"roll":-18.5625},"location":"Right Ankle"},{"euler":{"heading":155.5,"pitch":-154.3125,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":47.875,"pitch":-95.375,"roll":17.0},"location":"Right Knee"},{"euler":{"heading":22.8125,"pitch":-141.25,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.849"} +{"sensors":[{"euler":{"heading":44.5625,"pitch":121.625,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":58.0625,"pitch":96.0625,"roll":19.0625},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":-21.5625,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":100.75,"pitch":-158.9375,"roll":40.625},"location":"Right Hip"},{"euler":{"heading":25.1875,"pitch":-94.8125,"roll":40.25},"location":"Right Knee"},{"euler":{"heading":24.625,"pitch":-144.9375,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:10.951"} +{"sensors":[{"euler":{"heading":51.875,"pitch":119.0,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":63.4375,"pitch":97.0,"roll":24.5},"location":"Left Ankle"},{"euler":{"heading":93.0625,"pitch":-21.3125,"roll":-0.625},"location":"Right Ankle"},{"euler":{"heading":136.25,"pitch":-162.25,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":10.875,"pitch":-97.125,"roll":55.6875},"location":"Right Knee"},{"euler":{"heading":27.6875,"pitch":-150.8125,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.52"} +{"sensors":[{"euler":{"heading":59.1875,"pitch":118.1875,"roll":12.0},"location":"Left Knee"},{"euler":{"heading":72.6875,"pitch":97.625,"roll":35.6875},"location":"Left Ankle"},{"euler":{"heading":92.375,"pitch":-21.0625,"roll":-2.125},"location":"Right Ankle"},{"euler":{"heading":126.375,"pitch":-166.125,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":8.5,"pitch":-101.625,"roll":55.1875},"location":"Right Knee"},{"euler":{"heading":30.375,"pitch":-156.8125,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.152"} +{"sensors":[{"euler":{"heading":75.5,"pitch":119.625,"roll":-1.25},"location":"Left Knee"},{"euler":{"heading":80.625,"pitch":99.875,"roll":49.0625},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":-17.8125,"roll":-6.5},"location":"Right Ankle"},{"euler":{"heading":133.5625,"pitch":-163.25,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":11.1875,"pitch":-106.5,"roll":48.625},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-144.3125,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.254"} +{"sensors":[{"euler":{"heading":86.0,"pitch":118.125,"roll":-5.9375},"location":"Left Knee"},{"euler":{"heading":89.6875,"pitch":101.9375,"roll":58.5625},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-15.5,"roll":-9.9375},"location":"Right Ankle"},{"euler":{"heading":129.5625,"pitch":-165.0625,"roll":53.8125},"location":"Right Hip"},{"euler":{"heading":16.8125,"pitch":-112.375,"roll":42.25},"location":"Right Knee"},{"euler":{"heading":10.375,"pitch":-118.8125,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.354"} +{"sensors":[{"euler":{"heading":76.3125,"pitch":125.375,"roll":2.875},"location":"Left Knee"},{"euler":{"heading":76.1875,"pitch":91.0,"roll":41.75},"location":"Left Ankle"},{"euler":{"heading":81.1875,"pitch":-15.6875,"roll":-13.6875},"location":"Right Ankle"},{"euler":{"heading":134.9375,"pitch":-163.375,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":23.0625,"pitch":-111.75,"roll":37.375},"location":"Right Knee"},{"euler":{"heading":4.75,"pitch":-114.25,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.455"} +{"sensors":[{"euler":{"heading":37.6875,"pitch":137.125,"roll":22.0625},"location":"Left Knee"},{"euler":{"heading":42.625,"pitch":86.75,"roll":10.9375},"location":"Left Ankle"},{"euler":{"heading":76.5625,"pitch":-14.8125,"roll":-14.1875},"location":"Right Ankle"},{"euler":{"heading":138.875,"pitch":-162.6875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":29.0,"pitch":-110.6875,"roll":32.5},"location":"Right Knee"},{"euler":{"heading":4.5625,"pitch":-112.9375,"roll":50.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.556"} +{"sensors":[{"euler":{"heading":16.125,"pitch":145.25,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":21.6875,"pitch":86.3125,"roll":-10.1875},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-12.0625,"roll":-17.875},"location":"Right Ankle"},{"euler":{"heading":141.625,"pitch":-162.5625,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":35.9375,"pitch":-110.25,"roll":26.25},"location":"Right Knee"},{"euler":{"heading":9.75,"pitch":-116.5625,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.657"} +{"sensors":[{"euler":{"heading":16.4375,"pitch":144.625,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":25.6875,"pitch":89.75,"roll":-7.625},"location":"Left Ankle"},{"euler":{"heading":61.3125,"pitch":-10.5625,"roll":-21.8125},"location":"Right Ankle"},{"euler":{"heading":143.875,"pitch":-164.9375,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":46.9375,"pitch":-106.9375,"roll":17.6875},"location":"Right Knee"},{"euler":{"heading":14.5,"pitch":-120.9375,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.758"} +{"sensors":[{"euler":{"heading":28.625,"pitch":136.1875,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":37.3125,"pitch":91.5,"roll":2.3125},"location":"Left Ankle"},{"euler":{"heading":44.5625,"pitch":-12.5625,"roll":-24.375},"location":"Right Ankle"},{"euler":{"heading":148.0625,"pitch":-164.0625,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":63.3125,"pitch":-100.625,"roll":5.6875},"location":"Right Knee"},{"euler":{"heading":14.5,"pitch":-122.0625,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.858"} +{"sensors":[{"euler":{"heading":34.0,"pitch":131.6875,"roll":29.125},"location":"Left Knee"},{"euler":{"heading":41.0,"pitch":91.5,"roll":5.5},"location":"Left Ankle"},{"euler":{"heading":34.875,"pitch":-10.375,"roll":-24.9375},"location":"Right Ankle"},{"euler":{"heading":154.0625,"pitch":-157.9375,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":65.8125,"pitch":-101.625,"roll":1.3125},"location":"Right Knee"},{"euler":{"heading":18.8125,"pitch":-128.0,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:11.959"} +{"sensors":[{"euler":{"heading":36.5625,"pitch":128.9375,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":45.5,"pitch":91.625,"roll":9.625},"location":"Left Ankle"},{"euler":{"heading":47.5625,"pitch":-13.6875,"roll":-21.1875},"location":"Right Ankle"},{"euler":{"heading":155.375,"pitch":-156.375,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":52.25,"pitch":-99.5,"roll":12.8125},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-134.5625,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.60"} +{"sensors":[{"euler":{"heading":41.3125,"pitch":126.125,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":50.3125,"pitch":91.875,"roll":13.875},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-21.5,"roll":-10.75},"location":"Right Ankle"},{"euler":{"heading":104.375,"pitch":-159.1875,"roll":40.0625},"location":"Right Hip"},{"euler":{"heading":33.5625,"pitch":-95.75,"roll":33.125},"location":"Right Knee"},{"euler":{"heading":23.75,"pitch":-141.3125,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.161"} +{"sensors":[{"euler":{"heading":48.4375,"pitch":121.9375,"roll":20.5625},"location":"Left Knee"},{"euler":{"heading":55.9375,"pitch":94.25,"roll":18.875},"location":"Left Ankle"},{"euler":{"heading":92.3125,"pitch":-23.5625,"roll":-0.9375},"location":"Right Ankle"},{"euler":{"heading":140.0,"pitch":-162.5625,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":16.4375,"pitch":-94.6875,"roll":51.375},"location":"Right Knee"},{"euler":{"heading":27.1875,"pitch":-146.0625,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.262"} +{"sensors":[{"euler":{"heading":55.8125,"pitch":119.5625,"roll":14.8125},"location":"Left Knee"},{"euler":{"heading":63.5,"pitch":96.125,"roll":26.375},"location":"Left Ankle"},{"euler":{"heading":98.875,"pitch":-22.9375,"roll":0.375},"location":"Right Ankle"},{"euler":{"heading":129.1875,"pitch":-166.1875,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":7.1875,"pitch":-98.625,"roll":59.0},"location":"Right Knee"},{"euler":{"heading":29.5,"pitch":-151.875,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.362"} +{"sensors":[{"euler":{"heading":67.4375,"pitch":118.4375,"roll":5.1875},"location":"Left Knee"},{"euler":{"heading":73.3125,"pitch":97.875,"roll":40.125},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":-19.6875,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":129.9375,"pitch":-166.3125,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":8.1875,"pitch":-104.125,"roll":52.8125},"location":"Right Knee"},{"euler":{"heading":31.125,"pitch":-152.6875,"roll":66.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.463"} +{"sensors":[{"euler":{"heading":85.625,"pitch":118.0,"roll":-5.4375},"location":"Left Knee"},{"euler":{"heading":95.6875,"pitch":111.5625,"roll":57.9375},"location":"Left Ankle"},{"euler":{"heading":85.6875,"pitch":-17.0,"roll":-8.5625},"location":"Right Ankle"},{"euler":{"heading":128.1875,"pitch":-167.0625,"roll":52.25},"location":"Right Hip"},{"euler":{"heading":12.0,"pitch":-111.125,"roll":46.5},"location":"Right Knee"},{"euler":{"heading":14.5,"pitch":-125.0625,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.564"} +{"sensors":[{"euler":{"heading":86.4375,"pitch":120.25,"roll":-3.0625},"location":"Left Knee"},{"euler":{"heading":86.125,"pitch":95.1875,"roll":51.25},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-18.0625,"roll":-10.375},"location":"Right Ankle"},{"euler":{"heading":131.125,"pitch":-166.875,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":19.625,"pitch":-110.1875,"roll":40.8125},"location":"Right Knee"},{"euler":{"heading":5.4375,"pitch":-114.875,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.665"} +{"sensors":[{"euler":{"heading":60.3125,"pitch":131.0,"roll":12.625},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":88.375,"roll":22.8125},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":-17.3125,"roll":-12.0},"location":"Right Ankle"},{"euler":{"heading":134.5625,"pitch":-166.5,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":26.0,"pitch":-109.6875,"roll":35.6875},"location":"Right Knee"},{"euler":{"heading":3.1875,"pitch":-110.875,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.767"} +{"sensors":[{"euler":{"heading":21.375,"pitch":142.3125,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":28.1875,"pitch":86.5,"roll":-4.8125},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-13.9375,"roll":-14.875},"location":"Right Ankle"},{"euler":{"heading":137.3125,"pitch":-166.0,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":29.4375,"pitch":-110.75,"roll":31.25},"location":"Right Knee"},{"euler":{"heading":6.5,"pitch":-113.9375,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.867"} +{"sensors":[{"euler":{"heading":14.1875,"pitch":146.5625,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":20.6875,"pitch":88.1875,"roll":-10.9375},"location":"Left Ankle"},{"euler":{"heading":68.5625,"pitch":-11.3125,"roll":-19.875},"location":"Right Ankle"},{"euler":{"heading":139.0,"pitch":-167.125,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":37.5625,"pitch":-109.6875,"roll":24.1875},"location":"Right Knee"},{"euler":{"heading":11.0625,"pitch":-119.1875,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:12.968"} +{"sensors":[{"euler":{"heading":29.625,"pitch":137.375,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":35.0,"pitch":93.9375,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":55.25,"pitch":-12.375,"roll":-23.6875},"location":"Right Ankle"},{"euler":{"heading":141.125,"pitch":-167.625,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":51.5,"pitch":-105.9375,"roll":13.6875},"location":"Right Knee"},{"euler":{"heading":12.75,"pitch":-121.375,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.69"} +{"sensors":[{"euler":{"heading":37.375,"pitch":131.125,"roll":28.9375},"location":"Left Knee"},{"euler":{"heading":40.9375,"pitch":94.125,"roll":4.875},"location":"Left Ankle"},{"euler":{"heading":37.125,"pitch":-8.375,"roll":-27.1875},"location":"Right Ankle"},{"euler":{"heading":147.9375,"pitch":-161.25,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":63.8125,"pitch":-102.5,"roll":2.0625},"location":"Right Knee"},{"euler":{"heading":15.0,"pitch":-124.0625,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.170"} +{"sensors":[{"euler":{"heading":39.75,"pitch":128.1875,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":45.0625,"pitch":93.6875,"roll":8.875},"location":"Left Ankle"},{"euler":{"heading":41.625,"pitch":-11.6875,"roll":-23.75},"location":"Right Ankle"},{"euler":{"heading":151.375,"pitch":-158.0,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":58.0625,"pitch":-100.8125,"roll":6.5625},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-131.4375,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.271"} +{"sensors":[{"euler":{"heading":43.625,"pitch":124.875,"roll":24.625},"location":"Left Knee"},{"euler":{"heading":50.8125,"pitch":95.0625,"roll":13.375},"location":"Left Ankle"},{"euler":{"heading":63.0625,"pitch":-18.0625,"roll":-16.375},"location":"Right Ankle"},{"euler":{"heading":151.1875,"pitch":-158.25,"roll":40.5},"location":"Right Hip"},{"euler":{"heading":40.0,"pitch":-98.25,"roll":26.5},"location":"Right Knee"},{"euler":{"heading":21.5,"pitch":-139.1875,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.372"} +{"sensors":[{"euler":{"heading":51.3125,"pitch":119.8125,"roll":21.3125},"location":"Left Knee"},{"euler":{"heading":57.25,"pitch":97.9375,"roll":17.75},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":-22.875,"roll":-4.4375},"location":"Right Ankle"},{"euler":{"heading":101.5625,"pitch":-162.4375,"roll":40.75},"location":"Right Hip"},{"euler":{"heading":19.0625,"pitch":-95.875,"roll":46.6875},"location":"Right Knee"},{"euler":{"heading":26.0,"pitch":-145.5625,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.473"} +{"sensors":[{"euler":{"heading":57.6875,"pitch":117.5625,"roll":15.875},"location":"Left Knee"},{"euler":{"heading":62.8125,"pitch":99.125,"roll":23.1875},"location":"Left Ankle"},{"euler":{"heading":98.5625,"pitch":-23.625,"roll":1.125},"location":"Right Ankle"},{"euler":{"heading":131.75,"pitch":-165.125,"roll":45.4375},"location":"Right Hip"},{"euler":{"heading":7.6875,"pitch":-97.125,"roll":57.9375},"location":"Right Knee"},{"euler":{"heading":27.8125,"pitch":-151.3125,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.574"} +{"sensors":[{"euler":{"heading":67.3125,"pitch":116.375,"roll":7.5},"location":"Left Knee"},{"euler":{"heading":71.0,"pitch":100.3125,"roll":33.25},"location":"Left Ankle"},{"euler":{"heading":92.875,"pitch":-20.6875,"roll":-1.9375},"location":"Right Ankle"},{"euler":{"heading":127.1875,"pitch":-167.5,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":7.9375,"pitch":-102.5,"roll":53.25},"location":"Right Knee"},{"euler":{"heading":29.875,"pitch":-156.4375,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.675"} +{"sensors":[{"euler":{"heading":83.8125,"pitch":118.0,"roll":-4.875},"location":"Left Knee"},{"euler":{"heading":85.0,"pitch":104.875,"roll":51.9375},"location":"Left Ankle"},{"euler":{"heading":86.6875,"pitch":-19.3125,"roll":-6.9375},"location":"Right Ankle"},{"euler":{"heading":131.75,"pitch":-165.5625,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":12.3125,"pitch":-106.6875,"roll":46.4375},"location":"Right Knee"},{"euler":{"heading":19.3125,"pitch":-137.3125,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.776"} +{"sensors":[{"euler":{"heading":90.0625,"pitch":117.75,"roll":-6.9375},"location":"Left Knee"},{"euler":{"heading":87.6875,"pitch":101.625,"roll":57.0625},"location":"Left Ankle"},{"euler":{"heading":83.9375,"pitch":-19.75,"roll":-9.375},"location":"Right Ankle"},{"euler":{"heading":130.0625,"pitch":-168.0,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":21.5,"pitch":-108.375,"roll":39.875},"location":"Right Knee"},{"euler":{"heading":7.4375,"pitch":-116.1875,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.876"} +{"sensors":[{"euler":{"heading":75.875,"pitch":127.5,"roll":3.9375},"location":"Left Knee"},{"euler":{"heading":70.125,"pitch":89.5625,"roll":37.5},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-18.9375,"roll":-12.5},"location":"Right Ankle"},{"euler":{"heading":135.75,"pitch":-165.9375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":27.6875,"pitch":-108.375,"roll":35.0},"location":"Right Knee"},{"euler":{"heading":2.0,"pitch":-112.8125,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:13.977"} +{"sensors":[{"euler":{"heading":33.0,"pitch":139.6875,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":38.3125,"pitch":84.6875,"roll":8.5625},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":-17.0625,"roll":-14.8125},"location":"Right Ankle"},{"euler":{"heading":139.875,"pitch":-164.875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":32.6875,"pitch":-107.9375,"roll":29.75},"location":"Right Knee"},{"euler":{"heading":2.875,"pitch":-112.25,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.78"} +{"sensors":[{"euler":{"heading":12.75,"pitch":147.625,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":17.75,"pitch":83.9375,"roll":-13.625},"location":"Left Ankle"},{"euler":{"heading":68.0,"pitch":-12.625,"roll":-20.0625},"location":"Right Ankle"},{"euler":{"heading":141.6875,"pitch":-164.8125,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":39.125,"pitch":-108.25,"roll":23.3125},"location":"Right Knee"},{"euler":{"heading":9.4375,"pitch":-117.375,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.178"} +{"sensors":[{"euler":{"heading":21.625,"pitch":142.3125,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":22.25,"pitch":90.4375,"roll":-8.8125},"location":"Left Ankle"},{"euler":{"heading":59.1875,"pitch":-10.8125,"roll":-23.3125},"location":"Right Ankle"},{"euler":{"heading":144.3125,"pitch":-167.3125,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":49.75,"pitch":-105.6875,"roll":14.75},"location":"Right Knee"},{"euler":{"heading":14.375,"pitch":-119.375,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.279"} +{"sensors":[{"euler":{"heading":31.8125,"pitch":135.375,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":35.8125,"pitch":92.25,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":43.75,"pitch":-9.75,"roll":-26.0},"location":"Right Ankle"},{"euler":{"heading":148.3125,"pitch":-163.875,"roll":56.75},"location":"Right Hip"},{"euler":{"heading":63.5,"pitch":-102.0,"roll":3.375},"location":"Right Knee"},{"euler":{"heading":12.5625,"pitch":-121.0,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.380"} +{"sensors":[{"euler":{"heading":37.25,"pitch":130.3125,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":40.5625,"pitch":93.625,"roll":4.625},"location":"Left Ankle"},{"euler":{"heading":34.3125,"pitch":-9.0625,"roll":-26.4375},"location":"Right Ankle"},{"euler":{"heading":153.1875,"pitch":-156.8125,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":65.5625,"pitch":-103.0,"roll":0.625},"location":"Right Knee"},{"euler":{"heading":16.875,"pitch":-128.4375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.481"} +{"sensors":[{"euler":{"heading":41.125,"pitch":126.5625,"roll":26.3125},"location":"Left Knee"},{"euler":{"heading":46.0625,"pitch":94.0625,"roll":9.5625},"location":"Left Ankle"},{"euler":{"heading":49.75,"pitch":-13.625,"roll":-21.625},"location":"Right Ankle"},{"euler":{"heading":154.0625,"pitch":-156.3125,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":50.25,"pitch":-101.0625,"roll":13.75},"location":"Right Knee"},{"euler":{"heading":20.3125,"pitch":-135.125,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.581"} +{"sensors":[{"euler":{"heading":47.875,"pitch":121.6875,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":56.25,"pitch":97.3125,"roll":17.25},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-22.1875,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":103.6875,"pitch":-160.5625,"roll":39.6875},"location":"Right Hip"},{"euler":{"heading":29.9375,"pitch":-95.5,"roll":34.9375},"location":"Right Knee"},{"euler":{"heading":23.3125,"pitch":-139.5,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.681"} +{"sensors":[{"euler":{"heading":54.3125,"pitch":118.375,"roll":18.5625},"location":"Left Knee"},{"euler":{"heading":61.5,"pitch":98.75,"roll":22.4375},"location":"Left Ankle"},{"euler":{"heading":93.75,"pitch":-23.0,"roll":-1.5625},"location":"Right Ankle"},{"euler":{"heading":137.4375,"pitch":-163.25,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":10.625,"pitch":-95.4375,"roll":54.125},"location":"Right Knee"},{"euler":{"heading":25.5,"pitch":-144.375,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.783"} +{"sensors":[{"euler":{"heading":62.0625,"pitch":117.125,"roll":11.875},"location":"Left Knee"},{"euler":{"heading":68.75,"pitch":99.625,"roll":30.125},"location":"Left Ankle"},{"euler":{"heading":94.5,"pitch":-21.875,"roll":-1.0625},"location":"Right Ankle"},{"euler":{"heading":127.9375,"pitch":-166.6875,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":6.5625,"pitch":-97.9375,"roll":56.9375},"location":"Right Knee"},{"euler":{"heading":28.0625,"pitch":-152.0625,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.884"} +{"sensors":[{"euler":{"heading":74.5625,"pitch":119.0,"roll":-0.125},"location":"Left Knee"},{"euler":{"heading":77.3125,"pitch":98.9375,"roll":45.125},"location":"Left Ankle"},{"euler":{"heading":85.4375,"pitch":-18.625,"roll":-7.0},"location":"Right Ankle"},{"euler":{"heading":134.1875,"pitch":-164.5625,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":8.8125,"pitch":-103.5625,"roll":50.0},"location":"Right Knee"},{"euler":{"heading":25.4375,"pitch":-146.25,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:14.985"} +{"sensors":[{"euler":{"heading":87.0,"pitch":117.5625,"roll":-6.4375},"location":"Left Knee"},{"euler":{"heading":90.8125,"pitch":103.0625,"roll":58.3125},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-16.8125,"roll":-9.5},"location":"Right Ankle"},{"euler":{"heading":132.375,"pitch":-165.125,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":14.375,"pitch":-109.3125,"roll":44.0625},"location":"Right Knee"},{"euler":{"heading":11.875,"pitch":-120.3125,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.86"} +{"sensors":[{"euler":{"heading":81.5,"pitch":123.875,"roll":-0.25},"location":"Left Knee"},{"euler":{"heading":78.3125,"pitch":91.3125,"roll":45.0},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":-16.625,"roll":-11.5625},"location":"Right Ankle"},{"euler":{"heading":136.5,"pitch":-164.125,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":20.625,"pitch":-109.0,"roll":39.0},"location":"Right Knee"},{"euler":{"heading":3.375,"pitch":-114.875,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.187"} +{"sensors":[{"euler":{"heading":47.0,"pitch":135.5625,"roll":17.5625},"location":"Left Knee"},{"euler":{"heading":49.1875,"pitch":86.0,"roll":18.125},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":-15.3125,"roll":-13.125},"location":"Right Ankle"},{"euler":{"heading":139.125,"pitch":-164.0625,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":25.5,"pitch":-108.75,"roll":34.4375},"location":"Right Knee"},{"euler":{"heading":2.3125,"pitch":-112.6875,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.288"} +{"sensors":[{"euler":{"heading":20.0625,"pitch":144.125,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":23.125,"pitch":86.0,"roll":-7.0625},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-11.875,"roll":-31.8125},"location":"Right Ankle"},{"euler":{"heading":140.6875,"pitch":-164.125,"roll":59.125},"location":"Right Hip"},{"euler":{"heading":30.375,"pitch":-109.625,"roll":29.0},"location":"Right Knee"},{"euler":{"heading":6.1875,"pitch":-115.25,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.388"} +{"sensors":[{"euler":{"heading":17.6875,"pitch":145.6875,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":20.6875,"pitch":90.9375,"roll":-9.6875},"location":"Left Ankle"},{"euler":{"heading":63.5,"pitch":-9.3125,"roll":-20.9375},"location":"Right Ankle"},{"euler":{"heading":141.75,"pitch":-166.625,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":39.75,"pitch":-108.0625,"roll":21.25},"location":"Right Knee"},{"euler":{"heading":11.5,"pitch":-119.8125,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.489"} +{"sensors":[{"euler":{"heading":34.3125,"pitch":136.125,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":35.875,"pitch":95.0625,"roll":1.375},"location":"Left Ankle"},{"euler":{"heading":47.75,"pitch":-11.375,"roll":-23.875},"location":"Right Ankle"},{"euler":{"heading":145.5,"pitch":-165.4375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":58.0,"pitch":-101.75,"roll":8.0625},"location":"Right Knee"},{"euler":{"heading":12.25,"pitch":-120.625,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.591"} +{"sensors":[{"euler":{"heading":40.875,"pitch":129.8125,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":41.75,"pitch":96.125,"roll":5.125},"location":"Left Ankle"},{"euler":{"heading":34.5625,"pitch":-9.4375,"roll":-25.875},"location":"Right Ankle"},{"euler":{"heading":153.625,"pitch":-157.9375,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":63.875,"pitch":-101.375,"roll":1.625},"location":"Right Knee"},{"euler":{"heading":16.375,"pitch":-125.8125,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.692"} +{"sensors":[{"euler":{"heading":42.375,"pitch":125.125,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":48.25,"pitch":97.0,"roll":10.125},"location":"Left Ankle"},{"euler":{"heading":46.375,"pitch":-11.6875,"roll":-23.375},"location":"Right Ankle"},{"euler":{"heading":155.25,"pitch":-156.1875,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":51.75,"pitch":-100.1875,"roll":11.9375},"location":"Right Knee"},{"euler":{"heading":19.875,"pitch":-133.6875,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.792"} +{"sensors":[{"euler":{"heading":48.375,"pitch":120.75,"roll":24.25},"location":"Left Knee"},{"euler":{"heading":54.0,"pitch":99.3125,"roll":14.125},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":-18.8125,"roll":-13.3125},"location":"Right Ankle"},{"euler":{"heading":103.8125,"pitch":-160.0625,"roll":38.8125},"location":"Right Hip"},{"euler":{"heading":31.625,"pitch":-96.0625,"roll":31.875},"location":"Right Knee"},{"euler":{"heading":22.3125,"pitch":-139.125,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.893"} +{"sensors":[{"euler":{"heading":55.25,"pitch":117.875,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":58.3125,"pitch":100.125,"roll":18.5625},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":-21.3125,"roll":-3.1875},"location":"Right Ankle"},{"euler":{"heading":103.0625,"pitch":-162.75,"roll":40.375},"location":"Right Hip"},{"euler":{"heading":13.125,"pitch":-91.8125,"roll":51.0},"location":"Right Knee"},{"euler":{"heading":24.5625,"pitch":-143.6875,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:15.994"} +{"sensors":[{"euler":{"heading":61.25,"pitch":116.5,"roll":13.75},"location":"Left Knee"},{"euler":{"heading":64.0625,"pitch":100.3125,"roll":25.0625},"location":"Left Ankle"},{"euler":{"heading":98.1875,"pitch":-23.25,"roll":1.1875},"location":"Right Ankle"},{"euler":{"heading":130.75,"pitch":-165.8125,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":5.0,"pitch":-93.8125,"roll":59.8125},"location":"Right Knee"},{"euler":{"heading":27.25,"pitch":-150.9375,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.95"} +{"sensors":[{"euler":{"heading":71.375,"pitch":117.125,"roll":4.125},"location":"Left Knee"},{"euler":{"heading":73.0625,"pitch":99.5625,"roll":37.25},"location":"Left Ankle"},{"euler":{"heading":89.375,"pitch":-18.6875,"roll":-4.125},"location":"Right Ankle"},{"euler":{"heading":130.1875,"pitch":-165.9375,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":4.75,"pitch":-100.4375,"roll":55.3125},"location":"Right Knee"},{"euler":{"heading":30.0,"pitch":-156.9375,"roll":66.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.196"} +{"sensors":[{"euler":{"heading":87.8125,"pitch":116.9375,"roll":-6.625},"location":"Left Knee"},{"euler":{"heading":92.375,"pitch":109.4375,"roll":54.9375},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":-16.125,"roll":-7.8125},"location":"Right Ankle"},{"euler":{"heading":134.1875,"pitch":-164.125,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":9.3125,"pitch":-105.75,"roll":48.4375},"location":"Right Knee"},{"euler":{"heading":17.3125,"pitch":-137.9375,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.297"} +{"sensors":[{"euler":{"heading":92.0,"pitch":119.1875,"roll":-6.9375},"location":"Left Knee"},{"euler":{"heading":85.125,"pitch":99.0,"roll":52.625},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":-14.6875,"roll":-10.6875},"location":"Right Ankle"},{"euler":{"heading":134.9375,"pitch":-164.75,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":14.875,"pitch":-110.375,"roll":42.625},"location":"Right Knee"},{"euler":{"heading":8.25,"pitch":-115.75,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.397"} +{"sensors":[{"euler":{"heading":72.625,"pitch":127.875,"roll":7.4375},"location":"Left Knee"},{"euler":{"heading":60.75,"pitch":90.4375,"roll":29.0},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":-12.25,"roll":-13.625},"location":"Right Ankle"},{"euler":{"heading":138.875,"pitch":-162.4375,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":18.0,"pitch":-111.75,"roll":38.625},"location":"Right Knee"},{"euler":{"heading":3.5,"pitch":-112.125,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.498"} +{"sensors":[{"euler":{"heading":29.125,"pitch":140.9375,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":29.1875,"pitch":84.9375,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-9.5625,"roll":-15.9375},"location":"Right Ankle"},{"euler":{"heading":140.5625,"pitch":-162.125,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":21.6875,"pitch":-112.4375,"roll":34.0625},"location":"Right Knee"},{"euler":{"heading":3.5625,"pitch":-112.6875,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.598"} +{"sensors":[{"euler":{"heading":14.9375,"pitch":147.4375,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":18.6875,"pitch":85.0,"roll":-12.3125},"location":"Left Ankle"},{"euler":{"heading":67.0625,"pitch":-6.875,"roll":-19.625},"location":"Right Ankle"},{"euler":{"heading":142.0,"pitch":-163.0,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":29.8125,"pitch":-111.5625,"roll":27.25},"location":"Right Knee"},{"euler":{"heading":9.0,"pitch":-116.75,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.699"} +{"sensors":[{"euler":{"heading":27.8125,"pitch":140.25,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":30.6875,"pitch":93.5625,"roll":-3.0625},"location":"Left Ankle"},{"euler":{"heading":54.8125,"pitch":-7.4375,"roll":-23.3125},"location":"Right Ankle"},{"euler":{"heading":145.9375,"pitch":-164.25,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":46.875,"pitch":-106.9375,"roll":16.0},"location":"Right Knee"},{"euler":{"heading":13.0,"pitch":-120.6875,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.800"} +{"sensors":[{"euler":{"heading":38.75,"pitch":132.5,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":37.8125,"pitch":94.9375,"roll":2.75},"location":"Left Ankle"},{"euler":{"heading":38.3125,"pitch":-5.1875,"roll":-26.1875},"location":"Right Ankle"},{"euler":{"heading":152.625,"pitch":-159.125,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":59.125,"pitch":-103.625,"roll":5.1875},"location":"Right Knee"},{"euler":{"heading":15.25,"pitch":-122.25,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:16.901"} +{"sensors":[{"euler":{"heading":43.6875,"pitch":126.1875,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":44.8125,"pitch":96.875,"roll":7.3125},"location":"Left Ankle"},{"euler":{"heading":37.8125,"pitch":-10.3125,"roll":-24.9375},"location":"Right Ankle"},{"euler":{"heading":156.1875,"pitch":-156.375,"roll":45.5625},"location":"Right Hip"},{"euler":{"heading":56.5625,"pitch":-101.125,"roll":8.125},"location":"Right Knee"},{"euler":{"heading":19.625,"pitch":-129.125,"roll":60.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.2"} +{"sensors":[{"euler":{"heading":46.5625,"pitch":123.875,"roll":24.9375},"location":"Left Knee"},{"euler":{"heading":53.8125,"pitch":96.9375,"roll":15.4375},"location":"Left Ankle"},{"euler":{"heading":55.0625,"pitch":-19.5625,"roll":-19.5},"location":"Right Ankle"},{"euler":{"heading":158.1875,"pitch":-156.5,"roll":40.375},"location":"Right Hip"},{"euler":{"heading":41.25,"pitch":-98.3125,"roll":24.75},"location":"Right Knee"},{"euler":{"heading":22.6875,"pitch":-138.9375,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.103"} +{"sensors":[{"euler":{"heading":52.125,"pitch":120.8125,"roll":21.25},"location":"Left Knee"},{"euler":{"heading":56.75,"pitch":97.25,"roll":19.0625},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":-24.125,"roll":-6.6875},"location":"Right Ankle"},{"euler":{"heading":105.125,"pitch":-160.5,"roll":39.4375},"location":"Right Hip"},{"euler":{"heading":22.25,"pitch":-93.75,"roll":44.4375},"location":"Right Knee"},{"euler":{"heading":25.4375,"pitch":-145.5625,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.203"} +{"sensors":[{"euler":{"heading":58.5625,"pitch":118.125,"roll":15.625},"location":"Left Knee"},{"euler":{"heading":63.5625,"pitch":99.0,"roll":25.125},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":-25.625,"roll":0.6875},"location":"Right Ankle"},{"euler":{"heading":140.375,"pitch":-162.1875,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":7.25,"pitch":-94.6875,"roll":59.375},"location":"Right Knee"},{"euler":{"heading":28.0625,"pitch":-152.6875,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.303"} +{"sensors":[{"euler":{"heading":68.6875,"pitch":117.75,"roll":7.1875},"location":"Left Knee"},{"euler":{"heading":70.9375,"pitch":99.3125,"roll":34.3125},"location":"Left Ankle"},{"euler":{"heading":94.625,"pitch":-22.5,"roll":-0.8125},"location":"Right Ankle"},{"euler":{"heading":132.1875,"pitch":-164.875,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":4.4375,"pitch":-99.1875,"roll":57.8125},"location":"Right Knee"},{"euler":{"heading":31.375,"pitch":-159.6875,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.404"} +{"sensors":[{"euler":{"heading":85.0,"pitch":119.875,"roll":-5.4375},"location":"Left Knee"},{"euler":{"heading":85.8125,"pitch":104.75,"roll":53.6875},"location":"Left Ankle"},{"euler":{"heading":84.375,"pitch":-19.75,"roll":-7.625},"location":"Right Ankle"},{"euler":{"heading":141.0625,"pitch":-161.5625,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":7.6875,"pitch":-103.25,"roll":51.4375},"location":"Right Knee"},{"euler":{"heading":23.625,"pitch":-143.8125,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.505"} +{"sensors":[{"euler":{"heading":92.8125,"pitch":116.75,"roll":-8.125},"location":"Left Knee"},{"euler":{"heading":85.9375,"pitch":105.5625,"roll":55.6875},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-19.0,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":135.8125,"pitch":-164.3125,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":13.6875,"pitch":-109.75,"roll":45.3125},"location":"Right Knee"},{"euler":{"heading":12.1875,"pitch":-116.8125,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.605"} +{"sensors":[{"euler":{"heading":81.125,"pitch":125.1875,"roll":2.25},"location":"Left Knee"},{"euler":{"heading":71.125,"pitch":92.25,"roll":38.4375},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-17.5625,"roll":-12.4375},"location":"Right Ankle"},{"euler":{"heading":140.0,"pitch":-162.875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":17.75,"pitch":-111.5625,"roll":41.0625},"location":"Right Knee"},{"euler":{"heading":5.0,"pitch":-112.8125,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.705"} +{"sensors":[{"euler":{"heading":37.625,"pitch":137.9375,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":41.875,"pitch":85.125,"roll":10.8125},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-15.6875,"roll":-14.625},"location":"Right Ankle"},{"euler":{"heading":142.6875,"pitch":-162.3125,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":22.875,"pitch":-111.0625,"roll":35.9375},"location":"Right Knee"},{"euler":{"heading":4.25,"pitch":-112.9375,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.806"} +{"sensors":[{"euler":{"heading":15.75,"pitch":145.9375,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":19.6875,"pitch":83.4375,"roll":-10.9375},"location":"Left Ankle"},{"euler":{"heading":68.375,"pitch":-13.625,"roll":-17.4375},"location":"Right Ankle"},{"euler":{"heading":144.4375,"pitch":-163.5625,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":31.625,"pitch":-109.6875,"roll":28.9375},"location":"Right Knee"},{"euler":{"heading":8.375,"pitch":-116.125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:17.906"} +{"sensors":[{"euler":{"heading":23.5,"pitch":142.125,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":22.5,"pitch":90.25,"roll":-9.6875},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":-11.6875,"roll":-22.875},"location":"Right Ankle"},{"euler":{"heading":146.75,"pitch":-166.0,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":42.9375,"pitch":-106.875,"roll":20.375},"location":"Right Knee"},{"euler":{"heading":15.5625,"pitch":-120.1875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.7"} +{"sensors":[{"euler":{"heading":36.125,"pitch":133.3125,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":36.625,"pitch":94.9375,"roll":1.5},"location":"Left Ankle"},{"euler":{"heading":43.1875,"pitch":-11.5625,"roll":-25.5625},"location":"Right Ankle"},{"euler":{"heading":151.625,"pitch":-161.6875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":57.6875,"pitch":-101.5625,"roll":8.1875},"location":"Right Knee"},{"euler":{"heading":15.5625,"pitch":-120.75,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.108"} +{"sensors":[{"euler":{"heading":40.9375,"pitch":128.1875,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":42.125,"pitch":95.6875,"roll":4.75},"location":"Left Ankle"},{"euler":{"heading":32.875,"pitch":-9.75,"roll":-29.0625},"location":"Right Ankle"},{"euler":{"heading":156.375,"pitch":-157.3125,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":61.0,"pitch":-103.3125,"roll":3.75},"location":"Right Knee"},{"euler":{"heading":17.6875,"pitch":-126.0,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.209"} +{"sensors":[{"euler":{"heading":41.9375,"pitch":126.0625,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":46.8125,"pitch":94.6875,"roll":9.75},"location":"Left Ankle"},{"euler":{"heading":45.625,"pitch":-15.1875,"roll":-23.375},"location":"Right Ankle"},{"euler":{"heading":156.375,"pitch":-156.75,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":49.6875,"pitch":-99.6875,"roll":13.5},"location":"Right Knee"},{"euler":{"heading":20.0625,"pitch":-134.875,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.310"} +{"sensors":[{"euler":{"heading":47.6875,"pitch":123.0625,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":55.375,"pitch":96.25,"roll":16.8125},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":-22.5,"roll":-11.4375},"location":"Right Ankle"},{"euler":{"heading":105.625,"pitch":-159.3125,"roll":40.5625},"location":"Right Hip"},{"euler":{"heading":29.25,"pitch":-96.625,"roll":34.0},"location":"Right Knee"},{"euler":{"heading":20.9375,"pitch":-141.75,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.410"} +{"sensors":[{"euler":{"heading":53.9375,"pitch":120.1875,"roll":19.125},"location":"Left Knee"},{"euler":{"heading":60.0,"pitch":97.4375,"roll":21.4375},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":-25.0,"roll":-1.875},"location":"Right Ankle"},{"euler":{"heading":140.4375,"pitch":-162.6875,"roll":43.125},"location":"Right Hip"},{"euler":{"heading":11.1875,"pitch":-95.0,"roll":52.8125},"location":"Right Knee"},{"euler":{"heading":23.3125,"pitch":-147.125,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.511"} +{"sensors":[{"euler":{"heading":62.0625,"pitch":118.6875,"roll":12.0},"location":"Left Knee"},{"euler":{"heading":67.3125,"pitch":97.875,"roll":29.375},"location":"Left Ankle"},{"euler":{"heading":97.0,"pitch":-26.3125,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":132.25,"pitch":-165.5625,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":5.6875,"pitch":-98.0,"roll":59.0625},"location":"Right Knee"},{"euler":{"heading":27.25,"pitch":-154.1875,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.615"} +{"sensors":[{"euler":{"heading":75.3125,"pitch":117.6875,"roll":0.9375},"location":"Left Knee"},{"euler":{"heading":75.875,"pitch":99.0625,"roll":42.8125},"location":"Left Ankle"},{"euler":{"heading":86.375,"pitch":-20.8125,"roll":-8.25},"location":"Right Ankle"},{"euler":{"heading":132.75,"pitch":-165.4375,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":6.6875,"pitch":-105.0,"roll":52.25},"location":"Right Knee"},{"euler":{"heading":28.5,"pitch":-151.375,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.716"} +{"sensors":[{"euler":{"heading":90.3125,"pitch":115.625,"roll":-6.75},"location":"Left Knee"},{"euler":{"heading":90.1875,"pitch":108.25,"roll":54.75},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":-20.25,"roll":-10.25},"location":"Right Ankle"},{"euler":{"heading":134.1875,"pitch":-165.8125,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":13.125,"pitch":-110.25,"roll":45.5625},"location":"Right Knee"},{"euler":{"heading":14.375,"pitch":-125.625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.817"} +{"sensors":[{"euler":{"heading":86.25,"pitch":122.3125,"roll":-2.0625},"location":"Left Knee"},{"euler":{"heading":76.1875,"pitch":94.375,"roll":44.9375},"location":"Left Ankle"},{"euler":{"heading":80.375,"pitch":-20.9375,"roll":-11.375},"location":"Right Ankle"},{"euler":{"heading":137.875,"pitch":-164.6875,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":20.5625,"pitch":-108.3125,"roll":40.3125},"location":"Right Knee"},{"euler":{"heading":7.0625,"pitch":-117.6875,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:18.918"} +{"sensors":[{"euler":{"heading":55.25,"pitch":132.4375,"roll":15.4375},"location":"Left Knee"},{"euler":{"heading":50.9375,"pitch":88.5,"roll":19.8125},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-19.375,"roll":-13.25},"location":"Right Ankle"},{"euler":{"heading":140.9375,"pitch":-164.125,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":24.0625,"pitch":-108.375,"roll":36.5625},"location":"Right Knee"},{"euler":{"heading":5.875,"pitch":-114.5625,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.18"} +{"sensors":[{"euler":{"heading":25.8125,"pitch":141.6875,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":25.25,"pitch":87.4375,"roll":-4.9375},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":-0.25,"roll":-15.4375},"location":"Right Ankle"},{"euler":{"heading":142.625,"pitch":-163.9375,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":27.4375,"pitch":-109.5625,"roll":31.6875},"location":"Right Knee"},{"euler":{"heading":8.0,"pitch":-115.5625,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.119"} +{"sensors":[{"euler":{"heading":19.4375,"pitch":144.8125,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":20.0625,"pitch":89.3125,"roll":-11.6875},"location":"Left Ankle"},{"euler":{"heading":65.0,"pitch":-12.5625,"roll":-21.1875},"location":"Right Ankle"},{"euler":{"heading":145.0,"pitch":-164.9375,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":35.25,"pitch":-108.0625,"roll":24.625},"location":"Right Knee"},{"euler":{"heading":13.6875,"pitch":-120.6875,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.220"} +{"sensors":[{"euler":{"heading":35.0,"pitch":135.25,"roll":31.875},"location":"Left Knee"},{"euler":{"heading":32.25,"pitch":94.4375,"roll":-1.3125},"location":"Left Ankle"},{"euler":{"heading":53.3125,"pitch":-13.9375,"roll":-24.375},"location":"Right Ankle"},{"euler":{"heading":148.375,"pitch":-163.625,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":50.1875,"pitch":-103.75,"roll":13.5},"location":"Right Knee"},{"euler":{"heading":15.1875,"pitch":-121.375,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.321"} +{"sensors":[{"euler":{"heading":41.625,"pitch":128.625,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":38.1875,"pitch":94.6875,"roll":2.75},"location":"Left Ankle"},{"euler":{"heading":36.5,"pitch":-8.875,"roll":-27.9375},"location":"Right Ankle"},{"euler":{"heading":158.375,"pitch":-156.625,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":58.6875,"pitch":-102.8125,"roll":4.25},"location":"Right Knee"},{"euler":{"heading":19.6875,"pitch":-127.5625,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.421"} +{"sensors":[{"euler":{"heading":41.875,"pitch":126.6875,"roll":26.875},"location":"Left Knee"},{"euler":{"heading":42.375,"pitch":94.3125,"roll":6.6875},"location":"Left Ankle"},{"euler":{"heading":43.0625,"pitch":-12.625,"roll":-24.5},"location":"Right Ankle"},{"euler":{"heading":157.0,"pitch":-156.4375,"roll":44.25},"location":"Right Hip"},{"euler":{"heading":51.75,"pitch":-100.75,"roll":10.6875},"location":"Right Knee"},{"euler":{"heading":21.125,"pitch":-134.625,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.522"} +{"sensors":[{"euler":{"heading":45.5,"pitch":124.75,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":50.0625,"pitch":94.625,"roll":13.25},"location":"Left Ankle"},{"euler":{"heading":65.0,"pitch":-20.5625,"roll":-16.1875},"location":"Right Ankle"},{"euler":{"heading":106.3125,"pitch":-158.3125,"roll":40.3125},"location":"Right Hip"},{"euler":{"heading":34.375,"pitch":-98.1875,"roll":31.375},"location":"Right Knee"},{"euler":{"heading":22.25,"pitch":-141.9375,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.623"} +{"sensors":[{"euler":{"heading":52.375,"pitch":120.75,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":55.0625,"pitch":96.3125,"roll":17.6875},"location":"Left Ankle"},{"euler":{"heading":89.875,"pitch":-24.6875,"roll":-5.0625},"location":"Right Ankle"},{"euler":{"heading":104.75,"pitch":-162.1875,"roll":41.5},"location":"Right Hip"},{"euler":{"heading":15.5,"pitch":-94.9375,"roll":50.5},"location":"Right Knee"},{"euler":{"heading":25.1875,"pitch":-148.0,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.723"} +{"sensors":[{"euler":{"heading":60.0,"pitch":118.5625,"roll":14.0},"location":"Left Knee"},{"euler":{"heading":61.5625,"pitch":97.3125,"roll":24.0625},"location":"Left Ankle"},{"euler":{"heading":99.0,"pitch":-26.1875,"roll":1.0},"location":"Right Ankle"},{"euler":{"heading":133.6875,"pitch":-164.6875,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":3.3125,"pitch":-97.375,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":27.9375,"pitch":-155.3125,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.825"} +{"sensors":[{"euler":{"heading":71.375,"pitch":118.5,"roll":4.25},"location":"Left Knee"},{"euler":{"heading":71.5,"pitch":97.1875,"roll":36.6875},"location":"Left Ankle"},{"euler":{"heading":89.625,"pitch":-21.9375,"roll":-4.5625},"location":"Right Ankle"},{"euler":{"heading":130.5,"pitch":-166.625,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":3.0625,"pitch":-103.125,"roll":55.75},"location":"Right Knee"},{"euler":{"heading":30.6875,"pitch":-161.375,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:19.925"} +{"sensors":[{"euler":{"heading":86.375,"pitch":115.8125,"roll":-5.6875},"location":"Left Knee"},{"euler":{"heading":88.5,"pitch":106.3125,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":-19.375,"roll":-9.1875},"location":"Right Ankle"},{"euler":{"heading":138.9375,"pitch":-162.25,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":8.625,"pitch":-106.9375,"roll":48.625},"location":"Right Knee"},{"euler":{"heading":18.5625,"pitch":-141.5625,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.26"} +{"sensors":[{"euler":{"heading":91.5,"pitch":119.625,"roll":-6.1875},"location":"Left Knee"},{"euler":{"heading":80.5625,"pitch":98.6875,"roll":50.1875},"location":"Left Ankle"},{"euler":{"heading":79.125,"pitch":-19.9375,"roll":-11.8125},"location":"Right Ankle"},{"euler":{"heading":138.9375,"pitch":-163.5625,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":16.125,"pitch":-109.0625,"roll":43.0},"location":"Right Knee"},{"euler":{"heading":9.75,"pitch":-120.625,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.127"} +{"sensors":[{"euler":{"heading":71.25,"pitch":128.5625,"roll":8.375},"location":"Left Knee"},{"euler":{"heading":57.375,"pitch":89.5625,"roll":26.5625},"location":"Left Ankle"},{"euler":{"heading":77.8125,"pitch":-20.625,"roll":-14.3125},"location":"Right Ankle"},{"euler":{"heading":144.3125,"pitch":-162.0,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":23.375,"pitch":-107.875,"roll":38.25},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":-116.3125,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.227"} +{"sensors":[{"euler":{"heading":33.0625,"pitch":138.875,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":28.75,"pitch":88.8125,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":72.5625,"pitch":-19.4375,"roll":-15.8125},"location":"Right Ankle"},{"euler":{"heading":148.625,"pitch":-161.625,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":29.625,"pitch":-106.4375,"roll":32.9375},"location":"Right Knee"},{"euler":{"heading":7.6875,"pitch":-117.3125,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.327"} +{"sensors":[{"euler":{"heading":23.5,"pitch":144.5625,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":17.5,"pitch":88.9375,"roll":-12.9375},"location":"Left Ankle"},{"euler":{"heading":65.9375,"pitch":-15.9375,"roll":-18.1875},"location":"Right Ankle"},{"euler":{"heading":148.8125,"pitch":-163.0625,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":35.4375,"pitch":-106.5,"roll":26.625},"location":"Right Knee"},{"euler":{"heading":13.0,"pitch":-119.875,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.429"} +{"sensors":[{"euler":{"heading":32.0625,"pitch":138.0625,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":25.25,"pitch":95.5,"roll":-6.5625},"location":"Left Ankle"},{"euler":{"heading":56.125,"pitch":-13.9375,"roll":-24.125},"location":"Right Ankle"},{"euler":{"heading":150.4375,"pitch":-166.5,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":48.0625,"pitch":-102.75,"roll":16.6875},"location":"Right Knee"},{"euler":{"heading":18.875,"pitch":-122.4375,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.529"} +{"sensors":[{"euler":{"heading":40.875,"pitch":131.5625,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":36.8125,"pitch":97.1875,"roll":3.0625},"location":"Left Ankle"},{"euler":{"heading":41.0,"pitch":-12.1875,"roll":-27.6875},"location":"Right Ankle"},{"euler":{"heading":156.0625,"pitch":-163.375,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":58.8125,"pitch":-99.0,"roll":5.875},"location":"Right Knee"},{"euler":{"heading":18.3125,"pitch":-123.4375,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.630"} +{"sensors":[{"euler":{"heading":45.3125,"pitch":126.4375,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":44.0625,"pitch":98.4375,"roll":7.4375},"location":"Left Ankle"},{"euler":{"heading":35.625,"pitch":-11.8125,"roll":-26.875},"location":"Right Ankle"},{"euler":{"heading":159.125,"pitch":-157.3125,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":57.3125,"pitch":-98.75,"roll":6.25},"location":"Right Knee"},{"euler":{"heading":21.0,"pitch":-131.625,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.731"} +{"sensors":[{"euler":{"heading":48.0625,"pitch":123.375,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":51.5,"pitch":99.5,"roll":13.0625},"location":"Left Ankle"},{"euler":{"heading":51.0,"pitch":-15.9375,"roll":-21.8125},"location":"Right Ankle"},{"euler":{"heading":157.3125,"pitch":-156.875,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":43.125,"pitch":-98.5,"roll":19.375},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-140.25,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.831"} +{"sensors":[{"euler":{"heading":53.6875,"pitch":118.8125,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":59.875,"pitch":101.8125,"roll":18.875},"location":"Left Ankle"},{"euler":{"heading":71.375,"pitch":-22.875,"roll":-11.4375},"location":"Right Ankle"},{"euler":{"heading":107.625,"pitch":-176.0,"roll":41.0625},"location":"Right Hip"},{"euler":{"heading":23.9375,"pitch":-94.0625,"roll":39.75},"location":"Right Knee"},{"euler":{"heading":26.8125,"pitch":-146.75,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:20.932"} +{"sensors":[{"euler":{"heading":58.9375,"pitch":115.9375,"roll":18.375},"location":"Left Knee"},{"euler":{"heading":63.875,"pitch":101.9375,"roll":22.9375},"location":"Left Ankle"},{"euler":{"heading":91.125,"pitch":-25.6875,"roll":-1.6875},"location":"Right Ankle"},{"euler":{"heading":141.9375,"pitch":-163.0625,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":9.3125,"pitch":-93.25,"roll":56.0},"location":"Right Knee"},{"euler":{"heading":29.625,"pitch":-154.125,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.32"} +{"sensors":[{"euler":{"heading":65.75,"pitch":115.3125,"roll":11.5625},"location":"Left Knee"},{"euler":{"heading":71.4375,"pitch":102.3125,"roll":31.0625},"location":"Left Ankle"},{"euler":{"heading":94.5,"pitch":-23.75,"roll":-2.0625},"location":"Right Ankle"},{"euler":{"heading":130.5625,"pitch":-166.75,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":0.875,"pitch":-97.25,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":31.1875,"pitch":-160.5,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.132"} +{"sensors":[{"euler":{"heading":79.5625,"pitch":119.875,"roll":-2.25},"location":"Left Knee"},{"euler":{"heading":79.0625,"pitch":99.5,"roll":46.75},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":-18.0625,"roll":-9.75},"location":"Right Ankle"},{"euler":{"heading":137.6875,"pitch":-163.875,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":0.25,"pitch":-103.6875,"roll":54.1875},"location":"Right Knee"},{"euler":{"heading":27.625,"pitch":-154.0625,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.234"} +{"sensors":[{"euler":{"heading":92.1875,"pitch":113.9375,"roll":-8.0},"location":"Left Knee"},{"euler":{"heading":95.625,"pitch":109.5625,"roll":59.0},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":-16.0,"roll":-11.375},"location":"Right Ankle"},{"euler":{"heading":135.125,"pitch":-164.75,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":5.8125,"pitch":-109.5625,"roll":48.1875},"location":"Right Knee"},{"euler":{"heading":16.9375,"pitch":-127.875,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.334"} +{"sensors":[{"euler":{"heading":86.3125,"pitch":123.3125,"roll":-1.625},"location":"Left Knee"},{"euler":{"heading":81.25,"pitch":95.875,"roll":47.3125},"location":"Left Ankle"},{"euler":{"heading":78.0625,"pitch":-12.875,"roll":-14.75},"location":"Right Ankle"},{"euler":{"heading":139.125,"pitch":-162.875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":9.375,"pitch":-112.625,"roll":43.375},"location":"Right Knee"},{"euler":{"heading":7.5625,"pitch":-118.25,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.435"} +{"sensors":[{"euler":{"heading":49.375,"pitch":134.875,"roll":17.6875},"location":"Left Knee"},{"euler":{"heading":51.25,"pitch":88.25,"roll":16.625},"location":"Left Ankle"},{"euler":{"heading":74.1875,"pitch":-10.8125,"roll":-16.0625},"location":"Right Ankle"},{"euler":{"heading":140.9375,"pitch":-162.75,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":13.5625,"pitch":-112.6875,"roll":39.0},"location":"Right Knee"},{"euler":{"heading":4.875,"pitch":-115.0625,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.536"} +{"sensors":[{"euler":{"heading":19.3125,"pitch":143.875,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":23.0625,"pitch":86.375,"roll":-8.625},"location":"Left Ankle"},{"euler":{"heading":68.75,"pitch":-9.1875,"roll":-18.125},"location":"Right Ankle"},{"euler":{"heading":142.9375,"pitch":-163.5625,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":21.0,"pitch":-112.125,"roll":32.75},"location":"Right Knee"},{"euler":{"heading":8.5625,"pitch":-118.5,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.637"} +{"sensors":[{"euler":{"heading":25.5625,"pitch":141.5625,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":23.5625,"pitch":92.0625,"roll":-6.125},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-8.5,"roll":-23.375},"location":"Right Ankle"},{"euler":{"heading":145.625,"pitch":-165.9375,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":33.5,"pitch":-108.6875,"roll":24.125},"location":"Right Knee"},{"euler":{"heading":14.875,"pitch":-121.8125,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.738"} +{"sensors":[{"euler":{"heading":35.875,"pitch":133.875,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":34.375,"pitch":95.4375,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":45.375,"pitch":-11.6875,"roll":-26.0},"location":"Right Ankle"},{"euler":{"heading":151.25,"pitch":-163.9375,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":51.4375,"pitch":-101.5,"roll":11.9375},"location":"Right Knee"},{"euler":{"heading":14.25,"pitch":-123.0625,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.838"} +{"sensors":[{"euler":{"heading":42.3125,"pitch":127.875,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":40.9375,"pitch":97.125,"roll":4.6875},"location":"Left Ankle"},{"euler":{"heading":32.375,"pitch":-11.3125,"roll":-27.4375},"location":"Right Ankle"},{"euler":{"heading":160.5625,"pitch":-156.0625,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":58.5,"pitch":-100.625,"roll":5.625},"location":"Right Knee"},{"euler":{"heading":19.25,"pitch":-131.8125,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:21.941"} +{"sensors":[{"euler":{"heading":45.5625,"pitch":123.875,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":52.6875,"pitch":98.8125,"roll":12.8125},"location":"Left Ankle"},{"euler":{"heading":47.1875,"pitch":-13.6875,"roll":-24.375},"location":"Right Ankle"},{"euler":{"heading":161.0625,"pitch":-155.1875,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":43.375,"pitch":-99.625,"roll":18.0625},"location":"Right Knee"},{"euler":{"heading":22.6875,"pitch":-138.8125,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.41"} +{"sensors":[{"euler":{"heading":50.9375,"pitch":119.8125,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":55.625,"pitch":99.625,"roll":16.1875},"location":"Left Ankle"},{"euler":{"heading":71.8125,"pitch":-20.6875,"roll":-13.375},"location":"Right Ankle"},{"euler":{"heading":106.5,"pitch":-159.625,"roll":40.1875},"location":"Right Hip"},{"euler":{"heading":21.4375,"pitch":-96.375,"roll":41.875},"location":"Right Knee"},{"euler":{"heading":23.1875,"pitch":-144.1875,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.142"} +{"sensors":[{"euler":{"heading":56.75,"pitch":117.125,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":61.0625,"pitch":101.1875,"roll":20.875},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":-23.625,"roll":-4.0625},"location":"Right Ankle"},{"euler":{"heading":142.0,"pitch":-162.3125,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":6.0625,"pitch":-95.625,"roll":55.9375},"location":"Right Knee"},{"euler":{"heading":25.375,"pitch":-149.3125,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.242"} +{"sensors":[{"euler":{"heading":63.0,"pitch":116.25,"roll":12.625},"location":"Left Knee"},{"euler":{"heading":68.0625,"pitch":101.4375,"roll":28.1875},"location":"Left Ankle"},{"euler":{"heading":93.9375,"pitch":-23.0,"roll":-3.125},"location":"Right Ankle"},{"euler":{"heading":133.5625,"pitch":-165.3125,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":1.6875,"pitch":-99.9375,"roll":58.125},"location":"Right Knee"},{"euler":{"heading":28.5,"pitch":-156.5625,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.343"} +{"sensors":[{"euler":{"heading":74.6875,"pitch":119.375,"roll":-0.0625},"location":"Left Knee"},{"euler":{"heading":71.8125,"pitch":97.5,"roll":40.1875},"location":"Left Ankle"},{"euler":{"heading":87.875,"pitch":-19.375,"roll":-8.3125},"location":"Right Ankle"},{"euler":{"heading":137.875,"pitch":-163.8125,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":2.5,"pitch":-106.0625,"roll":52.375},"location":"Right Knee"},{"euler":{"heading":25.5625,"pitch":-150.0,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.443"} +{"sensors":[{"euler":{"heading":89.75,"pitch":116.375,"roll":-6.4375},"location":"Left Knee"},{"euler":{"heading":87.0,"pitch":104.25,"roll":53.8125},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":-17.5,"roll":-11.3125},"location":"Right Ankle"},{"euler":{"heading":137.0625,"pitch":-164.3125,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":8.25,"pitch":-112.0625,"roll":46.0625},"location":"Right Knee"},{"euler":{"heading":11.8125,"pitch":-124.0,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.544"} +{"sensors":[{"euler":{"heading":81.8125,"pitch":124.5,"roll":1.375},"location":"Left Knee"},{"euler":{"heading":71.25,"pitch":92.5,"roll":37.9375},"location":"Left Ankle"},{"euler":{"heading":79.6875,"pitch":-18.125,"roll":-13.375},"location":"Right Ankle"},{"euler":{"heading":142.25,"pitch":-163.125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":15.9375,"pitch":-111.25,"roll":40.5},"location":"Right Knee"},{"euler":{"heading":3.6875,"pitch":-118.5,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.645"} +{"sensors":[{"euler":{"heading":44.0,"pitch":135.75,"roll":20.75},"location":"Left Knee"},{"euler":{"heading":41.4375,"pitch":88.0,"roll":10.625},"location":"Left Ankle"},{"euler":{"heading":76.125,"pitch":-17.4375,"roll":-15.75},"location":"Right Ankle"},{"euler":{"heading":146.375,"pitch":-161.9375,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":22.8125,"pitch":-110.0625,"roll":34.375},"location":"Right Knee"},{"euler":{"heading":4.4375,"pitch":-115.625,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.747"} +{"sensors":[{"euler":{"heading":20.9375,"pitch":143.125,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":18.8125,"pitch":89.25,"roll":-11.8125},"location":"Left Ankle"},{"euler":{"heading":69.9375,"pitch":-16.0,"roll":-19.625},"location":"Right Ankle"},{"euler":{"heading":149.4375,"pitch":-162.375,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":30.5,"pitch":-108.75,"roll":28.875},"location":"Right Knee"},{"euler":{"heading":10.625,"pitch":-119.375,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.847"} +{"sensors":[{"euler":{"heading":23.375,"pitch":142.1875,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":20.125,"pitch":92.8125,"roll":-11.875},"location":"Left Ankle"},{"euler":{"heading":62.0,"pitch":-14.25,"roll":-24.5625},"location":"Right Ankle"},{"euler":{"heading":152.375,"pitch":-164.3125,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":41.5,"pitch":-105.5625,"roll":20.8125},"location":"Right Knee"},{"euler":{"heading":16.9375,"pitch":-123.125,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:22.948"} +{"sensors":[{"euler":{"heading":34.25,"pitch":133.0625,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":32.375,"pitch":95.8125,"roll":-2.625},"location":"Left Ankle"},{"euler":{"heading":44.4375,"pitch":-14.3125,"roll":-28.5},"location":"Right Ankle"},{"euler":{"heading":161.75,"pitch":-160.8125,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":58.625,"pitch":-100.625,"roll":7.8125},"location":"Right Knee"},{"euler":{"heading":17.0,"pitch":-125.8125,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.49"} +{"sensors":[{"euler":{"heading":41.1875,"pitch":126.125,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":38.875,"pitch":97.1875,"roll":2.375},"location":"Left Ankle"},{"euler":{"heading":31.875,"pitch":-10.8125,"roll":-30.0625},"location":"Right Ankle"},{"euler":{"heading":167.25,"pitch":-153.3125,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":61.5,"pitch":-100.75,"roll":3.125},"location":"Right Knee"},{"euler":{"heading":20.8125,"pitch":-131.875,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.149"} +{"sensors":[{"euler":{"heading":44.625,"pitch":122.0,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":54.375,"pitch":100.3125,"roll":12.8125},"location":"Left Ankle"},{"euler":{"heading":44.8125,"pitch":-14.0625,"roll":-25.6875},"location":"Right Ankle"},{"euler":{"heading":166.8125,"pitch":-152.8125,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":45.9375,"pitch":-98.375,"roll":16.4375},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-137.0625,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.252"} +{"sensors":[{"euler":{"heading":49.8125,"pitch":118.375,"roll":25.875},"location":"Left Knee"},{"euler":{"heading":56.125,"pitch":100.75,"roll":15.875},"location":"Left Ankle"},{"euler":{"heading":69.0,"pitch":-22.3125,"roll":-16.0},"location":"Right Ankle"},{"euler":{"heading":159.1875,"pitch":-156.3125,"roll":40.5},"location":"Right Hip"},{"euler":{"heading":26.4375,"pitch":-94.9375,"roll":36.5625},"location":"Right Knee"},{"euler":{"heading":24.625,"pitch":-141.625,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.353"} +{"sensors":[{"euler":{"heading":56.8125,"pitch":115.4375,"roll":21.0},"location":"Left Knee"},{"euler":{"heading":59.875,"pitch":102.0625,"roll":20.5},"location":"Left Ankle"},{"euler":{"heading":90.8125,"pitch":-25.8125,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":150.625,"pitch":-159.75,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":11.6875,"pitch":-95.0,"roll":52.75},"location":"Right Knee"},{"euler":{"heading":26.125,"pitch":-145.875,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.454"} +{"sensors":[{"euler":{"heading":62.8125,"pitch":114.1875,"roll":14.8125},"location":"Left Knee"},{"euler":{"heading":67.875,"pitch":103.875,"roll":27.9375},"location":"Left Ankle"},{"euler":{"heading":95.4375,"pitch":-25.8125,"roll":-1.375},"location":"Right Ankle"},{"euler":{"heading":138.3125,"pitch":-164.0625,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":4.1875,"pitch":-99.0,"roll":58.5625},"location":"Right Knee"},{"euler":{"heading":27.375,"pitch":-150.4375,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.555"} +{"sensors":[{"euler":{"heading":73.75,"pitch":116.375,"roll":3.0625},"location":"Left Knee"},{"euler":{"heading":74.375,"pitch":99.4375,"roll":38.6875},"location":"Left Ankle"},{"euler":{"heading":87.9375,"pitch":-19.5625,"roll":-10.4375},"location":"Right Ankle"},{"euler":{"heading":141.1875,"pitch":-163.0625,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":4.1875,"pitch":-105.9375,"roll":52.4375},"location":"Right Knee"},{"euler":{"heading":26.375,"pitch":-148.5,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.657"} +{"sensors":[{"euler":{"heading":88.3125,"pitch":115.0,"roll":-4.5625},"location":"Left Knee"},{"euler":{"heading":81.375,"pitch":106.3125,"roll":49.6875},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":-18.5625,"roll":-10.875},"location":"Right Ankle"},{"euler":{"heading":138.0625,"pitch":-164.875,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":8.5,"pitch":-111.5625,"roll":46.875},"location":"Right Knee"},{"euler":{"heading":12.5625,"pitch":-125.625,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.757"} +{"sensors":[{"euler":{"heading":82.625,"pitch":123.375,"roll":1.5625},"location":"Left Knee"},{"euler":{"heading":69.875,"pitch":94.75,"roll":36.625},"location":"Left Ankle"},{"euler":{"heading":81.875,"pitch":-18.6875,"roll":-12.875},"location":"Right Ankle"},{"euler":{"heading":142.125,"pitch":-163.3125,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":14.5625,"pitch":-111.25,"roll":41.8125},"location":"Right Knee"},{"euler":{"heading":5.0,"pitch":-118.8125,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.858"} +{"sensors":[{"euler":{"heading":46.4375,"pitch":134.1875,"roll":20.1875},"location":"Left Knee"},{"euler":{"heading":40.875,"pitch":88.5,"roll":10.1875},"location":"Left Ankle"},{"euler":{"heading":77.875,"pitch":-18.375,"roll":-15.8125},"location":"Right Ankle"},{"euler":{"heading":146.9375,"pitch":-162.1875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":21.5625,"pitch":-109.875,"roll":36.375},"location":"Right Knee"},{"euler":{"heading":4.375,"pitch":-115.8125,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:23.958"} +{"sensors":[{"euler":{"heading":20.4375,"pitch":142.125,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":18.4375,"pitch":89.125,"roll":-12.1875},"location":"Left Ankle"},{"euler":{"heading":72.1875,"pitch":-16.1875,"roll":-19.6875},"location":"Right Ankle"},{"euler":{"heading":149.8125,"pitch":-162.75,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":28.6875,"pitch":-109.1875,"roll":30.0625},"location":"Right Knee"},{"euler":{"heading":8.625,"pitch":-118.875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.59"} +{"sensors":[{"euler":{"heading":21.1875,"pitch":142.8125,"roll":35.25},"location":"Left Knee"},{"euler":{"heading":20.75,"pitch":91.125,"roll":-11.125},"location":"Left Ankle"},{"euler":{"heading":63.4375,"pitch":-14.4375,"roll":-24.5},"location":"Right Ankle"},{"euler":{"heading":151.625,"pitch":-165.3125,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":39.8125,"pitch":-106.125,"roll":21.75},"location":"Right Knee"},{"euler":{"heading":14.5625,"pitch":-122.4375,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.160"} +{"sensors":[{"euler":{"heading":31.875,"pitch":134.875,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":32.375,"pitch":93.125,"roll":-2.25},"location":"Left Ankle"},{"euler":{"heading":44.5,"pitch":-12.875,"roll":-28.4375},"location":"Right Ankle"},{"euler":{"heading":159.875,"pitch":-161.25,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":55.0625,"pitch":-100.5625,"roll":9.125},"location":"Right Knee"},{"euler":{"heading":13.125,"pitch":-122.375,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.261"} +{"sensors":[{"euler":{"heading":37.8125,"pitch":128.75,"roll":31.0},"location":"Left Knee"},{"euler":{"heading":38.75,"pitch":94.875,"roll":4.0625},"location":"Left Ankle"},{"euler":{"heading":39.5,"pitch":-12.375,"roll":-26.0625},"location":"Right Ankle"},{"euler":{"heading":163.3125,"pitch":-154.9375,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":54.75,"pitch":-98.8125,"roll":7.9375},"location":"Right Knee"},{"euler":{"heading":16.4375,"pitch":-127.6875,"roll":57.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.362"} +{"sensors":[{"euler":{"heading":41.125,"pitch":125.5625,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":53.8125,"pitch":96.375,"roll":13.375},"location":"Left Ankle"},{"euler":{"heading":53.625,"pitch":-16.5625,"roll":-21.9375},"location":"Right Ankle"},{"euler":{"heading":162.8125,"pitch":-154.1875,"roll":43.5625},"location":"Right Hip"},{"euler":{"heading":39.375,"pitch":-98.5,"roll":21.625},"location":"Right Knee"},{"euler":{"heading":18.125,"pitch":-133.9375,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.463"} +{"sensors":[{"euler":{"heading":45.375,"pitch":123.0625,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":53.3125,"pitch":94.8125,"roll":15.8125},"location":"Left Ankle"},{"euler":{"heading":74.375,"pitch":-22.8125,"roll":-13.3125},"location":"Right Ankle"},{"euler":{"heading":108.625,"pitch":-157.75,"roll":40.125},"location":"Right Hip"},{"euler":{"heading":22.5,"pitch":-95.0625,"roll":39.4375},"location":"Right Knee"},{"euler":{"heading":20.4375,"pitch":-140.875,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.563"} +{"sensors":[{"euler":{"heading":52.3125,"pitch":120.125,"roll":20.4375},"location":"Left Knee"},{"euler":{"heading":57.3125,"pitch":95.8125,"roll":20.75},"location":"Left Ankle"},{"euler":{"heading":94.5,"pitch":-25.625,"roll":-5.625},"location":"Right Ankle"},{"euler":{"heading":149.5,"pitch":-160.375,"roll":41.3125},"location":"Right Hip"},{"euler":{"heading":9.75,"pitch":-95.5625,"roll":54.3125},"location":"Right Knee"},{"euler":{"heading":22.6875,"pitch":-145.625,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.664"} +{"sensors":[{"euler":{"heading":60.625,"pitch":118.4375,"roll":13.4375},"location":"Left Knee"},{"euler":{"heading":66.1875,"pitch":97.875,"roll":28.875},"location":"Left Ankle"},{"euler":{"heading":95.125,"pitch":-23.3125,"roll":-3.125},"location":"Right Ankle"},{"euler":{"heading":138.0,"pitch":-163.6875,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":359.4375,"pitch":-100.6875,"roll":60.8125},"location":"Right Knee"},{"euler":{"heading":24.0,"pitch":-152.1875,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.765"} +{"sensors":[{"euler":{"heading":72.9375,"pitch":118.8125,"roll":2.375},"location":"Left Knee"},{"euler":{"heading":72.25,"pitch":95.4375,"roll":40.0},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":-18.9375,"roll":-9.6875},"location":"Right Ankle"},{"euler":{"heading":141.4375,"pitch":-162.25,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":1.5625,"pitch":-106.5,"roll":53.6875},"location":"Right Knee"},{"euler":{"heading":24.625,"pitch":-151.3125,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.866"} +{"sensors":[{"euler":{"heading":89.6875,"pitch":116.75,"roll":-6.3125},"location":"Left Knee"},{"euler":{"heading":85.3125,"pitch":106.0625,"roll":52.9375},"location":"Left Ankle"},{"euler":{"heading":83.0,"pitch":-19.375,"roll":-11.8125},"location":"Right Ankle"},{"euler":{"heading":139.1875,"pitch":-163.9375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":9.8125,"pitch":-110.75,"roll":46.625},"location":"Right Knee"},{"euler":{"heading":10.5,"pitch":-126.625,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:24.967"} +{"sensors":[{"euler":{"heading":88.3125,"pitch":122.375,"roll":-2.8125},"location":"Left Knee"},{"euler":{"heading":74.75,"pitch":93.875,"roll":42.0},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":-20.0,"roll":-16.3125},"location":"Right Ankle"},{"euler":{"heading":143.75,"pitch":-162.5,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":17.4375,"pitch":-110.5,"roll":41.1875},"location":"Right Knee"},{"euler":{"heading":2.625,"pitch":-120.4375,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.68"} +{"sensors":[{"euler":{"heading":57.75,"pitch":132.5,"roll":14.6875},"location":"Left Knee"},{"euler":{"heading":46.875,"pitch":88.375,"roll":16.0},"location":"Left Ankle"},{"euler":{"heading":78.5,"pitch":-21.0625,"roll":-18.0625},"location":"Right Ankle"},{"euler":{"heading":148.3125,"pitch":-162.5625,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":25.25,"pitch":-108.1875,"roll":36.0625},"location":"Right Knee"},{"euler":{"heading":1.5625,"pitch":-116.375,"roll":48.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.168"} +{"sensors":[{"euler":{"heading":21.0,"pitch":141.8125,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":21.875,"pitch":86.5,"roll":-8.6875},"location":"Left Ankle"},{"euler":{"heading":72.75,"pitch":-19.6875,"roll":-20.8125},"location":"Right Ankle"},{"euler":{"heading":150.75,"pitch":-163.625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":32.3125,"pitch":-106.75,"roll":29.9375},"location":"Right Knee"},{"euler":{"heading":6.0625,"pitch":-118.5,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.269"} +{"sensors":[{"euler":{"heading":12.75,"pitch":145.6875,"roll":37.125},"location":"Left Knee"},{"euler":{"heading":16.25,"pitch":87.8125,"roll":-16.75},"location":"Left Ankle"},{"euler":{"heading":64.125,"pitch":-15.5625,"roll":-25.5625},"location":"Right Ankle"},{"euler":{"heading":151.625,"pitch":-165.8125,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":39.5,"pitch":-105.8125,"roll":22.9375},"location":"Right Knee"},{"euler":{"heading":12.0625,"pitch":-121.875,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.370"} +{"sensors":[{"euler":{"heading":29.0625,"pitch":136.0625,"roll":34.9375},"location":"Left Knee"},{"euler":{"heading":29.4375,"pitch":93.625,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":49.1875,"pitch":-16.375,"roll":-29.0},"location":"Right Ankle"},{"euler":{"heading":157.25,"pitch":-166.125,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":56.4375,"pitch":-99.75,"roll":10.25},"location":"Right Knee"},{"euler":{"heading":15.875,"pitch":-122.4375,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.472"} +{"sensors":[{"euler":{"heading":37.125,"pitch":128.8125,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":40.5,"pitch":98.0625,"roll":3.3125},"location":"Left Ankle"},{"euler":{"heading":32.5,"pitch":-6.6875,"roll":-33.5},"location":"Right Ankle"},{"euler":{"heading":163.3125,"pitch":-157.0,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":58.375,"pitch":-101.625,"roll":3.125},"location":"Right Knee"},{"euler":{"heading":17.75,"pitch":-123.4375,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.572"} +{"sensors":[{"euler":{"heading":40.25,"pitch":126.0625,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":53.625,"pitch":98.625,"roll":12.5625},"location":"Left Ankle"},{"euler":{"heading":38.4375,"pitch":-10.0,"roll":-28.875},"location":"Right Ankle"},{"euler":{"heading":167.0625,"pitch":-153.875,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":50.4375,"pitch":-98.125,"roll":9.3125},"location":"Right Knee"},{"euler":{"heading":17.4375,"pitch":-133.625,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.673"} +{"sensors":[{"euler":{"heading":45.25,"pitch":121.75,"roll":27.5},"location":"Left Knee"},{"euler":{"heading":54.875,"pitch":98.9375,"roll":14.75},"location":"Left Ankle"},{"euler":{"heading":60.3125,"pitch":-20.0,"roll":-19.9375},"location":"Right Ankle"},{"euler":{"heading":161.875,"pitch":-155.5625,"roll":40.5625},"location":"Right Hip"},{"euler":{"heading":32.25,"pitch":-93.8125,"roll":28.0},"location":"Right Knee"},{"euler":{"heading":20.875,"pitch":-140.0625,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.774"} +{"sensors":[{"euler":{"heading":52.375,"pitch":117.8125,"roll":23.5625},"location":"Left Knee"},{"euler":{"heading":58.1875,"pitch":100.3125,"roll":18.625},"location":"Left Ankle"},{"euler":{"heading":84.625,"pitch":-25.0,"roll":-9.8125},"location":"Right Ankle"},{"euler":{"heading":107.875,"pitch":-159.5,"roll":39.625},"location":"Right Hip"},{"euler":{"heading":14.625,"pitch":-94.1875,"roll":48.25},"location":"Right Knee"},{"euler":{"heading":22.9375,"pitch":-143.6875,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.875"} +{"sensors":[{"euler":{"heading":58.5625,"pitch":115.3125,"roll":18.375},"location":"Left Knee"},{"euler":{"heading":64.0,"pitch":101.8125,"roll":24.0},"location":"Left Ankle"},{"euler":{"heading":99.1875,"pitch":-25.8125,"roll":-3.375},"location":"Right Ankle"},{"euler":{"heading":142.5625,"pitch":-163.0,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":3.625,"pitch":-95.625,"roll":58.875},"location":"Right Knee"},{"euler":{"heading":25.875,"pitch":-149.3125,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:25.975"} +{"sensors":[{"euler":{"heading":66.0,"pitch":115.1875,"roll":10.5},"location":"Left Knee"},{"euler":{"heading":74.5625,"pitch":100.6875,"roll":33.6875},"location":"Left Ankle"},{"euler":{"heading":91.4375,"pitch":-22.375,"roll":-4.5},"location":"Right Ankle"},{"euler":{"heading":133.6875,"pitch":-166.75,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":352.25,"pitch":-102.125,"roll":56.1875},"location":"Right Knee"},{"euler":{"heading":29.0625,"pitch":-156.0625,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.76"} +{"sensors":[{"euler":{"heading":79.5625,"pitch":117.375,"roll":-1.0},"location":"Left Knee"},{"euler":{"heading":77.0,"pitch":101.75,"roll":45.0},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":-17.9375,"roll":-10.875},"location":"Right Ankle"},{"euler":{"heading":139.125,"pitch":-164.0625,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":3.1875,"pitch":-107.75,"roll":50.3125},"location":"Right Knee"},{"euler":{"heading":20.5625,"pitch":-144.9375,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.177"} +{"sensors":[{"euler":{"heading":87.4375,"pitch":118.3125,"roll":-5.0625},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":99.8125,"roll":49.0625},"location":"Left Ankle"},{"euler":{"heading":83.8125,"pitch":-16.25,"roll":-14.4375},"location":"Right Ankle"},{"euler":{"heading":135.8125,"pitch":-166.1875,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":7.4375,"pitch":-111.125,"roll":44.4375},"location":"Right Knee"},{"euler":{"heading":7.375,"pitch":-123.0,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.278"} +{"sensors":[{"euler":{"heading":76.25,"pitch":126.875,"roll":4.875},"location":"Left Knee"},{"euler":{"heading":61.9375,"pitch":88.8125,"roll":31.0},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":-15.3125,"roll":-16.6875},"location":"Right Ankle"},{"euler":{"heading":138.3125,"pitch":-165.0,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":13.5,"pitch":-112.8125,"roll":39.0625},"location":"Right Knee"},{"euler":{"heading":1.125,"pitch":-118.875,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.379"} +{"sensors":[{"euler":{"heading":37.1875,"pitch":138.125,"roll":25.25},"location":"Left Knee"},{"euler":{"heading":16.125,"pitch":89.25,"roll":1.3125},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":-15.375,"roll":-18.8125},"location":"Right Ankle"},{"euler":{"heading":143.5,"pitch":-165.5625,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":21.25,"pitch":-110.6875,"roll":33.4375},"location":"Right Knee"},{"euler":{"heading":1.6875,"pitch":-116.75,"roll":49.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.484"} +{"sensors":[{"euler":{"heading":19.0,"pitch":145.375,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":15.1875,"pitch":88.0,"roll":-15.125},"location":"Left Ankle"},{"euler":{"heading":68.5,"pitch":-12.9375,"roll":-21.5},"location":"Right Ankle"},{"euler":{"heading":144.875,"pitch":-167.6875,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":29.375,"pitch":-109.75,"roll":26.75},"location":"Right Knee"},{"euler":{"heading":8.5,"pitch":-121.5625,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.585"} +{"sensors":[{"euler":{"heading":31.1875,"pitch":137.875,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":23.1875,"pitch":94.0625,"roll":-7.25},"location":"Left Ankle"},{"euler":{"heading":56.9375,"pitch":-11.75,"roll":-25.5},"location":"Right Ankle"},{"euler":{"heading":149.6875,"pitch":-169.0625,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":43.0625,"pitch":-105.375,"roll":17.0},"location":"Right Knee"},{"euler":{"heading":14.125,"pitch":-123.5,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.686"} +{"sensors":[{"euler":{"heading":39.3125,"pitch":130.0,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":35.8125,"pitch":98.3125,"roll":0.625},"location":"Left Ankle"},{"euler":{"heading":37.5625,"pitch":-3.5625,"roll":-28.5},"location":"Right Ankle"},{"euler":{"heading":161.625,"pitch":-158.375,"roll":54.1875},"location":"Right Hip"},{"euler":{"heading":51.3125,"pitch":-103.0625,"roll":7.1875},"location":"Right Knee"},{"euler":{"heading":15.3125,"pitch":-125.6875,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.787"} +{"sensors":[{"euler":{"heading":46.9375,"pitch":122.75,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":46.4375,"pitch":102.0,"roll":8.3125},"location":"Left Ankle"},{"euler":{"heading":34.875,"pitch":-7.3125,"roll":-25.5625},"location":"Right Ankle"},{"euler":{"heading":165.375,"pitch":-153.875,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":50.0,"pitch":-98.9375,"roll":7.625},"location":"Right Knee"},{"euler":{"heading":20.0625,"pitch":-132.5625,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.887"} +{"sensors":[{"euler":{"heading":49.875,"pitch":120.5,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":59.375,"pitch":102.75,"roll":16.875},"location":"Left Ankle"},{"euler":{"heading":53.4375,"pitch":-16.625,"roll":-22.5},"location":"Right Ankle"},{"euler":{"heading":164.625,"pitch":-154.875,"roll":40.75},"location":"Right Hip"},{"euler":{"heading":36.5,"pitch":-95.0625,"roll":22.625},"location":"Right Knee"},{"euler":{"heading":22.625,"pitch":-140.1875,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:26.988"} +{"sensors":[{"euler":{"heading":54.3125,"pitch":118.1875,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":57.6875,"pitch":101.0625,"roll":18.875},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":-22.9375,"roll":-11.5625},"location":"Right Ankle"},{"euler":{"heading":108.25,"pitch":-175.75,"roll":38.375},"location":"Right Hip"},{"euler":{"heading":16.75,"pitch":-93.125,"roll":45.125},"location":"Right Knee"},{"euler":{"heading":24.5,"pitch":-146.6875,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.89"} +{"sensors":[{"euler":{"heading":60.0,"pitch":116.75,"roll":17.125},"location":"Left Knee"},{"euler":{"heading":63.0,"pitch":101.0,"roll":24.625},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":-25.1875,"roll":-2.5},"location":"Right Ankle"},{"euler":{"heading":143.1875,"pitch":-163.1875,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":1.1875,"pitch":-93.3125,"roll":60.6875},"location":"Right Knee"},{"euler":{"heading":25.8125,"pitch":-151.75,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.190"} +{"sensors":[{"euler":{"heading":67.9375,"pitch":115.375,"roll":9.875},"location":"Left Knee"},{"euler":{"heading":75.0,"pitch":101.875,"roll":34.5625},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":-22.0,"roll":-5.0625},"location":"Right Ankle"},{"euler":{"heading":136.8125,"pitch":-164.875,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":356.0625,"pitch":-99.625,"roll":61.125},"location":"Right Knee"},{"euler":{"heading":30.125,"pitch":-159.5625,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.290"} +{"sensors":[{"euler":{"heading":81.375,"pitch":118.3125,"roll":-3.375},"location":"Left Knee"},{"euler":{"heading":76.0625,"pitch":103.5,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":-19.5,"roll":-10.75},"location":"Right Ankle"},{"euler":{"heading":142.9375,"pitch":-163.25,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":2.25,"pitch":-105.5,"roll":53.375},"location":"Right Knee"},{"euler":{"heading":23.875,"pitch":-147.375,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.391"} +{"sensors":[{"euler":{"heading":93.1875,"pitch":116.1875,"roll":-8.1875},"location":"Left Knee"},{"euler":{"heading":78.75,"pitch":102.5625,"roll":53.0},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":-18.875,"roll":-13.3125},"location":"Right Ankle"},{"euler":{"heading":137.0625,"pitch":-166.625,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":8.5,"pitch":-110.3125,"roll":46.75},"location":"Right Knee"},{"euler":{"heading":11.75,"pitch":-123.25,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.495"} +{"sensors":[{"euler":{"heading":84.375,"pitch":123.75,"roll":0.5},"location":"Left Knee"},{"euler":{"heading":67.25,"pitch":92.75,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":78.9375,"pitch":-18.3125,"roll":-16.75},"location":"Right Ankle"},{"euler":{"heading":141.8125,"pitch":-165.375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":14.4375,"pitch":-110.0,"roll":41.8125},"location":"Right Knee"},{"euler":{"heading":4.3125,"pitch":-117.4375,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.596"} +{"sensors":[{"euler":{"heading":48.125,"pitch":135.0,"roll":19.625},"location":"Left Knee"},{"euler":{"heading":39.0625,"pitch":88.3125,"roll":9.75},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":-16.9375,"roll":-17.6875},"location":"Right Ankle"},{"euler":{"heading":144.8125,"pitch":-165.0,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":19.6875,"pitch":-109.3125,"roll":36.875},"location":"Right Knee"},{"euler":{"heading":2.4375,"pitch":-114.6875,"roll":49.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.697"} +{"sensors":[{"euler":{"heading":21.8125,"pitch":143.6875,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":17.875,"pitch":86.3125,"roll":-12.0},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":-14.1875,"roll":-21.5625},"location":"Right Ankle"},{"euler":{"heading":146.8125,"pitch":-166.125,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":26.3125,"pitch":-108.75,"roll":30.5625},"location":"Right Knee"},{"euler":{"heading":7.375,"pitch":-118.4375,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.798"} +{"sensors":[{"euler":{"heading":27.25,"pitch":141.6875,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":19.25,"pitch":92.9375,"roll":-11.125},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":-11.9375,"roll":-26.6875},"location":"Right Ankle"},{"euler":{"heading":148.3125,"pitch":-168.8125,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":37.0,"pitch":-106.1875,"roll":21.9375},"location":"Right Knee"},{"euler":{"heading":12.9375,"pitch":-121.9375,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.898"} +{"sensors":[{"euler":{"heading":37.6875,"pitch":132.25,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":32.875,"pitch":97.6875,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":43.1875,"pitch":-8.9375,"roll":-28.9375},"location":"Right Ankle"},{"euler":{"heading":154.0625,"pitch":-164.875,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":50.5,"pitch":-102.6875,"roll":10.4375},"location":"Right Knee"},{"euler":{"heading":12.9375,"pitch":-121.5,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:27.999"} +{"sensors":[{"euler":{"heading":45.25,"pitch":124.875,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":41.375,"pitch":100.5,"roll":5.25},"location":"Left Ankle"},{"euler":{"heading":30.8125,"pitch":-5.4375,"roll":-30.6875},"location":"Right Ankle"},{"euler":{"heading":160.0625,"pitch":-157.4375,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":53.875,"pitch":-101.8125,"roll":5.3125},"location":"Right Knee"},{"euler":{"heading":17.5625,"pitch":-125.9375,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.99"} +{"sensors":[{"euler":{"heading":48.1875,"pitch":122.1875,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":50.25,"pitch":100.75,"roll":12.375},"location":"Left Ankle"},{"euler":{"heading":41.9375,"pitch":-13.8125,"roll":-27.125},"location":"Right Ankle"},{"euler":{"heading":162.8125,"pitch":-156.0625,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":42.375,"pitch":-96.9375,"roll":16.4375},"location":"Right Knee"},{"euler":{"heading":20.0625,"pitch":-134.75,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.200"} +{"sensors":[{"euler":{"heading":52.5625,"pitch":120.0,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":52.8125,"pitch":100.625,"roll":15.4375},"location":"Left Ankle"},{"euler":{"heading":66.9375,"pitch":-23.0,"roll":-16.875},"location":"Right Ankle"},{"euler":{"heading":110.75,"pitch":-159.625,"roll":39.1875},"location":"Right Hip"},{"euler":{"heading":25.4375,"pitch":-94.0625,"roll":35.5625},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-140.8125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.300"} +{"sensors":[{"euler":{"heading":58.375,"pitch":117.875,"roll":19.25},"location":"Left Knee"},{"euler":{"heading":57.0,"pitch":101.0625,"roll":19.8125},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":-25.4375,"roll":-7.375},"location":"Right Ankle"},{"euler":{"heading":108.625,"pitch":-162.4375,"roll":40.625},"location":"Right Hip"},{"euler":{"heading":6.8125,"pitch":-93.625,"roll":54.375},"location":"Right Knee"},{"euler":{"heading":21.1875,"pitch":-145.3125,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.401"} +{"sensors":[{"euler":{"heading":64.0,"pitch":116.875,"roll":13.5625},"location":"Left Knee"},{"euler":{"heading":63.6875,"pitch":101.125,"roll":26.1875},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":-24.9375,"roll":-2.75},"location":"Right Ankle"},{"euler":{"heading":134.125,"pitch":-166.5625,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":355.6875,"pitch":-100.625,"roll":63.375},"location":"Right Knee"},{"euler":{"heading":24.875,"pitch":-154.6875,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.502"} +{"sensors":[{"euler":{"heading":73.5,"pitch":118.1875,"roll":2.0},"location":"Left Knee"},{"euler":{"heading":71.1875,"pitch":98.8125,"roll":38.8125},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":-19.625,"roll":-9.3125},"location":"Right Ankle"},{"euler":{"heading":136.3125,"pitch":-166.3125,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":356.625,"pitch":-105.5625,"roll":57.5625},"location":"Right Knee"},{"euler":{"heading":26.75,"pitch":-155.5625,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.602"} +{"sensors":[{"euler":{"heading":91.625,"pitch":117.375,"roll":-7.5},"location":"Left Knee"},{"euler":{"heading":90.3125,"pitch":109.8125,"roll":56.25},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-18.625,"roll":-12.6875},"location":"Right Ankle"},{"euler":{"heading":136.0,"pitch":-166.5625,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":2.8125,"pitch":-110.375,"roll":50.25},"location":"Right Knee"},{"euler":{"heading":12.5625,"pitch":-131.5625,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.703"} +{"sensors":[{"euler":{"heading":93.25,"pitch":121.875,"roll":-6.1875},"location":"Left Knee"},{"euler":{"heading":80.4375,"pitch":95.3125,"roll":50.375},"location":"Left Ankle"},{"euler":{"heading":79.5,"pitch":-19.6875,"roll":-15.1875},"location":"Right Ankle"},{"euler":{"heading":138.3125,"pitch":-167.0,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":9.4375,"pitch":-111.1875,"roll":44.75},"location":"Right Knee"},{"euler":{"heading":2.1875,"pitch":-118.9375,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.804"} +{"sensors":[{"euler":{"heading":69.3125,"pitch":130.0625,"roll":9.4375},"location":"Left Knee"},{"euler":{"heading":57.0625,"pitch":88.4375,"roll":27.0},"location":"Left Ankle"},{"euler":{"heading":77.6875,"pitch":-19.625,"roll":-18.1875},"location":"Right Ankle"},{"euler":{"heading":142.625,"pitch":-166.1875,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":15.6875,"pitch":-109.8125,"roll":40.3125},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":-116.125,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:28.905"} +{"sensors":[{"euler":{"heading":31.125,"pitch":140.6875,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":26.0625,"pitch":85.375,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":72.3125,"pitch":-17.75,"roll":-19.1875},"location":"Right Ankle"},{"euler":{"heading":144.4375,"pitch":-167.25,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":21.3125,"pitch":-109.4375,"roll":35.0625},"location":"Right Knee"},{"euler":{"heading":1.4375,"pitch":-115.75,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.6"} +{"sensors":[{"euler":{"heading":15.75,"pitch":147.0625,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":15.1875,"pitch":84.875,"roll":-15.3125},"location":"Left Ankle"},{"euler":{"heading":66.125,"pitch":-14.1875,"roll":-24.0},"location":"Right Ankle"},{"euler":{"heading":147.1875,"pitch":-167.6875,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":28.375,"pitch":-108.4375,"roll":28.5625},"location":"Right Knee"},{"euler":{"heading":9.4375,"pitch":-121.4375,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.106"} +{"sensors":[{"euler":{"heading":28.125,"pitch":138.5,"roll":34.75},"location":"Left Knee"},{"euler":{"heading":21.1875,"pitch":94.875,"roll":-8.0625},"location":"Left Ankle"},{"euler":{"heading":53.6875,"pitch":-12.0,"roll":-27.875},"location":"Right Ankle"},{"euler":{"heading":151.0625,"pitch":-170.125,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":41.1875,"pitch":-104.375,"roll":19.1875},"location":"Right Knee"},{"euler":{"heading":15.75,"pitch":-123.3125,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.207"} +{"sensors":[{"euler":{"heading":38.75,"pitch":130.5,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":37.5625,"pitch":98.5,"roll":3.0625},"location":"Left Ankle"},{"euler":{"heading":38.8125,"pitch":-4.6875,"roll":-30.5625},"location":"Right Ankle"},{"euler":{"heading":158.0625,"pitch":-162.4375,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":51.0,"pitch":-102.6875,"roll":8.0625},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-124.375,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.308"} +{"sensors":[{"euler":{"heading":45.0625,"pitch":124.75,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":44.375,"pitch":99.875,"roll":6.375},"location":"Left Ankle"},{"euler":{"heading":32.375,"pitch":-6.8125,"roll":-29.9375},"location":"Right Ankle"},{"euler":{"heading":163.0625,"pitch":-155.625,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":49.875,"pitch":-99.9375,"roll":8.625},"location":"Right Knee"},{"euler":{"heading":18.125,"pitch":-131.1875,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.408"} +{"sensors":[{"euler":{"heading":49.3125,"pitch":120.1875,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":51.6875,"pitch":101.5625,"roll":11.75},"location":"Left Ankle"},{"euler":{"heading":48.5,"pitch":-17.9375,"roll":-24.8125},"location":"Right Ankle"},{"euler":{"heading":164.375,"pitch":-155.3125,"roll":42.125},"location":"Right Hip"},{"euler":{"heading":34.5,"pitch":-94.6875,"roll":24.875},"location":"Right Knee"},{"euler":{"heading":23.5625,"pitch":-139.375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.509"} +{"sensors":[{"euler":{"heading":54.5625,"pitch":118.625,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":53.625,"pitch":101.125,"roll":15.6875},"location":"Left Ankle"},{"euler":{"heading":73.8125,"pitch":-26.3125,"roll":-12.4375},"location":"Right Ankle"},{"euler":{"heading":110.8125,"pitch":-159.9375,"roll":40.375},"location":"Right Hip"},{"euler":{"heading":14.5625,"pitch":-93.1875,"roll":47.0625},"location":"Right Knee"},{"euler":{"heading":22.5,"pitch":-143.8125,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.609"} +{"sensors":[{"euler":{"heading":59.6875,"pitch":116.9375,"roll":18.25},"location":"Left Knee"},{"euler":{"heading":58.75,"pitch":101.125,"roll":20.875},"location":"Left Ankle"},{"euler":{"heading":93.625,"pitch":-27.5625,"roll":-3.3125},"location":"Right Ankle"},{"euler":{"heading":143.1875,"pitch":-162.375,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":359.0625,"pitch":-97.375,"roll":62.3125},"location":"Right Knee"},{"euler":{"heading":23.875,"pitch":-148.875,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.710"} +{"sensors":[{"euler":{"heading":66.8125,"pitch":116.1875,"roll":10.75},"location":"Left Knee"},{"euler":{"heading":66.9375,"pitch":100.5625,"roll":30.1875},"location":"Left Ankle"},{"euler":{"heading":91.1875,"pitch":-29.0625,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":137.6875,"pitch":-165.5625,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":359.25,"pitch":-101.75,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":25.8125,"pitch":-154.4375,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.811"} +{"sensors":[{"euler":{"heading":82.1875,"pitch":119.1875,"roll":-2.25},"location":"Left Knee"},{"euler":{"heading":78.8125,"pitch":101.8125,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-26.9375,"roll":-13.125},"location":"Right Ankle"},{"euler":{"heading":142.0,"pitch":-165.0,"roll":51.1875},"location":"Right Hip"},{"euler":{"heading":5.25,"pitch":-106.8125,"roll":52.5625},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-141.875,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:29.912"} +{"sensors":[{"euler":{"heading":91.1875,"pitch":117.25,"roll":-5.0},"location":"Left Knee"},{"euler":{"heading":79.9375,"pitch":101.5,"roll":51.125},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-26.8125,"roll":-14.3125},"location":"Right Ankle"},{"euler":{"heading":142.875,"pitch":-165.6875,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":11.625,"pitch":-108.0,"roll":47.0},"location":"Right Knee"},{"euler":{"heading":9.125,"pitch":-121.5,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.15"} +{"sensors":[{"euler":{"heading":75.5,"pitch":125.1875,"roll":7.3125},"location":"Left Knee"},{"euler":{"heading":65.3125,"pitch":92.1875,"roll":32.6875},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":-26.6875,"roll":-16.3125},"location":"Right Ankle"},{"euler":{"heading":147.6875,"pitch":-165.0625,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":18.5,"pitch":-105.6875,"roll":42.1875},"location":"Right Knee"},{"euler":{"heading":3.5,"pitch":-118.25,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.116"} +{"sensors":[{"euler":{"heading":36.375,"pitch":137.125,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":35.75,"pitch":88.0,"roll":6.4375},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-25.1875,"roll":-18.3125},"location":"Right Ankle"},{"euler":{"heading":150.375,"pitch":-165.5625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":23.0625,"pitch":-105.3125,"roll":37.25},"location":"Right Knee"},{"euler":{"heading":3.9375,"pitch":-117.3125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.216"} +{"sensors":[{"euler":{"heading":16.0,"pitch":145.75,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":17.0625,"pitch":84.5625,"roll":-14.125},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":-22.125,"roll":-22.625},"location":"Right Ankle"},{"euler":{"heading":152.0,"pitch":-167.5,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":29.0,"pitch":-104.375,"roll":31.125},"location":"Right Knee"},{"euler":{"heading":9.25,"pitch":-120.125,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.317"} +{"sensors":[{"euler":{"heading":26.625,"pitch":140.125,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":20.9375,"pitch":89.5,"roll":-10.3125},"location":"Left Ankle"},{"euler":{"heading":59.9375,"pitch":-20.0,"roll":-26.8125},"location":"Right Ankle"},{"euler":{"heading":153.1875,"pitch":-170.0625,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":38.9375,"pitch":-101.625,"roll":22.75},"location":"Right Knee"},{"euler":{"heading":14.25,"pitch":-122.9375,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.417"} +{"sensors":[{"euler":{"heading":33.75,"pitch":133.5,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":33.375,"pitch":93.3125,"roll":-0.75},"location":"Left Ankle"},{"euler":{"heading":40.3125,"pitch":-13.6875,"roll":-29.625},"location":"Right Ankle"},{"euler":{"heading":157.9375,"pitch":-163.375,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":49.875,"pitch":-98.0,"roll":10.9375},"location":"Right Knee"},{"euler":{"heading":12.8125,"pitch":-122.0625,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.518"} +{"sensors":[{"euler":{"heading":37.0,"pitch":130.0625,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":38.625,"pitch":92.75,"roll":4.25},"location":"Left Ankle"},{"euler":{"heading":32.1875,"pitch":-7.625,"roll":-29.5625},"location":"Right Ankle"},{"euler":{"heading":163.75,"pitch":-156.625,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":47.25,"pitch":-98.5,"roll":9.5625},"location":"Right Knee"},{"euler":{"heading":14.625,"pitch":-130.1875,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.618"} +{"sensors":[{"euler":{"heading":39.5,"pitch":128.25,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":49.8125,"pitch":93.375,"roll":12.9375},"location":"Left Ankle"},{"euler":{"heading":63.0,"pitch":-13.125,"roll":-26.3125},"location":"Right Ankle"},{"euler":{"heading":162.0625,"pitch":-155.75,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":31.9375,"pitch":-96.25,"roll":23.5},"location":"Right Knee"},{"euler":{"heading":17.0,"pitch":-137.625,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.719"} +{"sensors":[{"euler":{"heading":44.5625,"pitch":125.4375,"roll":23.5625},"location":"Left Knee"},{"euler":{"heading":51.25,"pitch":92.5,"roll":15.5625},"location":"Left Ankle"},{"euler":{"heading":73.0,"pitch":-24.5,"roll":-17.0625},"location":"Right Ankle"},{"euler":{"heading":155.1875,"pitch":-159.8125,"roll":41.3125},"location":"Right Hip"},{"euler":{"heading":16.4375,"pitch":-94.6875,"roll":42.8125},"location":"Right Knee"},{"euler":{"heading":19.625,"pitch":-143.5,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.821"} +{"sensors":[{"euler":{"heading":52.3125,"pitch":123.25,"roll":17.9375},"location":"Left Knee"},{"euler":{"heading":56.625,"pitch":92.125,"roll":20.75},"location":"Left Ankle"},{"euler":{"heading":95.75,"pitch":-30.375,"roll":-7.1875},"location":"Right Ankle"},{"euler":{"heading":147.25,"pitch":-161.5625,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":5.125,"pitch":-98.25,"roll":58.125},"location":"Right Knee"},{"euler":{"heading":21.0625,"pitch":-148.5625,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:30.925"} +{"sensors":[{"euler":{"heading":59.5625,"pitch":122.4375,"roll":11.6875},"location":"Left Knee"},{"euler":{"heading":64.0625,"pitch":92.125,"roll":28.625},"location":"Left Ankle"},{"euler":{"heading":93.3125,"pitch":-26.8125,"roll":-7.25},"location":"Right Ankle"},{"euler":{"heading":136.125,"pitch":-164.125,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":355.4375,"pitch":-106.25,"roll":61.5625},"location":"Right Knee"},{"euler":{"heading":22.75,"pitch":-155.125,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.25"} +{"sensors":[{"euler":{"heading":73.5,"pitch":123.25,"roll":0.4375},"location":"Left Knee"},{"euler":{"heading":72.125,"pitch":91.75,"roll":42.1875},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-20.875,"roll":-13.625},"location":"Right Ankle"},{"euler":{"heading":139.5625,"pitch":-163.125,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":355.5625,"pitch":-111.0,"roll":54.5},"location":"Right Knee"},{"euler":{"heading":18.6875,"pitch":-147.0,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.128"} +{"sensors":[{"euler":{"heading":89.3125,"pitch":118.0625,"roll":-6.0},"location":"Left Knee"},{"euler":{"heading":79.625,"pitch":99.9375,"roll":49.5625},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":-21.3125,"roll":-16.5625},"location":"Right Ankle"},{"euler":{"heading":136.75,"pitch":-165.8125,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":4.125,"pitch":-113.625,"roll":47.4375},"location":"Right Knee"},{"euler":{"heading":7.6875,"pitch":-122.75,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.229"} +{"sensors":[{"euler":{"heading":83.0,"pitch":125.375,"roll":1.3125},"location":"Left Knee"},{"euler":{"heading":66.625,"pitch":91.5,"roll":35.3125},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":-21.0,"roll":-18.625},"location":"Right Ankle"},{"euler":{"heading":143.125,"pitch":-164.0,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":9.8125,"pitch":-112.4375,"roll":43.1875},"location":"Right Knee"},{"euler":{"heading":1.0,"pitch":-117.875,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.330"} +{"sensors":[{"euler":{"heading":46.4375,"pitch":135.9375,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":38.625,"pitch":89.5625,"roll":8.5},"location":"Left Ankle"},{"euler":{"heading":75.0625,"pitch":-18.75,"roll":-20.0625},"location":"Right Ankle"},{"euler":{"heading":146.9375,"pitch":-162.6875,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":14.375,"pitch":-111.5625,"roll":38.3125},"location":"Right Knee"},{"euler":{"heading":1.0,"pitch":-114.9375,"roll":49.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.431"} +{"sensors":[{"euler":{"heading":21.75,"pitch":144.1875,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":16.6875,"pitch":88.4375,"roll":-12.6875},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":-16.1875,"roll":-23.25},"location":"Right Ankle"},{"euler":{"heading":149.5,"pitch":-162.9375,"roll":60.4375},"location":"Right Hip"},{"euler":{"heading":21.75,"pitch":-110.4375,"roll":32.0625},"location":"Right Knee"},{"euler":{"heading":8.1875,"pitch":-119.1875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.531"} +{"sensors":[{"euler":{"heading":25.5625,"pitch":141.4375,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":18.75,"pitch":92.125,"roll":-11.375},"location":"Left Ankle"},{"euler":{"heading":59.5625,"pitch":-14.4375,"roll":-28.8125},"location":"Right Ankle"},{"euler":{"heading":152.875,"pitch":-165.75,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":32.25,"pitch":-106.6875,"roll":24.875},"location":"Right Knee"},{"euler":{"heading":13.0625,"pitch":-123.6875,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.632"} +{"sensors":[{"euler":{"heading":39.4375,"pitch":132.0625,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":32.6875,"pitch":96.0625,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":43.0625,"pitch":-11.6875,"roll":-32.3125},"location":"Right Ankle"},{"euler":{"heading":161.3125,"pitch":-160.9375,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":48.6875,"pitch":-100.0,"roll":11.875},"location":"Right Knee"},{"euler":{"heading":16.25,"pitch":-126.3125,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.733"} +{"sensors":[{"euler":{"heading":45.75,"pitch":125.4375,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":41.5625,"pitch":99.0625,"roll":4.9375},"location":"Left Ankle"},{"euler":{"heading":32.125,"pitch":-7.0,"roll":-32.9375},"location":"Right Ankle"},{"euler":{"heading":166.5625,"pitch":-154.1875,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":51.25,"pitch":-102.125,"roll":7.4375},"location":"Right Knee"},{"euler":{"heading":20.0625,"pitch":-131.125,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.834"} +{"sensors":[{"euler":{"heading":49.3125,"pitch":121.1875,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":47.5625,"pitch":100.5,"roll":9.3125},"location":"Left Ankle"},{"euler":{"heading":44.4375,"pitch":-15.25,"roll":-28.5},"location":"Right Ankle"},{"euler":{"heading":167.0625,"pitch":-154.5,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":38.4375,"pitch":-97.9375,"roll":20.3125},"location":"Right Knee"},{"euler":{"heading":22.4375,"pitch":-138.0,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:31.935"} +{"sensors":[{"euler":{"heading":54.25,"pitch":118.75,"roll":24.5},"location":"Left Knee"},{"euler":{"heading":51.625,"pitch":101.25,"roll":13.3125},"location":"Left Ankle"},{"euler":{"heading":67.9375,"pitch":-26.1875,"roll":-16.375},"location":"Right Ankle"},{"euler":{"heading":113.5625,"pitch":-159.0625,"roll":39.625},"location":"Right Hip"},{"euler":{"heading":19.625,"pitch":-93.6875,"roll":41.1875},"location":"Right Knee"},{"euler":{"heading":22.625,"pitch":-143.5625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.36"} +{"sensors":[{"euler":{"heading":60.4375,"pitch":116.5625,"roll":19.3125},"location":"Left Knee"},{"euler":{"heading":56.125,"pitch":102.0,"roll":18.375},"location":"Left Ankle"},{"euler":{"heading":87.5625,"pitch":-30.125,"roll":-4.9375},"location":"Right Ankle"},{"euler":{"heading":149.875,"pitch":-162.25,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":3.4375,"pitch":-92.375,"roll":58.1875},"location":"Right Knee"},{"euler":{"heading":24.625,"pitch":-148.5625,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.136"} +{"sensors":[{"euler":{"heading":67.625,"pitch":116.3125,"roll":12.0625},"location":"Left Knee"},{"euler":{"heading":62.25,"pitch":101.3125,"roll":26.0},"location":"Left Ankle"},{"euler":{"heading":92.625,"pitch":-27.5625,"roll":-3.9375},"location":"Right Ankle"},{"euler":{"heading":137.8125,"pitch":-166.75,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":358.125,"pitch":-96.3125,"roll":60.4375},"location":"Right Knee"},{"euler":{"heading":25.6875,"pitch":-153.5625,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.237"} +{"sensors":[{"euler":{"heading":80.375,"pitch":119.375,"roll":-0.25},"location":"Left Knee"},{"euler":{"heading":69.9375,"pitch":98.6875,"roll":40.25},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-21.875,"roll":-13.0625},"location":"Right Ankle"},{"euler":{"heading":142.125,"pitch":-164.375,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":358.9375,"pitch":-103.125,"roll":53.75},"location":"Right Knee"},{"euler":{"heading":22.375,"pitch":-150.625,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.338"} +{"sensors":[{"euler":{"heading":92.5625,"pitch":116.875,"roll":-6.8125},"location":"Left Knee"},{"euler":{"heading":81.75,"pitch":105.0,"roll":52.0},"location":"Left Ankle"},{"euler":{"heading":79.3125,"pitch":-20.8125,"roll":-13.875},"location":"Right Ankle"},{"euler":{"heading":138.8125,"pitch":-166.625,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":4.5,"pitch":-109.75,"roll":47.6875},"location":"Right Knee"},{"euler":{"heading":9.8125,"pitch":-127.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.438"} +{"sensors":[{"euler":{"heading":85.875,"pitch":122.5625,"roll":-0.25},"location":"Left Knee"},{"euler":{"heading":73.5,"pitch":94.1875,"roll":40.9375},"location":"Left Ankle"},{"euler":{"heading":79.6875,"pitch":-18.9375,"roll":-16.6875},"location":"Right Ankle"},{"euler":{"heading":141.5625,"pitch":-165.75,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":6.125,"pitch":-111.375,"roll":44.1875},"location":"Right Knee"},{"euler":{"heading":3.6875,"pitch":-119.25,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.539"} +{"sensors":[{"euler":{"heading":50.3125,"pitch":134.0625,"roll":18.5},"location":"Left Knee"},{"euler":{"heading":41.5,"pitch":87.1875,"roll":8.4375},"location":"Left Ankle"},{"euler":{"heading":75.1875,"pitch":-15.3125,"roll":-19.125},"location":"Right Ankle"},{"euler":{"heading":144.875,"pitch":-165.25,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":9.875,"pitch":-111.9375,"roll":39.5625},"location":"Right Knee"},{"euler":{"heading":1.1875,"pitch":-114.6875,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.639"} +{"sensors":[{"euler":{"heading":21.6875,"pitch":144.4375,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":17.25,"pitch":86.1875,"roll":-11.625},"location":"Left Ankle"},{"euler":{"heading":70.375,"pitch":-12.375,"roll":-22.5},"location":"Right Ankle"},{"euler":{"heading":145.875,"pitch":-166.0625,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":15.75,"pitch":-111.75,"roll":34.0},"location":"Right Knee"},{"euler":{"heading":5.8125,"pitch":-119.625,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.740"} +{"sensors":[{"euler":{"heading":30.875,"pitch":140.3125,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":24.5625,"pitch":91.5,"roll":-4.1875},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-11.0,"roll":-27.5625},"location":"Right Ankle"},{"euler":{"heading":149.9375,"pitch":-166.8125,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":29.1875,"pitch":-108.125,"roll":24.5},"location":"Right Knee"},{"euler":{"heading":9.1875,"pitch":-121.3125,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.841"} +{"sensors":[{"euler":{"heading":40.375,"pitch":132.6875,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":33.6875,"pitch":94.875,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":40.0625,"pitch":-9.3125,"roll":-29.4375},"location":"Right Ankle"},{"euler":{"heading":156.875,"pitch":-160.75,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":45.1875,"pitch":-102.3125,"roll":11.9375},"location":"Right Knee"},{"euler":{"heading":9.75,"pitch":-122.8125,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:32.942"} +{"sensors":[{"euler":{"heading":44.625,"pitch":126.6875,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":42.8125,"pitch":97.0,"roll":7.6875},"location":"Left Ankle"},{"euler":{"heading":33.3125,"pitch":-9.5625,"roll":-29.625},"location":"Right Ankle"},{"euler":{"heading":161.6875,"pitch":-156.1875,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":44.75,"pitch":-99.5,"roll":11.625},"location":"Right Knee"},{"euler":{"heading":14.6875,"pitch":-129.0,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.43"} +{"sensors":[{"euler":{"heading":49.6875,"pitch":122.1875,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":53.4375,"pitch":99.125,"roll":15.125},"location":"Left Ankle"},{"euler":{"heading":51.0625,"pitch":-18.125,"roll":-25.375},"location":"Right Ankle"},{"euler":{"heading":162.1875,"pitch":-156.1875,"roll":42.125},"location":"Right Hip"},{"euler":{"heading":30.9375,"pitch":-95.4375,"roll":26.5},"location":"Right Knee"},{"euler":{"heading":19.0625,"pitch":-136.75,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.144"} +{"sensors":[{"euler":{"heading":55.3125,"pitch":119.125,"roll":22.6875},"location":"Left Knee"},{"euler":{"heading":56.0625,"pitch":99.4375,"roll":18.25},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-27.1875,"roll":-12.125},"location":"Right Ankle"},{"euler":{"heading":111.125,"pitch":-160.5625,"roll":39.4375},"location":"Right Hip"},{"euler":{"heading":13.75,"pitch":-94.0,"roll":47.25},"location":"Right Knee"},{"euler":{"heading":21.9375,"pitch":-145.0625,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.244"} +{"sensors":[{"euler":{"heading":61.9375,"pitch":117.375,"roll":17.0},"location":"Left Knee"},{"euler":{"heading":60.625,"pitch":100.0,"roll":23.6875},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":-28.8125,"roll":-2.8125},"location":"Right Ankle"},{"euler":{"heading":143.875,"pitch":-164.0,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":357.0625,"pitch":-94.375,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":22.9375,"pitch":-148.875,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.345"} +{"sensors":[{"euler":{"heading":69.875,"pitch":116.375,"roll":9.6875},"location":"Left Knee"},{"euler":{"heading":69.6875,"pitch":101.3125,"roll":33.125},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":-24.3125,"roll":-3.75},"location":"Right Ankle"},{"euler":{"heading":134.6875,"pitch":-167.5,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":350.4375,"pitch":-98.75,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-153.75,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.446"} +{"sensors":[{"euler":{"heading":84.625,"pitch":117.875,"roll":-2.875},"location":"Left Knee"},{"euler":{"heading":78.6875,"pitch":103.1875,"roll":49.1875},"location":"Left Ankle"},{"euler":{"heading":84.0625,"pitch":-19.3125,"roll":-11.5},"location":"Right Ankle"},{"euler":{"heading":139.5625,"pitch":-165.6875,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":352.5,"pitch":-107.1875,"roll":57.5},"location":"Right Knee"},{"euler":{"heading":19.5625,"pitch":-144.6875,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.547"} +{"sensors":[{"euler":{"heading":96.25,"pitch":115.25,"roll":-8.4375},"location":"Left Knee"},{"euler":{"heading":83.6875,"pitch":106.25,"roll":54.0},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":-15.4375,"roll":-15.4375},"location":"Right Ankle"},{"euler":{"heading":135.875,"pitch":-166.875,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":355.0625,"pitch":-114.5,"roll":51.625},"location":"Right Knee"},{"euler":{"heading":7.3125,"pitch":-120.25,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.648"} +{"sensors":[{"euler":{"heading":82.1875,"pitch":124.5625,"roll":2.25},"location":"Left Knee"},{"euler":{"heading":70.125,"pitch":93.0,"roll":36.375},"location":"Left Ankle"},{"euler":{"heading":78.875,"pitch":-14.0625,"roll":-17.625},"location":"Right Ankle"},{"euler":{"heading":139.0625,"pitch":-165.8125,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":359.375,"pitch":-115.5625,"roll":46.9375},"location":"Right Knee"},{"euler":{"heading":359.5,"pitch":-115.375,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.749"} +{"sensors":[{"euler":{"heading":41.0625,"pitch":137.375,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":37.125,"pitch":84.0,"roll":8.75},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-12.375,"roll":-19.6875},"location":"Right Ankle"},{"euler":{"heading":143.375,"pitch":-164.75,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":4.0625,"pitch":-114.625,"roll":42.3125},"location":"Right Knee"},{"euler":{"heading":358.1875,"pitch":-113.0625,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.850"} +{"sensors":[{"euler":{"heading":22.4375,"pitch":144.125,"roll":32.75},"location":"Left Knee"},{"euler":{"heading":14.1875,"pitch":84.375,"roll":-14.3125},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":-10.125,"roll":-22.625},"location":"Right Ankle"},{"euler":{"heading":147.0625,"pitch":-163.9375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":12.1875,"pitch":-113.3125,"roll":35.8125},"location":"Right Knee"},{"euler":{"heading":4.75,"pitch":-118.875,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:33.951"} +{"sensors":[{"euler":{"heading":32.5625,"pitch":138.5,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":19.4375,"pitch":91.125,"roll":-9.5625},"location":"Left Ankle"},{"euler":{"heading":61.3125,"pitch":-9.1875,"roll":-27.875},"location":"Right Ankle"},{"euler":{"heading":152.1875,"pitch":-164.6875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":25.1875,"pitch":-109.5,"roll":26.8125},"location":"Right Knee"},{"euler":{"heading":11.5,"pitch":-121.875,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.52"} +{"sensors":[{"euler":{"heading":40.75,"pitch":131.75,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":31.5625,"pitch":93.75,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":43.25,"pitch":-8.9375,"roll":-30.9375},"location":"Right Ankle"},{"euler":{"heading":159.3125,"pitch":-161.0625,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":42.5,"pitch":-103.25,"roll":14.375},"location":"Right Knee"},{"euler":{"heading":10.0625,"pitch":-123.3125,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.153"} +{"sensors":[{"euler":{"heading":46.9375,"pitch":125.5,"roll":28.0625},"location":"Left Knee"},{"euler":{"heading":38.625,"pitch":96.5,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":33.25,"pitch":-8.4375,"roll":-31.125},"location":"Right Ankle"},{"euler":{"heading":163.9375,"pitch":-155.5625,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":47.625,"pitch":-102.0,"roll":9.75},"location":"Right Knee"},{"euler":{"heading":15.5625,"pitch":-130.4375,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.254"} +{"sensors":[{"euler":{"heading":51.75,"pitch":120.3125,"roll":26.25},"location":"Left Knee"},{"euler":{"heading":45.875,"pitch":98.8125,"roll":8.875},"location":"Left Ankle"},{"euler":{"heading":46.3125,"pitch":-15.1875,"roll":-27.1875},"location":"Right Ankle"},{"euler":{"heading":166.625,"pitch":-154.875,"roll":41.375},"location":"Right Hip"},{"euler":{"heading":35.3125,"pitch":-99.375,"roll":21.0625},"location":"Right Knee"},{"euler":{"heading":20.8125,"pitch":-137.5625,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.354"} +{"sensors":[{"euler":{"heading":58.25,"pitch":117.0625,"roll":22.0625},"location":"Left Knee"},{"euler":{"heading":50.3125,"pitch":100.125,"roll":12.9375},"location":"Left Ankle"},{"euler":{"heading":69.8125,"pitch":-23.75,"roll":-16.625},"location":"Right Ankle"},{"euler":{"heading":110.4375,"pitch":-159.4375,"roll":38.3125},"location":"Right Hip"},{"euler":{"heading":15.625,"pitch":-95.4375,"roll":41.6875},"location":"Right Knee"},{"euler":{"heading":22.6875,"pitch":-143.75,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.455"} +{"sensors":[{"euler":{"heading":63.8125,"pitch":115.125,"roll":16.9375},"location":"Left Knee"},{"euler":{"heading":55.5,"pitch":101.5625,"roll":18.375},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":-26.6875,"roll":-6.375},"location":"Right Ankle"},{"euler":{"heading":110.875,"pitch":-162.625,"roll":41.875},"location":"Right Hip"},{"euler":{"heading":359.5625,"pitch":-94.75,"roll":58.625},"location":"Right Knee"},{"euler":{"heading":24.5625,"pitch":-148.625,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.556"} +{"sensors":[{"euler":{"heading":71.5,"pitch":113.8125,"roll":9.8125},"location":"Left Knee"},{"euler":{"heading":63.8125,"pitch":102.75,"roll":26.8125},"location":"Left Ankle"},{"euler":{"heading":92.25,"pitch":-23.25,"roll":-5.875},"location":"Right Ankle"},{"euler":{"heading":135.3125,"pitch":-166.8125,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":351.0625,"pitch":-100.0625,"roll":61.4375},"location":"Right Knee"},{"euler":{"heading":28.125,"pitch":-155.75,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.657"} +{"sensors":[{"euler":{"heading":86.375,"pitch":116.6875,"roll":-3.5625},"location":"Left Knee"},{"euler":{"heading":71.125,"pitch":101.25,"roll":42.8125},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-20.875,"roll":-12.375},"location":"Right Ankle"},{"euler":{"heading":142.5,"pitch":-164.75,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":357.25,"pitch":-109.1875,"roll":53.0625},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-144.9375,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.758"} +{"sensors":[{"euler":{"heading":97.125,"pitch":114.3125,"roll":-9.1875},"location":"Left Knee"},{"euler":{"heading":84.1875,"pitch":105.625,"roll":54.5625},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":-19.6875,"roll":-14.8125},"location":"Right Ankle"},{"euler":{"heading":138.0,"pitch":-167.25,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":1.4375,"pitch":-112.5,"roll":48.0625},"location":"Right Knee"},{"euler":{"heading":8.0,"pitch":-119.75,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.858"} +{"sensors":[{"euler":{"heading":89.0625,"pitch":121.9375,"roll":-1.375},"location":"Left Knee"},{"euler":{"heading":74.1875,"pitch":94.5625,"roll":41.75},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-18.5,"roll":-17.75},"location":"Right Ankle"},{"euler":{"heading":145.5625,"pitch":-164.125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":7.0625,"pitch":-112.375,"roll":42.8125},"location":"Right Knee"},{"euler":{"heading":2.625,"pitch":-115.5,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:34.959"} +{"sensors":[{"euler":{"heading":53.5,"pitch":133.25,"roll":17.9375},"location":"Left Knee"},{"euler":{"heading":43.25,"pitch":87.8125,"roll":14.375},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":-16.75,"roll":-19.4375},"location":"Right Ankle"},{"euler":{"heading":147.6875,"pitch":-163.875,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":11.8125,"pitch":-111.625,"roll":38.1875},"location":"Right Knee"},{"euler":{"heading":1.75,"pitch":-113.1875,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.60"} +{"sensors":[{"euler":{"heading":27.8125,"pitch":141.4375,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":17.625,"pitch":87.4375,"roll":-10.6875},"location":"Left Ankle"},{"euler":{"heading":67.375,"pitch":-14.125,"roll":-23.0625},"location":"Right Ankle"},{"euler":{"heading":149.875,"pitch":-164.875,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":18.4375,"pitch":-110.3125,"roll":32.8125},"location":"Right Knee"},{"euler":{"heading":6.75,"pitch":-118.0,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.161"} +{"sensors":[{"euler":{"heading":30.1875,"pitch":140.3125,"roll":33.3125},"location":"Left Knee"},{"euler":{"heading":17.375,"pitch":92.0,"roll":-11.9375},"location":"Left Ankle"},{"euler":{"heading":58.125,"pitch":-10.8125,"roll":-28.3125},"location":"Right Ankle"},{"euler":{"heading":151.0,"pitch":-167.875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":27.875,"pitch":-107.6875,"roll":24.375},"location":"Right Knee"},{"euler":{"heading":11.0,"pitch":-121.6875,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.262"} +{"sensors":[{"euler":{"heading":41.0,"pitch":131.9375,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":31.0,"pitch":94.625,"roll":-1.5},"location":"Left Ankle"},{"euler":{"heading":43.5,"pitch":-10.5625,"roll":-30.5625},"location":"Right Ankle"},{"euler":{"heading":158.3125,"pitch":-163.8125,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":43.4375,"pitch":-102.9375,"roll":12.25},"location":"Right Knee"},{"euler":{"heading":11.6875,"pitch":-123.1875,"roll":55.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.362"} +{"sensors":[{"euler":{"heading":49.125,"pitch":123.8125,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":40.25,"pitch":98.5,"roll":5.125},"location":"Left Ankle"},{"euler":{"heading":30.0625,"pitch":-7.3125,"roll":-32.875},"location":"Right Ankle"},{"euler":{"heading":164.1875,"pitch":-156.0625,"roll":51.25},"location":"Right Hip"},{"euler":{"heading":48.875,"pitch":-102.0625,"roll":7.1875},"location":"Right Knee"},{"euler":{"heading":17.4375,"pitch":-128.3125,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.463"} +{"sensors":[{"euler":{"heading":51.625,"pitch":120.5,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":48.6875,"pitch":99.875,"roll":11.1875},"location":"Left Ankle"},{"euler":{"heading":41.0625,"pitch":-13.9375,"roll":-30.625},"location":"Right Ankle"},{"euler":{"heading":167.375,"pitch":-154.3125,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":39.8125,"pitch":-98.875,"roll":16.75},"location":"Right Knee"},{"euler":{"heading":21.8125,"pitch":-136.8125,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.564"} +{"sensors":[{"euler":{"heading":56.5,"pitch":116.6875,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":52.5,"pitch":100.25,"roll":14.0},"location":"Left Ankle"},{"euler":{"heading":62.375,"pitch":-25.9375,"roll":-20.25},"location":"Right Ankle"},{"euler":{"heading":112.5625,"pitch":-158.4375,"roll":38.8125},"location":"Right Hip"},{"euler":{"heading":23.3125,"pitch":-92.25,"roll":34.9375},"location":"Right Knee"},{"euler":{"heading":25.4375,"pitch":-145.6875,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.665"} +{"sensors":[{"euler":{"heading":61.4375,"pitch":114.3125,"roll":19.1875},"location":"Left Knee"},{"euler":{"heading":56.75,"pitch":100.625,"roll":18.0},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-25.75,"roll":-9.375},"location":"Right Ankle"},{"euler":{"heading":109.8125,"pitch":-160.5,"roll":39.9375},"location":"Right Hip"},{"euler":{"heading":2.4375,"pitch":-91.0,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":27.625,"pitch":-151.6875,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.765"} +{"sensors":[{"euler":{"heading":67.0,"pitch":113.1875,"roll":13.1875},"location":"Left Knee"},{"euler":{"heading":64.0625,"pitch":101.25,"roll":25.1875},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":-25.875,"roll":-4.6875},"location":"Right Ankle"},{"euler":{"heading":141.4375,"pitch":-164.25,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":349.125,"pitch":-94.75,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":28.6875,"pitch":-157.25,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.866"} +{"sensors":[{"euler":{"heading":78.0,"pitch":115.0,"roll":1.875},"location":"Left Knee"},{"euler":{"heading":71.0,"pitch":98.75,"roll":38.5625},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":-21.625,"roll":-10.25},"location":"Right Ankle"},{"euler":{"heading":141.25,"pitch":-165.25,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":350.0625,"pitch":-102.6875,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":28.0,"pitch":-155.4375,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:35.966"} +{"sensors":[{"euler":{"heading":93.25,"pitch":112.9375,"roll":-7.5625},"location":"Left Knee"},{"euler":{"heading":89.375,"pitch":107.75,"roll":55.1875},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":-18.625,"roll":-14.25},"location":"Right Ankle"},{"euler":{"heading":139.625,"pitch":-166.3125,"roll":52.875},"location":"Right Hip"},{"euler":{"heading":352.3125,"pitch":-109.375,"roll":54.75},"location":"Right Knee"},{"euler":{"heading":14.8125,"pitch":-130.8125,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.67"} +{"sensors":[{"euler":{"heading":95.8125,"pitch":116.9375,"roll":-6.3125},"location":"Left Knee"},{"euler":{"heading":81.625,"pitch":96.5,"roll":49.375},"location":"Left Ankle"},{"euler":{"heading":78.875,"pitch":-16.125,"roll":-17.6875},"location":"Right Ankle"},{"euler":{"heading":140.875,"pitch":-165.875,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":355.8125,"pitch":-114.125,"roll":49.0},"location":"Right Knee"},{"euler":{"heading":5.0625,"pitch":-116.75,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.168"} +{"sensors":[{"euler":{"heading":71.6875,"pitch":128.0,"roll":9.5},"location":"Left Knee"},{"euler":{"heading":54.125,"pitch":87.625,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":75.8125,"pitch":-13.5,"roll":-20.25},"location":"Right Ankle"},{"euler":{"heading":143.3125,"pitch":-164.8125,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":359.4375,"pitch":-114.625,"roll":44.75},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":-113.5,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.269"} +{"sensors":[{"euler":{"heading":32.875,"pitch":139.5,"roll":27.75},"location":"Left Knee"},{"euler":{"heading":22.375,"pitch":84.5625,"roll":-3.625},"location":"Left Ankle"},{"euler":{"heading":71.1875,"pitch":-11.5,"roll":-22.5},"location":"Right Ankle"},{"euler":{"heading":146.8125,"pitch":-164.875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":6.625,"pitch":-113.1875,"roll":38.9375},"location":"Right Knee"},{"euler":{"heading":2.75,"pitch":-114.75,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.369"} +{"sensors":[{"euler":{"heading":27.25,"pitch":142.8125,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":13.0625,"pitch":88.625,"roll":-14.5},"location":"Left Ankle"},{"euler":{"heading":64.75,"pitch":-10.125,"roll":-26.8125},"location":"Right Ankle"},{"euler":{"heading":149.375,"pitch":-166.75,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":18.0,"pitch":-110.25,"roll":31.0625},"location":"Right Knee"},{"euler":{"heading":11.75,"pitch":-122.0,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.470"} +{"sensors":[{"euler":{"heading":40.3125,"pitch":133.75,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":27.0,"pitch":96.8125,"roll":-5.25},"location":"Left Ankle"},{"euler":{"heading":49.875,"pitch":-12.5,"roll":-30.5625},"location":"Right Ankle"},{"euler":{"heading":155.0,"pitch":-166.8125,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":38.0,"pitch":-103.375,"roll":18.5},"location":"Right Knee"},{"euler":{"heading":13.25,"pitch":-123.75,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.576"} +{"sensors":[{"euler":{"heading":46.3125,"pitch":128.0,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":32.0625,"pitch":95.125,"roll":2.75},"location":"Left Ankle"},{"euler":{"heading":30.75,"pitch":-6.9375,"roll":-32.875},"location":"Right Ankle"},{"euler":{"heading":163.25,"pitch":-158.3125,"roll":54.0625},"location":"Right Hip"},{"euler":{"heading":47.4375,"pitch":-102.375,"roll":8.6875},"location":"Right Knee"},{"euler":{"heading":15.75,"pitch":-126.75,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.676"} +{"sensors":[{"euler":{"heading":47.25,"pitch":125.25,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":36.5625,"pitch":95.1875,"roll":6.1875},"location":"Left Ankle"},{"euler":{"heading":36.125,"pitch":-9.75,"roll":-30.125},"location":"Right Ankle"},{"euler":{"heading":166.6875,"pitch":-154.5625,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":39.875,"pitch":-98.625,"roll":15.1875},"location":"Right Knee"},{"euler":{"heading":18.3125,"pitch":-135.6875,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.777"} +{"sensors":[{"euler":{"heading":52.75,"pitch":121.5625,"roll":23.3125},"location":"Left Knee"},{"euler":{"heading":41.375,"pitch":96.3125,"roll":9.8125},"location":"Left Ankle"},{"euler":{"heading":58.125,"pitch":-19.375,"roll":-23.8125},"location":"Right Ankle"},{"euler":{"heading":160.6875,"pitch":-157.0625,"roll":41.375},"location":"Right Hip"},{"euler":{"heading":21.25,"pitch":-95.4375,"roll":33.6875},"location":"Right Knee"},{"euler":{"heading":20.0,"pitch":-141.8125,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.878"} +{"sensors":[{"euler":{"heading":59.8125,"pitch":116.6875,"roll":20.25},"location":"Left Knee"},{"euler":{"heading":47.8125,"pitch":99.0625,"roll":14.5625},"location":"Left Ankle"},{"euler":{"heading":79.0,"pitch":-26.3125,"roll":-12.5625},"location":"Right Ankle"},{"euler":{"heading":111.6875,"pitch":-158.8125,"roll":40.5},"location":"Right Hip"},{"euler":{"heading":3.5625,"pitch":-93.5,"roll":54.125},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-146.625,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:36.979"} +{"sensors":[{"euler":{"heading":65.75,"pitch":114.25,"roll":15.1875},"location":"Left Knee"},{"euler":{"heading":55.0625,"pitch":100.375,"roll":21.0},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":-29.6875,"roll":-4.875},"location":"Right Ankle"},{"euler":{"heading":144.375,"pitch":-163.0625,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":352.625,"pitch":-95.5,"roll":65.9375},"location":"Right Knee"},{"euler":{"heading":26.875,"pitch":-154.3125,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.80"} +{"sensors":[{"euler":{"heading":74.25,"pitch":114.625,"roll":6.5625},"location":"Left Knee"},{"euler":{"heading":62.0,"pitch":98.875,"roll":31.5625},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":-23.9375,"roll":-9.875},"location":"Right Ankle"},{"euler":{"heading":138.1875,"pitch":-166.0,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":347.875,"pitch":-102.8125,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":29.0,"pitch":-160.0625,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.181"} +{"sensors":[{"euler":{"heading":90.25,"pitch":117.375,"roll":-6.4375},"location":"Left Knee"},{"euler":{"heading":78.1875,"pitch":102.5625,"roll":49.875},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":-22.625,"roll":-14.6875},"location":"Right Ankle"},{"euler":{"heading":142.125,"pitch":-164.8125,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":354.3125,"pitch":-106.5,"roll":55.125},"location":"Right Knee"},{"euler":{"heading":16.1875,"pitch":-140.0625,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.282"} +{"sensors":[{"euler":{"heading":97.0,"pitch":117.5625,"roll":-8.875},"location":"Left Knee"},{"euler":{"heading":77.5,"pitch":96.4375,"roll":51.3125},"location":"Left Ankle"},{"euler":{"heading":78.125,"pitch":-21.5625,"roll":-17.5},"location":"Right Ankle"},{"euler":{"heading":140.75,"pitch":-166.375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":0.25,"pitch":-111.5,"roll":49.1875},"location":"Right Knee"},{"euler":{"heading":5.375,"pitch":-118.6875,"roll":56.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.385"} +{"sensors":[{"euler":{"heading":82.625,"pitch":125.25,"roll":3.375},"location":"Left Knee"},{"euler":{"heading":56.1875,"pitch":88.0625,"roll":30.4375},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-20.0625,"roll":-21.0625},"location":"Right Ankle"},{"euler":{"heading":146.0,"pitch":-163.9375,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":4.5,"pitch":-111.4375,"roll":44.8125},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":-115.4375,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.486"} +{"sensors":[{"euler":{"heading":46.8125,"pitch":135.0625,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":25.4375,"pitch":89.0625,"roll":-0.0625},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-17.75,"roll":-22.125},"location":"Right Ankle"},{"euler":{"heading":149.75,"pitch":-163.25,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":10.5625,"pitch":-110.1875,"roll":39.75},"location":"Right Knee"},{"euler":{"heading":1.5625,"pitch":-114.75,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.586"} +{"sensors":[{"euler":{"heading":28.6875,"pitch":142.0625,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":8.25,"pitch":87.1875,"roll":-17.25},"location":"Left Ankle"},{"euler":{"heading":64.25,"pitch":-14.0625,"roll":-26.3125},"location":"Right Ankle"},{"euler":{"heading":152.8125,"pitch":-163.4375,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":18.0,"pitch":-108.8125,"roll":33.1875},"location":"Right Knee"},{"euler":{"heading":8.75,"pitch":-120.0625,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.686"} +{"sensors":[{"euler":{"heading":35.4375,"pitch":137.1875,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":14.25,"pitch":93.4375,"roll":-12.375},"location":"Left Ankle"},{"euler":{"heading":53.6875,"pitch":-10.625,"roll":-31.0},"location":"Right Ankle"},{"euler":{"heading":156.125,"pitch":-166.0,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":29.3125,"pitch":-105.0,"roll":24.125},"location":"Right Knee"},{"euler":{"heading":15.375,"pitch":-121.6875,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.787"} +{"sensors":[{"euler":{"heading":45.9375,"pitch":128.875,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":30.25,"pitch":96.25,"roll":0.9375},"location":"Left Ankle"},{"euler":{"heading":35.8125,"pitch":-6.875,"roll":-34.625},"location":"Right Ankle"},{"euler":{"heading":165.1875,"pitch":-159.6875,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":44.0,"pitch":-100.5,"roll":11.875},"location":"Right Knee"},{"euler":{"heading":14.1875,"pitch":-123.0,"roll":56.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.888"} +{"sensors":[{"euler":{"heading":48.8125,"pitch":124.75,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":34.4375,"pitch":97.0625,"roll":3.6875},"location":"Left Ankle"},{"euler":{"heading":29.8125,"pitch":-6.875,"roll":-32.375},"location":"Right Ankle"},{"euler":{"heading":169.1875,"pitch":-153.4375,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":43.75,"pitch":-99.3125,"roll":11.625},"location":"Right Knee"},{"euler":{"heading":16.8125,"pitch":-143.8125,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:37.988"} +{"sensors":[{"euler":{"heading":50.625,"pitch":122.8125,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":38.75,"pitch":96.5625,"roll":7.4375},"location":"Left Ankle"},{"euler":{"heading":48.0,"pitch":-15.875,"roll":-27.6875},"location":"Right Ankle"},{"euler":{"heading":167.125,"pitch":-154.375,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":26.5625,"pitch":-97.625,"roll":27.9375},"location":"Right Knee"},{"euler":{"heading":17.9375,"pitch":-135.625,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.89"} +{"sensors":[{"euler":{"heading":56.4375,"pitch":118.75,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":43.125,"pitch":97.625,"roll":10.875},"location":"Left Ankle"},{"euler":{"heading":75.25,"pitch":-23.875,"roll":-15.8125},"location":"Right Ankle"},{"euler":{"heading":111.75,"pitch":-159.1875,"roll":40.0625},"location":"Right Hip"},{"euler":{"heading":5.5,"pitch":-93.3125,"roll":50.0625},"location":"Right Knee"},{"euler":{"heading":19.5,"pitch":-141.9375,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.190"} +{"sensors":[{"euler":{"heading":62.5,"pitch":116.9375,"roll":17.5},"location":"Left Knee"},{"euler":{"heading":48.5625,"pitch":98.3125,"roll":16.0625},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":-27.75,"roll":-7.1875},"location":"Right Ankle"},{"euler":{"heading":148.0,"pitch":-162.25,"roll":43.125},"location":"Right Hip"},{"euler":{"heading":352.125,"pitch":-93.75,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-146.125,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.290"} +{"sensors":[{"euler":{"heading":69.25,"pitch":116.125,"roll":10.8125},"location":"Left Knee"},{"euler":{"heading":55.875,"pitch":98.25,"roll":23.8125},"location":"Left Ankle"},{"euler":{"heading":92.6875,"pitch":-26.4375,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":137.3125,"pitch":-165.5,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":348.0625,"pitch":-98.625,"roll":66.875},"location":"Right Knee"},{"euler":{"heading":24.5625,"pitch":-155.1875,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.391"} +{"sensors":[{"euler":{"heading":81.3125,"pitch":118.875,"roll":-0.875},"location":"Left Knee"},{"euler":{"heading":66.0,"pitch":96.1875,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":86.75,"pitch":-23.375,"roll":-12.875},"location":"Right Ankle"},{"euler":{"heading":142.375,"pitch":-163.375,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":349.3125,"pitch":-104.4375,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":23.6875,"pitch":-149.1875,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.492"} +{"sensors":[{"euler":{"heading":95.75,"pitch":114.8125,"roll":-9.25},"location":"Left Knee"},{"euler":{"heading":79.9375,"pitch":100.9375,"roll":54.3125},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-21.9375,"roll":-15.5},"location":"Right Ankle"},{"euler":{"heading":140.0625,"pitch":-165.0625,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":354.9375,"pitch":-110.875,"roll":53.5625},"location":"Right Knee"},{"euler":{"heading":9.75,"pitch":-124.5,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.593"} +{"sensors":[{"euler":{"heading":93.6875,"pitch":122.0625,"roll":-4.25},"location":"Left Knee"},{"euler":{"heading":70.875,"pitch":90.375,"roll":44.875},"location":"Left Ankle"},{"euler":{"heading":79.375,"pitch":-21.3125,"roll":-17.9375},"location":"Right Ankle"},{"euler":{"heading":145.625,"pitch":-163.375,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":0.75,"pitch":-111.4375,"roll":48.25},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":-114.8125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.696"} +{"sensors":[{"euler":{"heading":63.1875,"pitch":132.0625,"roll":13.75},"location":"Left Knee"},{"euler":{"heading":41.5,"pitch":86.875,"roll":15.875},"location":"Left Ankle"},{"euler":{"heading":76.5,"pitch":-19.625,"roll":-20.5},"location":"Right Ankle"},{"euler":{"heading":147.8125,"pitch":-162.9375,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":4.25,"pitch":-111.0,"roll":43.9375},"location":"Right Knee"},{"euler":{"heading":358.9375,"pitch":-112.8125,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.798"} +{"sensors":[{"euler":{"heading":30.4375,"pitch":141.25,"roll":29.625},"location":"Left Knee"},{"euler":{"heading":14.3125,"pitch":85.375,"roll":-9.9375},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-16.5625,"roll":-23.875},"location":"Right Ankle"},{"euler":{"heading":150.375,"pitch":-163.1875,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":9.625,"pitch":-110.4375,"roll":39.0},"location":"Right Knee"},{"euler":{"heading":2.6875,"pitch":-116.125,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.898"} +{"sensors":[{"euler":{"heading":25.5,"pitch":143.4375,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":11.0,"pitch":88.5,"roll":-14.9375},"location":"Left Ankle"},{"euler":{"heading":63.625,"pitch":-13.0625,"roll":-28.6875},"location":"Right Ankle"},{"euler":{"heading":151.0,"pitch":-165.4375,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":17.625,"pitch":-108.9375,"roll":32.0},"location":"Right Knee"},{"euler":{"heading":8.0625,"pitch":-121.8125,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:38.999"} +{"sensors":[{"euler":{"heading":39.375,"pitch":133.8125,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":25.1875,"pitch":93.75,"roll":-4.0625},"location":"Left Ankle"},{"euler":{"heading":49.9375,"pitch":-11.9375,"roll":-31.8125},"location":"Right Ankle"},{"euler":{"heading":154.9375,"pitch":-163.625,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":33.0625,"pitch":-104.4375,"roll":21.0},"location":"Right Knee"},{"euler":{"heading":11.5625,"pitch":-124.0625,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.99"} +{"sensors":[{"euler":{"heading":47.5,"pitch":127.0,"roll":28.75},"location":"Left Knee"},{"euler":{"heading":30.9375,"pitch":95.125,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":31.875,"pitch":-5.25,"roll":-34.8125},"location":"Right Ankle"},{"euler":{"heading":164.25,"pitch":-155.6875,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":43.25,"pitch":-102.5625,"roll":10.5625},"location":"Right Knee"},{"euler":{"heading":16.125,"pitch":-130.0,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.200"} +{"sensors":[{"euler":{"heading":50.0,"pitch":124.4375,"roll":25.6875},"location":"Left Knee"},{"euler":{"heading":34.75,"pitch":94.9375,"roll":4.375},"location":"Left Ankle"},{"euler":{"heading":39.375,"pitch":-11.875,"roll":-31.9375},"location":"Right Ankle"},{"euler":{"heading":168.0,"pitch":-154.4375,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":35.6875,"pitch":-98.9375,"roll":18.5},"location":"Right Knee"},{"euler":{"heading":18.875,"pitch":-137.375,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.300"} +{"sensors":[{"euler":{"heading":55.0625,"pitch":120.3125,"roll":23.4375},"location":"Left Knee"},{"euler":{"heading":40.5,"pitch":96.6875,"roll":8.8125},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":-23.1875,"roll":-22.75},"location":"Right Ankle"},{"euler":{"heading":162.8125,"pitch":-157.25,"roll":40.625},"location":"Right Hip"},{"euler":{"heading":16.1875,"pitch":-96.0,"roll":38.25},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-143.125,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.401"} +{"sensors":[{"euler":{"heading":61.9375,"pitch":116.4375,"roll":19.375},"location":"Left Knee"},{"euler":{"heading":45.9375,"pitch":98.6875,"roll":13.6875},"location":"Left Ankle"},{"euler":{"heading":88.625,"pitch":-26.9375,"roll":-9.125},"location":"Right Ankle"},{"euler":{"heading":152.625,"pitch":-161.1875,"roll":41.8125},"location":"Right Hip"},{"euler":{"heading":355.75,"pitch":-94.4375,"roll":59.1875},"location":"Right Knee"},{"euler":{"heading":23.375,"pitch":-147.6875,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.502"} +{"sensors":[{"euler":{"heading":67.875,"pitch":115.4375,"roll":12.9375},"location":"Left Knee"},{"euler":{"heading":52.25,"pitch":98.75,"roll":19.9375},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":-28.0625,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":139.5625,"pitch":-165.5625,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":345.5,"pitch":-98.1875,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":27.0,"pitch":-156.0625,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.603"} +{"sensors":[{"euler":{"heading":78.6875,"pitch":117.125,"roll":2.1875},"location":"Left Knee"},{"euler":{"heading":60.25,"pitch":95.625,"roll":33.25},"location":"Left Ankle"},{"euler":{"heading":88.5625,"pitch":-27.8125,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":140.25,"pitch":-166.3125,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":348.8125,"pitch":-102.8125,"roll":62.5625},"location":"Right Knee"},{"euler":{"heading":25.8125,"pitch":-155.125,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.704"} +{"sensors":[{"euler":{"heading":94.125,"pitch":116.5625,"roll":-7.5},"location":"Left Knee"},{"euler":{"heading":79.0625,"pitch":102.4375,"roll":51.1875},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":-26.1875,"roll":-13.5},"location":"Right Ankle"},{"euler":{"heading":141.6875,"pitch":-166.1875,"roll":52.75},"location":"Right Hip"},{"euler":{"heading":353.375,"pitch":-109.0,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":11.1875,"pitch":-131.5625,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.804"} +{"sensors":[{"euler":{"heading":94.875,"pitch":119.25,"roll":-5.0},"location":"Left Knee"},{"euler":{"heading":71.75,"pitch":95.1875,"roll":44.5},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":-25.4375,"roll":-16.375},"location":"Right Ankle"},{"euler":{"heading":144.125,"pitch":-165.9375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":358.375,"pitch":-109.0625,"roll":51.0625},"location":"Right Knee"},{"euler":{"heading":3.625,"pitch":-117.4375,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:39.905"} +{"sensors":[{"euler":{"heading":68.5625,"pitch":128.875,"roll":11.875},"location":"Left Knee"},{"euler":{"heading":46.4375,"pitch":87.8125,"roll":20.0625},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":-22.0625,"roll":-19.8125},"location":"Right Ankle"},{"euler":{"heading":148.375,"pitch":-163.3125,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-110.0,"roll":46.8125},"location":"Right Knee"},{"euler":{"heading":2.0625,"pitch":-114.875,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.6"} +{"sensors":[{"euler":{"heading":34.125,"pitch":138.625,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":17.5,"pitch":86.4375,"roll":-6.875},"location":"Left Ankle"},{"euler":{"heading":72.875,"pitch":-18.5625,"roll":-22.1875},"location":"Right Ankle"},{"euler":{"heading":152.125,"pitch":-162.4375,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":6.4375,"pitch":-109.3125,"roll":41.25},"location":"Right Knee"},{"euler":{"heading":4.1875,"pitch":-115.875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.106"} +{"sensors":[{"euler":{"heading":27.75,"pitch":142.1875,"roll":34.375},"location":"Left Knee"},{"euler":{"heading":9.4375,"pitch":88.125,"roll":-16.875},"location":"Left Ankle"},{"euler":{"heading":64.4375,"pitch":-14.0625,"roll":-28.25},"location":"Right Ankle"},{"euler":{"heading":155.0625,"pitch":-162.9375,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":15.25,"pitch":-107.5625,"roll":33.5},"location":"Right Knee"},{"euler":{"heading":10.8125,"pitch":-122.25,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.207"} +{"sensors":[{"euler":{"heading":39.6875,"pitch":133.4375,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":22.4375,"pitch":95.625,"roll":-7.25},"location":"Left Ankle"},{"euler":{"heading":50.1875,"pitch":-12.5,"roll":-31.6875},"location":"Right Ankle"},{"euler":{"heading":159.75,"pitch":-161.875,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":46.1875,"pitch":-102.6875,"roll":21.3125},"location":"Right Knee"},{"euler":{"heading":13.0625,"pitch":-124.5,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.308"} +{"sensors":[{"euler":{"heading":46.375,"pitch":127.625,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":29.3125,"pitch":95.875,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":32.0625,"pitch":-1.3125,"roll":-36.0},"location":"Right Ankle"},{"euler":{"heading":167.9375,"pitch":-155.0,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":37.375,"pitch":-100.8125,"roll":13.4375},"location":"Right Knee"},{"euler":{"heading":14.75,"pitch":-126.0,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.409"} +{"sensors":[{"euler":{"heading":48.9375,"pitch":124.5,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":39.0625,"pitch":96.6875,"roll":6.5},"location":"Left Ankle"},{"euler":{"heading":39.1875,"pitch":-9.25,"roll":-31.3125},"location":"Right Ankle"},{"euler":{"heading":168.9375,"pitch":-154.125,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":32.75,"pitch":-99.0,"roll":20.25},"location":"Right Knee"},{"euler":{"heading":16.3125,"pitch":-134.3125,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.509"} +{"sensors":[{"euler":{"heading":51.5625,"pitch":122.5625,"roll":24.25},"location":"Left Knee"},{"euler":{"heading":44.0,"pitch":96.125,"roll":12.0},"location":"Left Ankle"},{"euler":{"heading":61.25,"pitch":-22.9375,"roll":-22.3125},"location":"Right Ankle"},{"euler":{"heading":163.75,"pitch":-157.125,"roll":40.375},"location":"Right Hip"},{"euler":{"heading":0.3125,"pitch":-94.25,"roll":39.75},"location":"Right Knee"},{"euler":{"heading":19.3125,"pitch":-141.9375,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.610"} +{"sensors":[{"euler":{"heading":57.375,"pitch":120.625,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":47.875,"pitch":95.3125,"roll":15.9375},"location":"Left Ankle"},{"euler":{"heading":87.0625,"pitch":-26.6875,"roll":-10.625},"location":"Right Ankle"},{"euler":{"heading":153.0625,"pitch":-161.0625,"roll":41.625},"location":"Right Hip"},{"euler":{"heading":353.8125,"pitch":-93.4375,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":20.75,"pitch":-147.5,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.713"} +{"sensors":[{"euler":{"heading":63.9375,"pitch":118.125,"roll":14.5625},"location":"Left Knee"},{"euler":{"heading":55.625,"pitch":97.0,"roll":23.0},"location":"Left Ankle"},{"euler":{"heading":97.625,"pitch":-29.5,"roll":-4.875},"location":"Right Ankle"},{"euler":{"heading":142.3125,"pitch":-163.9375,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":343.375,"pitch":-99.125,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":21.6875,"pitch":-151.75,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.813"} +{"sensors":[{"euler":{"heading":75.1875,"pitch":115.625,"roll":5.3125},"location":"Left Knee"},{"euler":{"heading":65.6875,"pitch":98.375,"roll":34.8125},"location":"Left Ankle"},{"euler":{"heading":88.0,"pitch":-25.625,"roll":-10.8125},"location":"Right Ankle"},{"euler":{"heading":137.6875,"pitch":-166.3125,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":342.4375,"pitch":-104.0625,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":24.0625,"pitch":-154.125,"roll":66.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:40.914"} +{"sensors":[{"euler":{"heading":91.6875,"pitch":115.6875,"roll":-6.0625},"location":"Left Knee"},{"euler":{"heading":79.5,"pitch":104.0625,"roll":49.4375},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-23.6875,"roll":-14.25},"location":"Right Ankle"},{"euler":{"heading":143.3125,"pitch":-164.0625,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":347.4375,"pitch":-109.25,"roll":58.375},"location":"Right Knee"},{"euler":{"heading":11.625,"pitch":-134.375,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.15"} +{"sensors":[{"euler":{"heading":96.625,"pitch":118.5,"roll":-7.125},"location":"Left Knee"},{"euler":{"heading":74.8125,"pitch":97.0,"roll":47.0},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-22.75,"roll":-18.4375},"location":"Right Ankle"},{"euler":{"heading":143.6875,"pitch":-164.0,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":354.1875,"pitch":-111.625,"roll":52.125},"location":"Right Knee"},{"euler":{"heading":4.0,"pitch":-118.875,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.116"} +{"sensors":[{"euler":{"heading":77.125,"pitch":127.4375,"roll":6.75},"location":"Left Knee"},{"euler":{"heading":50.3125,"pitch":87.375,"roll":24.4375},"location":"Left Ankle"},{"euler":{"heading":78.875,"pitch":-23.375,"roll":-20.0},"location":"Right Ankle"},{"euler":{"heading":147.5,"pitch":-163.375,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":359.9375,"pitch":-110.5,"roll":47.75},"location":"Right Knee"},{"euler":{"heading":359.5625,"pitch":-114.375,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.216"} +{"sensors":[{"euler":{"heading":39.875,"pitch":137.5625,"roll":25.6875},"location":"Left Knee"},{"euler":{"heading":19.6875,"pitch":86.4375,"roll":-3.0},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-21.125,"roll":-22.0},"location":"Right Ankle"},{"euler":{"heading":150.875,"pitch":-162.75,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":5.0,"pitch":-109.75,"roll":42.875},"location":"Right Knee"},{"euler":{"heading":1.125,"pitch":-114.25,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.316"} +{"sensors":[{"euler":{"heading":27.875,"pitch":143.6875,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":6.25,"pitch":85.9375,"roll":-18.3125},"location":"Left Ankle"},{"euler":{"heading":68.125,"pitch":-17.6875,"roll":-26.8125},"location":"Right Ankle"},{"euler":{"heading":154.1875,"pitch":-163.125,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":12.375,"pitch":-108.25,"roll":36.625},"location":"Right Knee"},{"euler":{"heading":7.6875,"pitch":-119.625,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.417"} +{"sensors":[{"euler":{"heading":35.6875,"pitch":137.5,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":13.1875,"pitch":91.6875,"roll":-12.1875},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":-15.4375,"roll":-31.4375},"location":"Right Ankle"},{"euler":{"heading":157.6875,"pitch":-164.875,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":24.9375,"pitch":-104.125,"roll":27.1875},"location":"Right Knee"},{"euler":{"heading":12.125,"pitch":-121.875,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.517"} +{"sensors":[{"euler":{"heading":45.9375,"pitch":130.4375,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":26.5,"pitch":95.3125,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":39.1875,"pitch":-9.5,"roll":-34.75},"location":"Right Ankle"},{"euler":{"heading":162.3125,"pitch":-159.4375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":36.8125,"pitch":-101.1875,"roll":15.75},"location":"Right Knee"},{"euler":{"heading":11.5,"pitch":-124.9375,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.618"} +{"sensors":[{"euler":{"heading":50.875,"pitch":124.0625,"roll":28.25},"location":"Left Knee"},{"euler":{"heading":33.0625,"pitch":98.125,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":34.0625,"pitch":-7.5,"roll":-34.9375},"location":"Right Ankle"},{"euler":{"heading":165.1875,"pitch":-155.5,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":36.1875,"pitch":-100.1875,"roll":15.0},"location":"Right Knee"},{"euler":{"heading":17.3125,"pitch":-132.375,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.719"} +{"sensors":[{"euler":{"heading":55.0,"pitch":120.375,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":39.9375,"pitch":99.4375,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":50.25,"pitch":-19.8125,"roll":-28.6875},"location":"Right Ankle"},{"euler":{"heading":164.5625,"pitch":-155.875,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":21.0625,"pitch":-98.125,"roll":31.5625},"location":"Right Knee"},{"euler":{"heading":20.625,"pitch":-140.1875,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.819"} +{"sensors":[{"euler":{"heading":60.75,"pitch":116.6875,"roll":22.125},"location":"Left Knee"},{"euler":{"heading":45.6875,"pitch":100.9375,"roll":11.9375},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-27.75,"roll":-15.9375},"location":"Right Ankle"},{"euler":{"heading":155.875,"pitch":-160.25,"roll":41.25},"location":"Right Hip"},{"euler":{"heading":1.25,"pitch":-94.3125,"roll":52.5},"location":"Right Knee"},{"euler":{"heading":21.9375,"pitch":-144.625,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:41.919"} +{"sensors":[{"euler":{"heading":66.25,"pitch":114.0,"roll":17.4375},"location":"Left Knee"},{"euler":{"heading":51.5625,"pitch":102.125,"roll":17.375},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":-29.0625,"roll":-6.9375},"location":"Right Ankle"},{"euler":{"heading":146.0,"pitch":-163.0625,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":344.3125,"pitch":-96.8125,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":24.125,"pitch":-148.4375,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.20"} +{"sensors":[{"euler":{"heading":73.4375,"pitch":113.0625,"roll":10.375},"location":"Left Knee"},{"euler":{"heading":59.9375,"pitch":102.125,"roll":26.375},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":-25.0,"roll":-10.6875},"location":"Right Ankle"},{"euler":{"heading":138.75,"pitch":-165.25,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":339.5625,"pitch":-98.9375,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":27.4375,"pitch":-156.9375,"roll":66.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.121"} +{"sensors":[{"euler":{"heading":85.5,"pitch":116.4375,"roll":-1.9375},"location":"Left Knee"},{"euler":{"heading":69.375,"pitch":100.0625,"roll":43.0625},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-22.0625,"roll":-14.625},"location":"Right Ankle"},{"euler":{"heading":141.0,"pitch":-165.1875,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":340.875,"pitch":-105.625,"roll":62.875},"location":"Right Knee"},{"euler":{"heading":24.25,"pitch":-151.5,"roll":66.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.222"} +{"sensors":[{"euler":{"heading":97.875,"pitch":113.6875,"roll":-8.0625},"location":"Left Knee"},{"euler":{"heading":75.375,"pitch":102.875,"roll":50.5},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":-19.75,"roll":-18.0},"location":"Right Ankle"},{"euler":{"heading":139.0,"pitch":-166.6875,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":345.5625,"pitch":-112.8125,"roll":56.5},"location":"Right Knee"},{"euler":{"heading":11.4375,"pitch":-123.5625,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.322"} +{"sensors":[{"euler":{"heading":90.1875,"pitch":122.375,"roll":-0.5625},"location":"Left Knee"},{"euler":{"heading":60.9375,"pitch":91.1875,"roll":34.5},"location":"Left Ankle"},{"euler":{"heading":76.375,"pitch":-17.0,"roll":-21.5625},"location":"Right Ankle"},{"euler":{"heading":143.6875,"pitch":-164.8125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":349.0625,"pitch":-113.75,"roll":52.125},"location":"Right Knee"},{"euler":{"heading":2.0625,"pitch":-115.75,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.423"} +{"sensors":[{"euler":{"heading":55.5,"pitch":133.8125,"roll":18.25},"location":"Left Knee"},{"euler":{"heading":30.0625,"pitch":86.6875,"roll":7.3125},"location":"Left Ankle"},{"euler":{"heading":72.625,"pitch":-13.8125,"roll":-23.75},"location":"Right Ankle"},{"euler":{"heading":146.1875,"pitch":-163.375,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":352.5625,"pitch":-113.5625,"roll":47.625},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":-113.6875,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.523"} +{"sensors":[{"euler":{"heading":29.9375,"pitch":141.6875,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":9.6875,"pitch":85.5,"roll":-14.875},"location":"Left Ankle"},{"euler":{"heading":68.25,"pitch":-10.875,"roll":-26.6875},"location":"Right Ankle"},{"euler":{"heading":148.75,"pitch":-163.6875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":358.9375,"pitch":-112.75,"roll":41.6875},"location":"Right Knee"},{"euler":{"heading":3.5625,"pitch":-116.125,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.624"} +{"sensors":[{"euler":{"heading":38.6875,"pitch":136.1875,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":13.5,"pitch":92.625,"roll":-11.3125},"location":"Left Ankle"},{"euler":{"heading":56.875,"pitch":-9.0,"roll":-32.125},"location":"Right Ankle"},{"euler":{"heading":154.125,"pitch":-164.0,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":13.625,"pitch":-108.0,"roll":31.1875},"location":"Right Knee"},{"euler":{"heading":9.0625,"pitch":-119.75,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.727"} +{"sensors":[{"euler":{"heading":44.8125,"pitch":130.5,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":25.0625,"pitch":93.375,"roll":-2.3125},"location":"Left Ankle"},{"euler":{"heading":36.75,"pitch":-6.375,"roll":-34.9375},"location":"Right Ankle"},{"euler":{"heading":158.5625,"pitch":-160.375,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":32.875,"pitch":-101.0625,"roll":17.9375},"location":"Right Knee"},{"euler":{"heading":8.6875,"pitch":-122.0,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.831"} +{"sensors":[{"euler":{"heading":49.1875,"pitch":126.0,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":31.0625,"pitch":95.1875,"roll":1.6875},"location":"Left Ankle"},{"euler":{"heading":31.6875,"pitch":-7.25,"roll":-33.0},"location":"Right Ankle"},{"euler":{"heading":162.8125,"pitch":-156.4375,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":32.375,"pitch":-101.875,"roll":16.6875},"location":"Right Knee"},{"euler":{"heading":12.125,"pitch":-128.1875,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:42.931"} +{"sensors":[{"euler":{"heading":53.5625,"pitch":123.0,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":35.5625,"pitch":94.9375,"roll":6.1875},"location":"Left Ankle"},{"euler":{"heading":48.4375,"pitch":-16.4375,"roll":-28.3125},"location":"Right Ankle"},{"euler":{"heading":161.25,"pitch":-157.875,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":18.5625,"pitch":-98.8125,"roll":30.0},"location":"Right Knee"},{"euler":{"heading":15.6875,"pitch":-135.25,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.33"} +{"sensors":[{"euler":{"heading":57.875,"pitch":121.0,"roll":21.0},"location":"Left Knee"},{"euler":{"heading":40.625,"pitch":94.875,"roll":10.75},"location":"Left Ankle"},{"euler":{"heading":72.25,"pitch":-25.1875,"roll":-18.375},"location":"Right Ankle"},{"euler":{"heading":113.75,"pitch":-161.5,"roll":39.875},"location":"Right Hip"},{"euler":{"heading":0.25,"pitch":-95.1875,"roll":50.0},"location":"Right Knee"},{"euler":{"heading":19.0625,"pitch":-144.375,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.134"} +{"sensors":[{"euler":{"heading":64.3125,"pitch":118.375,"roll":16.1875},"location":"Left Knee"},{"euler":{"heading":46.5625,"pitch":96.0,"roll":16.0625},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":-29.75,"roll":-8.8125},"location":"Right Ankle"},{"euler":{"heading":146.625,"pitch":-163.4375,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":346.625,"pitch":-98.1875,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":22.0,"pitch":-151.3125,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.235"} +{"sensors":[{"euler":{"heading":72.5625,"pitch":116.1875,"roll":9.4375},"location":"Left Knee"},{"euler":{"heading":54.625,"pitch":97.3125,"roll":24.4375},"location":"Left Ankle"},{"euler":{"heading":91.5625,"pitch":-26.8125,"roll":-10.75},"location":"Right Ankle"},{"euler":{"heading":138.125,"pitch":-166.0,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":339.4375,"pitch":-103.3125,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":27.4375,"pitch":-160.0,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.335"} +{"sensors":[{"euler":{"heading":87.0,"pitch":118.9375,"roll":-3.4375},"location":"Left Knee"},{"euler":{"heading":65.125,"pitch":96.4375,"roll":41.75},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":-27.25,"roll":-15.0625},"location":"Right Ankle"},{"euler":{"heading":145.8125,"pitch":-164.125,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":346.625,"pitch":-105.5625,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":22.25,"pitch":-149.3125,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.436"} +{"sensors":[{"euler":{"heading":99.5625,"pitch":114.875,"roll":-9.5625},"location":"Left Knee"},{"euler":{"heading":77.8125,"pitch":103.125,"roll":53.6875},"location":"Left Ankle"},{"euler":{"heading":80.0,"pitch":-26.3125,"roll":-17.25},"location":"Right Ankle"},{"euler":{"heading":141.5625,"pitch":-167.375,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":351.4375,"pitch":-111.0,"roll":54.1875},"location":"Right Knee"},{"euler":{"heading":9.8125,"pitch":-122.375,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.537"} +{"sensors":[{"euler":{"heading":93.125,"pitch":120.5625,"roll":-2.1875},"location":"Left Knee"},{"euler":{"heading":69.25,"pitch":93.8125,"roll":40.8125},"location":"Left Ankle"},{"euler":{"heading":78.1875,"pitch":-24.1875,"roll":-19.9375},"location":"Right Ankle"},{"euler":{"heading":147.375,"pitch":-165.125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":355.25,"pitch":-111.6875,"roll":49.6875},"location":"Right Knee"},{"euler":{"heading":2.8125,"pitch":-116.0,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.638"} +{"sensors":[{"euler":{"heading":58.375,"pitch":132.0,"roll":16.8125},"location":"Left Knee"},{"euler":{"heading":39.4375,"pitch":87.0625,"roll":14.4375},"location":"Left Ankle"},{"euler":{"heading":74.625,"pitch":-19.9375,"roll":-22.5625},"location":"Right Ankle"},{"euler":{"heading":149.75,"pitch":-163.4375,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":356.6875,"pitch":-112.5,"roll":45.6875},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":-112.625,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.739"} +{"sensors":[{"euler":{"heading":29.25,"pitch":141.0,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":15.375,"pitch":85.625,"roll":-9.3125},"location":"Left Ankle"},{"euler":{"heading":69.8125,"pitch":-16.375,"roll":-25.625},"location":"Right Ankle"},{"euler":{"heading":151.6875,"pitch":-164.0,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":1.9375,"pitch":-112.25,"roll":39.875},"location":"Right Knee"},{"euler":{"heading":3.125,"pitch":-114.4375,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.840"} +{"sensors":[{"euler":{"heading":26.0,"pitch":143.375,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":11.0,"pitch":89.0,"roll":-14.3125},"location":"Left Ankle"},{"euler":{"heading":61.75,"pitch":-13.875,"roll":-30.875},"location":"Right Ankle"},{"euler":{"heading":155.125,"pitch":-165.75,"roll":61.6875},"location":"Right Hip"},{"euler":{"heading":13.4375,"pitch":-108.4375,"roll":31.5625},"location":"Right Knee"},{"euler":{"heading":8.9375,"pitch":-120.5625,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:43.940"} +{"sensors":[{"euler":{"heading":40.75,"pitch":133.1875,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":25.5625,"pitch":93.25,"roll":-2.3125},"location":"Left Ankle"},{"euler":{"heading":45.3125,"pitch":-11.9375,"roll":-34.3125},"location":"Right Ankle"},{"euler":{"heading":161.6875,"pitch":-162.8125,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":30.8125,"pitch":-101.75,"roll":19.0625},"location":"Right Knee"},{"euler":{"heading":12.125,"pitch":-122.875,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.42"} +{"sensors":[{"euler":{"heading":63.3125,"pitch":126.25,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":31.4375,"pitch":94.9375,"roll":1.375},"location":"Left Ankle"},{"euler":{"heading":29.4375,"pitch":-4.5,"roll":-35.875},"location":"Right Ankle"},{"euler":{"heading":167.3125,"pitch":-155.3125,"roll":52.375},"location":"Right Hip"},{"euler":{"heading":34.625,"pitch":-102.125,"roll":13.0625},"location":"Right Knee"},{"euler":{"heading":15.375,"pitch":-128.5625,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.143"} +{"sensors":[{"euler":{"heading":50.5625,"pitch":123.4375,"roll":26.875},"location":"Left Knee"},{"euler":{"heading":36.5625,"pitch":95.3125,"roll":5.5625},"location":"Left Ankle"},{"euler":{"heading":38.6875,"pitch":-12.6875,"roll":-33.125},"location":"Right Ankle"},{"euler":{"heading":168.4375,"pitch":-154.5,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":25.125,"pitch":-99.5,"roll":22.1875},"location":"Right Knee"},{"euler":{"heading":17.4375,"pitch":-133.9375,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.244"} +{"sensors":[{"euler":{"heading":55.5,"pitch":119.8125,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":42.5,"pitch":97.25,"roll":9.8125},"location":"Left Ankle"},{"euler":{"heading":61.25,"pitch":-24.9375,"roll":-23.8125},"location":"Right Ankle"},{"euler":{"heading":162.6875,"pitch":-157.875,"roll":41.5},"location":"Right Hip"},{"euler":{"heading":6.9375,"pitch":-97.1875,"roll":42.0625},"location":"Right Knee"},{"euler":{"heading":19.125,"pitch":-141.75,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.344"} +{"sensors":[{"euler":{"heading":62.5,"pitch":116.5625,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":47.1875,"pitch":98.625,"roll":14.625},"location":"Left Ankle"},{"euler":{"heading":85.125,"pitch":-28.6875,"roll":-12.9375},"location":"Right Ankle"},{"euler":{"heading":152.625,"pitch":-161.5,"roll":42.875},"location":"Right Hip"},{"euler":{"heading":348.875,"pitch":-95.3125,"roll":59.8125},"location":"Right Knee"},{"euler":{"heading":21.1875,"pitch":-145.125,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.444"} +{"sensors":[{"euler":{"heading":68.4375,"pitch":114.6875,"roll":14.0625},"location":"Left Knee"},{"euler":{"heading":54.1875,"pitch":99.375,"roll":21.4375},"location":"Left Ankle"},{"euler":{"heading":92.375,"pitch":-29.625,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":143.375,"pitch":-164.4375,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":340.1875,"pitch":-100.1875,"roll":68.6875},"location":"Right Knee"},{"euler":{"heading":23.9375,"pitch":-151.6875,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.545"} +{"sensors":[{"euler":{"heading":78.75,"pitch":113.9375,"roll":4.4375},"location":"Left Knee"},{"euler":{"heading":63.25,"pitch":98.5,"roll":34.1875},"location":"Left Ankle"},{"euler":{"heading":86.1875,"pitch":-26.3125,"roll":-12.8125},"location":"Right Ankle"},{"euler":{"heading":144.5,"pitch":-164.3125,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":339.5,"pitch":-107.0,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":26.1875,"pitch":-152.8125,"roll":66.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.646"} +{"sensors":[{"euler":{"heading":93.9375,"pitch":115.0625,"roll":-6.625},"location":"Left Knee"},{"euler":{"heading":76.0,"pitch":102.25,"roll":50.0625},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":-22.4375,"roll":-17.625},"location":"Right Ankle"},{"euler":{"heading":143.75,"pitch":-164.6875,"roll":53.625},"location":"Right Hip"},{"euler":{"heading":342.875,"pitch":-112.625,"roll":57.0},"location":"Right Knee"},{"euler":{"heading":10.5625,"pitch":-126.9375,"roll":60.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.747"} +{"sensors":[{"euler":{"heading":93.25,"pitch":120.0625,"roll":-3.3125},"location":"Left Knee"},{"euler":{"heading":69.4375,"pitch":94.875,"roll":41.1875},"location":"Left Ankle"},{"euler":{"heading":78.0,"pitch":-23.5625,"roll":-20.5625},"location":"Right Ankle"},{"euler":{"heading":147.0625,"pitch":-164.3125,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":350.125,"pitch":-112.6875,"roll":51.125},"location":"Right Knee"},{"euler":{"heading":2.25,"pitch":-120.8125,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.848"} +{"sensors":[{"euler":{"heading":66.25,"pitch":130.875,"roll":12.3125},"location":"Left Knee"},{"euler":{"heading":43.1875,"pitch":86.5,"roll":18.25},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":-23.5625,"roll":-23.0625},"location":"Right Ankle"},{"euler":{"heading":150.625,"pitch":-163.75,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":356.875,"pitch":-110.8125,"roll":46.3125},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":-116.6875,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:44.948"} +{"sensors":[{"euler":{"heading":36.6875,"pitch":138.1875,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":18.0625,"pitch":87.25,"roll":-5.5625},"location":"Left Ankle"},{"euler":{"heading":70.0,"pitch":-20.9375,"roll":-25.5},"location":"Right Ankle"},{"euler":{"heading":154.9375,"pitch":-163.5625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":3.0625,"pitch":-109.1875,"roll":40.75},"location":"Right Knee"},{"euler":{"heading":2.875,"pitch":-117.1875,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.49"} +{"sensors":[{"euler":{"heading":26.9375,"pitch":142.6875,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":11.5,"pitch":87.125,"roll":-14.1875},"location":"Left Ankle"},{"euler":{"heading":62.0,"pitch":-17.3125,"roll":-29.875},"location":"Right Ankle"},{"euler":{"heading":157.8125,"pitch":-164.875,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":12.9375,"pitch":-106.8125,"roll":32.75},"location":"Right Knee"},{"euler":{"heading":10.4375,"pitch":-124.0,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.150"} +{"sensors":[{"euler":{"heading":39.6875,"pitch":133.5625,"roll":31.125},"location":"Left Knee"},{"euler":{"heading":24.0625,"pitch":91.1875,"roll":-3.5},"location":"Left Ankle"},{"euler":{"heading":47.0,"pitch":-14.3125,"roll":-33.6875},"location":"Right Ankle"},{"euler":{"heading":162.1875,"pitch":-162.5,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":28.6875,"pitch":-101.375,"roll":20.5},"location":"Right Knee"},{"euler":{"heading":11.25,"pitch":-124.75,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.252"} +{"sensors":[{"euler":{"heading":47.875,"pitch":126.5625,"roll":29.0},"location":"Left Knee"},{"euler":{"heading":31.25,"pitch":94.1875,"roll":2.0},"location":"Left Ankle"},{"euler":{"heading":30.125,"pitch":-5.75,"roll":-36.5},"location":"Right Ankle"},{"euler":{"heading":168.9375,"pitch":-155.5,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":32.4375,"pitch":-102.1875,"roll":13.75},"location":"Right Knee"},{"euler":{"heading":15.8125,"pitch":-130.3125,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.352"} +{"sensors":[{"euler":{"heading":51.6875,"pitch":121.8125,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":43.25,"pitch":97.625,"roll":9.1875},"location":"Left Ankle"},{"euler":{"heading":39.1875,"pitch":-12.625,"roll":-32.625},"location":"Right Ankle"},{"euler":{"heading":168.4375,"pitch":-154.9375,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":22.75,"pitch":-99.0625,"roll":23.6875},"location":"Right Knee"},{"euler":{"heading":19.125,"pitch":-137.75,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.453"} +{"sensors":[{"euler":{"heading":56.75,"pitch":120.25,"roll":23.125},"location":"Left Knee"},{"euler":{"heading":47.5,"pitch":95.6875,"roll":15.75},"location":"Left Ankle"},{"euler":{"heading":62.5625,"pitch":-25.5,"roll":-23.375},"location":"Right Ankle"},{"euler":{"heading":162.1875,"pitch":-157.6875,"roll":42.75},"location":"Right Hip"},{"euler":{"heading":4.875,"pitch":-97.125,"roll":43.25},"location":"Right Knee"},{"euler":{"heading":19.375,"pitch":-144.0625,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.554"} +{"sensors":[{"euler":{"heading":62.25,"pitch":118.625,"roll":18.375},"location":"Left Knee"},{"euler":{"heading":50.1875,"pitch":95.5,"roll":19.375},"location":"Left Ankle"},{"euler":{"heading":87.4375,"pitch":-30.125,"roll":-12.5625},"location":"Right Ankle"},{"euler":{"heading":153.0625,"pitch":-161.0,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":347.6875,"pitch":-99.0625,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":21.8125,"pitch":-150.6875,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.654"} +{"sensors":[{"euler":{"heading":68.375,"pitch":116.5625,"roll":12.8125},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":96.875,"roll":27.1875},"location":"Left Ankle"},{"euler":{"heading":92.0625,"pitch":-31.75,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":142.6875,"pitch":-165.0625,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":338.6875,"pitch":-104.3125,"roll":69.25},"location":"Right Knee"},{"euler":{"heading":26.5625,"pitch":-159.0,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.756"} +{"sensors":[{"euler":{"heading":81.0625,"pitch":116.75,"roll":1.3125},"location":"Left Knee"},{"euler":{"heading":65.0,"pitch":94.0,"roll":40.25},"location":"Left Ankle"},{"euler":{"heading":83.5,"pitch":-26.75,"roll":-14.5},"location":"Right Ankle"},{"euler":{"heading":148.0625,"pitch":-163.25,"roll":48.9375},"location":"Right Hip"},{"euler":{"heading":339.5625,"pitch":-106.625,"roll":62.625},"location":"Right Knee"},{"euler":{"heading":28.9375,"pitch":-157.625,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.856"} +{"sensors":[{"euler":{"heading":97.3125,"pitch":114.3125,"roll":-7.4375},"location":"Left Knee"},{"euler":{"heading":75.3125,"pitch":105.4375,"roll":49.3125},"location":"Left Ankle"},{"euler":{"heading":79.625,"pitch":-26.0625,"roll":-17.6875},"location":"Right Ankle"},{"euler":{"heading":149.125,"pitch":-163.125,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":346.5625,"pitch":-111.125,"roll":55.8125},"location":"Right Knee"},{"euler":{"heading":14.5625,"pitch":-134.0,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:45.957"} +{"sensors":[{"euler":{"heading":96.875,"pitch":117.875,"roll":-3.875},"location":"Left Knee"},{"euler":{"heading":68.6875,"pitch":96.3125,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":-25.8125,"roll":-19.75},"location":"Right Ankle"},{"euler":{"heading":150.9375,"pitch":-163.125,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":352.1875,"pitch":-111.0,"roll":50.875},"location":"Right Knee"},{"euler":{"heading":7.1875,"pitch":-122.75,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.59"} +{"sensors":[{"euler":{"heading":70.4375,"pitch":127.5,"roll":12.5625},"location":"Left Knee"},{"euler":{"heading":42.125,"pitch":92.3125,"roll":16.0625},"location":"Left Ankle"},{"euler":{"heading":73.3125,"pitch":-22.625,"roll":-22.75},"location":"Right Ankle"},{"euler":{"heading":155.1875,"pitch":-161.6875,"roll":58.0},"location":"Right Hip"},{"euler":{"heading":355.3125,"pitch":-110.875,"roll":46.875},"location":"Right Knee"},{"euler":{"heading":3.5,"pitch":-117.0,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.160"} +{"sensors":[{"euler":{"heading":33.875,"pitch":138.0625,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":15.3125,"pitch":86.8125,"roll":-9.3125},"location":"Left Ankle"},{"euler":{"heading":67.625,"pitch":-19.25,"roll":-26.625},"location":"Right Ankle"},{"euler":{"heading":158.5625,"pitch":-161.375,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":1.8125,"pitch":-109.75,"roll":40.8125},"location":"Right Knee"},{"euler":{"heading":5.25,"pitch":-117.9375,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.261"} +{"sensors":[{"euler":{"heading":26.625,"pitch":141.75,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":9.125,"pitch":88.5625,"roll":-17.1875},"location":"Left Ankle"},{"euler":{"heading":58.0,"pitch":-14.8125,"roll":-32.9375},"location":"Right Ankle"},{"euler":{"heading":162.125,"pitch":-161.6875,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":11.3125,"pitch":-107.125,"roll":32.8125},"location":"Right Knee"},{"euler":{"heading":11.6875,"pitch":-123.375,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.362"} +{"sensors":[{"euler":{"heading":38.75,"pitch":133.5625,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":25.4375,"pitch":93.3125,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":43.375,"pitch":-15.5625,"roll":-35.375},"location":"Right Ankle"},{"euler":{"heading":165.875,"pitch":-161.1875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":30.1875,"pitch":-100.625,"roll":20.3125},"location":"Right Knee"},{"euler":{"heading":11.875,"pitch":-123.8125,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.465"} +{"sensors":[{"euler":{"heading":46.5625,"pitch":127.5625,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":29.375,"pitch":93.625,"roll":1.0},"location":"Left Ankle"},{"euler":{"heading":29.25,"pitch":-2.0,"roll":-38.9375},"location":"Right Ankle"},{"euler":{"heading":170.4375,"pitch":-154.3125,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":30.6875,"pitch":-102.75,"roll":13.5625},"location":"Right Knee"},{"euler":{"heading":15.0625,"pitch":-127.9375,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.566"} +{"sensors":[{"euler":{"heading":49.3125,"pitch":125.375,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":35.5,"pitch":93.9375,"roll":5.125},"location":"Left Ankle"},{"euler":{"heading":37.875,"pitch":-10.3125,"roll":-32.375},"location":"Right Ankle"},{"euler":{"heading":171.5,"pitch":-154.0,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":21.6875,"pitch":-99.1875,"roll":21.9375},"location":"Right Knee"},{"euler":{"heading":31.6875,"pitch":-134.375,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.666"} +{"sensors":[{"euler":{"heading":52.9375,"pitch":123.125,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":38.9375,"pitch":93.375,"roll":8.875},"location":"Left Ankle"},{"euler":{"heading":61.3125,"pitch":-23.0625,"roll":-23.9375},"location":"Right Ankle"},{"euler":{"heading":165.25,"pitch":-156.875,"roll":40.875},"location":"Right Hip"},{"euler":{"heading":3.375,"pitch":-96.625,"roll":41.75},"location":"Right Knee"},{"euler":{"heading":17.3125,"pitch":-141.6875,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.768"} +{"sensors":[{"euler":{"heading":59.9375,"pitch":119.4375,"roll":20.0},"location":"Left Knee"},{"euler":{"heading":44.375,"pitch":95.0625,"roll":13.6875},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":-29.375,"roll":-12.25},"location":"Right Ankle"},{"euler":{"heading":155.8125,"pitch":-160.6875,"roll":41.6875},"location":"Right Hip"},{"euler":{"heading":346.375,"pitch":-96.3125,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":19.6875,"pitch":-145.875,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.869"} +{"sensors":[{"euler":{"heading":66.0,"pitch":117.4375,"roll":14.5625},"location":"Left Knee"},{"euler":{"heading":52.25,"pitch":96.5,"roll":20.6875},"location":"Left Ankle"},{"euler":{"heading":93.5,"pitch":-32.0625,"roll":-7.5},"location":"Right Ankle"},{"euler":{"heading":146.0625,"pitch":-163.6875,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":337.6875,"pitch":-101.8125,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":21.625,"pitch":-152.125,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:46.970"} +{"sensors":[{"euler":{"heading":76.5625,"pitch":117.0625,"roll":5.375},"location":"Left Knee"},{"euler":{"heading":60.4375,"pitch":96.3125,"roll":32.0625},"location":"Left Ankle"},{"euler":{"heading":88.9375,"pitch":-26.125,"roll":-11.625},"location":"Right Ankle"},{"euler":{"heading":144.5625,"pitch":-164.625,"roll":47.5625},"location":"Right Hip"},{"euler":{"heading":334.875,"pitch":-105.9375,"roll":65.3125},"location":"Right Knee"},{"euler":{"heading":24.5,"pitch":-155.375,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.71"} +{"sensors":[{"euler":{"heading":92.125,"pitch":116.875,"roll":-4.875},"location":"Left Knee"},{"euler":{"heading":77.625,"pitch":104.1875,"roll":48.9375},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":-23.5,"roll":-16.625},"location":"Right Ankle"},{"euler":{"heading":146.8125,"pitch":-163.3125,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":338.9375,"pitch":-111.4375,"roll":58.125},"location":"Right Knee"},{"euler":{"heading":14.0,"pitch":-138.6875,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.171"} +{"sensors":[{"euler":{"heading":96.0625,"pitch":117.75,"roll":-5.5},"location":"Left Knee"},{"euler":{"heading":72.25,"pitch":97.5,"roll":45.75},"location":"Left Ankle"},{"euler":{"heading":78.5,"pitch":-23.4375,"roll":-20.25},"location":"Right Ankle"},{"euler":{"heading":147.75,"pitch":-163.625,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":345.875,"pitch":-112.8125,"roll":52.25},"location":"Right Knee"},{"euler":{"heading":6.125,"pitch":-122.6875,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.272"} +{"sensors":[{"euler":{"heading":78.125,"pitch":127.0625,"roll":7.0625},"location":"Left Knee"},{"euler":{"heading":50.25,"pitch":86.5625,"roll":26.125},"location":"Left Ankle"},{"euler":{"heading":75.0,"pitch":-22.6875,"roll":-21.75},"location":"Right Ankle"},{"euler":{"heading":153.0,"pitch":-161.6875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":352.75,"pitch":-111.1875,"roll":47.0},"location":"Right Knee"},{"euler":{"heading":2.3125,"pitch":-118.125,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.373"} +{"sensors":[{"euler":{"heading":40.875,"pitch":137.0,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":24.1875,"pitch":85.8125,"roll":1.4375},"location":"Left Ankle"},{"euler":{"heading":70.3125,"pitch":-20.375,"roll":-24.3125},"location":"Right Ankle"},{"euler":{"heading":156.8125,"pitch":-161.1875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":359.0625,"pitch":-110.0,"roll":41.875},"location":"Right Knee"},{"euler":{"heading":1.5625,"pitch":-115.9375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.474"} +{"sensors":[{"euler":{"heading":27.125,"pitch":143.5,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":9.875,"pitch":83.375,"roll":-14.9375},"location":"Left Ankle"},{"euler":{"heading":63.875,"pitch":-15.6875,"roll":-29.375},"location":"Right Ankle"},{"euler":{"heading":160.125,"pitch":-160.875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":5.6875,"pitch":-109.0625,"roll":35.375},"location":"Right Knee"},{"euler":{"heading":7.5,"pitch":-120.6875,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.574"} +{"sensors":[{"euler":{"heading":35.8125,"pitch":137.5,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":14.1875,"pitch":88.6875,"roll":-11.25},"location":"Left Ankle"},{"euler":{"heading":53.5625,"pitch":-12.3125,"roll":-34.0625},"location":"Right Ankle"},{"euler":{"heading":162.3125,"pitch":-162.5625,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":18.125,"pitch":-105.4375,"roll":26.375},"location":"Right Knee"},{"euler":{"heading":11.875,"pitch":-122.75,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.675"} +{"sensors":[{"euler":{"heading":46.5,"pitch":130.3125,"roll":29.9375},"location":"Left Knee"},{"euler":{"heading":26.1875,"pitch":92.375,"roll":-0.8125},"location":"Left Ankle"},{"euler":{"heading":36.125,"pitch":-5.9375,"roll":-36.8125},"location":"Right Ankle"},{"euler":{"heading":166.4375,"pitch":-158.0625,"roll":54.9375},"location":"Right Hip"},{"euler":{"heading":29.8125,"pitch":-102.0,"roll":15.1875},"location":"Right Knee"},{"euler":{"heading":11.6875,"pitch":-125.5625,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.775"} +{"sensors":[{"euler":{"heading":50.3125,"pitch":124.625,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":33.75,"pitch":95.5,"roll":3.375},"location":"Left Ankle"},{"euler":{"heading":32.0,"pitch":-5.625,"roll":-36.0},"location":"Right Ankle"},{"euler":{"heading":169.8125,"pitch":-154.25,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":29.75,"pitch":-101.3125,"roll":15.3125},"location":"Right Knee"},{"euler":{"heading":16.0625,"pitch":-131.625,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.876"} +{"sensors":[{"euler":{"heading":54.0,"pitch":121.5625,"roll":26.0625},"location":"Left Knee"},{"euler":{"heading":38.4375,"pitch":95.5,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":50.5625,"pitch":-19.375,"roll":-30.5},"location":"Right Ankle"},{"euler":{"heading":168.375,"pitch":-155.3125,"roll":42.5},"location":"Right Hip"},{"euler":{"heading":17.5625,"pitch":-100.125,"roll":30.1875},"location":"Right Knee"},{"euler":{"heading":19.75,"pitch":-140.4375,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:47.978"} +{"sensors":[{"euler":{"heading":59.5,"pitch":118.75,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":43.0,"pitch":96.3125,"roll":10.6875},"location":"Left Ankle"},{"euler":{"heading":75.375,"pitch":-29.5,"roll":-17.375},"location":"Right Ankle"},{"euler":{"heading":115.5625,"pitch":-159.6875,"roll":40.25},"location":"Right Hip"},{"euler":{"heading":359.1875,"pitch":-96.5,"roll":50.375},"location":"Right Knee"},{"euler":{"heading":22.25,"pitch":-148.5,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.78"} +{"sensors":[{"euler":{"heading":65.375,"pitch":117.0625,"roll":17.125},"location":"Left Knee"},{"euler":{"heading":48.1875,"pitch":96.9375,"roll":16.25},"location":"Left Ankle"},{"euler":{"heading":93.375,"pitch":-31.4375,"roll":-8.3125},"location":"Right Ankle"},{"euler":{"heading":149.0625,"pitch":-162.75,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":341.4375,"pitch":-99.75,"roll":66.9375},"location":"Right Knee"},{"euler":{"heading":23.0,"pitch":-152.9375,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.179"} +{"sensors":[{"euler":{"heading":73.75,"pitch":116.0,"roll":9.4375},"location":"Left Knee"},{"euler":{"heading":55.6875,"pitch":96.9375,"roll":25.625},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":-28.0625,"roll":-13.0625},"location":"Right Ankle"},{"euler":{"heading":141.625,"pitch":-165.75,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":335.1875,"pitch":-104.5,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":26.4375,"pitch":-159.125,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.279"} +{"sensors":[{"euler":{"heading":87.8125,"pitch":118.4375,"roll":-3.0625},"location":"Left Knee"},{"euler":{"heading":67.5625,"pitch":96.6875,"roll":44.4375},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":-25.75,"roll":-15.8125},"location":"Right Ankle"},{"euler":{"heading":146.125,"pitch":-164.6875,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":337.875,"pitch":-110.75,"roll":60.6875},"location":"Right Knee"},{"euler":{"heading":21.5625,"pitch":-148.1875,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.381"} +{"sensors":[{"euler":{"heading":98.375,"pitch":115.75,"roll":-8.25},"location":"Left Knee"},{"euler":{"heading":73.5625,"pitch":97.3125,"roll":52.375},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":-24.75,"roll":-18.5625},"location":"Right Ankle"},{"euler":{"heading":143.875,"pitch":-166.5625,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":343.5,"pitch":-113.5625,"roll":54.4375},"location":"Right Knee"},{"euler":{"heading":8.8125,"pitch":-124.1875,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.481"} +{"sensors":[{"euler":{"heading":86.9375,"pitch":124.3125,"roll":2.4375},"location":"Left Knee"},{"euler":{"heading":61.1875,"pitch":88.875,"roll":35.1875},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":-20.625,"roll":-22.25},"location":"Right Ankle"},{"euler":{"heading":148.0625,"pitch":-164.1875,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":346.1875,"pitch":-114.875,"roll":50.0},"location":"Right Knee"},{"euler":{"heading":1.5625,"pitch":-117.0625,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.583"} +{"sensors":[{"euler":{"heading":49.9375,"pitch":135.25,"roll":22.0625},"location":"Left Knee"},{"euler":{"heading":30.0,"pitch":85.9375,"roll":6.5625},"location":"Left Ankle"},{"euler":{"heading":73.0625,"pitch":-17.6875,"roll":-25.4375},"location":"Right Ankle"},{"euler":{"heading":152.375,"pitch":-162.625,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":351.4375,"pitch":-113.5,"roll":45.0625},"location":"Right Knee"},{"euler":{"heading":0.6875,"pitch":-116.0625,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.684"} +{"sensors":[{"euler":{"heading":30.75,"pitch":142.6875,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":7.625,"pitch":85.875,"roll":-16.125},"location":"Left Ankle"},{"euler":{"heading":66.0625,"pitch":-14.6875,"roll":-30.5625},"location":"Right Ankle"},{"euler":{"heading":156.5625,"pitch":-162.375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":0.8125,"pitch":-111.0,"roll":38.0625},"location":"Right Knee"},{"euler":{"heading":7.0,"pitch":-120.3125,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.785"} +{"sensors":[{"euler":{"heading":38.375,"pitch":138.0625,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":10.625,"pitch":91.875,"roll":-14.375},"location":"Left Ankle"},{"euler":{"heading":55.125,"pitch":-12.9375,"roll":-33.75},"location":"Right Ankle"},{"euler":{"heading":160.8125,"pitch":-163.9375,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":14.5,"pitch":-106.375,"roll":28.4375},"location":"Right Knee"},{"euler":{"heading":12.4375,"pitch":-123.625,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.886"} +{"sensors":[{"euler":{"heading":46.6875,"pitch":131.0625,"roll":30.4375},"location":"Left Knee"},{"euler":{"heading":27.375,"pitch":95.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":36.625,"pitch":-6.625,"roll":-36.25},"location":"Right Ankle"},{"euler":{"heading":166.625,"pitch":-160.1875,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":30.5625,"pitch":-101.0625,"roll":15.5},"location":"Right Knee"},{"euler":{"heading":11.125,"pitch":-126.0625,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:48.989"} +{"sensors":[{"euler":{"heading":52.0625,"pitch":125.9375,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":31.625,"pitch":95.75,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":29.5,"pitch":-5.875,"roll":-35.5625},"location":"Right Ankle"},{"euler":{"heading":169.75,"pitch":-155.25,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":29.5625,"pitch":-100.3125,"roll":15.125},"location":"Right Knee"},{"euler":{"heading":14.875,"pitch":-131.9375,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.90"} +{"sensors":[{"euler":{"heading":55.25,"pitch":122.3125,"roll":25.0625},"location":"Left Knee"},{"euler":{"heading":37.375,"pitch":96.8125,"roll":7.25},"location":"Left Ankle"},{"euler":{"heading":46.5,"pitch":-16.6875,"roll":-29.5625},"location":"Right Ankle"},{"euler":{"heading":168.875,"pitch":-155.5,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":13.5,"pitch":-98.875,"roll":30.5},"location":"Right Knee"},{"euler":{"heading":17.125,"pitch":-138.125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.193"} +{"sensors":[{"euler":{"heading":62.375,"pitch":117.4375,"roll":22.3125},"location":"Left Knee"},{"euler":{"heading":44.125,"pitch":100.375,"roll":11.75},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-27.4375,"roll":-17.625},"location":"Right Ankle"},{"euler":{"heading":159.0,"pitch":-159.75,"roll":41.6875},"location":"Right Hip"},{"euler":{"heading":354.0625,"pitch":-94.75,"roll":51.6875},"location":"Right Knee"},{"euler":{"heading":20.125,"pitch":-143.8125,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.293"} +{"sensors":[{"euler":{"heading":67.9375,"pitch":114.8125,"roll":17.5},"location":"Left Knee"},{"euler":{"heading":49.9375,"pitch":101.1875,"roll":16.9375},"location":"Left Ankle"},{"euler":{"heading":89.75,"pitch":-30.125,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":150.875,"pitch":-163.0,"roll":44.8125},"location":"Right Hip"},{"euler":{"heading":338.625,"pitch":-97.875,"roll":68.0625},"location":"Right Knee"},{"euler":{"heading":22.8125,"pitch":-149.25,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.394"} +{"sensors":[{"euler":{"heading":74.8125,"pitch":113.4375,"roll":10.625},"location":"Left Knee"},{"euler":{"heading":57.8125,"pitch":101.375,"roll":25.25},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":-27.875,"roll":-9.8125},"location":"Right Ankle"},{"euler":{"heading":145.0,"pitch":-164.375,"roll":48.125},"location":"Right Hip"},{"euler":{"heading":333.75,"pitch":-102.4375,"roll":68.6875},"location":"Right Knee"},{"euler":{"heading":26.3125,"pitch":-156.6875,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.495"} +{"sensors":[{"euler":{"heading":88.9375,"pitch":116.125,"roll":-2.5},"location":"Left Knee"},{"euler":{"heading":67.125,"pitch":99.8125,"roll":42.0},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":-25.25,"roll":-16.375},"location":"Right Ankle"},{"euler":{"heading":150.8125,"pitch":-163.1875,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":338.25,"pitch":-107.1875,"roll":61.6875},"location":"Right Knee"},{"euler":{"heading":21.5,"pitch":-147.5,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.596"} +{"sensors":[{"euler":{"heading":100.25,"pitch":114.125,"roll":-8.0625},"location":"Left Knee"},{"euler":{"heading":74.75,"pitch":102.6875,"roll":50.875},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":-23.125,"roll":-19.1875},"location":"Right Ankle"},{"euler":{"heading":146.75,"pitch":-165.25,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":340.8125,"pitch":-113.6875,"roll":55.875},"location":"Right Knee"},{"euler":{"heading":9.625,"pitch":-123.5625,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.696"} +{"sensors":[{"euler":{"heading":90.9375,"pitch":122.375,"roll":0.4375},"location":"Left Knee"},{"euler":{"heading":63.625,"pitch":91.0625,"roll":36.75},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-21.6875,"roll":-21.9375},"location":"Right Ankle"},{"euler":{"heading":151.1875,"pitch":-163.375,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":346.0625,"pitch":-113.5625,"roll":50.8125},"location":"Right Knee"},{"euler":{"heading":0.625,"pitch":-117.5,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.797"} +{"sensors":[{"euler":{"heading":53.9375,"pitch":134.1875,"roll":19.5625},"location":"Left Knee"},{"euler":{"heading":35.0625,"pitch":85.8125,"roll":10.9375},"location":"Left Ankle"},{"euler":{"heading":73.0,"pitch":-19.75,"roll":-23.8125},"location":"Right Ankle"},{"euler":{"heading":154.1875,"pitch":-162.75,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":351.5,"pitch":-111.9375,"roll":46.125},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":-115.875,"roll":50.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.897"} +{"sensors":[{"euler":{"heading":33.625,"pitch":140.75,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":10.5625,"pitch":88.125,"roll":-12.9375},"location":"Left Ankle"},{"euler":{"heading":67.5,"pitch":-16.4375,"roll":-27.8125},"location":"Right Ankle"},{"euler":{"heading":157.125,"pitch":-163.1875,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":358.0,"pitch":-110.8125,"roll":40.1875},"location":"Right Knee"},{"euler":{"heading":4.375,"pitch":-119.0,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:49.998"} +{"sensors":[{"euler":{"heading":35.0625,"pitch":140.8125,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":11.875,"pitch":89.8125,"roll":-13.1875},"location":"Left Ankle"},{"euler":{"heading":57.5625,"pitch":-13.0,"roll":-32.9375},"location":"Right Ankle"},{"euler":{"heading":161.125,"pitch":-164.3125,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":10.125,"pitch":-106.875,"roll":30.9375},"location":"Right Knee"},{"euler":{"heading":11.5,"pitch":-123.5,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.99"} +{"sensors":[{"euler":{"heading":45.4375,"pitch":132.0,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":23.625,"pitch":92.625,"roll":-3.375},"location":"Left Ankle"},{"euler":{"heading":39.875,"pitch":-10.375,"roll":-36.4375},"location":"Right Ankle"},{"euler":{"heading":166.5625,"pitch":-160.5,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":26.375,"pitch":-101.875,"roll":19.0625},"location":"Right Knee"},{"euler":{"heading":11.5625,"pitch":-125.1875,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.200"} +{"sensors":[{"euler":{"heading":50.9375,"pitch":126.625,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":29.25,"pitch":93.0625,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":30.0625,"pitch":-8.3125,"roll":-37.125},"location":"Right Ankle"},{"euler":{"heading":170.0625,"pitch":-155.625,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":28.25,"pitch":-101.5,"roll":17.25},"location":"Right Knee"},{"euler":{"heading":14.5625,"pitch":-131.375,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.302"} +{"sensors":[{"euler":{"heading":52.75,"pitch":124.625,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":34.875,"pitch":93.125,"roll":6.1875},"location":"Left Ankle"},{"euler":{"heading":49.0625,"pitch":-16.625,"roll":-31.5},"location":"Right Ankle"},{"euler":{"heading":170.6875,"pitch":-154.8125,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":9.9375,"pitch":-100.4375,"roll":33.3125},"location":"Right Knee"},{"euler":{"heading":17.5625,"pitch":-138.9375,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.405"} +{"sensors":[{"euler":{"heading":57.9375,"pitch":122.6875,"roll":20.875},"location":"Left Knee"},{"euler":{"heading":39.5,"pitch":92.9375,"roll":10.125},"location":"Left Ankle"},{"euler":{"heading":73.625,"pitch":-26.75,"roll":-18.875},"location":"Right Ankle"},{"euler":{"heading":164.0,"pitch":-157.8125,"roll":42.0},"location":"Right Hip"},{"euler":{"heading":350.5625,"pitch":-96.625,"roll":53.4375},"location":"Right Knee"},{"euler":{"heading":18.3125,"pitch":-144.6875,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.506"} +{"sensors":[{"euler":{"heading":64.75,"pitch":118.8125,"roll":17.0625},"location":"Left Knee"},{"euler":{"heading":46.125,"pitch":95.0625,"roll":15.8125},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":-31.625,"roll":-8.375},"location":"Right Ankle"},{"euler":{"heading":154.25,"pitch":-161.375,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":338.5,"pitch":-101.0625,"roll":68.875},"location":"Right Knee"},{"euler":{"heading":21.1875,"pitch":-148.25,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.606"} +{"sensors":[{"euler":{"heading":71.875,"pitch":116.4375,"roll":11.125},"location":"Left Knee"},{"euler":{"heading":54.1875,"pitch":96.6875,"roll":23.8125},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":-30.5,"roll":-9.125},"location":"Right Ankle"},{"euler":{"heading":147.875,"pitch":-163.8125,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":332.9375,"pitch":-103.0,"roll":70.0},"location":"Right Knee"},{"euler":{"heading":24.875,"pitch":-154.8125,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.707"} +{"sensors":[{"euler":{"heading":84.8125,"pitch":116.5625,"roll":0.25},"location":"Left Knee"},{"euler":{"heading":63.625,"pitch":96.875,"roll":38.1875},"location":"Left Ankle"},{"euler":{"heading":85.1875,"pitch":-29.125,"roll":-13.75},"location":"Right Ankle"},{"euler":{"heading":151.9375,"pitch":-162.375,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":336.9375,"pitch":-106.9375,"roll":62.9375},"location":"Right Knee"},{"euler":{"heading":25.0625,"pitch":-152.5625,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.809"} +{"sensors":[{"euler":{"heading":99.5625,"pitch":114.8125,"roll":-7.6875},"location":"Left Knee"},{"euler":{"heading":78.0625,"pitch":103.375,"roll":51.5625},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":-29.375,"roll":-16.625},"location":"Right Ankle"},{"euler":{"heading":149.1875,"pitch":-164.875,"roll":53.0625},"location":"Right Hip"},{"euler":{"heading":344.1875,"pitch":-111.875,"roll":56.0625},"location":"Right Knee"},{"euler":{"heading":13.3125,"pitch":-128.625,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:50.909"} +{"sensors":[{"euler":{"heading":94.6875,"pitch":121.375,"roll":-1.9375},"location":"Left Knee"},{"euler":{"heading":68.0625,"pitch":92.6875,"roll":41.6875},"location":"Left Ankle"},{"euler":{"heading":77.75,"pitch":-28.3125,"roll":-19.125},"location":"Right Ankle"},{"euler":{"heading":153.5625,"pitch":-163.375,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":349.5,"pitch":-111.375,"roll":51.125},"location":"Right Knee"},{"euler":{"heading":3.625,"pitch":-119.125,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.9"} +{"sensors":[{"euler":{"heading":59.25,"pitch":132.875,"roll":17.0},"location":"Left Knee"},{"euler":{"heading":39.4375,"pitch":86.1875,"roll":13.0},"location":"Left Ankle"},{"euler":{"heading":74.625,"pitch":-25.75,"roll":-22.25},"location":"Right Ankle"},{"euler":{"heading":156.9375,"pitch":-161.8125,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":353.0625,"pitch":-110.6875,"roll":46.8125},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":-115.8125,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.110"} +{"sensors":[{"euler":{"heading":30.5625,"pitch":141.5625,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":13.5625,"pitch":85.25,"roll":-11.625},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-22.75,"roll":-26.0},"location":"Right Ankle"},{"euler":{"heading":160.8125,"pitch":-161.125,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":358.8125,"pitch":-109.3125,"roll":40.875},"location":"Right Knee"},{"euler":{"heading":4.4375,"pitch":-118.0625,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.210"} +{"sensors":[{"euler":{"heading":28.875,"pitch":143.3125,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":8.9375,"pitch":87.375,"roll":-15.4375},"location":"Left Ankle"},{"euler":{"heading":60.6875,"pitch":-18.625,"roll":-32.125},"location":"Right Ankle"},{"euler":{"heading":164.125,"pitch":-161.875,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":6.625,"pitch":-106.6875,"roll":33.5625},"location":"Right Knee"},{"euler":{"heading":9.0625,"pitch":-122.75,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.311"} +{"sensors":[{"euler":{"heading":42.0,"pitch":134.1875,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":20.5625,"pitch":91.5,"roll":-5.25},"location":"Left Ankle"},{"euler":{"heading":47.25,"pitch":-17.9375,"roll":-34.8125},"location":"Right Ankle"},{"euler":{"heading":166.875,"pitch":-162.5,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":21.5,"pitch":-101.8125,"roll":22.25},"location":"Right Knee"},{"euler":{"heading":10.125,"pitch":-123.75,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.411"} +{"sensors":[{"euler":{"heading":49.375,"pitch":127.4375,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":28.375,"pitch":93.5625,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":29.875,"pitch":-9.25,"roll":-40.0},"location":"Right Ankle"},{"euler":{"heading":172.1875,"pitch":-157.4375,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":28.625,"pitch":-100.875,"roll":14.75},"location":"Right Knee"},{"euler":{"heading":14.4375,"pitch":-129.75,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.512"} +{"sensors":[{"euler":{"heading":52.125,"pitch":123.625,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":34.375,"pitch":94.0,"roll":4.3125},"location":"Left Ankle"},{"euler":{"heading":41.8125,"pitch":-17.25,"roll":-33.3125},"location":"Right Ankle"},{"euler":{"heading":173.375,"pitch":-155.0625,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":20.125,"pitch":-99.25,"roll":22.875},"location":"Right Knee"},{"euler":{"heading":17.8125,"pitch":-138.25,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.613"} +{"sensors":[{"euler":{"heading":58.625,"pitch":119.875,"roll":23.875},"location":"Left Knee"},{"euler":{"heading":41.1875,"pitch":96.75,"roll":9.75},"location":"Left Ankle"},{"euler":{"heading":67.0625,"pitch":-27.6875,"roll":-21.5625},"location":"Right Ankle"},{"euler":{"heading":165.875,"pitch":-157.0,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":359.0625,"pitch":-98.0,"roll":43.5625},"location":"Right Knee"},{"euler":{"heading":19.3125,"pitch":-143.25,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.713"} +{"sensors":[{"euler":{"heading":64.3125,"pitch":117.75,"roll":19.125},"location":"Left Knee"},{"euler":{"heading":45.25,"pitch":97.4375,"roll":14.375},"location":"Left Ankle"},{"euler":{"heading":91.375,"pitch":-30.1875,"roll":-9.8125},"location":"Right Ankle"},{"euler":{"heading":154.9375,"pitch":-161.0625,"roll":44.25},"location":"Right Hip"},{"euler":{"heading":337.5625,"pitch":-102.1875,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":20.8125,"pitch":-147.9375,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.814"} +{"sensors":[{"euler":{"heading":70.4375,"pitch":116.1875,"roll":13.25},"location":"Left Knee"},{"euler":{"heading":52.3125,"pitch":98.1875,"roll":21.4375},"location":"Left Ankle"},{"euler":{"heading":93.875,"pitch":-30.625,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":145.375,"pitch":-165.625,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":330.4375,"pitch":-108.6875,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":23.625,"pitch":-154.0,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:51.914"} +{"sensors":[{"euler":{"heading":83.3125,"pitch":117.75,"roll":0.75},"location":"Left Knee"},{"euler":{"heading":60.75,"pitch":94.5625,"roll":35.9375},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":-28.0,"roll":-12.8125},"location":"Right Ankle"},{"euler":{"heading":146.6875,"pitch":-165.5,"roll":49.375},"location":"Right Hip"},{"euler":{"heading":332.3125,"pitch":-111.3125,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":21.75,"pitch":-149.9375,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.15"} +{"sensors":[{"euler":{"heading":98.5625,"pitch":117.25,"roll":-6.6875},"location":"Left Knee"},{"euler":{"heading":81.625,"pitch":104.25,"roll":53.5},"location":"Left Ankle"},{"euler":{"heading":82.75,"pitch":-26.4375,"roll":-16.3125},"location":"Right Ankle"},{"euler":{"heading":147.1875,"pitch":-165.1875,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":336.0625,"pitch":-114.875,"roll":58.1875},"location":"Right Knee"},{"euler":{"heading":7.6875,"pitch":-127.375,"roll":60.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.116"} +{"sensors":[{"euler":{"heading":97.625,"pitch":121.0,"roll":-3.6875},"location":"Left Knee"},{"euler":{"heading":71.625,"pitch":94.625,"roll":43.4375},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-26.3125,"roll":-18.875},"location":"Right Ankle"},{"euler":{"heading":153.3125,"pitch":-163.375,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":343.3125,"pitch":-112.25,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":2.625,"pitch":-118.5625,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.216"} +{"sensors":[{"euler":{"heading":64.75,"pitch":131.8125,"roll":14.0625},"location":"Left Knee"},{"euler":{"heading":40.5,"pitch":85.8125,"roll":17.3125},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":-24.75,"roll":-21.4375},"location":"Right Ankle"},{"euler":{"heading":155.3125,"pitch":-163.0625,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":348.0,"pitch":-111.125,"roll":48.25},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":-115.8125,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.317"} +{"sensors":[{"euler":{"heading":31.25,"pitch":141.6875,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":15.625,"pitch":83.5625,"roll":-7.6875},"location":"Left Ankle"},{"euler":{"heading":71.8125,"pitch":-22.3125,"roll":-25.375},"location":"Right Ankle"},{"euler":{"heading":157.5,"pitch":-163.0625,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":354.0625,"pitch":-110.25,"roll":42.5},"location":"Right Knee"},{"euler":{"heading":1.1875,"pitch":-116.8125,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.419"} +{"sensors":[{"euler":{"heading":21.3125,"pitch":146.6875,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":10.125,"pitch":84.0,"roll":-15.875},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":-19.25,"roll":-30.5625},"location":"Right Ankle"},{"euler":{"heading":159.625,"pitch":-164.875,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":2.5625,"pitch":-107.5625,"roll":35.9375},"location":"Right Knee"},{"euler":{"heading":6.5625,"pitch":-121.8125,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.519"} +{"sensors":[{"euler":{"heading":35.125,"pitch":138.0625,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":23.0625,"pitch":89.0,"roll":-5.4375},"location":"Left Ankle"},{"euler":{"heading":51.5625,"pitch":-18.4375,"roll":-33.5625},"location":"Right Ankle"},{"euler":{"heading":163.375,"pitch":-164.9375,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":18.6875,"pitch":-102.1875,"roll":24.375},"location":"Right Knee"},{"euler":{"heading":9.375,"pitch":-124.0,"roll":54.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.620"} +{"sensors":[{"euler":{"heading":44.8125,"pitch":130.8125,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":27.5625,"pitch":90.375,"roll":-0.8125},"location":"Left Ankle"},{"euler":{"heading":32.5,"pitch":-4.6875,"roll":-38.5625},"location":"Right Ankle"},{"euler":{"heading":168.8125,"pitch":-157.125,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":21.25,"pitch":-102.5,"roll":16.1875},"location":"Right Knee"},{"euler":{"heading":12.0,"pitch":-127.625,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.721"} +{"sensors":[{"euler":{"heading":48.1875,"pitch":127.125,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":31.4375,"pitch":90.25,"roll":2.75},"location":"Left Ankle"},{"euler":{"heading":39.125,"pitch":-10.3125,"roll":-32.1875},"location":"Right Ankle"},{"euler":{"heading":170.0,"pitch":-154.8125,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":13.625,"pitch":-99.8125,"roll":23.6875},"location":"Right Knee"},{"euler":{"heading":13.9375,"pitch":-133.9375,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.821"} +{"sensors":[{"euler":{"heading":52.0625,"pitch":124.3125,"roll":25.0},"location":"Left Knee"},{"euler":{"heading":38.125,"pitch":91.5,"roll":8.125},"location":"Left Ankle"},{"euler":{"heading":63.3125,"pitch":-25.5,"roll":-22.4375},"location":"Right Ankle"},{"euler":{"heading":165.875,"pitch":-156.5625,"roll":42.3125},"location":"Right Hip"},{"euler":{"heading":355.625,"pitch":-98.6875,"roll":44.25},"location":"Right Knee"},{"euler":{"heading":16.375,"pitch":-140.5,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:52.922"} +{"sensors":[{"euler":{"heading":58.8125,"pitch":120.375,"roll":21.375},"location":"Left Knee"},{"euler":{"heading":44.625,"pitch":93.0,"roll":13.8125},"location":"Left Ankle"},{"euler":{"heading":89.4375,"pitch":-31.3125,"roll":-10.8125},"location":"Right Ankle"},{"euler":{"heading":157.3125,"pitch":-160.9375,"roll":42.75},"location":"Right Hip"},{"euler":{"heading":338.9375,"pitch":-98.0625,"roll":63.25},"location":"Right Knee"},{"euler":{"heading":19.75,"pitch":-146.375,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.22"} +{"sensors":[{"euler":{"heading":65.3125,"pitch":117.875,"roll":15.5},"location":"Left Knee"},{"euler":{"heading":51.8125,"pitch":95.0625,"roll":21.8125},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":-32.3125,"roll":-6.9375},"location":"Right Ankle"},{"euler":{"heading":147.0,"pitch":-164.75,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":329.0,"pitch":-103.0,"roll":71.75},"location":"Right Knee"},{"euler":{"heading":21.75,"pitch":-150.875,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.123"} +{"sensors":[{"euler":{"heading":76.1875,"pitch":118.0,"roll":6.1875},"location":"Left Knee"},{"euler":{"heading":58.9375,"pitch":92.1875,"roll":34.375},"location":"Left Ankle"},{"euler":{"heading":86.8125,"pitch":-27.3125,"roll":-11.8125},"location":"Right Ankle"},{"euler":{"heading":147.6875,"pitch":-164.625,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":328.5,"pitch":-107.5625,"roll":66.1875},"location":"Right Knee"},{"euler":{"heading":22.4375,"pitch":-150.8125,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.223"} +{"sensors":[{"euler":{"heading":93.8125,"pitch":116.625,"roll":-4.9375},"location":"Left Knee"},{"euler":{"heading":68.4375,"pitch":96.4375,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-25.75,"roll":-16.3125},"location":"Right Ankle"},{"euler":{"heading":149.6875,"pitch":-164.5,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":333.875,"pitch":-112.125,"roll":59.4375},"location":"Right Knee"},{"euler":{"heading":9.1875,"pitch":-129.1875,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.323"} +{"sensors":[{"euler":{"heading":90.5625,"pitch":122.3125,"roll":-0.1875},"location":"Left Knee"},{"euler":{"heading":58.1875,"pitch":87.875,"roll":34.6875},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":-25.5,"roll":-17.8125},"location":"Right Ankle"},{"euler":{"heading":151.4375,"pitch":-163.8125,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":338.75,"pitch":-111.6875,"roll":54.4375},"location":"Right Knee"},{"euler":{"heading":4.4375,"pitch":-119.0,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.424"} +{"sensors":[{"euler":{"heading":58.0,"pitch":132.5625,"roll":17.5625},"location":"Left Knee"},{"euler":{"heading":34.0625,"pitch":84.6875,"roll":9.3125},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-23.5,"roll":-20.3125},"location":"Right Ankle"},{"euler":{"heading":154.1875,"pitch":-163.0,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":342.625,"pitch":-111.875,"roll":49.9375},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":-115.125,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.524"} +{"sensors":[{"euler":{"heading":28.1875,"pitch":142.625,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":12.75,"pitch":82.0,"roll":-12.0625},"location":"Left Ankle"},{"euler":{"heading":72.5,"pitch":-20.5,"roll":-25.5},"location":"Right Ankle"},{"euler":{"heading":155.9375,"pitch":-163.4375,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":347.375,"pitch":-111.0625,"roll":44.4375},"location":"Right Knee"},{"euler":{"heading":2.625,"pitch":-118.25,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.625"} +{"sensors":[{"euler":{"heading":28.8125,"pitch":143.5,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":12.375,"pitch":87.625,"roll":-13.0},"location":"Left Ankle"},{"euler":{"heading":64.3125,"pitch":-17.0625,"roll":-29.8125},"location":"Right Ankle"},{"euler":{"heading":158.5,"pitch":-165.4375,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":358.25,"pitch":-108.375,"roll":36.5},"location":"Right Knee"},{"euler":{"heading":7.375,"pitch":-122.8125,"roll":53.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.727"} +{"sensors":[{"euler":{"heading":39.5,"pitch":135.375,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":25.5625,"pitch":90.0625,"roll":-1.8125},"location":"Left Ankle"},{"euler":{"heading":46.5,"pitch":-15.4375,"roll":-33.6875},"location":"Right Ankle"},{"euler":{"heading":164.0,"pitch":-162.4375,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":16.0,"pitch":-102.3125,"roll":23.625},"location":"Right Knee"},{"euler":{"heading":8.125,"pitch":-124.4375,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.827"} +{"sensors":[{"euler":{"heading":46.5625,"pitch":129.4375,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":31.1875,"pitch":91.0625,"roll":2.75},"location":"Left Ankle"},{"euler":{"heading":34.625,"pitch":-7.75,"roll":-33.9375},"location":"Right Ankle"},{"euler":{"heading":170.5625,"pitch":-155.5,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":17.6875,"pitch":-101.3125,"roll":18.5625},"location":"Right Knee"},{"euler":{"heading":12.4375,"pitch":-132.25,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:53.928"} +{"sensors":[{"euler":{"heading":49.6875,"pitch":126.0625,"roll":26.0625},"location":"Left Knee"},{"euler":{"heading":36.875,"pitch":91.75,"roll":7.0},"location":"Left Ankle"},{"euler":{"heading":49.125,"pitch":-14.5,"roll":-29.9375},"location":"Right Ankle"},{"euler":{"heading":167.625,"pitch":-155.9375,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":3.3125,"pitch":-99.9375,"roll":32.0625},"location":"Right Knee"},{"euler":{"heading":14.125,"pitch":-137.25,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.29"} +{"sensors":[{"euler":{"heading":55.5625,"pitch":121.4375,"roll":23.75},"location":"Left Knee"},{"euler":{"heading":43.0625,"pitch":94.8125,"roll":11.4375},"location":"Left Ankle"},{"euler":{"heading":72.625,"pitch":-28.625,"roll":-17.4375},"location":"Right Ankle"},{"euler":{"heading":163.25,"pitch":-158.75,"roll":41.9375},"location":"Right Hip"},{"euler":{"heading":348.125,"pitch":-97.5625,"roll":50.875},"location":"Right Knee"},{"euler":{"heading":18.4375,"pitch":-143.875,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.130"} +{"sensors":[{"euler":{"heading":62.375,"pitch":118.75,"roll":18.875},"location":"Left Knee"},{"euler":{"heading":46.25,"pitch":94.875,"roll":16.0625},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":-32.8125,"roll":-6.5},"location":"Right Ankle"},{"euler":{"heading":154.5625,"pitch":-162.6875,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":332.5625,"pitch":-100.625,"roll":68.25},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-148.9375,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.231"} +{"sensors":[{"euler":{"heading":69.5,"pitch":117.625,"roll":12.3125},"location":"Left Knee"},{"euler":{"heading":52.375,"pitch":95.0625,"roll":22.75},"location":"Left Ankle"},{"euler":{"heading":94.4375,"pitch":-32.625,"roll":-6.875},"location":"Right Ankle"},{"euler":{"heading":147.3125,"pitch":-165.0,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":328.3125,"pitch":-105.9375,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-155.75,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.331"} +{"sensors":[{"euler":{"heading":82.5,"pitch":118.125,"roll":1.4375},"location":"Left Knee"},{"euler":{"heading":60.375,"pitch":94.75,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":-28.375,"roll":-14.1875},"location":"Right Ankle"},{"euler":{"heading":149.9375,"pitch":-164.3125,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":327.75,"pitch":-109.5,"roll":64.8125},"location":"Right Knee"},{"euler":{"heading":24.4375,"pitch":-151.5625,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.432"} +{"sensors":[{"euler":{"heading":94.875,"pitch":115.75,"roll":-4.6875},"location":"Left Knee"},{"euler":{"heading":67.75,"pitch":99.1875,"roll":44.5625},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":-26.125,"roll":-16.0625},"location":"Right Ankle"},{"euler":{"heading":149.0,"pitch":-164.875,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":331.1875,"pitch":-114.5625,"roll":59.4375},"location":"Right Knee"},{"euler":{"heading":14.9375,"pitch":-130.1875,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.533"} +{"sensors":[{"euler":{"heading":85.625,"pitch":122.9375,"roll":3.3125},"location":"Left Knee"},{"euler":{"heading":57.5,"pitch":89.3125,"roll":30.5625},"location":"Left Ankle"},{"euler":{"heading":80.5625,"pitch":-24.125,"roll":-19.5625},"location":"Right Ankle"},{"euler":{"heading":152.0625,"pitch":-163.25,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":334.625,"pitch":-114.5625,"roll":54.8125},"location":"Right Knee"},{"euler":{"heading":5.0,"pitch":-121.0,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.634"} +{"sensors":[{"euler":{"heading":50.6875,"pitch":134.375,"roll":21.0625},"location":"Left Knee"},{"euler":{"heading":30.0625,"pitch":84.8125,"roll":3.875},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":-22.6875,"roll":-23.0625},"location":"Right Ankle"},{"euler":{"heading":154.6875,"pitch":-162.9375,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":340.875,"pitch":-112.5625,"roll":49.5625},"location":"Right Knee"},{"euler":{"heading":1.0,"pitch":-117.25,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.735"} +{"sensors":[{"euler":{"heading":28.0,"pitch":142.9375,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":9.5625,"pitch":84.3125,"roll":-15.5625},"location":"Left Ankle"},{"euler":{"heading":70.0625,"pitch":-20.0,"roll":-28.25},"location":"Right Ankle"},{"euler":{"heading":158.0,"pitch":-163.75,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":349.1875,"pitch":-109.8125,"roll":42.75},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":-120.625,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.836"} +{"sensors":[{"euler":{"heading":32.9375,"pitch":141.5625,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":13.875,"pitch":90.3125,"roll":-11.1875},"location":"Left Ankle"},{"euler":{"heading":58.25,"pitch":-16.4375,"roll":-32.0},"location":"Right Ankle"},{"euler":{"heading":160.625,"pitch":-165.875,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":-106.1875,"roll":34.0625},"location":"Right Knee"},{"euler":{"heading":10.5625,"pitch":-123.875,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:54.936"} +{"sensors":[{"euler":{"heading":43.5625,"pitch":132.75,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":26.0,"pitch":92.3125,"roll":-1.8125},"location":"Left Ankle"},{"euler":{"heading":41.375,"pitch":-13.1875,"roll":-35.1875},"location":"Right Ankle"},{"euler":{"heading":166.3125,"pitch":-163.0625,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":15.6875,"pitch":-101.0,"roll":21.75},"location":"Right Knee"},{"euler":{"heading":10.4375,"pitch":-125.375,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.37"} +{"sensors":[{"euler":{"heading":49.75,"pitch":127.125,"roll":28.625},"location":"Left Knee"},{"euler":{"heading":33.0,"pitch":94.5,"roll":2.625},"location":"Left Ankle"},{"euler":{"heading":33.0625,"pitch":-9.875,"roll":-35.0},"location":"Right Ankle"},{"euler":{"heading":168.625,"pitch":-157.0625,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":16.5,"pitch":-101.0,"roll":17.625},"location":"Right Knee"},{"euler":{"heading":13.625,"pitch":-130.9375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.139"} +{"sensors":[{"euler":{"heading":52.9375,"pitch":123.0625,"roll":26.875},"location":"Left Knee"},{"euler":{"heading":38.875,"pitch":95.3125,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":48.25,"pitch":-19.6875,"roll":-29.5625},"location":"Right Ankle"},{"euler":{"heading":169.9375,"pitch":-155.6875,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":4.125,"pitch":-98.0625,"roll":30.625},"location":"Right Knee"},{"euler":{"heading":17.5625,"pitch":-138.4375,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.240"} +{"sensors":[{"euler":{"heading":57.6875,"pitch":120.625,"roll":23.375},"location":"Left Knee"},{"euler":{"heading":42.5625,"pitch":95.25,"roll":10.8125},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":-32.3125,"roll":-17.375},"location":"Right Ankle"},{"euler":{"heading":165.3125,"pitch":-158.375,"roll":42.0},"location":"Right Hip"},{"euler":{"heading":348.75,"pitch":-94.0625,"roll":50.4375},"location":"Right Knee"},{"euler":{"heading":19.5625,"pitch":-145.4375,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.341"} +{"sensors":[{"euler":{"heading":64.125,"pitch":117.625,"roll":18.8125},"location":"Left Knee"},{"euler":{"heading":47.25,"pitch":96.125,"roll":15.1875},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":-34.0625,"roll":-5.8125},"location":"Right Ankle"},{"euler":{"heading":154.1875,"pitch":-162.6875,"roll":45.9375},"location":"Right Hip"},{"euler":{"heading":329.0625,"pitch":-98.1875,"roll":70.3125},"location":"Right Knee"},{"euler":{"heading":23.125,"pitch":-151.125,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.442"} +{"sensors":[{"euler":{"heading":71.75,"pitch":116.5,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":53.5625,"pitch":96.1875,"roll":23.0},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":-31.5625,"roll":-7.0},"location":"Right Ankle"},{"euler":{"heading":146.1875,"pitch":-165.5625,"roll":48.3125},"location":"Right Hip"},{"euler":{"heading":323.3125,"pitch":-102.125,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":25.6875,"pitch":-156.875,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.542"} +{"sensors":[{"euler":{"heading":85.25,"pitch":117.875,"roll":-0.0625},"location":"Left Knee"},{"euler":{"heading":63.1875,"pitch":95.3125,"roll":39.1875},"location":"Left Ankle"},{"euler":{"heading":86.875,"pitch":-26.0625,"roll":-15.0625},"location":"Right Ankle"},{"euler":{"heading":148.25,"pitch":-164.9375,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":321.125,"pitch":-108.8125,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":24.6875,"pitch":-151.625,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.643"} +{"sensors":[{"euler":{"heading":99.0,"pitch":111.375,"roll":-5.625},"location":"Left Knee"},{"euler":{"heading":77.0,"pitch":106.75,"roll":49.5625},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":-24.25,"roll":-16.375},"location":"Right Ankle"},{"euler":{"heading":150.0,"pitch":-164.3125,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":325.1875,"pitch":-113.625,"roll":61.5625},"location":"Right Knee"},{"euler":{"heading":18.3125,"pitch":-132.0,"roll":63.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.744"} +{"sensors":[{"euler":{"heading":93.5,"pitch":120.5,"roll":0.1875},"location":"Left Knee"},{"euler":{"heading":65.625,"pitch":95.4375,"roll":37.8125},"location":"Left Ankle"},{"euler":{"heading":80.9375,"pitch":-22.1875,"roll":-19.4375},"location":"Right Ankle"},{"euler":{"heading":152.25,"pitch":-163.625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":330.0,"pitch":-114.25,"roll":55.9375},"location":"Right Knee"},{"euler":{"heading":7.9375,"pitch":-121.125,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.845"} +{"sensors":[{"euler":{"heading":56.875,"pitch":133.5625,"roll":18.1875},"location":"Left Knee"},{"euler":{"heading":32.8125,"pitch":84.375,"roll":9.875},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-20.6875,"roll":-22.1875},"location":"Right Ankle"},{"euler":{"heading":154.0,"pitch":-163.9375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":335.1875,"pitch":-112.875,"roll":51.0625},"location":"Right Knee"},{"euler":{"heading":1.375,"pitch":-116.5625,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:55.946"} +{"sensors":[{"euler":{"heading":29.0,"pitch":142.8125,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":13.0,"pitch":82.25,"roll":-11.125},"location":"Left Ankle"},{"euler":{"heading":71.5625,"pitch":-18.0625,"roll":-26.875},"location":"Right Ankle"},{"euler":{"heading":156.0,"pitch":-164.5,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":342.25,"pitch":-111.5625,"roll":45.0},"location":"Right Knee"},{"euler":{"heading":4.0,"pitch":-118.625,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.47"} +{"sensors":[{"euler":{"heading":34.0,"pitch":141.375,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":10.75,"pitch":88.125,"roll":-14.4375},"location":"Left Ankle"},{"euler":{"heading":62.0,"pitch":-15.125,"roll":-31.1875},"location":"Right Ankle"},{"euler":{"heading":159.25,"pitch":-165.75,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":353.5625,"pitch":-107.8125,"roll":36.3125},"location":"Right Knee"},{"euler":{"heading":9.5,"pitch":-124.25,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.147"} +{"sensors":[{"euler":{"heading":43.375,"pitch":133.75,"roll":30.75},"location":"Left Knee"},{"euler":{"heading":24.6875,"pitch":89.75,"roll":-2.6875},"location":"Left Ankle"},{"euler":{"heading":42.0625,"pitch":-12.875,"roll":-35.5},"location":"Right Ankle"},{"euler":{"heading":166.0625,"pitch":-161.875,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":12.5,"pitch":-101.0625,"roll":22.3125},"location":"Right Knee"},{"euler":{"heading":9.25,"pitch":-127.0,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.248"} +{"sensors":[{"euler":{"heading":49.625,"pitch":127.0,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":31.375,"pitch":93.1875,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":32.5,"pitch":-8.1875,"roll":-36.375},"location":"Right Ankle"},{"euler":{"heading":171.5,"pitch":-154.625,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":12.4375,"pitch":-101.875,"roll":20.125},"location":"Right Knee"},{"euler":{"heading":15.0625,"pitch":-133.25,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.349"} +{"sensors":[{"euler":{"heading":53.3125,"pitch":122.5,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":38.6875,"pitch":94.875,"roll":6.625},"location":"Left Ankle"},{"euler":{"heading":48.3125,"pitch":-18.75,"roll":-31.8125},"location":"Right Ankle"},{"euler":{"heading":171.6875,"pitch":-154.875,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":0.25,"pitch":-99.75,"roll":33.625},"location":"Right Knee"},{"euler":{"heading":18.75,"pitch":-139.5,"roll":62.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.449"} +{"sensors":[{"euler":{"heading":58.5625,"pitch":120.1875,"roll":23.625},"location":"Left Knee"},{"euler":{"heading":44.125,"pitch":95.3125,"roll":11.75},"location":"Left Ankle"},{"euler":{"heading":73.3125,"pitch":-32.0625,"roll":-18.75},"location":"Right Ankle"},{"euler":{"heading":165.375,"pitch":-158.25,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":342.6875,"pitch":-98.25,"roll":54.5625},"location":"Right Knee"},{"euler":{"heading":19.8125,"pitch":-145.25,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.550"} +{"sensors":[{"euler":{"heading":64.375,"pitch":118.125,"roll":18.4375},"location":"Left Knee"},{"euler":{"heading":47.5625,"pitch":95.625,"roll":16.4375},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":-34.0,"roll":-6.875},"location":"Right Ankle"},{"euler":{"heading":156.0625,"pitch":-161.375,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":327.3125,"pitch":-102.8125,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":21.875,"pitch":-148.6875,"roll":65.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.650"} +{"sensors":[{"euler":{"heading":71.875,"pitch":116.3125,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":54.625,"pitch":96.75,"roll":24.3125},"location":"Left Ankle"},{"euler":{"heading":92.6875,"pitch":-30.125,"roll":-7.9375},"location":"Right Ankle"},{"euler":{"heading":149.1875,"pitch":-163.4375,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":318.875,"pitch":-106.5625,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":24.75,"pitch":-154.875,"roll":66.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.750"} +{"sensors":[{"euler":{"heading":85.625,"pitch":116.5,"roll":0.5625},"location":"Left Knee"},{"euler":{"heading":62.5,"pitch":95.8125,"roll":38.375},"location":"Left Ankle"},{"euler":{"heading":86.25,"pitch":-28.0,"roll":-14.4375},"location":"Right Ankle"},{"euler":{"heading":151.5625,"pitch":-163.6875,"roll":50.9375},"location":"Right Hip"},{"euler":{"heading":321.6875,"pitch":-110.5625,"roll":66.625},"location":"Right Knee"},{"euler":{"heading":25.5,"pitch":-151.4375,"roll":66.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.855"} +{"sensors":[{"euler":{"heading":98.6875,"pitch":115.0625,"roll":-6.1875},"location":"Left Knee"},{"euler":{"heading":72.25,"pitch":102.4375,"roll":48.25},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":-26.5,"roll":-16.4375},"location":"Right Ankle"},{"euler":{"heading":149.375,"pitch":-164.9375,"roll":55.375},"location":"Right Hip"},{"euler":{"heading":325.375,"pitch":-114.75,"roll":60.875},"location":"Right Knee"},{"euler":{"heading":13.8125,"pitch":-129.0625,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:56.956"} +{"sensors":[{"euler":{"heading":91.0625,"pitch":121.3125,"roll":1.25},"location":"Left Knee"},{"euler":{"heading":60.5,"pitch":92.3125,"roll":34.5},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":-23.9375,"roll":-19.625},"location":"Right Ankle"},{"euler":{"heading":154.0625,"pitch":-163.0,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":330.3125,"pitch":-114.75,"roll":55.25},"location":"Right Knee"},{"euler":{"heading":5.4375,"pitch":-119.625,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.57"} +{"sensors":[{"euler":{"heading":58.3125,"pitch":132.5,"roll":19.0},"location":"Left Knee"},{"euler":{"heading":16.25,"pitch":85.5625,"roll":7.4375},"location":"Left Ankle"},{"euler":{"heading":75.6875,"pitch":-21.5,"roll":-23.3125},"location":"Right Ankle"},{"euler":{"heading":157.4375,"pitch":-162.0,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":334.1875,"pitch":-113.125,"roll":51.25},"location":"Right Knee"},{"euler":{"heading":2.6875,"pitch":-117.25,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.157"} +{"sensors":[{"euler":{"heading":31.6875,"pitch":141.6875,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":10.0625,"pitch":84.5,"roll":-14.1875},"location":"Left Ankle"},{"euler":{"heading":70.6875,"pitch":-18.3125,"roll":-27.4375},"location":"Right Ankle"},{"euler":{"heading":158.875,"pitch":-163.25,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":339.4375,"pitch":-111.875,"roll":45.5625},"location":"Right Knee"},{"euler":{"heading":4.625,"pitch":-119.75,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.259"} +{"sensors":[{"euler":{"heading":31.75,"pitch":142.9375,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":10.4375,"pitch":88.875,"roll":-14.9375},"location":"Left Ankle"},{"euler":{"heading":61.9375,"pitch":-16.0625,"roll":-32.625},"location":"Right Ankle"},{"euler":{"heading":161.625,"pitch":-164.875,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":349.5625,"pitch":-108.5625,"roll":37.3125},"location":"Right Knee"},{"euler":{"heading":9.5625,"pitch":-124.6875,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.359"} +{"sensors":[{"euler":{"heading":42.5625,"pitch":134.375,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":24.0625,"pitch":90.75,"roll":-3.125},"location":"Left Ankle"},{"euler":{"heading":41.375,"pitch":-12.0625,"roll":-35.3125},"location":"Right Ankle"},{"euler":{"heading":166.0,"pitch":-162.875,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":6.8125,"pitch":-102.25,"roll":24.9375},"location":"Right Knee"},{"euler":{"heading":9.5625,"pitch":-126.0,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.460"} +{"sensors":[{"euler":{"heading":49.25,"pitch":128.0625,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":28.875,"pitch":91.875,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":29.9375,"pitch":-6.3125,"roll":-37.125},"location":"Right Ankle"},{"euler":{"heading":171.6875,"pitch":-155.625,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":10.1875,"pitch":-102.25,"roll":18.875},"location":"Right Knee"},{"euler":{"heading":13.6875,"pitch":-132.6875,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.561"} +{"sensors":[{"euler":{"heading":51.375,"pitch":125.1875,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":34.0625,"pitch":92.0625,"roll":4.25},"location":"Left Ankle"},{"euler":{"heading":44.0625,"pitch":-17.125,"roll":-31.75},"location":"Right Ankle"},{"euler":{"heading":172.1875,"pitch":-154.5625,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":358.8125,"pitch":-99.0625,"roll":30.8125},"location":"Right Knee"},{"euler":{"heading":16.0625,"pitch":-140.125,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.662"} +{"sensors":[{"euler":{"heading":58.25,"pitch":121.5625,"roll":23.3125},"location":"Left Knee"},{"euler":{"heading":39.3125,"pitch":94.1875,"roll":8.8125},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-29.5,"roll":-19.1875},"location":"Right Ankle"},{"euler":{"heading":165.375,"pitch":-157.5,"roll":43.0},"location":"Right Hip"},{"euler":{"heading":339.3125,"pitch":-97.8125,"roll":52.5},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-145.4375,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.762"} +{"sensors":[{"euler":{"heading":64.5625,"pitch":118.5625,"roll":19.125},"location":"Left Knee"},{"euler":{"heading":43.9375,"pitch":95.5625,"roll":13.5},"location":"Left Ankle"},{"euler":{"heading":93.1875,"pitch":-32.6875,"roll":-8.8125},"location":"Right Ankle"},{"euler":{"heading":157.0,"pitch":-161.75,"roll":44.25},"location":"Right Hip"},{"euler":{"heading":322.8125,"pitch":-100.0,"roll":70.1875},"location":"Right Knee"},{"euler":{"heading":21.5,"pitch":-151.0,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.863"} +{"sensors":[{"euler":{"heading":71.3125,"pitch":116.625,"roll":13.1875},"location":"Left Knee"},{"euler":{"heading":50.4375,"pitch":96.5,"roll":20.5625},"location":"Left Ankle"},{"euler":{"heading":92.8125,"pitch":-33.0,"roll":-7.4375},"location":"Right Ankle"},{"euler":{"heading":148.625,"pitch":-164.9375,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":318.3125,"pitch":-106.1875,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":24.875,"pitch":-157.625,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:57.963"} +{"sensors":[{"euler":{"heading":85.375,"pitch":118.3125,"roll":0.5},"location":"Left Knee"},{"euler":{"heading":58.5625,"pitch":93.5625,"roll":35.5},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":-29.75,"roll":-14.1875},"location":"Right Ankle"},{"euler":{"heading":153.6875,"pitch":-163.1875,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":319.125,"pitch":-109.25,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":22.125,"pitch":-150.375,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.64"} +{"sensors":[{"euler":{"heading":98.375,"pitch":117.0625,"roll":-6.3125},"location":"Left Knee"},{"euler":{"heading":70.25,"pitch":99.0,"roll":48.375},"location":"Left Ankle"},{"euler":{"heading":81.0625,"pitch":-26.1875,"roll":-17.0},"location":"Right Ankle"},{"euler":{"heading":148.5625,"pitch":-164.625,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":319.75,"pitch":-115.25,"roll":62.0},"location":"Right Knee"},{"euler":{"heading":8.0625,"pitch":-123.5,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.165"} +{"sensors":[{"euler":{"heading":92.0,"pitch":122.1875,"roll":-0.25},"location":"Left Knee"},{"euler":{"heading":61.6875,"pitch":89.5,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":78.0625,"pitch":-25.8125,"roll":-19.75},"location":"Right Ankle"},{"euler":{"heading":152.75,"pitch":-163.5,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":325.875,"pitch":-113.9375,"roll":56.6875},"location":"Right Knee"},{"euler":{"heading":2.5,"pitch":-117.75,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.266"} +{"sensors":[{"euler":{"heading":59.25,"pitch":132.5,"roll":17.25},"location":"Left Knee"},{"euler":{"heading":36.75,"pitch":84.5625,"roll":12.3125},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":-25.25,"roll":-22.125},"location":"Right Ankle"},{"euler":{"heading":155.1875,"pitch":-163.875,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":330.4375,"pitch":-112.25,"roll":52.125},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":-114.1875,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.367"} +{"sensors":[{"euler":{"heading":31.6875,"pitch":141.4375,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":13.125,"pitch":82.9375,"roll":-10.875},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-21.1875,"roll":-26.0},"location":"Right Ankle"},{"euler":{"heading":158.25,"pitch":-162.9375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":335.3125,"pitch":-111.625,"roll":46.5},"location":"Right Knee"},{"euler":{"heading":3.125,"pitch":-117.6875,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.467"} +{"sensors":[{"euler":{"heading":28.25,"pitch":144.3125,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":8.6875,"pitch":87.3125,"roll":-16.0},"location":"Left Ankle"},{"euler":{"heading":62.8125,"pitch":-17.25,"roll":-30.1875},"location":"Right Ankle"},{"euler":{"heading":161.0,"pitch":-164.125,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":344.9375,"pitch":-108.3125,"roll":38.3125},"location":"Right Knee"},{"euler":{"heading":7.0,"pitch":-123.5625,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.568"} +{"sensors":[{"euler":{"heading":40.1875,"pitch":135.5,"roll":32.0},"location":"Left Knee"},{"euler":{"heading":22.75,"pitch":89.0625,"roll":-4.3125},"location":"Left Ankle"},{"euler":{"heading":43.0,"pitch":-14.0625,"roll":-34.75},"location":"Right Ankle"},{"euler":{"heading":166.75,"pitch":-161.375,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":3.0625,"pitch":-102.0,"roll":25.4375},"location":"Right Knee"},{"euler":{"heading":7.8125,"pitch":-125.1875,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.670"} +{"sensors":[{"euler":{"heading":48.375,"pitch":128.5,"roll":30.0625},"location":"Left Knee"},{"euler":{"heading":28.625,"pitch":91.625,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":30.9375,"pitch":-7.9375,"roll":-37.375},"location":"Right Ankle"},{"euler":{"heading":172.4375,"pitch":-155.0625,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":4.8125,"pitch":-102.5625,"roll":20.375},"location":"Right Knee"},{"euler":{"heading":12.5,"pitch":-130.9375,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.770"} +{"sensors":[{"euler":{"heading":51.25,"pitch":124.9375,"roll":28.0625},"location":"Left Knee"},{"euler":{"heading":34.625,"pitch":92.25,"roll":4.0},"location":"Left Ankle"},{"euler":{"heading":43.375,"pitch":-16.5,"roll":-33.125},"location":"Right Ankle"},{"euler":{"heading":174.75,"pitch":-153.8125,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":352.0625,"pitch":-99.6875,"roll":33.4375},"location":"Right Knee"},{"euler":{"heading":16.1875,"pitch":-138.8125,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.871"} +{"sensors":[{"euler":{"heading":56.8125,"pitch":122.0,"roll":24.1875},"location":"Left Knee"},{"euler":{"heading":38.125,"pitch":92.4375,"roll":8.125},"location":"Left Ankle"},{"euler":{"heading":67.75,"pitch":-29.375,"roll":-21.125},"location":"Right Ankle"},{"euler":{"heading":166.8125,"pitch":-157.6875,"roll":41.0},"location":"Right Hip"},{"euler":{"heading":334.1875,"pitch":-98.875,"roll":54.1875},"location":"Right Knee"},{"euler":{"heading":18.125,"pitch":-144.9375,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:58.971"} +{"sensors":[{"euler":{"heading":63.4375,"pitch":119.125,"roll":19.6875},"location":"Left Knee"},{"euler":{"heading":43.125,"pitch":93.875,"roll":13.1875},"location":"Left Ankle"},{"euler":{"heading":94.1875,"pitch":-32.9375,"roll":-8.5},"location":"Right Ankle"},{"euler":{"heading":158.0,"pitch":-160.875,"roll":43.75},"location":"Right Hip"},{"euler":{"heading":317.6875,"pitch":-102.875,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":20.8125,"pitch":-150.0,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.74"} +{"sensors":[{"euler":{"heading":69.9375,"pitch":116.9375,"roll":13.75},"location":"Left Knee"},{"euler":{"heading":50.625,"pitch":95.5,"roll":20.75},"location":"Left Ankle"},{"euler":{"heading":94.625,"pitch":-32.25,"roll":-7.25},"location":"Right Ankle"},{"euler":{"heading":149.3125,"pitch":-164.375,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":311.0625,"pitch":-108.6875,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":23.625,"pitch":-155.625,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.175"} +{"sensors":[{"euler":{"heading":82.5,"pitch":116.1875,"roll":2.6875},"location":"Left Knee"},{"euler":{"heading":58.6875,"pitch":93.5625,"roll":34.625},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":-29.5625,"roll":-12.75},"location":"Right Ankle"},{"euler":{"heading":153.125,"pitch":-163.375,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":313.625,"pitch":-110.5,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":24.4375,"pitch":-151.8125,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.276"} +{"sensors":[{"euler":{"heading":98.125,"pitch":115.0,"roll":-6.0625},"location":"Left Knee"},{"euler":{"heading":75.75,"pitch":101.0625,"roll":51.0},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":-29.4375,"roll":-16.25},"location":"Right Ankle"},{"euler":{"heading":152.3125,"pitch":-164.875,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":320.1875,"pitch":-113.4375,"roll":62.3125},"location":"Right Knee"},{"euler":{"heading":11.3125,"pitch":-126.0,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.376"} +{"sensors":[{"euler":{"heading":97.125,"pitch":119.625,"roll":-3.0},"location":"Left Knee"},{"euler":{"heading":66.0,"pitch":90.6875,"roll":39.4375},"location":"Left Ankle"},{"euler":{"heading":79.1875,"pitch":-28.25,"roll":-18.6875},"location":"Right Ankle"},{"euler":{"heading":155.625,"pitch":-163.6875,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":325.4375,"pitch":-112.75,"roll":57.25},"location":"Right Knee"},{"euler":{"heading":3.9375,"pitch":-118.125,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.477"} +{"sensors":[{"euler":{"heading":68.1875,"pitch":130.875,"roll":14.5},"location":"Left Knee"},{"euler":{"heading":37.0625,"pitch":84.5,"roll":12.8125},"location":"Left Ankle"},{"euler":{"heading":75.375,"pitch":-26.6875,"roll":-22.125},"location":"Right Ankle"},{"euler":{"heading":160.875,"pitch":-161.6875,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":330.875,"pitch":-110.25,"roll":52.4375},"location":"Right Knee"},{"euler":{"heading":2.125,"pitch":-115.5,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.578"} +{"sensors":[{"euler":{"heading":32.125,"pitch":140.6875,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":12.4375,"pitch":84.0625,"roll":-12.125},"location":"Left Ankle"},{"euler":{"heading":70.75,"pitch":-22.0625,"roll":-25.8125},"location":"Right Ankle"},{"euler":{"heading":162.125,"pitch":-161.625,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":333.6875,"pitch":-110.5625,"roll":47.25},"location":"Right Knee"},{"euler":{"heading":4.6875,"pitch":-117.875,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.679"} +{"sensors":[{"euler":{"heading":28.5,"pitch":143.3125,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":9.75,"pitch":87.1875,"roll":-15.4375},"location":"Left Ankle"},{"euler":{"heading":63.375,"pitch":-17.875,"roll":-31.125},"location":"Right Ankle"},{"euler":{"heading":163.875,"pitch":-162.875,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":341.0,"pitch":-107.9375,"roll":40.3125},"location":"Right Knee"},{"euler":{"heading":9.125,"pitch":-123.0,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.781"} +{"sensors":[{"euler":{"heading":40.375,"pitch":134.4375,"roll":33.0},"location":"Left Knee"},{"euler":{"heading":22.75,"pitch":90.8125,"roll":-5.25},"location":"Left Ankle"},{"euler":{"heading":47.4375,"pitch":-0.625,"roll":-34.375},"location":"Right Ankle"},{"euler":{"heading":168.5625,"pitch":-161.8125,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":358.6875,"pitch":-100.8125,"roll":28.0},"location":"Right Knee"},{"euler":{"heading":11.25,"pitch":-125.4375,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.882"} +{"sensors":[{"euler":{"heading":46.875,"pitch":129.3125,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":27.75,"pitch":90.5,"roll":-0.4375},"location":"Left Ankle"},{"euler":{"heading":31.5,"pitch":-8.125,"roll":-37.5},"location":"Right Ankle"},{"euler":{"heading":174.0,"pitch":-155.0,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":1.3125,"pitch":-101.9375,"roll":21.125},"location":"Right Knee"},{"euler":{"heading":12.5625,"pitch":-129.375,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:22:59.982"} +{"sensors":[{"euler":{"heading":48.875,"pitch":127.1875,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":31.5625,"pitch":90.25,"roll":2.6875},"location":"Left Ankle"},{"euler":{"heading":41.9375,"pitch":-13.75,"roll":-32.6875},"location":"Right Ankle"},{"euler":{"heading":175.75,"pitch":-153.75,"roll":44.875},"location":"Right Hip"},{"euler":{"heading":351.4375,"pitch":-98.375,"roll":30.875},"location":"Right Knee"},{"euler":{"heading":15.8125,"pitch":-138.875,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.82"} +{"sensors":[{"euler":{"heading":53.3125,"pitch":125.125,"roll":23.3125},"location":"Left Knee"},{"euler":{"heading":35.125,"pitch":89.75,"roll":6.0625},"location":"Left Ankle"},{"euler":{"heading":66.1875,"pitch":-28.4375,"roll":-22.125},"location":"Right Ankle"},{"euler":{"heading":169.1875,"pitch":-156.625,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":334.0,"pitch":-95.625,"roll":51.3125},"location":"Right Knee"},{"euler":{"heading":17.5625,"pitch":-145.5,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.183"} +{"sensors":[{"euler":{"heading":61.0625,"pitch":121.5625,"roll":19.0625},"location":"Left Knee"},{"euler":{"heading":40.25,"pitch":90.75,"roll":10.9375},"location":"Left Ankle"},{"euler":{"heading":87.4375,"pitch":-34.125,"roll":-10.125},"location":"Right Ankle"},{"euler":{"heading":160.1875,"pitch":-160.9375,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":319.25,"pitch":-99.125,"roll":69.6875},"location":"Right Knee"},{"euler":{"heading":20.8125,"pitch":-151.0,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.283"} +{"sensors":[{"euler":{"heading":68.6875,"pitch":119.5625,"roll":13.125},"location":"Left Knee"},{"euler":{"heading":47.3125,"pitch":92.125,"roll":18.5},"location":"Left Ankle"},{"euler":{"heading":94.25,"pitch":-34.125,"roll":-6.9375},"location":"Right Ankle"},{"euler":{"heading":151.4375,"pitch":-163.625,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":311.1875,"pitch":-108.125,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":24.375,"pitch":-156.9375,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.384"} +{"sensors":[{"euler":{"heading":82.0,"pitch":117.8125,"roll":2.375},"location":"Left Knee"},{"euler":{"heading":57.875,"pitch":92.5625,"roll":33.375},"location":"Left Ankle"},{"euler":{"heading":84.0,"pitch":-25.125,"roll":-16.125},"location":"Right Ankle"},{"euler":{"heading":150.625,"pitch":-163.75,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":306.9375,"pitch":-111.0,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":24.125,"pitch":-152.3125,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.485"} +{"sensors":[{"euler":{"heading":97.625,"pitch":115.0625,"roll":-5.8125},"location":"Left Knee"},{"euler":{"heading":71.4375,"pitch":100.0,"roll":47.9375},"location":"Left Ankle"},{"euler":{"heading":80.8125,"pitch":-24.4375,"roll":-18.625},"location":"Right Ankle"},{"euler":{"heading":149.9375,"pitch":-164.9375,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":310.8125,"pitch":-116.5625,"roll":64.9375},"location":"Right Knee"},{"euler":{"heading":9.625,"pitch":-126.25,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.586"} +{"sensors":[{"euler":{"heading":92.5625,"pitch":121.25,"roll":0.625},"location":"Left Knee"},{"euler":{"heading":63.625,"pitch":92.4375,"roll":35.8125},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":-22.75,"roll":-20.25},"location":"Right Ankle"},{"euler":{"heading":151.3125,"pitch":-164.0625,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":313.9375,"pitch":-116.75,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":1.875,"pitch":-117.0625,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.687"} +{"sensors":[{"euler":{"heading":55.8125,"pitch":133.8125,"roll":19.4375},"location":"Left Knee"},{"euler":{"heading":34.0625,"pitch":83.9375,"roll":9.3125},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-20.0625,"roll":-23.25},"location":"Right Ankle"},{"euler":{"heading":156.1875,"pitch":-162.5,"roll":59.375},"location":"Right Hip"},{"euler":{"heading":319.375,"pitch":-114.5625,"roll":54.875},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":-114.0,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.788"} +{"sensors":[{"euler":{"heading":27.8125,"pitch":142.1875,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":11.1875,"pitch":83.0,"roll":-13.625},"location":"Left Ankle"},{"euler":{"heading":69.875,"pitch":-16.8125,"roll":-26.875},"location":"Right Ankle"},{"euler":{"heading":158.0,"pitch":-162.875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":325.25,"pitch":-113.1875,"roll":48.8125},"location":"Right Knee"},{"euler":{"heading":3.625,"pitch":-117.1875,"roll":53.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.888"} +{"sensors":[{"euler":{"heading":34.8125,"pitch":138.5625,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":12.1875,"pitch":89.8125,"roll":-11.625},"location":"Left Ankle"},{"euler":{"heading":60.5625,"pitch":-15.5625,"roll":-33.0},"location":"Right Ankle"},{"euler":{"heading":162.625,"pitch":-163.25,"roll":61.5},"location":"Right Hip"},{"euler":{"heading":337.6875,"pitch":-108.625,"roll":39.6875},"location":"Right Knee"},{"euler":{"heading":10.125,"pitch":-123.1875,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:00.989"} +{"sensors":[{"euler":{"heading":46.0625,"pitch":131.6875,"roll":31.0},"location":"Left Knee"},{"euler":{"heading":24.1875,"pitch":91.875,"roll":-2.6875},"location":"Left Ankle"},{"euler":{"heading":42.3125,"pitch":-13.125,"roll":-35.8125},"location":"Right Ankle"},{"euler":{"heading":168.6875,"pitch":-159.5625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":354.6875,"pitch":-102.0625,"roll":26.9375},"location":"Right Knee"},{"euler":{"heading":10.5625,"pitch":-126.0,"roll":57.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.91"} +{"sensors":[{"euler":{"heading":50.625,"pitch":128.4375,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":29.5,"pitch":92.1875,"roll":1.6875},"location":"Left Ankle"},{"euler":{"heading":32.9375,"pitch":-11.375,"roll":-34.625},"location":"Right Ankle"},{"euler":{"heading":173.375,"pitch":-154.6875,"roll":49.0625},"location":"Right Hip"},{"euler":{"heading":356.125,"pitch":-99.0,"roll":24.6875},"location":"Right Knee"},{"euler":{"heading":13.5625,"pitch":-130.375,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.192"} +{"sensors":[{"euler":{"heading":53.0625,"pitch":126.3125,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":34.1875,"pitch":92.5,"roll":5.8125},"location":"Left Ankle"},{"euler":{"heading":48.5625,"pitch":-18.4375,"roll":-31.0625},"location":"Right Ankle"},{"euler":{"heading":175.75,"pitch":-154.625,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":341.75,"pitch":-99.25,"roll":38.3125},"location":"Right Knee"},{"euler":{"heading":15.5,"pitch":-136.75,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.293"} +{"sensors":[{"euler":{"heading":59.5625,"pitch":122.5,"roll":21.375},"location":"Left Knee"},{"euler":{"heading":39.0625,"pitch":93.375,"roll":10.25},"location":"Left Ankle"},{"euler":{"heading":70.9375,"pitch":-29.1875,"roll":-18.875},"location":"Right Ankle"},{"euler":{"heading":168.4375,"pitch":-158.1875,"roll":40.5},"location":"Right Hip"},{"euler":{"heading":323.4375,"pitch":-96.375,"roll":58.875},"location":"Right Knee"},{"euler":{"heading":18.8125,"pitch":-143.25,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.394"} +{"sensors":[{"euler":{"heading":65.8125,"pitch":119.1875,"roll":17.3125},"location":"Left Knee"},{"euler":{"heading":44.75,"pitch":94.5625,"roll":15.0625},"location":"Left Ankle"},{"euler":{"heading":88.125,"pitch":-33.6875,"roll":-9.0},"location":"Right Ankle"},{"euler":{"heading":158.0,"pitch":-160.75,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":311.0,"pitch":-102.4375,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":23.625,"pitch":-150.8125,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.495"} +{"sensors":[{"euler":{"heading":73.875,"pitch":119.375,"roll":9.8125},"location":"Left Knee"},{"euler":{"heading":51.8125,"pitch":94.1875,"roll":23.625},"location":"Left Ankle"},{"euler":{"heading":92.5,"pitch":-31.6875,"roll":-8.625},"location":"Right Ankle"},{"euler":{"heading":148.9375,"pitch":-163.875,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":304.6875,"pitch":-107.9375,"roll":74.125},"location":"Right Knee"},{"euler":{"heading":25.125,"pitch":-157.9375,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.595"} +{"sensors":[{"euler":{"heading":88.75,"pitch":119.75,"roll":-1.8125},"location":"Left Knee"},{"euler":{"heading":64.0,"pitch":94.875,"roll":40.5625},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":-26.4375,"roll":-17.25},"location":"Right Ankle"},{"euler":{"heading":151.0,"pitch":-163.6875,"roll":51.4375},"location":"Right Hip"},{"euler":{"heading":305.8125,"pitch":-111.125,"roll":67.9375},"location":"Right Knee"},{"euler":{"heading":22.8125,"pitch":-150.9375,"roll":66.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.696"} +{"sensors":[{"euler":{"heading":102.0625,"pitch":115.9375,"roll":-7.875},"location":"Left Knee"},{"euler":{"heading":78.375,"pitch":103.4375,"roll":51.3125},"location":"Left Ankle"},{"euler":{"heading":79.0,"pitch":-23.4375,"roll":-20.25},"location":"Right Ankle"},{"euler":{"heading":149.8125,"pitch":-164.0,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":308.0625,"pitch":-115.3125,"roll":62.5},"location":"Right Knee"},{"euler":{"heading":9.4375,"pitch":-122.5625,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.798"} +{"sensors":[{"euler":{"heading":94.8125,"pitch":123.375,"roll":15.0},"location":"Left Knee"},{"euler":{"heading":63.3125,"pitch":91.1875,"roll":37.1875},"location":"Left Ankle"},{"euler":{"heading":76.4375,"pitch":-21.8125,"roll":-22.5625},"location":"Right Ankle"},{"euler":{"heading":153.0625,"pitch":-162.9375,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":312.75,"pitch":-117.5,"roll":57.3125},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":-117.0625,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:01.899"} +{"sensors":[{"euler":{"heading":58.5,"pitch":134.9375,"roll":19.8125},"location":"Left Knee"},{"euler":{"heading":33.875,"pitch":84.5,"roll":9.875},"location":"Left Ankle"},{"euler":{"heading":73.5,"pitch":-20.6875,"roll":-24.375},"location":"Right Ankle"},{"euler":{"heading":156.4375,"pitch":-163.375,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":318.5625,"pitch":-114.875,"roll":52.9375},"location":"Right Knee"},{"euler":{"heading":359.375,"pitch":-114.0,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.0"} +{"sensors":[{"euler":{"heading":30.4375,"pitch":143.125,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":10.0625,"pitch":81.4375,"roll":-13.75},"location":"Left Ankle"},{"euler":{"heading":68.25,"pitch":-18.125,"roll":-27.375},"location":"Right Ankle"},{"euler":{"heading":158.75,"pitch":-164.0,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":325.1875,"pitch":-112.5,"roll":46.9375},"location":"Right Knee"},{"euler":{"heading":6.1875,"pitch":-120.125,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.102"} +{"sensors":[{"euler":{"heading":38.4375,"pitch":137.625,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":12.4375,"pitch":89.125,"roll":-11.5},"location":"Left Ankle"},{"euler":{"heading":59.5,"pitch":-16.75,"roll":-32.375},"location":"Right Ankle"},{"euler":{"heading":163.8125,"pitch":-163.6875,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":338.1875,"pitch":-108.125,"roll":37.375},"location":"Right Knee"},{"euler":{"heading":10.1875,"pitch":-124.0625,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.202"} +{"sensors":[{"euler":{"heading":48.75,"pitch":130.8125,"roll":29.75},"location":"Left Knee"},{"euler":{"heading":24.1875,"pitch":91.8125,"roll":-2.3125},"location":"Left Ankle"},{"euler":{"heading":37.8125,"pitch":-9.5,"roll":-38.25},"location":"Right Ankle"},{"euler":{"heading":172.3125,"pitch":-156.75,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":354.0625,"pitch":-101.5,"roll":24.125},"location":"Right Knee"},{"euler":{"heading":10.5,"pitch":-128.125,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.303"} +{"sensors":[{"euler":{"heading":54.125,"pitch":124.4375,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":32.5,"pitch":95.625,"roll":2.4375},"location":"Left Ankle"},{"euler":{"heading":31.4375,"pitch":-10.875,"roll":-37.9375},"location":"Right Ankle"},{"euler":{"heading":178.625,"pitch":-152.5,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":354.6875,"pitch":-102.0,"roll":23.1875},"location":"Right Knee"},{"euler":{"heading":16.6875,"pitch":-134.375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.404"} +{"sensors":[{"euler":{"heading":58.375,"pitch":120.3125,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":40.9375,"pitch":97.3125,"roll":9.0},"location":"Left Ankle"},{"euler":{"heading":49.25,"pitch":-19.6875,"roll":-33.0625},"location":"Right Ankle"},{"euler":{"heading":177.4375,"pitch":-154.625,"roll":40.125},"location":"Right Hip"},{"euler":{"heading":340.125,"pitch":-100.625,"roll":37.875},"location":"Right Knee"},{"euler":{"heading":20.5,"pitch":-142.5625,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.505"} +{"sensors":[{"euler":{"heading":64.1875,"pitch":118.125,"roll":22.1875},"location":"Left Knee"},{"euler":{"heading":43.75,"pitch":97.25,"roll":12.25},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-29.5,"roll":-19.5625},"location":"Right Ankle"},{"euler":{"heading":119.75,"pitch":-159.3125,"roll":39.4375},"location":"Right Hip"},{"euler":{"heading":321.0,"pitch":-97.25,"roll":58.75},"location":"Right Knee"},{"euler":{"heading":22.1875,"pitch":-149.375,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.606"} +{"sensors":[{"euler":{"heading":69.6875,"pitch":116.3125,"roll":17.25},"location":"Left Knee"},{"euler":{"heading":49.5,"pitch":98.4375,"roll":17.875},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":-32.9375,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":154.75,"pitch":-162.8125,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":305.5625,"pitch":-102.6875,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":24.3125,"pitch":-155.25,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.706"} +{"sensors":[{"euler":{"heading":77.9375,"pitch":115.25,"roll":9.8125},"location":"Left Knee"},{"euler":{"heading":58.3125,"pitch":99.125,"roll":27.6875},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":-30.75,"roll":-10.0},"location":"Right Ankle"},{"euler":{"heading":149.0,"pitch":-164.875,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":299.125,"pitch":-107.375,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":26.5,"pitch":-159.6875,"roll":65.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.807"} +{"sensors":[{"euler":{"heading":93.25,"pitch":116.5,"roll":-3.0},"location":"Left Knee"},{"euler":{"heading":66.3125,"pitch":99.25,"roll":43.1875},"location":"Left Ankle"},{"euler":{"heading":88.0625,"pitch":-29.9375,"roll":-14.5625},"location":"Right Ankle"},{"euler":{"heading":155.5,"pitch":-163.625,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":303.4375,"pitch":-111.75,"roll":69.25},"location":"Right Knee"},{"euler":{"heading":21.5,"pitch":-147.125,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:02.907"} +{"sensors":[{"euler":{"heading":103.25,"pitch":115.1875,"roll":-7.75},"location":"Left Knee"},{"euler":{"heading":77.625,"pitch":101.3125,"roll":52.4375},"location":"Left Ankle"},{"euler":{"heading":82.875,"pitch":-29.375,"roll":-17.0},"location":"Right Ankle"},{"euler":{"heading":153.125,"pitch":-165.0625,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":310.5,"pitch":-115.0625,"roll":62.0625},"location":"Right Knee"},{"euler":{"heading":8.4375,"pitch":-120.5625,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.10"} +{"sensors":[{"euler":{"heading":93.25,"pitch":123.0625,"roll":1.0},"location":"Left Knee"},{"euler":{"heading":60.375,"pitch":91.4375,"roll":33.75},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-27.8125,"roll":-20.125},"location":"Right Ankle"},{"euler":{"heading":158.1875,"pitch":-163.0,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":314.5625,"pitch":-114.6875,"roll":57.6875},"location":"Right Knee"},{"euler":{"heading":2.4375,"pitch":-116.125,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.110"} +{"sensors":[{"euler":{"heading":51.75,"pitch":135.75,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":28.1875,"pitch":85.0625,"roll":4.3125},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":-26.25,"roll":-20.6875},"location":"Right Ankle"},{"euler":{"heading":160.6875,"pitch":-163.0625,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":320.375,"pitch":-112.0,"roll":52.1875},"location":"Right Knee"},{"euler":{"heading":1.625,"pitch":-115.9375,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.212"} +{"sensors":[{"euler":{"heading":29.9375,"pitch":143.6875,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":7.875,"pitch":81.375,"roll":-15.8125},"location":"Left Ankle"},{"euler":{"heading":69.875,"pitch":-22.875,"roll":-26.875},"location":"Right Ankle"},{"euler":{"heading":162.4375,"pitch":-164.25,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":326.375,"pitch":-109.9375,"roll":45.6875},"location":"Right Knee"},{"euler":{"heading":5.8125,"pitch":-120.875,"roll":54.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.312"} +{"sensors":[{"euler":{"heading":40.0625,"pitch":137.4375,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":12.9375,"pitch":88.5625,"roll":-11.5625},"location":"Left Ankle"},{"euler":{"heading":61.25,"pitch":-20.8125,"roll":-30.9375},"location":"Right Ankle"},{"euler":{"heading":165.75,"pitch":-164.8125,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":337.4375,"pitch":-106.1875,"roll":36.4375},"location":"Right Knee"},{"euler":{"heading":10.875,"pitch":-125.5,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.413"} +{"sensors":[{"euler":{"heading":48.8125,"pitch":130.5625,"roll":30.0},"location":"Left Knee"},{"euler":{"heading":26.25,"pitch":92.6875,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":38.375,"pitch":-15.0,"roll":-37.375},"location":"Right Ankle"},{"euler":{"heading":173.6875,"pitch":-157.8125,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":354.4375,"pitch":-100.125,"roll":23.625},"location":"Right Knee"},{"euler":{"heading":12.625,"pitch":-129.125,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.515"} +{"sensors":[{"euler":{"heading":55.25,"pitch":124.0,"roll":28.5625},"location":"Left Knee"},{"euler":{"heading":33.0625,"pitch":95.5,"roll":1.9375},"location":"Left Ankle"},{"euler":{"heading":36.375,"pitch":-14.8125,"roll":-36.375},"location":"Right Ankle"},{"euler":{"heading":179.875,"pitch":-153.375,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":351.5625,"pitch":-99.625,"roll":25.3125},"location":"Right Knee"},{"euler":{"heading":18.5,"pitch":-138.3125,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.615"} +{"sensors":[{"euler":{"heading":60.375,"pitch":119.4375,"roll":26.25},"location":"Left Knee"},{"euler":{"heading":38.5,"pitch":97.5625,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":57.25,"pitch":-26.0625,"roll":-27.0},"location":"Right Ankle"},{"euler":{"heading":175.5625,"pitch":-154.8125,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":334.375,"pitch":-99.0,"roll":43.0},"location":"Right Knee"},{"euler":{"heading":22.375,"pitch":-144.6875,"roll":63.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.716"} +{"sensors":[{"euler":{"heading":66.0625,"pitch":117.8125,"roll":21.3125},"location":"Left Knee"},{"euler":{"heading":41.375,"pitch":97.0625,"roll":11.0},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":-32.25,"roll":-12.9375},"location":"Right Ankle"},{"euler":{"heading":164.3125,"pitch":-159.5625,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":312.875,"pitch":-98.3125,"roll":64.875},"location":"Right Knee"},{"euler":{"heading":22.5,"pitch":-150.25,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.817"} +{"sensors":[{"euler":{"heading":71.6875,"pitch":116.125,"roll":15.875},"location":"Left Knee"},{"euler":{"heading":46.625,"pitch":97.1875,"roll":16.875},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":-35.3125,"roll":-4.75},"location":"Right Ankle"},{"euler":{"heading":153.1875,"pitch":-163.8125,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":301.8125,"pitch":-110.875,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":25.4375,"pitch":-157.4375,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:03.918"} +{"sensors":[{"euler":{"heading":80.0,"pitch":115.125,"roll":7.9375},"location":"Left Knee"},{"euler":{"heading":55.8125,"pitch":97.375,"roll":28.125},"location":"Left Ankle"},{"euler":{"heading":90.0,"pitch":-31.9375,"roll":-9.0},"location":"Right Ankle"},{"euler":{"heading":151.0,"pitch":-165.375,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":299.8125,"pitch":-113.25,"roll":72.9375},"location":"Right Knee"},{"euler":{"heading":27.4375,"pitch":-158.0625,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.19"} +{"sensors":[{"euler":{"heading":95.25,"pitch":116.875,"roll":-4.0},"location":"Left Knee"},{"euler":{"heading":72.125,"pitch":100.625,"roll":46.125},"location":"Left Ankle"},{"euler":{"heading":83.0,"pitch":-30.5625,"roll":-14.625},"location":"Right Ankle"},{"euler":{"heading":152.0625,"pitch":-165.6875,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":305.0625,"pitch":-115.125,"roll":66.0},"location":"Right Knee"},{"euler":{"heading":14.0625,"pitch":-135.0625,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.120"} +{"sensors":[{"euler":{"heading":97.9375,"pitch":118.25,"roll":-3.5},"location":"Left Knee"},{"euler":{"heading":66.5625,"pitch":91.8125,"roll":43.375},"location":"Left Ankle"},{"euler":{"heading":80.875,"pitch":-28.6875,"roll":-16.625},"location":"Right Ankle"},{"euler":{"heading":153.3125,"pitch":-165.3125,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":307.75,"pitch":-114.1875,"roll":61.4375},"location":"Right Knee"},{"euler":{"heading":6.6875,"pitch":-121.25,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.221"} +{"sensors":[{"euler":{"heading":74.6875,"pitch":127.5625,"roll":11.75},"location":"Left Knee"},{"euler":{"heading":44.375,"pitch":84.1875,"roll":19.8125},"location":"Left Ankle"},{"euler":{"heading":76.625,"pitch":-25.8125,"roll":-19.875},"location":"Right Ankle"},{"euler":{"heading":157.6875,"pitch":-164.0625,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":311.9375,"pitch":-113.5625,"roll":56.4375},"location":"Right Knee"},{"euler":{"heading":1.5,"pitch":-116.125,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.322"} +{"sensors":[{"euler":{"heading":37.5,"pitch":139.125,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":16.1875,"pitch":81.25,"roll":-6.6875},"location":"Left Ankle"},{"euler":{"heading":71.6875,"pitch":-22.6875,"roll":-23.375},"location":"Right Ankle"},{"euler":{"heading":158.3125,"pitch":-164.9375,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":317.125,"pitch":-112.0625,"roll":50.875},"location":"Right Knee"},{"euler":{"heading":3.3125,"pitch":-119.4375,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.423"} +{"sensors":[{"euler":{"heading":29.0625,"pitch":143.875,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":9.0,"pitch":84.1875,"roll":-16.1875},"location":"Left Ankle"},{"euler":{"heading":64.0,"pitch":-19.5,"roll":-28.0625},"location":"Right Ankle"},{"euler":{"heading":160.125,"pitch":-167.25,"roll":62.1875},"location":"Right Hip"},{"euler":{"heading":326.0,"pitch":-108.0625,"roll":42.9375},"location":"Right Knee"},{"euler":{"heading":7.25,"pitch":-124.1875,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.524"} +{"sensors":[{"euler":{"heading":43.6875,"pitch":134.5,"roll":31.8125},"location":"Left Knee"},{"euler":{"heading":22.1875,"pitch":90.125,"roll":-6.75},"location":"Left Ankle"},{"euler":{"heading":49.9375,"pitch":-17.4375,"roll":-32.6875},"location":"Right Ankle"},{"euler":{"heading":165.4375,"pitch":-163.8125,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":339.9375,"pitch":-103.875,"roll":31.6875},"location":"Right Knee"},{"euler":{"heading":9.4375,"pitch":-127.1875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.624"} +{"sensors":[{"euler":{"heading":48.125,"pitch":129.6875,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":26.4375,"pitch":88.0,"roll":-1.3125},"location":"Left Ankle"},{"euler":{"heading":36.25,"pitch":-14.0,"roll":-34.75},"location":"Right Ankle"},{"euler":{"heading":174.1875,"pitch":-155.125,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":349.75,"pitch":-101.75,"roll":22.6875},"location":"Right Knee"},{"euler":{"heading":14.375,"pitch":-136.375,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.726"} +{"sensors":[{"euler":{"heading":52.0625,"pitch":125.75,"roll":26.125},"location":"Left Knee"},{"euler":{"heading":30.625,"pitch":88.5,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":46.9375,"pitch":-18.6875,"roll":-30.9375},"location":"Right Ankle"},{"euler":{"heading":173.375,"pitch":-154.0625,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":336.5625,"pitch":-100.1875,"roll":34.875},"location":"Right Knee"},{"euler":{"heading":18.5,"pitch":-143.625,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.828"} +{"sensors":[{"euler":{"heading":56.5,"pitch":123.4375,"roll":23.1875},"location":"Left Knee"},{"euler":{"heading":36.0625,"pitch":89.3125,"roll":7.375},"location":"Left Ankle"},{"euler":{"heading":67.875,"pitch":-27.375,"roll":-21.9375},"location":"Right Ankle"},{"euler":{"heading":169.625,"pitch":-156.3125,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":318.875,"pitch":-99.5,"roll":53.3125},"location":"Right Knee"},{"euler":{"heading":19.4375,"pitch":-148.375,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:04.928"} +{"sensors":[{"euler":{"heading":64.9375,"pitch":120.625,"roll":18.0},"location":"Left Knee"},{"euler":{"heading":41.0,"pitch":90.625,"roll":12.4375},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":-32.625,"roll":-9.25},"location":"Right Ankle"},{"euler":{"heading":157.3125,"pitch":-161.5625,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":302.1875,"pitch":-105.5625,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":21.9375,"pitch":-153.75,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.29"} +{"sensors":[{"euler":{"heading":72.6875,"pitch":120.1875,"roll":11.0},"location":"Left Knee"},{"euler":{"heading":47.0625,"pitch":90.625,"roll":20.0},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":-31.75,"roll":-6.4375},"location":"Right Ankle"},{"euler":{"heading":148.3125,"pitch":-165.25,"roll":49.6875},"location":"Right Hip"},{"euler":{"heading":292.875,"pitch":-114.75,"roll":75.8125},"location":"Right Knee"},{"euler":{"heading":24.4375,"pitch":-160.125,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.130"} +{"sensors":[{"euler":{"heading":87.25,"pitch":119.4375,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":56.875,"pitch":91.25,"roll":35.5},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":-26.1875,"roll":-15.625},"location":"Right Ankle"},{"euler":{"heading":149.5625,"pitch":-165.75,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":295.3125,"pitch":-121.0625,"roll":68.6875},"location":"Right Knee"},{"euler":{"heading":19.8125,"pitch":-149.1875,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.231"} +{"sensors":[{"euler":{"heading":97.625,"pitch":118.4375,"roll":-4.9375},"location":"Left Knee"},{"euler":{"heading":62.375,"pitch":91.0,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":-28.0,"roll":-15.4375},"location":"Right Ankle"},{"euler":{"heading":149.625,"pitch":-167.375,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":301.125,"pitch":-118.3125,"roll":63.0625},"location":"Right Knee"},{"euler":{"heading":9.3125,"pitch":-124.3125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.333"} +{"sensors":[{"euler":{"heading":87.9375,"pitch":123.9375,"roll":4.125},"location":"Left Knee"},{"euler":{"heading":54.5,"pitch":85.5,"roll":31.5625},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":-26.25,"roll":-18.625},"location":"Right Ankle"},{"euler":{"heading":155.4375,"pitch":-164.4375,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":307.375,"pitch":-116.4375,"roll":57.3125},"location":"Right Knee"},{"euler":{"heading":2.75,"pitch":-119.0,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.434"} +{"sensors":[{"euler":{"heading":53.25,"pitch":134.8125,"roll":22.125},"location":"Left Knee"},{"euler":{"heading":29.375,"pitch":84.125,"roll":5.6875},"location":"Left Ankle"},{"euler":{"heading":76.3125,"pitch":-24.125,"roll":-21.75},"location":"Right Ankle"},{"euler":{"heading":159.0,"pitch":-163.4375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":312.8125,"pitch":-114.25,"roll":52.375},"location":"Right Knee"},{"euler":{"heading":351.4375,"pitch":-127.375,"roll":48.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.535"} +{"sensors":[{"euler":{"heading":31.0,"pitch":143.25,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":7.125,"pitch":81.25,"roll":-17.0625},"location":"Left Ankle"},{"euler":{"heading":70.1875,"pitch":-21.1875,"roll":-27.0625},"location":"Right Ankle"},{"euler":{"heading":161.9375,"pitch":-163.6875,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":320.3125,"pitch":-111.9375,"roll":45.875},"location":"Right Knee"},{"euler":{"heading":330.5625,"pitch":-135.25,"roll":43.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.635"} +{"sensors":[{"euler":{"heading":37.375,"pitch":139.125,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":10.5,"pitch":87.375,"roll":-14.0625},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":-18.0625,"roll":-32.1875},"location":"Right Ankle"},{"euler":{"heading":165.0,"pitch":-165.1875,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":331.6875,"pitch":-107.5,"roll":37.125},"location":"Right Knee"},{"euler":{"heading":8.375,"pitch":-126.1875,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.737"} +{"sensors":[{"euler":{"heading":46.875,"pitch":132.25,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":26.9375,"pitch":90.8125,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":41.5,"pitch":-11.8125,"roll":-37.625},"location":"Right Ankle"},{"euler":{"heading":171.5,"pitch":-159.625,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":348.0,"pitch":-102.1875,"roll":24.875},"location":"Right Knee"},{"euler":{"heading":7.3125,"pitch":-130.25,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.837"} +{"sensors":[{"euler":{"heading":53.9375,"pitch":125.6875,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":32.0,"pitch":93.5625,"roll":2.8125},"location":"Left Ankle"},{"euler":{"heading":33.6875,"pitch":-12.5625,"roll":-37.1875},"location":"Right Ankle"},{"euler":{"heading":176.0625,"pitch":-155.0,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":349.5625,"pitch":-101.4375,"roll":22.625},"location":"Right Knee"},{"euler":{"heading":12.0625,"pitch":-134.125,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:05.938"} +{"sensors":[{"euler":{"heading":58.3125,"pitch":121.1875,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":37.5,"pitch":95.8125,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":51.875,"pitch":-25.3125,"roll":-28.875},"location":"Right Ankle"},{"euler":{"heading":173.6875,"pitch":-156.3125,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":336.4375,"pitch":-100.25,"roll":37.125},"location":"Right Knee"},{"euler":{"heading":16.375,"pitch":-141.125,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.38"} +{"sensors":[{"euler":{"heading":63.375,"pitch":119.1875,"roll":22.1875},"location":"Left Knee"},{"euler":{"heading":44.3125,"pitch":96.25,"roll":13.6875},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":-34.0625,"roll":-14.8125},"location":"Right Ankle"},{"euler":{"heading":167.875,"pitch":-158.75,"roll":41.4375},"location":"Right Hip"},{"euler":{"heading":315.75,"pitch":-98.9375,"roll":58.875},"location":"Right Knee"},{"euler":{"heading":18.8125,"pitch":-148.6875,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.139"} +{"sensors":[{"euler":{"heading":69.25,"pitch":117.75,"roll":16.9375},"location":"Left Knee"},{"euler":{"heading":47.6875,"pitch":95.3125,"roll":18.4375},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":-36.0,"roll":-6.5},"location":"Right Ankle"},{"euler":{"heading":157.625,"pitch":-162.0625,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":301.875,"pitch":-108.0625,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":22.3125,"pitch":-153.875,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.239"} +{"sensors":[{"euler":{"heading":76.875,"pitch":116.6875,"roll":9.8125},"location":"Left Knee"},{"euler":{"heading":56.0,"pitch":95.3125,"roll":27.6875},"location":"Left Ankle"},{"euler":{"heading":92.625,"pitch":-36.25,"roll":-7.75},"location":"Right Ankle"},{"euler":{"heading":150.25,"pitch":-165.4375,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":299.0625,"pitch":-111.5,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":23.875,"pitch":-158.4375,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.340"} +{"sensors":[{"euler":{"heading":92.25,"pitch":118.625,"roll":-2.875},"location":"Left Knee"},{"euler":{"heading":63.6875,"pitch":94.4375,"roll":41.875},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":-34.1875,"roll":-14.9375},"location":"Right Ankle"},{"euler":{"heading":154.875,"pitch":-165.25,"roll":51.0625},"location":"Right Hip"},{"euler":{"heading":303.4375,"pitch":-113.0625,"roll":66.75},"location":"Right Knee"},{"euler":{"heading":18.8125,"pitch":-143.5625,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.441"} +{"sensors":[{"euler":{"heading":99.375,"pitch":117.625,"roll":-5.25},"location":"Left Knee"},{"euler":{"heading":66.5625,"pitch":92.0,"roll":43.4375},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":-33.4375,"roll":-15.5625},"location":"Right Ankle"},{"euler":{"heading":152.125,"pitch":-167.5625,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":307.9375,"pitch":-113.5625,"roll":61.4375},"location":"Right Knee"},{"euler":{"heading":6.1875,"pitch":-120.4375,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.541"} +{"sensors":[{"euler":{"heading":82.5625,"pitch":125.0625,"roll":7.375},"location":"Left Knee"},{"euler":{"heading":48.0625,"pitch":85.6875,"roll":23.0625},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":-29.25,"roll":-18.9375},"location":"Right Ankle"},{"euler":{"heading":155.5,"pitch":-165.75,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":309.375,"pitch":-114.4375,"roll":57.25},"location":"Right Knee"},{"euler":{"heading":1.4375,"pitch":-118.25,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.642"} +{"sensors":[{"euler":{"heading":43.5625,"pitch":137.3125,"roll":26.0625},"location":"Left Knee"},{"euler":{"heading":17.5625,"pitch":80.625,"roll":-4.75},"location":"Left Ankle"},{"euler":{"heading":74.9375,"pitch":-25.3125,"roll":-21.8125},"location":"Right Ankle"},{"euler":{"heading":158.375,"pitch":-164.75,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":314.0625,"pitch":-112.125,"roll":52.25},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":-116.9375,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.743"} +{"sensors":[{"euler":{"heading":25.125,"pitch":145.8125,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":4.4375,"pitch":79.3125,"roll":-20.0625},"location":"Left Ankle"},{"euler":{"heading":67.125,"pitch":-22.375,"roll":-28.8125},"location":"Right Ankle"},{"euler":{"heading":162.6875,"pitch":-164.625,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":324.4375,"pitch":-109.0,"roll":44.1875},"location":"Right Knee"},{"euler":{"heading":5.875,"pitch":-124.375,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.843"} +{"sensors":[{"euler":{"heading":37.375,"pitch":138.6875,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":14.5625,"pitch":87.3125,"roll":-11.6875},"location":"Left Ankle"},{"euler":{"heading":55.0625,"pitch":-21.3125,"roll":-32.75},"location":"Right Ankle"},{"euler":{"heading":166.75,"pitch":-164.5625,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":340.0625,"pitch":-103.25,"roll":32.3125},"location":"Right Knee"},{"euler":{"heading":6.125,"pitch":-124.5,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:06.944"} +{"sensors":[{"euler":{"heading":47.3125,"pitch":132.0625,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":22.8125,"pitch":88.3125,"roll":-3.5},"location":"Left Ankle"},{"euler":{"heading":35.25,"pitch":-8.8125,"roll":-38.3125},"location":"Right Ankle"},{"euler":{"heading":174.3125,"pitch":-157.0,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":345.3125,"pitch":-102.0625,"roll":23.625},"location":"Right Knee"},{"euler":{"heading":7.0,"pitch":-126.1875,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.44"} +{"sensors":[{"euler":{"heading":52.0,"pitch":126.875,"roll":28.25},"location":"Left Knee"},{"euler":{"heading":28.875,"pitch":90.75,"roll":-0.0625},"location":"Left Ankle"},{"euler":{"heading":39.3125,"pitch":-13.6875,"roll":-33.25},"location":"Right Ankle"},{"euler":{"heading":174.0,"pitch":-155.0625,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":338.625,"pitch":-99.9375,"roll":29.25},"location":"Right Knee"},{"euler":{"heading":12.0,"pitch":-134.75,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.145"} +{"sensors":[{"euler":{"heading":56.9375,"pitch":122.9375,"roll":25.8125},"location":"Left Knee"},{"euler":{"heading":36.9375,"pitch":92.3125,"roll":6.5},"location":"Left Ankle"},{"euler":{"heading":60.4375,"pitch":-25.8125,"roll":-24.25},"location":"Right Ankle"},{"euler":{"heading":169.625,"pitch":-157.25,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":321.5625,"pitch":-99.9375,"roll":48.0625},"location":"Right Knee"},{"euler":{"heading":15.6875,"pitch":-142.0,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.245"} +{"sensors":[{"euler":{"heading":63.0625,"pitch":119.4375,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":41.875,"pitch":93.5,"roll":11.3125},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":-31.5625,"roll":-9.0},"location":"Right Ankle"},{"euler":{"heading":162.3125,"pitch":-160.625,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":302.9375,"pitch":-99.3125,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":19.1875,"pitch":-147.5,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.346"} +{"sensors":[{"euler":{"heading":69.4375,"pitch":117.5,"roll":0.5},"location":"Left Knee"},{"euler":{"heading":47.3125,"pitch":94.1875,"roll":17.5625},"location":"Left Ankle"},{"euler":{"heading":99.625,"pitch":-34.0,"roll":-2.375},"location":"Right Ankle"},{"euler":{"heading":153.4375,"pitch":-163.75,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":291.5625,"pitch":-113.4375,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":22.125,"pitch":-153.8125,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.447"} +{"sensors":[{"euler":{"heading":77.875,"pitch":116.6875,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":54.0625,"pitch":93.25,"roll":27.75},"location":"Left Ankle"},{"euler":{"heading":94.5625,"pitch":-32.4375,"roll":-6.5},"location":"Right Ankle"},{"euler":{"heading":150.8125,"pitch":-164.4375,"roll":49.4375},"location":"Right Hip"},{"euler":{"heading":291.1875,"pitch":-112.6875,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":24.4375,"pitch":-160.6875,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.548"} +{"sensors":[{"euler":{"heading":93.9375,"pitch":118.5,"roll":-5.0625},"location":"Left Knee"},{"euler":{"heading":79.5625,"pitch":95.375,"roll":45.0625},"location":"Left Ankle"},{"euler":{"heading":86.0,"pitch":-28.6875,"roll":-13.8125},"location":"Right Ankle"},{"euler":{"heading":155.25,"pitch":-163.4375,"roll":51.125},"location":"Right Hip"},{"euler":{"heading":293.3125,"pitch":-112.875,"roll":70.5},"location":"Right Knee"},{"euler":{"heading":16.625,"pitch":-145.625,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.648"} +{"sensors":[{"euler":{"heading":103.375,"pitch":116.5,"roll":-8.1875},"location":"Left Knee"},{"euler":{"heading":65.625,"pitch":92.1875,"roll":47.6875},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":-27.5,"roll":-17.125},"location":"Right Ankle"},{"euler":{"heading":151.4375,"pitch":-165.3125,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":297.25,"pitch":-119.875,"roll":63.9375},"location":"Right Knee"},{"euler":{"heading":5.75,"pitch":-123.125,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.750"} +{"sensors":[{"euler":{"heading":92.5625,"pitch":123.125,"roll":1.9375},"location":"Left Knee"},{"euler":{"heading":51.1875,"pitch":85.0625,"roll":27.8125},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":-30.0,"roll":-17.3125},"location":"Right Ankle"},{"euler":{"heading":157.625,"pitch":-164.375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":306.6875,"pitch":-115.5,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":359.4375,"pitch":-119.125,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.851"} +{"sensors":[{"euler":{"heading":54.625,"pitch":134.625,"roll":21.0625},"location":"Left Knee"},{"euler":{"heading":24.25,"pitch":82.8125,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":79.5625,"pitch":-27.75,"roll":-20.1875},"location":"Right Ankle"},{"euler":{"heading":159.4375,"pitch":-164.4375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":309.9375,"pitch":-113.625,"roll":54.4375},"location":"Right Knee"},{"euler":{"heading":358.5,"pitch":-116.625,"roll":51.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:07.951"} +{"sensors":[{"euler":{"heading":31.875,"pitch":142.8125,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":5.75,"pitch":79.8125,"roll":-18.0625},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":-25.5,"roll":-24.0625},"location":"Right Ankle"},{"euler":{"heading":161.8125,"pitch":-165.6875,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":315.9375,"pitch":-111.625,"roll":48.75},"location":"Right Knee"},{"euler":{"heading":3.3125,"pitch":-120.375,"roll":53.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.52"} +{"sensors":[{"euler":{"heading":37.5625,"pitch":139.625,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":8.8125,"pitch":86.375,"roll":-15.375},"location":"Left Ankle"},{"euler":{"heading":65.875,"pitch":-22.875,"roll":-30.5},"location":"Right Ankle"},{"euler":{"heading":164.5,"pitch":-167.4375,"roll":61.75},"location":"Right Hip"},{"euler":{"heading":325.5625,"pitch":-108.0,"roll":41.0625},"location":"Right Knee"},{"euler":{"heading":10.25,"pitch":-125.125,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.152"} +{"sensors":[{"euler":{"heading":47.625,"pitch":132.375,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":22.125,"pitch":89.75,"roll":-4.1875},"location":"Left Ankle"},{"euler":{"heading":48.75,"pitch":-18.75,"roll":-34.375},"location":"Right Ankle"},{"euler":{"heading":168.3125,"pitch":-163.3125,"roll":60.3125},"location":"Right Hip"},{"euler":{"heading":339.1875,"pitch":-103.375,"roll":29.75},"location":"Right Knee"},{"euler":{"heading":9.6875,"pitch":-127.625,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.253"} +{"sensors":[{"euler":{"heading":53.75,"pitch":127.1875,"roll":27.1875},"location":"Left Knee"},{"euler":{"heading":26.375,"pitch":89.9375,"roll":-1.0},"location":"Left Ankle"},{"euler":{"heading":33.9375,"pitch":-10.375,"roll":-39.3125},"location":"Right Ankle"},{"euler":{"heading":174.5,"pitch":-156.9375,"roll":52.5625},"location":"Right Hip"},{"euler":{"heading":346.0625,"pitch":-99.9375,"roll":22.125},"location":"Right Knee"},{"euler":{"heading":14.125,"pitch":-135.4375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.353"} +{"sensors":[{"euler":{"heading":55.5625,"pitch":124.5625,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":32.25,"pitch":90.5,"roll":4.0625},"location":"Left Ankle"},{"euler":{"heading":46.25,"pitch":-15.875,"roll":-33.4375},"location":"Right Ankle"},{"euler":{"heading":173.4375,"pitch":-155.8125,"roll":46.25},"location":"Right Hip"},{"euler":{"heading":331.9375,"pitch":-100.0,"roll":33.125},"location":"Right Knee"},{"euler":{"heading":15.8125,"pitch":-143.25,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.454"} +{"sensors":[{"euler":{"heading":60.9375,"pitch":122.125,"roll":21.6875},"location":"Left Knee"},{"euler":{"heading":37.25,"pitch":91.75,"roll":8.5625},"location":"Left Ankle"},{"euler":{"heading":70.5625,"pitch":-27.25,"roll":-18.5},"location":"Right Ankle"},{"euler":{"heading":165.8125,"pitch":-158.8125,"roll":43.5625},"location":"Right Hip"},{"euler":{"heading":311.0625,"pitch":-96.75,"roll":54.625},"location":"Right Knee"},{"euler":{"heading":16.1875,"pitch":-148.3125,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.554"} +{"sensors":[{"euler":{"heading":67.0,"pitch":119.25,"roll":17.6875},"location":"Left Knee"},{"euler":{"heading":41.75,"pitch":92.625,"roll":13.1875},"location":"Left Ankle"},{"euler":{"heading":90.9375,"pitch":-32.0625,"roll":-7.125},"location":"Right Ankle"},{"euler":{"heading":155.125,"pitch":-163.5,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":294.3125,"pitch":-104.5,"roll":73.5625},"location":"Right Knee"},{"euler":{"heading":20.125,"pitch":-153.5,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.655"} +{"sensors":[{"euler":{"heading":74.3125,"pitch":117.375,"roll":11.6875},"location":"Left Knee"},{"euler":{"heading":49.1875,"pitch":93.375,"roll":21.0},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":-33.5625,"roll":-6.6875},"location":"Right Ankle"},{"euler":{"heading":148.0625,"pitch":-166.125,"roll":48.375},"location":"Right Hip"},{"euler":{"heading":290.75,"pitch":-114.375,"roll":77.0625},"location":"Right Knee"},{"euler":{"heading":23.25,"pitch":-160.125,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.755"} +{"sensors":[{"euler":{"heading":86.375,"pitch":118.125,"roll":0.9375},"location":"Left Knee"},{"euler":{"heading":58.375,"pitch":91.3125,"roll":36.0625},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":-27.5,"roll":-14.1875},"location":"Right Ankle"},{"euler":{"heading":149.1875,"pitch":-166.125,"roll":50.6875},"location":"Right Hip"},{"euler":{"heading":289.4375,"pitch":-115.375,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":23.0,"pitch":-159.375,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.856"} +{"sensors":[{"euler":{"heading":102.5,"pitch":117.125,"roll":-8.5},"location":"Left Knee"},{"euler":{"heading":74.9375,"pitch":99.6875,"roll":50.8125},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-23.9375,"roll":-18.625},"location":"Right Ankle"},{"euler":{"heading":149.125,"pitch":-166.6875,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":290.3125,"pitch":-120.125,"roll":65.5625},"location":"Right Knee"},{"euler":{"heading":10.0,"pitch":-132.9375,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:08.956"} +{"sensors":[{"euler":{"heading":102.6875,"pitch":118.5625,"roll":-6.25},"location":"Left Knee"},{"euler":{"heading":69.125,"pitch":91.3125,"roll":41.5},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-21.4375,"roll":-21.875},"location":"Right Ankle"},{"euler":{"heading":153.875,"pitch":-165.125,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":294.4375,"pitch":-120.8125,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":0.4375,"pitch":-118.25,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.57"} +{"sensors":[{"euler":{"heading":77.25,"pitch":128.8125,"roll":10.3125},"location":"Left Knee"},{"euler":{"heading":39.3125,"pitch":86.9375,"roll":15.375},"location":"Left Ankle"},{"euler":{"heading":75.75,"pitch":-18.5625,"roll":-24.0625},"location":"Right Ankle"},{"euler":{"heading":157.375,"pitch":-163.0,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":297.875,"pitch":-119.125,"roll":56.1875},"location":"Right Knee"},{"euler":{"heading":358.4375,"pitch":-115.875,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.158"} +{"sensors":[{"euler":{"heading":43.4375,"pitch":138.0625,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":12.625,"pitch":81.8125,"roll":-9.75},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-16.5,"roll":-26.5},"location":"Right Ankle"},{"euler":{"heading":159.875,"pitch":-163.375,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":304.375,"pitch":-116.5,"roll":50.8125},"location":"Right Knee"},{"euler":{"heading":0.875,"pitch":-117.125,"roll":52.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.258"} +{"sensors":[{"euler":{"heading":33.375,"pitch":141.1875,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":6.0,"pitch":83.5,"roll":-18.125},"location":"Left Ankle"},{"euler":{"heading":62.625,"pitch":-14.875,"roll":-31.8125},"location":"Right Ankle"},{"euler":{"heading":163.625,"pitch":-164.0,"roll":62.125},"location":"Right Hip"},{"euler":{"heading":316.6875,"pitch":-111.875,"roll":42.75},"location":"Right Knee"},{"euler":{"heading":6.625,"pitch":-122.8125,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.359"} +{"sensors":[{"euler":{"heading":47.25,"pitch":132.8125,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":20.25,"pitch":88.4375,"roll":-6.125},"location":"Left Ankle"},{"euler":{"heading":46.25,"pitch":-15.125,"roll":-35.25},"location":"Right Ankle"},{"euler":{"heading":168.25,"pitch":-164.8125,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":336.625,"pitch":-104.4375,"roll":30.5625},"location":"Right Knee"},{"euler":{"heading":8.25,"pitch":-125.625,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.460"} +{"sensors":[{"euler":{"heading":54.3125,"pitch":127.8125,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":24.5625,"pitch":89.625,"roll":-2.8125},"location":"Left Ankle"},{"euler":{"heading":33.125,"pitch":-5.4375,"roll":-39.8125},"location":"Right Ankle"},{"euler":{"heading":173.5625,"pitch":-156.875,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":341.75,"pitch":-104.25,"roll":22.1875},"location":"Right Knee"},{"euler":{"heading":9.5,"pitch":-128.75,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.561"} +{"sensors":[{"euler":{"heading":57.9375,"pitch":122.9375,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":31.0625,"pitch":91.75,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":42.75,"pitch":-13.0,"roll":-33.6875},"location":"Right Ankle"},{"euler":{"heading":173.125,"pitch":-155.625,"roll":46.9375},"location":"Right Hip"},{"euler":{"heading":332.8125,"pitch":-101.5625,"roll":30.9375},"location":"Right Knee"},{"euler":{"heading":13.75,"pitch":-136.5625,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.663"} +{"sensors":[{"euler":{"heading":63.375,"pitch":119.375,"roll":22.375},"location":"Left Knee"},{"euler":{"heading":35.5625,"pitch":93.625,"roll":5.875},"location":"Left Ankle"},{"euler":{"heading":66.0,"pitch":-26.25,"roll":-22.9375},"location":"Right Ankle"},{"euler":{"heading":169.3125,"pitch":-157.75,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":316.8125,"pitch":-101.125,"roll":48.4375},"location":"Right Knee"},{"euler":{"heading":16.3125,"pitch":-143.5,"roll":62.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.764"} +{"sensors":[{"euler":{"heading":69.5625,"pitch":116.5,"roll":17.9375},"location":"Left Knee"},{"euler":{"heading":40.125,"pitch":94.875,"roll":10.625},"location":"Left Ankle"},{"euler":{"heading":87.25,"pitch":-31.5,"roll":-10.1875},"location":"Right Ankle"},{"euler":{"heading":160.1875,"pitch":-161.75,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":298.8125,"pitch":-102.0,"roll":68.0},"location":"Right Knee"},{"euler":{"heading":18.5625,"pitch":-148.5625,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.864"} +{"sensors":[{"euler":{"heading":76.0625,"pitch":115.5,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":46.25,"pitch":95.25,"roll":17.5625},"location":"Left Ankle"},{"euler":{"heading":96.6875,"pitch":-31.875,"roll":-5.5625},"location":"Right Ankle"},{"euler":{"heading":150.6875,"pitch":-165.5625,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":286.5625,"pitch":-115.1875,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":21.0,"pitch":-155.3125,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:09.964"} +{"sensors":[{"euler":{"heading":87.5625,"pitch":114.875,"roll":1.375},"location":"Left Knee"},{"euler":{"heading":55.6875,"pitch":92.9375,"roll":31.75},"location":"Left Ankle"},{"euler":{"heading":89.6875,"pitch":-29.75,"roll":-10.9375},"location":"Right Ankle"},{"euler":{"heading":152.3125,"pitch":-165.6875,"roll":50.1875},"location":"Right Hip"},{"euler":{"heading":288.0625,"pitch":-115.3125,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":23.6875,"pitch":-156.3125,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.65"} +{"sensors":[{"euler":{"heading":103.625,"pitch":114.6875,"roll":-8.625},"location":"Left Knee"},{"euler":{"heading":75.1875,"pitch":100.5,"roll":49.375},"location":"Left Ankle"},{"euler":{"heading":83.625,"pitch":-25.8125,"roll":-16.0625},"location":"Right Ankle"},{"euler":{"heading":154.0,"pitch":-164.875,"roll":53.4375},"location":"Right Hip"},{"euler":{"heading":290.9375,"pitch":-117.5,"roll":66.3125},"location":"Right Knee"},{"euler":{"heading":9.0,"pitch":-130.0625,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.166"} +{"sensors":[{"euler":{"heading":102.875,"pitch":118.3125,"roll":-5.4375},"location":"Left Knee"},{"euler":{"heading":65.4375,"pitch":90.5625,"roll":39.375},"location":"Left Ankle"},{"euler":{"heading":80.3125,"pitch":-22.9375,"roll":-19.75},"location":"Right Ankle"},{"euler":{"heading":156.9375,"pitch":-163.3125,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":293.875,"pitch":-118.875,"roll":61.375},"location":"Right Knee"},{"euler":{"heading":0.3125,"pitch":-119.0625,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.267"} +{"sensors":[{"euler":{"heading":73.9375,"pitch":128.875,"roll":12.5625},"location":"Left Knee"},{"euler":{"heading":35.875,"pitch":84.875,"roll":11.75},"location":"Left Ankle"},{"euler":{"heading":77.375,"pitch":-20.75,"roll":-22.3125},"location":"Right Ankle"},{"euler":{"heading":160.625,"pitch":-161.8125,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":297.625,"pitch":-117.1875,"roll":57.375},"location":"Right Knee"},{"euler":{"heading":358.4375,"pitch":-116.5625,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.368"} +{"sensors":[{"euler":{"heading":44.25,"pitch":136.875,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":8.5,"pitch":85.5625,"roll":-13.5},"location":"Left Ankle"},{"euler":{"heading":72.0625,"pitch":-18.125,"roll":-25.4375},"location":"Right Ankle"},{"euler":{"heading":164.25,"pitch":-161.25,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":305.0625,"pitch":-114.5,"roll":50.9375},"location":"Right Knee"},{"euler":{"heading":2.25,"pitch":-119.25,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.468"} +{"sensors":[{"euler":{"heading":39.1875,"pitch":140.125,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":4.9375,"pitch":87.625,"roll":-18.375},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":-15.6875,"roll":-31.1875},"location":"Right Ankle"},{"euler":{"heading":167.1875,"pitch":-162.0625,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":315.5,"pitch":-110.625,"roll":42.8125},"location":"Right Knee"},{"euler":{"heading":7.0625,"pitch":-124.5,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.568"} +{"sensors":[{"euler":{"heading":48.8125,"pitch":132.125,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":17.9375,"pitch":92.0,"roll":-9.1875},"location":"Left Ankle"},{"euler":{"heading":47.1875,"pitch":-16.4375,"roll":-35.0},"location":"Right Ankle"},{"euler":{"heading":172.375,"pitch":-161.3125,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":337.0625,"pitch":-103.8125,"roll":30.625},"location":"Right Knee"},{"euler":{"heading":8.3125,"pitch":-125.5,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.669"} +{"sensors":[{"euler":{"heading":57.0625,"pitch":126.25,"roll":27.125},"location":"Left Knee"},{"euler":{"heading":22.9375,"pitch":91.5,"roll":-3.125},"location":"Left Ankle"},{"euler":{"heading":35.25,"pitch":-13.25,"roll":-36.625},"location":"Right Ankle"},{"euler":{"heading":182.125,"pitch":-153.9375,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":344.0,"pitch":-102.3125,"roll":22.875},"location":"Right Knee"},{"euler":{"heading":10.0,"pitch":-129.125,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.770"} +{"sensors":[{"euler":{"heading":59.75,"pitch":122.375,"roll":25.625},"location":"Left Knee"},{"euler":{"heading":28.0,"pitch":92.75,"roll":0.125},"location":"Left Ankle"},{"euler":{"heading":45.375,"pitch":-17.9375,"roll":-33.125},"location":"Right Ankle"},{"euler":{"heading":179.375,"pitch":-153.3125,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":331.125,"pitch":-101.125,"roll":34.5625},"location":"Right Knee"},{"euler":{"heading":13.6875,"pitch":-136.25,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.870"} +{"sensors":[{"euler":{"heading":64.5,"pitch":119.1875,"roll":22.625},"location":"Left Knee"},{"euler":{"heading":31.375,"pitch":93.0625,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":67.5625,"pitch":-28.375,"roll":-22.6875},"location":"Right Ankle"},{"euler":{"heading":173.6875,"pitch":-156.0,"roll":42.625},"location":"Right Hip"},{"euler":{"heading":313.0625,"pitch":-100.5625,"roll":54.0},"location":"Right Knee"},{"euler":{"heading":17.4375,"pitch":-143.5625,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:10.971"} +{"sensors":[{"euler":{"heading":70.25,"pitch":116.875,"roll":18.0},"location":"Left Knee"},{"euler":{"heading":35.8125,"pitch":93.8125,"roll":8.0},"location":"Left Ankle"},{"euler":{"heading":90.125,"pitch":-34.6875,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":164.875,"pitch":-160.5625,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":298.9375,"pitch":-105.8125,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":19.875,"pitch":-150.25,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.71"} +{"sensors":[{"euler":{"heading":76.8125,"pitch":115.0625,"roll":12.25},"location":"Left Knee"},{"euler":{"heading":42.9375,"pitch":95.375,"roll":14.875},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":-34.8125,"roll":-6.375},"location":"Right Ankle"},{"euler":{"heading":153.25,"pitch":-165.0,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":289.75,"pitch":-116.25,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":23.3125,"pitch":-157.0,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.173"} +{"sensors":[{"euler":{"heading":88.875,"pitch":114.75,"roll":0.875},"location":"Left Knee"},{"euler":{"heading":53.25,"pitch":92.1875,"roll":31.5},"location":"Left Ankle"},{"euler":{"heading":88.1875,"pitch":-31.6875,"roll":-11.75},"location":"Right Ankle"},{"euler":{"heading":155.6875,"pitch":-164.75,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":292.1875,"pitch":-112.8125,"roll":70.75},"location":"Right Knee"},{"euler":{"heading":24.8125,"pitch":-155.0,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.274"} +{"sensors":[{"euler":{"heading":102.125,"pitch":115.25,"roll":-7.6875},"location":"Left Knee"},{"euler":{"heading":60.25,"pitch":93.625,"roll":43.9375},"location":"Left Ankle"},{"euler":{"heading":83.125,"pitch":-30.9375,"roll":-15.8125},"location":"Right Ankle"},{"euler":{"heading":155.0,"pitch":-165.9375,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":297.0625,"pitch":-115.1875,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":8.5625,"pitch":-131.0,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.375"} +{"sensors":[{"euler":{"heading":99.0625,"pitch":120.625,"roll":-2.25},"location":"Left Knee"},{"euler":{"heading":55.0,"pitch":90.3125,"roll":30.5},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-28.5625,"roll":-18.625},"location":"Right Ankle"},{"euler":{"heading":158.3125,"pitch":-164.25,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":300.9375,"pitch":-115.4375,"roll":59.3125},"location":"Right Knee"},{"euler":{"heading":4.1875,"pitch":-120.9375,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.475"} +{"sensors":[{"euler":{"heading":67.75,"pitch":130.25,"roll":15.5},"location":"Left Knee"},{"euler":{"heading":28.125,"pitch":84.5,"roll":5.3125},"location":"Left Ankle"},{"euler":{"heading":76.5,"pitch":-24.9375,"roll":-22.4375},"location":"Right Ankle"},{"euler":{"heading":162.125,"pitch":-162.875,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":303.0625,"pitch":-114.5625,"roll":55.6875},"location":"Right Knee"},{"euler":{"heading":2.6875,"pitch":-117.875,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.576"} +{"sensors":[{"euler":{"heading":40.25,"pitch":139.1875,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":6.75,"pitch":83.375,"roll":-16.625},"location":"Left Ankle"},{"euler":{"heading":70.6875,"pitch":-21.125,"roll":-27.0625},"location":"Right Ankle"},{"euler":{"heading":163.5,"pitch":-164.0,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":308.5,"pitch":-112.5625,"roll":49.0625},"location":"Right Knee"},{"euler":{"heading":4.875,"pitch":-121.3125,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.677"} +{"sensors":[{"euler":{"heading":39.9375,"pitch":137.5,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":7.4375,"pitch":87.5625,"roll":-16.3125},"location":"Left Ankle"},{"euler":{"heading":60.125,"pitch":-17.9375,"roll":-32.5625},"location":"Right Ankle"},{"euler":{"heading":167.375,"pitch":-164.5625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":319.75,"pitch":-108.9375,"roll":41.3125},"location":"Right Knee"},{"euler":{"heading":10.3125,"pitch":-125.75,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.778"} +{"sensors":[{"euler":{"heading":50.125,"pitch":130.0,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":19.5,"pitch":90.6875,"roll":-7.0625},"location":"Left Ankle"},{"euler":{"heading":42.25,"pitch":-13.625,"roll":-36.3125},"location":"Right Ankle"},{"euler":{"heading":173.6875,"pitch":-160.3125,"roll":56.125},"location":"Right Hip"},{"euler":{"heading":337.25,"pitch":-101.9375,"roll":28.3125},"location":"Right Knee"},{"euler":{"heading":9.8125,"pitch":-127.6875,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.879"} +{"sensors":[{"euler":{"heading":54.6875,"pitch":124.75,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":24.8125,"pitch":91.9375,"roll":-3.1875},"location":"Left Ankle"},{"euler":{"heading":34.4375,"pitch":-7.8125,"roll":-36.375},"location":"Right Ankle"},{"euler":{"heading":176.4375,"pitch":-154.8125,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":336.5,"pitch":-103.125,"roll":24.8125},"location":"Right Knee"},{"euler":{"heading":13.3125,"pitch":-134.4375,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:11.979"} +{"sensors":[{"euler":{"heading":58.9375,"pitch":121.75,"roll":25.1875},"location":"Left Knee"},{"euler":{"heading":30.125,"pitch":91.9375,"roll":1.625},"location":"Left Ankle"},{"euler":{"heading":49.8125,"pitch":-18.6875,"roll":-31.875},"location":"Right Ankle"},{"euler":{"heading":176.6875,"pitch":-154.9375,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":325.4375,"pitch":-100.5,"roll":36.5625},"location":"Right Knee"},{"euler":{"heading":17.75,"pitch":-143.9375,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.80"} +{"sensors":[{"euler":{"heading":64.4375,"pitch":119.0625,"roll":21.1875},"location":"Left Knee"},{"euler":{"heading":33.875,"pitch":92.125,"roll":5.4375},"location":"Left Ankle"},{"euler":{"heading":72.625,"pitch":-32.375,"roll":-18.1875},"location":"Right Ankle"},{"euler":{"heading":170.125,"pitch":-158.6875,"roll":41.25},"location":"Right Hip"},{"euler":{"heading":310.125,"pitch":-99.625,"roll":56.0},"location":"Right Knee"},{"euler":{"heading":20.375,"pitch":-150.875,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.181"} +{"sensors":[{"euler":{"heading":71.0625,"pitch":117.0,"roll":15.875},"location":"Left Knee"},{"euler":{"heading":38.6875,"pitch":92.375,"roll":10.75},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":-36.375,"roll":-7.125},"location":"Right Ankle"},{"euler":{"heading":161.875,"pitch":-161.5,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":294.25,"pitch":-110.8125,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":23.1875,"pitch":-156.75,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.282"} +{"sensors":[{"euler":{"heading":78.1875,"pitch":116.5,"roll":8.875},"location":"Left Knee"},{"euler":{"heading":47.125,"pitch":92.5625,"roll":20.375},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":-34.25,"roll":-8.6875},"location":"Right Ankle"},{"euler":{"heading":150.125,"pitch":-166.1875,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":288.125,"pitch":-118.4375,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":24.875,"pitch":-162.5625,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.387"} +{"sensors":[{"euler":{"heading":92.875,"pitch":117.75,"roll":-3.1875},"location":"Left Knee"},{"euler":{"heading":59.0625,"pitch":92.4375,"roll":38.25},"location":"Left Ankle"},{"euler":{"heading":83.375,"pitch":-29.0625,"roll":-17.0625},"location":"Right Ankle"},{"euler":{"heading":155.5,"pitch":-164.375,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":289.8125,"pitch":-118.0,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":21.0625,"pitch":-151.75,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.487"} +{"sensors":[{"euler":{"heading":106.0625,"pitch":114.375,"roll":-9.375},"location":"Left Knee"},{"euler":{"heading":64.6875,"pitch":96.25,"roll":45.75},"location":"Left Ankle"},{"euler":{"heading":81.125,"pitch":-27.5625,"roll":-19.0},"location":"Right Ankle"},{"euler":{"heading":152.75,"pitch":-166.1875,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":293.9375,"pitch":-119.5625,"roll":61.8125},"location":"Right Knee"},{"euler":{"heading":8.6875,"pitch":-124.375,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.588"} +{"sensors":[{"euler":{"heading":97.625,"pitch":120.9375,"roll":-0.1875},"location":"Left Knee"},{"euler":{"heading":54.875,"pitch":90.375,"roll":29.5625},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":-25.25,"roll":-21.75},"location":"Right Ankle"},{"euler":{"heading":158.625,"pitch":-163.125,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":297.6875,"pitch":-118.5625,"roll":57.4375},"location":"Right Knee"},{"euler":{"heading":3.3125,"pitch":-119.0625,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.689"} +{"sensors":[{"euler":{"heading":64.0,"pitch":132.25,"roll":18.25},"location":"Left Knee"},{"euler":{"heading":24.75,"pitch":84.4375,"roll":2.8125},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-23.0625,"roll":-24.3125},"location":"Right Ankle"},{"euler":{"heading":162.375,"pitch":-162.4375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":302.9375,"pitch":-115.75,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":1.375,"pitch":-116.875,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.790"} +{"sensors":[{"euler":{"heading":40.0,"pitch":140.25,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":4.3125,"pitch":80.75,"roll":-18.0},"location":"Left Ankle"},{"euler":{"heading":68.6875,"pitch":-20.125,"roll":-28.1875},"location":"Right Ankle"},{"euler":{"heading":164.375,"pitch":-163.375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":310.3125,"pitch":-113.1875,"roll":46.4375},"location":"Right Knee"},{"euler":{"heading":4.75,"pitch":-120.8125,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.891"} +{"sensors":[{"euler":{"heading":43.625,"pitch":137.375,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":6.375,"pitch":86.75,"roll":-16.625},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":-16.8125,"roll":-33.375},"location":"Right Ankle"},{"euler":{"heading":166.25,"pitch":-165.75,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":321.5625,"pitch":-109.125,"roll":38.1875},"location":"Right Knee"},{"euler":{"heading":10.625,"pitch":-125.0,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:12.991"} +{"sensors":[{"euler":{"heading":53.5625,"pitch":130.25,"roll":28.3125},"location":"Left Knee"},{"euler":{"heading":19.125,"pitch":89.875,"roll":-5.9375},"location":"Left Ankle"},{"euler":{"heading":43.375,"pitch":-14.0625,"roll":-36.625},"location":"Right Ankle"},{"euler":{"heading":171.1875,"pitch":-161.0625,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":338.4375,"pitch":-103.3125,"roll":26.0625},"location":"Right Knee"},{"euler":{"heading":9.4375,"pitch":-127.1875,"roll":58.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.92"} +{"sensors":[{"euler":{"heading":59.9375,"pitch":124.5625,"roll":25.4375},"location":"Left Knee"},{"euler":{"heading":24.75,"pitch":91.9375,"roll":-1.625},"location":"Left Ankle"},{"euler":{"heading":33.0625,"pitch":-10.1875,"roll":-38.125},"location":"Right Ankle"},{"euler":{"heading":174.8125,"pitch":-156.75,"roll":49.625},"location":"Right Hip"},{"euler":{"heading":343.0,"pitch":-102.9375,"roll":21.25},"location":"Right Knee"},{"euler":{"heading":13.1875,"pitch":-133.875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.193"} +{"sensors":[{"euler":{"heading":64.3125,"pitch":120.3125,"roll":23.1875},"location":"Left Knee"},{"euler":{"heading":30.6875,"pitch":93.5,"roll":3.0625},"location":"Left Ankle"},{"euler":{"heading":51.125,"pitch":-19.75,"roll":-31.625},"location":"Right Ankle"},{"euler":{"heading":175.1875,"pitch":-156.3125,"roll":43.6875},"location":"Right Hip"},{"euler":{"heading":327.75,"pitch":-101.5,"roll":35.6875},"location":"Right Knee"},{"euler":{"heading":17.75,"pitch":-141.5,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.293"} +{"sensors":[{"euler":{"heading":69.25,"pitch":116.875,"roll":20.25},"location":"Left Knee"},{"euler":{"heading":40.5625,"pitch":95.5625,"roll":11.5625},"location":"Left Ankle"},{"euler":{"heading":75.8125,"pitch":-30.0625,"roll":-17.5},"location":"Right Ankle"},{"euler":{"heading":168.125,"pitch":-159.5,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":307.4375,"pitch":-99.4375,"roll":57.8125},"location":"Right Knee"},{"euler":{"heading":21.125,"pitch":-149.5625,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.394"} +{"sensors":[{"euler":{"heading":74.5,"pitch":114.5625,"roll":15.75},"location":"Left Knee"},{"euler":{"heading":45.3125,"pitch":96.1875,"roll":16.1875},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":-33.125,"roll":-5.8125},"location":"Right Ankle"},{"euler":{"heading":156.1875,"pitch":-163.9375,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":290.8125,"pitch":-108.0,"roll":75.125},"location":"Right Knee"},{"euler":{"heading":23.0625,"pitch":-155.5625,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.495"} +{"sensors":[{"euler":{"heading":81.25,"pitch":113.5625,"roll":9.0},"location":"Left Knee"},{"euler":{"heading":56.5,"pitch":96.375,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":-32.0,"roll":-7.375},"location":"Right Ankle"},{"euler":{"heading":148.4375,"pitch":-167.125,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":285.5625,"pitch":-111.5625,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":24.9375,"pitch":-162.3125,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.596"} +{"sensors":[{"euler":{"heading":95.0,"pitch":114.9375,"roll":-3.3125},"location":"Left Knee"},{"euler":{"heading":64.375,"pitch":95.625,"roll":39.0625},"location":"Left Ankle"},{"euler":{"heading":87.125,"pitch":-29.625,"roll":-13.1875},"location":"Right Ankle"},{"euler":{"heading":154.6875,"pitch":-165.25,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":287.125,"pitch":-111.6875,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-151.5,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.696"} +{"sensors":[{"euler":{"heading":108.125,"pitch":111.75,"roll":-9.9375},"location":"Left Knee"},{"euler":{"heading":78.75,"pitch":100.0625,"roll":51.0625},"location":"Left Ankle"},{"euler":{"heading":81.9375,"pitch":-25.125,"roll":-17.75},"location":"Right Ankle"},{"euler":{"heading":153.6875,"pitch":-165.375,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":289.3125,"pitch":-118.375,"roll":64.4375},"location":"Right Knee"},{"euler":{"heading":8.4375,"pitch":-125.5625,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.798"} +{"sensors":[{"euler":{"heading":99.8125,"pitch":120.5625,"roll":-1.9375},"location":"Left Knee"},{"euler":{"heading":63.6875,"pitch":88.3125,"roll":36.0625},"location":"Left Ankle"},{"euler":{"heading":79.5,"pitch":-22.4375,"roll":-21.0625},"location":"Right Ankle"},{"euler":{"heading":156.9375,"pitch":-163.8125,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":293.5,"pitch":-119.0,"roll":59.3125},"location":"Right Knee"},{"euler":{"heading":1.1875,"pitch":-117.3125,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:13.899"} +{"sensors":[{"euler":{"heading":64.375,"pitch":132.125,"roll":17.375},"location":"Left Knee"},{"euler":{"heading":33.4375,"pitch":82.75,"roll":7.5},"location":"Left Ankle"},{"euler":{"heading":76.1875,"pitch":-20.375,"roll":-23.5},"location":"Right Ankle"},{"euler":{"heading":159.625,"pitch":-163.5625,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":297.875,"pitch":-117.3125,"roll":54.875},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":-115.875,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.0"} +{"sensors":[{"euler":{"heading":42.375,"pitch":139.875,"roll":29.9375},"location":"Left Knee"},{"euler":{"heading":8.5625,"pitch":81.4375,"roll":-16.6875},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":-16.6875,"roll":-26.625},"location":"Right Ankle"},{"euler":{"heading":162.875,"pitch":-162.3125,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":304.125,"pitch":-115.1875,"roll":49.125},"location":"Right Knee"},{"euler":{"heading":3.8125,"pitch":-120.0,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.101"} +{"sensors":[{"euler":{"heading":47.0,"pitch":137.0,"roll":31.375},"location":"Left Knee"},{"euler":{"heading":9.125,"pitch":87.6875,"roll":-16.75},"location":"Left Ankle"},{"euler":{"heading":61.875,"pitch":-14.8125,"roll":-32.75},"location":"Right Ankle"},{"euler":{"heading":166.4375,"pitch":-162.625,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":317.9375,"pitch":-110.3125,"roll":39.25},"location":"Right Knee"},{"euler":{"heading":9.75,"pitch":-125.75,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.202"} +{"sensors":[{"euler":{"heading":55.3125,"pitch":130.1875,"roll":28.375},"location":"Left Knee"},{"euler":{"heading":21.0625,"pitch":89.25,"roll":-6.625},"location":"Left Ankle"},{"euler":{"heading":43.375,"pitch":-14.0625,"roll":-36.1875},"location":"Right Ankle"},{"euler":{"heading":172.3125,"pitch":-159.5625,"roll":57.875},"location":"Right Hip"},{"euler":{"heading":337.5625,"pitch":-103.3125,"roll":26.3125},"location":"Right Knee"},{"euler":{"heading":8.8125,"pitch":-127.5625,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.303"} +{"sensors":[{"euler":{"heading":59.5,"pitch":125.125,"roll":26.1875},"location":"Left Knee"},{"euler":{"heading":26.5625,"pitch":91.625,"roll":-2.9375},"location":"Left Ankle"},{"euler":{"heading":33.9375,"pitch":-9.5625,"roll":-37.1875},"location":"Right Ankle"},{"euler":{"heading":177.8125,"pitch":-154.25,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":337.5,"pitch":-104.3125,"roll":24.5},"location":"Right Knee"},{"euler":{"heading":12.75,"pitch":-133.1875,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.403"} +{"sensors":[{"euler":{"heading":62.3125,"pitch":122.0625,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":32.4375,"pitch":92.25,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":49.9375,"pitch":-19.0625,"roll":-31.9375},"location":"Right Ankle"},{"euler":{"heading":175.8125,"pitch":-155.0,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":324.625,"pitch":-102.6875,"roll":37.9375},"location":"Right Knee"},{"euler":{"heading":15.3125,"pitch":-143.0625,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.504"} +{"sensors":[{"euler":{"heading":67.5,"pitch":119.0,"roll":20.75},"location":"Left Knee"},{"euler":{"heading":40.1875,"pitch":93.8125,"roll":7.75},"location":"Left Ankle"},{"euler":{"heading":76.5,"pitch":-31.5625,"roll":-17.5625},"location":"Right Ankle"},{"euler":{"heading":168.0,"pitch":-159.25,"roll":42.125},"location":"Right Hip"},{"euler":{"heading":307.0625,"pitch":-102.6875,"roll":58.5625},"location":"Right Knee"},{"euler":{"heading":18.4375,"pitch":-150.75,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.605"} +{"sensors":[{"euler":{"heading":71.375,"pitch":116.6875,"roll":17.5},"location":"Left Knee"},{"euler":{"heading":45.0625,"pitch":94.9375,"roll":12.5625},"location":"Left Ankle"},{"euler":{"heading":91.1875,"pitch":-33.5,"roll":-7.9375},"location":"Right Ankle"},{"euler":{"heading":159.8125,"pitch":-162.1875,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":290.5625,"pitch":-110.3125,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":20.9375,"pitch":-156.0625,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.705"} +{"sensors":[{"euler":{"heading":78.75,"pitch":114.5625,"roll":11.1875},"location":"Left Knee"},{"euler":{"heading":52.5,"pitch":95.875,"roll":20.5625},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":-32.4375,"roll":-9.75},"location":"Right Ankle"},{"euler":{"heading":150.75,"pitch":-165.9375,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":285.375,"pitch":-113.1875,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":24.9375,"pitch":-162.125,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.806"} +{"sensors":[{"euler":{"heading":92.8125,"pitch":114.8125,"roll":-1.1875},"location":"Left Knee"},{"euler":{"heading":60.5,"pitch":94.125,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":-30.375,"roll":-14.4375},"location":"Right Ankle"},{"euler":{"heading":157.0625,"pitch":-163.9375,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":287.5625,"pitch":-116.6875,"roll":69.9375},"location":"Right Knee"},{"euler":{"heading":20.0625,"pitch":-151.125,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:14.908"} +{"sensors":[{"euler":{"heading":105.8125,"pitch":113.9375,"roll":-8.0625},"location":"Left Knee"},{"euler":{"heading":73.3125,"pitch":96.625,"roll":48.5625},"location":"Left Ankle"},{"euler":{"heading":84.0,"pitch":-29.375,"roll":-17.1875},"location":"Right Ankle"},{"euler":{"heading":155.25,"pitch":-165.4375,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":292.3125,"pitch":-120.8125,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":4.875,"pitch":-126.0,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.8"} +{"sensors":[{"euler":{"heading":97.375,"pitch":121.875,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":60.9375,"pitch":87.875,"roll":33.5625},"location":"Left Ankle"},{"euler":{"heading":80.625,"pitch":-28.9375,"roll":-20.1875},"location":"Right Ankle"},{"euler":{"heading":161.0625,"pitch":-163.1875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":298.625,"pitch":-118.0,"roll":58.375},"location":"Right Knee"},{"euler":{"heading":0.1875,"pitch":-120.875,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.109"} +{"sensors":[{"euler":{"heading":60.4375,"pitch":132.5,"roll":19.875},"location":"Left Knee"},{"euler":{"heading":31.1875,"pitch":83.0625,"roll":5.0},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":-27.125,"roll":-23.9375},"location":"Right Ankle"},{"euler":{"heading":164.625,"pitch":-162.125,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":304.1875,"pitch":-115.3125,"roll":53.375},"location":"Right Knee"},{"euler":{"heading":7.9375,"pitch":-118.25,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.212"} +{"sensors":[{"euler":{"heading":36.375,"pitch":140.4375,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":7.0625,"pitch":83.375,"roll":-19.1875},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-22.75,"roll":-27.875},"location":"Right Ankle"},{"euler":{"heading":167.0,"pitch":-162.375,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":310.0,"pitch":-113.25,"roll":47.375},"location":"Right Knee"},{"euler":{"heading":3.3125,"pitch":-120.5625,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.313"} +{"sensors":[{"euler":{"heading":41.6875,"pitch":138.5,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":9.375,"pitch":88.625,"roll":-17.125},"location":"Left Ankle"},{"euler":{"heading":60.625,"pitch":-18.875,"roll":-34.625},"location":"Right Ankle"},{"euler":{"heading":169.4375,"pitch":-164.0625,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":320.6875,"pitch":-109.8125,"roll":39.3125},"location":"Right Knee"},{"euler":{"heading":8.6875,"pitch":-124.0625,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.413"} +{"sensors":[{"euler":{"heading":53.125,"pitch":130.25,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":20.375,"pitch":91.4375,"roll":-7.75},"location":"Left Ankle"},{"euler":{"heading":44.5,"pitch":-15.4375,"roll":-38.125},"location":"Right Ankle"},{"euler":{"heading":173.875,"pitch":-160.875,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":338.1875,"pitch":-103.5625,"roll":27.5},"location":"Right Knee"},{"euler":{"heading":9.25,"pitch":-126.125,"roll":56.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.514"} +{"sensors":[{"euler":{"heading":58.375,"pitch":123.5,"roll":29.125},"location":"Left Knee"},{"euler":{"heading":28.0625,"pitch":94.25,"roll":-3.125},"location":"Left Ankle"},{"euler":{"heading":32.0625,"pitch":-10.25,"roll":-39.75},"location":"Right Ankle"},{"euler":{"heading":180.25,"pitch":-155.0,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":340.625,"pitch":-102.875,"roll":22.0},"location":"Right Knee"},{"euler":{"heading":15.25,"pitch":-133.875,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.614"} +{"sensors":[{"euler":{"heading":61.1875,"pitch":119.25,"roll":27.5},"location":"Left Knee"},{"euler":{"heading":34.4375,"pitch":96.0625,"roll":1.4375},"location":"Left Ankle"},{"euler":{"heading":44.0625,"pitch":-17.625,"roll":-35.0625},"location":"Right Ankle"},{"euler":{"heading":181.875,"pitch":-154.0,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":326.25,"pitch":-101.4375,"roll":34.6875},"location":"Right Knee"},{"euler":{"heading":19.3125,"pitch":-142.625,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.715"} +{"sensors":[{"euler":{"heading":66.25,"pitch":116.25,"roll":24.125},"location":"Left Knee"},{"euler":{"heading":43.625,"pitch":97.875,"roll":8.9375},"location":"Left Ankle"},{"euler":{"heading":70.125,"pitch":-31.375,"roll":-21.25},"location":"Right Ankle"},{"euler":{"heading":175.4375,"pitch":-157.625,"roll":41.125},"location":"Right Hip"},{"euler":{"heading":309.6875,"pitch":-99.4375,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-149.1875,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.815"} +{"sensors":[{"euler":{"heading":72.0,"pitch":113.625,"roll":19.4375},"location":"Left Knee"},{"euler":{"heading":46.9375,"pitch":98.0625,"roll":13.3125},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":-34.4375,"roll":-9.0625},"location":"Right Ankle"},{"euler":{"heading":166.75,"pitch":-160.1875,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":293.1875,"pitch":-107.6875,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":23.375,"pitch":-152.875,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:15.916"} +{"sensors":[{"euler":{"heading":77.875,"pitch":112.3125,"roll":13.25},"location":"Left Knee"},{"euler":{"heading":54.0,"pitch":98.3125,"roll":20.5625},"location":"Left Ankle"},{"euler":{"heading":97.0625,"pitch":-35.25,"roll":-7.0625},"location":"Right Ankle"},{"euler":{"heading":155.9375,"pitch":-164.0,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":286.5625,"pitch":-120.5,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":24.5625,"pitch":-158.0,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.17"} +{"sensors":[{"euler":{"heading":88.1875,"pitch":111.3125,"roll":3.5625},"location":"Left Knee"},{"euler":{"heading":65.625,"pitch":97.375,"roll":33.5625},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":-30.6875,"roll":-13.5625},"location":"Right Ankle"},{"euler":{"heading":153.625,"pitch":-165.25,"roll":50.5625},"location":"Right Hip"},{"euler":{"heading":284.875,"pitch":-118.875,"roll":70.875},"location":"Right Knee"},{"euler":{"heading":25.5,"pitch":-157.4375,"roll":65.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.117"} +{"sensors":[{"euler":{"heading":103.25,"pitch":96.4375,"roll":-7.0},"location":"Left Knee"},{"euler":{"heading":77.75,"pitch":101.4375,"roll":47.8125},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":-26.6875,"roll":-17.5},"location":"Right Ankle"},{"euler":{"heading":155.125,"pitch":-164.875,"roll":54.0},"location":"Right Hip"},{"euler":{"heading":286.875,"pitch":-123.625,"roll":64.5625},"location":"Right Knee"},{"euler":{"heading":11.0,"pitch":-134.375,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.218"} +{"sensors":[{"euler":{"heading":104.4375,"pitch":115.25,"roll":-5.4375},"location":"Left Knee"},{"euler":{"heading":72.75,"pitch":90.9375,"roll":42.4375},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-24.625,"roll":-21.0},"location":"Right Ankle"},{"euler":{"heading":156.9375,"pitch":-163.625,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":291.5625,"pitch":-121.1875,"roll":59.3125},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":-121.5,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.318"} +{"sensors":[{"euler":{"heading":77.3125,"pitch":128.3125,"roll":11.9375},"location":"Left Knee"},{"euler":{"heading":42.1875,"pitch":84.8125,"roll":16.625},"location":"Left Ankle"},{"euler":{"heading":78.8125,"pitch":-23.375,"roll":-25.25},"location":"Right Ankle"},{"euler":{"heading":160.875,"pitch":-162.625,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":296.9375,"pitch":-118.8125,"roll":54.75},"location":"Right Knee"},{"euler":{"heading":358.0625,"pitch":-117.5,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.419"} +{"sensors":[{"euler":{"heading":44.5,"pitch":137.9375,"roll":28.9375},"location":"Left Knee"},{"euler":{"heading":13.25,"pitch":81.9375,"roll":-10.6875},"location":"Left Ankle"},{"euler":{"heading":73.9375,"pitch":-21.5625,"roll":-27.0625},"location":"Right Ankle"},{"euler":{"heading":164.3125,"pitch":-163.125,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":304.0625,"pitch":-115.875,"roll":49.25},"location":"Right Knee"},{"euler":{"heading":1.6875,"pitch":-119.3125,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.520"} +{"sensors":[{"euler":{"heading":36.1875,"pitch":142.0625,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":5.0625,"pitch":84.3125,"roll":-21.25},"location":"Left Ankle"},{"euler":{"heading":65.75,"pitch":-18.1875,"roll":-32.0},"location":"Right Ankle"},{"euler":{"heading":167.6875,"pitch":-164.125,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":314.75,"pitch":-112.0625,"roll":41.9375},"location":"Right Knee"},{"euler":{"heading":7.75,"pitch":-125.0625,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.621"} +{"sensors":[{"euler":{"heading":49.125,"pitch":132.9375,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":18.5,"pitch":91.875,"roll":-10.5625},"location":"Left Ankle"},{"euler":{"heading":50.4375,"pitch":-16.1875,"roll":-36.3125},"location":"Right Ankle"},{"euler":{"heading":173.25,"pitch":-162.625,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":332.75,"pitch":-106.0,"roll":30.25},"location":"Right Knee"},{"euler":{"heading":9.5625,"pitch":-127.5625,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.723"} +{"sensors":[{"euler":{"heading":56.0625,"pitch":126.75,"roll":29.125},"location":"Left Knee"},{"euler":{"heading":23.6875,"pitch":92.125,"roll":-5.8125},"location":"Left Ankle"},{"euler":{"heading":34.125,"pitch":-5.625,"roll":-41.375},"location":"Right Ankle"},{"euler":{"heading":181.5625,"pitch":-154.75,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":338.1875,"pitch":-104.6875,"roll":21.9375},"location":"Right Knee"},{"euler":{"heading":12.0,"pitch":-131.25,"roll":57.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.824"} +{"sensors":[{"euler":{"heading":58.125,"pitch":122.9375,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":29.0625,"pitch":92.4375,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":39.9375,"pitch":-13.4375,"roll":-35.125},"location":"Right Ankle"},{"euler":{"heading":183.3125,"pitch":-153.1875,"roll":45.5},"location":"Right Hip"},{"euler":{"heading":331.875,"pitch":-100.5625,"roll":30.125},"location":"Right Knee"},{"euler":{"heading":14.1875,"pitch":-138.5,"roll":59.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:16.924"} +{"sensors":[{"euler":{"heading":62.25,"pitch":120.375,"roll":24.1875},"location":"Left Knee"},{"euler":{"heading":36.25,"pitch":92.75,"roll":5.0},"location":"Left Ankle"},{"euler":{"heading":63.8125,"pitch":-29.5625,"roll":-23.25},"location":"Right Ankle"},{"euler":{"heading":177.375,"pitch":-155.75,"roll":41.9375},"location":"Right Hip"},{"euler":{"heading":313.9375,"pitch":-99.25,"roll":52.375},"location":"Right Knee"},{"euler":{"heading":16.5,"pitch":-144.3125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.25"} +{"sensors":[{"euler":{"heading":67.375,"pitch":117.75,"roll":20.375},"location":"Left Knee"},{"euler":{"heading":40.625,"pitch":93.5625,"roll":8.9375},"location":"Left Ankle"},{"euler":{"heading":88.8125,"pitch":-34.0,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":166.75,"pitch":-160.625,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":296.1875,"pitch":-102.0,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":18.625,"pitch":-150.1875,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.126"} +{"sensors":[{"euler":{"heading":73.4375,"pitch":115.4375,"roll":15.0625},"location":"Left Knee"},{"euler":{"heading":46.75,"pitch":94.1875,"roll":15.125},"location":"Left Ankle"},{"euler":{"heading":97.4375,"pitch":-36.25,"roll":-5.125},"location":"Right Ankle"},{"euler":{"heading":155.875,"pitch":-164.375,"roll":46.5},"location":"Right Hip"},{"euler":{"heading":287.5,"pitch":-115.75,"roll":78.125},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-156.0625,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.226"} +{"sensors":[{"euler":{"heading":83.625,"pitch":114.75,"roll":6.3125},"location":"Left Knee"},{"euler":{"heading":55.5,"pitch":94.0625,"roll":26.0625},"location":"Left Ankle"},{"euler":{"heading":90.75,"pitch":-29.625,"roll":-11.875},"location":"Right Ankle"},{"euler":{"heading":154.125,"pitch":-165.3125,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":284.0,"pitch":-116.375,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":25.0625,"pitch":-161.5,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.326"} +{"sensors":[{"euler":{"heading":100.5625,"pitch":114.25,"roll":-6.0},"location":"Left Knee"},{"euler":{"heading":71.5,"pitch":101.0625,"roll":43.125},"location":"Left Ankle"},{"euler":{"heading":84.75,"pitch":-25.4375,"roll":-17.25},"location":"Right Ankle"},{"euler":{"heading":157.6875,"pitch":-163.375,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":286.1875,"pitch":-118.4375,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":12.3125,"pitch":-142.5625,"roll":61.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.427"} +{"sensors":[{"euler":{"heading":106.625,"pitch":116.8125,"roll":-6.25},"location":"Left Knee"},{"euler":{"heading":67.9375,"pitch":96.875,"roll":39.625},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":-23.375,"roll":-20.625},"location":"Right Ankle"},{"euler":{"heading":157.875,"pitch":-163.1875,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":289.0625,"pitch":-121.4375,"roll":61.875},"location":"Right Knee"},{"euler":{"heading":2.8125,"pitch":-125.375,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.528"} +{"sensors":[{"euler":{"heading":82.6875,"pitch":127.875,"roll":9.0},"location":"Left Knee"},{"euler":{"heading":43.4375,"pitch":87.125,"roll":17.1875},"location":"Left Ankle"},{"euler":{"heading":80.375,"pitch":-21.0,"roll":-24.1875},"location":"Right Ankle"},{"euler":{"heading":163.0,"pitch":-160.6875,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":292.9375,"pitch":-120.125,"roll":57.5625},"location":"Right Knee"},{"euler":{"heading":358.6875,"pitch":-120.125,"roll":51.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.628"} +{"sensors":[{"euler":{"heading":44.375,"pitch":138.5,"roll":28.125},"location":"Left Knee"},{"euler":{"heading":15.125,"pitch":83.8125,"roll":-8.25},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-17.875,"roll":-27.5},"location":"Right Ankle"},{"euler":{"heading":167.0625,"pitch":-159.4375,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":298.8125,"pitch":-117.5625,"roll":51.625},"location":"Right Knee"},{"euler":{"heading":1.3125,"pitch":-121.4375,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.729"} +{"sensors":[{"euler":{"heading":32.875,"pitch":144.0625,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":4.1875,"pitch":81.625,"roll":-21.375},"location":"Left Ankle"},{"euler":{"heading":66.0,"pitch":-14.5625,"roll":-33.4375},"location":"Right Ankle"},{"euler":{"heading":170.25,"pitch":-159.375,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":308.0,"pitch":-114.3125,"roll":43.6875},"location":"Right Knee"},{"euler":{"heading":6.8125,"pitch":-124.875,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.831"} +{"sensors":[{"euler":{"heading":45.8125,"pitch":135.9375,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":14.125,"pitch":90.8125,"roll":-13.6875},"location":"Left Ankle"},{"euler":{"heading":53.0,"pitch":-12.6875,"roll":-37.0},"location":"Right Ankle"},{"euler":{"heading":173.25,"pitch":-161.6875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":326.0625,"pitch":-108.625,"roll":33.1875},"location":"Right Knee"},{"euler":{"heading":10.9375,"pitch":-128.6875,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:17.932"} +{"sensors":[{"euler":{"heading":54.8125,"pitch":127.4375,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":23.875,"pitch":93.5625,"roll":-5.5},"location":"Left Ankle"},{"euler":{"heading":35.25,"pitch":-6.0,"roll":-41.4375},"location":"Right Ankle"},{"euler":{"heading":180.0625,"pitch":-156.5625,"roll":54.5625},"location":"Right Hip"},{"euler":{"heading":339.5625,"pitch":-103.6875,"roll":22.6875},"location":"Right Knee"},{"euler":{"heading":13.4375,"pitch":-131.5625,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.33"} +{"sensors":[{"euler":{"heading":59.4375,"pitch":121.4375,"roll":29.5},"location":"Left Knee"},{"euler":{"heading":30.625,"pitch":96.75,"roll":-1.5625},"location":"Left Ankle"},{"euler":{"heading":36.5,"pitch":-13.5,"roll":-37.875},"location":"Right Ankle"},{"euler":{"heading":183.6875,"pitch":-153.875,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":336.375,"pitch":-101.0,"roll":27.3125},"location":"Right Knee"},{"euler":{"heading":18.375,"pitch":-140.375,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.134"} +{"sensors":[{"euler":{"heading":63.8125,"pitch":117.25,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":35.25,"pitch":98.375,"roll":2.25},"location":"Left Ankle"},{"euler":{"heading":61.0625,"pitch":-26.875,"roll":-28.75},"location":"Right Ankle"},{"euler":{"heading":179.4375,"pitch":-156.0,"roll":40.3125},"location":"Right Hip"},{"euler":{"heading":318.4375,"pitch":-102.5625,"roll":45.3125},"location":"Right Knee"},{"euler":{"heading":23.0,"pitch":-148.25,"roll":62.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.235"} +{"sensors":[{"euler":{"heading":69.4375,"pitch":114.3125,"roll":23.125},"location":"Left Knee"},{"euler":{"heading":39.1875,"pitch":98.875,"roll":6.125},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":-35.0625,"roll":-13.625},"location":"Right Ankle"},{"euler":{"heading":126.5625,"pitch":-158.1875,"roll":39.875},"location":"Right Hip"},{"euler":{"heading":300.375,"pitch":-103.25,"roll":66.0},"location":"Right Knee"},{"euler":{"heading":24.0625,"pitch":-153.125,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.335"} +{"sensors":[{"euler":{"heading":74.625,"pitch":112.75,"roll":17.0625},"location":"Left Knee"},{"euler":{"heading":44.75,"pitch":99.75,"roll":11.8125},"location":"Left Ankle"},{"euler":{"heading":96.6875,"pitch":-36.5625,"roll":-4.625},"location":"Right Ankle"},{"euler":{"heading":161.5625,"pitch":-162.25,"roll":44.75},"location":"Right Hip"},{"euler":{"heading":286.5625,"pitch":-113.375,"roll":78.5},"location":"Right Knee"},{"euler":{"heading":24.3125,"pitch":-158.3125,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.437"} +{"sensors":[{"euler":{"heading":82.6875,"pitch":112.75,"roll":8.25},"location":"Left Knee"},{"euler":{"heading":52.3125,"pitch":98.9375,"roll":21.25},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":-31.6875,"roll":-10.5},"location":"Right Ankle"},{"euler":{"heading":155.1875,"pitch":-165.4375,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":284.4375,"pitch":-115.125,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":26.0,"pitch":-162.375,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.537"} +{"sensors":[{"euler":{"heading":99.8125,"pitch":115.9375,"roll":-4.75},"location":"Left Knee"},{"euler":{"heading":64.125,"pitch":97.3125,"roll":40.1875},"location":"Left Ankle"},{"euler":{"heading":85.625,"pitch":-30.0,"roll":-15.6875},"location":"Right Ankle"},{"euler":{"heading":158.3125,"pitch":-164.3125,"roll":51.9375},"location":"Right Hip"},{"euler":{"heading":287.875,"pitch":-119.875,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":15.125,"pitch":-148.5,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.638"} +{"sensors":[{"euler":{"heading":106.0625,"pitch":115.8125,"roll":-7.125},"location":"Left Knee"},{"euler":{"heading":67.5,"pitch":95.5625,"roll":45.375},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":-28.625,"roll":-18.5},"location":"Right Ankle"},{"euler":{"heading":157.25,"pitch":-165.125,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":291.875,"pitch":-119.25,"roll":62.375},"location":"Right Knee"},{"euler":{"heading":5.0,"pitch":-124.375,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.739"} +{"sensors":[{"euler":{"heading":89.0625,"pitch":124.625,"roll":5.9375},"location":"Left Knee"},{"euler":{"heading":52.4375,"pitch":86.6875,"roll":25.625},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-27.5625,"roll":-22.125},"location":"Right Ankle"},{"euler":{"heading":162.4375,"pitch":-162.875,"roll":57.625},"location":"Right Hip"},{"euler":{"heading":297.25,"pitch":-117.9375,"roll":57.5},"location":"Right Knee"},{"euler":{"heading":359.5625,"pitch":-120.1875,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.840"} +{"sensors":[{"euler":{"heading":51.5,"pitch":135.625,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":22.875,"pitch":82.25,"roll":-1.8125},"location":"Left Ankle"},{"euler":{"heading":74.6875,"pitch":-25.25,"roll":-24.375},"location":"Right Ankle"},{"euler":{"heading":165.375,"pitch":-162.8125,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":302.5625,"pitch":-115.625,"roll":52.6875},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":-118.3125,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:18.941"} +{"sensors":[{"euler":{"heading":35.625,"pitch":142.5,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":2.8125,"pitch":82.25,"roll":-22.25},"location":"Left Ankle"},{"euler":{"heading":68.6875,"pitch":-21.5625,"roll":-30.625},"location":"Right Ankle"},{"euler":{"heading":167.625,"pitch":-163.375,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":309.0625,"pitch":-113.25,"roll":46.6875},"location":"Right Knee"},{"euler":{"heading":6.625,"pitch":-124.0,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.42"} +{"sensors":[{"euler":{"heading":46.125,"pitch":135.875,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":7.375,"pitch":89.375,"roll":-18.5625},"location":"Left Ankle"},{"euler":{"heading":59.5625,"pitch":-18.25,"roll":-34.5},"location":"Right Ankle"},{"euler":{"heading":168.6875,"pitch":-167.5625,"roll":62.0},"location":"Right Hip"},{"euler":{"heading":318.875,"pitch":-109.25,"roll":39.0625},"location":"Right Knee"},{"euler":{"heading":13.8125,"pitch":-127.4375,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.142"} +{"sensors":[{"euler":{"heading":54.9375,"pitch":128.75,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":21.75,"pitch":92.6875,"roll":-5.9375},"location":"Left Ankle"},{"euler":{"heading":43.4375,"pitch":-15.625,"roll":-37.6875},"location":"Right Ankle"},{"euler":{"heading":175.625,"pitch":-163.875,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":335.875,"pitch":-102.6875,"roll":27.1875},"location":"Right Knee"},{"euler":{"heading":13.3125,"pitch":-128.875,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.243"} +{"sensors":[{"euler":{"heading":58.75,"pitch":124.125,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":26.0625,"pitch":93.5625,"roll":-3.0},"location":"Left Ankle"},{"euler":{"heading":32.25,"pitch":-11.0,"roll":-39.1875},"location":"Right Ankle"},{"euler":{"heading":181.5625,"pitch":-155.4375,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":336.875,"pitch":-100.625,"roll":24.625},"location":"Right Knee"},{"euler":{"heading":16.9375,"pitch":-136.6875,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.343"} +{"sensors":[{"euler":{"heading":61.375,"pitch":120.8125,"roll":25.4375},"location":"Left Knee"},{"euler":{"heading":34.4375,"pitch":95.0,"roll":3.4375},"location":"Left Ankle"},{"euler":{"heading":45.5,"pitch":-18.5,"roll":-33.8125},"location":"Right Ankle"},{"euler":{"heading":183.125,"pitch":-153.9375,"roll":44.25},"location":"Right Hip"},{"euler":{"heading":322.0,"pitch":-99.8125,"roll":38.75},"location":"Right Knee"},{"euler":{"heading":18.1875,"pitch":-143.375,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.444"} +{"sensors":[{"euler":{"heading":67.6875,"pitch":115.125,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":47.25,"pitch":99.5,"roll":12.5},"location":"Left Ankle"},{"euler":{"heading":66.375,"pitch":-29.6875,"roll":-21.6875},"location":"Right Ankle"},{"euler":{"heading":176.375,"pitch":-157.3125,"roll":41.1875},"location":"Right Hip"},{"euler":{"heading":302.375,"pitch":-96.9375,"roll":60.4375},"location":"Right Knee"},{"euler":{"heading":21.3125,"pitch":-148.625,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.546"} +{"sensors":[{"euler":{"heading":72.8125,"pitch":112.8125,"roll":18.3125},"location":"Left Knee"},{"euler":{"heading":50.6875,"pitch":99.6875,"roll":16.4375},"location":"Left Ankle"},{"euler":{"heading":89.25,"pitch":-35.5,"roll":-9.5},"location":"Right Ankle"},{"euler":{"heading":166.1875,"pitch":-161.375,"roll":43.0},"location":"Right Hip"},{"euler":{"heading":288.5,"pitch":-106.375,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":23.6875,"pitch":-154.0,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.647"} +{"sensors":[{"euler":{"heading":78.9375,"pitch":112.375,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":56.5625,"pitch":98.5625,"roll":23.0625},"location":"Left Ankle"},{"euler":{"heading":97.375,"pitch":-35.5,"roll":-6.3125},"location":"Right Ankle"},{"euler":{"heading":155.6875,"pitch":-164.375,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":282.125,"pitch":-117.1875,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":25.8125,"pitch":-161.5,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.748"} +{"sensors":[{"euler":{"heading":89.9375,"pitch":114.3125,"roll":0.6875},"location":"Left Knee"},{"euler":{"heading":65.375,"pitch":94.875,"roll":35.875},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":-29.375,"roll":-14.25},"location":"Right Ankle"},{"euler":{"heading":156.6875,"pitch":-163.9375,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":280.75,"pitch":-112.3125,"roll":73.75},"location":"Right Knee"},{"euler":{"heading":26.25,"pitch":-162.3125,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.849"} +{"sensors":[{"euler":{"heading":103.4375,"pitch":112.875,"roll":-7.5625},"location":"Left Knee"},{"euler":{"heading":77.8125,"pitch":99.4375,"roll":48.125},"location":"Left Ankle"},{"euler":{"heading":82.3125,"pitch":-26.75,"roll":-18.875},"location":"Right Ankle"},{"euler":{"heading":157.5,"pitch":-164.0,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":283.9375,"pitch":-119.5625,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":12.9375,"pitch":-137.9375,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:19.950"} +{"sensors":[{"euler":{"heading":103.3125,"pitch":118.375,"roll":-4.5},"location":"Left Knee"},{"euler":{"heading":66.125,"pitch":88.8125,"roll":40.5},"location":"Left Ankle"},{"euler":{"heading":79.0,"pitch":-25.125,"roll":-21.875},"location":"Right Ankle"},{"euler":{"heading":160.125,"pitch":-163.0625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":289.375,"pitch":-120.6875,"roll":61.1875},"location":"Right Knee"},{"euler":{"heading":3.125,"pitch":-124.0625,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.51"} +{"sensors":[{"euler":{"heading":78.5625,"pitch":127.625,"roll":12.1875},"location":"Left Knee"},{"euler":{"heading":40.625,"pitch":85.5625,"roll":15.1875},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":-23.1875,"roll":-24.1875},"location":"Right Ankle"},{"euler":{"heading":163.5,"pitch":-162.25,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":294.4375,"pitch":-118.6875,"roll":56.5},"location":"Right Knee"},{"euler":{"heading":1.9375,"pitch":-120.75,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.151"} +{"sensors":[{"euler":{"heading":46.75,"pitch":137.25,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":12.3125,"pitch":84.3125,"roll":-11.0625},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-20.125,"roll":-27.25},"location":"Right Ankle"},{"euler":{"heading":165.5625,"pitch":-162.9375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":299.6875,"pitch":-116.0625,"roll":50.9375},"location":"Right Knee"},{"euler":{"heading":3.3125,"pitch":-122.375,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.252"} +{"sensors":[{"euler":{"heading":36.6875,"pitch":141.5625,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":4.5,"pitch":84.8125,"roll":-21.75},"location":"Left Ankle"},{"euler":{"heading":61.875,"pitch":-16.4375,"roll":-33.0625},"location":"Right Ankle"},{"euler":{"heading":167.9375,"pitch":-164.75,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":308.9375,"pitch":-112.6875,"roll":42.9375},"location":"Right Knee"},{"euler":{"heading":10.25,"pitch":-128.375,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.352"} +{"sensors":[{"euler":{"heading":50.0,"pitch":132.5,"roll":32.875},"location":"Left Knee"},{"euler":{"heading":17.5625,"pitch":94.5625,"roll":-11.625},"location":"Left Ankle"},{"euler":{"heading":49.375,"pitch":-16.875,"roll":-36.3125},"location":"Right Ankle"},{"euler":{"heading":172.5,"pitch":-164.4375,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":325.125,"pitch":-106.3125,"roll":31.1875},"location":"Right Knee"},{"euler":{"heading":11.1875,"pitch":-129.5,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.453"} +{"sensors":[{"euler":{"heading":56.9375,"pitch":126.25,"roll":29.1875},"location":"Left Knee"},{"euler":{"heading":23.6875,"pitch":94.0,"roll":-4.875},"location":"Left Ankle"},{"euler":{"heading":33.125,"pitch":-6.625,"roll":-40.5625},"location":"Right Ankle"},{"euler":{"heading":179.25,"pitch":-155.8125,"roll":53.875},"location":"Right Hip"},{"euler":{"heading":331.375,"pitch":-103.5625,"roll":23.75},"location":"Right Knee"},{"euler":{"heading":13.375,"pitch":-131.0625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.554"} +{"sensors":[{"euler":{"heading":58.75,"pitch":123.25,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":28.0625,"pitch":93.5,"roll":-1.5},"location":"Left Ankle"},{"euler":{"heading":41.6875,"pitch":-14.8125,"roll":-36.4375},"location":"Right Ankle"},{"euler":{"heading":183.75,"pitch":-153.0,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":326.4375,"pitch":-101.1875,"roll":31.8125},"location":"Right Knee"},{"euler":{"heading":15.8125,"pitch":-140.9375,"roll":59.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.655"} +{"sensors":[{"euler":{"heading":62.3125,"pitch":121.25,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":32.8125,"pitch":93.3125,"roll":2.4375},"location":"Left Ankle"},{"euler":{"heading":65.0,"pitch":-29.375,"roll":-24.125},"location":"Right Ankle"},{"euler":{"heading":179.75,"pitch":-155.1875,"roll":41.8125},"location":"Right Hip"},{"euler":{"heading":309.125,"pitch":-99.9375,"roll":52.125},"location":"Right Knee"},{"euler":{"heading":16.75,"pitch":-148.4375,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.755"} +{"sensors":[{"euler":{"heading":69.125,"pitch":118.0625,"roll":19.6875},"location":"Left Knee"},{"euler":{"heading":37.8125,"pitch":94.6875,"roll":6.9375},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":-34.375,"roll":-9.125},"location":"Right Ankle"},{"euler":{"heading":167.9375,"pitch":-160.4375,"roll":42.625},"location":"Right Hip"},{"euler":{"heading":287.875,"pitch":-104.4375,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":18.9375,"pitch":-153.75,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.856"} +{"sensors":[{"euler":{"heading":75.3125,"pitch":115.3125,"roll":14.5},"location":"Left Knee"},{"euler":{"heading":45.125,"pitch":95.8125,"roll":14.0},"location":"Left Ankle"},{"euler":{"heading":100.0,"pitch":-34.9375,"roll":-3.8125},"location":"Right Ankle"},{"euler":{"heading":157.375,"pitch":-164.25,"roll":46.75},"location":"Right Hip"},{"euler":{"heading":276.0,"pitch":-124.6875,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":22.375,"pitch":-158.375,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:20.956"} +{"sensors":[{"euler":{"heading":87.25,"pitch":114.9375,"roll":3.875},"location":"Left Knee"},{"euler":{"heading":53.625,"pitch":94.4375,"roll":25.625},"location":"Left Ankle"},{"euler":{"heading":91.0,"pitch":-29.75,"roll":-12.6875},"location":"Right Ankle"},{"euler":{"heading":156.625,"pitch":-165.125,"roll":48.0625},"location":"Right Hip"},{"euler":{"heading":275.5,"pitch":-118.6875,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":26.4375,"pitch":-162.375,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.58"} +{"sensors":[{"euler":{"heading":103.625,"pitch":116.1875,"roll":-6.9375},"location":"Left Knee"},{"euler":{"heading":72.0625,"pitch":99.875,"roll":44.375},"location":"Left Ankle"},{"euler":{"heading":89.0,"pitch":-29.625,"roll":-14.4375},"location":"Right Ankle"},{"euler":{"heading":157.375,"pitch":-164.5,"roll":51.625},"location":"Right Hip"},{"euler":{"heading":277.9375,"pitch":-122.75,"roll":69.8125},"location":"Right Knee"},{"euler":{"heading":11.375,"pitch":-142.375,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.159"} +{"sensors":[{"euler":{"heading":107.5,"pitch":116.375,"roll":-7.0},"location":"Left Knee"},{"euler":{"heading":67.6875,"pitch":91.1875,"roll":43.3125},"location":"Left Ankle"},{"euler":{"heading":86.9375,"pitch":-30.875,"roll":-18.5625},"location":"Right Ankle"},{"euler":{"heading":159.1875,"pitch":-165.0625,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":285.4375,"pitch":-120.375,"roll":63.75},"location":"Right Knee"},{"euler":{"heading":0.6875,"pitch":-121.0,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.259"} +{"sensors":[{"euler":{"heading":88.0625,"pitch":125.3125,"roll":7.25},"location":"Left Knee"},{"euler":{"heading":45.0625,"pitch":84.5625,"roll":20.9375},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":-28.5625,"roll":-21.6875},"location":"Right Ankle"},{"euler":{"heading":162.9375,"pitch":-163.5625,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":289.0625,"pitch":-118.0,"roll":59.625},"location":"Right Knee"},{"euler":{"heading":357.4375,"pitch":-116.75,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.363"} +{"sensors":[{"euler":{"heading":49.8125,"pitch":136.1875,"roll":26.1875},"location":"Left Knee"},{"euler":{"heading":16.0,"pitch":82.6875,"roll":-8.5},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-23.6875,"roll":-25.6875},"location":"Right Ankle"},{"euler":{"heading":165.9375,"pitch":-161.8125,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":291.125,"pitch":-117.4375,"roll":55.125},"location":"Right Knee"},{"euler":{"heading":358.625,"pitch":-117.5,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.464"} +{"sensors":[{"euler":{"heading":36.5625,"pitch":142.3125,"roll":33.9375},"location":"Left Knee"},{"euler":{"heading":1.0,"pitch":82.0625,"roll":-22.375},"location":"Left Ankle"},{"euler":{"heading":71.75,"pitch":-19.8125,"roll":-30.4375},"location":"Right Ankle"},{"euler":{"heading":168.0,"pitch":-161.875,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":298.6875,"pitch":-114.0625,"roll":48.25},"location":"Right Knee"},{"euler":{"heading":6.6875,"pitch":-125.5,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.564"} +{"sensors":[{"euler":{"heading":43.625,"pitch":135.625,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":14.9375,"pitch":91.0625,"roll":-13.6875},"location":"Left Ankle"},{"euler":{"heading":60.0,"pitch":-16.125,"roll":-34.9375},"location":"Right Ankle"},{"euler":{"heading":169.6875,"pitch":-164.375,"roll":60.5},"location":"Right Hip"},{"euler":{"heading":311.5,"pitch":-109.375,"roll":38.75},"location":"Right Knee"},{"euler":{"heading":7.875,"pitch":-129.1875,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.666"} +{"sensors":[{"euler":{"heading":52.25,"pitch":129.625,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":19.75,"pitch":90.125,"roll":-6.0},"location":"Left Ankle"},{"euler":{"heading":39.8125,"pitch":-10.625,"roll":-39.75},"location":"Right Ankle"},{"euler":{"heading":175.0,"pitch":-158.9375,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":324.5625,"pitch":-103.875,"roll":28.3125},"location":"Right Knee"},{"euler":{"heading":7.625,"pitch":-129.1875,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.767"} +{"sensors":[{"euler":{"heading":56.8125,"pitch":123.8125,"roll":28.5},"location":"Left Knee"},{"euler":{"heading":24.9375,"pitch":91.4375,"roll":-3.0625},"location":"Left Ankle"},{"euler":{"heading":41.5625,"pitch":-14.3125,"roll":-36.6875},"location":"Right Ankle"},{"euler":{"heading":179.0,"pitch":-154.6875,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":321.6875,"pitch":-100.8125,"roll":30.5625},"location":"Right Knee"},{"euler":{"heading":12.9375,"pitch":-139.875,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.867"} +{"sensors":[{"euler":{"heading":61.375,"pitch":119.125,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":32.5625,"pitch":94.625,"roll":2.375},"location":"Left Ankle"},{"euler":{"heading":60.6875,"pitch":-26.9375,"roll":-27.25},"location":"Right Ankle"},{"euler":{"heading":180.0625,"pitch":-154.4375,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":306.6875,"pitch":-98.6875,"roll":48.125},"location":"Right Knee"},{"euler":{"heading":17.75,"pitch":-147.0,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:21.968"} +{"sensors":[{"euler":{"heading":68.125,"pitch":115.0625,"roll":23.0},"location":"Left Knee"},{"euler":{"heading":37.375,"pitch":96.625,"roll":6.875},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":-35.1875,"roll":-14.0},"location":"Right Ankle"},{"euler":{"heading":172.375,"pitch":-159.0625,"roll":41.3125},"location":"Right Hip"},{"euler":{"heading":289.5,"pitch":-98.25,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":20.9375,"pitch":-151.875,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.68"} +{"sensors":[{"euler":{"heading":75.0625,"pitch":112.875,"roll":17.0625},"location":"Left Knee"},{"euler":{"heading":42.6875,"pitch":97.5,"roll":12.5625},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":-37.1875,"roll":-5.0625},"location":"Right Ankle"},{"euler":{"heading":162.1875,"pitch":-163.1875,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":278.4375,"pitch":-120.875,"roll":80.5},"location":"Right Knee"},{"euler":{"heading":23.0625,"pitch":-157.3125,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.170"} +{"sensors":[{"euler":{"heading":82.5625,"pitch":112.8125,"roll":9.0},"location":"Left Knee"},{"euler":{"heading":51.0625,"pitch":96.5625,"roll":23.3125},"location":"Left Ankle"},{"euler":{"heading":96.3125,"pitch":-34.0,"roll":-7.4375},"location":"Right Ankle"},{"euler":{"heading":158.125,"pitch":-164.8125,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":275.5,"pitch":-120.8125,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":24.875,"pitch":-161.0625,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.270"} +{"sensors":[{"euler":{"heading":99.5,"pitch":117.375,"roll":-5.1875},"location":"Left Knee"},{"euler":{"heading":67.5625,"pitch":95.6875,"roll":43.8125},"location":"Left Ankle"},{"euler":{"heading":88.875,"pitch":-31.9375,"roll":-14.75},"location":"Right Ankle"},{"euler":{"heading":165.125,"pitch":-162.0625,"roll":49.25},"location":"Right Hip"},{"euler":{"heading":279.4375,"pitch":-119.25,"roll":70.125},"location":"Right Knee"},{"euler":{"heading":12.875,"pitch":-144.9375,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.371"} +{"sensors":[{"euler":{"heading":106.5625,"pitch":113.625,"roll":-7.3125},"location":"Left Knee"},{"euler":{"heading":68.5,"pitch":92.9375,"roll":48.5},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":-29.1875,"roll":-18.5625},"location":"Right Ankle"},{"euler":{"heading":162.0,"pitch":-162.4375,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":280.9375,"pitch":-120.6875,"roll":65.0625},"location":"Right Knee"},{"euler":{"heading":4.5,"pitch":-124.625,"roll":56.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.471"} +{"sensors":[{"euler":{"heading":93.125,"pitch":123.3125,"roll":3.6875},"location":"Left Knee"},{"euler":{"heading":52.25,"pitch":86.0625,"roll":27.9375},"location":"Left Ankle"},{"euler":{"heading":82.375,"pitch":-28.125,"roll":-21.0625},"location":"Right Ankle"},{"euler":{"heading":165.875,"pitch":-161.625,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":285.5,"pitch":-118.0625,"roll":61.0},"location":"Right Knee"},{"euler":{"heading":359.9375,"pitch":-120.5625,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.571"} +{"sensors":[{"euler":{"heading":52.875,"pitch":135.0625,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":24.4375,"pitch":80.875,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":79.5625,"pitch":-25.5,"roll":-24.5625},"location":"Right Ankle"},{"euler":{"heading":164.8125,"pitch":-163.3125,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":288.0,"pitch":-117.125,"roll":56.9375},"location":"Right Knee"},{"euler":{"heading":358.3125,"pitch":-118.4375,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.672"} +{"sensors":[{"euler":{"heading":34.5625,"pitch":142.5625,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":3.375,"pitch":80.1875,"roll":-20.125},"location":"Left Ankle"},{"euler":{"heading":73.75,"pitch":-21.5625,"roll":-28.5625},"location":"Right Ankle"},{"euler":{"heading":166.4375,"pitch":-163.5,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":292.8125,"pitch":-115.125,"roll":51.1875},"location":"Right Knee"},{"euler":{"heading":3.9375,"pitch":-123.5625,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.773"} +{"sensors":[{"euler":{"heading":43.0625,"pitch":136.6875,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":10.9375,"pitch":87.25,"roll":-12.9375},"location":"Left Ankle"},{"euler":{"heading":63.25,"pitch":-18.125,"roll":-33.375},"location":"Right Ankle"},{"euler":{"heading":170.4375,"pitch":-164.625,"roll":60.375},"location":"Right Hip"},{"euler":{"heading":304.625,"pitch":-110.25,"roll":42.125},"location":"Right Knee"},{"euler":{"heading":10.0,"pitch":-127.375,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.873"} +{"sensors":[{"euler":{"heading":52.4375,"pitch":129.8125,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":19.6875,"pitch":90.4375,"roll":-6.0625},"location":"Left Ankle"},{"euler":{"heading":43.0625,"pitch":-10.0625,"roll":-38.625},"location":"Right Ankle"},{"euler":{"heading":178.3125,"pitch":-158.3125,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":319.125,"pitch":-102.9375,"roll":30.25},"location":"Right Knee"},{"euler":{"heading":9.75,"pitch":-130.3125,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:22.974"} +{"sensors":[{"euler":{"heading":56.625,"pitch":124.125,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":27.1875,"pitch":93.25,"roll":-1.125},"location":"Left Ankle"},{"euler":{"heading":38.9375,"pitch":-14.0625,"roll":-35.1875},"location":"Right Ankle"},{"euler":{"heading":179.5,"pitch":-155.875,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":317.6875,"pitch":-101.5625,"roll":32.0},"location":"Right Knee"},{"euler":{"heading":13.3125,"pitch":-137.25,"roll":58.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.75"} +{"sensors":[{"euler":{"heading":60.875,"pitch":120.5,"roll":26.3125},"location":"Left Knee"},{"euler":{"heading":37.6875,"pitch":95.1875,"roll":6.375},"location":"Left Ankle"},{"euler":{"heading":56.1875,"pitch":-28.1875,"roll":-29.3125},"location":"Right Ankle"},{"euler":{"heading":180.375,"pitch":-155.4375,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":303.25,"pitch":-99.5,"roll":49.0},"location":"Right Knee"},{"euler":{"heading":16.5,"pitch":-144.4375,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.176"} +{"sensors":[{"euler":{"heading":67.125,"pitch":117.125,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":39.875,"pitch":95.3125,"roll":9.75},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":-36.1875,"roll":-13.5625},"location":"Right Ankle"},{"euler":{"heading":171.0,"pitch":-159.9375,"roll":42.8125},"location":"Right Hip"},{"euler":{"heading":284.125,"pitch":-100.25,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":19.8125,"pitch":-151.0,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.277"} +{"sensors":[{"euler":{"heading":74.0,"pitch":115.625,"roll":16.3125},"location":"Left Knee"},{"euler":{"heading":43.9375,"pitch":95.0,"roll":15.5625},"location":"Left Ankle"},{"euler":{"heading":95.4375,"pitch":-38.8125,"roll":-5.8125},"location":"Right Ankle"},{"euler":{"heading":163.0625,"pitch":-162.625,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":274.0,"pitch":-120.0625,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":20.875,"pitch":-154.9375,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.378"} +{"sensors":[{"euler":{"heading":82.375,"pitch":114.25,"roll":8.75},"location":"Left Knee"},{"euler":{"heading":53.1875,"pitch":96.125,"roll":25.4375},"location":"Left Ankle"},{"euler":{"heading":92.4375,"pitch":-34.125,"roll":-10.0},"location":"Right Ankle"},{"euler":{"heading":158.25,"pitch":-163.8125,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":269.875,"pitch":-122.4375,"roll":81.1875},"location":"Right Knee"},{"euler":{"heading":24.1875,"pitch":-161.0,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.479"} +{"sensors":[{"euler":{"heading":97.8125,"pitch":116.1875,"roll":-3.75},"location":"Left Knee"},{"euler":{"heading":63.5625,"pitch":96.5625,"roll":39.8125},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":-31.5,"roll":-16.625},"location":"Right Ankle"},{"euler":{"heading":164.25,"pitch":-161.75,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":271.8125,"pitch":-116.3125,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":16.8125,"pitch":-150.4375,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.579"} +{"sensors":[{"euler":{"heading":107.25,"pitch":112.375,"roll":-7.9375},"location":"Left Knee"},{"euler":{"heading":66.0,"pitch":96.875,"roll":46.8125},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":-29.8125,"roll":-21.25},"location":"Right Ankle"},{"euler":{"heading":161.8125,"pitch":-162.6875,"roll":53.3125},"location":"Right Hip"},{"euler":{"heading":275.875,"pitch":-122.625,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":7.0625,"pitch":-128.4375,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.680"} +{"sensors":[{"euler":{"heading":97.75,"pitch":120.5,"roll":1.4375},"location":"Left Knee"},{"euler":{"heading":54.875,"pitch":89.75,"roll":28.6875},"location":"Left Ankle"},{"euler":{"heading":78.9375,"pitch":-28.0625,"roll":-24.4375},"location":"Right Ankle"},{"euler":{"heading":167.625,"pitch":-159.9375,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":280.5625,"pitch":-119.5,"roll":62.875},"location":"Right Knee"},{"euler":{"heading":0.5625,"pitch":-123.0,"roll":52.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.781"} +{"sensors":[{"euler":{"heading":57.75,"pitch":133.3125,"roll":21.25},"location":"Left Knee"},{"euler":{"heading":26.0,"pitch":82.5,"roll":2.0625},"location":"Left Ankle"},{"euler":{"heading":75.0625,"pitch":-24.9375,"roll":-25.875},"location":"Right Ankle"},{"euler":{"heading":168.25,"pitch":-160.8125,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":282.5625,"pitch":-117.8125,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":358.625,"pitch":-120.0,"roll":50.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.883"} +{"sensors":[{"euler":{"heading":33.4375,"pitch":141.625,"roll":34.1875},"location":"Left Knee"},{"euler":{"heading":3.125,"pitch":82.5625,"roll":-20.5625},"location":"Left Ankle"},{"euler":{"heading":69.6875,"pitch":-20.5625,"roll":-31.625},"location":"Right Ankle"},{"euler":{"heading":168.375,"pitch":-161.9375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":286.0625,"pitch":-116.625,"roll":52.9375},"location":"Right Knee"},{"euler":{"heading":2.375,"pitch":-122.5,"roll":51.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:23.983"} +{"sensors":[{"euler":{"heading":41.75,"pitch":138.75,"roll":33.875},"location":"Left Knee"},{"euler":{"heading":6.6875,"pitch":87.6875,"roll":-16.625},"location":"Left Ankle"},{"euler":{"heading":59.375,"pitch":-17.0,"roll":-35.875},"location":"Right Ankle"},{"euler":{"heading":171.875,"pitch":-163.5,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":296.9375,"pitch":-111.8125,"roll":44.5625},"location":"Right Knee"},{"euler":{"heading":9.5,"pitch":-126.8125,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.84"} +{"sensors":[{"euler":{"heading":52.9375,"pitch":129.875,"roll":31.5625},"location":"Left Knee"},{"euler":{"heading":17.375,"pitch":93.1875,"roll":-8.6875},"location":"Left Ankle"},{"euler":{"heading":42.375,"pitch":-14.4375,"roll":-38.5},"location":"Right Ankle"},{"euler":{"heading":177.5625,"pitch":-159.625,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":314.25,"pitch":-104.625,"roll":32.5625},"location":"Right Knee"},{"euler":{"heading":9.375,"pitch":-128.25,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.185"} +{"sensors":[{"euler":{"heading":57.4375,"pitch":124.4375,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":23.3125,"pitch":93.75,"roll":-3.5},"location":"Left Ankle"},{"euler":{"heading":32.875,"pitch":-11.5625,"roll":-39.6875},"location":"Right Ankle"},{"euler":{"heading":179.25,"pitch":-155.75,"roll":51.875},"location":"Right Hip"},{"euler":{"heading":316.75,"pitch":-102.875,"roll":28.375},"location":"Right Knee"},{"euler":{"heading":13.5,"pitch":-136.125,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.285"} +{"sensors":[{"euler":{"heading":60.875,"pitch":121.8125,"roll":26.25},"location":"Left Knee"},{"euler":{"heading":34.25,"pitch":94.9375,"roll":3.75},"location":"Left Ankle"},{"euler":{"heading":49.0,"pitch":-22.625,"roll":-33.625},"location":"Right Ankle"},{"euler":{"heading":182.375,"pitch":-154.25,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":305.3125,"pitch":-99.9375,"roll":41.0},"location":"Right Knee"},{"euler":{"heading":16.8125,"pitch":-144.125,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.386"} +{"sensors":[{"euler":{"heading":65.1875,"pitch":119.0,"roll":22.6875},"location":"Left Knee"},{"euler":{"heading":35.625,"pitch":94.0,"roll":7.1875},"location":"Left Ankle"},{"euler":{"heading":73.375,"pitch":-32.5625,"roll":-19.75},"location":"Right Ankle"},{"euler":{"heading":177.9375,"pitch":-156.0,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":286.5625,"pitch":-97.1875,"roll":77.875},"location":"Right Knee"},{"euler":{"heading":19.1875,"pitch":-150.9375,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.486"} +{"sensors":[{"euler":{"heading":71.5,"pitch":115.9375,"roll":18.0},"location":"Left Knee"},{"euler":{"heading":40.4375,"pitch":95.5,"roll":12.0625},"location":"Left Ankle"},{"euler":{"heading":93.0,"pitch":-35.8125,"roll":-9.0625},"location":"Right Ankle"},{"euler":{"heading":166.6875,"pitch":-161.5,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":270.4375,"pitch":-114.5,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":20.9375,"pitch":-155.5625,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.587"} +{"sensors":[{"euler":{"heading":79.8125,"pitch":114.375,"roll":11.1875},"location":"Left Knee"},{"euler":{"heading":48.875,"pitch":96.5625,"roll":20.4375},"location":"Left Ankle"},{"euler":{"heading":95.0,"pitch":-32.8125,"roll":-8.875},"location":"Right Ankle"},{"euler":{"heading":157.3125,"pitch":-164.5625,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":262.625,"pitch":-126.3125,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":22.625,"pitch":-160.125,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.687"} +{"sensors":[{"euler":{"heading":92.5,"pitch":114.875,"roll":-0.1875},"location":"Left Knee"},{"euler":{"heading":58.5625,"pitch":95.1875,"roll":34.4375},"location":"Left Ankle"},{"euler":{"heading":83.9375,"pitch":-29.0625,"roll":-17.0625},"location":"Right Ankle"},{"euler":{"heading":161.0625,"pitch":-162.75,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":264.875,"pitch":-119.0,"roll":75.4375},"location":"Right Knee"},{"euler":{"heading":22.5625,"pitch":-158.5625,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.788"} +{"sensors":[{"euler":{"heading":106.1875,"pitch":113.3125,"roll":-7.875},"location":"Left Knee"},{"euler":{"heading":71.5625,"pitch":97.8125,"roll":47.625},"location":"Left Ankle"},{"euler":{"heading":80.5,"pitch":-26.875,"roll":-20.375},"location":"Right Ankle"},{"euler":{"heading":159.375,"pitch":-163.375,"roll":52.625},"location":"Right Hip"},{"euler":{"heading":266.875,"pitch":-123.9375,"roll":68.875},"location":"Right Knee"},{"euler":{"heading":6.375,"pitch":-134.0625,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.889"} +{"sensors":[{"euler":{"heading":100.0,"pitch":121.25,"roll":-1.6875},"location":"Left Knee"},{"euler":{"heading":56.375,"pitch":86.8125,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-26.5625,"roll":-23.4375},"location":"Right Ankle"},{"euler":{"heading":164.375,"pitch":-160.8125,"roll":55.9375},"location":"Right Hip"},{"euler":{"heading":273.75,"pitch":-121.0625,"roll":63.125},"location":"Right Knee"},{"euler":{"heading":358.25,"pitch":-124.125,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:24.990"} +{"sensors":[{"euler":{"heading":63.75,"pitch":132.4375,"roll":17.8125},"location":"Left Knee"},{"euler":{"heading":29.0,"pitch":82.25,"roll":5.1875},"location":"Left Ankle"},{"euler":{"heading":75.875,"pitch":-25.9375,"roll":-25.4375},"location":"Right Ankle"},{"euler":{"heading":168.0,"pitch":-160.3125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":279.25,"pitch":-117.75,"roll":58.6875},"location":"Right Knee"},{"euler":{"heading":356.75,"pitch":-119.875,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.90"} +{"sensors":[{"euler":{"heading":35.25,"pitch":140.375,"roll":33.5},"location":"Left Knee"},{"euler":{"heading":4.75,"pitch":83.125,"roll":-18.125},"location":"Left Ankle"},{"euler":{"heading":71.25,"pitch":-22.9375,"roll":-29.4375},"location":"Right Ankle"},{"euler":{"heading":170.5,"pitch":-160.375,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":283.6875,"pitch":-116.5,"roll":53.4375},"location":"Right Knee"},{"euler":{"heading":349.5,"pitch":-129.9375,"roll":45.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.191"} +{"sensors":[{"euler":{"heading":33.1875,"pitch":142.5,"roll":36.0625},"location":"Left Knee"},{"euler":{"heading":2.625,"pitch":85.9375,"roll":-21.3125},"location":"Left Ankle"},{"euler":{"heading":64.125,"pitch":-19.0,"roll":-34.5625},"location":"Right Ankle"},{"euler":{"heading":172.125,"pitch":-163.0,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":292.6875,"pitch":-112.9375,"roll":46.125},"location":"Right Knee"},{"euler":{"heading":6.375,"pitch":-127.6875,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.291"} +{"sensors":[{"euler":{"heading":46.625,"pitch":133.625,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":15.25,"pitch":90.9375,"roll":-10.6875},"location":"Left Ankle"},{"euler":{"heading":50.4375,"pitch":-17.4375,"roll":-38.125},"location":"Right Ankle"},{"euler":{"heading":175.4375,"pitch":-163.625,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":310.6875,"pitch":-105.3125,"roll":33.9375},"location":"Right Knee"},{"euler":{"heading":9.3125,"pitch":-128.625,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.391"} +{"sensors":[{"euler":{"heading":55.4375,"pitch":126.3125,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":22.6875,"pitch":93.1875,"roll":-4.0625},"location":"Left Ankle"},{"euler":{"heading":31.4375,"pitch":-2.4375,"roll":-43.8125},"location":"Right Ankle"},{"euler":{"heading":179.5,"pitch":-156.875,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":313.625,"pitch":-102.4375,"roll":27.5},"location":"Right Knee"},{"euler":{"heading":12.6875,"pitch":-133.375,"roll":58.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.492"} +{"sensors":[{"euler":{"heading":58.5625,"pitch":123.0625,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":29.375,"pitch":94.25,"roll":0.4375},"location":"Left Ankle"},{"euler":{"heading":39.0625,"pitch":-13.1875,"roll":-37.8125},"location":"Right Ankle"},{"euler":{"heading":182.375,"pitch":-154.3125,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":306.4375,"pitch":-100.1875,"roll":35.25},"location":"Right Knee"},{"euler":{"heading":13.5625,"pitch":-141.25,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.593"} +{"sensors":[{"euler":{"heading":63.5625,"pitch":118.8125,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":34.125,"pitch":96.4375,"roll":4.375},"location":"Left Ankle"},{"euler":{"heading":63.8125,"pitch":-29.9375,"roll":-25.8125},"location":"Right Ankle"},{"euler":{"heading":178.1875,"pitch":-155.5,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":289.4375,"pitch":-96.75,"roll":55.4375},"location":"Right Knee"},{"euler":{"heading":16.75,"pitch":-148.4375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.694"} +{"sensors":[{"euler":{"heading":69.6875,"pitch":114.9375,"roll":21.5},"location":"Left Knee"},{"euler":{"heading":38.625,"pitch":97.6875,"roll":8.4375},"location":"Left Ankle"},{"euler":{"heading":90.375,"pitch":-35.25,"roll":-12.4375},"location":"Right Ankle"},{"euler":{"heading":169.0625,"pitch":-160.0,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":270.9375,"pitch":-106.75,"roll":75.375},"location":"Right Knee"},{"euler":{"heading":19.5625,"pitch":-153.5,"roll":61.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.795"} +{"sensors":[{"euler":{"heading":75.875,"pitch":112.4375,"roll":15.3125},"location":"Left Knee"},{"euler":{"heading":46.5625,"pitch":98.75,"roll":16.1875},"location":"Left Ankle"},{"euler":{"heading":95.5,"pitch":-35.4375,"roll":-8.125},"location":"Right Ankle"},{"euler":{"heading":157.25,"pitch":-165.0,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":260.875,"pitch":-175.25,"roll":83.5625},"location":"Right Knee"},{"euler":{"heading":23.0625,"pitch":-158.0625,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.895"} +{"sensors":[{"euler":{"heading":85.375,"pitch":112.4375,"roll":4.75},"location":"Left Knee"},{"euler":{"heading":54.1875,"pitch":94.0,"roll":29.75},"location":"Left Ankle"},{"euler":{"heading":87.6875,"pitch":-31.875,"roll":-14.8125},"location":"Right Ankle"},{"euler":{"heading":158.8125,"pitch":-164.4375,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":261.8125,"pitch":-123.0625,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":24.0625,"pitch":-156.8125,"roll":64.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:25.996"} +{"sensors":[{"euler":{"heading":102.125,"pitch":115.3125,"roll":-6.125},"location":"Left Knee"},{"euler":{"heading":72.75,"pitch":97.125,"roll":47.25},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":-29.875,"roll":-18.1875},"location":"Right Ankle"},{"euler":{"heading":160.375,"pitch":-164.4375,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":266.0,"pitch":-124.125,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":7.375,"pitch":-136.0,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.96"} +{"sensors":[{"euler":{"heading":104.0,"pitch":117.5625,"roll":-4.6875},"location":"Left Knee"},{"euler":{"heading":64.0,"pitch":86.375,"roll":41.125},"location":"Left Ankle"},{"euler":{"heading":80.5,"pitch":-28.875,"roll":-20.875},"location":"Right Ankle"},{"euler":{"heading":162.3125,"pitch":-163.8125,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":270.6875,"pitch":-122.25,"roll":65.0},"location":"Right Knee"},{"euler":{"heading":0.3125,"pitch":-123.875,"roll":53.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.197"} +{"sensors":[{"euler":{"heading":80.6875,"pitch":126.875,"roll":11.5625},"location":"Left Knee"},{"euler":{"heading":38.625,"pitch":83.6875,"roll":14.9375},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":-29.0625,"roll":-24.0625},"location":"Right Ankle"},{"euler":{"heading":166.0625,"pitch":-163.0625,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":276.5,"pitch":-119.125,"roll":60.4375},"location":"Right Knee"},{"euler":{"heading":358.5,"pitch":-119.75,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.297"} +{"sensors":[{"euler":{"heading":43.625,"pitch":137.4375,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":8.1875,"pitch":83.25,"roll":-13.375},"location":"Left Ankle"},{"euler":{"heading":73.6875,"pitch":-26.25,"roll":-28.125},"location":"Right Ankle"},{"euler":{"heading":168.3125,"pitch":-163.0625,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":281.4375,"pitch":-115.875,"roll":55.3125},"location":"Right Knee"},{"euler":{"heading":0.8125,"pitch":-120.75,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.398"} +{"sensors":[{"euler":{"heading":31.5625,"pitch":143.75,"roll":36.4375},"location":"Left Knee"},{"euler":{"heading":7.3125,"pitch":84.125,"roll":-23.75},"location":"Left Ankle"},{"euler":{"heading":65.625,"pitch":-21.125,"roll":-33.3125},"location":"Right Ankle"},{"euler":{"heading":171.0,"pitch":-163.5625,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":289.0,"pitch":-112.875,"roll":48.5625},"location":"Right Knee"},{"euler":{"heading":6.4375,"pitch":-125.75,"roll":52.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.499"} +{"sensors":[{"euler":{"heading":45.25,"pitch":134.5,"roll":35.5625},"location":"Left Knee"},{"euler":{"heading":11.8125,"pitch":94.8125,"roll":-14.5625},"location":"Left Ankle"},{"euler":{"heading":51.3125,"pitch":-17.0625,"roll":-37.6875},"location":"Right Ankle"},{"euler":{"heading":175.9375,"pitch":-163.9375,"roll":59.75},"location":"Right Hip"},{"euler":{"heading":303.6875,"pitch":-106.9375,"roll":38.0625},"location":"Right Knee"},{"euler":{"heading":10.8125,"pitch":-129.25,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.600"} +{"sensors":[{"euler":{"heading":53.5625,"pitch":126.9375,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":18.3125,"pitch":93.8125,"roll":-7.1875},"location":"Left Ankle"},{"euler":{"heading":35.0625,"pitch":-6.9375,"roll":-43.3125},"location":"Right Ankle"},{"euler":{"heading":184.0625,"pitch":-156.5625,"roll":53.1875},"location":"Right Hip"},{"euler":{"heading":309.9375,"pitch":-102.3125,"roll":29.9375},"location":"Right Knee"},{"euler":{"heading":13.1875,"pitch":-131.3125,"roll":57.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.700"} +{"sensors":[{"euler":{"heading":57.8125,"pitch":123.0,"roll":28.9375},"location":"Left Knee"},{"euler":{"heading":23.125,"pitch":95.25,"roll":-2.875},"location":"Left Ankle"},{"euler":{"heading":37.1875,"pitch":-14.125,"roll":-38.0},"location":"Right Ankle"},{"euler":{"heading":185.375,"pitch":-154.125,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":307.0,"pitch":-98.625,"roll":34.3125},"location":"Right Knee"},{"euler":{"heading":14.4375,"pitch":-138.25,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.801"} +{"sensors":[{"euler":{"heading":60.625,"pitch":122.0,"roll":25.0625},"location":"Left Knee"},{"euler":{"heading":30.25,"pitch":94.75,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":59.375,"pitch":-27.125,"roll":-28.3125},"location":"Right Ankle"},{"euler":{"heading":181.625,"pitch":-155.5,"roll":41.9375},"location":"Right Hip"},{"euler":{"heading":289.625,"pitch":-96.5,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":14.5,"pitch":-143.6875,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:26.901"} +{"sensors":[{"euler":{"heading":65.375,"pitch":120.4375,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":34.125,"pitch":94.25,"roll":6.0625},"location":"Left Ankle"},{"euler":{"heading":84.4375,"pitch":-33.25,"roll":-15.0625},"location":"Right Ankle"},{"euler":{"heading":171.125,"pitch":-159.5625,"roll":41.875},"location":"Right Hip"},{"euler":{"heading":270.4375,"pitch":-99.875,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":15.9375,"pitch":-148.875,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.2"} +{"sensors":[{"euler":{"heading":72.0,"pitch":117.8125,"roll":15.8125},"location":"Left Knee"},{"euler":{"heading":41.0,"pitch":93.9375,"roll":12.25},"location":"Left Ankle"},{"euler":{"heading":96.25,"pitch":-36.5,"roll":-7.0},"location":"Right Ankle"},{"euler":{"heading":160.875,"pitch":-162.8125,"roll":45.375},"location":"Right Hip"},{"euler":{"heading":258.8125,"pitch":-147.8125,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":17.25,"pitch":-152.75,"roll":63.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.103"} +{"sensors":[{"euler":{"heading":80.875,"pitch":115.25,"roll":8.5625},"location":"Left Knee"},{"euler":{"heading":50.25,"pitch":95.4375,"roll":22.0625},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":-32.9375,"roll":-10.375},"location":"Right Ankle"},{"euler":{"heading":154.75,"pitch":-164.75,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":255.75,"pitch":-140.125,"roll":80.4375},"location":"Right Knee"},{"euler":{"heading":20.0,"pitch":-159.375,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.205"} +{"sensors":[{"euler":{"heading":96.3125,"pitch":116.25,"roll":-3.4375},"location":"Left Knee"},{"euler":{"heading":64.5625,"pitch":96.625,"roll":39.9375},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-28.0,"roll":-17.875},"location":"Right Ankle"},{"euler":{"heading":160.6875,"pitch":-162.75,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":257.25,"pitch":-127.4375,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":12.25,"pitch":-149.0625,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.305"} +{"sensors":[{"euler":{"heading":105.0625,"pitch":115.0625,"roll":-6.5625},"location":"Left Knee"},{"euler":{"heading":63.875,"pitch":92.875,"roll":42.75},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":-24.625,"roll":-21.9375},"location":"Right Ankle"},{"euler":{"heading":157.1875,"pitch":-163.8125,"roll":54.3125},"location":"Right Hip"},{"euler":{"heading":259.0,"pitch":-129.9375,"roll":69.1875},"location":"Right Knee"},{"euler":{"heading":4.25,"pitch":-126.125,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.406"} +{"sensors":[{"euler":{"heading":89.25,"pitch":126.8125,"roll":5.3125},"location":"Left Knee"},{"euler":{"heading":47.0,"pitch":83.125,"roll":24.25},"location":"Left Ankle"},{"euler":{"heading":81.4375,"pitch":-25.1875,"roll":-23.875},"location":"Right Ankle"},{"euler":{"heading":161.5625,"pitch":-161.875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":264.8125,"pitch":-125.25,"roll":64.375},"location":"Right Knee"},{"euler":{"heading":355.9375,"pitch":-118.875,"roll":52.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.507"} +{"sensors":[{"euler":{"heading":55.25,"pitch":135.375,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":17.8125,"pitch":84.9375,"roll":-3.0625},"location":"Left Ankle"},{"euler":{"heading":75.9375,"pitch":-22.75,"roll":-26.1875},"location":"Right Ankle"},{"euler":{"heading":166.375,"pitch":-160.6875,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":269.4375,"pitch":-121.4375,"roll":59.9375},"location":"Right Knee"},{"euler":{"heading":357.5625,"pitch":-118.75,"roll":50.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.608"} +{"sensors":[{"euler":{"heading":35.0,"pitch":142.875,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":80.6875,"roll":-22.25},"location":"Left Ankle"},{"euler":{"heading":69.3125,"pitch":-19.25,"roll":-30.5},"location":"Right Ankle"},{"euler":{"heading":169.0,"pitch":-161.3125,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":277.3125,"pitch":-117.375,"roll":52.8125},"location":"Right Knee"},{"euler":{"heading":3.75,"pitch":-123.5,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.711"} +{"sensors":[{"euler":{"heading":43.375,"pitch":136.8125,"roll":34.5},"location":"Left Knee"},{"euler":{"heading":5.5,"pitch":87.125,"roll":-17.5},"location":"Left Ankle"},{"euler":{"heading":59.5625,"pitch":-16.8125,"roll":-36.1875},"location":"Right Ankle"},{"euler":{"heading":172.0,"pitch":-163.8125,"roll":61.25},"location":"Right Hip"},{"euler":{"heading":288.1875,"pitch":-112.3125,"roll":45.25},"location":"Right Knee"},{"euler":{"heading":9.125,"pitch":-126.1875,"roll":54.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.812"} +{"sensors":[{"euler":{"heading":53.3125,"pitch":130.125,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":17.875,"pitch":91.625,"roll":-6.625},"location":"Left Ankle"},{"euler":{"heading":39.875,"pitch":-12.3125,"roll":-40.0625},"location":"Right Ankle"},{"euler":{"heading":178.4375,"pitch":-158.3125,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":306.75,"pitch":-105.0625,"roll":33.125},"location":"Right Knee"},{"euler":{"heading":7.0625,"pitch":-126.75,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:27.913"} +{"sensors":[{"euler":{"heading":59.6875,"pitch":124.1875,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":25.0,"pitch":94.625,"roll":-2.1875},"location":"Left Ankle"},{"euler":{"heading":34.4375,"pitch":-13.5,"roll":-40.375},"location":"Right Ankle"},{"euler":{"heading":184.1875,"pitch":-154.3125,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":311.625,"pitch":-102.0625,"roll":29.4375},"location":"Right Knee"},{"euler":{"heading":11.875,"pitch":-133.6875,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.14"} +{"sensors":[{"euler":{"heading":63.8125,"pitch":120.25,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":30.75,"pitch":95.3125,"roll":3.0},"location":"Left Ankle"},{"euler":{"heading":52.25,"pitch":-23.9375,"roll":-33.25},"location":"Right Ankle"},{"euler":{"heading":184.3125,"pitch":-154.1875,"roll":43.0625},"location":"Right Hip"},{"euler":{"heading":296.0625,"pitch":-98.125,"roll":44.3125},"location":"Right Knee"},{"euler":{"heading":16.1875,"pitch":-141.8125,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.114"} +{"sensors":[{"euler":{"heading":68.5,"pitch":116.75,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":34.875,"pitch":96.875,"roll":5.6875},"location":"Left Ankle"},{"euler":{"heading":71.625,"pitch":-36.0,"roll":-16.9375},"location":"Right Ankle"},{"euler":{"heading":177.6875,"pitch":-157.75,"roll":41.0625},"location":"Right Hip"},{"euler":{"heading":278.6875,"pitch":-96.625,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-150.125,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.215"} +{"sensors":[{"euler":{"heading":74.875,"pitch":114.5,"roll":18.3125},"location":"Left Knee"},{"euler":{"heading":39.0625,"pitch":97.0,"roll":10.625},"location":"Left Ankle"},{"euler":{"heading":92.375,"pitch":-39.0,"roll":-6.0625},"location":"Right Ankle"},{"euler":{"heading":168.0,"pitch":-162.0625,"roll":42.875},"location":"Right Hip"},{"euler":{"heading":262.4375,"pitch":-119.75,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":21.875,"pitch":-154.5625,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.315"} +{"sensors":[{"euler":{"heading":81.75,"pitch":112.9375,"roll":11.6875},"location":"Left Knee"},{"euler":{"heading":47.1875,"pitch":97.9375,"roll":19.0625},"location":"Left Ankle"},{"euler":{"heading":94.3125,"pitch":-36.5,"roll":-7.0625},"location":"Right Ankle"},{"euler":{"heading":161.5,"pitch":-164.375,"roll":44.5},"location":"Right Hip"},{"euler":{"heading":259.25,"pitch":-122.1875,"roll":80.75},"location":"Right Knee"},{"euler":{"heading":24.5625,"pitch":-161.25,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.416"} +{"sensors":[{"euler":{"heading":93.875,"pitch":115.75,"roll":-2.0625},"location":"Left Knee"},{"euler":{"heading":57.3125,"pitch":93.0625,"roll":35.8125},"location":"Left Ankle"},{"euler":{"heading":84.5625,"pitch":-31.0625,"roll":-15.3125},"location":"Right Ankle"},{"euler":{"heading":164.375,"pitch":-163.3125,"roll":47.0},"location":"Right Hip"},{"euler":{"heading":260.0,"pitch":-118.3125,"roll":74.25},"location":"Right Knee"},{"euler":{"heading":21.6875,"pitch":-156.3125,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.517"} +{"sensors":[{"euler":{"heading":108.625,"pitch":111.75,"roll":-9.0},"location":"Left Knee"},{"euler":{"heading":71.5625,"pitch":95.9375,"roll":50.1875},"location":"Left Ankle"},{"euler":{"heading":79.5625,"pitch":-28.625,"roll":-20.0625},"location":"Right Ankle"},{"euler":{"heading":162.625,"pitch":-163.5,"roll":51.3125},"location":"Right Hip"},{"euler":{"heading":262.75,"pitch":-123.3125,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":4.5625,"pitch":-125.125,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.618"} +{"sensors":[{"euler":{"heading":104.5625,"pitch":119.5625,"roll":-3.6875},"location":"Left Knee"},{"euler":{"heading":62.5,"pitch":87.0625,"roll":39.3125},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-26.6875,"roll":-22.4375},"location":"Right Ankle"},{"euler":{"heading":167.4375,"pitch":-161.3125,"roll":55.3125},"location":"Right Hip"},{"euler":{"heading":266.8125,"pitch":-122.8125,"roll":62.75},"location":"Right Knee"},{"euler":{"heading":359.375,"pitch":-119.5625,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.718"} +{"sensors":[{"euler":{"heading":74.25,"pitch":128.8125,"roll":15.125},"location":"Left Knee"},{"euler":{"heading":35.625,"pitch":84.5,"roll":12.125},"location":"Left Ankle"},{"euler":{"heading":74.625,"pitch":-23.375,"roll":-24.9375},"location":"Right Ankle"},{"euler":{"heading":168.4375,"pitch":-161.0,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":269.75,"pitch":-121.1875,"roll":58.875},"location":"Right Knee"},{"euler":{"heading":358.6875,"pitch":-117.1875,"roll":50.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.819"} +{"sensors":[{"euler":{"heading":40.3125,"pitch":139.0,"roll":32.0625},"location":"Left Knee"},{"euler":{"heading":4.4375,"pitch":82.5,"roll":-17.6875},"location":"Left Ankle"},{"euler":{"heading":69.375,"pitch":-19.5625,"roll":-28.375},"location":"Right Ankle"},{"euler":{"heading":169.125,"pitch":-161.875,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":275.8125,"pitch":-118.8125,"roll":52.8125},"location":"Right Knee"},{"euler":{"heading":1.6875,"pitch":-121.625,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:28.923"} +{"sensors":[{"euler":{"heading":39.4375,"pitch":140.75,"roll":34.6875},"location":"Left Knee"},{"euler":{"heading":4.5625,"pitch":87.125,"roll":-18.375},"location":"Left Ankle"},{"euler":{"heading":60.25,"pitch":-16.6875,"roll":-34.625},"location":"Right Ankle"},{"euler":{"heading":171.875,"pitch":-163.0,"roll":59.625},"location":"Right Hip"},{"euler":{"heading":286.3125,"pitch":-113.8125,"roll":45.5625},"location":"Right Knee"},{"euler":{"heading":6.8125,"pitch":-126.375,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.24"} +{"sensors":[{"euler":{"heading":50.625,"pitch":132.125,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":15.0625,"pitch":91.25,"roll":-11.4375},"location":"Left Ankle"},{"euler":{"heading":44.4375,"pitch":-16.6875,"roll":-37.4375},"location":"Right Ankle"},{"euler":{"heading":179.5,"pitch":-159.75,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":308.125,"pitch":-105.5,"roll":32.625},"location":"Right Knee"},{"euler":{"heading":7.375,"pitch":-127.625,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.124"} +{"sensors":[{"euler":{"heading":55.75,"pitch":126.0,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":20.875,"pitch":91.625,"roll":-4.75},"location":"Left Ankle"},{"euler":{"heading":36.25,"pitch":-12.0625,"roll":-38.125},"location":"Right Ankle"},{"euler":{"heading":184.3125,"pitch":-154.1875,"roll":49.9375},"location":"Right Hip"},{"euler":{"heading":309.6875,"pitch":-102.9375,"roll":28.8125},"location":"Right Knee"},{"euler":{"heading":10.875,"pitch":-133.75,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.225"} +{"sensors":[{"euler":{"heading":60.3125,"pitch":122.125,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":34.125,"pitch":94.4375,"roll":4.25},"location":"Left Ankle"},{"euler":{"heading":52.625,"pitch":-24.4375,"roll":-30.9375},"location":"Right Ankle"},{"euler":{"heading":183.875,"pitch":-153.5625,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":295.5625,"pitch":-101.6875,"roll":43.5625},"location":"Right Knee"},{"euler":{"heading":13.8125,"pitch":-140.0,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.328"} +{"sensors":[{"euler":{"heading":63.625,"pitch":120.875,"roll":23.3125},"location":"Left Knee"},{"euler":{"heading":34.125,"pitch":92.5,"roll":6.625},"location":"Left Ankle"},{"euler":{"heading":75.625,"pitch":-34.5625,"roll":-18.625},"location":"Right Ankle"},{"euler":{"heading":179.9375,"pitch":-156.25,"roll":42.3125},"location":"Right Hip"},{"euler":{"heading":279.875,"pitch":-100.1875,"roll":63.0},"location":"Right Knee"},{"euler":{"heading":15.3125,"pitch":-147.375,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.430"} +{"sensors":[{"euler":{"heading":69.625,"pitch":118.9375,"roll":18.4375},"location":"Left Knee"},{"euler":{"heading":39.0,"pitch":92.0,"roll":11.3125},"location":"Left Ankle"},{"euler":{"heading":93.5625,"pitch":-39.875,"roll":-7.75},"location":"Right Ankle"},{"euler":{"heading":170.625,"pitch":-160.0,"roll":44.3125},"location":"Right Hip"},{"euler":{"heading":266.875,"pitch":-125.25,"roll":77.5},"location":"Right Knee"},{"euler":{"heading":17.375,"pitch":-152.1875,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.531"} +{"sensors":[{"euler":{"heading":76.5625,"pitch":117.25,"roll":12.5625},"location":"Left Knee"},{"euler":{"heading":46.8125,"pitch":92.1875,"roll":19.125},"location":"Left Ankle"},{"euler":{"heading":97.4375,"pitch":-37.4375,"roll":-6.5},"location":"Right Ankle"},{"euler":{"heading":161.0,"pitch":-162.875,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":258.8125,"pitch":-141.3125,"roll":81.3125},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-158.375,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.631"} +{"sensors":[{"euler":{"heading":88.8125,"pitch":116.625,"roll":2.1875},"location":"Left Knee"},{"euler":{"heading":55.3125,"pitch":90.5,"roll":31.0},"location":"Left Ankle"},{"euler":{"heading":85.8125,"pitch":-33.6875,"roll":-15.875},"location":"Right Ankle"},{"euler":{"heading":163.9375,"pitch":-162.25,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":260.875,"pitch":-125.3125,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":20.6875,"pitch":-156.9375,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.732"} +{"sensors":[{"euler":{"heading":104.1875,"pitch":114.625,"roll":-6.4375},"location":"Left Knee"},{"euler":{"heading":66.5625,"pitch":94.75,"roll":45.125},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":-32.375,"roll":-19.25},"location":"Right Ankle"},{"euler":{"heading":162.375,"pitch":-163.0625,"roll":52.6875},"location":"Right Hip"},{"euler":{"heading":264.9375,"pitch":-126.5,"roll":68.1875},"location":"Right Knee"},{"euler":{"heading":6.25,"pitch":-134.4375,"roll":58.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.833"} +{"sensors":[{"euler":{"heading":103.875,"pitch":121.125,"roll":-3.75},"location":"Left Knee"},{"euler":{"heading":57.1875,"pitch":87.375,"roll":33.875},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":-31.8125,"roll":-21.9375},"location":"Right Ankle"},{"euler":{"heading":166.8125,"pitch":-161.4375,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":270.3125,"pitch":-122.625,"roll":63.5},"location":"Right Knee"},{"euler":{"heading":357.5625,"pitch":-123.125,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:29.934"} +{"sensors":[{"euler":{"heading":74.625,"pitch":131.0,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":31.0,"pitch":83.3125,"roll":7.9375},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-30.5625,"roll":-24.9375},"location":"Right Ankle"},{"euler":{"heading":170.0625,"pitch":-160.3125,"roll":57.8125},"location":"Right Hip"},{"euler":{"heading":274.8125,"pitch":-118.875,"roll":59.4375},"location":"Right Knee"},{"euler":{"heading":357.3125,"pitch":-120.0625,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.35"} +{"sensors":[{"euler":{"heading":42.5625,"pitch":139.1875,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":5.4375,"pitch":83.375,"roll":-16.3125},"location":"Left Ankle"},{"euler":{"heading":72.375,"pitch":-27.6875,"roll":-27.125},"location":"Right Ankle"},{"euler":{"heading":171.6875,"pitch":-161.5,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":280.1875,"pitch":-116.375,"roll":53.875},"location":"Right Knee"},{"euler":{"heading":359.125,"pitch":-120.5625,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.136"} +{"sensors":[{"euler":{"heading":34.9375,"pitch":142.375,"roll":36.25},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":83.9375,"roll":-23.3125},"location":"Left Ankle"},{"euler":{"heading":65.4375,"pitch":-23.125,"roll":-32.625},"location":"Right Ankle"},{"euler":{"heading":172.8125,"pitch":-163.25,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":287.0625,"pitch":-113.25,"roll":47.5},"location":"Right Knee"},{"euler":{"heading":6.6875,"pitch":-125.5625,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.237"} +{"sensors":[{"euler":{"heading":50.25,"pitch":132.9375,"roll":34.0625},"location":"Left Knee"},{"euler":{"heading":12.9375,"pitch":94.375,"roll":-13.4375},"location":"Left Ankle"},{"euler":{"heading":52.625,"pitch":-20.125,"roll":-36.8125},"location":"Right Ankle"},{"euler":{"heading":176.625,"pitch":-164.6875,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":301.625,"pitch":-107.75,"roll":37.6875},"location":"Right Knee"},{"euler":{"heading":10.8125,"pitch":-128.125,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.338"} +{"sensors":[{"euler":{"heading":58.8125,"pitch":124.375,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":20.125,"pitch":96.5625,"roll":-5.75},"location":"Left Ankle"},{"euler":{"heading":37.375,"pitch":-9.5,"roll":-42.1875},"location":"Right Ankle"},{"euler":{"heading":182.375,"pitch":-158.0625,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":310.6875,"pitch":-103.0625,"roll":28.625},"location":"Right Knee"},{"euler":{"heading":14.25,"pitch":-130.375,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.438"} +{"sensors":[{"euler":{"heading":63.375,"pitch":119.75,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":25.5,"pitch":96.6875,"roll":-1.8125},"location":"Left Ankle"},{"euler":{"heading":38.5,"pitch":-16.3125,"roll":-37.6875},"location":"Right Ankle"},{"euler":{"heading":189.0625,"pitch":-153.1875,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":306.1875,"pitch":-98.5,"roll":33.5},"location":"Right Knee"},{"euler":{"heading":18.25,"pitch":-140.8125,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.540"} +{"sensors":[{"euler":{"heading":66.5,"pitch":117.0625,"roll":25.6875},"location":"Left Knee"},{"euler":{"heading":33.0625,"pitch":97.25,"roll":4.0625},"location":"Left Ankle"},{"euler":{"heading":58.9375,"pitch":-29.1875,"roll":-27.75},"location":"Right Ankle"},{"euler":{"heading":186.5,"pitch":-154.0,"roll":43.375},"location":"Right Hip"},{"euler":{"heading":290.875,"pitch":-95.9375,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":20.625,"pitch":-148.75,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.641"} +{"sensors":[{"euler":{"heading":71.875,"pitch":114.4375,"roll":21.5625},"location":"Left Knee"},{"euler":{"heading":36.3125,"pitch":97.1875,"roll":7.5},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":-33.875,"roll":-16.0},"location":"Right Ankle"},{"euler":{"heading":173.9375,"pitch":-160.4375,"roll":41.75},"location":"Right Hip"},{"euler":{"heading":270.0,"pitch":-105.0,"roll":72.875},"location":"Right Knee"},{"euler":{"heading":21.75,"pitch":-154.6875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.742"} +{"sensors":[{"euler":{"heading":77.1875,"pitch":113.3125,"roll":16.0625},"location":"Left Knee"},{"euler":{"heading":41.375,"pitch":96.6875,"roll":12.875},"location":"Left Ankle"},{"euler":{"heading":94.625,"pitch":-38.8125,"roll":-5.3125},"location":"Right Ankle"},{"euler":{"heading":163.5625,"pitch":-163.875,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":260.8125,"pitch":-141.9375,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":23.4375,"pitch":-160.125,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.842"} +{"sensors":[{"euler":{"heading":85.125,"pitch":113.3125,"roll":7.8125},"location":"Left Knee"},{"euler":{"heading":50.6875,"pitch":95.1875,"roll":24.5625},"location":"Left Ankle"},{"euler":{"heading":90.5,"pitch":-33.0,"roll":-9.9375},"location":"Right Ankle"},{"euler":{"heading":158.5625,"pitch":-165.3125,"roll":47.3125},"location":"Right Hip"},{"euler":{"heading":255.0625,"pitch":-134.4375,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":25.0,"pitch":-164.625,"roll":64.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:30.943"} +{"sensors":[{"euler":{"heading":100.25,"pitch":115.5625,"roll":-4.8125},"location":"Left Knee"},{"euler":{"heading":68.0,"pitch":97.5625,"roll":44.4375},"location":"Left Ankle"},{"euler":{"heading":82.25,"pitch":-27.6875,"roll":-16.875},"location":"Right Ankle"},{"euler":{"heading":165.25,"pitch":-162.25,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":258.5,"pitch":-126.4375,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":12.5,"pitch":-147.875,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.44"} +{"sensors":[{"euler":{"heading":108.9375,"pitch":114.4375,"roll":-8.625},"location":"Left Knee"},{"euler":{"heading":66.0,"pitch":90.1875,"roll":49.25},"location":"Left Ankle"},{"euler":{"heading":79.3125,"pitch":-25.4375,"roll":-20.8125},"location":"Right Ankle"},{"euler":{"heading":163.375,"pitch":-162.4375,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":260.375,"pitch":-127.5,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":1.375,"pitch":-123.3125,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.145"} +{"sensors":[{"euler":{"heading":99.4375,"pitch":122.5,"roll":2.8125},"location":"Left Knee"},{"euler":{"heading":51.3125,"pitch":87.0625,"roll":26.375},"location":"Left Ankle"},{"euler":{"heading":78.4375,"pitch":-25.5,"roll":-23.9375},"location":"Right Ankle"},{"euler":{"heading":167.625,"pitch":-160.6875,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":264.375,"pitch":-124.3125,"roll":63.5},"location":"Right Knee"},{"euler":{"heading":356.5625,"pitch":-118.25,"roll":50.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.245"} +{"sensors":[{"euler":{"heading":57.9375,"pitch":134.75,"roll":23.6875},"location":"Left Knee"},{"euler":{"heading":19.75,"pitch":81.9375,"roll":-2.875},"location":"Left Ankle"},{"euler":{"heading":74.5,"pitch":-25.3125,"roll":-25.0},"location":"Right Ankle"},{"euler":{"heading":169.4375,"pitch":-162.4375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":271.0625,"pitch":-119.75,"roll":58.6875},"location":"Right Knee"},{"euler":{"heading":358.125,"pitch":-118.3125,"roll":50.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.346"} +{"sensors":[{"euler":{"heading":40.25,"pitch":140.3125,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":358.875,"pitch":81.0625,"roll":-22.9375},"location":"Left Ankle"},{"euler":{"heading":69.0625,"pitch":-22.75,"roll":-29.75},"location":"Right Ankle"},{"euler":{"heading":171.0625,"pitch":-164.0,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":277.9375,"pitch":-116.4375,"roll":51.8125},"location":"Right Knee"},{"euler":{"heading":5.0,"pitch":-123.0,"roll":52.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.447"} +{"sensors":[{"euler":{"heading":49.5625,"pitch":134.3125,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":2.1875,"pitch":89.375,"roll":-20.375},"location":"Left Ankle"},{"euler":{"heading":59.1875,"pitch":-19.75,"roll":-35.5625},"location":"Right Ankle"},{"euler":{"heading":174.0625,"pitch":-166.125,"roll":62.0625},"location":"Right Hip"},{"euler":{"heading":289.125,"pitch":-110.9375,"roll":44.25},"location":"Right Knee"},{"euler":{"heading":12.375,"pitch":-128.4375,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.548"} +{"sensors":[{"euler":{"heading":55.4375,"pitch":128.5625,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":16.6875,"pitch":90.6875,"roll":-7.9375},"location":"Left Ankle"},{"euler":{"heading":44.0625,"pitch":-16.125,"roll":-39.9375},"location":"Right Ankle"},{"euler":{"heading":180.8125,"pitch":-160.8125,"roll":59.5625},"location":"Right Hip"},{"euler":{"heading":305.5,"pitch":-105.375,"roll":31.875},"location":"Right Knee"},{"euler":{"heading":9.4375,"pitch":-129.0625,"roll":56.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.649"} +{"sensors":[{"euler":{"heading":61.4375,"pitch":122.75,"roll":27.6875},"location":"Left Knee"},{"euler":{"heading":21.5625,"pitch":93.25,"roll":-4.9375},"location":"Left Ankle"},{"euler":{"heading":42.1875,"pitch":-18.375,"roll":-38.1875},"location":"Right Ankle"},{"euler":{"heading":185.3125,"pitch":-154.5625,"roll":52.125},"location":"Right Hip"},{"euler":{"heading":308.25,"pitch":-99.1875,"roll":30.3125},"location":"Right Knee"},{"euler":{"heading":12.0625,"pitch":-136.0625,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.750"} +{"sensors":[{"euler":{"heading":64.4375,"pitch":119.25,"roll":25.5},"location":"Left Knee"},{"euler":{"heading":28.3125,"pitch":94.75,"roll":0.0625},"location":"Left Ankle"},{"euler":{"heading":57.9375,"pitch":-25.75,"roll":-30.625},"location":"Right Ankle"},{"euler":{"heading":185.5,"pitch":-153.6875,"roll":45.1875},"location":"Right Hip"},{"euler":{"heading":291.1875,"pitch":-97.1875,"roll":46.9375},"location":"Right Knee"},{"euler":{"heading":13.9375,"pitch":-142.9375,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.850"} +{"sensors":[{"euler":{"heading":69.375,"pitch":116.5,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":33.25,"pitch":96.0625,"roll":4.3125},"location":"Left Ankle"},{"euler":{"heading":80.4375,"pitch":-28.9375,"roll":-17.875},"location":"Right Ankle"},{"euler":{"heading":177.75,"pitch":-157.0625,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":271.125,"pitch":-97.5,"roll":67.125},"location":"Right Knee"},{"euler":{"heading":15.6875,"pitch":-148.125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:31.952"} +{"sensors":[{"euler":{"heading":75.375,"pitch":114.125,"roll":17.375},"location":"Left Knee"},{"euler":{"heading":36.9375,"pitch":96.0,"roll":8.4375},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":-33.0,"roll":-6.0},"location":"Right Ankle"},{"euler":{"heading":167.1875,"pitch":-161.4375,"roll":44.4375},"location":"Right Hip"},{"euler":{"heading":257.3125,"pitch":-107.5625,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":18.9375,"pitch":-153.3125,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.52"} +{"sensors":[{"euler":{"heading":81.9375,"pitch":113.9375,"roll":10.5625},"location":"Left Knee"},{"euler":{"heading":43.0625,"pitch":95.25,"roll":15.5},"location":"Left Ankle"},{"euler":{"heading":96.9375,"pitch":-33.6875,"roll":-6.8125},"location":"Right Ankle"},{"euler":{"heading":158.9375,"pitch":-164.9375,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":254.8125,"pitch":-116.875,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":21.6875,"pitch":-160.625,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.152"} +{"sensors":[{"euler":{"heading":93.5,"pitch":115.5625,"roll":-1.0625},"location":"Left Knee"},{"euler":{"heading":51.9375,"pitch":91.25,"roll":29.0625},"location":"Left Ankle"},{"euler":{"heading":89.125,"pitch":-31.0625,"roll":-13.25},"location":"Right Ankle"},{"euler":{"heading":163.0,"pitch":-163.6875,"roll":50.375},"location":"Right Hip"},{"euler":{"heading":254.4375,"pitch":-114.0,"roll":76.125},"location":"Right Knee"},{"euler":{"heading":21.125,"pitch":-156.1875,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.253"} +{"sensors":[{"euler":{"heading":107.9375,"pitch":114.0,"roll":-9.375},"location":"Left Knee"},{"euler":{"heading":72.25,"pitch":96.625,"roll":47.9375},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":-29.0,"roll":-17.0625},"location":"Right Ankle"},{"euler":{"heading":162.0,"pitch":-164.8125,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":259.0625,"pitch":-120.625,"roll":69.5625},"location":"Right Knee"},{"euler":{"heading":5.75,"pitch":-114.3125,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.353"} +{"sensors":[{"euler":{"heading":107.125,"pitch":118.0625,"roll":-5.25},"location":"Left Knee"},{"euler":{"heading":61.5,"pitch":87.9375,"roll":38.0625},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":-26.0625,"roll":-21.375},"location":"Right Ankle"},{"euler":{"heading":166.25,"pitch":-162.4375,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":261.25,"pitch":-122.25,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":-121.3125,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.454"} +{"sensors":[{"euler":{"heading":79.8125,"pitch":127.5,"roll":12.625},"location":"Left Knee"},{"euler":{"heading":34.25,"pitch":84.625,"roll":11.75},"location":"Left Ankle"},{"euler":{"heading":79.9375,"pitch":-23.0625,"roll":-24.8125},"location":"Right Ankle"},{"euler":{"heading":169.375,"pitch":-161.5625,"roll":60.125},"location":"Right Hip"},{"euler":{"heading":265.1875,"pitch":-120.0,"roll":60.4375},"location":"Right Knee"},{"euler":{"heading":358.8125,"pitch":-118.5,"roll":49.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.555"} +{"sensors":[{"euler":{"heading":47.8125,"pitch":136.875,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":6.3125,"pitch":83.0,"roll":-30.75},"location":"Left Ankle"},{"euler":{"heading":74.25,"pitch":-20.0625,"roll":-27.5625},"location":"Right Ankle"},{"euler":{"heading":171.5,"pitch":-161.875,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":271.125,"pitch":-117.5625,"roll":54.625},"location":"Right Knee"},{"euler":{"heading":2.25,"pitch":-122.625,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.656"} +{"sensors":[{"euler":{"heading":45.3125,"pitch":137.5625,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":1.5,"pitch":86.9375,"roll":-20.9375},"location":"Left Ankle"},{"euler":{"heading":65.0,"pitch":-16.1875,"roll":-33.5},"location":"Right Ankle"},{"euler":{"heading":173.0625,"pitch":-162.9375,"roll":61.9375},"location":"Right Hip"},{"euler":{"heading":281.5625,"pitch":-113.5625,"roll":46.4375},"location":"Right Knee"},{"euler":{"heading":6.6875,"pitch":-127.9375,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.756"} +{"sensors":[{"euler":{"heading":55.4375,"pitch":128.9375,"roll":30.875},"location":"Left Knee"},{"euler":{"heading":12.5,"pitch":92.125,"roll":-12.3125},"location":"Left Ankle"},{"euler":{"heading":47.625,"pitch":-17.25,"roll":-37.0},"location":"Right Ankle"},{"euler":{"heading":177.75,"pitch":-161.1875,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":318.6875,"pitch":-105.25,"roll":32.9375},"location":"Right Knee"},{"euler":{"heading":7.0,"pitch":-129.0,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.857"} +{"sensors":[{"euler":{"heading":60.8125,"pitch":123.4375,"roll":28.0625},"location":"Left Knee"},{"euler":{"heading":21.625,"pitch":93.0,"roll":-3.8125},"location":"Left Ankle"},{"euler":{"heading":35.75,"pitch":-11.125,"roll":-40.6875},"location":"Right Ankle"},{"euler":{"heading":184.4375,"pitch":-154.6875,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":309.1875,"pitch":-103.8125,"roll":27.4375},"location":"Right Knee"},{"euler":{"heading":11.625,"pitch":-135.6875,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:32.957"} +{"sensors":[{"euler":{"heading":65.4375,"pitch":119.5625,"roll":25.5},"location":"Left Knee"},{"euler":{"heading":34.3125,"pitch":96.5625,"roll":4.75},"location":"Left Ankle"},{"euler":{"heading":47.0625,"pitch":-18.625,"roll":-35.25},"location":"Right Ankle"},{"euler":{"heading":184.6875,"pitch":-153.5,"roll":46.4375},"location":"Right Hip"},{"euler":{"heading":299.0625,"pitch":-101.125,"roll":37.3125},"location":"Right Knee"},{"euler":{"heading":14.1875,"pitch":-141.5625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.58"} +{"sensors":[{"euler":{"heading":70.5625,"pitch":115.375,"roll":22.9375},"location":"Left Knee"},{"euler":{"heading":37.0,"pitch":98.1875,"roll":7.75},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-30.625,"roll":-22.0},"location":"Right Ankle"},{"euler":{"heading":180.875,"pitch":-155.8125,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":281.25,"pitch":-96.4375,"roll":57.4375},"location":"Right Knee"},{"euler":{"heading":16.9375,"pitch":-147.75,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.159"} +{"sensors":[{"euler":{"heading":76.875,"pitch":111.75,"roll":18.5625},"location":"Left Knee"},{"euler":{"heading":41.9375,"pitch":100.0625,"roll":12.5},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":-35.0625,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":172.3125,"pitch":-160.0625,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":263.4375,"pitch":-108.625,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":20.5,"pitch":-152.375,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.259"} +{"sensors":[{"euler":{"heading":83.4375,"pitch":110.6875,"roll":11.8125},"location":"Left Knee"},{"euler":{"heading":50.25,"pitch":100.5,"roll":20.4375},"location":"Left Ankle"},{"euler":{"heading":97.875,"pitch":-34.5,"roll":-5.3125},"location":"Right Ankle"},{"euler":{"heading":159.0,"pitch":-165.3125,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":254.6875,"pitch":-174.25,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":22.3125,"pitch":-157.5,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.359"} +{"sensors":[{"euler":{"heading":94.375,"pitch":112.75,"roll":0.25},"location":"Left Knee"},{"euler":{"heading":57.5,"pitch":95.8125,"roll":33.4375},"location":"Left Ankle"},{"euler":{"heading":91.5,"pitch":-30.4375,"roll":-13.25},"location":"Right Ankle"},{"euler":{"heading":160.6875,"pitch":-164.6875,"roll":49.8125},"location":"Right Hip"},{"euler":{"heading":254.1875,"pitch":-121.125,"roll":77.375},"location":"Right Knee"},{"euler":{"heading":20.5,"pitch":-153.9375,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.460"} +{"sensors":[{"euler":{"heading":109.0,"pitch":113.8125,"roll":-8.5},"location":"Left Knee"},{"euler":{"heading":69.25,"pitch":100.875,"roll":45.1875},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":-27.5,"roll":-16.375},"location":"Right Ankle"},{"euler":{"heading":159.0,"pitch":-165.4375,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":255.0,"pitch":-127.875,"roll":70.8125},"location":"Right Knee"},{"euler":{"heading":5.3125,"pitch":-131.125,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.560"} +{"sensors":[{"euler":{"heading":106.25,"pitch":119.6875,"roll":-4.125},"location":"Left Knee"},{"euler":{"heading":55.6875,"pitch":88.3125,"roll":32.75},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":-25.5,"roll":-20.875},"location":"Right Ankle"},{"euler":{"heading":161.75,"pitch":-163.75,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":257.875,"pitch":-126.625,"roll":65.875},"location":"Right Knee"},{"euler":{"heading":356.375,"pitch":-122.4375,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.661"} +{"sensors":[{"euler":{"heading":73.5625,"pitch":131.0625,"roll":14.0625},"location":"Left Knee"},{"euler":{"heading":28.5625,"pitch":82.125,"roll":6.5},"location":"Left Ankle"},{"euler":{"heading":83.0,"pitch":-26.1875,"roll":-22.875},"location":"Right Ankle"},{"euler":{"heading":165.0625,"pitch":-163.8125,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":264.25,"pitch":-122.1875,"roll":61.0625},"location":"Right Knee"},{"euler":{"heading":353.875,"pitch":-118.25,"roll":50.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.763"} +{"sensors":[{"euler":{"heading":41.1875,"pitch":139.875,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":3.8125,"pitch":79.875,"roll":-18.125},"location":"Left Ankle"},{"euler":{"heading":77.875,"pitch":-24.9375,"roll":-25.625},"location":"Right Ankle"},{"euler":{"heading":166.0,"pitch":-165.625,"roll":61.4375},"location":"Right Hip"},{"euler":{"heading":271.4375,"pitch":-118.625,"roll":55.0},"location":"Right Knee"},{"euler":{"heading":358.25,"pitch":-121.0,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.864"} +{"sensors":[{"euler":{"heading":36.4375,"pitch":141.9375,"roll":34.5625},"location":"Left Knee"},{"euler":{"heading":358.8125,"pitch":83.5,"roll":-24.5},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":-22.25,"roll":-31.5625},"location":"Right Ankle"},{"euler":{"heading":168.3125,"pitch":-168.125,"roll":63.0625},"location":"Right Hip"},{"euler":{"heading":282.125,"pitch":-114.3125,"roll":47.3125},"location":"Right Knee"},{"euler":{"heading":5.625,"pitch":-126.5,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:33.964"} +{"sensors":[{"euler":{"heading":50.9375,"pitch":132.1875,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":11.3125,"pitch":89.5,"roll":-13.5625},"location":"Left Ankle"},{"euler":{"heading":56.4375,"pitch":-20.4375,"roll":-36.0},"location":"Right Ankle"},{"euler":{"heading":174.9375,"pitch":-166.125,"roll":62.6875},"location":"Right Hip"},{"euler":{"heading":299.3125,"pitch":-107.0625,"roll":35.9375},"location":"Right Knee"},{"euler":{"heading":8.8125,"pitch":-128.6875,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.65"} +{"sensors":[{"euler":{"heading":59.6875,"pitch":123.125,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":20.3125,"pitch":92.6875,"roll":-6.5625},"location":"Left Ankle"},{"euler":{"heading":36.875,"pitch":-9.6875,"roll":-41.75},"location":"Right Ankle"},{"euler":{"heading":182.75,"pitch":-156.0,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":307.0,"pitch":-103.625,"roll":27.6875},"location":"Right Knee"},{"euler":{"heading":13.625,"pitch":-135.625,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.166"} +{"sensors":[{"euler":{"heading":64.0625,"pitch":119.1875,"roll":26.875},"location":"Left Knee"},{"euler":{"heading":27.1875,"pitch":94.4375,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":41.4375,"pitch":-15.5,"roll":-37.75},"location":"Right Ankle"},{"euler":{"heading":187.8125,"pitch":-153.0,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":301.4375,"pitch":-98.375,"roll":35.5625},"location":"Right Knee"},{"euler":{"heading":16.1875,"pitch":-142.625,"roll":59.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.267"} +{"sensors":[{"euler":{"heading":67.6875,"pitch":117.75,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":34.875,"pitch":94.125,"roll":5.4375},"location":"Left Ankle"},{"euler":{"heading":63.625,"pitch":-30.75,"roll":-26.4375},"location":"Right Ankle"},{"euler":{"heading":187.5625,"pitch":-153.75,"roll":42.125},"location":"Right Hip"},{"euler":{"heading":285.3125,"pitch":-94.625,"roll":55.25},"location":"Right Knee"},{"euler":{"heading":18.25,"pitch":-150.0625,"roll":60.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.368"} +{"sensors":[{"euler":{"heading":73.0625,"pitch":115.75,"roll":18.8125},"location":"Left Knee"},{"euler":{"heading":36.875,"pitch":93.5,"roll":8.9375},"location":"Left Ankle"},{"euler":{"heading":90.0625,"pitch":-40.0625,"roll":-11.1875},"location":"Right Ankle"},{"euler":{"heading":181.25,"pitch":-157.375,"roll":40.75},"location":"Right Hip"},{"euler":{"heading":268.4375,"pitch":-106.4375,"roll":75.5},"location":"Right Knee"},{"euler":{"heading":20.0,"pitch":-154.8125,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.469"} +{"sensors":[{"euler":{"heading":79.0,"pitch":115.0,"roll":12.9375},"location":"Left Knee"},{"euler":{"heading":42.9375,"pitch":93.75,"roll":15.125},"location":"Left Ankle"},{"euler":{"heading":97.75,"pitch":-39.4375,"roll":-5.4375},"location":"Right Ankle"},{"euler":{"heading":163.5,"pitch":-163.8125,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":255.5625,"pitch":-176.8125,"roll":84.8125},"location":"Right Knee"},{"euler":{"heading":20.625,"pitch":-160.4375,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.570"} +{"sensors":[{"euler":{"heading":88.125,"pitch":114.875,"roll":4.4375},"location":"Left Knee"},{"euler":{"heading":54.125,"pitch":93.3125,"roll":26.9375},"location":"Left Ankle"},{"euler":{"heading":90.4375,"pitch":-31.5625,"roll":-12.3125},"location":"Right Ankle"},{"euler":{"heading":158.875,"pitch":-165.5625,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":251.25,"pitch":-127.3125,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":24.375,"pitch":-163.75,"roll":64.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.671"} +{"sensors":[{"euler":{"heading":105.3125,"pitch":115.75,"roll":-7.9375},"location":"Left Knee"},{"euler":{"heading":66.625,"pitch":96.625,"roll":42.5625},"location":"Left Ankle"},{"euler":{"heading":85.75,"pitch":-29.125,"roll":-17.75},"location":"Right Ankle"},{"euler":{"heading":163.125,"pitch":-163.75,"roll":52.0625},"location":"Right Hip"},{"euler":{"heading":254.75,"pitch":-124.875,"roll":73.5},"location":"Right Knee"},{"euler":{"heading":9.0,"pitch":-142.4375,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.772"} +{"sensors":[{"euler":{"heading":110.9375,"pitch":115.0625,"roll":-9.625},"location":"Left Knee"},{"euler":{"heading":61.3125,"pitch":91.0625,"roll":43.5},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":-27.375,"roll":-21.0625},"location":"Right Ankle"},{"euler":{"heading":163.125,"pitch":-163.4375,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":257.8125,"pitch":-125.1875,"roll":67.5625},"location":"Right Knee"},{"euler":{"heading":0.3125,"pitch":-124.375,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.873"} +{"sensors":[{"euler":{"heading":96.75,"pitch":124.375,"roll":2.8125},"location":"Left Knee"},{"euler":{"heading":43.3125,"pitch":83.9375,"roll":21.25},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-25.75,"roll":-25.6875},"location":"Right Ankle"},{"euler":{"heading":166.25,"pitch":-162.625,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":261.5,"pitch":-122.5,"roll":63.4375},"location":"Right Knee"},{"euler":{"heading":355.1875,"pitch":-119.3125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:34.974"} +{"sensors":[{"euler":{"heading":57.5625,"pitch":135.5,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":13.6875,"pitch":81.625,"roll":-6.25},"location":"Left Ankle"},{"euler":{"heading":75.75,"pitch":-22.5625,"roll":-28.4375},"location":"Right Ankle"},{"euler":{"heading":167.625,"pitch":-163.4375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":266.0,"pitch":-120.0625,"roll":58.75},"location":"Right Knee"},{"euler":{"heading":355.3125,"pitch":-118.0,"roll":49.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.75"} +{"sensors":[{"euler":{"heading":41.3125,"pitch":141.1875,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":357.25,"pitch":80.375,"roll":-24.1875},"location":"Left Ankle"},{"euler":{"heading":68.9375,"pitch":-19.8125,"roll":-33.3125},"location":"Right Ankle"},{"euler":{"heading":171.1875,"pitch":-163.9375,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":273.75,"pitch":-116.0625,"roll":52.6875},"location":"Right Knee"},{"euler":{"heading":3.4375,"pitch":-124.9375,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.176"} +{"sensors":[{"euler":{"heading":50.625,"pitch":133.8125,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":3.1875,"pitch":87.75,"roll":-18.4375},"location":"Left Ankle"},{"euler":{"heading":56.625,"pitch":-16.75,"roll":-37.0625},"location":"Right Ankle"},{"euler":{"heading":174.8125,"pitch":-165.6875,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":286.8125,"pitch":-110.1875,"roll":43.8125},"location":"Right Knee"},{"euler":{"heading":9.0625,"pitch":-128.625,"roll":53.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.276"} +{"sensors":[{"euler":{"heading":58.0,"pitch":127.9375,"roll":28.75},"location":"Left Knee"},{"euler":{"heading":14.5625,"pitch":90.8125,"roll":-8.9375},"location":"Left Ankle"},{"euler":{"heading":40.1875,"pitch":-7.0,"roll":-40.0625},"location":"Right Ankle"},{"euler":{"heading":182.1875,"pitch":-159.0,"roll":56.0},"location":"Right Hip"},{"euler":{"heading":300.5625,"pitch":-104.6875,"roll":32.875},"location":"Right Knee"},{"euler":{"heading":8.5,"pitch":-131.375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.377"} +{"sensors":[{"euler":{"heading":63.375,"pitch":122.8125,"roll":26.375},"location":"Left Knee"},{"euler":{"heading":19.875,"pitch":92.625,"roll":-4.75},"location":"Left Ankle"},{"euler":{"heading":36.375,"pitch":-7.4375,"roll":-37.875},"location":"Right Ankle"},{"euler":{"heading":186.875,"pitch":-153.8125,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":297.875,"pitch":-101.3125,"roll":33.125},"location":"Right Knee"},{"euler":{"heading":13.0625,"pitch":-138.9375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.479"} +{"sensors":[{"euler":{"heading":66.6875,"pitch":120.125,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":27.4375,"pitch":94.125,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":55.125,"pitch":-21.9375,"roll":-32.3125},"location":"Right Ankle"},{"euler":{"heading":187.0625,"pitch":-154.0625,"roll":42.5},"location":"Right Hip"},{"euler":{"heading":285.0625,"pitch":-98.1875,"roll":50.0},"location":"Right Knee"},{"euler":{"heading":14.75,"pitch":-143.8125,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.579"} +{"sensors":[{"euler":{"heading":72.375,"pitch":115.4375,"roll":21.25},"location":"Left Knee"},{"euler":{"heading":31.8125,"pitch":96.875,"roll":4.125},"location":"Left Ankle"},{"euler":{"heading":81.4375,"pitch":-33.375,"roll":-18.4375},"location":"Right Ankle"},{"euler":{"heading":178.75,"pitch":-157.625,"roll":41.25},"location":"Right Hip"},{"euler":{"heading":267.1875,"pitch":-99.4375,"roll":71.125},"location":"Right Knee"},{"euler":{"heading":17.1875,"pitch":-148.0,"roll":60.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.680"} +{"sensors":[{"euler":{"heading":79.125,"pitch":113.0625,"roll":15.875},"location":"Left Knee"},{"euler":{"heading":37.1875,"pitch":97.4375,"roll":9.625},"location":"Left Ankle"},{"euler":{"heading":98.75,"pitch":-38.9375,"roll":-5.25},"location":"Right Ankle"},{"euler":{"heading":170.0,"pitch":-160.5625,"roll":44.25},"location":"Right Hip"},{"euler":{"heading":256.6875,"pitch":-137.125,"roll":83.0625},"location":"Right Knee"},{"euler":{"heading":19.375,"pitch":-152.75,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.781"} +{"sensors":[{"euler":{"heading":84.25,"pitch":111.5625,"roll":9.8125},"location":"Left Knee"},{"euler":{"heading":45.6875,"pitch":97.6875,"roll":17.875},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":-36.4375,"roll":-10.5},"location":"Right Ankle"},{"euler":{"heading":161.625,"pitch":-163.5,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":252.125,"pitch":-133.75,"roll":82.9375},"location":"Right Knee"},{"euler":{"heading":21.625,"pitch":-158.5625,"roll":63.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.882"} +{"sensors":[{"euler":{"heading":96.5625,"pitch":114.8125,"roll":-2.5},"location":"Left Knee"},{"euler":{"heading":54.25,"pitch":91.9375,"roll":32.75},"location":"Left Ankle"},{"euler":{"heading":88.3125,"pitch":-34.0625,"roll":-15.5625},"location":"Right Ankle"},{"euler":{"heading":166.875,"pitch":-161.9375,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":253.6875,"pitch":-123.625,"roll":76.75},"location":"Right Knee"},{"euler":{"heading":20.125,"pitch":-153.4375,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:35.982"} +{"sensors":[{"euler":{"heading":109.6875,"pitch":112.9375,"roll":-9.5},"location":"Left Knee"},{"euler":{"heading":69.375,"pitch":93.6875,"roll":47.75},"location":"Left Ankle"},{"euler":{"heading":83.6875,"pitch":-33.3125,"roll":-19.1875},"location":"Right Ankle"},{"euler":{"heading":164.625,"pitch":-163.9375,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":260.1875,"pitch":-126.1875,"roll":69.125},"location":"Right Knee"},{"euler":{"heading":7.6875,"pitch":-131.0,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.84"} +{"sensors":[{"euler":{"heading":106.375,"pitch":119.875,"roll":-4.0625},"location":"Left Knee"},{"euler":{"heading":54.5,"pitch":85.25,"roll":33.5625},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-33.25,"roll":-21.3125},"location":"Right Ankle"},{"euler":{"heading":167.625,"pitch":-163.375,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":265.6875,"pitch":-123.4375,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":-121.625,"roll":52.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.186"} +{"sensors":[{"euler":{"heading":76.0,"pitch":129.0,"roll":14.6875},"location":"Left Knee"},{"euler":{"heading":28.9375,"pitch":83.125,"roll":7.5},"location":"Left Ankle"},{"euler":{"heading":79.0625,"pitch":-32.1875,"roll":-24.3125},"location":"Right Ankle"},{"euler":{"heading":169.8125,"pitch":-163.3125,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":270.1875,"pitch":-119.75,"roll":60.1875},"location":"Right Knee"},{"euler":{"heading":357.75,"pitch":-118.125,"roll":50.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.287"} +{"sensors":[{"euler":{"heading":44.6875,"pitch":138.5625,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":3.5625,"pitch":80.125,"roll":-17.9375},"location":"Left Ankle"},{"euler":{"heading":73.6875,"pitch":-27.0,"roll":-28.25},"location":"Right Ankle"},{"euler":{"heading":170.3125,"pitch":-163.625,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":271.625,"pitch":-118.8125,"roll":55.625},"location":"Right Knee"},{"euler":{"heading":358.75,"pitch":-119.75,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.388"} +{"sensors":[{"euler":{"heading":39.9375,"pitch":140.8125,"roll":34.3125},"location":"Left Knee"},{"euler":{"heading":358.5,"pitch":82.75,"roll":-24.3125},"location":"Left Ankle"},{"euler":{"heading":66.25,"pitch":-21.875,"roll":-34.1875},"location":"Right Ankle"},{"euler":{"heading":171.9375,"pitch":-165.625,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":278.6875,"pitch":-114.875,"roll":49.0},"location":"Right Knee"},{"euler":{"heading":6.0625,"pitch":-125.75,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.488"} +{"sensors":[{"euler":{"heading":51.625,"pitch":131.9375,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":11.5,"pitch":90.6875,"roll":-14.8125},"location":"Left Ankle"},{"euler":{"heading":50.9375,"pitch":-17.3125,"roll":-38.625},"location":"Right Ankle"},{"euler":{"heading":175.5625,"pitch":-164.8125,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":294.25,"pitch":-109.1875,"roll":38.4375},"location":"Right Knee"},{"euler":{"heading":8.0625,"pitch":-129.5625,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.589"} +{"sensors":[{"euler":{"heading":58.25,"pitch":126.0,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":16.8125,"pitch":90.0625,"roll":-8.4375},"location":"Left Ankle"},{"euler":{"heading":35.4375,"pitch":-11.0,"roll":-41.3125},"location":"Right Ankle"},{"euler":{"heading":184.6875,"pitch":-156.6875,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":303.875,"pitch":-104.5,"roll":28.8125},"location":"Right Knee"},{"euler":{"heading":10.5625,"pitch":-132.375,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.690"} +{"sensors":[{"euler":{"heading":61.625,"pitch":121.9375,"roll":26.75},"location":"Left Knee"},{"euler":{"heading":21.1875,"pitch":90.6875,"roll":-5.0},"location":"Left Ankle"},{"euler":{"heading":42.6875,"pitch":-15.8125,"roll":-37.9375},"location":"Right Ankle"},{"euler":{"heading":185.6875,"pitch":-154.3125,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":296.3125,"pitch":-102.125,"roll":35.875},"location":"Right Knee"},{"euler":{"heading":13.5625,"pitch":-140.875,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.790"} +{"sensors":[{"euler":{"heading":66.125,"pitch":118.9375,"roll":23.8125},"location":"Left Knee"},{"euler":{"heading":28.25,"pitch":93.0,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":64.5625,"pitch":-29.9375,"roll":-27.375},"location":"Right Ankle"},{"euler":{"heading":179.5625,"pitch":-156.3125,"roll":43.4375},"location":"Right Hip"},{"euler":{"heading":277.5,"pitch":-98.8125,"roll":57.4375},"location":"Right Knee"},{"euler":{"heading":13.75,"pitch":-146.3125,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.891"} +{"sensors":[{"euler":{"heading":72.125,"pitch":116.4375,"roll":19.5625},"location":"Left Knee"},{"euler":{"heading":31.875,"pitch":93.375,"roll":4.375},"location":"Left Ankle"},{"euler":{"heading":89.1875,"pitch":-34.625,"roll":-13.875},"location":"Right Ankle"},{"euler":{"heading":170.5,"pitch":-160.625,"roll":42.9375},"location":"Right Hip"},{"euler":{"heading":260.0,"pitch":-105.5,"roll":75.125},"location":"Right Knee"},{"euler":{"heading":15.9375,"pitch":-151.5,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:36.992"} +{"sensors":[{"euler":{"heading":78.125,"pitch":114.25,"roll":14.25},"location":"Left Knee"},{"euler":{"heading":38.0625,"pitch":93.9375,"roll":10.625},"location":"Left Ankle"},{"euler":{"heading":99.0625,"pitch":-37.4375,"roll":-6.5625},"location":"Right Ankle"},{"euler":{"heading":159.75,"pitch":-164.4375,"roll":46.5625},"location":"Right Hip"},{"euler":{"heading":249.25,"pitch":-177.25,"roll":84.25},"location":"Right Knee"},{"euler":{"heading":18.75,"pitch":-157.0625,"roll":62.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.93"} +{"sensors":[{"euler":{"heading":87.0,"pitch":113.375,"roll":6.125},"location":"Left Knee"},{"euler":{"heading":46.9375,"pitch":92.875,"roll":22.3125},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":-34.3125,"roll":-11.9375},"location":"Right Ankle"},{"euler":{"heading":160.3125,"pitch":-164.9375,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":248.25,"pitch":-133.1875,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":22.0,"pitch":-160.5,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.194"} +{"sensors":[{"euler":{"heading":103.0625,"pitch":115.0625,"roll":-7.0625},"location":"Left Knee"},{"euler":{"heading":65.375,"pitch":95.4375,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":86.3125,"pitch":-31.3125,"roll":-16.875},"location":"Right Ankle"},{"euler":{"heading":163.6875,"pitch":-163.5625,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":251.4375,"pitch":-126.875,"roll":74.3125},"location":"Right Knee"},{"euler":{"heading":9.25,"pitch":-143.6875,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.295"} +{"sensors":[{"euler":{"heading":109.4375,"pitch":115.8125,"roll":-7.9375},"location":"Left Knee"},{"euler":{"heading":59.8125,"pitch":86.1875,"roll":40.75},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-30.1875,"roll":-20.25},"location":"Right Ankle"},{"euler":{"heading":164.0625,"pitch":-164.125,"roll":55.6875},"location":"Right Hip"},{"euler":{"heading":256.1875,"pitch":-127.0,"roll":68.0},"location":"Right Knee"},{"euler":{"heading":0.9375,"pitch":-124.625,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.395"} +{"sensors":[{"euler":{"heading":90.875,"pitch":124.3125,"roll":7.0},"location":"Left Knee"},{"euler":{"heading":37.6875,"pitch":82.5,"roll":15.8125},"location":"Left Ankle"},{"euler":{"heading":81.5,"pitch":-29.5625,"roll":-24.5625},"location":"Right Ankle"},{"euler":{"heading":169.1875,"pitch":-162.0,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":261.6875,"pitch":-123.0,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":357.5,"pitch":-120.75,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.497"} +{"sensors":[{"euler":{"heading":52.0625,"pitch":135.75,"roll":26.5625},"location":"Left Knee"},{"euler":{"heading":8.5625,"pitch":80.0625,"roll":-11.5},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-26.4375,"roll":-28.1875},"location":"Right Ankle"},{"euler":{"heading":171.8125,"pitch":-162.3125,"roll":58.125},"location":"Right Hip"},{"euler":{"heading":265.5,"pitch":-120.25,"roll":59.375},"location":"Right Knee"},{"euler":{"heading":357.875,"pitch":-120.0,"roll":50.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.597"} +{"sensors":[{"euler":{"heading":38.4375,"pitch":141.875,"roll":34.25},"location":"Left Knee"},{"euler":{"heading":355.625,"pitch":79.625,"roll":-26.4375},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-22.6875,"roll":-32.625},"location":"Right Ankle"},{"euler":{"heading":172.6875,"pitch":-163.9375,"roll":59.8125},"location":"Right Hip"},{"euler":{"heading":272.25,"pitch":-116.9375,"roll":52.9375},"location":"Right Knee"},{"euler":{"heading":2.5625,"pitch":-124.25,"roll":51.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.698"} +{"sensors":[{"euler":{"heading":50.875,"pitch":134.375,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":2.3125,"pitch":88.4375,"roll":-19.375},"location":"Left Ankle"},{"euler":{"heading":59.125,"pitch":-19.0,"roll":-37.375},"location":"Right Ankle"},{"euler":{"heading":176.125,"pitch":-165.125,"roll":60.5625},"location":"Right Hip"},{"euler":{"heading":285.25,"pitch":-111.5,"roll":43.875},"location":"Right Knee"},{"euler":{"heading":8.75,"pitch":-127.9375,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.799"} +{"sensors":[{"euler":{"heading":58.375,"pitch":127.3125,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":12.9375,"pitch":90.9375,"roll":-10.1875},"location":"Left Ankle"},{"euler":{"heading":39.0625,"pitch":-10.625,"roll":-42.4375},"location":"Right Ankle"},{"euler":{"heading":182.0,"pitch":-158.9375,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":299.5,"pitch":-105.5,"roll":32.3125},"location":"Right Knee"},{"euler":{"heading":9.25,"pitch":-130.9375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:37.899"} +{"sensors":[{"euler":{"heading":63.25,"pitch":121.4375,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":20.375,"pitch":93.9375,"roll":-6.125},"location":"Left Ankle"},{"euler":{"heading":37.875,"pitch":-10.5625,"roll":-40.5625},"location":"Right Ankle"},{"euler":{"heading":187.5625,"pitch":-153.875,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":297.4375,"pitch":-103.0,"roll":32.5},"location":"Right Knee"},{"euler":{"heading":14.0,"pitch":-138.625,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.0"} +{"sensors":[{"euler":{"heading":67.8125,"pitch":117.0,"roll":26.0},"location":"Left Knee"},{"euler":{"heading":28.0625,"pitch":96.8125,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":57.8125,"pitch":-23.3125,"roll":-32.875},"location":"Right Ankle"},{"euler":{"heading":186.125,"pitch":-154.4375,"roll":41.875},"location":"Right Hip"},{"euler":{"heading":282.625,"pitch":-99.5,"roll":50.5625},"location":"Right Knee"},{"euler":{"heading":16.1875,"pitch":-143.9375,"roll":59.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.103"} +{"sensors":[{"euler":{"heading":73.1875,"pitch":115.0625,"roll":21.1875},"location":"Left Knee"},{"euler":{"heading":30.4375,"pitch":95.5625,"roll":3.0625},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-37.0,"roll":-17.0625},"location":"Right Ankle"},{"euler":{"heading":132.0,"pitch":-158.1875,"roll":39.6875},"location":"Right Hip"},{"euler":{"heading":267.375,"pitch":-99.0625,"roll":68.8125},"location":"Right Knee"},{"euler":{"heading":17.1875,"pitch":-148.5,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.204"} +{"sensors":[{"euler":{"heading":78.6875,"pitch":112.375,"roll":16.375},"location":"Left Knee"},{"euler":{"heading":36.3125,"pitch":96.4375,"roll":8.875},"location":"Left Ankle"},{"euler":{"heading":96.25,"pitch":-39.4375,"roll":-6.875},"location":"Right Ankle"},{"euler":{"heading":169.375,"pitch":-161.0625,"roll":44.0625},"location":"Right Hip"},{"euler":{"heading":252.8125,"pitch":-175.5625,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":19.75,"pitch":-153.0625,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.305"} +{"sensors":[{"euler":{"heading":87.25,"pitch":111.4375,"roll":7.9375},"location":"Left Knee"},{"euler":{"heading":45.5,"pitch":96.5,"roll":18.9375},"location":"Left Ankle"},{"euler":{"heading":94.1875,"pitch":-34.25,"roll":-10.0625},"location":"Right Ankle"},{"euler":{"heading":160.4375,"pitch":-164.8125,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":246.3125,"pitch":-175.625,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-157.0625,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.406"} +{"sensors":[{"euler":{"heading":101.0625,"pitch":116.0625,"roll":-4.8125},"location":"Left Knee"},{"euler":{"heading":58.125,"pitch":93.625,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":87.4375,"pitch":-30.1875,"roll":-16.9375},"location":"Right Ankle"},{"euler":{"heading":165.75,"pitch":-162.1875,"roll":49.75},"location":"Right Hip"},{"euler":{"heading":246.8125,"pitch":-127.0625,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":15.3125,"pitch":-149.25,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.507"} +{"sensors":[{"euler":{"heading":111.375,"pitch":112.4375,"roll":-9.5},"location":"Left Knee"},{"euler":{"heading":63.25,"pitch":92.25,"roll":44.75},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":-27.125,"roll":-21.1875},"location":"Right Ankle"},{"euler":{"heading":162.6875,"pitch":-163.625,"roll":54.125},"location":"Right Hip"},{"euler":{"heading":248.8125,"pitch":-131.25,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":4.375,"pitch":-125.125,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.608"} +{"sensors":[{"euler":{"heading":102.6875,"pitch":121.1875,"roll":-0.8125},"location":"Left Knee"},{"euler":{"heading":49.0,"pitch":85.125,"roll":26.1875},"location":"Left Ankle"},{"euler":{"heading":82.0625,"pitch":-25.875,"roll":-25.375},"location":"Right Ankle"},{"euler":{"heading":166.875,"pitch":-162.125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":252.4375,"pitch":-127.3125,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":357.125,"pitch":-120.1875,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.709"} +{"sensors":[{"euler":{"heading":68.0625,"pitch":131.5,"roll":18.6875},"location":"Left Knee"},{"euler":{"heading":20.0625,"pitch":83.3125,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":-23.8125,"roll":-26.5},"location":"Right Ankle"},{"euler":{"heading":169.0625,"pitch":-162.6875,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":256.5,"pitch":-123.4375,"roll":62.3125},"location":"Right Knee"},{"euler":{"heading":356.125,"pitch":-117.8125,"roll":49.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.810"} +{"sensors":[{"euler":{"heading":45.0,"pitch":138.75,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":358.25,"pitch":81.625,"roll":-23.0625},"location":"Left Ankle"},{"euler":{"heading":73.25,"pitch":-20.125,"roll":-31.1875},"location":"Right Ankle"},{"euler":{"heading":169.5625,"pitch":-163.9375,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":260.75,"pitch":-120.375,"roll":57.0},"location":"Right Knee"},{"euler":{"heading":1.0,"pitch":-121.25,"roll":51.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:38.911"} +{"sensors":[{"euler":{"heading":49.0625,"pitch":136.4375,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":88.0625,"roll":-21.1875},"location":"Left Ankle"},{"euler":{"heading":63.5,"pitch":-17.375,"roll":-36.4375},"location":"Right Ankle"},{"euler":{"heading":172.0,"pitch":-165.875,"roll":61.375},"location":"Right Hip"},{"euler":{"heading":271.6875,"pitch":-115.0,"roll":48.875},"location":"Right Knee"},{"euler":{"heading":8.0625,"pitch":-127.0,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.12"} +{"sensors":[{"euler":{"heading":58.0625,"pitch":112.1875,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":12.3125,"pitch":91.625,"roll":-11.125},"location":"Left Ankle"},{"euler":{"heading":45.0,"pitch":-16.125,"roll":-40.25},"location":"Right Ankle"},{"euler":{"heading":177.4375,"pitch":-162.9375,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":292.0625,"pitch":-107.25,"roll":36.5},"location":"Right Knee"},{"euler":{"heading":6.8125,"pitch":-128.25,"roll":55.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.114"} +{"sensors":[{"euler":{"heading":63.0,"pitch":123.1875,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":17.1875,"pitch":92.4375,"roll":-7.3125},"location":"Left Ankle"},{"euler":{"heading":32.875,"pitch":-12.8125,"roll":-42.25},"location":"Right Ankle"},{"euler":{"heading":183.875,"pitch":-156.875,"roll":51.6875},"location":"Right Hip"},{"euler":{"heading":297.9375,"pitch":-104.5,"roll":31.25},"location":"Right Knee"},{"euler":{"heading":10.8125,"pitch":-134.6875,"roll":57.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.215"} +{"sensors":[{"euler":{"heading":65.8125,"pitch":120.5625,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":22.4375,"pitch":92.5625,"roll":-3.125},"location":"Left Ankle"},{"euler":{"heading":47.0625,"pitch":-21.4375,"roll":-38.625},"location":"Right Ankle"},{"euler":{"heading":185.875,"pitch":-155.25,"roll":45.0},"location":"Right Hip"},{"euler":{"heading":285.5625,"pitch":-103.375,"roll":43.6875},"location":"Right Knee"},{"euler":{"heading":13.875,"pitch":-143.0,"roll":59.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.316"} +{"sensors":[{"euler":{"heading":71.1875,"pitch":117.5625,"roll":21.0},"location":"Left Knee"},{"euler":{"heading":27.4375,"pitch":93.125,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":-34.375,"roll":-24.9375},"location":"Right Ankle"},{"euler":{"heading":179.4375,"pitch":-159.375,"roll":41.0625},"location":"Right Hip"},{"euler":{"heading":269.125,"pitch":-101.0,"roll":63.75},"location":"Right Knee"},{"euler":{"heading":15.6875,"pitch":-148.6875,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.417"} +{"sensors":[{"euler":{"heading":77.6875,"pitch":114.4375,"roll":16.375},"location":"Left Knee"},{"euler":{"heading":32.375,"pitch":93.8125,"roll":6.3125},"location":"Left Ankle"},{"euler":{"heading":95.9375,"pitch":-39.1875,"roll":-9.1875},"location":"Right Ankle"},{"euler":{"heading":168.6875,"pitch":-162.3125,"roll":43.8125},"location":"Right Hip"},{"euler":{"heading":250.8125,"pitch":-131.125,"roll":82.375},"location":"Right Knee"},{"euler":{"heading":19.375,"pitch":-154.875,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.519"} +{"sensors":[{"euler":{"heading":84.75,"pitch":113.875,"roll":9.375},"location":"Left Knee"},{"euler":{"heading":40.6875,"pitch":94.0,"roll":15.0},"location":"Left Ankle"},{"euler":{"heading":100.0625,"pitch":-37.9375,"roll":-6.625},"location":"Right Ankle"},{"euler":{"heading":159.4375,"pitch":-165.1875,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":242.375,"pitch":-179.8125,"roll":84.125},"location":"Right Knee"},{"euler":{"heading":21.75,"pitch":-159.6875,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.621"} +{"sensors":[{"euler":{"heading":95.9375,"pitch":115.9375,"roll":-1.625},"location":"Left Knee"},{"euler":{"heading":51.5,"pitch":90.8125,"roll":32.25},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":-32.8125,"roll":-14.6875},"location":"Right Ankle"},{"euler":{"heading":163.4375,"pitch":-163.75,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":241.6875,"pitch":-136.1875,"roll":80.4375},"location":"Right Knee"},{"euler":{"heading":20.25,"pitch":-158.1875,"roll":62.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.721"} +{"sensors":[{"euler":{"heading":110.0,"pitch":113.0,"roll":-10.0625},"location":"Left Knee"},{"euler":{"heading":69.375,"pitch":95.0625,"roll":46.6875},"location":"Left Ankle"},{"euler":{"heading":85.375,"pitch":-29.25,"roll":-19.25},"location":"Right Ankle"},{"euler":{"heading":162.3125,"pitch":-163.75,"roll":52.5},"location":"Right Hip"},{"euler":{"heading":242.6875,"pitch":-138.625,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":6.75,"pitch":-132.3125,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.822"} +{"sensors":[{"euler":{"heading":109.375,"pitch":119.4375,"roll":-7.0625},"location":"Left Knee"},{"euler":{"heading":55.875,"pitch":82.9375,"roll":33.0625},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":-27.6875,"roll":-23.1875},"location":"Right Ankle"},{"euler":{"heading":165.875,"pitch":-162.25,"roll":56.3125},"location":"Right Hip"},{"euler":{"heading":245.3125,"pitch":-133.875,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":356.0,"pitch":-122.0625,"roll":52.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:39.923"} +{"sensors":[{"euler":{"heading":80.125,"pitch":129.25,"roll":12.0625},"location":"Left Knee"},{"euler":{"heading":27.8125,"pitch":80.125,"roll":5.8125},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":-25.4375,"roll":-26.375},"location":"Right Ankle"},{"euler":{"heading":169.25,"pitch":-161.3125,"roll":58.1875},"location":"Right Hip"},{"euler":{"heading":248.1875,"pitch":-129.75,"roll":65.8125},"location":"Right Knee"},{"euler":{"heading":354.625,"pitch":-118.5625,"roll":49.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.25"} +{"sensors":[{"euler":{"heading":45.75,"pitch":138.125,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":2.0,"pitch":79.25,"roll":-19.1875},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-23.75,"roll":-28.625},"location":"Right Ankle"},{"euler":{"heading":171.25,"pitch":-161.9375,"roll":59.1875},"location":"Right Hip"},{"euler":{"heading":253.4375,"pitch":-124.3125,"roll":60.5},"location":"Right Knee"},{"euler":{"heading":357.25,"pitch":-119.3125,"roll":50.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.126"} +{"sensors":[{"euler":{"heading":41.3125,"pitch":141.25,"roll":33.8125},"location":"Left Knee"},{"euler":{"heading":355.4375,"pitch":82.375,"roll":-26.6875},"location":"Left Ankle"},{"euler":{"heading":70.8125,"pitch":-21.75,"roll":-33.6875},"location":"Right Ankle"},{"euler":{"heading":172.1875,"pitch":-165.375,"roll":61.625},"location":"Right Hip"},{"euler":{"heading":262.5,"pitch":-118.375,"roll":52.875},"location":"Right Knee"},{"euler":{"heading":5.4375,"pitch":-126.0,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.227"} +{"sensors":[{"euler":{"heading":57.0625,"pitch":131.1875,"roll":31.625},"location":"Left Knee"},{"euler":{"heading":8.625,"pitch":94.0625,"roll":-16.0625},"location":"Left Ankle"},{"euler":{"heading":57.9375,"pitch":-20.4375,"roll":-38.0},"location":"Right Ankle"},{"euler":{"heading":175.4375,"pitch":-167.625,"roll":62.3125},"location":"Right Hip"},{"euler":{"heading":278.625,"pitch":-112.125,"roll":43.5},"location":"Right Knee"},{"euler":{"heading":8.5,"pitch":-128.125,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.328"} +{"sensors":[{"euler":{"heading":64.0625,"pitch":123.125,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":15.3125,"pitch":95.0625,"roll":-9.8125},"location":"Left Ankle"},{"euler":{"heading":38.1875,"pitch":-8.4375,"roll":-44.5625},"location":"Right Ankle"},{"euler":{"heading":183.0625,"pitch":-159.8125,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":291.125,"pitch":-106.5625,"roll":32.75},"location":"Right Knee"},{"euler":{"heading":13.0625,"pitch":-124.4375,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.429"} +{"sensors":[{"euler":{"heading":67.1875,"pitch":118.3125,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":21.1875,"pitch":96.5625,"roll":-5.9375},"location":"Left Ankle"},{"euler":{"heading":38.9375,"pitch":-12.5,"roll":-40.625},"location":"Right Ankle"},{"euler":{"heading":186.6875,"pitch":-155.5,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":288.5625,"pitch":-103.1875,"roll":35.125},"location":"Right Knee"},{"euler":{"heading":15.0625,"pitch":-139.0,"roll":58.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.530"} +{"sensors":[{"euler":{"heading":71.25,"pitch":114.875,"roll":24.5625},"location":"Left Knee"},{"euler":{"heading":28.4375,"pitch":98.875,"roll":-0.25},"location":"Left Ankle"},{"euler":{"heading":62.1875,"pitch":-27.3125,"roll":-29.625},"location":"Right Ankle"},{"euler":{"heading":183.25,"pitch":-156.5,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":271.375,"pitch":-99.4375,"roll":54.75},"location":"Right Knee"},{"euler":{"heading":17.125,"pitch":-145.875,"roll":60.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.630"} +{"sensors":[{"euler":{"heading":76.3125,"pitch":113.1875,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":31.4375,"pitch":98.0,"roll":3.6875},"location":"Left Ankle"},{"euler":{"heading":88.0625,"pitch":-35.1875,"roll":-13.875},"location":"Right Ankle"},{"euler":{"heading":171.6875,"pitch":-160.875,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":251.8125,"pitch":-105.25,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":16.5,"pitch":-149.1875,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.731"} +{"sensors":[{"euler":{"heading":81.5,"pitch":112.5625,"roll":14.0},"location":"Left Knee"},{"euler":{"heading":36.0,"pitch":96.8125,"roll":9.0},"location":"Left Ankle"},{"euler":{"heading":101.0625,"pitch":-36.0,"roll":-6.125},"location":"Right Ankle"},{"euler":{"heading":161.0,"pitch":-164.4375,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":237.8125,"pitch":179.125,"roll":85.25},"location":"Right Knee"},{"euler":{"heading":17.75,"pitch":-154.6875,"roll":62.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.832"} +{"sensors":[{"euler":{"heading":89.125,"pitch":111.9375,"roll":5.5},"location":"Left Knee"},{"euler":{"heading":44.3125,"pitch":96.0,"roll":19.875},"location":"Left Ankle"},{"euler":{"heading":99.5625,"pitch":-33.8125,"roll":-8.0},"location":"Right Ankle"},{"euler":{"heading":159.0625,"pitch":-165.5625,"roll":49.875},"location":"Right Hip"},{"euler":{"heading":234.5625,"pitch":-178.75,"roll":83.8125},"location":"Right Knee"},{"euler":{"heading":21.75,"pitch":-160.125,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:40.933"} +{"sensors":[{"euler":{"heading":103.0625,"pitch":114.75,"roll":-7.0625},"location":"Left Knee"},{"euler":{"heading":62.4375,"pitch":95.25,"roll":39.625},"location":"Left Ankle"},{"euler":{"heading":89.5,"pitch":-30.5625,"roll":-15.875},"location":"Right Ankle"},{"euler":{"heading":166.125,"pitch":-163.25,"roll":51.8125},"location":"Right Hip"},{"euler":{"heading":239.125,"pitch":-136.25,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":11.125,"pitch":-145.125,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.33"} +{"sensors":[{"euler":{"heading":112.6875,"pitch":113.8125,"roll":-10.875},"location":"Left Knee"},{"euler":{"heading":63.625,"pitch":87.3125,"roll":45.5625},"location":"Left Ankle"},{"euler":{"heading":86.625,"pitch":-29.1875,"roll":-19.9375},"location":"Right Ankle"},{"euler":{"heading":163.375,"pitch":-164.875,"roll":56.25},"location":"Right Hip"},{"euler":{"heading":241.5625,"pitch":-135.75,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":359.6875,"pitch":-121.8125,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.134"} +{"sensors":[{"euler":{"heading":102.9375,"pitch":122.0,"roll":0.0625},"location":"Left Knee"},{"euler":{"heading":32.0,"pitch":84.625,"roll":23.0625},"location":"Left Ankle"},{"euler":{"heading":84.875,"pitch":-28.3125,"roll":-23.6875},"location":"Right Ankle"},{"euler":{"heading":168.0,"pitch":-163.25,"roll":58.5625},"location":"Right Hip"},{"euler":{"heading":246.6875,"pitch":-131.3125,"roll":67.3125},"location":"Right Knee"},{"euler":{"heading":356.5,"pitch":-118.625,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.235"} +{"sensors":[{"euler":{"heading":65.125,"pitch":132.6875,"roll":20.6875},"location":"Left Knee"},{"euler":{"heading":15.625,"pitch":80.6875,"roll":-3.6875},"location":"Left Ankle"},{"euler":{"heading":79.875,"pitch":-27.6875,"roll":-26.875},"location":"Right Ankle"},{"euler":{"heading":172.3125,"pitch":-162.6875,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":253.5,"pitch":-125.4375,"roll":62.8125},"location":"Right Knee"},{"euler":{"heading":358.25,"pitch":-118.8125,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.335"} +{"sensors":[{"euler":{"heading":47.0625,"pitch":138.6875,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":353.125,"pitch":81.5,"roll":-27.3125},"location":"Left Ankle"},{"euler":{"heading":73.875,"pitch":-23.6875,"roll":-31.625},"location":"Right Ankle"},{"euler":{"heading":174.5,"pitch":-163.1875,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":257.6875,"pitch":-120.5,"roll":57.5625},"location":"Right Knee"},{"euler":{"heading":4.0625,"pitch":-123.8125,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.437"} +{"sensors":[{"euler":{"heading":49.8125,"pitch":136.5,"roll":32.1875},"location":"Left Knee"},{"euler":{"heading":357.875,"pitch":86.4375,"roll":-23.8125},"location":"Left Ankle"},{"euler":{"heading":64.4375,"pitch":-19.75,"roll":-36.375},"location":"Right Ankle"},{"euler":{"heading":176.125,"pitch":-166.4375,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":267.125,"pitch":-115.25,"roll":49.9375},"location":"Right Knee"},{"euler":{"heading":8.4375,"pitch":-126.3125,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.537"} +{"sensors":[{"euler":{"heading":60.5,"pitch":127.5,"roll":29.5625},"location":"Left Knee"},{"euler":{"heading":13.5,"pitch":91.6875,"roll":-9.9375},"location":"Left Ankle"},{"euler":{"heading":49.3125,"pitch":-15.625,"roll":-40.4375},"location":"Right Ankle"},{"euler":{"heading":180.0,"pitch":-165.25,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":282.5,"pitch":-109.1875,"roll":39.375},"location":"Right Knee"},{"euler":{"heading":9.9375,"pitch":-127.5625,"roll":55.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.638"} +{"sensors":[{"euler":{"heading":66.25,"pitch":120.25,"roll":28.25},"location":"Left Knee"},{"euler":{"heading":19.125,"pitch":95.5625,"roll":-7.5},"location":"Left Ankle"},{"euler":{"heading":32.6875,"pitch":-10.8125,"roll":-44.875},"location":"Right Ankle"},{"euler":{"heading":185.8125,"pitch":-157.3125,"roll":53.5},"location":"Right Hip"},{"euler":{"heading":291.4375,"pitch":-105.8125,"roll":31.0625},"location":"Right Knee"},{"euler":{"heading":14.125,"pitch":-134.0625,"roll":58.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.739"} +{"sensors":[{"euler":{"heading":69.25,"pitch":116.0,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":23.9375,"pitch":97.625,"roll":-3.5},"location":"Left Ankle"},{"euler":{"heading":44.6875,"pitch":-17.625,"roll":-40.375},"location":"Right Ankle"},{"euler":{"heading":187.6875,"pitch":-155.4375,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":278.9375,"pitch":-104.625,"roll":42.875},"location":"Right Knee"},{"euler":{"heading":16.9375,"pitch":-141.8125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.840"} +{"sensors":[{"euler":{"heading":73.8125,"pitch":113.375,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":37.1875,"pitch":100.5625,"roll":5.625},"location":"Left Ankle"},{"euler":{"heading":70.625,"pitch":-31.875,"roll":-25.4375},"location":"Right Ankle"},{"euler":{"heading":179.375,"pitch":-158.375,"roll":41.5},"location":"Right Hip"},{"euler":{"heading":259.3125,"pitch":-100.5625,"roll":65.5625},"location":"Right Knee"},{"euler":{"heading":17.25,"pitch":-146.4375,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:41.941"} +{"sensors":[{"euler":{"heading":79.125,"pitch":111.625,"roll":17.6875},"location":"Left Knee"},{"euler":{"heading":37.9375,"pitch":98.5,"roll":9.5625},"location":"Left Ankle"},{"euler":{"heading":97.125,"pitch":-36.375,"roll":-9.5625},"location":"Right Ankle"},{"euler":{"heading":168.5,"pitch":-162.125,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":240.4375,"pitch":-175.375,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":17.6875,"pitch":-149.8125,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.42"} +{"sensors":[{"euler":{"heading":84.75,"pitch":110.875,"roll":11.375},"location":"Left Knee"},{"euler":{"heading":43.5625,"pitch":97.8125,"roll":16.125},"location":"Left Ankle"},{"euler":{"heading":98.625,"pitch":-38.0,"roll":-6.6875},"location":"Right Ankle"},{"euler":{"heading":159.5625,"pitch":-165.375,"roll":47.8125},"location":"Right Hip"},{"euler":{"heading":234.25,"pitch":178.6875,"roll":84.0},"location":"Right Knee"},{"euler":{"heading":18.9375,"pitch":-155.4375,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.142"} +{"sensors":[{"euler":{"heading":94.6875,"pitch":111.125,"roll":1.8125},"location":"Left Knee"},{"euler":{"heading":53.0625,"pitch":95.5625,"roll":27.8125},"location":"Left Ankle"},{"euler":{"heading":94.0,"pitch":-33.25,"roll":-11.75},"location":"Right Ankle"},{"euler":{"heading":161.5625,"pitch":-164.3125,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":232.4375,"pitch":-153.0625,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-155.8125,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.243"} +{"sensors":[{"euler":{"heading":110.25,"pitch":112.6875,"roll":-10.0625},"location":"Left Knee"},{"euler":{"heading":68.8125,"pitch":98.625,"roll":42.625},"location":"Left Ankle"},{"euler":{"heading":87.625,"pitch":-29.875,"roll":-17.5},"location":"Right Ankle"},{"euler":{"heading":163.375,"pitch":-164.4375,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":235.125,"pitch":-141.125,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":7.6875,"pitch":-133.625,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.344"} +{"sensors":[{"euler":{"heading":110.3125,"pitch":118.75,"roll":-7.0},"location":"Left Knee"},{"euler":{"heading":53.9375,"pitch":86.0,"roll":34.375},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":-27.6875,"roll":-21.375},"location":"Right Ankle"},{"euler":{"heading":165.8125,"pitch":-163.375,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":238.25,"pitch":-136.75,"roll":70.4375},"location":"Right Knee"},{"euler":{"heading":358.625,"pitch":-122.4375,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.445"} +{"sensors":[{"euler":{"heading":82.6875,"pitch":128.0625,"roll":11.3125},"location":"Left Knee"},{"euler":{"heading":29.5,"pitch":84.0,"roll":7.9375},"location":"Left Ankle"},{"euler":{"heading":82.4375,"pitch":-27.4375,"roll":-24.8125},"location":"Right Ankle"},{"euler":{"heading":169.75,"pitch":-162.8125,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":243.4375,"pitch":-130.6875,"roll":66.5},"location":"Right Knee"},{"euler":{"heading":357.125,"pitch":-118.5,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.546"} +{"sensors":[{"euler":{"heading":53.3125,"pitch":136.0,"roll":27.875},"location":"Left Knee"},{"euler":{"heading":1.9375,"pitch":81.5,"roll":-17.375},"location":"Left Ankle"},{"euler":{"heading":77.875,"pitch":-27.0,"roll":-27.0},"location":"Right Ankle"},{"euler":{"heading":172.9375,"pitch":-164.4375,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":250.1875,"pitch":-124.1875,"roll":61.1875},"location":"Right Knee"},{"euler":{"heading":1.4375,"pitch":-120.25,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.647"} +{"sensors":[{"euler":{"heading":44.625,"pitch":139.9375,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":355.625,"pitch":83.6875,"roll":-25.8125},"location":"Left Ankle"},{"euler":{"heading":69.4375,"pitch":-24.125,"roll":-33.6875},"location":"Right Ankle"},{"euler":{"heading":176.75,"pitch":-165.1875,"roll":60.75},"location":"Right Hip"},{"euler":{"heading":259.8125,"pitch":-118.5625,"roll":53.875},"location":"Right Knee"},{"euler":{"heading":8.0625,"pitch":-126.75,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.752"} +{"sensors":[{"euler":{"heading":56.375,"pitch":130.6875,"roll":31.6875},"location":"Left Knee"},{"euler":{"heading":11.3125,"pitch":90.625,"roll":-11.8125},"location":"Left Ankle"},{"euler":{"heading":54.5625,"pitch":-21.0625,"roll":-39.125},"location":"Right Ankle"},{"euler":{"heading":181.125,"pitch":-163.8125,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":276.4375,"pitch":-110.6875,"roll":42.5},"location":"Right Knee"},{"euler":{"heading":9.1875,"pitch":-128.75,"roll":54.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.852"} +{"sensors":[{"euler":{"heading":63.0,"pitch":123.875,"roll":28.1875},"location":"Left Knee"},{"euler":{"heading":13.1875,"pitch":90.6875,"roll":-10.75},"location":"Left Ankle"},{"euler":{"heading":305.625,"pitch":-7.875,"roll":-45.375},"location":"Right Ankle"},{"euler":{"heading":188.8125,"pitch":-155.0625,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":283.0,"pitch":-107.0,"roll":34.0625},"location":"Right Knee"},{"euler":{"heading":13.1875,"pitch":-133.4375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:42.953"} +{"sensors":[{"euler":{"heading":65.875,"pitch":120.875,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":17.4375,"pitch":90.75,"roll":-7.0625},"location":"Left Ankle"},{"euler":{"heading":40.25,"pitch":-16.3125,"roll":-39.25},"location":"Right Ankle"},{"euler":{"heading":191.625,"pitch":-153.0625,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":275.6875,"pitch":-103.8125,"roll":42.9375},"location":"Right Knee"},{"euler":{"heading":13.75,"pitch":-140.375,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.54"} +{"sensors":[{"euler":{"heading":70.3125,"pitch":119.0,"roll":21.375},"location":"Left Knee"},{"euler":{"heading":23.8125,"pitch":91.5,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":64.3125,"pitch":-30.0,"roll":-27.8125},"location":"Right Ankle"},{"euler":{"heading":184.6875,"pitch":-155.8125,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":256.1875,"pitch":-103.1875,"roll":64.125},"location":"Right Knee"},{"euler":{"heading":14.125,"pitch":-145.5625,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.155"} +{"sensors":[{"euler":{"heading":76.0625,"pitch":115.75,"roll":17.8125},"location":"Left Knee"},{"euler":{"heading":30.6875,"pitch":94.0,"roll":4.3125},"location":"Left Ankle"},{"euler":{"heading":91.0625,"pitch":-36.5625,"roll":-12.625},"location":"Right Ankle"},{"euler":{"heading":174.125,"pitch":-159.9375,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":239.5,"pitch":-131.6875,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":16.1875,"pitch":-149.9375,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.256"} +{"sensors":[{"euler":{"heading":81.8125,"pitch":113.375,"roll":12.8125},"location":"Left Knee"},{"euler":{"heading":36.75,"pitch":94.75,"roll":10.3125},"location":"Left Ankle"},{"euler":{"heading":96.0,"pitch":-38.5,"roll":-8.75},"location":"Right Ankle"},{"euler":{"heading":162.625,"pitch":-164.625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":230.8125,"pitch":177.25,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":18.0,"pitch":-154.625,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.356"} +{"sensors":[{"euler":{"heading":91.125,"pitch":112.8125,"roll":4.0},"location":"Left Knee"},{"euler":{"heading":45.1875,"pitch":93.5625,"roll":21.1875},"location":"Left Ankle"},{"euler":{"heading":90.5625,"pitch":-35.25,"roll":-13.375},"location":"Right Ankle"},{"euler":{"heading":162.375,"pitch":-165.0625,"roll":47.9375},"location":"Right Hip"},{"euler":{"heading":230.25,"pitch":-161.1875,"roll":82.8125},"location":"Right Knee"},{"euler":{"heading":20.4375,"pitch":-157.4375,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.458"} +{"sensors":[{"euler":{"heading":106.1875,"pitch":117.1875,"roll":-7.875},"location":"Left Knee"},{"euler":{"heading":65.6875,"pitch":92.9375,"roll":41.25},"location":"Left Ankle"},{"euler":{"heading":84.375,"pitch":-34.0,"roll":-18.375},"location":"Right Ankle"},{"euler":{"heading":164.4375,"pitch":-164.3125,"roll":52.1875},"location":"Right Hip"},{"euler":{"heading":233.8125,"pitch":-142.25,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":2.625,"pitch":-137.125,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.559"} +{"sensors":[{"euler":{"heading":111.625,"pitch":118.3125,"roll":-9.4375},"location":"Left Knee"},{"euler":{"heading":58.875,"pitch":84.5,"roll":38.75},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":-32.125,"roll":-21.4375},"location":"Right Ankle"},{"euler":{"heading":167.25,"pitch":-163.75,"roll":55.5},"location":"Right Hip"},{"euler":{"heading":239.0,"pitch":-134.9375,"roll":70.6875},"location":"Right Knee"},{"euler":{"heading":355.375,"pitch":-121.875,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.663"} +{"sensors":[{"euler":{"heading":93.5625,"pitch":125.625,"roll":4.75},"location":"Left Knee"},{"euler":{"heading":35.6875,"pitch":80.125,"roll":14.0},"location":"Left Ankle"},{"euler":{"heading":80.125,"pitch":-30.9375,"roll":-25.375},"location":"Right Ankle"},{"euler":{"heading":171.5,"pitch":-161.8125,"roll":56.6875},"location":"Right Hip"},{"euler":{"heading":242.875,"pitch":-129.1875,"roll":67.25},"location":"Right Knee"},{"euler":{"heading":353.5625,"pitch":-119.375,"roll":49.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.763"} +{"sensors":[{"euler":{"heading":56.1875,"pitch":136.5625,"roll":23.9375},"location":"Left Knee"},{"euler":{"heading":5.5,"pitch":77.875,"roll":-13.5625},"location":"Left Ankle"},{"euler":{"heading":75.375,"pitch":-28.625,"roll":-28.5625},"location":"Right Ankle"},{"euler":{"heading":173.625,"pitch":-162.4375,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":246.6875,"pitch":-124.375,"roll":62.625},"location":"Right Knee"},{"euler":{"heading":354.625,"pitch":-118.75,"roll":50.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.864"} +{"sensors":[{"euler":{"heading":40.375,"pitch":141.875,"roll":32.6875},"location":"Left Knee"},{"euler":{"heading":354.75,"pitch":78.5625,"roll":-26.875},"location":"Left Ankle"},{"euler":{"heading":67.125,"pitch":-22.6875,"roll":-35.0625},"location":"Right Ankle"},{"euler":{"heading":175.5,"pitch":-163.0,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":252.8125,"pitch":-118.625,"roll":56.0625},"location":"Right Knee"},{"euler":{"heading":0.6875,"pitch":-124.3125,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:43.966"} +{"sensors":[{"euler":{"heading":52.75,"pitch":133.875,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":3.5625,"pitch":87.0,"roll":-19.375},"location":"Left Ankle"},{"euler":{"heading":54.625,"pitch":-17.75,"roll":-39.25},"location":"Right Ankle"},{"euler":{"heading":178.875,"pitch":-164.125,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":265.0,"pitch":-112.1875,"roll":47.5625},"location":"Right Knee"},{"euler":{"heading":3.1875,"pitch":-126.375,"roll":53.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.67"} +{"sensors":[{"euler":{"heading":60.5,"pitch":127.1875,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":11.8125,"pitch":88.125,"roll":-11.5},"location":"Left Ankle"},{"euler":{"heading":36.8125,"pitch":-9.4375,"roll":-43.75},"location":"Right Ankle"},{"euler":{"heading":183.875,"pitch":-158.125,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":276.5,"pitch":-107.0,"roll":37.4375},"location":"Right Knee"},{"euler":{"heading":5.75,"pitch":-128.8125,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.167"} +{"sensors":[{"euler":{"heading":65.0,"pitch":121.5,"roll":26.5},"location":"Left Knee"},{"euler":{"heading":18.375,"pitch":91.4375,"roll":-7.4375},"location":"Left Ankle"},{"euler":{"heading":38.125,"pitch":-15.125,"roll":-40.4375},"location":"Right Ankle"},{"euler":{"heading":187.5625,"pitch":-154.375,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":274.6875,"pitch":-105.75,"roll":40.125},"location":"Right Knee"},{"euler":{"heading":10.125,"pitch":-136.375,"roll":58.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.268"} +{"sensors":[{"euler":{"heading":69.5625,"pitch":118.125,"roll":23.625},"location":"Left Knee"},{"euler":{"heading":26.5625,"pitch":93.5625,"roll":-0.375},"location":"Left Ankle"},{"euler":{"heading":58.5,"pitch":-31.0,"roll":-29.6875},"location":"Right Ankle"},{"euler":{"heading":185.1875,"pitch":-156.0,"roll":42.0},"location":"Right Hip"},{"euler":{"heading":259.9375,"pitch":-107.25,"roll":58.875},"location":"Right Knee"},{"euler":{"heading":12.875,"pitch":-142.3125,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.368"} +{"sensors":[{"euler":{"heading":75.25,"pitch":114.6875,"roll":20.0},"location":"Left Knee"},{"euler":{"heading":30.75,"pitch":94.75,"roll":3.4375},"location":"Left Ankle"},{"euler":{"heading":84.0,"pitch":-39.0,"roll":-16.0},"location":"Right Ankle"},{"euler":{"heading":176.875,"pitch":-160.1875,"roll":41.5625},"location":"Right Hip"},{"euler":{"heading":242.9375,"pitch":-118.5,"roll":76.9375},"location":"Right Knee"},{"euler":{"heading":15.8125,"pitch":-148.0625,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.469"} +{"sensors":[{"euler":{"heading":80.8125,"pitch":112.8125,"roll":14.8125},"location":"Left Knee"},{"euler":{"heading":35.375,"pitch":95.375,"roll":9.375},"location":"Left Ankle"},{"euler":{"heading":95.875,"pitch":-40.1875,"roll":-6.8125},"location":"Right Ankle"},{"euler":{"heading":166.0,"pitch":-163.875,"roll":46.1875},"location":"Right Hip"},{"euler":{"heading":230.5,"pitch":166.125,"roll":82.5625},"location":"Right Knee"},{"euler":{"heading":18.6875,"pitch":-153.875,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.569"} +{"sensors":[{"euler":{"heading":88.9375,"pitch":112.0625,"roll":7.0625},"location":"Left Knee"},{"euler":{"heading":43.75,"pitch":95.125,"roll":19.375},"location":"Left Ankle"},{"euler":{"heading":92.0,"pitch":-36.375,"roll":-11.0625},"location":"Right Ankle"},{"euler":{"heading":162.5,"pitch":-165.875,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":228.125,"pitch":-166.5625,"roll":82.1875},"location":"Right Knee"},{"euler":{"heading":21.25,"pitch":-158.1875,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.670"} +{"sensors":[{"euler":{"heading":104.3125,"pitch":116.0625,"roll":-6.125},"location":"Left Knee"},{"euler":{"heading":56.5,"pitch":92.4375,"roll":36.9375},"location":"Left Ankle"},{"euler":{"heading":85.0,"pitch":-34.3125,"roll":-17.9375},"location":"Right Ankle"},{"euler":{"heading":167.25,"pitch":-164.25,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":230.6875,"pitch":-141.875,"roll":77.9375},"location":"Right Knee"},{"euler":{"heading":10.875,"pitch":-144.4375,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.771"} +{"sensors":[{"euler":{"heading":110.625,"pitch":115.25,"roll":-8.6875},"location":"Left Knee"},{"euler":{"heading":57.4375,"pitch":88.0625,"roll":40.5},"location":"Left Ankle"},{"euler":{"heading":81.6875,"pitch":-31.8125,"roll":-20.9375},"location":"Right Ankle"},{"euler":{"heading":165.375,"pitch":-165.125,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":232.3125,"pitch":-137.5,"roll":72.5},"location":"Right Knee"},{"euler":{"heading":1.625,"pitch":-122.375,"roll":57.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.872"} +{"sensors":[{"euler":{"heading":98.0,"pitch":123.25,"roll":2.9375},"location":"Left Knee"},{"euler":{"heading":40.0,"pitch":81.8125,"roll":19.125},"location":"Left Ankle"},{"euler":{"heading":78.6875,"pitch":-27.5625,"roll":-24.875},"location":"Right Ankle"},{"euler":{"heading":168.9375,"pitch":-162.6875,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":233.4375,"pitch":-133.5,"roll":69.0625},"location":"Right Knee"},{"euler":{"heading":356.125,"pitch":-118.5,"roll":51.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:44.972"} +{"sensors":[{"euler":{"heading":62.1875,"pitch":134.1875,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":13.0625,"pitch":78.0625,"roll":-7.1875},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":-24.5,"roll":-28.25},"location":"Right Ankle"},{"euler":{"heading":170.1875,"pitch":-163.1875,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":237.125,"pitch":-112.0625,"roll":64.8125},"location":"Right Knee"},{"euler":{"heading":355.125,"pitch":-117.375,"roll":50.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.73"} +{"sensors":[{"euler":{"heading":45.3125,"pitch":140.0,"roll":31.3125},"location":"Left Knee"},{"euler":{"heading":356.0625,"pitch":77.4375,"roll":-24.625},"location":"Left Ankle"},{"euler":{"heading":69.5,"pitch":-20.9375,"roll":-33.5625},"location":"Right Ankle"},{"euler":{"heading":172.0,"pitch":-163.9375,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":244.5,"pitch":-122.5625,"roll":58.5},"location":"Right Knee"},{"euler":{"heading":358.8125,"pitch":-120.9375,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.173"} +{"sensors":[{"euler":{"heading":51.5,"pitch":133.25,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":0.125,"pitch":84.6875,"roll":-21.5625},"location":"Left Ankle"},{"euler":{"heading":56.625,"pitch":-19.4375,"roll":-38.3125},"location":"Right Ankle"},{"euler":{"heading":177.8125,"pitch":-164.4375,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":264.1875,"pitch":-113.125,"roll":47.125},"location":"Right Knee"},{"euler":{"heading":5.8125,"pitch":-128.0,"roll":54.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.274"} +{"sensors":[{"euler":{"heading":58.625,"pitch":126.6875,"roll":29.8125},"location":"Left Knee"},{"euler":{"heading":11.125,"pitch":88.4375,"roll":-12.5},"location":"Left Ankle"},{"euler":{"heading":37.75,"pitch":-7.5625,"roll":-43.0625},"location":"Right Ankle"},{"euler":{"heading":185.375,"pitch":-157.625,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":274.4375,"pitch":-107.125,"roll":38.0},"location":"Right Knee"},{"euler":{"heading":7.125,"pitch":-129.5625,"roll":56.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.374"} +{"sensors":[{"euler":{"heading":63.5,"pitch":122.25,"roll":27.0},"location":"Left Knee"},{"euler":{"heading":16.125,"pitch":89.625,"roll":-8.6875},"location":"Left Ankle"},{"euler":{"heading":36.5625,"pitch":-10.5,"roll":-40.8125},"location":"Right Ankle"},{"euler":{"heading":187.3125,"pitch":-154.4375,"roll":47.5},"location":"Right Hip"},{"euler":{"heading":272.4375,"pitch":-105.5,"roll":39.3125},"location":"Right Knee"},{"euler":{"heading":9.875,"pitch":-138.3125,"roll":58.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.475"} +{"sensors":[{"euler":{"heading":67.375,"pitch":120.625,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":21.1875,"pitch":89.375,"roll":-3.6875},"location":"Left Ankle"},{"euler":{"heading":56.3125,"pitch":-27.1875,"roll":-31.75},"location":"Right Ankle"},{"euler":{"heading":183.9375,"pitch":-155.8125,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":259.9375,"pitch":-106.0625,"roll":54.5625},"location":"Right Knee"},{"euler":{"heading":10.9375,"pitch":-142.875,"roll":59.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.576"} +{"sensors":[{"euler":{"heading":73.125,"pitch":118.625,"roll":18.8125},"location":"Left Knee"},{"euler":{"heading":25.0,"pitch":89.5,"roll":0.5},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-37.5,"roll":-16.875},"location":"Right Ankle"},{"euler":{"heading":174.625,"pitch":-160.125,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":242.6875,"pitch":-117.5625,"roll":76.0},"location":"Right Knee"},{"euler":{"heading":11.4375,"pitch":-146.25,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.677"} +{"sensors":[{"euler":{"heading":78.75,"pitch":116.5625,"roll":14.25},"location":"Left Knee"},{"euler":{"heading":31.5,"pitch":91.3125,"roll":6.25},"location":"Left Ankle"},{"euler":{"heading":94.875,"pitch":-39.6875,"roll":-9.125},"location":"Right Ankle"},{"euler":{"heading":163.8125,"pitch":-164.375,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":228.875,"pitch":170.4375,"roll":81.0625},"location":"Right Knee"},{"euler":{"heading":14.8125,"pitch":-152.5625,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.778"} +{"sensors":[{"euler":{"heading":87.125,"pitch":114.0625,"roll":7.125},"location":"Left Knee"},{"euler":{"heading":39.6875,"pitch":91.9375,"roll":15.5625},"location":"Left Ankle"},{"euler":{"heading":92.125,"pitch":-36.625,"roll":-12.875},"location":"Right Ankle"},{"euler":{"heading":162.375,"pitch":-165.4375,"roll":47.4375},"location":"Right Hip"},{"euler":{"heading":224.875,"pitch":-174.3125,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":19.3125,"pitch":-158.0,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.878"} +{"sensors":[{"euler":{"heading":105.9375,"pitch":116.8125,"roll":-6.8125},"location":"Left Knee"},{"euler":{"heading":52.375,"pitch":94.875,"roll":34.0},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":-33.875,"roll":-17.875},"location":"Right Ankle"},{"euler":{"heading":165.9375,"pitch":-164.125,"roll":50.3125},"location":"Right Hip"},{"euler":{"heading":227.9375,"pitch":-149.5,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":8.5625,"pitch":-142.375,"roll":60.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:45.978"} +{"sensors":[{"euler":{"heading":112.3125,"pitch":115.1875,"roll":-8.3125},"location":"Left Knee"},{"euler":{"heading":54.0625,"pitch":90.875,"roll":37.5625},"location":"Left Ankle"},{"euler":{"heading":84.0625,"pitch":-34.0,"roll":-20.75},"location":"Right Ankle"},{"euler":{"heading":166.1875,"pitch":-164.625,"roll":54.5},"location":"Right Hip"},{"euler":{"heading":231.5625,"pitch":-141.375,"roll":72.0625},"location":"Right Knee"},{"euler":{"heading":359.75,"pitch":-122.0,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.79"} +{"sensors":[{"euler":{"heading":97.0,"pitch":124.125,"roll":3.8125},"location":"Left Knee"},{"euler":{"heading":35.375,"pitch":81.75,"roll":15.75},"location":"Left Ankle"},{"euler":{"heading":81.8125,"pitch":-33.5625,"roll":-23.5625},"location":"Right Ankle"},{"euler":{"heading":171.9375,"pitch":-162.9375,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":238.75,"pitch":-133.125,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":355.4375,"pitch":-118.3125,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.180"} +{"sensors":[{"euler":{"heading":60.8125,"pitch":134.75,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":8.375,"pitch":79.4375,"roll":-9.9375},"location":"Left Ankle"},{"euler":{"heading":77.8125,"pitch":-31.5,"roll":-27.125},"location":"Right Ankle"},{"euler":{"heading":174.6875,"pitch":-162.75,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":244.0625,"pitch":-126.125,"roll":62.6875},"location":"Right Knee"},{"euler":{"heading":355.5625,"pitch":-117.25,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.282"} +{"sensors":[{"euler":{"heading":42.5625,"pitch":140.8125,"roll":32.9375},"location":"Left Knee"},{"euler":{"heading":354.0,"pitch":78.125,"roll":-27.375},"location":"Left Ankle"},{"euler":{"heading":70.125,"pitch":-26.5,"roll":-34.6875},"location":"Right Ankle"},{"euler":{"heading":177.5,"pitch":-162.6875,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":250.6875,"pitch":-120.75,"roll":56.875},"location":"Right Knee"},{"euler":{"heading":3.5,"pitch":-123.5,"roll":53.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.383"} +{"sensors":[{"euler":{"heading":49.5,"pitch":134.5625,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":358.3125,"pitch":84.8125,"roll":-23.3125},"location":"Left Ankle"},{"euler":{"heading":58.5625,"pitch":-22.3125,"roll":-38.875},"location":"Right Ankle"},{"euler":{"heading":179.3125,"pitch":-165.1875,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":261.625,"pitch":-114.0625,"roll":48.875},"location":"Right Knee"},{"euler":{"heading":8.75,"pitch":-126.75,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.484"} +{"sensors":[{"euler":{"heading":59.625,"pitch":126.9375,"roll":29.9375},"location":"Left Knee"},{"euler":{"heading":10.8125,"pitch":90.0,"roll":-12.4375},"location":"Left Ankle"},{"euler":{"heading":42.9375,"pitch":-12.0625,"roll":-43.125},"location":"Right Ankle"},{"euler":{"heading":185.4375,"pitch":-160.6875,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":274.3125,"pitch":-108.125,"roll":38.0},"location":"Right Knee"},{"euler":{"heading":7.8125,"pitch":-128.875,"roll":56.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.585"} +{"sensors":[{"euler":{"heading":64.75,"pitch":122.125,"roll":26.8125},"location":"Left Knee"},{"euler":{"heading":15.75,"pitch":90.75,"roll":-8.5},"location":"Left Ankle"},{"euler":{"heading":35.1875,"pitch":-9.0625,"roll":-44.3125},"location":"Right Ankle"},{"euler":{"heading":187.0,"pitch":-156.625,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":274.75,"pitch":-106.375,"roll":35.4375},"location":"Right Knee"},{"euler":{"heading":11.375,"pitch":-135.5625,"roll":59.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.686"} +{"sensors":[{"euler":{"heading":67.875,"pitch":119.0625,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":21.75,"pitch":91.9375,"roll":-3.875},"location":"Left Ankle"},{"euler":{"heading":51.75,"pitch":-23.5,"roll":-36.375},"location":"Right Ankle"},{"euler":{"heading":188.75,"pitch":-155.1875,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":263.5,"pitch":-105.0625,"roll":49.4375},"location":"Right Knee"},{"euler":{"heading":14.875,"pitch":-144.875,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.788"} +{"sensors":[{"euler":{"heading":73.875,"pitch":116.8125,"roll":20.0625},"location":"Left Knee"},{"euler":{"heading":27.3125,"pitch":92.875,"roll":1.8125},"location":"Left Ankle"},{"euler":{"heading":77.25,"pitch":-35.875,"roll":-20.4375},"location":"Right Ankle"},{"euler":{"heading":179.25,"pitch":-158.8125,"roll":41.75},"location":"Right Hip"},{"euler":{"heading":243.3125,"pitch":-108.6875,"roll":72.4375},"location":"Right Knee"},{"euler":{"heading":15.125,"pitch":-149.1875,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.889"} +{"sensors":[{"euler":{"heading":79.4375,"pitch":114.625,"roll":15.5},"location":"Left Knee"},{"euler":{"heading":32.4375,"pitch":93.5625,"roll":6.625},"location":"Left Ankle"},{"euler":{"heading":94.6875,"pitch":-39.0,"roll":-8.4375},"location":"Right Ankle"},{"euler":{"heading":170.8125,"pitch":-162.0625,"roll":43.8125},"location":"Right Hip"},{"euler":{"heading":228.4375,"pitch":179.9375,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":17.4375,"pitch":-153.9375,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:46.990"} +{"sensors":[{"euler":{"heading":86.125,"pitch":112.5,"roll":9.375},"location":"Left Knee"},{"euler":{"heading":40.4375,"pitch":94.25,"roll":15.25},"location":"Left Ankle"},{"euler":{"heading":92.75,"pitch":-36.125,"roll":-13.3125},"location":"Right Ankle"},{"euler":{"heading":161.5625,"pitch":-165.875,"roll":46.8125},"location":"Right Hip"},{"euler":{"heading":223.0,"pitch":178.9375,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":21.875,"pitch":-160.875,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.91"} +{"sensors":[{"euler":{"heading":100.375,"pitch":116.875,"roll":-3.9375},"location":"Left Knee"},{"euler":{"heading":50.25,"pitch":89.9375,"roll":31.6875},"location":"Left Ankle"},{"euler":{"heading":88.875,"pitch":-35.5,"roll":-16.125},"location":"Right Ankle"},{"euler":{"heading":168.5625,"pitch":-163.9375,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":226.0625,"pitch":-150.6875,"roll":79.5625},"location":"Right Knee"},{"euler":{"heading":16.0,"pitch":-152.5,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.192"} +{"sensors":[{"euler":{"heading":112.1875,"pitch":113.25,"roll":-9.625},"location":"Left Knee"},{"euler":{"heading":59.375,"pitch":90.8125,"roll":41.5},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":-33.5625,"roll":-19.375},"location":"Right Ankle"},{"euler":{"heading":164.0625,"pitch":-166.375,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":228.75,"pitch":-141.875,"roll":74.0},"location":"Right Knee"},{"euler":{"heading":2.5625,"pitch":-126.4375,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.294"} +{"sensors":[{"euler":{"heading":101.75,"pitch":121.3125,"roll":0.1875},"location":"Left Knee"},{"euler":{"heading":45.25,"pitch":83.375,"roll":23.125},"location":"Left Ankle"},{"euler":{"heading":82.5,"pitch":-30.75,"roll":-23.4375},"location":"Right Ankle"},{"euler":{"heading":168.75,"pitch":-164.125,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":230.6875,"pitch":-136.8125,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":356.9375,"pitch":-121.125,"roll":52.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.395"} +{"sensors":[{"euler":{"heading":67.0,"pitch":131.1875,"roll":20.1875},"location":"Left Knee"},{"euler":{"heading":16.0625,"pitch":81.3125,"roll":-4.1875},"location":"Left Ankle"},{"euler":{"heading":79.125,"pitch":-26.125,"roll":-26.75},"location":"Right Ankle"},{"euler":{"heading":171.25,"pitch":-163.6875,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":231.75,"pitch":-131.0,"roll":67.1875},"location":"Right Knee"},{"euler":{"heading":356.75,"pitch":-118.25,"roll":51.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.498"} +{"sensors":[{"euler":{"heading":44.3125,"pitch":138.625,"roll":32.625},"location":"Left Knee"},{"euler":{"heading":356.375,"pitch":79.25,"roll":-25.125},"location":"Left Ankle"},{"euler":{"heading":73.6875,"pitch":-22.4375,"roll":-31.8125},"location":"Right Ankle"},{"euler":{"heading":173.375,"pitch":-164.0625,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":236.625,"pitch":-125.6875,"roll":62.1875},"location":"Right Knee"},{"euler":{"heading":1.25,"pitch":-122.5625,"roll":52.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.599"} +{"sensors":[{"euler":{"heading":54.0,"pitch":132.375,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":0.8125,"pitch":88.25,"roll":-19.9375},"location":"Left Ankle"},{"euler":{"heading":61.5625,"pitch":-19.875,"roll":-37.875},"location":"Right Ankle"},{"euler":{"heading":178.5,"pitch":-163.75,"roll":60.0625},"location":"Right Hip"},{"euler":{"heading":252.4375,"pitch":-116.6875,"roll":51.625},"location":"Right Knee"},{"euler":{"heading":7.5,"pitch":-127.6875,"roll":55.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.699"} +{"sensors":[{"euler":{"heading":59.0,"pitch":126.75,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":12.125,"pitch":91.375,"roll":-12.75},"location":"Left Ankle"},{"euler":{"heading":40.625,"pitch":-9.75,"roll":-42.625},"location":"Right Ankle"},{"euler":{"heading":185.5,"pitch":-157.625,"roll":55.125},"location":"Right Hip"},{"euler":{"heading":268.875,"pitch":-107.9375,"roll":40.625},"location":"Right Knee"},{"euler":{"heading":4.5625,"pitch":-128.8125,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.800"} +{"sensors":[{"euler":{"heading":64.75,"pitch":121.125,"roll":27.75},"location":"Left Knee"},{"euler":{"heading":19.8125,"pitch":92.3125,"roll":-5.3125},"location":"Left Ankle"},{"euler":{"heading":37.75,"pitch":-9.4375,"roll":-40.875},"location":"Right Ankle"},{"euler":{"heading":187.0625,"pitch":-155.4375,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":267.1875,"pitch":-106.625,"roll":39.75},"location":"Right Knee"},{"euler":{"heading":10.1875,"pitch":-135.125,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:47.901"} +{"sensors":[{"euler":{"heading":67.8125,"pitch":119.0,"roll":24.4375},"location":"Left Knee"},{"euler":{"heading":28.75,"pitch":93.3125,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":55.4375,"pitch":-27.3125,"roll":-32.6875},"location":"Right Ankle"},{"euler":{"heading":188.8125,"pitch":-155.625,"roll":42.3125},"location":"Right Hip"},{"euler":{"heading":258.625,"pitch":-104.375,"roll":54.0},"location":"Right Knee"},{"euler":{"heading":12.5625,"pitch":-143.3125,"roll":60.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.2"} +{"sensors":[{"euler":{"heading":72.9375,"pitch":117.4375,"roll":19.875},"location":"Left Knee"},{"euler":{"heading":30.0,"pitch":91.25,"roll":4.3125},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-37.0625,"roll":-17.1875},"location":"Right Ankle"},{"euler":{"heading":178.625,"pitch":-160.3125,"roll":41.3125},"location":"Right Hip"},{"euler":{"heading":238.25,"pitch":-110.25,"roll":77.0},"location":"Right Knee"},{"euler":{"heading":14.0625,"pitch":-148.9375,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.103"} +{"sensors":[{"euler":{"heading":78.9375,"pitch":116.1875,"roll":14.375},"location":"Left Knee"},{"euler":{"heading":35.125,"pitch":90.625,"roll":9.625},"location":"Left Ankle"},{"euler":{"heading":98.125,"pitch":-38.625,"roll":-7.375},"location":"Right Ankle"},{"euler":{"heading":168.25,"pitch":-163.1875,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":224.5,"pitch":177.25,"roll":84.3125},"location":"Right Knee"},{"euler":{"heading":16.8125,"pitch":-155.25,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.203"} +{"sensors":[{"euler":{"heading":86.8125,"pitch":115.3125,"roll":7.125},"location":"Left Knee"},{"euler":{"heading":44.0625,"pitch":90.625,"roll":19.1875},"location":"Left Ankle"},{"euler":{"heading":92.6875,"pitch":-35.0,"roll":-11.75},"location":"Right Ankle"},{"euler":{"heading":163.0,"pitch":-165.0625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":220.0,"pitch":179.6875,"roll":84.125},"location":"Right Knee"},{"euler":{"heading":19.1875,"pitch":-158.8125,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.303"} +{"sensors":[{"euler":{"heading":101.4375,"pitch":114.8125,"roll":-5.625},"location":"Left Knee"},{"euler":{"heading":53.5,"pitch":93.1875,"roll":36.125},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":-29.625,"roll":-17.8125},"location":"Right Ankle"},{"euler":{"heading":168.5,"pitch":-163.625,"roll":50.25},"location":"Right Hip"},{"euler":{"heading":221.4375,"pitch":-148.625,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":8.1875,"pitch":-141.0625,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.405"} +{"sensors":[{"euler":{"heading":111.4375,"pitch":113.0625,"roll":-8.625},"location":"Left Knee"},{"euler":{"heading":56.6875,"pitch":91.125,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":84.25,"pitch":-27.9375,"roll":-21.5},"location":"Right Ankle"},{"euler":{"heading":164.6875,"pitch":-165.875,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":222.125,"pitch":-145.875,"roll":74.5625},"location":"Right Knee"},{"euler":{"heading":358.1875,"pitch":-120.125,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.505"} +{"sensors":[{"euler":{"heading":100.5,"pitch":121.9375,"roll":2.1875},"location":"Left Knee"},{"euler":{"heading":41.0625,"pitch":83.5625,"roll":19.3125},"location":"Left Ankle"},{"euler":{"heading":81.5625,"pitch":-25.625,"roll":-25.875},"location":"Right Ankle"},{"euler":{"heading":170.1875,"pitch":-162.875,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":225.9375,"pitch":-137.25,"roll":70.375},"location":"Right Knee"},{"euler":{"heading":354.9375,"pitch":-117.3125,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.607"} +{"sensors":[{"euler":{"heading":63.6875,"pitch":132.5,"roll":22.25},"location":"Left Knee"},{"euler":{"heading":10.0,"pitch":80.25,"roll":-8.5625},"location":"Left Ankle"},{"euler":{"heading":77.0,"pitch":-23.875,"roll":-27.75},"location":"Right Ankle"},{"euler":{"heading":173.0625,"pitch":-163.0625,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":231.75,"pitch":-129.5,"roll":65.6875},"location":"Right Knee"},{"euler":{"heading":356.5625,"pitch":-117.1875,"roll":51.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.707"} +{"sensors":[{"euler":{"heading":45.4375,"pitch":138.4375,"roll":33.125},"location":"Left Knee"},{"euler":{"heading":353.9375,"pitch":79.6875,"roll":-27.0},"location":"Left Ankle"},{"euler":{"heading":71.125,"pitch":-21.3125,"roll":-32.9375},"location":"Right Ankle"},{"euler":{"heading":174.8125,"pitch":-164.6875,"roll":60.8125},"location":"Right Hip"},{"euler":{"heading":240.1875,"pitch":-123.8125,"roll":59.0625},"location":"Right Knee"},{"euler":{"heading":3.25,"pitch":-123.625,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.807"} +{"sensors":[{"euler":{"heading":54.1875,"pitch":132.5625,"roll":32.375},"location":"Left Knee"},{"euler":{"heading":0.625,"pitch":86.0625,"roll":-20.5625},"location":"Left Ankle"},{"euler":{"heading":60.8125,"pitch":-18.8125,"roll":-39.1875},"location":"Right Ankle"},{"euler":{"heading":180.125,"pitch":-164.625,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":255.3125,"pitch":-116.3125,"roll":49.5625},"location":"Right Knee"},{"euler":{"heading":7.4375,"pitch":-128.375,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:48.908"} +{"sensors":[{"euler":{"heading":60.5,"pitch":126.8125,"roll":29.125},"location":"Left Knee"},{"euler":{"heading":10.0625,"pitch":87.9375,"roll":-12.6875},"location":"Left Ankle"},{"euler":{"heading":42.5,"pitch":-12.125,"roll":-44.1875},"location":"Right Ankle"},{"euler":{"heading":188.75,"pitch":-159.625,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":272.625,"pitch":-108.125,"roll":38.4375},"location":"Right Knee"},{"euler":{"heading":8.875,"pitch":-132.0,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.9"} +{"sensors":[{"euler":{"heading":65.25,"pitch":121.875,"roll":26.875},"location":"Left Knee"},{"euler":{"heading":15.4375,"pitch":90.4375,"roll":-8.8125},"location":"Left Ankle"},{"euler":{"heading":36.0,"pitch":-13.4375,"roll":-42.375},"location":"Right Ankle"},{"euler":{"heading":192.75,"pitch":-154.25,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":274.125,"pitch":-105.0,"roll":38.125},"location":"Right Knee"},{"euler":{"heading":12.75,"pitch":-139.5,"roll":58.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.110"} +{"sensors":[{"euler":{"heading":70.75,"pitch":117.375,"roll":24.375},"location":"Left Knee"},{"euler":{"heading":22.875,"pitch":93.125,"roll":-3.125},"location":"Left Ankle"},{"euler":{"heading":55.4375,"pitch":-25.125,"roll":-35.125},"location":"Right Ankle"},{"euler":{"heading":192.3125,"pitch":-154.0625,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":257.25,"pitch":-104.25,"roll":54.6875},"location":"Right Knee"},{"euler":{"heading":16.4375,"pitch":-146.0,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.211"} +{"sensors":[{"euler":{"heading":77.0625,"pitch":114.25,"roll":20.125},"location":"Left Knee"},{"euler":{"heading":26.75,"pitch":94.375,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":-38.4375,"roll":-19.625},"location":"Right Ankle"},{"euler":{"heading":139.0,"pitch":-159.0625,"roll":40.5625},"location":"Right Hip"},{"euler":{"heading":244.0625,"pitch":-109.25,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":18.0625,"pitch":-150.5625,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.312"} +{"sensors":[{"euler":{"heading":83.4375,"pitch":113.125,"roll":14.3125},"location":"Left Knee"},{"euler":{"heading":31.75,"pitch":94.375,"roll":6.6875},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":-41.25,"roll":-7.875},"location":"Right Ankle"},{"euler":{"heading":174.375,"pitch":-162.25,"roll":44.375},"location":"Right Hip"},{"euler":{"heading":229.6875,"pitch":179.9375,"roll":83.875},"location":"Right Knee"},{"euler":{"heading":19.0625,"pitch":-154.0,"roll":63.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.412"} +{"sensors":[{"euler":{"heading":90.9375,"pitch":112.5,"roll":6.8125},"location":"Left Knee"},{"euler":{"heading":40.3125,"pitch":94.5,"roll":16.25},"location":"Left Ankle"},{"euler":{"heading":90.625,"pitch":-38.625,"roll":-12.5},"location":"Right Ankle"},{"euler":{"heading":168.4375,"pitch":-164.25,"roll":47.6875},"location":"Right Hip"},{"euler":{"heading":225.125,"pitch":-179.625,"roll":83.4375},"location":"Right Knee"},{"euler":{"heading":22.0,"pitch":-159.5625,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.514"} +{"sensors":[{"euler":{"heading":106.0625,"pitch":114.625,"roll":-7.0625},"location":"Left Knee"},{"euler":{"heading":52.625,"pitch":92.25,"roll":34.3125},"location":"Left Ankle"},{"euler":{"heading":83.875,"pitch":-35.75,"roll":-18.4375},"location":"Right Ankle"},{"euler":{"heading":174.625,"pitch":-162.75,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":228.25,"pitch":-144.9375,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":0.0625,"pitch":-144.5,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.614"} +{"sensors":[{"euler":{"heading":113.875,"pitch":113.125,"roll":-9.8125},"location":"Left Knee"},{"euler":{"heading":57.0,"pitch":87.625,"roll":41.5},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":-32.5625,"roll":-21.875},"location":"Right Ankle"},{"euler":{"heading":171.125,"pitch":-163.4375,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":228.4375,"pitch":-138.8125,"roll":74.0625},"location":"Right Knee"},{"euler":{"heading":2.875,"pitch":-122.3125,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.715"} +{"sensors":[{"euler":{"heading":99.5,"pitch":122.125,"roll":2.375},"location":"Left Knee"},{"euler":{"heading":41.375,"pitch":78.5,"roll":20.875},"location":"Left Ankle"},{"euler":{"heading":78.375,"pitch":-28.9375,"roll":-25.3125},"location":"Right Ankle"},{"euler":{"heading":174.9375,"pitch":-161.25,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":229.8125,"pitch":-134.8125,"roll":69.625},"location":"Right Knee"},{"euler":{"heading":356.625,"pitch":-118.6875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.819"} +{"sensors":[{"euler":{"heading":60.8125,"pitch":133.0,"roll":23.0625},"location":"Left Knee"},{"euler":{"heading":15.0,"pitch":78.75,"roll":-6.75},"location":"Left Ankle"},{"euler":{"heading":74.5625,"pitch":-26.0625,"roll":-29.625},"location":"Right Ankle"},{"euler":{"heading":176.1875,"pitch":-161.3125,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":233.6875,"pitch":-129.375,"roll":65.1875},"location":"Right Knee"},{"euler":{"heading":355.1875,"pitch":-116.1875,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:49.921"} +{"sensors":[{"euler":{"heading":46.75,"pitch":138.375,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":353.75,"pitch":64.0,"roll":-27.4375},"location":"Left Ankle"},{"euler":{"heading":68.375,"pitch":-21.625,"roll":-34.6875},"location":"Right Ankle"},{"euler":{"heading":178.0625,"pitch":-162.125,"roll":59.9375},"location":"Right Hip"},{"euler":{"heading":241.6875,"pitch":-123.375,"roll":58.1875},"location":"Right Knee"},{"euler":{"heading":2.0625,"pitch":-122.125,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.22"} +{"sensors":[{"euler":{"heading":55.4375,"pitch":132.25,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":356.3125,"pitch":87.5625,"roll":-24.1875},"location":"Left Ankle"},{"euler":{"heading":56.8125,"pitch":-18.5,"roll":-39.875},"location":"Right Ankle"},{"euler":{"heading":180.625,"pitch":-164.375,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":255.3125,"pitch":-116.0,"roll":49.9375},"location":"Right Knee"},{"euler":{"heading":6.6875,"pitch":-124.9375,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.122"} +{"sensors":[{"euler":{"heading":60.5,"pitch":126.5,"roll":30.5625},"location":"Left Knee"},{"euler":{"heading":9.875,"pitch":89.375,"roll":-13.125},"location":"Left Ankle"},{"euler":{"heading":37.5625,"pitch":-9.8125,"roll":-43.8125},"location":"Right Ankle"},{"euler":{"heading":187.125,"pitch":-160.0625,"roll":57.0625},"location":"Right Hip"},{"euler":{"heading":271.5,"pitch":-107.125,"roll":38.9375},"location":"Right Knee"},{"euler":{"heading":6.4375,"pitch":-127.1875,"roll":55.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.223"} +{"sensors":[{"euler":{"heading":64.8125,"pitch":122.625,"roll":27.375},"location":"Left Knee"},{"euler":{"heading":14.625,"pitch":90.125,"roll":-9.1875},"location":"Left Ankle"},{"euler":{"heading":32.375,"pitch":-9.0,"roll":-42.4375},"location":"Right Ankle"},{"euler":{"heading":191.625,"pitch":-153.6875,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":270.4375,"pitch":-103.875,"roll":38.25},"location":"Right Knee"},{"euler":{"heading":8.375,"pitch":-134.5625,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.324"} +{"sensors":[{"euler":{"heading":69.1875,"pitch":118.4375,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":20.9375,"pitch":93.125,"roll":-4.8125},"location":"Left Ankle"},{"euler":{"heading":51.0,"pitch":-24.875,"roll":-35.5},"location":"Right Ankle"},{"euler":{"heading":191.125,"pitch":-153.5625,"roll":44.6875},"location":"Right Hip"},{"euler":{"heading":257.5,"pitch":-102.75,"roll":54.5},"location":"Right Knee"},{"euler":{"heading":11.75,"pitch":-138.6875,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.425"} +{"sensors":[{"euler":{"heading":74.6875,"pitch":115.125,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":25.0625,"pitch":94.5625,"roll":-1.1875},"location":"Left Ankle"},{"euler":{"heading":75.5625,"pitch":-39.0,"roll":-21.4375},"location":"Right Ankle"},{"euler":{"heading":186.6875,"pitch":-156.5,"roll":41.8125},"location":"Right Hip"},{"euler":{"heading":242.5625,"pitch":-107.0,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":14.3125,"pitch":-143.875,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.525"} +{"sensors":[{"euler":{"heading":80.875,"pitch":112.5625,"roll":17.0},"location":"Left Knee"},{"euler":{"heading":29.25,"pitch":95.25,"roll":3.5625},"location":"Left Ankle"},{"euler":{"heading":92.9375,"pitch":-40.5625,"roll":-10.875},"location":"Right Ankle"},{"euler":{"heading":177.625,"pitch":-159.9375,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":226.75,"pitch":179.0,"roll":83.3125},"location":"Right Knee"},{"euler":{"heading":17.0,"pitch":-148.125,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.625"} +{"sensors":[{"euler":{"heading":87.25,"pitch":111.375,"roll":10.625},"location":"Left Knee"},{"euler":{"heading":37.0625,"pitch":95.5,"roll":12.0},"location":"Left Ankle"},{"euler":{"heading":92.4375,"pitch":-36.875,"roll":-12.625},"location":"Right Ankle"},{"euler":{"heading":166.0625,"pitch":-164.375,"roll":47.25},"location":"Right Hip"},{"euler":{"heading":220.6875,"pitch":177.6875,"roll":83.5},"location":"Right Knee"},{"euler":{"heading":18.25,"pitch":-153.125,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.728"} +{"sensors":[{"euler":{"heading":98.875,"pitch":114.0,"roll":-1.3125},"location":"Left Knee"},{"euler":{"heading":46.4375,"pitch":89.625,"roll":26.875},"location":"Left Ankle"},{"euler":{"heading":87.1875,"pitch":-35.375,"roll":-19.25},"location":"Right Ankle"},{"euler":{"heading":171.0,"pitch":-162.8125,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":223.25,"pitch":-157.5625,"roll":80.375},"location":"Right Knee"},{"euler":{"heading":15.9375,"pitch":-147.75,"roll":63.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.828"} +{"sensors":[{"euler":{"heading":112.125,"pitch":113.4375,"roll":-9.125},"location":"Left Knee"},{"euler":{"heading":59.6875,"pitch":89.25,"roll":41.5625},"location":"Left Ankle"},{"euler":{"heading":81.9375,"pitch":-35.0625,"roll":-21.75},"location":"Right Ankle"},{"euler":{"heading":169.1875,"pitch":-164.75,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":228.1875,"pitch":-143.6875,"roll":73.4375},"location":"Right Knee"},{"euler":{"heading":3.875,"pitch":-125.75,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:50.929"} +{"sensors":[{"euler":{"heading":107.0,"pitch":119.75,"roll":-3.125},"location":"Left Knee"},{"euler":{"heading":49.1875,"pitch":82.625,"roll":27.625},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":-34.8125,"roll":-24.5625},"location":"Right Ankle"},{"euler":{"heading":173.3125,"pitch":-163.5625,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":233.6875,"pitch":-136.1875,"roll":69.0},"location":"Right Knee"},{"euler":{"heading":356.8125,"pitch":-119.625,"roll":52.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.31"} +{"sensors":[{"euler":{"heading":74.8125,"pitch":129.5,"roll":15.9375},"location":"Left Knee"},{"euler":{"heading":22.9375,"pitch":80.1875,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":77.5625,"pitch":-33.3125,"roll":-27.9375},"location":"Right Ankle"},{"euler":{"heading":176.9375,"pitch":-163.25,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":238.875,"pitch":-129.625,"roll":65.1875},"location":"Right Knee"},{"euler":{"heading":356.625,"pitch":-116.9375,"roll":50.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.131"} +{"sensors":[{"euler":{"heading":49.375,"pitch":137.625,"roll":31.0625},"location":"Left Knee"},{"euler":{"heading":357.75,"pitch":79.875,"roll":-22.1875},"location":"Left Ankle"},{"euler":{"heading":71.8125,"pitch":-28.4375,"roll":-32.875},"location":"Right Ankle"},{"euler":{"heading":178.4375,"pitch":-163.5,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":241.6875,"pitch":-124.6875,"roll":60.6875},"location":"Right Knee"},{"euler":{"heading":0.3125,"pitch":-120.0,"roll":51.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.232"} +{"sensors":[{"euler":{"heading":50.75,"pitch":135.9375,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":356.375,"pitch":85.0625,"roll":-23.875},"location":"Left Ankle"},{"euler":{"heading":62.8125,"pitch":-23.3125,"roll":-38.375},"location":"Right Ankle"},{"euler":{"heading":180.125,"pitch":-165.4375,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":249.375,"pitch":-116.375,"roll":54.0625},"location":"Right Knee"},{"euler":{"heading":4.9375,"pitch":-125.125,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.333"} +{"sensors":[{"euler":{"heading":61.4375,"pitch":127.9375,"roll":30.125},"location":"Left Knee"},{"euler":{"heading":9.0,"pitch":89.3125,"roll":-14.0625},"location":"Left Ankle"},{"euler":{"heading":44.4375,"pitch":-15.5625,"roll":-42.625},"location":"Right Ankle"},{"euler":{"heading":186.0,"pitch":-161.4375,"roll":58.4375},"location":"Right Hip"},{"euler":{"heading":266.0625,"pitch":-108.8125,"roll":42.375},"location":"Right Knee"},{"euler":{"heading":4.6875,"pitch":-125.1875,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.433"} +{"sensors":[{"euler":{"heading":67.1875,"pitch":122.25,"roll":27.3125},"location":"Left Knee"},{"euler":{"heading":14.75,"pitch":90.375,"roll":-8.125},"location":"Left Ankle"},{"euler":{"heading":29.9375,"pitch":-11.5,"roll":-44.5},"location":"Right Ankle"},{"euler":{"heading":190.375,"pitch":-155.1875,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":272.9375,"pitch":-104.375,"roll":36.6875},"location":"Right Knee"},{"euler":{"heading":8.125,"pitch":-131.0,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.534"} +{"sensors":[{"euler":{"heading":70.5,"pitch":118.3125,"roll":25.125},"location":"Left Knee"},{"euler":{"heading":26.25,"pitch":93.5,"roll":1.1875},"location":"Left Ankle"},{"euler":{"heading":44.0,"pitch":-22.8125,"roll":-40.9375},"location":"Right Ankle"},{"euler":{"heading":191.4375,"pitch":-154.25,"roll":45.3125},"location":"Right Hip"},{"euler":{"heading":261.9375,"pitch":-102.5,"roll":51.5},"location":"Right Knee"},{"euler":{"heading":11.8125,"pitch":-139.125,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.636"} +{"sensors":[{"euler":{"heading":74.875,"pitch":116.0,"roll":21.75},"location":"Left Knee"},{"euler":{"heading":30.3125,"pitch":93.5625,"roll":4.4375},"location":"Left Ankle"},{"euler":{"heading":70.5,"pitch":-39.0,"roll":-25.5},"location":"Right Ankle"},{"euler":{"heading":186.9375,"pitch":-156.625,"roll":42.625},"location":"Right Hip"},{"euler":{"heading":247.125,"pitch":-102.625,"roll":68.5},"location":"Right Knee"},{"euler":{"heading":13.125,"pitch":-144.5625,"roll":61.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.736"} +{"sensors":[{"euler":{"heading":80.6875,"pitch":113.4375,"roll":17.25},"location":"Left Knee"},{"euler":{"heading":33.875,"pitch":93.625,"roll":9.25},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":-43.6875,"roll":-10.0625},"location":"Right Ankle"},{"euler":{"heading":177.9375,"pitch":-160.625,"roll":43.6875},"location":"Right Hip"},{"euler":{"heading":230.25,"pitch":-179.0,"roll":84.4375},"location":"Right Knee"},{"euler":{"heading":15.0625,"pitch":-149.1875,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.838"} +{"sensors":[{"euler":{"heading":86.8125,"pitch":111.75,"roll":11.25},"location":"Left Knee"},{"euler":{"heading":41.5,"pitch":93.6875,"roll":17.5},"location":"Left Ankle"},{"euler":{"heading":91.75,"pitch":-38.9375,"roll":-12.0625},"location":"Right Ankle"},{"euler":{"heading":167.875,"pitch":-164.6875,"roll":46.3125},"location":"Right Hip"},{"euler":{"heading":222.5,"pitch":178.3125,"roll":85.1875},"location":"Right Knee"},{"euler":{"heading":17.6875,"pitch":-153.875,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:51.939"} +{"sensors":[{"euler":{"heading":98.75,"pitch":112.0,"roll":-0.5625},"location":"Left Knee"},{"euler":{"heading":50.4375,"pitch":87.875,"roll":30.0625},"location":"Left Ankle"},{"euler":{"heading":84.9375,"pitch":-35.125,"roll":-19.5},"location":"Right Ankle"},{"euler":{"heading":169.9375,"pitch":-163.875,"roll":48.6875},"location":"Right Hip"},{"euler":{"heading":222.25,"pitch":-145.5625,"roll":81.875},"location":"Right Knee"},{"euler":{"heading":15.625,"pitch":-147.25,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.40"} +{"sensors":[{"euler":{"heading":112.4375,"pitch":113.1875,"roll":-9.1875},"location":"Left Knee"},{"euler":{"heading":63.25,"pitch":87.3125,"roll":44.625},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":-33.6875,"roll":-21.8125},"location":"Right Ankle"},{"euler":{"heading":168.625,"pitch":-165.5625,"roll":52.8125},"location":"Right Hip"},{"euler":{"heading":225.6875,"pitch":-136.25,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":0.5,"pitch":-122.875,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.142"} +{"sensors":[{"euler":{"heading":108.5625,"pitch":119.75,"roll":-2.4375},"location":"Left Knee"},{"euler":{"heading":49.0625,"pitch":80.8125,"roll":28.125},"location":"Left Ankle"},{"euler":{"heading":79.4375,"pitch":-30.875,"roll":-25.8125},"location":"Right Ankle"},{"euler":{"heading":173.0,"pitch":-163.3125,"roll":56.5625},"location":"Right Hip"},{"euler":{"heading":228.25,"pitch":-132.1875,"roll":71.0625},"location":"Right Knee"},{"euler":{"heading":356.4375,"pitch":-118.625,"roll":52.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.243"} +{"sensors":[{"euler":{"heading":72.0625,"pitch":129.9375,"roll":17.875},"location":"Left Knee"},{"euler":{"heading":18.9375,"pitch":78.1875,"roll":-0.6875},"location":"Left Ankle"},{"euler":{"heading":75.375,"pitch":-26.9375,"roll":-29.75},"location":"Right Ankle"},{"euler":{"heading":177.25,"pitch":-161.6875,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":231.9375,"pitch":-126.3125,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":356.4375,"pitch":-116.6875,"roll":50.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.343"} +{"sensors":[{"euler":{"heading":46.25,"pitch":138.1875,"roll":32.3125},"location":"Left Knee"},{"euler":{"heading":354.5625,"pitch":76.9375,"roll":-24.125},"location":"Left Ankle"},{"euler":{"heading":68.6875,"pitch":-22.0,"roll":-34.125},"location":"Right Ankle"},{"euler":{"heading":178.0625,"pitch":-162.25,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":237.0,"pitch":-121.6875,"roll":61.1875},"location":"Right Knee"},{"euler":{"heading":0.1875,"pitch":-121.3125,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.444"} +{"sensors":[{"euler":{"heading":52.125,"pitch":136.5625,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":355.875,"pitch":82.6875,"roll":-22.8125},"location":"Left Ankle"},{"euler":{"heading":57.25,"pitch":-17.625,"roll":-39.375},"location":"Right Ankle"},{"euler":{"heading":180.5625,"pitch":-163.875,"roll":59.0},"location":"Right Hip"},{"euler":{"heading":248.4375,"pitch":-114.9375,"roll":52.625},"location":"Right Knee"},{"euler":{"heading":4.3125,"pitch":-125.3125,"roll":53.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.544"} +{"sensors":[{"euler":{"heading":58.875,"pitch":129.1875,"roll":30.3125},"location":"Left Knee"},{"euler":{"heading":7.125,"pitch":85.75,"roll":-15.125},"location":"Left Ankle"},{"euler":{"heading":40.1875,"pitch":-10.4375,"roll":-41.75},"location":"Right Ankle"},{"euler":{"heading":187.5,"pitch":-159.875,"roll":55.8125},"location":"Right Hip"},{"euler":{"heading":266.5,"pitch":-106.5625,"roll":40.5625},"location":"Right Knee"},{"euler":{"heading":4.0625,"pitch":-127.4375,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.646"} +{"sensors":[{"euler":{"heading":62.75,"pitch":125.375,"roll":27.0625},"location":"Left Knee"},{"euler":{"heading":11.8125,"pitch":85.3125,"roll":-9.375},"location":"Left Ankle"},{"euler":{"heading":37.125,"pitch":-14.3125,"roll":-40.25},"location":"Right Ankle"},{"euler":{"heading":191.8125,"pitch":-154.1875,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":269.0,"pitch":-102.3125,"roll":39.0625},"location":"Right Knee"},{"euler":{"heading":6.625,"pitch":-133.5625,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.746"} +{"sensors":[{"euler":{"heading":67.1875,"pitch":122.3125,"roll":24.25},"location":"Left Knee"},{"euler":{"heading":25.1875,"pitch":89.0,"roll":0.25},"location":"Left Ankle"},{"euler":{"heading":53.1875,"pitch":-27.0,"roll":-33.8125},"location":"Right Ankle"},{"euler":{"heading":189.4375,"pitch":-154.875,"roll":44.0},"location":"Right Hip"},{"euler":{"heading":254.4375,"pitch":-101.9375,"roll":55.5625},"location":"Right Knee"},{"euler":{"heading":9.5625,"pitch":-139.1875,"roll":60.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.847"} +{"sensors":[{"euler":{"heading":71.625,"pitch":119.875,"roll":20.9375},"location":"Left Knee"},{"euler":{"heading":26.5625,"pitch":87.25,"roll":3.1875},"location":"Left Ankle"},{"euler":{"heading":76.5,"pitch":-37.4375,"roll":-21.3125},"location":"Right Ankle"},{"euler":{"heading":186.25,"pitch":-157.25,"roll":41.625},"location":"Right Hip"},{"euler":{"heading":239.8125,"pitch":-103.875,"roll":73.375},"location":"Right Knee"},{"euler":{"heading":11.0,"pitch":-144.8125,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:52.947"} +{"sensors":[{"euler":{"heading":78.125,"pitch":116.6875,"roll":16.625},"location":"Left Knee"},{"euler":{"heading":30.875,"pitch":88.3125,"roll":8.0625},"location":"Left Ankle"},{"euler":{"heading":93.4375,"pitch":-39.25,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":175.5625,"pitch":-161.625,"roll":43.5},"location":"Right Hip"},{"euler":{"heading":223.75,"pitch":179.5,"roll":83.75},"location":"Right Knee"},{"euler":{"heading":14.5625,"pitch":-149.9375,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.47"} +{"sensors":[{"euler":{"heading":83.9375,"pitch":113.875,"roll":11.125},"location":"Left Knee"},{"euler":{"heading":39.3125,"pitch":90.0625,"roll":16.0},"location":"Left Ankle"},{"euler":{"heading":92.6875,"pitch":-36.75,"roll":-12.375},"location":"Right Ankle"},{"euler":{"heading":163.9375,"pitch":-165.6875,"roll":46.625},"location":"Right Hip"},{"euler":{"heading":217.875,"pitch":177.0,"roll":83.625},"location":"Right Knee"},{"euler":{"heading":17.0625,"pitch":-155.8125,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.148"} +{"sensors":[{"euler":{"heading":97.8125,"pitch":114.6875,"roll":-0.5625},"location":"Left Knee"},{"euler":{"heading":45.4375,"pitch":86.375,"roll":27.6875},"location":"Left Ankle"},{"euler":{"heading":86.5625,"pitch":-34.5,"roll":-20.0625},"location":"Right Ankle"},{"euler":{"heading":168.75,"pitch":-163.9375,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":220.1875,"pitch":-154.625,"roll":81.5},"location":"Right Knee"},{"euler":{"heading":17.25,"pitch":-152.875,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.249"} +{"sensors":[{"euler":{"heading":112.0625,"pitch":114.875,"roll":-8.75},"location":"Left Knee"},{"euler":{"heading":58.25,"pitch":87.1875,"roll":41.9375},"location":"Left Ankle"},{"euler":{"heading":82.625,"pitch":-32.8125,"roll":-21.1875},"location":"Right Ankle"},{"euler":{"heading":166.4375,"pitch":-165.75,"roll":52.9375},"location":"Right Hip"},{"euler":{"heading":223.125,"pitch":-144.25,"roll":74.9375},"location":"Right Knee"},{"euler":{"heading":1.5625,"pitch":-127.9375,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.350"} +{"sensors":[{"euler":{"heading":107.3125,"pitch":120.75,"roll":-3.25},"location":"Left Knee"},{"euler":{"heading":46.5,"pitch":80.3125,"roll":27.625},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-30.375,"roll":-25.1875},"location":"Right Ankle"},{"euler":{"heading":170.3125,"pitch":-164.1875,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":226.375,"pitch":-136.375,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":355.75,"pitch":-119.5625,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.450"} +{"sensors":[{"euler":{"heading":74.625,"pitch":130.0,"roll":16.125},"location":"Left Knee"},{"euler":{"heading":19.4375,"pitch":77.3125,"roll":0.6875},"location":"Left Ankle"},{"euler":{"heading":77.6875,"pitch":-29.9375,"roll":-28.625},"location":"Right Ankle"},{"euler":{"heading":175.375,"pitch":-162.75,"roll":57.75},"location":"Right Hip"},{"euler":{"heading":231.5625,"pitch":-129.0,"roll":67.0},"location":"Right Knee"},{"euler":{"heading":355.0625,"pitch":-115.875,"roll":51.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.551"} +{"sensors":[{"euler":{"heading":45.5,"pitch":137.9375,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":356.625,"pitch":77.4375,"roll":-22.4375},"location":"Left Ankle"},{"euler":{"heading":72.5625,"pitch":-26.1875,"roll":-31.875},"location":"Right Ankle"},{"euler":{"heading":176.6875,"pitch":-163.75,"roll":58.875},"location":"Right Hip"},{"euler":{"heading":235.4375,"pitch":-124.5625,"roll":62.25},"location":"Right Knee"},{"euler":{"heading":358.625,"pitch":-118.0625,"roll":51.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.652"} +{"sensors":[{"euler":{"heading":45.1875,"pitch":138.875,"roll":35.125},"location":"Left Knee"},{"euler":{"heading":354.0,"pitch":82.8125,"roll":-25.75},"location":"Left Ankle"},{"euler":{"heading":64.0625,"pitch":-22.4375,"roll":-38.1875},"location":"Right Ankle"},{"euler":{"heading":180.375,"pitch":-164.875,"roll":59.875},"location":"Right Hip"},{"euler":{"heading":246.75,"pitch":-117.125,"roll":54.6875},"location":"Right Knee"},{"euler":{"heading":5.375,"pitch":-124.0,"roll":53.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.752"} +{"sensors":[{"euler":{"heading":54.4375,"pitch":130.8125,"roll":32.5625},"location":"Left Knee"},{"euler":{"heading":5.3125,"pitch":85.375,"roll":-16.0},"location":"Left Ankle"},{"euler":{"heading":46.6875,"pitch":-20.625,"roll":-42.4375},"location":"Right Ankle"},{"euler":{"heading":186.125,"pitch":-163.0,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":267.5625,"pitch":-108.3125,"roll":42.125},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":-125.0625,"roll":56.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.853"} +{"sensors":[{"euler":{"heading":61.0625,"pitch":125.1875,"roll":28.6875},"location":"Left Knee"},{"euler":{"heading":10.5,"pitch":85.8125,"roll":-11.0625},"location":"Left Ankle"},{"euler":{"heading":303.125,"pitch":-9.3125,"roll":-46.0},"location":"Right Ankle"},{"euler":{"heading":192.0625,"pitch":-156.0625,"roll":51.5625},"location":"Right Hip"},{"euler":{"heading":270.125,"pitch":-104.125,"roll":36.625},"location":"Right Knee"},{"euler":{"heading":9.4375,"pitch":-132.1875,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:53.953"} +{"sensors":[{"euler":{"heading":64.6875,"pitch":122.8125,"roll":25.375},"location":"Left Knee"},{"euler":{"heading":19.375,"pitch":87.875,"roll":-4.125},"location":"Left Ankle"},{"euler":{"heading":42.1875,"pitch":-15.3125,"roll":-41.375},"location":"Right Ankle"},{"euler":{"heading":193.625,"pitch":-154.5,"roll":45.125},"location":"Right Hip"},{"euler":{"heading":259.25,"pitch":-100.5,"roll":47.8125},"location":"Right Knee"},{"euler":{"heading":11.0625,"pitch":-138.625,"roll":60.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.54"} +{"sensors":[{"euler":{"heading":68.8125,"pitch":120.625,"roll":22.0625},"location":"Left Knee"},{"euler":{"heading":24.875,"pitch":87.6875,"roll":0.875},"location":"Left Ankle"},{"euler":{"heading":65.3125,"pitch":-31.625,"roll":-28.75},"location":"Right Ankle"},{"euler":{"heading":189.75,"pitch":-156.1875,"roll":41.75},"location":"Right Hip"},{"euler":{"heading":244.0625,"pitch":-100.0625,"roll":67.5},"location":"Right Knee"},{"euler":{"heading":13.6875,"pitch":-144.5,"roll":62.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.154"} +{"sensors":[{"euler":{"heading":74.5,"pitch":117.9375,"roll":18.1875},"location":"Left Knee"},{"euler":{"heading":28.4375,"pitch":87.375,"roll":4.9375},"location":"Left Ankle"},{"euler":{"heading":90.25,"pitch":-39.6875,"roll":-14.0625},"location":"Right Ankle"},{"euler":{"heading":179.8125,"pitch":-160.25,"roll":42.375},"location":"Right Hip"},{"euler":{"heading":227.6875,"pitch":-176.75,"roll":83.625},"location":"Right Knee"},{"euler":{"heading":17.0625,"pitch":-151.125,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.255"} +{"sensors":[{"euler":{"heading":81.6875,"pitch":116.1875,"roll":12.375},"location":"Left Knee"},{"euler":{"heading":35.1875,"pitch":87.875,"roll":12.0},"location":"Left Ankle"},{"euler":{"heading":96.875,"pitch":-42.5,"roll":-8.75},"location":"Right Ankle"},{"euler":{"heading":169.4375,"pitch":-163.1875,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":218.75,"pitch":143.75,"roll":80.875},"location":"Right Knee"},{"euler":{"heading":18.1875,"pitch":-156.1875,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.356"} +{"sensors":[{"euler":{"heading":92.4375,"pitch":115.25,"roll":3.0},"location":"Left Knee"},{"euler":{"heading":45.6875,"pitch":87.125,"roll":24.0},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":-37.0,"roll":-16.1875},"location":"Right Ankle"},{"euler":{"heading":169.5625,"pitch":-163.25,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":217.625,"pitch":-179.3125,"roll":82.875},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-156.1875,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.456"} +{"sensors":[{"euler":{"heading":109.5625,"pitch":116.0625,"roll":-7.8125},"location":"Left Knee"},{"euler":{"heading":61.3125,"pitch":91.4375,"roll":40.625},"location":"Left Ankle"},{"euler":{"heading":82.1875,"pitch":-34.1875,"roll":-21.4375},"location":"Right Ankle"},{"euler":{"heading":171.3125,"pitch":-162.375,"roll":50.8125},"location":"Right Hip"},{"euler":{"heading":220.4375,"pitch":-150.0625,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":5.375,"pitch":-134.8125,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.557"} +{"sensors":[{"euler":{"heading":113.9375,"pitch":115.5,"roll":-7.5},"location":"Left Knee"},{"euler":{"heading":54.0625,"pitch":83.75,"roll":36.875},"location":"Left Ankle"},{"euler":{"heading":80.25,"pitch":-34.0,"roll":-25.125},"location":"Right Ankle"},{"euler":{"heading":173.6875,"pitch":-161.5625,"roll":54.6875},"location":"Right Hip"},{"euler":{"heading":224.9375,"pitch":-141.8125,"roll":72.5625},"location":"Right Knee"},{"euler":{"heading":359.875,"pitch":-121.4375,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.658"} +{"sensors":[{"euler":{"heading":94.5,"pitch":124.125,"roll":7.375},"location":"Left Knee"},{"euler":{"heading":32.1875,"pitch":80.375,"roll":13.375},"location":"Left Ankle"},{"euler":{"heading":79.5,"pitch":-34.3125,"roll":-27.25},"location":"Right Ankle"},{"euler":{"heading":178.0,"pitch":-160.625,"roll":56.625},"location":"Right Hip"},{"euler":{"heading":230.625,"pitch":-133.9375,"roll":68.75},"location":"Right Knee"},{"euler":{"heading":356.3125,"pitch":-117.0,"roll":51.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.759"} +{"sensors":[{"euler":{"heading":56.0625,"pitch":134.75,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":3.75,"pitch":76.9375,"roll":-13.1875},"location":"Left Ankle"},{"euler":{"heading":75.0625,"pitch":-31.875,"roll":-30.75},"location":"Right Ankle"},{"euler":{"heading":179.6875,"pitch":-161.625,"roll":57.25},"location":"Right Hip"},{"euler":{"heading":235.1875,"pitch":-127.5,"roll":64.3125},"location":"Right Knee"},{"euler":{"heading":349.1875,"pitch":-123.625,"roll":48.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.859"} +{"sensors":[{"euler":{"heading":40.625,"pitch":140.625,"roll":35.4375},"location":"Left Knee"},{"euler":{"heading":351.6875,"pitch":75.5,"roll":-28.0625},"location":"Left Ankle"},{"euler":{"heading":67.3125,"pitch":-26.1875,"roll":-36.4375},"location":"Right Ankle"},{"euler":{"heading":180.4375,"pitch":-162.75,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":240.9375,"pitch":-121.125,"roll":58.4375},"location":"Right Knee"},{"euler":{"heading":1.9375,"pitch":-121.6875,"roll":53.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:54.960"} +{"sensors":[{"euler":{"heading":51.0625,"pitch":133.5,"roll":34.625},"location":"Left Knee"},{"euler":{"heading":358.8125,"pitch":83.0,"roll":-21.5625},"location":"Left Ankle"},{"euler":{"heading":55.25,"pitch":-21.125,"roll":-41.5},"location":"Right Ankle"},{"euler":{"heading":183.0625,"pitch":-164.8125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":254.5,"pitch":-113.9375,"roll":49.4375},"location":"Right Knee"},{"euler":{"heading":6.625,"pitch":-126.6875,"roll":55.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.61"} +{"sensors":[{"euler":{"heading":59.5,"pitch":126.875,"roll":30.5},"location":"Left Knee"},{"euler":{"heading":8.875,"pitch":85.5625,"roll":-12.5},"location":"Left Ankle"},{"euler":{"heading":306.75,"pitch":-8.1875,"roll":-47.6875},"location":"Right Ankle"},{"euler":{"heading":189.8125,"pitch":-158.4375,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":266.1875,"pitch":-106.5,"roll":39.4375},"location":"Right Knee"},{"euler":{"heading":7.25,"pitch":-128.375,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.162"} +{"sensors":[{"euler":{"heading":66.0625,"pitch":120.875,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":16.0625,"pitch":90.0,"roll":-7.5625},"location":"Left Ankle"},{"euler":{"heading":36.625,"pitch":-12.125,"roll":-43.8125},"location":"Right Ankle"},{"euler":{"heading":192.75,"pitch":-155.1875,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":264.0,"pitch":-102.875,"roll":42.0625},"location":"Right Knee"},{"euler":{"heading":11.0625,"pitch":-136.25,"roll":59.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.266"} +{"sensors":[{"euler":{"heading":70.0,"pitch":117.125,"roll":25.8125},"location":"Left Knee"},{"euler":{"heading":25.0,"pitch":93.1875,"roll":-1.4375},"location":"Left Ankle"},{"euler":{"heading":57.3125,"pitch":-30.9375,"roll":-34.625},"location":"Right Ankle"},{"euler":{"heading":190.125,"pitch":-156.1875,"roll":42.5},"location":"Right Hip"},{"euler":{"heading":253.0625,"pitch":-100.75,"roll":58.875},"location":"Right Knee"},{"euler":{"heading":14.5625,"pitch":-142.875,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.367"} +{"sensors":[{"euler":{"heading":75.9375,"pitch":114.0,"roll":21.875},"location":"Left Knee"},{"euler":{"heading":26.875,"pitch":92.6875,"roll":2.125},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":-40.875,"roll":-18.3125},"location":"Right Ankle"},{"euler":{"heading":180.375,"pitch":-160.8125,"roll":41.5},"location":"Right Hip"},{"euler":{"heading":233.75,"pitch":-116.125,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":17.125,"pitch":-148.5,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.468"} +{"sensors":[{"euler":{"heading":82.5625,"pitch":111.75,"roll":16.25},"location":"Left Knee"},{"euler":{"heading":32.0,"pitch":93.5625,"roll":7.9375},"location":"Left Ankle"},{"euler":{"heading":96.125,"pitch":-43.5,"roll":-7.9375},"location":"Right Ankle"},{"euler":{"heading":172.5,"pitch":-163.875,"roll":45.8125},"location":"Right Hip"},{"euler":{"heading":222.75,"pitch":177.875,"roll":83.6875},"location":"Right Knee"},{"euler":{"heading":19.3125,"pitch":-152.75,"roll":65.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.569"} +{"sensors":[{"euler":{"heading":90.75,"pitch":111.0625,"roll":8.375},"location":"Left Knee"},{"euler":{"heading":41.0,"pitch":93.3125,"roll":18.125},"location":"Left Ankle"},{"euler":{"heading":94.1875,"pitch":-38.0,"roll":-12.5},"location":"Right Ankle"},{"euler":{"heading":167.4375,"pitch":-165.5625,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":217.9375,"pitch":-179.4375,"roll":83.9375},"location":"Right Knee"},{"euler":{"heading":21.5625,"pitch":-156.6875,"roll":66.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.669"} +{"sensors":[{"euler":{"heading":104.375,"pitch":115.5,"roll":-4.375},"location":"Left Knee"},{"euler":{"heading":52.9375,"pitch":88.625,"roll":34.5625},"location":"Left Ankle"},{"euler":{"heading":84.8125,"pitch":-33.4375,"roll":-20.5625},"location":"Right Ankle"},{"euler":{"heading":171.5625,"pitch":-164.125,"roll":50.875},"location":"Right Hip"},{"euler":{"heading":219.125,"pitch":-144.0,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":14.1875,"pitch":-145.6875,"roll":63.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.770"} +{"sensors":[{"euler":{"heading":112.8125,"pitch":114.0625,"roll":-8.9375},"location":"Left Knee"},{"euler":{"heading":55.3125,"pitch":84.25,"roll":39.625},"location":"Left Ankle"},{"euler":{"heading":82.0,"pitch":-30.9375,"roll":-24.3125},"location":"Right Ankle"},{"euler":{"heading":168.875,"pitch":-165.0625,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":220.5625,"pitch":-140.75,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":4.0,"pitch":-124.3125,"roll":60.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.870"} +{"sensors":[{"euler":{"heading":101.3125,"pitch":121.5625,"roll":1.6875},"location":"Left Knee"},{"euler":{"heading":36.5,"pitch":80.0,"roll":17.5625},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-30.0,"roll":-27.875},"location":"Right Ankle"},{"euler":{"heading":172.375,"pitch":-164.1875,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":224.5625,"pitch":-133.75,"roll":69.375},"location":"Right Knee"},{"euler":{"heading":357.8125,"pitch":-119.0625,"roll":54.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:55.970"} +{"sensors":[{"euler":{"heading":67.8125,"pitch":131.5625,"roll":21.1875},"location":"Left Knee"},{"euler":{"heading":7.5,"pitch":79.5,"roll":-8.4375},"location":"Left Ankle"},{"euler":{"heading":76.5,"pitch":-28.0,"roll":-30.5},"location":"Right Ankle"},{"euler":{"heading":174.0,"pitch":-165.4375,"roll":59.25},"location":"Right Hip"},{"euler":{"heading":230.0,"pitch":-127.375,"roll":64.6875},"location":"Right Knee"},{"euler":{"heading":357.0625,"pitch":-115.9375,"roll":52.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.72"} +{"sensors":[{"euler":{"heading":48.5625,"pitch":138.375,"roll":33.4375},"location":"Left Knee"},{"euler":{"heading":350.8125,"pitch":78.1875,"roll":-27.4375},"location":"Left Ankle"},{"euler":{"heading":70.5,"pitch":-24.75,"roll":-35.375},"location":"Right Ankle"},{"euler":{"heading":176.125,"pitch":-167.25,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":237.6875,"pitch":-121.5625,"roll":58.6875},"location":"Right Knee"},{"euler":{"heading":3.875,"pitch":-121.75,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.176"} +{"sensors":[{"euler":{"heading":54.5,"pitch":133.0,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":358.4375,"pitch":84.8125,"roll":-19.875},"location":"Left Ankle"},{"euler":{"heading":58.1875,"pitch":-22.3125,"roll":-41.0},"location":"Right Ankle"},{"euler":{"heading":180.375,"pitch":-167.875,"roll":61.0625},"location":"Right Hip"},{"euler":{"heading":253.9375,"pitch":-113.125,"roll":48.75},"location":"Right Knee"},{"euler":{"heading":7.125,"pitch":-124.125,"roll":55.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.276"} +{"sensors":[{"euler":{"heading":62.5,"pitch":126.5625,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":7.4375,"pitch":87.875,"roll":-12.5},"location":"Left Ankle"},{"euler":{"heading":306.75,"pitch":-8.125,"roll":-46.4375},"location":"Right Ankle"},{"euler":{"heading":188.5625,"pitch":-159.9375,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":267.375,"pitch":-107.0625,"roll":37.875},"location":"Right Knee"},{"euler":{"heading":6.9375,"pitch":-125.6875,"roll":57.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.377"} +{"sensors":[{"euler":{"heading":66.8125,"pitch":120.875,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":13.8125,"pitch":91.25,"roll":-8.6875},"location":"Left Ankle"},{"euler":{"heading":35.25,"pitch":-9.375,"roll":-44.125},"location":"Right Ankle"},{"euler":{"heading":193.625,"pitch":-154.1875,"roll":48.8125},"location":"Right Hip"},{"euler":{"heading":267.375,"pitch":-102.625,"roll":39.0625},"location":"Right Knee"},{"euler":{"heading":11.8125,"pitch":-135.4375,"roll":59.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.477"} +{"sensors":[{"euler":{"heading":71.1875,"pitch":117.125,"roll":25.75},"location":"Left Knee"},{"euler":{"heading":22.5,"pitch":93.125,"roll":-2.1875},"location":"Left Ankle"},{"euler":{"heading":54.5625,"pitch":-28.6875,"roll":-35.625},"location":"Right Ankle"},{"euler":{"heading":192.4375,"pitch":-154.6875,"roll":43.3125},"location":"Right Hip"},{"euler":{"heading":254.9375,"pitch":-101.3125,"roll":55.0625},"location":"Right Knee"},{"euler":{"heading":14.6875,"pitch":-142.0625,"roll":61.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.578"} +{"sensors":[{"euler":{"heading":76.0625,"pitch":114.6875,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":25.0,"pitch":92.875,"roll":1.0625},"location":"Left Ankle"},{"euler":{"heading":83.25,"pitch":-40.625,"roll":-18.3125},"location":"Right Ankle"},{"euler":{"heading":185.375,"pitch":-158.125,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":235.6875,"pitch":-112.8125,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":17.5625,"pitch":-149.3125,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.679"} +{"sensors":[{"euler":{"heading":82.25,"pitch":112.3125,"roll":15.9375},"location":"Left Knee"},{"euler":{"heading":30.6875,"pitch":93.1875,"roll":7.3125},"location":"Left Ankle"},{"euler":{"heading":96.0625,"pitch":-42.375,"roll":-8.625},"location":"Right Ankle"},{"euler":{"heading":174.25,"pitch":-162.25,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":221.1875,"pitch":162.0625,"roll":81.75},"location":"Right Knee"},{"euler":{"heading":19.5,"pitch":-154.0625,"roll":64.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.779"} +{"sensors":[{"euler":{"heading":89.5625,"pitch":111.4375,"roll":9.5},"location":"Left Knee"},{"euler":{"heading":40.75,"pitch":93.75,"roll":17.8125},"location":"Left Ankle"},{"euler":{"heading":92.125,"pitch":-38.8125,"roll":-13.375},"location":"Right Ankle"},{"euler":{"heading":167.6875,"pitch":-165.5,"roll":47.75},"location":"Right Hip"},{"euler":{"heading":218.1875,"pitch":175.6875,"roll":82.0},"location":"Right Knee"},{"euler":{"heading":21.0,"pitch":-157.375,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.880"} +{"sensors":[{"euler":{"heading":103.0,"pitch":114.3125,"roll":-4.3125},"location":"Left Knee"},{"euler":{"heading":49.0625,"pitch":90.75,"roll":34.75},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":-34.5625,"roll":-22.125},"location":"Right Ankle"},{"euler":{"heading":172.9375,"pitch":-163.8125,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":219.625,"pitch":-154.9375,"roll":77.5625},"location":"Right Knee"},{"euler":{"heading":12.8125,"pitch":-143.0,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:56.982"} +{"sensors":[{"euler":{"heading":112.8125,"pitch":113.0625,"roll":-8.3125},"location":"Left Knee"},{"euler":{"heading":52.625,"pitch":87.125,"roll":39.4375},"location":"Left Ankle"},{"euler":{"heading":81.625,"pitch":-32.0,"roll":-24.1875},"location":"Right Ankle"},{"euler":{"heading":170.8125,"pitch":-164.4375,"roll":54.875},"location":"Right Hip"},{"euler":{"heading":220.875,"pitch":-145.375,"roll":73.625},"location":"Right Knee"},{"euler":{"heading":1.3125,"pitch":-120.1875,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.83"} +{"sensors":[{"euler":{"heading":99.6875,"pitch":121.6875,"roll":3.1875},"location":"Left Knee"},{"euler":{"heading":40.6875,"pitch":79.875,"roll":17.4375},"location":"Left Ankle"},{"euler":{"heading":80.75,"pitch":-31.375,"roll":-27.25},"location":"Right Ankle"},{"euler":{"heading":174.0,"pitch":-163.625,"roll":57.375},"location":"Right Hip"},{"euler":{"heading":225.375,"pitch":-137.0,"roll":70.0625},"location":"Right Knee"},{"euler":{"heading":354.9375,"pitch":-117.375,"roll":51.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.184"} +{"sensors":[{"euler":{"heading":64.6875,"pitch":131.875,"roll":23.25},"location":"Left Knee"},{"euler":{"heading":6.6875,"pitch":78.25,"roll":-9.8125},"location":"Left Ankle"},{"euler":{"heading":77.625,"pitch":-29.5625,"roll":-30.125},"location":"Right Ankle"},{"euler":{"heading":176.5625,"pitch":-164.0,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":229.8125,"pitch":-130.125,"roll":66.125},"location":"Right Knee"},{"euler":{"heading":355.75,"pitch":-115.75,"roll":51.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.285"} +{"sensors":[{"euler":{"heading":46.75,"pitch":138.3125,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":350.4375,"pitch":78.3125,"roll":-28.0625},"location":"Left Ankle"},{"euler":{"heading":71.3125,"pitch":-25.6875,"roll":-36.25},"location":"Right Ankle"},{"euler":{"heading":178.8125,"pitch":-164.9375,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":236.875,"pitch":-123.8125,"roll":60.25},"location":"Right Knee"},{"euler":{"heading":2.8125,"pitch":-121.4375,"roll":53.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.386"} +{"sensors":[{"euler":{"heading":55.25,"pitch":133.0625,"roll":33.625},"location":"Left Knee"},{"euler":{"heading":356.5,"pitch":84.4375,"roll":-21.5},"location":"Left Ankle"},{"euler":{"heading":59.75,"pitch":-20.625,"roll":-41.1875},"location":"Right Ankle"},{"euler":{"heading":182.0,"pitch":-166.625,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":248.8125,"pitch":-116.1875,"roll":52.125},"location":"Right Knee"},{"euler":{"heading":7.5625,"pitch":-124.1875,"roll":55.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.486"} +{"sensors":[{"euler":{"heading":61.5625,"pitch":126.5,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":7.25,"pitch":87.4375,"roll":-13.125},"location":"Left Ankle"},{"euler":{"heading":310.5,"pitch":-10.9375,"roll":-46.1875},"location":"Right Ankle"},{"euler":{"heading":191.625,"pitch":-159.6875,"roll":56.5},"location":"Right Hip"},{"euler":{"heading":264.6875,"pitch":-106.375,"roll":40.3125},"location":"Right Knee"},{"euler":{"heading":7.9375,"pitch":-127.4375,"roll":57.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.587"} +{"sensors":[{"euler":{"heading":67.5625,"pitch":120.5,"roll":28.0},"location":"Left Knee"},{"euler":{"heading":15.0625,"pitch":91.6875,"roll":-7.5625},"location":"Left Ankle"},{"euler":{"heading":34.5625,"pitch":-9.3125,"roll":-43.8125},"location":"Right Ankle"},{"euler":{"heading":194.3125,"pitch":-155.0,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":267.375,"pitch":-101.75,"roll":39.4375},"location":"Right Knee"},{"euler":{"heading":11.4375,"pitch":-133.0,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.687"} +{"sensors":[{"euler":{"heading":71.125,"pitch":117.0,"roll":25.6875},"location":"Left Knee"},{"euler":{"heading":28.875,"pitch":94.6875,"roll":2.3125},"location":"Left Ankle"},{"euler":{"heading":51.5,"pitch":-26.0,"roll":-38.0625},"location":"Right Ankle"},{"euler":{"heading":195.8125,"pitch":-154.3125,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":256.5625,"pitch":-100.4375,"roll":53.5625},"location":"Right Knee"},{"euler":{"heading":14.625,"pitch":-140.4375,"roll":62.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.787"} +{"sensors":[{"euler":{"heading":76.0,"pitch":114.6875,"roll":21.8125},"location":"Left Knee"},{"euler":{"heading":29.0625,"pitch":93.0625,"roll":4.8125},"location":"Left Ankle"},{"euler":{"heading":75.75,"pitch":-40.0,"roll":-22.6875},"location":"Right Ankle"},{"euler":{"heading":189.25,"pitch":-158.0625,"roll":40.625},"location":"Right Hip"},{"euler":{"heading":241.0625,"pitch":-109.125,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":16.125,"pitch":-146.6875,"roll":63.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.888"} +{"sensors":[{"euler":{"heading":82.75,"pitch":112.9375,"roll":16.0},"location":"Left Knee"},{"euler":{"heading":32.75,"pitch":92.3125,"roll":9.9375},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":-42.6875,"roll":-11.1875},"location":"Right Ankle"},{"euler":{"heading":179.875,"pitch":-160.4375,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":223.6875,"pitch":178.0625,"roll":83.1875},"location":"Right Knee"},{"euler":{"heading":17.4375,"pitch":-149.75,"roll":64.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:57.989"} +{"sensors":[{"euler":{"heading":89.75,"pitch":111.875,"roll":9.125},"location":"Left Knee"},{"euler":{"heading":42.3125,"pitch":93.0625,"roll":19.0},"location":"Left Ankle"},{"euler":{"heading":95.0625,"pitch":-40.375,"roll":-11.5625},"location":"Right Ankle"},{"euler":{"heading":169.875,"pitch":-164.1875,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":218.8125,"pitch":153.5,"roll":82.5},"location":"Right Knee"},{"euler":{"heading":19.375,"pitch":-155.6875,"roll":65.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.90"} +{"sensors":[{"euler":{"heading":101.8125,"pitch":113.5,"roll":-2.1875},"location":"Left Knee"},{"euler":{"heading":50.625,"pitch":89.6875,"roll":28.9375},"location":"Left Ankle"},{"euler":{"heading":87.5,"pitch":-35.75,"roll":-18.9375},"location":"Right Ankle"},{"euler":{"heading":174.0,"pitch":-162.8125,"roll":49.5625},"location":"Right Hip"},{"euler":{"heading":217.8125,"pitch":-160.5,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":18.5,"pitch":-154.1875,"roll":64.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.191"} +{"sensors":[{"euler":{"heading":114.9375,"pitch":109.8125,"roll":-9.5},"location":"Left Knee"},{"euler":{"heading":60.0625,"pitch":92.25,"roll":42.75},"location":"Left Ankle"},{"euler":{"heading":82.8125,"pitch":-32.9375,"roll":-24.0},"location":"Right Ankle"},{"euler":{"heading":174.25,"pitch":-163.0,"roll":53.9375},"location":"Right Hip"},{"euler":{"heading":220.1875,"pitch":-148.0,"roll":75.875},"location":"Right Knee"},{"euler":{"heading":7.0625,"pitch":-129.1875,"roll":60.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.292"} +{"sensors":[{"euler":{"heading":108.9375,"pitch":118.875,"roll":-1.3125},"location":"Left Knee"},{"euler":{"heading":45.1875,"pitch":81.875,"roll":27.6875},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":-32.1875,"roll":-27.625},"location":"Right Ankle"},{"euler":{"heading":177.5625,"pitch":-161.5,"roll":56.875},"location":"Right Hip"},{"euler":{"heading":224.8125,"pitch":-139.25,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":358.1875,"pitch":-120.8125,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.393"} +{"sensors":[{"euler":{"heading":72.6875,"pitch":129.6875,"roll":19.0},"location":"Left Knee"},{"euler":{"heading":20.0,"pitch":95.875,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":77.625,"pitch":-31.4375,"roll":-30.25},"location":"Right Ankle"},{"euler":{"heading":181.4375,"pitch":-161.4375,"roll":57.6875},"location":"Right Hip"},{"euler":{"heading":230.875,"pitch":-131.0,"roll":66.8125},"location":"Right Knee"},{"euler":{"heading":356.625,"pitch":-116.0625,"roll":51.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.493"} +{"sensors":[{"euler":{"heading":47.4375,"pitch":137.375,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":353.6875,"pitch":64.0,"roll":-24.625},"location":"Left Ankle"},{"euler":{"heading":72.3125,"pitch":-27.1875,"roll":-34.5625},"location":"Right Ankle"},{"euler":{"heading":183.0625,"pitch":-161.625,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":235.4375,"pitch":-125.375,"roll":61.75},"location":"Right Knee"},{"euler":{"heading":1.6875,"pitch":-118.6875,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.594"} +{"sensors":[{"euler":{"heading":46.6875,"pitch":137.875,"roll":35.6875},"location":"Left Knee"},{"euler":{"heading":351.0,"pitch":82.5,"roll":-28.625},"location":"Left Ankle"},{"euler":{"heading":63.125,"pitch":-22.125,"roll":-40.5},"location":"Right Ankle"},{"euler":{"heading":183.5625,"pitch":-164.5,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":244.4375,"pitch":-118.625,"roll":54.8125},"location":"Right Knee"},{"euler":{"heading":5.625,"pitch":-122.1875,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.695"} +{"sensors":[{"euler":{"heading":53.9375,"pitch":130.0,"roll":33.6875},"location":"Left Knee"},{"euler":{"heading":3.5625,"pitch":85.25,"roll":-17.125},"location":"Left Ankle"},{"euler":{"heading":47.25,"pitch":-18.3125,"roll":-44.625},"location":"Right Ankle"},{"euler":{"heading":187.375,"pitch":-163.375,"roll":60.0},"location":"Right Hip"},{"euler":{"heading":264.375,"pitch":-109.375,"roll":42.9375},"location":"Right Knee"},{"euler":{"heading":6.4375,"pitch":-123.4375,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.796"} +{"sensors":[{"euler":{"heading":59.9375,"pitch":125.875,"roll":29.3125},"location":"Left Knee"},{"euler":{"heading":9.4375,"pitch":85.3125,"roll":-12.0},"location":"Left Ankle"},{"euler":{"heading":34.3125,"pitch":-9.1875,"roll":-44.4375},"location":"Right Ankle"},{"euler":{"heading":191.9375,"pitch":-156.125,"roll":53.0},"location":"Right Hip"},{"euler":{"heading":266.25,"pitch":-104.9375,"roll":37.25},"location":"Right Knee"},{"euler":{"heading":8.5625,"pitch":-129.625,"roll":59.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.897"} +{"sensors":[{"euler":{"heading":63.6875,"pitch":123.75,"roll":25.6875},"location":"Left Knee"},{"euler":{"heading":18.125,"pitch":87.3125,"roll":-5.1875},"location":"Left Ankle"},{"euler":{"heading":48.0625,"pitch":-19.1875,"roll":-40.125},"location":"Right Ankle"},{"euler":{"heading":196.4375,"pitch":-153.8125,"roll":45.6875},"location":"Right Hip"},{"euler":{"heading":255.3125,"pitch":-102.0625,"roll":48.25},"location":"Right Knee"},{"euler":{"heading":10.1875,"pitch":-135.375,"roll":61.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:58.998"} +{"sensors":[{"euler":{"heading":67.3125,"pitch":122.5625,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":23.3125,"pitch":86.9375,"roll":-0.125},"location":"Left Ankle"},{"euler":{"heading":71.625,"pitch":-34.0,"roll":-27.5625},"location":"Right Ankle"},{"euler":{"heading":194.0,"pitch":-155.4375,"roll":41.875},"location":"Right Hip"},{"euler":{"heading":240.125,"pitch":-102.8125,"roll":68.5625},"location":"Right Knee"},{"euler":{"heading":12.625,"pitch":-142.3125,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.99"} +{"sensors":[{"euler":{"heading":73.3125,"pitch":120.0625,"roll":18.0},"location":"Left Knee"},{"euler":{"heading":27.25,"pitch":86.5,"roll":3.8125},"location":"Left Ankle"},{"euler":{"heading":93.25,"pitch":-42.0625,"roll":-13.3125},"location":"Right Ankle"},{"euler":{"heading":186.125,"pitch":-159.0625,"roll":42.25},"location":"Right Hip"},{"euler":{"heading":227.4375,"pitch":-148.625,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":14.6875,"pitch":-147.125,"roll":64.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.200"} +{"sensors":[{"euler":{"heading":80.0,"pitch":117.4375,"roll":13.25},"location":"Left Knee"},{"euler":{"heading":33.3125,"pitch":86.5625,"roll":10.0},"location":"Left Ankle"},{"euler":{"heading":97.3125,"pitch":-43.75,"roll":-8.75},"location":"Right Ankle"},{"euler":{"heading":174.3125,"pitch":-162.3125,"roll":46.6875},"location":"Right Hip"},{"euler":{"heading":219.0625,"pitch":158.9375,"roll":81.5625},"location":"Right Knee"},{"euler":{"heading":16.25,"pitch":-153.1875,"roll":65.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.301"} +{"sensors":[{"euler":{"heading":88.6875,"pitch":116.75,"roll":5.6875},"location":"Left Knee"},{"euler":{"heading":41.9375,"pitch":85.8125,"roll":19.625},"location":"Left Ankle"},{"euler":{"heading":88.25,"pitch":-38.75,"roll":-15.875},"location":"Right Ankle"},{"euler":{"heading":171.0625,"pitch":-164.0625,"roll":47.625},"location":"Right Hip"},{"euler":{"heading":217.25,"pitch":-165.9375,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":19.375,"pitch":-158.8125,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.402"} +{"sensors":[{"euler":{"heading":107.25,"pitch":115.625,"roll":-6.1875},"location":"Left Knee"},{"euler":{"heading":54.8125,"pitch":90.125,"roll":35.25},"location":"Left Ankle"},{"euler":{"heading":84.3125,"pitch":-33.4375,"roll":-21.4375},"location":"Right Ankle"},{"euler":{"heading":170.9375,"pitch":-163.625,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":216.375,"pitch":-151.0,"roll":78.6875},"location":"Right Knee"},{"euler":{"heading":5.75,"pitch":-135.9375,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.503"} +{"sensors":[{"euler":{"heading":108.3125,"pitch":117.75,"roll":-3.5625},"location":"Left Knee"},{"euler":{"heading":45.375,"pitch":84.1875,"roll":29.75},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":-30.8125,"roll":-26.0},"location":"Right Ankle"},{"euler":{"heading":172.0625,"pitch":-163.0,"roll":55.4375},"location":"Right Hip"},{"euler":{"heading":217.375,"pitch":-144.25,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":356.875,"pitch":-120.625,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.604"} +{"sensors":[{"euler":{"heading":81.9375,"pitch":128.25,"roll":13.25},"location":"Left Knee"},{"euler":{"heading":25.125,"pitch":64.0,"roll":5.125},"location":"Left Ankle"},{"euler":{"heading":81.3125,"pitch":-29.6875,"roll":-28.25},"location":"Right Ankle"},{"euler":{"heading":176.4375,"pitch":-161.9375,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":222.1875,"pitch":-136.625,"roll":70.25},"location":"Right Knee"},{"euler":{"heading":354.1875,"pitch":-115.5,"roll":52.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.705"} +{"sensors":[{"euler":{"heading":49.5,"pitch":137.125,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":358.5625,"pitch":76.5,"roll":-18.5625},"location":"Left Ankle"},{"euler":{"heading":77.125,"pitch":-27.3125,"roll":-30.375},"location":"Right Ankle"},{"euler":{"heading":178.3125,"pitch":-163.125,"roll":58.8125},"location":"Right Hip"},{"euler":{"heading":227.8125,"pitch":-129.75,"roll":65.5},"location":"Right Knee"},{"euler":{"heading":356.6875,"pitch":-116.125,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.805"} +{"sensors":[{"euler":{"heading":45.1875,"pitch":140.8125,"roll":34.4375},"location":"Left Knee"},{"euler":{"heading":349.0,"pitch":78.25,"roll":-29.3125},"location":"Left Ankle"},{"euler":{"heading":70.5,"pitch":-23.9375,"roll":-37.125},"location":"Right Ankle"},{"euler":{"heading":180.625,"pitch":-164.3125,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":236.5625,"pitch":-123.0,"roll":58.9375},"location":"Right Knee"},{"euler":{"heading":3.375,"pitch":-123.0,"roll":53.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:23:59.906"} +{"sensors":[{"euler":{"heading":54.9375,"pitch":133.9375,"roll":32.4375},"location":"Left Knee"},{"euler":{"heading":357.9375,"pitch":83.9375,"roll":-20.375},"location":"Left Ankle"},{"euler":{"heading":55.0,"pitch":-20.375,"roll":-42.5625},"location":"Right Ankle"},{"euler":{"heading":184.9375,"pitch":-163.0625,"roll":60.625},"location":"Right Hip"},{"euler":{"heading":254.625,"pitch":-114.8125,"roll":47.9375},"location":"Right Knee"},{"euler":{"heading":3.6875,"pitch":-126.25,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.6"} +{"sensors":[{"euler":{"heading":61.5,"pitch":128.3125,"roll":28.875},"location":"Left Knee"},{"euler":{"heading":5.9375,"pitch":84.5,"roll":-13.3125},"location":"Left Ankle"},{"euler":{"heading":306.4375,"pitch":-12.625,"roll":-46.1875},"location":"Right Ankle"},{"euler":{"heading":192.875,"pitch":-155.25,"roll":53.25},"location":"Right Hip"},{"euler":{"heading":267.375,"pitch":-108.3125,"roll":37.8125},"location":"Right Knee"},{"euler":{"heading":4.125,"pitch":-127.9375,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.107"} +{"sensors":[{"euler":{"heading":66.5625,"pitch":123.75,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":11.3125,"pitch":86.4375,"roll":-9.3125},"location":"Left Ankle"},{"euler":{"heading":42.0625,"pitch":-16.625,"roll":-43.375},"location":"Right Ankle"},{"euler":{"heading":196.625,"pitch":-152.75,"roll":45.625},"location":"Right Hip"},{"euler":{"heading":261.125,"pitch":-106.1875,"roll":43.9375},"location":"Right Knee"},{"euler":{"heading":9.1875,"pitch":-136.625,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.208"} +{"sensors":[{"euler":{"heading":71.5625,"pitch":119.375,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":16.5625,"pitch":88.6875,"roll":-5.3125},"location":"Left Ankle"},{"euler":{"heading":63.6875,"pitch":-32.4375,"roll":-30.9375},"location":"Right Ankle"},{"euler":{"heading":193.0625,"pitch":-155.0,"roll":40.8125},"location":"Right Hip"},{"euler":{"heading":245.1875,"pitch":-103.8125,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":12.875,"pitch":-143.1875,"roll":62.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.310"} +{"sensors":[{"euler":{"heading":78.0,"pitch":115.5625,"roll":20.4375},"location":"Left Knee"},{"euler":{"heading":21.25,"pitch":90.9375,"roll":-0.5},"location":"Left Ankle"},{"euler":{"heading":84.1875,"pitch":-39.6875,"roll":-18.125},"location":"Right Ankle"},{"euler":{"heading":140.5625,"pitch":-157.875,"roll":39.9375},"location":"Right Hip"},{"euler":{"heading":230.6875,"pitch":-124.9375,"roll":79.25},"location":"Right Knee"},{"euler":{"heading":15.125,"pitch":-148.25,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.410"} +{"sensors":[{"euler":{"heading":84.75,"pitch":112.375,"roll":15.375},"location":"Left Knee"},{"euler":{"heading":27.875,"pitch":93.25,"roll":5.6875},"location":"Left Ankle"},{"euler":{"heading":96.75,"pitch":-42.75,"roll":-8.0625},"location":"Right Ankle"},{"euler":{"heading":176.0,"pitch":-162.125,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":219.625,"pitch":154.9375,"roll":82.4375},"location":"Right Knee"},{"euler":{"heading":19.5,"pitch":-155.1875,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.511"} +{"sensors":[{"euler":{"heading":92.5625,"pitch":111.4375,"roll":7.875},"location":"Left Knee"},{"euler":{"heading":35.6875,"pitch":92.6875,"roll":15.0},"location":"Left Ankle"},{"euler":{"heading":92.1875,"pitch":-38.5625,"roll":-13.875},"location":"Right Ankle"},{"euler":{"heading":169.9375,"pitch":-165.5,"roll":47.125},"location":"Right Hip"},{"euler":{"heading":217.125,"pitch":173.9375,"roll":81.6875},"location":"Right Knee"},{"euler":{"heading":23.75,"pitch":-161.625,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.611"} +{"sensors":[{"euler":{"heading":107.9375,"pitch":116.0,"roll":-5.8125},"location":"Left Knee"},{"euler":{"heading":48.9375,"pitch":88.8125,"roll":35.0625},"location":"Left Ankle"},{"euler":{"heading":85.5625,"pitch":-37.0625,"roll":-19.6875},"location":"Right Ankle"},{"euler":{"heading":173.3125,"pitch":-164.125,"roll":50.625},"location":"Right Hip"},{"euler":{"heading":219.25,"pitch":-154.5625,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":8.3125,"pitch":-144.0,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.712"} +{"sensors":[{"euler":{"heading":116.125,"pitch":115.3125,"roll":-10.125},"location":"Left Knee"},{"euler":{"heading":50.5625,"pitch":83.25,"roll":40.3125},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":-36.125,"roll":-23.1875},"location":"Right Ankle"},{"euler":{"heading":172.1875,"pitch":-165.0625,"roll":55.0},"location":"Right Hip"},{"euler":{"heading":223.0625,"pitch":-144.3125,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":358.3125,"pitch":-119.875,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.813"} +{"sensors":[{"euler":{"heading":103.625,"pitch":120.4375,"roll":2.4375},"location":"Left Knee"},{"euler":{"heading":38.625,"pitch":82.75,"roll":19.375},"location":"Left Ankle"},{"euler":{"heading":80.6875,"pitch":-36.25,"roll":-27.8125},"location":"Right Ankle"},{"euler":{"heading":176.9375,"pitch":-163.8125,"roll":57.125},"location":"Right Hip"},{"euler":{"heading":230.75,"pitch":-134.5,"roll":68.4375},"location":"Right Knee"},{"euler":{"heading":356.0,"pitch":-118.125,"roll":52.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:00.914"} +{"sensors":[{"euler":{"heading":65.6875,"pitch":132.25,"roll":22.5},"location":"Left Knee"},{"euler":{"heading":9.0,"pitch":78.375,"roll":-7.625},"location":"Left Ankle"},{"euler":{"heading":77.0625,"pitch":-35.5625,"roll":-28.0},"location":"Right Ankle"},{"euler":{"heading":179.6875,"pitch":-164.875,"roll":58.375},"location":"Right Hip"},{"euler":{"heading":237.125,"pitch":-127.5625,"roll":64.0625},"location":"Right Knee"},{"euler":{"heading":356.3125,"pitch":-115.5625,"roll":53.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.14"} +{"sensors":[{"euler":{"heading":48.125,"pitch":138.5,"roll":34.125},"location":"Left Knee"},{"euler":{"heading":350.4375,"pitch":77.875,"roll":-28.25},"location":"Left Ankle"},{"euler":{"heading":71.4375,"pitch":-31.3125,"roll":-33.5625},"location":"Right Ankle"},{"euler":{"heading":180.5,"pitch":-165.8125,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":241.4375,"pitch":-122.3125,"roll":59.0},"location":"Right Knee"},{"euler":{"heading":3.1875,"pitch":-121.3125,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.115"} +{"sensors":[{"euler":{"heading":54.0,"pitch":133.8125,"roll":34.0},"location":"Left Knee"},{"euler":{"heading":355.25,"pitch":83.0,"roll":-23.3125},"location":"Left Ankle"},{"euler":{"heading":61.1875,"pitch":-26.0625,"roll":-40.5},"location":"Right Ankle"},{"euler":{"heading":184.625,"pitch":-167.4375,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":254.5,"pitch":-114.3125,"roll":49.625},"location":"Right Knee"},{"euler":{"heading":6.75,"pitch":-122.5625,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.216"} +{"sensors":[{"euler":{"heading":60.1875,"pitch":127.4375,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":6.5625,"pitch":86.375,"roll":-13.875},"location":"Left Ankle"},{"euler":{"heading":313.125,"pitch":-11.875,"roll":-46.5},"location":"Right Ankle"},{"euler":{"heading":190.0625,"pitch":-160.1875,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":264.1875,"pitch":-108.5,"roll":39.8125},"location":"Right Knee"},{"euler":{"heading":6.25,"pitch":-124.875,"roll":58.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.317"} +{"sensors":[{"euler":{"heading":64.875,"pitch":123.25,"roll":27.625},"location":"Left Knee"},{"euler":{"heading":10.875,"pitch":86.6875,"roll":-10.3125},"location":"Left Ankle"},{"euler":{"heading":38.8125,"pitch":-13.6875,"roll":-44.5625},"location":"Right Ankle"},{"euler":{"heading":194.0,"pitch":-155.25,"roll":50.125},"location":"Right Hip"},{"euler":{"heading":267.8125,"pitch":-104.5625,"roll":38.8125},"location":"Right Knee"},{"euler":{"heading":10.8125,"pitch":-135.125,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.418"} +{"sensors":[{"euler":{"heading":69.25,"pitch":120.75,"roll":24.125},"location":"Left Knee"},{"euler":{"heading":16.3125,"pitch":87.0625,"roll":-5.5},"location":"Left Ankle"},{"euler":{"heading":55.625,"pitch":-28.3125,"roll":-36.75},"location":"Right Ankle"},{"euler":{"heading":194.4375,"pitch":-154.6875,"roll":44.5625},"location":"Right Hip"},{"euler":{"heading":253.375,"pitch":-104.125,"roll":54.75},"location":"Right Knee"},{"euler":{"heading":13.125,"pitch":-142.25,"roll":62.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.519"} +{"sensors":[{"euler":{"heading":75.3125,"pitch":117.625,"roll":20.5},"location":"Left Knee"},{"euler":{"heading":22.375,"pitch":88.6875,"roll":-0.0625},"location":"Left Ankle"},{"euler":{"heading":76.9375,"pitch":-37.625,"roll":-22.125},"location":"Right Ankle"},{"euler":{"heading":186.625,"pitch":-158.375,"roll":41.75},"location":"Right Hip"},{"euler":{"heading":234.375,"pitch":-113.1875,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":15.1875,"pitch":-150.375,"roll":63.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.620"} +{"sensors":[{"euler":{"heading":82.0625,"pitch":114.9375,"roll":15.375},"location":"Left Knee"},{"euler":{"heading":27.5,"pitch":89.125,"roll":5.25},"location":"Left Ankle"},{"euler":{"heading":94.3125,"pitch":-42.875,"roll":-10.375},"location":"Right Ankle"},{"euler":{"heading":177.3125,"pitch":-161.75,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":221.4375,"pitch":167.125,"roll":82.25},"location":"Right Knee"},{"euler":{"heading":18.4375,"pitch":-156.4375,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.721"} +{"sensors":[{"euler":{"heading":89.8125,"pitch":114.375,"roll":7.875},"location":"Left Knee"},{"euler":{"heading":36.1875,"pitch":88.8125,"roll":14.9375},"location":"Left Ankle"},{"euler":{"heading":95.375,"pitch":-41.0625,"roll":-11.1875},"location":"Right Ankle"},{"euler":{"heading":171.5625,"pitch":-163.3125,"roll":47.375},"location":"Right Hip"},{"euler":{"heading":216.3125,"pitch":158.375,"roll":81.25},"location":"Right Knee"},{"euler":{"heading":20.625,"pitch":-161.875,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.821"} +{"sensors":[{"euler":{"heading":104.1875,"pitch":116.625,"roll":-4.75},"location":"Left Knee"},{"euler":{"heading":50.0625,"pitch":85.9375,"roll":34.0},"location":"Left Ankle"},{"euler":{"heading":85.3125,"pitch":-35.6875,"roll":-19.9375},"location":"Right Ankle"},{"euler":{"heading":190.875,"pitch":-162.0625,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":217.75,"pitch":-162.125,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":14.75,"pitch":-149.0625,"roll":65.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:01.922"} +{"sensors":[{"euler":{"heading":114.9375,"pitch":114.75,"roll":-9.6875},"location":"Left Knee"},{"euler":{"heading":54.0625,"pitch":85.8125,"roll":41.375},"location":"Left Ankle"},{"euler":{"heading":81.0,"pitch":-33.0,"roll":-24.875},"location":"Right Ankle"},{"euler":{"heading":172.125,"pitch":-163.625,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":219.0,"pitch":-151.375,"roll":74.375},"location":"Right Knee"},{"euler":{"heading":1.9375,"pitch":-121.1875,"roll":60.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.24"} +{"sensors":[{"euler":{"heading":102.875,"pitch":122.6875,"roll":1.75},"location":"Left Knee"},{"euler":{"heading":41.25,"pitch":79.6875,"roll":22.375},"location":"Left Ankle"},{"euler":{"heading":78.125,"pitch":-33.375,"roll":-29.0},"location":"Right Ankle"},{"euler":{"heading":178.0,"pitch":-161.625,"roll":56.9375},"location":"Right Hip"},{"euler":{"heading":225.8125,"pitch":-139.4375,"roll":70.1875},"location":"Right Knee"},{"euler":{"heading":354.375,"pitch":-116.25,"roll":53.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.124"} +{"sensors":[{"euler":{"heading":68.125,"pitch":132.5625,"roll":22.0},"location":"Left Knee"},{"euler":{"heading":10.375,"pitch":78.0625,"roll":-5.3125},"location":"Left Ankle"},{"euler":{"heading":74.3125,"pitch":-31.3125,"roll":-30.125},"location":"Right Ankle"},{"euler":{"heading":182.3125,"pitch":-160.4375,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":231.0625,"pitch":-131.75,"roll":66.375},"location":"Right Knee"},{"euler":{"heading":355.75,"pitch":-115.75,"roll":52.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.225"} +{"sensors":[{"euler":{"heading":49.125,"pitch":139.0,"roll":33.25},"location":"Left Knee"},{"euler":{"heading":350.25,"pitch":77.375,"roll":-26.625},"location":"Left Ankle"},{"euler":{"heading":68.4375,"pitch":-26.9375,"roll":-34.375},"location":"Right Ankle"},{"euler":{"heading":185.1875,"pitch":-160.5,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":237.0,"pitch":-124.5,"roll":61.3125},"location":"Right Knee"},{"euler":{"heading":1.0625,"pitch":-120.8125,"roll":53.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.325"} +{"sensors":[{"euler":{"heading":51.3125,"pitch":137.3125,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":350.3125,"pitch":82.3125,"roll":-26.5625},"location":"Left Ankle"},{"euler":{"heading":59.6875,"pitch":-21.625,"roll":-41.375},"location":"Right Ankle"},{"euler":{"heading":185.875,"pitch":-162.75,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":245.9375,"pitch":-118.375,"roll":54.3125},"location":"Right Knee"},{"euler":{"heading":4.5625,"pitch":-122.9375,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.426"} +{"sensors":[{"euler":{"heading":61.6875,"pitch":128.1875,"roll":31.0},"location":"Left Knee"},{"euler":{"heading":3.375,"pitch":88.25,"roll":-15.0625},"location":"Left Ankle"},{"euler":{"heading":316.3125,"pitch":-19.375,"roll":-45.125},"location":"Right Ankle"},{"euler":{"heading":191.25,"pitch":-160.75,"roll":58.6875},"location":"Right Hip"},{"euler":{"heading":262.6875,"pitch":-110.8125,"roll":43.6875},"location":"Right Knee"},{"euler":{"heading":5.4375,"pitch":-125.75,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.527"} +{"sensors":[{"euler":{"heading":70.3125,"pitch":119.3125,"roll":29.875},"location":"Left Knee"},{"euler":{"heading":10.8125,"pitch":93.6875,"roll":-10.5625},"location":"Left Ankle"},{"euler":{"heading":304.6875,"pitch":-13.8125,"roll":-48.1875},"location":"Right Ankle"},{"euler":{"heading":197.3125,"pitch":-154.75,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":270.4375,"pitch":-106.0625,"roll":37.375},"location":"Right Knee"},{"euler":{"heading":12.9375,"pitch":-132.8125,"roll":60.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.627"} +{"sensors":[{"euler":{"heading":73.0,"pitch":116.625,"roll":26.625},"location":"Left Knee"},{"euler":{"heading":16.6875,"pitch":93.9375,"roll":-5.375},"location":"Left Ankle"},{"euler":{"heading":48.8125,"pitch":-25.6875,"roll":-41.9375},"location":"Right Ankle"},{"euler":{"heading":199.9375,"pitch":-153.5,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":259.375,"pitch":-103.9375,"roll":50.3125},"location":"Right Knee"},{"euler":{"heading":15.3125,"pitch":-141.9375,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.728"} +{"sensors":[{"euler":{"heading":77.25,"pitch":115.3125,"roll":22.375},"location":"Left Knee"},{"euler":{"heading":24.5,"pitch":94.0625,"roll":1.75},"location":"Left Ankle"},{"euler":{"heading":70.5625,"pitch":-36.3125,"roll":-27.8125},"location":"Right Ankle"},{"euler":{"heading":193.75,"pitch":-156.125,"roll":41.1875},"location":"Right Hip"},{"euler":{"heading":238.8125,"pitch":-107.8125,"roll":71.6875},"location":"Right Knee"},{"euler":{"heading":14.875,"pitch":-147.25,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.829"} +{"sensors":[{"euler":{"heading":82.625,"pitch":112.8125,"roll":18.1875},"location":"Left Knee"},{"euler":{"heading":29.0,"pitch":94.875,"roll":6.125},"location":"Left Ankle"},{"euler":{"heading":88.75,"pitch":-41.25,"roll":-13.875},"location":"Right Ankle"},{"euler":{"heading":180.9375,"pitch":-161.0,"roll":42.5625},"location":"Right Hip"},{"euler":{"heading":221.8125,"pitch":178.1875,"roll":81.8125},"location":"Right Knee"},{"euler":{"heading":16.3125,"pitch":-152.25,"roll":64.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:02.930"} +{"sensors":[{"euler":{"heading":87.75,"pitch":111.9375,"roll":12.5},"location":"Left Knee"},{"euler":{"heading":36.4375,"pitch":94.875,"roll":13.0625},"location":"Left Ankle"},{"euler":{"heading":97.5625,"pitch":-41.5,"roll":-9.625},"location":"Right Ankle"},{"euler":{"heading":168.5,"pitch":-165.75,"roll":46.125},"location":"Right Hip"},{"euler":{"heading":214.625,"pitch":145.125,"roll":80.625},"location":"Right Knee"},{"euler":{"heading":18.5,"pitch":-159.125,"roll":64.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.30"} +{"sensors":[{"euler":{"heading":98.8125,"pitch":113.875,"roll":-14.5},"location":"Left Knee"},{"euler":{"heading":45.1875,"pitch":89.0,"roll":26.375},"location":"Left Ankle"},{"euler":{"heading":87.8125,"pitch":-37.6875,"roll":-17.875},"location":"Right Ankle"},{"euler":{"heading":171.125,"pitch":-164.6875,"roll":47.875},"location":"Right Hip"},{"euler":{"heading":216.375,"pitch":-173.1875,"roll":80.75},"location":"Right Knee"},{"euler":{"heading":18.3125,"pitch":-156.0,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.131"} +{"sensors":[{"euler":{"heading":114.0,"pitch":113.75,"roll":-9.0},"location":"Left Knee"},{"euler":{"heading":59.375,"pitch":92.1875,"roll":41.875},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-36.8125,"roll":-22.5625},"location":"Right Ankle"},{"euler":{"heading":172.0,"pitch":-164.875,"roll":51.5},"location":"Right Hip"},{"euler":{"heading":221.4375,"pitch":-152.0625,"roll":75.0},"location":"Right Knee"},{"euler":{"heading":3.625,"pitch":-130.4375,"roll":61.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.232"} +{"sensors":[{"euler":{"heading":112.375,"pitch":118.9375,"roll":-4.5625},"location":"Left Knee"},{"euler":{"heading":47.75,"pitch":83.9375,"roll":29.625},"location":"Left Ankle"},{"euler":{"heading":79.8125,"pitch":-35.875,"roll":-25.4375},"location":"Right Ankle"},{"euler":{"heading":177.0625,"pitch":-163.125,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":226.6875,"pitch":-141.5,"roll":70.9375},"location":"Right Knee"},{"euler":{"heading":358.875,"pitch":-122.0625,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.333"} +{"sensors":[{"euler":{"heading":82.9375,"pitch":128.25,"roll":13.25},"location":"Left Knee"},{"euler":{"heading":22.375,"pitch":79.5625,"roll":5.5625},"location":"Left Ankle"},{"euler":{"heading":77.6875,"pitch":-36.0,"roll":-27.125},"location":"Right Ankle"},{"euler":{"heading":180.3125,"pitch":-163.25,"roll":57.5625},"location":"Right Hip"},{"euler":{"heading":232.6875,"pitch":-133.1875,"roll":67.375},"location":"Right Knee"},{"euler":{"heading":354.3125,"pitch":-118.1875,"roll":52.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.433"} +{"sensors":[{"euler":{"heading":54.6875,"pitch":135.9375,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":356.125,"pitch":78.125,"roll":-19.8125},"location":"Left Ankle"},{"euler":{"heading":73.3125,"pitch":-33.0,"roll":-31.125},"location":"Right Ankle"},{"euler":{"heading":181.75,"pitch":-164.0,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":236.875,"pitch":-127.0625,"roll":62.9375},"location":"Right Knee"},{"euler":{"heading":352.625,"pitch":-122.5625,"roll":51.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.534"} +{"sensors":[{"euler":{"heading":45.4375,"pitch":140.375,"roll":35.0},"location":"Left Knee"},{"euler":{"heading":347.875,"pitch":78.6875,"roll":-30.3125},"location":"Left Ankle"},{"euler":{"heading":65.8125,"pitch":-28.6875,"roll":-38.4375},"location":"Right Ankle"},{"euler":{"heading":184.4375,"pitch":-165.5,"roll":59.0625},"location":"Right Hip"},{"euler":{"heading":244.8125,"pitch":-119.8125,"roll":56.75},"location":"Right Knee"},{"euler":{"heading":2.5625,"pitch":-123.0625,"roll":54.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.638"} +{"sensors":[{"euler":{"heading":58.3125,"pitch":131.6875,"roll":33.5625},"location":"Left Knee"},{"euler":{"heading":357.875,"pitch":88.8125,"roll":-20.8125},"location":"Left Ankle"},{"euler":{"heading":52.625,"pitch":-24.5,"roll":-42.875},"location":"Right Ankle"},{"euler":{"heading":187.625,"pitch":-167.375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":260.1875,"pitch":-111.875,"roll":46.9375},"location":"Right Knee"},{"euler":{"heading":7.0625,"pitch":-125.25,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.739"} +{"sensors":[{"euler":{"heading":65.9375,"pitch":123.8125,"roll":30.1875},"location":"Left Knee"},{"euler":{"heading":8.1875,"pitch":90.875,"roll":-12.1875},"location":"Left Ankle"},{"euler":{"heading":307.875,"pitch":-9.9375,"roll":-48.375},"location":"Right Ankle"},{"euler":{"heading":193.5,"pitch":-159.6875,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":264.5,"pitch":-107.9375,"roll":38.375},"location":"Right Knee"},{"euler":{"heading":8.5,"pitch":-125.375,"roll":59.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.840"} +{"sensors":[{"euler":{"heading":69.8125,"pitch":121.0625,"roll":26.1875},"location":"Left Knee"},{"euler":{"heading":12.3125,"pitch":90.125,"roll":-8.375},"location":"Left Ankle"},{"euler":{"heading":39.1875,"pitch":-14.0625,"roll":-44.9375},"location":"Right Ankle"},{"euler":{"heading":196.0,"pitch":-155.9375,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":264.4375,"pitch":-104.0625,"roll":41.1875},"location":"Right Knee"},{"euler":{"heading":9.75,"pitch":-133.5625,"roll":61.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:03.941"} +{"sensors":[{"euler":{"heading":72.3125,"pitch":119.375,"roll":22.75},"location":"Left Knee"},{"euler":{"heading":18.1875,"pitch":89.8125,"roll":-3.6875},"location":"Left Ankle"},{"euler":{"heading":58.875,"pitch":-30.125,"roll":-35.1875},"location":"Right Ankle"},{"euler":{"heading":193.8125,"pitch":-156.1875,"roll":43.625},"location":"Right Hip"},{"euler":{"heading":248.75,"pitch":-107.8125,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":12.1875,"pitch":-143.0,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.42"} +{"sensors":[{"euler":{"heading":77.5,"pitch":117.5625,"roll":18.9375},"location":"Left Knee"},{"euler":{"heading":26.25,"pitch":89.8125,"roll":3.0625},"location":"Left Ankle"},{"euler":{"heading":77.5,"pitch":-37.875,"roll":-20.5},"location":"Right Ankle"},{"euler":{"heading":183.9375,"pitch":-160.25,"roll":42.75},"location":"Right Hip"},{"euler":{"heading":229.3125,"pitch":-127.625,"roll":78.4375},"location":"Right Knee"},{"euler":{"heading":13.875,"pitch":-148.6875,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.144"} +{"sensors":[{"euler":{"heading":82.75,"pitch":116.4375,"roll":13.875},"location":"Left Knee"},{"euler":{"heading":31.1875,"pitch":88.6875,"roll":8.375},"location":"Left Ankle"},{"euler":{"heading":95.25,"pitch":-42.8125,"roll":-10.75},"location":"Right Ankle"},{"euler":{"heading":173.5625,"pitch":-163.0625,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":216.3125,"pitch":154.0,"roll":79.6875},"location":"Right Knee"},{"euler":{"heading":15.25,"pitch":-153.0625,"roll":65.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.245"} +{"sensors":[{"euler":{"heading":88.6875,"pitch":115.75,"roll":7.8125},"location":"Left Knee"},{"euler":{"heading":39.875,"pitch":88.0,"roll":18.25},"location":"Left Ankle"},{"euler":{"heading":91.875,"pitch":-39.8125,"roll":-14.4375},"location":"Right Ankle"},{"euler":{"heading":167.5,"pitch":-165.625,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":212.0,"pitch":159.3125,"roll":80.125},"location":"Right Knee"},{"euler":{"heading":17.5,"pitch":-158.4375,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.346"} +{"sensors":[{"euler":{"heading":105.3125,"pitch":117.5,"roll":-5.0},"location":"Left Knee"},{"euler":{"heading":54.0,"pitch":87.4375,"roll":35.8125},"location":"Left Ankle"},{"euler":{"heading":83.1875,"pitch":-35.0,"roll":-21.875},"location":"Right Ankle"},{"euler":{"heading":171.8125,"pitch":-164.3125,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":214.1875,"pitch":-165.8125,"roll":78.875},"location":"Right Knee"},{"euler":{"heading":8.25,"pitch":-137.5625,"roll":65.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.448"} +{"sensors":[{"euler":{"heading":111.8125,"pitch":116.0625,"roll":-7.25},"location":"Left Knee"},{"euler":{"heading":52.5,"pitch":81.6875,"roll":39.0},"location":"Left Ankle"},{"euler":{"heading":80.1875,"pitch":-32.875,"roll":-25.4375},"location":"Right Ankle"},{"euler":{"heading":171.125,"pitch":-164.625,"roll":55.75},"location":"Right Hip"},{"euler":{"heading":216.25,"pitch":-152.9375,"roll":74.4375},"location":"Right Knee"},{"euler":{"heading":358.1875,"pitch":-119.0625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.548"} +{"sensors":[{"euler":{"heading":97.8125,"pitch":123.8125,"roll":5.0625},"location":"Left Knee"},{"euler":{"heading":35.875,"pitch":79.875,"roll":17.5625},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-30.1875,"roll":-28.375},"location":"Right Ankle"},{"euler":{"heading":176.75,"pitch":-162.0625,"roll":58.0625},"location":"Right Hip"},{"euler":{"heading":220.0,"pitch":-144.25,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":355.75,"pitch":-115.75,"roll":54.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.649"} +{"sensors":[{"euler":{"heading":62.9375,"pitch":134.5625,"roll":23.9375},"location":"Left Knee"},{"euler":{"heading":5.4375,"pitch":76.125,"roll":-9.1875},"location":"Left Ankle"},{"euler":{"heading":72.5625,"pitch":-27.0,"roll":-31.9375},"location":"Right Ankle"},{"euler":{"heading":179.25,"pitch":-162.125,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":224.5,"pitch":-135.0625,"roll":67.0625},"location":"Right Knee"},{"euler":{"heading":356.125,"pitch":-115.0625,"roll":54.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.750"} +{"sensors":[{"euler":{"heading":47.5,"pitch":141.25,"roll":33.1875},"location":"Left Knee"},{"euler":{"heading":348.25,"pitch":75.75,"roll":-27.6875},"location":"Left Ankle"},{"euler":{"heading":66.1875,"pitch":-22.875,"roll":-36.125},"location":"Right Ankle"},{"euler":{"heading":181.875,"pitch":-162.3125,"roll":59.4375},"location":"Right Hip"},{"euler":{"heading":232.8125,"pitch":-126.875,"roll":61.0625},"location":"Right Knee"},{"euler":{"heading":1.1875,"pitch":-120.375,"roll":55.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.851"} +{"sensors":[{"euler":{"heading":54.8125,"pitch":135.375,"roll":33.75},"location":"Left Knee"},{"euler":{"heading":351.5625,"pitch":84.6875,"roll":-24.9375},"location":"Left Ankle"},{"euler":{"heading":56.0625,"pitch":-20.875,"roll":-40.9375},"location":"Right Ankle"},{"euler":{"heading":185.9375,"pitch":-164.75,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":248.875,"pitch":-118.25,"roll":51.875},"location":"Right Knee"},{"euler":{"heading":5.6875,"pitch":-123.3125,"roll":57.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:04.952"} +{"sensors":[{"euler":{"heading":62.1875,"pitch":128.9375,"roll":30.625},"location":"Left Knee"},{"euler":{"heading":3.1875,"pitch":85.9375,"roll":-15.125},"location":"Left Ankle"},{"euler":{"heading":310.375,"pitch":-13.0,"roll":-47.125},"location":"Right Ankle"},{"euler":{"heading":191.0,"pitch":-161.3125,"roll":55.625},"location":"Right Hip"},{"euler":{"heading":262.0625,"pitch":-110.0625,"roll":41.375},"location":"Right Knee"},{"euler":{"heading":5.3125,"pitch":-126.0,"roll":59.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.52"} +{"sensors":[{"euler":{"heading":67.875,"pitch":123.375,"roll":27.5625},"location":"Left Knee"},{"euler":{"heading":8.5625,"pitch":87.8125,"roll":-10.6875},"location":"Left Ankle"},{"euler":{"heading":309.5,"pitch":-10.6875,"roll":-45.5625},"location":"Right Ankle"},{"euler":{"heading":192.375,"pitch":-157.25,"roll":49.125},"location":"Right Hip"},{"euler":{"heading":261.4375,"pitch":-108.0,"roll":42.4375},"location":"Right Knee"},{"euler":{"heading":8.3125,"pitch":-133.375,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.153"} +{"sensors":[{"euler":{"heading":71.375,"pitch":120.875,"roll":24.6875},"location":"Left Knee"},{"euler":{"heading":13.4375,"pitch":88.375,"roll":-6.625},"location":"Left Ankle"},{"euler":{"heading":58.4375,"pitch":-25.125,"roll":-38.125},"location":"Right Ankle"},{"euler":{"heading":192.0625,"pitch":-157.3125,"roll":43.875},"location":"Right Hip"},{"euler":{"heading":247.625,"pitch":-112.1875,"roll":56.6875},"location":"Right Knee"},{"euler":{"heading":11.4375,"pitch":-141.5,"roll":63.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.254"} +{"sensors":[{"euler":{"heading":76.75,"pitch":117.8125,"roll":21.375},"location":"Left Knee"},{"euler":{"heading":23.4375,"pitch":89.9375,"roll":2.1875},"location":"Left Ankle"},{"euler":{"heading":75.4375,"pitch":-37.0625,"roll":-20.625},"location":"Right Ankle"},{"euler":{"heading":184.125,"pitch":-160.75,"roll":42.0625},"location":"Right Hip"},{"euler":{"heading":232.625,"pitch":-129.3125,"roll":73.9375},"location":"Right Knee"},{"euler":{"heading":14.3125,"pitch":-149.3125,"roll":64.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.354"} +{"sensors":[{"euler":{"heading":82.5625,"pitch":115.0625,"roll":17.0625},"location":"Left Knee"},{"euler":{"heading":29.5,"pitch":91.3125,"roll":7.8125},"location":"Left Ankle"},{"euler":{"heading":94.75,"pitch":-42.75,"roll":-9.0625},"location":"Right Ankle"},{"euler":{"heading":174.875,"pitch":-163.625,"roll":46.0625},"location":"Right Hip"},{"euler":{"heading":216.5,"pitch":157.9375,"roll":80.5625},"location":"Right Knee"},{"euler":{"heading":17.375,"pitch":-154.9375,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.455"} +{"sensors":[{"euler":{"heading":90.1875,"pitch":113.4375,"roll":10.1875},"location":"Left Knee"},{"euler":{"heading":37.9375,"pitch":91.0625,"roll":17.25},"location":"Left Ankle"},{"euler":{"heading":93.5,"pitch":-42.0625,"roll":-12.0625},"location":"Right Ankle"},{"euler":{"heading":168.5,"pitch":-166.25,"roll":48.875},"location":"Right Hip"},{"euler":{"heading":212.5,"pitch":158.125,"roll":80.0},"location":"Right Knee"},{"euler":{"heading":20.25,"pitch":-160.0625,"roll":67.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.555"} +{"sensors":[{"euler":{"heading":102.5625,"pitch":115.1875,"roll":-1.75},"location":"Left Knee"},{"euler":{"heading":46.5625,"pitch":86.6875,"roll":32.5},"location":"Left Ankle"},{"euler":{"heading":86.25,"pitch":-39.0,"roll":-19.9375},"location":"Right Ankle"},{"euler":{"heading":172.1875,"pitch":-166.0,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":213.75,"pitch":-172.8125,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":12.875,"pitch":-146.1875,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.656"} +{"sensors":[{"euler":{"heading":113.875,"pitch":115.25,"roll":-8.1875},"location":"Left Knee"},{"euler":{"heading":53.4375,"pitch":82.0,"roll":40.4375},"location":"Left Ankle"},{"euler":{"heading":83.5,"pitch":-37.0625,"roll":-23.3125},"location":"Right Ankle"},{"euler":{"heading":169.9375,"pitch":-167.25,"roll":55.0625},"location":"Right Hip"},{"euler":{"heading":215.5,"pitch":-156.8125,"roll":75.6875},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":-117.75,"roll":61.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.756"} +{"sensors":[{"euler":{"heading":103.0625,"pitch":122.75,"roll":1.125},"location":"Left Knee"},{"euler":{"heading":37.625,"pitch":77.8125,"roll":20.0625},"location":"Left Ankle"},{"euler":{"heading":80.0625,"pitch":-33.5,"roll":-26.375},"location":"Right Ankle"},{"euler":{"heading":173.875,"pitch":-165.25,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":217.125,"pitch":-148.0,"roll":72.3125},"location":"Right Knee"},{"euler":{"heading":354.8125,"pitch":-114.6875,"roll":55.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.857"} +{"sensors":[{"euler":{"heading":66.8125,"pitch":133.8125,"roll":21.0625},"location":"Left Knee"},{"euler":{"heading":7.0625,"pitch":72.25,"roll":-8.0},"location":"Left Ankle"},{"euler":{"heading":76.25,"pitch":-30.5625,"roll":-29.4375},"location":"Right Ankle"},{"euler":{"heading":176.4375,"pitch":-165.0625,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":221.75,"pitch":-138.8125,"roll":68.6875},"location":"Right Knee"},{"euler":{"heading":355.125,"pitch":-113.375,"roll":54.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:05.958"} +{"sensors":[{"euler":{"heading":47.5,"pitch":141.5,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":348.25,"pitch":71.0625,"roll":-27.6875},"location":"Left Ankle"},{"euler":{"heading":71.625,"pitch":-27.75,"roll":-33.0625},"location":"Right Ankle"},{"euler":{"heading":178.1875,"pitch":-166.1875,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":229.3125,"pitch":-129.5625,"roll":63.3125},"location":"Right Knee"},{"euler":{"heading":359.25,"pitch":-118.5,"roll":56.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.58"} +{"sensors":[{"euler":{"heading":56.875,"pitch":133.875,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":350.875,"pitch":83.0625,"roll":-23.625},"location":"Left Ankle"},{"euler":{"heading":61.9375,"pitch":-25.6875,"roll":-39.25},"location":"Right Ankle"},{"euler":{"heading":184.125,"pitch":-166.375,"roll":61.125},"location":"Right Hip"},{"euler":{"heading":243.5625,"pitch":-119.375,"roll":54.875},"location":"Right Knee"},{"euler":{"heading":6.6875,"pitch":-124.75,"roll":58.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.164"} +{"sensors":[{"euler":{"heading":63.8125,"pitch":127.375,"roll":29.25},"location":"Left Knee"},{"euler":{"heading":2.1875,"pitch":83.75,"roll":-15.5},"location":"Left Ankle"},{"euler":{"heading":312.1875,"pitch":-15.4375,"roll":-46.0625},"location":"Right Ankle"},{"euler":{"heading":190.125,"pitch":-161.5625,"roll":56.375},"location":"Right Hip"},{"euler":{"heading":258.4375,"pitch":-111.0,"roll":43.6875},"location":"Right Knee"},{"euler":{"heading":5.6875,"pitch":-129.875,"roll":58.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.264"} +{"sensors":[{"euler":{"heading":69.9375,"pitch":121.25,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":9.75,"pitch":89.25,"roll":-11.0},"location":"Left Ankle"},{"euler":{"heading":306.1875,"pitch":-11.375,"roll":-45.4375},"location":"Right Ankle"},{"euler":{"heading":193.1875,"pitch":-155.6875,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":257.6875,"pitch":-109.75,"roll":43.375},"location":"Right Knee"},{"euler":{"heading":9.875,"pitch":-134.875,"roll":61.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.366"} +{"sensors":[{"euler":{"heading":75.125,"pitch":116.5625,"roll":24.8125},"location":"Left Knee"},{"euler":{"heading":15.875,"pitch":91.625,"roll":-5.875},"location":"Left Ankle"},{"euler":{"heading":52.4375,"pitch":-25.75,"roll":-38.875},"location":"Right Ankle"},{"euler":{"heading":192.6875,"pitch":-156.375,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":244.625,"pitch":-113.75,"roll":57.5625},"location":"Right Knee"},{"euler":{"heading":13.625,"pitch":-142.625,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.467"} +{"sensors":[{"euler":{"heading":80.375,"pitch":114.375,"roll":20.5625},"location":"Left Knee"},{"euler":{"heading":26.5,"pitch":92.6875,"roll":3.75},"location":"Left Ankle"},{"euler":{"heading":75.3125,"pitch":-40.5625,"roll":-23.4375},"location":"Right Ankle"},{"euler":{"heading":143.625,"pitch":-160.0,"roll":40.5},"location":"Right Hip"},{"euler":{"heading":229.5,"pitch":-134.3125,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":15.6875,"pitch":-149.5625,"roll":64.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.568"} +{"sensors":[{"euler":{"heading":85.5,"pitch":112.25,"roll":15.9375},"location":"Left Knee"},{"euler":{"heading":30.75,"pitch":92.9375,"roll":8.5625},"location":"Left Ankle"},{"euler":{"heading":92.5625,"pitch":-44.375,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":177.5,"pitch":-162.4375,"roll":45.0625},"location":"Right Hip"},{"euler":{"heading":214.3125,"pitch":148.9375,"roll":79.3125},"location":"Right Knee"},{"euler":{"heading":18.875,"pitch":-156.5625,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.669"} +{"sensors":[{"euler":{"heading":92.8125,"pitch":110.9375,"roll":8.9375},"location":"Left Knee"},{"euler":{"heading":38.125,"pitch":92.125,"roll":16.875},"location":"Left Ankle"},{"euler":{"heading":94.25,"pitch":-41.625,"roll":-12.1875},"location":"Right Ankle"},{"euler":{"heading":168.8125,"pitch":-166.3125,"roll":49.5},"location":"Right Hip"},{"euler":{"heading":208.5,"pitch":146.625,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":23.4375,"pitch":-164.9375,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.770"} +{"sensors":[{"euler":{"heading":105.0625,"pitch":112.4375,"roll":-3.0625},"location":"Left Knee"},{"euler":{"heading":43.25,"pitch":87.0625,"roll":28.9375},"location":"Left Ankle"},{"euler":{"heading":87.9375,"pitch":-39.5,"roll":-20.4375},"location":"Right Ankle"},{"euler":{"heading":175.125,"pitch":-164.875,"roll":50.75},"location":"Right Hip"},{"euler":{"heading":210.875,"pitch":176.4375,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":17.25,"pitch":-151.25,"roll":65.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.871"} +{"sensors":[{"euler":{"heading":116.8125,"pitch":114.0625,"roll":-10.125},"location":"Left Knee"},{"euler":{"heading":51.5625,"pitch":84.4375,"roll":39.5},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":-37.125,"roll":-23.3125},"location":"Right Ankle"},{"euler":{"heading":172.5,"pitch":-166.5625,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":212.5,"pitch":-162.75,"roll":75.75},"location":"Right Knee"},{"euler":{"heading":1.8125,"pitch":-122.1875,"roll":62.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:06.972"} +{"sensors":[{"euler":{"heading":108.125,"pitch":122.125,"roll":0.125},"location":"Left Knee"},{"euler":{"heading":37.3125,"pitch":77.6875,"roll":20.5625},"location":"Left Ankle"},{"euler":{"heading":81.5625,"pitch":-33.9375,"roll":-25.875},"location":"Right Ankle"},{"euler":{"heading":174.0625,"pitch":-165.5,"roll":57.9375},"location":"Right Hip"},{"euler":{"heading":213.9375,"pitch":-152.75,"roll":73.125},"location":"Right Knee"},{"euler":{"heading":355.875,"pitch":-118.1875,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.72"} +{"sensors":[{"euler":{"heading":72.1875,"pitch":132.3125,"roll":19.375},"location":"Left Knee"},{"euler":{"heading":6.3125,"pitch":74.4375,"roll":-6.5625},"location":"Left Ankle"},{"euler":{"heading":76.9375,"pitch":-30.25,"roll":-29.4375},"location":"Right Ankle"},{"euler":{"heading":178.6875,"pitch":-163.4375,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":219.4375,"pitch":-141.125,"roll":69.5},"location":"Right Knee"},{"euler":{"heading":355.8125,"pitch":-117.5,"roll":54.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.173"} +{"sensors":[{"euler":{"heading":53.0,"pitch":139.0625,"roll":30.375},"location":"Left Knee"},{"euler":{"heading":347.8125,"pitch":72.3125,"roll":-26.8125},"location":"Left Ankle"},{"euler":{"heading":70.6875,"pitch":-26.8125,"roll":-33.9375},"location":"Right Ankle"},{"euler":{"heading":179.625,"pitch":-165.375,"roll":60.9375},"location":"Right Hip"},{"euler":{"heading":225.8125,"pitch":-130.6875,"roll":64.625},"location":"Right Knee"},{"euler":{"heading":0.25,"pitch":-122.875,"roll":56.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.274"} +{"sensors":[{"euler":{"heading":58.0625,"pitch":134.0625,"roll":31.5},"location":"Left Knee"},{"euler":{"heading":350.0,"pitch":81.25,"roll":-25.4375},"location":"Left Ankle"},{"euler":{"heading":61.875,"pitch":-25.0625,"roll":-40.5},"location":"Right Ankle"},{"euler":{"heading":183.4375,"pitch":-166.75,"roll":61.5625},"location":"Right Hip"},{"euler":{"heading":239.5625,"pitch":-120.0625,"roll":56.1875},"location":"Right Knee"},{"euler":{"heading":5.4375,"pitch":-125.5,"roll":57.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.375"} +{"sensors":[{"euler":{"heading":66.9375,"pitch":127.0,"roll":28.0625},"location":"Left Knee"},{"euler":{"heading":3.0,"pitch":83.8125,"roll":-14.6875},"location":"Left Ankle"},{"euler":{"heading":310.9375,"pitch":-13.875,"roll":-47.375},"location":"Right Ankle"},{"euler":{"heading":191.5625,"pitch":-159.25,"roll":56.1875},"location":"Right Hip"},{"euler":{"heading":257.5,"pitch":-110.125,"roll":44.0},"location":"Right Knee"},{"euler":{"heading":4.8125,"pitch":-129.6875,"roll":59.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.477"} +{"sensors":[{"euler":{"heading":72.25,"pitch":120.375,"roll":26.4375},"location":"Left Knee"},{"euler":{"heading":10.0625,"pitch":89.5625,"roll":-10.1875},"location":"Left Ankle"},{"euler":{"heading":306.9375,"pitch":-12.75,"roll":-45.5625},"location":"Right Ankle"},{"euler":{"heading":194.8125,"pitch":-155.0,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":256.4375,"pitch":-109.5625,"roll":44.0},"location":"Right Knee"},{"euler":{"heading":10.0625,"pitch":-134.5625,"roll":61.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.577"} +{"sensors":[{"euler":{"heading":76.5,"pitch":116.3125,"roll":23.9375},"location":"Left Knee"},{"euler":{"heading":18.5625,"pitch":92.25,"roll":-3.25},"location":"Left Ankle"},{"euler":{"heading":55.375,"pitch":-29.1875,"roll":-37.875},"location":"Right Ankle"},{"euler":{"heading":194.0625,"pitch":-155.9375,"roll":42.6875},"location":"Right Hip"},{"euler":{"heading":242.375,"pitch":-116.1875,"roll":58.8125},"location":"Right Knee"},{"euler":{"heading":14.0,"pitch":-142.75,"roll":63.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.680"} +{"sensors":[{"euler":{"heading":82.0625,"pitch":113.75,"roll":19.875},"location":"Left Knee"},{"euler":{"heading":24.9375,"pitch":93.125,"roll":2.5625},"location":"Left Ankle"},{"euler":{"heading":75.75,"pitch":-42.1875,"roll":-21.6875},"location":"Right Ankle"},{"euler":{"heading":144.0,"pitch":-159.625,"roll":40.4375},"location":"Right Hip"},{"euler":{"heading":228.375,"pitch":-134.8125,"roll":76.625},"location":"Right Knee"},{"euler":{"heading":16.0625,"pitch":-150.3125,"roll":65.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.780"} +{"sensors":[{"euler":{"heading":87.3125,"pitch":111.375,"roll":15.25},"location":"Left Knee"},{"euler":{"heading":30.0,"pitch":93.6875,"roll":7.9375},"location":"Left Ankle"},{"euler":{"heading":95.3125,"pitch":-45.0,"roll":-8.875},"location":"Right Ankle"},{"euler":{"heading":178.3125,"pitch":-162.5,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":212.5,"pitch":141.125,"roll":79.375},"location":"Right Knee"},{"euler":{"heading":19.625,"pitch":-156.6875,"roll":66.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.881"} +{"sensors":[{"euler":{"heading":94.8125,"pitch":110.6875,"roll":7.8125},"location":"Left Knee"},{"euler":{"heading":38.0,"pitch":92.1875,"roll":17.25},"location":"Left Ankle"},{"euler":{"heading":94.5,"pitch":-43.125,"roll":-10.9375},"location":"Right Ankle"},{"euler":{"heading":171.5,"pitch":-165.5625,"roll":48.5},"location":"Right Hip"},{"euler":{"heading":208.125,"pitch":139.9375,"roll":79.125},"location":"Right Knee"},{"euler":{"heading":23.125,"pitch":-164.6875,"roll":67.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:07.981"} +{"sensors":[{"euler":{"heading":107.75,"pitch":112.3125,"roll":-5.625},"location":"Left Knee"},{"euler":{"heading":45.3125,"pitch":89.0,"roll":31.5625},"location":"Left Ankle"},{"euler":{"heading":87.3125,"pitch":-39.5625,"roll":-18.8125},"location":"Right Ankle"},{"euler":{"heading":177.8125,"pitch":-163.75,"roll":50.0625},"location":"Right Hip"},{"euler":{"heading":209.625,"pitch":168.9375,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":18.6875,"pitch":-148.75,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.82"} +{"sensors":[{"euler":{"heading":118.3125,"pitch":113.3125,"roll":-10.25},"location":"Left Knee"},{"euler":{"heading":49.1875,"pitch":86.9375,"roll":38.0625},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":-35.9375,"roll":-23.75},"location":"Right Ankle"},{"euler":{"heading":174.625,"pitch":-164.875,"roll":54.625},"location":"Right Hip"},{"euler":{"heading":209.6875,"pitch":-168.5,"roll":76.8125},"location":"Right Knee"},{"euler":{"heading":3.5,"pitch":-121.375,"roll":62.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.184"} +{"sensors":[{"euler":{"heading":105.875,"pitch":121.25,"roll":1.5},"location":"Left Knee"},{"euler":{"heading":33.0625,"pitch":80.0625,"roll":16.75},"location":"Left Ankle"},{"euler":{"heading":81.25,"pitch":-34.9375,"roll":-26.5625},"location":"Right Ankle"},{"euler":{"heading":177.8125,"pitch":-163.625,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":213.5,"pitch":-156.3125,"roll":73.6875},"location":"Right Knee"},{"euler":{"heading":357.5,"pitch":-119.25,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.284"} +{"sensors":[{"euler":{"heading":73.0625,"pitch":131.75,"roll":20.3125},"location":"Left Knee"},{"euler":{"heading":3.125,"pitch":77.0,"roll":-9.25},"location":"Left Ankle"},{"euler":{"heading":77.75,"pitch":-33.875,"roll":-28.6875},"location":"Right Ankle"},{"euler":{"heading":179.5,"pitch":-164.4375,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":219.3125,"pitch":-143.4375,"roll":70.625},"location":"Right Knee"},{"euler":{"heading":355.8125,"pitch":-117.0,"roll":54.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.385"} +{"sensors":[{"euler":{"heading":52.5625,"pitch":139.0625,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":347.5,"pitch":72.3125,"roll":-27.5625},"location":"Left Ankle"},{"euler":{"heading":71.875,"pitch":-30.8125,"roll":-32.5625},"location":"Right Ankle"},{"euler":{"heading":181.875,"pitch":-165.1875,"roll":60.1875},"location":"Right Hip"},{"euler":{"heading":226.3125,"pitch":-132.125,"roll":65.5625},"location":"Right Knee"},{"euler":{"heading":359.8125,"pitch":-122.0625,"roll":55.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.487"} +{"sensors":[{"euler":{"heading":58.5,"pitch":133.875,"roll":31.1875},"location":"Left Knee"},{"euler":{"heading":350.375,"pitch":80.5625,"roll":-23.75},"location":"Left Ankle"},{"euler":{"heading":62.875,"pitch":-27.125,"roll":-39.1875},"location":"Right Ankle"},{"euler":{"heading":184.6875,"pitch":-166.625,"roll":61.0},"location":"Right Hip"},{"euler":{"heading":236.875,"pitch":-121.6875,"roll":58.25},"location":"Right Knee"},{"euler":{"heading":5.625,"pitch":-125.9375,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.587"} +{"sensors":[{"euler":{"heading":66.3125,"pitch":127.6875,"roll":27.4375},"location":"Left Knee"},{"euler":{"heading":4.5,"pitch":82.3125,"roll":-12.9375},"location":"Left Ankle"},{"euler":{"heading":312.6875,"pitch":-16.3125,"roll":-46.875},"location":"Right Ankle"},{"euler":{"heading":192.5625,"pitch":-160.1875,"roll":55.5625},"location":"Right Hip"},{"euler":{"heading":255.125,"pitch":-110.4375,"roll":45.875},"location":"Right Knee"},{"euler":{"heading":4.8125,"pitch":-130.0625,"roll":59.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.691"} +{"sensors":[{"euler":{"heading":71.875,"pitch":121.0625,"roll":25.875},"location":"Left Knee"},{"euler":{"heading":10.0625,"pitch":87.625,"roll":-9.8125},"location":"Left Ankle"},{"euler":{"heading":307.625,"pitch":-16.5,"roll":-45.4375},"location":"Right Ankle"},{"euler":{"heading":195.6875,"pitch":-155.3125,"roll":48.75},"location":"Right Hip"},{"euler":{"heading":255.6875,"pitch":-109.0,"roll":45.75},"location":"Right Knee"},{"euler":{"heading":11.0625,"pitch":-137.1875,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.792"} +{"sensors":[{"euler":{"heading":76.4375,"pitch":116.75,"roll":23.5},"location":"Left Knee"},{"euler":{"heading":15.9375,"pitch":90.1875,"roll":-5.125},"location":"Left Ankle"},{"euler":{"heading":54.75,"pitch":-33.375,"roll":-36.1875},"location":"Right Ankle"},{"euler":{"heading":194.9375,"pitch":-156.0,"roll":42.625},"location":"Right Hip"},{"euler":{"heading":242.1875,"pitch":-116.125,"roll":60.5625},"location":"Right Knee"},{"euler":{"heading":14.1875,"pitch":-144.0,"roll":63.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.892"} +{"sensors":[{"euler":{"heading":81.8125,"pitch":113.9375,"roll":19.75},"location":"Left Knee"},{"euler":{"heading":21.125,"pitch":91.625,"roll":-0.3125},"location":"Left Ankle"},{"euler":{"heading":76.75,"pitch":-43.5625,"roll":-19.625},"location":"Right Ankle"},{"euler":{"heading":187.9375,"pitch":-160.0,"roll":41.4375},"location":"Right Hip"},{"euler":{"heading":225.0625,"pitch":-146.75,"roll":78.3125},"location":"Right Knee"},{"euler":{"heading":16.375,"pitch":-150.125,"roll":64.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:08.992"} +{"sensors":[{"euler":{"heading":87.25,"pitch":112.1875,"roll":14.875},"location":"Left Knee"},{"euler":{"heading":26.1875,"pitch":92.25,"roll":5.0},"location":"Left Ankle"},{"euler":{"heading":299.6875,"pitch":-46.75,"roll":-8.1875},"location":"Right Ankle"},{"euler":{"heading":176.5,"pitch":-163.9375,"roll":45.875},"location":"Right Hip"},{"euler":{"heading":210.375,"pitch":139.8125,"roll":76.5625},"location":"Right Knee"},{"euler":{"heading":19.0625,"pitch":-155.625,"roll":66.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.93"} +{"sensors":[{"euler":{"heading":95.625,"pitch":110.75,"roll":6.9375},"location":"Left Knee"},{"euler":{"heading":35.25,"pitch":91.625,"roll":15.5},"location":"Left Ankle"},{"euler":{"heading":94.0625,"pitch":-44.1875,"roll":-12.25},"location":"Right Ankle"},{"euler":{"heading":171.375,"pitch":-166.0,"roll":48.25},"location":"Right Hip"},{"euler":{"heading":207.8125,"pitch":147.9375,"roll":78.25},"location":"Right Knee"},{"euler":{"heading":20.1875,"pitch":-157.25,"roll":66.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.193"} +{"sensors":[{"euler":{"heading":110.25,"pitch":112.6875,"roll":-6.0},"location":"Left Knee"},{"euler":{"heading":47.8125,"pitch":88.0,"roll":34.1875},"location":"Left Ankle"},{"euler":{"heading":87.0,"pitch":-40.375,"roll":-19.25},"location":"Right Ankle"},{"euler":{"heading":175.25,"pitch":-165.75,"roll":50.0},"location":"Right Hip"},{"euler":{"heading":209.25,"pitch":175.25,"roll":79.1875},"location":"Right Knee"},{"euler":{"heading":11.75,"pitch":-135.8125,"roll":65.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.293"} +{"sensors":[{"euler":{"heading":117.4375,"pitch":113.9375,"roll":-9.6875},"location":"Left Knee"},{"euler":{"heading":50.5625,"pitch":83.4375,"roll":38.125},"location":"Left Ankle"},{"euler":{"heading":82.6875,"pitch":-37.6875,"roll":-22.9375},"location":"Right Ankle"},{"euler":{"heading":174.8125,"pitch":-165.625,"roll":54.25},"location":"Right Hip"},{"euler":{"heading":211.1875,"pitch":-164.75,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":0.9375,"pitch":-117.375,"roll":60.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.393"} +{"sensors":[{"euler":{"heading":102.875,"pitch":121.625,"roll":2.875},"location":"Left Knee"},{"euler":{"heading":32.3125,"pitch":78.4375,"roll":15.1875},"location":"Left Ankle"},{"euler":{"heading":78.625,"pitch":-36.3125,"roll":-27.25},"location":"Right Ankle"},{"euler":{"heading":179.1875,"pitch":-163.75,"roll":56.4375},"location":"Right Hip"},{"euler":{"heading":216.4375,"pitch":-151.5,"roll":72.375},"location":"Right Knee"},{"euler":{"heading":357.1875,"pitch":-116.5625,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.495"} +{"sensors":[{"euler":{"heading":69.4375,"pitch":131.75,"roll":22.25},"location":"Left Knee"},{"euler":{"heading":1.25,"pitch":75.375,"roll":-12.125},"location":"Left Ankle"},{"euler":{"heading":75.0625,"pitch":-33.5,"roll":-29.5},"location":"Right Ankle"},{"euler":{"heading":183.4375,"pitch":-162.875,"roll":57.4375},"location":"Right Hip"},{"euler":{"heading":221.5,"pitch":-139.625,"roll":69.4375},"location":"Right Knee"},{"euler":{"heading":357.6875,"pitch":-115.8125,"roll":54.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.596"} +{"sensors":[{"euler":{"heading":53.9375,"pitch":137.9375,"roll":31.75},"location":"Left Knee"},{"euler":{"heading":347.125,"pitch":75.5625,"roll":-28.5},"location":"Left Ankle"},{"euler":{"heading":69.0,"pitch":-28.5,"roll":-35.625},"location":"Right Ankle"},{"euler":{"heading":186.25,"pitch":-162.3125,"roll":58.3125},"location":"Right Hip"},{"euler":{"heading":226.875,"pitch":-129.3125,"roll":64.5},"location":"Right Knee"},{"euler":{"heading":0.875,"pitch":-121.125,"roll":54.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.697"} +{"sensors":[{"euler":{"heading":60.0625,"pitch":132.8125,"roll":31.4375},"location":"Left Knee"},{"euler":{"heading":367.6875,"pitch":81.8125,"roll":-23.0},"location":"Left Ankle"},{"euler":{"heading":59.125,"pitch":-25.375,"roll":-41.4375},"location":"Right Ankle"},{"euler":{"heading":189.3125,"pitch":-163.875,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":238.3125,"pitch":-119.3125,"roll":56.5625},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":-125.3125,"roll":57.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.798"} +{"sensors":[{"euler":{"heading":65.8125,"pitch":127.25,"roll":28.4375},"location":"Left Knee"},{"euler":{"heading":3.25,"pitch":82.25,"roll":-14.625},"location":"Left Ankle"},{"euler":{"heading":311.0625,"pitch":-14.875,"roll":-46.625},"location":"Right Ankle"},{"euler":{"heading":194.5625,"pitch":-158.9375,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":250.5625,"pitch":-111.625,"roll":46.5},"location":"Right Knee"},{"euler":{"heading":5.625,"pitch":-129.4375,"roll":58.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:09.899"} +{"sensors":[{"euler":{"heading":69.75,"pitch":123.6875,"roll":25.3125},"location":"Left Knee"},{"euler":{"heading":6.625,"pitch":82.9375,"roll":-12.125},"location":"Left Ankle"},{"euler":{"heading":308.0625,"pitch":-12.4375,"roll":-45.1875},"location":"Right Ankle"},{"euler":{"heading":198.5,"pitch":-153.8125,"roll":48.0},"location":"Right Hip"},{"euler":{"heading":248.5,"pitch":-110.1875,"roll":48.5625},"location":"Right Knee"},{"euler":{"heading":9.6875,"pitch":-137.3125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.0"} +{"sensors":[{"euler":{"heading":73.625,"pitch":121.125,"roll":22.3125},"location":"Left Knee"},{"euler":{"heading":11.1875,"pitch":83.5,"roll":-7.8125},"location":"Left Ankle"},{"euler":{"heading":56.5625,"pitch":-27.9375,"roll":-37.8125},"location":"Right Ankle"},{"euler":{"heading":195.8125,"pitch":-155.125,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":234.5,"pitch":-118.4375,"roll":63.6875},"location":"Right Knee"},{"euler":{"heading":11.125,"pitch":-142.0625,"roll":63.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.100"} +{"sensors":[{"euler":{"heading":79.6875,"pitch":116.5625,"roll":19.6875},"location":"Left Knee"},{"euler":{"heading":18.0,"pitch":87.875,"roll":-1.9375},"location":"Left Ankle"},{"euler":{"heading":76.875,"pitch":-41.125,"roll":-20.5},"location":"Right Ankle"},{"euler":{"heading":143.0625,"pitch":-159.125,"roll":40.4375},"location":"Right Hip"},{"euler":{"heading":219.5,"pitch":-158.5,"roll":79.625},"location":"Right Knee"},{"euler":{"heading":13.5,"pitch":-145.75,"roll":65.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.201"} +{"sensors":[{"euler":{"heading":85.4375,"pitch":114.625,"roll":14.5625},"location":"Left Knee"},{"euler":{"heading":22.625,"pitch":88.0,"roll":3.25},"location":"Left Ankle"},{"euler":{"heading":300.5625,"pitch":-46.625,"roll":-9.125},"location":"Right Ankle"},{"euler":{"heading":179.0625,"pitch":-162.25,"roll":44.1875},"location":"Right Hip"},{"euler":{"heading":207.5625,"pitch":137.25,"roll":75.25},"location":"Right Knee"},{"euler":{"heading":16.3125,"pitch":-152.0,"roll":66.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.302"} +{"sensors":[{"euler":{"heading":93.0,"pitch":113.875,"roll":6.4375},"location":"Left Knee"},{"euler":{"heading":31.25,"pitch":87.9375,"roll":12.75},"location":"Left Ankle"},{"euler":{"heading":93.75,"pitch":-43.625,"roll":-13.0625},"location":"Right Ankle"},{"euler":{"heading":170.0625,"pitch":-165.75,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":201.4375,"pitch":134.25,"roll":76.0625},"location":"Right Knee"},{"euler":{"heading":17.625,"pitch":-157.4375,"roll":66.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.403"} +{"sensors":[{"euler":{"heading":109.3125,"pitch":115.8125,"roll":-6.0625},"location":"Left Knee"},{"euler":{"heading":43.4375,"pitch":84.9375,"roll":30.6875},"location":"Left Ankle"},{"euler":{"heading":85.875,"pitch":-42.8125,"roll":-20.75},"location":"Right Ankle"},{"euler":{"heading":176.9375,"pitch":-164.375,"roll":49.3125},"location":"Right Hip"},{"euler":{"heading":206.5,"pitch":162.25,"roll":77.6875},"location":"Right Knee"},{"euler":{"heading":13.25,"pitch":-145.1875,"roll":66.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.504"} +{"sensors":[{"euler":{"heading":117.6875,"pitch":114.25,"roll":-9.5},"location":"Left Knee"},{"euler":{"heading":48.625,"pitch":85.75,"roll":36.375},"location":"Left Ankle"},{"euler":{"heading":82.125,"pitch":-42.375,"roll":-23.9375},"location":"Right Ankle"},{"euler":{"heading":176.0625,"pitch":-165.0625,"roll":53.5625},"location":"Right Hip"},{"euler":{"heading":211.5625,"pitch":-172.4375,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":4.0625,"pitch":-121.8125,"roll":62.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.604"} +{"sensors":[{"euler":{"heading":104.625,"pitch":120.625,"roll":1.9375},"location":"Left Knee"},{"euler":{"heading":35.1875,"pitch":80.875,"roll":17.875},"location":"Left Ankle"},{"euler":{"heading":80.5,"pitch":-41.1875,"roll":-25.5},"location":"Right Ankle"},{"euler":{"heading":180.875,"pitch":-163.6875,"roll":56.0625},"location":"Right Hip"},{"euler":{"heading":216.375,"pitch":-158.3125,"roll":72.8125},"location":"Right Knee"},{"euler":{"heading":359.3125,"pitch":-117.125,"roll":56.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.705"} +{"sensors":[{"euler":{"heading":70.375,"pitch":131.125,"roll":21.0},"location":"Left Knee"},{"euler":{"heading":6.5,"pitch":76.25,"roll":-8.0625},"location":"Left Ankle"},{"euler":{"heading":77.1875,"pitch":-37.5625,"roll":-26.9375},"location":"Right Ankle"},{"euler":{"heading":183.5625,"pitch":-163.625,"roll":57.3125},"location":"Right Hip"},{"euler":{"heading":220.1875,"pitch":-145.9375,"roll":70.5625},"location":"Right Knee"},{"euler":{"heading":357.8125,"pitch":-114.625,"roll":55.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.805"} +{"sensors":[{"euler":{"heading":50.625,"pitch":138.625,"roll":32.125},"location":"Left Knee"},{"euler":{"heading":348.75,"pitch":71.75,"roll":-27.25},"location":"Left Ankle"},{"euler":{"heading":71.0625,"pitch":-32.5625,"roll":-32.125},"location":"Right Ankle"},{"euler":{"heading":184.9375,"pitch":-163.4375,"roll":58.75},"location":"Right Hip"},{"euler":{"heading":223.5,"pitch":-135.5625,"roll":66.5625},"location":"Right Knee"},{"euler":{"heading":1.6875,"pitch":-119.0625,"roll":56.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:10.906"} +{"sensors":[{"euler":{"heading":57.8125,"pitch":133.8125,"roll":32.25},"location":"Left Knee"},{"euler":{"heading":350.1875,"pitch":78.9375,"roll":-26.5625},"location":"Left Ankle"},{"euler":{"heading":60.1875,"pitch":-26.3125,"roll":-40.5625},"location":"Right Ankle"},{"euler":{"heading":187.25,"pitch":-164.8125,"roll":59.5},"location":"Right Hip"},{"euler":{"heading":233.3125,"pitch":-123.6875,"roll":59.625},"location":"Right Knee"},{"euler":{"heading":5.1875,"pitch":-122.375,"roll":57.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.7"} +{"sensors":[{"euler":{"heading":65.0,"pitch":127.3125,"roll":29.375},"location":"Left Knee"},{"euler":{"heading":2.75,"pitch":81.5625,"roll":-16.0625},"location":"Left Ankle"},{"euler":{"heading":313.4375,"pitch":-17.1875,"roll":-47.1875},"location":"Right Ankle"},{"euler":{"heading":192.25,"pitch":-160.125,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":250.25,"pitch":-113.3125,"roll":48.125},"location":"Right Knee"},{"euler":{"heading":5.0625,"pitch":-126.1875,"roll":59.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.108"} +{"sensors":[{"euler":{"heading":68.5625,"pitch":122.8125,"roll":26.6875},"location":"Left Knee"},{"euler":{"heading":6.5625,"pitch":83.0,"roll":-12.8125},"location":"Left Ankle"},{"euler":{"heading":305.6875,"pitch":-16.4375,"roll":-47.3125},"location":"Right Ankle"},{"euler":{"heading":197.5,"pitch":-155.75,"roll":48.4375},"location":"Right Hip"},{"euler":{"heading":251.625,"pitch":-111.625,"roll":46.1875},"location":"Right Knee"},{"euler":{"heading":10.5,"pitch":-136.0,"roll":62.5},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.209"} +{"sensors":[{"euler":{"heading":71.6875,"pitch":120.875,"roll":23.375},"location":"Left Knee"},{"euler":{"heading":12.125,"pitch":83.4375,"roll":-6.8125},"location":"Left Ankle"},{"euler":{"heading":54.0,"pitch":-31.875,"roll":-36.0},"location":"Right Ankle"},{"euler":{"heading":194.75,"pitch":-156.25,"roll":43.0},"location":"Right Hip"},{"euler":{"heading":236.5625,"pitch":-117.3125,"roll":60.9375},"location":"Right Knee"},{"euler":{"heading":11.8125,"pitch":-143.5625,"roll":64.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.310"} +{"sensors":[{"euler":{"heading":78.0,"pitch":118.4375,"roll":19.3125},"location":"Left Knee"},{"euler":{"heading":21.0625,"pitch":85.25,"roll":0.375},"location":"Left Ankle"},{"euler":{"heading":80.0625,"pitch":-40.875,"roll":-18.125},"location":"Right Ankle"},{"euler":{"heading":184.1875,"pitch":-160.375,"roll":42.4375},"location":"Right Hip"},{"euler":{"heading":216.0,"pitch":-153.75,"roll":79.8125},"location":"Right Knee"},{"euler":{"heading":11.8125,"pitch":-147.0,"roll":65.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.410"} +{"sensors":[{"euler":{"heading":83.5,"pitch":116.5625,"roll":14.75},"location":"Left Knee"},{"euler":{"heading":25.75,"pitch":85.75,"roll":5.625},"location":"Left Ankle"},{"euler":{"heading":94.8125,"pitch":-42.875,"roll":-8.125},"location":"Right Ankle"},{"euler":{"heading":173.375,"pitch":-164.75,"roll":46.375},"location":"Right Hip"},{"euler":{"heading":201.5,"pitch":128.625,"roll":76.3125},"location":"Right Knee"},{"euler":{"heading":14.6875,"pitch":-153.6875,"roll":66.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.511"} +{"sensors":[{"euler":{"heading":91.75,"pitch":115.6875,"roll":7.5625},"location":"Left Knee"},{"euler":{"heading":33.375,"pitch":85.5625,"roll":14.875},"location":"Left Ankle"},{"euler":{"heading":92.625,"pitch":-40.625,"roll":-12.125},"location":"Right Ankle"},{"euler":{"heading":167.9375,"pitch":-167.4375,"roll":49.1875},"location":"Right Hip"},{"euler":{"heading":198.5,"pitch":130.625,"roll":76.875},"location":"Right Knee"},{"euler":{"heading":17.8125,"pitch":-160.8125,"roll":67.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.612"} +{"sensors":[{"euler":{"heading":107.6875,"pitch":117.75,"roll":-5.4375},"location":"Left Knee"},{"euler":{"heading":42.5625,"pitch":82.875,"roll":30.5},"location":"Left Ankle"},{"euler":{"heading":86.125,"pitch":-38.0625,"roll":-19.375},"location":"Right Ankle"},{"euler":{"heading":174.625,"pitch":-165.125,"roll":51.0},"location":"Right Hip"},{"euler":{"heading":200.6875,"pitch":156.3125,"roll":79.0},"location":"Right Knee"},{"euler":{"heading":10.875,"pitch":-144.25,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.712"} +{"sensors":[{"euler":{"heading":114.25,"pitch":118.375,"roll":-7.8125},"location":"Left Knee"},{"euler":{"heading":43.3125,"pitch":79.375,"roll":31.0},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":-36.0,"roll":-23.0625},"location":"Right Ankle"},{"euler":{"heading":172.375,"pitch":-166.375,"roll":55.25},"location":"Right Hip"},{"euler":{"heading":202.3125,"pitch":-179.5625,"roll":77.125},"location":"Right Knee"},{"euler":{"heading":359.0625,"pitch":-119.4375,"roll":61.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.813"} +{"sensors":[{"euler":{"heading":94.9375,"pitch":124.9375,"roll":6.5625},"location":"Left Knee"},{"euler":{"heading":26.125,"pitch":76.3125,"roll":9.8125},"location":"Left Ankle"},{"euler":{"heading":80.8125,"pitch":-35.25,"roll":-25.375},"location":"Right Ankle"},{"euler":{"heading":177.75,"pitch":-164.6875,"roll":57.5},"location":"Right Hip"},{"euler":{"heading":207.1875,"pitch":-162.125,"roll":74.5},"location":"Right Knee"},{"euler":{"heading":356.25,"pitch":-116.875,"roll":56.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:11.914"} +{"sensors":[{"euler":{"heading":64.125,"pitch":133.75,"roll":24.3125},"location":"Left Knee"},{"euler":{"heading":358.1875,"pitch":74.125,"roll":-15.5},"location":"Left Ankle"},{"euler":{"heading":76.75,"pitch":-33.3125,"roll":-28.25},"location":"Right Ankle"},{"euler":{"heading":180.625,"pitch":-164.625,"roll":58.9375},"location":"Right Hip"},{"euler":{"heading":212.75,"pitch":-146.75,"roll":71.8125},"location":"Right Knee"},{"euler":{"heading":356.8125,"pitch":-116.0625,"roll":55.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.15"} +{"sensors":[{"euler":{"heading":50.1875,"pitch":139.6875,"roll":31.9375},"location":"Left Knee"},{"euler":{"heading":347.75,"pitch":72.375,"roll":-28.4375},"location":"Left Ankle"},{"euler":{"heading":70.4375,"pitch":-30.1875,"roll":-33.0625},"location":"Right Ankle"},{"euler":{"heading":182.5625,"pitch":-166.9375,"roll":60.875},"location":"Right Hip"},{"euler":{"heading":221.3125,"pitch":-132.1875,"roll":65.9375},"location":"Right Knee"},{"euler":{"heading":1.875,"pitch":-122.4375,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.116"} +{"sensors":[{"euler":{"heading":62.0,"pitch":131.9375,"roll":30.25},"location":"Left Knee"},{"euler":{"heading":358.5625,"pitch":83.3125,"roll":-20.25},"location":"Left Ankle"},{"euler":{"heading":60.375,"pitch":-27.125,"roll":-39.75},"location":"Right Ankle"},{"euler":{"heading":186.0,"pitch":-166.25,"roll":61.1875},"location":"Right Hip"},{"euler":{"heading":235.5,"pitch":-120.0625,"roll":56.625},"location":"Right Knee"},{"euler":{"heading":4.5,"pitch":-125.8125,"roll":58.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.217"} +{"sensors":[{"euler":{"heading":68.0,"pitch":124.75,"roll":27.9375},"location":"Left Knee"},{"euler":{"heading":6.3125,"pitch":84.0,"roll":-12.6875},"location":"Left Ankle"},{"euler":{"heading":310.625,"pitch":-16.5,"roll":-45.625},"location":"Right Ankle"},{"euler":{"heading":193.6875,"pitch":-158.125,"roll":54.4375},"location":"Right Hip"},{"euler":{"heading":246.875,"pitch":-112.75,"roll":47.3125},"location":"Right Knee"},{"euler":{"heading":8.5625,"pitch":-131.5625,"roll":61.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.318"} +{"sensors":[{"euler":{"heading":72.1875,"pitch":120.9375,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":10.9375,"pitch":84.8125,"roll":-9.0},"location":"Left Ankle"},{"euler":{"heading":43.3125,"pitch":-20.25,"roll":-43.4375},"location":"Right Ankle"},{"euler":{"heading":195.875,"pitch":-155.625,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":241.5,"pitch":-112.5,"roll":54.25},"location":"Right Knee"},{"euler":{"heading":11.4375,"pitch":-140.6875,"roll":63.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.418"} +{"sensors":[{"euler":{"heading":77.625,"pitch":117.5625,"roll":21.625},"location":"Left Knee"},{"euler":{"heading":15.625,"pitch":87.125,"roll":-4.3125},"location":"Left Ankle"},{"euler":{"heading":63.75,"pitch":-36.8125,"roll":-31.25},"location":"Right Ankle"},{"euler":{"heading":190.1875,"pitch":-158.25,"roll":42.1875},"location":"Right Hip"},{"euler":{"heading":226.625,"pitch":-127.5625,"roll":70.6875},"location":"Right Knee"},{"euler":{"heading":13.1875,"pitch":-146.25,"roll":64.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.519"} +{"sensors":[{"euler":{"heading":83.6875,"pitch":115.6875,"roll":16.875},"location":"Left Knee"},{"euler":{"heading":20.625,"pitch":87.625,"roll":1.25},"location":"Left Ankle"},{"euler":{"heading":84.6875,"pitch":-42.1875,"roll":-13.625},"location":"Right Ankle"},{"euler":{"heading":180.8125,"pitch":-162.25,"roll":43.25},"location":"Right Hip"},{"euler":{"heading":207.875,"pitch":154.5,"roll":79.9375},"location":"Right Knee"},{"euler":{"heading":15.25,"pitch":-153.0,"roll":66.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.620"} +{"sensors":[{"euler":{"heading":87.625,"pitch":114.6875,"roll":12.5},"location":"Left Knee"},{"euler":{"heading":27.8125,"pitch":88.375,"roll":8.6875},"location":"Left Ankle"},{"euler":{"heading":99.1875,"pitch":-43.3125,"roll":-7.5},"location":"Right Ankle"},{"euler":{"heading":171.25,"pitch":-166.1875,"roll":46.875},"location":"Right Hip"},{"euler":{"heading":196.375,"pitch":123.25,"roll":72.625},"location":"Right Knee"},{"euler":{"heading":17.5,"pitch":-159.0,"roll":67.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.720"} +{"sensors":[{"euler":{"heading":98.5625,"pitch":113.375,"roll":2.5},"location":"Left Knee"},{"euler":{"heading":38.8125,"pitch":84.6875,"roll":23.5625},"location":"Left Ankle"},{"euler":{"heading":90.875,"pitch":-39.1875,"roll":-16.3125},"location":"Right Ankle"},{"euler":{"heading":172.8125,"pitch":-166.5625,"roll":48.625},"location":"Right Hip"},{"euler":{"heading":196.5,"pitch":135.5,"roll":76.5},"location":"Right Knee"},{"euler":{"heading":17.9375,"pitch":-155.875,"roll":68.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.821"} +{"sensors":[{"euler":{"heading":113.5,"pitch":113.625,"roll":-7.6875},"location":"Left Knee"},{"euler":{"heading":53.5625,"pitch":87.125,"roll":39.4375},"location":"Left Ankle"},{"euler":{"heading":85.0625,"pitch":-38.4375,"roll":-20.125},"location":"Right Ankle"},{"euler":{"heading":174.5,"pitch":-166.375,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":200.375,"pitch":163.6875,"roll":77.1875},"location":"Right Knee"},{"euler":{"heading":4.6875,"pitch":-128.1875,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:12.921"} +{"sensors":[{"euler":{"heading":113.75,"pitch":118.0625,"roll":-4.6875},"location":"Left Knee"},{"euler":{"heading":45.125,"pitch":78.125,"roll":29.6875},"location":"Left Ankle"},{"euler":{"heading":83.125,"pitch":-37.8125,"roll":-22.75},"location":"Right Ankle"},{"euler":{"heading":177.625,"pitch":-164.875,"roll":55.875},"location":"Right Hip"},{"euler":{"heading":204.125,"pitch":-176.0,"roll":75.9375},"location":"Right Knee"},{"euler":{"heading":359.375,"pitch":-117.125,"roll":58.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.22"} +{"sensors":[{"euler":{"heading":85.4375,"pitch":126.4375,"roll":13.0},"location":"Left Knee"},{"euler":{"heading":19.6875,"pitch":75.1875,"roll":3.25},"location":"Left Ankle"},{"euler":{"heading":79.75,"pitch":-35.6875,"roll":-25.8125},"location":"Right Ankle"},{"euler":{"heading":183.0625,"pitch":-163.375,"roll":57.1875},"location":"Right Hip"},{"euler":{"heading":208.625,"pitch":-159.6875,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":357.8125,"pitch":-114.75,"roll":55.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.123"} +{"sensors":[{"euler":{"heading":53.6875,"pitch":136.6875,"roll":29.4375},"location":"Left Knee"},{"euler":{"heading":354.125,"pitch":72.1875,"roll":-21.75},"location":"Left Ankle"},{"euler":{"heading":75.5,"pitch":-33.3125,"roll":-29.25},"location":"Right Ankle"},{"euler":{"heading":183.125,"pitch":-164.5625,"roll":58.5},"location":"Right Hip"},{"euler":{"heading":212.8125,"pitch":-146.0,"roll":71.375},"location":"Right Knee"},{"euler":{"heading":358.25,"pitch":-117.125,"roll":55.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.224"} +{"sensors":[{"euler":{"heading":48.1875,"pitch":139.9375,"roll":33.375},"location":"Left Knee"},{"euler":{"heading":347.75,"pitch":76.0,"roll":-27.9375},"location":"Left Ankle"},{"euler":{"heading":68.3125,"pitch":-29.5625,"roll":-36.375},"location":"Right Ankle"},{"euler":{"heading":184.8125,"pitch":-166.3125,"roll":60.6875},"location":"Right Hip"},{"euler":{"heading":221.3125,"pitch":-131.75,"roll":65.1875},"location":"Right Knee"},{"euler":{"heading":2.3125,"pitch":-123.0625,"roll":57.0625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.325"} +{"sensors":[{"euler":{"heading":59.375,"pitch":131.6875,"roll":30.6875},"location":"Left Knee"},{"euler":{"heading":0.25,"pitch":80.4375,"roll":-17.1875},"location":"Left Ankle"},{"euler":{"heading":54.5625,"pitch":-26.875,"roll":-41.25},"location":"Right Ankle"},{"euler":{"heading":188.5,"pitch":-164.125,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":237.625,"pitch":-118.4375,"roll":55.1875},"location":"Right Knee"},{"euler":{"heading":3.5625,"pitch":-125.625,"roll":58.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.425"} +{"sensors":[{"euler":{"heading":65.125,"pitch":126.4375,"roll":27.25},"location":"Left Knee"},{"euler":{"heading":5.5,"pitch":81.1875,"roll":-13.5},"location":"Left Ankle"},{"euler":{"heading":308.1875,"pitch":-13.875,"roll":-47.6875},"location":"Right Ankle"},{"euler":{"heading":193.5625,"pitch":-158.625,"roll":53.6875},"location":"Right Hip"},{"euler":{"heading":244.3125,"pitch":-113.75,"roll":47.9375},"location":"Right Knee"},{"euler":{"heading":6.0,"pitch":-132.125,"roll":61.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.526"} +{"sensors":[{"euler":{"heading":69.4375,"pitch":122.5625,"roll":24.875},"location":"Left Knee"},{"euler":{"heading":10.0,"pitch":82.4375,"roll":-9.5625},"location":"Left Ankle"},{"euler":{"heading":45.4375,"pitch":-21.5625,"roll":-41.875},"location":"Right Ankle"},{"euler":{"heading":194.0625,"pitch":-156.125,"roll":47.0625},"location":"Right Hip"},{"euler":{"heading":238.3125,"pitch":-113.625,"roll":54.875},"location":"Right Knee"},{"euler":{"heading":9.1875,"pitch":-140.5,"roll":63.3125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.627"} +{"sensors":[{"euler":{"heading":75.5,"pitch":119.3125,"roll":21.5},"location":"Left Knee"},{"euler":{"heading":15.3125,"pitch":84.875,"roll":-4.3125},"location":"Left Ankle"},{"euler":{"heading":69.6875,"pitch":-38.125,"roll":-27.625},"location":"Right Ankle"},{"euler":{"heading":189.4375,"pitch":-158.4375,"roll":42.25},"location":"Right Hip"},{"euler":{"heading":219.625,"pitch":-137.125,"roll":73.875},"location":"Right Knee"},{"euler":{"heading":10.5625,"pitch":-147.0,"roll":64.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.728"} +{"sensors":[{"euler":{"heading":81.75,"pitch":116.875,"roll":17.0625},"location":"Left Knee"},{"euler":{"heading":20.125,"pitch":85.875,"roll":0.6875},"location":"Left Ankle"},{"euler":{"heading":90.3125,"pitch":-44.375,"roll":-12.0},"location":"Right Ankle"},{"euler":{"heading":178.0625,"pitch":-163.375,"roll":44.625},"location":"Right Hip"},{"euler":{"heading":203.125,"pitch":143.4375,"roll":76.6875},"location":"Right Knee"},{"euler":{"heading":14.0,"pitch":-153.5,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.828"} +{"sensors":[{"euler":{"heading":88.4375,"pitch":115.0625,"roll":11.25},"location":"Left Knee"},{"euler":{"heading":26.75,"pitch":86.4375,"roll":7.8125},"location":"Left Ankle"},{"euler":{"heading":96.125,"pitch":-42.3125,"roll":-10.5625},"location":"Right Ankle"},{"euler":{"heading":170.0625,"pitch":-166.875,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":194.5,"pitch":127.9375,"roll":73.1875},"location":"Right Knee"},{"euler":{"heading":17.8125,"pitch":-160.875,"roll":66.375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:13.930"} +{"sensors":[{"euler":{"heading":101.25,"pitch":116.4375,"roll":-0.875},"location":"Left Knee"},{"euler":{"heading":36.25,"pitch":80.9375,"roll":23.6875},"location":"Left Ankle"},{"euler":{"heading":88.4375,"pitch":-40.9375,"roll":-18.625},"location":"Right Ankle"},{"euler":{"heading":176.75,"pitch":-164.875,"roll":49.0},"location":"Right Hip"},{"euler":{"heading":198.0,"pitch":151.3125,"roll":76.25},"location":"Right Knee"},{"euler":{"heading":15.3125,"pitch":-151.8125,"roll":66.25},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.30"} +{"sensors":[{"euler":{"heading":113.6875,"pitch":113.125,"roll":-7.4375},"location":"Left Knee"},{"euler":{"heading":45.375,"pitch":80.6875,"roll":36.5},"location":"Left Ankle"},{"euler":{"heading":83.75,"pitch":-39.5625,"roll":-21.375},"location":"Right Ankle"},{"euler":{"heading":176.625,"pitch":-165.3125,"roll":53.375},"location":"Right Hip"},{"euler":{"heading":200.75,"pitch":172.1875,"roll":75.0625},"location":"Right Knee"},{"euler":{"heading":1.9375,"pitch":-125.875,"roll":61.9375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.131"} +{"sensors":[{"euler":{"heading":107.5,"pitch":120.5,"roll":0.875},"location":"Left Knee"},{"euler":{"heading":38.0625,"pitch":78.4375,"roll":21.0625},"location":"Left Ankle"},{"euler":{"heading":83.0625,"pitch":-39.875,"roll":-24.0},"location":"Right Ankle"},{"euler":{"heading":181.9375,"pitch":-163.625,"roll":56.8125},"location":"Right Hip"},{"euler":{"heading":206.125,"pitch":-170.5,"roll":73.8125},"location":"Right Knee"},{"euler":{"heading":358.625,"pitch":-120.5,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.232"} +{"sensors":[{"euler":{"heading":72.9375,"pitch":129.875,"roll":19.875},"location":"Left Knee"},{"euler":{"heading":11.75,"pitch":76.3125,"roll":-4.8125},"location":"Left Ankle"},{"euler":{"heading":79.0,"pitch":-39.0625,"roll":-26.1875},"location":"Right Ankle"},{"euler":{"heading":185.375,"pitch":-163.875,"roll":58.625},"location":"Right Hip"},{"euler":{"heading":212.625,"pitch":-154.6875,"roll":71.625},"location":"Right Knee"},{"euler":{"heading":359.0625,"pitch":-117.5,"roll":54.8125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.332"} +{"sensors":[{"euler":{"heading":50.1875,"pitch":137.125,"roll":32.8125},"location":"Left Knee"},{"euler":{"heading":349.125,"pitch":73.75,"roll":-28.3125},"location":"Left Ankle"},{"euler":{"heading":73.625,"pitch":-36.0625,"roll":-31.0625},"location":"Right Ankle"},{"euler":{"heading":186.6875,"pitch":-165.375,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":218.1875,"pitch":-141.5625,"roll":67.75},"location":"Right Knee"},{"euler":{"heading":2.25,"pitch":-122.4375,"roll":55.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.435"} +{"sensors":[{"euler":{"heading":57.9375,"pitch":131.75,"roll":32.5},"location":"Left Knee"},{"euler":{"heading":354.5625,"pitch":80.5625,"roll":-21.9375},"location":"Left Ankle"},{"euler":{"heading":65.0625,"pitch":-33.8125,"roll":-38.5625},"location":"Right Ankle"},{"euler":{"heading":190.125,"pitch":-166.0625,"roll":60.25},"location":"Right Hip"},{"euler":{"heading":230.375,"pitch":-127.5,"roll":60.375},"location":"Right Knee"},{"euler":{"heading":7.3125,"pitch":-125.8125,"roll":57.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.536"} +{"sensors":[{"euler":{"heading":65.6875,"pitch":125.5625,"roll":28.8125},"location":"Left Knee"},{"euler":{"heading":3.9375,"pitch":83.5625,"roll":-14.875},"location":"Left Ankle"},{"euler":{"heading":313.875,"pitch":-17.75,"roll":-46.625},"location":"Right Ankle"},{"euler":{"heading":196.6875,"pitch":-159.25,"roll":54.8125},"location":"Right Hip"},{"euler":{"heading":244.4375,"pitch":-113.8125,"roll":50.125},"location":"Right Knee"},{"euler":{"heading":6.125,"pitch":-128.5625,"roll":59.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.637"} +{"sensors":[{"euler":{"heading":69.0,"pitch":121.75,"roll":26.125},"location":"Left Knee"},{"euler":{"heading":8.3125,"pitch":84.375,"roll":-11.375},"location":"Left Ankle"},{"euler":{"heading":307.6875,"pitch":-15.6875,"roll":-45.6875},"location":"Right Ankle"},{"euler":{"heading":199.375,"pitch":-154.75,"roll":48.1875},"location":"Right Hip"},{"euler":{"heading":242.5,"pitch":-112.3125,"roll":49.5},"location":"Right Knee"},{"euler":{"heading":9.75,"pitch":-137.6875,"roll":61.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.738"} +{"sensors":[{"euler":{"heading":73.5,"pitch":119.625,"roll":22.5625},"location":"Left Knee"},{"euler":{"heading":14.125,"pitch":84.875,"roll":-5.9375},"location":"Left Ankle"},{"euler":{"heading":57.1875,"pitch":-32.4375,"roll":-34.875},"location":"Right Ankle"},{"euler":{"heading":194.5625,"pitch":-156.8125,"roll":43.1875},"location":"Right Hip"},{"euler":{"heading":227.75,"pitch":-119.875,"roll":66.375},"location":"Right Knee"},{"euler":{"heading":9.5,"pitch":-159.9375,"roll":62.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.840"} +{"sensors":[{"euler":{"heading":79.375,"pitch":117.625,"roll":18.3125},"location":"Left Knee"},{"euler":{"heading":17.6875,"pitch":85.3125,"roll":-1.6875},"location":"Left Ankle"},{"euler":{"heading":83.3125,"pitch":-43.0,"roll":-17.625},"location":"Right Ankle"},{"euler":{"heading":185.5625,"pitch":-160.25,"roll":43.125},"location":"Right Hip"},{"euler":{"heading":209.1875,"pitch":176.3125,"roll":82.3125},"location":"Right Knee"},{"euler":{"heading":10.875,"pitch":-149.125,"roll":63.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:14.940"} +{"sensors":[{"euler":{"heading":85.5,"pitch":116.8125,"roll":12.6875},"location":"Left Knee"},{"euler":{"heading":22.8125,"pitch":84.8125,"roll":3.75},"location":"Left Ankle"},{"euler":{"heading":302.875,"pitch":-45.9375,"roll":-9.4375},"location":"Right Ankle"},{"euler":{"heading":176.625,"pitch":-164.3125,"roll":47.1875},"location":"Right Hip"},{"euler":{"heading":197.6875,"pitch":130.5,"roll":72.25},"location":"Right Knee"},{"euler":{"heading":14.25,"pitch":-156.5,"roll":64.625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.41"} +{"sensors":[{"euler":{"heading":93.625,"pitch":114.9375,"roll":5.375},"location":"Left Knee"},{"euler":{"heading":31.75,"pitch":84.875,"roll":14.1875},"location":"Left Ankle"},{"euler":{"heading":91.625,"pitch":-45.625,"roll":-13.8125},"location":"Right Ankle"},{"euler":{"heading":173.3125,"pitch":-165.625,"roll":48.5625},"location":"Right Hip"},{"euler":{"heading":197.0625,"pitch":136.8125,"roll":74.6875},"location":"Right Knee"},{"euler":{"heading":16.875,"pitch":-156.25,"roll":65.75},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.141"} +{"sensors":[{"euler":{"heading":111.4375,"pitch":116.0,"roll":-7.3125},"location":"Left Knee"},{"euler":{"heading":46.8125,"pitch":83.9375,"roll":33.375},"location":"Left Ankle"},{"euler":{"heading":84.5,"pitch":-42.1875,"roll":-20.5625},"location":"Right Ankle"},{"euler":{"heading":179.0,"pitch":-164.3125,"roll":50.4375},"location":"Right Hip"},{"euler":{"heading":198.75,"pitch":158.75,"roll":76.375},"location":"Right Knee"},{"euler":{"heading":3.875,"pitch":-131.5625,"roll":62.6875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.242"} +{"sensors":[{"euler":{"heading":114.375,"pitch":117.5625,"roll":-7.0},"location":"Left Knee"},{"euler":{"heading":46.25,"pitch":77.625,"roll":33.625},"location":"Left Ankle"},{"euler":{"heading":82.5625,"pitch":-41.5,"roll":-22.625},"location":"Right Ankle"},{"euler":{"heading":178.875,"pitch":-164.1875,"roll":55.1875},"location":"Right Hip"},{"euler":{"heading":201.5625,"pitch":178.3125,"roll":74.8125},"location":"Right Knee"},{"euler":{"heading":357.4375,"pitch":-119.4375,"roll":57.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.343"} +{"sensors":[{"euler":{"heading":94.375,"pitch":124.125,"roll":8.125},"location":"Left Knee"},{"euler":{"heading":28.3125,"pitch":75.4375,"roll":8.125},"location":"Left Ankle"},{"euler":{"heading":81.5625,"pitch":-41.875,"roll":-26.125},"location":"Right Ankle"},{"euler":{"heading":184.25,"pitch":-163.0625,"roll":57.0},"location":"Right Hip"},{"euler":{"heading":208.5,"pitch":-164.25,"roll":73.25},"location":"Right Knee"},{"euler":{"heading":356.5625,"pitch":-117.8125,"roll":53.4375},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.444"} +{"sensors":[{"euler":{"heading":59.9375,"pitch":133.6875,"roll":26.375},"location":"Left Knee"},{"euler":{"heading":359.875,"pitch":72.375,"roll":-17.1875},"location":"Left Ankle"},{"euler":{"heading":76.9375,"pitch":-39.6875,"roll":-28.4375},"location":"Right Ankle"},{"euler":{"heading":185.4375,"pitch":-164.5625,"roll":58.25},"location":"Right Hip"},{"euler":{"heading":213.125,"pitch":-149.5625,"roll":71.0},"location":"Right Knee"},{"euler":{"heading":358.0,"pitch":-117.1875,"roll":54.5625},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.544"} +{"sensors":[{"euler":{"heading":49.5625,"pitch":138.875,"roll":33.0625},"location":"Left Knee"},{"euler":{"heading":346.625,"pitch":72.8125,"roll":-30.625},"location":"Left Ankle"},{"euler":{"heading":69.8125,"pitch":-35.375,"roll":-33.9375},"location":"Right Ankle"},{"euler":{"heading":186.625,"pitch":-166.25,"roll":59.6875},"location":"Right Hip"},{"euler":{"heading":220.6875,"pitch":-135.1875,"roll":66.25},"location":"Right Knee"},{"euler":{"heading":2.5625,"pitch":-124.0625,"roll":56.1875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.645"} +{"sensors":[{"euler":{"heading":59.6875,"pitch":131.9375,"roll":30.9375},"location":"Left Knee"},{"euler":{"heading":358.25,"pitch":82.5,"roll":-21.5625},"location":"Left Ankle"},{"euler":{"heading":56.5,"pitch":-29.375,"roll":-41.625},"location":"Right Ankle"},{"euler":{"heading":190.375,"pitch":-165.375,"roll":59.3125},"location":"Right Hip"},{"euler":{"heading":232.875,"pitch":-123.125,"roll":58.625},"location":"Right Knee"},{"euler":{"heading":4.25,"pitch":-126.6875,"roll":56.875},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.745"} +{"sensors":[{"euler":{"heading":66.9375,"pitch":125.125,"roll":27.75},"location":"Left Knee"},{"euler":{"heading":5.0625,"pitch":82.6875,"roll":-13.75},"location":"Left Ankle"},{"euler":{"heading":308.5,"pitch":-15.1875,"roll":-49.125},"location":"Right Ankle"},{"euler":{"heading":197.3125,"pitch":-156.75,"roll":52.3125},"location":"Right Hip"},{"euler":{"heading":243.6875,"pitch":-113.0,"roll":48.4375},"location":"Right Knee"},{"euler":{"heading":6.875,"pitch":-130.0625,"roll":60.125},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.848"} +{"sensors":[{"euler":{"heading":6.875,"pitch":-130.0625,"roll":60.125},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:15.948"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.606"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.708"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.808"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:16.908"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.9"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.110"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.768"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.869"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:17.970"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:18.71"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:18.172"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:18.274"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:26.933"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.34"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.136"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.237"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.337"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.438"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.538"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.639"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:27.740"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.36"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.139"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.239"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.340"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.440"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.541"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.641"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.742"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.843"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:29.944"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:30.44"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:30.146"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":-16.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":-16.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:30.246"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.6"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.107"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.208"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.309"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.410"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.511"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:33.614"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:34.910"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.10"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.111"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.212"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:35.312"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:36.608"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:38.918"} +{"sensors":[{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":0.0,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":-0.0625,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:39.20"} +{"sensors":[{"euler":{"heading":0.0,"pitch":-0.0625,"roll":0.0},"location":"Left Knee"},{"euler":{"heading":0.0,"pitch":-0.0625,"roll":0.0},"location":"Left Ankle"},{"euler":{"heading":0.0,"pitch":-0.0625,"roll":0.0},"location":"Right Ankle"},{"euler":{"heading":0.0,"pitch":-0.0625,"roll":0.0},"location":"Right Hip"},{"euler":{"heading":0.0,"pitch":-0.0625,"roll":0.0},"location":"Right Knee"},{"euler":{"heading":0.0,"pitch":-0.0625,"roll":0.0},"location":"Left Hip"}],"timestamp":"2025-03-06 01:24:39.121"} diff --git a/sensors/vis_all.py b/sensors/vis_all.py new file mode 100644 index 0000000..25a09d1 --- /dev/null +++ b/sensors/vis_all.py @@ -0,0 +1,58 @@ +import sys +import json +import matplotlib.pyplot as plt +from collections import defaultdict +from datetime import datetime + +def main(): + if len(sys.argv) != 2: + print(f"Usage: python {sys.argv[0]} ") + sys.exit(1) + + file_path = sys.argv[1] + + # Dictionary to store only the roll data (plus timestamps) for each sensor + sensor_data = defaultdict(lambda: {"timestamp": [], "roll": []}) + + with open(file_path, 'r') as file: + for line in file: + line = line.strip() + if not line: + continue + record = json.loads(line) + + timestamp = datetime.strptime(record['timestamp'], "%Y-%m-%d %H:%M:%S.%f") + + for sensor in record['sensors']: + loc = sensor['location'] + sensor_data[loc]['timestamp'].append(timestamp) + sensor_data[loc]['roll'].append(sensor['euler']['roll']) + + # Adjust this order if needed + sensor_order = [ + "Left Knee", "Left Ankle", + "Right Ankle", "Right Hip", + "Right Knee", "Left Hip" + ] + + # Subsampling factor: plot every 10th point, for example + subsample_factor = 10 + + plt.figure(figsize=(20, 6)) + + for loc in sensor_order: + # Take every 10th point + timestamps = sensor_data[loc]['timestamp'][::subsample_factor] + rolls = sensor_data[loc]['roll'][::subsample_factor] + plt.plot(timestamps, rolls, label=loc) + + plt.title("Roll Data Over Time (Subsampled)") + plt.xlabel("Time") + plt.ylabel("Roll (degrees)") + plt.legend() + plt.grid(True) + plt.tight_layout() + plt.show() + +if __name__ == "__main__": + main() diff --git a/sensors/visdata.py b/sensors/visdata.py new file mode 100644 index 0000000..4af2abf --- /dev/null +++ b/sensors/visdata.py @@ -0,0 +1,73 @@ +import sys +import json +import matplotlib.pyplot as plt + +def process_file(file_path): + timestamps = [] + headings = [] + pitches = [] + rolls = [] + + sensor_locs = [] + joint_name = "" + + with open(file_path,"r") as file: + data = json.loads(file.readline()) + for sensor in data["sensors"]: + sensor_locs.append(sensor["location"]) + + for i,loc in enumerate(sensor_locs): + print(f"({i+1}) {loc}") + + inp = input("which sensor would you like to plot: ").strip() + try: + joint_name = sensor_locs[int(inp)-1] + except Exception as e: + print(f"Error processing input: {e}") + sys.exit(1) + + + with open(file_path,"r") as file: + for line in file: + data = json.loads(line) + timestamps.append(data["timestamp"]) + + for sensor in data["sensors"]: + if sensor["location"] == joint_name: + headings.append(sensor["euler"]["heading"]) + pitches.append(sensor["euler"]["pitch"]) + rolls.append(sensor["euler"]["roll"]) + break + + # Convert timestamps to indices for better readability on the plot + time_indices = range(len(timestamps)) + + # Plot data + plt.figure(figsize=(10, 5)) + plt.plot(time_indices, headings, label="Heading", color="blue") + plt.plot(time_indices, pitches, label="Pitch", color="red") + plt.plot(time_indices, rolls, label="Roll", color="green") + + # Labels and title + plt.xlabel("Time (Index)") + plt.ylabel("Euler Angles (Degrees)") + plt.title(f"IMU Data for {joint_name}") + plt.legend() + plt.grid() + + # Show plot + plt.show() + + + + +def main(): + if len(sys.argv) < 2: + print("Usage: python script.py ",file=sys.stderr) + sys.exit(1) + + file_path = sys.argv[1] + process_file(file_path) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/tests/motor_api_test.cpp b/tests/motor_api_test.cpp new file mode 100644 index 0000000..5128190 --- /dev/null +++ b/tests/motor_api_test.cpp @@ -0,0 +1,78 @@ +#include "../motors/motor_api.h" +#include +#include +#include + +#define HARDWARE_AVAILABLE true + +class MotorTest : public ::testing::Test { +protected: + Motor* motor; + + void SetUp() override { + if (HARDWARE_AVAILABLE) { + motor = new Motor("/dev/ttyUSB0", 1); + ASSERT_TRUE(motor->initializeMotor()); // Ensure connection is successful + } else { + motor = nullptr; + GTEST_SKIP() << "Skipping test: Hardware not available."; + } + } + + void TearDown() override { + if (motor) { + std::this_thread::sleep_for(std::chrono::seconds(3)); // Wait only if motor exists + motor->disconnectMotor(); + delete motor; + } + } +}; + +// Test Initialization +// TEST_F(MotorTest, Initialization) { +// EXPECT_NE(motor, nullptr); // Ensure motor was created +// } + +// // Test Setting Speed +// TEST_F(MotorTest, SetSpeed) { +// ASSERT_NE(motor, nullptr); +// EXPECT_TRUE(motor->setOperationMode(PV_MODE)); // Set to Profile Velocity Mode +// int speed = 1000; +// EXPECT_TRUE(motor->setTargetVelocity(speed)); +// // std::this_thread::sleep_for(std::chrono::seconds(2)); +// ASSERT_EQ(speed, motor->getActualVelocity()) << "Target Velocity has not been reached"; +// } + +// Test Setting Torque +TEST_F(MotorTest, SetTorque) { + ASSERT_NE(motor, nullptr); + EXPECT_TRUE(motor->setOperationMode(PT_MODE)); // Set to Profile Torque Mode + // EXPECT_TRUE(motor->setTargetTorque(-200)); + int torque = 100; + EXPECT_TRUE(motor->setTargetTorque(torque)); + std::this_thread::sleep_for(std::chrono::seconds(1)); + ASSERT_EQ(torque, motor->getActualTorque()) << "Target Torque has not been reached"; + +} + +// Test Stopping Motor +TEST_F(MotorTest, StopMotor) { + ASSERT_NE(motor, nullptr); + EXPECT_TRUE(motor->stopMotor()); +} + +// Test Disconnecting Motor +TEST_F(MotorTest, DisconnectMotor) { + if (motor) { + motor->disconnectMotor(); + EXPECT_FALSE(motor->isConnected()); // Ensure motor is disconnected + } else { + GTEST_SKIP() << "Skipping test: Motor was not initialized."; + } +} + +// Main function for Google Test +int main(int argc, char **argv) { + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +}